diff --git a/外教课/原文要求.txt b/外教课/原文要求.txt index a241eed..79872f7 100644 --- a/外教课/原文要求.txt +++ b/外教课/原文要求.txt @@ -1,5 +1,5 @@ -完成一份 强化学习个人课程作业报告:需要用 Python 从零实现一个 PPO(Proximal Policy Optimization)强化学习算法,让智能体在 CarRacing-v3 环境中完成赛车任务,并在此基础上提交一份不超过 3000 词 的技术报告,系统说明你的方法与结果;具体来说,要介绍该任务的强化学习背景,定义状态空间、动作空间和奖励机制,解释 PPO 的目标函数、裁剪机制和优势估计方法,说明策略网络与价值网络结构、训练流程、超参数设置以及实现过程中遇到的问题和解决办法,同时用图表展示训练与测试结果,分析模型表现和变化趋势,并与如 Stable-Baselines3 这类基线方法在稳定性和样本效率上做简要比较;另外,还要提交一个包含全部源代码和训练好模型的 zip 文件,以及一个单独的 PDF 报告,文件命名和提交格式都必须符合要求,而且实现中不能直接使用 Stable-Baselines 等强化学习专用库,但可以合理使用 TensorBoard 记录实验结果。 - -这个 PDF 要求完成一份 强化学习个人项目报告:需要自己选择一个 Atari 游戏,实现并训练一个你选定的 深度强化学习算法 来达到有竞争力的表现,然后提交一份不超过 3000 词 的技术报告和一个包含全部源代码及训练模型的 zip 文件;报告中需要说明选择的游戏及其挑战,调研并总结深度强化学习尤其是在 Atari 游戏中的应用现状,比较考虑过的算法并解释为什么最终选择当前方法,详细介绍算法原理与具体实现,评估智能体表现、说明所选基准和评价指标,并分析为什么该算法在这个游戏上表现好或不好,同时用清晰标注坐标轴和图例的图表来展示结果;另外,作业明确要求不能直接用 Stable-Baselines 等强化学习专用库来实现算法,但可以用它们做 benchmark,对代码质量、结果分析、报告结构、图表使用和引用规范都会评分,最终还要按指定格式命名并提交 PDF 和 zip 文件。 - +完成一份 强化学习个人课程作业报告:需要用 Python 从零实现一个 PPO(Proximal Policy Optimization)强化学习算法,让智能体在 CarRacing-v3 环境中完成赛车任务,并在此基础上提交一份不超过 3000 词 的技术报告,系统说明你的方法与结果;具体来说,要介绍该任务的强化学习背景,定义状态空间、动作空间和奖励机制,解释 PPO 的目标函数、裁剪机制和优势估计方法,说明策略网络与价值网络结构、训练流程、超参数设置以及实现过程中遇到的问题和解决办法,同时用图表展示训练与测试结果,分析模型表现和变化趋势,并与如 Stable-Baselines3 这类基线方法在稳定性和样本效率上做简要比较;另外,还要提交一个包含全部源代码和训练好模型的 zip 文件,以及一个单独的 PDF 报告,文件命名和提交格式都必须符合要求,而且实现中不能直接使用 Stable-Baselines 等强化学习专用库,但可以合理使用 TensorBoard 记录实验结果。 + +这个 PDF 要求完成一份 强化学习个人项目报告:需要自己选择一个 Atari 游戏,实现并训练一个你选定的 深度强化学习算法 来达到有竞争力的表现,然后提交一份不超过 3000 词 的技术报告和一个包含全部源代码及训练模型的 zip 文件;报告中需要说明选择的游戏及其挑战,调研并总结深度强化学习尤其是在 Atari 游戏中的应用现状,比较考虑过的算法并解释为什么最终选择当前方法,详细介绍算法原理与具体实现,评估智能体表现、说明所选基准和评价指标,并分析为什么该算法在这个游戏上表现好或不好,同时用清晰标注坐标轴和图例的图表来展示结果;另外,作业明确要求不能直接用 Stable-Baselines 等强化学习专用库来实现算法,但可以用它们做 benchmark,对代码质量、结果分析、报告结构、图表使用和引用规范都会评分,最终还要按指定格式命名并提交 PDF 和 zip 文件。 + 完成一份 机器学习个人课程作业:围绕一个健康保险数据集,建立并改进一个用于预测申请人保费风险等级(Low / Standard / High)的多分类模型。你需要先完成 Jupyter Notebook 部分,包括数据清理与预处理、识别并删除数据泄露特征、建立基线模型、对比随机森林和一种 boosting 模型、使用高级超参数优化方法调参、根据学号末位完成指定的个性化改进并至少再做一个可选改进、再进行一次 K-Means 与 GMM 的无监督探索,最后基于验证结果选出最终模型并导出规定格式的 hidden-test CSV;同时还要提交一份 不超过1200词 左右的 Theory and Reflection PDF,围绕 bagging vs boosting、超参数优化、K-Means vs GMM、个性化改进反思和 AI 使用声明进行理论与实验结合的总结,并且所有结论都要紧扣你自己 notebook 里的表格、图和指标证据,最终按要求提交 notebook、PDF、CSV 以及必要的补充代码。 \ No newline at end of file diff --git a/强化学习个人课程作业报告/dataset_final/test_features.csv b/强化学习个人课程作业报告/dataset_final/test_features.csv index 2fe714c..37844eb 100644 --- a/强化学习个人课程作业报告/dataset_final/test_features.csv +++ b/强化学习个人课程作业报告/dataset_final/test_features.csv @@ -1,12501 +1,12501 @@ -applicant_id,customer_key,application_month,applicant_age,applicant_ref_code,employment_sector,gross_annual_income_gbp,net_monthly_income_gbp,bank_accounts_held,credit_cards_held,avg_interest_rate_pct,active_loans_count,prior_debt_products,avg_payment_delay_days,late_payment_count,credit_limit_change_pct,credit_inquiry_count,debt_portfolio_quality,total_outstanding_debt_gbp,credit_utilisation_pct,account_tenure,minimum_payment_only,monthly_emi_total_gbp,monthly_investment_gbp,spending_profile,end_month_balance_gbp,bureau_risk_index,noise_feature_1,noise_feature_2,noise_feature_3,noise_feature_4,noise_feature_5 -0x1609,CUS_0xd40,August,23,#F%$D@*&8,Scientist,19114.12,,3,4,3,4,"Auto Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",3.003839368,6,11.27,4,Good,809.98,23.9337948,,No,49.57494921,24.78521651,High_spent_Medium_value_payments,358.1241676,0,0.0096,0.3799,-0.7024,1.3555,1.0984 -0x1615,CUS_0x21b1,August,33,004-07-5839,Teacher,34847.84,,2,4,6,1,Credit-Builder Loan,0,4,5.42,2,Good,552.7782349,32.93385629,27 Years and 2 Months,No,18.81621457,254.3181731,Low_spent_Small_value_payments,356.0781086,0,0.2982,1.2791,-0.3334,-1.4058,0.0679 -0x1621,CUS_0x2dbc,August,34,486-85-3974,Engineer,143162.64,12187.22,1,5,7.288361749,2,"Auto Loan, Auto Loan, and Not Specified",3.397441658,6,7.1,3,Good,1303.01,37.4537796,18 Years and 4 Months,No,246.9923195,10419.93746,High_spent_Small_value_payments,895.4945832,0,0.7221,0.2837,-0.4633,0.477,-0.4531 -0x162d,CUS_0xb891,August,55,072-31-6145,Entrepreneur,30689.89,2612.490833,2,5,4,100,Not Specified,6.563291448,9,1.99,4,Good,632.46,27.33251493,17 Years and 10 Months,No,16.41545166,125.6172505,High_spent_Small_value_payments,379.2163811,0,0.3027,-1.2377,0.1622,0.5844,-0.5938 -0x1639,CUS_0x1cdb,August,21,615-06-7821,Developer,35547.71,,7,5,5,100,,15.42325896,15,2.58,4,Standard,943.86,25.86292247,31 Years and 3 Months,Yes,0,181.330901,High_spent_Small_value_payments,364.0000157,0,0.0165,0.5916,-0.0633,-0.3095,-0.1099 -0x1645,CUS_0x95ee,August,31,612-70-8987,Lawyer,73928.46,5988.705,4,5,7.288361749,0,,3.722697154,7,10.14,,Good,496.9652121,30.66001632,32 Years and 6 Months,No,0,467.4827003,!@9#%8,796.2349097,0,1.0216,0.2224,0.196,-0.1553,0.9832 -0x1651,CUS_0x284a,August,34,411-51-0676,Lawyer,131313.4,10469.20776,0,1,7.288361749,2,"Credit-Builder Loan, and Mortgage Loan",0,2,9.34,4,Good,321.5766771,28.2669393,31 Years and 2 Months,No,911.2201793,1439.136684,Low_spent_Medium_value_payments,396.1113462,0,-1.056,-0.5684,-2.9168,-0.3979,0.8141 -0x165d,CUS_0x5407,August,30,500-92-6408,Media_Manager,34081.38,2611.115,8,7,16.06745738,3,"Not Specified, Auto Loan, and Student Loan",25.04234597,15.74044284,17.13,9,_,2131.386514,34.84679207,15 Years and 2 Months,Yes,70.47833267,29.32636371,High_spent_Medium_value_payments,384.5865157,0,0.6329,0.9175,0.3323,-1.4059,0.9399 -0x1669,CUS_0x4157,August,24,070-19-1622,Doctor,114838.41,9843.8675,2,5,7,3,"Personal Loan, Debt Consolidation Loan, and Auto Loan",12.45717609,11,8.24,8,Good,1377.74,27.81335364,21 Years and 11 Months,No,226.8927919,,High_spent_Large_value_payments,742.9221908,0,0.1571,1.3857,0.0331,-0.5824,0.62 -0x1675,CUS_0xba08,August,45,366-68-1681,Journalist,31370.8,,1,6,11.28836175,2,"Not Specified, and Payday Loan",0,2,5.76,5,_,377.3122015,36.64407942,27 Years and 0 Months,No,46.61612907,708.6247213,Low_spent_Small_value_payments,273.2623771,0,-1.0998,-1.6416,0.0368,-0.6711,1.7628 -0x1681,CUS_0xa66b,August,41,221-30-8554,Teacher,33751.27,2948.605833,5,5,20,3,"Credit-Builder Loan, Personal Loan, and Auto Loan",21.96752152,17,11,8,Standard,1328.93,31.13948358,,Yes,65.00817429,25.96961191,High_spent_Large_value_payments,443.8827971,0,-1.5273,-1.1713,-1.6957,-0.0371,0.1357 -0x168d,CUS_0xc0ab,August,33,342-90-2649,Engineer,88640.24,7266.686667,3,6,0.288361749,2,"Payday Loan, and Payday Loan",,,3.51,3,Good,821.0371038,29.94982576,26 Years and 0 Months,No,135.173371,532.6394307,High_spent_Large_value_payments,733.0533444,0,0.1153,0.0322,0.3269,-0.3459,-0.3945 -0x1699,CUS_0x3e45,August,36,414-53-2918,Entrepreneur,54392.16,4766.68,6,4,14,3,"Not Specified, Student Loan, and Personal Loan",8.587003628,8,5.54,7,Standard,179.22,32.87880507,27 Years and 5 Months,Yes,124.3920824,,Low_spent_Small_value_payments,147.1580197,0,-0.6007,0.4408,-0.8062,-0.4394,0.2101 -0x16a5,CUS_0x6c66,August,39,328-33-6328,Manager,8701.545,519.12875,6,5,32,7,"Personal Loan, Payday Loan, Student Loan, Auto Loan, Home Equity Loan, Student Loan, and Payday Loan",,10.57779194,8.86,9,Standard,2822.81745,28.81553706,9 Years and 6 Months,NM,36.54819717,,Low_spent_Small_value_payments,264.7720511,0,1.5391,1.0488,2.2947,0.5844,0.5928 -0x16b1,CUS_0xff4,August,37,655-05-7666,Entrepreneur,25546.26,,8,7,14,5,"Not Specified, Student Loan, Student Loan, Credit-Builder Loan, and Auto Loan",,13,7.83,5,Standard,758.44,39.3334879,18 Years and 9 Months,Yes,101.3286374,189.8158613,Low_spent_Medium_value_payments,230.4410013,0,0.1052,-0.4496,1.0531,-0.0591,1.3587 -0x16bd,CUS_0x33d2,August,31,#F%$D@*&8,Scientist,31993.78,,6,6,7,2,"Payday Loan, and Home Equity Loan",18.59463536,16,6.28,1,Standard,818.22,36.01279377,17 Years and 5 Months,Yes,45.14129822,97.58820324,Low_spent_Large_value_payments,421.4853319,0,1.7394,-0.3326,0.8168,-0.424,1.5792 -0x16c9,CUS_0x6070,August,22,891-55-9364,Accountant,92047.08,7591.59,6,7,16,0,,17.03664609,13.36262143,9.13,4,Standard,1402.391548,27.72764678,29 Years and 9 Months,Yes,0,268.0846033,Low_spent_Large_value_payments,761.0743967,0,1.0019,-1.4392,-2.516,0.7172,-0.4689 -0x16d5,CUS_0xfdb,August,46,928-91-4452,Teacher,32284.62,,6,7,17,6,"Credit-Builder Loan, Not Specified, Mortgage Loan, Payday Loan, Credit-Builder Loan, and Personal Loan",14.08496063,12,2.22,10,Standard,1283.37,27.93012371,7 Years and 0 Months,Yes,103.0375604,,Low_spent_Small_value_payments,117.0291074,0,-0.412,-0.0029,1.7105,-1.291,-0.1756 -0x16e1,CUS_0x3553,August,26,084-25-3745,Musician,97791.42,,6,6,12,0,,9.101083329,8,17.92,1,Standard,96.06682914,33.8944426,27 Years and 9 Months,Yes,629.8156531,121.3975757,High_spent_Medium_value_payments,947.6102964,0,0.2175,0.3993,1.1419,-0.3543,-1.0697 -0x16ed,CUS_0x4100,August,32,#F%$D@*&8,Entrepreneur,19300.34,1512.361667,6,7,17,5,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Not Specified",35.31732377,19,9.95,8,Bad,2430.21,23.70919322,18 Years and 9 Months,Yes,49.57206224,118.1855507,Low_spent_Medium_value_payments,263.4785537,0,1.6229,-0.5432,0.4773,0.5172,0.6593 -0x16f9,CUS_0x132f,August,41,561-60-9294,Musician,19514.88,,7,5,5241.067457,0,,,12.43784843,4.17,4,_,1236.00016,29.8051915,19 Years and 10 Months,No,0,99.14154149,High_spent_Small_value_payments,316.9621706,0,-0.2194,-1.4649,-0.3342,0.4689,1.0099 -0x1705,CUS_0xa16e,August,42,905-50-7912,Media_Manager,10183.015,1074.584583,7,5,18.06745738,5,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",,25.53528725,7.97,6,Bad,2145.598375,37.86033254,10 Years and 8 Months,Yes,37.58807284,71.12274735,Low_spent_Small_value_payments,262.0273502,0,-1.2763,0.0624,0.3805,1.0582,-0.4244 -0x1711,CUS_0xac86,August,20,028-16-4402,Entrepreneur,106733.13,,4,4,0.288361749,0,,3.638363804,6,0.86,1,Good,76.23,38.32266643,33 Years and 4 Months,No,0,804.7011858,!@9#%8,792.5790252,0,-0.0228,0.0752,-1.6038,-0.9976,0.1018 -0x171d,CUS_0x5b48,August,32,706-95-0150,Lawyer,12600.445,782.0370833,5,5,11.06745738,3,"Not Specified, Student Loan, and Student Loan",32.8598389,22.75677133,15.79,11,Standard,871.9245209,33.00217724,12 Years and 10 Months,Yes,26.06034753,,Low_spent_Small_value_payments,249.0494929,0,-0.088,0.8624,2.2933,0.1876,1.2734 -0x1729,CUS_0xa5f9,August,34,#F%$D@*&8,Mechanic,57983.12,4720.926667,9,8,32.06745738,8,"Payday Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Student Loan, and Student Loan",49.84840926,28.04855714,7.27,,_,4123.685234,25.74965503,12 Years and 9 Months,Yes,200.4326134,159.136722,High_spent_Medium_value_payments,335.8030434,0,0.8295,0.3896,-0.2723,-0.3483,-1.0701 -0x1735,CUS_0x4d43,August,48,#F%$D@*&8,Entrepreneur,20787.69,,8,1381,14,3,"Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",,14,8.13,3,_,614.6,35.34418762,18 Years and 5 Months,No,42.22199266,21.74553123,High_spent_Large_value_payments,375.9632261,0,0.1094,-0.3238,0.4326,-0.1085,0.7074 -0x1741,CUS_0xb95f,August,30,467-13-1148,Writer,34290.12,,9,898,25,7,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",,10.59672582,13.96,13,_,2950.040646,36.82064895,14 Years and 3 Months,Yes,185.1119826,,High_spent_Small_value_payments,249.7218009,0,-0.151,-0.0705,0.715,0.585,1.9456 -0x174d,CUS_0x3edc,August,32,663-16-3845,Accountant,43070.24,,3,3,18,100,Debt Consolidation Loan,8.254135196,8,8.97,8,Standard,1233.1,26.36569955,19 Years and 9 Months,Yes,30.57608482,403.5168089,!@9#%8,218.125773,0,0.6659,-1.0326,-0.9323,0.1993,-0.4446 -0x1759,CUS_0xbffe,August,40,311-13-7309,Architect,6515990,,6,3,15,3,"Payday Loan, Not Specified, and Auto Loan",15.04059638,12,4.89,2,Standard,400.07,23.17761748,30 Years and 10 Months,Yes,69.60292048,51.83085897,High_spent_Large_value_payments,339.5694705,0,-0.8118,1.7953,0.1498,0.6065,0.4662 -0x1765,CUS_0xb681,August,38,904-88-7361,Manager,39641.54,3007.461667,10,8,26.95700519,6,"Auto Loan, Student Loan, Payday Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",33.64980071,14.66921716,-2.46,8,Bad,2723.776796,35.87235343,9 Years and 3 Months,Yes,1495.865971,149.2678062,Low_spent_Large_value_payments,204.5620199,0,0.2867,0.6424,0.6062,-0.4831,-0.2521 -0x1771,CUS_0x9a71,August,55,889-07-2357,Scientist,20186.02,1684.168333,1,5,1,2,"Auto Loan, and Home Equity Loan",,6,6.83,4,Good,413.32,33.75820397,,No,29.53458372,153.5387964,Low_spent_Medium_value_payments,265.3434532,0,0.2451,1.0827,-0.6347,-0.0903,1.7732 -0x177d,CUS_0x6048,August,44,425-47-6723,Musician,18627.64,1387.303333,7,7,19,6,"Payday Loan, Not Specified, Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,21.41481718,5.07,7,Bad,1951.50666,38.78895429,19 Years and 4 Months,Yes,65.13948778,98.80418974,Low_spent_Small_value_payments,264.7866558,0,0.3476,1.156,0.4948,0.4217,-0.0379 -0x1789,CUS_0x95b5,August,22,602-55-1355,Engineer,12986.745,,4,3,10,2,"Mortgage Loan, and Payday Loan",24.46152873,17,11.8,7,Standard,1489.49,32.25544266,9 Years and 3 Months,Yes,16.71930023,91.82948181,Low_spent_Small_value_payments,277.374093,0,1.3909,-1.2994,-2.009,0.3949,-0.3425 -0x1795,CUS_0x4004,August,44,679-26-6464,Writer,58317,,8,5,9,6,"Mortgage Loan, Personal Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Personal Loan",19.40991097,,16.58,10,Standard,98.97,36.76366453,13 Years and 8 Months,Yes,149.8971994,59.9559875,High_spent_Medium_value_payments,506.6218131,0,-0.0113,0.0732,1.6027,0.7891,1.6551 -0x17a1,CUS_0xb101,August,37,253-91-2822,Scientist,42171.98,,2,7,10,3,"Auto Loan, Auto Loan, and Not Specified",,10,2.58,4,Good,556.91,35.96285294,22 Years and 0 Months,No,102.7629131,145.3992425,High_spent_Medium_value_payments,378.271011,0,0.5304,-0.0882,1.201,-0.5584,1.3922 -0x17ad,CUS_0x9b94,August,36,734-54-7098,Manager,71681.4,5799.45,3,6,15,1,Not Specified,,8,10.44,0,Standard,1152.207911,38.23451377,26 Years and 2 Months,NM,53.92351397,327.8367937,Low_spent_Medium_value_payments,510.20959,0,0.5583,1.6823,0.6054,-1.465,-0.183 -0x17b9,CUS_0x4080,August,19,995-37-8920,Mechanic,29469.98,2227.831667,7,7,25.06745738,5,"Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Not Specified",45.37373333,25.08667407,26.94,11,Bad,4071.260166,33.98625396,13 Years and 9 Months,Yes,69.68545857,24.06613145,High_spent_Medium_value_payments,352.3112887,0,0.4769,-0.164,1.7748,0.2189,0.11 -0x17c5,CUS_0x706a,August,20,431-58-4893,_______,72559.36,,4,5,17,4,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Payday Loan",,19,-1.26,5,Standard,1173.7,38.17098243,28 Years and 6 Months,No,215.8391706,105.7178731,High_spent_Medium_value_payments,556.9042896,0,-0.4801,-2.6162,0.4209,0.2345,0.8054 -0x17d1,CUS_0x42ac,August,37,700-60-3660,Musician,15566.02,1423.168333,8,5,32,4,"Home Equity Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",28.33087532,23,9.24,9,Standard,1693.95,36.57298991,8 Years and 5 Months,Yes,43.0705196,,Low_spent_Medium_value_payments,333.9677312,0,0.7028,-0.2142,-0.478,-0.6805,-0.57 -0x17dd,CUS_0x571f,August,19,397-28-9675,Developer,66567.32,,5,7,4.288361749,2,"Mortgage Loan, and Not Specified",15.76845393,14,-1.33,2,Standard,233.79,27.53281244,,NM,100.1893609,,High_spent_Large_value_payments,636.9940772,0,-1.5207,-0.4786,-0.0436,-0.2549,0.6098 -0x17e9,CUS_0xb5ff,August,33,060-81-1328,Media_Manager,12909.895,853.8245833,5,5,13,100,,22.45144464,15,7.58,3,Standard,602.5,23.57985072,17 Years and 8 Months,No,0,60.05263477,Low_spent_Medium_value_payments,305.3298236,0,0.1497,-1.2838,-0.2533,-0.623,-0.2416 -0x17f5,CUS_0x6a1b,August,33,252-50-2326,Accountant,30788.44,2623.703333,8,9,32.95700519,6,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",35.24443074,20,21.73,9,Bad,3693.490954,39.27772601,,Yes,1438.016465,242.5323493,!@9#%8,150.7711499,0,0.9169,-2.1677,-0.3678,0.2583,1.3894 -0x1801,CUS_0x9bc1,August,42,445-18-4420,Architect,20574.47,,6,1189,14,4,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,10,13.74,11,Standard,749.95,28.62902965,11 Years and 6 Months,Yes,49.34866632,,High_spent_Large_value_payments,322.7377426,0,-0.7642,0.3988,0.7704,-0.7122,0.3445 -0x180d,CUS_0xc65,August,22,473-91-5845,Lawyer,148699.32,12432.61,3,4,5,3,"Personal Loan, Mortgage Loan, and Payday Loan",10.26538599,8,9.2,1,Good,822.3567471,40.60538838,31 Years and 2 Months,No,364.9151774,371.9517636,High_spent_Medium_value_payments,799.4379832,0,0.1249,-0.2514,0.9361,-1.0472,-0.3668 -0x1819,CUS_0xaedb,August,20,#F%$D@*&8,_______,85554.03,7185.5025,4,2,2.288361749,0,,5.837227511,7,6.43,3,Good,1002.177729,40.59231453,,No,81050,510.1404033,High_spent_Large_value_payments,879.7520668,0,-0.7015,-2.7747,0.8205,2.2154,-1.6578 -0x1825,CUS_0x8e9b,August,18,925-51-5335,Entrepreneur,55829.79,,10,10,19.06745738,8,"Student Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Not Specified, Personal Loan, and Payday Loan",,19,23.99,11,Bad,3645.900954,38.8889718,11 Years and 0 Months,Yes,314.9017853,255.7295014,Low_spent_Small_value_payments,129.5966754,0,-0.5279,1.8613,0.3924,-0.1863,-1.3342 -0x1831,CUS_0x609d,August,27,911-47-6879,_______,14165.23,1057.435833,8,10,34.95700519,9,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Payday Loan, Payday Loan, Payday Loan, and Student Loan",,26,8.82,11,_,3020.580954,36.2247492,14 Years and 6 Months,NM,1382.351885,133.8825777,Low_spent_Small_value_payments,158.4587515,0,0.9232,-0.8441,-0.3809,0.777,0.9375 -0x183d,CUS_0x75c6,August,33,587-65-8904,Teacher,87215.68,,2,6,7.288361749,2,"Auto Loan, and Payday Loan",5.089582861,8,10.98,0,Good,625.746998,34.70191002,21 Years and 3 Months,NM,19734,771.3006059,High_spent_Medium_value_payments,573.1125062,0,-1.5005,-2.0154,0.7527,0.8811,0.757 -0x1849,CUS_0x9b3c,August,43,224-48-7837,Lawyer,81842.28,,10,9,25,9,"Student Loan, Auto Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Auto Loan, and Personal Loan",,16,16.25,11,Bad,3053.16,30.56175048,,NM,574.0657979,79.38081205,High_spent_Large_value_payments,267.5723901,0,-0.1541,-0.8006,0.8786,-1.899,-2.6295 -0x1855,CUS_0x22a3,August,42,477-90-5881,Doctor,95956.5,,8,4,11,2,"Personal Loan, and Student Loan",,,11.94,2,Standard,952.4644024,41.341414,32 Years and 2 Months,NM,95.52162878,626.8767648,Low_spent_Large_value_payments,450.3051884,0,0.4014,1.3629,-0.0973,0.8988,0.0472 -0x1861,CUS_0xb14,August,80,331-60-5414,Manager,49967.01,4091.9175,6,5,31,6,"Auto Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Student Loan",19.49290686,12.54248284,19.87,12,Standard,2435.729649,31.5207818,17 Years and 5 Months,Yes,156.0033117,116.361294,High_spent_Medium_value_payments,386.8271444,0,0.2875,-0.0949,-1.7743,-0.296,-0.7903 -0x186d,CUS_0xb986,August,18,#F%$D@*&8,Developer,39887.22,3224.935,10,9,16.88954781,100,"Not Specified, Student Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",41.07280465,22,17.25,14,Bad,3119.6,34.97086572,13 Years and 0 Months,NM,1456.954289,145.9405486,High_spent_Small_value_payments,285.2685809,0,-0.3091,1.6008,0.0272,0.9651,-1.1942 -0x1879,CUS_0xbe1b,August,44,853-17-1579,Developer,14129.76,1023.217588,8,5,22.06745738,8,"Student Loan, Payday Loan, Personal Loan, Not Specified, Mortgage Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",44.53187139,21.24453187,5.51,6,Bad,4882.506052,36.69267686,13 Years and 2 Months,NM,70.97506655,,High_spent_Medium_value_payments,209.4388278,0,1.0192,1.0906,2.3394,-1.2438,0.2456 -0x1885,CUS_0x9ce6,August,43,101-11-3105,Developer,123732.32,10416.02667,4,3,11,0,,8.482845149,8,8.92,,Good,1154.46,26.26810601,27 Years and 10 Months,No,0,589.8279399,Low_spent_Medium_value_payments,731.7747268,0,-0.0146,-0.844,0.2454,0.4614,0.3452 -0x1891,CUS_0x6ffb,August,37,716-35-4628,Writer,17251.38,,6,3,7,7,"Personal Loan, Student Loan, Home Equity Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Mortgage Loan",17.20903559,15,15.06,10,Standard,2431.64,32.94484421,,Yes,57.35116519,23.47260473,High_spent_Large_value_payments,324.6377301,0,1.1949,0.0881,-1.6007,-0.0573,-2.1645 -0x189d,CUS_0x4315,August,23,908-69-0212,Entrepreneur,36822.29,,8,7,5.288361749,4,"Not Specified, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,19,5.79,5,Standard,115.8631655,38.13561251,25 Years and 3 Months,No,95.80071292,715.9134705,Low_spent_Medium_value_payments,245.4682923,0,0.2907,0.7042,0.6406,-0.9528,0.8801 -0x18a9,CUS_0x3f5b,August,25,744-11-7914,Doctor,80108.31,6866.6925,5,3,17,0,,27.32361763,19,14.22,4,Standard,997.28,28.12327833,18 Years and 2 Months,Yes,0,127.886289,!@9#%8,808.782961,0,0.1089,-0.9811,-0.2403,1.5701,-0.9087 -0x18b5,CUS_0x9d78,August,21,423-77-6457,Scientist,69977.6,5978.466667,10,7,20,9,"Auto Loan, Personal Loan, Mortgage Loan, Auto Loan, Student Loan, Auto Loan, Mortgage Loan, Student Loan, and Auto Loan",32.20918268,18,6.81,11,Bad,3042.36,36.25111095,,NM,485.750431,510.0147632,Low_spent_Large_value_payments,,0,-0.7493,-1.0347,0.9216,0.2945,-0.377 -0x18c1,CUS_0x47db,August,20,#F%$D@*&8,Musician,78988.48,6449.373333,9,5,29,7,"Auto Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",,19.99935269,10.27,9,Bad,1998.817777,28.95543808,10 Years and 8 Months,Yes,291.7827603,162.0816014,!@9#%8,431.0729716,0,-1.7434,0.9454,-0.1171,0.7768,0.4437 -0x18cd,CUS_0x8f17,August,46,794-17-4490,Journalist,41746.76,3651.896667,8,5,32.06745738,3,"Mortgage Loan, Personal Loan, and Not Specified",,24.21915164,9.81,11,Bad,2373.099122,33.96883851,,Yes,102.2833975,85.99686894,High_spent_Large_value_payments,390.1891122,0,0.773,-1.1378,-0.8602,1.0234,1.0828 -0x18d9,CUS_0x7d0b,August,25,226-77-0587,_______,19981.6,1459.133333,10,8,20.88954781,7,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Student Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",45.82164195,24.66641707,23.58,12,Bad,5287.918343,30.8132951,10 Years and 9 Months,Yes,1401.901716,,Low_spent_Small_value_payments,168.0417092,0,-0.6076,-0.4486,-0.1057,-0.7085,0.4475 -0x18e5,CUS_0x7504,August,19,389-89-4542,Lawyer,73737.36,,7,3,18,4,"Not Specified, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",23.78826551,17,13.92,2,Standard,1219.39,37.84472129,31 Years and 8 Months,Yes,214.8134632,428.4559993,Low_spent_Large_value_payments,220.4085375,0,-0.1344,0.1848,-1.5893,0.1384,-0.0956 -0x18f1,CUS_0x774,August,34,761-11-3016,Musician,88362.46,,5,2,8,3,"Debt Consolidation Loan, Home Equity Loan, and Personal Loan",6.402364484,7,11.01,1251,Good,287.3984326,36.53896301,31 Years and 3 Months,No,211.1843903,90.49648093,High_spent_Large_value_payments,674.2980966,0,-1.6329,0.5937,1.0054,1.3927,-0.3707 -0x18fd,CUS_0x9f70,August,50,147-76-6929,Entrepreneur,118248.6,10115.05,5,1,3.288361749,0,,,13,3.69,8,Good,175.6905224,28.50619149,17 Years and 8 Months,NM,0,1138.582604,Low_spent_Small_value_payments,687.0398865,0,-0.7848,-0.0185,0.3281,1.4909,1.0899 -0x1909,CUS_0xab76,August,26,878-90-6321,_______,60162.1,5197.508333,5,7,5,7,"Student Loan, Student Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,10,12.79,9,Standard,1037.45,32.07861888,13 Years and 9 Months,Yes,50812,,Low_spent_Medium_value_payments,347.7706392,0,1.6559,1.6951,0.4265,0.5332,0.9164 -0x1915,CUS_0x5cdf,August,18,616-36-8188,Musician,75273.24,,8,6,32,5,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",24.33486995,11,12.8,8,Standard,2497.34,39.12441778,5 Years and 9 Months,Yes,351.3670447,369.4917202,Low_spent_Medium_value_payments,343.1662236,0,0.5832,-1.3795,-0.0482,-0.9434,0.0737 -0x1921,CUS_0x2184,August,18,496-44-5947,Media_Manager,54820.89,4295.4075,8,7,28,6,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Personal Loan",29.16640083,17,18.42,11,Bad,4795.13,28.20185655,3 Years and 6 Months,Yes,169.4819843,118.8780759,High_spent_Medium_value_payments,391.1806898,0,1.2449,-1.2583,0.9892,0.2253,0.1131 -0x192d,CUS_0xa156,August,80,#F%$D@*&8,Entrepreneur,58674.66,,8,5,15,4,"Not Specified, Payday Loan, Auto Loan, and Home Equity Loan",,28.05369658,1.29,11,_,2701.423653,33.80858373,13 Years and 8 Months,NM,116.1034169,334.2691645,Low_spent_Small_value_payments,322.0829186,0,1.6511,1.3913,0.4517,-1.0617,-1.9729 -0x1939,CUS_0x74f2,August,30,755-18-0308,Architect,30390.44,,5,6,5,4,"Mortgage Loan, Student Loan, Not Specified, and Mortgage Loan",,20,8.36,4,Standard,580.31,22.96052767,,No,64.84803821,,Low_spent_Small_value_payments,369.3704505,0,0.5339,1.1063,-0.5848,-0.6796,-0.5351 -0x1945,CUS_0x308b,August,43,547-23-7195,Doctor,45207.54,,8,8,2724.889548,6,"Mortgage Loan, Auto Loan, Personal Loan, Student Loan, Home Equity Loan, and Student Loan",32.97525229,23.46350071,9.78,13,Bad,2764.842264,25.09430322,16 Years and 11 Months,Yes,1472.396717,,!@9#%8,142.0769721,0,-0.5114,0.3233,2.102,-0.0194,1.9889 -0x1951,CUS_0x2827,August,24,486-07-1289,Scientist,144546.72,,0,3,7,2,"Payday Loan, and Not Specified",7.014737246,7,6.08,1,_,905.3676909,45.21691024,23 Years and 6 Months,No,1293.505449,264.6747701,!@9#%8,1057.458508,0,0.7917,0.2035,0.3731,-1.1442,-0.9774 -0x195d,CUS_0xa295,August,39,605-63-9678,Engineer,30346.35,,5,4,14,7,"Auto Loan, Not Specified, Payday Loan, Mortgage Loan, Personal Loan, Payday Loan, and Personal Loan",12.56660065,6,18.8,5,Standard,523.56,26.31347756,8 Years and 11 Months,Yes,96.72128021,29.04519318,High_spent_Medium_value_payments,389.4197766,0,0.2552,-2.0531,-1.7699,-1.2478,-2.459 -0x1969,CUS_0x6c2e,August,51,558-25-1337,Mechanic,18681.465,,2,3,9,2,"Home Equity Loan, and Student Loan",4.443929299,6,3.9,3,Good,296.3719589,39.53810864,31 Years and 4 Months,No,24.82142498,,Low_spent_Small_value_payments,209.5576971,0,-0.537,0.5013,-0.1834,-0.943,0.0644 -0x1975,CUS_0x384c,August,42,813-91-8749,Scientist,9841.34,,8,9,32.06745738,5,"Personal Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",31.4045892,15,29.52,10,_,5208.230954,38.84527475,5 Years and 0 Months,Yes,36.67512792,,High_spent_Small_value_payments,245.2092986,0,0.6826,-2.4163,-0.554,-0.6387,-0.7079 -0x1981,CUS_0x6cbb,August,35,308-38-8791,Media_Manager,72330.98,6300.581667,0,3,11,1,Auto Loan,,6,4.62,1,Good,524.8418723,24.83928335,33 Years and 3 Months,No,31.37979416,353.3940338,Low_spent_Large_value_payments,567.4558542,0,-1.0511,0.3921,0.7219,-0.1737,0.0613 -0x198d,CUS_0x36ab,August,18,925-44-1671,Teacher,43241.49,3282.269196,10,7,30,6,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Auto Loan, Not Specified, and Home Equity Loan",28.6407475,17,8.47,10,Bad,2174.16,30.59762389,12 Years and 9 Months,Yes,460.4272666,94.6003948,High_spent_Medium_value_payments,351.2063921,0,-0.145,-1.6479,-0.5022,0.0456,1.8941 -0x1999,CUS_0x6649,August,23,548-03-9919,Mechanic,34106.78,,8,5,17,0,,8.552510645,10,10.06,0,Standard,866.3932861,30.45487937,32 Years and 6 Months,Yes,0,88.59925391,High_spent_Medium_value_payments,448.8478223,0,-0.894,-1.5689,1.3699,0.575,0.4565 -0x19a5,CUS_0x6856,August,30,251-77-0979,Teacher,129067.59,10795.6325,1,3,0.288361749,4,"Student Loan, Auto Loan, Auto Loan, and Payday Loan",1.689031639,5,4.54,0,Good,119.1295569,38.53014989,,No,389.3056725,709.6411454,High_spent_Large_value_payments,680.8960947,0,-0.2875,-0.9789,1.1232,0.5232,0.6683 -0x19b1,CUS_0xa27e,August,34,898-94-0497,Architect,17001.34,1214.778333,6,5,5,1,Home Equity Loan,23.27056094,20,5.62,2,Standard,1093.87,35.03187222,17 Years and 9 Months,No,10.53555561,,Low_spent_Small_value_payments,301.6478199,0,1.6028,-1.2367,0.4083,-1.8154,0.5535 -0x19bd,CUS_0x700d,August,25,992-49-2793,Accountant,44719.17,3969.5975,6,6,30.06745738,7,"Payday Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",41.22515147,22.48164645,23.21,14,Bad,4384.032252,30.40410996,13 Years and 6 Months,Yes,248.5998859,115.7644921,High_spent_Medium_value_payments,255.8750841,0,1.6502,2.0148,1.2753,-0.7823,-0.2782 -0x19c9,CUS_0x78e0,August,48,352-67-4436,Accountant,17787.34,,8,4,16,2,"Student Loan, and Auto Loan",15.49628222,15,5.65,0,Standard,730.9,29.99815125,30 Years and 4 Months,No,20.06363388,31.71381628,Low_spent_Large_value_payments,342.4503832,0,0.1194,-2.278,0.0976,-0.2358,-0.7556 -0x19d5,CUS_0x6794,August,42,204-14-2702,Teacher,103353.06,8527.755,3,3,5.288361749,0,Student Loan,11.48608044,12,3.11,2,Good,1265.896045,40.91609198,26 Years and 2 Months,No,64.00168567,,High_spent_Large_value_payments,961.6680465,0,1.8996,0.2467,-0.4666,-0.7329,0.5792 -0x19e1,CUS_0xe2c,August,38,#F%$D@*&8,Journalist,31021.24,2756.103333,7,7,11,4,"Auto Loan, Auto Loan, Auto Loan, and Personal Loan",27.04735431,21,15.21,7,_,852.81,38.93241252,,No,90.75917846,343.8465066,Low_spent_Small_value_payments,131.0046483,0,0.9292,0.0527,0.2953,-0.743,-0.7255 -0x19ed,CUS_0x36bb,August,43,837-45-5178,Journalist,134978.24,10541.52075,8,5,14.28836175,2,"Mortgage Loan, and Mortgage Loan",,15,16.89,5,Standard,577.2537016,38.22122647,26 Years and 9 Months,Yes,662.7777405,,Low_spent_Medium_value_payments,667.8676,0,-0.495,-0.1918,0.1031,0.662,-1.6615 -0x19f9,CUS_0xa77f,August,28,074-21-6507,Writer,39800.12,3047.676667,7,5,12,3,"Personal Loan, Payday Loan, and Auto Loan",26.93205021,20,11.53,4,Standard,660.69,28.62288043,18 Years and 4 Months,Yes,58.48765734,274.4562487,Low_spent_Medium_value_payments,251.8237606,0,-1.5168,0.6204,-0.9422,-1.1335,-0.5087 -0x1a05,CUS_0x1e70,August,18,772-58-9547,Manager,14841.35,,6,5,17,7,"Mortgage Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Student Loan",,14,28.64,6,Bad,3417.397833,37.15219502,8 Years and 0 Months,NM,71.54474307,111.0070565,!@9#%8,245.6427607,0,0.36,0.4326,0.0884,-0.4533,-0.0253 -0x1a11,CUS_0xa335,August,25,835-41-6871,Architect,66105.4,5653.783333,6,8,31,5,"Mortgage Loan, Auto Loan, Not Specified, Student Loan, and Payday Loan",,26.25663472,5.52,12,Bad,1780.160846,24.71419199,11 Years and 9 Months,Yes,214.0721231,,High_spent_Large_value_payments,474.0764973,0,1.3117,-1.1296,-1.224,-1.2287,0.3603 -0x1a1d,CUS_0x71e0,August,28,330-96-0638,Mechanic,15398.95,1548.245833,1,7,5,4,"Student Loan, Mortgage Loan, Not Specified, and Not Specified",,1,8.41,8,Good,343.84,28.13568776,28 Years and 10 Months,No,34.81396986,,Low_spent_Large_value_payments,294.6240512,0,1.3628,0.3355,1.0478,-1.6909,1.1209 -0x1a29,CUS_0x4af0,August,18,397-45-5329,Developer,27070.07,2518.839167,7,3,11,4,"Home Equity Loan, Credit-Builder Loan, Student Loan, and Personal Loan",15.99048588,15,5.68,6,_,919.76,40.01458593,29 Years and 9 Months,No,73.23331848,138.3817694,High_spent_Small_value_payments,300.2688288,0,-0.2892,0.1554,0.5815,-0.9143,-0.6353 -0x1a35,CUS_0x3861,August,51,212-32-2085,_______,17992.775,,3,5,570,0,,16.21786489,,8.61,3,_,636.0365628,33.46438826,19 Years and 6 Months,No,0,79.04022403,Low_spent_Small_value_payments,387.8995676,0,0.1726,0.2067,0.681,-0.4142,-1.7056 -0x1a41,CUS_0x240d,August,56,087-22-6137,Musician,139354.48,,3,3,18,0,,,16,4.94,4,Standard,519.3,39.12793594,20 Years and 6 Months,No,760.6082757,408.0045658,High_spent_Medium_value_payments,1005.282768,0,-0.8376,-0.718,0.4895,-0.4424,-1.2061 -0x1a4d,CUS_0x2652,August,25,062-29-3192,Teacher,18305.25,,2,1,207,0,,10.40603009,11,5.27,3,Good,327.2570603,35.59186051,20 Years and 8 Months,No,0,209.9172375,Low_spent_Small_value_payments,258.4089896,0,-0.3383,-1.4019,-0.5844,1.5825,-1.1716 -0x1a59,CUS_0x259a,August,26,727-40-9990,Journalist,27865.26,2606.105,4,3,6,1,Student Loan,28.55445884,20.63184525,19.05,5,Standard,718.2668422,25.68737505,30 Years and 11 Months,Yes,17.69844332,117.0336581,Low_spent_Small_value_payments,415.8783985,0,-0.6077,-1.5734,0.8561,1.0974,0.4408 -0x1a65,CUS_0x28b5,August,36,#F%$D@*&8,Architect,23404.86,,6,5,7,0,,20.30614055,17,,5,Standard,35.54,32.49157597,29 Years and 2 Months,Yes,0,86.55597978,Low_spent_Small_value_payments,393.3845202,0,0.0016,0.3752,-1.0214,1.3055,-0.5095 -0x1a71,CUS_0x8643,August,34,198-08-9791,Musician,14205.09,,8,10,22.95700519,8,"Student Loan, Not Specified, Not Specified, Credit-Builder Loan, Student Loan, Mortgage Loan, Not Specified, and Student Loan",38.3773612,24.2013617,19.42,16,_,5785.547365,29.64419835,13 Years and 11 Months,Yes,1372.515839,45.08912606,Low_spent_Small_value_payments,260.0204152,0,-0.5785,1.4474,0.6812,1.4751,0.8313 -0x1a7d,CUS_0x12d5,August,28,518-01-2262,Scientist,62320.56,5068.38,9,9,18,5,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",,15,17.24,15,_,3589.56,38.3374493,1 Years and 11 Months,NM,171.3455597,171.5108634,High_spent_Small_value_payments,423.9815769,0,-1.2322,0.8978,-0.3515,-0.4757,1.6222 -0x1a89,CUS_0x3f04,August,25,465-93-9571,_______,43758.34,,5,6,12,2,"Personal Loan, and Payday Loan",0,2,4.18,2,Good,1051.839956,35.74253977,33 Years and 8 Months,No,56.31142051,,Low_spent_Small_value_payments,214.9034199,0,0.2768,-0.0014,0.5485,0.8419,-1.1255 -0x1a95,CUS_0x62c6,August,20,860-36-1556,Writer,144881.68,11877.47333,3,4,14.28836175,4,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,12,10.1,2,Standard,404.51,36.61537432,26 Years and 4 Months,Yes,414.6560132,973.2047467,High_spent_Small_value_payments,479.8240344,0,1.1094,0.0314,-0.2827,2.2527,0.5411 -0x1aa1,CUS_0x398d,August,38,407-06-9232,Media_Manager,108147.3,8926.275,3,6,5.288361749,4,"Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",23.62643566,20,7.57,2,Standard,1006.803576,34.97042416,29 Years and 4 Months,Yes,37514,1464.660731,Low_spent_Small_value_payments,25.29240814,0,-0.3049,0.1842,-1.5409,-0.2771,1.0797 -0x1aad,CUS_0x618b,August,28,550-94-8995,Lawyer,17759.1,1533.925,6,8,20.06745738,5,"Student Loan, Personal Loan, Home Equity Loan, Home Equity Loan, and Auto Loan",,22.40483781,5.2,10,Bad,4179.220852,29.20544486,5 Years and 4 Months,Yes,64.55062049,,Low_spent_Medium_value_payments,219.041555,0,-0.6347,-0.8979,1.056,1.0328,-1.7024 -0x1ab9,CUS_0x7250,August,37,651-67-7536,Teacher,85328.73,,528,4,11,1,Student Loan,90,834,1.83,2,_,538.5614454,22.56544762,32 Years and 2 Months,No,68.45896611,680.452063,Low_spent_Medium_value_payments,286.5442472,0,0.4208,0.5165,-0.3866,-0.2182,-0.0093 -0x1ac5,CUS_0x6435,August,27,538-49-2118,Writer,134321.44,9997.592514,3,5,12,4,"Student Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",,20,11.09,3,Standard,1428.68,35.52332578,33 Years and 3 Months,NM,1320.549063,209.5174827,High_spent_Medium_value_payments,893.2396069,0,-0.4232,2.7752,0.5394,0.4437,-0.3497 -0x1ad1,CUS_0xb6ad,August,27,584-60-4961,Lawyer,61008,5235,10,5,32,4,"Auto Loan, Auto Loan, Student Loan, and Home Equity Loan",29.91864766,21.74319434,19.44,17,Standard,1945.133505,41.88727835,,Yes,189.4265307,196.6664451,High_spent_Medium_value_payments,387.4070242,0,0.3776,-0.3323,0.6482,-0.054,-1.9937 -0x1add,CUS_0x7878,August,19,037-28-6132,Developer,28665.76,,7,3,713,1,Debt Consolidation Loan,11.1445562,10,4.32,0,_,1237.46,33.53347693,24 Years and 10 Months,No,22.68817758,175.7926144,Low_spent_Small_value_payments,349.8005414,0,0.2385,-0.2677,-1.6208,0.3843,-0.6905 -0x1ae9,CUS_0x35b5,August,21,432-18-5390,Lawyer,56803.71,4620.6425,7,5,25,6,"Mortgage Loan, Student Loan, Student Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",44.93615404,26.07328133,16.23,11,Bad,2875.679085,27.15124298,,Yes,187.1902189,,Low_spent_Small_value_payments,205.1353372,0,-0.5083,0.6589,0.6946,-0.6979,2.1686 -0x1af5,CUS_0x7a0f,August,32,838-98-6353,Architect,38364.82,2904.068333,9,6,33.06745738,4,"Not Specified, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",37.49731335,24.81542753,3.44,,Bad,2460.625207,36.45555866,19 Years and 10 Months,Yes,74.85037188,73.01267544,High_spent_Small_value_payments,375.8234981,0,-0.1011,-0.3406,0.8259,-0.8246,0.3918 -0x1b01,CUS_0x1c09,August,22,365-73-8387,Lawyer,66528.24,5733.02,5,5,11,0,,,12,13.65,2,_,1460.8,30.58597494,22 Years and 11 Months,NM,0,158.4202048,High_spent_Medium_value_payments,664.8817952,0,2.3616,0.3647,-0.2038,0.1,0.292 -0x1b0d,CUS_0x2c0d,August,53,784-23-6447,Doctor,19403.405,,1,7,3,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",14.3100295,11.49150544,-1.1,2,Good,381.7609415,38.3686739,16 Years and 11 Months,No,39.21491443,214.8208575,Low_spent_Small_value_payments,226.4592697,0,-1.0267,0.5536,0.2759,0.3525,0.5686 -0x1b19,CUS_0x9073,August,19,751-65-6458,Journalist,31122.79,2761.565833,7,5,12,0,,31.16870364,20,9.75,4,_,358.6,41.00475108,,No,0,,High_spent_Medium_value_payments,446.7819896,0,-0.5122,-0.3054,1.2609,0.0949,0.661 -0x1b25,CUS_0x2813,August,20,361-34-7350,Architect,15015.4,,5,5,9,1,Debt Consolidation Loan,12.92282602,8,5.04,1,Good,330.17,28.38062138,22 Years and 2 Months,No,11.68573457,162.5753084,Low_spent_Small_value_payments,237.0672904,0,0.0089,0.7789,1.076,0.5591,-0.1597 -0x1b31,CUS_0xac93,August,34,744-52-9753,Engineer,19777.05,,5,3,3,3,"Student Loan, Debt Consolidation Loan, and Auto Loan",,3.560986431,5.95,1,Good,213.943896,38.13596102,22 Years and 2 Months,No,29.04553332,65.37503748,Low_spent_Medium_value_payments,358.3881792,0,0.7279,-0.5077,-1.4532,0.7827,1.5479 -0x1b3d,CUS_0x8c69,August,25,070-07-9414,Musician,9351702,1851.335,4,3,5.288361749,2,"Mortgage Loan, Student Loan, and Mortgage Loan",4.421531434,6,1.31,0,Good,354.1066355,35.17565934,20 Years and 9 Months,No,25.58028082,537.2470425,High_spent_Small_value_payments,318.1993871,0,0.2977,0.2381,-0.4536,-1.2763,-1.1393 -0x1b49,CUS_0x365a,August,52,026-57-5729,_______,41345.58,3260.465,0,5,10,0,,0,0,6.42,7,Good,736.1518293,23.74405012,28 Years and 8 Months,No,0,101.5909584,!@9#%8,494.4555416,0,-1.4198,-0.3363,-0.3708,1.0391,-1.1497 -0x1b55,CUS_0x7586,August,32,790-90-6437,Engineer,55151.04,,10,6,23,6,"Auto Loan, Auto Loan, Credit-Builder Loan, Not Specified, Not Specified, and Not Specified",24.907116,17,10.64,,Bad,1743.83,31.46145399,,Yes,171.8230674,,Low_spent_Small_value_payments,114.7645422,0,0.2064,-0.664,0.3371,0.2955,0.625 -0x1b61,CUS_0x9c67,August,39,977-57-0254,Manager,30536.62,2430.718333,6,6,7,2,"Auto Loan, and Auto Loan",,8,9.33,4,Standard,687.87,40.2042282,15 Years and 11 Months,Yes,42.97244102,,Low_spent_Small_value_payments,262.1109593,0,-0.8112,1.0483,-0.1418,0.6933,1.022 -0x1b6d,CUS_0x7caf,August,29,628-85-7991,Architect,147499.6,,2,2,11.28836175,2,"Payday Loan, and Debt Consolidation Loan",0,2,0.21,2,Good,1090.111098,29.66342032,,No,192.2064833,1395.256214,High_spent_Small_value_payments,447.9251564,0,1.6977,1.3836,-1.4866,0.526,1.2462 -0x1b79,CUS_0xa2f7,August,43,858-89-0350,Architect,20005.22,1683.101667,8,3,6,4,"Home Equity Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,22.41607867,18.33,13,Standard,2124.847689,25.47481436,13 Years and 0 Months,Yes,59.51321413,,Low_spent_Small_value_payments,222.3513795,0,1.0084,-1.9568,0.2012,-1.2481,0.2474 -0x1b85,CUS_0x5e17,August,33,970-52-2075,Scientist,19795.52,,7,10,34,8,"Mortgage Loan, Home Equity Loan, Personal Loan, Payday Loan, Not Specified, Student Loan, Payday Loan, and Payday Loan",32.09054174,24.85512476,22.79,15,Bad,3475.866412,29.88483228,2 Years and 10 Months,Yes,130.4754707,176.0736371,Low_spent_Small_value_payments,149.7135589,0,1.0257,0.5764,2.3715,1.1512,-0.6736 -0x1b91,CUS_0x1288,August,34,609-85-2725,Doctor,60938.13,5163.1775,10,8,32.95700519,8,"Payday Loan, Payday Loan, Not Specified, Student Loan, Mortgage Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",,24.51080327,17.49,9,Bad,4578.755743,37.61458136,5 Years and 5 Months,Yes,1701.788117,,Low_spent_Large_value_payments,225.1824611,0,0.9419,1.6264,1.0647,0.3141,-0.2715 -0x1b9d,CUS_0x567b,August,54,#F%$D@*&8,Manager,80396.86,,5,7,9,0,,9.104487783,11,10.47,,Good,1357.54,30.88198148,27 Years and 0 Months,No,0,665.0311265,Low_spent_Medium_value_payments,277.3427068,0,1.066,0.5862,1.0677,0.6372,-1.2567 -0x1ba9,CUS_0x2365,August,43,552-90-7532,Writer,57610.32,,8,10,26.95700519,9,"Personal Loan, Student Loan, Payday Loan, Personal Loan, Not Specified, Not Specified, Mortgage Loan, Not Specified, and Home Equity Loan",,27.06097261,21.31,7,Bad,5156.799987,38.76380574,2 Years and 0 Months,Yes,1579.717623,110.7525603,High_spent_Large_value_payments,280.2654472,0,2.6158,0.4892,-0.7533,-0.4624,-1.2573 -0x1bb5,CUS_0x8a04,August,37,966-14-4315,Journalist,18717.02,,8,5,15,5,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Not Specified",19.12980296,18,15.3,10,Standard,2103.99,29.0506668,15 Years and 11 Months,Yes,60.64699329,66.72044916,Low_spent_Small_value_payments,292.1077242,0,-0.9611,-1.675,-0.4736,1.3631,-1.5337 -0x1bc1,CUS_0x6015,August,18,548-76-0110,_______,19163.22,,3,7,7,2,"Personal Loan, and Payday Loan",,22,8.76,9,Standard,2226.37,22.40065718,,Yes,24.17564765,,Low_spent_Small_value_payments,224.8580329,0,0.0056,-0.968,0.5087,0.3189,0.8044 -0x1bcd,CUS_0x21e6,August,48,328-75-6365,Media_Manager,94554.87,,2,6,2,0,,0,0,3.24,3,Good,1348.268933,25.96845245,22 Years and 8 Months,No,0,280.3098287,Low_spent_Large_value_payments,821.3452523,0,0.5128,-0.2253,0.718,-0.2588,-0.0838 -0x1bd9,CUS_0xa9a6,August,27,600-76-4920,Musician,63536.98,5382.748333,4,5,12,2,"Debt Consolidation Loan, and Auto Loan",,16,14.78,9,Standard,89.62,37.45884228,31 Years and 4 Months,Yes,69.10085253,10000,High_spent_Medium_value_payments,529.4183765,0,-0.849,-0.8042,0.2811,2.1588,-3.6731 -0x1be5,CUS_0x3187,August,40,024-52-4439,Architect,9983.345,758.9454167,7,11,15,5,"Not Specified, Student Loan, Auto Loan, Payday Loan, and Auto Loan",22.95697884,16,10.26,11,Standard,1823.35,26.29494403,9 Years and 9 Months,Yes,29.24151869,,High_spent_Large_value_payments,276.0401151,0,-2.3869,0.3516,0.6753,-0.4874,1.5645 -0x1bf1,CUS_0x3fbf,August,18,646-12-1414,Accountant,27796.42,2300.368333,6,5,16,2,"Home Equity Loan, and Student Loan",,11,10.85,10,Standard,1073.94,33.98844177,27 Years and 8 Months,NM,36.06763128,56.36788663,!@9#%8,387.6013154,0,-0.0362,0.5427,0.2636,0.7009,-1.5238 -0x1bfd,CUS_0x953c,August,30,380-11-4962,Engineer,132872.72,11203.72667,3,3,10,2,"Home Equity Loan, and Student Loan",4.353456038,5,10.28,4,Good,77.12742121,29.55005879,28 Years and 3 Months,No,144.8306823,194.6295728,High_spent_Large_value_payments,1042.031182,0,-1.7129,0.8502,-0.503,-1.0044,-1.0121 -0x1c09,CUS_0x4aaa,August,42,676-15-0435,Architect,140014.36,11662.86333,3,7,18,4,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",,9,3.9,3,Standard,1151.7,27.0637196,17 Years and 8 Months,NM,348.6203965,10000,High_spent_Large_value_payments,823.0863932,0,2.1564,-0.5083,-1.9159,-1.0781,0.0622 -0x1c15,CUS_0x2947,August,48,742-36-4668,Accountant,37071.2,3006.266667,1,6,6,4,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",9.444169424,8,11.56,3,Good,869.99,30.49430853,18 Years and 11 Months,No,74.69027138,53.60238365,High_spent_Small_value_payments,432.3340116,0,1.4815,0.8117,0.0506,0.5711,-1.174 -0x1c21,CUS_0x30e0,August,20,644-19-7211,Entrepreneur,41735.55,,0,3,8,4,"Not Specified, Payday Loan, Payday Loan, and Debt Consolidation Loan",7.256711995,7,11.25,3,Good,1480.92,29.2762174,,NM,109.6141467,240.5894884,Low_spent_Medium_value_payments,265.5926148,0,1.5355,-1.9853,-0.1774,1.1748,-0.0618 -0x1c2d,CUS_0xc3b7,August,38,482-53-4479,Architect,40391.66,,10,7,18,3,"Payday Loan, Not Specified, and Mortgage Loan",,26.48135901,3.51,12,Bad,2175.313115,38.82361943,8 Years and 6 Months,Yes,60.3708284,,Low_spent_Small_value_payments,233.5611247,0,-0.4619,-0.7104,0.8091,-0.1063,1.1256 -0x1c39,CUS_0x1e9b,August,23,866-51-6415,Writer,7441.295,,6,8,33.88954781,6,"Mortgage Loan, Mortgage Loan, Not Specified, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",,14.63674962,17.12,13,Standard,2860.043206,40.21311734,6 Years and 2 Months,Yes,1399.45836,,Low_spent_Small_value_payments,242.3107882,0,0.9512,-0.1642,0.7432,0.6919,-1.7394 -0x1c45,CUS_0x3b88,August,40,944-94-9536,Scientist,19065.32,,3,6,5,100,"Not Specified, Student Loan, Home Equity Loan, Personal Loan, and Personal Loan",,15,11.81,5,Standard,2008.06,35.58670022,17 Years and 2 Months,NM,76.21247401,,Low_spent_Large_value_payments,260.5242287,0,-0.5546,0.1031,-0.2986,0.1593,-0.4057 -0x1c51,CUS_0xae51,August,46,082-17-4774,Entrepreneur,24585.55,2316.795833,3,4,14,2,"Auto Loan, and Credit-Builder Loan",14.85222553,,11.35,1,_,195.38,31.15116072,27 Years and 4 Months,Yes,30.44777694,66.07688307,Low_spent_Large_value_payments,405.1549233,0,0.718,1.2702,-1.1106,-1.9546,0.7335 -0x1c5d,CUS_0xb7ef,August,27,786-92-9485,Manager,15013.73,1127.144167,7,4,14,6,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, Not Specified, and Payday Loan",12.87042434,9,8.22,5,Standard,1403.17,34.97962331,12 Years and 4 Months,Yes,51.54792416,,Low_spent_Large_value_payments,273.6767524,0,1.395,0.7204,-0.8205,1.4962,0.6853 -0x1c69,CUS_0xb288,August,44,390-44-4596,Journalist,126006.68,10693.55667,4,3,20,3,"Personal Loan, Home Equity Loan, and Debt Consolidation Loan",,13,7.28,0,Standard,385.8,39.90522242,26 Years and 6 Months,Yes,239.7673293,212.2701329,High_spent_Large_value_payments,857.3182045,0,0.3209,-1.8565,0.8176,0.341,-0.4357 -0x1c75,CUS_0x7a22,August,49,478-48-4669,_______,102885.32,,3,5,16,1,Personal Loan,16.46749497,14,10.31,4,Standard,605.34,31.41809979,29 Years and 5 Months,Yes,74.15866353,79.74686437,High_spent_Large_value_payments,950.4721388,0,1.0751,1.4932,-0.212,0.2934,0.0451 -0x1c81,CUS_0x9495,August,38,817-92-8445,_______,34212.01,,6,5,10,100,"Not Specified, Home Equity Loan, and Home Equity Loan",12.44204436,10.45507278,8.12,1,Standard,586.4759937,27.02823304,28 Years and 6 Months,No,66.67641331,116.9269341,!@9#%8,391.096736,0,-0.3531,0.0822,-0.3703,-1.5387,-0.6359 -0x1c8d,CUS_0x64f1,August,26,955-39-6420,Entrepreneur,118487.16,9810.93,8,4,20,4,"Student Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",20.13480795,17,9.76,1,_,140.26,31.47302517,31 Years and 11 Months,No,301.5608682,386.4132287,High_spent_Medium_value_payments,543.1189031,0,0.5871,0.1087,0.0679,-0.9134,0.5294 -0x1c99,CUS_0x6749,August,26,109-19-0368,Mechanic,77418.52,6450.543333,8,9,20.88954781,7,"Credit-Builder Loan, Auto Loan, Student Loan, Student Loan, Personal Loan, Personal Loan, and Auto Loan",,26.64441954,20.05,9,Bad,4342.668517,23.41214889,11 Years and 11 Months,Yes,1662.514476,180.4220431,!@9#%8,387.7877326,0,0.7216,-0.9408,0.1024,-0.531,-0.2433 -0x1ca5,CUS_0xc1c9,August,46,085-10-1065,Architect,24199.24,1951.603333,3,7,6,1,Credit-Builder Loan,19.86891485,14,0.67,4,Good,676.9675645,38.03670709,21 Years and 8 Months,No,13.88630543,54.52923552,High_spent_Small_value_payments,393.0686026,0,-0.3344,-0.0221,-0.8981,-1.0012,-0.2334 -0x1cb1,CUS_0x230a,August,48,902-99-6202,_______,28587.29,2621.274167,4,1,7,0,,0,2,1.22,1,Good,1320.175417,28.10611882,24 Years and 9 Months,No,0,135.8350208,Low_spent_Large_value_payments,408.9248535,0,-0.1218,-0.3276,0.3932,0.882,0.2434 -0x1cbd,CUS_0x8928,August,32,137-96-5829,Manager,16578.115,1426.509583,3,5,15,2,"Student Loan, and Not Specified",14.37211286,13,13.29,7,Standard,1054.86,33.19470506,23 Years and 4 Months,Yes,21.42597208,,!@9#%8,323.8543591,0,1.174,-0.6651,-0.9892,0.6037,-0.4838 -0x1cc9,CUS_0x682f,August,20,941-62-4990,Writer,74647.4,6327.616667,6,5,21.06745738,6,"Not Specified, Not Specified, Not Specified, Mortgage Loan, Student Loan, and Auto Loan",,17,26.16,13,Bad,4390.840954,35.95962841,13 Years and 10 Months,NM,309.5754021,130.4682433,High_spent_Large_value_payments,405.9977333,0,-0.4329,-0.1123,-0.8916,1.0949,1.1743 -0x1cd5,CUS_0x4831,August,43,696-84-8348,Mechanic,34766.06,3133.171667,0,1,11,100,"Home Equity Loan, Auto Loan, and Home Equity Loan",4.936590435,7,5.71,0,Good,1238.812454,22.85036838,,No,78.09310674,11103.31913,Low_spent_Small_value_payments,324.1637958,0,0.758,-1.2359,-1.4432,0.4725,-0.1133 -0x1ce1,CUS_0x32a5,August,23,900-72-1051,Engineer,16852.635,1530.800373,4,6,9,0,,17.46836838,13,16.68,8,Standard,692.558428,30.08041534,29 Years and 6 Months,Yes,160.5858768,59.82024869,Low_spent_Large_value_payments,385.2228026,0,-1.597,-0.3988,-1.1559,0.2212,-1.0892 -0x1ced,CUS_0x710f,August,80,805-31-3666,Scientist,33502.1,,7,9,28.06745738,6,"Mortgage Loan, Payday Loan, Auto Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",44.71823958,23.26754609,12.06,12,Standard,2913.59517,23.20688298,18 Years and 6 Months,Yes,158.6079272,184.5481873,Low_spent_Large_value_payments,189.2077643,0,-0.1957,0.2938,1.748,-0.1207,-0.7821 -0x1cf9,CUS_0xa54b,August,31,732-98-2688,_______,91690.53,7795.8775,2,6,1.288361749,2,"Home Equity Loan, and Not Specified",,8,4.95,4,Good,1147.747383,25.5278072,31 Years and 6 Months,No,130.8508578,1160.964496,Low_spent_Medium_value_payments,275.3135581,0,-0.1898,0.3563,-0.7099,0.1016,0.6495 -0x1d05,CUS_0x564a,August,37,763-78-4306,Entrepreneur,30502.54,2595.878333,8,7,25.06745738,7,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Student Loan, Personal Loan, Not Specified, and Mortgage Loan",34.11163461,22.49359402,13.23,8,Standard,2102.576539,38.63431587,15 Years and 0 Months,Yes,154.3933583,,Low_spent_Small_value_payments,153.0913901,0,-0.6777,0.7151,0.5886,-0.2165,-0.2979 -0x1d11,CUS_0xb000,August,21,087-15-2781,Media_Manager,30272.61,2258.7175,3,3,15,1,Payday Loan,13.46639141,8,8.83,9,Standard,180.94,27.04666863,16 Years and 5 Months,Yes,17.97585099,110.2154588,Low_spent_Small_value_payments,387.6804402,0,0.2007,0.0889,0.4226,-0.5728,-0.744 -0x1d1d,CUS_0x2584,August,31,742-33-7816,Accountant,59971.42,5190.618333,8,5,2398,3,"Debt Consolidation Loan, Home Equity Loan, and Student Loan",25.0701742,20,-4.48,4,Standard,203.03,34.4296386,20 Years and 9 Months,No,107.9372413,66.87314027,High_spent_Medium_value_payments,594.2514518,0,-0.5119,0.1343,-2.8745,0.2201,-1.418 -0x1d29,CUS_0x5a3f,August,33,818-84-4299,Accountant,42220.39,3433.686488,1,4,1,4,"Credit-Builder Loan, Student Loan, Mortgage Loan, and Mortgage Loan",10.93789437,11,,1,_,257.81,34.16244973,22 Years and 11 Months,No,191.9497411,140.4523116,High_spent_Medium_value_payments,323.3138755,0,1.4614,0.3149,-2.0008,0.5835,-0.384 -0x1d35,CUS_0xc341,August,51,982-11-3853,Architect,43581.13,3566.760833,4,3,9,3,"Auto Loan, Student Loan, and Student Loan",2.864993045,3,8.56,2,Good,900.83,38.4990964,,No,103.0330777,136.7203607,High_spent_Small_value_payments,376.922645,0,0.7351,0.4459,0.5559,-0.265,-1.6406 -0x1d41,CUS_0x1a96,August,50,405-79-5399,Media_Manager,28681.38,,3,5,2,0,,,5,4.82,4,Good,421.7335777,32.0041069,19 Years and 6 Months,No,0,,!@9#%8,335.1314153,0,-0.3779,-0.8522,0.5136,0.4529,-2.2294 -0x1d4d,CUS_0xb7a1,August,34,929-30-5884,Doctor,35376.32,,8,3,19,100,"Personal Loan, Payday Loan, and Personal Loan",,15,15.14,7,Standard,1166.47,26.75140311,18 Years and 9 Months,NM,58.21667032,,Low_spent_Medium_value_payments,370.568977,0,-1.1932,0.031,-1.7515,0.8774,0.2002 -0x1d59,CUS_0x31d5,August,80,325-07-8725,Doctor,15488.885,1273.740417,0,4,4,0,,,,1.38,9,Good,1133.811902,39.43210616,25 Years and 9 Months,No,0,172.0116432,Low_spent_Small_value_payments,261.4553742,0,1.5716,-0.1272,-1.8882,0.4525,0.5178 -0x1d65,CUS_0x45f7,August,26,#F%$D@*&8,Entrepreneur,19853.35,1613.003241,7,4,6,2,"Debt Consolidation Loan, and Home Equity Loan",24.3737379,17,11.63,2,Standard,816.46,29.85795807,,No,141.5145576,68.8519378,High_spent_Medium_value_payments,325.7206801,0,-1.4043,-1.331,-0.0708,1.9028,0.5588 -0x1d71,CUS_0x6617,August,33,276-40-7171,Writer,115643.01,9910.9175,3,7,2,3,"Not Specified, Student Loan, and Not Specified",,1.169966283,13.89,1,Good,1052.57697,39.1727994,18 Years and 6 Months,No,195.3940091,731.1251628,!@9#%8,344.5725781,0,-1.5332,-2.0209,0.6807,-0.7123,-1.437 -0x1d7d,CUS_0x5b80,August,44,549-37-6666,Journalist,7512.225,,7,7,14,5,"Personal Loan, Payday Loan, Student Loan, Not Specified, and Not Specified",20.24619416,17,11.87,9,_,540.07,23.82272533,8 Years and 8 Months,Yes,20.68610769,27.98080463,Low_spent_Small_value_payments,292.6349627,0,0.9759,-0.1924,1.8409,-0.6039,-1.0689 -0x1d89,CUS_0xa548,August,18,064-39-6784,Mechanic,35161.46,2930.121667,10,8,32.88954781,6,"Student Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",,23.98306661,2.49,15,Bad,5098.051019,33.80137556,8 Years and 6 Months,Yes,1436.874528,,Low_spent_Small_value_payments,84.25561992,0,-1.2233,0.3996,-0.4122,0.3718,-0.2185 -0x1d95,CUS_0xb9ea,August,34,202-04-9323,Writer,9133.045,,6,7,35.06745738,6,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, and Student Loan",32.14390528,16,15.26,11,Bad,2834.864135,29.31971512,9 Years and 6 Months,Yes,30.20103248,34.87843943,High_spent_Small_value_payments,249.7747519,0,0.3576,0.723,-0.9032,0.1334,2.2525 -0x1da1,CUS_0x54c0,August,23,934-98-5531,Entrepreneur,19283.47,,10,8,35.06745738,9,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",90,538,27.43,12,Bad,4627.890954,24.01428138,6 Years and 3 Months,Yes,84.61643173,,Low_spent_Large_value_payments,243.850918,0,1.2902,-0.4697,0.4227,-0.6412,-0.2814 -0x1dad,CUS_0x258b,August,27,890-04-0712,Scientist,66502.76,5379.896667,0,6,1,2,"Mortgage Loan, and Personal Loan",,11.5533353,7.06,2,Good,302.556295,35.51355429,19 Years and 3 Months,No,80.10017431,149.1292831,High_spent_Medium_value_payments,558.7602093,0,-0.0216,1.0644,0.1395,-0.3609,-0.4768 -0x1db9,CUS_0x4bb4,August,34,742-40-7361,Media_Manager,9444.795,,7,8,29.06745738,6,"Mortgage Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",,12.35341672,17.57,7,Standard,2082.215579,26.66492058,5 Years and 11 Months,Yes,27.5949503,60.23201765,Low_spent_Medium_value_payments,250.4593691,0,-1.0777,-0.1598,-1.2998,2.5192,-0.872 -0x1dc5,CUS_0x8e75,August,47,854-67-0053,Doctor,70112.78,5989.731667,1,7,3,2,"Mortgage Loan, and Student Loan",,3.565109471,1.75,5,Good,972.563138,34.2977985,25 Years and 5 Months,No,69.71794787,,High_spent_Medium_value_payments,594.1043802,0,-0.9251,0.5191,0.3852,0.5254,2.8209 -0x1dd1,CUS_0xf95,August,18,082-42-3634,Entrepreneur,15604.56,,9,5,25,3,"Debt Consolidation Loan, Home Equity Loan, and Not Specified",33.41695534,23,8.08,13,Bad,2686.18,35.18408185,,Yes,37.91235014,92.11398853,Low_spent_Small_value_payments,298.9116613,0,-2.6074,-2.8348,-2.1449,0.2385,-0.5467 -0x1ddd,CUS_0x4028,August,42,407-45-5883,Manager,68935.26,,1,5,8,3,"Credit-Builder Loan, Personal Loan, and Auto Loan",,9,3.25,5,_,421.0890573,26.82103884,25 Years and 11 Months,No,102.7963086,41.98785644,High_spent_Large_value_payments,651.88953,0,1.3549,0.5107,-1.5041,-0.1294,1.1357 -0x1de9,CUS_0x8db8,August,45,451-74-2945,Doctor,31807,2733.583333,8,3,14,2,"Student Loan, and Mortgage Loan",10.1945004,8,14.68,1,_,561.3654028,40.66511242,20 Years and 8 Months,Yes,35.55369086,40.31616987,High_spent_Large_value_payments,442.5277661,0,-0.2134,-0.5728,-0.9108,-0.102,0.2286 -0x1df5,CUS_0x1e63,August,37,341-75-1132,_______,10025.2,,10,10,21.88954781,7,"Credit-Builder Loan, Home Equity Loan, Personal Loan, Auto Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",24.35846023,16.79391911,16.88,12,Standard,1531.901161,33.96409432,15 Years and 10 Months,Yes,1364.91502,,Low_spent_Small_value_payments,194.0142372,0,0.4747,-0.2105,0.5577,1.0451,-0.1256 -0x1e01,CUS_0x4948,August,39,432-73-5991,Media_Manager,64036.88,,8,4,15,4,"Home Equity Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",23.90538315,15,14.7,9,Standard,1635.19,34.81010493,8 Years and 3 Months,Yes,127.8260613,267.165354,Low_spent_Large_value_payments,434.1492514,0,-0.7604,-0.0131,0.5832,-0.0093,-0.7533 -0x1e0d,CUS_0xc37b,August,30,919-05-3349,_______,9783.245,,8,6,29,8,"Not Specified, Credit-Builder Loan, Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",28.10326692,,7.75,7,Bad,1913.631373,24.46483121,19 Years and 0 Months,Yes,52.83913367,,Low_spent_Small_value_payments,259.4070517,0,0.4594,-0.3541,-0.2655,0.9467,0.4766 -0x1e19,CUS_0xfcc,August,22,388-13-4625,_______,86522.72,7098.226667,8,5,13,1,Student Loan,7.969331612,8,15.51,13,Standard,455.22,33.04000294,28 Years and 3 Months,Yes,45.26468138,577.9699495,Low_spent_Small_value_payments,376.5880358,0,0.0871,0.1456,-0.9324,0.2499,2.122 -0x1e25,CUS_0x64ce,August,21,066-73-7172,Lawyer,124419.66,10221.305,3,4,11,4,"Home Equity Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",11.25087645,8,7.12,0,_,923.85,34.32406369,32 Years and 6 Months,No,344.1815356,133.6038119,High_spent_Large_value_payments,784.3451525,0,0.2401,0.3904,0.8392,-0.3466,-0.3225 -0x1e31,CUS_0x9574,August,50,778-83-5214,_______,15606.515,,3,4,6,4,"Personal Loan, Personal Loan, Personal Loan, and Student Loan",,3.624584395,9.37,2,Good,294.7119824,39.19138694,33 Years and 6 Months,NM,35.62637254,49.83277717,Low_spent_Small_value_payments,327.995142,0,-1.4175,-0.5345,1.3725,0.8657,0.1396 -0x1e3d,CUS_0xbc88,August,25,648-41-8012,Developer,28230.92,,8,6,32,7,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Personal Loan, and Personal Loan",,16,25.17,14,Bad,2989.13,38.63607114,7 Years and 5 Months,NM,132.4811279,,High_spent_Medium_value_payments,245.0714927,0,-0.0029,1.725,-0.0089,0.7965,0.1166 -0x1e49,CUS_0x661b,August,29,926-72-2848,Developer,10623.765,,6,3,18,100,"Home Equity Loan, Personal Loan, and Home Equity Loan",,12,16.39,7,Standard,181.68,33.47170532,16 Years and 2 Months,Yes,26.51527996,,Low_spent_Small_value_payments,241.1704008,0,1.3424,-0.4939,1.8063,1.221,1.31 -0x1e55,CUS_0xc51,August,19,269-33-7962,Teacher,11970.955,,8,183,8.067457376,2,"Payday Loan, and Credit-Builder Loan",21.41274028,,4.72,1,Standard,1113.030954,31.76740432,26 Years and 6 Months,No,14.8851947,39.1129892,High_spent_Small_value_payments,296.2394865,0,-0.1466,-0.2203,0.2752,0.2718,-0.1973 -0x1e61,CUS_0x9536,August,41,782-09-5812,Manager,112362.76,9279.563333,4,4,5,4,"Payday Loan, Personal Loan, Payday Loan, and Mortgage Loan",,20,5.86,2,Standard,1358.65,41.12672063,23 Years and 9 Months,No,236.2776578,119.9617854,High_spent_Large_value_payments,811.7168902,0,0.8687,-0.5551,1.7986,-1.2029,-0.9891 -0x1e6d,CUS_0xc5a0,August,20,650-73-8163,Manager,33335.24,3059.936667,1,6,8,1,Student Loan,3.888343931,7,4.07,4,Good,1226.23,36.32290698,21 Years and 9 Months,No,21.53854806,247.4752938,Low_spent_Large_value_payments,306.9798248,0,-1.0621,-0.1158,0.7973,-0.3561,0.2134 -0x1e79,CUS_0xb282,August,32,273-80-9678,Manager,131577.84,11205.82,2,3,3,2,"Credit-Builder Loan, and Personal Loan",,2,1.53,2,_,816.21,34.45628378,21 Years and 10 Months,No,185.4121959,236.1538372,High_spent_Large_value_payments,939.0159669,0,1.5186,-0.5145,-0.7263,-0.3597,1.2196 -0x1e85,CUS_0xb9b8,August,49,867-87-8867,Entrepreneur,32314.44,2681.166281,2,5,5,3,"Student Loan, Credit-Builder Loan, and Not Specified",10.65390921,11,16.54,2,Good,1187.500034,40.38105141,22 Years and 3 Months,No,204.9179108,,Low_spent_Large_value_payments,377.8942417,0,-0.5012,-0.0618,-0.0389,0.1946,0.952 -0x1e91,CUS_0x3e81,August,20,443-33-4707,Manager,61235.6,4870.966667,0,5,7,100,Payday Loan,1.286797947,3,11.42,2,_,71.52,41.96960973,33 Years and 6 Months,No,27.6545998,235.232905,Low_spent_Small_value_payments,514.2091619,0,-0.2953,0.5938,-1.2015,-1.0053,1.5663 -0x1e9d,CUS_0x3702,August,40,232-80-7977,Journalist,19078.93,1304.910833,5,7,2660,0,,17.15600109,13,13.34,8,Standard,265.86,32.49506507,18 Years and 10 Months,Yes,0,,!@9#%8,353.8611927,0,-0.2781,1.0298,0.0797,-1.0974,1.1648 -0x1ea9,CUS_0x8a0f,August,34,419-92-2278,Mechanic,83703.52,6955.293333,6,9,28.95700519,8,"Not Specified, Payday Loan, Home Equity Loan, Auto Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Personal Loan",,,28.02,10,Bad,5326.9687,26.29410921,10 Years and 11 Months,Yes,1686.720756,443.0806655,Low_spent_Small_value_payments,134.6775429,0,0.0627,1.0334,0.5238,0.3279,-0.2685 -0x1eb5,CUS_0x21be,August,46,340-80-4117,Musician,99127.04,8217.586667,8,3,10,4,"Payday Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",24.72766751,19,13.88,7,Standard,1126.35,24.39190812,26 Years and 8 Months,Yes,245.9851478,103.5941264,High_spent_Large_value_payments,712.1793924,0,-0.1679,-0.0832,-0.4317,-0.7213,0.7719 -0x1ec1,CUS_0x8c1f,August,18,471-06-8456,Writer,10405.01,,6,7,31.06745738,5,"Debt Consolidation Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",28.08036801,15,12.66,13,Standard,2309.630954,29.81330229,15 Years and 3 Months,Yes,33.60279492,,Low_spent_Small_value_payments,219.0560477,0,0.4293,-1.2633,1.4042,0.7024,-0.7545 -0x1ecd,CUS_0x67e1,August,43,298-35-2655,Lawyer,135895.96,11304.66333,8,4,5.288361749,0,,20.04763536,17,12.45,3,Good,377.5465797,32.85035292,18 Years and 11 Months,No,0,588.0160307,High_spent_Large_value_payments,1220.006766,0,-0.2965,0.3801,0.6168,0.5048,-0.8079 -0x1ed9,CUS_0x1c06,August,25,051-71-5276,_______,29608.46,,8,8,31.88954781,7,"Personal Loan, Auto Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",36.05804684,18.99967662,9.06,10,Bad,1439.151282,33.71412081,15 Years and 5 Months,Yes,1465.247726,23.71843397,High_spent_Large_value_payments,319.2409251,0,-0.7017,0.8071,0.2881,-0.8497,1.5684 -0x1ee5,CUS_0x5761,August,30,154-57-8374,Entrepreneur,29999.94,,10,9,15,5,"Auto Loan, Payday Loan, Mortgage Loan, Student Loan, and Mortgage Loan",,25.26963649,3.67,13,Bad,2904.270343,28.8236755,16 Years and 8 Months,Yes,101.6474842,185.9308172,Low_spent_Small_value_payments,279.2211986,0,-0.199,0.0431,-0.2201,0.4516,0.9516 -0x1ef1,CUS_0x9a4a,August,18,456-84-1684,Musician,52972.5,,7,5,32,3,"Student Loan, Home Equity Loan, and Mortgage Loan",,24,7.2,12,_,2196.59,27.55070351,9 Years and 2 Months,Yes,112.6957682,155.170932,High_spent_Small_value_payments,452.1707997,0,-1.9731,0.3498,0.2602,0.1114,0.753 -0x1efd,CUS_0x100b,August,19,#F%$D@*&8,Media_Manager,113781.39,9549.7825,1,4,1,0,,,8,8.34,4,Good,1030.2,28.59294254,15 Years and 10 Months,No,0,617.0792665,High_spent_Small_value_payments,597.8989835,0,0.343,-0.1909,1.5093,1.652,0.597 -0x1f09,CUS_0x6325,August,31,964-44-0435,Lawyer,15746.63,1122.219167,4,3,18,5,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",,14.10644666,10.83,7,Standard,2412.904424,38.87980553,11 Years and 11 Months,Yes,44.04040477,,Low_spent_Small_value_payments,228.8907686,0,0.08,0.2586,1.0011,-0.6791,-1.1994 -0x1f15,CUS_0x4e3c,August,19,624-70-5384,Lawyer,97961.96,,4,6,5.288361749,0,,9.291096169,10,6.46,3,_,750.95,39.37918152,28 Years and 9 Months,No,0,524.591724,High_spent_Large_value_payments,955.8954037,0,-1.781,-1.2108,-0.6669,0.4265,1.4438 -0x1f21,CUS_0xb217,August,48,565-56-8270,_______,31895.07,,3,6,2,4,"Personal Loan, Student Loan, Student Loan, and Not Specified",17.38372502,,-1.94,2,Good,220.33,24.27605886,22 Years and 3 Months,No,60.32284544,208.8004957,!@9#%8,249.7689089,0,0.0222,1.1778,-1.6495,0.1283,-0.0295 -0x1f2d,CUS_0xb374,August,32,946-08-9738,_______,30922.28,,1,5,12,2,"Student Loan, and Mortgage Loan",0.140977037,1.210057196,11.71,2,Good,1073.260432,41.10790524,21 Years and 10 Months,No,30.33820426,80.1346358,High_spent_Small_value_payments,399.0128266,0,-1.1532,2.5061,-0.8931,-0.4503,0.1476 -0x1f39,CUS_0x1d4e,August,37,182-25-5092,Journalist,25530.33,,3,4,19,0,,16.22050044,13,11.98,8,Standard,761.18,36.32469457,32 Years and 0 Months,Yes,0,205.7928847,Low_spent_Medium_value_payments,287.9598653,0,-1.807,-0.5464,-2.9285,1.5398,-1.3047 -0x1f45,CUS_0x8a4b,August,52,142-99-2481,Doctor,110786.64,9299.22,5,7,5,3,"Auto Loan, Personal Loan, and Payday Loan",17.69097775,15,8.68,2,Standard,226.7,24.58289384,24 Years and 11 Months,Yes,209.314507,925.1677802,Low_spent_Small_value_payments,85.43971283,0,0.819,-1.134,0.049,0.8637,1.4787 -0x1f51,CUS_0x93ff,August,27,237-50-9740,Lawyer,39696.98,,5,5,10,1,Not Specified,,3.588738038,1.98,1194,Good,151.3673963,27.28968593,21 Years and 10 Months,No,31.90658017,239.0805688,Low_spent_Medium_value_payments,330.1210177,0,1.4583,0.1163,-1.5292,0.0421,1.0056 -0x1f5d,CUS_0x3e2d,August,34,958-76-6001,Journalist,120366.6,9888.55,4,7,2,4,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",12.03521546,9.3332975,0.8,6,Good,1587.336445,39.92962514,21 Years and 6 Months,NM,233.4424036,,High_spent_Medium_value_payments,590.7395212,0,0.7939,-1.7014,1.006,1.1915,-1.3084 -0x1f69,CUS_0x493c,August,58,977-92-2690,Mechanic,13074.395,1356.532917,8,7,8,1,Personal Loan,,13,5.96,6,Good,937.2326253,26.1164195,30 Years and 6 Months,No,9.175797471,142.0027765,Low_spent_Small_value_payments,288.6385752,0,-1.9422,-0.2541,-2.4862,-1.1832,-0.7311 -0x1f75,CUS_0x88a0,August,31,266-68-0248,Manager,76087.68,6155.64,6,1191,9,4,"Payday Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",,10,8.73,2,Standard,50.22,39.67745252,22 Years and 2 Months,Yes,232.066077,10000,High_spent_Large_value_payments,519.4126474,0,1.5074,-0.6739,-0.0546,-2.2804,0.34 -0x1f81,CUS_0x543f,August,24,333-87-6291,Mechanic,51824.94,4417.745,6,7,27.06745738,8,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",,22,2.63,8,_,3181.430954,34.67685108,7 Years and 10 Months,Yes,21784,121.3319704,High_spent_Medium_value_payments,286.0627872,0,-0.5861,1.2987,0.3343,-0.2519,-0.0042 -0x1f8d,CUS_0x9f7e,August,31,541-63-9508,Journalist,11431.775,,8,6,15.28836175,4,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",,15,0.52,3,_,107.9074288,36.36734316,17 Years and 4 Months,No,29.48547134,,High_spent_Small_value_payments,266.9389032,0,-0.3816,0.7118,-1.8085,-1.5111,-0.0221 -0x1f99,CUS_0x23a6,August,38,564-11-2906,Doctor,14224.655,1395.387917,8,6,13,1,Home Equity Loan,,10,8.1,5,Standard,1343.01,36.9384051,33 Years and 3 Months,No,7.642056541,59.12268648,Low_spent_Small_value_payments,362.7740486,0,1.3009,-0.061,-0.6556,-0.6193,-1.5378 -0x1fa5,CUS_0xa874,August,49,742-30-5692,Musician,142170.12,,3,4,7.288361749,2,"Mortgage Loan, and Home Equity Loan",,1,2.58,3,Good,261.3373073,40.78740276,24 Years and 10 Months,No,183.7595131,,High_spent_Large_value_payments,968.8022783,0,-0.2292,1.1202,-2.6751,-0.4766,0.4973 -0x1fb1,CUS_0x4ea5,August,52,407-67-3737,Mechanic,19951.765,1592.647083,1,1,12,2,"Personal Loan, and Mortgage Loan",5.284208936,6,-2.11,5,Good,1336.624246,23.75588255,33 Years and 3 Months,No,28.21305815,206.5686071,Low_spent_Small_value_payments,245.2083442,0,1.4738,-0.2028,-0.089,-0.9479,0.9742 -0x1fbd,CUS_0x8208,August,40,084-02-0981,Teacher,94454.1,8102.175,1,4,2866,3,"Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",4.81370813,6,1.63,6,Good,1155.37493,29.04609173,30 Years and 4 Months,No,152.5068947,799.1169626,Low_spent_Large_value_payments,216.6508545,0,0.24,-0.4228,1.41,0.9162,-1.1458 -0x1fc9,CUS_0xb35f,August,33,794-17-7391,Doctor,27063.43,2455.285833,8,1292,12,4,"Credit-Builder Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",17.93791014,13,12.49,5,Standard,1103.205112,30.3032228,22 Years and 8 Months,Yes,74.73897797,72.21108643,High_spent_Large_value_payments,347.6465391,0,-0.6179,-0.5257,-1.191,-1.546,-1.2117 -0x1fd5,CUS_0x8696,August,44,579-41-4525,Media_Manager,36980.1,,6,10,30.06745738,6,"Credit-Builder Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",30.30407271,13,9.55,14,_,2626.670954,41.00668868,17 Years and 8 Months,Yes,174.0872209,,!@9#%8,254.6932599,0,-1.2889,1.0839,1.0003,0.6019,-1.0837 -0x1fe1,CUS_0x49da,August,27,915-13-4225,Teacher,96582.24,7886.52,3,3,13,1,Auto Loan,22.39646713,18,19.79,0,_,482.88,36.15390648,26 Years and 2 Months,Yes,72.4602111,115.2932201,High_spent_Large_value_payments,840.8985688,0,-0.9153,-1.0048,-0.8115,0.0757,-0.4492 -0x1fed,CUS_0x5d94,August,46,653-16-0086,Developer,122978.43,10514.2025,0,1,9,3,"Home Equity Loan, Student Loan, and Debt Consolidation Loan",,3,2.33,3,Good,1105.896347,43.5902608,28 Years and 5 Months,No,168.0066864,203.5077768,High_spent_Large_value_payments,944.3986807,0,-1.1753,0.9086,0.5442,-0.1265,0.3806 -0x1ff9,CUS_0x3ef5,August,32,259-09-9023,Doctor,7821.24,,8,10,30.95700519,6,"Mortgage Loan, Personal Loan, Home Equity Loan, Personal Loan, Auto Loan, and Payday Loan",36.14909443,16.49908274,19.34,7,Bad,3487.24849,31.12988509,10 Years and 4 Months,Yes,1343.211367,49.5640952,Low_spent_Small_value_payments,223.0511681,0,-0.8154,0.4674,1.6357,-0.6633,0.5399 -0x2005,CUS_0xbda3,August,26,016-19-9621,Manager,30972.54,2431.045,7,9,17.06745738,2,"Home Equity Loan, and Mortgage Loan",,17.4436283,18.91,10,_,2745.357569,35.18010319,14 Years and 4 Months,Yes,35.63379962,149.8917997,High_spent_Small_value_payments,290.8586127,0,-1.2649,0.5058,0.8647,-2.1263,-1.2011 -0x2011,CUS_0x29fd,August,29,165-17-6571,Developer,7709.625,625.46875,8,9,32.95700519,6,"Personal Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",,20.43427781,12.01,14,_,3061.703885,38.22254637,8 Years and 9 Months,Yes,56811.48344,0,High_spent_Large_value_payments,228.149279,0,-0.6142,1.9379,1.0594,-1.1519,1.4778 -0x201d,CUS_0xbbf3,August,54,111-86-2174,Journalist,34547.54,2994.961667,6,6,5,1,Personal Loan,19.07554215,,3.59,6,Good,939.31,25.48717376,22 Years and 9 Months,No,27.76471097,68.2725422,High_spent_Large_value_payments,443.4589135,0,0.4406,1.4056,-0.7998,0.7119,1.7665 -0x2029,CUS_0x2c31,August,30,680-06-0631,Musician,173196.32,14258.02667,4,7,8.288361749,0,Home Equity Loan,3.179199278,5,6.06,4,_,879.4785276,36.06946976,29 Years and 0 Months,No,107.8108996,2260.985896,Low_spent_Small_value_payments,44.4788737,0,-0.6274,-0.2889,0.5435,0.014,-0.0548 -0x2035,CUS_0xb4be,August,19,976-78-6014,Engineer,20354.85,1403.2375,8,6,31.06745738,7,"Payday Loan, Payday Loan, Not Specified, Credit-Builder Loan, Student Loan, Payday Loan, and Personal Loan",,24,23.66,10,Bad,4512.040954,39.05110234,2 Years and 9 Months,Yes,80.21854913,131.2683277,Low_spent_Small_value_payments,192.1165852,0,-0.0007,0.2507,-0.7875,-0.0141,-0.2788 -0x2041,CUS_0xa203,August,40,986-88-3065,Entrepreneur,46113.81,3953.8175,7,5,24,2,"Debt Consolidation Loan, and Debt Consolidation Loan",20.13814373,,11.77,9,Standard,2803.42849,24.34803301,,Yes,55.77594705,287.1709637,Low_spent_Medium_value_payments,332.4348392,0,-1.0412,-0.7212,-2.1728,-0.1636,0.3974 -0x204d,CUS_0xa7c3,August,18,327-52-9304,Doctor,8882.47,555.2058333,9,7,20.06745738,7,"Personal Loan, Credit-Builder Loan, Not Specified, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",30.09035197,18,15.62,7,Bad,1804.320954,26.62650353,19 Years and 9 Months,NM,27.52869913,19.85194671,Low_spent_Small_value_payments,271.4196495,0,-1.3137,-0.0704,-1.0149,0.6992,-0.8786 -0x2059,CUS_0x76e7,August,26,532-39-3348,Manager,34128.92,2740.076667,6,8,31,6,"Student Loan, Personal Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",,22.26263981,3.99,13,Bad,2884.291813,35.29668548,6 Years and 0 Months,Yes,118.0668546,,High_spent_Small_value_payments,245.1656109,0,0.82,0.1672,-0.5493,1.1786,1.8987 -0x2065,CUS_0x46d4,August,43,#F%$D@*&8,Scientist,29042.45,,3,5,5,1,Student Loan,13.86036088,,9.72,4,Standard,1092.55,35.85630139,24 Years and 3 Months,Yes,16.75670654,207.364515,Low_spent_Small_value_payments,291.0991951,0,-0.156,1.5256,0.3862,1.097,-0.2732 -0x2071,CUS_0x396e,August,33,186-66-1832,Architect,26716.09,2372.340833,4,5,6,3,"Not Specified, Credit-Builder Loan, and Personal Loan",25.41053666,17,3.1,1,_,643.89,28.12988308,16 Years and 2 Months,No,55.13993286,140.952739,!@9#%8,331.1414115,0,-0.3028,1.3697,-0.4684,1.0323,2.0733 -0x207d,CUS_0x74f5,August,18,060-43-3101,Doctor,74733.44,5229.153085,9,6,19,5,"Payday Loan, Mortgage Loan, Payday Loan, Student Loan, and Not Specified",25.10943324,20,22.48,12,Bad,4066.863123,36.1559144,3 Years and 3 Months,Yes,900.1733535,190.532656,High_spent_Medium_value_payments,482.0483817,0,-0.8641,-0.7843,-0.0837,1.1065,0.1372 -0x2089,CUS_0xb9e5,August,44,616-71-3032,Media_Manager,8681.77,647.4808333,6,9,23.88954781,7,"Student Loan, Personal Loan, Not Specified, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",35.08585053,21,19.6,17,Bad,2216.25,36.73937584,14 Years and 11 Months,Yes,1351.925633,,Low_spent_Medium_value_payments,240.7512375,0,-1.2253,-0.57,0.6999,1.1521,-0.4352 -0x2095,CUS_0xacbe,August,38,406-29-0152,Media_Manager,10034.55,719.2125,4,4,28,6,"Home Equity Loan, Mortgage Loan, Payday Loan, Personal Loan, Mortgage Loan, and Student Loan",13.38848692,9,12.65,7,Standard,1669.84,33.72230424,9 Years and 10 Months,NM,41.08254704,,High_spent_Small_value_payments,243.5009562,0,2.7189,3.2898,-0.6573,-1.4827,0.0835 -0x20a1,CUS_0x9951,August,41,735-73-7454,Teacher,20540.49,1859.7075,0,4,8,1,Payday Loan,0,3,5.09,2,Good,1118.37,32.40135154,16 Years and 2 Months,No,17975,37.57726185,High_spent_Medium_value_payments,389.5718284,0,1.1211,-0.442,0.2791,-0.4933,-0.6141 -0x20ad,CUS_0xbcb9,August,52,441-44-7311,Musician,38175.39,3287.2825,1,2,6.288361749,2,"Personal Loan, Personal Loan, and Debt Consolidation Loan",5.03999661,8,11.81,2,Good,315.36,26.87430463,28 Years and 4 Months,NM,69.05565634,,Low_spent_Medium_value_payments,229.8527697,0,-0.4515,0.5554,0.7596,-1.041,-0.2047 -0x20b9,CUS_0xae95,August,22,801-07-4941,Accountant,116594.91,,5,6,9.288361749,2,"Not Specified, and Mortgage Loan",0,3,8.47,0,Good,1124.02,23.56493392,29 Years and 9 Months,No,171.0770243,1541.735957,Low_spent_Small_value_payments,,0,1.0888,1.9429,-1.0073,-1.4245,1.3689 -0x20c5,CUS_0x1f9e,August,49,192-60-6723,Manager,24894.05,,8,3,8,0,,19.11934398,,2.3,5,_,86.43,33.83749258,,No,0,139.6363457,Low_spent_Small_value_payments,387.514071,0,0.5227,-1.0356,-0.8792,0.3067,0.5494 -0x20d1,CUS_0x2242,August,39,067-10-5283,Teacher,39399.9,,6,6,18.06745738,2,"Not Specified, and Payday Loan",,21.28541069,18.62,15,Standard,2630.853171,37.50995935,12 Years and 0 Months,Yes,43.1712988,73.46371303,High_spent_Large_value_payments,445.3772002,0,0.6242,-0.4084,-0.6416,0.745,0.5593 -0x20dd,CUS_0x3e85,August,25,863-16-6413,Musician,142113.96,11903.83,6,4,17,3,"Payday Loan, Home Equity Loan, and Personal Loan",,12,18.1,9,Standard,1037.68,30.66748597,22 Years and 10 Months,Yes,224.1221386,104.1574268,High_spent_Large_value_payments,1102.103435,0,1.1418,-0.5645,-0.4614,-0.9307,0.1138 -0x20e9,CUS_0xa47,August,48,815-90-8113,Mechanic,65299.38,5305.615,4,5,8,2,"Student Loan, and Credit-Builder Loan",0,0,5.68,2,Good,1347.865535,32.76437061,26 Years and 5 Months,NM,77.00931295,61.08345477,High_spent_Medium_value_payments,642.4687323,0,-1.7001,-1.9649,0.1109,-0.0693,-0.0411 -0x20f5,CUS_0xaa40,August,52,278-80-9296,Manager,33200.52,,6,4,20,2,"Student Loan, and Student Loan",25.67032958,18,8.59,7,Standard,1290.73,33.49223798,18 Years and 0 Months,No,28.06429662,,Low_spent_Small_value_payments,290.3205348,0,0.6066,0.1218,1.9425,0.9329,0.9833 -0x2101,CUS_0x1452,August,41,976-05-6851,Architect,82289.36,6951.446667,8,8,22,5,"Mortgage Loan, Payday Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",27.90151643,18.19722264,18.75,12,Bad,5209.314983,23.8670272,9 Years and 6 Months,Yes,240.7514411,187.5039006,Low_spent_Medium_value_payments,546.8893249,0,0.2726,0.8289,1.0472,-0.5631,-1.0205 -0x210d,CUS_0x76cf,August,39,656-17-2477,_______,7792.475,,6,7,5199,7,"Personal Loan, Student Loan, Payday Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,20.94724504,14.6,10,Standard,2289.482535,39.36846871,15 Years and 5 Months,Yes,42.0997216,,High_spent_Small_value_payments,244.4371038,0,-0.0282,-0.0366,0.8492,0.9714,-0.2056 -0x2119,CUS_0x703f,August,37,830-01-1609,Writer,65778.22,5561.518333,5,3,11,4,"Mortgage Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",25.38340957,18,11.6,6,Standard,705.44,31.1060513,16 Years and 10 Months,No,172.5305333,90.12282122,High_spent_Medium_value_payments,543.4984788,0,-0.4143,1.2273,-1.2834,-1.2199,-0.9382 -0x2125,CUS_0x572,August,44,643-37-2319,Teacher,12016,,6,3,14,3,"Not Specified, Mortgage Loan, and Auto Loan",,10,15.23,0,Standard,583.27,35.37122714,30 Years and 8 Months,Yes,20.74354374,10000,Low_spent_Medium_value_payments,303.1006423,0,-0.0812,-0.0773,1.3309,0.2445,0.9599 -0x2131,CUS_0x104e,August,50,837-93-5062,Teacher,19180.87,,8,4,18,4,"Debt Consolidation Loan, Auto Loan, Payday Loan, and Payday Loan",18.07520922,17,9.32,6,Standard,1127.57,29.46533772,25 Years and 2 Months,No,57.36421101,107.9832273,High_spent_Small_value_payments,263.4931451,0,-0.733,-0.7833,-0.0264,-0.8805,1.7583 -0x213d,CUS_0x6f38,August,31,593-29-9633,Entrepreneur,60552.76,,3,7,12,3,"Mortgage Loan, Home Equity Loan, and Auto Loan",22.72430236,13.10963112,8.72,4,Good,511.3761367,34.8734332,19 Years and 4 Months,No,111.7288201,10000,Low_spent_Small_value_payments,346.4100329,0,-0.4026,0.6491,0.4289,0.7093,0.5798 -0x2149,CUS_0x7b3c,August,40,397-72-8040,Mechanic,44386.47,3703.8725,10,6,26,9,"Payday Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Not Specified, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",,25,11.95,12,_,1275.46,30.27410217,9 Years and 6 Months,Yes,298.8485303,105.8541452,High_spent_Medium_value_payments,215.6845745,0,0.2668,1.2969,0.7873,-0.3638,-0.3267 -0x2155,CUS_0x709d,August,40,042-91-6695,Lawyer,9141.63,,9,6,34.06745738,5,"Mortgage Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Auto Loan",46.37643347,23.04722145,0.8,13,Bad,3041.793304,25.9732897,16 Years and 8 Months,Yes,27.80112878,53.28946519,Low_spent_Large_value_payments,241.9693681,0,-0.7864,-0.6258,-1.2031,-0.4206,1.1092 -0x2161,CUS_0xc434,August,36,891-36-0838,Journalist,11245.11,1173.0925,3,6,11,100,,15.44335841,13,8.01,1,Standard,169.86,23.44506172,23 Years and 9 Months,Yes,0,139.2063573,Low_spent_Small_value_payments,268.1028927,0,0.2628,2.8766,-0.0409,-0.4163,0.9452 -0x216d,CUS_0x8a12,August,40,691-41-8769,Accountant,98197.74,,5,6,6,3,"Mortgage Loan, Student Loan, and Payday Loan",12.97609825,8,9.09,7,Standard,627.5,40.12296727,25 Years and 0 Months,No,138.5419769,265.383344,High_spent_Medium_value_payments,646.5891791,0,-1.5148,-0.9465,0.5467,0.0173,-0.3742 -0x2179,CUS_0x4eb4,August,21,955-76-5444,Journalist,30197.28,,5,7,14,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",17.50620672,13,20,5,Standard,811.08,38.90472276,,Yes,57.08103771,92.73012251,!@9#%8,369.6328398,0,0.9537,0.2502,0.2716,-0.459,0.0937 -0x2185,CUS_0xab00,August,21,468-20-7719,Manager,31633.54,,1,5,8,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",7.144205906,8.33388256,9.7,4,Good,955.3744737,35.00363756,22 Years and 3 Months,NM,50.76844004,136.6381695,High_spent_Small_value_payments,365.6062237,0,0.3768,-0.7254,1.8908,0.378,0.8918 -0x2191,CUS_0x8c9a,August,32,759-79-5662,Architect,118172.64,9449.416386,0,2,2.288361749,4,"Home Equity Loan, Payday Loan, Auto Loan, and Auto Loan",7.442874209,8,5.71,1,_,612.9881673,37.18800553,16 Years and 10 Months,No,850.1719107,697.5210602,High_spent_Small_value_payments,650.2406454,0,-1.3548,-0.5301,-1.0183,-0.0631,1.1279 -0x219d,CUS_0x2c5e,August,35,688-03-3022,Lawyer,19623.18,,9,8,26,2,"Debt Consolidation Loan, and Auto Loan",17.97891727,13.39487008,11.26,16,_,1523.311502,26.31710973,,Yes,19.7587278,94.97377153,Low_spent_Medium_value_payments,345.8940007,0,1.445,0.8603,-0.4494,-1.1378,0.3 -0x21a9,CUS_0x70d5,August,32,514-05-2202,Mechanic,63197.26,5042.438333,6,3,13,3,"Debt Consolidation Loan, Student Loan, and Student Loan",,12,13.43,12,Standard,1435.94,40.22106488,24 Years and 2 Months,Yes,148.4745434,190.2057837,Low_spent_Small_value_payments,455.5635062,0,0.1637,0.7466,-0.0036,-2.1593,0.9038 -0x21b5,CUS_0xb052,August,36,076-62-8134,Journalist,10007.815,757.9845833,4,4,8,7,"Student Loan, Personal Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",,6,17.16,7,Standard,2195.63,34.91856025,20 Years and 2 Months,Yes,55.9509731,61.70153841,Low_spent_Small_value_payments,248.1459468,0,0.0582,-0.0188,-0.1912,-0.4862,0.1223 -0x21c1,CUS_0x7c34,August,28,326-05-4047,Entrepreneur,121688.04,10006.67,7,3,11.28836175,4,"Personal Loan, Mortgage Loan, Not Specified, and Payday Loan",,15,0.66,4,_,48.14128439,30.99908369,26 Years and 4 Months,NM,288.6654547,622.1656366,High_spent_Medium_value_payments,783.7522181,0,-1.442,-1.042,-0.8946,-0.5712,0.2382 -0x21cd,CUS_0x4256,August,21,030-61-4163,Accountant,31069.32,,2,3,12,2,"Auto Loan, and Student Loan",17.56029049,,7.78,7,Good,306.0728745,27.61897222,19 Years and 6 Months,No,34.16860445,151.6357246,Low_spent_Large_value_payments,343.1416648,0,-0.0859,1.4242,1.3118,0.5891,0.5815 -0x21d9,CUS_0x4f04,August,45,546-04-1407,Mechanic,72241.02,5751.085,8,4,4,1,Payday Loan,17.09626571,12,0.67,7,Good,740.2368489,25.2228736,29 Years and 5 Months,No,39.80832826,369.4398553,High_spent_Small_value_payments,481.6437906,0,0.6142,-0.0328,0.1679,0.6009,0.281 -0x21e5,CUS_0x41b7,August,25,891-76-2011,Teacher,7612.725,928.39375,8,5,16,6,"Mortgage Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",45.8314126,25,6.06,13,Bad,1514.74,38.57740585,9 Years and 0 Months,Yes,27.52282261,38.53797533,High_spent_Medium_value_payments,276.7785771,0,-1.3224,1.3588,0.0433,-0.0622,-1.7444 -0x21f1,CUS_0x9095,August,46,410-78-4268,Manager,16953.985,,4,5,4,2,"Auto Loan, and Personal Loan",,4.795492043,10.64,5,Good,601.2167891,24.75698985,27 Years and 11 Months,No,18.28600919,24.23412328,High_spent_Medium_value_payments,375.9630759,0,-0.3817,1.067,0.394,-0.9767,0.2803 -0x21fd,CUS_0xa05f,August,25,276-54-6995,Scientist,125508.36,10559.03,2,3,5,4,"Mortgage Loan, Student Loan, Debt Consolidation Loan, and Student Loan",7.851183034,9.265300481,3.57,3,_,548.2279627,42.73577392,33 Years and 3 Months,No,305.302835,443.1330641,High_spent_Medium_value_payments,557.4671008,0,0.7064,-0.2474,-0.1571,2.2377,0.435 -0x2209,CUS_0x309d,August,19,887-92-9025,Doctor,7495.305,,6,5,28,4,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, and Student Loan",,15.89118865,17.12,13,Standard,2577.937796,37.98240232,6 Years and 6 Months,Yes,16.15751629,10000,Low_spent_Small_value_payments,290.5116085,0,-1.866,-0.8291,-1.5532,-0.3041,0.2832 -0x2215,CUS_0xa522,August,18,079-57-0728,_______,35133.49,,4,4,8,3,"Home Equity Loan, Mortgage Loan, and Student Loan",13.94048045,12,7.29,4,_,586.6,38.54613994,28 Years and 11 Months,Yes,45.89291064,23.68052109,High_spent_Large_value_payments,458.8056516,0,-0.2637,0.7535,-0.7587,-0.1595,-1.4232 -0x2221,CUS_0x8a6e,August,49,413-30-1170,Mechanic,16866.5,,4,4,20.06745738,1,Home Equity Loan,,12,1.31,6,Standard,1609.300954,35.54124542,28 Years and 11 Months,No,8.540130456,93.82043655,!@9#%8,322.4733117,0,1.1815,1.8865,0.7936,-0.9021,-1.0556 -0x222d,CUS_0x77d1,August,33,#F%$D@*&8,Accountant,18969.19,,1,7,7.288361749,0,,10.58346662,10.77370369,3.36,4,Good,62.39343547,24.44382383,23 Years and 8 Months,No,0,493.8776595,High_spent_Small_value_payments,371.0363848,0,-1.1405,0.3851,-0.7956,1.102,0.6942 -0x2239,CUS_0xde6,August,55,392-06-4039,Engineer,36154.19,,5,3,3,2,"Credit-Builder Loan, and Not Specified",6.538553286,8,10.39,2,Good,594.3664856,37.73210182,19 Years and 10 Months,No,30.64502724,,Low_spent_Small_value_payments,346.5410447,0,1.0753,2.4781,0.2803,0.2509,-2.1606 -0x2245,CUS_0xa672,August,32,874-58-8010,Entrepreneur,51113.85,4356.4875,7,9,30,9,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Student Loan, Payday Loan, Home Equity Loan, Auto Loan, and Student Loan",,28,20.82,9,_,3164.78,36.62570432,0 Years and 8 Months,Yes,214.8438774,107.7125187,Low_spent_Large_value_payments,383.0923539,0,0.2453,-0.1174,0.5972,-0.142,1.4951 -0x2251,CUS_0x8caf,August,21,093-46-5039,Developer,18784.88,,8,3,26,7,"Payday Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Student Loan, and Personal Loan",,22.55404479,17.08,12,Standard,2292.546569,38.66418586,18 Years and 5 Months,Yes,108.0336712,,Low_spent_Medium_value_payments,181.3534649,0,-1.4979,0.2345,0.2546,0.585,0.2634 -0x225d,CUS_0x4655,August,46,341-38-6599,Accountant,49889.38,,6,7,8,0,,16.99626374,17,5.12,7,Good,1266.321429,35.22633843,,No,0,65.24721956,High_spent_Medium_value_payments,630.2600161,0,1.5324,1.3409,-0.3034,0.5205,1.4452 -0x2269,CUS_0x25aa,August,18,177-44-9176,Mechanic,29233.34,2637.111667,6,4,17,3,"Student Loan, Debt Consolidation Loan, and Payday Loan",10.71712159,11,8.9,5,_,96.31,28.26216337,9 Years and 11 Months,Yes,50.71445532,,Low_spent_Large_value_payments,250.1658187,0,-2.3114,0.7144,-1.7174,-2.7077,0.7367 -0x2275,CUS_0xbd08,August,40,605-66-3118,Journalist,28922.03,,2,7,1,0,,7.324994949,5.64328237,11.99,3,_,1504.544405,23.4173157,33 Years and 4 Months,No,0,80.14739518,Low_spent_Medium_value_payments,454.6695215,0,0.3512,-0.6978,-1.1821,0.1593,1.9753 -0x2281,CUS_0x6b44,August,39,453-58-1018,Developer,20742.46,,5,4,8,5,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Student Loan",22.17623804,18,16,2238,Standard,1319.87,28.18747138,,Yes,60.06611256,166.8043383,Low_spent_Small_value_payments,243.2833825,0,-1.512,-0.2435,0.7483,0.4513,0.2426 -0x228d,CUS_0x7517,August,35,795-08-8326,Teacher,55719.18,4689.265,8,97,18,5,"Auto Loan, Home Equity Loan, Auto Loan, Home Equity Loan, and Payday Loan",,21.36994891,,6,Bad,4488.012069,39.52934688,14 Years and 2 Months,Yes,130.4684033,78.69377148,!@9#%8,499.7643252,0,-2.0907,-0.9479,-0.0561,1.0579,2.1385 -0x2299,CUS_0x5228,August,18,112-22-2857,Mechanic,55558.71,,10,5,33.06745738,7,"Not Specified, Payday Loan, Mortgage Loan, Not Specified, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,16,19.59,13,_,4419.580954,27.51608553,13 Years and 11 Months,Yes,210.1897087,571.7792643,Low_spent_Small_value_payments,,0,-1.7595,-0.6311,-0.9616,1.3411,0.471 -0x22a5,CUS_0x2e6e,August,25,176-54-2609,Engineer,33447.42,2859.285,8,5,13,3,"Credit-Builder Loan, Mortgage Loan, and Auto Loan",9.254444354,10.60139747,18.88,7,_,1750.864544,32.91152702,12 Years and 11 Months,NM,60.5135673,,High_spent_Large_value_payments,408.1961175,0,0.7339,0.937,-0.2698,-0.7866,-0.4374 -0x22b1,CUS_0x280b,August,27,434-17-8443,Accountant,34841.87,3025.489167,1,7,0.288361749,2,"Payday Loan, and Auto Loan",0,1,2.24,6,_,142.05,37.43020928,31 Years and 2 Months,No,33.36609811,,Low_spent_Medium_value_payments,374.3087324,0,0.6804,-0.4581,0.3329,-1.0572,0.6089 -0x22bd,CUS_0x51b4,August,36,243-06-9936,Engineer,17655.43,1530.285833,8,10,35.95700519,6,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Student Loan",54.83062955,29.79129934,24.49,10,Bad,3240.834823,31.20069924,9 Years and 0 Months,Yes,1406.137663,,Low_spent_Small_value_payments,119.3725244,0,-2.0102,2.7568,-0.3266,0.2029,1.1138 -0x22c9,CUS_0xa1d6,August,30,751-35-1347,Architect,7103.035,725.9195833,6,5,28,6,"Personal Loan, Not Specified, Personal Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",28.9228572,12.53742833,8.95,7,Standard,2381.089096,37.56110095,13 Years and 2 Months,Yes,30.30549812,,Low_spent_Small_value_payments,284.5355431,0,-0.0987,1.3054,-0.9414,0.6016,-0.779 -0x22d5,CUS_0x8b12,August,80,645-02-5061,Journalist,63101.14,,3,4,2.288361749,4,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",,8,9.19,5,_,64.53,27.55432925,17 Years and 0 Months,No,170.5429655,680.3444202,High_spent_Small_value_payments,353.6929087,0,-0.0772,0.3365,-1.0486,-0.4807,-0.2248 -0x22e1,CUS_0xa459,August,20,315-62-8807,Accountant,33453.08,2658.756667,10,10,23,2,"Not Specified, and Debt Consolidation Loan",,9.437477173,11.3,8,Standard,1626.879113,23.91224288,12 Years and 5 Months,Yes,30.75983367,,Low_spent_Small_value_payments,196.0359619,0,-2.0887,1.1922,0.0041,-0.5075,-0.3236 -0x22ed,CUS_0xf23,August,49,634-61-3484,Mechanic,83845.7,6958.141667,5,7,3.288361749,2,"Credit-Builder Loan, and Auto Loan",7.584845225,8,3.59,4,Good,45.7640004,38.44458206,25 Years and 6 Months,No,107.3811304,800.3275002,Low_spent_Medium_value_payments,540.4039881,0,-0.1935,-0.683,-1.6851,-1.0959,-0.2783 -0x22f9,CUS_0x7cfc,August,80,608-99-2576,Writer,108415,8848.583333,3,5,15.28836175,0,Not Specified,,20,16.33,6,Standard,982.7059773,31.90173034,,Yes,76.85756306,888.4802914,High_spent_Small_value_payments,654.1943488,0,0.7405,0.3952,1.0895,0.9121,-0.5959 -0x2305,CUS_0x728f,August,57,698-98-1498,_______,32663.41,,1,5,3,4,"Personal Loan, Mortgage Loan, Not Specified, and Home Equity Loan",,4,1.28,2,Good,986.7465011,36.43261914,16 Years and 11 Months,No,55.40536574,391.3766933,Low_spent_Small_value_payments,185.4675456,0,0.4901,0.098,0.7919,-2.4788,-0.0049 -0x2311,CUS_0xd05,August,45,600-02-1948,Musician,132537.24,10111.96258,3,2,12,1,Mortgage Loan,,1,0.69,1,Good,340.7175048,36.55721365,30 Years and 0 Months,No,780.3175743,868.7707879,Low_spent_Medium_value_payments,539.9273599,0,-0.1625,0.119,0.2356,-1.2908,1.6394 -0x231d,CUS_0x3cf7,August,31,226-49-8871,Journalist,17850.56,,1414,5,19.06745738,100,"Mortgage Loan, Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,24.38522736,7.11,11,Bad,3978.063074,30.21736218,8 Years and 3 Months,Yes,127.2236916,,Low_spent_Small_value_payments,216.1838847,0,-2.3884,0.1036,0.6039,-2.2993,0.4426 -0x2329,CUS_0xa71a,August,33,999-84-9578,Teacher,15713.83,1313.485833,7,8,24.06745738,2,"Home Equity Loan, and Credit-Builder Loan",23.83583754,12,14.39,7,Standard,2494.940954,33.05788971,11 Years and 0 Months,Yes,20.30880921,28.75335033,High_spent_Large_value_payments,295.5661358,0,0.5095,1.384,0.328,-0.9442,-1.6563 -0x2335,CUS_0x32ce,August,31,153-11-6855,Accountant,62050.89,,8,7,22,7,"Personal Loan, Credit-Builder Loan, Student Loan, Student Loan, Credit-Builder Loan, Student Loan, and Home Equity Loan",,26.39260701,9.95,13,Bad,4923.947817,25.80109764,6 Years and 0 Months,NM,286.959221,119.0840222,High_spent_Medium_value_payments,382.6475068,0,0.5173,0.6364,0.9656,0.9008,-0.3961 -0x2341,CUS_0x9b4c,August,37,129-84-0948,Doctor,18744.4,,8,7,29,9,"Credit-Builder Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Student Loan, and Mortgage Loan",32.45146156,23,20.17,12,Bad,4432.68,29.57143168,6 Years and 2 Months,Yes,139.9403852,,Low_spent_Small_value_payments,225.369594,0,0.082,0.4309,-0.5147,-0.295,0.723 -0x234d,CUS_0x4330,August,38,500-96-4323,Media_Manager,12070.845,1088.90375,8,5,8,4,"Student Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",,12,2.96,4,_,759.86,25.40908415,28 Years and 10 Months,Yes,31.3499696,76.93505249,Low_spent_Medium_value_payments,280.6053529,0,-0.3017,-0.2056,-0.5341,-0.9673,0.3042 -0x2359,CUS_0xf59,August,22,008-37-9819,Doctor,38539.57,3438.630833,4,2,2.288361749,0,Mortgage Loan,0,2,8.42,0,Good,482.6015315,33.77934616,30 Years and 2 Months,NM,22.68327917,558.6380566,High_spent_Medium_value_payments,451.5341933,0,0.8042,-0.0909,0.9047,1.333,0.9381 -0x2365,CUS_0x9a58,August,50,669-26-2513,Mechanic,48411.24,4306.27,8,3,3,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Mortgage Loan",14.17280722,11,4.04,3,Good,733.0411209,31.09377623,18 Years and 10 Months,No,82.22147115,361.7774458,Low_spent_Medium_value_payments,301.8963381,0,-1.644,0.3139,-0.0499,-0.8253,-1.0784 -0x2371,CUS_0x409e,August,24,088-38-3435,_______,47275.96,,6,3,4,945,"Payday Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",,18,9.43,3,Good,266.992829,23.33122534,22 Years and 9 Months,No,121.9288772,,High_spent_Large_value_payments,471.3693537,0,1.6967,-1.3386,0.3496,0.6864,-1.3453 -0x237d,CUS_0x532d,August,42,987-64-7939,Writer,22409880,,5,3,3.288361749,4,"Mortgage Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",0,1,6.94,2,Good,1483.59,34.0380473,32 Years and 0 Months,No,98.46945408,707.5838927,Low_spent_Small_value_payments,138.1197809,0,-1.114,-1.9045,-1.3766,-0.6503,0.2988 -0x2389,CUS_0xadb7,August,28,332-22-1188,Architect,33314.96,,10,5,18,7,"Mortgage Loan, Student Loan, Auto Loan, Student Loan, Not Specified, Mortgage Loan, and Student Loan",44.65850097,28.06864247,16.82,6,_,3632.696514,22.78560579,0 Years and 8 Months,Yes,98.19308987,102.9909421,High_spent_Small_value_payments,354.3406347,0,-1.4604,2.442,0.8799,-0.6752,0.1612 -0x2395,CUS_0xa9ca,August,45,#F%$D@*&8,Lawyer,7599.035,898.2529167,8,9,28.95700519,146,"Personal Loan, Payday Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",37.90508849,23.77776893,3.48,7,Bad,2654.571152,37.28059392,17 Years and 11 Months,Yes,1352.878966,67.99418121,Low_spent_Large_value_payments,217.9017752,0,1.5813,-0.3863,-1.0937,0.4155,-1.178 -0x23a1,CUS_0x69a9,August,19,#F%$D@*&8,Writer,97640.4,8034.7,5,7,6,4,"Auto Loan, Auto Loan, Student Loan, and Credit-Builder Loan",17.6012019,14,9.86,4,Standard,80.5,25.91202308,11 Years and 5 Months,Yes,259.8059369,356.4875127,Low_spent_Medium_value_payments,467.1765504,0,0.0594,0.2716,-1.3566,-0.1327,0.4574 -0x23ad,CUS_0x7dfb,August,34,986-47-8911,Musician,75881.16,6535.43,10,6,2565,6,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Payday Loan, and Student Loan",,24.00330924,9.94,11,_,2541.902454,23.43467187,10 Years and 9 Months,NM,232.3847176,509.8968823,Low_spent_Medium_value_payments,191.2614002,0,1.4337,0.0675,0.7897,-0.0183,0.2024 -0x23b9,CUS_0x479,August,29,854-62-5244,Mechanic,36490.98,2828.915,4,5,8,4,"Payday Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",25.60230735,19,7.75,12,Standard,581.05,36.28711306,12 Years and 4 Months,Yes,92.35158352,72.89077069,Low_spent_Large_value_payments,387.6491458,0,-2.2645,0.028,2.1138,0.1023,-0.13 -0x23c5,CUS_0x3b5d,August,19,341-44-0136,Developer,30743.6,2557.966667,5,4,5,1,Debt Consolidation Loan,20.82949437,16,14.76,5,Standard,401.53,26.22228122,7 Years and 10 Months,Yes,20.42494218,53.6882176,High_spent_Large_value_payments,421.6835069,0,-0.1346,-0.8146,-0.1904,0.6449,0.7849 -0x23d1,CUS_0x9167,August,22,033-47-7890,Entrepreneur,177150.4,14710.53333,2,6,5.288361749,4,"Auto Loan, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",9.223009612,11,1.47,4,Good,429.86,38.29954382,21 Years and 8 Months,No,472.2784577,576.3302617,High_spent_Large_value_payments,1082.382075,0,0.8458,1.7681,0.4187,1.4909,0.6242 -0x23dd,CUS_0x4a5b,August,26,395-63-5787,Architect,110264,9225.666667,8,6,19,7,"Home Equity Loan, Not Specified, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",18.46318701,14,14.6,12,Standard,555.2294847,38.27844622,,Yes,364.2904002,502.2772774,High_spent_Small_value_payments,370.9140552,0,-0.2821,-0.0283,-0.5614,-0.9665,0.3968 -0x23e9,CUS_0xfdd,August,18,977-98-5964,Scientist,32128.24,,6,4,4892,7,"Mortgage Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,20,10.61,8,Standard,465.04,35.75913887,7 Years and 8 Months,Yes,103.4562133,56.6485166,High_spent_Medium_value_payments,359.2306035,0,-1.5187,-0.8095,-0.2193,0.3903,-1.0246 -0x23f5,CUS_0x4883,August,29,822-72-2207,_______,151722.56,12352.54667,5,5,1.288361749,2,"Auto Loan, and Student Loan",0,0,2.89,1,Good,196.413323,20.5748889,22 Years and 0 Months,No,164.9520794,2036.337729,Low_spent_Small_value_payments,,0,0.6068,0.2633,0.3899,-0.8406,0.4324 -0x2401,CUS_0x6387,August,27,063-08-8008,Manager,62316.63,4895.0525,8,4,7,2,"Payday Loan, and Debt Consolidation Loan",9.843697604,9,0.94,1,Standard,417.27,39.00423496,26 Years and 10 Months,No,82.73317699,146.4301795,High_spent_Medium_value_payments,510.3418935,0,1.4029,-0.0127,0.0211,2.3242,2.3626 -0x240d,CUS_0xd83,August,80,214-39-6385,Lawyer,19310.62,1463.093138,9,6,34,5,"Debt Consolidation Loan, Mortgage Loan, Student Loan, Auto Loan, and Payday Loan",,10,12.87,10,Standard,1306.08,25.61167291,10 Years and 3 Months,Yes,238.490291,10000,High_spent_Medium_value_payments,283.9897658,0,0.4257,-1.2606,0.388,-1.6253,0.614 -0x2419,CUS_0x3ce3,August,47,319-42-1987,Entrepreneur,94511.79,7717.9825,5,3,8.288361749,0,,3.973723997,7,7.29,0,_,1188.183601,25.0368515,18 Years and 9 Months,No,0,842.7379368,Low_spent_Medium_value_payments,671.8993863,0,0.8389,-1.5959,-0.4093,0.9075,-2.9132 -0x2425,CUS_0xa706,August,50,475-31-3601,Manager,96275.84,8101.986667,6,6,18.28836175,0,Not Specified,,18,2.94,5,Standard,999.36,27.41803173,26 Years and 9 Months,NM,64.96133685,549.7694277,!@9#%8,855.4053631,0,0.1971,0.7254,-0.3198,-0.5063,0.977 -0x2431,CUS_0x9983,August,36,510-91-2920,Writer,57219.92,4511.326667,8,6,33,6,"Student Loan, Not Specified, Home Equity Loan, Not Specified, Personal Loan, and Personal Loan",,24,19.25,13,Bad,4935.76,32.71172172,3 Years and 8 Months,Yes,159.2958242,63.2418493,High_spent_Medium_value_payments,478.5949932,0,-0.9129,1.0099,1.2011,-0.8429,-0.897 -0x243d,CUS_0x2877,August,31,922-07-2675,_______,80591.2,6453.933333,4,4,32,2,"Student Loan, and Auto Loan",,9.116879869,9.62,8,_,2308.039359,31.90599197,13 Years and 9 Months,Yes,97.89725769,565.2692953,Low_spent_Medium_value_payments,262.2267803,0,0.3656,-0.0894,1.3129,1.8295,0.3577 -0x2449,CUS_0x1df1,August,31,#F%$D@*&8,Mechanic,73434.92,5849.576667,1,5,4.288361749,100,"Payday Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",0,3,11.93,0,Good,192.45,32.81305029,16 Years and 2 Months,No,214.4301784,591.8463999,!@9#%8,448.6185493,0,0.2206,-0.3047,-0.0598,-0.3634,0.5464 -0x2455,CUS_0x4223,August,23,631-86-9034,Developer,53916.84,,8,7,29.06745738,8,"Home Equity Loan, Auto Loan, Personal Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,25.56496243,2.99,6,Bad,3058.767891,29.29200641,5 Years and 0 Months,NM,300.2300406,96.70205299,High_spent_Medium_value_payments,299.8546184,0,0.0804,1.3219,0.5233,-0.1633,-0.433 -0x2461,CUS_0x3f47,August,35,393-00-8916,Musician,53071.47,4656.6225,8,5,2620,8,"Student Loan, Student Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",38.54436834,22.72706878,8.05,10,Bad,1979.642011,26.52877462,19 Years and 2 Months,Yes,54574,191.2148172,Low_spent_Medium_value_payments,345.9639848,0,-0.8686,-0.4628,0.7337,1.1096,0.7468 -0x246d,CUS_0x86b,August,42,372-37-8955,Engineer,69692.16,6034.68,9,5,32,7,"Personal Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Personal Loan",33.20451151,25.27132375,14.66,9,Bad,2429.194495,25.41554681,13 Years and 4 Months,Yes,395.8793931,,Low_spent_Large_value_payments,255.3910486,0,0.4712,1.1918,-1.2764,0.3293,-0.4341 -0x2479,CUS_0x98f9,August,34,704-68-7178,Entrepreneur,15735.68,1043.306667,3,6,7,2,"Personal Loan, and Student Loan",11.5649101,9,19.08,7,Standard,1574.91,26.23477671,9 Years and 5 Months,NM,21.35618485,12.49458031,High_spent_Medium_value_payments,320.4799015,0,1.3706,-1.3156,1.7246,1.7433,-0.1065 -0x2485,CUS_0x46eb,August,32,348-20-7816,Engineer,20502.64,1588.553333,8,10,28.88954781,8,"Home Equity Loan, Auto Loan, Personal Loan, Personal Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Personal Loan",22.49514105,18,25.18,15,_,4182.21,26.59964197,2 Years and 0 Months,Yes,1410.945585,63.46105889,Low_spent_Medium_value_payments,270.1186081,0,0.0199,-0.8778,1.0665,0.4451,0.4056 -0x2491,CUS_0x1863,August,54,316-92-2785,Manager,55662.64,4900.553333,4,6,6,3,"Student Loan, Credit-Builder Loan, and Credit-Builder Loan",31.18708108,20,11.06,2,Standard,1078.02,31.74617,,Yes,90.94994557,,Low_spent_Medium_value_payments,549.3941955,0,-0.0734,-0.8505,-2.1338,-1.4968,0.3714 -0x249d,CUS_0x481f,August,23,322-85-4061,Scientist,19758.84,1901.57,7,5,33.06745738,8,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Not Specified",45.71619162,26.22837911,2.76,14,Bad,1699.542877,40.0271018,15 Years and 5 Months,Yes,71.69473985,53.41737331,High_spent_Small_value_payments,298.3245989,0,-0.7199,0.7108,-0.8239,0.5382,0.0345 -0x24a9,CUS_0x79b,August,27,773-62-4134,Lawyer,55000.62,,3,6,12,0,,17.49351491,14,2.88,0,Standard,815.35,28.35034423,16 Years and 6 Months,No,0,71.2221547,High_spent_Medium_value_payments,631.4163453,0,-0.0413,-0.4356,-0.8397,0.1437,-1.3213 -0x24b5,CUS_0xbf19,August,18,209-19-4326,Doctor,10352.745,,3,5,6,7,"Personal Loan, Mortgage Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",25.2424796,17,15.99,8,_,343.41,24.34312355,5 Years and 8 Months,Yes,36.62937698,113.9136568,Low_spent_Small_value_payments,225.6298412,0,-1.3627,-0.8888,1.3794,-0.8053,-2.9398 -0x24c1,CUS_0xa501,August,34,455-84-4696,Mechanic,50811.27,4387.2725,6,4,20,3,"Home Equity Loan, Student Loan, and Credit-Builder Loan",17.32533079,14,8.01,5,Standard,1274.59,36.19643285,6 Years and 4 Months,Yes,22779,,High_spent_Large_value_payments,472.2431749,0,-0.82,0.1215,0.6572,-0.0667,-0.4131 -0x24cd,CUS_0x2602,August,28,#F%$D@*&8,_______,59448.04,4339.36173,9,7,24.06745738,6,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,21,1.05,6,Bad,4049.230954,40.38433587,13 Years and 11 Months,Yes,714.4760346,,High_spent_Large_value_payments,423.7046568,0,-0.6629,0.3787,0.4951,0.3443,0.5984 -0x24d9,CUS_0x96e,August,53,394-26-5712,Doctor,18549.28,1698.773333,4,4,6,0,,0,0,3.22,0,Good,1124.761581,36.68212249,20 Years and 6 Months,No,0,119.2727701,Low_spent_Medium_value_payments,342.5912427,0,1.5406,-0.0361,1.1942,-0.0035,0.8197 -0x24e5,CUS_0x864a,August,50,288-57-7696,Teacher,134810.13,10998.1775,5,7,6,2,"Payday Loan, and Auto Loan",0,1,10.54,9,Good,660.3484095,31.00299069,32 Years and 8 Months,No,199.8420985,231.725523,High_spent_Small_value_payments,952.8537241,0,0.5647,1.7411,-0.1543,-0.7481,0.8418 -0x24f1,CUS_0x56d1,August,33,203-76-0108,_______,162550.32,13731.86,0,5,11,1,Student Loan,5.791958361,8,0.68,4,Good,713.3744018,34.100926,16 Years and 9 Months,No,76.18230461,574.7647791,Low_spent_Medium_value_payments,1088.021166,0,1.6429,-0.8581,-0.0797,-0.8867,-1.5248 -0x24fd,CUS_0xae0e,August,24,063-40-8380,Accountant,102596.64,8718.72,4,5,8,0,,5.467860046,2.345373167,11.61,4,Good,1181.52446,29.30258721,21 Years and 2 Months,No,0,348.3441977,High_spent_Medium_value_payments,773.5278023,0,1.7429,-0.1941,1.4038,-0.1657,-0.264 -0x2509,CUS_0x3b3f,August,31,876-41-0796,Manager,14884.465,,8,5,1,4,"Not Specified, Not Specified, Home Equity Loan, and Student Loan",26.4792439,17.40383655,6.79,4,Good,1280.090674,36.24883043,28 Years and 8 Months,NM,37.78683849,183.7398268,Low_spent_Small_value_payments,222.310543,0,1.7597,1.383,-0.3364,-2.4537,-0.6031 -0x2515,CUS_0x9bc4,August,39,644-42-9017,Architect,31732.61,,4,4,1,4,"Personal Loan, Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",23.26714095,14.49427904,3.37,4,Good,1542.129456,24.71851254,30 Years and 6 Months,NM,100.9154077,,Low_spent_Medium_value_payments,205.0832365,0,-0.4294,1.285,-0.642,-0.3109,-2.6264 -0x2521,CUS_0x62a4,August,46,287-49-6561,Lawyer,50847.22,4156.268333,3,6,4831,1,Credit-Builder Loan,,18,6.4,0,Standard,486.71,36.56803929,23 Years and 2 Months,Yes,23.78387813,385.7174292,!@9#%8,276.125526,0,0.7219,-1.4299,-1.5637,0.3039,1.8932 -0x252d,CUS_0x4c77,August,33,#F%$D@*&8,Doctor,9349.475,772.1229167,6,6,19,9,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",30.25425727,17.57730535,24.98,9,Bad,5445.600081,29.17082469,3 Years and 10 Months,Yes,52.06513502,11.12510578,High_spent_Medium_value_payments,264.0220509,0,0.5763,-1.9378,0.163,0.8819,-0.5962 -0x2539,CUS_0x62f0,August,44,183-01-9526,Teacher,135115.44,,4,6,18,2,"Student Loan, and Student Loan",11.88794016,9,1.42,2,Standard,269.46,27.12433363,19 Years and 0 Months,Yes,204.6182236,,Low_spent_Medium_value_payments,106.3374433,0,-0.1327,-1.1214,0.9492,-2.3901,0.0069 -0x2545,CUS_0x342a,August,34,566-11-2306,Lawyer,66169.56,,8,1141,11.28836175,2,"Payday Loan, Debt Consolidation Loan, and Not Specified",16.16985149,14,10.6,7,Standard,198.53,32.65660671,25 Years and 10 Months,Yes,126.7894615,606.0578398,Low_spent_Medium_value_payments,547.0031597,0,1.2422,0.4126,0.6134,2.1148,0.7343 -0x2551,CUS_0x7597,August,44,572-60-9561,Musician,56760.51,4999.0425,6,5,20.06745738,9,"Student Loan, Not Specified, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Not Specified",,28.81162729,28.7,12,Bad,5597.085714,37.33220708,6 Years and 10 Months,Yes,401.1213841,33.64875615,!@9#%8,278.4138218,0,-1.0408,1.5005,0.2058,0.3369,-0.2023 -0x255d,CUS_0xbb6e,August,33,896-42-9226,Architect,108223.62,8775.635,5,6,6.288361749,2,"Not Specified, and Not Specified",,12,11.53,3,Standard,977.19,33.56772033,27 Years and 4 Months,Yes,127.9292135,724.610931,High_spent_Medium_value_payments,694.9608165,0,0.4022,-1.027,0.2676,-1.6018,1.7283 -0x2569,CUS_0x7c55,August,31,#F%$D@*&8,Manager,53098.47,4197.8725,9,7,24,8,"Payday Loan, Student Loan, Auto Loan, Mortgage Loan, Auto Loan, Payday Loan, Mortgage Loan, and Payday Loan",,21,16.47,11,_,3403.23,36.8532072,13 Years and 9 Months,Yes,270.2026196,113.9376065,!@9#%8,285.6470238,0,1.7391,1.3254,-0.5625,-2.0406,-1.1627 -0x2575,CUS_0xa835,August,54,093-23-2302,Musician,17853.5,,5,4,12,2,"Credit-Builder Loan, and Not Specified",9.635822445,10,1.95,4,Good,881.576184,27.92985442,,No,18.02270353,148.0249277,Low_spent_Small_value_payments,264.7785032,0,-1.8516,0.1475,0.4596,-0.4696,2.8838 -0x2581,CUS_0x467f,August,21,253-64-1331,Accountant,16813.54,1101.128333,8,10,34.95700519,8,"Not Specified, Payday Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",,23.2787542,5.19,17,Bad,4078.35722,35.41020811,11 Years and 2 Months,Yes,1416.424559,118.4912075,Low_spent_Small_value_payments,144.1466977,0,-1.0801,0.6558,0.068,-0.8163,-0.4722 -0x258d,CUS_0x7590,August,43,751-03-4015,Architect,68665.76,5619.146667,7,6,13,7,"Mortgage Loan, Student Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",24.86815363,20,7.05,11,Standard,420.02,36.20769209,12 Years and 8 Months,Yes,329.6660619,201.1802948,Low_spent_Small_value_payments,321.0683099,0,0.1615,-0.7176,0.2308,-0.3171,-1.3545 -0x2599,CUS_0x515a,August,24,665-62-6458,Developer,22500.52,,5,3,19,5,"Payday Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",17.24733495,,16.61,8,Standard,774.7204104,33.08629049,12 Years and 10 Months,Yes,65.02102612,113.2590588,Low_spent_Medium_value_payments,292.2150562,0,-0.6228,2.8603,1.8333,1.6287,1.3452 -0x25a5,CUS_0x114a,August,43,133-89-5234,Developer,15305.46,1230.455,0,7,2,2,"Student Loan, and Home Equity Loan",0.368384414,2,15.95,0,Good,642.42,27.52511298,15 Years and 9 Months,No,20.30165387,64.77848008,Low_spent_Small_value_payments,327.9653661,0,0.472,-0.2227,0.1362,1.0621,1.932 -0x25b1,CUS_0x49dd,August,18,966-28-7046,Engineer,15544.47,1030.3725,8,5,33.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",,21,25.11,12,_,3133.120954,26.13634598,1 Years and 10 Months,NM,35.2567983,,Low_spent_Medium_value_payments,238.7359819,0,0.1216,-0.1757,-1.2208,0.1816,0.4231 -0x25bd,CUS_0x6346,August,50,005-96-9331,Media_Manager,99089.52,8309.46,5,1,9,1,Personal Loan,0,1,8.66,2,Good,338.95,27.28513949,33 Years and 3 Months,No,57.16122949,124.2227242,High_spent_Large_value_payments,889.5620464,0,-0.7508,-0.5205,0.2717,0.3787,0.1156 -0x25c9,CUS_0x481c,August,23,356-46-8172,Media_Manager,9307.24,,4,3,15,3,"Credit-Builder Loan, Personal Loan, and Home Equity Loan",19.11044351,14,12.78,5,Standard,486.05,30.81504514,11 Years and 10 Months,Yes,20.88719603,,Low_spent_Small_value_payments,234.8128227,0,-1.2022,1.3429,0.6359,-1.1128,0.4643 -0x25d5,CUS_0xa1ea,August,42,390-23-8969,Architect,134316.2,11429.01667,8,3,11,0,,23.42499299,16,16.5,4,_,1383.6,35.34856501,20 Years and 0 Months,Yes,0,383.030072,High_spent_Medium_value_payments,1009.871595,0,-1.6694,-1.1726,-0.3313,0.1917,1.5303 -0x25e1,CUS_0x70b2,August,40,830-58-7325,Media_Manager,38685.98,3360.831667,1,5,3,2,"Mortgage Loan, and Mortgage Loan",12.44057443,12,1.24,5,Good,1220.284813,24.11514578,30 Years and 0 Months,No,37469,523.0966314,!@9#%8,121.6248083,0,0.8516,0.429,0.942,0.7059,0.4156 -0x25ed,CUS_0xc365,August,23,070-70-9782,Doctor,69933.98,,8,7,2701,2,"Auto Loan, and Home Equity Loan",9.212284793,10,10.11,5,_,1446.37,39.0474055,18 Years and 9 Months,Yes,86.4011582,87.60547294,High_spent_Medium_value_payments,632.1765355,0,0.4985,-1.5271,-0.2249,-0.1205,0.6876 -0x25f9,CUS_0x8efa,August,26,933-08-6838,Entrepreneur,21075.36,1904.28,3,1,5,2,"Credit-Builder Loan, and Credit-Builder Loan",,5,2.53,6,_,1498.02,24.23813298,29 Years and 8 Months,No,19.34731148,53.87767297,High_spent_Medium_value_payments,367.2030156,0,2.3511,-0.5386,1.6423,1.7587,0.9882 -0x2605,CUS_0x9783,August,40,360-46-5304,Accountant,60843.33,,4,6,14,3,"Student Loan, Auto Loan, and Payday Loan",,18,14.42,11,_,1494.43,29.52679539,20 Years and 6 Months,Yes,151.9788495,159.6490641,High_spent_Medium_value_payments,428.5998364,0,-0.478,0.2591,-1.0916,0.6019,-0.7387 -0x2611,CUS_0x6a17,August,36,#F%$D@*&8,Musician,15091.03,1480.585833,7,7,27.06745738,9,"Mortgage Loan, Payday Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Student Loan",,21.27501536,6.18,13,_,3798.735395,26.00441722,,Yes,93.61720092,195.2011346,Low_spent_Small_value_payments,122.5199598,0,-0.4793,-1.0337,0.3315,-0.8954,0.3523 -0x261d,CUS_0x8c03,August,80,739-21-8242,Scientist,54987.52,,4,5,10,0,,23.98374609,17,9.81,8,Standard,1263.12,29.00091276,16 Years and 9 Months,Yes,0,420.2199643,Low_spent_Large_value_payments,326.0093691,0,-1.3665,2.0423,0.5086,-1.0597,-0.4636 -0x2629,CUS_0xadf6,August,38,300-53-0224,Doctor,7506.125,802.5644817,10,7,23.06745738,5,"Not Specified, Payday Loan, Not Specified, Home Equity Loan, and Auto Loan",,21,25.04,11,Bad,4406.630954,23.45854757,11 Years and 4 Months,Yes,92.85434624,57.48866511,High_spent_Small_value_payments,240.1336774,0,-1.3046,-1.7532,-0.3292,1.1651,-0.0557 -0x2635,CUS_0xa166,August,43,149-22-5385,Engineer,17448.08,,9,5,21.06745738,9,"Not Specified, Auto Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Student Loan, Student Loan, Auto Loan, and Auto Loan",,17,2.5,14,Bad,2798.640954,41.12553459,15 Years and 10 Months,Yes,94.85486815,25.43745572,High_spent_Large_value_payments,224.4880548,0,-2.4968,0.5168,-1.0585,0.7974,0.4955 -0x2641,CUS_0x7d27,August,41,573-84-1711,Journalist,42241.19,3231.099167,0,5,10.28836175,0,,7.474614704,9,3.24,9,Good,171.394214,26.70410088,25 Years and 10 Months,NM,0,667.2531757,High_spent_Small_value_payments,371.9491061,0,-0.4541,-1.9024,-0.6373,0.1264,1.2253 -0x264d,CUS_0x5698,August,27,169-39-0968,Entrepreneur,31087.66,,4,7,12,6,"Mortgage Loan, Not Specified, Not Specified, Payday Loan, Not Specified, and Student Loan",10.3789206,9.254226376,9.95,8,_,77.19650941,39.5724983,7 Years and 8 Months,Yes,134.6917202,105.7171953,High_spent_Small_value_payments,266.7549178,0,0.6226,-0.4545,0.4133,0.0886,0.1626 -0x2659,CUS_0x51e,August,45,946-94-7531,_______,132414.16,11050.51333,3,3,19,0,,21.07029827,16,4.06,4,Standard,48.20791299,37.24794643,26 Years and 0 Months,Yes,0,129.1232443,High_spent_Large_value_payments,1228.288151,0,1.1748,1.2913,-2.3324,0.0506,1.0912 -0x2665,CUS_0xab3b,August,54,747-67-2935,Lawyer,92794.04,,4,7,7,0,,23.27037497,16,11.09,3,Standard,1269.4,28.6698975,28 Years and 5 Months,Yes,0,145.0034534,High_spent_Small_value_payments,871.2802133,0,0.4315,0.9086,-0.9697,-1.2772,1.2584 -0x2671,CUS_0xf43,August,38,131-37-1161,Media_Manager,82998.24,7186.52,8,7,22,6,"Student Loan, Home Equity Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",40.65315533,26.47982039,22,12,_,5277.404445,26.69429651,13 Years and 3 Months,Yes,383.9140141,,High_spent_Large_value_payments,445.3851274,0,0.9838,0.9778,-0.2718,0.3018,-0.0692 -0x267d,CUS_0x345b,August,41,118-30-0727,Musician,11993705,1157.9025,4,7,14,4,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",,16,17.66,10,_,471.81,28.89030469,14 Years and 9 Months,Yes,52.02492383,85.4799857,Low_spent_Small_value_payments,268.2853405,0,-0.8443,0.8568,-0.2265,-1.1339,0.0279 -0x2689,CUS_0x4c34,August,45,019-49-4119,Entrepreneur,31896.42,2417.035,823,5,4,1,Payday Loan,7.179037232,8,1.91,8,Good,1177.43,38.39571509,25 Years and 10 Months,No,22.79977776,123.4958894,Low_spent_Small_value_payments,385.4078328,0,-0.7583,-1.4836,-0.4979,0.8145,-0.2231 -0x2695,CUS_0x3d51,August,21,092-73-8014,Entrepreneur,34927,,6,4,4,0,,,21,11.36,6,Good,1158.55,38.87802804,26 Years and 8 Months,No,0,82.21284814,High_spent_Medium_value_payments,459.8454852,0,-0.2441,-0.7145,-0.1018,0.7115,-0.569 -0x26a1,CUS_0x9fff,August,54,826-73-0532,Mechanic,25020.07,1928.005833,4,3,10,1,Home Equity Loan,12.92705395,10,3.1,5,_,94.75,36.79139952,22 Years and 5 Months,NM,17.06628101,63.8183469,High_spent_Medium_value_payments,361.9159554,0,0.8791,-0.8502,-0.189,1.3589,-0.2618 -0x26ad,CUS_0xa41e,August,31,360-35-4496,Doctor,82778.56,,6,6,30,4,"Mortgage Loan, Student Loan, Mortgage Loan, and Payday Loan",,16.99450431,17.39,15,_,1979.18358,36.84607937,18 Years and 2 Months,NM,49942,120.5324095,High_spent_Medium_value_payments,625.0936069,0,-1.1196,-2.4146,0.722,-0.3457,-1.0022 -0x26b9,CUS_0x797d,August,37,178-56-1075,Doctor,94052.22,7704.685,4,4,13,1,Payday Loan,22.92765962,16,16.41,8,Standard,76.99,33.34224195,21 Years and 6 Months,Yes,39.57533226,295.6557578,High_spent_Small_value_payments,695.2374099,0,-0.589,0.1504,0.9615,-0.4566,-0.2906 -0x26c5,CUS_0x9c4,August,27,851-46-0194,Writer,16355.71,,9,8,24.06745738,3,"Student Loan, Personal Loan, and Debt Consolidation Loan",37.22621828,18.2648297,20,13,Standard,2062.080403,30.12377313,8 Years and 10 Months,Yes,24.93505007,,Low_spent_Medium_value_payments,255.94351,0,-0.241,-0.6466,-0.3494,0.6292,-0.4032 -0x26d1,CUS_0x9d0d,August,18,550-29-3197,Engineer,15119.56,,6,5,30.06745738,6,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",,20,21.63,11,Bad,3377.480954,30.29961336,13 Years and 2 Months,Yes,58.21119197,,Low_spent_Small_value_payments,235.6621373,0,-0.1872,-1.1347,-1.2375,0.4747,-0.7928 -0x26dd,CUS_0x602d,August,18,041-28-6430,Teacher,20639.79,,7,5,16.06745738,9,"Payday Loan, Auto Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Not Specified, Student Loan, and Student Loan",26.66113622,15,16.15,8,Bad,4369.280954,34.0849378,1 Years and 5 Months,Yes,95.62691019,128.3251534,Low_spent_Small_value_payments,193.5258984,0,-0.8254,1.7515,0.1509,0.6359,0.0206 -0x26e9,CUS_0x63dd,August,37,706-84-4068,Doctor,18472.71,1392.3925,10,6,27.06745738,4,"Personal Loan, Payday Loan, Student Loan, and Student Loan",,32.38067105,5.4,10,Bad,2461.104291,41.77446405,20 Years and 0 Months,Yes,60.82589002,,Low_spent_Medium_value_payments,253.7532644,0,0.1229,-0.5148,0.5625,1.1593,-0.6982 -0x26f5,CUS_0x3f27,August,54,042-79-0167,Lawyer,42731.27,3300.939167,0,4,0.288361749,2,"Mortgage Loan, and Home Equity Loan",0,0,5.2,1,Good,511.85,36.95078378,24 Years and 8 Months,No,50.85101407,,High_spent_Small_value_payments,368.0191741,0,1.4966,0.1703,0.7357,0.0379,0.2875 -0x2701,CUS_0x67ff,August,31,017-88-1687,Manager,82700.32,6625.693333,10,9,17.88954781,6,"Auto Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",,,27.33,12,Bad,5133.446837,33.62418711,12 Years and 2 Months,Yes,1715.597777,386.409828,Low_spent_Small_value_payments,156.2316469,0,0.7201,1.0292,-1.4899,0.9997,-1.1318 -0x270d,CUS_0xc247,August,45,800-03-6665,Developer,11968.51,,3,4,16,2,"Not Specified, and Auto Loan",,18,10.95,0,Standard,685.74,36.65202731,25 Years and 4 Months,No,18.07448505,22.43068293,High_spent_Large_value_payments,324.9324153,0,-0.7055,0.0972,-1.0271,1.4406,0.9884 -0x2719,CUS_0xc723,August,32,305-49-2524,Mechanic,33386.25,,7,5,11,3,"Home Equity Loan, Mortgage Loan, and Mortgage Loan",14.0157923,10,9.97,6,Standard,1343.67,40.06811199,14 Years and 4 Months,Yes,77.54612497,116.9318157,High_spent_Medium_value_payments,340.6408094,0,-0.9307,0.9685,-0.6406,0.8037,0.612 -0x2725,CUS_0xa213,August,18,940-01-4923,Architect,67614.24,5558.52,7,10,17,2,"Home Equity Loan, and Personal Loan",41.19109368,25.09223892,9.66,14,Bad,1444.556264,30.82564493,17 Years and 3 Months,Yes,95.03286667,133.2883507,!@9#%8,577.5307826,0,1.7516,1.0507,-0.3455,1.0558,1.6702 -0x2731,CUS_0x6065,August,36,332-11-5896,Accountant,174304.04,14458.33667,1,3,11.28836175,0,,,7,1.96,4,Good,461.16,34.47146802,30 Years and 6 Months,No,0,1184.945342,Low_spent_Large_value_payments,950.8257858,0,-0.1448,-1.6999,-1.4862,1.3386,-1.3795 -0x273d,CUS_0x7f61,August,26,707-44-1618,Doctor,68742.75,5902.5625,7,4,20,100,"Credit-Builder Loan, and Payday Loan",27.07794712,19,11.04,8,Standard,651.38,30.36667002,14 Years and 0 Months,Yes,89.6574062,235.2379624,Low_spent_Medium_value_payments,545.3608814,0,0.697,-1.9388,0.3784,1.0968,0.0762 -0x2749,CUS_0xb563,August,45,782-43-1037,Journalist,15932.725,,6,6,11,1,Debt Consolidation Loan,17.60348566,12,8.63,1,Standard,1124.16,28.41096148,27 Years and 11 Months,Yes,13.26805418,107.3312387,Low_spent_Large_value_payments,271.3734155,0,1.133,0.8341,-0.3273,0.783,-0.513 -0x2755,CUS_0x47b2,August,44,799-70-1935,Doctor,55583.67,4816.9725,6,5,11,2,"Personal Loan, and Payday Loan",25.03052966,17,12.29,6,Standard,2019.51,31.48123966,17 Years and 5 Months,Yes,69.73399854,141.7471412,High_spent_Small_value_payments,530.2161102,0,0.5025,2.4225,-0.7916,2.4497,1.1711 -0x2761,CUS_0x9338,August,19,420-69-3653,Architect,72252.36,6059.03,5,3,12,4,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",19.50016022,,9.1,4,Standard,51.39,23.41405174,25 Years and 9 Months,No,127.1503019,132.3537666,High_spent_Large_value_payments,586.3989315,0,-1.8833,-0.3796,-0.8852,-0.0649,-0.9944 -0x276d,CUS_0x6102,August,32,718-37-2610,Scientist,30399.06,2031.587766,5,6,18,4,"Not Specified, Home Equity Loan, Auto Loan, and Payday Loan",14.85073819,12,10.55,8,_,516.76,32.84952642,18 Years and 9 Months,Yes,321.1954881,10000,Low_spent_Small_value_payments,201.1676299,0,0.3694,0.3587,1.0427,-0.4546,1.5362 -0x2779,CUS_0x5794,August,42,201-91-3081,Lawyer,8365.075,,6,8,20.06745738,5,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Auto Loan",,16,28.81,11,Bad,2982.020954,41.55160528,4 Years and 11 Months,Yes,31.95448983,10000,High_spent_Medium_value_payments,267.1834215,0,-0.7976,0.1671,-0.5077,-0.8258,0.1705 -0x2785,CUS_0xa560,August,80,316-70-8777,_______,133410.66,11387.555,1,3,4,0,,2.681036407,5,1.05,3,Good,811.2569258,27.00522992,27 Years and 11 Months,No,0,590.2001017,High_spent_Small_value_payments,880.5197191,0,-0.9783,0.7248,1.2721,-1.4851,0.7248 -0x2791,CUS_0x7fe3,August,42,561-77-1789,Developer,19167.04,1479.253333,6,6,16.06745738,4,"Not Specified, Payday Loan, Auto Loan, and Payday Loan",30.00632426,18.78786217,,6,Standard,1626.299882,36.50288554,7 Years and 0 Months,Yes,44.5354516,30.44002056,High_spent_Medium_value_payments,296.2295732,0,0.8276,-0.0318,1.4568,-0.135,-1.5375 -0x279d,CUS_0x4c3e,August,42,181-99-1436,_______,28169.07,,4,4,2,0,,0,3,7.75,1,_,404.4995694,22.25274357,26 Years and 8 Months,No,0,241.907999,!@9#%8,316.3708835,0,0.1135,-0.1329,0.0065,-0.1025,-1.0489 -0x27a9,CUS_0x41e4,August,46,803-07-6149,Teacher,3961526,919.13,5,879,5,0,,,,-3.5,6,Good,294.3261768,38.83332293,19 Years and 10 Months,No,66045,14.53217673,High_spent_Large_value_payments,319.2329542,0,-1.0553,-0.9077,-1.0356,-0.4179,-0.8446 -0x27b5,CUS_0x2484,August,19,781-29-3684,Musician,29625.82,2559.818333,3,4,11,4,"Personal Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",27.82507536,19,17.74,4,Standard,1042.61,33.74170476,7 Years and 0 Months,Yes,92.11623116,180.4322147,Low_spent_Small_value_payments,273.4333874,0,0.7398,-0.1869,-0.8125,1.0802,3.3226 -0x27c1,CUS_0xb560,August,22,221-90-6592,Architect,62223.06,5326.255,7,4,10,3,"Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",20.06176669,13,19.85,,_,1230.58,33.57420139,,Yes,120.3581056,571.4290668,Low_spent_Small_value_payments,130.8383276,0,0.255,0.5844,0.4979,-0.0328,2.5958 -0x27cd,CUS_0x4e8b,August,44,961-90-2351,Journalist,14976.45,1495.0375,7,6,16,0,,33.37037022,22,14.21,3,Standard,69.51,30.92654434,28 Years and 0 Months,Yes,0,,Low_spent_Small_value_payments,245.9309249,0,-1.0046,-0.9958,1.1157,0.1023,0.7906 -0x27d9,CUS_0x8b96,August,24,342-46-9453,Doctor,82454,,6,7,16,6,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Not Specified, Not Specified, and Mortgage Loan",,18.09951855,24.94,11,Bad,3361.959469,34.32880214,4 Years and 6 Months,Yes,234.7033395,274.216998,Low_spent_Medium_value_payments,473.4963291,0,-1.0535,0.8849,-0.7909,0.3566,0.1375 -0x27e5,CUS_0x9b60,August,33,624-63-2071,Architect,62874.96,5086.58,3,4,15,4,"Credit-Builder Loan, Student Loan, Auto Loan, and Personal Loan",26.30094327,19,17.1,7,Standard,527.16,34.8532679,20 Years and 5 Months,Yes,129.3664035,675.26782,!@9#%8,,0,1.7881,0.2978,-0.8653,-0.0497,-0.0799 -0x27f1,CUS_0xaf23,August,37,231-01-3965,Musician,17164.72,1223.393333,10,6,19,9,"Not Specified, Personal Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Not Specified, Credit-Builder Loan, Personal Loan, and Personal Loan",24.35123731,16,25.15,7,Bad,4813.02,36.98798025,11 Years and 0 Months,Yes,99.12637797,,Low_spent_Small_value_payments,174.2796074,0,-0.7329,0.4125,-0.6289,0.0167,-0.7918 -0x27fd,CUS_0xbda2,August,32,137-60-0428,Manager,37302.1,,3,2,12,4,"Debt Consolidation Loan, Mortgage Loan, Not Specified, and Not Specified",,12,-3.93,5,Good,799.7500268,29.64622041,22 Years and 3 Months,No,80.27175239,73.09714868,High_spent_Small_value_payments,446.9834553,0,-0.3309,0.356,1.5141,1.6627,0.2991 -0x2809,CUS_0x82cc,August,32,156-63-4771,Architect,7526.205,836.18375,8,8,28.95700519,9,"Credit-Builder Loan, Home Equity Loan, Personal Loan, Student Loan, Credit-Builder Loan, Personal Loan, Student Loan, Auto Loan, and Debt Consolidation Loan",37.35782985,22,15.55,10,Bad,2749.440954,25.84955419,1 Years and 10 Months,Yes,1372.847459,70.39226039,!@9#%8,199.3282868,0,-0.2094,-0.5041,1.8415,-1.4103,0.5345 -0x2815,CUS_0x7812,August,21,992-47-8736,Scientist,19653.005,,3,3,10,4,"Personal Loan, Student Loan, Debt Consolidation Loan, and Not Specified",14.77060191,14,1.22,3,Good,807.0927939,32.45489715,17 Years and 11 Months,No,38.11255604,63.76976061,Low_spent_Small_value_payments,354.198615,0,0.4346,-0.1336,-1.5267,1.3504,-0.6869 -0x2821,CUS_0xc23d,August,30,031-88-3485,Scientist,174179.64,14346.97,1,7,7.288361749,0,Personal Loan,1.120251757,5,5.68,6,Good,1355.93,41.27180841,29 Years and 4 Months,No,123.4272573,766.8505607,High_spent_Medium_value_payments,1214.356643,0,0.475,-0.1631,-0.0824,0.2267,-0.2641 -0x282d,CUS_0x93bb,August,22,#F%$D@*&8,Doctor,41543.64,3620.97,8,5,21,100,"Not Specified, Personal Loan, and Payday Loan",28.21020462,21.31453095,16.56,13,Standard,2998.576239,34.01671195,15 Years and 2 Months,Yes,53.27462435,,Low_spent_Large_value_payments,334.3252016,0,-0.5741,1.8055,-0.2193,0.672,0.6181 -0x2839,CUS_0x46e6,August,22,772-99-7774,Developer,9582.775,750.5645833,9,7,17.06745738,8,"Not Specified, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",,24.24177335,25.21,13,Bad,4193.679888,31.99063087,8 Years and 4 Months,NM,36.17024397,25.51710552,Low_spent_Large_value_payments,256.6488209,0,-0.6293,-1.116,1.2214,-1.0481,0.5247 -0x2845,CUS_0x5ccb,August,41,037-01-6529,Teacher,21720.955,,0,4,10,2,"Student Loan, and Credit-Builder Loan",10.852155,10.5578459,2.71,1,_,1099.920963,30.31867116,18 Years and 11 Months,No,32.31239993,98.63260985,High_spent_Small_value_payments,332.9629486,0,-0.891,0.7074,-0.5661,0.5829,1.1456 -0x2851,CUS_0x3ca6,August,51,059-86-1986,Journalist,38107.36,2955.613333,8,7,12,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",24.04013994,16,1.96,2,Standard,1472.7,24.91436873,22 Years and 10 Months,No,73.57946752,,Low_spent_Large_value_payments,236.7403216,0,-0.676,-0.5628,-0.2175,0.5771,1.5821 -0x285d,CUS_0xc081,August,80,736-71-7699,Writer,85423.16,7000.596667,6,3,14,2,"Personal Loan, and Home Equity Loan",,20,16.94,11,Standard,902.37,34.33997679,,Yes,120.1416337,95.94045433,!@9#%8,733.9775787,0,-0.9383,-0.9355,1.2696,-1.0572,1.2435 -0x2869,CUS_0x6345,August,29,830-80-4719,Teacher,20308.26,1684.355,6,5,29.06745738,6,"Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, and Mortgage Loan",22.25862865,13.1619718,11.13,15,Standard,2405.623994,36.40115222,9 Years and 10 Months,Yes,99.85674076,164.7207239,Low_spent_Small_value_payments,167.1377474,0,0.2334,0.5218,1.0821,-1.8268,-0.5952 -0x2875,CUS_0xc6bb,August,20,001-84-7802,Lawyer,60889.08,4859.09,10,6,22.06745738,9,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Not Specified, Personal Loan, Payday Loan, and Home Equity Loan",37.88633992,23,27.19,10,Bad,4421.470954,38.36574463,10 Years and 9 Months,Yes,336.8419981,,High_spent_Medium_value_payments,176.7557511,0,-0.1545,1.4556,1.319,-0.4278,0.391 -0x2881,CUS_0x683,August,37,680-24-2269,Media_Manager,13603.41,,6,5,16,6,"Student Loan, Personal Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",23.76987571,17,24.91,5,Standard,42.09778994,38.29018228,20 Years and 0 Months,Yes,53.76195803,39.39367906,High_spent_Medium_value_payments,248.4457714,0,-1.2204,-1.0214,-1.1858,-1.7678,0.3621 -0x288d,CUS_0x20e0,August,34,079-99-9062,Media_Manager,12943.475,,5,5,9,6,"Credit-Builder Loan, Student Loan, Not Specified, Personal Loan, Payday Loan, and Payday Loan",,14,10.6,6,Standard,265.36,39.22746969,7 Years and 4 Months,Yes,45.09082981,28.08706903,High_spent_Small_value_payments,319.5843928,0,0.6648,-1.0564,0.728,0.7233,-0.3086 -0x2899,CUS_0x3af5,August,32,126-82-5903,Mechanic,44483.64,,8,10,17.88954781,8,"Personal Loan, Payday Loan, Payday Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",20.30350534,,20.12,8,Bad,2770.15,30.94594865,12 Years and 3 Months,Yes,1483.738843,249.0325799,Low_spent_Small_value_payments,230.9954958,0,-0.941,0.0693,0.5728,-0.0252,-0.1785 -0x28a5,CUS_0xa9e3,August,32,005-46-5010,Manager,7795.54,,10,6,19.06745738,6,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",,,5.62,16,Bad,2422.11048,26.46178563,19 Years and 2 Months,Yes,29.59967892,63.41423732,Low_spent_Small_value_payments,250.7286291,0,1.7491,-0.6839,-2.791,-1.7173,-0.1645 -0x28b1,CUS_0x3fa8,August,43,283-56-6375,Writer,177243.92,,4,6,3,3,"Student Loan, Personal Loan, and Auto Loan",,12,6.64,3,Good,426.7158805,27.93176208,28 Years and 11 Months,No,284.8041966,1299.541644,!@9#%8,328.197048,0,-0.5047,1.6467,0.3046,0.183,-0.8555 -0x28bd,CUS_0x791e,August,41,667-96-7235,Musician,35518.98,3068.915,8,6,9,3,"Auto Loan, Student Loan, and Not Specified",18.63454863,16,15.52,9,Standard,1137.011901,39.51015387,11 Years and 5 Months,Yes,84.75534306,168.3312662,Low_spent_Large_value_payments,349.4758449,0,-0.8793,-0.7397,-1.7247,-0.9872,-1.9535 -0x28c9,CUS_0x9953,August,43,792-02-6835,Journalist,8875.135,,8,9,27,2,"Credit-Builder Loan, and Payday Loan",23.16279948,15.75619137,23.46,15,Standard,1525.082556,29.70388448,17 Years and 8 Months,Yes,9.058562006,84.28781997,Low_spent_Small_value_payments,295.6130764,0,0.0551,-0.8362,0.8149,-0.2863,0.1184 -0x28d5,CUS_0xaf1b,August,36,792-02-2371,Media_Manager,16708.07,,6,9,23.06745738,8,"Personal Loan, Student Loan, Personal Loan, Student Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Personal Loan",41.09127617,20.98315504,8.47,12,Bad,3114.566723,28.88804049,15 Years and 0 Months,Yes,76.27367261,127.4702151,Low_spent_Medium_value_payments,185.469741,0,2.0018,-0.9235,-0.5802,-0.3626,0.6267 -0x28e1,CUS_0x8153,August,19,596-27-5459,Journalist,81395.44,6584.953333,1,4,9.288361749,0,,,6,2.75,2,_,278.8,35.28477707,32 Years and 6 Months,No,0,675.7800012,Low_spent_Medium_value_payments,682.6527932,0,-0.8773,0.3997,0.1684,-1.3535,0.4864 -0x28ed,CUS_0x51b,August,29,551-15-6622,Media_Manager,48780.56,3835.046667,4,5,16,0,,33.48508878,23,4.97,5,Standard,869.0960336,25.04621687,,Yes,0,11516.5026,High_spent_Medium_value_payments,502.0553729,0,-0.9908,-1.1845,-0.8857,-1.7638,-0.2133 -0x28f9,CUS_0x2b8e,August,29,301-63-5817,Mechanic,141753.72,,5,5,12.28836175,4,"Payday Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",,14,18.65,6,Standard,425.3295536,23.56265118,17 Years and 10 Months,Yes,385.6011848,897.1556297,High_spent_Medium_value_payments,607.5432402,0,-0.346,-0.1077,0.9277,-0.9045,-2.8134 -0x2905,CUS_0x264c,August,43,902-94-4726,_______,48608.78,,5,403,5,2,"Auto Loan, and Debt Consolidation Loan",,17,15.11,12,Standard,345.71,38.54866892,16 Years and 5 Months,Yes,60.10848226,314.6242762,Low_spent_Large_value_payments,325.3404082,0,0.155,-0.0266,-0.4321,-0.6559,-0.0075 -0x2911,CUS_0x2e31,August,23,377-14-3303,Scientist,63206.72,5309.226667,10,8,28.95700519,8,"Student Loan, Personal Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",27.66672072,15,26.48,13,Bad,4747.290954,41.46489536,13 Years and 8 Months,Yes,1554.773637,339.6836985,High_spent_Small_value_payments,175.4149616,0,-1.4197,1.3245,1.2036,0.4861,-0.9119 -0x291d,CUS_0x4f13,August,28,923-13-7813,Lawyer,63635.12,,3,4,2,2,"Credit-Builder Loan, and Personal Loan",,10,11.25,7,Good,122.65,35.4659036,25 Years and 0 Months,No,57.71606552,207.284333,High_spent_Small_value_payments,542.6922682,0,0.2659,-0.7712,-0.0219,-0.9554,0.7191 -0x2929,CUS_0x9eec,August,31,148-15-4934,Mechanic,126849.18,10511.765,2,3,2.288361749,0,,3.952525451,6,3.04,8,Good,518.4,38.4912995,28 Years and 10 Months,No,0,603.1174107,High_spent_Large_value_payments,1107.99655,0,-1.2056,0.2439,-2.4946,-2.4235,-2.2298 -0x2935,CUS_0x5fbf,August,45,809-92-8326,Developer,8779.145,,10,6,33.06745738,100,"Auto Loan, Payday Loan, Student Loan, Mortgage Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",39.02343143,26.54205508,3.33,13,_,2064.088793,31.21381457,8 Years and 6 Months,Yes,32.40642842,,Low_spent_Small_value_payments,248.972724,0,1.5589,-0.2005,0.419,1.2587,0.1788 -0x2941,CUS_0x4c1e,August,35,445-26-1404,Developer,16154.8,,4,3,8,2,"Credit-Builder Loan, and Debt Consolidation Loan",22.56131939,16,17.36,6,_,275.06,37.07942516,8 Years and 2 Months,Yes,24.46219423,14.23024081,High_spent_Large_value_payments,345.6308983,0,-0.9212,-1.0812,1.0207,0.8435,1.9534 -0x294d,CUS_0xaac3,August,80,914-67-3814,Manager,11631.405,858.28375,4,7,8,4,"Debt Consolidation Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",21.55851242,17,1.57,3,Good,145.5109073,30.23505233,31 Years and 10 Months,No,32.05796275,,High_spent_Medium_value_payments,277.3386526,0,-2.5554,1.5754,-1.659,-0.6051,0.0264 -0x2959,CUS_0x2041,August,31,348-82-9441,Media_Manager,24726.48,1767.54,4,6,15,2,"Personal Loan, and Student Loan",19.77933027,16,11.51,,Standard,155.22,35.06099084,28 Years and 2 Months,No,25.14400588,53.59274284,Low_spent_Large_value_payments,368.0172513,0,-3.236,0.1641,0.9206,-0.7142,-1.8018 -0x2965,CUS_0xc5d6,August,25,291-84-1220,Doctor,44188.5,,8,9,17,7,"Mortgage Loan, Home Equity Loan, Auto Loan, Not Specified, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,22.43839,5.41,13,_,2815.932148,33.9633959,18 Years and 4 Months,Yes,204.6421112,456.1650677,Low_spent_Small_value_payments,,0,-0.2042,-0.8473,0.8059,-1.0212,1.0536 -0x2971,CUS_0x7b15,August,26,173-42-8880,Accountant,13065.87,,5,6,13,2,"Personal Loan, and Personal Loan",11.85615081,11,1.72,5,Standard,1203.17,38.39786634,22 Years and 4 Months,NM,16.03971008,,Low_spent_Large_value_payments,267.2544623,0,-0.2371,-0.5258,0.0606,0.4398,-0.3461 -0x297d,CUS_0x80b1,August,18,769-65-4167,Journalist,49447.74,4282.645,7,4,9,5,"Personal Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",,14,8.34,9,Standard,1286.68,29.94497481,12 Years and 11 Months,Yes,147.0038704,,Low_spent_Large_value_payments,191.8788577,0,-0.7797,0.2352,-2.452,0.8462,0.6059 -0x2989,CUS_0xa6e4,August,26,837-93-4866,Teacher,42941.85,3311.4875,6,9,26,3,"Payday Loan, Credit-Builder Loan, and Student Loan",35.45963248,20.00091129,13.92,7,Standard,2519.958048,33.07285373,11 Years and 3 Months,Yes,97.91556458,112.2164637,High_spent_Medium_value_payments,371.0167217,0,-0.6449,-1.174,0.6713,0.0671,1.2871 -0x2995,CUS_0x942a,August,33,182-75-3598,Doctor,37824.65,3208.054167,5,2,2.288361749,2,"Personal Loan, Not Specified, and Credit-Builder Loan",,8,2.78,5,Good,69.84,36.52207631,27 Years and 10 Months,No,67.56184428,465.3359751,High_spent_Medium_value_payments,457.8450583,0,2.6702,1.4797,1.5762,0.4963,1.3363 -0x29a1,CUS_0xe94,August,53,#F%$D@*&8,Musician,66732.58,,0,2,2.288361749,0,,5.480957027,8,3.64,5,Good,220.586931,29.12662103,19 Years and 5 Months,No,0,472.8603658,High_spent_Large_value_payments,776.7052282,0,0.9172,-0.7617,-0.0312,0.1828,0.7231 -0x29ad,CUS_0x5d7e,August,20,670-18-2990,Musician,61463.94,5480.873643,7,8,30,9,"Student Loan, Student Loan, Payday Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Mortgage Loan",,19.44510938,5.79,7,_,1964.135559,38.31221467,12 Years and 3 Months,Yes,256.9664295,245.4632095,!@9#%8,137.6912182,0,-0.0522,1.3234,1.8967,-0.4042,1.1224 -0x29b9,CUS_0x3474,August,39,995-56-2550,Entrepreneur,115800.54,,4,4,8.288361749,0,Payday Loan,0,2.341156388,11.9,2,Good,212.924691,26.46557423,25 Years and 8 Months,No,81.74203566,655.1707895,Low_spent_Large_value_payments,939.0291358,0,1.4557,-1.0213,0.5712,1.9244,0.5381 -0x29c5,CUS_0xad9d,August,23,771-56-8439,Doctor,88133.16,7147.43,2,4,6,0,,5.554657273,5,9.5,0,_,1073.99,34.64709433,,No,0,442.1689459,Low_spent_Medium_value_payments,552.5740541,0,1.154,-0.5919,-0.9196,-1.0235,-2.4378 -0x29d1,CUS_0x9776,August,41,703-80-5465,Manager,27632.92,2312.743333,8,3,9,3,"Student Loan, Credit-Builder Loan, and Not Specified",,14.46296024,8.99,3,_,1233.156384,39.3147377,21 Years and 0 Months,NM,44.80729528,204.8258521,Low_spent_Small_value_payments,271.641186,0,0.3542,-1.4462,0.9793,0.7193,1.5142 -0x29dd,CUS_0x6632,August,18,958-93-2024,Journalist,21846.06,,2,6,8,2,"Not Specified, and Credit-Builder Loan",7.143408295,9,0.95,3,Good,248.8361198,29.58969306,18 Years and 6 Months,NM,22.09594399,69.59346058,Low_spent_Large_value_payments,386.1360217,0,0.0956,0.1809,1.1195,-1.026,0.237 -0x29e9,CUS_0x6d4,August,30,452-17-3020,Media_Manager,8610.765,888.56375,5,7,6.067457376,3,"Mortgage Loan, Personal Loan, and Credit-Builder Loan",,11,23.17,13,Standard,1650.360954,29.46699409,18 Years and 4 Months,Yes,14.96569468,25.87673564,High_spent_Small_value_payments,281.2936567,0,0.5383,0.708,-0.5093,-1.888,0.8104 -0x29f5,CUS_0x2db7,August,27,255-55-1581,Engineer,49023.22,4161.268333,5,5,12.28836175,2,"Credit-Builder Loan, and Student Loan",8.439401626,9,11.48,3,Standard,270.2,33.03252581,26 Years and 11 Months,No,62.74107295,464.4976128,!@9#%8,548.8256086,0,-0.8839,-1.4705,0.1416,0.5032,-0.9392 -0x2a01,CUS_0x4bdf,August,42,777-87-7270,Developer,104564.64,9002.72,4,7,8,2,"Mortgage Loan, and Debt Consolidation Loan",23.66573684,18,9.64,0,_,100.49,28.4519225,25 Years and 3 Months,No,112.9312158,424.3876818,High_spent_Small_value_payments,622.9531025,0,0.1448,-0.7591,0.2289,-0.0218,-0.5002 -0x2a0d,CUS_0x3ba2,August,28,243-27-1407,Entrepreneur,59751.78,5044.315,7,7,17,4,"Credit-Builder Loan, Personal Loan, Student Loan, and Mortgage Loan",,15.83446808,16.82,9,Standard,1643.037417,39.08412194,16 Years and 0 Months,Yes,116.298417,381.8003564,Low_spent_Medium_value_payments,286.3327266,0,0.446,1.645,0.8748,-2.0602,0.0942 -0x2a19,CUS_0x4d26,August,22,133-18-6855,Architect,20978.49,1853.2075,6,10,20,3,"Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",20.38977153,12.11647231,12.32,10,Standard,2512.387923,38.6547736,,Yes,28.45284753,95.11340117,Low_spent_Large_value_payments,331.7545013,0,1.1282,1.1524,-0.2204,-1.7237,0.226 -0x2a25,CUS_0x247e,August,44,368-98-6866,_______,118644.36,10033.03,1,2,8.288361749,0,Auto Loan,0,1,4.53,6,Good,1100.42,42.00513906,31 Years and 8 Months,No,53.02788628,553.9068823,High_spent_Medium_value_payments,1066.305692,0,-0.6814,-0.3465,1.329,-1.7405,1.0562 -0x2a31,CUS_0x3d41,August,19,467-76-9461,Accountant,30029.59,,0,4,5,4,"Debt Consolidation Loan, Payday Loan, Payday Loan, and Personal Loan",,8,-0.52,5,_,466.13,24.27346942,31 Years and 9 Months,No,68.42705999,141.0645208,Low_spent_Medium_value_payments,311.1550025,0,-0.137,-0.4934,0.3367,0.1598,-0.3867 -0x2a3d,CUS_0x438b,August,23,240-13-3223,Media_Manager,81557,6718.416667,9,7,18,6,"Personal Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",,18.04384962,22.91,12,Bad,2866.618651,36.89929681,12 Years and 0 Months,Yes,321.4449354,226.2010886,High_spent_Medium_value_payments,374.1956427,0,1.1628,1.2347,-0.6001,0.2008,0.4548 -0x2a49,CUS_0xa9a9,August,42,948-77-3611,Writer,63331.9,5149.658333,5,4,20,0,,21.58015385,19,8.86,6,Standard,362.71,26.99057802,8 Years and 8 Months,Yes,0,175.6654669,High_spent_Medium_value_payments,589.3003665,0,1.0534,0.006,-0.2549,0.559,-0.9714 -0x2a55,CUS_0x68c8,August,42,094-43-4653,Doctor,24069.55,,7,7,20,0,,27.66934563,19,15.02,9,_,279.1040428,32.26529399,29 Years and 11 Months,Yes,263.5079914,204.170607,Low_spent_Small_value_payments,318.1955502,0,1.4337,-1.5661,0.9104,1.136,0.3329 -0x2a61,CUS_0x7799,August,29,401-76-8437,Manager,15762.72,1593.56,3,3,20,4,"Debt Consolidation Loan, Student Loan, Student Loan, and Home Equity Loan",17.70944536,,10.76,4,Standard,1050.18,23.68720806,21 Years and 5 Months,Yes,51704,,Low_spent_Small_value_payments,346.0934853,0,-1.883,0.3158,-0.1932,0.1213,0.0973 -0x2a6d,CUS_0x7888,August,50,262-53-0576,Architect,122713.6,10114.13333,5,6,14,2,"Credit-Builder Loan, and Not Specified",11.51977113,10,12.46,1,Standard,128.33,36.69183768,23 Years and 2 Months,NM,146.268887,735.3854196,Low_spent_Medium_value_payments,409.7590267,0,-0.6534,0.4599,0.2524,0.0296,1.7146 -0x2a79,CUS_0x1d3e,August,49,579-15-1527,Architect,41499.21,3582.2675,0,5,5,0,,,,9.79,4,_,1095.303622,34.08588225,15 Years and 10 Months,No,0,416.5505427,Low_spent_Small_value_payments,287.4013844,0,1.116,0.1734,-0.7481,-1.3709,0.5401 -0x2a85,CUS_0xa83a,August,26,389-32-0105,Musician,82840.24,6973.353333,1,6,0.288361749,0,Not Specified,0,2.254512499,1.81,4,Good,396.2872207,34.91791434,19 Years and 0 Months,NM,56.69193834,747.7830492,Low_spent_Medium_value_payments,592.7978068,0,-0.6568,-0.8287,-0.9175,-1.9552,-0.811 -0x2a91,CUS_0x43c6,August,25,411-18-3032,Journalist,24195.37,1946.280833,7,7,19,1,Credit-Builder Loan,16.64109688,16,20.96,9,Standard,1163.09,32.77751441,,Yes,18.06952041,41.85349185,High_spent_Medium_value_payments,384.7050711,0,-0.332,-0.7492,0.9674,-0.0555,0.9731 -0x2a9d,CUS_0x534a,August,20,309-86-5134,Scientist,20441835,6315.618333,3,5,1,0,,1.146030123,2,3.26,4,Good,1116.88,40.08565435,31 Years and 3 Months,No,0,202.681141,High_spent_Medium_value_payments,678.8806923,0,0.9739,-1.8311,-1.3402,-0.4366,-0.6967 -0x2aa9,CUS_0x8d4f,August,20,666-08-2872,Entrepreneur,7106.15,,6,5,30.06745738,3,"Personal Loan, Auto Loan, and Debt Consolidation Loan",40.16147619,24.09936324,3.66,7,Bad,3127.899222,29.14079942,19 Years and 5 Months,Yes,9.575854756,40.91181907,Low_spent_Small_value_payments,272.0099549,0,0.4471,0.2026,1.3041,0.0691,-0.2957 -0x2ab5,CUS_0xa45d,August,38,441-54-5666,Doctor,20193.59,1400.799167,3,3,8,5,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Payday Loan, and Not Specified",16.72787608,12,9.42,6,Standard,1109.22,30.57884203,,Yes,68.09053967,139.7638828,Low_spent_Small_value_payments,222.2254942,0,0.7149,0.0522,-0.3135,-0.2689,0.2117 -0x2ac1,CUS_0x7f32,August,31,895-90-3550,Writer,62545.59,5133.1325,3,6,7,4,"Personal Loan, Student Loan, Payday Loan, and Student Loan",16.7936552,12.01946586,,8,Standard,1259.123559,27.41853437,17 Years and 8 Months,Yes,174.4163184,257.8017596,Low_spent_Medium_value_payments,361.0951719,0,2.0315,-0.996,-0.6073,-0.3653,1.4824 -0x2acd,CUS_0x303a,August,53,784-81-5355,Architect,32011.89,2806.6575,2,6,4,3,"Credit-Builder Loan, Home Equity Loan, and Payday Loan",12.12027017,10.58465045,,1,Good,1392.535927,25.13083788,26 Years and 0 Months,NM,66.35744899,117.9253972,High_spent_Medium_value_payments,346.3829038,0,-0.7846,0.23,-0.029,-0.0195,0.8363 -0x2ad9,CUS_0x8a5c,August,34,778-25-3886,_______,42399.03,3572.2525,7,5,31,7,"Student Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Student Loan",,14.17096275,11.69,17,_,2369.201288,36.43444865,,Yes,196.6894916,358.9480496,Low_spent_Small_value_payments,91.58770887,0,-1.63,0.7551,1.7837,-1.3648,0.6186 -0x2ae5,CUS_0x36d5,August,30,171-27-0494,Mechanic,23679.61,,8,5,15,0,,27.65640825,18,4.74,4,Standard,622.58,38.87430514,19 Years and 5 Months,No,0,122.3909637,Low_spent_Small_value_payments,394.2391196,0,0.9999,0.2065,0.7754,-0.2866,-0.0794 -0x2af1,CUS_0x5155,August,28,082-20-7384,Teacher,62139.51,5089.2925,6,10,26.88954781,8,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Payday Loan",,27.62173278,24.24,8,Bad,2838.926776,38.61938583,8 Years and 6 Months,Yes,1665.712517,67.34593046,High_spent_Medium_value_payments,331.5407211,0,0.8303,0.1222,0.2342,-2.0534,1.5666 -0x2afd,CUS_0x1e6b,August,26,299-96-0609,Manager,62846.31,5393.1925,10,8,20.88954781,7,"Not Specified, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",,21.08384841,1.79,10,_,4491.191688,26.92229073,2 Years and 4 Months,Yes,1608.466364,189.3383909,High_spent_Medium_value_payments,297.1844142,0,-0.8276,0.7382,-0.0644,0.2904,-1.8675 -0x2b09,CUS_0x6514,August,32,007-68-4311,Media_Manager,59438.91,5086.2425,6,7,33,9,"Personal Loan, Not Specified, Personal Loan, Auto Loan, Personal Loan, Payday Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",35.07518035,22,5.35,9,Bad,2259.86,28.44346548,9 Years and 8 Months,Yes,362.2704969,166.8267252,High_spent_Medium_value_payments,229.5270278,0,0.5921,1.0595,0.6907,-1.0116,1.7745 -0x2b15,CUS_0x92ef,August,37,297-54-9325,Mechanic,69870.88,,3,6,7,3,"Payday Loan, Payday Loan, and Auto Loan",,,8.26,8,Standard,2106.68,28.6342926,6 Years and 0 Months,Yes,148.7095152,45.79152642,!@9#%8,647.5562918,0,-0.1608,2.2234,0.7171,-0.1204,0.3839 -0x2b21,CUS_0xc3d6,August,80,402-44-2832,Architect,76257.52,6383.793333,8,9,24.88954781,9,"Student Loan, Mortgage Loan, Auto Loan, Auto Loan, Not Specified, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",,22.16911549,,12,_,3086.985629,29.4843797,6 Years and 6 Months,Yes,1669.780144,180.7895809,!@9#%8,353.4795276,0,0.5356,1.1658,-0.4001,-0.2011,-2.2267 -0x2b2d,CUS_0x33f0,August,33,#F%$D@*&8,Scientist,74450.88,,6,4,18.28836175,2,"Not Specified, Mortgage Loan, and Credit-Builder Loan",,20,16.85,12,_,640.7,27.45005969,20 Years and 2 Months,NM,37843,,High_spent_Large_value_payments,688.1635979,0,-0.2062,0.3037,0.5513,0.2643,0.3651 -0x2b39,CUS_0x32e5,August,32,093-52-7956,_______,146866.76,12108.89667,4,6,1708,3,"Student Loan, Not Specified, and Student Loan",,18,5.78,3,Standard,247.08,35.80700541,22 Years and 5 Months,No,218.4820356,,Low_spent_Large_value_payments,207.9218797,0,-0.2062,-2.2543,-0.6556,0.1949,-0.6539 -0x2b45,CUS_0xa8e7,August,41,622-93-7229,Lawyer,20914.44,1800.87,6,7,22.06745738,100,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Student Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,16,0.98,16,Bad,2628.280954,39.30759048,16 Years and 10 Months,Yes,124.2176483,,!@9#%8,137.4385615,0,-1.9863,-1.0134,-1.0628,-0.1033,-0.3822 -0x2b51,CUS_0x90d6,August,22,333-00-1107,Engineer,18936.55,,8,6,25,7,"Not Specified, Credit-Builder Loan, Home Equity Loan, Not Specified, Credit-Builder Loan, Payday Loan, and Not Specified",,16,19.7,7,_,3969.14,28.99372996,11 Years and 3 Months,Yes,80.84994008,163.7755559,Low_spent_Small_value_payments,217.6790874,0,0.182,0.0889,2.8935,1.2773,-0.5 -0x2b5d,CUS_0x65f6,August,30,489-78-3488,Accountant,61476.93,4940.0775,6,6,23.06745738,5,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Not Specified, and Not Specified",,24,7.82,14,Bad,3545.790954,37.51169411,8 Years and 6 Months,Yes,212.556688,235.9211608,High_spent_Small_value_payments,278.8096132,0,1.9592,1.4719,0.7799,-0.6853,0.3474 -0x2b69,CUS_0xbbff,August,24,245-76-8164,Writer,16198.305,,4,7,4,2,"Not Specified, and Not Specified",,5,11.9,0,Good,1439.09,35.25468193,31 Years and 3 Months,No,14.3501461,37.07580426,High_spent_Small_value_payments,317.5599246,0,-0.1398,-0.9153,-0.4603,1.5107,-1.1214 -0x2b75,CUS_0x144d,August,23,269-66-4319,Mechanic,20938.03,1896.835833,6,9,23,5,"Payday Loan, Not Specified, Not Specified, Not Specified, and Student Loan",17.03035179,15,-2.16,11,Bad,1657.74,26.55798601,10 Years and 3 Months,Yes,56.26113897,62.5588382,Low_spent_Medium_value_payments,350.8636062,0,0.3996,0.0137,0.8691,0.3756,1.2389 -0x2b81,CUS_0x4a74,August,24,679-28-0350,Lawyer,21364.2,1728.35,3,3,17,1,Credit-Builder Loan,18.48662717,15,9.1,6,Standard,1178.6,31.94484529,29 Years and 11 Months,Yes,9.230471159,188.9983131,Low_spent_Small_value_payments,264.6062158,0,-0.2245,-2.6909,0.4129,-1.001,1.2091 -0x2b8d,CUS_0xa6d9,August,34,403-15-3171,Lawyer,96826.96,7933.913333,8,5,7,0,,22.76865405,19,8.76,5,Standard,1290.07,25.98308653,26 Years and 2 Months,NM,0,369.7411273,High_spent_Small_value_payments,683.650206,0,0.5968,-0.4283,1.5467,1.3408,1.0284 -0x2b99,CUS_0x3f5f,August,44,#F%$D@*&8,Entrepreneur,16808.35,1188.695833,8,6,11,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",21.49140888,18.23614338,21.51,5,Standard,1445.726827,28.70287736,20 Years and 0 Months,Yes,64.87719125,122.8570181,Low_spent_Small_value_payments,221.135374,0,0.0756,0.5593,-1.0563,-1.8607,-1.7208 -0x2ba5,CUS_0x29b2,August,21,626-80-0791,_______,59930.04,5207.17,8,8,28.95700519,6,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Mortgage Loan",31.18236191,,14.18,,Bad,4697.700954,39.23789048,2 Years and 4 Months,Yes,1480.079608,160.289743,High_spent_Medium_value_payments,409.2972796,0,-0.6021,-1.5304,1.1135,-0.0233,1.7158 -0x2bb1,CUS_0x58d0,August,52,843-52-9642,Musician,128279.16,10966.93,2,6,1.288361749,0,,7.979571884,9,10.87,7,_,105.26,31.8450298,16 Years and 9 Months,No,0,1114.853873,Low_spent_Medium_value_payments,681.7765883,0,-1.9451,-0.4661,0.3669,-0.3617,0.3914 -0x2bbd,CUS_0x768c,August,25,628-81-6734,Lawyer,53908.41,,9,5,17,5,"Mortgage Loan, Credit-Builder Loan, Not Specified, Student Loan, and Auto Loan",44.44787123,26.93495029,25.07,11,Bad,3422.376028,24.67719916,,Yes,219.8383102,,Low_spent_Large_value_payments,360.2254789,0,0.8061,-1.5322,-1.4899,-0.4354,-1.0055 -0x2bc9,CUS_0x32b1,August,45,517-36-8021,Manager,16718.08,,8,10,26.06745738,5,"Mortgage Loan, Student Loan, Payday Loan, Student Loan, and Debt Consolidation Loan",,20,23.03,6,Bad,3155.400954,34.39560169,8 Years and 10 Months,Yes,41.40894223,116.6605097,Low_spent_Small_value_payments,266.9275935,0,1.3149,-0.417,0.671,-1.825,-1.6066 -0x2bd5,CUS_0x17f3,August,39,033-08-6622,Manager,83355.33,7208.2775,6,4,8,2,"Not Specified, and Mortgage Loan",18.71126484,15,10.07,4,Standard,677.27,26.03671345,30 Years and 2 Months,Yes,75.96957344,236.9426392,High_spent_Small_value_payments,667.9155373,0,1.5998,0.8112,1.2934,-1.2,0.5416 -0x2be1,CUS_0x8831,August,44,728-18-0682,Media_Manager,11646.19,,6,3,14,2,"Debt Consolidation Loan, and Home Equity Loan",26.34622559,20,5.33,6,Standard,847.88,30.85885381,18 Years and 9 Months,Yes,10.05059807,83.99855871,!@9#%8,277.9024266,0,0.1276,-1.7818,2.8804,0.2259,0.3899 -0x2bed,CUS_0x83a4,August,46,167-34-4316,Writer,69577.92,,5,6,4363,3,"Payday Loan, Student Loan, and Debt Consolidation Loan",4.950852245,3.645616594,8.53,4,Good,564.318553,26.58862291,19 Years and 4 Months,No,135.383947,420.2461688,Low_spent_Small_value_payments,322.5858843,0,-0.7561,-0.0191,0.3277,-0.2925,-0.8064 -0x2bf9,CUS_0x5db1,August,37,418-30-2017,Developer,25621.01,1837.084167,3,7,3,2,"Home Equity Loan, and Payday Loan",,10,6.37,2,Good,1336.73,31.53694367,31 Years and 2 Months,NM,26.74670147,203.6438554,Low_spent_Small_value_payments,243.3178597,0,-0.3012,-1.6048,0.05,-0.2467,0.8185 -0x2c05,CUS_0x58f,August,29,744-81-5706,Architect,55324.29,4334.3575,10,637,28.88954781,8,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Auto Loan, Auto Loan, and Home Equity Loan",42.16614866,21,32.18,7,_,4270.21,33.66734912,8 Years and 2 Months,NM,1568.579336,,Low_spent_Small_value_payments,103.9649345,0,0.7161,3.2943,0.5298,0.8718,1.4812 -0x2c11,CUS_0x437c,August,45,517-71-4654,Lawyer,42947.49,3470.9575,4,7,15,2,"Personal Loan, and Auto Loan",,20,18.38,12,Standard,2266.69,34.89298076,15 Years and 5 Months,Yes,47.93668893,81.27540374,High_spent_Medium_value_payments,467.8836573,0,-0.4823,1.3658,1.425,0.1354,0.0247 -0x2c1d,CUS_0x28df,August,19,935-43-1402,Scientist,49023.6,3935.3,5,6,28,6,"Payday Loan, Payday Loan, Student Loan, Not Specified, Auto Loan, and Payday Loan",24.24517332,17.33234544,9.64,6,Standard,2859.533312,38.25072841,14 Years and 10 Months,Yes,211.7097552,139.6104638,Low_spent_Small_value_payments,332.209781,0,1.593,-0.0877,-1.4326,0.7558,-0.3663 -0x2c29,CUS_0x5e3b,August,37,068-14-1985,Entrepreneur,60263.43,,1662,5,20,5,"Student Loan, Payday Loan, Student Loan, Mortgage Loan, and Mortgage Loan",46.20938336,28.77809543,17.71,14,_,1587.16547,25.69386881,10 Years and 4 Months,Yes,178.7366155,127.9212186,High_spent_Large_value_payments,457.6374159,0,0.4617,1.0424,-0.2344,0.1326,-0.0006 -0x2c35,CUS_0x2e15,August,37,986-75-9097,Teacher,44036.97,3884.7475,2,3,11,4,"Home Equity Loan, Personal Loan, Student Loan, and Home Equity Loan",4.678974162,3.603093996,7.77,4,Good,1123.937599,35.83829859,29 Years and 6 Months,NM,82.98637942,10000,Low_spent_Small_value_payments,461.6895882,0,-1.32,0.3874,0.4274,-0.3393,-1.4369 -0x2c41,CUS_0x52e7,August,22,641-27-8461,Developer,12681.45,1191.7875,6,7,15,0,,24.40765269,18.10464719,9.49,2,Standard,680.2663946,26.56402492,17 Years and 5 Months,Yes,0,49.97227605,!@9#%8,359.2064739,0,1.2294,-0.3393,1.489,0.2837,-1.654 -0x2c4d,CUS_0xc4c9,August,30,147-54-4253,Entrepreneur,16568.425,1550.702083,5,1358,18,1,Payday Loan,15.15822095,,3.56,5,Standard,478.11,22.28596811,29 Years and 5 Months,No,8.474085559,143.7430832,Low_spent_Small_value_payments,292.8530395,0,1.6643,0.5683,0.5255,-0.7843,0.3998 -0x2c59,CUS_0xac39,August,30,208-42-4255,Writer,14952.03,,10,8,22.88954781,9,"Payday Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",,25,17.2,12,_,3566.21,26.18162101,4 Years and 6 Months,Yes,1429.067058,193.434203,Low_spent_Small_value_payments,117.6689078,0,2.4516,0.3986,0.1754,0.2666,0.911 -0x2c65,CUS_0x448c,August,20,028-69-9480,Mechanic,101500.92,,4,6,14,2,"Payday Loan, and Personal Loan",31.40299362,20.40346664,13.37,6,Standard,948.6254313,44.15624757,15 Years and 9 Months,Yes,141.5457062,,High_spent_Large_value_payments,857.3503599,0,0.2463,0.9084,-0.298,-1.5306,-3.011 -0x2c71,CUS_0x2719,August,44,994-82-7635,Engineer,155726.76,12817.23,2,3,8,0,,0,1.122151878,7.33,7,Good,1287.733153,38.93744171,30 Years and 6 Months,NM,0,223.0059743,High_spent_Medium_value_payments,1308.717026,0,-1.5905,0.2284,0.6433,0.2073,-0.1335 -0x2c7d,CUS_0x76d4,August,47,528-44-7056,Entrepreneur,36591.25,,7,5,5,4,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",11.88906285,10,7.12,5,Standard,575.21,40.07251843,,No,67.41331375,131.2019115,High_spent_Small_value_payments,372.911858,0,0.7403,0.8844,-0.7823,0.2334,0.4843 -0x2c89,CUS_0xae79,August,51,141-97-1553,Media_Manager,47280.76,3713.063333,5,3,17,0,,24.45433283,20,11.91,3,Standard,1134.41,27.17885848,27 Years and 8 Months,Yes,0,97.9244167,High_spent_Small_value_payments,533.3819166,0,-1.0641,0.2712,0.9508,0.1411,-0.2144 -0x2c95,CUS_0x695e,August,39,319-71-0111,Doctor,108161.7,,5,6,1,2,"Student Loan, and Debt Consolidation Loan",19.04349445,13,6.16,4,Good,556.2417616,25.24733801,25 Years and 3 Months,No,169.6742678,,Low_spent_Large_value_payments,301.4453115,0,0.1801,-2.2475,-0.4771,-1.5577,-1.1641 -0x2ca1,CUS_0x1b41,August,39,521-24-8234,Engineer,19910.51,,9,10,16.06745738,5,"Home Equity Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",,24,,16,Bad,4180.420954,32.62794813,6 Years and 2 Months,Yes,57.67071368,23.60906901,High_spent_Large_value_payments,294.220846,0,-0.0338,-0.3643,-1.0454,0.4507,-0.0692 -0x2cad,CUS_0x75b1,August,31,774-41-3721,Entrepreneur,41977.78,3362.148333,8,9,31.88954781,6,"Auto Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,25,19.89,11,_,4586.12,35.38900442,2 Years and 2 Months,Yes,1495.291965,33.77850179,High_spent_Large_value_payments,352.814285,0,0.9299,-1.0395,-2.0172,-0.3715,-0.1721 -0x2cb9,CUS_0x11d1,August,25,#F%$D@*&8,Mechanic,11731.585,,8,3,6,2,"Credit-Builder Loan, and Student Loan",,,7.48,2,_,289.73,27.50740452,19 Years and 2 Months,Yes,15.35969679,32.77784632,Low_spent_Medium_value_payments,314.7256652,0,0.6484,0.0355,-0.7445,-0.6486,0.3931 -0x2cc5,CUS_0x278b,August,37,190-83-1891,Musician,88406.34,7113.195,2,7,2865,4,"Home Equity Loan, Not Specified, Personal Loan, and Payday Loan",,0,4.06,3,Good,1273.15,26.06492336,,No,242.2368498,457.1300767,Low_spent_Medium_value_payments,291.9525734,0,-0.6071,-0.6543,0.4211,0.7083,-0.5416 -0x2cd1,CUS_0xed3,August,30,828-88-6721,Developer,36035.32,2910.943333,10,10,23.95700519,100,"Credit-Builder Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",,17,16.47,8,Standard,2362.010954,27.1519052,7 Years and 6 Months,NM,1403.461285,,Low_spent_Large_value_payments,218.4415238,0,0.5794,-0.52,0.8599,1.0328,-1.9325 -0x2cdd,CUS_0x1f96,August,30,613-68-3100,Architect,113383.14,9321.595,1,4,5.288361749,4,"Student Loan, Auto Loan, Payday Loan, and Student Loan",,1,3.4,0,Good,73.69215715,25.26102042,17 Years and 10 Months,No,376.5597009,1354.440625,Low_spent_Large_value_payments,,0,-0.6613,-0.0568,0.2299,0.2314,1.6708 -0x2ce9,CUS_0x3ea1,August,45,084-97-6761,Writer,51552.6,4413.05,6,4,18,3,"Debt Consolidation Loan, Student Loan, and Mortgage Loan",9.372993069,10,24.86,6,Standard,1710.66,38.03173146,14 Years and 10 Months,Yes,119.8552501,248.2811171,High_spent_Small_value_payments,333.1686327,0,0.2159,0.6257,-1.1277,-1.2801,-1.2656 -0x2cf5,CUS_0x5624,August,36,006-46-7211,Developer,39579.6,,6,5,10,6,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,13,17.69,5,Standard,634.77,34.1472461,17 Years and 0 Months,Yes,127.9403988,,Low_spent_Large_value_payments,165.0306491,0,0.0059,-1.0204,1.2928,0.5144,1.3287 -0x2d01,CUS_0x5719,August,28,196-15-9535,Writer,41342.86,,8,3,18,4,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",23.74198214,19,13.73,8,_,262.96,34.55261013,,Yes,211.6741306,,Low_spent_Small_value_payments,92.63458876,0,-0.027,1.0751,-0.1105,-2.0292,-1.3236 -0x2d0d,CUS_0x136b,August,45,444-16-2415,Writer,120260.2,9904.683333,4,5,14,1,Mortgage Loan,,17.00239466,18.5,2,Standard,1577.661031,42.63930533,21 Years and 0 Months,Yes,53.15512272,239.1609633,Low_spent_Large_value_payments,968.1522473,0,-0.173,0.9394,-0.241,-1.0277,-0.0475 -0x2d19,CUS_0x122c,August,48,883-73-9594,Entrepreneur,36346.13,,8,6,11,3,"Credit-Builder Loan, Home Equity Loan, and Auto Loan",,15,10.54,4,Good,1252.46,28.06670356,22 Years and 2 Months,NM,89.06155404,110.5097025,High_spent_Medium_value_payments,369.3131601,0,-1.0022,0.0602,0.044,-0.4451,-1.5506 -0x2d25,CUS_0x41cc,August,40,823-14-2329,Accountant,25399.68,,4,4,9,3,"Personal Loan, Mortgage Loan, and Home Equity Loan",19.70765404,,21.99,11,_,1495.03,24.57898605,,Yes,61.00343611,47.78383501,High_spent_Medium_value_payments,353.6767289,0,1.3207,1.4646,-2.239,-0.2954,0.5948 -0x2d31,CUS_0x36c7,August,46,136-53-7387,Scientist,51307.1,,8,6,4195,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,14,9.95,5,Standard,878.19,33.71405243,32 Years and 5 Months,NM,49489,73.56000699,High_spent_Medium_value_payments,556.6551312,0,1.1127,0.3438,-0.7129,1.3367,-1.3559 -0x2d3d,CUS_0x143c,August,35,422-18-4190,Accountant,18578.88,1325.113473,1,3,1,100,"Auto Loan, Credit-Builder Loan, and Auto Loan",13.67798037,12,11.87,5,Good,779.49,39.53251722,31 Years and 6 Months,NM,140.106865,76.61359044,Low_spent_Small_value_payments,317.0300711,0,0.1211,1.3598,-0.6405,-0.1509,-0.7735 -0x2d49,CUS_0x4e5,August,80,210-46-4512,Media_Manager,68332.08,5053.718541,6,5,34,7,"Home Equity Loan, Credit-Builder Loan, Payday Loan, Student Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",12.49095994,8,19.29,9,Standard,1462.7,31.38119542,16 Years and 8 Months,Yes,771.0660362,,Low_spent_Large_value_payments,162.8604269,0,0.0313,1.0227,-0.3292,-0.2194,0.3122 -0x2d55,CUS_0x68b5,August,32,112-61-4889,Journalist,12303.09,,6,3,9,3,"Payday Loan, Student Loan, and Payday Loan",21.56751793,16,17.06,5,Standard,1328.11,31.8322648,18 Years and 9 Months,NM,26.76360717,84.04253415,!@9#%8,303.5196087,0,1.6193,-2.2064,-1.5923,0.8331,-0.3685 -0x2d61,CUS_0xc055,August,26,600-94-2851,Developer,35118.1,3113.508333,5,7,6,3,"Home Equity Loan, Payday Loan, and Personal Loan",20.61563442,13,12.7,8,_,407.74,26.44151506,32 Years and 8 Months,Yes,45.18912916,118.5631996,High_spent_Medium_value_payments,397.5985046,0,-1.7096,1.468,-2.0924,0.3039,-0.3637 -0x2d6d,CUS_0x3069,August,41,916-30-5005,Manager,64057.72,5082.143333,2,5,7.288361749,0,Mortgage Loan,,2,11.91,3,Good,698.5043834,31.966151,,No,35.01370052,695.1020218,High_spent_Small_value_payments,488.0599111,0,-0.9434,-0.5564,-1.3043,-0.4833,-3.1984 -0x2d79,CUS_0x8484,August,39,194-77-9351,Lawyer,44390.76,3586.23,4,6,12,6,"Auto Loan, Auto Loan, Payday Loan, Student Loan, Payday Loan, and Not Specified",17.34216794,13,15.01,7,_,22.77758027,27.45952004,17 Years and 9 Months,Yes,153.7243187,,High_spent_Medium_value_payments,365.7620674,0,1.5873,-0.4837,-0.3145,-0.8785,0.6766 -0x2d85,CUS_0x4038,August,19,983-48-0825,Architect,37807.28,2933.606667,1,2,3.288361749,2,"Personal Loan, and Debt Consolidation Loan",3.810078126,7,2.05,3,Good,108.85,24.03540536,20 Years and 8 Months,No,62.47570432,563.7428448,High_spent_Small_value_payments,347.0795785,0,-0.4,0.2645,0.2413,0.1441,0.644 -0x2d91,CUS_0x9dc3,August,20,698-31-2770,Manager,59154.04,,2,5,8,1,Payday Loan,18.09871004,,11.4,4,Good,1346.13,31.41822521,22 Years and 4 Months,No,10306,173.2666753,!@9#%8,503.328098,0,0.5112,-0.8132,0.7431,-0.9693,-1.6934 -0x2d9d,CUS_0xc64e,August,28,238-79-7321,Musician,41155.22,,10,10,17.88954781,6,"Payday Loan, Personal Loan, Personal Loan, Student Loan, Not Specified, and Student Loan",,21.29880741,24.4,7,Bad,4068.81781,21.82315121,5 Years and 8 Months,Yes,1802.744684,255.2793522,Low_spent_Small_value_payments,160.6275562,0,-1.286,0.596,0.2107,0.0196,-0.2776 -0x2da9,CUS_0x2451,August,27,#F%$D@*&8,Teacher,15610.61,1350.884167,6,10,29.95700519,9,"Auto Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Student Loan, Payday Loan, Credit-Builder Loan, Not Specified, and Personal Loan",,28.94299022,1.5,13,Bad,2488.423261,31.12400547,15 Years and 6 Months,NM,1401.628529,,High_spent_Large_value_payments,238.2592091,0,0.3177,0.3948,-2.5193,1.3407,0.8384 -0x2db5,CUS_0x86be,August,48,776-18-7804,Writer,35670.66,,1,7,6,0,,,8.39183176,3.16,8,_,1490.516116,35.67292602,,No,0,124.4701737,Low_spent_Small_value_payments,473.5853263,0,0.7968,0.272,-0.9569,-1.3147,-0.0964 -0x2dc1,CUS_0x2db4,August,28,893-15-4685,Doctor,28128.16,2337.013333,7,7,24,2,"Student Loan, and Personal Loan",,28.51226472,,794,Bad,2768.311757,29.13769118,15 Years and 8 Months,Yes,36.90754696,32.07526056,High_spent_Large_value_payments,404.7185258,0,-0.6777,-0.3473,1.3635,-0.3754,0.7041 -0x2dcd,CUS_0x6902,August,80,845-47-0164,Writer,48144.78,3994.065,7,6,29.06745738,6,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,23.85654463,4.59,7,Bad,3825.954571,38.41079519,7 Years and 6 Months,Yes,217.2670403,10000,Low_spent_Small_value_payments,,0,-0.0714,0.4641,-0.0835,-0.3209,0.7852 -0x2dd9,CUS_0x69ff,August,43,020-79-5434,Writer,32178.74,,10,6,21,6,"Auto Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Personal Loan, and Student Loan",19.41238252,9,14.15,9,Standard,2165.47,34.28451896,12 Years and 5 Months,Yes,211.055548,162.8678661,High_spent_Small_value_payments,244.7425559,0,0.7866,0.6857,1.5506,0.6198,-0.1848 -0x2de5,CUS_0xaec2,August,26,218-53-0203,Writer,17445.15,,7,9,27.06745738,3,"Credit-Builder Loan, Student Loan, and Auto Loan",27.7754091,,19.76,12,Standard,2813.032576,25.69332549,18 Years and 6 Months,Yes,86.35931777,33.45101361,Low_spent_Medium_value_payments,307.172421,0,-0.2577,-0.5898,-0.5346,-1.6837,0.9672 -0x2df1,CUS_0x963,August,34,805-51-1173,Mechanic,20522.13,,4,5,5,3,"Personal Loan, Student Loan, and Not Specified",18.95183657,13,9.19,12,Standard,233.67,39.75602538,19 Years and 0 Months,Yes,36.33994205,160.1485801,Low_spent_Small_value_payments,239.7292278,0,2.0785,1.0028,-0.6594,1.5336,0.204 -0x2dfd,CUS_0x609f,August,18,167-60-0326,Entrepreneur,61654.84,5175.903333,5,7,9,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Student Loan",,12,13.87,5,Standard,741.7,25.05330445,13 Years and 3 Months,Yes,192.6269519,196.9672725,High_spent_Medium_value_payments,377.9961089,0,-0.274,0.4605,-0.5222,0.0161,-1.2322 -0x2e09,CUS_0x4236,August,57,114-87-5312,Media_Manager,20703.48,,3,6,2,1,Debt Consolidation Loan,4.866355544,7,8.57,7,Good,880.5068037,34.98067492,,No,45117,144.3834128,Low_spent_Large_value_payments,306.5698393,0,0.0427,-0.0154,-0.5038,0.2182,0.5992 -0x2e15,CUS_0x1680,August,28,385-98-7605,Doctor,8022.255,762.52125,10,10,23.88954781,6,"Credit-Builder Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Payday Loan",38.37499979,18.1836098,5.67,7,Bad,3684.548145,34.14274293,8 Years and 4 Months,Yes,1362.992768,75.12230988,Low_spent_Medium_value_payments,223.8069659,0,0.0766,-0.5658,0.1337,-1.0653,0.233 -0x2e21,CUS_0x3231,August,44,408-03-6761,Doctor,36717.63,2872.8025,5,4,19,100,"Credit-Builder Loan, Student Loan, Auto Loan, and Home Equity Loan",17.34584016,12,7.05,3,Standard,1456.01,34.15204977,31 Years and 9 Months,Yes,96.66168931,35.47265329,High_spent_Medium_value_payments,405.1459074,0,-0.8145,0.0715,1.0279,0.2755,0.4755 -0x2e2d,CUS_0xb87a,August,80,271-91-2987,Mechanic,35469.07,,4,5,6,0,,,8,-2.37,4,Good,545.48,24.74960835,,No,0,,High_spent_Medium_value_payments,481.8404628,0,0.3792,-0.9582,-0.6179,2.103,0.6677 -0x2e39,CUS_0xb271,August,41,952-44-3434,_______,19519.57,,6,6,20.06745738,2,"Mortgage Loan, and Personal Loan",26.12025259,16,9.92,11,_,2448.590954,24.11617562,18 Years and 10 Months,Yes,25.76088134,163.4829672,Low_spent_Small_value_payments,263.3989468,0,1.1154,0.0019,-1.1532,-1.7495,-1.1628 -0x2e45,CUS_0x904,August,23,131-53-7682,Architect,35926.76,,10,7,28,6,"Payday Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Student Loan, and Home Equity Loan",15.62125812,9.447672875,16.29,13,_,1855.423863,25.83444595,11 Years and 10 Months,Yes,168.3513637,,High_spent_Medium_value_payments,245.3431285,0,0.1899,0.0888,0.3391,-1.2235,-0.9649 -0x2e51,CUS_0x8974,August,22,263-28-2833,Writer,134150,,4,3,10,2,"Payday Loan, and Not Specified",0,1,1.51,5,Good,1295.2,31.66734349,16 Years and 3 Months,No,201.7341928,287.4382703,High_spent_Small_value_payments,859.4442036,0,0.3623,0.151,0.4289,0.3185,0.4253 -0x2e5d,CUS_0x9e28,August,43,#F%$D@*&8,_______,34204.8,,10,5,18.06745738,6,"Payday Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",34.70647368,21.63618958,15.52,14,Bad,3979.575542,33.8448261,1 Years and 10 Months,Yes,106.9973142,50.40527363,High_spent_Small_value_payments,348.4171242,0,0.4622,-0.2702,0.2225,1.2745,1.8843 -0x2e69,CUS_0x90cb,August,31,075-55-7838,Developer,56131.48,4946.623333,0,4,10,4,"Student Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",5.92258117,6,10.1,3,_,1235.48,36.78641343,24 Years and 10 Months,NM,141.986536,99.71655761,!@9#%8,502.9592397,0,0.3284,-1.2404,-0.1451,-0.9624,-1.1136 -0x2e75,CUS_0x466e,August,28,143-82-0061,Musician,57439.12,,4,6,6,4,"Personal Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",16.04673414,,,4,Good,769.5055066,39.67062038,21 Years and 3 Months,No,187.9561102,85.04722128,High_spent_Medium_value_payments,435.6560019,0,0.9325,-1.1786,0.3673,0.3657,-0.5368 -0x2e81,CUS_0x666a,August,36,#F%$D@*&8,Architect,39944.67,3318.7225,4,3,6.288361749,0,Personal Loan,0,0,8.34,1,Good,333.6911892,31.11437212,16 Years and 4 Months,NM,22.37777689,708.3476499,Low_spent_Large_value_payments,324.5099547,0,-0.6024,0.5523,1.7404,-1.4525,2.5107 -0x2e8d,CUS_0x1a5a,August,36,225-82-5288,Lawyer,32485.42,,3,6,7,0,,19.54737752,,0.92,2,Standard,998.9,39.41216622,33 Years and 5 Months,No,0,56.18353882,High_spent_Large_value_payments,428.9282945,0,-0.1083,-1.7457,1.2683,0.8608,0.4477 -0x2e99,CUS_0xa0b,August,19,440-85-2711,Writer,70286.6,,8,10,25.88954781,6,"Not Specified, Personal Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Mortgage Loan",,22.85151857,8.72,7,Bad,1751.22023,27.53883892,9 Years and 11 Months,Yes,1528.825879,315.1823091,Low_spent_Large_value_payments,303.483397,0,-0.7098,-0.0338,0.7151,1.3756,0.0091 -0x2ea5,CUS_0x9784,August,40,593-49-0431,Journalist,16808.32,,0,7,10,2,"Home Equity Loan, and Mortgage Loan",0,0,8.67,3,Good,520.5482215,37.44931808,17 Years and 4 Months,No,18.78963603,86.91847859,Low_spent_Large_value_payments,302.1798736,0,1.6821,0.0318,-0.9519,1.5099,0.8354 -0x2eb1,CUS_0x627e,August,31,721-96-8087,Mechanic,72116.25,5886.6875,4,7,9,2,"Payday Loan, and Auto Loan",,13,5.06,8,Standard,243.75,36.90266609,18 Years and 10 Months,No,76.87560726,,Low_spent_Small_value_payments,179.4117853,0,1.3279,0.6315,-0.8138,0.2434,-0.5448 -0x2ebd,CUS_0x1325,August,27,918-42-0845,Accountant,35823.96,,6,547,23.06745738,5,"Not Specified, Personal Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",28.85698177,17,7.35,8,Bad,3253.330954,32.59047464,9 Years and 9 Months,Yes,112.4357847,148.5160712,High_spent_Small_value_payments,266.0608562,0,0.7542,1.1187,-0.733,0.3408,1.6225 -0x2ec9,CUS_0x6732,August,50,060-69-0738,Journalist,140390.32,11888.19333,5,2,3.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Payday Loan",0,0,4.67,6,Good,1296.331194,37.70020734,31 Years and 3 Months,No,182.1604238,1408.176236,Low_spent_Large_value_payments,393.7139579,0,-0.0798,-0.1031,-0.563,-0.4846,0.7639 -0x2ed5,CUS_0x5ce6,August,27,206-71-5245,Lawyer,25198.19,,3,6,19,3,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,10.63758251,5.83,7,Standard,1393.31114,39.018013,17 Years and 5 Months,Yes,48.63721777,68.8034466,Low_spent_Medium_value_payments,397.3442523,0,-1.0803,-0.6776,0.1056,-1.7666,-1.5499 -0x2ee1,CUS_0x2fe4,August,32,284-09-4067,Accountant,166907.72,,5,5,11,4,"Auto Loan, Mortgage Loan, Personal Loan, and Student Loan",,6,-0.48,4,Good,929.9,38.26095503,17 Years and 9 Months,No,509.357624,464.4698727,Low_spent_Medium_value_payments,685.0701699,0,2.2332,-0.7414,-0.8117,0.7733,-0.9713 -0x2eed,CUS_0x393f,August,18,834-67-8369,Musician,15531.09,1133.2575,1434,5,23.06745738,5,"Personal Loan, Not Specified, Credit-Builder Loan, Auto Loan, and Not Specified",33.23408751,22.76850186,7.26,8,Bad,5476.103079,30.66646643,14 Years and 6 Months,Yes,41.74227149,93.31520142,Low_spent_Small_value_payments,241.5479891,0,1.132,-0.0657,0.7377,0.0157,-2.5873 -0x2ef9,CUS_0x4354,August,18,895-48-7601,Entrepreneur,81935.42,6867.951667,5,4,9,1,Home Equity Loan,11.25367795,12,5.36,7,Good,625.32,37.97632331,21 Years and 9 Months,No,66.45771045,136.443584,High_spent_Large_value_payments,723.8938722,0,2.0996,0.8683,-1.2628,1.849,-1.0984 -0x2f05,CUS_0xaf3b,August,18,550-07-9471,Lawyer,14675.83,1330.985833,6,3,13.06745738,7,"Credit-Builder Loan, Personal Loan, Not Specified, Not Specified, Personal Loan, Credit-Builder Loan, and Mortgage Loan",21.82745884,,12.12,6,_,1650.970954,28.85681695,12 Years and 10 Months,NM,84.00410322,,Low_spent_Small_value_payments,156.8772012,0,0.1014,-0.3915,1.384,-0.2609,-1.9002 -0x2f11,CUS_0xaf75,August,44,210-64-7351,Architect,9197.37,,8,6,15,2,"Payday Loan, and Credit-Builder Loan",,9.415503337,19.31,11,Standard,1410.676921,34.45521089,19 Years and 5 Months,Yes,14.15012457,105.7136556,Low_spent_Small_value_payments,249.2809699,0,-1.0451,0.0367,-0.659,0.0087,0.9537 -0x2f1d,CUS_0x40e6,August,43,539-46-2692,Accountant,20492.45,,0,7,2,1,Mortgage Loan,0,0,11.69,4,Good,429.71,25.55208525,26 Years and 0 Months,No,13.23985241,82.46763923,Low_spent_Large_value_payments,327.762925,0,-0.5709,0.1247,1.3084,0.1811,-0.6459 -0x2f29,CUS_0x5c2,August,80,554-33-7055,Developer,27242.8,2434.233333,5,4,15,6,"Payday Loan, Mortgage Loan, Not Specified, Personal Loan, Not Specified, and Home Equity Loan",23.08869062,18,19.5,7,Standard,881.36,30.54165609,17 Years and 4 Months,Yes,73.81546182,,Low_spent_Medium_value_payments,231.7115396,0,-1.7213,-0.2118,-0.3342,0.9512,-0.6695 -0x2f35,CUS_0x2f6c,August,34,308-92-6427,Musician,81411.2,6537.266667,5,5,5.288361749,0,Home Equity Loan,0,2,5.48,5,Good,409.9460884,41.31567294,28 Years and 11 Months,No,42.52959454,561.9265523,High_spent_Medium_value_payments,732.7105314,0,0.6088,-0.5586,-0.4577,-0.3383,0.3226 -0x2f41,CUS_0x6b42,August,26,471-99-1392,Media_Manager,18503.85,,3,7,15,7,"Payday Loan, Home Equity Loan, Payday Loan, Payday Loan, Payday Loan, Mortgage Loan, and Payday Loan",14.53272494,8.403836082,11.33,8,Standard,803.4058531,30.86433593,16 Years and 6 Months,Yes,77.24096385,,High_spent_Small_value_payments,262.2717298,0,0.9475,-1.0791,-1.0973,-0.9295,-1.4339 -0x2f4d,CUS_0x55bd,August,42,024-80-3561,Doctor,105521.58,,4,6,4.288361749,4,"Mortgage Loan, Student Loan, Payday Loan, and Student Loan",25.46305062,21.25564589,7.07,8,_,515.3349973,31.61693136,22 Years and 10 Months,Yes,224.5107863,813.9926555,Low_spent_Medium_value_payments,520.9805192,0,0.6908,0.2795,1.0876,1.9533,-0.7604 -0x2f59,CUS_0xb68f,August,24,#F%$D@*&8,Scientist,17855.94,,8,5,32.06745738,8,"Auto Loan, Credit-Builder Loan, Student Loan, Auto Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,26.94479733,29.19,12,Bad,3813.614246,33.71703909,1 Years and 11 Months,NM,89.15181924,,Low_spent_Medium_value_payments,243.4305384,0,-0.7325,0.4234,-0.2604,1.1839,-0.0329 -0x2f65,CUS_0x27fb,August,40,410-50-2849,Manager,78477.18,6412.765,4,5,16,2,"Auto Loan, and Credit-Builder Loan",19.61654241,18,7.35,1,_,1197.91,27.95107523,24 Years and 9 Months,Yes,123.3175868,,High_spent_Large_value_payments,601.097076,0,0.8352,-0.0636,-1.7028,0.764,-1.036 -0x2f71,CUS_0x7245,August,40,317-82-2638,_______,32901.79,2549.815833,980,5,1,1,Mortgage Loan,,9,5.89,0,_,734.1768218,39.54875066,26 Years and 6 Months,No,19.32408143,62.67698943,High_spent_Large_value_payments,419.789513,0,0.1624,-2.8298,-0.1843,0.6864,-1.9237 -0x2f7d,CUS_0x232d,August,48,330-34-5249,Engineer,73031.58,5912.965,7,4,6,2,"Debt Consolidation Loan, and Credit-Builder Loan",,15,,2,_,997.98,40.87394361,22 Years and 3 Months,No,63.30446282,84.37969498,High_spent_Medium_value_payments,693.6123422,0,-1.0002,2.3868,-0.0062,-0.1532,0.8827 -0x2f89,CUS_0x53e2,August,46,545-02-2729,Media_Manager,35235.18,3188.265,8,9,16.06745738,3,"Auto Loan, Student Loan, and Payday Loan",24.98242048,15,10.3,8,Bad,2612.260954,27.42304267,16 Years and 8 Months,Yes,57.68531871,229.2180326,Low_spent_Large_value_payments,275.2028607,0,-0.1717,1.7554,-1.0976,-0.6673,-0.3957 -0x2f95,CUS_0x93f5,August,45,513-95-5849,Media_Manager,66881.2,,3,5,17,2,"Payday Loan, and Home Equity Loan",25.51382434,19,,4,Standard,240.6,37.29561773,14 Years and 0 Months,Yes,56.7939601,,Low_spent_Small_value_payments,29.25362009,0,-2.5699,-1.2409,-1.2496,-0.9152,-0.363 -0x2fa1,CUS_0x458f,August,41,711-94-5541,Accountant,14535.105,,1,7,3,2,"Debt Consolidation Loan, and Credit-Builder Loan",90,3539,6.63,2,Good,65.1184642,29.53313077,25 Years and 8 Months,No,15.77502673,,Low_spent_Small_value_payments,242.251946,0,-0.5012,0.7163,1.2633,2.2789,-0.0695 -0x2fad,CUS_0xc41e,August,19,970-98-2322,Media_Manager,10119.76,,10,6,31,4,"Mortgage Loan, Not Specified, Student Loan, and Not Specified",,27.98219771,0.16,13,Bad,1556.723006,35.45632183,15 Years and 8 Months,Yes,18.93990492,,High_spent_Small_value_payments,300.6934587,0,0.6519,-1.9213,-0.851,0.4383,-0.3508 -0x2fb9,CUS_0xa77e,August,35,959-67-2735,Doctor,19787.4,,6,6,23.06745738,6,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",23.57167424,15,16.58,13,Bad,3322.980954,39.87052206,,NM,18081,,Low_spent_Small_value_payments,210.2963925,0,0.5436,1.2909,-1.6242,-1.7162,0.1971 -0x2fc5,CUS_0xbf55,August,38,293-42-1972,Journalist,16893.44,1567.786667,6,9,26.06745738,3,"Payday Loan, Mortgage Loan, and Student Loan",39.19436482,17.93239908,7.98,14,Standard,1803.27987,26.42767665,15 Years and 0 Months,Yes,32.22238767,67.30750885,Low_spent_Small_value_payments,320.5284822,0,0.43,1.2113,-0.7825,-0.3355,-0.6405 -0x2fd1,CUS_0x6bb2,August,19,462-73-7328,Lawyer,21791.905,1871.992083,2,3,8.288361749,0,Debt Consolidation Loan,0,3,1.76,1,Good,152.4227715,28.31283737,20 Years and 5 Months,No,11.55616488,488.259067,High_spent_Medium_value_payments,365.5477019,0,-0.493,-0.9964,0.6965,-0.0107,-0.5701 -0x2fdd,CUS_0x7f63,August,19,717-43-8628,Scientist,77854.26,6411.855,3,4,11,2,"Personal Loan, and Student Loan",10.34682907,11,1.3,,_,1220.31,32.96390812,22 Years and 6 Months,No,92.70772269,,Low_spent_Medium_value_payments,245.5867027,0,1.7575,1.1767,-0.0419,0.7312,-0.5458 -0x2fe9,CUS_0x3bb6,August,39,763-62-0069,Media_Manager,99802.48,8244.873333,4,3,17,4,"Mortgage Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",90,3684,5.27,0,_,248.48,39.34672057,25 Years and 11 Months,No,210.4580591,539.4644822,Low_spent_Medium_value_payments,354.5647919,0,-0.6801,-0.0064,0.049,-0.5889,-0.5279 -0x2ff5,CUS_0xbf7f,August,59,396-11-5916,Engineer,108491.28,9272.94,4,5,6,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,17,5.94,5,Standard,864.0677097,37.93563326,,No,238.4736978,194.0429534,High_spent_Large_value_payments,760.7648669,0,-0.5188,1.5692,-0.7316,2.1712,-0.8906 -0x3001,CUS_0xc5da,August,39,515-92-4820,Developer,14021.57,1145.464167,10,10,21.88954781,6,"Not Specified, Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",25.54849251,17,15.8,11,_,3889.88,33.21698211,8 Years and 11 Months,Yes,1360.562715,73.16460044,Low_spent_Medium_value_payments,266.4890195,0,-0.4674,-0.5107,0.1594,-0.8562,-0.8565 -0x300d,CUS_0xc90,August,45,240-36-3542,Musician,76391.48,,1,4,10,2,"Personal Loan, and Auto Loan",8.264354823,5,1.77,4,Good,614.83,24.81403246,24 Years and 9 Months,No,75.81024104,,Low_spent_Small_value_payments,76.49729763,0,-0.0419,-1.357,0.5593,0.4709,-1.1523 -0x3019,CUS_0x719f,August,23,380-45-5656,Architect,13486.615,,8,6,7.288361749,2,"Debt Consolidation Loan, and Payday Loan",,10,11.26,1,Good,40.86473545,28.08565964,19 Years and 0 Months,No,14.72466165,518.4179638,Low_spent_Medium_value_payments,278.0736339,0,0.8085,-1.2431,1.3133,-1.0722,-1.8347 -0x3025,CUS_0x7738,August,54,266-30-9595,Developer,15154025,2632.08,0,5,10,3,"Home Equity Loan, Home Equity Loan, and Home Equity Loan",,7,6.19,4,Good,344.4,37.08569552,27 Years and 10 Months,No,74.63775566,142.4917079,Low_spent_Small_value_payments,336.0785364,0,1.0114,-1.4774,0.5573,-1.8326,0.5737 -0x3031,CUS_0x82fa,August,18,146-30-8816,_______,35603.8,,6,6,31.06745738,100,"Auto Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Payday Loan, and Personal Loan",31.2361209,17,22.12,12,Bad,4264.850954,28.76800846,1 Years and 9 Months,Yes,2082,137.1809027,Low_spent_Large_value_payments,268.4526499,0,-0.463,0.1189,-0.6656,0.1,-0.3886 -0x303d,CUS_0x4c90,August,43,038-10-9709,Developer,32414.26,,7,5,20,2,"Credit-Builder Loan, and Mortgage Loan",22.78241646,19,15.28,5,Standard,695.61,31.58077827,,Yes,34.31805817,129.4602812,High_spent_Small_value_payments,371.140494,0,1.7336,-0.1455,-3.3541,-0.6044,-1.7781 -0x3049,CUS_0x13db,August,24,223-95-2140,Engineer,34601.35,,5,3,13.28836175,2,"Debt Consolidation Loan, and Home Equity Loan",14.54818129,,15.15,5,Standard,68.23,34.48430416,10 Years and 0 Months,Yes,30.1980497,,High_spent_Large_value_payments,448.3042962,0,-1.2817,0.2124,-1.2385,-1.1043,0.5795 -0x3055,CUS_0x3019,August,51,346-10-4963,Writer,99007.68,,7,7,8,100,,21.69971369,17,3.08,2,_,28.12644095,39.50943271,26 Years and 10 Months,No,0,533.3520601,High_spent_Small_value_payments,618.4837914,0,1.0088,-0.5089,-0.7538,1.1058,0.7311 -0x3061,CUS_0x425,August,45,846-76-3543,Lawyer,60572.7,4844.725,3,3,20,2,"Credit-Builder Loan, and Personal Loan",24.71043169,16,9.47,13,Standard,1582.55,28.99048977,10 Years and 8 Months,Yes,88.71604214,191.0682272,High_spent_Medium_value_payments,454.6882307,0,-1.3253,-1.2893,-2.2073,-0.0315,1.163 -0x306d,CUS_0x4a3f,August,46,618-70-2997,Media_Manager,14208.865,1365.072083,3,4,4,0,,,3,4.65,3,Good,524.4470714,26.04306004,32 Years and 8 Months,No,0,42.35410091,Low_spent_Large_value_payments,368.1604759,0,-0.3308,0.5342,-0.0293,0.5319,-0.7036 -0x3079,CUS_0x9e76,August,33,017-00-6207,Media_Manager,35836.84,2755.23154,4,6,18,3,"Auto Loan, Credit-Builder Loan, and Auto Loan",,17,3.66,4,Standard,1004.66,37.77664888,31 Years and 9 Months,No,161.0784854,41.68894876,High_spent_Medium_value_payments,443.9446926,0,1.756,-0.4312,-0.4433,0.3915,0.9239 -0x3085,CUS_0x9714,August,20,104-03-5360,Engineer,20083.06,,8,5,15,3,"Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,23.61205878,7.36,8,Bad,2716.788452,27.10140681,9 Years and 6 Months,Yes,33.81951909,30.02282939,High_spent_Medium_value_payments,371.8164849,0,1.4287,1.6278,0.2519,0.572,1.1755 -0x3091,CUS_0x6a8b,August,34,168-72-6945,Media_Manager,26150.38,2183.198333,5,7,10,4,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",17.7725509,,2.08,2,Good,316.19,37.93957225,31 Years and 0 Months,No,84.84866347,155.6960627,Low_spent_Large_value_payments,247.7751071,0,-0.4529,-0.5616,-1.3602,-0.2561,-0.3569 -0x309d,CUS_0x1739,August,42,569-88-9911,Scientist,14144.48,1206.706667,7,9,16,6,"Auto Loan, Payday Loan, Not Specified, Auto Loan, Home Equity Loan, and Payday Loan",30.1522172,21.34741826,4.93,17,Bad,2907.715076,29.74807419,,Yes,47.60616185,,Low_spent_Small_value_payments,321.2689527,0,0.2771,-0.7479,0.6817,-2.1502,-1.0364 -0x30a9,CUS_0xb90d,August,55,829-50-2241,Accountant,122008.59,,2,7,7,0,,,8,8.95,2,Good,375.592552,36.70787269,15 Years and 9 Months,NM,0,339.2124465,!@9#%8,969.7796619,0,0.6675,-0.154,2.2909,-1.3929,-1.3733 -0x30b5,CUS_0x2bfa,August,44,347-67-5972,Scientist,11956.285,,6,6,12.06745738,4,"Student Loan, Personal Loan, Auto Loan, and Auto Loan",19.15468486,12,19.75,7,Standard,1032.520954,36.87183366,17 Years and 11 Months,Yes,23.83840365,48.20028015,!@9#%8,303.9767366,0,-0.6127,-0.3517,-1.0458,1.6615,-0.6492 -0x30c1,CUS_0x6cc,August,39,948-41-6796,Lawyer,20949.58,1963.798333,4,5,8,1,Debt Consolidation Loan,22.70949379,15,16.25,6,Standard,486.48,27.63047123,19 Years and 4 Months,Yes,11.74975194,89.73066705,High_spent_Small_value_payments,354.8994143,0,-1.1133,0.6493,-0.8375,-1.2232,0.7287 -0x30cd,CUS_0xac81,August,34,211-79-7436,Mechanic,18096.155,,3,6,17.28836175,2,"Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",21.50694393,19,6.83,8,_,162.21,24.63737119,,Yes,34.09269976,456.2157274,Low_spent_Large_value_payments,333.4303255,0,-1.6298,-0.188,-0.355,0.4656,0.5298 -0x30d9,CUS_0x7a10,August,30,718-83-1207,Mechanic,37788.3,3097.025,3,4,9,2,"Debt Consolidation Loan, and Credit-Builder Loan",,1,1.4,8,Good,979.0726702,37.7587531,25 Years and 0 Months,No,39.65555387,112.7052807,High_spent_Medium_value_payments,423.2574976,0,0.6138,-0.3275,-0.4857,-0.5887,0.7545 -0x30e5,CUS_0xc6d8,August,34,150-35-9577,Developer,120955.92,,2,7,4,1,Not Specified,,9.464510554,5.96,8,Good,419.9020846,37.36814865,,No,57.50516925,241.9744007,High_spent_Large_value_payments,942.6864301,0,0.4058,-0.2406,0.2844,-0.1773,-0.3303 -0x30f1,CUS_0x5e52,August,20,960-03-0916,_______,27983.07,2497.9225,4,7,2,2,"Credit-Builder Loan, and Mortgage Loan",16.11750191,15,-1.64,2,Standard,1015.21,29.79949702,22 Years and 3 Months,No,44.40179012,,High_spent_Small_value_payments,293.7406997,0,0.621,0.9221,0.7597,-0.7809,1.5212 -0x30fd,CUS_0x868f,August,80,012-56-7252,Entrepreneur,56987.92,4626.993333,4,5,7,100,Auto Loan,1.677031284,6,15.07,4,Good,834.4639167,27.2191872,19 Years and 5 Months,No,25.65855794,116.7935065,High_spent_Small_value_payments,595.3062319,0,-0.14,-2.8067,-0.9225,0.8067,-1.0933 -0x3109,CUS_0x23b2,August,25,375-23-9321,Media_Manager,50552.34,4197.695,8,7,17,1,Home Equity Loan,19.64349185,12,14.42,6,_,829.97,26.56958596,32 Years and 10 Months,Yes,35.52119524,10000,Low_spent_Small_value_payments,149.431797,0,0.0498,-0.1013,1.2397,-0.2708,0.728 -0x3115,CUS_0xbd98,August,31,444-55-5653,Manager,16838.82,1398.235,10,8,19,9,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",,19,18.02,13,_,4347.3,25.86231049,1 Years and 2 Months,Yes,126.1141809,,Low_spent_Small_value_payments,192.1381411,0,-1.0839,0.8145,-0.4583,0.5918,-1.5632 -0x3121,CUS_0xd39,August,18,387-68-6000,_______,90592.02,,4,7,18,4,"Student Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",27.60105176,20,19.11,8,Standard,752.3400527,30.73950979,17 Years and 3 Months,Yes,154.432973,113.5706379,High_spent_Medium_value_payments,741.3842326,0,0.6022,-0.0893,0.2843,1.9481,-1.7589 -0x312d,CUS_0x687c,August,30,176-23-7608,Architect,29695.58,2601.631667,8,3,3,0,,15.40190743,15,7.46,3,Good,118.2822785,26.23530288,24 Years and 0 Months,No,0,53.82272918,High_spent_Large_value_payments,453.3881429,0,-0.5806,-0.9624,-0.5761,1.2235,1.3293 -0x3139,CUS_0xaf5f,August,22,512-99-1299,Scientist,85667.7,6966.975,2,412,7,0,,13.0951893,11,5.6,3,Good,1268.59759,29.69014935,21 Years and 8 Months,No,0,538.0812224,Low_spent_Large_value_payments,501.7374044,0,-0.2694,-2.4428,0.5566,-0.4173,-0.5729 -0x3145,CUS_0x17a9,August,39,034-95-8551,Musician,83386.52,7081.876667,10,6,24.06745738,7,"Student Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Payday Loan",,24,22.3,8,Bad,5195.810954,41.10251003,6 Years and 3 Months,Yes,482.1797832,126.2338047,High_spent_Large_value_payments,313.0537909,0,-0.2587,-1.6919,-0.7611,-0.8448,0.6794 -0x3151,CUS_0xb3c4,August,37,595-17-5745,Accountant,10299.565,712.2970833,5,9,28,2,"Auto Loan, and Not Specified",,19,8.5,8,Standard,1710.58,27.03331738,15 Years and 2 Months,Yes,8.72497059,69.00079643,Low_spent_Small_value_payments,283.5039413,0,0.2391,-0.6329,0.5491,0.3008,-1.8728 -0x315d,CUS_0x9b7d,August,24,635-93-9464,Lawyer,73871.92,,8,10,33.88954781,7,"Not Specified, Personal Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",19.08750546,14,10.6,15,Standard,2284.63,30.30869501,16 Years and 10 Months,Yes,2005.277873,160.0404757,High_spent_Large_value_payments,377.4021408,0,-0.0128,1.2147,0.7215,2.2764,0.7194 -0x3169,CUS_0xac51,August,23,918-69-9428,Teacher,29353.04,2282.086667,718,9,23,6,"Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",,27.78879323,6.06,10,Bad,2068.386697,23.1325988,17 Years and 10 Months,Yes,100.5391541,26.37872178,High_spent_Large_value_payments,341.2907908,0,1.9081,0.406,-0.0809,1.3767,0.4327 -0x3175,CUS_0x40de,August,80,436-89-7606,Journalist,43700.61,3574.7175,0,7,5,2,"Personal Loan, and Not Specified",,12,5.57,8,_,633.46,30.12992773,31 Years and 9 Months,NM,66.91752495,122.0920905,!@9#%8,418.4621346,0,-0.7837,-0.0625,0.233,-0.1609,-1.4525 -0x3181,CUS_0x951b,August,29,788-71-0922,Engineer,16471.35,1211.6125,3,8,21,4,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",19.75006371,17,15.77,15,Standard,1898.34,31.258252,14 Years and 0 Months,Yes,46.67344609,52.78275934,Low_spent_Small_value_payments,311.7050446,0,-0.2079,-0.3771,-1.1669,-0.0444,-0.6211 -0x318d,CUS_0xacb0,August,23,538-30-7231,Media_Manager,65187.34,5161.278333,6,6,8,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",11.13485182,9,5.38,1,Standard,441.86,38.09470621,20 Years and 6 Months,No,99.98202005,143.9847161,High_spent_Medium_value_payments,522.1610972,0,0.6461,-0.9976,-0.2932,2.211,-0.5246 -0x3199,CUS_0x472b,August,40,390-24-8662,Writer,29661.64,,6,6,11,100,"Auto Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",22.1108792,16,12.5,10,Standard,305.0571324,35.36105835,,Yes,114.1498903,67.48974357,High_spent_Large_value_payments,303.2732647,0,-0.1578,0.4463,-1.1368,0.8528,-1.5322 -0x31a5,CUS_0x7ce5,August,24,954-97-8593,Writer,101912.13,8503.6775,4,0,3.288361749,0,,0,3,4.83,2,_,136.5949421,41.59488792,20 Years and 6 Months,No,0,887.665853,!@9#%8,719.0940828,0,2.2582,-0.4409,0.1273,-1.2643,-2.1978 -0x31b1,CUS_0xa56d,August,40,299-50-2330,Architect,65454.42,5205.535,4,4,17,1,Credit-Builder Loan,,13.61528977,11.82,2,_,860.3142815,25.56665797,29 Years and 5 Months,Yes,28.01044946,273.2113291,Low_spent_Small_value_payments,509.3317214,0,-0.2878,0.7433,-2.4332,-0.1622,0.8077 -0x31bd,CUS_0xb486,August,43,567-72-5507,Mechanic,20397.26,1670.771667,4,4,7,2,"Personal Loan, and Personal Loan",14.57163756,11,11.16,8,_,2264.71,31.82433992,9 Years and 3 Months,Yes,19.38188173,49.16386057,High_spent_Small_value_payments,358.5314244,0,1.8385,0.4559,-0.3501,-0.0242,1.6019 -0x31c9,CUS_0x2a23,August,24,119-60-6278,_______,38760.82,,1,2,10.28836175,2,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",15.44764525,,6.74,4,Good,431.8239732,39.21402212,26 Years and 6 Months,No,84.51850714,843.8908151,Low_spent_Small_value_payments,167.7471962,0,-1.2608,0.2641,-0.9496,-0.4747,-0.2893 -0x31d5,CUS_0xdc0,August,38,344-18-7699,Architect,37131.02,3307.251667,5,7,7.288361749,0,Student Loan,0.182946554,4,10.3,7,Good,88,36.1922366,27 Years and 9 Months,No,16.72386795,830.7712131,Low_spent_Small_value_payments,193.1675466,0,-0.9266,0.0177,0.3658,-0.0533,1.3983 -0x31e1,CUS_0x956d,August,23,650-14-3043,Manager,140254.28,11655.85667,5,5,7,3,"Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",12.515181,12,6.7,4,Good,78.34991942,40.55517188,22 Years and 8 Months,No,210.8243793,411.3796715,!@9#%8,844.1195574,0,0.2482,-1.65,0.1048,-0.3254,-1.8118 -0x31ed,CUS_0x33b4,August,80,656-60-6101,Musician,21484.035,2073.33625,5,3,8,3,"Mortgage Loan, Personal Loan, and Mortgage Loan",21.6405208,13.04530427,1.08,9,Good,1078.219236,28.03013448,26 Years and 4 Months,No,33.15526655,128.222998,Low_spent_Small_value_payments,335.9553604,0,-0.9384,1.2428,2.5139,0.4731,-0.2913 -0x31f9,CUS_0x48ed,August,23,600-60-2322,Teacher,17750.19,1327.1825,10,10,28.88954781,7,"Student Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",29.61099889,21,28.47,15,Bad,4385.27,26.68041595,11 Years and 10 Months,Yes,1379.819218,50.53179274,Low_spent_Small_value_payments,298.0371581,0,-0.7688,-0.6361,1.7854,-0.2839,0.6116 -0x3205,CUS_0x8e53,August,36,494-42-3830,Media_Manager,21145.595,,2,7,4,1,Mortgage Loan,5.422979341,8.364898962,8.14,1,_,1061.25099,36.30944091,18 Years and 5 Months,No,12.66779399,10000,High_spent_Small_value_payments,303.4479943,0,-1.0517,-0.3007,-0.9501,-1.1344,-1.2871 -0x3211,CUS_0xad44,August,21,750-13-7289,Teacher,125491.64,,1,3,4.288361749,2,"Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",4.520453634,7,2.87,4,Good,507.8736058,33.96753864,18 Years and 6 Months,No,271.7366812,543.247847,!@9#%8,909.5940154,0,0.8805,0.1298,-0.3449,1.8588,0.0105 -0x321d,CUS_0xa9b4,August,36,533-99-1412,Developer,36722.84,2820.236667,6,5,9.288361749,4,"Personal Loan, Home Equity Loan, Mortgage Loan, and Personal Loan",9.624702649,10.91365498,11.68,3,_,464.3095633,32.79629969,15 Years and 9 Months,No,60941,,Low_spent_Small_value_payments,252.4148492,0,-0.5466,1.6833,-0.1793,-2.1926,0.4943 -0x3229,CUS_0x271e,August,28,171-21-9582,Musician,15687.44,1036.286667,6,4,21,4,"Auto Loan, Auto Loan, Auto Loan, and Not Specified",21.93245572,19,18.82,8,Standard,1943.08,30.55483299,10 Years and 6 Months,Yes,41.80302281,,Low_spent_Small_value_payments,235.6529712,0,-0.1277,0.9998,-2.3124,0.7261,0.8206 -0x3235,CUS_0x80f4,August,43,564-68-7608,Lawyer,7304.925,,7,8,33.06745738,8,"Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, Student Loan, and Personal Loan",34.42487508,20.32883652,24.07,9,Bad,5200.711926,26.57399193,10 Years and 0 Months,Yes,32.44151245,30.86413218,Low_spent_Medium_value_payments,268.0484424,0,0.1102,0.407,0.3746,-0.7392,0.8777 -0x3241,CUS_0x53e9,August,24,553-74-4119,Journalist,18921.78,,6,9,29.88954781,6,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Student Loan",27.92498683,18.34975386,21.7,14,Bad,5233.114537,29.29802505,14 Years and 8 Months,Yes,1372.302996,35.16609451,High_spent_Small_value_payments,298.5823278,0,-0.6669,-0.2687,0.4951,-0.6238,1.4185 -0x324d,CUS_0x406,August,33,473-73-3353,Architect,122942.28,,2,3,2.288361749,0,Mortgage Loan,1.145099305,4,4.88,4,Good,829.818682,31.48241487,,No,101.5679765,1334.850991,Low_spent_Medium_value_payments,377.1433997,0,0.0749,-1.7013,1.0654,-0.9117,0.4823 -0x3259,CUS_0x2cb1,August,26,231-72-1828,Engineer,42021.7,3386.808333,8,7,3,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Not Specified",15.73291913,12,10.93,4,Standard,271.56,34.81017664,23 Years and 8 Months,No,109.0173385,33.9468853,High_spent_Large_value_payments,435.7166096,0,-1.1477,-1.052,-0.0847,-1.2733,-0.5075 -0x3265,CUS_0x5f36,August,18,465-96-2216,Media_Manager,85915.32,7231.61,6,7,12.28836175,4,"Credit-Builder Loan, Mortgage Loan, Payday Loan, and Payday Loan",,20,15.51,6,Standard,429.12,26.00785709,5 Years and 9 Months,Yes,167.0814715,691.0491854,High_spent_Medium_value_payments,534.9678042,0,0.8328,0.2635,0.4246,0.8241,-1.4062 -0x3271,CUS_0x9493,August,29,902-37-5242,_______,142177.84,11947.15333,5,1,12,3,"Auto Loan, Student Loan, and Home Equity Loan",8.718844361,7,2.41,2,Good,483.13,27.67720898,,No,322.87608,,High_spent_Medium_value_payments,654.2251705,0,0.9861,-1.0762,1.3285,-1.2652,-1.1109 -0x327d,CUS_0xba20,August,47,025-60-8624,Teacher,27814.63,2061.885833,3,3,12,1,Debt Consolidation Loan,21.84713858,16.4358653,8.75,6,Good,472.101077,41.0776931,20 Years and 4 Months,No,13.57281164,104.1423676,High_spent_Small_value_payments,348.4734041,0,-0.5321,-0.532,-0.5429,2.0395,1.1575 -0x3289,CUS_0xc5d5,August,34,321-64-3872,Engineer,49995.18,4382.265,8,6,22,6,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Student Loan, and Student Loan",27.83615013,21.65776439,8.54,10,Bad,2025.897398,27.00650802,18 Years and 11 Months,Yes,148.0542618,,High_spent_Small_value_payments,259.1719768,0,-0.6293,-0.2593,1.135,1.0352,1.0237 -0x3295,CUS_0x864,August,30,610-69-9615,Teacher,34480.2,,7,4,5,0,,18.02003313,11,9.85,,_,398.91,38.51524387,17 Years and 5 Months,Yes,54970,,Low_spent_Medium_value_payments,351.7615052,0,-1.8428,0.5454,0.1529,-0.8513,-0.1691 -0x32a1,CUS_0x84da,August,55,107-35-4416,Doctor,130688.56,,0,2,2,0,,5.67638814,6,4.31,5,_,430.5544808,43.52885125,16 Years and 3 Months,No,0,409.7524054,High_spent_Medium_value_payments,992.850695,0,-1.2759,-0.9032,0.5067,0.0529,0.9308 -0x32ad,CUS_0x84a2,August,30,013-64-0379,Developer,15656.82,,8,10,18,6,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",30.76003762,18.33222521,0.88,14,Bad,2207.408561,29.91640763,14 Years and 3 Months,NM,51546,,Low_spent_Small_value_payments,243.9335011,0,-0.4286,-0.6642,1.6711,-0.8064,1.5858 -0x32b9,CUS_0x7e8b,August,18,683-00-7700,Engineer,30118.94,,6,6,35.06745738,3,"Payday Loan, Mortgage Loan, and Auto Loan",,26.7164701,12.16,15,Bad,2114.149063,29.85650196,18 Years and 10 Months,Yes,44.81642047,300.5319825,Low_spent_Small_value_payments,165.3224757,0,-0.3234,-0.9493,-0.7178,-0.654,-0.0862 -0x32c5,CUS_0x1145,August,26,426-31-9194,Teacher,17975.32,,6,5,33.06745738,9,"Student Loan, Payday Loan, Not Specified, Mortgage Loan, Home Equity Loan, Payday Loan, Payday Loan, Not Specified, and Credit-Builder Loan",,29.8869812,8.9,13,Bad,1622.082517,26.70510175,12 Years and 5 Months,Yes,76.45032459,,Low_spent_Small_value_payments,154.5475107,0,0.4061,-0.2997,0.3629,0.9613,2.0732 -0x32d1,CUS_0x70ee,August,52,268-70-7008,Writer,20871.42,1522.285,2,2,2,3,"Mortgage Loan, Home Equity Loan, and Payday Loan",1.186853329,2,9.87,4,Good,1177.09,26.00265791,17 Years and 6 Months,No,51.128519,35.44881368,High_spent_Small_value_payments,325.6511673,0,0.905,0.2038,0.9113,1.4235,0.9922 -0x32dd,CUS_0x756a,August,43,547-30-4387,Writer,30257.02,,10,6,34.06745738,5,"Payday Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",,25.47490968,14.83,14,Bad,3009.424786,31.33363466,18 Years and 8 Months,Yes,78.08900531,65.90649923,High_spent_Large_value_payments,329.8260409,0,-0.2782,-0.2953,0.3094,1.6104,-0.2187 -0x32e9,CUS_0x7cd3,August,25,627-28-9742,Scientist,28406.16,,2,4,2,0,,7.159027162,5,10.23,4,_,1115.66,33.00800383,24 Years and 0 Months,No,0,136.6255559,Low_spent_Large_value_payments,370.4924441,0,1.0191,0.5579,1.5741,0.2196,-0.3367 -0x32f5,CUS_0x6926,August,43,659-41-7297,Developer,99565.36,,8,5,20,0,,8.935524048,7,24.45,6,Standard,551.66,30.79470062,23 Years and 8 Months,Yes,0,144.3432528,High_spent_Large_value_payments,933.3680805,0,0.1462,-0.1955,-3.8765,-1.1877,0.1059 -0x3301,CUS_0x57e8,August,18,132-92-0371,_______,18507.72,1761.31,8,5,31.06745738,2,"Auto Loan, and Personal Loan",43.60711428,28.63773915,7.88,12,Bad,2122.494511,29.79423282,,Yes,27.39466745,134.9859207,Low_spent_Small_value_payments,277.0301239,0,-2.4224,-1.5725,-0.1344,0.6516,0.7166 -0x330d,CUS_0x3161,August,21,226-02-8399,Lawyer,58698.08,,8,4,10,2,"Auto Loan, and Student Loan",,14,9.75,5,Good,453.31,40.79064035,15 Years and 10 Months,NM,91.962713,202.7504145,High_spent_Medium_value_payments,447.0375392,0,-1.1545,-0.4389,-1.2393,0.0637,1.8522 -0x3319,CUS_0x6b88,August,29,284-92-0654,Scientist,31461.84,,7,3,12,5,"Student Loan, Student Loan, Home Equity Loan, Student Loan, and Payday Loan",17.0478998,11,19.3,6,Standard,886.09,25.04722919,10 Years and 6 Months,Yes,68.75864919,278.3711357,Low_spent_Medium_value_payments,223.2522151,0,-1.1549,0.1455,0.1891,-0.293,0.5191 -0x3325,CUS_0x9641,August,30,618-38-7599,Manager,71677.59,5889.1325,5,6,16,0,,10.6483736,11,11.9,0,Standard,130.54,32.13054128,17 Years and 9 Months,No,0,263.7896887,Low_spent_Small_value_payments,615.1235613,0,-1.268,-0.1966,0.554,0.8391,-0.6721 -0x3331,CUS_0x48aa,August,25,884-77-6242,Architect,17856.72,1350.437372,8,6,23,6,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Home Equity Loan",,24.31376694,0.65,10,Bad,1626.607578,37.23331338,18 Years and 0 Months,Yes,165.4904011,78.21484604,Low_spent_Medium_value_payments,269.9233807,0,-1.1388,0.5525,-0.9611,1.6352,-0.628 -0x333d,CUS_0x8bdd,August,43,970-19-5512,Developer,44080.04,,5,5,10,3,"Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",9.244634335,8,4.7,5,Good,443.01,40.46739811,20 Years and 5 Months,No,193.578468,74.98291016,High_spent_Small_value_payments,452.1101846,0,0.8338,0.1241,1.5467,-0.6598,-1.772 -0x3349,CUS_0x69ea,August,20,087-42-0921,Manager,77519.04,6184.92,6,6,23,7,"Personal Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Debt Consolidation Loan",,14,16.57,6,Bad,3037.386536,37.65279832,9 Years and 0 Months,Yes,360.6812789,576.9029574,Low_spent_Medium_value_payments,36.99727345,0,-0.2755,-0.4102,-1.3083,-0.9214,0.2342 -0x3355,CUS_0x658a,August,29,260-79-8827,Manager,29281.94,2588.161667,6,7,23.06745738,8,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, and Not Specified",39.44581487,24,19.91,15,_,4655.870954,32.50329469,10 Years and 4 Months,Yes,161.9782192,10000,High_spent_Small_value_payments,155.9556842,0,-1.7583,-0.6099,0.2125,-1.1066,0.682 -0x3361,CUS_0xb786,August,35,052-60-5525,Musician,101954.94,8544.245,1,6,2.288361749,4,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",5.656644874,8.247105226,3.79,3,_,684.8057198,33.45018012,24 Years and 4 Months,No,275.8198234,1461.702889,Low_spent_Small_value_payments,,0,0.3366,0.063,-1.1216,0.6042,0.6102 -0x336d,CUS_0x7110,August,39,501-31-1895,_______,87932.96,7206.746667,4,3,3.288361749,2,"Home Equity Loan, and Not Specified",,,,3,Good,573.8954224,26.54047647,21 Years and 11 Months,No,117.4152817,495.7852997,High_spent_Large_value_payments,776.974527,0,-0.8197,0.8855,0.0142,-0.6696,0.0074 -0x3379,CUS_0xb057,August,48,046-76-3154,Scientist,31557.73,,0,5,6,2,"Student Loan, and Auto Loan",16.3895173,14.20205351,0.55,5,Good,1443.641662,35.12818916,24 Years and 3 Months,No,28.79368849,253.8655515,Low_spent_Small_value_payments,295.1218433,0,-0.5652,-0.5567,-0.696,1.2448,-1.0072 -0x3385,CUS_0x7e09,August,49,829-75-6996,_______,128390.84,10622.23667,4,4,3,3,"Auto Loan, Payday Loan, and Personal Loan",3.231184792,2.311013376,4.86,9,_,582.0995252,29.62809074,28 Years and 10 Months,NM,206.158365,184.5467865,High_spent_Medium_value_payments,921.5185151,0,-0.3118,0.7064,-0.4363,1.5148,1.1349 -0x3391,CUS_0x9e3b,August,20,477-46-8860,Writer,61887.2,5000.266667,7,4,13,4,"Not Specified, Payday Loan, Personal Loan, and Student Loan",22.37695563,17,0.89,3,Standard,1370.48,33.5339745,32 Years and 2 Months,Yes,160.191974,141.5842383,High_spent_Medium_value_payments,448.2504543,0,-0.3411,-0.7237,0.1534,0.1715,-1.0245 -0x339d,CUS_0xc3c1,August,80,512-79-2502,Musician,10320.67,,8,8,27,4,"Payday Loan, Student Loan, Home Equity Loan, and Mortgage Loan",,20,15.58,12,Standard,1759.88,36.12208621,17 Years and 3 Months,Yes,31.35390997,11.46041077,High_spent_Medium_value_payments,285.0912626,0,0.0975,-0.2281,-0.189,-0.3376,-0.1546 -0x33a9,CUS_0xc629,August,18,774-80-0114,Scientist,32594.76,2959.23,2,2,11,3,"Payday Loan, Payday Loan, and Debt Consolidation Loan",,7,,2,Good,1064.698332,39.35264178,28 Years and 9 Months,No,74.12073088,246.0687031,Low_spent_Large_value_payments,274.9294793,0,-1.2807,0.1934,-0.7737,-1.3814,-0.8612 -0x33b5,CUS_0x2e96,August,54,735-57-7317,Writer,61669.47,5190.1225,3,6,13,0,,25.01026196,18,6.94,6,Standard,1083.29,24.89982124,32 Years and 9 Months,No,0,374.6276528,Low_spent_Medium_value_payments,424.3845972,0,-0.4123,0.242,-1.2488,-0.9938,1.82 -0x33c1,CUS_0x660d,August,35,162-98-1418,Teacher,34514.51,3067.209167,4,6,9,4,"Not Specified, Mortgage Loan, Credit-Builder Loan, and Student Loan",20.13349703,11.74598682,3.25,7,Standard,951.1765053,37.16659376,18 Years and 0 Months,Yes,102.4625828,105.3213671,Low_spent_Small_value_payments,388.9369668,0,0.4663,0.8067,0.1894,-1.0869,0.6511 -0x33cd,CUS_0xaa87,August,34,357-64-9397,Scientist,85589.68,6841.473333,8,4,8,4,"Student Loan, Debt Consolidation Loan, Payday Loan, and Auto Loan",,11,4.29,4,Standard,370.2277444,27.8362524,25 Years and 5 Months,Yes,73067,459.8829663,High_spent_Small_value_payments,316.2784703,0,0.6021,-0.6167,-0.1086,0.8504,-0.4086 -0x33d9,CUS_0x8d2b,August,50,858-76-0640,Writer,21053.37,,4,4,2,2,"Payday Loan, and Not Specified",,24.39649796,1.66,1,Good,655.1418509,35.55241365,24 Years and 11 Months,No,28.38607351,98.96256098,High_spent_Small_value_payments,294.2961155,0,0.6193,0.3932,-0.0393,1.4344,1.5774 -0x33e5,CUS_0xedf,August,33,075-05-7829,Journalist,14542.1,,6,3,34.06745738,6,"Mortgage Loan, Personal Loan, Payday Loan, Not Specified, Student Loan, and Payday Loan",22.82124307,15.38756238,5.28,10,_,2432.765663,39.86445745,17 Years and 6 Months,Yes,43.98817153,,Low_spent_Small_value_payments,178.2916601,0,0.0366,1.2259,0.6547,1.5481,-0.0301 -0x33f1,CUS_0x1baf,August,41,589-48-5213,Accountant,111896.16,,8,7,17,0,,19.290307,13,9.79,10,_,978.3,36.87234981,18 Years and 8 Months,Yes,0,453.0444747,Low_spent_Medium_value_payments,784.1235253,0,-0.0362,-0.4582,1.2765,1.4113,0.2699 -0x33fd,CUS_0x1a33,August,42,883-91-5779,Developer,7064.385,393.69875,10,9,20.95700519,6,"Student Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",,24.92251139,28.9,10,Bad,4523.521879,26.84206132,13 Years and 5 Months,Yes,32445.48344,40.72103543,Low_spent_Small_value_payments,216.9152389,0,1.3887,0.733,-2.158,1.2554,-0.1216 -0x3409,CUS_0x40f,August,35,305-18-2483,Entrepreneur,72588.99,6242.0825,7,4,19,2,"Student Loan, and Home Equity Loan",,8,11.87,6,Standard,1031.21,28.29143985,22 Years and 2 Months,No,72.92831137,449.7351514,Low_spent_Large_value_payments,371.5447872,0,1.0367,-0.2288,-2.2323,1.7079,-0.3408 -0x3415,CUS_0x628b,August,26,716-20-2855,Scientist,60585.08,4977.756667,8,6,8,2,"Personal Loan, and Home Equity Loan",15.67592426,10.72839134,4.16,5,Good,505.8957817,40.72945834,24 Years and 10 Months,No,84.26082494,578.3065942,Low_spent_Small_value_payments,125.2082475,0,-0.5959,-1.3343,-0.3887,-1.1022,-0.7033 -0x3421,CUS_0x974a,August,29,372-05-2038,Musician,52949.07,4465.4225,5,3,20,2,"Payday Loan, and Not Specified",21.38906246,,9.89,7,Standard,1772.039213,28.73235063,19 Years and 9 Months,Yes,82.91462288,72.78629507,High_spent_Large_value_payments,530.8413321,0,-0.9445,-0.8662,-0.2541,0.5741,-0.0115 -0x342d,CUS_0xa0ee,August,18,581-09-3881,Journalist,15444.74,1255.061667,7,7,27,5,"Payday Loan, Payday Loan, Payday Loan, Student Loan, and Personal Loan",17.94270709,,10.93,4,Standard,2594.129292,32.83830928,7 Years and 0 Months,Yes,46.55013311,70.78522368,Low_spent_Large_value_payments,278.1708099,0,-0.1257,-0.3567,-1.4623,-1.8488,0.3061 -0x3439,CUS_0x5b02,August,55,972-58-1211,Architect,28446.58,,3,5,5,4,"Debt Consolidation Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",4.462346276,8,1.12,4,Good,558.8603329,33.58524404,27 Years and 3 Months,NM,66.06402666,72.19833346,High_spent_Large_value_payments,372.1970858,0,-1.3384,-0.1936,-0.2928,-0.6865,2.8301 -0x3445,CUS_0x7047,August,18,560-15-2864,Teacher,16532.33,1416.694167,5,6,18,7,"Auto Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Personal Loan",19.44365539,,18.01,8,Standard,2551.12,38.31451022,11 Years and 3 Months,Yes,52.68006789,24.76579994,High_spent_Medium_value_payments,314.2235488,0,0.7154,-0.7926,-2.8461,1.0399,0.8738 -0x3451,CUS_0xff3,August,55,#F%$D@*&8,Scientist,17032.785,,0,6,2,3,"Personal Loan, Mortgage Loan, and Auto Loan",5.96434028,7,6.86,5,Good,1229.08,26.91557684,,No,33.29976354,81.19585742,Low_spent_Small_value_payments,293.144254,0,2.109,-0.1686,-2.8576,-0.126,0.207 -0x345d,CUS_0x96c3,August,34,596-84-2916,Lawyer,30261.67,,3,5,5,3,"Payday Loan, Home Equity Loan, and Credit-Builder Loan",,18,6.48,4,Good,548.0308815,31.95724527,22 Years and 3 Months,NM,183.7648696,,High_spent_Medium_value_payments,387.1161013,0,-0.6145,0.7448,-1.2409,-0.4497,0.3694 -0x3469,CUS_0x2aac,August,22,439-42-5767,Journalist,35853.56,,6,4,17,6,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",,17.46683094,8.11,14,Standard,2618.106991,23.59247316,18 Years and 3 Months,Yes,101.8069266,116.7334118,Low_spent_Large_value_payments,336.7393282,0,0.6637,1.6166,0.5531,1.4621,1.0566 -0x3475,CUS_0x73a6,August,36,334-40-9481,Architect,52979.4,4366.95,10,8,26.95700519,6,"Mortgage Loan, Student Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",,17.95360627,18.53,14,Bad,3503.315492,24.54422841,8 Years and 8 Months,NM,1576.38551,,Low_spent_Medium_value_payments,191.0204989,0,0.431,-0.8285,0.0605,-0.861,0.3567 -0x3481,CUS_0x1069,August,32,761-27-5143,Accountant,58637.34,4799.445,4,6,10,119,"Personal Loan, Auto Loan, and Not Specified",18.90180451,17,12.56,5,Standard,208.8,25.23314363,30 Years and 8 Months,Yes,139.8850134,165.2106129,High_spent_Small_value_payments,434.8488737,0,0.7101,1.0903,-0.9769,-1.3581,0.0497 -0x348d,CUS_0x783f,August,31,#F%$D@*&8,Teacher,53106.54,4265.545,9,5,17,5,"Mortgage Loan, Student Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",23.6807632,17.13429835,4.61,16,Bad,5021.570514,31.67211718,14 Years and 6 Months,Yes,131.1427793,95.97279687,High_spent_Large_value_payments,439.4389239,0,-0.0443,-0.6943,0.2481,-1.8721,0.8233 -0x3499,CUS_0x61b7,August,18,319-69-5178,Manager,73085.96,,10,10,30.06745738,8,"Auto Loan, Not Specified, Home Equity Loan, Personal Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Not Specified",27.26380365,17.510086,5.06,15,Bad,4518.691364,33.98928876,1 Years and 2 Months,Yes,367.0553672,144.1512597,!@9#%8,296.8227518,0,0.9117,-0.3369,-0.3303,0.0897,2.2019 -0x34a5,CUS_0x65c0,August,53,343-78-2263,Lawyer,32029.98,,2,5,3.288361749,2,"Not Specified, Payday Loan, and Auto Loan",0.624971667,5,11.11,0,Good,396.9643834,29.49906079,,No,66.4004325,460.5932947,High_spent_Large_value_payments,397.2653359,0,1.1967,-0.4595,0.7978,2.157,-0.2058 -0x34b1,CUS_0x3d0e,August,55,149-85-8524,Doctor,71424.57,5743.0475,4,6,1,4,"Auto Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",26.34899646,21,10.35,6,_,434.9590106,27.25221806,17 Years and 4 Months,No,230.4557841,203.7137414,High_spent_Medium_value_payments,415.5243716,0,0.8992,-0.4524,0.8388,-1.2721,-0.3025 -0x34bd,CUS_0x3e37,August,26,334-58-2603,Mechanic,12985.715,1164.142917,4,3,15,1,Not Specified,,13,11.02,5,Standard,355.39,28.2044026,31 Years and 3 Months,Yes,8.733919706,69.87298303,Low_spent_Small_value_payments,327.8073889,0,-1.6444,-0.5685,1.3133,0.4514,-0.2475 -0x34c9,CUS_0x8e90,August,54,257-90-0023,Engineer,41821.27,,5,4,11,2,"Mortgage Loan, and Home Equity Loan",11.98752793,12,9.45,0,Good,791.51,32.64944975,26 Years and 0 Months,No,63.23724085,234.5076317,Low_spent_Medium_value_payments,325.2657108,0,-0.038,1.2564,1.1659,0.573,-0.0495 -0x34d5,CUS_0x4293,August,29,081-50-2290,Entrepreneur,60116.7,5091.725,6,8,19.88954781,7,"Home Equity Loan, Home Equity Loan, Student Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",21.71989149,15.44497224,19.62,11,_,2224.856642,39.33052847,12 Years and 11 Months,Yes,1541.998332,116.7483723,!@9#%8,396.0957144,0,-0.6628,-0.1718,0.7353,-0.9694,1.1096 -0x34e1,CUS_0xc30b,August,40,778-31-7461,Engineer,96562.8,7671.250734,1,1,6.288361749,4,"Personal Loan, Payday Loan, Not Specified, and Payday Loan",,12,1.16,9,Good,11.37430278,29.67701917,,No,561.2458794,,!@9#%8,133.7551448,0,1.6115,-1.2028,-1.4722,0.7785,-0.5459 -0x34ed,CUS_0x979c,August,38,632-10-1771,Engineer,18721.3,,4,5,28,3,"Personal Loan, Personal Loan, and Mortgage Loan",13.40431839,11,11.26,5,Standard,2646.59,23.627916,8 Years and 4 Months,Yes,46.5935459,30.77737958,High_spent_Small_value_payments,351.0399078,0,-2.4148,2.5187,-0.8791,-0.8788,-1.8305 -0x34f9,CUS_0x9e50,August,38,041-64-7582,Writer,31633.94,2729.161667,9,6,27.06745738,5,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,20.16231375,9.21,8,_,2417.335758,33.60564226,18 Years and 2 Months,Yes,73.63276722,,!@9#%8,342.4200905,0,-0.2142,0.5533,-0.2374,-0.8311,-2.1568 -0x3505,CUS_0x5840,August,21,035-85-5019,Mechanic,173968.96,14566.41333,4,7,0.288361749,0,Home Equity Loan,0,2,4.54,5,Good,1486.89,34.17360417,30 Years and 8 Months,No,72.75291632,908.4848794,High_spent_Medium_value_payments,1145.340999,0,1.1251,0.334,-1.3046,0.4481,0.9671 -0x3511,CUS_0x9e9e,August,46,#F%$D@*&8,Entrepreneur,33928.38,,4,7,8,5,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Home Equity Loan",31.19650387,20.37241575,18.62,9,_,178.877655,24.6474023,15 Years and 3 Months,Yes,184.0784294,68.02641492,Low_spent_Medium_value_payments,364.7859726,0,-0.1977,-0.2378,-1.4515,0.3944,-1.8537 -0x351d,CUS_0x47c0,August,40,431-54-2467,Manager,123847.04,,1,4,7,2,"Mortgage Loan, and Personal Loan",6.68860231,8,11.05,0,_,1283.959758,27.49975763,29 Years and 9 Months,No,116.7740901,,Low_spent_Small_value_payments,29.33780725,0,-1.4507,1.208,-0.6462,0.169,0.151 -0x3529,CUS_0x2b17,August,26,008-91-0413,Teacher,34447.49,,5,6,4,4,"Not Specified, Debt Consolidation Loan, Not Specified, and Payday Loan",,,8.71,5,Good,834.3831376,32.52043495,30 Years and 9 Months,No,67.23623576,92.24145985,High_spent_Medium_value_payments,371.6296587,0,-2.3685,-0.5993,0.5131,-0.1682,-0.6584 -0x3535,CUS_0x9c95,August,49,667-92-0559,Architect,83483.96,6952.996667,0,4,11,1,Not Specified,1.621875106,2,4.41,1,_,152.98,39.65541935,30 Years and 11 Months,NM,42.74236078,381.8939945,Low_spent_Small_value_payments,560.6633114,0,-0.2413,-0.5271,-1.879,0.3175,1.4333 -0x3541,CUS_0x7b72,August,43,199-56-9238,Architect,9754.75,,7,6,21,6,"Payday Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",22.93480984,16,16.11,10,Bad,4074.72,26.85888673,4 Years and 0 Months,Yes,42.73230601,,High_spent_Small_value_payments,251.0892795,0,0.976,0.4702,-0.834,0.1526,-0.08 -0x354d,CUS_0x2593,August,28,049-48-0823,Media_Manager,50173.54,4323.128333,6,4,11,3,"Debt Consolidation Loan, Payday Loan, and Mortgage Loan",25.73452084,18.59022729,4.09,5,Standard,336.0983238,26.60000386,25 Years and 8 Months,No,105.3052898,199.8817267,High_spent_Small_value_payments,387.1258168,0,0.4499,-1.2388,1.4171,-1.3891,-0.1289 -0x3559,CUS_0xb660,August,31,304-98-6409,Architect,15627.72,1027.31,6,6,16.06745738,3,"Not Specified, Home Equity Loan, and Home Equity Loan",15.19775147,10,10.06,4,Standard,1206.630954,31.5546168,32 Years and 2 Months,Yes,23.61597002,67.24114126,Low_spent_Small_value_payments,275.1536008,0,-1.2348,0.9365,-0.8687,0.2756,-0.5732 -0x3565,CUS_0xa3a9,August,39,820-03-6535,Journalist,97575.9,7850.325,7,472,14.28836175,2,"Home Equity Loan, and Home Equity Loan",16.41967238,15,2.39,6,Standard,366.88,25.36252439,22 Years and 2 Months,No,152.0602706,1193.852393,Low_spent_Medium_value_payments,139.0572975,0,-2.6275,0.3272,0.3353,0.1455,-0.6462 -0x3571,CUS_0xacc6,August,37,398-58-0171,Architect,64397.88,5240.49,7,5,11,0,,20.65851998,15,19.43,11,Standard,1001.74,26.55333736,19 Years and 5 Months,Yes,0,269.3072002,High_spent_Small_value_payments,514.7417998,0,-0.3324,0.3538,-1.2726,-0.1927,-0.481 -0x357d,CUS_0x9027,August,21,574-10-7802,Teacher,23952.07,1863.005833,6,4,316,0,,15.01666482,13,9.5,3,Standard,1045.08,31.70541657,,Yes,0,80.41798444,High_spent_Small_value_payments,365.8825989,0,-1.2157,-1.5238,0.9256,-0.4316,-0.2592 -0x3589,CUS_0x5c28,August,29,770-33-0635,Doctor,105565.65,8643.1375,1,3,10.28836175,0,Not Specified,3.592674372,5,7.2,6,_,440.91,33.87612099,27 Years and 9 Months,NM,49.60886879,1026.0968,Low_spent_Large_value_payments,478.545542,0,0.707,0.9298,0.5065,0.2838,0.6747 -0x3595,CUS_0x2a03,August,27,620-62-0897,Journalist,145934.16,12446.18,0,5,3,1,Personal Loan,5.46135001,3,9.42,3,_,1334.34,25.46101313,17 Years and 4 Months,No,113.5160296,1388.950403,Low_spent_Small_value_payments,32.1515676,0,0.3128,-0.003,-0.8378,-0.1252,-1.0945 -0x35a1,CUS_0xbaa9,August,25,334-44-6939,Musician,68171.55,5489.9625,6,3,4,1,Mortgage Loan,15.15933361,11,9.2,2,Standard,1049.75,33.86379999,22 Years and 0 Months,No,49.23388829,287.5802054,!@9#%8,492.1821564,0,0.7613,-1.9627,2.1672,1.6464,0.5164 -0x35ad,CUS_0x7c21,August,30,412-34-8666,Media_Manager,9599.265,618.93875,3,9,21,5,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Auto Loan",34.42269084,25.60348854,18.02,12,Standard,2123.302603,35.91335981,12 Years and 9 Months,NM,29.10631141,30.97979034,Low_spent_Small_value_payments,291.8077732,0,0.6328,-0.0622,-0.8801,-2.3623,-2.6727 -0x35b9,CUS_0x78bf,August,41,902-32-7521,Accountant,61796.92,5318.743333,9,9,29.06745738,9,"Auto Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Personal Loan",32.74113364,21.7740638,,10,Bad,3718.320519,23.93400942,,Yes,334.4616622,,Low_spent_Small_value_payments,132.6243732,0,-1.7678,0.2457,-1.1957,1.2398,-0.9317 -0x35c5,CUS_0x804,August,43,857-32-0525,Media_Manager,20133.61,1671.800833,8,7,18,6,"Auto Loan, Not Specified, Not Specified, Credit-Builder Loan, Student Loan, and Not Specified",,18,8.1,7,Standard,1265.65,32.79560119,13 Years and 5 Months,Yes,54.97308367,225.3027132,Low_spent_Small_value_payments,176.9042864,0,1.2002,-0.009,0.6433,-0.8752,0.3496 -0x35d1,CUS_0xa445,August,41,075-29-9342,Journalist,8406.375,,9,5,26.06745738,100,"Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Not Specified, Mortgage Loan, Payday Loan, and Credit-Builder Loan",35.06886764,20,5.8,11,Bad,2076.580954,37.52805806,17 Years and 8 Months,Yes,44.00521092,63.53224812,Low_spent_Large_value_payments,230.195378,0,0.9612,-0.0986,-0.1925,2.0963,0.6851 -0x35dd,CUS_0xd51,August,24,619-18-6998,Journalist,71368.6,5844.383333,6,3,6,0,,,12,10.88,11,_,1022.012651,40.3434571,28 Years and 2 Months,Yes,0,147.8443181,High_spent_Medium_value_payments,703.4954509,0,-0.2495,0.8463,-1.7521,0.069,-1.013 -0x35e9,CUS_0x133f,August,30,630-81-5640,Manager,100914.39,8546.5325,5,5,16,5,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",,9,19.35,4,Standard,1410.49,39.91276191,8 Years and 9 Months,Yes,242.966043,245.3428988,High_spent_Medium_value_payments,616.3443082,0,-0.937,1.2692,1.4147,-0.3438,0.4497 -0x35f5,CUS_0x672e,August,28,244-12-1541,Lawyer,99903.36,8442.28,8,6,8,0,,12.05243163,11,9.14,7,Good,29.6,26.17767376,16 Years and 2 Months,No,26202,638.961456,Low_spent_Small_value_payments,495.266544,0,-0.8827,0.0405,0.7758,0.6319,0.0963 -0x3601,CUS_0x549d,August,41,828-71-0914,_______,119827.08,9834.59,8,3,5,3,"Student Loan, Student Loan, and Home Equity Loan",23.76622912,17,9.05,1,Standard,1003.89,29.03559924,23 Years and 10 Months,Yes,256.7044741,243.0216708,High_spent_Large_value_payments,723.7328551,0,-1.5939,0.8799,-0.1726,0.8296,-1.7582 -0x360d,CUS_0x77ac,August,33,453-25-4571,Musician,39232.16,3331.346667,5,7,1,0,,17.46017961,13.53343735,5.32,5,Good,547.6769493,39.71593612,26 Years and 11 Months,No,0,,High_spent_Medium_value_payments,476.5770131,0,-0.9015,0.7318,-0.7113,0.6067,-0.4089 -0x3619,CUS_0x92d5,August,36,829-49-1325,Doctor,19590.31,,3,7,14,2,"Home Equity Loan, and Payday Loan",11.85632508,11,18.24,4,Standard,1131.45,25.53849708,19 Years and 2 Months,NM,31.47494934,73.72688224,!@9#%8,325.6507518,0,-0.3911,-0.7157,-0.2745,-0.043,2.9195 -0x3625,CUS_0x95ca,August,55,604-74-3261,Accountant,83503.12,7052.593333,1,4,1,2,"Personal Loan, and Credit-Builder Loan",12.69123514,11,,5,Good,724.5371047,37.56380564,27 Years and 11 Months,No,72.09743299,440.8845487,High_spent_Small_value_payments,512.6297004,0,-0.1779,0.4426,-1.8159,0.5497,-1.6561 -0x3631,CUS_0x800,August,56,649-53-5022,_______,143372.68,11822.72333,2,4,9.288361749,0,,5.945599244,7,4.17,0,Good,138.9189616,30.59096643,23 Years and 0 Months,No,0,687.2267841,High_spent_Large_value_payments,1195.354404,0,0.9428,0.737,-0.14,1.9718,-0.7181 -0x363d,CUS_0x8a0e,August,48,601-77-9732,Mechanic,131617.4,10742.11667,4,3,15,0,,30.38340866,23.6255266,1.82,7,Standard,1043.111047,36.84907483,22 Years and 2 Months,No,0,163.6134278,High_spent_Medium_value_payments,1160.598239,0,1.7716,-1.9465,1.0884,-1.3843,0.6089 -0x3649,CUS_0xa1f4,August,21,#F%$D@*&8,Mechanic,15054.47,1458.539167,10,9,20.88954781,6,"Auto Loan, Home Equity Loan, Student Loan, Student Loan, Personal Loan, and Student Loan",27.60671046,21,1.05,7,Bad,1539.61,29.39843573,16 Years and 2 Months,Yes,1391.747104,113.9354926,Low_spent_Large_value_payments,215.8412391,0,0.0046,1.8101,0.2495,0.6159,-0.3806 -0x3655,CUS_0xbaf4,August,50,808-03-7348,Musician,18268.61,,3,4,6,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",,14,11.05,6,Standard,393.05,31.81597586,25 Years and 10 Months,Yes,42.07877621,50.85790169,Low_spent_Large_value_payments,308.8017388,0,0.3977,-1.1586,-0.7922,0.9764,-0.9725 -0x3661,CUS_0x5d82,August,25,555-45-9905,Teacher,142152.48,,6,7,18.28836175,0,,17.50062804,15,11.91,,Standard,168.9010593,34.09547344,16 Years and 3 Months,Yes,0,,High_spent_Large_value_payments,1252.254416,0,-0.7033,0.0901,0.5223,0.5738,-0.351 -0x366d,CUS_0x34ed,August,46,909-28-8002,Journalist,20138.945,1940.245417,4,5,6,2,"Credit-Builder Loan, and Credit-Builder Loan",2.154850611,5,4.05,4,_,1084.773594,37.36379879,23 Years and 2 Months,No,23.32435439,,High_spent_Small_value_payments,368.5175815,0,0.401,-0.1004,-1.2727,0.8039,1.2766 -0x3679,CUS_0x867d,August,48,490-86-5744,Scientist,144468.72,11788.06,3,3,6.288361749,2,"Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",11.23542671,12,3.01,7,_,539.74,41.18654282,21 Years and 5 Months,No,241.3990484,758.3054139,High_spent_Medium_value_payments,849.0389987,0,-0.6321,0.8158,0.4548,-0.3762,-0.5302 -0x3685,CUS_0x9885,August,18,186-49-9679,Developer,41086.4,3660.866667,3,4,6,7,"Home Equity Loan, Not Specified, Mortgage Loan, Personal Loan, Auto Loan, Not Specified, and Student Loan",26.20030198,20,17.86,10,Standard,113.98,35.2112554,12 Years and 0 Months,Yes,145.5443202,116.5112806,!@9#%8,374.0310659,0,-0.1515,-1.713,-1.211,0.5247,-1.6123 -0x3691,CUS_0x8eb0,August,42,147-07-6385,Mechanic,41507.12,3650.926667,10,10,15.88954781,7,"Student Loan, Mortgage Loan, Auto Loan, Auto Loan, Auto Loan, Personal Loan, and Payday Loan",28.29184252,20,24.99,14,Bad,4615.79,29.88490691,5 Years and 11 Months,Yes,1507.290269,70.82348663,High_spent_Medium_value_payments,342.6488299,0,1.0609,0.4342,0.5903,-0.2244,0.3265 -0x369d,CUS_0x97a4,August,26,900-82-5231,Teacher,58942.6,5168.883333,9,6,18,6,"Home Equity Loan, Mortgage Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, and Credit-Builder Loan",,25.55906055,0.52,13,Bad,2868.088154,40.11246975,,NM,187.7035449,102.8077191,High_spent_Large_value_payments,466.3770693,0,1.9667,1.0065,-2.0061,1.1179,0.5198 -0x36a9,CUS_0xb78e,August,45,340-07-6293,Journalist,121719,10073.25,4,3,7,100,"Student Loan, and Home Equity Loan",,8.061812684,8.4,3,_,1658.338037,30.66151322,26 Years and 3 Months,NM,105.8769474,355.0193981,Low_spent_Large_value_payments,816.4286545,0,0.0688,-0.3506,-1.24,-0.2527,-1.0343 -0x36b5,CUS_0x2dfd,August,53,860-87-9053,Journalist,33815.65,,5,1,2,4,"Personal Loan, Student Loan, Mortgage Loan, and Home Equity Loan",2.117797097,3,11.61,3,Good,82.25846981,31.65449272,15 Years and 9 Months,No,112.3566884,19.43548745,!@9#%8,372.523717,0,1.3292,0.5464,1.2843,0.3165,-0.1303 -0x36c1,CUS_0xc620,August,80,114-58-5451,_______,42769.78,,4,4,15.28836175,4,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",11.4835395,11,7.58,3,_,266.1893478,35.08163824,23 Years and 6 Months,NM,40105,447.6727843,High_spent_Large_value_payments,484.8086734,0,-0.6783,2.5844,-1.0442,-1.2989,0.5454 -0x36cd,CUS_0x735c,August,42,#F%$D@*&8,Lawyer,20474.27,,6,5,16,3,"Mortgage Loan, Payday Loan, and Credit-Builder Loan",23.92861406,14.14170493,-3.01,6,Standard,1245.56237,27.85710703,17 Years and 10 Months,No,37.00176232,,High_spent_Small_value_payments,352.3196368,0,0.5227,-1.6082,1.8591,0.1494,1.035 -0x36d9,CUS_0x5c2c,August,41,703-41-8863,Mechanic,38894.06,,8,10,32.88954781,7,"Not Specified, Not Specified, Not Specified, Payday Loan, Auto Loan, Payday Loan, and Student Loan",29.39662683,22,21.29,10,Bad,3997.22,34.67116144,6 Years and 4 Months,NM,1539.079155,390.5102908,Low_spent_Small_value_payments,,0,-1.0115,-1.1276,-1.8901,0.1745,-2.073 -0x36e5,CUS_0x1fa0,August,28,765-58-3710,Lawyer,72140.07,5777.6725,6,5,3813,1,Personal Loan,14.53366404,9,19.52,5,Standard,638.12,33.24001901,,Yes,52.44882186,183.5350534,High_spent_Small_value_payments,601.7833748,0,0.2932,0.3132,0.8744,0.2539,-0.8022 -0x36f1,CUS_0x7546,August,24,865-51-0008,Entrepreneur,11866.345,984.8620833,7,7,20,1,Credit-Builder Loan,27.76421323,22,17.73,6,Standard,276.34,38.18742594,24 Years and 8 Months,Yes,8.367989378,86.74336293,Low_spent_Large_value_payments,273.374856,0,-0.823,-1.8652,1.1753,-0.5018,-0.1585 -0x36fd,CUS_0x38c4,August,41,381-41-6439,Doctor,83359.08,6767.181857,8,6,13,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",12.26303951,10,10.42,0,Standard,939.8011581,30.71304384,18 Years and 4 Months,Yes,590.5575369,284.6129553,High_spent_Medium_value_payments,535.300045,0,0.8954,-1.298,-0.2177,1.395,-0.7912 -0x3709,CUS_0xb67c,August,49,432-02-3211,Entrepreneur,3031039,3984.961667,1,4,10.28836175,2,"Debt Consolidation Loan, and Credit-Builder Loan",3.607042794,6,2.28,3,_,753.7523276,26.34970898,19 Years and 11 Months,No,48.88539432,858.8918959,Low_spent_Medium_value_payments,251.2592708,0,0.8094,-0.45,-1.1924,0.6603,0.8184 -0x3715,CUS_0x6de6,August,54,493-51-7387,Manager,12962224,,3,6,4.288361749,4,"Not Specified, Not Specified, Mortgage Loan, and Mortgage Loan",,20,5.12,4,Good,71.41182125,30.23422175,24 Years and 8 Months,No,281.0989547,634.1059538,High_spent_Medium_value_payments,618.8170023,0,0.7566,0.0451,0.53,-0.3992,-1.0094 -0x3721,CUS_0xa6c6,August,30,114-05-6534,Mechanic,52595.46,4532.955,9,7,28,6,"Payday Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Personal Loan, and Debt Consolidation Loan",,14.5508729,13.8,13,Standard,1554.261557,31.92996039,19 Years and 5 Months,Yes,244.3970313,113.8560112,High_spent_Medium_value_payments,345.0424575,0,-0.268,-0.4849,-0.714,1.3746,-2.1451 -0x372d,CUS_0xba1d,August,34,837-57-6588,Scientist,101462.64,8633.22,4,3,8,2,"Payday Loan, and Not Specified",35.07729927,24.38439637,18.84,8,Standard,275.4332751,34.71862179,15 Years and 4 Months,Yes,113.900936,,High_spent_Large_value_payments,894.2771757,0,-0.2642,-1.8381,2.7191,-0.0403,0.231 -0x3739,CUS_0x7b7a,August,20,930-29-4314,Musician,77930.28,6504.19,8,8,25.88954781,7,"Personal Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Not Specified",,22,0.64,10,Bad,1597.7,35.14309262,11 Years and 3 Months,Yes,1772.989168,95.90317009,High_spent_Medium_value_payments,337.196581,0,-0.3802,1.9489,1.8688,-0.2697,-2.7565 -0x3745,CUS_0x5718,August,34,888-84-4641,Media_Manager,15688.25,,4,7,12,2,"Personal Loan, and Credit-Builder Loan",8.624660432,10,10.34,3,_,1029.41,28.71907601,19 Years and 0 Months,Yes,21193,59.12987806,Low_spent_Small_value_payments,356.2338162,0,0.2928,0.399,1.0727,-0.7794,1.0529 -0x3751,CUS_0x9251,August,18,199-47-9137,Entrepreneur,56510.8,4543.233333,9,5,18.06745738,6,"Student Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",,19.8052811,15.78,15,Bad,3280.680465,30.61655648,11 Years and 2 Months,Yes,43684,277.5741675,High_spent_Small_value_payments,156.109419,0,0.4484,0.8299,-0.5831,-0.4113,-0.293 -0x375d,CUS_0x6a55,August,60,106-36-5469,Mechanic,42048.24,,6,4,5,2,"Auto Loan, and Personal Loan",9.936462889,8,9.54,4,_,855.1145096,29.97683143,29 Years and 5 Months,No,53.58146326,125.4084605,High_spent_Medium_value_payments,464.5735602,0,0.5564,-0.785,-0.6312,-0.2641,-0.1744 -0x3769,CUS_0x541,August,25,313-45-4006,Writer,136680.12,10272.75859,0,5,2.288361749,0,Home Equity Loan,,1,4.06,0,Good,1125.825772,42.1169931,18 Years and 6 Months,No,1260.246838,694.8798208,High_spent_Medium_value_payments,1037.729003,0,-0.4301,-1.2561,1.0498,-0.0667,-1.1154 -0x3775,CUS_0x97ef,August,37,946-35-7723,Teacher,9339.455,,9,6,28,7,"Personal Loan, Not Specified, Not Specified, Personal Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",33.00610196,22,15.56,9,Bad,2637.94,29.79417852,3 Years and 9 Months,Yes,46.68586679,23.04409127,!@9#%8,272.6988336,0,0.5872,0.6817,0.3681,0.4625,0.3689 -0x3781,CUS_0x5bb7,August,47,237-77-2781,Journalist,108172.29,9230.3575,3,1,6.288361749,4,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",1.320807939,4,8.34,1,Good,485.6813509,28.95733606,26 Years and 0 Months,No,359.907681,927.2069916,High_spent_Small_value_payments,379.9658673,0,-0.2663,-2.2257,-0.6768,-0.7615,-0.0285 -0x378d,CUS_0x9bf5,August,27,781-77-4633,Manager,97003.11,,8,7,5,4,"Mortgage Loan, Not Specified, Mortgage Loan, and Payday Loan",,2503,8.11,6,Standard,802.47,25.66215513,18 Years and 8 Months,Yes,164.3558512,,Low_spent_Large_value_payments,369.6919247,0,0.0757,-0.5733,-0.4977,0.1658,0.861 -0x3799,CUS_0xddf,August,35,528-66-3364,Lawyer,18873.2,,3,1,4,4,"Debt Consolidation Loan, Not Specified, Auto Loan, and Payday Loan",,12,4.39,3,Good,1170.52,31.1857429,20 Years and 3 Months,No,32.02761974,,Low_spent_Small_value_payments,236.6379657,0,0.3351,-0.0689,-0.1291,-0.5035,1.3125 -0x37a5,CUS_0xb102,August,27,421-85-2245,Musician,38491.94,2709.896292,5,7,18,4,"Home Equity Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",10.31230754,9,7.31,6,Standard,1659.15,26.61859973,,Yes,470.77669,58.64824934,!@9#%8,429.2066021,0,1.3232,-0.0738,-0.6285,-0.6142,-0.3864 -0x37b1,CUS_0xc442,August,32,294-98-9820,Musician,75044.98,5967.748333,0,1,2,2,"Personal Loan, and Home Equity Loan",18.38176142,15,7.49,4,Good,811.0695374,27.46362279,29 Years and 0 Months,No,68.31153802,88.42322376,High_spent_Medium_value_payments,701.8250181,0,-0.3469,0.9999,1.4912,1.1269,-0.2609 -0x37bd,CUS_0x9ff4,August,47,993-92-5401,Musician,11162.02,743.1683333,8,7,18.06745738,4,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",18.67888255,10.42387079,1.61,2,Standard,1576.566115,26.40251134,24 Years and 4 Months,No,30.49913716,26.53808585,Low_spent_Large_value_payments,260.5593224,0,-0.5708,1.0957,-0.0694,0.0122,1.6694 -0x37c9,CUS_0x307b,August,39,782-04-9961,Writer,19934.08,,7,5,14,2,"Payday Loan, and Auto Loan",,22,1.71,7,Standard,311.45,34.62713912,17 Years and 10 Months,NM,24.65822343,152.6946043,!@9#%8,248.7645056,0,2.0717,-0.3248,-1.0864,0.8549,0.0829 -0x37d5,CUS_0x64a1,August,53,159-88-1119,Accountant,65912.38,5343.698333,0,4,8,0,,5.208057107,6,5.77,6,Good,268.9128045,36.41663803,16 Years and 3 Months,No,0,189.2243576,High_spent_Small_value_payments,629.3615809,0,-1.3101,0.3924,1.4713,0.5617,1.184 -0x37e1,CUS_0x1e17,August,21,912-22-4304,Media_Manager,15399.52,,4,3,18,1,Auto Loan,,17,16.03,2,Standard,556.93,22.68103951,28 Years and 5 Months,Yes,11.41861543,76.73289163,Low_spent_Large_value_payments,325.6778263,0,-0.2589,0.7983,0.2181,-1.1838,0.2044 -0x37ed,CUS_0x22b3,August,52,333-22-1926,Journalist,66174.84,5263.57,8,7,18,4,"Student Loan, Personal Loan, Not Specified, and Auto Loan",,11.52626564,11.23,4,Standard,1054.603431,39.60295461,21 Years and 0 Months,No,150.9081878,112.6233069,!@9#%8,512.8255054,0,-0.8407,0.1347,-1.1642,0.2819,-0.891 -0x37f9,CUS_0x5ee,August,35,620-05-1729,_______,9597.79,955.8158333,6,5,6,3,"Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",17.33959929,11.9465555,11.42,6,Standard,329.1377802,38.43844411,29 Years and 4 Months,Yes,23.11748686,48.4048985,High_spent_Small_value_payments,284.059198,0,0.3264,0.3922,-0.7454,-0.7866,-0.016 -0x3805,CUS_0x105b,August,29,#F%$D@*&8,Accountant,34428.21,,2,4,8,0,,15.23071,,8.51,0,_,167.3117226,35.13053991,27 Years and 6 Months,No,285.4237997,71.75528055,!@9#%8,446.370046,0,-1.0901,-0.0806,2.0997,1.4106,-0.2776 -0x3811,CUS_0x3401,August,22,603-48-6260,Engineer,15479.34,,6,9,34.06745738,100,"Personal Loan, Not Specified, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",42.03574108,28.86016806,27.12,9,Bad,3690.38315,30.85846915,1 Years and 10 Months,Yes,47.71745624,76.14522292,Low_spent_Small_value_payments,253.8115329,0,-0.6209,0.9356,-0.4238,-1.2806,0.841 -0x381d,CUS_0xb9c8,August,32,786-47-6474,Lawyer,19942.04,,8,9,21.95700519,6,"Auto Loan, Auto Loan, Payday Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",51.63105611,29.23028836,24.57,14,Bad,5404.308627,37.64626729,5 Years and 9 Months,Yes,8426.483444,105.7932168,Low_spent_Large_value_payments,206.5970092,0,0.7252,1.4226,0.6087,-0.4838,-0.3947 -0x3829,CUS_0x9d7,August,25,239-32-4942,Journalist,7912.495,,10,8,30.95700519,6,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Credit-Builder Loan",39.96240357,22.24625067,1.69,11,Standard,1925.500097,39.90091847,11 Years and 3 Months,Yes,1361.776853,53.69214335,Low_spent_Medium_value_payments,195.6180926,0,-1.6594,-0.0008,0.0492,1.071,0.9202 -0x3835,CUS_0x4b2c,August,34,993-03-5805,Entrepreneur,22488.625,1700.052083,1,3,6,1,Payday Loan,16.35474604,14,0.69,3,Good,590.85,25.75006797,16 Years and 3 Months,No,11.47860169,35.0806562,High_spent_Medium_value_payments,373.4459504,0,0.2019,0.3055,0.2356,0.7919,-0.9646 -0x3841,CUS_0x4cfd,August,37,776-43-3476,Engineer,75650.04,6134.17,10,6,15,100,"Personal Loan, Personal Loan, Home Equity Loan, Not Specified, Personal Loan, and Not Specified",30.49163322,22,28.83,8,Bad,2525.56,38.89760787,6 Years and 11 Months,Yes,327.5345711,115.0551011,High_spent_Large_value_payments,410.8273278,0,1.6871,2.5434,0.6344,1.1181,-0.465 -0x384d,CUS_0xbd85,August,18,843-90-4151,Accountant,54994.77,4353.8975,7,5,32,9,"Credit-Builder Loan, Home Equity Loan, Student Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Student Loan",,20,25.45,6,Bad,3450.16,37.20019697,6 Years and 8 Months,Yes,315.2732,103.3281235,High_spent_Medium_value_payments,266.7884265,0,0.7516,0.2558,0.9314,1.8691,1.4859 -0x3859,CUS_0x1899,August,43,694-91-8333,Writer,59908.68,5185.39,3,5,33,5,"Home Equity Loan, Not Specified, Not Specified, Payday Loan, and Credit-Builder Loan",20.73651432,14.60635962,9.07,17,Standard,2883.357663,41.79185592,14 Years and 10 Months,Yes,201.2086508,89.54876843,High_spent_Medium_value_payments,477.7815808,0,1.0098,0.4032,-0.2657,-0.7051,-1.7614 -0x3865,CUS_0x5413,August,36,148-38-7097,Manager,22250.525,,4,4,7,0,,6.139041334,4.54434014,3.1,2,Good,1563.666519,32.91344543,30 Years and 6 Months,NM,0,148.7763378,Low_spent_Small_value_payments,335.7447038,0,1.5589,-1.7365,-1.017,-0.3625,-0.1736 -0x3871,CUS_0xe21,August,47,925-98-6413,Scientist,86189.58,,5,3,12,4,"Home Equity Loan, Student Loan, Personal Loan, and Student Loan",,6.96220702,8.15,8,Good,1553.87541,37.2297992,18 Years and 6 Months,NM,154.9735327,148.9347525,High_spent_Medium_value_payments,658.8382149,0,-0.6586,-0.5734,1.3096,1.2647,0.2304 -0x387d,CUS_0xaf4a,August,49,102-64-9911,Entrepreneur,19848.365,1905.030417,5,3,1,2,"Personal Loan, and Auto Loan",,10,7.38,8,Good,1153.821722,35.53424564,33 Years and 5 Months,No,23.24702153,52.35939161,Low_spent_Large_value_payments,390.6252936,0,0.0114,1.5174,1.5247,-1.1707,0.2198 -0x3889,CUS_0xba8a,August,43,665-95-2418,Media_Manager,99902.37,,3,6,0.288361749,2,"Student Loan, and Credit-Builder Loan",2.39745563,5,10,3,Good,446.72,35.9327126,,No,97.36612204,565.8932651,High_spent_Large_value_payments,821.5978239,0,-0.7821,0.988,0.5951,0.9452,1.0056 -0x3895,CUS_0x511c,August,25,713-27-0108,Musician,15081.12,1298.76,8,7,23.06745738,4,"Auto Loan, Personal Loan, Auto Loan, and Auto Loan",29.78992102,18.0919947,19.08,15,Standard,2459.784624,26.07943427,17 Years and 2 Months,Yes,41.06589355,91.53003122,Low_spent_Small_value_payments,260.5597873,0,0.5445,-1.2192,1.0815,1.1468,-2.6915 -0x38a1,CUS_0xa0a2,August,48,044-85-4173,_______,165002.4,,4,3,8.288361749,0,Mortgage Loan,,6,6.43,3,Good,97.32053933,37.38279251,,NM,123.5813365,750.2442375,High_spent_Medium_value_payments,1214.684855,0,1.6545,-0.1757,0.3161,0.1097,1.1125 -0x38ad,CUS_0xadbe,August,36,616-05-6626,Manager,30776.8,2325.733333,6,6,26,9,"Not Specified, Home Equity Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",42.91045868,25,3.02,12,Bad,1309.32,33.47246347,15 Years and 10 Months,Yes,200.4641583,43.36154582,High_spent_Large_value_payments,228.7476292,0,0.5786,0.9869,-0.3258,0.8546,-0.7559 -0x38b9,CUS_0x5793,August,25,818-70-3452,Writer,20513.23,,6,9,23.06745738,2,"Student Loan, and Credit-Builder Loan",29.60927395,17,17.5,6,Standard,1877.270954,40.80165617,15 Years and 5 Months,NM,32.5775458,75.42823669,Low_spent_Small_value_payments,306.1175129,0,-0.0012,0.095,0.4054,0.8695,2.3763 -0x38c5,CUS_0x44f0,August,19,672-92-1249,Scientist,7046.5,355.2083333,4,6,21.06745738,5,"Credit-Builder Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",23.60532867,14.34799624,8.82,6,Standard,2161.064971,39.39084516,16 Years and 9 Months,NM,23.25041483,,Low_spent_Small_value_payments,260.460446,0,-0.1026,0.3733,0.9948,1.3753,-1.5323 -0x38d1,CUS_0x3188,August,55,731-41-2167,_______,28087.16,,3,2,11,1,Home Equity Loan,8.82116057,7,10.68,8,Good,1447.48,32.95047834,30 Years and 3 Months,No,19.58476939,105.1230622,Low_spent_Small_value_payments,416.7518351,0,0.0618,-0.7338,-1.8134,-2.1914,0.8848 -0x38dd,CUS_0x2a36,August,28,422-39-2689,Engineer,99990.78,,1,3,9,1,Personal Loan,0,3,8.87,8,_,155.2,30.26809193,16 Years and 8 Months,No,45.3044265,548.8422852,Low_spent_Large_value_payments,501.5097883,0,-0.1373,0.5715,0.699,-1.7671,-0.5135 -0x38e9,CUS_0x9f69,August,58,880-46-4570,Developer,43504.07,3767.339167,5,4,1.288361749,2,"Mortgage Loan, and Student Loan",,2,6.76,6,Good,456.4390208,32.57715248,30 Years and 8 Months,No,53.4283375,,!@9#%8,252.4049865,0,0.2148,-0.337,-1.727,-1.6031,-0.3535 -0x38f5,CUS_0x6aed,August,23,930-14-3678,_______,28110.86,2519.571667,428,8,32.88954781,8,"Student Loan, Student Loan, Credit-Builder Loan, Student Loan, Not Specified, Payday Loan, Home Equity Loan, and Student Loan",,20,28.51,12,Bad,4593.31,40.60211744,11 Years and 11 Months,Yes,1509.138629,64.12547069,High_spent_Medium_value_payments,234.3629853,0,-1.8673,0.4395,-1.0224,1.803,0.0122 -0x3901,CUS_0x79bd,August,33,419-74-7436,Accountant,21546.93,,5,6,20,1,Personal Loan,,21,11.41,2,Standard,313.06,30.04055704,,No,9.878117784,109.2138804,Low_spent_Medium_value_payments,317.0657518,0,2.1219,1.4723,0.0806,-0.4559,1.8963 -0x390d,CUS_0x697,August,18,682-66-2760,Musician,17993.4,1704.601621,7,7,27.06745738,6,"Credit-Builder Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Auto Loan, and Mortgage Loan",,24,22.15,14,_,3948.260954,27.26696751,13 Years and 9 Months,Yes,89.33381158,71.58218492,Low_spent_Small_value_payments,306.7570942,0,0.2648,1.7929,0.1781,0.0521,-2.2774 -0x3919,CUS_0xa54e,August,20,436-91-6957,Engineer,63856.48,,7,7,13,5,"Personal Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",25.93851946,19,12.05,8,Standard,1240.11,30.02393215,12 Years and 6 Months,Yes,233.2408418,281.4427928,High_spent_Small_value_payments,277.3536987,0,1.5727,-0.6243,1.2473,1.6905,0.71 -0x3925,CUS_0xb53e,August,30,175-81-0535,Media_Manager,73747.58,,3,5,7,2,"Debt Consolidation Loan, and Mortgage Loan",20.90988961,14,15.1,10,Standard,497.98,35.88073755,30 Years and 8 Months,Yes,93.2128611,344.9308069,Low_spent_Medium_value_payments,458.5194987,0,-1.2,0.8213,1.7257,0.9126,-1.2596 -0x3931,CUS_0x2811,August,38,470-38-8761,Architect,19328.71,,3,5,1.288361749,2,"Student Loan, and Credit-Builder Loan",,4,7.27,3,Good,137.7414194,29.95005606,17 Years and 3 Months,No,25.87483029,486.7309985,High_spent_Medium_value_payments,314.3073706,0,-0.5195,-0.237,0.7609,0.2111,0.1134 -0x393d,CUS_0x9e02,August,20,278-38-1974,Musician,42435.63,3657.3025,8,6,25,8,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Payday Loan, Personal Loan, Auto Loan, and Not Specified",,25,23.38,10,Bad,4656.19,34.60975389,1 Years and 5 Months,NM,281.5011494,53.63841628,High_spent_Medium_value_payments,280.5906843,0,0.9395,-0.7022,0.2094,0.4433,-1.5009 -0x3949,CUS_0xafb,August,36,027-97-5117,Accountant,16564.89,,8,5,12,6,"Personal Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",16.83522688,12,18.09,5,Standard,1246.857002,36.61523599,11 Years and 8 Months,Yes,189.7254954,,High_spent_Medium_value_payments,307.8424375,0,-2.1771,0.5631,-0.7765,-0.2875,1.1456 -0x3955,CUS_0x5300,August,20,857-13-4456,Musician,7985.155,870.4295833,6,10,32.95700519,7,"Auto Loan, Credit-Builder Loan, Student Loan, Personal Loan, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",31.25542706,16,5.2,12,Bad,2178.030954,30.01942946,13 Years and 3 Months,Yes,1369.660633,10000,High_spent_Medium_value_payments,214.6754525,0,-0.8142,1.9362,1.203,0.7493,0.444 -0x3961,CUS_0x8ab5,August,24,745-89-0277,Lawyer,81903.8,,0,3,8,0,,2.987795906,6.086108221,2.11,1,Good,759.8769276,34.54797381,18 Years and 11 Months,No,0,,Low_spent_Medium_value_payments,598.0145394,0,1.4571,0.14,-0.2378,-0.7182,-0.0791 -0x396d,CUS_0xb05a,August,50,206-93-4046,_______,92041.02,7621.085,3,7,7,0,,,11,11.45,4,Good,590.95,39.30427094,24 Years and 6 Months,No,0,242.2692548,!@9#%8,799.8392452,0,0.186,-0.8483,0.3483,0.0625,-1.0862 -0x3979,CUS_0x79b7,August,37,844-64-5104,Journalist,40514.84,3511.236667,2,5,3,3,"Auto Loan, Not Specified, and Debt Consolidation Loan",3.72915658,7,2.64,5,Good,135.1158824,25.5082058,18 Years and 3 Months,No,55.84685586,83.84744292,High_spent_Small_value_payments,481.3000494,0,0.4337,-1.7156,0.5546,1.2807,0.302 -0x3985,CUS_0xc594,August,56,#F%$D@*&8,_______,60841.98,5053.165,3,3,9,1,Mortgage Loan,3.06968878,7,3.32,7,_,1064.4,34.78524201,26 Years and 5 Months,No,30.41954036,178.0658217,High_spent_Medium_value_payments,546.8311379,0,0.5242,0.1724,1.3436,0.7405,0.3078 -0x3991,CUS_0x10ee,August,30,699-80-2426,Journalist,12660.16,,5,7,15,0,,17.47280659,15.9592234,15.1,2,Standard,504.3459498,33.46263116,25 Years and 4 Months,No,0,10000,!@9#%8,338.2549367,0,0.8764,0.2399,-1.4446,-0.811,-0.2864 -0x399d,CUS_0x2798,August,44,254-30-0873,Musician,46066.06,,1190,883,8,2,"Student Loan, and Payday Loan",20.26367756,13,16.43,5,Standard,373.75,39.88771802,25 Years and 4 Months,Yes,61.15948619,,High_spent_Medium_value_payments,484.0633567,0,0.551,-0.8814,-0.5895,0.1783,1.2222 -0x39a9,CUS_0x2847,August,49,840-37-8707,Journalist,97515.78,8066.315,5,1072,15.28836175,0,,10.23350182,10.12268994,9.15,5,Standard,176.0249217,29.69236104,,Yes,0,561.9166512,High_spent_Large_value_payments,904.6523098,0,-0.4018,0.208,-0.5906,-2.2449,-1.0398 -0x39b5,CUS_0xb9ca,August,39,559-39-3779,Accountant,69847.44,6020.62,10,8,28.88954781,6,"Auto Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",37.19766512,26,19.47,14,Bad,3413.05,34.69485052,5 Years and 5 Months,Yes,1578.755789,212.5680128,High_spent_Medium_value_payments,366.4081173,0,-0.1413,1.6822,-0.7574,1.9861,0.8568 -0x39c1,CUS_0xc02f,August,22,603-89-2856,_______,124033.96,,0,4,11.28836175,4,"Credit-Builder Loan, Student Loan, Home Equity Loan, and Payday Loan",0.930711703,3,10.9,1,Good,574.88,28.45338153,,No,264.3068223,998.2594665,Low_spent_Large_value_payments,477.3875055,0,-0.5454,-0.1762,-0.9968,0.9661,0.9064 -0x39cd,CUS_0x2b52,August,80,140-37-8162,Doctor,88778.4,7635.2,3,7,8,4,"Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",,8,4.17,8,Standard,44.85,38.64339139,26 Years and 2 Months,Yes,295.31375,234.7524496,High_spent_Medium_value_payments,483.4538005,0,0.7728,-0.8861,-1.2677,1.4195,-0.4881 -0x39d9,CUS_0xc683,August,26,246-48-2462,Writer,36901.31,,8,5,18,1,Debt Consolidation Loan,17.92517696,14,5.2,3,_,89.61841402,31.32847286,18 Years and 5 Months,NM,27.97352036,113.0867626,High_spent_Medium_value_payments,417.1149304,0,-0.6767,0.1514,-0.0777,0.4993,1.394 -0x39e5,CUS_0x45f8,August,56,137-75-8833,Musician,30594.51,,3,3,20,3,"Mortgage Loan, Payday Loan, and Debt Consolidation Loan",,23,8.57,3,_,1277.91,34.51644231,32 Years and 5 Months,NM,42011,31.04428296,High_spent_Medium_value_payments,396.990604,0,0.729,-0.012,0.5077,0.8683,-0.7389 -0x39f1,CUS_0xa872,August,32,247-23-2005,Doctor,79837.02,6414.085,2,7,10,1,Payday Loan,5.67794007,5,8.72,4,Good,585.77,25.87691288,32 Years and 10 Months,No,66.05806321,536.6481085,Low_spent_Small_value_payments,328.7023283,0,0.2831,0.8406,0.9172,-0.9335,-0.3099 -0x39fd,CUS_0xa81d,August,23,535-07-2524,Media_Manager,82093.52,6574.126667,8,5,5.288361749,4,"Payday Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",14.45488771,,3.4,1,_,825.25,36.58825751,20 Years and 3 Months,No,80080,605.5174875,High_spent_Medium_value_payments,532.998825,0,-1.6872,0.3119,0.8083,-0.9595,0.2125 -0x3a09,CUS_0x89be,August,28,625-92-0732,Engineer,38073.6,3048.8,10,6,20,5,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",34.22382902,20.3461422,10.79,9,Standard,1860.11526,31.97796183,9 Years and 10 Months,NM,143.8996853,,High_spent_Large_value_payments,377.6364054,0,0.0765,-0.5504,-0.6689,1.5486,0.7305 -0x3a15,CUS_0x382f,August,20,601-28-4815,Entrepreneur,9889.575,977.13125,10,10,17,2,"Debt Consolidation Loan, and Home Equity Loan",40.30822618,17.98439081,19.27,11,Bad,2458.274608,27.09376868,18 Years and 10 Months,Yes,12.10055193,54.61151175,Low_spent_Small_value_payments,321.0010613,0,0.2846,1.011,0.267,-1.7434,1.8201 -0x3a21,CUS_0x3435,August,19,845-16-5003,Lawyer,29840.22,2636.685,8,9,30.06745738,7,"Payday Loan, Payday Loan, Auto Loan, Not Specified, Personal Loan, Not Specified, and Personal Loan",20.60966286,,27.19,10,Bad,3298.529588,28.86888921,2 Years and 8 Months,Yes,114.6680098,,Low_spent_Medium_value_payments,297.9091894,0,-0.3907,0.2003,-0.2836,-0.148,1.102 -0x3a2d,CUS_0x3c47,August,55,#F%$D@*&8,Media_Manager,28836.92,,5,2,6,0,,,19,10.82,5,Good,1093.417417,24.13302868,27 Years and 11 Months,No,0,195.3129556,Low_spent_Large_value_payments,359.6154878,0,-1.4791,1.4372,0.246,-0.5023,-1.6941 -0x3a39,CUS_0xfe4,August,29,075-63-9119,Writer,110575.72,9009.643333,7,3,6,7,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",17.11136109,,18.53,10,Standard,788.59,39.10226184,17 Years and 9 Months,Yes,540.0722378,354.855801,High_spent_Small_value_payments,266.0362944,0,0.3211,1.0375,-1.0318,-1.3104,1.3098 -0x3a45,CUS_0x3ee8,August,26,961-11-6259,Journalist,146351.36,12267.94667,6,7,20,4,"Personal Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",21.10428912,15,8.56,5,Standard,501.57,26.78280011,19 Years and 4 Months,Yes,262.7103513,243.1142681,High_spent_Large_value_payments,960.9700472,0,-1.7487,0.563,-0.5903,-1.0984,0.6146 -0x3a51,CUS_0x6563,August,49,655-12-3066,Doctor,25877.95,1860.495833,7,3,12,1,Auto Loan,,23.23071208,13.43,0,Standard,1268.853387,31.58861017,,Yes,12.04184889,60.55489515,Low_spent_Large_value_payments,383.4528393,0,0.5997,0.4745,0.4972,-1.3358,1.1982 -0x3a5d,CUS_0x9619,August,40,038-49-9042,Doctor,86290.14,7381.845,4,3,8,3,"Payday Loan, Payday Loan, and Not Specified",8.01266426,5,4.53,,Standard,841.82,28.49216302,21 Years and 0 Months,NM,173.9475969,,Low_spent_Small_value_payments,92.1036524,0,-0.8813,1.4486,-0.185,0.9727,-0.4041 -0x3a69,CUS_0x37d2,August,51,102-42-9445,Writer,29044.29,2438.3575,5,6,12,0,,0,2,-2.31,4,Good,1078.8,29.51998056,21 Years and 0 Months,No,56524,199.6582845,Low_spent_Small_value_payments,334.1774655,0,1.963,-0.3859,0.214,1.0517,1.3704 -0x3a75,CUS_0x67e,August,21,858-07-4707,Manager,30783.88,,5,6,16,2,"Credit-Builder Loan, and Auto Loan",20.01087089,16,15.73,6,_,960.38,34.97663971,11 Years and 3 Months,Yes,35.78805542,41.0508348,High_spent_Medium_value_payments,445.3934431,0,-1.6221,-0.5802,0.7458,0.8131,1.8768 -0x3a81,CUS_0xa79d,August,45,523-24-1812,Media_Manager,18759.61,1455.300833,8,6,35.06745738,9,"Home Equity Loan, Mortgage Loan, Personal Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Not Specified",34.44472461,21.82802568,29.97,10,Bad,5683.383649,39.58818888,1 Years and 2 Months,Yes,87.18813971,129.6384044,!@9#%8,181.9832513,0,-0.3668,-0.4453,-0.1212,-0.3944,-0.7332 -0x3a8d,CUS_0xacd4,August,37,988-25-1226,Manager,20651.43,1610.9525,10,5,22,4,"Payday Loan, Payday Loan, Student Loan, and Auto Loan",31.63090116,23.33758703,7.98,12,_,2272.364197,28.11458551,13 Years and 5 Months,Yes,46.77407906,13.07994417,High_spent_Large_value_payments,341.2412268,0,0.2638,1.2652,-0.5912,-0.007,0.8087 -0x3a99,CUS_0xaea1,August,36,260-78-9839,Doctor,81497.12,6540.426667,7,6,32,6,"Home Equity Loan, Payday Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",32.36986811,18.65365036,7.8,8,Bad,3416.841151,29.6749331,0 Years and 9 Months,Yes,240.7126201,262.6879084,High_spent_Small_value_payments,410.6421382,0,-0.1585,-2.0812,0.35,-0.5463,1.2185 -0x3aa5,CUS_0x4eea,August,43,316-42-8917,Mechanic,35205.24,,3,7,6,1,Mortgage Loan,3.07314608,5,8.85,5,Good,851.4,23.63759112,17 Years and 9 Months,No,23.23542982,166.6404328,Low_spent_Small_value_payments,402.7011374,0,-0.1787,-0.5083,-1.19,1.0238,0.167 -0x3ab1,CUS_0x8c1d,August,27,916-54-9792,Lawyer,121948.8,9983.4,7,3,7,2,"Auto Loan, and Payday Loan",33.99855668,23.27139105,16.56,9,Standard,571.3611108,38.43291372,19 Years and 9 Months,Yes,193.5377259,170.4806678,High_spent_Large_value_payments,874.3216063,0,-0.0623,-0.0552,-0.1109,-2.1382,-0.9596 -0x3abd,CUS_0x36f9,August,51,992-38-5349,Developer,82065.16,6771.763333,5,86,2.288361749,2,"Not Specified, Home Equity Loan, and Auto Loan",8.875020238,10,5.55,6,Good,92.7514508,24.72681541,23 Years and 6 Months,No,180.3406067,836.9540227,Low_spent_Large_value_payments,396.2818436,0,0.2166,0.4871,1.5042,-1.7554,-0.1942 -0x3ac9,CUS_0xbfa0,August,32,363-38-1656,Engineer,39564.52,3355.541142,1,6,0.288361749,0,Mortgage Loan,0.072503265,4,1.72,8,Good,231.5970173,38.89041357,,No,176.5184288,500.3778265,High_spent_Medium_value_payments,500.8163629,0,0.2585,0.5569,-0.1623,0.4104,1.2976 -0x3ad5,CUS_0x4de7,August,25,958-58-5648,Media_Manager,86468.68,7434.723333,3,5,1,4,"Student Loan, Payday Loan, Student Loan, and Not Specified",0,0,1.69,3,Good,212.49,38.80524235,24 Years and 0 Months,No,227.2462942,391.3337632,Low_spent_Small_value_payments,414.8922758,0,1.0118,-0.2073,1.4817,0.9018,-1.0321 -0x3ae1,CUS_0x4f4d,August,47,200-59-6688,Journalist,124052.22,10290.685,2,6,2,3,"Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",,3.438367314,17.31,4,Good,357.9477259,38.85296964,22 Years and 3 Months,No,179.0755493,352.7083068,High_spent_Medium_value_payments,747.2846438,0,0.7074,0.4603,-2.459,0.1839,2.9762 -0x3aed,CUS_0xc090,August,46,773-65-0430,Scientist,45421.38,,4,10,18.06745738,2,"Debt Consolidation Loan, and Home Equity Loan",12.41754464,8,16.34,12,Standard,2856.100954,32.05474497,,Yes,49.80258503,,Low_spent_Small_value_payments,100.0359665,0,0.5391,0.555,0.0779,-0.3899,-0.4239 -0x3af9,CUS_0x74d5,August,26,432-94-4099,Lawyer,20821.8,2010.15,5,6,9,2,"Payday Loan, and Credit-Builder Loan",18.51952477,10.61983356,2.23,1992,Good,1606.535053,37.17426255,27 Years and 4 Months,No,21.18969696,,Low_spent_Small_value_payments,247.8316096,0,-0.4429,-0.6812,-0.6169,-0.8647,-0.2857 -0x3b05,CUS_0x59cf,August,34,037-17-2230,Writer,48212.8,3877.733333,7,7,18,4,"Mortgage Loan, Not Specified, Not Specified, and Mortgage Loan",22.20913994,18,8.49,6,_,1197.02,32.4584231,18 Years and 2 Months,Yes,109.7363802,157.4165383,!@9#%8,370.6204149,0,0.2581,0.0736,-0.4415,-1.1272,1.0165 -0x3b11,CUS_0x8ee3,August,21,356-40-2929,Engineer,42888.45,3654.0375,5,2,11.28836175,0,Mortgage Loan,0,3,8.44,9,Good,121.0710976,28.03130454,33 Years and 6 Months,No,26.72599658,467.6152588,High_spent_Large_value_payments,536.7052475,0,1.8078,-0.1308,-0.8493,0.5094,1.863 -0x3b1d,CUS_0x3708,August,27,433-78-1443,Writer,59304.08,,9,5,25,7,"Auto Loan, Auto Loan, Mortgage Loan, Not Specified, Payday Loan, Personal Loan, and Payday Loan",20.83671639,5.817774134,11.67,6,Standard,1866.793857,32.7178793,16 Years and 10 Months,Yes,276.2558424,10000,Low_spent_Medium_value_payments,315.1786008,0,0.2534,-0.1285,-1.4321,0.3463,-0.7531 -0x3b29,CUS_0xafda,August,38,447-90-3330,Musician,58865.88,4544.158916,9,7,25,6,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",22.6499906,14,15.67,11,Standard,1340.92,31.71196505,20 Years and 6 Months,NM,294.6765059,96.63516956,High_spent_Large_value_payments,389.2684086,0,-0.4794,0.4708,1.2048,-0.866,0.4579 -0x3b35,CUS_0xc600,August,36,433-59-0145,Media_Manager,16192.1,,10,9,31.95700519,9,"Mortgage Loan, Not Specified, Personal Loan, Mortgage Loan, Auto Loan, Not Specified, Not Specified, Payday Loan, and Auto Loan",41.33870601,21.56206305,5.63,12,Bad,2291.29445,24.35585119,8 Years and 3 Months,Yes,1388.141453,49.3167228,Low_spent_Small_value_payments,259.9256218,0,-0.5928,-0.4951,-2.4529,-0.1112,-0.9789 -0x3b41,CUS_0x9c30,August,51,868-57-3911,_______,84031.02,7021.585,5,3,1,0,,6.680752192,9,4.48,3,Good,1207.689971,39.41384074,26 Years and 0 Months,No,0,242.0870995,High_spent_Medium_value_payments,742.0926205,0,-0.9601,-0.5146,1.7209,-1.8571,-1.2645 -0x3b4d,CUS_0xb904,August,27,463-72-9086,Mechanic,46092.27,4134.0225,7,5,27,4,"Mortgage Loan, Not Specified, Not Specified, and Payday Loan",32.81765089,23.15959643,4.92,16,_,1730.366691,24.74973118,13 Years and 9 Months,Yes,114.3106707,169.1904829,High_spent_Medium_value_payments,379.9010964,0,0.7048,0.7979,0.0979,-0.5517,0.1665 -0x3b59,CUS_0x6a68,August,38,#F%$D@*&8,Teacher,69197.78,,4,4,18,7,"Home Equity Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Personal Loan",29.84595024,20,16.61,8,Standard,282.06,31.12584661,11 Years and 11 Months,NM,345.2172695,117.2410453,High_spent_Small_value_payments,350.8898518,0,0.2031,-0.8273,1.1748,-1.1383,0.1944 -0x3b65,CUS_0x45f4,August,53,522-60-2083,Writer,70741.04,5917.086667,1,5,7.288361749,0,,,3,2.85,1,_,799.89,28.0088149,33 Years and 6 Months,No,0,515.8903772,High_spent_Large_value_payments,735.7557505,0,2.5538,-1.5985,-0.0397,0.7187,1.5524 -0x3b71,CUS_0x4b9,August,20,200-47-7297,Musician,20414.37,,6,648,19.06745738,4,"Auto Loan, Home Equity Loan, Not Specified, and Auto Loan",29.2806702,18.60313199,6.66,14,Bad,1811.226658,26.49922138,6 Years and 2 Months,Yes,55.14451408,,Low_spent_Small_value_payments,319.5369075,0,-0.8184,-0.2242,-0.304,-0.4194,-1.3971 -0x3b7d,CUS_0x2657,August,50,993-35-7624,Scientist,111395.61,9041.9675,5,5,10.28836175,4,"Student Loan, Auto Loan, Payday Loan, and Mortgage Loan",,11,11.27,8,Good,939.87,40.09740786,28 Years and 10 Months,No,329.7035043,487.9384269,High_spent_Large_value_payments,746.4922798,0,-0.6902,1.2896,0.3316,0.1849,-0.7746 -0x3b89,CUS_0xc650,August,50,517-42-5927,Musician,118879.68,9641.64,5,3,15,6,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",18.07279487,17,10.06,5,_,204.8249383,25.61966325,18 Years and 0 Months,Yes,330.621437,415.3318233,High_spent_Medium_value_payments,507.014228,0,2.4177,-1.0881,0.1005,-1.4185,-0.6293 -0x3b95,CUS_0xb843,August,28,009-79-6604,Writer,29344.53,2562.3775,5,7,10,2,"Auto Loan, and Credit-Builder Loan",14.26220043,11,8.19,7,Standard,678.4739752,27.73006454,12 Years and 6 Months,Yes,24.67538997,,High_spent_Medium_value_payments,395.5224269,0,1.0649,-0.498,1.0722,-0.3408,-0.1629 -0x3ba1,CUS_0x46d,August,33,502-06-2130,Musician,17770.48,,4,5,3.288361749,2,"Home Equity Loan, and Mortgage Loan",0,3,1.02,1,Good,43.54,22.56812207,23 Years and 8 Months,No,19.47418561,535.1088848,High_spent_Small_value_payments,302.5417239,0,-0.222,0.3194,-1.2872,-0.4517,-0.265 -0x3bad,CUS_0x8e3,August,41,463-96-1251,Accountant,39460.01,,2,6,2431,4,"Personal Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",5.564429457,7,1.5,7,Good,1180.08,33.24444463,30 Years and 2 Months,No,82.4514196,23.32860467,High_spent_Large_value_payments,437.2533924,0,-1.5327,0.0077,0.4195,-0.0516,0.7989 -0x3bb9,CUS_0x1037,August,45,230-22-9583,Accountant,15989.085,,5,4,2,4,"Credit-Builder Loan, Auto Loan, Auto Loan, and Mortgage Loan",17.81487139,15,0.5,3,Good,585.3516496,40.69769935,19 Years and 9 Months,No,33.79702063,89.43614789,Low_spent_Small_value_payments,284.3801149,0,0.9449,-0.4669,0.3101,1.2757,-0.0569 -0x3bc5,CUS_0xad38,August,37,784-65-5498,Entrepreneur,54481.56,4453.13,7,6,16.06745738,7,"Mortgage Loan, Payday Loan, Payday Loan, Home Equity Loan, Auto Loan, Personal Loan, and Auto Loan",,,2,9,Bad,4422.585193,26.43503417,6 Years and 4 Months,Yes,238.7902986,162.9814673,High_spent_Medium_value_payments,266.8209462,0,0.1896,-1.6236,-0.9894,-1.5431,-1.6055 -0x3bd1,CUS_0xc490,August,41,760-30-1179,Writer,42776.51,3278.709167,4,4,3,0,,,11,1.45,2,Good,152.77,35.26971831,21 Years and 11 Months,No,0,,Low_spent_Large_value_payments,389.1038619,0,1.0015,-0.0061,1.381,2.0726,-0.7706 -0x3bdd,CUS_0x4ea9,August,41,#F%$D@*&8,Entrepreneur,36716.18,,8,7,4033,5,"Student Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,18.83281326,8.84,10,Bad,3428.472115,31.60373119,13 Years and 10 Months,Yes,94.41682533,,!@9#%8,218.4064885,0,-0.5457,-2.7227,-1.0735,2.0296,1.4404 -0x3be9,CUS_0x3644,August,18,623-91-4031,Accountant,61719.9,,7,5,20.06745738,9,"Personal Loan, Payday Loan, Home Equity Loan, Not Specified, Auto Loan, Not Specified, Student Loan, Debt Consolidation Loan, and Credit-Builder Loan",,21,26.39,13,Bad,3867.190954,25.69233864,7 Years and 0 Months,Yes,354.7672103,,High_spent_Small_value_payments,148.6053934,0,-0.9114,1.5327,-0.5588,0.0578,0.8145 -0x3bf5,CUS_0x9ae6,August,39,570-80-1811,Doctor,14293.11,1112.0925,6,9,25.06745738,6,"Payday Loan, Home Equity Loan, Not Specified, Mortgage Loan, Personal Loan, and Home Equity Loan",,23.6610285,20.61,10,Bad,4237.216101,38.68850815,13 Years and 3 Months,Yes,46.06385913,61.55270747,High_spent_Small_value_payments,236.8723955,0,0.8746,1.4657,0.172,0.7107,-0.6029 -0x3c01,CUS_0x2728,August,27,475-71-7004,Teacher,39005.96,3380.496667,10,10,17.88954781,6,"Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, and Payday Loan",29.87180763,15,15.4,205,Bad,2845.49,25.00917831,12 Years and 11 Months,Yes,1426.279235,70.93233138,High_spent_Medium_value_payments,396.508019,0,0.1174,0.0727,0.2757,0.003,0.7969 -0x3c0d,CUS_0xb513,August,38,544-88-4719,Scientist,29143.88,,8,5,14,3,"Payday Loan, Auto Loan, and Credit-Builder Loan",14.79563536,13,8.09,9,Standard,518.69,23.99869374,15 Years and 11 Months,No,45.60702455,263.8250231,!@9#%8,206.333619,0,-0.3826,1.1786,-1.1835,1.4737,-1.0275 -0x3c19,CUS_0x1f60,August,34,526-97-2287,Engineer,34266.08,3038.506667,8,9,21.88954781,6,"Payday Loan, Personal Loan, Payday Loan, Mortgage Loan, Not Specified, and Debt Consolidation Loan",14.18833004,12.04866707,10.07,7,_,2010.761217,27.51829518,11 Years and 5 Months,Yes,1485.327455,305.515721,Low_spent_Small_value_payments,108.6774099,0,1.1674,0.2738,-1.7879,-1.4358,1.1401 -0x3c25,CUS_0x6edb,August,18,264-57-9830,Journalist,46243.56,4083.63,4,5,13,0,,90,88,15.79,11,Standard,1343.538498,24.74004294,30 Years and 0 Months,Yes,0,85.48894748,High_spent_Medium_value_payments,581.6239625,0,0.3019,1.758,-2.658,0.0678,-0.6951 -0x3c31,CUS_0x5ff8,August,25,202-67-9333,Accountant,84880.65,7333.3875,5,6,14,0,,18.23837884,11,2.23,9,Standard,1344.85,29.32362057,,No,0,199.5300969,Low_spent_Medium_value_payments,813.8086531,0,-0.7969,0.1996,-1.1638,0.5643,1.8112 -0x3c3d,CUS_0x19cc,August,80,077-67-6966,Entrepreneur,77257.64,,0,4,7,2,"Credit-Builder Loan, and Not Specified",10.40761735,9,3.67,4,_,183.7813288,28.69734447,28 Years and 9 Months,No,77.9707443,188.3412005,High_spent_Small_value_payments,645.9584547,0,-0.5961,0.4736,-0.1128,-0.5985,1.8232 -0x3c49,CUS_0x68a8,August,28,517-09-6321,Entrepreneur,8227.855,656.6545833,6,8,32.95700519,7,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Personal Loan, and Not Specified",,23.50224652,14.6,9,Bad,3277.694996,26.89414069,,Yes,1351.496309,61.35377376,Low_spent_Small_value_payments,221.7650063,0,-0.9149,-1.198,-0.8463,-0.5621,-0.6302 -0x3c55,CUS_0xe36,August,29,671-45-7622,Mechanic,46264.71,,8,9,27.88954781,100,"Mortgage Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",25.20005817,12,3.34,10,Bad,3025.1,31.95657064,12 Years and 6 Months,Yes,1572.512849,,High_spent_Small_value_payments,251.3074753,0,1.5307,-0.4026,1.1962,1.1745,0.5092 -0x3c61,CUS_0x3f16,August,48,045-47-2495,Media_Manager,28942.3,,8,3,13,2,"Mortgage Loan, and Student Loan",16.12269901,,5.08,3,Standard,602.4496595,27.6662691,31 Years and 8 Months,Yes,41.83777445,85.40432099,High_spent_Medium_value_payments,354.4034409,0,-0.3836,0.0086,1.9994,0.8636,-0.3451 -0x3c6d,CUS_0x2692,August,38,358-88-9676,Accountant,20758.37,,0,5,12.06745738,4,"Home Equity Loan, Not Specified, Not Specified, and Not Specified",13.61669482,8,9.91,7,_,1551.650954,34.22732683,31 Years and 8 Months,No,53.70497001,94.37317898,Low_spent_Medium_value_payments,251.0879797,0,-0.1368,-0.6656,-1.0826,0.4417,-0.4153 -0x3c79,CUS_0x4edb,August,48,419-12-1965,Lawyer,14303.125,,555,3,20,3,"Student Loan, Debt Consolidation Loan, and Mortgage Loan",12.07234203,9,11.18,7,Standard,819.71,35.68750396,27 Years and 11 Months,No,27.74625367,125.078735,Low_spent_Small_value_payments,242.8677196,0,-0.6868,-0.3415,-0.9596,-1.0114,-0.7286 -0x3c85,CUS_0xb0e4,August,55,022-68-0160,Media_Manager,43307.12,3864.926667,0,4,11.28836175,2,"Personal Loan, Not Specified, and Payday Loan",,10,0.95,6,Good,301.82,36.12599903,24 Years and 2 Months,No,63.52164946,576.3132087,High_spent_Medium_value_payments,416.5952695,0,-0.9353,-1.236,1.4848,1.2356,-0.0122 -0x3c91,CUS_0x89ca,August,30,152-28-1148,Journalist,45002.48,3485.206667,4,7,2,1,Student Loan,,19,,1,Standard,1127.122936,35.5410268,18 Years and 4 Months,No,26.13018929,126.9896201,High_spent_Medium_value_payments,461.4719517,0,-0.3455,0.0708,-1.526,-0.7851,-2.0233 -0x3c9d,CUS_0xa090,August,36,301-85-8354,Engineer,9158.03,822.124562,7,9,27,2,"Debt Consolidation Loan, and Credit-Builder Loan",41.4061774,22,1.19,9,Bad,2495.15,25.03028053,13 Years and 5 Months,Yes,54.26316381,28.20866325,High_spent_Small_value_payments,304.8896943,0,-0.4822,-0.9222,0.6777,-0.2098,0.4233 -0x3ca9,CUS_0x37f4,August,23,871-18-4847,Engineer,69941.88,,5,5,25,7,"Personal Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Payday Loan, and Personal Loan",15.1855273,9.378841964,9.84,9,Standard,2142.917227,32.31727063,15 Years and 8 Months,NM,403.3879319,354.5502295,High_spent_Small_value_payments,69.51083861,0,1.0754,0.8825,0.4729,-0.7822,-1.2986 -0x3cb5,CUS_0x9ec9,August,24,946-36-0628,Doctor,47178.46,4126.538333,6,5,18,0,,90,3253,1.09,6,_,112.54,26.06858319,30 Years and 2 Months,NM,0,294.5143573,Low_spent_Small_value_payments,408.139476,0,-0.3757,1.0159,-1.4705,-0.5752,1.8597 -0x3cc1,CUS_0xea6,August,31,991-58-6499,Lawyer,42772.49,3664.374167,4,4,2,4,"Personal Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",11.63291148,10,1.26,6,Good,1170.0662,28.34498847,31 Years and 10 Months,No,140.9196844,,!@9#%8,91.98577992,0,-1.0211,-0.1272,-0.1154,-0.3601,-0.7425 -0x3ccd,CUS_0xae8,August,41,433-92-1005,Teacher,16716.53,,10,8,17.95700519,8,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",29.79772303,18.71799281,18.51,8,Bad,4890.837104,35.05833808,7 Years and 0 Months,Yes,1403.145818,104.5737347,!@9#%8,203.1344947,0,0.2494,0.4139,0.424,0.1071,0.3271 -0x3cd9,CUS_0x82fd,August,22,543-39-6167,Engineer,51333.99,3762.49524,8,7,20,5,"Home Equity Loan, Payday Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",40.00874531,23,0.59,2081,Bad,2457.23,34.54276675,18 Years and 4 Months,Yes,383.17489,109.7703586,High_spent_Medium_value_payments,374.5752616,0,-0.2,0.5902,1.4755,-1.1505,-0.0747 -0x3ce5,CUS_0xb761,August,39,528-98-1987,Scientist,30450.84,,6,7,8,3,"Debt Consolidation Loan, Auto Loan, and Debt Consolidation Loan",21.2536093,15,11.98,1,Standard,203.69,24.11809767,20 Years and 9 Months,No,49.39474088,44.10871223,!@9#%8,397.1535469,0,-0.7908,-0.0984,-0.5525,1.2529,-0.7491 -0x3cf1,CUS_0x6ec9,August,23,941-59-4410,Mechanic,41812.32,,9,9,34.06745738,3,"Personal Loan, Payday Loan, and Home Equity Loan",28.89501108,12.59175747,10.67,9,Standard,3066.564644,35.13623073,,Yes,68.41077216,103.7253364,High_spent_Small_value_payments,424.8796035,0,-0.6522,1.916,0.2076,0.2764,0.6088 -0x3cfd,CUS_0x3486,August,58,451-36-9674,Scientist,22116.64,,4,4,17,2,"Personal Loan, and Debt Consolidation Loan",17.33395187,16,0.91,5,Standard,973.2059589,28.86830958,22 Years and 5 Months,No,26.81451645,11081.21741,High_spent_Large_value_payments,355.4396162,0,0.451,-1.3181,-1.0777,0.8169,-0.2557 -0x3d09,CUS_0x507d,August,32,986-81-4930,Teacher,34668.59,,6,3,10,3,"Not Specified, Auto Loan, and Credit-Builder Loan",14.6884558,,8.13,7,Standard,266.1743332,27.20909503,21 Years and 5 Months,No,72.26613726,59.25402334,High_spent_Large_value_payments,431.6282174,0,1.5168,-0.941,1.047,-0.4718,0.5385 -0x3d15,CUS_0x3c96,August,28,944-78-8108,Scientist,48181.11,3888.0925,8,8,34,4,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",9.699142966,10,13.08,9,Standard,2623.14,31.3414121,6 Years and 10 Months,NM,82.03861836,33.46671899,High_spent_Large_value_payments,513.3039127,0,0.003,0.1228,-0.3471,-1.9852,2.8436 -0x3d21,CUS_0x9021,August,25,133-36-7095,Journalist,33284.76,2775.73,9,5,16.06745738,9,"Not Specified, Not Specified, Not Specified, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Mortgage Loan",,22,2.42,8,_,2600.640954,36.31641892,17 Years and 4 Months,Yes,228.2386969,229.7375547,Low_spent_Large_value_payments,62.87646043,0,-1.5237,-0.7505,-0.2524,0.7987,-0.1319 -0x3d2d,CUS_0x6ab3,August,40,816-77-1754,Teacher,106543.35,7600.080755,6,6,18.28836175,2,"Payday Loan, and Student Loan",,9,10.92,8,Standard,491.07,38.15811197,14 Years and 2 Months,Yes,1145.506206,,Low_spent_Medium_value_payments,490.0825118,0,4.0451,-0.2512,-0.956,-1.481,-1.2232 -0x3d39,CUS_0x6938,August,29,084-45-4077,Developer,116687.92,9747.993333,5,1414,11,4,"Personal Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",19.2493384,16.95242722,3.4,4,Good,1114.494261,32.55658417,21 Years and 2 Months,No,342.4945666,815.185261,Low_spent_Medium_value_payments,97.11950578,0,-0.5675,-0.339,-1.8593,1.1386,0.6652 -0x3d45,CUS_0x7f3d,August,28,233-97-3907,Engineer,17450,1582.166667,1201,3,8,3,"Personal Loan, Mortgage Loan, and Student Loan",8.539630083,8,18.57,10,Standard,1491.56,25.84459106,,Yes,38.57893012,140.4335336,Low_spent_Small_value_payments,269.204203,0,1.4458,0.1901,-0.7145,1.0286,-1.686 -0x3d51,CUS_0x72a0,August,26,#F%$D@*&8,Media_Manager,7006.52,,8,5,18.06745738,3,"Auto Loan, Debt Consolidation Loan, and Mortgage Loan",33.52272178,20,1.82,6,Bad,1586.750954,36.1350503,12 Years and 4 Months,Yes,16.98060297,13.02070212,High_spent_Large_value_payments,264.4660736,0,-0.6664,-0.6927,-0.0824,1.0018,-0.9037 -0x3d5d,CUS_0x12f2,August,25,006-09-7131,Writer,59237.96,4693.496667,10,7,18,8,"Auto Loan, Payday Loan, Payday Loan, Payday Loan, Not Specified, Mortgage Loan, Not Specified, and Not Specified",36.09037527,26.13725596,2.3,15,Bad,1812.152783,30.69496748,13 Years and 3 Months,Yes,319.1632017,64.98296235,High_spent_Large_value_payments,325.2035026,0,0.4858,-1.6305,-0.436,-1.0846,0.7759 -0x3d69,CUS_0x598d,August,49,199-80-5451,Lawyer,35208.9,,4,7,17,1,Not Specified,,8,7.88,9,_,1295.67,28.62728031,32 Years and 6 Months,Yes,17.97472812,197.0016601,Low_spent_Small_value_payments,348.9311118,0,-1.1806,0.5768,0.2351,0.192,1.0766 -0x3d75,CUS_0x5480,August,30,102-88-4366,Scientist,64493.46,5026.587584,6,7,6,2,"Payday Loan, and Not Specified",,,14.83,2,Standard,146.6432704,25.54858746,25 Years and 10 Months,NM,449.956128,121.0446725,!@9#%8,622.1895526,0,1.0293,0.3178,0.4292,0.888,-0.2868 -0x3d81,CUS_0xaf2a,August,35,103-33-1315,Musician,17654.72,,8,8,30.88954781,100,"Mortgage Loan, Payday Loan, and Payday Loan",,22.47961612,7.61,9,_,1622.591826,36.62562175,18 Years and 8 Months,Yes,1353.942161,145.3510533,Low_spent_Small_value_payments,213.6993713,0,0.3833,-0.5695,-0.9595,-0.1912,0.167 -0x3d8d,CUS_0x1437,August,46,865-46-7860,Scientist,127921.84,10899.15333,7,6,17.28836175,2,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",23.50884138,20,13.37,946,Standard,927.9121961,37.52672858,29 Years and 11 Months,Yes,226.7458196,1022.78467,Low_spent_Large_value_payments,597.6240164,0,0.9812,-1.3478,0.7363,0.2257,1.0225 -0x3d99,CUS_0x9894,August,54,#F%$D@*&8,Writer,120789.44,,5,6,8.288361749,0,,8.768565083,10,8.98,2,Standard,1015.79,37.80301388,26 Years and 10 Months,Yes,0,563.5909385,High_spent_Large_value_payments,1104.025189,0,0.3351,-0.5223,-1.2667,-0.9613,-0.2479 -0x3da5,CUS_0x907c,August,59,609-89-1800,Journalist,15048753,,2,5,10,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",10.03297626,12,9.33,3,Good,590.0781876,28.42939464,32 Years and 9 Months,No,97.75807094,,!@9#%8,174.6002117,0,-0.8086,-0.0991,0.0485,-1.569,-0.0401 -0x3db1,CUS_0x329f,August,37,435-99-9088,Journalist,34425.62,2750.801667,7,6,18,3,"Personal Loan, Student Loan, and Payday Loan",24.84823041,17,9.99,3,Standard,29.9,33.6279863,21 Years and 5 Months,No,56.78964184,,Low_spent_Small_value_payments,208.4194977,0,-1.2255,1.6688,0.8718,-0.3221,0.0579 -0x3dbd,CUS_0x82f8,August,31,020-47-1922,_______,34336.93,,7,4,8,3,"Auto Loan, Payday Loan, and Student Loan",11.847461,9,8.53,1,_,554.4531541,39.25506074,26 Years and 0 Months,No,396.4200839,250.8881223,Low_spent_Small_value_payments,274.836341,0,-0.3721,-0.1479,-0.3798,0.684,-0.8187 -0x3dc9,CUS_0xa2c0,August,46,023-14-5348,Engineer,131890.95,10709.9125,1,3,7,4,"Not Specified, Personal Loan, Mortgage Loan, and Personal Loan",,7,9.34,4,Good,244.18,38.34520129,16 Years and 4 Months,No,320.6760011,341.4914609,High_spent_Medium_value_payments,658.823788,0,0.3594,1.2268,-0.4026,-0.1973,-1.0798 -0x3dd5,CUS_0x64c0,August,18,644-67-7119,Media_Manager,9737.955,,7,10,30.06745738,4,"Payday Loan, Payday Loan, Auto Loan, and Home Equity Loan",38.03238276,17.30543701,4.28,10,Bad,2358.858541,32.75890018,10 Years and 11 Months,Yes,30.51995822,81.88212026,Low_spent_Small_value_payments,216.1272586,0,0.803,-0.7769,0.3197,-1.236,-0.6326 -0x3de1,CUS_0x43c2,August,43,104-50-6377,Lawyer,149616.12,12713.01,3,7,3,2,"Personal Loan, and Mortgage Loan",,2.358994028,3.13,1393,Good,721.7903807,30.7248902,15 Years and 11 Months,No,183.3830942,454.9945537,High_spent_Medium_value_payments,882.9233522,0,-0.5428,-0.181,0.1219,0.4606,-1.4933 -0x3ded,CUS_0x8a90,August,32,717-70-6732,Entrepreneur,69699.66,5538.305,3,6,5,1,Debt Consolidation Loan,,,8.84,3,_,485.36,40.30394642,19 Years and 9 Months,Yes,57.27662841,273.4842962,Low_spent_Medium_value_payments,503.0695754,0,-1.1004,0.3618,0.372,0.6289,-2.084 -0x3df9,CUS_0x7943,August,18,775-20-0390,Lawyer,59044.74,4875.395,8,9,34.95700519,9,"Personal Loan, Auto Loan, Not Specified, Not Specified, Credit-Builder Loan, Payday Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",24.9624551,,15.09,17,Bad,4218.649693,31.1504116,13 Years and 9 Months,Yes,1644.737828,,High_spent_Medium_value_payments,250.4556122,0,-0.0638,-0.1886,0.5984,-0.2214,0.3234 -0x3e05,CUS_0x71a,August,20,222-55-8494,Journalist,33077.82,,7,9,19.06745738,5,"Student Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,23.36709108,8.51,12,_,2036.398703,39.50581733,10 Years and 6 Months,Yes,124.2493886,108.6886819,!@9#%8,249.0901415,0,1.1303,-0.389,-1.0089,-1.3538,-0.1449 -0x3e11,CUS_0x6b15,August,30,#F%$D@*&8,Architect,88331.64,,8,5,4.288361749,0,,6.06171812,8,6.1,4,Good,791.33,28.45926313,29 Years and 10 Months,No,0,865.4675036,Low_spent_Medium_value_payments,580.8669574,0,1.7211,1.0514,0.402,0.1332,1.5615 -0x3e1d,CUS_0x1d15,August,35,721-59-8577,Architect,40206.26,3552.521667,3,3,15,1,Home Equity Loan,12.1295135,10,14.98,3,Standard,736.97,25.54330353,30 Years and 11 Months,NM,17.78734221,10000,Low_spent_Large_value_payments,300.4296736,0,0.2675,-0.3181,-0.3486,-1.8634,-0.6582 -0x3e29,CUS_0x6f31,August,46,970-95-8076,Entrepreneur,20460.96,1655.08,10,8,32.06745738,5,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,19,27.98,11,Bad,3314.844463,36.93106981,10 Years and 11 Months,Yes,57.97780814,11219.51113,High_spent_Medium_value_payments,279.9031485,0,0.4682,0.8494,-1.6747,-0.0872,0.8695 -0x3e35,CUS_0x11eb,August,80,032-85-4630,_______,62835.08,5464.256667,0,4,1,2,"Home Equity Loan, and Debt Consolidation Loan",,12,2.02,4,_,271.744814,34.58423425,33 Years and 3 Months,No,67.38407411,264.7324185,High_spent_Medium_value_payments,498.9703249,0,1.447,-0.0065,-2.7791,1.4591,-0.591 -0x3e41,CUS_0xbac7,August,18,523-63-2982,Mechanic,14628.59,,6,5,31,5,"Debt Consolidation Loan, Personal Loan, Student Loan, Personal Loan, and Auto Loan",,21,22.04,10,Bad,3299.1,37.23937616,12 Years and 4 Months,Yes,36.52054189,146.6014654,Low_spent_Small_value_payments,233.1829094,0,0.152,-1.105,0.095,0.3967,1.4902 -0x3e4d,CUS_0x89ec,August,40,535-97-5026,Lawyer,16138.98,1236.915,8,7,17.06745738,5,"Student Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",27.09502594,16.78291043,16.45,13,Standard,1640.100974,32.91078089,17 Years and 10 Months,Yes,44.32788927,24.7780194,High_spent_Medium_value_payments,277.8653034,0,-0.0339,0.9323,-0.7062,-0.5056,-1.1178 -0x3e59,CUS_0x29d2,August,40,393-54-2423,Engineer,34861.12,,7,6,4,0,,27.22807348,18,6.18,3,Good,748.76,29.18142155,,No,0,254.3124513,Low_spent_Medium_value_payments,290.096882,0,0.7092,-0.9172,-0.1934,1.6999,-1.4076 -0x3e65,CUS_0x8a56,August,36,869-67-4077,Engineer,53872.34,4565.361667,5,4,16,2,"Student Loan, and Not Specified",16.21144435,10.71012803,13.78,2,Standard,373.4257237,30.74598468,24 Years and 2 Months,Yes,82.63234144,188.3078296,High_spent_Medium_value_payments,435.5959956,0,-1.1055,0.1062,1.4684,0.7841,1.6403 -0x3e71,CUS_0xaa39,August,31,955-57-1867,Doctor,22530.69,1755.5575,5,6,5,100,,18.14650516,13,11.56,7,Standard,845.93,24.46423601,20 Years and 11 Months,Yes,0,40.396017,High_spent_Large_value_payments,375.159733,0,0.4766,1.7233,1.3478,0.9529,-0.9836 -0x3e7d,CUS_0x50af,August,49,325-47-4777,Developer,27311.97,,5,3,20,4,"Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",27.22308495,18,16.04,6,_,606.78,26.20613163,,Yes,88.73805411,93.74827604,Low_spent_Medium_value_payments,332.4134198,0,-0.2569,1.7208,0.3345,-0.5497,0.35 -0x3e89,CUS_0x9cea,August,24,462-34-2340,Accountant,19997.48,1562.456667,8,8,28.06745738,7,"Home Equity Loan, Student Loan, Home Equity Loan, Student Loan, Student Loan, Not Specified, and Debt Consolidation Loan",46.55182062,29.53654019,9.82,10,Bad,4332.545099,35.7224413,3 Years and 0 Months,Yes,94.15938052,85.63967824,High_spent_Small_value_payments,209.72632,0,-0.2887,1.35,-1.6174,-0.8026,2.0161 -0x3e95,CUS_0x88a,August,24,902-08-7981,_______,65234.24,,3,4,1,100,,,11,8.9,1,Good,39.46,28.98921694,30 Years and 2 Months,No,0,49.69952624,High_spent_Large_value_payments,733.6191404,0,0.4677,1.3064,0.8439,1.5209,0.4427 -0x3ea1,CUS_0x3d7e,August,36,809-41-5393,_______,68173.92,,6,10,32,5,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Payday Loan",23.07849678,,25.49,11,Bad,3117.01,24.85901264,6 Years and 6 Months,Yes,144.3743612,483.5625152,Low_spent_Small_value_payments,256.8791236,0,-0.5863,0.103,-0.691,-0.7616,0.4829 -0x3ead,CUS_0x565d,August,36,311-14-9969,Media_Manager,75672.08,6254.006667,7,5,28,6,"Payday Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",27.36110924,20,,,Bad,3881.25,36.27279176,7 Years and 5 Months,Yes,311.8847455,131.1085385,High_spent_Large_value_payments,422.4073827,0,1.9391,0.5349,0.2157,-1.2963,1.1593 -0x3eb9,CUS_0x17e3,August,30,#F%$D@*&8,Media_Manager,16579.3,1239.608333,10,7,28.06745738,8,"Mortgage Loan, Personal Loan, Student Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Student Loan",51.34636459,27.17061028,1.1,14,Bad,2279.029808,27.19873623,9 Years and 0 Months,Yes,60.48665095,61.91160319,High_spent_Small_value_payments,234.8422913,0,-0.3296,1.3118,1.514,0.0147,-0.9336 -0x3ec5,CUS_0x38bb,August,19,959-04-6330,Engineer,62956.56,,8,4,15.28836175,4,"Personal Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",7.848627667,9,9.01,10,Standard,77.34,25.84693695,5 Years and 10 Months,Yes,135.3795929,588.150133,!@9#%8,461.1457352,0,0.7998,-1.2026,-0.7507,-1.4528,-0.0216 -0x3ed1,CUS_0x3c6a,August,45,791-08-6233,Mechanic,123511.28,,8,3,15,4,"Not Specified, Personal Loan, Not Specified, and Mortgage Loan",13.16293733,11,0.8,5,Standard,1350.6,37.19578573,22 Years and 3 Months,NM,254.6043699,202.5532528,High_spent_Medium_value_payments,835.9030439,0,-2.0307,-0.3901,-0.922,-1.254,0.1226 -0x3edd,CUS_0xb54e,August,30,#F%$D@*&8,_______,16646.26,1611.188333,7,6,15,2,"Debt Consolidation Loan, and Personal Loan",,13,11.26,9,Standard,624.36,31.02291736,19 Years and 2 Months,No,14.57856681,148.011254,Low_spent_Large_value_payments,268.5290125,0,1.9441,0.7013,0.9437,0.9858,-1.184 -0x3ee9,CUS_0x7620,August,28,956-71-9457,Developer,36496.38,2934.365,8,3,30,3,"Home Equity Loan, Credit-Builder Loan, and Auto Loan",90,4566.106706,8.46,10,Standard,1527.85894,33.70921238,6 Years and 5 Months,Yes,45.81234946,118.4966051,Low_spent_Medium_value_payments,409.1275454,0,-1.6509,0.0923,-0.2943,-2.788,-0.543 -0x3ef5,CUS_0x9e13,August,26,#F%$D@*&8,Musician,146598.88,12357.57333,0,6,4.288361749,186,"Personal Loan, and Student Loan",3.754186114,5,1.97,2,_,1294.06,26.16811082,20 Years and 4 Months,No,215.1949108,10419.93746,Low_spent_Small_value_payments,,0,-0.4482,0.156,1.0111,-0.9505,0.9994 -0x3f01,CUS_0x8962,August,40,400-08-0195,Lawyer,9542.28,,6,6,14,4,"Not Specified, Not Specified, Mortgage Loan, and Mortgage Loan",12.90021853,10,7.96,11,_,322.61,34.81033855,8 Years and 0 Months,Yes,65943,84.79052461,Low_spent_Small_value_payments,249.9277764,0,-0.6827,1.1194,1.6283,0.9914,0.2853 -0x3f0d,CUS_0x44f,August,35,690-43-7279,Journalist,29369.12,,5,4,8,2,"Payday Loan, and Not Specified",22.68147191,14,10.54,11,Standard,1605.81,33.8803383,20 Years and 2 Months,NM,43.93572132,58.67927368,High_spent_Medium_value_payments,364.5276717,0,-0.7743,0.5216,-0.3983,0.5088,0.8044 -0x3f19,CUS_0x6171,August,53,584-89-4764,Musician,149168.88,12297.74,3,5,0.288361749,0,,4.501777041,6,16.65,0,_,826.3198782,28.65259088,20 Years and 2 Months,No,0,858.5294359,High_spent_Medium_value_payments,1090.560689,0,-0.3872,0.3986,-0.8393,-1.0312,0.4259 -0x3f25,CUS_0x72e9,August,48,220-24-0606,_______,58267.5,4601.625,4,3,18.28836175,0,,10.41243717,10,13.42,4,Standard,244.16,35.80992977,,NM,0,949.8191343,Low_spent_Small_value_payments,220.2808268,0,-1.1227,-1.391,1.4548,1.8392,-0.8263 -0x3f31,CUS_0x3ae9,August,34,105-31-9662,Scientist,118047.92,,2,2,0.288361749,2,"Personal Loan, Debt Consolidation Loan, and Payday Loan",0,1,4.83,7,Good,776.18,38.52104799,31 Years and 0 Months,No,223.0756746,620.1486648,High_spent_Large_value_payments,798.5457884,0,-0.2074,-0.967,-0.7933,-1.0808,0.1217 -0x3f3d,CUS_0x3949,August,41,908-89-0498,Musician,63353.68,5356.473333,9,8,15,8,"Auto Loan, Mortgage Loan, Not Specified, Not Specified, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",32.25223103,23,6.41,9,Bad,4362.52,24.14255515,1 Years and 5 Months,Yes,390.4512882,54.7851378,!@9#%8,330.4109073,0,0.1153,0.5382,0.4274,0.5099,0.2426 -0x3f49,CUS_0x3ec0,August,44,813-38-8890,Scientist,11364.87,1095.0725,6,5,5111,3,"Payday Loan, Home Equity Loan, and Personal Loan",22.9653103,17,15.77,9,Standard,1061.925558,25.89614448,9 Years and 10 Months,Yes,16.49697208,41.65950778,High_spent_Medium_value_payments,306.5159578,0,-1.2898,1.2749,-0.2522,-0.1914,-0.3406 -0x3f55,CUS_0x1be1,August,18,273-37-7817,Manager,40375.78,3121.648333,6,9,25.95700519,9,"Personal Loan, Student Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Auto Loan, Payday Loan, Mortgage Loan, and Not Specified",24.17695183,,0.61,13,Bad,4249.388511,26.02286448,12 Years and 9 Months,Yes,1504.804503,263.9817574,Low_spent_Medium_value_payments,102.3282038,0,-0.3936,-0.4129,2.3018,1.6486,-0.5265 -0x3f61,CUS_0x90b2,August,24,230-75-1260,Accountant,10277.33,,6,6,14,7,"Mortgage Loan, Student Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",20.57510644,14,13.24,8,Standard,1248.05,27.21114818,8 Years and 5 Months,Yes,47.9015337,69.30820409,Low_spent_Small_value_payments,280.0346789,0,0.8283,-0.7816,-0.9201,-0.5677,1.483 -0x3f6d,CUS_0x85d3,August,38,797-70-1368,Lawyer,31305.26,2826.771667,5,6,11,0,,30.15843989,22,8.27,1,Standard,707.33,37.47791853,,No,0,112.706837,High_spent_Medium_value_payments,419.9703296,0,-1.3384,0.1299,0.152,0.0961,-0.8958 -0x3f79,CUS_0xa5e6,August,41,086-28-6732,Lawyer,130793.12,,6,6,19.28836175,2,"Not Specified, Personal Loan, and Auto Loan",16.39365252,,8.36,10,Standard,262.6653537,34.58572446,17 Years and 3 Months,Yes,179.251209,1143.660584,High_spent_Small_value_payments,537.0216185,0,0.0434,1.9054,-0.6837,0.8169,-1.1926 -0x3f85,CUS_0xb0b7,August,32,597-34-5694,Architect,20059.775,,3,7,5,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Auto Loan",,10,10.01,2,Good,841.07,38.55247369,31 Years and 4 Months,No,46.33143453,117.8097794,!@9#%8,270.5235777,0,0.5623,0.4362,1.3277,-0.3063,-2.3439 -0x3f91,CUS_0x39d3,August,18,628-61-5123,Teacher,9387.13,866.2608333,7,7,13,6,"Mortgage Loan, Auto Loan, Mortgage Loan, Not Specified, Payday Loan, and Personal Loan",,8,12.12,6,Standard,1604.6,22.36693865,12 Years and 8 Months,Yes,41.93223397,41.71546341,Low_spent_Medium_value_payments,282.978386,0,1.0582,-0.8416,0.1016,-0.5848,0.3007 -0x3f9d,CUS_0x5eee,August,41,447-71-5555,Architect,35873.36,2922.446667,9,5,19.06745738,3,"Not Specified, Home Equity Loan, and Student Loan",,14.42226493,4.38,11,Bad,2769.882609,40.34435032,19 Years and 0 Months,Yes,77.42019571,90.48592025,High_spent_Medium_value_payments,347.6182628,0,-1.3749,-1.2747,-0.9867,0.3515,-1.5699 -0x3fa9,CUS_0x8628,August,56,718-22-9642,Architect,165774.56,13560.54667,0,7,11.28836175,2,"Debt Consolidation Loan, and Payday Loan",0,3,-4.41,5,Good,1171.5,34.87876881,16 Years and 2 Months,No,255.824163,1800.253644,Low_spent_Medium_value_payments,,0,0.3239,0.2761,0.9054,0.0753,0.2914 -0x3fb5,CUS_0x908,August,30,081-45-4206,Writer,19212.79,,6,8,19.06745738,4,"Credit-Builder Loan, Mortgage Loan, Student Loan, and Not Specified",13.20410124,7.99692965,7.12,16,Standard,2219.366583,28.62793574,17 Years and 2 Months,Yes,48.50360251,76.67940086,High_spent_Small_value_payments,289.803292,0,-0.5987,1.6358,-0.1292,-0.3262,-1.1956 -0x3fc1,CUS_0x4523,August,39,527-08-5621,Scientist,16322.12,,9,5,18.06745738,7,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, Auto Loan, and Mortgage Loan",46.23369951,23.96081985,4.4,10,_,4219.324485,40.81079952,4 Years and 3 Months,Yes,74.45421477,44.8474787,!@9#%8,290.3956852,0,0.8097,-0.4034,-0.9854,-0.6877,0.0133 -0x3fcd,CUS_0x87ba,August,36,446-33-3005,Entrepreneur,62932.48,5437.373333,6,10,23,4,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,19.39479539,19.12,13,Standard,2638.858646,25.08133654,,NM,34405,,High_spent_Small_value_payments,300.1108962,0,-0.7109,-1.1186,2.2723,-0.8558,-0.2653 -0x3fd9,CUS_0xb8b6,August,45,988-47-8072,Engineer,72322.52,5982.876667,8,5,20,7,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Not Specified, Not Specified, Not Specified, and Mortgage Loan",30.82274157,22,12.21,10,Bad,1872.04,28.33452859,17 Years and 0 Months,NM,407.5074746,,Low_spent_Medium_value_payments,149.0999705,0,1.2456,0.0101,-0.4935,-0.7304,-0.1806 -0x3fe5,CUS_0xb956,August,80,463-27-1350,Mechanic,139538.32,11455.19333,2,5,8,4,"Credit-Builder Loan, Payday Loan, Auto Loan, and Auto Loan",,15,10.56,7,Good,632.80613,27.24964056,22 Years and 10 Months,NM,255.0972606,,High_spent_Small_value_payments,444.4076868,0,1.0301,-2.2715,-0.1763,0.8954,-0.5561 -0x3ff1,CUS_0x7a11,August,41,000-86-6182,Doctor,45238.04,,7,6,7,7,"Student Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",11.33268661,9,9.25,13,Standard,918.6948265,34.86320593,9 Years and 10 Months,Yes,147.6953289,,!@9#%8,97.08821706,0,2.4701,-0.1012,0.5331,0.1573,-0.2811 -0x3ffd,CUS_0x4017,August,36,583-89-9945,Teacher,133377.21,11114.7675,0,5,5,2,"Student Loan, and Student Loan",1.38873091,5.792985443,8.16,3,Good,1247.575798,41.35716103,22 Years and 9 Months,No,171.9485432,407.7432835,Low_spent_Medium_value_payments,811.7849233,0,0.8037,-0.4874,-1.7463,-2.8216,0.7848 -0x4009,CUS_0xa778,August,34,107-21-6904,Journalist,17791.55,1587.629167,10,6,34,8,"Not Specified, Personal Loan, Not Specified, Student Loan, Mortgage Loan, Not Specified, Student Loan, and Student Loan",30.24736062,18.18506069,9.12,11,Bad,1907.61202,33.41207811,11 Years and 5 Months,Yes,116.5271836,,High_spent_Medium_value_payments,237.7393995,0,-1.3664,-0.1224,0.5173,1.697,0.2172 -0x4015,CUS_0x576c,August,32,981-59-1781,Engineer,41655.16,,3,4,5,2,"Auto Loan, and Personal Loan",37.03518222,23.88522435,5.72,4,Standard,1396.028687,33.03944546,29 Years and 6 Months,No,66.91250934,243.8892188,Low_spent_Small_value_payments,353.5246052,0,0.6773,0.4763,-0.1147,-1.34,1.0422 -0x4021,CUS_0x4e30,August,40,777-29-7296,Lawyer,20380.865,,0,1,0.288361749,2,"Not Specified, and Mortgage Loan",,0,6.75,1,Good,139.7071442,30.98937642,21 Years and 3 Months,No,24.37368427,475.6075134,High_spent_Small_value_payments,353.5813916,0,0.7168,0.6914,0.4642,-0.7439,-0.6371 -0x402d,CUS_0x46de,August,25,046-57-2177,Accountant,36753.32,3164.776667,9,10,32,4,"Home Equity Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",22.19545862,15.78778552,16.72,6,Standard,2393.937207,28.49702687,9 Years and 10 Months,Yes,117.8517781,,Low_spent_Small_value_payments,212.1967179,0,-1.1788,0.206,0.6712,-1.0696,-0.5728 -0x4039,CUS_0x5756,August,46,707-41-4090,Developer,75602.28,6185.19,8,3,1,4,"Home Equity Loan, Student Loan, Not Specified, and Student Loan",,16,9.07,1,Good,875.7991024,40.73821391,20 Years and 0 Months,No,244.8885002,151.6932609,High_spent_Large_value_payments,476.4331938,0,-1.6863,0.8502,0.3192,-0.5989,-0.5004 -0x4045,CUS_0x47bc,August,52,176-01-8718,Lawyer,41113.35,3325.341838,1,3,5114,2,"Mortgage Loan, and Mortgage Loan",0,1,1.95,6,_,716.71,31.69011308,29 Years and 3 Months,No,189.1789902,48.20888467,High_spent_Medium_value_payments,491.1940367,0,1.159,0.3581,-2.0914,-0.2841,0.8448 -0x4051,CUS_0x25fd,August,56,691-50-0205,Scientist,80362.35,6908.8625,5,5,16,4,"Student Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",,11,1.16,6,Standard,55.35901646,40.46171193,28 Years and 8 Months,Yes,166.4117819,308.5226332,High_spent_Medium_value_payments,501.4013257,0,0.3415,0.5615,-0.6977,1.0676,-1.2469 -0x405d,CUS_0xb2e,August,24,972-99-8959,Scientist,32107.52,,9,9,2869,3,"Student Loan, Payday Loan, and Not Specified",41.16275831,29.11690508,7.04,9,Bad,1413.020722,22.81432665,7 Years and 10 Months,Yes,70.57182301,,Low_spent_Small_value_payments,142.3250552,0,-0.9659,-0.0263,-0.6608,-0.5142,0.2978 -0x4069,CUS_0x68ad,August,45,177-23-9449,Entrepreneur,68056.56,,10,8,23.88954781,6,"Student Loan, Home Equity Loan, Student Loan, Home Equity Loan, Personal Loan, and Student Loan",,12,12.64,9,Standard,1681.16,40.20288854,9 Years and 9 Months,Yes,1647.828196,79.49976446,High_spent_Medium_value_payments,382.3799578,0,-1.8657,0.3563,-0.5342,1.0996,0.1628 -0x4075,CUS_0xce6,August,80,031-54-1872,Engineer,40580.24,3496.686667,6,4,7.067457376,7,"Not Specified, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,9,18.65,9,_,2594.940954,33.42800196,11 Years and 11 Months,Yes,184.2774333,397.030861,Low_spent_Small_value_payments,31.64008444,0,-0.3457,-0.1179,-1.0591,0.1722,-0.5548 -0x4081,CUS_0xc142,August,44,413-90-8106,Doctor,14080.81,1142.400833,3,5,30,4,"Not Specified, Auto Loan, Payday Loan, and Debt Consolidation Loan",18.80273849,17.39768431,14.59,10,Standard,1508.524468,24.58921035,11 Years and 4 Months,Yes,33.34129604,143.3624829,Low_spent_Small_value_payments,227.5363044,0,0.326,-0.8667,1.2489,0.4584,1.5016 -0x408d,CUS_0x9412,August,27,688-22-8467,Accountant,48428.1,4242.675,6,5,35.06745738,9,"Auto Loan, Credit-Builder Loan, Not Specified, Not Specified, Student Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Student Loan",42.85079501,26.07339918,5.89,9,Bad,4832.965069,28.72112042,5 Years and 9 Months,Yes,192.0799905,277.8495443,Low_spent_Medium_value_payments,207.6176772,0,-0.6118,1.6495,0.6634,1.2199,-2.1763 -0x4099,CUS_0x62d2,August,18,980-57-4123,Accountant,49250.73,,9,7,21,6,"Student Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",,21,5.4,15,Bad,2231.92,36.87918243,11 Years and 11 Months,Yes,206.5019194,370.0798408,Low_spent_Medium_value_payments,116.5409898,0,0.9259,-0.5828,-0.7447,-1.7749,-1.0711 -0x40a5,CUS_0xa130,August,27,834-71-0072,Journalist,42384.08,,3,4,4,0,,31.5942764,22.9434542,11.55,5,Standard,976.8668015,26.56417143,24 Years and 0 Months,No,0,,Low_spent_Small_value_payments,426.6509537,0,0.17,-1.8231,0.4787,-1.2938,0.2852 -0x40b1,CUS_0x5bb9,August,26,821-51-9121,Teacher,8086.58,,2,7,22,2,"Credit-Builder Loan, and Home Equity Loan",,27.70856093,9.55,12,Standard,2726.442195,29.77866817,10 Years and 2 Months,Yes,7.913043412,44.69730712,Low_spent_Large_value_payments,299.7778161,0,0.1293,0.3946,-0.466,1.0009,1.5871 -0x40bd,CUS_0xac20,August,21,463-27-5535,Writer,49178.48,3972.206667,8,4,9,4,"Payday Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",,16,17.98,1,Standard,1484.58,26.92682804,26 Years and 9 Months,Yes,116.0194488,,High_spent_Small_value_payments,305.0001904,0,0.6196,0.3689,0.8969,-0.351,-1.8551 -0x40c9,CUS_0x7204,August,34,065-34-1600,Accountant,9009.775,,8,5,26,3,"Payday Loan, Not Specified, and Mortgage Loan",5.688639973,7.315962423,14.83,13,Standard,2180.768139,34.05393901,14 Years and 2 Months,Yes,21.46853645,,High_spent_Small_value_payments,271.6414039,0,-1.9453,0.7204,1.1831,-1.1438,0.4395 -0x40d5,CUS_0xaca6,August,20,108-44-7721,Architect,89388.72,,4,6,6,1,Student Loan,6.748542318,8,9.55,0,Good,913.9843727,32.06999516,32 Years and 0 Months,No,64.35336648,811.946984,Low_spent_Large_value_payments,267.2039973,0,0.5515,0.5045,0.5707,1.6338,-1.3493 -0x40e1,CUS_0x4b23,August,27,075-54-1956,Teacher,39471.98,3166.331667,5,3,21,4,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",19.07387589,14.47050464,10.74,8,Standard,2433.23879,33.20882498,13 Years and 11 Months,Yes,77.3569733,157.5534584,!@9#%8,341.722735,0,-0.8504,1.1299,-1.6721,-0.9497,0.3577 -0x40ed,CUS_0x9a1,August,22,729-01-2024,Writer,49598.67,,7,5,21.06745738,6,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Student Loan, Mortgage Loan, and Personal Loan",37.68614032,23,-0.44,9,Bad,3320.540954,30.15112983,13 Years and 6 Months,NM,78239,255.5016722,Low_spent_Large_value_payments,166.0881381,0,0.1821,-1.4119,0.0084,0.0481,-1.212 -0x40f9,CUS_0x4480,August,28,671-98-0103,Mechanic,15322.45,,10,8,27.95700519,7,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Payday Loan, Not Specified, and Credit-Builder Loan",30.71665335,20,26.36,11,Bad,2892.870954,37.02590325,14 Years and 2 Months,Yes,1389.456398,129.4344815,Low_spent_Small_value_payments,203.7458344,0,-1.0533,1.4761,-0.2872,-0.6958,-0.1824 -0x4105,CUS_0x4200,August,20,414-56-9181,Journalist,53367.48,4223.29,8,5,17.06745738,9,"Credit-Builder Loan, Payday Loan, Student Loan, Student Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",,24,18.57,13,_,4214.750954,37.50327924,12 Years and 8 Months,Yes,298.776926,88.69389879,High_spent_Large_value_payments,248.1378873,0,0.0315,-0.4472,-0.8436,-1.8567,1.4228 -0x4111,CUS_0x1d2b,August,32,115-92-9660,Accountant,26217.46,1930.788333,8,3,18,2,"Student Loan, and Debt Consolidation Loan",20.11004506,17,8.81,4,Standard,1135.43,29.16751556,27 Years and 4 Months,NM,27.04554741,,Low_spent_Small_value_payments,348.9572226,0,0.8609,1.5462,0.6671,0.4866,0.817 -0x411d,CUS_0x18b5,August,45,732-18-5419,Developer,63501.72,5471.81,9,8,21,2,"Auto Loan, and Not Specified",,23.77814496,8.27,13,Bad,2315.169127,24.34236782,10 Years and 3 Months,Yes,105.2386874,265.205665,High_spent_Small_value_payments,436.7366476,0,0.9423,-0.9968,0.8235,0.9774,0.3914 -0x4129,CUS_0x6d22,August,41,564-68-2345,Entrepreneur,87481.62,,0,4,3,1,Credit-Builder Loan,17.45957427,,1.45,6,Good,214.43,35.03429628,24 Years and 0 Months,No,55.6533693,,Low_spent_Small_value_payments,439.7718507,0,1.3828,1.3581,0.6259,1.2421,-1.1125 -0x4135,CUS_0x2c8d,August,50,657-32-0636,Mechanic,29097.82,2398.818333,6,6,11,4,"Not Specified, Credit-Builder Loan, Personal Loan, and Student Loan",16.60291777,,7.79,5,Standard,1186.168689,27.92587789,17 Years and 6 Months,Yes,82.27811008,303.4913134,Low_spent_Small_value_payments,144.1124098,0,-0.3599,-0.0478,-0.329,0.447,0.2047 -0x4141,CUS_0x111c,August,28,420-66-8144,Journalist,71809.76,,7,7,18.06745738,8,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Auto Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Personal Loan",34.56476836,17.20078218,1.58,7,_,5199.126723,35.48560893,6 Years and 11 Months,Yes,297.917684,91.85936581,High_spent_Large_value_payments,440.3173289,0,-0.1496,-0.3617,-3.0771,-0.4433,-0.0969 -0x414d,CUS_0x1fef,August,21,#F%$D@*&8,Journalist,20066.6,,7,3,10,4,"Auto Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",12.63010549,9,18.78,9,Standard,491.75,32.02771668,17 Years and 10 Months,NM,77237,,Low_spent_Small_value_payments,231.5141369,0,-0.5436,0.4637,0.5079,0.5642,0.5116 -0x4159,CUS_0xbc1e,August,44,006-09-6260,Entrepreneur,18137.25,1729.4375,7,6,9.067457376,7,"Personal Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",21.6977842,,17.26,8,Standard,2793.086925,35.05688853,6 Years and 8 Months,Yes,72.05824653,,Low_spent_Large_value_payments,213.9245693,0,1.1416,-1.8391,-0.3431,-0.0617,0.5363 -0x4165,CUS_0xbbf5,August,43,413-06-1083,Musician,35346.69,,1,6,12,1,Payday Loan,,,8.3,4,Good,497.75,35.28408362,29 Years and 9 Months,No,23.59397797,278.8774965,Low_spent_Small_value_payments,263.2842756,0,0.3933,1.1883,-0.6963,0.562,-0.0631 -0x4171,CUS_0x3383,August,34,407-85-2454,_______,148990.16,,3,7,2.288361749,2,"Personal Loan, Auto Loan, and Credit-Builder Loan",,8,8.65,3,Good,363.4671072,32.31953748,29 Years and 6 Months,No,267.3659605,1787.067164,Low_spent_Medium_value_payments,94.07221903,0,-1.8547,-0.9223,0.15,1.6857,-1.9071 -0x417d,CUS_0x51e7,August,49,772-53-7704,Lawyer,9735.115,695.2595833,7,5,16,7,"Credit-Builder Loan, Not Specified, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, and Mortgage Loan",30.29278303,19,23.85,10,_,3247.738906,33.6206534,1 Years and 6 Months,Yes,53.89565262,34.52025617,Low_spent_Small_value_payments,275.9161894,0,0.6165,-0.5139,0.7821,-0.8573,-1.1319 -0x4189,CUS_0x8991,August,50,312-72-0232,Engineer,148786.04,,4,4,3.288361749,2,"Personal Loan, Auto Loan, and Mortgage Loan",10.21449234,10,10.71,2,Good,346.1143544,27.43016068,24 Years and 4 Months,No,237.4135109,750.0283759,High_spent_Large_value_payments,969.5776479,0,0.0941,0.3487,0.6612,0.7269,-0.769 -0x4195,CUS_0x59dc,August,29,#F%$D@*&8,Journalist,58940.76,4806.73,5,3,18,6,"Credit-Builder Loan, Personal Loan, Personal Loan, Student Loan, Personal Loan, and Student Loan",,14,16.6,9,Standard,306.5175423,34.87759148,14 Years and 11 Months,Yes,231.3940035,52.37549727,!@9#%8,441.9454451,0,1.1155,-0.2511,-0.8754,0.1045,0.2592 -0x41a1,CUS_0x28b3,August,27,876-26-4039,Mechanic,37983.12,,7,1131,32,2,"Home Equity Loan, and Personal Loan",,27.78799434,10.36,11,Bad,1761.98334,37.38864674,9 Years and 4 Months,Yes,50.43795578,193.4818269,Low_spent_Small_value_payments,385.9062173,0,0.1415,-1.2447,1.101,-0.1456,0.428 -0x41ad,CUS_0x2cdf,August,34,219-75-5334,Writer,8312.495,,6,4,12,4,"Credit-Builder Loan, Student Loan, Payday Loan, and Credit-Builder Loan",,19.41474694,7.71,12,Standard,2061.473716,23.67763009,13 Years and 2 Months,Yes,20.15625174,80.4044801,Low_spent_Small_value_payments,278.8100598,0,0.5054,-0.102,-0.1308,-0.044,0.0531 -0x41b9,CUS_0x4b44,August,32,729-43-4990,Journalist,120348.8,10268.06667,7,5,8,4,"Mortgage Loan, Auto Loan, Payday Loan, and Personal Loan",,13,14.98,4,Standard,166,37.7462008,30 Years and 11 Months,NM,299.0849836,290.6491549,High_spent_Medium_value_payments,687.0725282,0,1.1258,-1.1012,-0.4501,0.4679,1.4263 -0x41c5,CUS_0xa329,August,21,683-09-2814,Media_Manager,77936.01,6734.6675,5,6,15,3,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",10.94581886,10,19.2,5,Standard,314.62,37.29349666,23 Years and 2 Months,Yes,147.1020816,122.7996573,!@9#%8,653.5650111,0,-0.4419,0.2217,-0.8948,-0.0141,-0.1084 -0x41d1,CUS_0x6479,August,33,219-01-0237,Accountant,177887.8,14828.98333,4,3,2.288361749,0,,,6,11.32,7,Good,804.607481,40.0094074,26 Years and 11 Months,No,0,1535.199823,Low_spent_Medium_value_payments,785.1680742,0,0.7108,-1.7955,0.6873,1.2667,1.6002 -0x41dd,CUS_0x3866,August,28,118-49-2382,Writer,20677,,3,5,21.06745738,5,"Personal Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Personal Loan",,19.15167221,18.3,8,Standard,2888.503059,35.83181478,19 Years and 4 Months,Yes,53.35272172,28.73339519,!@9#%8,325.5019285,0,0.6871,0.7586,0.3058,-2.1199,-0.3054 -0x41e9,CUS_0x1631,August,45,453-64-2565,Mechanic,63093.32,5212.776667,4,3,7,3,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",16.77261586,13,11.71,6,Standard,1441.44,40.91673522,8 Years and 10 Months,Yes,120.8504403,76.15493041,High_spent_Medium_value_payments,574.272296,0,0.9088,0.5306,0.2532,0.0387,0.0813 -0x41f5,CUS_0x67dc,August,19,429-06-5904,Manager,127491.48,10731.29,5,1,1,4,"Payday Loan, Auto Loan, Personal Loan, and Auto Loan",,9,1.65,4,Good,517.8182583,26.9961543,23 Years and 4 Months,No,287.1611885,398.9070691,High_spent_Small_value_payments,688.8718062,0,0.7611,0.952,-2.0938,-0.371,-0.2656 -0x4201,CUS_0x4a83,August,19,408-42-1764,Engineer,35322.24,,5,5,6,3,"Credit-Builder Loan, Auto Loan, and Auto Loan",0,1,10.51,2,_,907.76,36.33048532,30 Years and 8 Months,No,61.72578802,205.7162698,Low_spent_Small_value_payments,303.1099422,0,-2.079,-0.283,0.1384,0.9371,-0.1334 -0x420d,CUS_0xc163,August,19,552-86-7671,Media_Manager,40327.22,3595.601667,5,5,7,0,,0.989276465,2,7.87,4,Good,1073.76,26.86094157,22 Years and 0 Months,NM,0,113.9189481,High_spent_Medium_value_payments,495.6412186,0,-0.23,-0.5993,0.6931,0.2972,-1.6777 -0x4219,CUS_0xc48a,August,43,853-87-2494,Doctor,99480.44,8532.036667,8,5,17,3,"Mortgage Loan, Payday Loan, and Mortgage Loan",,8,8.06,2,Standard,1287.76,27.95743017,25 Years and 0 Months,No,163.5888468,950.9954221,Low_spent_Small_value_payments,28.61939774,0,-0.7009,0.8888,0.1521,0.0948,1.0013 -0x4225,CUS_0x3313,August,41,876-93-8728,Scientist,34773.31,2878.775833,1,5,5.288361749,2,"Not Specified, and Payday Loan",0,0,1.17,4,_,72.32892987,29.03965242,23 Years and 6 Months,No,52.23056183,540.4371512,High_spent_Medium_value_payments,379.7528362,0,-1.2244,1.6467,2.1597,-1.8059,0.4289 -0x4231,CUS_0x9931,August,34,165-19-3346,Lawyer,31741.57,2858.130833,4,4,15,1,Payday Loan,,,7.78,7,Standard,1231.17,33.23182285,32 Years and 4 Months,Yes,16.90410075,365.9191839,Low_spent_Small_value_payments,192.9897987,0,0.6254,0.8307,-1.1374,-0.167,-1.8844 -0x423d,CUS_0xb5bd,August,28,732-58-9225,Journalist,17273.83,,9,7,31,5,"Payday Loan, Personal Loan, Payday Loan, Mortgage Loan, and Payday Loan",,23.55851965,10.57,11,Bad,2419.206299,25.00890875,14 Years and 8 Months,Yes,47.90208869,44.08812304,Low_spent_Medium_value_payments,316.1583716,0,-1.08,-0.7726,0.4244,0.2613,0.4737 -0x4249,CUS_0x5336,August,22,758-83-2675,Mechanic,101723.52,,8,5,15,3,"Credit-Builder Loan, Student Loan, and Student Loan",24.11451403,18,13.61,4,_,526.56,22.60666368,18 Years and 9 Months,NM,134.5816707,,Low_spent_Medium_value_payments,215.7722154,0,-1.2168,0.7001,0.5661,-0.6907,-0.7243 -0x4255,CUS_0x9d32,August,18,237-67-0639,Architect,15868.97,1446.414167,8,9,31.88954781,9,"Personal Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,18.23816076,16.62,13,Bad,5700.203877,24.18901755,9 Years and 0 Months,Yes,1386.075116,,Low_spent_Medium_value_payments,194.8006379,0,0.4443,-0.0583,1.3914,1.2039,-0.4597 -0x4261,CUS_0x530e,August,54,321-09-8273,_______,25506.53,,3,6,10,2,"Auto Loan, and Personal Loan",20.52587049,13,5.54,1,_,43.06,33.22545915,20 Years and 5 Months,No,161.4465164,239.2646555,Low_spent_Small_value_payments,243.4565432,0,-1.6853,-0.8321,0.6569,1.8026,1.971 -0x426d,CUS_0xd3d,August,36,128-99-6129,Lawyer,18843.62,,7,6,7,5,"Home Equity Loan, Personal Loan, Auto Loan, Payday Loan, and Mortgage Loan",,8,15.26,7,Standard,1266.84,39.61006668,19 Years and 11 Months,Yes,43.64098887,96.53906249,High_spent_Small_value_payments,280.1501153,0,0.1763,1.5742,-0.1477,0.0211,0.4287 -0x4279,CUS_0x7304,August,40,619-13-9521,Developer,31700.08,2710.673333,10,7,30.06745738,8,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",30.613175,15,25.48,16,_,4255.290954,30.76254488,2 Years and 8 Months,Yes,189.4140288,,High_spent_Large_value_payments,260.3032216,0,0.46,-0.147,0.5101,0.4008,-1.0788 -0x4285,CUS_0x401c,August,36,272-14-7214,Journalist,71223.92,,6,10,19.88954781,7,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",,23,5.8,10,Bad,1917.13,36.68890332,,Yes,1565.642591,117.1312693,High_spent_Medium_value_payments,444.2287252,0,-0.7557,1.4164,0.2147,-1.1083,-1.0857 -0x4291,CUS_0x646,August,51,758-52-6298,_______,85875.8,,1,5,498,2,"Home Equity Loan, and Personal Loan",,4.862029574,5.77,6,Good,732.6552835,39.00700556,23 Years and 5 Months,No,110.5873623,400.5607945,Low_spent_Medium_value_payments,494.4835099,0,-2.6006,-0.8397,-0.6208,1.2935,-1.5522 -0x429d,CUS_0x24bb,August,27,855-99-6125,Developer,2351135,1932.664167,3,5,10,2,"Mortgage Loan, and Mortgage Loan",20.65076536,17,,1,Standard,642.22,28.87309383,24 Years and 8 Months,Yes,35.92761913,41.75959747,High_spent_Large_value_payments,355.5792001,0,-1.3205,0.7491,-1.1927,-0.86,0.8947 -0x42a9,CUS_0xbc14,August,26,846-80-3325,Mechanic,87957.02,,2,1470,9,4,"Home Equity Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",,1.209822672,9.23,5,_,891.9053124,29.13074677,19 Years and 10 Months,NM,195.9137033,52.71435429,High_spent_Large_value_payments,736.7471091,0,0.7954,-0.2275,0.7302,-1.2824,1.7611 -0x42b5,CUS_0x6f5f,August,25,891-00-5252,_______,33063.59,,8,3,6,7,"Personal Loan, Auto Loan, Payday Loan, Student Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",19.14387576,16,7.19,10,Standard,788.4,26.99971985,18 Years and 2 Months,Yes,143.7567213,102.0198562,High_spent_Medium_value_payments,278.3533391,0,-0.9694,0.6259,0.8671,1.312,-1.8549 -0x42c1,CUS_0x960f,August,80,203-84-6827,Media_Manager,14480.21,943.6841667,10,7,24,9,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, Personal Loan, Not Specified, Auto Loan, and Not Specified",28.75807054,20.31196105,15.93,10,_,4418.760431,25.2894041,8 Years and 2 Months,Yes,54.58756681,,Low_spent_Small_value_payments,257.8239257,0,0.7021,1.4129,1.1067,-0.3448,-0.0214 -0x42cd,CUS_0x9d9a,August,38,456-78-8568,Teacher,84660.74,7046.061667,4,4,12,1,Home Equity Loan,,0,8.99,3,Good,631.0749243,36.68355861,27 Years and 6 Months,NM,60.86361532,,High_spent_Large_value_payments,727.2565801,0,-1.4035,-1.4789,1.2531,-0.7531,-1.056 -0x42d9,CUS_0x5684,August,33,409-97-1713,Engineer,77335.86,6164.655,3,4,19,4,"Payday Loan, Personal Loan, Payday Loan, and Not Specified",,20,11.88,4,Standard,284.69,39.08808768,29 Years and 11 Months,No,239.0178764,150.7826384,High_spent_Medium_value_payments,476.6649852,0,2.0946,0.0111,-0.054,1.2604,0.7267 -0x42e5,CUS_0x943c,August,25,448-44-0110,Writer,23613.43,2202.785833,6,7,6,3,"Auto Loan, Debt Consolidation Loan, and Student Loan",11.78904139,11,9.35,4,Standard,428.67,37.68791119,27 Years and 8 Months,NM,46.73830654,184.5543493,Low_spent_Large_value_payments,258.9859275,0,-0.8378,0.8076,0.7431,-1.4853,0.3425 -0x42f1,CUS_0x2d83,August,18,#F%$D@*&8,Lawyer,15325.73,,6,8,31.06745738,5,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Auto Loan",,21,15.49,11,Bad,4669.280954,31.48808425,11 Years and 10 Months,Yes,61.85078441,62.52221973,!@9#%8,227.0211246,0,0.6603,-1.261,1.6477,0.5732,-0.2007 -0x42fd,CUS_0x8316,August,40,815-63-3344,Musician,68110.83,5469.9025,5,7,9,3,"Home Equity Loan, Personal Loan, and Home Equity Loan",18.69606903,14,19.13,1,_,147.77,32.14500579,30 Years and 8 Months,Yes,102.6910618,175.6216383,High_spent_Medium_value_payments,518.6775499,0,-0.2017,-0.2554,-0.4001,1.5018,-0.645 -0x4309,CUS_0x1056,August,44,081-93-4350,Entrepreneur,16053.86,1196.821667,8,6,25.06745738,5,"Student Loan, Student Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",,20.50617418,0.83,12,Bad,2511.402211,37.87797299,16 Years and 2 Months,Yes,44.86029054,154.068624,Low_spent_Small_value_payments,184.0329641,0,0.8878,2.0196,-1.0063,0.0736,1.0588 -0x4315,CUS_0x9ecd,August,51,556-82-8148,Entrepreneur,169141.6,,3,6,5.288361749,0,Auto Loan,,,8.04,1,_,218.1621581,35.77388226,22 Years and 11 Months,NM,102.4614238,699.5136075,High_spent_Large_value_payments,1334.611966,0,1.0766,-0.3799,-0.588,1.2733,0.911 -0x4321,CUS_0xb24d,August,19,389-86-5893,Musician,42870.21,3523.5175,6,6,26.06745738,6,"Mortgage Loan, Student Loan, Mortgage Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",31.4151316,17,28.89,7,_,2980.890954,33.90477649,6 Years and 3 Months,Yes,122.4826703,,!@9#%8,175.7448998,0,0.2998,1.2714,-1.5976,1.5288,0.7473 -0x432d,CUS_0xb018,August,35,088-10-2997,Teacher,128189.37,10390.4475,2,7,6.288361749,2,"Payday Loan, and Debt Consolidation Loan",0,1,6.63,2,Good,913.1,26.40891507,31 Years and 3 Months,No,153.2690087,1169.585828,Low_spent_Large_value_payments,406.1273739,0,1.5263,0.1863,-0.3004,-2.2604,0.7394 -0x4339,CUS_0x5999,August,36,905-67-0656,Scientist,58537.38,4688.115,7,5,19,4,"Payday Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",13.62065675,10,11.11,,_,232.6225916,24.09669237,23 Years and 3 Months,No,105.8533062,110.1584735,High_spent_Large_value_payments,509.4870317,0,0.8932,-1.1222,0.1271,1.0083,-0.4156 -0x4345,CUS_0x7e86,August,50,947-24-2057,Doctor,24667.16,,8,6,16,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",,18.217477,19.93,5,Standard,820.864088,38.26202196,19 Years and 10 Months,Yes,49.23739807,128.301047,Low_spent_Large_value_payments,320.9212216,0,-0.8118,-0.3142,1.5346,0.0884,-0.9011 -0x4351,CUS_0x81f1,August,33,790-89-0831,Lawyer,62757.12,,1308,8,18.88954781,9,"Student Loan, Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",36.98616785,22,26.92,17,Bad,3754.18,26.18035036,6 Years and 2 Months,Yes,1791.32886,200.8163736,!@9#%8,66.90068545,0,0.012,-1.4622,0.2008,-1.5332,0.3116 -0x435d,CUS_0x738f,August,40,995-65-2513,Mechanic,9767.32,,5,7,3,1,Not Specified,,20,2.47,4,Good,327.25,31.07924323,15 Years and 11 Months,No,7.867825938,70.19082376,Low_spent_Small_value_payments,299.2356836,0,-1.2092,0.2826,-0.5898,0.8587,-0.6411 -0x4369,CUS_0xa2a8,August,31,586-33-6787,Doctor,14292.96,1096.08,8,7,24.06745738,9,"Auto Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Payday Loan, and Student Loan",47.34329937,25.1202228,4.78,11,Bad,2364.813984,39.06199871,8 Years and 3 Months,Yes,78.22962898,79.9405703,Low_spent_Medium_value_payments,204.7175128,0,1.7598,0.1083,-0.5803,0.7288,-0.2019 -0x4375,CUS_0xb521,August,38,715-62-6122,Developer,8571.29,514.2741667,8,7,24,9,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",47.66184465,26.99133745,4.09,9,_,1928.025896,28.36101952,,Yes,42.82785524,30.12388541,Low_spent_Small_value_payments,268.475676,0,-1.181,0.0455,-0.1656,-1.7527,-0.7709 -0x4381,CUS_0xb3cd,August,19,530-05-2968,Mechanic,20739.75,1916.3125,6,10,27.06745738,8,"Student Loan, Student Loan, Not Specified, Home Equity Loan, Personal Loan, Student Loan, Auto Loan, and Auto Loan",46.66456226,23.43493015,,15,Bad,3622.872184,23.56797747,14 Years and 2 Months,NM,137.1046443,134.8604739,Low_spent_Small_value_payments,182.9458438,0,-0.2757,-0.0247,0.4519,2.372,2.695 -0x438d,CUS_0x3224,August,18,078-06-0704,Lawyer,53181.21,4636.7675,5,5,8,3,"Not Specified, Not Specified, and Student Loan",14.76110245,13,,4,Standard,1942,37.98904525,10 Years and 2 Months,Yes,84.02175113,110.5629403,!@9#%8,519.0920586,0,1.4885,0.0132,0.9753,-0.1768,0.7677 -0x4399,CUS_0x3cd2,August,33,984-94-3425,Journalist,89239.35,,0,4,10.28836175,0,,,1,5.74,1,Good,590.29,42.39063523,23 Years and 8 Months,No,0,554.656373,!@9#%8,893.342338,0,-0.2695,-0.3694,-2.5794,-1.2196,0.138 -0x43a5,CUS_0x6f00,August,47,794-90-5630,Mechanic,98962.77,8044.8975,5,6,7.288361749,2,"Home Equity Loan, and Debt Consolidation Loan",15.92321371,,2.6,0,Good,541.0622651,34.80999352,26 Years and 5 Months,No,98.6114734,734.6861527,High_spent_Medium_value_payments,674.9123247,0,1.6174,0.4952,-1.0943,2.4813,-0.445 -0x43b1,CUS_0x1a3b,August,18,173-00-2847,Entrepreneur,33082.87,,5,1194,12,4,"Payday Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",20.08519272,16,18.4,12,Standard,576.44,31.15524781,19 Years and 4 Months,Yes,78.16490662,69.03675399,High_spent_Large_value_payments,371.3889227,0,1.4719,-0.7395,-0.7068,-0.2686,-0.009 -0x43bd,CUS_0x56bd,August,38,404-80-3253,Writer,10030.52,696.8766667,10,9,27.88954781,8,"Payday Loan, Personal Loan, Student Loan, Credit-Builder Loan, Not Specified, Not Specified, Payday Loan, and Student Loan",,,17.39,11,Bad,4812.08,25.66494508,12 Years and 5 Months,Yes,1375.893674,27.15724238,Low_spent_Small_value_payments,262.3066688,0,-0.6683,-0.1413,0.6225,-1.0243,0.8188 -0x43c9,CUS_0xb1a0,August,18,249-90-4145,Lawyer,15823.87,,8,6,24.06745738,9,"Student Loan, Home Equity Loan, Student Loan, Not Specified, Auto Loan, Payday Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",25.14948167,,15.69,12,Bad,3927.370954,26.14795704,10 Years and 2 Months,Yes,87.32342317,100.4480002,Low_spent_Small_value_payments,182.2738721,0,-0.8569,0.4491,-1.0612,1.4647,-1.212 -0x43d5,CUS_0x43c5,August,18,231-04-4667,Architect,63149.2,,7,10,19,6,"Payday Loan, Personal Loan, Auto Loan, Not Specified, Personal Loan, and Payday Loan",22.86723229,18,27.02,10,Bad,3656.46,33.13325035,6 Years and 9 Months,Yes,233.6021768,218.8745039,Low_spent_Small_value_payments,349.6666526,0,0.3038,0.5834,2.0437,-0.5544,0.6914 -0x43e1,CUS_0xa374,August,39,646-84-2918,Doctor,34680.44,,3,3,18,0,,16.58118294,11,14.72,5,Standard,551.18,26.32829185,27 Years and 6 Months,NM,405.4266748,324.1380224,Low_spent_Small_value_payments,279.4656442,0,0.0537,-0.1194,-1.9535,1.0679,-0.3706 -0x43ed,CUS_0xa83c,August,22,042-49-7943,Doctor,23195.18,,8,6,14,5,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Home Equity Loan, and Not Specified",9.388145442,11,14.52,8,Standard,458.8,30.43448457,16 Years and 10 Months,Yes,53.42950341,,High_spent_Medium_value_payments,314.5787405,0,-0.2071,-0.8002,0.8207,0.051,0.3889 -0x43f9,CUS_0x5088,August,47,058-85-7676,Teacher,68375.37,5914.9475,6,3,17,1,Personal Loan,,12,7.56,6,_,804.61,37.64346915,30 Years and 11 Months,No,38.40824349,218.7256156,High_spent_Medium_value_payments,584.3608909,0,0.1631,1.8407,0.7958,-0.0166,0.6788 -0x4405,CUS_0x468a,August,47,247-60-3180,Journalist,115827.92,9459.326667,7,6,16.28836175,2,"Debt Consolidation Loan, and Payday Loan",11.90404068,11,4.33,3,_,264.3293298,29.48564697,17 Years and 9 Months,No,141.9231326,1248.886145,Low_spent_Large_value_payments,345.9174709,0,-1.0636,-1.5742,-1.5964,1.2729,-0.819 -0x4411,CUS_0x70f1,August,33,212-21-4654,Scientist,12025.84,,7,5,17,2,"Personal Loan, and Personal Loan",15.90448057,,9.72,6,Standard,1188.36,30.43057057,28 Years and 0 Months,Yes,18.24716129,87.35221735,Low_spent_Small_value_payments,280.5159547,0,0.6711,0.3583,0.5098,-1.5933,1.1391 -0x441d,CUS_0xc3ee,August,48,971-78-9268,Architect,14439.41,,3,5,8,0,,,6,1.45,2043,Good,1077.686615,27.96817956,33 Years and 3 Months,No,0,11474.00714,Low_spent_Small_value_payments,306.8233366,0,-0.7588,1.1382,0.2177,-0.272,-0.5549 -0x4429,CUS_0x9da6,August,35,114-37-3012,Entrepreneur,20516.18,,5,7,16.28836175,4,"Payday Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",15.93985466,14,8.76,1,Standard,209.4160561,30.91620997,18 Years and 8 Months,No,56.37071107,491.7725414,!@9#%8,305.8442627,0,-0.0211,1.1282,-0.0308,-1.0011,0.5372 -0x4435,CUS_0x4f7d,August,38,154-66-0698,Journalist,15590.68,,8,9,27.95700519,9,"Mortgage Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, Personal Loan, Payday Loan, Payday Loan, Not Specified, and Credit-Builder Loan",29.59601366,16,28.98,7,_,4969.850954,37.95670603,14 Years and 0 Months,Yes,1416.372809,,Low_spent_Small_value_payments,112.5671311,0,-0.1253,0.163,0.1741,-0.2502,0.2716 -0x4441,CUS_0xbe9d,August,22,667-33-3115,_______,1034126,,3,7,6,100,Personal Loan,16.8811329,,4.37,3,Good,1234.59,37.58995969,18 Years and 3 Months,No,73.63741343,10000,!@9#%8,424.7603061,0,-0.3187,-0.6389,0.3392,0.0578,-1.0404 -0x444d,CUS_0xa301,August,39,#F%$D@*&8,Writer,65934.22,,5,7,7,0,,17.87125118,15,12.25,,Standard,1123,35.93478409,21 Years and 10 Months,Yes,0,113.6313413,!@9#%8,691.820492,0,0.6147,0.8704,-0.739,1.1358,0.4806 -0x4459,CUS_0xf6c,August,55,128-03-0204,Writer,76046.25,,7,3,16,3,"Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",24.03238527,19,3.29,9,Standard,91.84,22.54863454,30 Years and 8 Months,Yes,172.9855154,,Low_spent_Small_value_payments,60.97820663,0,-1.1277,-0.3405,-0.0327,-0.0075,0.9598 -0x4465,CUS_0x6df5,August,43,135-83-0935,Writer,17602.93,,10,10,30.95700519,6,"Student Loan, Personal Loan, Payday Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",,19.47264206,13.49,7,Standard,2569.005571,27.07446731,17 Years and 3 Months,Yes,1370.260963,,Low_spent_Small_value_payments,185.4562093,0,0.5444,1.7615,-0.874,-1.5511,0.2361 -0x4471,CUS_0x117d,August,30,812-62-8349,Media_Manager,70779.18,5861.265,1,4,9,4,"Student Loan, Student Loan, Not Specified, and Debt Consolidation Loan",,2,3.61,4,Good,1193.688078,25.85637803,21 Years and 5 Months,No,131.3483116,334.3969813,High_spent_Small_value_payments,414.1761088,0,1.0548,1.0425,0.2731,-0.23,-0.9103 -0x447d,CUS_0x59a1,August,27,676-03-1319,_______,20373.24,,4,6,21,2,"Credit-Builder Loan, and Not Specified",16.17471533,10.96953174,11.22,8,Standard,1695.987103,36.44964397,19 Years and 2 Months,Yes,21.47649819,117.1165395,Low_spent_Small_value_payments,335.9839623,0,-0.7137,1.5486,0.8318,1.1536,0.4769 -0x4489,CUS_0x39d7,August,29,300-57-8786,Teacher,20377.7,,6,5,15,2,"Student Loan, and Payday Loan",26.2529222,19.42120531,17.14,6,Standard,1653.015469,25.3034439,11 Years and 3 Months,Yes,29.92158094,155.8533974,Low_spent_Small_value_payments,270.1391884,0,-0.1099,-1.6955,-0.6463,0.0022,2.037 -0x4495,CUS_0x6895,August,42,989-88-6895,Entrepreneur,35064.5,2949.041667,10,7,33,7,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Student Loan, and Not Specified",,24.38773795,18.54,15,_,2851.586736,36.400715,9 Years and 5 Months,Yes,132.2560664,110.9761171,!@9#%8,321.6719831,0,-0.1488,-0.6729,-0.1643,0.5138,-0.3883 -0x44a1,CUS_0x39a6,August,18,489-27-4816,_______,49441.62,4419.135,9,10,16.06745738,5,"Personal Loan, Mortgage Loan, Not Specified, Student Loan, and Mortgage Loan",30.51143687,,23.1,12,Bad,3738.22729,33.03375605,1 Years and 0 Months,Yes,176.4840285,125.2281189,!@9#%8,373.4810647,0,-1.0134,0.9139,0.1999,-0.2552,-1.7419 -0x44ad,CUS_0x2095,August,20,774-74-4749,Entrepreneur,73842.33,5927.5275,4,5,5,3,"Home Equity Loan, Student Loan, and Home Equity Loan",24.75040421,18,5.83,4,Standard,344.09,37.5917897,19 Years and 2 Months,No,112.5848146,210.4503611,High_spent_Medium_value_payments,519.7175743,0,-0.6301,0.2023,0.4924,0.0679,-1.8781 -0x44b9,CUS_0x36da,August,42,969-97-7513,Lawyer,36151.31,,1,3,12,3,"Personal Loan, Personal Loan, and Personal Loan",3.71380212,6,2.5,8,Good,563.28,30.40710481,23 Years and 8 Months,No,54.78797362,148.9756911,High_spent_Small_value_payments,343.0972519,0,-0.0906,0.4855,0.7223,-1.4812,0.146 -0x44c5,CUS_0x5cb5,August,40,128-03-9248,Writer,20081.52,,6,6,22,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,15,9.11,12,_,2468.95,30.68317432,18 Years and 4 Months,Yes,81125,169.0292134,Low_spent_Small_value_payments,235.5467757,0,-1.0214,0.3074,0.9688,-1.1451,0.1222 -0x44d1,CUS_0xb1da,August,40,671-03-8487,Doctor,110721.66,9259.805,3,7,15,4,"Credit-Builder Loan, Not Specified, Not Specified, and Auto Loan",16.37741324,13,3.15,6,_,260.7553409,28.62030027,26 Years and 6 Months,No,209.2454485,149.7101999,High_spent_Medium_value_payments,835.178773,0,1.5757,0.3992,-0.3636,-0.9648,0.1395 -0x44dd,CUS_0xb591,August,52,356-12-8113,Lawyer,35724.37,,5,3,7,4,"Auto Loan, Auto Loan, Auto Loan, and Personal Loan",24.21208889,14,5.15,1,Good,18.29,26.83189427,25 Years and 4 Months,No,86.13509736,10000,Low_spent_Medium_value_payments,418.0501445,0,-0.4609,0.9273,0.1612,0.7689,0.0445 -0x44e9,CUS_0x55b5,August,31,113-58-6546,Entrepreneur,18793.34,,0,7,8,2,"Debt Consolidation Loan, and Not Specified",16.01847232,,2.89,3,Good,863.66,28.53574697,,No,27.30133708,59.15678371,!@9#%8,334.7530459,0,-1.3352,-0.7423,1.5762,1.3387,-2.336 -0x44f5,CUS_0x5d05,August,35,823-01-2017,Scientist,27156.59,2160.049167,6,4,7,3,"Mortgage Loan, Student Loan, and Payday Loan",22.93317885,18,3.75,,Standard,787.21,28.87326925,16 Years and 3 Months,No,64.97075972,,Low_spent_Large_value_payments,250.7010533,0,0.0168,-0.2688,0.3155,0.2349,-1.5012 -0x4501,CUS_0x3868,August,34,916-37-8123,_______,3544929,1462.605833,8,9,30,6,"Mortgage Loan, Not Specified, Personal Loan, Home Equity Loan, Not Specified, and Auto Loan",,27.83338269,,8,Bad,3138.791576,38.81884795,11 Years and 11 Months,Yes,43.23479314,,Low_spent_Small_value_payments,234.1000198,0,-1.4647,0.1189,-0.159,-0.2972,0.8744 -0x450d,CUS_0x7b3a,August,27,084-00-6667,Scientist,14276.64,,8,8,19.95700519,7,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Student Loan, and Personal Loan",,21.30551701,,7,Bad,5093.160029,38.87233934,13 Years and 4 Months,Yes,1375.180068,18.95428348,!@9#%8,274.5872795,0,0.4886,-0.0008,-2.4047,0.3625,-0.5272 -0x4519,CUS_0x532a,August,41,213-65-3582,Writer,56643.04,,6,5,8,1433,"Mortgage Loan, and Student Loan",12.97618351,12,11.27,8,Standard,1115.764921,30.7570817,25 Years and 0 Months,No,76.55115343,350.7267057,Low_spent_Small_value_payments,359.8369251,0,0.8988,1.2179,-0.6226,1.4483,0.5914 -0x4525,CUS_0x7b5,August,28,156-06-2245,Mechanic,64249.44,5428.12,7,7,24,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",,15.6858895,12.78,11,Standard,1570.345642,34.46614988,14 Years and 3 Months,Yes,229.4802377,455.6525876,Low_spent_Medium_value_payments,137.6791747,0,-1.2693,0.0298,-1.1454,-1.9782,-0.1379 -0x4531,CUS_0x5937,August,23,771-83-2093,Musician,15680,1571.666667,7,9,17.06745738,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,18,8.55,15,Bad,2046.750954,34.52177518,18 Years and 2 Months,Yes,27.05276429,54.12252157,High_spent_Small_value_payments,309.2710929,0,0.3803,0.376,-0.9444,1.4384,-1.0114 -0x453d,CUS_0x8ba7,August,32,#F%$D@*&8,Journalist,34153.67,,6,7,17,2,"Personal Loan, and Not Specified",19.94590777,14,0.94,4,Standard,195.8694696,36.9375778,19 Years and 3 Months,NM,50.05261902,40.52205574,High_spent_Medium_value_payments,435.6471394,0,-0.0787,0.37,1.3356,-0.9116,-1.4622 -0x4549,CUS_0xc3d5,August,33,443-67-5998,Teacher,16599.37,,6,3,22,2,"Auto Loan, and Student Loan",13.68812172,11.90855893,17,6,_,1417.733447,24.40853442,20 Years and 8 Months,Yes,17.32201654,,Low_spent_Large_value_payments,279.5092862,0,-0.8055,0.6354,0.7405,0.6155,-1.8589 -0x4555,CUS_0x4d09,August,37,953-85-2296,Engineer,158757.88,13111.82333,3,5,4,4,"Auto Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",,0,14.23,7,Good,1500.149065,37.79537107,,No,324.8345158,524.4066609,Low_spent_Large_value_payments,731.9411566,0,0.1103,-1.0605,0.4786,-0.1836,-1.6372 -0x4561,CUS_0x92fc,August,45,437-25-0267,_______,86446.44,7309.87,0,2,7,1,Student Loan,0,3,8.12,1194,Good,1396.41,26.52627994,18 Years and 5 Months,No,53.204488,,Low_spent_Small_value_payments,566.7381686,0,0.4401,-0.8211,0.1338,0.5831,0.2087 -0x456d,CUS_0x3de8,August,27,614-99-8314,Entrepreneur,76113.09,,7,6,16,0,,19.56311516,16,17.84,5,Standard,1127.46,38.68450397,27 Years and 6 Months,NM,0,224.0384117,High_spent_Medium_value_payments,654.1373383,0,-1.0009,0.2906,0.8511,1.1888,-0.4223 -0x4579,CUS_0x2a61,August,46,753-68-0048,Teacher,9786.86,,9,10,1663,2,"Personal Loan, and Student Loan",36.36190173,16.10183177,15.53,6,Standard,2371.985567,23.45128524,,Yes,11.56443745,54.46174813,Low_spent_Medium_value_payments,309.1309811,0,0.1919,1.5061,-0.1808,-0.3292,0.0336 -0x4585,CUS_0x88f2,August,27,460-29-2746,Media_Manager,17028.31,,4,2,4,0,,0,3,2.39,5,Good,43.02,35.24284857,30 Years and 9 Months,No,0,69.40692526,Low_spent_Medium_value_payments,376.8956581,0,0.1121,-0.8527,-0.3482,0.6678,0.1142 -0x4591,CUS_0xb503,August,49,098-15-1551,Engineer,33835.16,,5,3,13,3,"Not Specified, Home Equity Loan, and Student Loan",,21,3.88,1,_,1353.86,21.85650766,27 Years and 11 Months,No,68.07297826,217.6646801,Low_spent_Small_value_payments,285.0220083,0,-1.3553,2.3076,0.8018,1.5456,-0.1152 -0x459d,CUS_0x10d7,August,39,289-56-9714,Developer,15968.14,,7,7,22.06745738,9,"Personal Loan, Auto Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, and Personal Loan",38.5531204,24.64839748,17.26,14,Bad,5550.229471,40.91771979,12 Years and 4 Months,Yes,77.99711822,128.5986713,Low_spent_Medium_value_payments,184.7517558,0,0.0354,0.313,1.4558,-0.0438,1.488 -0x45a9,CUS_0x8e38,August,40,597-58-5834,Entrepreneur,74499.6,5910.3,6,5,6.288361749,4,"Student Loan, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",20.36987032,17,10.04,11,Standard,235.27,26.42103566,19 Years and 11 Months,Yes,171.1457123,537.8717534,High_spent_Large_value_payments,541.9499954,0,-1.4202,0.3925,-0.9702,0.6905,1.3589 -0x45b5,CUS_0x60d8,August,46,592-18-2639,Architect,170131.24,14153.60333,5,3,4,0,,,9,,6,Good,798.78,45.04290531,31 Years and 3 Months,No,0,366.873006,High_spent_Medium_value_payments,1298.487327,0,0.3673,0.7148,-0.2005,-0.4028,-0.1103 -0x45c1,CUS_0x1546,August,18,078-43-8169,Engineer,15359.33,1484.362999,7,5,13,6,"Auto Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Auto Loan, and Not Specified",16.1487726,10,13.11,6,Standard,1631.85,28.52920703,15 Years and 0 Months,Yes,127.5872603,45.81243865,Low_spent_Medium_value_payments,335.9758859,0,-0.8344,-0.2277,-0.4844,1.87,2.336 -0x45cd,CUS_0x3969,August,31,316-61-8679,Architect,16154.25,1273.1875,8,8,29,5,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",37.70802991,23.88841071,4.8,15,Bad,1563.651922,26.02930808,16 Years and 5 Months,Yes,33.76738648,93.5413329,Low_spent_Medium_value_payments,280.0100306,0,0.466,-0.4896,1.3903,0.318,2.8842 -0x45d9,CUS_0x318d,August,38,#F%$D@*&8,Scientist,28050.2,2443.516667,6,5,34.06745738,7,"Not Specified, Personal Loan, Student Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",28.26804085,19,2.25,11,Bad,3757.430954,25.12629747,8 Years and 8 Months,NM,143.7928505,93.19870296,High_spent_Medium_value_payments,230.6398252,0,0.4756,-0.1687,-1.8266,-0.8821,-0.6241 -0x45e5,CUS_0x4d2e,August,35,280-54-8121,Teacher,98887.41,,0,5,1,1,Personal Loan,,2.249721541,2.16,5,Good,1684.761771,36.73268557,22 Years and 9 Months,No,67.18817915,134.126224,High_spent_Large_value_payments,856.3473468,0,2.0216,-0.655,-0.0255,-0.6443,0.8636 -0x45f1,CUS_0x8d84,August,80,072-51-9357,Developer,8879.57,,10,10,24.88954781,7,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Student Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",,26.35221924,4.41,15,_,2679.479671,34.91801067,,Yes,1351.464279,,Low_spent_Small_value_payments,257.319014,0,-0.4446,0.4849,1.2258,-1.5364,-0.2604 -0x45fd,CUS_0x1cd1,August,45,949-93-6591,Engineer,51200.46,4108.705,7,9,23.06745738,5,"Not Specified, Auto Loan, Not Specified, Personal Loan, and Credit-Builder Loan",44.54475643,25.23319491,8.15,7,Bad,4898.382166,35.7762744,13 Years and 5 Months,Yes,151.5022708,10000,High_spent_Medium_value_payments,383.6648421,0,0.28,-1.8733,-0.9421,-0.3302,-0.1507 -0x4609,CUS_0x9a43,August,45,066-97-7115,Mechanic,85720.48,6999.373333,7,6,16,4,"Home Equity Loan, Student Loan, Mortgage Loan, and Credit-Builder Loan",,20.31292096,13.31,2056,Standard,783.4547723,25.76066301,17 Years and 6 Months,Yes,171.47715,79.66495101,!@9#%8,688.7952324,0,0.8,-0.8527,0.4634,0.4185,-1.3196 -0x4615,CUS_0x4ab4,August,39,723-08-9989,Writer,28315.74,2427.645,10,8,24.06745738,3,"Student Loan, Payday Loan, and Not Specified",43.24145232,23,8.69,14,Bad,2430.860954,31.0967159,19 Years and 3 Months,Yes,56.35493881,264.8796339,Low_spent_Small_value_payments,184.8096393,0,0.555,-0.0321,1.2794,0.4573,-1.0828 -0x4621,CUS_0x37c9,August,38,861-27-2816,Developer,91642.4,7468.866667,7,5,6,1,Debt Consolidation Loan,11.88828072,8,6.2,0,Standard,543.2,34.24692504,26 Years and 3 Months,No,42.03790095,80.19111272,High_spent_Large_value_payments,864.657653,0,0.7417,1.1063,1.3183,0.1477,-0.584 -0x462d,CUS_0x80b3,August,38,286-74-6564,Musician,7109.175,,5,10,16,3,"Student Loan, Student Loan, and Debt Consolidation Loan",21.6486798,16,11.15,8,_,2098.55,35.21424727,18 Years and 0 Months,NM,17.21555374,29.41179381,Low_spent_Small_value_payments,297.0157774,0,-1.8303,1.1921,-0.3966,0.0723,-1.1061 -0x4639,CUS_0x55de,August,45,517-17-5278,Entrepreneur,65793.66,5616.805,6,3,11,4,"Personal Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",32.74965695,22.33968989,11.53,6,Standard,1621.362592,26.46449259,12 Years and 6 Months,Yes,113.2757624,,High_spent_Small_value_payments,337.2912968,0,1.5599,0.6081,0.1078,1.6245,0.6743 -0x4645,CUS_0x7ab3,August,39,#F%$D@*&8,Accountant,8317.345,678.1120833,3,5,9,2,"Credit-Builder Loan, and Personal Loan",27.47205004,20,19.59,10,Standard,457.13,31.80063081,19 Years and 4 Months,Yes,11.46895847,76.19212478,Low_spent_Small_value_payments,270.1501251,0,0.7008,0.1585,0.4051,0.6957,1.5261 -0x4651,CUS_0x137d,August,33,193-22-4579,Media_Manager,43655.04,,5,7,4.288361749,4,"Payday Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",0,2.359420971,2.71,0,_,106.1923928,32.80928415,,No,131.2362359,651.15441,High_spent_Small_value_payments,277.0388151,0,-0.0785,-0.8932,0.3039,0.5071,-1.159 -0x465d,CUS_0x8804,August,41,#F%$D@*&8,Accountant,14962.35,958.8625,7,9,34.06745738,8,"Student Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",33.56030206,22.6347492,9.97,12,Bad,2364.601916,28.39230672,20 Years and 5 Months,Yes,67.46163207,102.938564,Low_spent_Small_value_payments,188.765766,0,-0.6355,0.0763,0.1278,0.7156,-1.0189 -0x4669,CUS_0x5af2,August,38,770-27-1304,Accountant,101977.44,8475.12,3,3,19.28836175,6,"Mortgage Loan, Personal Loan, Payday Loan, Student Loan, Not Specified, and Payday Loan",,19,12.93,1247,Standard,345.8229054,35.20361853,9 Years and 2 Months,Yes,398.4119379,583.9538973,High_spent_Large_value_payments,544.9928493,0,0.9083,0.297,0.5043,0.2992,2.8187 -0x4675,CUS_0x1298,August,49,779-78-0153,Lawyer,102080.46,8299.705,5,6,10,4,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",20.80523098,15,11.17,,Standard,89.98,33.24202401,,Yes,223.3990346,412.5934587,!@9#%8,453.9780067,0,-0.2873,0.496,-1.4983,2.5221,0.1007 -0x4681,CUS_0x2e55,August,25,288-26-5763,Lawyer,16497.78,,8,6,22,2,"Auto Loan, and Payday Loan",33.64271122,17,1.64,10,Bad,2532.71,39.23116881,16 Years and 11 Months,Yes,16.48682869,14.60088737,High_spent_Medium_value_payments,348.0937839,0,0.6358,-0.977,-2.7279,0.1462,-1.5462 -0x468d,CUS_0x3cb6,August,34,918-41-4565,Musician,107275.71,,6,7,6,0,,,10,14.28,5,Good,150.8587965,38.24964547,17 Years and 9 Months,No,0,286.0814729,Low_spent_Large_value_payments,933.8246172,0,-0.0746,-0.9279,0.9112,-1.9048,-0.5293 -0x4699,CUS_0x258c,August,56,653-75-3150,Journalist,24018.71,,4,4,5,3,"Home Equity Loan, Student Loan, and Auto Loan",,17,5.07,,_,1303.708586,23.51034042,27 Years and 2 Months,No,43.67036539,74.20831563,High_spent_Medium_value_payments,322.4654526,0,0.8528,0.4621,0.4127,0.5376,-0.3595 -0x46a5,CUS_0x1947,August,62,715-00-9807,Engineer,107458.2,8698.85,8,3,7,1,Student Loan,,7,7.64,1,Good,222.1888745,42.2923477,32 Years and 6 Months,No,89.40600836,111.1103677,High_spent_Large_value_payments,925.3105217,0,-0.2155,-0.2226,1.4514,0.651,0.4689 -0x46b1,CUS_0x17d3,August,29,436-40-1442,Architect,32900.5,,4,5,4,2,"Credit-Builder Loan, and Payday Loan",14.2485634,13.59953681,8.33,1,_,51.43746826,29.48294222,23 Years and 8 Months,NM,32.06861788,217.4323593,Low_spent_Small_value_payments,303.0698562,0,0.1757,0.1519,2.0028,-0.8518,-0.0094 -0x46bd,CUS_0xacf1,August,32,176-52-9533,Doctor,17161.57,,6,3,9,4,"Student Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",14.14821588,11,10.06,11,Standard,743.2,30.96875603,17 Years and 6 Months,Yes,47.25462667,122.4236908,Low_spent_Small_value_payments,278.8347658,0,0.4071,0.1615,-1.9087,-0.7909,-0.2981 -0x46c9,CUS_0x6962,August,24,481-74-6465,Teacher,40198.96,,4,6,10,2,"Payday Loan, and Debt Consolidation Loan",,20,0.58,1,Standard,530.04,30.30680635,28 Years and 4 Months,No,39.96049353,10000,High_spent_Medium_value_payments,432.9554772,0,-0.2066,-0.5296,0.0312,1.2874,-0.2554 -0x46d5,CUS_0xb1e1,August,23,170-19-6505,Media_Manager,39242.58,3332.215,10,8,28.06745738,5,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,18.8555219,28.91,8,_,4596.742555,34.85029165,6 Years and 9 Months,Yes,110.1190897,174.2551717,Low_spent_Medium_value_payments,302.1269506,0,1.6134,0.6763,-0.9759,-2.8299,0.479 -0x46e1,CUS_0x6865,August,48,292-07-5024,_______,31645.66,2676.138333,4,4,4,2,"Auto Loan, and Personal Loan",19.39244601,14,8.6,399,Good,708.6198827,36.08719192,26 Years and 8 Months,No,34.25754125,,Low_spent_Small_value_payments,163.2387316,0,-1.277,-1.0768,-0.0717,-1.1584,0.5109 -0x46ed,CUS_0xacc7,August,26,417-24-5530,Lawyer,92428.83,,5,6,17,0,,,20,6.16,5,_,1396.62,41.83737341,26 Years and 3 Months,Yes,0,242.8685775,High_spent_Small_value_payments,797.0716725,0,-0.4244,-1.0751,3.0638,0.5243,0.0244 -0x46f9,CUS_0xadd2,August,80,693-69-2338,Manager,41925.32,,7,7,17,4,"Personal Loan, Mortgage Loan, Not Specified, and Personal Loan",27.61161549,14.42927494,12.06,8,_,1662.795633,27.29001327,19 Years and 3 Months,Yes,364.0149462,93.64144919,!@9#%8,403.7577748,0,0.217,-1.7242,1.0941,-0.0765,1.3176 -0x4705,CUS_0x5ae6,August,42,623-79-4308,Architect,132861.6,11243.8,5,7,4349,1,Credit-Builder Loan,17.82417715,11,14.35,8,Standard,1055.32,23.09168632,16 Years and 3 Months,Yes,66.60372897,,Low_spent_Medium_value_payments,184.8009918,0,0.5072,1.4505,0.9108,0.6207,-2.5394 -0x4711,CUS_0x830e,August,42,864-43-4445,Lawyer,107451.03,9204.2525,0,5,10.28836175,0,Payday Loan,10.50472788,10,14.34,3,Good,578.9356848,32.77163215,27 Years and 2 Months,NM,68.48670349,780.833864,Low_spent_Medium_value_payments,824.2519521,0,0.1942,-0.4506,-0.2717,-0.9405,-0.5827 -0x471d,CUS_0x414d,August,20,587-81-5669,Architect,91717.32,7577.777965,3,4,6.288361749,2,"Payday Loan, and Not Specified",90,2056,4.39,3,Standard,1.279350263,29.53517144,30 Years and 10 Months,Yes,425.2504543,713.8002267,Low_spent_Medium_value_payments,656.4690369,0,0.6038,-0.7813,0.6329,-0.9062,-0.3794 -0x4729,CUS_0x1ebb,August,28,092-56-0694,Writer,12723.325,,4,7,13,3,"Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",,8,8.81,,Standard,387.78,23.8470146,22 Years and 5 Months,No,29.27026504,,!@9#%8,247.7471593,0,-1.0039,0.6962,1.4169,-0.6556,0.9837 -0x4735,CUS_0x6142,August,38,735-50-1434,Accountant,12062.27,,4,3,13,3,"Payday Loan, Credit-Builder Loan, and Student Loan",19.74917601,16,9.79,10,Standard,1334.81,35.71011825,19 Years and 9 Months,Yes,21.40873561,,Low_spent_Small_value_payments,288.6842098,0,-0.249,-0.239,-0.1155,-0.1636,1.7932 -0x4741,CUS_0x5647,August,41,365-06-9242,Lawyer,79367.94,,3,4,8.288361749,0,,,15,15.33,,Standard,1020.049604,34.2987491,23 Years and 5 Months,Yes,0,1043.680978,Low_spent_Large_value_payments,394.3772293,0,0.5407,-1.5317,0.0408,-1.2096,1.2918 -0x474d,CUS_0xadc8,August,30,810-29-3531,Mechanic,18884777,6605.370947,8,7,8.288361749,2,"Not Specified, Debt Consolidation Loan, and Not Specified",14.550439,14,10.17,2,_,867.1137084,30.50335165,22 Years and 5 Months,Yes,744.0374463,557.6392773,High_spent_Large_value_payments,690.7573573,0,0.188,1.5048,0.0771,1.2523,-1.1635 -0x4759,CUS_0x6b50,August,50,185-98-1380,Scientist,103049.46,,4,6,6,3,"Not Specified, Credit-Builder Loan, and Home Equity Loan",,6.006194607,9.46,5,_,967.2601198,35.46268623,18 Years and 5 Months,No,255.2077858,10000,High_spent_Small_value_payments,675.7466992,0,0.2462,-0.1866,-0.326,0.9264,-0.2719 -0x4765,CUS_0x6472,August,31,416-81-5863,Journalist,32218.68,2813.89,3,5,5123.288362,0,Not Specified,,,8.18,6,Good,84.5294116,27.44724324,17 Years and 4 Months,No,24.02792788,571.023447,High_spent_Small_value_payments,384.6173708,0,-0.8612,0.0714,-0.6368,-0.2165,-0.8565 -0x4771,CUS_0x4229,August,46,588-79-8277,Architect,22032.74,,7,329,18,3,"Not Specified, Not Specified, and Debt Consolidation Loan",27.77966118,17,12.65,3,_,355.4,32.93851025,20 Years and 4 Months,NM,45.83656655,151.9472999,Low_spent_Large_value_payments,280.1223002,0,-0.4603,0.3223,-0.3908,0.7609,-1.6153 -0x477d,CUS_0x751b,August,51,309-10-8472,Entrepreneur,19514.52,1874.21,3,3,10,2,"Not Specified, and Not Specified",22.14815128,14,3.19,0,_,170.66,27.66468109,,Yes,20.2275002,109.2596201,Low_spent_Large_value_payments,327.9338797,0,-1.8903,-2.1035,1.3257,0.2325,0.4156 -0x4789,CUS_0x70e8,August,38,381-87-7038,_______,87070,7295.833333,8,7,10,0,,14.2578936,12,12.69,4,Standard,381.06,41.02820565,25 Years and 6 Months,NM,0,484.4706788,Low_spent_Small_value_payments,535.1126545,0,1.8985,0.7647,1.0052,0.252,-1.5509 -0x4795,CUS_0xb80c,August,22,933-92-6980,Scientist,27347.9,,8,3,7,1,Not Specified,10.04909294,9,15.54,11,Standard,1274.89,29.47426251,12 Years and 10 Months,Yes,13.30616253,53.43993558,High_spent_Large_value_payments,423.2530686,0,-0.8483,-1.5479,-0.3853,0.0882,-0.4166 -0x47a1,CUS_0x988d,August,42,037-10-7907,Writer,47899.86,3852.655,3,5,23,4,"Home Equity Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",17.50924398,13.79168471,19.59,11,Standard,2585.290441,33.96777017,12 Years and 4 Months,Yes,137.9759189,76.04287516,High_spent_Medium_value_payments,421.2467059,0,0.0589,0.3434,-0.4919,0.3321,0.2766 -0x47ad,CUS_0xc24b,August,20,496-58-8268,Engineer,40492.58,3275.381667,8,1479,28.88954781,7,"Student Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",32.85126341,20.04349887,2.45,13,Bad,1622.363554,35.08893845,9 Years and 6 Months,Yes,1501.300634,,!@9#%8,215.6684871,0,0.0798,-0.506,0.9836,0.7104,-1.2344 -0x47b9,CUS_0x2a27,August,29,745-09-2908,Lawyer,20334.43,1541.535833,5,6,22.06745738,3,"Personal Loan, Not Specified, and Not Specified",,12.38802124,17.79,12,_,2964.660413,26.17285211,19 Years and 10 Months,Yes,45.71172082,,Low_spent_Small_value_payments,240.7243715,0,0.9948,1.3179,-2.084,-0.6027,0.334 -0x47c5,CUS_0x7042,August,31,017-34-7557,_______,33409.33,,4,7,5,3,"Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,2118.15677,9.83,5,Standard,877.3793966,37.81962395,20 Years and 5 Months,Yes,46.12940862,,Low_spent_Medium_value_payments,299.9404058,0,0.3438,0.7808,0.1939,-0.5341,1.2465 -0x47d1,CUS_0x2e22,August,41,882-68-3751,Lawyer,15551.6,,6,3,13,6,"Not Specified, Student Loan, Not Specified, Payday Loan, Not Specified, and Home Equity Loan",10.82359769,10,11.81,6,Standard,1901.28,34.80162183,16 Years and 0 Months,Yes,39.55843134,64.85956369,Low_spent_Small_value_payments,317.1786716,0,-1.1515,0.5392,0.4155,-2.2213,0.037 -0x47dd,CUS_0x4450,August,22,066-49-5269,Teacher,88220.12,7146.676667,2,1,10.28836175,0,,0,0,3.93,1,Good,617.85,34.54585596,30 Years and 11 Months,No,0,10419.93746,High_spent_Large_value_payments,801.438652,0,-1.1586,0.7907,-1.8491,-1.4612,0.443 -0x47e9,CUS_0x5fd2,August,51,323-80-3554,Musician,138142.16,11719.84667,0,5,1.288361749,4,"Credit-Builder Loan, Personal Loan, Student Loan, and Not Specified",0,2,3.94,3,Good,174.79,24.80915635,17 Years and 9 Months,No,345.741569,864.7518065,High_spent_Small_value_payments,641.4287521,0,1.3565,0.6671,-1.7053,-0.124,1.5355 -0x47f5,CUS_0x82bf,August,28,986-44-5074,Manager,56714.52,,7,10,29,4,"Student Loan, Student Loan, Mortgage Loan, and Not Specified",,24.85356702,11.64,13,_,1943.809006,37.49494189,18 Years and 3 Months,NM,165.3355529,140.4871742,High_spent_Medium_value_payments,400.2982729,0,-0.2734,0.0546,0.6034,-0.1622,0.4656 -0x4801,CUS_0x7f27,August,52,596-88-3424,Entrepreneur,100058.19,8529.1825,7,5,5,4,"Mortgage Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",,18,11.45,6,Standard,1109.15,41.28412642,16 Years and 3 Months,Yes,320.7675611,,High_spent_Large_value_payments,631.3061542,0,0.7547,0.044,-0.8106,-1.3761,-1.0968 -0x480d,CUS_0x8bae,August,23,405-05-7245,Media_Manager,86676.39,7198.0325,7,5,5,7,"Personal Loan, Mortgage Loan, Home Equity Loan, Student Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",,19,15.61,6,Standard,1066.91,31.91030629,8 Years and 10 Months,Yes,453.7034662,52.96009367,High_spent_Large_value_payments,453.1396901,0,0.3318,-0.0428,-0.3866,2.0743,-0.1163 -0x4819,CUS_0x2076,August,26,486-13-8771,Manager,26281.03,2440.085833,8,3,16,3,"Auto Loan, Mortgage Loan, and Not Specified",,20,10.82,7,Standard,267.49,32.32119856,16 Years and 5 Months,Yes,46.42616161,152.7421828,High_spent_Small_value_payments,304.8402389,0,-3.0917,-1.3282,-0.9131,-0.9912,-0.539 -0x4825,CUS_0x34a3,August,40,423-84-9607,Teacher,14407.92,913.66,10,8,31.06745738,6,"Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Personal Loan",41.11507775,21,28.63,11,Bad,4507.000954,34.93829291,0 Years and 9 Months,Yes,67.22055998,39.68355719,Low_spent_Small_value_payments,247.7415949,0,0.4284,0.2245,0.0405,-0.8924,-2.0649 -0x4831,CUS_0x641b,August,80,799-05-0413,Musician,22332.29,,6,7,14,3,"Mortgage Loan, Auto Loan, and Auto Loan",16.95446813,12,10.29,5,Standard,641.6952607,37.60845739,27 Years and 10 Months,No,34.5384986,57.12241593,High_spent_Small_value_payments,373.4976259,0,-0.3424,0.1125,0.6471,0.1486,0.3071 -0x483d,CUS_0x6ca6,August,24,042-68-3497,Writer,15964.31,,10,5,23.06745738,5,"Mortgage Loan, Home Equity Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",35.48527335,20,21.73,15,Bad,4598.620954,33.45110207,,Yes,54.02442559,10000,Low_spent_Medium_value_payments,280.7263791,0,0.934,0.8479,0.0822,-1.0647,1.2632 -0x4849,CUS_0x81d,August,27,806-28-3875,Scientist,43452.15,,3,6,7,5,"Student Loan, Payday Loan, Credit-Builder Loan, Not Specified, and Not Specified",,9,10.4,11,Standard,859.42,28.63181641,10 Years and 3 Months,Yes,155.2601366,247.2939087,Low_spent_Large_value_payments,253.8472048,0,-1.4387,-0.4363,-0.9192,-0.6272,-0.5257 -0x4855,CUS_0xa6a3,August,35,683-20-9568,Engineer,42018.21,3544.5175,0,7,5.288361749,2,"Not Specified, and Student Loan",14.56252452,,15.27,5,Good,379.8193985,37.56180349,19 Years and 11 Months,No,46.28765688,496.4760249,High_spent_Medium_value_payments,490.7092875,0,0.3202,0.3455,0.4007,-0.6306,0.927 -0x4861,CUS_0x4349,August,34,124-74-1413,Manager,86763.16,7138.263333,4,1467,9.177909563,6,"Student Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Personal Loan, and Personal Loan",,13,15.87,10,Standard,959.9,28.00356634,9 Years and 3 Months,Yes,1647.548383,,High_spent_Small_value_payments,327.2203143,0,-1.6705,2.1166,1.0738,0.3512,0.3265 -0x486d,CUS_0x5046,August,27,630-44-3542,Entrepreneur,29901.97,2462.830833,3,4,7,2,"Debt Consolidation Loan, and Debt Consolidation Loan",14.52667633,10.40270968,1.07,1,_,350.9346039,27.57786867,22 Years and 2 Months,No,42.43430891,81.5302641,High_spent_Small_value_payments,382.3185103,0,-1.4594,0.1818,0.5525,-0.2564,-0.7392 -0x4879,CUS_0x66a7,August,41,041-64-1188,Lawyer,36963.52,,10,10,24.95700519,8,"Not Specified, Debt Consolidation Loan, Payday Loan, Payday Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Mortgage Loan",,28.44290472,4.27,17,Bad,3022.162335,31.7556695,13 Years and 10 Months,Yes,1527.084437,177.7419846,High_spent_Small_value_payments,124.3525428,0,1.262,2.5599,-1.2011,-0.7518,-1.6115 -0x4885,CUS_0x7ae7,August,18,#F%$D@*&8,Entrepreneur,18235.61,,8,6,9,2,"Personal Loan, and Payday Loan",21.35644602,15,14.29,9,Standard,1259.92,24.25109713,10 Years and 3 Months,Yes,22.99100815,59.23252816,High_spent_Small_value_payments,309.1398804,0,1.1981,-0.8748,-0.19,-0.3455,-0.5082 -0x4891,CUS_0x64a3,August,28,420-36-8896,Teacher,55916.52,4597.71,809,7,2366,4,"Auto Loan, Mortgage Loan, Student Loan, and Mortgage Loan",14.61944577,13,2.23,2,Standard,1069.61,28.37416888,26 Years and 10 Months,Yes,103.066389,129.7043259,High_spent_Medium_value_payments,477.0002851,0,0.1404,-0.7546,-1.7931,0.9818,-0.7192 -0x489d,CUS_0x49e3,August,29,514-61-2381,Doctor,45139.08,3535.59,8,9,19.88954781,6,"Payday Loan, Not Specified, Debt Consolidation Loan, Not Specified, Payday Loan, and Credit-Builder Loan",25.6218695,19,9.16,,_,1419.66,34.29052016,14 Years and 6 Months,NM,1476.929526,80.59471527,High_spent_Medium_value_payments,351.7046777,0,-0.2093,0.8576,0.0024,-0.8215,0.2712 -0x48a9,CUS_0x42fb,August,37,176-30-1485,Entrepreneur,9589.545,,8,7,33,6,"Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",24.99533779,18,13.71,1903,Standard,1907.73,34.43680393,,Yes,25.24824804,39.64103595,!@9#%8,264.823591,0,2.2385,-0.0655,-1.1224,0.5551,0.4799 -0x48b5,CUS_0xa5e9,August,23,640-46-2271,Teacher,16644.37,1677.030833,6,7,29.06745738,2,"Home Equity Loan, and Not Specified",49.16773489,27.59440313,7.16,10,Bad,1819.164279,33.54184656,18 Years and 4 Months,Yes,16.2482969,76.09493912,High_spent_Small_value_payments,308.6395594,0,-0.5603,-1.0982,-0.3037,-0.5625,0.1434 -0x48c1,CUS_0xbba8,August,18,709-94-0795,Musician,108337.32,8474.980346,3,4,19.28836175,4,"Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",12.81829125,14,11.63,11,Standard,388.5443196,32.8030282,30 Years and 3 Months,Yes,806.6026384,819.6549736,High_spent_Medium_value_payments,543.6809834,0,0.3294,-0.8142,-0.0947,0.2748,-0.2054 -0x48cd,CUS_0x5479,August,56,087-00-0175,Musician,29365.12,,5,5,12,1,Home Equity Loan,,11,7.04,5,_,401.2354197,25.22160475,26 Years and 4 Months,No,21.52158419,,Low_spent_Large_value_payments,348.0677272,0,-0.4578,0.0765,1.4108,-0.0546,-0.744 -0x48d9,CUS_0x3bc7,August,43,799-75-6293,Engineer,64613.32,5232.443333,10,7,33,5,"Mortgage Loan, Payday Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",,18,16.35,14,Standard,1522,31.74400875,10 Years and 11 Months,Yes,235.4387879,201.2401945,High_spent_Medium_value_payments,336.5653509,0,0.0521,-0.9116,1.5692,-2.3013,-1.369 -0x48e5,CUS_0x2b8c,August,26,401-72-9262,Doctor,163380.76,13446.06333,3,3,10,2,"Debt Consolidation Loan, and Auto Loan",,1.175309545,3.91,7,Good,386.4452268,33.05683094,20 Years and 10 Months,NM,198.6325661,617.5997356,Low_spent_Medium_value_payments,808.3740316,0,-0.1447,0.4645,0.3965,0.0599,-2.0042 -0x48f1,CUS_0x62e9,August,33,678-34-4743,Teacher,179948.84,14836.73667,0,5,4,3,"Mortgage Loan, Home Equity Loan, and Student Loan",,0,0.35,4,Good,1234.311021,27.02831395,31 Years and 9 Months,No,446.2593466,674.3317229,Low_spent_Large_value_payments,633.0825972,0,-0.4763,-0.3719,-0.0818,-0.2789,0.5226 -0x48fd,CUS_0x5f64,August,32,231-02-6063,Doctor,31323.88,,10,5,17.06745738,7,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Credit-Builder Loan, and Not Specified",,22.63784601,1.69,14,Bad,2063.549434,34.97068091,13 Years and 2 Months,Yes,135.0358881,45.31951213,High_spent_Large_value_payments,276.7566452,0,-0.4628,-0.6421,-0.1695,-0.2077,-0.6006 -0x4909,CUS_0xb498,August,27,923-33-3914,Media_Manager,7476.3,636.025,6,8,27,2,"Credit-Builder Loan, and Student Loan",,9.497026825,11.58,8,_,2394.854753,38.56227241,13 Years and 0 Months,Yes,9.718145237,58.60730419,Low_spent_Medium_value_payments,275.2770506,0,0.1144,0.2964,-0.7611,-2.0295,1.5875 -0x4915,CUS_0xb378,August,49,757-87-5016,Journalist,18407.68,,4,3,4,4,"Home Equity Loan, Student Loan, Personal Loan, and Credit-Builder Loan",16.71596041,,11.99,0,Good,1199.21,32.43945844,16 Years and 10 Months,No,36.33037309,123.0659053,Low_spent_Large_value_payments,279.2010549,0,-1.1336,-0.6106,-0.0923,1.9218,0.7906 -0x4921,CUS_0x432b,August,41,066-46-4441,Journalist,19620.3,,3,5,14,3,"Not Specified, Payday Loan, and Home Equity Loan",15.94147256,12.77232999,10.45,4,Standard,189.9748062,28.11244677,17 Years and 5 Months,Yes,36.97127884,,Low_spent_Small_value_payments,301.0888493,0,-0.2461,-0.7142,-1.0023,1.3946,0.1633 -0x492d,CUS_0x3356,August,53,050-91-7855,Doctor,30081.37,,1,2,3,1,Mortgage Loan,12.81829125,,9.18,1,Good,1270.025647,34.51946336,30 Years and 4 Months,No,13.67171284,223.0260842,!@9#%8,293.8530996,0,-0.1115,0.8314,1.662,2.2336,1.7948 -0x4939,CUS_0xc5ee,August,30,534-84-1363,Mechanic,16848804,3797.351204,7,6,31,8,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",,25,16.11,12,Bad,4509.888272,34.6748617,6 Years and 11 Months,Yes,519.8004775,224.5547209,!@9#%8,306.8174629,0,-1.4947,-0.4903,0.0257,1.2324,2.6536 -0x4945,CUS_0x3556,August,44,476-34-1130,Mechanic,18957.37,,2,5,3,2,"Debt Consolidation Loan, and Payday Loan",0,2,9.58,3,Good,288.32,37.60310107,17 Years and 9 Months,No,30.62857577,,Low_spent_Medium_value_payments,358.7035528,0,0.3569,0.2272,0.3639,0.4545,-1.0651 -0x4951,CUS_0x8b09,August,47,909-85-2827,Lawyer,132473.04,,3,5,8.288361749,2,"Mortgage Loan, and Payday Loan",14.01001596,,4.37,4,Good,1412.35,37.08918257,33 Years and 2 Months,No,119.4399902,492.3575613,High_spent_Large_value_payments,1137.08191,0,-0.314,-1.0562,1.7729,2.808,0.0325 -0x495d,CUS_0x3183,August,26,131-23-5866,Engineer,104708.79,8717.7325,0,3,0.288361749,2,"Not Specified, Not Specified, and Student Loan",7.513732731,10,8.1,8,Good,201.9025796,35.59036058,20 Years and 5 Months,NM,255.7449322,12028.07451,Low_spent_Medium_value_payments,112.7965787,0,-1.3486,0.9413,1.538,-0.633,-0.7803 -0x4969,CUS_0x2b83,August,34,120-91-8866,Lawyer,33616.73,,2,6,10,1,Payday Loan,0,3,2.73,9,_,1177.032589,26.49604996,,No,24.11185039,68.19298705,High_spent_Large_value_payments,439.0837934,0,-0.7194,-0.0206,1.2225,-0.8688,0.1458 -0x4975,CUS_0xc728,August,24,151-94-4427,Mechanic,19267.17,,6,5,26,6,"Home Equity Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,14.35631102,15.71,12,Standard,1968.549389,35.51633514,13 Years and 8 Months,Yes,77.63093664,189.3721564,Low_spent_Small_value_payments,176.156657,0,1.412,-1.0259,-0.0043,0.8021,-0.1678 -0x4981,CUS_0xa232,August,54,145-48-1658,Manager,123306.12,10321.51,5,874,9,1,Payday Loan,10.47122716,11,6.24,0,Good,827.59,36.27396882,25 Years and 5 Months,No,77.00407799,295.2333802,High_spent_Small_value_payments,919.9135418,0,0.8322,-3.0815,-0.2763,0.4459,1.4403 -0x498d,CUS_0x14e5,August,29,836-69-3439,Doctor,7981.345,412.1120833,9,5,23.06745738,9,"Student Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Not Specified",36.26418984,19.22241518,25.96,9,Bad,4753.434572,40.14869887,0 Years and 11 Months,Yes,57.9316888,28.48164006,Low_spent_Medium_value_payments,208.0775915,0,2.2406,0.5223,1.6071,0.5754,-0.2986 -0x4999,CUS_0x2ced,August,41,499-65-8867,Developer,10987.935,1103.66125,4,4,3,4,"Credit-Builder Loan, Personal Loan, Payday Loan, and Student Loan",6.10413283,8,9.68,6,Good,1264.852938,23.23000672,32 Years and 2 Months,No,51846,70.27776661,Low_spent_Small_value_payments,315.1540367,0,1.1397,-0.2351,-1.4023,1.5404,1.2117 -0x49a5,CUS_0x25ac,August,20,681-66-3380,Teacher,49233,,10,10,22.95700519,6,"Student Loan, Auto Loan, Home Equity Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",34.36926412,20.16722807,26.98,8,Bad,4753.536887,37.18726497,2 Years and 8 Months,Yes,1550.931785,,Low_spent_Small_value_payments,104.8573615,0,-1.0938,0.1562,-0.3555,0.399,0.8542 -0x49b1,CUS_0x29a2,August,26,416-19-6284,Developer,57765.42,4618.785,3,6,13,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",21.35532185,13,12.47,5,Standard,1276.72,25.7862613,13 Years and 0 Months,Yes,124.5485847,241.8078757,Low_spent_Small_value_payments,385.5220396,0,-1.3949,1.0732,0.0124,-0.131,0.3365 -0x49bd,CUS_0xae0,August,36,#F%$D@*&8,Lawyer,147221.48,12046.45667,8,4,20,4,"Student Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",15.57954242,15,22.07,4,Standard,654.4418735,32.35532834,25 Years and 11 Months,Yes,309.6113643,11597.57448,High_spent_Small_value_payments,336.8236483,0,-0.5658,-0.597,1.1787,0.6739,0.8711 -0x49c9,CUS_0x5ecf,August,20,045-82-9696,Lawyer,31736.14,2813.678333,7,9,33.06745738,5,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",37.60701263,18.04167805,-0.77,1189,Bad,2829.190744,27.14032135,20 Years and 6 Months,Yes,121.3479925,115.5375893,Low_spent_Large_value_payments,287.7619636,0,0.5356,0.0068,-0.5812,1.3463,-0.0359 -0x49d5,CUS_0x2cbc,August,53,698-09-7729,Mechanic,105997.47,8711.1225,3,2,8,0,,,3,2.85,5,Good,914.7723587,31.90095388,32 Years and 11 Months,No,0,242.598097,High_spent_Large_value_payments,896.3970156,0,0.3148,0.3646,-0.4154,0.1261,-1.4116 -0x49e1,CUS_0x7fa,August,18,744-95-8181,Accountant,46563.27,3750.2725,7,7,33,2,"Credit-Builder Loan, and Personal Loan",33.24680062,24,10.45,7,Bad,2390.74,34.83518938,11 Years and 9 Months,NM,64.73305243,124.8165406,High_spent_Medium_value_payments,435.4776569,0,1.4001,1.7759,0.6563,-0.6785,-0.1547 -0x49ed,CUS_0x5a67,August,34,#F%$D@*&8,Developer,91308.16,7781.013333,3,7,17,3,"Payday Loan, Student Loan, and Mortgage Loan",,9,13.28,5,Standard,1195.772523,31.39624631,33 Years and 3 Months,Yes,217.2614828,276.8346779,High_spent_Medium_value_payments,566.11269,0,0.9102,0.9221,0.4597,0.4141,-0.0767 -0x49f9,CUS_0x88ca,August,50,626-22-2410,Writer,30020.14,,1,7,3,4,"Student Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",12.68319875,12,1.25,6,_,1292.34,26.89337522,25 Years and 5 Months,No,257.6197136,116.8529403,Low_spent_Small_value_payments,317.5756395,0,-1.1822,0.4439,-0.4724,0.5181,0.9584 -0x4a05,CUS_0xb678,August,27,861-67-5130,Teacher,74268.2,,5,5,15,2,"Personal Loan, and Debt Consolidation Loan",25.70916573,20,7.5,11,Standard,1540.500627,33.98421312,14 Years and 0 Months,Yes,77.65119483,,Low_spent_Medium_value_payments,607.2098762,0,0.8916,-0.1795,-0.5224,0.6788,-1.9675 -0x4a11,CUS_0x2a75,August,43,079-38-0782,Teacher,86092.12,6929.343333,7,3,13.28836175,0,Student Loan,22.62772231,19,11.43,4,Standard,707.95,25.90886608,25 Years and 5 Months,No,64.03988274,,Low_spent_Large_value_payments,251.2369449,0,-1.3934,1.455,-0.3353,0.5462,0.6482 -0x4a1d,CUS_0x89cb,August,47,120-21-4824,Architect,15952.79,,5,1,3,3,"Debt Consolidation Loan, Mortgage Loan, and Payday Loan",10.39797367,9,3.41,6,Good,584.3655548,24.90167679,16 Years and 0 Months,No,25.3844849,25.52527414,High_spent_Small_value_payments,337.0327392,0,1.1498,0.0951,0.4905,0.2788,-1.3313 -0x4a29,CUS_0xeda,August,43,445-18-7956,Mechanic,78999.96,,8,5,20,4,"Payday Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",50.59488892,31.53076003,7.73,16,Bad,2332.437909,37.28195659,9 Years and 9 Months,Yes,138.2606062,,Low_spent_Small_value_payments,224.6140621,0,1.1796,0.6729,1,1.5144,0.8463 -0x4a35,CUS_0x640e,August,29,584-41-4520,Scientist,34107.42,3000.285,8,5,17,2,"Mortgage Loan, and Home Equity Loan",,,,7,Standard,884.77,25.55286879,17 Years and 2 Months,Yes,44.53855484,,Low_spent_Small_value_payments,321.2613711,0,-0.2039,0.3406,-0.6719,1.7961,0.3157 -0x4a41,CUS_0x9e6c,August,33,#F%$D@*&8,Scientist,44360.46,3743.705,3,4,13,0,,23.4277435,16,7.91,7,Standard,565.04,30.861357,30 Years and 11 Months,Yes,0,216.830393,High_spent_Small_value_payments,417.540107,0,0.3581,0.215,1.5622,-1.5691,0.2582 -0x4a4d,CUS_0x4dbd,August,80,825-76-8127,Scientist,25138.62,,8,4,8,3,"Not Specified, Debt Consolidation Loan, and Personal Loan",13.40029288,9,6.05,5,_,291.0218055,30.35489205,27 Years and 8 Months,No,39.75820611,,Low_spent_Small_value_payments,309.9420738,0,-1.0626,1.0629,1.3612,0.2451,-0.0423 -0x4a59,CUS_0x53f9,August,38,250-47-4635,Lawyer,38149.09,3121.090833,1,3,8,3,"Home Equity Loan, Debt Consolidation Loan, and Payday Loan",7.316090565,7,6.72,2328,_,821.91,27.39450446,19 Years and 11 Months,No,90.32160298,300.8986221,Low_spent_Small_value_payments,210.8888582,0,-1.2201,1.3265,-0.091,1.5576,-0.2618 -0x4a65,CUS_0x40fe,August,27,751-18-7527,Mechanic,55229.64,,5,4,5,4,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",17.3222568,13,7.42,1826,Standard,590.3,31.26294558,29 Years and 8 Months,No,124.4958267,,High_spent_Large_value_payments,535.0773493,0,-0.7198,0.6526,0.1917,-0.3133,1.0067 -0x4a71,CUS_0xa11d,August,23,877-60-2559,Manager,57786.18,4910.515,7,4,11,4,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",,,8.89,7,Standard,1876.875753,42.0468677,20 Years and 4 Months,Yes,167.8868033,98.18315619,High_spent_Medium_value_payments,474.9815406,0,-0.3205,-1.1194,-3.6651,0.357,-1.1379 -0x4a7d,CUS_0x8c1,August,28,239-64-7596,Accountant,98917.23,8513.1025,1,4,0.288361749,2,"Payday Loan, and Debt Consolidation Loan",13.31231663,,7.92,5,Good,654.6691477,38.66665869,15 Years and 8 Months,No,115.5313247,1190.773646,Low_spent_Small_value_payments,345.0275439,0,-0.5248,-0.1336,-1.5338,0.0578,0.0964 -0x4a89,CUS_0x3ba0,August,23,719-92-2858,Manager,15803.96,,3,5,15,100,"Mortgage Loan, Not Specified, Home Equity Loan, and Not Specified",27.4398616,19,13.25,6,Standard,931.32,34.69391905,21 Years and 11 Months,Yes,45.03724454,24.1932243,High_spent_Large_value_payments,301.5691978,0,1.2152,-0.2131,0.9528,-0.5175,0.6726 -0x4a95,CUS_0x7fb2,August,42,402-37-0700,_______,13050.62,,7,7,20,2,"Personal Loan, and Student Loan",,19,19.98,4,Standard,884.938356,23.86404573,19 Years and 9 Months,NM,11.09209427,,High_spent_Small_value_payments,289.1325858,0,0.1875,-1.3081,-0.0987,-2.1437,-0.9729 -0x4aa1,CUS_0xaad7,August,35,555-72-2698,Writer,40602.72,3177.56,4,6,14,3,"Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",15.11717768,14,8.08,7,Standard,1314.56,26.91873994,30 Years and 4 Months,No,96.20398492,278.9550642,!@9#%8,212.5969509,0,0.6291,1.3468,0.2949,1.036,-0.5519 -0x4aad,CUS_0xb85a,August,43,991-95-5524,Accountant,56370.98,4973.581667,4,6,3,4,"Auto Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",0,0,6.92,3,Good,809.9297192,29.46415555,18 Years and 3 Months,No,180.8102948,76.22391692,High_spent_Medium_value_payments,490.3239549,0,0.3917,2.0328,-0.0986,-0.9336,-0.5229 -0x4ab9,CUS_0x6e47,August,52,110-25-7439,Teacher,17727.93,1349.3275,6,5,15,4,"Payday Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",18.79229875,18,14.8,8,Standard,1017.2,32.23409358,,Yes,37.83185512,43.17958644,Low_spent_Medium_value_payments,333.9213084,0,1.1684,-1.725,-0.394,1.4899,0.6437 -0x4ac5,CUS_0x8cd2,August,27,147-87-8973,Mechanic,64720.9,5559.408333,4,4,2,3,"Home Equity Loan, Payday Loan, and Personal Loan",,1,0.68,6,Good,1306.78872,30.30877674,33 Years and 3 Months,No,112.177075,241.0001184,High_spent_Medium_value_payments,477.4160337,0,0.3847,1.9331,-0.1409,-0.0412,1.802 -0x4ad1,CUS_0x931c,August,20,183-55-0659,Doctor,19549.47,1897.1225,3,7,25,7,"Payday Loan, Personal Loan, Home Equity Loan, Payday Loan, Not Specified, Home Equity Loan, and Payday Loan",16.83876011,14,12.05,5,_,1924.26,29.76666554,12 Years and 11 Months,Yes,86.85516278,73.85321006,High_spent_Medium_value_payments,279.0038772,0,-0.3404,-1.0404,-0.2172,0.1727,0.9242 -0x4add,CUS_0xac0c,August,43,187-25-3679,Entrepreneur,63876.28,5325.023333,6,5,27,5,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",42.78496084,26.64282022,17.51,16,Bad,4236.78626,34.79281958,1 Years and 3 Months,Yes,160.2043195,241.7329959,Low_spent_Large_value_payments,400.5650179,0,-1.2557,0.3595,0.146,0.0462,-1.0437 -0x4ae9,CUS_0x4b8,August,32,587-15-5826,Accountant,27269.1,2437.425,3,3,9,1,Auto Loan,22.45989108,13.27970794,11.1,3,_,1619.860799,32.60788479,20 Years and 4 Months,No,19.62295059,,Low_spent_Small_value_payments,288.6274428,0,-0.9195,1.03,0.3297,-0.0263,-0.8409 -0x4af5,CUS_0x8cd4,August,51,776-50-5932,Lawyer,20871.24,,3,5,6,0,,12.0788248,11,2.95,0,Good,337.5780762,26.47862621,15 Years and 9 Months,No,0,72.30129586,High_spent_Medium_value_payments,368.3923222,0,-0.4881,0.5858,1.0241,0.0148,0.4482 -0x4b01,CUS_0x11b7,August,33,440-53-1294,Teacher,70099.04,5420.165108,1,1,9.288361749,2,"Mortgage Loan, Personal Loan, and Student Loan",,6,9.85,5,Good,428.944305,28.03084258,24 Years and 4 Months,No,790.339473,570.9498484,High_spent_Medium_value_payments,601.9706932,0,-0.2638,0.7935,0.814,-3.0164,-1.917 -0x4b0d,CUS_0x78db,August,47,242-15-2966,Accountant,97505.64,,3,5,1,0,,20.10803806,,13.56,5,Good,336.0409474,30.27962307,16 Years and 0 Months,No,0,348.3208306,High_spent_Small_value_payments,746.0261694,0,-0.3539,0.2033,-0.338,-0.2042,0.1195 -0x4b19,CUS_0x4a9b,August,19,873-48-7202,Manager,9734.325,876.19375,8,10,31,4,"Credit-Builder Loan, Student Loan, Payday Loan, and Payday Loan",39.80097874,19,1.21,11,Bad,2558.01,29.68869791,13 Years and 9 Months,Yes,17.85398543,,Low_spent_Large_value_payments,300.4040544,0,0.531,0.0158,0.6047,1.5726,0.1586 -0x4b25,CUS_0x834f,August,51,893-19-7441,Accountant,14506463,3096.836667,2,7,9,4,"Auto Loan, Mortgage Loan, Personal Loan, and Not Specified",0,1.216075853,0.92,6,Good,99.71807428,34.46225598,31 Years and 8 Months,No,65254,57.14332182,High_spent_Large_value_payments,415.909991,0,0.6836,0.8201,0.2508,-1.1035,0.1729 -0x4b31,CUS_0x9510,August,32,754-01-5850,Engineer,79772.04,6885.67,4,4,19,3,"Student Loan, Credit-Builder Loan, and Credit-Builder Loan",,16,21.86,6,_,1619.87,30.66322603,10 Years and 4 Months,NM,131.1403179,119.5760848,High_spent_Large_value_payments,677.8505972,0,-1.5919,0.2963,-0.3924,-1.2644,1.4399 -0x4b3d,CUS_0x8d38,August,42,471-94-4094,Scientist,22416.225,,0,6,3,3,"Mortgage Loan, Auto Loan, and Home Equity Loan",13.48902296,11,6.93,2,Good,397.34,31.72145266,19 Years and 9 Months,No,39.03350854,42.9808537,High_spent_Large_value_payments,325.4875128,0,-0.487,-0.4075,0,-0.6253,-0.2204 -0x4b49,CUS_0xe34,August,43,366-72-5485,_______,63658.26,5281.855,3,6,12,2,"Student Loan, and Mortgage Loan",27.69372346,20,,8,Standard,498.59,32.5604033,26 Years and 9 Months,Yes,81.23619472,127.2235614,High_spent_Medium_value_payments,569.7257439,0,0.6209,-1.2148,-1.6022,-0.2057,0.8792 -0x4b55,CUS_0xab8,August,44,403-76-8313,Doctor,74820.12,6511.01,9,6,27,5,"Mortgage Loan, Credit-Builder Loan, Not Specified, Student Loan, and Personal Loan",26.29667944,19.14380127,6.72,9,Bad,2789.54224,28.81888417,3 Years and 2 Months,Yes,255.5801522,,High_spent_Large_value_payments,475.4630134,0,-0.7951,0.675,-0.2242,-1.4867,-0.4351 -0x4b61,CUS_0xb3cb,August,53,304-95-5483,Writer,29462.18,,5,5,8,1,Home Equity Loan,,19,5.03,4,Standard,1477.96,36.32131919,23 Years and 10 Months,No,16.71439473,127.4921796,High_spent_Small_value_payments,366.8115923,0,-0.0442,0.3755,0.6927,1.6255,-0.2665 -0x4b6d,CUS_0x5607,August,37,728-13-8219,Lawyer,118111.08,10072.59,2,6,7,3,"Home Equity Loan, Auto Loan, and Not Specified",8.601391361,3.631436918,4.55,1,Good,422.9628202,33.74582439,,No,219.9504576,847.8047617,Low_spent_Small_value_payments,229.5037807,0,-0.5014,0.5978,-0.3973,-0.2787,-1.6469 -0x4b79,CUS_0x41dc,August,25,054-35-0954,_______,10132.985,,9,7,30.06745738,7,"Debt Consolidation Loan, Payday Loan, Student Loan, Not Specified, Mortgage Loan, Auto Loan, and Not Specified",52.82883779,28.85766113,9.8,6,Bad,2385.128344,29.95231567,15 Years and 4 Months,Yes,45.29827329,81.13026155,Low_spent_Small_value_payments,221.0927189,0,1.2676,1.1341,0.5727,1.14,0.8452 -0x4b85,CUS_0x6a95,August,39,#F%$D@*&8,Journalist,53530.53,4315.8775,8,9,26,7,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",29.00358161,,8.12,11,Bad,1952.97,33.92539508,17 Years and 3 Months,Yes,218.712574,189.8495751,Low_spent_Medium_value_payments,303.0256009,0,1.3412,-0.2765,-1.0753,-0.5258,0.1627 -0x4b91,CUS_0xb350,August,26,423-03-2422,Musician,8918.13,825.1775,7,6,28.06745738,8,"Personal Loan, Payday Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",24.88930679,14,2.9,10,Bad,2136.370954,26.28988634,10 Years and 10 Months,Yes,39.80552904,53.17474174,High_spent_Small_value_payments,222.8171913,0,2.0585,-2.2213,-0.3309,0.7649,-1.9618 -0x4b9d,CUS_0x3798,August,55,698-19-2277,Lawyer,129903.88,10538.32333,7,6,20,1,Home Equity Loan,10.38409189,10,8.13,3,Standard,1227.21,38.3070593,24 Years and 0 Months,Yes,104.7461774,104.6249455,High_spent_Large_value_payments,1084.46121,0,-0.5043,-1.7421,0.0836,0.992,-1.4539 -0x4ba9,CUS_0x2c8f,August,26,364-46-1763,Entrepreneur,54275.88,4758.99,8,10,30.88954781,6,"Not Specified, Auto Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",,19.24641037,4.04,15,Bad,5053.247322,27.71124887,13 Years and 10 Months,Yes,1515.649381,,Low_spent_Small_value_payments,180.9855418,0,-1.2679,-1.4094,-1.9704,-0.6102,-0.9148 -0x4bb5,CUS_0x83cc,August,35,889-16-8033,Engineer,125047.24,,2,5,8.288361749,0,,2.420366236,4,7.83,2208,Good,1223.02,31.7046392,,No,0,,Low_spent_Medium_value_payments,930.5993937,0,0.7133,0.2189,-0.6306,0.0245,-1.4294 -0x4bc1,CUS_0xa972,August,26,974-41-8956,_______,45403.1,3536.591667,5,5,8,0,,14.68028452,12,10.7,8,_,721.95,26.42868258,18 Years and 2 Months,No,0,44.23766622,High_spent_Large_value_payments,549.4215004,0,0.3122,-1.9856,1.5421,1.5568,-1.407 -0x4bcd,CUS_0x38a2,August,39,175-60-9565,Writer,8545.26,,8,9,31.88954781,6,"Credit-Builder Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",,20,19.74,8,Bad,4953.93,35.46088439,10 Years and 8 Months,Yes,1349.975833,94.00371186,Low_spent_Large_value_payments,232.5008735,0,0.1752,-0.8197,-0.357,1.01,-1.6197 -0x4bd9,CUS_0xa8c1,August,46,975-52-9116,Lawyer,32017.75,2905.145833,7,7,8,4,"Payday Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",,23.01650487,,9,Standard,857.8652294,36.79838862,10 Years and 9 Months,Yes,73.28505692,129.9248208,Low_spent_Small_value_payments,377.3047056,0,0.522,-0.7101,0.6831,0.2837,0.892 -0x4be5,CUS_0x8d7,August,36,514-69-0830,Developer,110064.33,9095.0275,5,4,5,2,"Credit-Builder Loan, and Mortgage Loan",27.53967995,19,11.08,1,Standard,456.58,38.11355313,22 Years and 3 Months,No,136.9409831,,High_spent_Large_value_payments,790.3831263,0,0.7123,-0.6664,-1.9506,1.1705,-1.1601 -0x4bf1,CUS_0x39ff,August,31,248-94-4825,Manager,78290.36,6648.196667,5,2,13,0,,,18,9.59,3,_,952.61,39.34192311,23 Years and 9 Months,No,0,43.53379961,High_spent_Large_value_payments,861.2858671,0,-1.1423,-0.4847,0.4562,-0.3462,0.0255 -0x4bfd,CUS_0x8694,August,24,720-71-8141,Accountant,83330.32,7235.193333,10,5,33,9,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",25.98213075,19,4.05,10,Bad,1538.13,37.07520932,18 Years and 0 Months,Yes,342.2434963,72.56401517,High_spent_Large_value_payments,548.7118218,0,-0.4788,0.7478,-1.6481,0.1122,-1.2622 -0x4c09,CUS_0x9df6,August,25,864-05-0116,Developer,8422.385,,3,5,14,4,"Not Specified, Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",25.38198928,20,12.61,13,Standard,62.66,39.94377475,7 Years and 10 Months,Yes,18.91298205,61.06445416,Low_spent_Small_value_payments,297.4091055,0,-0.8222,0.1361,-1.7677,0.4942,0.9024 -0x4c15,CUS_0x7cd8,August,58,454-37-7311,Journalist,60781.48,5312.123333,8,6,9,0,,15.8903157,13,4.14,0,Good,999.6651241,30.53964278,24 Years and 6 Months,No,0,259.0545789,Low_spent_Medium_value_payments,586.4771251,0,-0.1307,-0.9227,-1.118,-0.0854,0.6043 -0x4c21,CUS_0x19b5,August,50,331-73-1353,Mechanic,11855.82,943.985,6,6,17,1,Not Specified,14.6820517,11.49164241,7.89,5,Standard,829.6507172,33.25243479,17 Years and 10 Months,Yes,5.711416879,80.05423293,Low_spent_Small_value_payments,298.6328502,0,-0.6181,-0.353,0.0495,-0.1267,0.811 -0x4c2d,CUS_0x4af2,August,45,129-44-0183,Media_Manager,76208.52,6431.71,5,7,13,1,Credit-Builder Loan,18.69439917,16,8.22,3,Standard,1068.66,29.27931703,22 Years and 8 Months,Yes,35.83540166,479.244162,Low_spent_Small_value_payments,418.0914363,0,-1.9599,0.6247,0.6596,-1.4656,-1.0803 -0x4c39,CUS_0x9ddd,August,30,#F%$D@*&8,Architect,23088.35,1836.029167,7,4,18,3,"Home Equity Loan, Auto Loan, and Personal Loan",,15,19.89,8,Standard,925.28,27.89607661,6 Years and 5 Months,Yes,46.87914183,59.49534741,Low_spent_Large_value_payments,347.2284274,0,-1.5339,2.4131,0.9433,0.497,-0.1816 -0x4c45,CUS_0xa340,August,29,328-38-0262,Developer,60417.68,5237.806667,5,4,18,1,Credit-Builder Loan,14.66371288,12,8.3,4,_,1010.73,34.57190912,32 Years and 8 Months,No,27.46092674,503.8629591,Low_spent_Small_value_payments,282.4567808,0,-0.5848,-1.2556,-2.2903,1.3982,0.4176 -0x4c51,CUS_0xbbfc,August,41,856-48-3446,Musician,33978.57,2685.5475,5,5,6,3,"Mortgage Loan, Personal Loan, and Not Specified",20.85938947,12,13.98,7,Standard,1082.25,38.29540575,16 Years and 3 Months,Yes,60.06864329,272.445395,Low_spent_Small_value_payments,226.0407117,0,-0.2861,-0.4447,-0.5298,0.2468,-0.6085 -0x4c5d,CUS_0x73c2,August,80,145-67-6657,Mechanic,116721.18,9552.765,1,0,12,1,Payday Loan,6.242522052,9,10.12,3,Good,42.20905503,33.27088239,22 Years and 10 Months,No,82.91422169,267.1245322,High_spent_Medium_value_payments,880.4153965,0,-1.3869,-1.3201,-1.1873,1.9192,1.5727 -0x4c69,CUS_0x870d,August,37,164-56-7860,Accountant,9546.425,739.5354167,7,3,5,6,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Payday Loan",,17.52246571,14.11,8,Standard,2172.894564,37.45853091,11 Years and 5 Months,Yes,45.3109903,,Low_spent_Small_value_payments,247.2148601,0,-0.7502,0.3282,-0.2173,-0.6668,0.8271 -0x4c75,CUS_0x76d0,August,51,613-73-2506,Manager,21324.515,1532.042917,0,7,3,4,"Credit-Builder Loan, Student Loan, Home Equity Loan, and Personal Loan",12.68683477,13,3.84,6,Good,361.43,34.25776421,25 Years and 3 Months,No,64.07414237,108.7078203,Low_spent_Small_value_payments,270.422329,0,-0.5482,1.6266,-1.1853,0.523,-1.3639 -0x4c81,CUS_0x73ec,August,22,230-35-9362,_______,35952.45,3174.0375,3,6,16,2,"Payday Loan, and Debt Consolidation Loan",7.448512783,10,18.36,12,_,517.01,38.84582954,16 Years and 8 Months,Yes,59.04075166,165.406298,Low_spent_Small_value_payments,382.9567003,0,0.4403,-0.6905,1.998,-0.937,-1.9372 -0x4c8d,CUS_0x5a04,August,25,641-94-4207,Engineer,7775.33,849.9441667,5,7,31.06745738,3,"Debt Consolidation Loan, Not Specified, and Auto Loan",,11.27324326,16.57,287,Standard,2157.614849,35.98899934,10 Years and 2 Months,Yes,17.49700117,,Low_spent_Small_value_payments,229.5352493,0,0.3384,-0.1125,-0.9672,-1.6746,2.2414 -0x4c99,CUS_0x881c,August,26,248-08-6639,Writer,16803.61,,8,5,25,3,"Personal Loan, Student Loan, and Personal Loan",29.59528936,19.85193644,18.93,7,Standard,1799.901213,37.07504448,16 Years and 2 Months,Yes,22.36577812,76.372512,Low_spent_Small_value_payments,329.3917932,0,-0.5412,-0.1526,1.6521,0.4169,1.1945 -0x4ca5,CUS_0xa303,August,30,#F%$D@*&8,Manager,78390.96,6609.58,9,7,22.06745738,8,"Personal Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",41.43448366,22.07718749,7.18,7,Bad,4933.512796,38.75245238,8 Years and 5 Months,Yes,437.0127529,,Low_spent_Medium_value_payments,102.4082796,0,0.7208,1.373,0.5349,-0.7388,1.6175 -0x4cb1,CUS_0x78e8,August,23,585-82-8337,Doctor,80485.76,6463.146667,0,7,8,0,,4.034377514,7.148427193,4.13,3,Good,1482.028096,33.32343854,23 Years and 10 Months,No,0,191.4428607,High_spent_Medium_value_payments,704.8718059,0,-0.0199,0.2403,0.615,0.7931,-0.5703 -0x4cbd,CUS_0xac60,August,25,930-23-0780,Lawyer,131235.75,,3,4,3.288361749,4,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,7,2.09,4,Good,919.3931979,41.22378526,22 Years and 8 Months,No,343.3022949,616.9058381,High_spent_Medium_value_payments,846.5011048,0,-0.5132,1.4229,-0.0378,-0.8445,-1.4761 -0x4cc9,CUS_0xc3cf,August,37,126-62-0007,Journalist,57827.1,5009.925,3,7,12,1,Home Equity Loan,,10,17.88,8,Standard,1153.03,40.42556825,17 Years and 0 Months,Yes,35.11833053,140.5308503,High_spent_Medium_value_payments,575.3433192,0,0.0243,1.7715,0.5,-1.9269,-0.6533 -0x4cd5,CUS_0xb747,August,47,500-54-3583,Developer,26340.1,,4,5,14.28836175,2,"Mortgage Loan, Credit-Builder Loan, and Student Loan",,11,1.63,1,_,196.1476022,37.44698816,17 Years and 11 Months,No,62.08092868,453.4433273,High_spent_Large_value_payments,396.0354452,0,-0.5431,-0.0273,-0.0793,0.6539,0.8441 -0x4ce1,CUS_0x18af,August,41,327-55-6815,Accountant,56604.96,4515.08,6,8,19,9,"Not Specified, Credit-Builder Loan, Mortgage Loan, Student Loan, Payday Loan, Not Specified, Payday Loan, Auto Loan, and Mortgage Loan",31.45661752,22.90217581,6.09,11,Bad,5275.949953,34.17053613,2 Years and 11 Months,Yes,374.1427095,147.7006898,Low_spent_Medium_value_payments,209.6646007,0,-0.4862,-0.371,-1.6473,-0.3629,0.0007 -0x4ced,CUS_0x5f28,August,31,463-12-9842,Architect,37442.05,,0,5,11,3,"Student Loan, Mortgage Loan, and Auto Loan",8.986478253,9.020086645,8.54,4,Good,1561.139178,36.14555435,27 Years and 10 Months,No,60.11306116,80.07428298,High_spent_Medium_value_payments,417.9297392,0,-0.1671,-0.3615,-0.0985,0.1762,1.2495 -0x4cf9,CUS_0x3655,August,30,#F%$D@*&8,Lawyer,177907.72,13078.43005,0,6,6,0,,9.384220753,10,10.76,0,Good,685.01,45.9246553,31 Years and 2 Months,No,1634.213281,327.2828218,High_spent_Large_value_payments,1383.981512,0,-0.6986,0.5589,-0.4616,-0.2237,-0.4359 -0x4d05,CUS_0x4b19,August,29,354-88-6563,_______,143741.2,12034.43333,3,3,18,0,,27.98296952,19,18.12,8,_,1073.37,35.76799654,23 Years and 11 Months,Yes,0,210.6696407,High_spent_Large_value_payments,1232.773693,0,0.5686,-1.303,-1.2584,0.4227,-0.6014 -0x4d11,CUS_0xf0c,August,36,557-77-1930,Journalist,31911.34,,1,4,4,4,"Not Specified, Student Loan, Credit-Builder Loan, and Not Specified",14.12210846,11,,5,Good,667.3101537,29.45217685,30 Years and 0 Months,No,53.71104494,53.67543323,High_spent_Medium_value_payments,391.4946999,0,-2.4473,-0.9739,0.4906,0.1343,-1.2288 -0x4d1d,CUS_0x26be,August,43,879-76-2190,Musician,78186.56,6540.546667,1,5,5.288361749,100,Not Specified,0,0,8.43,7,Good,328.44,36.08318148,23 Years and 2 Months,No,60.77173437,560.5906246,High_spent_Large_value_payments,692.6297687,0,-0.0543,1.7653,-0.7749,-2.2114,-0.4525 -0x4d29,CUS_0x333c,August,20,835-38-7010,_______,46640.82,3824.735,3,4,890,3,"Home Equity Loan, Not Specified, and Not Specified",20.77517986,19,8.81,2,Standard,758.8013942,23.92867859,30 Years and 0 Months,No,75.53576697,489.3601803,Low_spent_Small_value_payments,154.0724759,0,-0.4956,-0.6033,0.485,-1.7292,2.5174 -0x4d35,CUS_0xd19,August,41,830-21-5902,Entrepreneur,96910.48,7797.873333,7,6,20,2,"Auto Loan, and Home Equity Loan",,20,3.47,7,Standard,456.9,40.31826894,29 Years and 11 Months,No,112.540852,298.7437776,High_spent_Medium_value_payments,618.5027038,0,0.5714,0.373,-1.4035,0.2021,-0.5521 -0x4d41,CUS_0x982a,August,29,045-75-5603,Lawyer,20790.085,,2,7,12,4,"Mortgage Loan, Payday Loan, Personal Loan, and Personal Loan",8.624704585,9.09484874,5.01,5,Good,789.2346685,30.24806522,23 Years and 3 Months,No,50.34316991,155.8480976,Low_spent_Small_value_payments,285.3594408,0,0.979,2.5117,-1.2237,0.7735,1.674 -0x4d4d,CUS_0x5b0a,August,25,418-00-4952,_______,21524.21,,8,7,17,2,"Personal Loan, and Payday Loan",,9,18.83,7,Standard,16.45,37.84896012,,Yes,35.05141446,221.8589361,Low_spent_Small_value_payments,205.1580661,0,1.1953,0.2319,-0.5346,0.159,0.1493 -0x4d59,CUS_0x28a3,August,37,948-70-3925,Architect,88481.16,7082.43,3,4,18,0,,16.33670902,12,13.29,4,Standard,1343.5,25.66327558,,Yes,0,,Low_spent_Medium_value_payments,442.9105663,0,0.7856,-0.0287,0.7195,-0.063,0.1681 -0x4d65,CUS_0xa094,August,37,953-99-7710,Media_Manager,18244.44,1555.37,7,4,15,7,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",25.34632943,21.19803305,18.2,7,Standard,1758.93213,33.90898713,16 Years and 5 Months,Yes,66.98943275,61.35552518,Low_spent_Small_value_payments,317.1920421,0,-1.5884,-0.5779,-0.6582,0.4224,-0.636 -0x4d71,CUS_0x7877,August,31,221-73-6374,Writer,95999.44,7725.953333,7,3,7,0,,29.68516672,20,7.78,6,Standard,1090.59,28.52804934,23 Years and 8 Months,Yes,0,145.68772,High_spent_Medium_value_payments,876.9076134,0,0.3041,0.4425,-2.1944,-0.3079,-0.2295 -0x4d7d,CUS_0x832d,August,80,943-97-7546,Teacher,42052.74,,7,7,8,3,"Personal Loan, Home Equity Loan, and Credit-Builder Loan",25.83672622,17,12.51,10,Standard,444.77,35.75943997,14 Years and 2 Months,Yes,66.53508304,116.6600891,High_spent_Medium_value_payments,445.8443279,0,0.6323,-0.6023,0.4376,0.1721,2.3107 -0x4d89,CUS_0x8715,August,53,368-39-6835,Scientist,32012.4,,1,1,3,1,Credit-Builder Loan,13.28900259,,7.03,0,_,996.5602839,27.31411272,26 Years and 9 Months,No,20.64424805,65.62537682,High_spent_Large_value_payments,400.2884993,0,0.4578,0.0407,-0.2941,0.9084,-1.015 -0x4d95,CUS_0x88c1,August,23,417-39-8051,Developer,102412.35,8290.3625,5,6,8,0,,,17,11.13,,_,719.06,30.66242118,19 Years and 0 Months,NM,0,202.7545137,High_spent_Large_value_payments,866.2817363,0,-0.6674,-0.5858,-0.5355,1.1982,-0.4236 -0x4da1,CUS_0x74f9,August,24,739-35-4103,Mechanic,68988.68,,5,4,7,2,"Debt Consolidation Loan, and Not Specified",3.511861126,4,7.15,6,Good,1106.06,26.59085441,32 Years and 4 Months,No,101.3581309,109.5263735,High_spent_Large_value_payments,623.3211622,0,-0.0831,-1.8719,0.6318,0.6671,-0.5458 -0x4dad,CUS_0x71d,August,48,331-56-3207,Accountant,69869.92,,4,5,13,2,"Home Equity Loan, and Not Specified",,21.70626054,11.42,0,Standard,250.740053,37.7320872,33 Years and 6 Months,Yes,99.35750005,,High_spent_Medium_value_payments,539.7375174,0,-0.8669,-2.561,-1.4525,1.1451,-0.7299 -0x4db9,CUS_0x8b8,August,39,111-65-7825,Teacher,15707.85,1048.9875,4,4,13,1,Mortgage Loan,12.25515947,10,7.59,10,Standard,1382.26,31.92995241,8 Years and 2 Months,Yes,10.81138964,98.90485188,Low_spent_Medium_value_payments,275.1825085,0,-0.2698,-0.4296,0.75,-0.5266,0.4074 -0x4dc5,CUS_0x6e64,August,38,#F%$D@*&8,Scientist,41176.49,3427.374167,0,4,10.28836175,2,"Personal Loan, and Credit-Builder Loan",0,4,2.5,5,Good,46.05,31.55628463,21 Years and 4 Months,No,52.52158963,562.2654687,High_spent_Medium_value_payments,397.8878193,0,-0.2083,1.3719,-1.1966,-0.6642,0.0495 -0x4dd1,CUS_0x4519,August,35,008-22-7725,Developer,8631.04,,8,8,19.06745738,8,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",42.69163208,25,21.54,14,Bad,4513.720954,39.57472178,12 Years and 11 Months,NM,49.24068791,37.98203619,Low_spent_Large_value_payments,224.3823213,0,1.6823,0.0709,-1.1948,-0.4733,-0.4673 -0x4ddd,CUS_0x160a,August,27,262-33-6347,_______,18094.55,,9,10,19.06745738,7,"Auto Loan, Not Specified, Mortgage Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",,19,28.47,12,Bad,2896.710954,27.35243835,,NM,99.26816949,10.79985456,High_spent_Large_value_payments,260.2996047,0,0.1712,-0.0872,-0.775,0.9401,-0.3024 -0x4de9,CUS_0x9434,August,21,198-95-2369,Doctor,55907.52,,3,9,15,5,"Personal Loan, Mortgage Loan, Not Specified, Home Equity Loan, and Student Loan",10.30673276,11,8.71,15,Standard,1474.63,32.12761426,19 Years and 6 Months,Yes,192.7010399,231.4024258,High_spent_Small_value_payments,290.2925343,0,-1.4168,0.1485,0.5674,-0.2612,-0.0761 -0x4df5,CUS_0x8e2,August,43,299-21-2157,Journalist,84114.48,6848.54,8,4,11.28836175,2,"Personal Loan, Payday Loan, and Personal Loan",17.59148381,16,17.49,7,Standard,1080.17,32.58171668,31 Years and 2 Months,Yes,208.3527636,,Low_spent_Medium_value_payments,503.4275953,0,-0.9495,0.6152,-0.4738,0.8468,-0.4191 -0x4e01,CUS_0xabd6,August,36,815-87-8528,Teacher,8155.79,,9,5,28.06745738,6,"Student Loan, Auto Loan, Student Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,17,28.08,15,Bad,3313.490954,36.74831036,12 Years and 5 Months,Yes,25.39957187,27.83346796,Low_spent_Small_value_payments,248.1115889,0,1.0307,1.3502,-1.748,0.4027,-0.4407 -0x4e0d,CUS_0xc3d8,August,27,781-21-4555,Developer,138722.36,11264.19667,5,4,2.288361749,0,,3.254650788,6,4.61,9,Good,1474.32,41.49490238,21 Years and 8 Months,No,0,751.137389,High_spent_Small_value_payments,1055.219739,0,-0.3679,-0.0168,0.9987,1.0355,1.7389 -0x4e19,CUS_0xb5aa,August,18,419-67-9786,_______,49417.52,,4,5,9,6,"Student Loan, Student Loan, Personal Loan, Personal Loan, Mortgage Loan, and Not Specified",,19,8.69,9,Standard,1182.62,38.34526647,15 Years and 5 Months,Yes,162.1273361,31.07059004,High_spent_Large_value_payments,464.3147406,0,-0.271,0.6461,1.4677,-0.6491,0.719 -0x4e25,CUS_0x4b3c,August,22,#F%$D@*&8,Teacher,29880.29,,4,6,14,0,,21.72435647,16,,2,Standard,1262.95,27.41786784,31 Years and 2 Months,Yes,0,107.3514616,Low_spent_Large_value_payments,386.5509551,0,1.2364,-1.6215,1.1765,1.4882,-0.2229 -0x4e31,CUS_0xa9c1,August,28,448-15-3289,Media_Manager,70218.36,,8,3,6,7,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Payday Loan, Not Specified, and Payday Loan",13.51101119,10,9.12,5,Standard,1332.843083,34.47481615,7 Years and 4 Months,Yes,305.4321968,422.8994034,Low_spent_Large_value_payments,185.9829515,0,0.5618,0.0411,-0.4418,-0.4883,-0.6055 -0x4e3d,CUS_0x2cfe,August,58,258-99-9292,Mechanic,38694.66,,2,3,2,3,"Home Equity Loan, Payday Loan, and Payday Loan",,11,1.72,2,Good,627.4799015,30.787401,32 Years and 10 Months,No,70.47947806,46.78373333,High_spent_Medium_value_payments,446.8658929,0,0.1586,-1.504,-1.1405,0.6075,-0.4257 -0x4e49,CUS_0x59ba,August,55,242-77-0513,Journalist,32985.87,2928.8225,2,988,2,0,,10.40887657,10,6.17,8,Good,916.2087687,24.58448712,,NM,0,255.1994829,Low_spent_Medium_value_payments,356.0085008,0,1.422,-1.4608,0.0129,0.2807,-0.841 -0x4e55,CUS_0x811f,August,38,625-89-3582,Architect,7493.335,,7,4,19.06745738,2,"Payday Loan, and Student Loan",24.54891887,15,12.47,6,_,1555.860954,24.32917711,19 Years and 10 Months,NM,12.31920159,10000,Low_spent_Small_value_payments,263.4066693,0,-0.201,0.319,0.8482,0.3776,-0.3153 -0x4e61,CUS_0x6c49,August,46,#F%$D@*&8,Accountant,81471.96,6763.33,6,6,25,5,"Student Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,15.39224491,27.09,6,_,2985.96793,39.14046309,11 Years and 6 Months,Yes,202.857783,87.26288726,High_spent_Large_value_payments,626.2123297,0,1.5037,0.7349,0.0158,0.3673,-0.2233 -0x4e6d,CUS_0x292b,August,47,318-24-7537,Engineer,84074.88,,0,1,5.288361749,4,"Student Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",0,3,2.87,5,Good,363.2742554,34.73763515,28 Years and 6 Months,No,206.7406324,11811.93562,High_spent_Large_value_payments,646.6287223,0,0.2039,0.3613,-0.1228,0.2316,-0.7608 -0x4e79,CUS_0x2ba8,August,34,158-66-2244,Teacher,81427.02,6877.585,2,2,2.288361749,4,"Personal Loan, Personal Loan, Personal Loan, and Auto Loan",0,0,2.35,1,Good,16.30098626,22.60717604,18 Years and 11 Months,No,144.1510187,1191.394226,Low_spent_Small_value_payments,145.171858,0,0.3843,0.1599,0.187,0.6563,0.5938 -0x4e85,CUS_0xc27,August,42,#F%$D@*&8,Media_Manager,34956.58,,0,310,11,3,"Personal Loan, Debt Consolidation Loan, and Auto Loan",0,1,9.86,5,_,595.8,30.26700141,16 Years and 0 Months,NM,59.15521313,,!@9#%8,427.4109957,0,-1.0992,-1.3573,0.1731,-2.1748,-0.2298 -0x4e91,CUS_0xa7aa,August,43,077-76-6515,Musician,21039.96,1493.33,3,3,5,3,"Auto Loan, Credit-Builder Loan, and Auto Loan",14.72577596,10,13.55,4,Standard,659.6,30.62961121,6 Years and 6 Months,Yes,28.24930672,69.93037172,Low_spent_Medium_value_payments,331.1533216,0,0.1677,-0.7682,-0.6161,-0.5087,-0.0329 -0x4e9d,CUS_0x6ed3,August,45,416-26-7759,Developer,82402.34,7056.861667,2,7,2,4,"Payday Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",5.082366595,8,6.26,6,Good,633.2292783,40.28762283,19 Years and 4 Months,No,146.796776,633.0759595,Low_spent_Medium_value_payments,292.903222,0,0.6825,-0.2405,-0.1922,-0.1071,1.0697 -0x4ea9,CUS_0x2b6e,August,33,698-26-2985,Doctor,19633.99,,7,1196,32,4,"Auto Loan, Personal Loan, Home Equity Loan, and Credit-Builder Loan",34.43721805,19,7.41,10,Bad,1457.54,34.15796989,,Yes,62.6712623,114.2055994,Low_spent_Medium_value_payments,275.1397217,0,0.4403,1.016,0.0603,-1.4847,0.7236 -0x4eb5,CUS_0x8ecf,August,35,879-56-3473,Journalist,70978.44,,6,4,21,5,"Personal Loan, Student Loan, Auto Loan, Auto Loan, and Mortgage Loan",,19.33264174,26.58,8,_,1768.905185,28.59476872,14 Years and 6 Months,Yes,262.8315664,404.8733487,Low_spent_Large_value_payments,201.6820849,0,-2.7599,0.121,-1.0434,2.0937,-1.0873 -0x4ec1,CUS_0x6672,August,48,096-10-4575,Lawyer,17577.76,1762.813333,3,5,19,2,"Debt Consolidation Loan, and Mortgage Loan",,12,9.58,0,Standard,1447.93,36.44851899,,Yes,29.2954665,12.46396472,High_spent_Large_value_payments,374.5219021,0,0.1073,1.0498,0.6818,-0.5927,-0.8377 -0x4ecd,CUS_0xbe3b,August,33,140-48-5616,Doctor,82623,7138.25,8,5,19,6,"Auto Loan, Mortgage Loan, Student Loan, Student Loan, Personal Loan, and Personal Loan",31.78668046,23.87643842,26.95,9,_,5463.343123,31.53323276,2 Years and 2 Months,Yes,269.8535949,739.682791,Low_spent_Medium_value_payments,,0,-0.1375,-0.8162,-0.1567,0.3735,0.0304 -0x4ed9,CUS_0xb4d3,August,54,986-46-9529,Accountant,41070.53,3364.544167,2,2,7,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",11.24528184,12,9,1,Good,1276.306538,38.05737934,20 Years and 9 Months,No,80.59190818,149.9432659,High_spent_Medium_value_payments,373.7284495,0,-0.7437,0.9717,-1.2632,0.7101,-0.1625 -0x4ee5,CUS_0x15d5,August,28,296-39-6431,Teacher,72207.52,,6,7,21,5,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Not Specified, and Auto Loan",53.6392161,33.23292755,8.61,16,Bad,2036.850228,33.78807102,13 Years and 4 Months,Yes,287.6237921,284.3225641,High_spent_Small_value_payments,276.1829772,0,-0.3586,0.899,-0.6837,-0.7366,0.2974 -0x4ef1,CUS_0x4c56,August,42,673-06-2525,Mechanic,82196.31,6957.6925,8,5,12,0,,10.83461068,8,19.31,0,Standard,888.94,38.03807184,23 Years and 4 Months,Yes,0,187.0115926,High_spent_Medium_value_payments,758.7576574,0,1.861,-0.429,1.0246,-0.423,-2.4165 -0x4efd,CUS_0x505f,August,42,687-21-4004,Manager,14722.08,,8,6,17,1,Debt Consolidation Loan,20.47372145,,9.85,7,Standard,1307.84,27.51264045,17 Years and 9 Months,NM,10.85597245,81.30784864,High_spent_Small_value_payments,292.7201789,0,-0.2797,-0.2886,1.1244,0.4598,-0.7497 -0x4f09,CUS_0xc48c,August,52,129-28-5358,Musician,33720.51,2678.0425,7,4,16,2,"Home Equity Loan, and Personal Loan",19.80159883,,5.47,6,_,647.0216251,28.93187251,32 Years and 11 Months,Yes,43.61419715,203.5531307,Low_spent_Large_value_payments,290.6369222,0,-0.5671,0.9408,0.7883,1.4224,0.1648 -0x4f15,CUS_0xb793,August,27,405-60-2301,Teacher,81091.76,6424.489495,9,6,25,9,"Home Equity Loan, Student Loan, Not Specified, Student Loan, Mortgage Loan, Not Specified, Payday Loan, Student Loan, and Student Loan",32.7980148,22.99786547,7.92,10,Bad,1951.666987,27.44705644,9 Years and 11 Months,Yes,624.7130866,151.7325647,High_spent_Medium_value_payments,313.0761866,0,-0.1532,-0.6074,-1.2622,-0.8648,0.2903 -0x4f21,CUS_0x8f8c,August,80,682-44-4822,Mechanic,16454.75,1106.229167,8,5,28,7,"Mortgage Loan, Not Specified, Credit-Builder Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",33.7538096,23,17.47,13,Bad,4749.97,25.66137979,10 Years and 5 Months,Yes,50.99934528,41.75097783,High_spent_Small_value_payments,277.8725936,0,0.0891,0.8702,-1.6053,0.1135,1.2859 -0x4f2d,CUS_0x664c,August,19,482-10-4462,Doctor,72125.2,6094.433333,3,5,12,2,"Debt Consolidation Loan, and Home Equity Loan",18.12137485,16,13.52,6,Standard,95.23,36.74596298,20 Years and 2 Months,Yes,84.48929614,75.72497419,High_spent_Medium_value_payments,699.229063,0,0.604,-0.4518,-0.6479,-1.6815,-0.3017 -0x4f39,CUS_0x12dd,August,42,954-59-1206,Developer,31754.27,,1,3,11,4,"Mortgage Loan, Payday Loan, Mortgage Loan, and Payday Loan",0,1,6.81,5,_,583.9572643,28.33336933,19 Years and 3 Months,NM,76.53550481,213.7809697,Low_spent_Small_value_payments,277.5687654,0,0.8197,-1.1803,-1.236,0.3192,0.6794 -0x4f45,CUS_0x10ff,August,36,149-03-5931,Accountant,16341.075,,4,4,6,2,"Auto Loan, and Student Loan",23.30060666,20,,4,Standard,684.05,39.40519544,,No,16.96046046,151.9541276,Low_spent_Small_value_payments,250.3610369,0,-0.7125,1.1065,-1.058,-1.2113,0.5721 -0x4f51,CUS_0xbc51,August,36,239-02-8972,Architect,32881.92,,4,7,10,2,"Mortgage Loan, and Personal Loan",,1,4.6,0,Good,479.81,28.37183214,19 Years and 2 Months,No,33.24319986,10000,Low_spent_Small_value_payments,394.4151703,0,0.7692,0.2837,-0.5164,0.0461,-0.0128 -0x4f5d,CUS_0x9bd1,August,24,304-90-3014,Doctor,46850.7,3837.225,5,4,20,5,"Student Loan, Payday Loan, Student Loan, Auto Loan, and Payday Loan",,12,7.23,10,Standard,1676.93,36.52901158,,Yes,194.8209168,,High_spent_Large_value_payments,380.8296587,0,0.9775,-0.6359,0.0735,-0.1354,1.0998 -0x4f69,CUS_0x7da5,August,46,583-23-0384,Architect,64118.72,,4,7,33,6,"Debt Consolidation Loan, Payday Loan, Auto Loan, Auto Loan, Student Loan, and Payday Loan",20.06233091,12.57617133,13.2,9,Standard,1876.310164,29.23138735,12 Years and 10 Months,Yes,285.4860277,142.4059988,High_spent_Medium_value_payments,345.0306402,0,-1.9135,-0.2502,0.245,-0.4884,-0.3592 -0x4f75,CUS_0xb7c,August,32,306-55-0553,Scientist,7944.18,,8,8,19.06745738,2,"Debt Consolidation Loan, and Not Specified",,23.87210313,3.35,12,Bad,2218.822829,27.28193929,11 Years and 6 Months,Yes,10.56153503,43.43948777,High_spent_Small_value_payments,243.9801893,0,-0.5276,0.2207,-0.8212,0.566,-0.066 -0x4f81,CUS_0x8688,August,47,200-70-4803,Media_Manager,88983.52,7675.293333,2,3,9,1,Credit-Builder Loan,0,1,6.45,4,Good,1450.68,39.9374094,26 Years and 10 Months,No,66.33148128,157.1733624,High_spent_Large_value_payments,784.0244897,0,-0.8614,0.1539,-0.2844,-0.2844,1.6224 -0x4f8d,CUS_0x7292,August,50,439-78-9960,Developer,19199.49,,3,1,4,2,"Student Loan, and Debt Consolidation Loan",,6,4.11,3,Good,355.9664825,37.52594415,26 Years and 6 Months,No,31.85522003,138.7086142,Low_spent_Large_value_payments,281.2124231,0,-0.626,0.7853,-1.0421,0.7832,-0.8883 -0x4f99,CUS_0xf5d,August,33,639-88-1232,Accountant,64560.52,,9,10,20.06745738,9,"Personal Loan, Not Specified, Mortgage Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Payday Loan, Payday Loan, and Home Equity Loan",31.86917878,17.90390749,33.61,10,Bad,4017.260266,37.58916528,,Yes,447.8341525,,!@9#%8,132.2677578,0,0.3703,-0.0577,0.4568,-0.6787,-1.4254 -0x4fa5,CUS_0xa52,August,28,201-13-7255,Entrepreneur,80892.92,6767.076667,565,4,23,6,"Mortgage Loan, Auto Loan, Payday Loan, Auto Loan, Payday Loan, and Auto Loan",15.39707343,,14.11,,_,1943.850161,31.13466215,7 Years and 2 Months,Yes,250.5471427,121.6764067,High_spent_Large_value_payments,544.4841172,0,-0.6979,0.6707,-0.6687,0.1432,1.0983 -0x4fb1,CUS_0x138b,August,42,307-80-8496,Engineer,34019.26,,6,5,30.06745738,7,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Not Specified, and Auto Loan",41.053532,18.72566104,6.46,12,Bad,2208.311769,37.38290866,15 Years and 6 Months,Yes,174.0963657,302.5245886,Low_spent_Small_value_payments,82.35259109,0,0.0111,-1.6685,-0.2959,1.8563,0.2165 -0x4fbd,CUS_0x8cff,August,22,707-43-8184,_______,9345.955,,6,7,24,7,"Not Specified, Home Equity Loan, Auto Loan, Personal Loan, Payday Loan, Student Loan, and Home Equity Loan",23.06314023,,28.71,6,Bad,4582.82224,31.00897219,3 Years and 4 Months,Yes,51.51244452,,Low_spent_Medium_value_payments,248.4793103,0,-1.2152,0.5458,2.3779,-2.4415,-0.4479 -0x4fc9,CUS_0x840a,August,41,779-76-1190,Lawyer,21302.97,,8,3,15,100,"Student Loan, Payday Loan, and Debt Consolidation Loan",,18,12.52,4,_,481.28,30.3344836,32 Years and 10 Months,NM,48.93924619,97.96171742,High_spent_Small_value_payments,293.0237864,0,-0.7991,-1.2074,-0.1486,1.6293,0.0705 -0x4fd5,CUS_0x63ea,August,33,378-61-1989,Engineer,9211.98,,7,6,23,7,"Personal Loan, Not Specified, Payday Loan, Auto Loan, Not Specified, Personal Loan, and Not Specified",26.74023146,20.57241902,-0.89,9,Bad,2160.974456,37.66093094,9 Years and 11 Months,Yes,27.28395086,57.99547639,!@9#%8,281.6870727,0,-0.1534,-1.0882,0.0904,1.7116,1.0886 -0x4fe1,CUS_0x2058,August,80,964-56-1036,Journalist,14501.97,,8,6,30,100,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",,19.04073389,17.64,6,Bad,5121.974655,22.69901754,,Yes,35.28483112,139.2247989,Low_spent_Small_value_payments,263.2401199,0,-0.5148,-0.0005,-0.6719,0.2727,0.9282 -0x4fed,CUS_0x6f72,August,36,948-68-6332,Teacher,8961.865,,6,7,24.06745738,6,"Credit-Builder Loan, Student Loan, Auto Loan, Not Specified, Mortgage Loan, and Student Loan",,20.23048758,19.04,13,Bad,4108.983341,38.70717835,14 Years and 6 Months,Yes,26.91462756,,Low_spent_Small_value_payments,226.1702123,0,1.265,0.4873,-0.7565,0.0121,0.638 -0x4ff9,CUS_0x3d5b,August,33,929-10-9575,Architect,11703.605,,8,4,20,0,,26.52555967,19,13.87,7,Standard,1175.56,25.72193897,,Yes,0,69.16501007,Low_spent_Small_value_payments,320.1650316,0,-0.6029,-0.4045,1.2118,-1.3809,-1.5718 -0x5005,CUS_0x63c2,August,49,602-93-9483,Accountant,151085.88,12540.49,2,7,5.288361749,2,"Student Loan, Mortgage Loan, and Student Loan",12.81829125,,2.25,4,_,1015.74,40.90918595,33 Years and 4 Months,No,323.01511,722.0936813,High_spent_Large_value_payments,868.8776697,0,0.0782,1.4296,0.822,0.5617,0.9071 -0x5011,CUS_0x13a8,August,41,918-56-2439,Journalist,97059,,3,2,9,0,,,10,9.94,5,Good,177.592583,39.93996906,33 Years and 5 Months,No,0,240.2845999,High_spent_Large_value_payments,858.9056074,0,2.4557,-0.6606,1.3976,-0.4309,0.4391 -0x501d,CUS_0x327d,August,41,898-35-4224,Lawyer,17122.37,,7,5,12,2,"Mortgage Loan, and Home Equity Loan",,16,8.52,9,Standard,1663.18,31.5146047,11 Years and 9 Months,Yes,21.15095856,63.97170458,Low_spent_Small_value_payments,323.2637535,0,-0.9562,-0.9107,0.0431,0.5156,0.3787 -0x5029,CUS_0x4390,August,25,432-21-8763,Musician,61664,4930.666667,6,3,16,4,"Personal Loan, Credit-Builder Loan, Not Specified, and Personal Loan",17.74146429,15,19.34,11,Standard,218.72,31.37003126,29 Years and 5 Months,Yes,204.8453303,195.9653264,High_spent_Small_value_payments,352.25601,0,0.2419,0.8079,0.6193,-2.4751,-0.9491 -0x5035,CUS_0xc2ba,August,24,476-61-8687,Manager,10062.445,,7,5,4034,1,Home Equity Loan,25.18685781,18,12.69,2,Standard,954.97,37.97753682,,Yes,7.42456818,,Low_spent_Small_value_payments,257.3809453,0,-1.0061,-0.664,2.5201,-0.5558,-0.6897 -0x5041,CUS_0x29e9,August,39,499-31-6441,Teacher,56157.03,,8,9,31,5,"Payday Loan, Not Specified, Home Equity Loan, Payday Loan, and Not Specified",37.36141423,23,20.24,13,Bad,3403.79,23.37855035,12 Years and 11 Months,Yes,537.5649697,186.9212587,High_spent_Medium_value_payments,357.6311534,0,-1.3429,-0.9051,1.0259,0.9533,-0.2361 -0x504d,CUS_0xa2b2,August,53,#F%$D@*&8,Manager,71305.22,,8,4,18,0,,,15,8.49,5,Standard,1004.26,36.51656362,23 Years and 5 Months,No,0,162.0240616,High_spent_Small_value_payments,689.3861051,0,0.9477,1.2147,0.8828,-1.2222,-0.8162 -0x5059,CUS_0x523b,August,46,967-55-6862,Developer,43742.01,,2,6,12,0,,13.27817942,11,8.69,,_,59.06,24.91020899,18 Years and 3 Months,NM,0,63.02230393,High_spent_Large_value_payments,556.1944461,0,0.2884,0.6976,-0.4899,0.9041,0.6579 -0x5065,CUS_0xc42d,August,38,467-64-3033,Teacher,28840.8,,3,4,6,1,Personal Loan,0.596870787,5,7.64,3,_,996.35873,27.57059744,19 Years and 10 Months,No,19.43780868,75.32694733,High_spent_Medium_value_payments,383.0942016,0,0.9129,0.0353,-1.621,0.3267,-1.2404 -0x5071,CUS_0x1b4d,August,28,446-41-8824,Mechanic,140919.04,12025.25333,7,3,288,5,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",12.75319176,11,16.48,8,Standard,775.02,30.26845118,10 Years and 6 Months,Yes,352.9381413,1057.135929,Low_spent_Medium_value_payments,72.45126331,0,-0.0579,-0.06,-0.3242,-1.0721,1.5461 -0x507d,CUS_0x268f,August,50,270-99-3172,Manager,65448.14,,3,3,10,3,"Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",17.86059155,11.79502205,0.66,8,_,449.1443892,35.09807736,24 Years and 9 Months,No,96.75535859,,Low_spent_Medium_value_payments,180.6882158,0,-0.7971,-0.733,-1.1946,-1.4566,0.2886 -0x5089,CUS_0x3ba7,August,33,827-88-5387,Writer,100716.36,8413.03,8,4,16.28836175,0,,7.580488308,9.291191504,9.69,6,Standard,690.1004205,24.59046858,16 Years and 8 Months,No,0,818.100855,Low_spent_Medium_value_payments,723.139606,0,-1.5426,0.8036,0.7804,0.3845,-0.4165 -0x5095,CUS_0x1b2a,August,25,315-88-0518,Teacher,16603.43,,8,10,31.06745738,3,"Student Loan, Payday Loan, and Home Equity Loan",16.67299566,10.08449568,19.81,16,Standard,2472.504523,42.36799685,,Yes,31.85573248,10000,Low_spent_Medium_value_payments,239.5550306,0,-2.0977,0.4041,-1.8307,0.0248,0.2574 -0x50a1,CUS_0x229f,August,45,547-53-2472,Scientist,20261.85,1598.4875,7,7,17.06745738,7,"Student Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Auto Loan, and Debt Consolidation Loan",,20.59747696,9.09,10,Bad,1681.015225,28.00748618,14 Years and 9 Months,Yes,96.40963543,,Low_spent_Small_value_payments,254.4936319,0,0.8239,-0.6897,1.1628,0.4293,0.4415 -0x50ad,CUS_0xa961,August,29,480-36-1343,Entrepreneur,38577.6,,9,10,20,2,"Payday Loan, and Student Loan",39.3525857,25,11.03,8,_,1312.04,38.96801537,13 Years and 6 Months,Yes,36.43757603,139.1603721,High_spent_Medium_value_payments,421.3820519,0,0.6839,0.0636,-0.4921,2.2901,-0.3431 -0x50b9,CUS_0xb548,August,23,065-56-2209,Architect,33882.6,2841.55,6,7,5,2,"Home Equity Loan, and Home Equity Loan",9.614850983,10,7.55,6,Standard,1240.48,39.53587298,9 Years and 0 Months,Yes,36.26074809,,Low_spent_Small_value_payments,153.7544648,0,0.5805,-0.7816,-0.9672,1.5347,0.5095 -0x50c5,CUS_0x310f,August,45,892-47-5831,Mechanic,30909.93,2554.8275,4,6,5,1,Debt Consolidation Loan,14.34272866,13,2.99,4,Standard,1202.05,40.5376356,20 Years and 9 Months,Yes,21.44436799,202.050793,Low_spent_Small_value_payments,321.987589,0,0.5172,-0.6798,-0.2866,0.2637,0.6254 -0x50d1,CUS_0x3434,August,19,#F%$D@*&8,Teacher,20380.41,,7,6,30.06745738,4,"Credit-Builder Loan, Payday Loan, Auto Loan, and Credit-Builder Loan",,31.23882124,4.2,12,Bad,2188.534156,30.10026309,13 Years and 5 Months,Yes,63.64412935,59.59954184,Low_spent_Large_value_payments,278.1727909,0,-0.6853,0.7931,-0.168,-0.15,-0.0061 -0x50dd,CUS_0x44ec,August,28,856-69-9384,Doctor,162144.64,13743.05333,1,6,5,1,Not Specified,8.748165276,7,5.02,5,Good,80.76,47.17844594,17 Years and 5 Months,No,117.6586807,,High_spent_Small_value_payments,1276.32718,0,1.2602,-0.5449,-0.1045,1.6822,0.8382 -0x50e9,CUS_0x7072,August,37,208-85-9616,Teacher,35952.25,,0,4,6,0,,10.41205378,9,11.93,4,Good,426.059588,38.48620787,17 Years and 10 Months,No,0,216.7370556,Low_spent_Large_value_payments,377.6129774,0,-2.7792,0.6875,-1.2413,1.7924,-1.2242 -0x50f5,CUS_0x9ce0,August,34,347-83-4432,Entrepreneur,21964.79,1783.399167,5,2,11,3,"Home Equity Loan, Mortgage Loan, and Not Specified",1.776898558,5,11.38,5,Good,1016.297207,31.35899365,33 Years and 2 Months,No,39.95829793,,High_spent_Large_value_payments,345.6440595,0,-0.1669,0.01,-0.4203,-0.0106,1.4895 -0x5101,CUS_0x6187,August,40,112-38-6623,Scientist,44941.95,3946.1625,4,6,3,1,Payday Loan,4.293647444,7,4.32,7,Good,1069.086224,24.00891582,31 Years and 2 Months,No,22.43472478,,High_spent_Small_value_payments,481.6934628,0,-0.9653,0.0924,0.9238,-0.3656,0.1602 -0x510d,CUS_0x26a5,August,24,335-81-7203,Lawyer,62862.69,5155.5575,5,5,13,4,"Credit-Builder Loan, Payday Loan, Personal Loan, and Credit-Builder Loan",11.39923967,8,7.45,11,_,676.09,22.80689909,19 Years and 10 Months,Yes,116.3128264,474.9632074,Low_spent_Large_value_payments,194.2797162,0,-0.4387,0.1294,-0.7968,1.4748,-0.8157 -0x5119,CUS_0x1c40,August,35,602-19-3236,Accountant,66749.64,5379.47,6,4,9,3,"Debt Consolidation Loan, Auto Loan, and Payday Loan",19.48785347,12,10.88,10,Standard,303.85,33.13231737,12 Years and 0 Months,NM,89.78489451,598.0398974,!@9#%8,140.1222081,0,0.2795,0.2454,-1.7291,0.4824,-1.4157 -0x5125,CUS_0x23a5,August,25,618-88-5996,Lawyer,29404.31,2359.359167,6,25,9,1,Credit-Builder Loan,,2072,7.35,4,Good,1288.52,25.66317471,23 Years and 11 Months,No,22.42331615,119.5061425,Low_spent_Large_value_payments,364.006458,0,1.8735,0.9552,-0.3996,-0.2329,0.4564 -0x5131,CUS_0x1dda,August,27,#F%$D@*&8,Mechanic,20060.23,1873.685833,6,5,34,9,"Auto Loan, Payday Loan, Personal Loan, Not Specified, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",29.53355935,22,20.32,16,Bad,2844.99,25.04406352,5 Years and 0 Months,Yes,148.5239268,,Low_spent_Medium_value_payments,149.7365734,0,0.7744,-0.9174,0.7542,-0.2723,0.2807 -0x513d,CUS_0xb76d,August,27,853-48-1722,Mechanic,53894.12,,8,4,11,1,Personal Loan,18.01220591,,8.71,3,_,491.1102138,30.48988813,,No,23.93700875,343.270475,Low_spent_Large_value_payments,410.7565095,0,-1.086,-0.5058,-0.6988,0.6991,-0.1168 -0x5149,CUS_0x9abb,August,20,510-46-9027,Engineer,20915.42,1616.951667,9,6,33,5,"Student Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Student Loan",,18.48512498,3.68,9,Bad,2343.25669,28.02998107,17 Years and 2 Months,Yes,61.36285837,,Low_spent_Small_value_payments,227.3495372,0,-1.2997,-0.06,1.2744,-0.6328,0.0003 -0x5155,CUS_0x5f7b,August,42,230-22-0261,Manager,12332.855,,7,7,9,4,"Student Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",,13,13.92,4,Standard,1070.101965,36.44305188,15 Years and 11 Months,Yes,20.6508024,57.2755902,High_spent_Small_value_payments,274.5332136,0,-0.6261,-0.5525,-0.5433,0.287,1.7625 -0x5161,CUS_0xb713,August,29,578-67-3819,Doctor,18002.675,,6,3,10,3,"Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,9,0.94,,Good,698.05,24.82783775,28 Years and 5 Months,No,34.03249572,86.78065112,Low_spent_Small_value_payments,312.2091448,0,-0.0669,0.4204,-0.9142,0.5014,0.86 -0x516d,CUS_0x97b,August,29,948-33-7459,Entrepreneur,85926.78,7351.565,3,7,8,1,Student Loan,,16,9.54,4,Standard,542.13,32.63161372,31 Years and 6 Months,Yes,61.89128696,145.5880249,!@9#%8,767.6771882,0,-0.1284,-0.9132,0.1588,2.3177,0.2866 -0x5179,CUS_0x765b,August,36,499-40-6829,_______,20051.92,1845.993333,5,2,3.288361749,2,"Student Loan, and Payday Loan",2.724043877,5,6.09,,Good,83.96,38.80345811,25 Years and 5 Months,No,30.30590559,,Low_spent_Small_value_payments,202.9126215,0,0.7387,0.535,-0.38,-1.3374,1.0561 -0x5185,CUS_0x6f4d,August,51,433-42-8444,Lawyer,148841.56,12696.46333,1,6,6.288361749,2,"Home Equity Loan, Auto Loan, and Not Specified",4.114283172,6,11.47,7,_,1095.81,34.5862906,16 Years and 10 Months,NM,186.3577743,,High_spent_Medium_value_payments,924.0838857,0,0.3228,1.3806,-0.0894,1.062,1.0796 -0x5191,CUS_0x9b95,August,19,024-94-7524,Manager,69374.78,5710.231667,1,3,12,100,"Debt Consolidation Loan, and Home Equity Loan",2.210747676,5,11.07,5,_,1060.819019,24.61512209,28 Years and 10 Months,No,68.54205265,495.3687913,Low_spent_Small_value_payments,364.9326238,0,1.305,1.9426,0.1531,0.7682,0.4673 -0x519d,CUS_0xb462,August,54,982-59-1518,Teacher,145917.88,12376.82333,8,5,4.288361749,2,"Personal Loan, and Student Loan",,12,0.22,7,Good,500.24,35.60697529,21 Years and 4 Months,No,127.5692543,728.4685967,High_spent_Medium_value_payments,1051.581943,0,0.3371,0.2664,-0.1576,0.9389,0.5542 -0x51a9,CUS_0xad74,August,53,774-72-8080,Teacher,20145.525,,2,4,6,1,Personal Loan,18.62463428,,7.66,2,Good,1491.08,36.2632365,21 Years and 10 Months,No,9.946396804,113.0038847,Low_spent_Small_value_payments,307.2290935,0,-0.4851,0.9887,-0.1437,-0.3224,0.2347 -0x51b5,CUS_0x4c84,August,18,946-42-4221,_______,18444.26,,3,5,17,2,"Mortgage Loan, and Personal Loan",16.08562615,11,9.5,10,Standard,1353.57,33.46812309,20 Years and 0 Months,Yes,112.5892347,174.0667743,Low_spent_Small_value_payments,230.9706533,0,-0.9228,-0.1252,-2.1695,-1.2642,0.2269 -0x51c1,CUS_0xbeb0,August,49,420-57-3195,Manager,39337.45,,2,7,2,2,"Student Loan, and Home Equity Loan",6.252064731,5.633413827,2.22,2,Good,559.0968299,32.91350853,28 Years and 0 Months,NM,47.82683197,214.7021851,Low_spent_Small_value_payments,330.6830663,0,2.6212,-0.2753,-0.0392,0.0006,-1.5239 -0x51cd,CUS_0xc075,August,20,972-83-6431,Teacher,17145.07,1509.755833,7,8,15,5,"Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",38.41715526,18.10582679,16.21,11,Bad,4944.036039,37.46571771,7 Years and 9 Months,Yes,62.20950973,63.33931275,!@9#%8,305.4267609,0,-1.2485,-0.2657,-0.4547,0.743,0.5247 -0x51d9,CUS_0x8f25,August,37,616-67-8262,Teacher,98759.91,8524.9925,5,7,3,2,"Not Specified, and Debt Consolidation Loan",5.323587933,5.763922952,4.24,3,_,1506.962034,28.37970535,26 Years and 9 Months,No,98.72127874,,High_spent_Medium_value_payments,755.3959552,0,0.4069,1.0175,1.3529,1.168,0.1646 -0x51e5,CUS_0xc5d7,August,50,156-69-3115,Journalist,88688.94,,3,7,8,0,,8.954016167,8.059505276,3.23,2018,Good,131.296473,33.90156441,19 Years and 8 Months,No,0,67.71493674,High_spent_Large_value_payments,901.0595633,0,-0.3466,0.6212,1.1963,-1.8721,-0.5198 -0x51f1,CUS_0x69c8,August,26,726-21-5047,Musician,81268.8,6849.4,8,7,18.28836175,0,,19.22721453,17,10.91,2,_,597.85,25.38276241,20 Years and 6 Months,Yes,0,,High_spent_Large_value_payments,752.3664265,0,1.0861,-0.2135,-0.3387,-1.9387,-0.2491 -0x51fd,CUS_0x6b57,August,35,686-83-2952,Media_Manager,19708.86,,6,4,9,3,"Auto Loan, Home Equity Loan, and Student Loan",22.00411563,,14.16,9,_,390.29,35.57957124,31 Years and 9 Months,Yes,43.65067805,115.2688024,Low_spent_Small_value_payments,274.6210195,0,-0.465,0.9976,0.4256,0.4735,0.4615 -0x5209,CUS_0xc610,August,80,639-29-8990,Musician,56175.12,4916.26,5,7,10,7,"Auto Loan, Credit-Builder Loan, Auto Loan, Not Specified, Not Specified, Payday Loan, and Not Specified",23.48280653,15.76980096,15.75,11,_,1986.218956,29.79656261,12 Years and 5 Months,Yes,268.5514835,373.5582682,Low_spent_Large_value_payments,119.5162483,0,-1.9782,0.3414,0.2585,-0.6052,0.3315 -0x5215,CUS_0x92f,August,21,298-72-3174,Doctor,37404.67,,0,5,1,1,Personal Loan,14.57405326,10.39318059,3.09,6,Good,1400.427127,35.69757833,33 Years and 3 Months,NM,25.52060507,39.07720002,High_spent_Medium_value_payments,519.8077782,0,0.7653,-0.3028,0.1084,0.8729,-0.1579 -0x5221,CUS_0x523c,August,18,739-81-2314,Lawyer,30363.73,,8,6,19,5,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, and Student Loan",,11,15.84,6,Standard,1394.85,38.15625307,9 Years and 0 Months,Yes,100.1215362,169.9543138,!@9#%8,293.3552333,0,0.5711,1.6656,0.4499,1.1182,0.0794 -0x522d,CUS_0x2dbf,August,52,370-51-2390,Musician,101583.48,8648.29,5,7,9.288361749,4,"Payday Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",9.210821052,10,4.89,5,Standard,50.93,27.1475555,24 Years and 4 Months,No,190.8110171,10419.93746,High_spent_Large_value_payments,734.5778252,0,-1.2708,1.5738,1.8261,-0.949,-0.3122 -0x5239,CUS_0x636d,August,21,131-96-3902,Accountant,19415.89,1792.990833,4,4,27,3,"Not Specified, Not Specified, and Payday Loan",31.25265239,20.83867401,10.87,14,Standard,2740.709797,37.53532554,,Yes,41.77039915,45.89557867,High_spent_Medium_value_payments,341.6331055,0,1.044,-0.2021,-1.5424,0.0601,-0.8803 -0x5245,CUS_0x28ec,August,33,901-01-4028,Musician,48121.32,4253.11,6,9,29,2,"Debt Consolidation Loan, and Mortgage Loan",,20.2645087,9.13,17,_,2093.005038,35.60735518,,Yes,58.07482988,63.30279797,!@9#%8,553.9333722,0,0.3987,-0.4089,0.0778,0.6445,-0.5678 -0x5251,CUS_0x4636,August,80,#F%$D@*&8,Accountant,57196.56,4838.38,6,3,17,3,"Home Equity Loan, Not Specified, and Credit-Builder Loan",,13.53408587,7.53,4,Standard,1383.408253,37.09223522,19 Years and 4 Months,Yes,74.30448443,,Low_spent_Medium_value_payments,210.301424,0,0.7761,0.5466,1.426,-1.0144,-0.0413 -0x525d,CUS_0x1c82,August,46,516-03-1114,Entrepreneur,62719.36,5315.613333,1,7,1,2,"Payday Loan, and Student Loan",,3,5.15,5,Good,73.8,32.78619654,30 Years and 5 Months,No,58.31563823,,Low_spent_Small_value_payments,499.0673604,0,-0.0141,0.8346,0.2639,-0.3327,-0.0286 -0x5269,CUS_0x8aee,August,20,407-37-6479,Writer,67242.56,,0,5,9,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",,6,2.7,2,Good,1017.06,29.52173741,25 Years and 0 Months,No,31182,,Low_spent_Large_value_payments,150.6906326,0,0.1984,-0.2725,0.9925,-0.1836,-0.0966 -0x5275,CUS_0x1540,August,26,742-16-8468,Engineer,143252.76,12131.73,5,7,10,4,"Personal Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",14.11435916,10,9.5,1,Good,1186.86,34.58048431,28 Years and 5 Months,No,251.7271912,243.3826433,High_spent_Medium_value_payments,968.0631655,0,-1.192,1.7866,-0.5761,-0.6793,0.0168 -0x5281,CUS_0x5bf5,August,43,031-67-3915,Lawyer,41896.88,3664.406667,5,7,1,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Student Loan",,10.20700669,5.9,5,Good,362.115844,36.36326821,27 Years and 5 Months,No,132.3181086,73.73107532,High_spent_Large_value_payments,400.3914827,0,0.0611,-0.8482,-2.1724,0.616,1.8059 -0x528d,CUS_0x7e25,August,19,755-90-5835,_______,15833.87,,5,4,10,2,"Home Equity Loan, and Credit-Builder Loan",,20,13.71,6,Standard,211.35,27.44936883,13 Years and 3 Months,Yes,23.14444966,70.08106468,Low_spent_Small_value_payments,336.6234023,0,0.6771,0.1262,-1.4799,-0.6507,0.1241 -0x5299,CUS_0x232b,August,26,516-71-4457,Entrepreneur,62115.81,,3,7,17,5,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",26.6581726,18,14.9,10,Standard,1724.19,39.62571668,8 Years and 2 Months,Yes,234.9283928,,Low_spent_Small_value_payments,149.3235312,0,0.0052,0.0197,0.0252,-0.4994,0.1913 -0x52a5,CUS_0xa862,August,28,452-26-8614,Developer,136900.4,11257.36667,6,4,10,3,"Home Equity Loan, Payday Loan, and Student Loan",,21.54630134,11.49,0,Good,1490.4046,28.94986713,30 Years and 10 Months,No,178.1981829,402.4065207,Low_spent_Large_value_payments,815.1319631,0,-1.1497,1.5084,0.7805,-0.588,1.2425 -0x52b1,CUS_0x6fef,August,36,838-11-0011,Entrepreneur,16474.845,,0,5,2,2,"Home Equity Loan, and Auto Loan",5.975376153,6,4.17,7,Good,340.96,29.71204034,,No,19.66074038,,Low_spent_Large_value_payments,295.0677229,0,-1.3198,0.776,-1.5443,2.6164,-0.9094 -0x52bd,CUS_0x2b7a,August,44,497-83-0932,Architect,66516.32,5333.026667,7,6,16.28836175,2,"Debt Consolidation Loan, Home Equity Loan, and Not Specified",18.64881461,15.78005658,17.92,6,Standard,37.23619184,38.30008164,17 Years and 9 Months,Yes,162.4926462,632.8318512,Low_spent_Medium_value_payments,437.9156303,0,-0.0646,-0.8536,-0.2686,0.6148,-1.8909 -0x52c9,CUS_0x4e66,August,56,103-53-8971,Media_Manager,85471.89,,4,5,3,0,,9.297286014,10,4.4,4,_,212.076762,39.13566092,23 Years and 3 Months,No,0,168.5170825,High_spent_Small_value_payments,830.7357115,0,-1.5597,1.4229,-0.108,-0.7225,0.24 -0x52d5,CUS_0x2742,August,26,432-37-0614,Writer,8557.39,,8,6,23.06745738,2,"Mortgage Loan, and Credit-Builder Loan",28.78987147,14.77427392,14.64,11,Bad,2245.945555,36.03154214,12 Years and 0 Months,NM,13.16840381,47.75650198,!@9#%8,282.0663896,0,-1.0633,-1.2701,-0.2301,1.313,-0.3361 -0x52e1,CUS_0x2b98,August,25,158-39-6168,Entrepreneur,8294.385,,7,7,26,7,"Home Equity Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Not Specified",11.18902083,12.77947105,7.59,4,Standard,1959.007966,25.21664059,19 Years and 6 Months,NM,48.03206276,72.87654018,!@9#%8,263.7112721,0,-0.4795,1.011,0.864,1.1594,0.8606 -0x52ed,CUS_0xc692,August,40,847-97-4559,Media_Manager,17372.48,,9,5,24,9,"Student Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",36.28779535,22.42618642,7.67,14,_,5527.814124,24.35578177,,Yes,102.7849368,,High_spent_Small_value_payments,200.6596632,0,-1.5921,0.1676,-1.0906,1.5664,-3.1614 -0x52f9,CUS_0x3389,August,18,894-41-9091,Manager,43782.45,3543.5375,6,9,26.95700519,8,"Payday Loan, Auto Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Not Specified, and Personal Loan",26.14335889,16,-3.12,12,_,3691.660954,30.4568101,,Yes,1564.148183,92.21289523,High_spent_Small_value_payments,236.9423027,0,0.0158,-0.0239,-1.538,0.6865,1.6027 -0x5305,CUS_0x3ff7,August,39,893-28-3484,Developer,14896.98,1232.415,8,10,30.88954781,8,"Auto Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Home Equity Loan, Not Specified, Personal Loan, and Payday Loan",51.98837382,28.83924814,5.53,11,Bad,1784.174055,38.43767701,13 Years and 9 Months,Yes,1379.496587,,!@9#%8,246.6105484,0,-0.663,-1.0089,-0.3006,-1.1086,-0.6061 -0x5311,CUS_0x6339,August,27,539-87-7939,Musician,79741.88,,3,7,9.288361749,4,"Personal Loan, Not Specified, Not Specified, and Not Specified",5.564734597,7,6.08,4,Good,227.12,23.31643628,25 Years and 3 Months,No,207.0632974,960.6742492,Low_spent_Medium_value_payments,207.0155811,0,0.0961,-1.1732,-1.1422,-0.6351,0.9329 -0x531d,CUS_0xcad,August,80,651-50-4567,Manager,16216.795,,5,6,13,0,,15.51733048,10,1.1,4,_,1470.14,36.76702841,24 Years and 0 Months,No,0,100.0816034,Low_spent_Medium_value_payments,325.3583549,0,-0.3099,-1.7851,1.274,2.3012,1.0293 -0x5329,CUS_0x4981,August,42,960-55-7671,Scientist,17638.365,1341.86375,5,1,2,1,Not Specified,13.85075984,,8.61,5,Good,339.7558379,32.52447453,21 Years and 11 Months,No,9.986938808,11411.43464,High_spent_Small_value_payments,345.2642939,0,-0.5222,0.3473,-0.3595,0.0694,2.2481 -0x5335,CUS_0x57e5,August,42,029-79-5137,Musician,60071.07,5069.9225,6,9,21.95700519,6,"Debt Consolidation Loan, Auto Loan, Auto Loan, Personal Loan, Auto Loan, and Auto Loan",45.66556821,25,15.16,13,Bad,3843.390954,37.53093452,7 Years and 8 Months,Yes,1502.342413,211.4220095,High_spent_Medium_value_payments,322.1774583,0,0.4861,-1.2297,-1.9303,1.3424,0.6995 -0x5341,CUS_0xbb18,August,28,951-39-9474,Entrepreneur,16538.39,1359.199167,10,5,16,7,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",26.85611484,16,29.77,9,Bad,3843.16,34.12078171,2 Years and 4 Months,Yes,82.94188495,93.03455375,Low_spent_Small_value_payments,249.943478,0,-0.6257,-0.2243,0.1704,-1.9906,2.1063 -0x534d,CUS_0x6c71,August,19,185-82-7001,Entrepreneur,34627.86,,8,8,20.06745738,3,"Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",,13.52206011,10.17,11,Standard,3083.371256,29.54553145,8 Years and 5 Months,Yes,81.83340589,291.7078454,Low_spent_Small_value_payments,164.6039607,0,0.576,-1.1436,0.9782,-0.1043,0.1888 -0x5359,CUS_0xb529,August,38,#F%$D@*&8,Journalist,60520.95,4783.4125,10,8,19.06745738,5,"Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,21.67160794,25.88,,Bad,4155.162011,40.66520313,12 Years and 5 Months,Yes,163.0827549,200.0563126,High_spent_Medium_value_payments,338.4818945,0,-1.6026,1.7828,-0.489,-0.8196,-1.4426 -0x5365,CUS_0x8fb7,August,31,915-56-4328,Media_Manager,59086.62,4664.885,6,6,30,7,"Not Specified, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,26.56342066,27.62,6,Bad,3484.314699,35.32244852,7 Years and 6 Months,NM,341.0566632,91.0559481,High_spent_Medium_value_payments,284.3758887,0,-1.3647,-0.4155,-1.7964,0.534,0.5692 -0x5371,CUS_0x5c40,August,18,215-45-8438,Journalist,14646.96,,7,7,21.06745738,4,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",15.49235931,9,19.6,5,Standard,1685.170954,32.626971,17 Years and 3 Months,NM,46.00273232,107.905427,Low_spent_Medium_value_payments,215.0295527,0,1.6416,1.0026,-0.7155,1.398,-0.4903 -0x537d,CUS_0x9dec,August,39,483-86-0207,Developer,26282.47,2125.205833,7,5,17,2,"Credit-Builder Loan, and Student Loan",19.52743568,16,4.68,4,Standard,922.9393426,32.14416236,17 Years and 4 Months,No,23.40929117,89.16976658,!@9#%8,379.8410679,0,1.3327,-0.3664,1.1475,-1.3602,-0.6054 -0x5389,CUS_0x6087,August,26,371-67-0471,Doctor,14790.965,,5,7,17,1,Credit-Builder Loan,,16.99338092,11.64,6,Standard,1499.258452,37.20353725,6 Years and 2 Months,Yes,10.89907086,119.6359624,Low_spent_Medium_value_payments,286.4230084,0,-1.4293,-0.7444,-0.9826,-2.0756,1.6435 -0x5395,CUS_0x5d42,August,39,330-04-5269,Entrepreneur,71212.16,5749.346667,7,6,31.06745738,8,"Credit-Builder Loan, Not Specified, Student Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",40.2817663,22,18.78,13,Bad,3968.040954,25.81692112,9 Years and 0 Months,Yes,30662,,Low_spent_Small_value_payments,0,0,-1.8258,0.0113,-0.7259,-0.6306,0.8259 -0x53a1,CUS_0x925,August,80,106-34-4700,Accountant,39094.34,,3,5,10.28836175,2,"Payday Loan, Home Equity Loan, and Not Specified",0,0,10.84,3,Good,124.322706,26.29839243,29 Years and 6 Months,No,66.86046104,572.6983587,High_spent_Medium_value_payments,404.2790346,0,0.2488,-1.701,0.8655,0.5072,1.0867 -0x53ad,CUS_0x5cc6,August,34,120-20-9175,Lawyer,104917.74,8526.145,5,4,9,100,"Not Specified, and Debt Consolidation Loan",,1,1.1,4,_,405.5780903,39.15291163,20 Years and 11 Months,No,173.9355003,421.9932871,High_spent_Small_value_payments,569.9529911,0,0.4307,0.0424,0.399,0.1046,-1.1084 -0x53b9,CUS_0x490e,August,40,093-96-8853,Developer,57296.46,4618.705,7,10,21,2,"Student Loan, and Debt Consolidation Loan",44.69859044,22.5382666,7.35,12,Bad,2607.397256,23.90554692,12 Years and 6 Months,Yes,66.18363519,619.0625979,Low_spent_Small_value_payments,66.62426694,0,0.216,-1.0058,0.973,1.779,0.6862 -0x53c5,CUS_0x17b0,August,25,713-73-3196,Developer,42710.62,3766.218333,8,6,13,0,,,12,8.04,4,Standard,1012.708262,24.78454364,18 Years and 2 Months,No,0,176.564,!@9#%8,486.6496371,0,-0.1722,-0.1361,0.3018,-0.4682,1.7381 -0x53d1,CUS_0x3f51,August,31,#F%$D@*&8,Engineer,17612.175,1143.228824,6,5,14,4,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",,,12.75,,Standard,1273.32,34.99916207,18 Years and 3 Months,Yes,108.2641369,79.9307509,High_spent_Small_value_payments,262.525663,0,0.0596,0.7031,0.3885,0.6357,-0.9144 -0x53dd,CUS_0xa98a,August,35,675-04-9882,Manager,33177.95,2891.829167,5,4,17,4,"Student Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,20,8.12,5,Standard,230.1129057,23.84333632,,No,61.09941254,22.24183055,High_spent_Large_value_payments,447.9474524,0,0.7334,0.2043,-1.7702,1.7242,1.5521 -0x53e9,CUS_0x7982,August,38,322-39-3378,Writer,73355.38,,3,7,12,1,Credit-Builder Loan,18.3598302,14,11.56,7,Standard,998.81,32.25803712,28 Years and 6 Months,No,36.42229863,75.01727157,High_spent_Large_value_payments,742.2552631,0,-0.0361,-1.3652,0.3192,-1.1987,0.9351 -0x53f5,CUS_0x48e,August,30,627-30-1936,Architect,31936.05,,3,829,11,4,"Student Loan, Auto Loan, Personal Loan, and Payday Loan",,8,14.79,1,Standard,1380.76,36.82173907,25 Years and 8 Months,Yes,98.14745279,140.6183552,High_spent_Small_value_payments,264.467942,0,-1.7121,-1.0419,-0.2867,1.3256,-0.8716 -0x5401,CUS_0xa7b2,August,80,899-51-3471,Mechanic,14647.905,,0,3,7,3,"Personal Loan, Student Loan, and Student Loan",0,4,11.77,6,Good,1196.73,34.47580692,26 Years and 8 Months,No,21.80270367,10000,Low_spent_Small_value_payments,327.6018057,0,-0.469,0.4029,-0.3846,-1.4627,0.4788 -0x540d,CUS_0xa078,August,35,769-91-1021,_______,79548.32,,4,0,5146.288362,4,"Not Specified, Debt Consolidation Loan, Home Equity Loan, and Not Specified",14.22757786,,3.3,3,Good,767.2688729,34.69875028,,No,211.2145253,1061.269528,Low_spent_Large_value_payments,123.9056545,0,-0.6485,-0.6127,0.3253,-0.9522,-0.3722 -0x5419,CUS_0x5ec6,August,22,024-21-6368,Engineer,7415.08,,5,6,14,6,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Personal Loan",5.042211714,6,11.06,9,Standard,583.56,34.19252702,,Yes,27.01080524,74.09300511,Low_spent_Medium_value_payments,260.488523,0,-0.0659,-0.1465,-1.0472,1.0706,1.221 -0x5425,CUS_0x46f7,August,26,925-05-0709,Writer,19725.7,,8,10,17,2,"Auto Loan, and Auto Loan",13.00311112,12.44657336,,7,Standard,2471.886654,26.83557737,,Yes,19.39814491,,Low_spent_Large_value_payments,290.2002058,0,0.9069,-1.8965,-1.5794,-1.3134,1.539 -0x5431,CUS_0x3ec7,August,37,274-10-1233,Media_Manager,82999.64,7156.636667,5,7,8,2,"Personal Loan, and Mortgage Loan",4.957489877,5.84725048,2.53,2,Good,1656.620943,34.52860655,18 Years and 4 Months,No,104.5772356,109.8991103,High_spent_Large_value_payments,741.1873207,0,-0.8067,0.3345,-0.0277,0.6357,-1.5036 -0x543d,CUS_0x2c99,August,23,180-82-7743,Teacher,9648.22,,9,5,27.06745738,7,"Home Equity Loan, Personal Loan, Payday Loan, Auto Loan, Payday Loan, Personal Loan, and Credit-Builder Loan",,23.95477627,1.07,12,_,2950.868848,31.56765793,11 Years and 2 Months,Yes,52.68936755,,Low_spent_Small_value_payments,194.5355934,0,-0.651,-0.6409,0.576,0.9393,-0.3434 -0x5449,CUS_0xc5f3,August,19,#F%$D@*&8,Manager,15728.24,1061.686667,7,6,32.06745738,2,"Debt Consolidation Loan, and Payday Loan",23.58565641,14,13.59,10,Bad,2225.780954,31.38967018,18 Years and 6 Months,Yes,25.04348869,80.42910067,Low_spent_Small_value_payments,263.9757894,0,0.0137,-0.4037,-0.0649,-0.3213,0.6336 -0x5455,CUS_0x99b4,August,38,676-64-6048,Musician,89757.46,6373.027993,2,1,1.288361749,0,,4.462346276,8,9.39,,_,130.0098737,39.90071667,24 Years and 2 Months,No,943.7603407,1068.917049,Low_spent_Medium_value_payments,426.6677754,0,-0.6071,0.7112,1.97,1.0056,-0.2961 -0x5461,CUS_0x5a9f,August,22,654-57-4520,Media_Manager,88535.92,7299.993333,5,7,17,5,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Personal Loan, and Auto Loan",18.45767238,14,11.07,7,Standard,1499.31,27.25866998,13 Years and 10 Months,Yes,360.8742785,651.5275987,Low_spent_Large_value_payments,,0,-0.0339,0.9669,1.4858,1.2966,-0.114 -0x546d,CUS_0x6ead,August,39,827-02-1282,Mechanic,69102.09,6027.5075,8,3,14.28836175,0,Payday Loan,,15,18.85,5,Standard,93.68434641,28.58945695,20 Years and 9 Months,NM,45.60574916,518.1012241,High_spent_Large_value_payments,708.7861561,0,-0.7888,-0.0713,0.808,-1.3104,0.8523 -0x5479,CUS_0xafd5,August,28,251-25-8151,Writer,28193.38,2643.448333,6,3,2,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",,20,2.92,4,Standard,1099.7,23.3992436,17 Years and 0 Months,No,93.37869416,38.40982518,High_spent_Large_value_payments,372.556314,0,-0.3394,0.9137,0.2711,0.7665,-1.7315 -0x5485,CUS_0xa3bb,August,47,410-63-8948,Entrepreneur,21637.515,,3,5,9,0,,0,0,9.15,3,Good,868.6734896,30.80229496,31 Years and 11 Months,No,0,207.3831541,Low_spent_Small_value_payments,266.153763,0,-1.9373,0.0097,-1.627,0.1244,0.5064 -0x5491,CUS_0x9a09,August,28,979-05-5595,_______,28910.45,,7,4,12.28836175,4,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Student Loan",,10,9.39,6,Standard,292.98,29.98935906,15 Years and 9 Months,Yes,95.02278218,,Low_spent_Large_value_payments,245.0498717,0,0.7324,0.3609,-0.3658,0.1035,0.4129 -0x549d,CUS_0xabc6,August,26,588-48-6819,Mechanic,20380.51,1854.375833,8,3,19.28836175,4,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",12.91986806,13,14.5,12,Standard,153.7,33.66976641,13 Years and 8 Months,Yes,57.29949813,,Low_spent_Large_value_payments,228.0340212,0,-0.2413,1.0252,0.7528,-1.073,0.2569 -0x54a9,CUS_0x7c8c,August,52,230-18-1696,_______,43592.45,3758.704167,2,3,2,3,"Student Loan, Personal Loan, and Mortgage Loan",0,2,1.53,3,Good,793.39,31.07522011,32 Years and 10 Months,No,95.8860779,103.5224426,Low_spent_Medium_value_payments,456.4618962,0,-0.6226,-0.8515,0.7192,-1.21,0.173 -0x54b5,CUS_0x8983,August,35,505-01-1613,Scientist,60122.68,5004.223333,2,5,8,0,,13.10150642,12,11.73,5,Good,1053.058722,39.49888317,,NM,0,172.0646736,!@9#%8,609.5641475,0,-0.2552,-0.552,0.4913,0.0287,0.2566 -0x54c1,CUS_0x55e4,August,28,053-71-8237,Lawyer,20293.24,1647.255786,5,7,29,4,"Not Specified, Student Loan, Mortgage Loan, and Student Loan",,22.48138507,16.37,11,Standard,2193.057917,31.16662573,8 Years and 8 Months,Yes,89.30932683,31.30556947,High_spent_Large_value_payments,342.2429843,0,-0.2555,-2.6144,0.3772,0.0146,-0.9004 -0x54cd,CUS_0x1bc0,August,43,175-36-3847,Teacher,38060.68,3018.723333,6,10,22.88954781,6,"Auto Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",,24,25.41,11,Bad,2817.77,37.8748094,4 Years and 10 Months,Yes,1495.987889,,High_spent_Medium_value_payments,234.8645255,0,-0.0099,0.3156,-0.2435,0.7168,0.7116 -0x54d9,CUS_0xa822,August,36,359-48-9103,Engineer,77470.14,6744.845,1,1,5.288361749,2,"Credit-Builder Loan, and Credit-Builder Loan",0,1,5.05,3,Good,237.6337074,35.22235594,30 Years and 10 Months,No,65.55683764,711.3099273,High_spent_Medium_value_payments,606.5309072,0,0.7204,-1.4498,-0.4155,0.9574,-2.5381 -0x54e5,CUS_0x3b33,August,34,218-74-2565,Scientist,39883.46,3520.621667,7,6,29.06745738,9,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Auto Loan, Personal Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,16,27.12,9,Bad,5061.670954,36.4242387,1 Years and 11 Months,Yes,220.4014984,,Low_spent_Large_value_payments,138.9912354,0,-0.2433,0.1139,-0.4304,-0.7969,-0.3433 -0x54f1,CUS_0xbf67,August,43,904-27-9804,Architect,36690.32,2922.526667,3,3,9,6,"Home Equity Loan, Mortgage Loan, Personal Loan, Not Specified, Home Equity Loan, and Personal Loan",,17,14.07,6,Standard,874.85,35.23574743,16 Years and 10 Months,Yes,134.0882915,79.82250439,Low_spent_Medium_value_payments,358.3418708,0,-0.1036,-0.3185,-0.24,-0.4434,-0.2154 -0x54fd,CUS_0x86f6,August,30,590-69-2730,Mechanic,27653.79,,8,7,12,4,"Debt Consolidation Loan, Personal Loan, Student Loan, and Personal Loan",10.63464975,6.819220045,10.8,3,_,14.62755109,27.12417259,32 Years and 5 Months,No,49.87672143,271.0724458,Low_spent_Small_value_payments,210.1990828,0,1.6221,-0.0719,1.618,-1.2025,2.0925 -0x5509,CUS_0xb9bb,August,45,#F%$D@*&8,Doctor,17458.44,,9,9,15,100,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",,24.15658155,-5.65,1776,_,3208.927249,34.58361064,8 Years and 6 Months,Yes,66.4030265,46.35047473,Low_spent_Medium_value_payments,311.9334988,0,0.5003,0.9092,1.1093,1.2789,0.3951 -0x5515,CUS_0x91f,August,44,740-45-3202,Doctor,21450.72,,2,5,9.288361749,2,"Personal Loan, Payday Loan, and Home Equity Loan",,8,9.41,1,Good,123.12,24.88904065,33 Years and 5 Months,No,31.29690078,472.724457,High_spent_Small_value_payments,347.2721032,0,-1.496,-2.0007,-1.5632,-1.1186,1.1493 -0x5521,CUS_0x74db,August,38,180-94-8644,Writer,10361.92,,6,5,33.06745738,7,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Personal Loan, and Debt Consolidation Loan",,21.90300867,26.92,6,_,3847.981045,33.60448947,,Yes,44.01212564,,Low_spent_Medium_value_payments,222.9164077,0,0.9214,-1.1739,-0.5981,0.4632,2.3097 -0x552d,CUS_0x39d8,August,32,741-13-7939,Writer,14130.645,980.55375,3,6,8,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,9,1.27,6,_,1145.9,38.51948681,31 Years and 8 Months,No,32.55670391,34.74422327,High_spent_Medium_value_payments,280.7544478,0,-0.624,1.9782,0.3535,-0.9671,-2.9526 -0x5539,CUS_0x8158,August,27,020-00-9645,Architect,32729.97,2908.4975,6,3,13.28836175,4,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",16.06680107,15,9.71,9,Standard,325.68,34.56878107,31 Years and 0 Months,Yes,108.8103331,805.8306451,Low_spent_Small_value_payments,86.14623286,0,1.3171,1.6241,-0.0839,0.2695,-0.3273 -0x5545,CUS_0x8812,August,29,448-25-2178,Musician,31170.53,2854.544167,1,5,6,2,"Mortgage Loan, and Mortgage Loan",9.00959314,8.17919394,7.55,,_,500.2944491,37.06488788,25 Years and 3 Months,No,35.03164263,122.9588305,Low_spent_Small_value_payments,417.4639435,0,-0.1958,-0.7196,0.7483,0.769,0.3631 -0x5551,CUS_0x83dc,August,38,404-59-4055,_______,59759.68,,10,6,19,6,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",28.02710287,21,23.04,9,Bad,3676.39,33.79774876,2 Years and 0 Months,Yes,243.2266636,60.3873753,High_spent_Large_value_payments,442.6832944,0,0.7736,0.6505,0.133,0.7876,1.7919 -0x555d,CUS_0x3ec6,August,21,539-95-3833,Engineer,15838.8,,10,8,23.88954781,100,"Payday Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",,19,18.3,6,Bad,2289.44,26.53637534,9 Years and 8 Months,Yes,58801.48344,34.18692443,High_spent_Large_value_payments,280.419333,0,-2.1612,0.4898,0.0578,-0.7821,0.5452 -0x5569,CUS_0x950d,August,38,205-57-7066,Developer,28253.72,,4,6,14,100,,18.52040706,14,4.93,2,Standard,1098.38,32.61456827,32 Years and 10 Months,NM,0,160.5481868,High_spent_Small_value_payments,345.4994799,0,-1.2344,-0.5659,0.1247,1.396,0.184 -0x5575,CUS_0xc2a4,August,55,589-36-3821,_______,122322,,1257,3,9,2,"Mortgage Loan, and Not Specified",,9,5.97,6,Good,522.3338225,38.10720816,,No,1120.378691,1339.956952,Low_spent_Small_value_payments,,0,0.217,-0.388,0.0548,0.2477,-1.1734 -0x5581,CUS_0x9761,August,44,069-05-2904,Musician,32012.65,2562.319063,4,5,8.288361749,2,"Personal Loan, Mortgage Loan, and Personal Loan",3.408404643,7,5.84,8,Good,7.44,29.85556956,20 Years and 11 Months,No,223.9660293,543.831786,Low_spent_Small_value_payments,373.7134992,0,1.0999,0.4766,-0.5621,-0.2752,-1.4832 -0x558d,CUS_0xb825,August,30,799-34-8016,Developer,83457.76,6936.813333,5,6,5521,7,"Home Equity Loan, Not Specified, Payday Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",16.43695662,14,16.92,7,Standard,1266.18,35.12386369,6 Years and 10 Months,Yes,386.777743,725.7688489,Low_spent_Small_value_payments,,0,1.075,-0.4105,0.4183,-0.0345,2.175 -0x5599,CUS_0x53d1,August,44,226-19-2220,Mechanic,15712.65,,10,7,22,9,"Student Loan, Mortgage Loan, Payday Loan, Not Specified, Student Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, and Payday Loan",36.54863849,26,16.94,12,Bad,2540.41,39.89098295,,Yes,79.86675873,128.6089392,!@9#%8,201.0630521,0,1.1886,-0.8197,0.5914,-0.345,0.967 -0x55a5,CUS_0x5f15,August,33,001-97-1222,Scientist,7617.915,626.82625,8,6,16,9,"Not Specified, Debt Consolidation Loan, Auto Loan, Personal Loan, Auto Loan, Personal Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,,15.47,14,_,3257.62,35.61228649,9 Years and 5 Months,Yes,52.46998924,74.58069018,Low_spent_Small_value_payments,225.6319456,0,-0.4456,-0.7126,0.3113,-0.1727,0.2135 -0x55b1,CUS_0xc3f1,August,19,169-02-0611,Media_Manager,50739.27,4387.2725,4,6,5,6,"Personal Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Home Equity Loan",18.05523031,,14.03,5,_,1552.17,25.42343878,6 Years and 6 Months,Yes,240.0567506,111.3039386,High_spent_Medium_value_payments,337.3665608,0,-0.6479,1.6547,-0.3837,0.1245,-0.4014 -0x55bd,CUS_0xb9f,August,45,386-87-6151,Accountant,14161.865,,5,7,14,0,,19.60022637,18,13.58,6,_,1331.37,25.57348735,21 Years and 4 Months,NM,0,63.45902672,Low_spent_Large_value_payments,342.6565149,0,-0.4915,-1.5465,0.025,1.2471,1.1854 -0x55c9,CUS_0x3430,August,49,423-11-5984,Manager,15285.495,1523.79125,0,3,9,0,,19.58428031,12.82948634,11.16,0,_,1032.047966,25.58031122,31 Years and 4 Months,No,0,37.70015705,High_spent_Medium_value_payments,364.678968,0,-0.0761,0.6658,-0.075,-1.2805,0.2319 -0x55d5,CUS_0xc04a,August,18,555-02-9736,Entrepreneur,36681.48,2999.79,8,10,21.95700519,6,"Student Loan, Auto Loan, Not Specified, Auto Loan, Student Loan, and Not Specified",23.92577454,15,8.78,15,Standard,2576.070954,34.85449127,,Yes,1476.590936,23.63488773,High_spent_Large_value_payments,318.7028072,0,-0.186,-0.7021,0.0902,0.8449,-2.3702 -0x55e1,CUS_0x6997,August,28,483-75-2737,Media_Manager,20297.91,1785.4925,8,8,22.06745738,4,"Payday Loan, Not Specified, Credit-Builder Loan, and Not Specified",22.59192401,,10.83,11,Bad,2097.220954,29.2605813,18 Years and 9 Months,Yes,48.73093023,,Low_spent_Small_value_payments,159.6825836,0,0.9296,-0.6535,-0.7464,1.2134,1.6182 -0x55ed,CUS_0x437e,August,45,997-25-9594,Architect,28840.47,,7,7,14.28836175,0,,,11,16.45,0,Standard,196.82,39.94920711,30 Years and 3 Months,Yes,0,456.6066674,High_spent_Medium_value_payments,459.9680436,0,0.9512,0.4011,-0.9627,0.2279,-0.6444 -0x55f9,CUS_0x4963,August,49,358-31-1093,Accountant,94216.14,,3,6,5,1,Personal Loan,,19.13728204,1.71,2,Standard,400.2761266,26.86916248,22 Years and 4 Months,Yes,59.90667335,122.6660102,High_spent_Large_value_payments,816.1618165,0,0.0864,-0.2306,-0.1848,1.2678,0.4227 -0x5605,CUS_0x14ba,August,24,961-03-0481,Teacher,81425.24,6579.436667,9,5,26,7,"Not Specified, Credit-Builder Loan, Student Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Mortgage Loan",21.80841244,18.01142307,3.69,9,Bad,1886.849527,39.14349336,14 Years and 2 Months,NM,375.6909458,214.3321718,Low_spent_Large_value_payments,337.920549,0,-0.5054,0.0581,-1.6756,0.3578,-1.9303 -0x5611,CUS_0x2a52,August,52,039-02-7101,Developer,101296.71,8456.3925,3,4,3.288361749,2,"Mortgage Loan, Home Equity Loan, and Not Specified",0.918686786,3,5.82,1,Good,708.6655931,34.73946442,16 Years and 2 Months,No,234.491421,659.3424966,High_spent_Large_value_payments,642.785507,0,-1.5658,-0.2837,-1.0936,-0.6619,0.4638 -0x561d,CUS_0xaa3d,August,33,044-39-7834,Writer,33395.89,,3,3,8,0,,,0,10.96,6,_,745.8165493,26.39580235,28 Years and 6 Months,NM,0,168.155379,Low_spent_Large_value_payments,392.1437043,0,0.1125,-1.9959,-0.8918,-1.7354,-1.1732 -0x5629,CUS_0xb1a2,August,20,#F%$D@*&8,Entrepreneur,20785.005,,4,5,3.288361749,0,,5.855003771,9,0.96,4,_,116.8806906,25.33525211,18 Years and 2 Months,No,8876,443.4294078,High_spent_Large_value_payments,402.9145433,0,-0.7883,-1.8184,1.2502,0.6892,0.5936 -0x5635,CUS_0x8df6,August,33,217-58-1095,Lawyer,7174.99,,10,8,25.88954781,7,"Payday Loan, Personal Loan, Payday Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Mortgage Loan",41.49761163,24,16.88,12,Bad,4265.64,37.54399081,6 Years and 4 Months,Yes,1355.750114,,Low_spent_Small_value_payments,213.1743826,0,0.0762,0.127,0.0171,-0.3602,1.2911 -0x5641,CUS_0xba63,August,20,310-95-9844,Journalist,22318.49,2130.874167,5,2,7,3,"Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,0,4.86,0,Good,947.41,37.99030764,18 Years and 10 Months,No,39.91728359,282.9161912,Low_spent_Small_value_payments,180.2539419,0,-0.9014,0.129,-1.4634,-0.2982,-0.119 -0x564d,CUS_0x4c8d,August,50,001-49-5189,Accountant,110143.65,9117.6375,6,7,3,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",23.12821472,15,8.63,0,_,1304.45,30.71200866,19 Years and 11 Months,No,233.4507699,176.8834431,High_spent_Medium_value_payments,751.429537,0,0.1591,-1.0211,-1.3253,-0.7015,-1.6538 -0x5659,CUS_0x281d,August,37,510-09-3043,Architect,118062.2,10136.51667,0,1,6.288361749,0,,0,0,7.68,1,Good,1393.23,30.34397383,29 Years and 10 Months,No,0,571.3545817,!@9#%8,1102.234546,0,0.556,-3.0038,-0.7687,0.8244,-1.8934 -0x5665,CUS_0x8e5,August,45,454-53-0773,Musician,7012.31,,8,6,21.06745738,5,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Student Loan, and Student Loan",45.03464636,27.75865946,5.64,10,Bad,5530.131702,34.20429308,9 Years and 8 Months,Yes,20.58222059,22.63287707,High_spent_Small_value_payments,247.8005311,0,-0.8271,-1.1108,-0.8991,0.0687,-0.4359 -0x5671,CUS_0x5239,August,34,410-88-1260,Manager,89424.9,7615.075,5,5,4,4,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",18.00068042,11.60063275,5.12,4,Good,951.7220428,24.93399863,25 Years and 11 Months,No,153.2255283,299.1667604,High_spent_Small_value_payments,569.1152113,0,0.9039,1.1164,-1.2851,0.674,-0.3318 -0x567d,CUS_0xa5a1,August,40,401-25-1243,Entrepreneur,10341.68,761.8066667,7,6,17.06745738,8,"Mortgage Loan, Payday Loan, Credit-Builder Loan, Not Specified, Not Specified, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",,27.00509907,4.61,14,Bad,3291.384684,36.51217701,8 Years and 4 Months,NM,50.88803778,73.29457808,Low_spent_Small_value_payments,215.2777629,0,-3.2336,0.3252,-0.4976,-2.1704,-0.0115 -0x5689,CUS_0x825e,August,35,776-55-8622,Manager,19213.81,1812.150833,9,8,29.06745738,3,"Personal Loan, Auto Loan, and Payday Loan",39.99977523,18.19011271,16.27,12,Bad,1986.848275,27.55117253,18 Years and 2 Months,Yes,31.70698129,,Low_spent_Small_value_payments,225.5510324,0,0.7228,-0.151,0.2861,1.4151,1.2619 -0x5695,CUS_0x5a7b,August,21,935-59-4707,Developer,61319.37,,8,10,16.88954781,7,"Personal Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",45.13814514,22.67907303,5.65,9,_,2533.212149,29.21533853,6 Years and 6 Months,Yes,1567.129614,95.15501818,High_spent_Medium_value_payments,399.9800367,0,0.5669,-0.7709,0.7458,0.2918,0.8876 -0x56a1,CUS_0x9a8d,August,56,398-02-1604,Journalist,144901.76,12350.14667,4,7,10,2,"Personal Loan, and Payday Loan",6.697641007,7,7.94,7,Standard,1267.693488,38.79850393,,No,170.7786055,1128.329162,Low_spent_Large_value_payments,312.7033037,0,1.2582,-0.0054,-1.4737,0.1946,-0.0493 -0x56ad,CUS_0x710b,August,30,496-47-3679,Doctor,47958.76,3756.563333,6,4,7,3,"Personal Loan, Mortgage Loan, and Payday Loan",,10.30726186,9.3,3,Good,199.6069438,36.37788643,,No,93.07742991,84.99584832,High_spent_Medium_value_payments,447.5830551,0,-0.3243,-0.0438,-0.9551,0.8475,-0.2919 -0x56b9,CUS_0xb7a5,August,80,346-46-1263,Journalist,35417.25,,3,5,7,0,,16.30854608,14,13.96,5,Standard,701.43,27.44801999,18 Years and 8 Months,Yes,0,106.5709282,High_spent_Medium_value_payments,444.7728218,0,-0.4601,1.477,-2.3807,1.6555,-2.5118 -0x56c5,CUS_0x19b0,August,38,523-76-9027,Writer,109110.57,,0,1,4,4,"Personal Loan, Payday Loan, Not Specified, and Mortgage Loan",0,1,1.76,2,Good,411.96,32.62881038,16 Years and 3 Months,NM,257.2322887,185.5312615,!@9#%8,708.1911999,0,0.7074,-0.1101,0.1749,-1.26,-0.5681 -0x56d1,CUS_0x7f53,August,35,474-27-4829,Media_Manager,67951.65,,8,3,14,2,"Personal Loan, and Mortgage Loan",8.19815374,9.569643228,11.56,5,Standard,1164.520311,31.81107499,26 Years and 9 Months,Yes,68.4042151,285.2915318,Low_spent_Small_value_payments,532.4680031,0,-0.2886,0.7354,0.247,-0.3253,1.1129 -0x56dd,CUS_0x6e58,August,19,040-93-1290,Journalist,22931.66,,3,6,5,0,,19.55327061,12,4.87,6,Standard,834.51,27.57710688,28 Years and 5 Months,Yes,0,61.55833722,High_spent_Medium_value_payments,374.8388294,0,0.4602,3.2648,0.1526,0.4558,-1.6928 -0x56e9,CUS_0x6ef2,August,21,187-39-3355,Entrepreneur,88620.14,6814.368375,1,5,10,4,"Personal Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",,3,10.34,0,Good,82.36,30.45396312,26 Years and 4 Months,No,993.4409317,535.6839314,Low_spent_Medium_value_payments,340.5195956,0,0.3827,-1.0917,0.4198,-0.579,-0.0007 -0x56f5,CUS_0x1c39,August,41,243-53-0158,Media_Manager,18205.45,1480.120833,2,5,7,1,Credit-Builder Loan,5.855003771,9,1.78,7,_,924.3749151,35.34065426,28 Years and 2 Months,No,12.47203031,,Low_spent_Small_value_payments,362.2219733,0,-0.4083,0.6023,-0.2699,0.8519,0.9634 -0x5701,CUS_0xbe64,August,31,#F%$D@*&8,Engineer,12025.045,1263.087083,5,4,17,4,"Payday Loan, Mortgage Loan, Personal Loan, and Mortgage Loan",,14,12.89,9,Standard,843.67,35.91041359,21 Years and 6 Months,Yes,27.77590536,44.01948734,Low_spent_Small_value_payments,344.5133156,0,0.8764,-0.3841,0.5588,-0.9187,0.2568 -0x570d,CUS_0x78a6,August,27,497-21-0135,Scientist,71461.6,5531.891117,8,5,16.06745738,5,"Personal Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Student Loan",26.1504188,,24.94,10,Bad,5036.120954,34.04056479,,NM,659.2222749,69.3585937,High_spent_Medium_value_payments,461.7543927,0,-0.895,-1.0963,0.057,0.5463,0.3639 -0x5719,CUS_0x8337,August,50,018-34-8385,Engineer,89666.88,7309.24,6,6,12,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",,,9.52,6,Standard,1155.94,35.74216667,,NM,174.861696,65.5748495,High_spent_Large_value_payments,730.4874545,0,0.0923,0.6445,-1.2014,-0.7818,-1.3242 -0x5725,CUS_0x2205,August,20,668-83-2820,Manager,67917.44,5611.786667,8,7,28,6,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Personal Loan, Student Loan, and Personal Loan",,15.85168916,14.74,16,Standard,2422.214925,27.74277381,12 Years and 4 Months,Yes,170.4184241,90.43565244,High_spent_Medium_value_payments,550.3245901,0,0.6741,-0.7785,-0.1135,-0.6278,1.1888 -0x5731,CUS_0x86b5,August,20,049-77-0285,Manager,15669.6,,5,10,27,5,"Mortgage Loan, Payday Loan, Student Loan, Home Equity Loan, and Personal Loan",20.13792214,,11.66,12,_,2237.758669,29.65385496,8 Years and 4 Months,Yes,35.28391361,,Low_spent_Small_value_payments,212.6432029,0,-0.962,1.4801,-0.9183,-0.3159,-0.4332 -0x573d,CUS_0x193c,August,25,933-33-8472,_______,83675.56,6913.963333,10,10,19.88954781,6,"Payday Loan, Not Specified, Mortgage Loan, Auto Loan, Not Specified, and Mortgage Loan",34.19878381,24.65091297,7.76,6,Bad,2960.664138,27.3570331,13 Years and 2 Months,NM,1685.261088,144.550425,High_spent_Large_value_payments,407.2547391,0,1.214,-0.1562,-0.187,0.9345,1.306 -0x5749,CUS_0x9be5,August,50,776-90-4778,Media_Manager,16558.12,,3,7,9.288361749,2,"Home Equity Loan, Payday Loan, and Credit-Builder Loan",,2,1.57,1,Good,15.43,30.34270628,19 Years and 8 Months,No,35.38755485,,Low_spent_Small_value_payments,227.3154809,0,0.6974,0.3573,1.8152,-0.8336,0.5786 -0x5755,CUS_0x3513,August,30,407-97-5354,Accountant,83037.36,,8,9,19.88954781,6,"Debt Consolidation Loan, Auto Loan, Not Specified, Mortgage Loan, Mortgage Loan, and Home Equity Loan",,17.94181743,7.46,9,Standard,1660.250785,29.87523892,9 Years and 3 Months,Yes,63320.48344,318.8958079,Low_spent_Medium_value_payments,346.3984267,0,-0.2406,0.8813,-0.1449,0.5008,1.4411 -0x5761,CUS_0x83f5,August,27,912-04-6363,Developer,9029.7,,7,6,29,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",16.10354875,,16.62,10,Standard,2501.804917,29.72940951,,Yes,15.01610936,51.24123163,Low_spent_Small_value_payments,317.590159,0,1.3601,-0.1261,0.9674,-0.8964,0.5579 -0x576d,CUS_0x99dc,August,35,135-62-4830,Developer,73044.56,6149.046667,7,9,30,5,"Payday Loan, Auto Loan, Payday Loan, Credit-Builder Loan, and Personal Loan",,26.58469581,6.11,10,Bad,3219.358425,37.80716961,6 Years and 5 Months,Yes,72315,259.6346687,Low_spent_Small_value_payments,363.5802373,0,1.3345,-2.2251,-0.7248,-0.689,0.5175 -0x5779,CUS_0x709,August,46,818-12-9237,Mechanic,17519.775,,6,5,15,2,"Payday Loan, and Mortgage Loan",16.19655571,11,2,1,_,290.97,27.56326209,16 Years and 9 Months,No,27.29487715,18.16937689,High_spent_Medium_value_payments,340.833871,0,-0.5294,1.1438,0.9248,-1.9028,0.4568 -0x5785,CUS_0x576d,August,25,026-99-8276,Teacher,40406.18,3191.181667,5,5,32,7,"Auto Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Auto Loan, and Mortgage Loan",,15.1467094,10.07,8,Standard,1461.771557,34.12759084,7 Years and 8 Months,Yes,127.4156814,116.3457069,High_spent_Small_value_payments,335.3567783,0,2.4546,0.5864,0.0914,-0.3701,1.0326 -0x5791,CUS_0x87a2,August,29,052-80-8415,Media_Manager,95099.7,7950.975,6,7,12,4,"Payday Loan, Student Loan, Student Loan, and Not Specified",19.950656,15,7.14,4,Standard,210.86,35.61147285,29 Years and 8 Months,Yes,217.3714876,150.5393882,High_spent_Large_value_payments,667.1866241,0,0.7787,2.1622,-0.0009,0.0977,1.0305 -0x579d,CUS_0x24e3,August,36,891-36-8798,Scientist,22410.53,,7,5,14,2,"Mortgage Loan, and Personal Loan",19.82457281,17,11.51,5,_,33.85,32.75030557,29 Years and 9 Months,Yes,31.8394143,87.80452374,Low_spent_Small_value_payments,377.5104786,0,2.1152,-0.056,-1.8608,1.6813,-0.0817 -0x57a9,CUS_0x275e,August,30,504-54-6793,Engineer,105860.04,8996.67,5,5,12.28836175,2,"Payday Loan, and Student Loan",,13,11.09,9,_,224.7,36.13005136,17 Years and 6 Months,Yes,103.0585668,1196.005793,Low_spent_Small_value_payments,310.5401008,0,0.2536,0.8554,-0.7049,1.2025,-1.0567 -0x57b5,CUS_0xb144,August,28,649-43-0997,Developer,133949.36,11262.44667,5,5,7.288361749,0,,0,1,0.38,5,Good,1269.610217,43.7896886,18 Years and 6 Months,No,0,606.6444349,High_spent_Medium_value_payments,1212.91723,0,-0.6097,0.1764,-0.3732,-0.8308,0.3691 -0x57c1,CUS_0xb0e,August,27,703-91-7899,Scientist,41160.86,3371.071667,6,9,19.06745738,3,"Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",42.23735637,24.841843,2.55,8,Bad,2438.610161,38.66623828,11 Years and 5 Months,Yes,76.21663042,291.8481481,Low_spent_Small_value_payments,232.3221002,0,-0.8451,-0.4773,1.3983,-1.5017,0.4765 -0x57cd,CUS_0x99a9,August,21,665-44-5354,Developer,27956.77,,5,5,20,2,"Mortgage Loan, and Not Specified",,7,15.9,8,Standard,249.39,36.38465026,29 Years and 2 Months,Yes,26.98874977,60.41285507,High_spent_Medium_value_payments,425.0714785,0,1.5279,-0.8899,0.3663,-0.1816,-1.3834 -0x57d9,CUS_0x6b94,August,18,586-98-5524,Manager,68197.72,5880.143333,10,6,24.06745738,100,"Personal Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Not Specified",38.81573884,24,14.87,13,Bad,4380.080954,29.77701692,3 Years and 6 Months,Yes,295.0360095,,High_spent_Medium_value_payments,342.0921626,0,-0.4068,0.7412,-0.9841,1.3839,-0.243 -0x57e5,CUS_0x360e,August,35,587-74-1160,Musician,7499.935,524.9945833,10,8,22.95700519,8,"Home Equity Loan, Home Equity Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Mortgage Loan",26.04129743,,16.48,7,Bad,5344.563426,39.29010386,3 Years and 9 Months,Yes,1370.776443,,Low_spent_Medium_value_payments,218.5591312,0,0.9857,-0.5494,0.6508,1.4613,1.5261 -0x57f1,CUS_0x13f8,August,19,124-54-4852,Mechanic,145858.88,11878.90667,5,4,6.288361749,4,"Auto Loan, Student Loan, Credit-Builder Loan, and Personal Loan",1.677031284,6,5.91,1,_,1321.93,38.08942148,30 Years and 4 Months,No,262.4006749,589.4328182,High_spent_Large_value_payments,995.9946346,0,0.7658,0.3174,0.6018,-1.0554,-0.8554 -0x57fd,CUS_0x7afc,August,40,639-06-8225,Lawyer,35417.27,,0,3,2.288361749,2,"Personal Loan, and Auto Loan",0,3,7.8,3,Good,364.57,37.69272516,26 Years and 6 Months,No,39.77036463,532.3081326,High_spent_Small_value_payments,386.8028804,0,-0.7546,2.1729,-1.3979,0.7039,0.1048 -0x5809,CUS_0x485f,August,36,579-09-9274,Teacher,69051.14,,4,7,9,2,"Mortgage Loan, and Home Equity Loan",8.372288429,8,13.2,8,Standard,1396.03,25.41353041,16 Years and 2 Months,Yes,107.1674917,335.3398711,High_spent_Small_value_payments,367.8188038,0,0.224,-0.6761,-0.8476,-0.5432,0.2717 -0x5815,CUS_0x5d8b,August,26,574-78-4992,Scientist,111456.21,9328.0175,1,7,6.288361749,2,"Debt Consolidation Loan, Auto Loan, and Payday Loan",,8,4.91,4,Good,278.6465582,35.4477594,30 Years and 4 Months,No,154.3973902,642.6182701,High_spent_Medium_value_payments,828.6214834,0,-0.1991,-0.0783,-0.545,0.0923,-0.255 -0x5821,CUS_0xa503,August,51,781-28-3569,Accountant,76353.4,6159.105586,0,6,4,1,Payday Loan,8.272629836,8,8.97,8,Good,752.66,35.77058286,30 Years and 11 Months,No,477.1370792,333.1248318,Low_spent_Medium_value_payments,568.1941699,0,0.528,-0.0425,-0.0296,-1.3946,0.2735 -0x582d,CUS_0x8c9c,August,44,863-98-6928,Accountant,19795.89,,3,3,12,1,Debt Consolidation Loan,19.91770356,13,14.71,2,Standard,539.1229423,38.63857424,27 Years and 3 Months,Yes,159.6093949,48.05103224,High_spent_Small_value_payments,341.9599886,0,0.4613,1.1068,-0.8104,0.6017,0.0469 -0x5839,CUS_0x15a4,August,26,208-96-4573,Engineer,15652.99,1318.415833,1,5,4.288361749,0,Credit-Builder Loan,3.500305984,5,5.86,2,Good,32.71729302,29.65814788,30 Years and 5 Months,No,10.82246901,469.2726808,High_spent_Small_value_payments,336.2831443,0,0.2284,0.9476,1.2886,-0.4574,0.5189 -0x5845,CUS_0x4e8c,August,19,727-92-1514,Developer,13754.5,,4,3,5,6,"Student Loan, Not Specified, Personal Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",,,16.85,8,_,39.59,35.65706019,7 Years and 2 Months,Yes,61.01232179,89.19624925,Low_spent_Small_value_payments,265.9122623,0,1.2145,0.1814,-0.6498,1.0239,0.0528 -0x5851,CUS_0x4333,August,26,#F%$D@*&8,Developer,116809,,3,988,2.288361749,2,"Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",,4,6.73,3,Good,1202.069499,34.70263569,18 Years and 10 Months,No,191.6757055,782.8048426,High_spent_Medium_value_payments,725.332422,0,0.4521,-0.9373,1.7063,0.1881,-0.9832 -0x585d,CUS_0x88f6,August,29,370-16-9207,Teacher,8949.695,576.8079167,8,9,19.06745738,9,"Auto Loan, Credit-Builder Loan, Payday Loan, Student Loan, Not Specified, Personal Loan, Personal Loan, Personal Loan, and Auto Loan",30.33420726,21,8.47,,Bad,4537.340954,28.34386147,,Yes,37.09661426,,!@9#%8,241.673522,0,-0.0176,-0.7488,1.3017,0.1685,0.142 -0x5869,CUS_0x21af,August,42,461-23-8801,Musician,87027.66,7494.305,1,6,5,3,"Personal Loan, Payday Loan, and Home Equity Loan",,9.329754894,5.96,2,Good,996.6121492,40.26243233,17 Years and 9 Months,No,139.9342826,308.8380295,Low_spent_Medium_value_payments,580.6581879,0,0.0801,-1.4912,0.5719,-0.3513,-1.1949 -0x5875,CUS_0x2a57,August,20,274-80-1161,Engineer,9592.415,,3,4,10.06745738,3,"Not Specified, Home Equity Loan, and Payday Loan",29.25399535,19,,4,Good,977.9609543,39.11585583,24 Years and 8 Months,No,74.70271356,11.21879731,High_spent_Small_value_payments,259.9220296,0,-1.3828,-0.0412,-0.4238,2.051,0.3308 -0x5881,CUS_0x298e,August,35,196-66-1954,Musician,62636.07,5099.6725,5,6,19,3,"Payday Loan, Credit-Builder Loan, and Mortgage Loan",25.89514357,18,17.52,3,_,1050.84,31.00386073,28 Years and 5 Months,NM,98.02987292,64.25648807,High_spent_Large_value_payments,587.680889,0,0.6137,-1.7503,0.658,-1.2105,-0.2415 -0x588d,CUS_0x1324,August,22,477-00-3913,Mechanic,19858.97,,10,6,25.06745738,3,"Mortgage Loan, Personal Loan, and Home Equity Loan",,26.39214055,1.33,8,Bad,2135.155312,32.32670957,13 Years and 4 Months,Yes,6821,38.63901939,High_spent_Medium_value_payments,303.2477688,0,-0.7047,0.8256,0.0207,0.1338,0.0794 -0x5899,CUS_0x5923,August,33,712-40-3142,_______,58995.8,4886.316667,6,6,18,100,Debt Consolidation Loan,26.99611439,19,9.13,2,_,974.73,26.06307112,33 Years and 6 Months,Yes,41.64582635,,High_spent_Small_value_payments,410.3859652,0,-1.3747,-0.3834,-0.5677,0.465,-1.0825 -0x58a5,CUS_0x6f9d,August,37,634-90-8823,Architect,65430,5539.5,4,553,18.88954781,6,"Student Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Home Equity Loan",17.56704299,15,17.52,12,_,1380.18,26.7352891,13 Years and 4 Months,Yes,1520.282715,84.38865184,High_spent_Medium_value_payments,504.9485521,0,-1.055,1.6512,-1.1268,0.6486,-0.5833 -0x58b1,CUS_0x382d,August,42,676-15-4455,_______,70014.48,6114.54,6,3,17.28836175,32,"Not Specified, Auto Loan, Auto Loan, and Not Specified",,2753,11.25,4,Standard,876.04,37.36183647,24 Years and 6 Months,Yes,205.5930674,,Low_spent_Medium_value_payments,316.8058529,0,0.8738,1.1928,0.7349,1.5511,1.328 -0x58bd,CUS_0xa7d7,August,52,095-14-3331,Mechanic,29789.87,,2,3,4,0,,9.639066609,8,5.12,5,_,777.23,26.77570137,24 Years and 9 Months,No,0,303.8124599,Low_spent_Small_value_payments,214.9364567,0,-1.3102,1.5374,0.5289,0.4216,-0.0592 -0x58c9,CUS_0x11c6,August,49,170-12-4663,Manager,16523.745,1516.97875,1,4,1,4,"Student Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",7.357017312,8,10.06,4,Good,455.49,31.79977235,25 Years and 11 Months,No,52.21616909,54.26625355,Low_spent_Medium_value_payments,325.2154524,0,-0.5731,0.9754,-1.1957,0.4886,0.1007 -0x58d5,CUS_0x7cea,August,80,656-90-5495,Media_Manager,30979.28,,331,3,22,7,"Personal Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Payday Loan, Personal Loan, and Home Equity Loan",24.42681873,19,9.75,5,_,1317.34,24.42525761,14 Years and 10 Months,NM,177.3730333,,Low_spent_Large_value_payments,173.8060018,0,0.877,1.2121,-0.1827,2.095,-1.0666 -0x58e1,CUS_0x8cd3,August,21,928-21-7408,Manager,105556.38,,5,5,10,0,,13.28246448,9,15.89,4,_,770.97,42.89247007,17 Years and 5 Months,Yes,0,119.1723936,High_spent_Large_value_payments,1017.064106,0,-0.0414,-2.0349,-0.5323,-2.2446,0.3236 -0x58ed,CUS_0x689e,August,47,099-47-9822,Developer,41983.29,3389.6075,2,3,4,3,"Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",20.11678213,,10.45,7,Good,1171.857011,29.325111,25 Years and 4 Months,No,100.0228851,96.60582224,High_spent_Medium_value_payments,392.3320427,0,-1.0984,0.2434,-0.2248,0.7128,-1.7696 -0x58f9,CUS_0x4cd5,August,37,449-60-2014,Writer,21313.765,,0,3,1626,4,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Not Specified",4.225534916,6,14.96,1,Good,730.84,26.22900086,24 Years and 0 Months,No,69.39214699,,Low_spent_Medium_value_payments,219.3736571,0,0.4789,-1.1862,-0.9825,-0.2795,-0.9994 -0x5905,CUS_0x6807,August,37,147-59-2959,Entrepreneur,73376.94,5961.745,5,5,9.288361749,2,"Home Equity Loan, Personal Loan, and Not Specified",0,0,7.51,6,_,541.7853527,29.97077832,23 Years and 0 Months,No,178.4709645,722.8083289,!@9#%8,384.8326676,0,0.754,0.3678,0.7972,0.941,-1.1179 -0x5911,CUS_0x79ce,August,39,957-10-9944,Developer,20226.28,1617.523333,8,6,14,2,"Personal Loan, and Credit-Builder Loan",14.25783391,9,8.79,13,Standard,767.58,31.71310011,9 Years and 3 Months,Yes,26.83134355,116.8418537,!@9#%8,308.079136,0,0.9132,-0.3578,-1.8621,0.8387,1.3259 -0x591d,CUS_0xbba7,August,23,795-84-0084,Manager,39992.36,3127.545443,6,3,16,7,"Credit-Builder Loan, Auto Loan, Personal Loan, Auto Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",16.01656305,,17.06,11,Standard,616.4342386,34.32550612,10 Years and 2 Months,Yes,42175,384.3601794,Low_spent_Medium_value_payments,126.9932559,0,1.3502,-1.7272,-0.2487,0.6936,1.1512 -0x5929,CUS_0x3f41,August,29,561-90-5717,Entrepreneur,63030.88,,10,7,31,6,"Personal Loan, Home Equity Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",18.71892332,13,10.28,11,Standard,1767.61,36.01875355,14 Years and 11 Months,Yes,288.0041711,79.95594192,High_spent_Medium_value_payments,435.2972204,0,0.6,2.3732,-1.2846,-1.0477,0.0008 -0x5935,CUS_0x2c90,August,22,347-87-6133,Scientist,54695.22,4754.935,10,8,25.95700519,7,"Home Equity Loan, Auto Loan, Student Loan, Payday Loan, Not Specified, Home Equity Loan, and Mortgage Loan",31.95347818,14.67193716,8.88,13,_,3140.400189,37.05107529,17 Years and 4 Months,Yes,1523.355468,183.9225635,High_spent_Medium_value_payments,297.1650991,0,1.581,-0.2799,0.7434,0.1258,0.4391 -0x5941,CUS_0x8ae0,August,28,957-46-7225,Engineer,41415.52,3573.293333,6,5,32.06745738,5,"Student Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",29.86770175,20.1875174,15.5,15,Standard,2631.603664,31.93971448,19 Years and 8 Months,Yes,109.6164901,10000,!@9#%8,386.0261169,0,1.0141,0.4232,0.1132,-0.1803,-0.3874 -0x594d,CUS_0x6079,August,25,420-25-3263,Writer,7304.055,425.5501786,10,9,34.06745738,3,"Student Loan, Personal Loan, and Mortgage Loan",,22.71060292,17.81,6,Bad,2489.873366,25.49860048,7 Years and 0 Months,Yes,43.85881325,59.83438583,Low_spent_Small_value_payments,238.5747093,0,0.0953,2.1156,0.8693,2.1893,-0.3483 -0x5959,CUS_0xab60,August,31,296-42-2708,Journalist,36779.34,,6,5,20,3,"Home Equity Loan, Debt Consolidation Loan, and Not Specified",20.63510976,14,11.35,12,_,1215.19,26.69842603,10 Years and 4 Months,NM,47.47477413,184.6537633,Low_spent_Medium_value_payments,332.6659626,0,-0.0141,0.9884,-0.2678,0.0073,-0.038 -0x5965,CUS_0x26c6,August,29,446-03-5622,Architect,30404.4,,8,8,16.88954781,6,"Home Equity Loan, Personal Loan, Student Loan, Student Loan, Home Equity Loan, and Not Specified",35.68745962,25.29494254,8.69,10,Bad,1883.201115,25.88458927,9 Years and 11 Months,Yes,1436.516297,183.4735358,!@9#%8,256.1500861,0,-0.1028,0.1046,1.6374,0.7155,-0.7775 -0x5971,CUS_0x34b1,August,26,349-86-2748,Journalist,60185.82,,8,968,14.88954781,6,"Not Specified, Payday Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",10.36254888,10,14.35,6,Standard,1089,26.18070007,,NM,1532.076788,278.817818,Low_spent_Small_value_payments,261.0238127,0,-1.14,0.6069,-1.0894,-1.2031,-2.4984 -0x597d,CUS_0x3ffe,August,31,289-92-0697,Lawyer,90411.9,7394.325,7,3,16,1,Student Loan,,11,-3.03,5,Standard,472.21,31.2983933,30 Years and 4 Months,Yes,72.17909178,,Low_spent_Large_value_payments,330.7043224,0,1.6836,1.9019,-0.1245,-0.4834,-0.7092 -0x5989,CUS_0x21c3,August,80,612-00-1960,Manager,73095.76,,8,10,16,5,"Student Loan, Personal Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",47.65521207,28.01173632,25.06,13,Bad,4105.209659,32.91116383,5 Years and 2 Months,Yes,211.0664122,166.7317139,High_spent_Medium_value_payments,479.9332072,0,1.467,-0.0766,-0.9258,-0.019,-0.1462 -0x5995,CUS_0xa995,August,48,241-86-3282,Engineer,77480.73,6325.7275,4,6,4,2,"Student Loan, and Home Equity Loan",,19,9.28,8,Good,1311.24,39.53470251,29 Years and 3 Months,No,3871,127.7926808,High_spent_Large_value_payments,617.5945022,0,-1.2072,-0.5027,-0.6519,-0.2986,0.8694 -0x59a1,CUS_0xa230,August,19,921-03-1595,Developer,76300.92,6416.41,4,6,17,5,"Debt Consolidation Loan, Personal Loan, Payday Loan, Payday Loan, and Personal Loan",21.83463215,17,17.55,13,_,275.51,23.69179465,18 Years and 2 Months,Yes,291.465246,55.89429444,!@9#%8,534.2814596,0,0.546,-0.1042,-0.4096,1.103,1.2051 -0x59ad,CUS_0x41a8,August,23,#F%$D@*&8,Musician,91570.71,,3,7,20,3,"Not Specified, Auto Loan, and Debt Consolidation Loan",13.84987867,10,8,6,Standard,448.59,36.73603982,12 Years and 3 Months,Yes,126.951702,121.1049078,High_spent_Large_value_payments,776.6326402,0,-1.7456,1.3802,0.8688,0.0837,0.2524 -0x59b9,CUS_0x2de1,August,30,139-40-9715,Media_Manager,44120.8,,2,3,12,3,"Personal Loan, Student Loan, and Payday Loan",0,0,0.46,2,Good,15.47,38.93729386,27 Years and 11 Months,No,87.40729091,81.25544878,!@9#%8,438.2105936,0,0.6903,-0.2023,-2.0556,0.5369,1.079 -0x59c5,CUS_0x568f,August,42,653-80-0995,_______,71695.68,5734.64,3,6,18.28836175,2,"Payday Loan, and Not Specified",0.96962606,5,16.57,3,Standard,529.91,28.03052767,24 Years and 6 Months,Yes,94.6334265,,Low_spent_Small_value_payments,33.55636129,0,0.0261,-1.3155,-0.3598,-1.1015,0.5421 -0x59d1,CUS_0xc63a,August,25,801-06-2006,Accountant,18438.875,,0,4,10,1,Not Specified,12.82923661,12.67967157,5.08,3,Good,491.0322112,23.75526368,32 Years and 0 Months,NM,205.1602535,103.3939914,Low_spent_Small_value_payments,317.817271,0,0.2353,-0.9155,-0.283,0.3142,-2.1333 -0x59dd,CUS_0x16f8,August,25,107-46-5762,Architect,66681.8,5278.816667,2,1,10.28836175,0,,,12,3.55,2,Good,679.2,28.84707084,25 Years and 11 Months,No,0,497.5679339,High_spent_Medium_value_payments,700.2511938,0,-1.1355,1.4543,-1.6339,-0.151,0.2538 -0x59e9,CUS_0x4f8f,August,32,349-33-5871,Entrepreneur,20341.87,1505.155833,8,9,35.06745738,7,"Payday Loan, Auto Loan, Personal Loan, Home Equity Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",21.96257248,,20.74,10,Bad,4229.750954,25.89271705,8 Years and 6 Months,Yes,75.54384988,66.86949654,Low_spent_Small_value_payments,271.381949,0,0.5735,0.0079,-0.1808,0.0439,-0.2095 -0x59f5,CUS_0x56c3,August,19,411-36-2777,Engineer,29198.56,,7,5,18,4,"Not Specified, Not Specified, Auto Loan, and Credit-Builder Loan",,28.67216568,9.61,11,_,1528.817199,38.11632485,20 Years and 6 Months,Yes,58.46646189,105.7133843,Low_spent_Large_value_payments,339.8414871,0,0.4571,-0.128,0.2548,-1.0995,1.3109 -0x5a01,CUS_0x3ff5,August,52,436-17-6958,Musician,87636.03,6291.992443,4,1,3.288361749,2,"Payday Loan, and Debt Consolidation Loan",0,2,3.38,3,Good,202.96,39.07930167,30 Years and 5 Months,No,1054.845874,,High_spent_Large_value_payments,823.9350801,0,0.1429,1.5719,0.9509,-0.3819,1.2005 -0x5a0d,CUS_0x5360,August,20,025-22-7299,Teacher,17461.98,1642.165,6,5,1966.067457,2,"Personal Loan, and Credit-Builder Loan",,20.18674385,14.77,11,Standard,1759.849581,35.56620227,18 Years and 11 Months,Yes,28.09484906,216.4902304,Low_spent_Small_value_payments,182.9111326,0,-0.1056,1.3901,-0.7139,0.2335,-0.731 -0x5a19,CUS_0x30c5,August,22,720-16-9648,Media_Manager,19170.45,1510.5375,8,9,15.88954781,8,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Auto Loan, Home Equity Loan, and Student Loan",,26.20225008,18.93,7,Bad,4973.877814,39.12135125,9 Years and 6 Months,Yes,1437.906669,46.35499955,High_spent_Medium_value_payments,222.4619997,0,-0.4389,-1.4448,0.5637,0.8721,-0.5802 -0x5a25,CUS_0xbb95,August,20,342-02-2232,Engineer,61600.83,5313.4025,7,7,16,3,"Home Equity Loan, Personal Loan, and Home Equity Loan",15.91723338,14,18.46,5,_,2062.09,39.93600695,19 Years and 4 Months,Yes,125.5050217,580.7970227,Low_spent_Small_value_payments,115.0382055,0,-0.8411,0.0224,-0.7035,-1.7042,-0.4899 -0x5a31,CUS_0x4d6a,August,30,946-77-8953,Architect,35844.66,2743.055,7,6,17,4,"Payday Loan, Payday Loan, Student Loan, and Student Loan",,1718,12.07,5,Standard,62.16,36.30788141,18 Years and 0 Months,Yes,101.1723271,130.3823946,Low_spent_Large_value_payments,312.7507783,0,1.0297,0.2252,0.6891,-1.9913,-1.3005 -0x5a3d,CUS_0x6cb3,August,43,261-43-4112,Entrepreneur,16069.44,1311.12,3,4,20,2,"Auto Loan, and Debt Consolidation Loan",,12,16.57,9,Standard,2550.25,36.1920489,18 Years and 8 Months,Yes,21.93220754,40.38478979,High_spent_Small_value_payments,328.7950027,0,-0.5905,0.6458,0.1339,1.7403,0.8679 -0x5a49,CUS_0x510c,August,29,917-89-7943,Musician,21414.43,,5,2,5,3,"Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,6,10.58,4,Good,39.47,23.62152518,26 Years and 2 Months,No,30.21422897,,Low_spent_Large_value_payments,381.1140154,0,0.184,-1.0133,0.8468,-0.9591,0.2394 -0x5a55,CUS_0x2174,August,36,061-24-0681,Manager,94934.94,8039.245,2,5,3,4,"Student Loan, Auto Loan, Student Loan, and Home Equity Loan",11.31330742,11,6.83,0,Good,975.21,30.47955434,23 Years and 4 Months,No,289.841054,,Low_spent_Large_value_payments,306.3845199,0,-0.0973,0.918,-1.0095,0.5552,1.0352 -0x5a61,CUS_0x4df2,August,20,#F%$D@*&8,Entrepreneur,103755.87,,8,4,12,7,"Personal Loan, Not Specified, Mortgage Loan, Auto Loan, Payday Loan, Payday Loan, and Credit-Builder Loan",90,1014,7.27,5,Standard,1013.57,30.95490019,9 Years and 3 Months,Yes,406.0769364,,High_spent_Medium_value_payments,516.0381101,0,-0.0049,0.5558,0.6346,-1.9012,2.1021 -0x5a6d,CUS_0xb508,August,26,106-55-1522,Entrepreneur,16819.98,,6,7,33,100,"Auto Loan, Student Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",39.09225249,24.34784897,-5.93,11,Bad,3363.607465,36.08185383,5 Years and 6 Months,Yes,37.67052211,47.5063206,High_spent_Medium_value_payments,332.8896573,0,-0.7964,-1.9249,-0.0726,0.8447,-1.3422 -0x5a79,CUS_0x96d9,August,18,772-15-1692,Entrepreneur,57588.9,,3,4,5,3,"Personal Loan, Credit-Builder Loan, and Student Loan",90,3260,3.07,1,Standard,288.34,38.5164386,32 Years and 8 Months,No,115.5773715,288.5655417,Low_spent_Medium_value_payments,385.6645868,0,2.1456,1.0305,-0.7101,0.7945,-0.0469 -0x5a85,CUS_0x7993,August,24,#F%$D@*&8,Media_Manager,61695.68,5230.306667,1,4,1.288361749,2,"Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",0,1,5.77,8,Good,654.6,31.320144,33 Years and 6 Months,No,101.1826257,513.5399506,High_spent_Large_value_payments,568.2455515,0,-0.221,0.1571,-0.6369,-0.8137,-1.3797 -0x5a91,CUS_0x709a,August,33,205-66-6851,Doctor,137714.36,,5,4,10,4,"Personal Loan, Personal Loan, Not Specified, and Personal Loan",13.76447527,9,0.72,2,Good,1354.15,31.49896538,22 Years and 9 Months,No,315.8970408,76.00775272,High_spent_Large_value_payments,1009.014873,0,1.0652,-0.3296,0.6602,1.8094,-0.4282 -0x5a9d,CUS_0x207a,August,25,510-06-5848,Media_Manager,22251.84,1799.32,4,2,6,3,"Payday Loan, Home Equity Loan, and Mortgage Loan",,7,11.6,1,Good,284.9662341,38.20128326,21 Years and 8 Months,No,46.01980317,69.60269187,High_spent_Medium_value_payments,322.5710157,0,-0.4214,0.9483,-0.1932,-0.41,-1.421 -0x5aa9,CUS_0xac23,August,26,738-28-1028,Accountant,78417.44,6472.286396,8,10,21,5,"Not Specified, Credit-Builder Loan, Mortgage Loan, Personal Loan, and Personal Loan",22.56170914,15.71459911,19.35,12,Standard,1886.763158,31.46232851,,Yes,514.4630553,91.29018667,High_spent_Medium_value_payments,622.025695,0,-1.5213,-0.0144,-0.3473,0.2583,-0.7385 -0x5ab5,CUS_0x8232,August,36,146-07-7618,Developer,9394.66,593.8883333,7,6,34,100,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Home Equity Loan",23.697299,18,4.58,10,Bad,1686.78,37.72754892,7 Years and 0 Months,Yes,33.21948646,64.95115279,Low_spent_Small_value_payments,251.2181941,0,0.6869,0.2932,-0.3912,0.4657,-0.1316 -0x5ac1,CUS_0xa350,August,41,421-48-0603,Scientist,33878.15,,4,2,8,0,,7.247661267,10,0.64,2,Good,1088.33647,22.87516623,,No,0,185.4328204,Low_spent_Large_value_payments,405.6509064,0,0.7206,-0.2878,0.6492,0.4668,0.0466 -0x5acd,CUS_0x7b66,August,22,#F%$D@*&8,Writer,57683.19,,8,10,16.88954781,6,"Debt Consolidation Loan, Student Loan, Not Specified, Personal Loan, Student Loan, and Student Loan",37.12046844,21.01293596,3.31,12,Bad,2384.805585,28.86267625,13 Years and 0 Months,Yes,1573.565114,190.4032874,High_spent_Medium_value_payments,264.6947671,0,0.0198,1.2271,1.1837,0.9576,-1.0666 -0x5ad9,CUS_0x2c74,August,33,804-50-3463,Scientist,9110.175,,7,7,34.06745738,6,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Auto Loan, Payday Loan, and Home Equity Loan",47.29226178,28.06385523,26.8,12,Bad,2224.769472,39.61662762,19 Years and 5 Months,Yes,39.01496543,36.85077366,Low_spent_Small_value_payments,262.732098,0,-0.7901,0.4216,-0.5676,1.0774,-1.2468 -0x5ae5,CUS_0xbb94,August,38,515-44-9854,Manager,43644.96,3551.08,6,8,26.06745738,5,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",37.52391625,24.75786848,8.12,11,Bad,2618.834026,37.05083222,10 Years and 6 Months,Yes,133.047023,176.0385142,Low_spent_Large_value_payments,289.3021748,0,0.5332,-0.3494,-0.8132,-0.3243,-0.1181 -0x5af1,CUS_0x5495,August,28,350-77-1604,Writer,73339.92,5916.66,4,4,17,3,"Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",19.11088116,12,4.22,3,Standard,1444.26,35.5867825,20 Years and 10 Months,No,152.5862814,339.9668285,High_spent_Small_value_payments,359.1128901,0,0.3409,-1.2981,-1.6506,-1.48,0.2353 -0x5afd,CUS_0x990e,August,22,438-34-4439,Accountant,35260.69,2839.390833,0,6,4.288361749,4,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",0,0,-1.16,2,Good,51.5,29.70284715,29 Years and 10 Months,No,91.42912178,,Low_spent_Large_value_payments,277.097804,0,0.2439,0.4342,0.9947,-0.1728,1.0001 -0x5b09,CUS_0x91ac,August,43,290-99-0089,_______,64666.48,5144.873333,7,7,28.06745738,6,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, Personal Loan, Mortgage Loan, and Not Specified",,29.630825,19.31,12,Bad,4211.508029,36.38554084,1 Years and 9 Months,Yes,257.1831074,66.83487718,High_spent_Large_value_payments,403.7490608,0,-1.2516,2.0502,-0.2493,-0.4915,-2.0174 -0x5b15,CUS_0x9934,August,43,850-08-6279,Doctor,120450.32,9985.526667,2,3,11,4,"Personal Loan, Payday Loan, Not Specified, and Home Equity Loan",0,1,10.28,5,Good,442.5234889,26.50849691,25 Years and 4 Months,No,387.8026801,128.905526,High_spent_Large_value_payments,741.0988882,0,-0.703,0.3428,-0.3475,1.6815,-0.0547 -0x5b21,CUS_0x48ae,August,43,498-90-5296,Writer,144037.08,12222.09,6,6,9,2,"Debt Consolidation Loan, and Credit-Builder Loan",15.64605893,10,10.92,3,Standard,696.67,38.42880288,29 Years and 5 Months,No,74503,,High_spent_Medium_value_payments,1048.049687,0,1.5402,1.4668,-0.8934,-0.2005,-0.7928 -0x5b2d,CUS_0x3966,August,27,977-16-6058,Journalist,47270.22,,7,9,29,4,"Not Specified, Auto Loan, Student Loan, and Home Equity Loan",,19.14715387,18.53,8,Bad,2120.707983,40.98788182,18 Years and 6 Months,Yes,96.67058118,101.6259823,High_spent_Small_value_payments,473.9219365,0,-0.4537,0.6319,-0.3961,0.1083,1.1367 -0x5b39,CUS_0x25a4,August,31,199-39-7712,Entrepreneur,63761.19,5143.4325,4,3,1,2,"Credit-Builder Loan, and Home Equity Loan",25.21448052,19,10.29,3,_,1448.2,35.75768142,22 Years and 11 Months,NM,100.8995845,123.8244767,High_spent_Small_value_payments,549.6191888,0,0.2547,1.0108,0.4449,-0.2382,-0.0291 -0x5b45,CUS_0xb40,August,32,#F%$D@*&8,Engineer,60348.92,5245.076667,6,6,13,699,"Auto Loan, and Home Equity Loan",,22,8.53,1,Standard,1134.8,37.65413542,16 Years and 0 Months,Yes,84.78038395,185.3483482,Low_spent_Large_value_payments,524.3789345,0,1.1169,-0.7442,1.2714,-0.2229,1.4654 -0x5b51,CUS_0xbc79,August,32,180-19-1991,_______,65714.32,5202.193333,549,6,28,4,"Student Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",23.5014266,13.54181875,9.73,12,Standard,1872.58533,24.6544522,9 Years and 8 Months,Yes,183.69058,44.55228922,High_spent_Large_value_payments,531.9764641,0,0.6662,-1.2159,0.1223,0.7367,-0.9004 -0x5b5d,CUS_0x9534,August,54,086-97-5528,Mechanic,133394.48,10851.20667,5,4,10,4,"Not Specified, Not Specified, Mortgage Loan, and Home Equity Loan",8.640318763,11,4.07,2,Good,948.79,32.4083243,15 Years and 10 Months,No,429.4343556,802.8373688,Low_spent_Small_value_payments,142.8489423,0,0.8033,0.2962,-0.128,-0.1269,0.4956 -0x5b69,CUS_0x4fe9,August,25,296-37-3283,Doctor,128066.44,10394.20333,4,6,6,4,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",6.544373665,9.495003183,5.38,2,Good,1093.878385,40.45951441,,No,366.3974663,242.5892817,High_spent_Large_value_payments,670.4335854,0,-0.4313,1.4631,-1.5679,0.9206,0.2866 -0x5b75,CUS_0x7d1e,August,41,003-51-5141,Scientist,60182.7,4800.225,6,7,5,7,"Student Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Not Specified, Not Specified, and Not Specified",,10.85178351,17.86,6,Standard,1896.105913,35.2906324,19 Years and 3 Months,Yes,265.4005523,,High_spent_Small_value_payments,178.3137894,0,-0.1718,0.6829,0.2819,-1.2202,-0.4529 -0x5b81,CUS_0xb2f7,August,38,#F%$D@*&8,Writer,102212.37,8470.6975,7,5,16,5,"Personal Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",21.65996026,15,7.97,11,Standard,657.3,34.76582047,18 Years and 9 Months,Yes,257.5915551,288.391703,High_spent_Medium_value_payments,551.0864918,0,0.0335,0.3875,0.1286,0.5785,-0.7001 -0x5b8d,CUS_0x360c,August,54,376-91-9157,Architect,12241.57,,6,6,12,3,"Home Equity Loan, Credit-Builder Loan, and Not Specified",29.07875029,19,3.14,1,Standard,89.62,34.5210057,23 Years and 10 Months,NM,21.64070671,112.7531926,Low_spent_Small_value_payments,280.419184,0,-0.3059,-1.5644,-0.8991,0.5093,-0.2478 -0x5b99,CUS_0xaf95,August,39,917-87-3520,Accountant,10418.045,,9,6,18,100,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",26.1956477,17,16.66,14,Bad,3599.97,26.75100644,9 Years and 2 Months,Yes,27.59459097,30.09308313,Low_spent_Medium_value_payments,321.7293676,0,0.4859,1.6956,1.3924,-0.4579,-1.3033 -0x5ba5,CUS_0x8c6d,August,52,545-35-1874,Scientist,41122.69,3717.890833,1,3,1,1,Auto Loan,4.939576803,8,10.67,4,_,1103.48,30.4980191,20 Years and 4 Months,No,22.11461255,65.37174659,High_spent_Medium_value_payments,534.3027242,0,-0.2131,-0.0883,-1.3054,-0.9532,2.2019 -0x5bb1,CUS_0x512d,August,18,291-73-4587,Engineer,83075.64,7015.97,6,4,16,1,Not Specified,17.56170022,12,18.49,5,Standard,1466.97,30.76981353,24 Years and 0 Months,Yes,56.76375399,183.7187661,Low_spent_Large_value_payments,731.1144799,0,0.4649,1.5033,-0.7849,1.647,1.5233 -0x5bbd,CUS_0x7ea5,August,33,990-75-0143,Mechanic,81402.48,6802.54,7,5,34,9,"Personal Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Not Specified",47.58358636,25.36449303,5.55,8,Bad,2794.694331,34.63493863,16 Years and 0 Months,Yes,436.4013434,313.9798878,!@9#%8,189.8727687,0,0.1825,-0.9233,1.4525,-0.2017,-0.0131 -0x5bc9,CUS_0x7b2b,August,38,337-58-4855,Architect,79631.28,,6,7,23,6,"Student Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",18.65113192,,7.37,11,Bad,3091.815359,37.47218169,15 Years and 9 Months,Yes,289.471213,195.6232134,Low_spent_Medium_value_payments,440.8995736,0,-0.201,-0.1778,-0.8086,0.9037,0.2134 -0x5bd5,CUS_0x8c8d,August,34,#F%$D@*&8,Teacher,18827.29,,9,6,33.06745738,3,"Personal Loan, Personal Loan, and Personal Loan",,27.65202067,12.54,10,_,1727.952814,32.3761924,19 Years and 8 Months,Yes,43.98119071,37.58746746,High_spent_Large_value_payments,280.2051372,0,-1.1247,1.1119,-0.1604,0.105,-2.5502 -0x5be1,CUS_0x8266,August,43,049-32-6597,Accountant,68266.3,,7,4,10,3,"Payday Loan, Home Equity Loan, and Credit-Builder Loan",12.23087185,9,8.32,2,Good,1025.571741,38.28172528,30 Years and 3 Months,No,124.0533897,137.0403774,High_spent_Medium_value_payments,549.5215937,0,1.4165,0.1974,-0.0905,-1.0597,-0.0082 -0x5bed,CUS_0x5f3b,August,20,445-12-2586,Teacher,56343.8,,6,3,5,0,,14.96149308,,7.24,1,Standard,1209.53,27.25428414,29 Years and 5 Months,No,0,,!@9#%8,531.5802137,0,-0.6348,-0.606,2.5209,-0.6056,0.248 -0x5bf9,CUS_0x991f,August,25,733-09-1512,Architect,118462.56,9702.88,2,399,1.288361749,2,"Mortgage Loan, and Payday Loan",5.668569717,8,3.81,5,Good,1290.468913,26.83130393,,No,128.9411294,1202.948446,Low_spent_Medium_value_payments,449.7747119,0,1.3556,-1.7276,-1.1276,-1.0049,-1.4832 -0x5c05,CUS_0x47a6,August,35,887-38-0825,Lawyer,30132.24,2782.02,7,3,10,0,,,21,9.64,7,Standard,162.58,23.83804151,7 Years and 11 Months,Yes,0,209.6056269,Low_spent_Large_value_payments,338.5963731,0,-0.4121,-0.7331,-0.6674,0.7492,0.378 -0x5c11,CUS_0x5454,August,35,911-96-3945,Musician,60788.82,,8,7,14,0,,19.58915017,11.61411805,0.96,6,Standard,1590.6092,35.93100503,17 Years and 3 Months,No,0,184.2970592,Low_spent_Small_value_payments,590.8764408,0,0.738,-0.3691,0.7146,-0.6414,-1.1972 -0x5c1d,CUS_0xa421,August,29,831-33-6843,Media_Manager,17926.7,1468.891667,6,3,870,2,"Payday Loan, and Auto Loan",,12.68108098,19.6,6,Standard,1279.529516,26.02365818,13 Years and 8 Months,Yes,20.29936912,64.06271635,High_spent_Small_value_payments,322.5270812,0,-0.277,-2.0379,1.8322,-1.775,0.6548 -0x5c29,CUS_0x753c,August,46,614-35-3519,Mechanic,34081.78,,6,6,30,8,"Payday Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Student Loan, Credit-Builder Loan, and Student Loan",33.95439243,16,25.91,,Bad,2612.33,27.12404367,8 Years and 0 Months,Yes,380.3924434,308.673147,Low_spent_Small_value_payments,62.159882,0,1.0282,1.1531,1.1176,0.4095,0.9725 -0x5c35,CUS_0x4ec9,August,31,912-23-3911,Engineer,36993.43,3348.785833,0,4,2,2,"Auto Loan, and Student Loan",4.922510409,5,1.9,2,Good,1357.79,28.09857991,,No,37.64206805,125.2045036,!@9#%8,452.0320117,0,-0.2217,-0.8942,0.0174,-2.5322,-1.1264 -0x5c41,CUS_0x8a8c,August,32,520-12-7956,Doctor,14219.02,1126.918333,10,5,23,7,"Auto Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, and Personal Loan",23.59945722,14,25.86,10,Bad,3628.5,22.22269941,3 Years and 4 Months,Yes,76.4860082,,Low_spent_Small_value_payments,216.1876163,0,-0.2938,1.8108,0.1507,-0.0663,1.9069 -0x5c4d,CUS_0x122f,August,80,179-85-5358,Media_Manager,18231.52,,6,1375,16.06745738,9,"Student Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Auto Loan, Auto Loan, and Payday Loan",32.36083574,19.22974251,1.83,7,_,1698.107553,35.02633209,15 Years and 5 Months,Yes,86.60864701,102.2605664,Low_spent_Small_value_payments,219.239832,0,-0.2284,0.7597,0.9131,-0.0812,-0.7418 -0x5c59,CUS_0xbab0,August,39,758-36-8574,Scientist,119312.08,9538.088084,5,5,17,4,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",,15,2.27,1,_,1042.524547,37.14165007,19 Years and 3 Months,Yes,800.0075651,744.806177,High_spent_Small_value_payments,279.9432637,0,0.695,0.129,-0.0768,1.6679,0.2856 -0x5c65,CUS_0xe0f,August,42,349-57-1872,Lawyer,32148.76,2571.063333,8,5,34.06745738,7,"Auto Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",,21.70717735,9.22,11,Standard,3287.266247,31.1201966,17 Years and 10 Months,Yes,165.1114159,,!@9#%8,135.3948584,0,0.2744,1.6828,0.1453,-0.3193,-0.6429 -0x5c71,CUS_0x1cc3,August,53,436-19-3706,Mechanic,154242.48,,1,6,11,3,"Not Specified, Student Loan, and Personal Loan",0,3.471903857,8.2,5,Good,1592.511254,31.45284674,,No,201.5609788,,Low_spent_Small_value_payments,623.4495308,0,1.1923,-0.2485,1.1729,0.6673,0.4068 -0x5c7d,CUS_0xb014,August,28,327-02-8791,_______,83062.28,7162.856667,7,9,33,5,"Student Loan, Student Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",,17,6.52,12,Bad,2173.72,36.39141326,17 Years and 4 Months,Yes,176.3191413,150.5834498,High_spent_Small_value_payments,649.3830756,0,-0.0051,0.0754,0.9497,0.4079,-1.4167 -0x5c89,CUS_0x6cc6,August,39,857-13-7259,Media_Manager,59477,5231.416667,4,7,5,3,"Mortgage Loan, Home Equity Loan, and Student Loan",21.84381535,15,10.46,7,Standard,1721.85,29.54531926,,Yes,147.774374,110.4003034,!@9#%8,504.9669893,0,-0.6438,-1.3337,-1.5991,0.1798,-1.1961 -0x5c95,CUS_0xa17a,August,29,985-19-2989,Entrepreneur,173569.2,14672.1,1,5,11,2,"Home Equity Loan, and Debt Consolidation Loan",,1,5.34,1319,Good,190.4,46.97922855,30 Years and 8 Months,No,206.2468014,110.7079405,High_spent_Large_value_payments,1390.255258,0,-0.9966,1.7209,-1.3146,1.3779,1.0252 -0x5ca1,CUS_0x4d1b,August,21,627-98-2185,_______,140135.24,,7,6,14,0,,19.89043014,15,19.21,6,Standard,929.51,33.08103571,32 Years and 3 Months,Yes,0,192.9909272,High_spent_Large_value_payments,1185.102739,0,1.049,-0.1475,2.7781,0.7074,0.5192 -0x5cad,CUS_0x231b,August,42,#F%$D@*&8,Entrepreneur,8856.75,989.0625,6,5,29,5,"Mortgage Loan, Auto Loan, Home Equity Loan, Not Specified, and Student Loan",,21.87890289,18.07,8,Bad,2308.893767,38.25121953,6 Years and 8 Months,Yes,35.92089437,,Low_spent_Small_value_payments,302.1989438,0,-0.6602,0.4917,0.7164,0.1454,-0.6504 -0x5cb9,CUS_0xbede,August,21,626-12-6345,Media_Manager,51477.8,4130.816667,3,5,8,2,"Student Loan, and Payday Loan",19.48119892,,15.84,7,Standard,478.17,37.58848131,17 Years and 11 Months,Yes,67.79771854,,Low_spent_Medium_value_payments,397.3660599,0,1.3113,0.7434,1.0745,-0.0748,-1.1231 -0x5cc5,CUS_0x6440,August,40,924-60-9151,Lawyer,47634.45,,10,6,20,5,"Credit-Builder Loan, Personal Loan, Auto Loan, Personal Loan, and Debt Consolidation Loan",28.91267818,24,3.16,13,_,1626.64,23.24118936,14 Years and 8 Months,Yes,170.6618099,,Low_spent_Small_value_payments,132.7081689,0,-0.153,0.8657,1.3444,-0.2566,-0.2333 -0x5cd1,CUS_0x38bc,August,34,018-15-9448,Developer,14263.355,918.6129167,1,7,12,2,"Credit-Builder Loan, and Mortgage Loan",11.56744301,9,10.75,4,_,542.5,35.51509887,18 Years and 10 Months,No,23.47531041,81.53076542,Low_spent_Small_value_payments,276.8552158,0,-2.4669,0.5102,1.5632,-0.2583,-0.5876 -0x5cdd,CUS_0x3562,August,38,821-34-2286,Media_Manager,43436.27,3487.689167,0,1,4.288361749,2,"Not Specified, and Mortgage Loan",,2,8.19,4,Good,56.08985023,25.38019421,17 Years and 6 Months,No,58.41158774,484.1616046,High_spent_Medium_value_payments,484.4560236,0,0.5298,-1.087,1.0227,-1.9249,0.4173 -0x5ce9,CUS_0x1510,August,27,847-73-6303,Doctor,53218.86,,10,9,26.06745738,2,"Not Specified, and Credit-Builder Loan",,21.77064774,8.67,12,Bad,3179.265957,36.51903431,,Yes,56.38856296,146.7492008,High_spent_Medium_value_payments,491.7324483,0,-0.5298,0.2895,-0.0273,-0.4309,0.9057 -0x5cf5,CUS_0x1604,August,43,078-26-7485,Developer,16632.745,1209.062083,0,3,6,100,Auto Loan,,0,6.24,7,Good,1415.37,24.65930416,21 Years and 4 Months,No,7.991650369,78.17056323,Low_spent_Large_value_payments,304.7439947,0,0.8486,1.2669,-0.1284,1.0538,0.3166 -0x5d01,CUS_0x7d6f,August,36,789-78-6914,Teacher,21454.72,,3,4,5,3,"Payday Loan, Personal Loan, and Mortgage Loan",16.61248575,10,10.36,3,_,990.57,38.65167361,30 Years and 6 Months,Yes,70242,44.4084629,Low_spent_Large_value_payments,351.5815104,0,-0.9994,-0.1452,-0.7249,-2.4963,1.5509 -0x5d0d,CUS_0xa2f5,August,18,596-05-5810,Teacher,52243.64,4421.636667,8,6,11,1,Auto Loan,11.64173022,9,13.61,8,_,1336.5,41.22081383,22 Years and 2 Months,Yes,33.63145306,75.7786808,High_spent_Medium_value_payments,582.7535328,0,-0.111,-0.4982,-0.5821,-1.6506,0.1364 -0x5d19,CUS_0x2598,August,54,176-78-1528,Entrepreneur,123299.12,,2,2,7.288361749,100,"Not Specified, Credit-Builder Loan, and Credit-Builder Loan",0,2,,7,Good,779.6855363,31.40115085,,No,289.4723049,,High_spent_Large_value_payments,851.3328508,0,0.0357,0.0872,-1.5589,-0.4495,0.1982 -0x5d25,CUS_0x93d0,August,34,967-86-3838,Architect,22375.64,2039.636667,1628,5,20,3,"Auto Loan, Not Specified, and Payday Loan",12.54400165,10,5.4,0,Standard,182.26,25.18817272,32 Years and 2 Months,Yes,45.22591113,10000,High_spent_Large_value_payments,361.6594543,0,-0.8613,-0.8136,0.0234,0.0157,0.402 -0x5d31,CUS_0x785f,August,30,690-86-5300,Manager,42147.89,3283.324167,5,4,2,2,"Home Equity Loan, and Credit-Builder Loan",,9,2.02,7,Good,305.6872457,34.53587667,23 Years and 4 Months,No,44.4773721,253.3809438,Low_spent_Medium_value_payments,344.8177742,0,0.7023,-2.4871,-1.7265,-1.9172,-0.1146 -0x5d3d,CUS_0xb4bc,August,37,922-89-7066,Entrepreneur,54842.58,4734.215,8,9,30.95700519,7,"Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Not Specified, Payday Loan, and Personal Loan",22.17053359,15,25.94,11,Bad,3699.100954,30.35465781,3 Years and 0 Months,Yes,1513.141116,211.430769,Low_spent_Small_value_payments,317.7992461,0,-0.4681,-0.3413,0.7078,-1.5242,-0.2323 -0x5d49,CUS_0x75fb,August,80,844-23-8730,Musician,22870.49,,4,4,14.06745738,1,Credit-Builder Loan,22.40041811,,17.92,10,Standard,1431.58467,26.54097001,32 Years and 3 Months,Yes,12.18215403,86.45444958,Low_spent_Large_value_payments,313.2305251,0,0.3749,-1.4512,-2.3678,0.5597,0.6168 -0x5d55,CUS_0x606d,August,45,170-50-5035,Accountant,52616.28,4279.69,7,10,28.06745738,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Personal Loan",,22.0262583,10.52,10,_,3035.974572,32.8137891,19 Years and 11 Months,Yes,27454,487.6037303,Low_spent_Small_value_payments,87.64099254,0,0.0381,-0.4605,-0.5922,1.0009,0.0047 -0x5d61,CUS_0x8f74,August,22,314-07-2615,Lawyer,37116.66,,3,7,32,5,"Payday Loan, Auto Loan, Personal Loan, Not Specified, and Credit-Builder Loan",,22,12.54,10,Standard,1353.06,29.03165626,6 Years and 2 Months,Yes,123.2410515,160.3159953,High_spent_Small_value_payments,271.9484532,0,2.1468,-0.7967,0.3472,-1.0828,-1.4829 -0x5d6d,CUS_0xa8df,August,46,601-67-5511,Writer,140276.8,11738.73333,5,3,4.288361749,4,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",21.81421,19,8.22,2,_,817.22,34.17827934,33 Years and 5 Months,Yes,383.2384505,1014.281702,Low_spent_Medium_value_payments,476.2906422,0,0.7428,0.7172,0.0169,-0.8247,0.6939 -0x5d79,CUS_0x9a95,August,18,#F%$D@*&8,Mechanic,46175.49,4098.9575,6,6,19.06745738,4,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",41.45422309,25.17623338,8.11,7,Bad,3014.277117,40.21421451,11 Years and 8 Months,Yes,105.3241017,351.3888741,Low_spent_Small_value_payments,216.4624863,0,-0.5274,0.8035,0.7776,0.1162,-0.6103 -0x5d85,CUS_0xad87,August,26,743-13-8477,Entrepreneur,69024.2,5492.016667,9,7,27,7,"Auto Loan, Student Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Mortgage Loan, and Payday Loan",50.25117289,29.85407093,,11,Bad,4989.82352,27.98987533,4 Years and 10 Months,Yes,311.4266147,451.0217493,!@9#%8,66.75330262,0,-0.4008,0.5162,0.4481,-1.9876,1.4041 -0x5d91,CUS_0x4dd5,August,25,530-61-6560,Musician,14402.52,,6,6,29.06745738,8,"Payday Loan, Not Specified, Payday Loan, Not Specified, Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",,15.0189246,19.86,13,Bad,5668.129013,34.12753286,7 Years and 10 Months,Yes,73.34767036,171.4533112,Low_spent_Small_value_payments,153.1997305,0,-0.6171,0.3054,-0.7366,0.2867,1.8855 -0x5d9d,CUS_0x187e,August,28,229-21-4534,Entrepreneur,19653.61,1800.800833,9,5,26.06745738,7,"Credit-Builder Loan, Payday Loan, Personal Loan, Auto Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",33.49367103,22.88950149,19.67,11,Bad,4566.360574,34.20551363,13 Years and 11 Months,Yes,63.36866264,22.59432225,High_spent_Large_value_payments,307.3968105,0,-1.8789,0.1847,0.1173,-1.8066,0.4797 -0x5da9,CUS_0x3394,August,42,787-74-8249,Journalist,39540.78,3410.065,8,7,26.06745738,7,"Auto Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",27.61310312,15,26.32,,Bad,3729.410954,37.854788,10 Years and 10 Months,Yes,227.5308649,10000,High_spent_Small_value_payments,276.5922186,0,0.7105,0.9426,0.0041,1.7009,-2.5902 -0x5db5,CUS_0x4993,August,36,928-18-1535,Journalist,142737.36,11656.78,1,2,3.288361749,2,"Personal Loan, Payday Loan, and Debt Consolidation Loan",3.876489851,6,2.64,4,Good,1050.914332,39.99824961,24 Years and 10 Months,No,273.6023575,997.8531136,Low_spent_Large_value_payments,642.4908164,0,1.5241,1.5005,-0.8601,-0.7273,-0.5333 -0x5dc1,CUS_0x4c7e,August,29,570-70-2382,Writer,15827.06,1422.921667,8,8,29.88954781,6,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",21.70177738,17,5.41,14,Bad,2396.06,38.41155615,10 Years and 8 Months,NM,1381.203437,60.42146795,High_spent_Medium_value_payments,256.3371805,0,0.7391,0.1713,-0.8013,0.6521,-0.3485 -0x5dcd,CUS_0xbf4c,August,26,741-99-8188,_______,14649.275,,3,5,9,0,,0,0,5.65,2,Good,554.58,29.37642942,23 Years and 0 Months,No,0,92.31485184,Low_spent_Small_value_payments,309.5624398,0,-1.454,-2.1382,1.5248,-0.4602,0.2106 -0x5dd9,CUS_0xb22,August,35,882-91-0469,_______,19703.09,1563.924167,9,9,23.06745738,7,"Mortgage Loan, Personal Loan, Not Specified, Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",24.36925395,15,21.51,11,Bad,2900.450954,24.70530364,5 Years and 11 Months,Yes,89.23930823,103.1011249,High_spent_Small_value_payments,197.3316956,0,0.6791,1.0407,-0.3629,0.5044,-0.4443 -0x5de5,CUS_0x56b4,August,33,369-55-1958,Doctor,17416.75,,5,6,12,4,"Payday Loan, Payday Loan, Student Loan, and Personal Loan",,10,10.1,1,_,453.3804719,39.49629675,30 Years and 9 Months,NM,36.5591861,13.44178913,High_spent_Large_value_payments,316.0001131,0,-1.0942,-0.3257,-0.5583,0.6419,0.3635 -0x5df1,CUS_0xc704,August,40,530-12-1811,Media_Manager,92201.25,,3,7,15,1,Not Specified,20.36732669,13,6.38,5,Standard,1020.05,26.58767985,,NM,48.88074476,266.9659749,Low_spent_Small_value_payments,733.1970304,0,0.0444,2.3309,-0.4692,-0.8136,0.5311 -0x5dfd,CUS_0x6244,August,41,223-31-8165,Mechanic,69707.31,5608.9425,6,6,12,2,"Personal Loan, and Credit-Builder Loan",,,3.99,3,Standard,10.79086716,36.81094796,26 Years and 9 Months,No,108.4791012,147.1597405,High_spent_Medium_value_payments,555.2554083,0,0.0627,0.2474,-0.2601,0.4954,-0.961 -0x5e09,CUS_0xa04f,August,43,#F%$D@*&8,Architect,135941.28,11058.44,3,3,11,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",11.8400045,6.844537056,7.21,0,_,1360.812908,29.45938937,31 Years and 3 Months,Yes,66023,361.8082295,Low_spent_Medium_value_payments,741.75119,0,0.328,-0.1116,0.4901,-0.4798,0.9607 -0x5e15,CUS_0x97a,August,29,#F%$D@*&8,Accountant,44913.34,3480.778333,2,1,5,0,,17.70163748,,0.57,4,Good,552.97,27.97151944,31 Years and 10 Months,No,0,80.5547326,High_spent_Medium_value_payments,517.5231007,0,0.5663,0.884,-0.5633,-1.0658,-0.0074 -0x5e21,CUS_0x2590,August,20,717-54-8782,Engineer,14455.15,912.5958333,6,5,19,0,,16.28522631,16,10.56,7,Standard,934.0692527,36.08579332,13 Years and 3 Months,Yes,0,26.12089225,High_spent_Large_value_payments,308.2035317,0,-0.2304,-1.0816,-0.3605,0.0984,0.5011 -0x5e2d,CUS_0x7394,August,40,299-85-9022,Developer,64734.84,5556.57,1,3,7,4,"Payday Loan, Student Loan, Not Specified, and Personal Loan",,1,6.8,4,Good,593.94,39.95432766,18 Years and 0 Months,No,126.4124124,,High_spent_Medium_value_payments,463.5894523,0,-1.752,-0.0353,0.772,0.1882,1.614 -0x5e39,CUS_0x6c4c,August,47,#F%$D@*&8,Accountant,85953.88,7140.823333,3,3,16,4,"Personal Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",23.71153219,18,15.55,9,Standard,649.07,27.12889687,29 Years and 0 Months,NM,219.2491745,115.21595,High_spent_Large_value_payments,619.6172089,0,-1.279,-0.3611,-0.9171,-0.8157,-0.7535 -0x5e45,CUS_0x3eeb,August,50,817-12-6781,_______,21755.79,,8,4,20,2,"Mortgage Loan, and Not Specified",,23,9.3,3,Standard,604.9,32.72240181,,Yes,31.15535817,71.42810779,Low_spent_Large_value_payments,340.614784,0,1.3858,0.1883,0.5621,0.7947,0.3595 -0x5e51,CUS_0x68dc,August,33,152-35-3169,Musician,90701.28,7654.44,1,5,10.28836175,0,,0,3.615479257,8.26,5,Good,295.3856817,25.53946523,22 Years and 3 Months,No,0,621.9296329,High_spent_Medium_value_payments,813.4518281,0,1.8976,0.421,0.0816,0.9208,0.2865 -0x5e5d,CUS_0x2ee6,August,31,178-36-1761,Journalist,15201.005,1457.750417,0,863,8,2,"Credit-Builder Loan, and Debt Consolidation Loan",8.951874812,8,4.12,5,Good,1078.95,32.34606795,27 Years and 9 Months,No,23.34434152,,Low_spent_Medium_value_payments,256.6066442,0,0.2809,-0.2021,-1.0087,0.5169,-1.5128 -0x5e69,CUS_0x44fc,August,27,736-91-2621,_______,132662.22,10872.185,0,6,5,4,"Personal Loan, Not Specified, Mortgage Loan, and Payday Loan",,2.333723599,11.63,5,Good,1679.140699,36.55001706,18 Years and 3 Months,No,356.1429292,80.77340004,High_spent_Large_value_payments,890.3021707,0,-0.2924,-1.6916,0.6926,-1.1421,-0.4311 -0x5e75,CUS_0xde7,August,21,958-41-4902,Manager,19553.805,,4,1,8.288361749,2,"Payday Loan, Not Specified, and Personal Loan",0,2,10.44,0,Good,126.9488334,35.536818,29 Years and 5 Months,NM,41.36318341,590.9986197,Low_spent_Medium_value_payments,235.7890528,0,0.3124,0.0668,1.5646,-2.3154,1.3429 -0x5e81,CUS_0x117f,August,51,082-69-3410,Scientist,93847.86,7599.655,3,4,12,3,"Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",11.37555353,10,11.52,5,Standard,1405.22,28.96635605,16 Years and 5 Months,No,196.7267019,522.5572279,Low_spent_Large_value_payments,310.6815702,0,-1.284,0.1159,0.5503,-1.1769,0.7337 -0x5e8d,CUS_0x1c61,August,25,055-60-0860,Entrepreneur,96540.69,8068.0575,4,3,8.288361749,0,,0,2,6.39,7,Good,505.9582802,27.11173763,15 Years and 10 Months,No,0,546.3076202,High_spent_Medium_value_payments,948.1149953,0,-0.9453,-0.5879,-0.6264,-0.6684,-1.4096 -0x5e99,CUS_0x9135,August,36,949-97-8482,Journalist,19567,1681.583333,8,10,29.95700519,7,"Auto Loan, Mortgage Loan, Not Specified, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,26.20368832,6.77,6,Bad,2651.494868,26.96978252,18 Years and 6 Months,Yes,1409.927,212.4083466,!@9#%8,114.7726174,0,0.4058,1.1486,0.2774,-0.7051,-1.6484 -0x5ea5,CUS_0x1309,August,51,691-12-6696,Writer,106876.77,9149.3975,4,5,12,1,Not Specified,28.23353974,20,8.24,4,Good,356.07,32.77761753,29 Years and 5 Months,No,62.24258066,119.843141,High_spent_Large_value_payments,972.8540284,0,0.2044,-0.9798,1.4032,1.6805,-0.0842 -0x5eb1,CUS_0x670c,August,42,666-06-3235,Musician,90668.85,7149.133239,5,4,8,4,"Mortgage Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",14.28136296,10,3.03,7,Standard,813.27,33.21583954,25 Years and 8 Months,No,736.997384,51.52503466,High_spent_Large_value_payments,723.6555927,0,-0.3159,1.4977,-1.439,0.6196,-1.1506 -0x5ebd,CUS_0x93af,August,24,633-97-0538,Doctor,35221.43,,5,3,1,4,"Personal Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",4.94476915,2.256018733,3.66,1,Good,699.3956715,35.15054641,29 Years and 4 Months,No,110.0385826,,Low_spent_Medium_value_payments,333.2808343,0,-0.2615,0.798,-2.2356,-0.975,-0.446 -0x5ec9,CUS_0x3f65,August,36,650-51-7412,Musician,14489.925,1151.49375,3,3,18,1,Auto Loan,17.53438857,12,9.91,4,Standard,1339.99,32.25197191,33 Years and 2 Months,No,9.625827166,46.40676567,High_spent_Medium_value_payments,309.1167822,0,0.6108,0.7935,-0.0093,-0.9471,1.4378 -0x5ed5,CUS_0x5d44,August,25,272-17-8252,Architect,93561.72,7547.81,4,4,12,4,"Personal Loan, Mortgage Loan, Payday Loan, and Personal Loan",24.827952,16,6.78,10,Standard,469.43,38.8740437,31 Years and 11 Months,Yes,215.353699,131.06039,High_spent_Large_value_payments,648.366911,0,-0.6276,2.7077,1.4705,0.8101,1.1995 -0x5ee1,CUS_0x5213,August,24,480-01-9287,Writer,127559.68,10605.97333,3,6,11,3,"Credit-Builder Loan, Personal Loan, and Student Loan",,,10.32,6,_,1271.78,36.97529606,27 Years and 0 Months,No,209.7125981,546.6721261,Low_spent_Medium_value_payments,584.2126092,0,-0.4611,0.6288,-0.2079,2.6678,1.3148 -0x5eed,CUS_0x18bc,August,41,653-29-6403,Engineer,72617.55,,26,4,5,100,"Personal Loan, and Debt Consolidation Loan",19.89866562,,,7,Good,1475.91,28.91926158,,No,89.40561295,389.7809703,Low_spent_Medium_value_payments,400.4596668,0,0.7117,-1.2145,1.446,-0.0797,-0.9584 -0x5ef9,CUS_0x37be,August,25,137-14-1045,Writer,87888.72,7253.06,5,3,11,0,,90,4583.487775,8.91,1,Standard,154.4933071,28.76920747,30 Years and 10 Months,Yes,0,224.220367,Low_spent_Large_value_payments,771.085633,0,-2.2819,0.5825,-1.0609,0.1778,-0.6573 -0x5f05,CUS_0x7c0f,August,30,#F%$D@*&8,Architect,48053.61,,7,8,17,5,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,20,7.85,14,Bad,2141.5,37.76619278,20 Years and 6 Months,Yes,175.9654148,,Low_spent_Medium_value_payments,172.7650027,0,0.5892,0.664,-0.6128,1.7771,-1.8846 -0x5f11,CUS_0xc242,August,18,854-44-2997,Mechanic,17018.45,1188.204167,8,6,25,7,"Payday Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",25.1978288,19,15.35,16,Bad,4742.17,37.45147067,3 Years and 8 Months,NM,62.52607699,46.31754521,Low_spent_Small_value_payments,299.9767945,0,-1.5619,-0.5809,-0.7182,-0.4059,1.0344 -0x5f1d,CUS_0xc4c3,August,52,718-68-7156,Media_Manager,32276.42,,5,6,17,1,Auto Loan,,20.34341048,,,Standard,702.4830774,27.22610935,32 Years and 2 Months,Yes,19.54475342,41.12326175,High_spent_Large_value_payments,475.2021515,0,0.0241,1.2944,1.4647,-0.5423,1.347 -0x5f29,CUS_0x3ade,August,29,085-36-7495,Writer,20000.41,,2,5,5,1,Home Equity Loan,,733,4.48,0,Good,446.57,30.27317983,27 Years and 9 Months,No,191.720143,68.02699149,High_spent_Medium_value_payments,360.4674549,0,-0.407,0.6264,1.2062,-0.085,0.4678 -0x5f35,CUS_0x5640,August,25,359-55-3612,Doctor,42812.02,3604.840962,5,5,3213.288362,4,"Personal Loan, Personal Loan, Credit-Builder Loan, Student Loan, and Auto Loan",,18,11.69,1437,Standard,144.39,35.72267527,,Yes,395.5375623,598.9240906,Low_spent_Small_value_payments,316.670013,0,-0.9918,0.0671,-1.1693,1.0737,1.3385 -0x5f41,CUS_0x30d0,August,48,369-12-1985,Entrepreneur,17620.615,1414.384583,0,5,4,4,"Mortgage Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",,12.54457946,4.44,2,Good,1218.784744,26.00407448,15 Years and 10 Months,No,36.92794258,94.00471147,Low_spent_Medium_value_payments,290.5058043,0,-1.2702,-0.449,0.5346,0.0754,-0.7086 -0x5f4d,CUS_0xac14,August,34,588-97-9229,Media_Manager,66575.2,5631.933333,5,4,2,2,"Auto Loan, and Auto Loan",14.4531806,,2.96,6,Good,898.2324902,31.28544933,17 Years and 4 Months,No,74296,124.2741518,High_spent_Large_value_payments,584.1562765,0,0.6499,-1.6882,0.7641,-0.5951,-0.1648 -0x5f59,CUS_0x2d78,August,43,622-94-8955,Media_Manager,45408.84,3823.07,7,7,26,6,"Not Specified, Student Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",,21.21177673,8.01,9,Bad,2191.037777,33.39771664,11 Years and 4 Months,Yes,119.676529,173.8440846,High_spent_Small_value_payments,348.7863864,0,-1.2411,-0.4085,-0.2964,-0.304,-1.8465 -0x5f65,CUS_0x9cc2,August,39,865-85-5827,Developer,48755.5,,5,6,1,2,"Debt Consolidation Loan, and Home Equity Loan",17.17012932,13,8.46,3,Standard,918.88,32.8672345,21 Years and 4 Months,No,76.71479237,10000,High_spent_Medium_value_payments,449.9129571,0,-0.7231,-0.8484,-0.6246,-0.8945,-0.4442 -0x5f71,CUS_0xa300,August,50,229-41-1034,Lawyer,159560.76,13580.73,3,1,5.288361749,0,Mortgage Loan,11.22376487,11,5.67,3,Good,1154.59,38.23194041,25 Years and 11 Months,No,130.0370484,570.2004771,High_spent_Large_value_payments,1317.772935,0,0.7855,-0.2555,0.2568,1.6523,-0.2002 -0x5f7d,CUS_0x5857,August,48,718-24-5226,Mechanic,114201.56,,3,7,12,1,Mortgage Loan,,6,4.26,1,Good,1490.4,39.36555924,27 Years and 9 Months,No,90.37106128,73.95586796,High_spent_Large_value_payments,1012.552737,0,-1.0605,-0.7842,0.9868,1.4911,0.1986 -0x5f89,CUS_0xb4c1,August,38,390-19-1053,Engineer,133057.89,,5,7,7.288361749,4,"Home Equity Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",,3,3.76,3,Good,1169.765209,32.35423135,22 Years and 2 Months,No,355.3523328,687.3512038,High_spent_Small_value_payments,745.5188845,0,-1.2764,0.7054,-0.4139,0.322,-0.4633 -0x5f95,CUS_0x1b88,August,26,137-52-4360,Architect,20835.39,,3,3,1,4,"Auto Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",18.30119215,,11.64,5,Good,1652.542717,33.17597995,22 Years and 10 Months,No,36.00098679,93.67044108,Low_spent_Small_value_payments,331.0568221,0,0.0194,-0.1448,0.069,-0.5868,-1.1973 -0x5fa1,CUS_0x8f45,August,48,764-27-1364,Architect,4156013,,7,4,17,1,Debt Consolidation Loan,15.22681477,10,2.26,6,Standard,274.91,28.80203394,25 Years and 8 Months,Yes,9.801338745,106.5663368,Low_spent_Small_value_payments,324.0379911,0,-0.4705,-1.2471,-0.2541,1.5877,-0.0422 -0x5fad,CUS_0x1960,August,54,072-65-2594,Architect,32707.14,2679.595,5,6,20,1,Home Equity Loan,16.62230173,9,1.97,4,Standard,405.07,34.46626402,23 Years and 11 Months,Yes,22.10318546,77.64301898,Low_spent_Medium_value_payments,448.2132956,0,0.705,-0.5373,0.004,-0.1603,-0.2079 -0x5fb9,CUS_0x2deb,August,21,#F%$D@*&8,Journalist,50352.09,,3,7,15,2,"Student Loan, and Payday Loan",6.98759074,9,18.13,7,Standard,1385.99,26.13691308,17 Years and 3 Months,Yes,60.32243451,10000,!@9#%8,450.8433566,0,-0.3907,-0.4794,1.1798,0.6192,-0.0482 -0x5fc5,CUS_0x8ec,August,38,015-99-4651,Scientist,76223.58,5640.117744,5,5,3,0,,1.117987355,4,0.8,5,Good,1186.768295,35.8749129,27 Years and 3 Months,No,776.8472559,,High_spent_Medium_value_payments,808.7331,0,0.6086,0.0229,-0.2114,-0.0181,0.4766 -0x5fd1,CUS_0x5379,August,24,176-84-5216,Developer,73458.16,6151.513333,1,4,2828,4,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",0,1,5.31,5,Good,121.79,34.12104604,16 Years and 10 Months,No,139.6173517,125.3783189,High_spent_Large_value_payments,590.1556627,0,-1.1919,-0.4685,-0.4221,2.4428,-0.0159 -0x5fdd,CUS_0xa1aa,August,38,237-00-5799,Doctor,17550.11,1546.509167,6,6,20,8,"Not Specified, Not Specified, Auto Loan, Payday Loan, Personal Loan, Personal Loan, Payday Loan, and Auto Loan",41.08614525,29.06189096,24.83,10,Bad,4536.308626,39.63192167,5 Years and 2 Months,Yes,90.61562734,42.04002985,Low_spent_Medium_value_payments,301.9952595,0,-1.0771,1.2836,2.4693,-0.915,-0.8719 -0x5fe9,CUS_0x93cd,August,41,357-20-4131,Engineer,99600.92,6884.799215,6,3,9,1,Student Loan,,8,10.29,3,_,452.309033,34.16655114,27 Years and 4 Months,No,1194.784437,11277.96609,Low_spent_Large_value_payments,510.2200726,0,1.4839,0.9584,0.4885,0.6732,0.1325 -0x5ff5,CUS_0xa5b6,August,42,066-53-5086,Media_Manager,13019.77,863.9808333,7,4,13,1,Not Specified,14.67809813,13,0.92,3,_,937.2,23.88582535,26 Years and 3 Months,No,5.905518076,73.12155498,Low_spent_Large_value_payments,277.3710103,0,-0.7924,-0.1759,-1.3828,0.4778,1.6497 -0x6001,CUS_0xc81,August,41,554-34-3994,Doctor,22694.46,,3,3,19,2,"Payday Loan, and Personal Loan",8.806094923,10,2.59,4,Standard,679.1,29.49062937,18 Years and 5 Months,NM,29.75174487,29.39738708,High_spent_Large_value_payments,374.9713681,0,1.3829,0.0934,-0.077,0.1082,-1.7275 -0x600d,CUS_0x71e8,August,27,537-86-0139,Entrepreneur,20013.55,,7,6,16,6,"Auto Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Student Loan, and Personal Loan",29.14240367,19.47606714,22.98,13,Bad,5381.742682,32.72569682,13 Years and 11 Months,Yes,69.53825148,76.87533193,Low_spent_Small_value_payments,283.3659999,0,-0.3043,-0.2043,0.9558,-0.6941,-0.7442 -0x6019,CUS_0x24cf,August,21,619-62-6833,Scientist,28187.35,2201.945833,6,5,12,4,"Auto Loan, Auto Loan, Auto Loan, and Home Equity Loan",,14,20.09,9,Standard,321.76,36.20955601,16 Years and 3 Months,Yes,83.6172326,25.81091122,High_spent_Large_value_payments,350.7664395,0,-0.8751,-1.3959,0.1266,-0.8028,-1.0844 -0x6025,CUS_0x2984,August,19,044-39-3966,Lawyer,20855.32,,5,7,20,0,,18.82293249,14,19.38,5,_,50.64549437,40.63180929,28 Years and 5 Months,Yes,0,60.77809803,High_spent_Small_value_payments,408.9514687,0,-2.9049,0.5541,0.8654,0.4082,-0.4559 -0x6031,CUS_0x878d,August,38,698-27-4885,_______,131296.92,,4,3,11.28836175,2,"Not Specified, Personal Loan, and Home Equity Loan",0,0,3.88,7,Good,1029.35,31.73269084,27 Years and 6 Months,No,231.0094532,,High_spent_Large_value_payments,892.8988948,0,1.4618,-0.0946,-1.729,0.2929,0.7659 -0x603d,CUS_0xdc2,August,18,331-16-1841,Manager,36964.08,3032.067813,7,7,28,7,"Mortgage Loan, Credit-Builder Loan, Student Loan, Payday Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",31.6247852,22,23.07,6,Bad,4968.99,37.88350454,13 Years and 5 Months,Yes,448.0100729,186.5565993,High_spent_Small_value_payments,225.9395148,0,0.1592,-1.8411,1.2669,0.7266,0.0121 -0x6049,CUS_0x3cfe,August,28,330-78-4673,Journalist,29498.09,,2,4,1,2,"Debt Consolidation Loan, and Mortgage Loan",0,2,2.58,3,Good,523.5269237,38.62296563,27 Years and 2 Months,No,43.71561692,252.0407004,Low_spent_Small_value_payments,281.8558019,0,0.075,-0.2425,0.4909,0.8104,0.2356 -0x6055,CUS_0x449b,August,25,807-35-0785,_______,36943.98,3369.665,8,9,35.95700519,8,"Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Not Specified",31.52270055,16,19.98,10,Bad,4958.590954,27.83731072,14 Years and 5 Months,Yes,1496.342231,,High_spent_Medium_value_payments,243.4145663,0,-0.173,-0.2365,0.4526,-0.4082,-0.3746 -0x6061,CUS_0x8dc0,August,34,123-97-7515,Lawyer,15185.65,,8,9,27,100,"Auto Loan, Payday Loan, and Debt Consolidation Loan",32.22142015,17.70319412,17.75,12,Standard,2475.145794,38.7127325,15 Years and 11 Months,Yes,22.73084035,68.69771841,Low_spent_Medium_value_payments,321.5185246,0,0.6722,0.2918,-1.0644,1.1082,0.0765 -0x606d,CUS_0x2625,August,35,623-33-7162,_______,61461.18,,6,6,35.06745738,9,"Personal Loan, Auto Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, Student Loan, Home Equity Loan, and Payday Loan",41.75661072,21.61539735,5.5,15,_,4933.782241,31.62970148,6 Years and 0 Months,Yes,450.6386078,166.6177844,High_spent_Medium_value_payments,89.4998199,0,-1.7157,0.955,-2.2853,-1.6986,0.6749 -0x6079,CUS_0x73ee,August,27,647-87-1377,Mechanic,26396.88,2356.74,3,7,2,2,"Home Equity Loan, and Credit-Builder Loan",22.38599895,,11.63,309,Good,504.18,29.21078611,19 Years and 2 Months,No,22.96907109,105.2153523,Low_spent_Small_value_payments,397.4895766,0,-0.3417,0.5637,-0.8891,-0.2292,-0.1219 -0x6085,CUS_0xa90,August,38,752-12-8085,Teacher,86775.4,6205.537727,4,7,7,1,Credit-Builder Loan,,20,11.49,4,Standard,1297.859079,37.95755791,26 Years and 8 Months,No,953.8293586,,Low_spent_Large_value_payments,520.1203984,0,0.4902,-0.7776,-0.2382,-0.3983,-0.1485 -0x6091,CUS_0x8167,August,23,721-85-0529,Writer,101926.95,,4,4,8.288361749,0,Mortgage Loan,8.586732687,9,10.26,6,_,1058,38.77283852,20 Years and 5 Months,No,70.58768071,1082.741388,Low_spent_Medium_value_payments,410.199642,0,1.7914,1.5195,-0.7857,-0.4825,2.8875 -0x609d,CUS_0x6ce,August,46,213-57-5319,Musician,96683.48,,7,7,11,4,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",20.39569941,15,0.77,1,Good,1084.27,36.75864106,17 Years and 4 Months,No,489.7683799,292.3532854,High_spent_Medium_value_payments,610.7384415,0,-0.0268,-0.3687,0.3764,0.2211,-1.8418 -0x60a9,CUS_0x530a,August,41,215-18-3499,Journalist,83079.72,6734.31,6,3,4.288361749,2,"Payday Loan, Student Loan, and Home Equity Loan",,13,16.96,11,Standard,780.22,37.24238184,15 Years and 4 Months,Yes,170.3640949,896.9615468,Low_spent_Large_value_payments,296.0428193,0,-0.3254,0.4694,0.056,1.3507,-0.6794 -0x60b5,CUS_0xb92b,August,24,501-27-2873,Doctor,10357.485,1105.781183,9,7,28.06745738,100,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Not Specified, and Auto Loan",31.17626654,20,4.52,7,Bad,2638.630954,27.78649066,17 Years and 0 Months,Yes,114.3710751,67.81986617,Low_spent_Small_value_payments,254.7437131,0,-0.1746,0.1871,-0.1694,0.9804,-1.6045 -0x60c1,CUS_0x4b6a,August,30,560-37-5114,_______,8958.715,,4,7,18,4,"Not Specified, Not Specified, Auto Loan, and Home Equity Loan",8.338070712,9,14.49,9,Standard,2133.24,32.74146796,20 Years and 2 Months,Yes,23.25370505,0,High_spent_Large_value_payments,289.4445147,0,-0.5268,-0.9098,-0.6833,-0.3384,-1.4559 -0x60cd,CUS_0x6877,August,40,018-73-2973,Mechanic,30493.34,,5,5,11,4,"Credit-Builder Loan, Payday Loan, Home Equity Loan, and Payday Loan",8.006055141,7,7.11,2,Good,448.51,31.62923292,24 Years and 0 Months,No,94.48242759,95.02870252,High_spent_Medium_value_payments,313.2000366,0,0.1318,1.4748,0.049,-1.1803,0.2271 -0x60d9,CUS_0x2ebb,August,49,293-19-6593,Developer,85710.48,7438.54,6,4,4.288361749,2,"Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",13.51908159,,5.08,5,Good,434.31,39.63414479,17 Years and 4 Months,No,174.3188286,621.2722164,High_spent_Small_value_payments,628.200416,0,-0.5637,-1.1315,0.6994,-0.8894,-1.0911 -0x60e5,CUS_0xaa27,August,43,688-44-0329,Journalist,7379.345,,8,4,14,2,"Home Equity Loan, and Payday Loan",,16,14.83,10,_,2592,31.17154261,14 Years and 9 Months,Yes,9.228405652,69.06262083,Low_spent_Small_value_payments,264.2035152,0,0.9536,0.243,-0.6015,-1.6457,-0.176 -0x60f1,CUS_0x7ca7,August,47,642-82-4606,Accountant,38873.01,3287.4175,5,7,11.28836175,4,"Home Equity Loan, Personal Loan, Credit-Builder Loan, and Student Loan",11.47710147,11,5.42,8,Good,15.43132301,29.15127413,28 Years and 6 Months,No,83.28570298,511.6414076,High_spent_Large_value_payments,405.9836045,0,-0.494,-2.0765,-0.8548,0.0881,-1.2007 -0x60fd,CUS_0x4716,August,42,372-10-1782,Musician,10094.05,,7,7,18,2,"Home Equity Loan, and Auto Loan",,13,17.91,7,Standard,695.09,40.99778752,,Yes,15.68476111,26.16484501,Low_spent_Large_value_payments,289.0674772,0,-0.1949,0.2497,-0.7898,-1.2742,-0.3223 -0x6109,CUS_0x3e5a,August,28,796-89-8278,Doctor,15155.81,,7,4,33,3,"Credit-Builder Loan, Mortgage Loan, and Auto Loan",18.1264236,12.66740886,8.3,9,_,2171.02658,32.25019719,14 Years and 8 Months,Yes,22.82032412,114.3618565,Low_spent_Small_value_payments,271.0162361,0,-0.8851,-2.1046,-0.7759,0.0224,-0.2 -0x6115,CUS_0x925f,August,46,946-11-1039,Entrepreneur,16410.3,1483.525,7,6,34.06745738,4,"Mortgage Loan, Not Specified, Mortgage Loan, and Not Specified",,,6.75,,_,2107.764239,25.621544,6 Years and 5 Months,Yes,54.57249571,,Low_spent_Medium_value_payments,234.2730876,0,-0.1996,0.4836,-2.5701,-0.9949,2.0107 -0x6121,CUS_0x9dfc,August,23,445-96-0982,Mechanic,96148.05,7875.3375,4,5,19.28836175,4,"Home Equity Loan, Not Specified, Not Specified, and Student Loan",21.86406561,19,8.16,4,Standard,1244.79,36.01710549,27 Years and 9 Months,No,197.7784248,1453.167114,Low_spent_Small_value_payments,,0,2.097,0.3577,-1.2803,0.615,-0.0684 -0x612d,CUS_0x1e8c,August,20,571-81-7251,Engineer,60078.27,4758.5225,5,7,11,4,"Student Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",4.733288569,7.127403873,2.72,9,Standard,2472.02055,29.12911052,16 Years and 0 Months,Yes,128.9062474,,Low_spent_Large_value_payments,229.8760005,0,0.6733,1.6168,-1.8247,1.7942,0.0299 -0x6139,CUS_0x4d4d,August,29,119-11-5194,Mechanic,33900.04,,6,5,12,3,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,20,16.38,5,Standard,593.26,28.95474395,19 Years and 3 Months,Yes,57.14005951,75.07456291,High_spent_Medium_value_payments,395.3857109,0,-0.5318,0.0417,-0.1396,-0.9784,-0.5287 -0x6145,CUS_0x71dd,August,80,176-18-3723,Accountant,22244.25,2007.6875,0,5,12,1,Student Loan,3.226497297,7,7.03,3,Good,1431.94,26.77027575,,No,16.22704781,117.1577229,!@9#%8,357.3839792,0,-0.3381,-0.5835,-2.0279,-0.5272,1.2588 -0x6151,CUS_0x7c68,August,55,603-58-5338,Engineer,15173.47,,4,5,20,3,"Payday Loan, Mortgage Loan, and Debt Consolidation Loan",,12,9.45,7,Standard,313.08,35.2655412,31 Years and 8 Months,Yes,30.0155576,85.7485508,Low_spent_Medium_value_payments,279.7814749,0,-0.4197,-0.0431,0.452,0.2984,-0.3177 -0x615d,CUS_0x925e,August,36,571-44-4118,Musician,16364.675,1661.722917,8,5,12,2,"Credit-Builder Loan, and Debt Consolidation Loan",,9,9.92,0,Good,60.17,34.85127154,16 Years and 0 Months,No,16.37977717,66.36089195,High_spent_Small_value_payments,343.4316225,0,-0.0418,0.3226,1.7899,-0.977,-1.1235 -0x6169,CUS_0x3ebe,August,40,#F%$D@*&8,Scientist,134737.59,,1,7,6.288361749,0,,12.22751203,11,3.13,1830,Good,1180.881313,43.38433347,32 Years and 6 Months,NM,1679.017067,553.7390158,High_spent_Medium_value_payments,1248.310979,0,0.9944,-0.4261,-1.1275,-0.6394,0.6176 -0x6175,CUS_0xb958,August,55,607-31-1805,Scientist,133931.61,11369.9675,0,5,7,3,"Credit-Builder Loan, Not Specified, and Personal Loan",14.1167037,,6.66,3,_,1122.87,42.70736284,19 Years and 6 Months,No,290.8817795,233.0225104,High_spent_Large_value_payments,853.0924601,0,1.2568,0.2572,0.6763,0.5936,0.4684 -0x6181,CUS_0x1a77,August,19,106-15-9029,Manager,91117.72,,8,4,19,0,,28.38768439,20,11.69,0,Standard,1465.86,35.48607213,20 Years and 2 Months,No,0,269.0693956,Low_spent_Medium_value_payments,760.3449377,0,1.3123,-1.4382,-0.4596,-1.9686,0.8578 -0x618d,CUS_0x8c8a,August,48,134-88-7054,Accountant,98509.71,8197.1425,5,6,6,1,Credit-Builder Loan,,10.31498619,7.38,8,Standard,96.44622037,38.8398015,16 Years and 2 Months,No,55.70340735,,Low_spent_Small_value_payments,355.5979403,0,0.531,-0.4809,2.8615,-0.3118,-1.9506 -0x6199,CUS_0x992b,August,28,343-98-8027,Doctor,19939.92,1719.66,8,8,21.88954781,6,"Personal Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Auto Loan",32.5276461,23.84158904,4.39,11,Bad,4840.591198,38.37380441,13 Years and 6 Months,NM,1383.249794,146.8771388,Low_spent_Large_value_payments,217.5089857,0,0.0077,-1.3781,-0.71,0.8166,-0.7544 -0x61a5,CUS_0xb8be,August,35,860-66-4015,Teacher,16798.15,1544.845833,5,6,16,3,"Student Loan, Auto Loan, and Home Equity Loan",,11,18.75,,Standard,1972.404556,25.10891353,9 Years and 4 Months,Yes,31.31851711,34.78725765,High_spent_Medium_value_payments,342.9062977,0,-1.3472,0.6442,-0.563,-0.4325,1.071 -0x61b1,CUS_0x5c7a,August,33,736-82-6054,Doctor,34633.28,,0,3,5,4,"Payday Loan, Auto Loan, Student Loan, and Not Specified",15.76385406,12.78030933,6.1,8,_,356.5734607,23.62879275,29 Years and 0 Months,No,107.6882897,174.8684854,High_spent_Small_value_payments,285.8538916,0,0.9251,-1.2195,-1.0243,-0.071,-0.1516 -0x61bd,CUS_0x48d,August,22,283-87-8819,Writer,12281.035,,8,3,15,1,Student Loan,,18,13.41,7,Standard,928.14,25.17966301,21 Years and 5 Months,Yes,6.824666039,10000,Low_spent_Small_value_payments,311.3888657,0,-1.0587,1.5349,1.7227,0.2083,-0.846 -0x61c9,CUS_0x5e19,August,28,122-96-5259,Lawyer,32424.34,,3,5,5,0,,19.70711133,17,10.46,4,Standard,140.9520517,31.64675695,18 Years and 9 Months,Yes,0,217.7727107,Low_spent_Large_value_payments,340.6543249,0,0.9227,-2.4784,-1.2921,0.6679,-0.8251 -0x61d5,CUS_0x594e,August,28,796-14-2828,Developer,38684.2,,7,5,16,3,"Personal Loan, Payday Loan, and Payday Loan",,22.72736249,16.24,13,_,1637.764928,34.643105,6 Years and 2 Months,Yes,70.03845524,191.0141947,Low_spent_Small_value_payments,371.3156834,0,-0.1689,0.4002,-0.6422,-1.0483,-1.4301 -0x61e1,CUS_0x9e9a,August,30,918-15-8641,Writer,61880.06,5411.671667,7,5,7,0,,25.48789867,19.80825913,11.8,,Standard,422.532336,35.85066203,24 Years and 5 Months,Yes,0,141.4500152,Low_spent_Medium_value_payments,679.7171515,0,-0.1719,0.4494,1.1693,-1.9704,0.9513 -0x61ed,CUS_0xffc,August,20,226-86-7294,Musician,60877.17,5218.0975,6,8,27,8,"Credit-Builder Loan, Payday Loan, Not Specified, Student Loan, Student Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",31.17658837,16.39373102,8.82,13,_,1482.902424,29.02649753,,Yes,272.8091695,46.42561384,High_spent_Large_value_payments,442.5749667,0,-0.8077,-0.3044,0.3165,-0.897,0.3003 -0x61f9,CUS_0x62ec,August,24,567-99-2219,Mechanic,20060.93,1806.744167,7,6,15.06745738,5,"Student Loan, Not Specified, Personal Loan, Student Loan, and Auto Loan",20.66958469,,12.21,9,Standard,1669.230954,36.83901104,8 Years and 2 Months,Yes,48.56473089,121.8597738,Low_spent_Medium_value_payments,263.529624,0,-1.0007,0.3839,0.1795,0.3022,-0.0672 -0x6205,CUS_0x3592,August,37,711-41-8889,Manager,34739.35,,8,3,10,3,"Mortgage Loan, Student Loan, and Student Loan",24.68851171,17,19.7,8,Standard,1408.63,34.84475595,22 Years and 3 Months,Yes,65.1392465,168.3700343,Low_spent_Small_value_payments,347.4853025,0,0.1171,-1.1062,-1.8853,0.0396,0.7323 -0x6211,CUS_0x2a83,August,22,642-82-6317,Doctor,140794.6,11465.88333,6,7,13,3,"Home Equity Loan, Student Loan, and Debt Consolidation Loan",15.57663117,10,7.81,2,Standard,288.92,24.88935018,28 Years and 11 Months,No,330.1967942,1147.550997,!@9#%8,,0,-0.3306,0.6601,0.223,0.0857,-0.3616 -0x621d,CUS_0x67a4,August,31,495-84-9751,Mechanic,20825.75,1770.479167,6,5,33,100,"Personal Loan, Student Loan, and Debt Consolidation Loan",,16.41392581,8.3,12,Standard,2286.469629,30.12425027,16 Years and 2 Months,Yes,46.6449592,115.1635395,Low_spent_Small_value_payments,305.2394179,0,0.7124,1.8995,1.7135,0.3827,0.9711 -0x6229,CUS_0x2189,August,25,529-93-5266,Writer,24131.57,2144.964167,7,7,13,2,"Home Equity Loan, and Debt Consolidation Loan",11.37340775,10,1.51,0,Standard,1246.66,29.21938718,17 Years and 6 Months,No,38.59964395,10000,Low_spent_Small_value_payments,339.0783993,0,0.6993,0.305,0.7246,0.3379,0.0598 -0x6235,CUS_0x4640,August,36,969-47-8792,_______,56614.2,4638.85,10,10,34.95700519,7,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, Not Specified, Payday Loan, Auto Loan, and Auto Loan",31.45791345,,11.23,13,Standard,3162.655624,39.65447926,18 Years and 9 Months,Yes,1633.628551,,High_spent_Small_value_payments,111.7943834,0,0.3618,-0.1462,0.0765,1.3097,1.4836 -0x6241,CUS_0x57a2,August,38,202-32-5051,Teacher,61190.52,4858.21,1,6,1,4,"Not Specified, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",0,3,10.31,2,Good,1348.97,28.96056831,25 Years and 5 Months,NM,105.330283,628.3783258,Low_spent_Small_value_payments,42.11239124,0,0.0891,1.6045,-1.6112,0.0934,-0.4773 -0x624d,CUS_0x4c9f,August,46,842-92-5062,Doctor,30587.68,2759.973333,6,7,15,6,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",14.09017727,,13.77,8,Standard,1146.781535,37.58656771,15 Years and 4 Months,Yes,108.1191637,151.5457149,Low_spent_Medium_value_payments,296.3324547,0,0.1158,0.2661,-1.5675,0.9038,-0.8773 -0x6259,CUS_0xe8d,August,26,948-01-5172,Journalist,14441.51,1453.459167,9,8,26,2,"Payday Loan, and Student Loan",,20.29216278,9.85,8,Bad,1499.675614,40.08551141,13 Years and 6 Months,Yes,21.03195089,48.38966214,High_spent_Medium_value_payments,325.9243036,0,0.0179,0.1751,0.181,-1.1002,-1.0673 -0x6265,CUS_0x4ac9,August,31,411-30-1866,Accountant,95332.23,7234.502555,2,4,4,3,"Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",0,0,11.83,4,Good,349.5830538,27.15249316,15 Years and 9 Months,No,799.2936441,,Low_spent_Medium_value_payments,138.16804,0,-0.2562,1.2992,0.4534,1.1955,-0.8041 -0x6271,CUS_0x707a,August,43,994-63-2814,Teacher,63839.46,5304.955,7,6,20,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",21.5618648,18,12.33,4,Standard,733.2,29.58767649,18 Years and 9 Months,Yes,98.74961475,256.5722081,High_spent_Small_value_payments,435.1736772,0,-0.3647,-1.2534,-1.0467,0.6223,1.3861 -0x627d,CUS_0x6343,August,31,299-71-9633,_______,8053.435,706.1195833,6,6,21,8,"Auto Loan, Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",26.05803849,20,28.4,9,Bad,4254.09,30.13797114,6 Years and 11 Months,Yes,35.54490159,37.42172936,Low_spent_Small_value_payments,287.6453274,0,0.1536,1.0587,-0.6047,-1.2199,1.694 -0x6289,CUS_0x59e6,August,34,#F%$D@*&8,Media_Manager,99425.4,8157.45,8,5,4234.288362,4,"Auto Loan, Debt Consolidation Loan, Auto Loan, and Mortgage Loan",,12,10.6,8,Standard,892.49,43.17284208,16 Years and 5 Months,Yes,172.5333321,509.8123354,High_spent_Large_value_payments,793.3367934,0,1.2087,-1.3768,0.2799,-0.6817,-0.4146 -0x6295,CUS_0x286c,August,49,637-19-7311,Engineer,31230.16,,6,5,8,2,"Credit-Builder Loan, and Credit-Builder Loan",12.73929881,11,2.16,7,Good,669.7749846,26.29418931,28 Years and 2 Months,No,28.22094355,21.33563612,High_spent_Large_value_payments,445.0066077,0,-1.4491,-1.0588,0.3608,-0.8134,-0.2348 -0x62a1,CUS_0x677a,August,44,033-01-7360,Doctor,128331.42,10688.285,0,3,7.288361749,2,"Mortgage Loan, and Student Loan",8.83830658,9,-0.67,2,Good,462.96,31.42289122,29 Years and 3 Months,No,114.9939913,839.3777912,High_spent_Medium_value_payments,784.3941785,0,0.9927,-0.0709,0.8168,-2.1593,1.5859 -0x62ad,CUS_0x938f,August,21,723-42-6455,Teacher,157698.52,,3,3,5,3,"Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,7,9.97,0,Good,362.01,39.57239458,23 Years and 6 Months,No,12814,870.3508503,Low_spent_Medium_value_payments,436.1347354,0,-0.9104,-0.1684,0.0452,1.0891,0.1616 -0x62b9,CUS_0xb004,August,54,200-25-2968,Developer,10563.445,,7,5,12,1,Debt Consolidation Loan,21.6838968,17,4.2,1804,Standard,984.62,35.23930696,17 Years and 3 Months,No,5.968634609,61.34688277,Low_spent_Small_value_payments,297.813191,0,1.6576,0.0898,-1.0963,0.6302,0.5564 -0x62c5,CUS_0x4518,August,18,958-03-1352,Developer,60532.5,4892.375,6,3,5,4,"Auto Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",16.99626374,17,16.54,9,Standard,1475.77,27.04697533,6 Years and 10 Months,Yes,158.0288371,,Low_spent_Medium_value_payments,137.3504981,0,1.7732,0.1173,-0.0017,-0.0052,-0.5222 -0x62d1,CUS_0x2b2c,August,52,#F%$D@*&8,Entrepreneur,43312.78,3423.398333,4,1,2.288361749,0,Mortgage Loan,4.176257404,6,3.24,2,_,208.96,36.11238108,,No,25.34841995,537.1714841,High_spent_Small_value_payments,459.7573903,0,0.5258,-0.6378,-0.3428,0.5947,-1.2104 -0x62dd,CUS_0x915,August,35,361-97-3512,Journalist,19562.47,1713.205833,3,3,9,3,"Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,9,19.35,10,Standard,712.22,24.98433826,9 Years and 4 Months,Yes,30.78413779,124.5245839,!@9#%8,306.0118616,0,1.2794,-0.7405,1.952,-1.3194,-1.589 -0x62e9,CUS_0x134d,August,43,640-44-8899,Media_Manager,85324.44,7286.37,5,7,17.28836175,2,"Auto Loan, Personal Loan, and Payday Loan",12.98594522,12,16.22,7,Standard,713.09,27.72444972,28 Years and 6 Months,Yes,197.305281,699.7568703,High_spent_Medium_value_payments,501.5123097,0,-0.9316,-0.1383,0.6305,0.2899,-0.2309 -0x62f5,CUS_0x4e7a,August,47,519-19-0998,Developer,133214.25,11166.1875,3,3,1.288361749,2,"Credit-Builder Loan, Not Specified, and Not Specified",,,9.48,6,Good,59.25195835,21.43060077,19 Years and 4 Months,NM,309.157252,,Low_spent_Large_value_payments,61.51762908,0,1.0064,-0.215,-1.0184,-0.777,-0.6631 -0x6301,CUS_0xa31,August,36,#F%$D@*&8,Mechanic,107392.74,8681.395,5,5,6,1,Auto Loan,,20,10.69,4,Standard,217.9688187,30.4092793,19 Years and 11 Months,Yes,51.61389686,578.119921,High_spent_Small_value_payments,574.228892,0,1.7989,-0.0181,-1.194,-0.6043,-2.203 -0x630d,CUS_0x8c7b,August,31,862-65-2779,Writer,55197.81,,6,4,23,2,"Credit-Builder Loan, and Not Specified",,22.85038434,14.17,7,Standard,2146.809708,29.56464701,8 Years and 0 Months,Yes,78.74861889,445.980354,Low_spent_Small_value_payments,236.1527771,0,0.7126,0.3654,1.522,0.76,-0.8333 -0x6319,CUS_0x255d,August,18,471-64-8651,_______,14217.52,,6,10,33.95700519,9,"Mortgage Loan, Personal Loan, Student Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, Not Specified, and Payday Loan",28.80475484,18,15.19,13,Bad,3529.650954,36.94411307,,Yes,1403.276789,10000,Low_spent_Medium_value_payments,208.1092939,0,1.7428,0.4165,1.135,-0.4976,0.216 -0x6325,CUS_0x58b0,August,22,868-95-3928,Doctor,47873.6,,3,3,19,2,"Mortgage Loan, and Payday Loan",21.49288607,16,14.81,3,_,879.54,31.76739584,25 Years and 10 Months,Yes,57.86503767,69.08530875,High_spent_Small_value_payments,522.5963202,0,0.1349,0.0995,1.8969,-1.0105,-0.2183 -0x6331,CUS_0x98fc,August,18,458-84-2808,Doctor,17927.6,,8,5,35.06745738,6,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",39.73699744,21,3.37,8,Bad,2209.860954,32.47770666,13 Years and 9 Months,Yes,148.9237574,,Low_spent_Large_value_payments,192.3263086,0,-0.8995,1.5369,-0.1478,0.6469,1.455 -0x633d,CUS_0x621,August,55,913-83-2018,Architect,12155.275,1224.939583,7,3,9,1,Auto Loan,18.40626137,15,20.74,5,Standard,786.65,24.7837763,32 Years and 4 Months,Yes,5.138484696,,Low_spent_Small_value_payments,282.9615384,0,-0.6676,0.466,1.0936,1.2882,-1.3823 -0x6349,CUS_0x9fcc,August,55,231-11-2948,Entrepreneur,69823.72,5547.643333,4,2,2.288361749,4,"Not Specified, Not Specified, Payday Loan, and Credit-Builder Loan",0,1,6.97,5,_,163.11,31.9315811,28 Years and 5 Months,No,128.574933,644.8203563,High_spent_Medium_value_payments,451.3065051,0,0.8185,0.3735,-0.9212,2.1014,-3.0755 -0x6355,CUS_0x7526,August,55,633-30-8400,Media_Manager,67850.16,,5,6,10,3,"Home Equity Loan, Payday Loan, and Not Specified",30.1447652,21,1.17,,Standard,654.06,28.49812199,33 Years and 5 Months,No,101.0504671,,!@9#%8,607.2483031,0,1.7809,-1.4341,-0.2622,-0.8115,-0.7739 -0x6361,CUS_0x4768,August,34,579-03-5478,Engineer,36237.51,2902.7925,7,3,15,3,"Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,20,19.68,7,_,588.79,36.91523481,19 Years and 11 Months,Yes,59.88225173,85.78954338,High_spent_Medium_value_payments,394.6074549,0,-0.7209,0.5773,0.8655,0.1527,1.4901 -0x636d,CUS_0xd73,August,18,043-26-2764,Manager,8871.555,,8,7,20,9,"Mortgage Loan, Auto Loan, Student Loan, Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",,23,5.72,14,Bad,1584.64,38.04941907,16 Years and 2 Months,NM,75.635071,,Low_spent_Medium_value_payments,251.7800276,0,-1.1286,-1.0526,-0.5345,1.7644,0.5788 -0x6379,CUS_0x635a,August,28,702-03-6373,Musician,38868.12,,3,4,1,1,Debt Consolidation Loan,0,2,1.51,4,Good,1043.997333,23.86583326,24 Years and 11 Months,No,19559,,Low_spent_Small_value_payments,226.124215,0,-0.1344,0.5565,-0.1159,0.7444,0.6871 -0x6385,CUS_0xa65f,August,80,468-32-1247,Media_Manager,67726.17,5840.8475,8,7,20,2,"Not Specified, and Student Loan",13.68608437,9,8.76,5,Standard,337.25,32.57632887,,Yes,93.18869758,585.80193,!@9#%8,195.0941225,0,0.4673,0.1939,-0.6758,-1.8535,0.7272 -0x6391,CUS_0x7dd5,August,25,059-66-6817,Media_Manager,69642,5842.5,2,2,11.28836175,0,Mortgage Loan,4.462346276,8,7.41,9,_,185.1428269,36.22220731,21 Years and 9 Months,No,57.05318215,605.0960593,High_spent_Medium_value_payments,610.59538,0,-0.8627,1.3793,0.8554,-0.6288,-0.243 -0x639d,CUS_0xb6eb,August,28,367-33-5973,Media_Manager,15021.48,1344.79,6,5,16.06745738,4,"Payday Loan, Credit-Builder Loan, Payday Loan, and Personal Loan",26.48843214,10.13943032,9.75,10,_,1655.818262,33.34650498,16 Years and 0 Months,NM,38.17807913,96.64952757,Low_spent_Small_value_payments,262.9311054,0,-0.7126,-0.573,0.4242,1.0918,-1.5526 -0x63a9,CUS_0x480c,August,32,595-54-0578,Engineer,17780.69,,7,7,15,7,"Home Equity Loan, Not Specified, Auto Loan, Student Loan, Student Loan, Credit-Builder Loan, and Auto Loan",,9,9.08,5,Standard,2615.51,39.63976453,10 Years and 2 Months,Yes,63.94388292,86.22888746,Low_spent_Small_value_payments,264.4996463,0,0.2698,1.5786,-0.3447,0.055,-0.4537 -0x63b5,CUS_0xad0b,August,47,675-68-0807,Lawyer,167492.8,14254.73333,2,4,11.28836175,2,"Debt Consolidation Loan, and Debt Consolidation Loan",6.942457911,9,7.34,4,Good,1471.07,33.89906408,27 Years and 3 Months,No,161.9922178,809.8748705,Low_spent_Large_value_payments,1143.543706,0,-2.354,-2.5818,-0.0737,-1.345,0.2698 -0x63c1,CUS_0x2faa,August,25,#F%$D@*&8,Mechanic,46092.75,3683.0625,9,6,25.06745738,6,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Not Specified",27.63307439,,22.19,13,Bad,5464.485138,32.62318228,6 Years and 11 Months,Yes,144.5176251,271.6841336,Low_spent_Medium_value_payments,205.3842034,0,-0.4883,2.1295,-0.032,-0.099,-0.5615 -0x63cd,CUS_0xf79,August,56,798-34-6017,Media_Manager,176015.16,14855.93,2,6,11.28836175,0,,14.81318489,,7.15,6,Good,1471.36,32.56110031,29 Years and 5 Months,No,0,10419.93746,Low_spent_Small_value_payments,1137.136128,0,0.959,-0.7057,-1.535,-0.2542,-0.6175 -0x63d9,CUS_0x5189,August,48,050-64-6459,Engineer,20591.2,,4,3,19,3,"Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,9,12.56,285,Standard,379.5526318,35.98985779,8 Years and 10 Months,Yes,193.684795,113.8419818,High_spent_Small_value_payments,287.0838359,0,0.1058,-0.1145,-0.5174,-1.0355,-0.2103 -0x63e5,CUS_0x429a,August,29,719-71-0189,Mechanic,68667.56,5929.296667,7,6,21,3,"Home Equity Loan, Student Loan, and Student Loan",15.72117637,10.61477454,15.03,7,Standard,1571.377277,26.40933337,9 Years and 8 Months,Yes,146.8274526,155.623544,High_spent_Medium_value_payments,540.4786701,0,0.2556,1.0394,1.6655,-0.3688,-0.6303 -0x63f1,CUS_0xbda9,August,23,216-65-2934,Media_Manager,68845.08,5570.09,10,7,20,6,"Personal Loan, Student Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Auto Loan",,24.14569353,2.7,11,Bad,1680.582753,39.29107876,15 Years and 9 Months,Yes,12661,54.43748012,High_spent_Large_value_payments,442.3163848,0,-1.002,-1.0468,-0.5633,0.3313,-1.1395 -0x63fd,CUS_0x8112,August,49,254-65-1126,Mechanic,124814.04,,1,3,7,2,"Personal Loan, and Student Loan",,1.204335553,6.36,6,_,746.5744507,34.30234684,22 Years and 11 Months,No,21602,159.5078377,High_spent_Large_value_payments,958.8897289,0,1.9646,0.2358,-0.3576,0.0424,1.6111 -0x6409,CUS_0x31e0,August,42,404-17-9909,Media_Manager,131908.24,11162.35333,4,4,20,0,,,12,6.72,4,Standard,344.86,45.21627626,21 Years and 5 Months,NM,0,215.871561,High_spent_Large_value_payments,1140.363772,0,0.1435,0.2562,-0.5169,1.0663,-0.1209 -0x6415,CUS_0x8f23,August,33,241-93-8701,Journalist,25701.69,,3,7,11,3,"Payday Loan, Student Loan, and Student Loan",17.53314507,11,11.22,3,Standard,315,40.37848573,23 Years and 9 Months,No,60.28924916,95.77886576,Low_spent_Small_value_payments,357.0126351,0,0.2862,0.9163,-0.1878,-0.7303,0.2845 -0x6421,CUS_0x6442,August,28,149-03-5795,Mechanic,14520.69,,8,10,32.88954781,7,"Mortgage Loan, Not Specified, Mortgage Loan, Payday Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",,23,15.62,207,_,2921.07,25.0369719,,Yes,1471.580071,,Low_spent_Small_value_payments,172.176476,0,1.2908,-1.6972,1.3994,-0.2755,-0.6587 -0x642d,CUS_0x96de,August,31,579-77-5566,Journalist,14580.98,,4,3,4652,4,"Payday Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",,20,12.88,7,Standard,2589.63,24.126021,6 Years and 5 Months,Yes,42.01859618,129.72719,Low_spent_Small_value_payments,251.3623805,0,-1.8983,-0.0338,-1.4391,1.4915,0.3985 -0x6439,CUS_0x9970,August,31,046-42-3163,Architect,70939.34,5731.611667,5,6,14,3,"Auto Loan, Home Equity Loan, and Payday Loan",18.86194797,14,8.39,8,_,261.42,31.73188396,18 Years and 5 Months,Yes,165.1123018,177.1521807,!@9#%8,490.8966842,0,1.4466,0.9985,-0.3979,0.7542,-0.0441 -0x6445,CUS_0xbb0b,August,18,129-04-0209,Journalist,44985.72,,6,4,15,4,"Credit-Builder Loan, Student Loan, Personal Loan, and Student Loan",,18,13.76,9,Standard,378.94,34.56485473,16 Years and 11 Months,Yes,118.1642134,218.5189916,!@9#%8,302.497795,0,-1.7337,-0.4648,-1.4935,1.2268,-0.3242 -0x6451,CUS_0x16cf,August,18,386-77-8198,Architect,17206.61,1523.884167,10,8,34.95700519,8,"Student Loan, Personal Loan, Mortgage Loan, Auto Loan, Student Loan, Not Specified, Payday Loan, and Auto Loan",26.89852523,16,1.85,10,_,3441.450954,33.35254001,9 Years and 8 Months,Yes,1388.805527,,Low_spent_Small_value_payments,128.0638139,0,-0.9038,-0.145,0.8347,-1.236,-0.5244 -0x645d,CUS_0x5deb,August,20,091-76-5591,Doctor,59681.56,,6,3,6,3,"Mortgage Loan, Payday Loan, and Home Equity Loan",,21,11.99,5,Standard,55.92,24.1931292,19 Years and 0 Months,No,116.2451806,626.3791824,!@9#%8,70.32197037,0,0.7681,0.2186,-0.5938,-0.8756,-1.3652 -0x6469,CUS_0x8a2b,August,36,096-57-2895,Accountant,28163.57,,6,6,16,6,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Not Specified, and Personal Loan",17.00435799,,14.96,8,Standard,58.26,36.58949696,18 Years and 2 Months,Yes,73.02032171,149.744485,Low_spent_Large_value_payments,293.9316099,0,0.7646,0.2497,0.3706,0.6218,-0.963 -0x6475,CUS_0xb0c1,August,36,569-43-2977,Manager,8175.65,424.3041667,8,10,16.95700519,7,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",41.85698422,25,21.47,11,Bad,4379.770954,23.93462998,2 Years and 11 Months,Yes,1353.600406,38.17390062,Low_spent_Large_value_payments,199.6057411,0,-0.9639,0.7005,-1.0463,0.0737,1.5844 -0x6481,CUS_0xbc9e,August,42,095-40-7540,Media_Manager,39314.02,3189.168333,7,7,23.06745738,5,"Not Specified, Home Equity Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",31.6230842,16.41522102,18.75,11,Standard,3059.899166,25.39484555,12 Years and 3 Months,Yes,82.15879169,44.73469988,!@9#%8,405.3030538,0,-0.8398,0.9414,-0.5878,1.2316,1.3267 -0x648d,CUS_0x473a,August,32,720-32-3844,Media_Manager,131693.37,,0,7,10,3,"Student Loan, Debt Consolidation Loan, and Mortgage Loan",,0,-5.22,6,Good,1557.532962,41.88364723,22 Years and 6 Months,No,208.8584734,306.8941761,Low_spent_Large_value_payments,823.8921005,0,0.7112,0.3612,1.0685,-1.4673,-1.2369 -0x6499,CUS_0x644,August,23,968-80-7886,Engineer,65300.22,5444.685,2,1,1,0,,0,1,2.13,2,Good,701.5600642,27.46074833,30 Years and 10 Months,No,0,331.0530225,High_spent_Small_value_payments,512.8258239,0,-0.6191,0.0665,-0.5064,-0.868,-1.8441 -0x64a5,CUS_0x2ad8,August,45,305-23-1369,Manager,17770.795,,7,7,6,4,"Not Specified, Personal Loan, Auto Loan, and Student Loan",,20,15.04,2,_,429.74,36.99943347,20 Years and 5 Months,Yes,35.83161116,10000,Low_spent_Small_value_payments,230.5257948,0,-0.9539,-0.0923,0.7155,-0.2892,-1.2473 -0x64b1,CUS_0x5848,August,32,973-59-7321,Developer,73623.22,5919.268333,5,3,4.288361749,2,"Personal Loan, and Debt Consolidation Loan",10.1216722,10,16.52,4,Good,67.43959891,34.40606286,32 Years and 2 Months,No,91.92554901,1334.737381,Low_spent_Small_value_payments,,0,0.4095,-0.6494,-0.8009,3.034,-0.3712 -0x64bd,CUS_0x1962,August,36,209-16-3037,Mechanic,33645.24,,4,6,2,3,"Auto Loan, Not Specified, and Mortgage Loan",,14,14.47,9,Good,1077.209186,34.68917882,16 Years and 10 Months,No,337.5340855,121.5939823,High_spent_Medium_value_payments,353.0228386,0,-1.3243,0.538,1.0204,0.8489,2.0816 -0x64c9,CUS_0xd33,August,40,897-09-1805,Musician,54167.61,4806.9675,8,8,2616.889548,6,"Student Loan, Not Specified, Home Equity Loan, Personal Loan, Auto Loan, and Personal Loan",30.04685435,,12.41,13,_,2319.827525,34.6187565,19 Years and 9 Months,Yes,61257.48344,152.3647514,High_spent_Medium_value_payments,316.5705054,0,0.3947,-0.6427,0.058,-0.4401,-0.3095 -0x64d5,CUS_0x7a53,August,80,229-75-0347,Accountant,8489.19,908.4325,6,10,20,6,"Personal Loan, Student Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Credit-Builder Loan",30.5220904,21.62548532,25.25,13,_,3675.600763,26.41343514,11 Years and 9 Months,Yes,26.42685604,83.73638456,Low_spent_Medium_value_payments,260.6800094,0,-0.5843,0.7568,0.965,-0.9415,-0.41 -0x64e1,CUS_0x6734,August,20,276-02-5954,Teacher,30922.5,,8,8,26,9,"Auto Loan, Payday Loan, Not Specified, Personal Loan, Not Specified, Payday Loan, Auto Loan, Auto Loan, and Mortgage Loan",,21,19.83,13,Bad,4742.53,26.42234047,1 Years and 5 Months,Yes,165.8918207,,!@9#%8,226.291118,0,1.0924,0.5082,0.8383,0.8114,-0.238 -0x64ed,CUS_0x3678,August,18,018-45-4860,Entrepreneur,15984.15,1303.0125,5,7,34,7,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Personal Loan",23.66111844,16.30111883,15.77,11,Standard,1556.786749,36.11814841,7 Years and 5 Months,Yes,69.52726572,,Low_spent_Small_value_payments,240.4489965,0,2.563,0.3881,-1.6009,0.064,-0.3253 -0x64f9,CUS_0x4ff7,August,19,366-35-7290,_______,16873.05,,6,8,22.06745738,7,"Mortgage Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",,26.78933716,0.67,11,Bad,4230.109978,28.00506764,6 Years and 9 Months,Yes,94.87730915,,Low_spent_Small_value_payments,213.6579119,0,0.7507,1.5899,-1.2766,1.5758,-0.4231 -0x6505,CUS_0xa90a,August,35,584-75-6404,Mechanic,34297.9,2801.158333,10,8,16.88954781,8,"Payday Loan, Home Equity Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,18,21.5,15,Bad,4469.48,35.62424324,3 Years and 2 Months,Yes,1499.289932,,High_spent_Small_value_payments,172.5102249,0,-0.2361,2.0808,-0.5499,-2.229,-0.006 -0x6511,CUS_0x12ea,August,18,511-49-3728,Doctor,38980.76,3172.396667,8,8,25,9,"Home Equity Loan, Not Specified, Personal Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Personal Loan",,17,16.43,10,Bad,2927.1,40.39762433,,Yes,167.536749,78.63531026,High_spent_Medium_value_payments,321.0676074,0,-1.2346,0.8986,-1.2513,0.5281,1.5066 -0x651d,CUS_0xac6f,August,28,506-50-6419,Manager,62845.76,,2,3,6.288361749,2,"Personal Loan, Student Loan, and Home Equity Loan",0,0,8.69,3,Good,463.98,28.6287856,27 Years and 9 Months,No,118.3240669,562.2142864,!@9#%8,496.0137744,0,-0.3685,-0.7851,0.5015,1.6877,0.6406 -0x6529,CUS_0x68a7,August,30,437-07-5714,Mechanic,59438.88,5163.24,10,8,31.88954781,7,"Student Loan, Not Specified, Personal Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",44.47956957,25.20192209,8.42,12,Bad,2643.974015,25.66054182,6 Years and 8 Months,Yes,1557.798084,107.79238,High_spent_Medium_value_payments,406.4034544,0,0.5425,0.3747,0.3443,-2.8124,0.9969 -0x6535,CUS_0x8562,August,26,860-07-0221,Musician,29441.78,2192.481667,8,6,24.06745738,7,"Auto Loan, Not Specified, Credit-Builder Loan, Not Specified, Mortgage Loan, Personal Loan, and Student Loan",,21.86227003,-3.57,10,Bad,4285.766264,40.58749568,11 Years and 9 Months,Yes,111.4169523,35.85405821,High_spent_Large_value_payments,285.2568682,0,-0.4507,-0.1884,0.0857,0.0819,-0.4361 -0x6541,CUS_0x5435,August,47,196-26-4721,Mechanic,35263.44,2739.62,6,5,5,0,,15.22231296,15,9.21,7,Standard,354.0478958,32.38408945,27 Years and 11 Months,No,0,,Low_spent_Medium_value_payments,293.4703849,0,-0.8128,-1.3243,0.2487,0.4403,0.7764 -0x654d,CUS_0xc649,August,49,#F%$D@*&8,_______,44066.78,3424.231667,5,4,5.288361749,4,"Student Loan, Personal Loan, Not Specified, and Not Specified",6.065251439,7,6.29,2,Good,262.3415931,36.23708168,,No,80.90792383,,!@9#%8,446.197905,0,1.6794,-0.0741,-0.4687,-0.2681,1.7661 -0x6559,CUS_0xa446,August,25,833-79-5648,Lawyer,44164.8,3425.4,8,7,14,4,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",9.038917453,8.086400979,9.08,7,Standard,1812.476651,26.90956827,7 Years and 10 Months,NM,122.8290881,31.74311462,High_spent_Large_value_payments,427.9677973,0,0.2855,-0.4714,-0.9751,0.0022,0.9738 -0x6565,CUS_0x6449,August,39,322-90-7216,Lawyer,31227.62,,0,4,1,2,"Mortgage Loan, and Mortgage Loan",,7,6.08,5,Good,316.3070871,39.60998627,28 Years and 10 Months,NM,26.87214052,253.9578685,Low_spent_Large_value_payments,287.8706425,0,-0.6313,-0.2227,1.6442,-1.427,0.1633 -0x6571,CUS_0x4d2,August,51,543-49-0684,Accountant,97688.4,7872.7,6,7,13,2,"Not Specified, and Personal Loan",23.76839188,20,1.63,1,Standard,1299.16,24.1232059,27 Years and 4 Months,No,122.7289035,547.8388394,High_spent_Small_value_payments,376.7022571,0,-0.532,-1.4612,-0.4072,-1.1269,0.1339 -0x657d,CUS_0xc3d0,August,37,954-21-6713,Mechanic,53265.96,4286.83,9,5,29,5,"Mortgage Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Personal Loan",36.62685024,19,2.11,13,Bad,2545.1,25.9245395,9 Years and 3 Months,Yes,120.8035149,10000,High_spent_Large_value_payments,453.9069061,0,-0.9997,-0.1568,1.0374,0.1998,0.7435 -0x6589,CUS_0x2543,August,34,272-87-2927,_______,22438.27,1856.855833,7,7,9,4,"Mortgage Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",24.17233371,18.97416578,11.24,3,Standard,187.7323941,29.52679627,29 Years and 4 Months,NM,58.43630796,,Low_spent_Small_value_payments,225.9937341,0,-0.1808,-0.8088,0.4901,-0.7839,-0.3318 -0x6595,CUS_0x60ad,August,24,058-60-7291,Accountant,92949.78,7774.815,0,5,10,4,"Home Equity Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",14.62999408,13,13.88,3,Good,1037.46,41.83754055,25 Years and 4 Months,No,197.3048886,10000,High_spent_Medium_value_payments,537.3424873,0,-1.0111,0.1678,-0.3963,-0.0695,-1.2326 -0x65a1,CUS_0x82a1,August,20,503-64-5538,Entrepreneur,16684.91,,8,1395,28.06745738,7,"Auto Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Auto Loan, and Payday Loan",44.58604379,24,6.22,11,_,2812.260954,34.42411573,5 Years and 9 Months,Yes,63.77127116,,Low_spent_Small_value_payments,250.1189979,0,-1.0547,0.4622,-0.227,-1.1475,0.0516 -0x65ad,CUS_0x2ce1,August,33,607-25-6092,Doctor,37648.1,,6,6,19,6,"Debt Consolidation Loan, Not Specified, Not Specified, Mortgage Loan, Debt Consolidation Loan, and Student Loan",,20.31847874,2.59,6,Bad,2505.581907,34.15899941,10 Years and 2 Months,Yes,117.6830011,139.7164772,!@9#%8,332.5346883,0,-1.6011,0.3354,-0.4958,-1.6599,-1.1474 -0x65b9,CUS_0x38a0,August,44,292-44-8964,Entrepreneur,18260.43,,3,6,15,7,"Mortgage Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",25.05799945,16,11.21,5,Standard,1709.16,23.58700646,18 Years and 2 Months,Yes,80.2931042,63.63974459,Low_spent_Large_value_payments,267.4374012,0,0.4366,0.1029,1.2854,1.2059,0.2057 -0x65c5,CUS_0x906e,August,25,615-78-0586,Manager,39608.9,3503.741667,6,5,32.06745738,9,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Student Loan, Personal Loan, Personal Loan, Not Specified, and Credit-Builder Loan",41.00068739,20.26954061,4.96,9,Bad,3527.698008,28.18681543,14 Years and 5 Months,Yes,220.661473,66.22746891,High_spent_Medium_value_payments,286.7649368,0,0.459,0.7465,0.1485,0.5065,1.8502 -0x65d1,CUS_0x399d,August,26,276-27-5074,Developer,56285.44,,5,929,12,100,"Credit-Builder Loan, Personal Loan, and Personal Loan",9.065921102,7.860354264,1.25,5,Good,32.25195199,41.52688305,21 Years and 9 Months,No,106.7641986,105.4585865,High_spent_Large_value_payments,526.8225482,0,-1.4606,0.0223,1.7466,0.8668,2.0018 -0x65dd,CUS_0xbccb,August,45,514-06-0714,Engineer,41535.69,3622.3075,0,4,12,0,,2.401749755,1.184828835,4.45,7,_,1214.288065,24.01679277,27 Years and 10 Months,No,0,10000,Low_spent_Small_value_payments,423.0092772,0,1.3501,1.53,1.4104,0.0846,-0.0811 -0x65e9,CUS_0x684a,August,23,056-57-6013,Journalist,81298.72,6768.893333,9,8,23.06745738,5,"Auto Loan, Not Specified, Not Specified, Auto Loan, and Home Equity Loan",32.41217353,17,16.15,17,_,4889.610954,37.56286492,9 Years and 0 Months,Yes,208.7553936,126.0374605,High_spent_Large_value_payments,555.3761913,0,-0.6928,-0.4452,0.4184,0.8494,-0.8462 -0x65f5,CUS_0x4bdd,August,33,065-33-0030,Scientist,90664.48,7848.373333,4,6,8,0,,,11,10.53,2,Good,901.1986071,37.06891759,22 Years and 10 Months,No,0,586.7914931,Low_spent_Medium_value_payments,560.6829206,0,2.4848,-0.427,-0.3532,0.4984,0.0603 -0x6601,CUS_0x24e9,August,31,990-12-9600,Manager,120671.25,9851.9375,4,3,3,4,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Student Loan",5.855003771,9,10.96,3,Good,755.16,34.21772487,16 Years and 4 Months,No,320.7427557,126.4796283,!@9#%8,777.971366,0,-1.5951,0.5528,0.5818,0.0138,-3.0461 -0x660d,CUS_0x51db,August,29,037-73-8964,Manager,14958.69,,6,10,22.06745738,6,"Auto Loan, Mortgage Loan, Personal Loan, Not Specified, Home Equity Loan, and Personal Loan",24.52295223,14,29.84,15,_,4597.350954,35.86971033,2 Years and 11 Months,Yes,65.36923331,30.34520103,High_spent_Small_value_payments,272.8210277,0,-0.5801,0.2546,0.6564,-1.1667,0.6538 -0x6619,CUS_0x9ae3,August,18,339-72-7902,Media_Manager,8229642,7424.5125,5,5,13,1,Auto Loan,,,10.02,10,_,1428.48,41.91037377,,NM,69.43241361,,High_spent_Large_value_payments,856.143188,0,0.9482,0.7247,-0.6068,0.0652,-0.3407 -0x6625,CUS_0x176b,August,25,917-47-6490,Journalist,44640.32,3792.026667,3,6,1,4,"Not Specified, Personal Loan, Not Specified, and Not Specified",9.685533019,10,10.19,5,Good,700.43,37.01483849,19 Years and 4 Months,No,123.4762644,,Low_spent_Small_value_payments,123.5443768,0,-0.3234,0.4011,1.6235,-0.896,-1.6494 -0x6631,CUS_0x907d,August,48,#F%$D@*&8,Mechanic,29085.38,,3,5,16,4,"Auto Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",18.67735273,12,15.71,4,Standard,328.7,27.39801903,,Yes,88.01862847,,Low_spent_Small_value_payments,218.1399712,0,-0.9891,-1.2912,-0.7541,-0.0946,-1.4435 -0x663d,CUS_0xc21f,August,38,588-46-3067,Teacher,78385.2,6744.1,9,5,21,8,"Personal Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Personal Loan, Student Loan, Student Loan, and Student Loan",,16,17.31,13,Bad,3276.46,37.93736187,9 Years and 3 Months,Yes,454.5267012,158.0742219,High_spent_Large_value_payments,301.8090769,0,0.7877,-0.0315,-1.2018,-0.2133,0.4586 -0x6649,CUS_0x8e82,August,38,002-00-8104,Scientist,73656.76,6168.063333,5,7,8,2,"Payday Loan, and Debt Consolidation Loan",4.118144426,5,5.76,1,_,777.97,31.59456834,31 Years and 11 Months,NM,109.3812771,556.5405882,Low_spent_Small_value_payments,240.884468,0,0.6677,-1.2274,1.6917,0.2406,0.7363 -0x6655,CUS_0x8271,August,40,213-49-2021,Media_Manager,20127.115,1800.259583,4,4,8,2,"Not Specified, and Payday Loan",5.122683593,6,16.59,5,Good,328.91,24.47621914,18 Years and 5 Months,No,29.95954,43.29706342,High_spent_Large_value_payments,346.7693549,0,0.6585,-0.207,-2.1265,0.4155,-1.3033 -0x6661,CUS_0x45f1,August,49,900-25-3681,Writer,41235.33,3384.2775,3,3,1,3,"Personal Loan, Home Equity Loan, and Personal Loan",0.411575291,3,5.93,2,Good,734.69,37.16056526,17 Years and 0 Months,No,78.37418745,,Low_spent_Large_value_payments,229.617427,0,0.2271,0.9394,0.7856,0.8545,0.0784 -0x666d,CUS_0xba93,August,27,616-90-1633,Entrepreneur,57838.06,,3,4,8,2,"Student Loan, and Payday Loan",1.690349425,3,0.75,0,_,1255.589211,25.8679235,24 Years and 4 Months,No,83.8174826,467.2551067,Low_spent_Medium_value_payments,243.1924075,0,-0.0812,1.1428,0.4058,0.0678,2.2125 -0x6679,CUS_0x9ca4,August,19,616-47-6180,Writer,60183.14,4933.261667,3,6,12,7,"Auto Loan, Payday Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,11,17.52,7,_,1167.08,35.2320538,17 Years and 5 Months,Yes,195.8564065,156.0564114,High_spent_Medium_value_payments,391.4133488,0,-1.7058,-1.4363,-0.1688,-1.0929,1.2996 -0x6685,CUS_0xb433,August,24,330-66-4703,Journalist,33214.4,2842.866667,8,6,22,9,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Student Loan, Auto Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",42.18534907,22.5321711,18.48,7,_,2980.888161,28.14729098,10 Years and 6 Months,Yes,226.3248239,21.245966,High_spent_Large_value_payments,276.7158767,0,1.2507,-0.2666,0.9796,0.6683,-0.3909 -0x6691,CUS_0x2ca2,August,30,309-09-1879,Lawyer,166891.6,13668.63333,1,6,3.288361749,0,Payday Loan,,2,11.72,6,Good,515.62,40.83052443,32 Years and 8 Months,No,94.34933366,901.0169012,Low_spent_Small_value_payments,1081.434559,0,-1.5074,-0.7439,1.0904,0.2492,-0.1669 -0x669d,CUS_0x8837,August,19,820-70-6282,Doctor,107893.68,,3,4,5,2,"Debt Consolidation Loan, and Mortgage Loan",16.43215107,13,4.47,8,Good,597.8288074,36.49929112,16 Years and 2 Months,No,116.6571412,207.9896458,!@9#%8,830.7259468,0,1.4154,-0.9451,-0.5475,0.1189,0.447 -0x66a9,CUS_0x1009,August,26,063-67-6938,Mechanic,52312.68,4250.39,6,5,17,4,"Not Specified, Home Equity Loan, Credit-Builder Loan, and Payday Loan",,18,9.73,4,_,202.68,40.28699667,31 Years and 0 Months,Yes,108.3664671,,High_spent_Medium_value_payments,508.0123412,0,-1.0065,-0.9877,-0.5592,1.4076,-1.5568 -0x66b5,CUS_0x15a3,August,31,174-73-2790,Mechanic,16490.8,,1,3,5,2,"Student Loan, and Payday Loan",6.115268767,8,-3.5,3,Good,884.787904,27.12011428,21 Years and 6 Months,No,17.1094803,151.1613237,Low_spent_Small_value_payments,293.5628994,0,-1.1635,-0.4575,-0.8585,1.1935,0.5103 -0x66c1,CUS_0xbc0b,August,48,#F%$D@*&8,Teacher,98019.84,,7,5,6,3,"Auto Loan, Student Loan, and Home Equity Loan",25.42890761,21.79855025,5.22,5,_,1647.843913,33.56552052,21 Years and 5 Months,No,185.2959011,261.9448421,Low_spent_Medium_value_payments,621.3912568,0,-1.6957,-1.5225,0.974,-0.2486,-1.4756 -0x66cd,CUS_0x2ac3,August,26,#F%$D@*&8,Lawyer,131931.12,11045.26,5,5,12,2,"Credit-Builder Loan, and Personal Loan",1.401388379,3,3.19,6,Good,1204.082749,36.25085306,18 Years and 3 Months,No,177.8934917,11199.00462,Low_spent_Medium_value_payments,916.6862311,0,-0.4161,0.7032,0.2895,1.6176,0.5497 -0x66d9,CUS_0x3793,August,31,911-18-1721,Lawyer,8151.41,926.2841667,9,7,16.06745738,6,"Home Equity Loan, Auto Loan, Mortgage Loan, Student Loan, Payday Loan, and Student Loan",,23,3.59,9,Bad,1641.860954,29.3469703,6 Years and 5 Months,Yes,29.33729855,16.47571945,High_spent_Large_value_payments,260.0951107,0,0.5602,1.3501,0.4798,-0.0247,0.8761 -0x66e5,CUS_0x4b40,August,19,820-41-6857,Journalist,40009.74,3552.145,3,6,15,4,"Debt Consolidation Loan, Personal Loan, Payday Loan, and Not Specified",10.52075215,11,9.12,6,Standard,1372.21,39.79532495,21 Years and 6 Months,Yes,126.7979235,67.41580054,High_spent_Medium_value_payments,411.000776,0,-0.1717,-1.5466,-1.7985,-0.1236,0.5587 -0x66f1,CUS_0x3640,August,37,861-85-8462,Developer,15432.2,1201.016667,2,6,7,4,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",2.532390749,3,3.27,3,_,1346.169173,32.23468315,16 Years and 4 Months,No,30.02712483,95.02102383,Low_spent_Medium_value_payments,289.2215119,0,-1.1484,-0.0248,0.562,-0.6378,-0.2961 -0x66fd,CUS_0x8e4e,August,18,214-10-3146,Writer,24444.2,1738.016667,8,7,12,6,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Student Loan",11.73881914,8,8.24,9,Standard,718.42,29.64816603,15 Years and 2 Months,Yes,76.60697244,18.7968662,High_spent_Large_value_payments,318.397828,0,0.5234,1.037,-1.3093,-0.206,0.3068 -0x6709,CUS_0x919,August,18,865-33-7569,Doctor,107774.28,9142.19,1,7,10,2,"Payday Loan, and Mortgage Loan",6.262521525,6,9.78,2,Good,937.74,39.37587877,,No,128.76241,212.295615,High_spent_Large_value_payments,813.160975,0,0.9504,0.0064,0.2915,0.6716,1.3507 -0x6715,CUS_0x9ad1,August,35,121-98-9978,Journalist,11586.145,,8,4,11,100,"Student Loan, Student Loan, Home Equity Loan, and Payday Loan",19.29629429,17,7.38,0,Good,403.13,31.97605134,,No,22.19108629,15.6573664,High_spent_Medium_value_payments,335.1027556,0,2.1144,0.4696,-2.0204,-0.8987,0.542 -0x6721,CUS_0x9ab6,August,25,999-17-4007,Mechanic,37909.82,,4,4,9,3,"Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",,11.43822258,11.44,,Standard,1993.641535,30.69951261,16 Years and 2 Months,Yes,87.14641216,184.3189719,Low_spent_Medium_value_payments,312.8497826,0,-1.2757,0.7512,-1.4172,-0.6468,0.9156 -0x672d,CUS_0x2b5d,August,23,#F%$D@*&8,Media_Manager,19856.16,1537.68,8,4,32,5,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",,785.6952906,10.81,7,Standard,2401.045519,34.92331268,11 Years and 9 Months,Yes,46.93161888,28.67094224,High_spent_Large_value_payments,318.1654389,0,-1.1949,1.3264,0.8631,-0.7449,-0.9267 -0x6739,CUS_0x9a29,August,25,339-28-0072,Developer,33119.82,,10,5,32,5,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Not Specified",39.54619927,21.21155548,15.79,10,Bad,2826.602054,33.81056655,14 Years and 8 Months,Yes,111.4227018,,Low_spent_Small_value_payments,370.6074981,0,-1.1532,-0.6652,-0.646,1.2356,1.4146 -0x6745,CUS_0x7403,August,33,#F%$D@*&8,Journalist,31400.96,,8,7,31.06745738,7,"Auto Loan, Debt Consolidation Loan, Student Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",,29.12928413,2.73,13,Bad,4023.683388,35.21488006,5 Years and 3 Months,Yes,181.1676326,182.6711772,Low_spent_Medium_value_payments,122.4155689,0,0.0912,-1.067,-1.1234,-0.6899,-1.3501 -0x6751,CUS_0x85b,August,26,253-80-8250,Lawyer,24342.5,,5,5,3,1,Home Equity Loan,,19.19774138,0.6,3,Standard,62.25267154,39.98089466,28 Years and 5 Months,No,18.66976844,99.60776188,!@9#%8,377.4766363,0,-1.3908,-2.3009,1.3236,-0.5344,-0.5908 -0x675d,CUS_0xebb,August,43,524-10-9802,Journalist,70078.82,5727.901667,7,6,13,2,"Payday Loan, and Debt Consolidation Loan",10.09861055,10,1.25,4,Standard,1169.99,33.9075682,23 Years and 11 Months,No,71.66882169,10000,High_spent_Small_value_payments,432.3547303,0,0.8657,-0.4102,0.2934,-0.3314,0.037 -0x6769,CUS_0x6fe2,August,26,164-17-6558,Accountant,62214.36,,9,7,19,9,"Credit-Builder Loan, Student Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,17.96471372,1.05,11,Bad,3223.8237,28.61522101,14 Years and 5 Months,Yes,339.9715818,,Low_spent_Large_value_payments,203.9875592,0,1.7051,-0.4546,-1.0563,0.3266,-0.7061 -0x6775,CUS_0x16b1,August,36,#F%$D@*&8,_______,67412.2,5911.683333,6,5,7,2,"Credit-Builder Loan, and Home Equity Loan",18.06504598,,18.7,9,Standard,765.0609192,37.42008794,28 Years and 9 Months,Yes,106.5929342,11287.97587,High_spent_Medium_value_payments,508.8714529,0,0.0326,0.7737,-0.5306,0.3981,-0.1636 -0x6781,CUS_0xa53,August,36,243-69-8365,Musician,107289.36,9031.78,6,4,6.288361749,2,"Mortgage Loan, Personal Loan, and Mortgage Loan",8.272809686,9,7.77,5,_,815.62,31.98545351,,NM,207.7777289,479.6073926,High_spent_Large_value_payments,875.7303395,0,0.2764,-0.5882,0.8373,-0.5155,0.7529 -0x678d,CUS_0x7df,August,26,556-57-5003,Accountant,14406.71,,6,7,33.06745738,7,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Student Loan",,23.61230902,1.61,14,Bad,1623.703098,35.88369985,17 Years and 6 Months,Yes,53.55003158,,Low_spent_Small_value_payments,213.8569615,0,-1.0838,1.4038,0.8477,0.4333,-0.5642 -0x6799,CUS_0x120d,August,27,477-68-6707,Lawyer,18743.075,,2,7,4,4,"Home Equity Loan, Not Specified, Not Specified, and Personal Loan",11.51890212,12,9.46,0,Good,164.5199804,34.88858653,,No,57.80181333,,Low_spent_Small_value_payments,225.2149828,0,-0.703,0.3654,1.4348,1.8438,-0.2914 -0x67a5,CUS_0x4bb,August,29,620-77-4360,Scientist,10401.21,657.7675,9,10,23.06745738,2,"Auto Loan, and Debt Consolidation Loan",29.65236314,16,0.71,15,Bad,2330.110954,37.62399225,7 Years and 11 Months,Yes,14574,64.40848425,Low_spent_Medium_value_payments,239.9686866,0,-1.2341,-1.1529,-0.6553,-0.5732,0.1847 -0x67b1,CUS_0x225a,August,37,900-33-4232,Journalist,90160.11,,5,3,20,4,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Not Specified",,16,3.87,2,Standard,1174.21,39.08696464,24 Years and 9 Months,Yes,238.8958478,147.5323125,High_spent_Large_value_payments,594.8060897,0,0.5792,-1.5585,-2.9167,0.5421,-0.7686 -0x67bd,CUS_0xb88a,August,44,498-50-3055,Engineer,84355.98,7304.665,4,4,9,1,Student Loan,12.81829125,,2.07,8,Good,586.058748,27.26486868,19 Years and 4 Months,No,46.35026905,112.4538548,High_spent_Large_value_payments,822.412608,0,-0.7219,0.1492,-0.2324,-0.3844,0.5528 -0x67c9,CUS_0xc5fe,August,18,957-52-1731,Doctor,7804958,567.7979167,9,10,26,5,"Payday Loan, Not Specified, Personal Loan, Home Equity Loan, and Personal Loan",27.30676088,16,26.22,15,Bad,3848.3,36.05332976,14 Years and 2 Months,Yes,33.49243443,32.27363022,Low_spent_Small_value_payments,281.013727,0,-0.2399,0.6099,0.5441,0.4275,1.0858 -0x67d5,CUS_0x6c45,August,41,788-26-3109,Architect,41600.34,3507.695,7,3,18.06745738,6,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",,12.02396602,11.32,11,Standard,3210.634533,24.76489233,20 Years and 4 Months,Yes,137.6423097,169.0000479,Low_spent_Medium_value_payments,297.4068545,0,-0.4661,-0.7447,-0.2088,0.2504,0.4794 -0x67e1,CUS_0x82f2,August,24,597-88-0075,Entrepreneur,14114.89,,8,5,5,5,"Personal Loan, Payday Loan, Debt Consolidation Loan, Student Loan, and Payday Loan",,14,18.37,7,Standard,1453.95,39.1628458,11 Years and 0 Months,Yes,53.14898591,,Low_spent_Small_value_payments,229.5133736,0,0.2182,-0.4651,0.6102,-2.6374,1.2567 -0x67ed,CUS_0xb56b,August,33,188-19-3911,Scientist,74192.07,,4,4,18,3,"Credit-Builder Loan, Student Loan, and Mortgage Loan",,22,11.59,5,_,1200.73,27.17765354,22 Years and 4 Months,Yes,101.0662155,137.6355257,High_spent_Large_value_payments,621.3655088,0,-1.0994,-0.0746,0.9244,0.246,0.8809 -0x67f9,CUS_0x6133,August,48,#F%$D@*&8,Engineer,85862.6,,3,7,13,0,,,18,7.58,4,Standard,1057.55803,28.41816139,17 Years and 2 Months,Yes,0,315.422431,High_spent_Small_value_payments,682.2846455,0,0.0162,0.9623,-0.1939,2.1347,-0.2547 -0x6805,CUS_0x4791,August,35,#F%$D@*&8,Musician,19213.83,,10,10,21.95700519,8,"Debt Consolidation Loan, Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",,26.85712905,18.67,10,Bad,5709.634092,40.35617088,0 Years and 11 Months,Yes,1428.750721,,High_spent_Small_value_payments,233.3156173,0,2.4446,-1.4418,0.3575,-1.1873,0.2673 -0x6811,CUS_0x221f,August,28,107-96-7169,Developer,18733.04,1456.086667,10,8,23.95700519,9,"Not Specified, Personal Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Student Loan, and Debt Consolidation Loan",,21,28.12,13,Bad,4025.350954,34.19826248,3 Years and 4 Months,Yes,1459.406692,,Low_spent_Medium_value_payments,206.6840142,0,0.0367,0.5032,0.0533,-1.1306,2.6344 -0x681d,CUS_0x8559,August,29,606-11-9988,Scientist,95295.57,,6,6,3,0,,24.86706033,19.99563142,11.14,1,Good,448.1158643,39.77192147,,No,0,457.219218,Low_spent_Large_value_payments,607.110532,0,0.5118,-0.4766,2.4243,-1.2519,0.0349 -0x6829,CUS_0xaefb,August,36,184-09-5383,Developer,19055.25,1875.9375,8,7,14,1,Credit-Builder Loan,23.01401518,18,8.63,5,Standard,61.58,30.78049658,22 Years and 3 Months,Yes,15.43022105,87.68356973,Low_spent_Large_value_payments,354.4799592,0,1.4919,0.4958,-0.696,-0.0258,-0.9373 -0x6835,CUS_0x9b12,August,32,846-71-4710,Teacher,18378.81,1797.5675,6,3,34,7,"Personal Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Student Loan, and Payday Loan",,13.52128169,11.04,8,Standard,2050.470535,31.62408244,13 Years and 0 Months,Yes,92.85896939,78.30843055,Low_spent_Small_value_payments,298.5893501,0,1.2596,1.0574,0.2594,0.24,1.5372 -0x6841,CUS_0x7563,August,39,844-48-7506,Scientist,20027.03,1889.919167,4,6,6,5,"Auto Loan, Not Specified, Payday Loan, Credit-Builder Loan, and Student Loan",22.57461204,17,14.72,5,_,1183.81,31.8202539,8 Years and 2 Months,Yes,79.26223804,10000,Low_spent_Small_value_payments,310.5462058,0,-0.4256,-0.7672,0.9711,-0.2616,0.6163 -0x684d,CUS_0x588e,August,32,192-93-2734,Teacher,10380.655,,3,5,19,5,"Mortgage Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",,8,17.04,8,Standard,2417.2,24.60648033,,NM,24.14549591,19.53405123,High_spent_Medium_value_payments,318.5259112,0,-1.6833,-1.2075,-1.085,1.3455,-0.3602 -0x6859,CUS_0xc507,August,22,474-65-8064,Writer,50340.14,,7,4,15,1,Student Loan,27.02733648,18,11.25,7,Standard,464.51,32.94204362,25 Years and 0 Months,No,33.18739404,203.2609712,High_spent_Small_value_payments,451.9528014,0,0.1172,-0.213,-1.6708,-0.3737,-0.2363 -0x6865,CUS_0x93a5,August,45,905-92-0207,Lawyer,16060.675,,6,7,7,3,"Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,14,9.79,8,_,57.82,36.87915523,18 Years and 0 Months,Yes,196.5650774,148.7455297,Low_spent_Small_value_payments,264.0424553,0,0.5913,0.3582,0.891,0.7899,0.4435 -0x6871,CUS_0x1f8c,August,37,745-18-8559,Musician,106418.67,8961.2225,3,6,15,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",22.75070395,18.08463956,19.31,12,Standard,942.6683955,32.41049495,5 Years and 8 Months,Yes,239.2457498,377.9361775,Low_spent_Medium_value_payments,558.9403227,0,-0.1631,0.3866,-0.5427,1.789,0.5869 -0x687d,CUS_0x41de,August,41,233-05-2790,Journalist,17680.78,,10,5,17,6,"Student Loan, Personal Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",15.30169378,10.44539521,,12,Standard,2475.925987,40.50493012,9 Years and 2 Months,Yes,75.38738428,99.21841381,Low_spent_Small_value_payments,281.7340352,0,-1.4029,0.4364,-0.7382,1.4546,0.7475 -0x6889,CUS_0x5c1f,August,60,776-09-6859,Architect,58885.7,,1,6,1.288361749,2,"Debt Consolidation Loan, Home Equity Loan, and Student Loan",8.640318763,11,0.9,0,Good,367.2697958,29.69042794,24 Years and 3 Months,No,105.7550795,476.2670228,High_spent_Large_value_payments,551.9188715,0,-0.5201,0.271,-0.9727,-0.2048,0.4025 -0x6895,CUS_0xa1a0,August,23,894-75-4637,Scientist,44178.15,,4,3,5.288361749,4,"Not Specified, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",0,1,12.08,4,Good,300.68,28.48812416,18 Years and 0 Months,No,123.549902,,Low_spent_Large_value_payments,183.9031146,0,0.4475,0.1367,1.5573,-0.0492,0.2141 -0x68a1,CUS_0x8304,August,36,538-58-1635,Entrepreneur,29216.96,2411.746667,8,9,23.06745738,7,"Personal Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Mortgage Loan",35.29459727,19,23.37,17,Bad,3947.543472,30.9254167,7 Years and 4 Months,Yes,92.14302803,186.3646958,High_spent_Small_value_payments,222.3072674,0,0.2144,0.341,-0.5068,-0.6615,-0.5913 -0x68ad,CUS_0x13b5,August,54,023-34-9301,Lawyer,17931.375,,6,6,16,3,"Auto Loan, Not Specified, and Mortgage Loan",10.9019438,8,8.3,3,_,51.82,30.06874118,16 Years and 11 Months,No,43.58458276,160.9510785,Low_spent_Small_value_payments,248.7924637,0,-1.1261,-1.6931,-0.9114,0.8692,1.6755 -0x68b9,CUS_0x848e,August,36,276-47-1545,Doctor,7681.49,855.1241667,9,6,28,6,"Student Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",,26,27.56,8,Bad,2678.79,27.33564554,,Yes,31.61640814,37.71160086,High_spent_Small_value_payments,276.1844077,0,1.9432,-1.0278,0.5251,1.1807,0.1094 -0x68c5,CUS_0x6423,August,29,701-26-8627,Entrepreneur,68309.04,5422.231059,10,7,18,5,"Payday Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Auto Loan",36.11180983,22,17.11,14,Bad,3770.833449,36.31666214,12 Years and 2 Months,Yes,782.099839,11274.15125,High_spent_Medium_value_payments,334.9881002,0,-1.0623,1.0737,-0.7719,-0.0892,-0.7783 -0x68d1,CUS_0xc70d,August,21,281-36-9148,Scientist,17910.36,1521.53,5,7,15,6,"Credit-Builder Loan, Personal Loan, Not Specified, Not Specified, Student Loan, and Not Specified",14.51764025,9.525413543,8.13,10,Standard,2946.555268,38.16441253,10 Years and 2 Months,Yes,59.67444743,,Low_spent_Small_value_payments,203.0203955,0,-1.2397,-0.1816,1.4665,-1.8725,0.0159 -0x68dd,CUS_0x24a8,August,46,155-52-3116,Media_Manager,20645.48,,1605,7,2,0,,17.10111704,14,4.67,3,Good,221.6434089,32.23577695,19 Years and 6 Months,No,0,135.1209089,Low_spent_Medium_value_payments,327.3736303,0,-0.8768,0.3819,-0.8187,0.7485,0.3824 -0x68e9,CUS_0xc5e2,August,33,782-19-9567,Scientist,89162.3,,0,3,4,3,"Payday Loan, Debt Consolidation Loan, and Not Specified",2.790962367,4,4.6,4,Good,1280.41,25.87167243,,No,114.8486754,62.89667759,High_spent_Large_value_payments,776.7738137,0,-0.5303,-0.1781,0.08,0.5462,-0.4062 -0x68f5,CUS_0x19ad,August,44,881-97-6963,Journalist,14293.43,,7,7,18,7,"Payday Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Not Specified",15.01735707,13,9.55,13,_,2352.93,32.53179962,6 Years and 4 Months,Yes,73.81017142,115.4185683,Low_spent_Medium_value_payments,237.2831769,0,-0.7574,1.8153,-1.4511,0.958,1.1101 -0x6901,CUS_0x59e9,August,45,222-89-5735,Developer,7059.455,,7,7,33.06745738,5,"Not Specified, Home Equity Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",,22.22023072,-1.79,7,Bad,5377.539178,29.81024241,6 Years and 6 Months,Yes,17.85711662,,Low_spent_Medium_value_payments,246.6169898,0,0.5592,-0.1867,1.2172,-0.1645,0.8759 -0x690d,CUS_0x21e9,August,26,802-04-2637,Journalist,43335.48,3670.29,7,5,19,6,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Payday Loan",27.89039589,14.85968384,15.83,12,Standard,1429.908902,33.08828923,19 Years and 2 Months,NM,133.6886868,85.46026696,High_spent_Large_value_payments,387.8800462,0,0.4228,-1.7572,-0.1944,0.2323,0.7613 -0x6919,CUS_0x392a,August,19,001-51-4145,Lawyer,14171.23,1066.935833,8,10,20,2,"Student Loan, and Auto Loan",18.45744182,,18.27,17,Standard,2406.66,23.52591812,8 Years and 2 Months,Yes,19.47912977,57.65847795,Low_spent_Small_value_payments,319.5559756,0,1.5098,-0.6766,0.9763,0.2365,1.0984 -0x6925,CUS_0x2fb8,August,27,140-99-0200,Engineer,20134.87,1501.905833,6,7,6,2,"Credit-Builder Loan, and Not Specified",17.29437863,,12.8,10,Standard,126.83,31.57442872,31 Years and 5 Months,Yes,26.03636451,,Low_spent_Medium_value_payments,253.7470157,0,0.044,0.1162,0.6669,0.4368,-0.2944 -0x6931,CUS_0x6958,August,18,811-14-4092,Manager,28312.79,,3,3,5,3,"Auto Loan, Not Specified, and Mortgage Loan",15.48341491,9,16.57,6,Standard,365.77,30.12959023,9 Years and 10 Months,NM,50.67735738,179.4586907,Low_spent_Large_value_payments,296.5038686,0,-0.0141,0.9252,0.3567,-0.4567,0.7224 -0x693d,CUS_0x4bf7,August,28,070-11-7346,Teacher,51377.88,,6,5,19,4,"Home Equity Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",24.52700216,19,6.81,7,_,372.54,37.69933602,,Yes,108.1027443,119.9369724,Low_spent_Medium_value_payments,492.6092833,0,1.6551,0.5867,0.2178,0.2077,-0.2453 -0x6949,CUS_0x7174,August,30,063-61-8403,Lawyer,7084.365,710.36375,6,6,27,7,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Payday Loan",26.22038565,19,20.3,,Standard,1293.67,25.07717051,5 Years and 9 Months,Yes,26.75812422,64.20976196,Low_spent_Small_value_payments,270.0684888,0,0.9993,0.368,0.4525,0.6306,0.5457 -0x6955,CUS_0x47ef,August,46,587-53-0913,Doctor,42237.36,3725.78,5,7,4,4,"Home Equity Loan, Personal Loan, Personal Loan, and Mortgage Loan",13.11112535,12.55338716,6,3,Good,1327.812847,26.37980171,25 Years and 11 Months,No,98.45588688,252.2764395,High_spent_Small_value_payments,281.8456737,0,1.1271,-0.122,0.0508,0.5103,0.6912 -0x6961,CUS_0x4d05,August,34,942-07-8132,Journalist,147996.72,12395.06,2,4,5.288361749,2,"Not Specified, Personal Loan, and Mortgage Loan",9.301848631,9,2.19,2,Good,216.7815056,32.42023902,23 Years and 10 Months,No,197.1329512,704.0160295,High_spent_Large_value_payments,1031.579,0,0.5287,0.0025,0.4131,-0.694,-1.7935 -0x696d,CUS_0xb189,August,38,616-02-3076,Writer,35006.38,,7,7,34.06745738,3,"Home Equity Loan, Student Loan, and Payday Loan",,20.37106528,8.57,11,Bad,3150.891802,38.22372616,13 Years and 6 Months,Yes,86.71138464,34.71834024,High_spent_Large_value_payments,402.1698205,0,-0.0317,-0.6895,0.6388,1.0309,-0.5184 -0x6979,CUS_0x5ff4,August,56,114-60-4394,Musician,28784.53,,6,6,11,2,"Home Equity Loan, and Debt Consolidation Loan",14.51875204,11,10.77,2,_,594.5101068,38.40003971,28 Years and 11 Months,No,34.16328923,88.34728484,High_spent_Medium_value_payments,391.0651125,0,1.0455,-0.2771,-0.0451,1.2401,-0.3475 -0x6985,CUS_0xa547,August,41,175-92-0346,Architect,85059.6,,4,3,16.28836175,4,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",15.16995929,15,13.62,13,Standard,353.75,28.59894256,18 Years and 0 Months,Yes,207.993083,486.5821966,High_spent_Large_value_payments,650.4921814,0,-0.4802,-0.3947,0.1546,-0.2711,0.627 -0x6991,CUS_0x8e5f,August,33,901-38-5936,Writer,80143.74,6438.645,6,5,17,3,"Auto Loan, Debt Consolidation Loan, and Payday Loan",24.0324413,15,6.52,3,_,1129.59,23.46981345,31 Years and 8 Months,No,116.2906662,,Low_spent_Small_value_payments,191.3520615,0,-0.5937,-1.1698,0.4543,-0.6889,0.736 -0x699d,CUS_0xbded,August,34,682-05-4804,Journalist,142815.12,11940.26,1,2,11.28836175,4,"Auto Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",10.87440039,12,5.84,1,Good,578.35644,26.02723065,18 Years and 5 Months,No,297.5821171,12088.93769,Low_spent_Medium_value_payments,443.1905412,0,1.8128,1.0792,0.2504,0.2372,0.7666 -0x69a9,CUS_0x47c3,August,58,589-34-3858,Journalist,49822,4116.833333,7,4,5,0,,19.03389424,16,4.66,2,_,985.9700247,32.5750022,31 Years and 2 Months,No,0,176.3231803,High_spent_Medium_value_payments,508.3668939,0,0.2202,-0.0261,-0.8916,1.7314,0.6237 -0x69b5,CUS_0x5fca,August,47,861-77-2590,Doctor,35171.34,,1,3,3,0,,16.99726574,,0.75,0,Good,665.6117942,41.17815422,31 Years and 2 Months,No,0,119.9447758,High_spent_Small_value_payments,440.8603955,0,-0.2492,-0.1153,-2.6851,0.2357,1.2125 -0x69c1,CUS_0xb047,August,32,360-85-1964,Engineer,38698.64,3335.886667,7,6,16,7,"Mortgage Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",23.36929882,,3.18,10,Bad,1371.12,34.10633429,9 Years and 11 Months,Yes,128.8067599,48.18086683,High_spent_Medium_value_payments,406.6010399,0,2.6261,-1.0288,0.9458,-0.4556,-0.033 -0x69cd,CUS_0x6e13,August,32,830-79-0141,Musician,58792.74,4876.395,1,4,1,0,,14.51177946,12,2.82,2,Good,57.78,29.82817649,18 Years and 6 Months,No,0,119.9157333,!@9#%8,607.7237667,0,-1.9956,0.7725,-0.2526,-0.3262,0.0538 -0x69d9,CUS_0xa1bd,August,41,306-16-4271,Journalist,23437.79,,8,4,20,3,"Credit-Builder Loan, Mortgage Loan, and Payday Loan",,14.41979013,7.31,6,Standard,638.0692775,22.7977552,,Yes,47.87333656,172.9693719,Low_spent_Small_value_payments,240.2722082,0,1.8139,0.1028,0.8043,0.1283,0.8587 -0x69e5,CUS_0x856c,August,32,448-64-7747,Journalist,83311.6,,10,7,27,8,"Student Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Auto Loan, and Personal Loan",,21.75075743,21.63,8,Bad,4039.590183,20.24413035,13 Years and 9 Months,Yes,474.5823662,720.8723894,Low_spent_Medium_value_payments,,0,-0.4889,0.9694,0.6473,-0.0193,1.5844 -0x69f1,CUS_0x8e29,August,25,132-26-5537,Accountant,59656.96,,7,3,106,4,"Mortgage Loan, Mortgage Loan, Student Loan, and Student Loan",15.2529478,14,10.79,12,Standard,550.32,34.13802909,14 Years and 11 Months,Yes,196.9634156,278.7024385,Low_spent_Small_value_payments,284.9754792,0,-1.9963,1.6802,-1.1807,0.0636,-0.6685 -0x69fd,CUS_0x4339,August,34,#F%$D@*&8,Developer,135596.28,11343.69,4,3,12,1,Home Equity Loan,15.068842,11.43257451,3.85,3,_,334.8070849,34.92744198,16 Years and 5 Months,No,111.1157137,213.4002401,!@9#%8,1059.853046,0,0.3232,-0.0004,0.524,-0.6792,-0.1144 -0x6a09,CUS_0xbdc2,August,34,910-30-5375,Developer,172891.36,14156.61333,3,7,0.288361749,2,"Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",0,1,5.93,6,_,922.15,37.47818302,27 Years and 5 Months,No,272.8122258,586.3275556,!@9#%8,1216.459013,0,0.5381,-0.7716,-1.7729,0.2793,-0.2004 -0x6a15,CUS_0x1192,August,80,880-23-2963,Media_Manager,16319.375,1518.947917,7,3,1,2,"Payday Loan, and Payday Loan",16.79022148,13,7.67,9,Standard,1275.32,31.40444597,23 Years and 9 Months,NM,16.29112882,112.3398676,Low_spent_Medium_value_payments,303.2637953,0,0.29,0.0265,-1.0526,-1.8284,-1.112 -0x6a21,CUS_0x6da3,August,19,855-09-6351,Engineer,58961.86,4900.488333,2,3,7.288361749,0,,15.52892778,,9.06,3,_,75.14,26.61491238,33 Years and 3 Months,No,0,561.0381446,High_spent_Medium_value_payments,598.9481498,0,0.3893,0.8793,0.8938,1.2725,0.6539 -0x6a2d,CUS_0x12d1,August,41,618-45-3370,Accountant,21384.94,,4,4,15,2,"Credit-Builder Loan, and Debt Consolidation Loan",23.40131667,15,14.37,9,Standard,691.53,24.88446435,27 Years and 0 Months,Yes,22.095625,,Low_spent_Medium_value_payments,254.2667128,0,0.0924,0.6411,-0.3242,-0.2388,2.8326 -0x6a39,CUS_0x8b62,August,28,695-69-9739,Journalist,30128.6,2716.716667,8,10,25.06745738,5,"Not Specified, Auto Loan, Student Loan, Debt Consolidation Loan, and Personal Loan",32.83055377,17.98488229,15.65,14,_,2967.464671,39.65074481,12 Years and 6 Months,Yes,93.99019329,110.2738591,Low_spent_Medium_value_payments,320.6873263,0,0.0344,-1.6973,0.4892,0.4465,1.2705 -0x6a45,CUS_0xc1cc,August,44,054-04-4459,Architect,102626.97,8733.2475,1,4,2,4,"Not Specified, Not Specified, Home Equity Loan, and Student Loan",,,7.78,4,_,1071.320197,28.63505918,31 Years and 3 Months,No,223.4082007,133.8666434,High_spent_Large_value_payments,775.721404,0,-1.1487,-1.1597,0.3205,-0.0717,0.388 -0x6a51,CUS_0x6e6c,August,26,214-30-3255,Media_Manager,59458.29,4692.8575,8,5,13,1,Personal Loan,,,6.62,1,_,1114.52,29.09211535,19 Years and 6 Months,Yes,26.33303664,485.1606069,Low_spent_Small_value_payments,247.7921065,0,0.2324,0.1247,1.0152,0.8503,0.1656 -0x6a5d,CUS_0x22d6,August,21,293-09-8968,Developer,13506.895,1369.574583,3,5,12,0,,11.77459577,8,10.97,8,Standard,945.04,32.25993591,7 Years and 0 Months,Yes,0,28.24699493,High_spent_Large_value_payments,348.7104634,0,-0.3569,-0.599,-1.1292,0.4366,-1.0207 -0x6a69,CUS_0x7edd,August,51,920-53-9907,Journalist,22246.44,1721.87,4,6,20,2,"Credit-Builder Loan, and Home Equity Loan",25.86199222,17.58781947,11.04,3,Standard,9.166089217,30.24933143,22 Years and 6 Months,No,28.44605489,,Low_spent_Small_value_payments,354.3457231,0,0.7371,-1.5971,0.4477,1.3544,-0.7479 -0x6a75,CUS_0x71ca,August,80,305-81-4718,Media_Manager,20062.49,,10,5,18,7,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, and Auto Loan",,25,21.07,11,Bad,3212.49,25.64630528,12 Years and 2 Months,Yes,67.00738512,66.19388855,Low_spent_Large_value_payments,327.686143,0,0.1062,-0.4243,-1.7291,-0.0651,-0.1063 -0x6a81,CUS_0x7dcd,August,54,812-70-4107,Manager,140731.72,,8,6,11,3,"Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",26.25769415,18,8.25,3,Standard,111.7534147,30.35430189,21 Years and 6 Months,Yes,29384,1156.038063,Low_spent_Medium_value_payments,275.8640521,0,1.0255,0.0406,-0.1995,-0.8316,-0.7252 -0x6a8d,CUS_0x3cc8,August,44,047-34-0898,Architect,14336678,,6,9,25,2,"Student Loan, and Student Loan",,,1.68,7,Bad,1479.911395,35.64490689,15 Years and 5 Months,Yes,35.19164481,73.3793707,High_spent_Small_value_payments,430.3636512,0,1.2183,-0.741,1.8121,0.0473,-0.7448 -0x6a99,CUS_0xafb5,August,21,902-21-4884,Journalist,50104.05,4323.3375,4,5,34,2,"Mortgage Loan, and Student Loan",25.59224467,16.63009894,12.59,10,Standard,1843.017461,26.00779763,19 Years and 6 Months,Yes,55.00995927,,High_spent_Medium_value_payments,575.6479051,0,1.5121,0.3801,-0.3617,-1.4386,-0.3299 -0x6aa5,CUS_0x45da,August,26,826-09-3759,Accountant,9045.635,948.8029167,7,7,19,7,"Student Loan, Payday Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",,16,16.53,12,_,3098.74,37.46430532,12 Years and 0 Months,NM,28.21245927,41.64559018,Low_spent_Small_value_payments,315.0222422,0,0.3111,1.0668,-1.8444,0.8257,2.9007 -0x6ab1,CUS_0x7a9f,August,80,190-28-3757,Scientist,62848.74,4980.395,10,6,21.06745738,6,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Not Specified",34.5997064,22.80145212,17.8,10,Bad,5346.467739,39.16242797,3 Years and 0 Months,Yes,240.2198054,,Low_spent_Small_value_payments,106.4397893,0,-0.1636,1.3616,0.757,-0.8438,1.3266 -0x6abd,CUS_0x5998,August,48,960-17-5827,Teacher,33683.38,2652.948333,8,6,9,4,"Student Loan, Auto Loan, Payday Loan, and Home Equity Loan",,20,3.32,3,Good,622.08,27.74070941,33 Years and 4 Months,NM,78.36689176,113.3527339,Low_spent_Small_value_payments,363.5752076,0,-0.1206,0.5274,1.4973,0.3831,0.77 -0x6ac9,CUS_0x610d,August,49,905-97-4769,Manager,130130.8,,8,6,16,1,Home Equity Loan,28.12736921,20,7.34,0,Standard,473.56,31.73265489,26 Years and 5 Months,No,102.966321,794.8800077,!@9#%8,449.2770046,0,1.3945,-2.1825,1.4488,0.2469,0.2991 -0x6ad5,CUS_0xa2ee,August,21,248-82-9905,Doctor,9921.775,753.8145833,7,9,27.06745738,8,"Student Loan, Mortgage Loan, Auto Loan, Personal Loan, Personal Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",37.28492733,19,16.56,16,Bad,4927.310954,26.46589779,13 Years and 0 Months,Yes,56.504565,31.05531638,Low_spent_Large_value_payments,231.101289,0,-1.034,0.0702,0.4584,1.5954,-0.4618 -0x6ae1,CUS_0xbc06,August,26,095-45-2407,Writer,9446.245,,6,7,10.06745738,7,"Mortgage Loan, Auto Loan, Student Loan, Student Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",24.47318475,16.81616951,9.07,8,Standard,2127.186194,37.47169778,19 Years and 6 Months,NM,38.22067168,39.68429157,Low_spent_Medium_value_payments,274.8934571,0,0.7487,-2.8198,-1.7756,0.2511,0.5304 -0x6aed,CUS_0x8666,August,30,636-61-1138,Engineer,19599.81,1716.3175,6,7,31,5,"Auto Loan, Mortgage Loan, Personal Loan, Auto Loan, and Payday Loan",,22.30760696,12.42,7,Standard,1991.474469,29.64859195,15 Years and 4 Months,Yes,53.3765327,123.8485426,Low_spent_Small_value_payments,284.4066747,0,0.3608,-1.2365,-0.1836,0.3548,-0.2432 -0x6af9,CUS_0x5f66,August,28,186-12-4082,_______,17417.6,,10,10,25.88954781,9,"Payday Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Student Loan",23.91261591,,26.92,14,Bad,5253.678811,24.86799351,6 Years and 4 Months,Yes,1393.420288,,Low_spent_Medium_value_payments,215.8588497,0,-0.5791,-1.1555,0.2054,-1.6209,-1.0024 -0x6b05,CUS_0xa95,August,30,665-52-4675,Mechanic,24098.63,,1731,3,16,4,"Auto Loan, Auto Loan, Auto Loan, and Home Equity Loan",11.44500262,8,10.87,0,Standard,500.2462063,23.74581969,22 Years and 4 Months,No,285.063804,,Low_spent_Small_value_payments,216.8648048,0,-1.1138,-0.0715,-2.2873,-1.0395,-1.0478 -0x6b11,CUS_0x543d,August,27,827-53-9481,Manager,27372.59,,8,7,11,0,,,22.37906915,13.06,1,_,1276.367734,36.16916445,22 Years and 2 Months,Yes,66474,,Low_spent_Small_value_payments,206.8755922,0,0.2618,-0.1062,-1.0429,0.8376,-0.9961 -0x6b1d,CUS_0x22e0,August,43,425-90-3286,Accountant,17393.16,,8,8,23.88954781,100,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",,,0.83,8,Bad,1587.248231,29.72213718,15 Years and 9 Months,Yes,1424.571401,,Low_spent_Large_value_payments,192.1509942,0,0.8997,-0.3323,-1.0182,0.288,1.1684 -0x6b29,CUS_0x9813,August,36,383-35-5831,Accountant,89722.4,7646.866667,2,5,5,2,"Student Loan, and Student Loan",3.450604558,7,2.47,7,Good,1071.85,33.24496124,16 Years and 9 Months,No,101.9423381,57.24596279,High_spent_Large_value_payments,845.4983658,0,0.5075,0.9753,-1.2583,0.0564,0.2371 -0x6b35,CUS_0x4e4a,August,49,208-35-6167,Writer,86186.37,7438.1975,7,3,10,3,"Student Loan, Auto Loan, and Mortgage Loan",16.54368136,10,10.39,4,Standard,524.53,30.95804104,15 Years and 9 Months,Yes,192.3961991,183.7980094,High_spent_Small_value_payments,627.6255415,0,-1.3487,-1.4438,-0.0424,0.4815,0.1839 -0x6b41,CUS_0x6e19,August,38,404-28-1606,Mechanic,16421.94,,7,3,21,5,"Credit-Builder Loan, Not Specified, Not Specified, Payday Loan, and Personal Loan",16.88334959,16.4362409,15.94,9,Standard,2782.719009,34.66903951,8 Years and 4 Months,Yes,43.91138336,108.1091004,Low_spent_Small_value_payments,288.7290163,0,1.1809,0.0637,1.9783,-0.2856,-0.6669 -0x6b4d,CUS_0x1439,August,23,861-71-4122,_______,102383.19,8539.9325,6,5,17,4,"Mortgage Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",26.27073698,16,9.49,10,_,1407.61,27.13876352,24 Years and 8 Months,Yes,180.0991846,10000,High_spent_Large_value_payments,826.1879346,0,-1.0938,-1.0825,0.8069,0.1553,0.7376 -0x6b59,CUS_0x42f,August,43,979-48-2080,Engineer,36366.68,,5,4,13,2,"Student Loan, and Personal Loan",22.80439584,18,13.17,4,Standard,484.73,24.8377544,32 Years and 6 Months,Yes,52.17659091,,High_spent_Medium_value_payments,423.0528471,0,-0.1182,-0.9477,0.5738,0.0375,1.5422 -0x6b65,CUS_0x36ed,August,33,398-22-8099,Developer,28452.8,,10,917,22.06745738,5,"Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",37.22303442,20,8.18,14,_,2133.200954,33.39181031,18 Years and 6 Months,Yes,106.5841424,81.12960663,Low_spent_Small_value_payments,302.2726297,0,0.6348,0.1733,-0.9138,1.5966,1.2877 -0x6b71,CUS_0x3f43,August,18,145-24-7049,Architect,19040.44,,6,5,5,7,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Student Loan",,8,9.05,7,_,2492.06,26.44547074,8 Years and 8 Months,Yes,82.14254011,38.76912531,High_spent_Small_value_payments,325.6586679,0,0.286,0.4402,-0.3441,-1.4872,-0.2986 -0x6b7d,CUS_0x6cad,August,38,544-73-9056,Teacher,47291.79,3852.9825,10,6,29.06745738,8,"Personal Loan, Mortgage Loan, Not Specified, Personal Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",32.64819715,20,20.27,8,Bad,3371.750954,30.2401336,13 Years and 2 Months,Yes,196.8880458,478.8093911,Low_spent_Small_value_payments,,0,-1.0683,-0.4006,0.6889,0.481,-0.0295 -0x6b89,CUS_0xb19c,August,36,997-35-3816,Mechanic,15377.55,1208.4625,3,4,5,3,"Mortgage Loan, Not Specified, and Auto Loan",8.382261341,10,6.51,8,Good,629.8591839,28.88802774,28 Years and 3 Months,No,28.98979809,36.91802594,High_spent_Small_value_payments,320.4823452,0,0.5743,1.0534,0.2443,0.018,1.7567 -0x6b95,CUS_0x4304,August,47,857-49-4267,Teacher,57728.22,4661.685,4,6,8,4,"Payday Loan, Payday Loan, Mortgage Loan, and Mortgage Loan",12.74206258,9,9.2,3,Good,144.9539097,40.06368659,19 Years and 11 Months,NM,174.1419393,365.8393194,High_spent_Small_value_payments,231.330113,0,0.1211,-0.7618,-0.6296,-0.3117,0.3738 -0x6ba1,CUS_0x80d0,August,45,895-25-0942,Engineer,8053.37,,6,5,6,5,"Student Loan, Personal Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",22.82634417,18,12.1,7,Standard,886.98,29.43144574,,Yes,18.9491168,0,High_spent_Large_value_payments,280.3389705,0,-0.3061,-0.5799,2.0295,-0.6351,0.2723 -0x6bad,CUS_0xa731,August,40,118-75-1018,Architect,16724.455,1408.704583,4,4,11,0,,,6,10.98,1,Good,125.5353521,28.52073042,32 Years and 9 Months,No,0,,Low_spent_Medium_value_payments,348.8226521,0,1.3474,0.8678,-0.0623,-1.9417,-1.1829 -0x6bb9,CUS_0x40fa,August,21,515-07-4649,Manager,20417.43,1807.4525,4,1,10,2,"Credit-Builder Loan, and Personal Loan",8.865813241,8,4.51,4,_,312.66,34.42302346,21 Years and 9 Months,No,23.97871209,,Low_spent_Large_value_payments,259.3327019,0,0.5832,1.6195,1.4538,1.1597,-0.1543 -0x6bc5,CUS_0x7f43,August,30,275-74-7566,_______,16598.74,1381.228333,7,6,31,5,"Mortgage Loan, Home Equity Loan, Student Loan, Auto Loan, and Personal Loan",18.09453526,15.19052024,7.8,13,Standard,1931.453795,24.04138324,7 Years and 8 Months,Yes,35.21707893,175.9128526,!@9#%8,216.9929018,0,0.0932,1.3413,-0.3045,0.5166,1.3397 -0x6bd1,CUS_0x4bc1,August,45,043-71-9200,Developer,62565.6,5086.8,8,8,24,4,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",33.16419245,24.44429149,,8,Bad,1609.94695,33.29251276,15 Years and 2 Months,Yes,146.3636186,340.5900116,High_spent_Small_value_payments,281.7263697,0,-2.7847,-1.2694,1.1072,0.5806,-0.2449 -0x6bdd,CUS_0x7faa,August,35,466-90-0311,Doctor,87671.6,7202.966667,7,3,12,4,"Student Loan, Payday Loan, Home Equity Loan, and Student Loan",17.92475015,14,17.14,12,Standard,1375.37,31.08738665,14 Years and 5 Months,Yes,195.7751096,67.76099872,High_spent_Large_value_payments,696.7605583,0,0.327,0.1176,-1.0894,-0.0035,-0.1491 -0x6be9,CUS_0x2b54,August,25,218-51-2773,Mechanic,21339.42,,7,7,20,0,,,22.87103538,,5,Standard,638.9017068,36.69852936,33 Years and 4 Months,Yes,0,192.2803958,Low_spent_Small_value_payments,301.5481042,0,0.6187,-0.7169,-0.1817,-1.4411,-1.0793 -0x6bf5,CUS_0xb5d7,August,80,372-31-6244,Lawyer,58053.27,4795.7725,6,8,28,7,"Mortgage Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",,22,28.49,13,Bad,3771.12,39.95767629,6 Years and 6 Months,Yes,238.0575301,149.0983649,High_spent_Small_value_payments,352.4213549,0,-0.4657,-0.5326,-0.5263,-1.1888,-0.1394 -0x6c01,CUS_0x4728,August,44,933-75-9733,Accountant,31356.66,2736.055,10,9,25,7,"Not Specified, Auto Loan, Home Equity Loan, Payday Loan, Home Equity Loan, Not Specified, and Personal Loan",,24.19974414,,6,Bad,3617.640304,32.57462722,4 Years and 6 Months,Yes,120.8178655,97.24366041,High_spent_Medium_value_payments,305.5439741,0,-0.7683,0.5281,-0.1351,1.2234,0.2876 -0x6c0d,CUS_0x704,August,42,370-72-5659,Manager,18157.03,,5,5,20,4,"Not Specified, Not Specified, Personal Loan, and Student Loan",13.48119324,13,3.2,,Standard,762.58,31.6495216,26 Years and 5 Months,No,68546,96.77611557,Low_spent_Medium_value_payments,331.1019185,0,1.0762,-0.9343,0.3923,-0.9984,-0.2135 -0x6c19,CUS_0x8b9a,August,39,231-81-6258,Musician,29220.83,,2,2,12,4,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Auto Loan",4.543945924,7,0.6,7,Good,910.0728972,25.69181564,28 Years and 6 Months,NM,84.69565055,,Low_spent_Medium_value_payments,309.3684974,0,0.8658,0.6409,1.347,0.4249,1.0151 -0x6c25,CUS_0xaaaf,August,34,246-53-8379,Mechanic,16173.51,1581.7925,8,6,17,2,"Student Loan, and Mortgage Loan",18.89169901,,17.59,10,_,751.55,36.9795216,6 Years and 3 Months,Yes,17.76133292,20.23737031,High_spent_Medium_value_payments,370.1805468,0,0.2024,-0.2518,-1.0955,-2.2756,-0.1384 -0x6c31,CUS_0xa133,August,53,571-56-4779,Accountant,19740.445,1712.037083,1,5,0.288361749,0,Not Specified,,8,-0.4,0,Good,20.09913306,36.70031592,25 Years and 3 Months,No,15.71921549,486.5185123,Low_spent_Large_value_payments,365.5195993,0,-1.5241,0.3019,0.0659,0.0823,-0.2476 -0x6c3d,CUS_0x638,August,46,028-56-5290,_______,54622.5,4371.875,8,9,23.88954781,7,"Not Specified, Home Equity Loan, Personal Loan, Home Equity Loan, Student Loan, Student Loan, and Mortgage Loan",26.28082281,19,21.92,17,_,3445.84,29.12838014,6 Years and 9 Months,Yes,1540.799597,,Low_spent_Small_value_payments,115.5438284,0,0.4018,1.505,-0.0043,-0.2891,-0.272 -0x6c49,CUS_0x83e8,August,26,956-84-3692,Engineer,30377.05,2539.071951,6,5,10,1,Credit-Builder Loan,,15,7.34,5,Standard,1435.2,36.24895919,29 Years and 10 Months,NM,275.6667511,48.93755026,High_spent_Small_value_payments,473.4866643,0,1.5212,1.4589,-0.3843,-0.5686,2.0272 -0x6c55,CUS_0x913c,August,52,036-64-4461,Media_Manager,29060.32,2235.693333,8,5,9,4,"Mortgage Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",17.50696626,15,8.2,3,Standard,865.12,34.5550231,19 Years and 11 Months,No,64.49226323,130.321553,Low_spent_Medium_value_payments,308.7555171,0,-2.1708,1.0431,0.8216,2.0488,0.9688 -0x6c61,CUS_0x2f0a,August,35,069-25-9590,Architect,83989.44,6634.057272,7,7,19,7,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Student Loan, and Payday Loan",,10,10.55,11,Standard,1926.7,40.10737828,15 Years and 8 Months,Yes,488.7029892,232.7133129,Low_spent_Small_value_payments,422.3584262,0,-0.0022,0.2706,-1.4984,-0.7838,-0.9607 -0x6c6d,CUS_0x3ee,August,38,354-65-6948,Journalist,16756.18,,9,6,22,2,"Credit-Builder Loan, and Payday Loan",28.44003705,13.82821613,10.66,8,Standard,2139.162337,25.81250202,15 Years and 9 Months,Yes,32972,66.71824831,Low_spent_Small_value_payments,328.9744959,0,-0.3204,1.2677,1.4161,1.2272,-0.4856 -0x6c79,CUS_0xc29a,August,25,636-02-3692,_______,33337.84,,10,9,24.88954781,7,"Not Specified, Mortgage Loan, Mortgage Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",45.3248166,27.10018854,29.64,13,Bad,4060.135879,35.23707712,6 Years and 10 Months,Yes,1460.293403,113.5821292,High_spent_Small_value_payments,282.7097193,0,0.2447,-1.4475,0.0347,0.877,-1.1301 -0x6c85,CUS_0x4d33,August,42,219-34-1333,Scientist,80264.88,6635.74,6,5,31,4,"Personal Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",,24,8.31,13,Bad,1522.85,34.09912363,6 Years and 11 Months,NM,261.5315027,111.2418904,High_spent_Medium_value_payments,540.8006069,0,-0.3903,1.2459,-1.0043,-0.1443,-0.5817 -0x6c91,CUS_0xb99c,August,32,896-23-4660,Writer,97338.21,8220.5175,8,6,15.28836175,58,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",12.53722977,12,11.68,2,Standard,1052.21,26.73350311,29 Years and 0 Months,No,36271,616.264807,Low_spent_Large_value_payments,591.7412626,0,-2.1621,1.1349,0.8474,-0.4162,-0.9719 -0x6c9d,CUS_0x615a,August,33,358-87-3917,Musician,40591.74,3156.645,5,5,16,100,"Student Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",15.62004088,10,12.36,4,_,278.43,32.55061929,19 Years and 5 Months,Yes,93.03689329,65.92273163,High_spent_Small_value_payments,416.7048751,0,-0.1363,0.3368,1.983,0.5347,0.2504 -0x6ca9,CUS_0x4b61,August,21,959-50-8261,Teacher,69506.16,,8,6,17,1,Debt Consolidation Loan,20.39159483,17,16.76,4,_,418.2100517,30.29479721,16 Years and 6 Months,Yes,51.78614179,134.1774898,High_spent_Medium_value_payments,667.6811626,0,0.2947,-0.899,-0.3338,-0.0269,0.1246 -0x6cb5,CUS_0x5825,August,43,559-48-2098,Media_Manager,18623.23,,7,6,16,6,"Not Specified, Student Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",,22.47245085,5.37,8,Bad,2154.943924,32.06335151,14 Years and 8 Months,Yes,54.12243984,181.2893424,Low_spent_Small_value_payments,231.1818011,0,-0.7252,0.1478,0.3815,0.5541,1.0709 -0x6cc1,CUS_0xac0b,August,35,660-63-2250,Developer,117946.44,9988.87,4,5,1,3,"Payday Loan, Student Loan, and Credit-Builder Loan",,0,,0,Good,573.65,36.94335249,25 Years and 9 Months,No,19770,129.8125938,High_spent_Large_value_payments,913.5428657,0,0.6952,0.3177,-0.5111,-1.2756,-0.3739 -0x6ccd,CUS_0xba03,August,45,548-66-1159,_______,51548.56,4193.713333,8,5,8,4,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Personal Loan",21.32265568,,6.98,7,Standard,382.14,36.32699995,16 Years and 4 Months,No,92.04786673,217.9417942,Low_spent_Medium_value_payments,389.3816724,0,0.3884,0.1919,0.9607,0.5188,0.3391 -0x6cd9,CUS_0xbbcf,August,36,355-33-6296,Media_Manager,49187.07,,6,6,25,6,"Auto Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Auto Loan",19.36069851,12,12.04,7,Standard,1357.26,38.6146945,17 Years and 8 Months,NM,198.6083324,100.4008674,High_spent_Medium_value_payments,333.3830502,0,1.3219,-0.4999,-1.2529,-0.0249,1.7235 -0x6ce5,CUS_0x7be5,August,37,897-36-1601,Accountant,7330.945,,6,10,34.06745738,100,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Not Specified, Mortgage Loan, Student Loan, and Debt Consolidation Loan",31.71937883,16,31.45,12,Bad,4624.980954,33.67558425,,NM,52.59339622,,Low_spent_Large_value_payments,246.2352003,0,0.4826,1.0871,-0.9317,-0.4186,-0.4254 -0x6cf1,CUS_0x7fd1,August,29,151-65-0785,_______,58194.33,,5,7,20,5,"Auto Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Payday Loan",25.51501376,18,12.11,4,Standard,1208.38,29.42626544,9 Years and 10 Months,Yes,132.083695,180.0023214,High_spent_Medium_value_payments,404.2667335,0,1.4592,-0.0285,-0.1659,-1.7655,-0.4115 -0x6cfd,CUS_0x1410,August,43,087-58-6247,Teacher,96882.93,8229.5775,5,6,5.288361749,614,Debt Consolidation Loan,0,1.139244753,14.61,4,Good,386.3708829,26.39186192,,NM,73.17372328,600.1378656,High_spent_Large_value_payments,809.5836222,0,-0.322,-0.3756,0.1072,-1.6433,0.4064 -0x6d09,CUS_0xc042,August,31,#F%$D@*&8,Architect,124683.72,10193.31,5,6,8,7,"Home Equity Loan, Not Specified, Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, and Payday Loan",10.98846663,8,19.27,12,Standard,318.37,30.46457638,14 Years and 5 Months,Yes,612.306969,,Low_spent_Medium_value_payments,16.78759108,0,-0.5159,-1.8102,0.763,-0.2003,-2.0085 -0x6d15,CUS_0x5f34,August,19,432-94-1541,Writer,125385.88,10720.82333,2,5,5,4,"Mortgage Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",19.46568365,,6.36,5,_,1268.57,31.93902608,25 Years and 2 Months,No,364.3603102,422.2093597,High_spent_Medium_value_payments,535.5126635,0,1.8318,-0.5767,-0.2532,0.1257,0.6336 -0x6d21,CUS_0x6bd8,August,42,#F%$D@*&8,Doctor,90429.99,7363.8325,0,2,9.288361749,0,Student Loan,0,2,2.25,4,Good,1021.348639,33.49302815,31 Years and 4 Months,No,42.68800148,489.2406344,High_spent_Large_value_payments,873.3458205,0,0.3345,-0.2374,-0.6599,-1.1711,0.2826 -0x6d2d,CUS_0x43e9,August,26,585-43-2988,Writer,16674.26,1104.521667,6,6,6,4,"Personal Loan, Auto Loan, Payday Loan, and Personal Loan",,22.51330929,9.11,13,Standard,2417.582466,26.23478864,18 Years and 2 Months,Yes,29.62010595,,Low_spent_Medium_value_payments,264.1719914,0,2.4527,0.3223,-1.4528,0.624,0.8157 -0x6d39,CUS_0x32be,August,42,814-07-2953,Doctor,178088.4,14839.7,5,4,11,3,"Debt Consolidation Loan, Auto Loan, and Payday Loan",17.28349506,12,9.32,0,Good,676.1,38.39652118,18 Years and 10 Months,No,341.7256608,,High_spent_Large_value_payments,1249.532948,0,-0.9843,-0.7556,-0.3275,0.3069,-0.5582 -0x6d45,CUS_0x3844,August,20,577-62-7672,Accountant,133068.44,11063.03667,4,3,6,3,"Payday Loan, Home Equity Loan, and Payday Loan",10.79084082,10,18.77,7,_,940.98,43.53043068,24 Years and 2 Months,No,251.616403,249.5550295,High_spent_Large_value_payments,845.1322342,0,0.9637,0.4413,0.0361,1.4418,0.9025 -0x6d51,CUS_0x882f,August,20,900-53-6542,Engineer,38847.8,3215.316667,7,7,26.06745738,7,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",,19,23.87,8,Bad,3624.970954,34.95767043,7 Years and 2 Months,Yes,123.9165485,114.310943,Low_spent_Large_value_payments,326.5838872,0,-1.0341,0.6106,0.1712,-0.8221,-0.1433 -0x6d5d,CUS_0x81f5,August,18,038-08-6519,Engineer,35626.75,2954.895833,4,7,13,3,"Personal Loan, Personal Loan, and Payday Loan",7.980972126,9,13.09,9,Standard,1115.801323,23.33326209,18 Years and 0 Months,Yes,47.33271657,239.8417937,Low_spent_Large_value_payments,304.1035531,0,-0.8781,-1.5439,-0.5633,0.2072,0.6849 -0x6d69,CUS_0xcd5,August,35,548-42-2519,Scientist,20302.59,1991.8825,6,5,17,6,"Not Specified, Personal Loan, Student Loan, Auto Loan, Home Equity Loan, and Payday Loan",,30.21787424,27.94,11,Bad,5321.414821,40.05729078,9 Years and 10 Months,Yes,62.88417238,112.5485362,Low_spent_Medium_value_payments,303.7555414,0,-0.2317,-1.2843,0.8378,-0.7113,-1.7853 -0x6d75,CUS_0x3537,August,30,850-97-8308,Developer,42541.92,3445.16,1231,5,7,5,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Student Loan",12.23039452,11,12.31,5,Standard,240.24,25.14240527,13 Years and 4 Months,Yes,162.3753738,66.62156472,High_spent_Medium_value_payments,365.5190615,0,-1.2437,1.6193,-2.7143,-1.1637,0.2741 -0x6d81,CUS_0x418,August,32,010-49-5150,Scientist,14924.12,,8,7,16,2,"Student Loan, and Payday Loan",20.17642538,17,10.8,7,Standard,22.71,23.47365772,11 Years and 5 Months,Yes,19.92836451,27.92520253,High_spent_Small_value_payments,346.9140996,0,0.6429,0.4635,-1.5205,0.2024,-0.8194 -0x6d8d,CUS_0xa06,August,39,522-90-6154,Developer,36791.9,2772.991667,6,958,20,3,"Debt Consolidation Loan, Home Equity Loan, and Student Loan",27.90500667,19,1.6,4,Standard,145.6,38.57370585,24 Years and 0 Months,No,57.30150932,30.61959661,High_spent_Medium_value_payments,439.3780607,0,-0.0126,0.7521,-0.488,0.3491,0.3592 -0x6d99,CUS_0x60da,August,45,640-48-4568,Writer,22517.1,,3,5,6,0,,23.52906591,20,8.32,4,Standard,729.74,23.68565708,16 Years and 8 Months,Yes,0,,!@9#%8,381.0717116,0,0.2949,-2.0383,0.4923,0.0844,0.9307 -0x6da5,CUS_0x5ae,August,18,953-45-4455,Musician,47752.38,,8,6,28,6,"Not Specified, Personal Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Student Loan",22.60528003,17,13.13,14,Standard,1801.77,37.04455238,16 Years and 10 Months,Yes,166.375744,,High_spent_Small_value_payments,310.1601526,0,-1.3028,0.0501,1.0577,1.4181,-0.7904 -0x6db1,CUS_0x8e96,August,43,866-65-4918,Manager,15225.99,,8,6,21,100,"Auto Loan, Mortgage Loan, and Auto Loan",30.51078185,18.09811938,0.86,13,Bad,2313.389538,32.16570249,11 Years and 6 Months,Yes,29.41562297,34.31225525,High_spent_Large_value_payments,325.1553718,0,2.6412,-0.2935,-0.4601,-0.5446,-0.9959 -0x6dbd,CUS_0x5e7f,August,31,864-25-5318,Developer,79413.04,,10,10,21,3,"Not Specified, Home Equity Loan, and Home Equity Loan",37.61340832,23.7015388,11.83,11,_,2713.25846,32.37835533,12 Years and 2 Months,Yes,173.7773029,203.9649586,High_spent_Medium_value_payments,506.5330718,0,0.0856,-0.156,0.1185,-0.9285,0.5506 -0x6dc9,CUS_0x640f,August,30,413-49-0176,Musician,16361.9,,6,9,31.88954781,8,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",34.11945296,19,20.95,6,Bad,4949.89,24.10825764,4 Years and 5 Months,NM,1428.213823,,High_spent_Medium_value_payments,241.9559063,0,1.3125,1.8751,-0.1709,-0.5543,0.5105 -0x6dd5,CUS_0x8ad,August,41,107-44-6435,Scientist,37840.48,3435.373333,3,3,11.28836175,0,Auto Loan,0,0,11.46,1,Good,120.49,38.44714121,17 Years and 4 Months,No,27.67749606,568.0205741,High_spent_Small_value_payments,427.7767242,0,-0.1646,0.0851,-0.2075,2.5488,-1.038 -0x6de1,CUS_0x716d,August,54,226-32-8949,Musician,57652.54,,0,7,5,100,Payday Loan,,0,11.95,2,Good,1211.622254,35.27507053,30 Years and 9 Months,No,36.55993956,186.3030962,!@9#%8,542.1346529,0,-0.9295,0.1013,0.425,-1.109,-0.9456 -0x6ded,CUS_0x6b9f,August,41,446-85-6477,Journalist,8446.315,,9,6,18,6,"Credit-Builder Loan, Not Specified, Mortgage Loan, Mortgage Loan, Personal Loan, and Auto Loan",18.57948669,13.45364408,11.05,12,_,1437.58249,31.93151471,9 Years and 9 Months,Yes,28.20195929,37.20761625,Low_spent_Small_value_payments,287.3763828,0,1.3573,-0.3956,-0.6582,-0.1037,-0.2172 -0x6df9,CUS_0xb0fd,August,31,#F%$D@*&8,Architect,10250.2,,7,4,19,4,"Credit-Builder Loan, Not Specified, Student Loan, and Auto Loan",,21.1425126,8.04,7,Standard,1555.209746,38.66769814,8 Years and 10 Months,NM,30.95734002,,Low_spent_Large_value_payments,298.2816507,0,-0.7327,-1.0907,-0.3065,-1.2562,-0.9034 -0x6e05,CUS_0x4628,August,23,#F%$D@*&8,_______,155955.8,12806.31667,5,3,2,2,"Student Loan, and Personal Loan",0.842439099,5,9.32,3,_,201.420973,35.39246991,24 Years and 2 Months,No,130.7253093,725.8066241,Low_spent_Medium_value_payments,794.9222708,0,1.5365,-0.2794,0.6743,-2.9622,0.0739 -0x6e11,CUS_0x7ccf,August,19,365-87-0558,Media_Manager,14547.7,,10,10,26.88954781,7,"Auto Loan, Personal Loan, Not Specified, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",31.17228581,17.18675173,24.81,10,Bad,5081.260768,25.40579972,4 Years and 8 Months,Yes,1391.053972,141.6776866,!@9#%8,164.6515153,0,0.7054,-0.0122,1.075,0.0086,-0.6627 -0x6e1d,CUS_0x5d5,August,31,708-68-9338,Doctor,15067.08,1325.59,7,5,16,5,"Mortgage Loan, Student Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",22.96712181,16,23.81,9,Bad,3980.49,24.43858853,14 Years and 4 Months,Yes,42.66800031,171.0297001,Low_spent_Small_value_payments,208.8612996,0,-0.1416,0.3226,0.0662,-1.7442,-0.2735 -0x6e29,CUS_0x58ec,August,21,166-30-1674,Teacher,110110.04,9238.836667,8,4,12,4,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",,18,5.61,3,_,1328.722365,33.29501181,17 Years and 8 Months,No,233.8600173,419.3992329,High_spent_Small_value_payments,592.3186785,0,-1.7984,-0.5826,-0.3745,0.274,0.4027 -0x6e35,CUS_0x4a0a,August,38,358-74-4756,Architect,17568.98,,7,6,27,8,"Auto Loan, Payday Loan, Personal Loan, Not Specified, Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",,20,28.09,9,_,2551.73,36.95881067,10 Years and 10 Months,Yes,100.4203362,20.40409712,High_spent_Large_value_payments,290.9837334,0,-0.411,-0.2784,-0.2624,0.1357,0.4412 -0x6e41,CUS_0x2708,August,28,287-44-5880,Scientist,40078.08,,0,6,7,0,,,4,5.62,8,Good,649.84,27.44411032,,No,0,91.83923939,High_spent_Medium_value_payments,496.7447606,0,-1.1125,-0.3443,1.8687,0.2344,-1.7095 -0x6e4d,CUS_0x37de,August,35,698-27-5664,Developer,37822.18,,8,8,35.95700519,9,"Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Student Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",39.66993507,25.95760705,0.57,9,Bad,4445.166916,30.78540427,11 Years and 11 Months,Yes,1482.748632,194.137011,Low_spent_Medium_value_payments,190.3488214,0,0.7611,-0.4574,-0.2871,0.6395,0.2006 -0x6e59,CUS_0x75d3,August,36,958-98-2909,Architect,17604.075,1236.00625,7,7,13,3,"Auto Loan, Payday Loan, and Personal Loan",14.43159052,15,4.1,881,Standard,353.62,31.28821649,25 Years and 5 Months,No,37.5438362,156.8351163,Low_spent_Small_value_payments,219.2216725,0,-1.0976,1.2206,-0.1871,-0.3813,-0.2574 -0x6e65,CUS_0x52fb,August,44,069-79-6934,Journalist,15985.41,,7,3,17,7,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Auto Loan, and Payday Loan",,,14.86,14,Standard,1523.151237,29.24432961,18 Years and 10 Months,Yes,64.12679423,53.25082605,Low_spent_Large_value_payments,289.8341297,0,-0.224,1.1179,-0.6559,0.1234,0.9481 -0x6e71,CUS_0x761b,August,51,634-08-0753,Developer,25795.66,,5,7,9,0,,27.28446273,19,1.38,4,Standard,704.701338,25.25944917,30 Years and 0 Months,No,0,,High_spent_Small_value_payments,391.2413916,0,-0.1604,-0.2355,-1.873,0.4103,2.7364 -0x6e7d,CUS_0x31eb,August,51,439-99-0001,Teacher,35991.91,2920.325833,3,4,3,3,"Auto Loan, Home Equity Loan, and Payday Loan",0,2,4.84,3,Good,733.9951509,30.09349627,17 Years and 0 Months,No,60.50607216,415.678351,Low_spent_Small_value_payments,167.607983,0,-1.7911,-0.0911,-0.5771,-0.1801,1.5153 -0x6e89,CUS_0x4096,August,26,546-29-7997,Developer,46036.35,3930.3625,6,6,20.06745738,5,"Debt Consolidation Loan, Not Specified, Auto Loan, Not Specified, and Mortgage Loan",,20.54778002,14.75,8,Bad,3178.849758,24.90932232,15 Years and 0 Months,Yes,146.4016504,160.9211339,Low_spent_Small_value_payments,348.9931778,0,0.1876,-0.529,-0.7586,0.4032,0.2454 -0x6e95,CUS_0x7ad9,August,30,852-77-5664,Scientist,69082.12,5567.843333,3,3,33,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",15.47368794,13,16.08,6,Standard,1467.48,29.12978143,11 Years and 4 Months,Yes,119.4617548,,Low_spent_Small_value_payments,142.4744176,0,-1.9996,-1.4224,-0.0754,-0.5397,-0.955 -0x6ea1,CUS_0xb2bd,August,29,695-44-0763,Writer,35566.44,,6,8,32.88954781,6,"Payday Loan, Not Specified, Personal Loan, Home Equity Loan, Payday Loan, and Auto Loan",14.07467777,11,10.59,12,Standard,2203.49,33.05723025,8 Years and 4 Months,Yes,1495.073952,237.2619643,Low_spent_Medium_value_payments,177.3210021,0,0.0773,0.6709,0.3082,1.0906,-0.0611 -0x6ead,CUS_0x8c13,August,36,748-06-7649,Teacher,59961.82,,5,1,7,3,"Student Loan, Not Specified, and Credit-Builder Loan",1.749731473,3,7.07,6,Good,78.76382507,39.20207412,29 Years and 11 Months,No,93.84233619,348.8915502,Low_spent_Medium_value_payments,369.8412006,0,0.7123,0.0272,0.1351,0.1898,-0.1584 -0x6eb9,CUS_0x1ef7,August,32,#F%$D@*&8,Engineer,20316.57,1926.0475,3,8,24,3,"Debt Consolidation Loan, Not Specified, and Auto Loan",,13.47804619,12.07,13,Standard,2819.13244,36.37670373,,Yes,45.78906263,158.0711038,Low_spent_Small_value_payments,278.7445836,0,0.2113,-0.8288,1.4121,-2.5666,-0.2427 -0x6ec5,CUS_0x9c34,August,35,652-89-4186,Doctor,17680.79,,9,7,24.06745738,5,"Home Equity Loan, Credit-Builder Loan, Student Loan, Auto Loan, and Payday Loan",47.70178865,28.91064495,26.7,11,Bad,5559.852396,28.95829204,7 Years and 0 Months,Yes,71.47433778,93.8582307,Low_spent_Small_value_payments,230.8870602,0,0.2696,-0.8563,0.5887,0.1747,0.4032 -0x6ed1,CUS_0x5be7,August,25,162-11-9944,Engineer,32382.37,2960.530833,4,7,5,2,"Home Equity Loan, and Mortgage Loan",20.76416128,17,12.3,4,Standard,541.8905967,30.66521391,29 Years and 11 Months,No,38.77356818,,High_spent_Large_value_payments,456.7978007,0,-1.4445,0.5774,0.8149,-0.1618,2.3161 -0x6edd,CUS_0x961b,August,20,620-89-0592,Teacher,32186.31,2957.1925,4,1,2,1,Mortgage Loan,,8,3.75,2,Good,305.84,28.72882055,27 Years and 6 Months,No,19.71100045,143.0261445,Low_spent_Small_value_payments,422.982105,0,0.535,1.1299,0.868,-0.3096,0.9796 -0x6ee9,CUS_0x2112,August,32,#F%$D@*&8,Writer,46586.31,4041.1925,6,4,6,6,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Home Equity Loan",21.02559113,17,17.18,5,Standard,1787.16,37.33204427,18 Years and 10 Months,Yes,167.2182973,,High_spent_Small_value_payments,253.8881402,0,-1.2717,-0.6731,-2.8468,0.7256,0.2171 -0x6ef5,CUS_0x6673,August,31,959-24-9730,Entrepreneur,59050.48,5018.873333,8,8,28.88954781,9,"Home Equity Loan, Not Specified, Student Loan, Mortgage Loan, Payday Loan, Student Loan, Student Loan, Mortgage Loan, and Student Loan",40.31749805,23,23.29,10,Bad,4283.98,34.42100741,2 Years and 6 Months,Yes,1662.978773,131.1128078,Low_spent_Large_value_payments,283.4656715,0,-0.5757,0.4861,-0.2795,-0.1605,0.079 -0x6f01,CUS_0x1f46,August,49,361-05-2128,Lawyer,23079.29,1755.274167,3,5,8,3,"Payday Loan, Student Loan, and Not Specified",16.77382772,15,-0.34,6,Good,774.5821145,34.4402889,26 Years and 9 Months,No,45.55427581,70.39112911,High_spent_Small_value_payments,327.7267167,0,0.1975,-1.2567,-0.1035,-0.8599,-1.5012 -0x6f0d,CUS_0x4657,August,23,840-29-9898,Journalist,22119.355,,2,7,11,2,"Payday Loan, and Auto Loan",0,0,6.92,3,Good,1033.290424,33.81904511,26 Years and 10 Months,No,114.321766,,Low_spent_Small_value_payments,237.172814,0,0.8276,-1.1003,0.7675,-1.0667,0.1299 -0x6f19,CUS_0x4947,August,25,#F%$D@*&8,Architect,44248.14,,9,7,31,6,"Auto Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",33.79636276,19.38482879,0.84,8,Bad,2081.852564,30.04197473,11 Years and 6 Months,Yes,210.7338297,72.5613938,High_spent_Large_value_payments,322.1392765,0,-0.6912,-0.7922,-0.1811,0.3002,0.7947 -0x6f25,CUS_0x1488,August,39,856-92-9467,Entrepreneur,7468.77,,8,8,29.88954781,9,"Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",,24,27.82,14,_,2550.65,24.97337625,,NM,1367.964793,,Low_spent_Small_value_payments,219.176839,0,-0.9676,1.1011,1.1721,-0.0936,1.1434 -0x6f31,CUS_0x9388,August,29,146-82-6777,Musician,24208.83,,7,4,13,3,"Credit-Builder Loan, Not Specified, and Credit-Builder Loan",,20,5.4,5,_,873.13,29.45422741,33 Years and 2 Months,No,42.31303624,24.91919579,High_spent_Large_value_payments,350.108018,0,-0.1709,0.891,0.1603,1.467,-1.5144 -0x6f3d,CUS_0x85a7,August,25,298-52-5800,Scientist,41504.48,3405.706667,2,7,5,4,"Mortgage Loan, Not Specified, Home Equity Loan, and Payday Loan",1.582105388,4.570861772,10.08,6,Good,839.4854877,30.12492463,,No,104.9438013,105.1424364,Low_spent_Medium_value_payments,410.484429,0,0.0398,0.4367,-0.9752,-0.0965,2.9761 -0x6f49,CUS_0x7de0,August,33,538-28-9874,Writer,42326.99,3577.249167,0,2,4,4,"Mortgage Loan, Auto Loan, Auto Loan, and Payday Loan",9.305968911,10,5.97,4,Good,1120.152852,37.16347819,,No,116.6187198,316.3387845,Low_spent_Large_value_payments,232.2383541,0,-1.0185,-0.4169,-0.9126,1.549,0.1054 -0x6f55,CUS_0xafc4,August,19,913-98-6365,Lawyer,19092.79,,10,8,20.95700519,7,"Home Equity Loan, Student Loan, Personal Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Mortgage Loan",25.46469437,13,5.99,9,_,1668.490954,23.20590794,11 Years and 0 Months,Yes,1388.100246,210.073553,Low_spent_Small_value_payments,148.8824148,0,-1.18,-0.7167,0.4594,0.3223,-0.219 -0x6f61,CUS_0x2b4c,August,39,362-46-3183,_______,37570.83,3081.9025,3,3,4344,0,,9.892253253,9,2.17,4,Good,1074.715099,30.10262485,28 Years and 5 Months,No,0,222.2255718,High_spent_Small_value_payments,375.029466,0,0.0497,-0.0429,1.0713,-1.0737,-0.213 -0x6f6d,CUS_0x60c9,August,34,975-94-2594,Manager,76443.15,,3,7,17,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",15.11142808,14,10.32,0,_,1318.4,38.39069918,33 Years and 4 Months,No,116.8215477,409.7318227,!@9#%8,367.8728796,0,0.2106,-0.1899,-1.3826,0.5227,-1.8793 -0x6f79,CUS_0x9c09,August,22,333-14-9403,Lawyer,19296.415,,1,5,12,3,"Mortgage Loan, Payday Loan, and Mortgage Loan",9.082713714,11,1.11,3,_,1278.11,34.01743944,30 Years and 6 Months,No,47.52480236,130.0689748,Low_spent_Large_value_payments,276.9096812,0,1.0024,0.6073,-0.8486,0.5232,-1.8542 -0x6f85,CUS_0x7daf,August,44,665-75-9492,Teacher,13613.385,,7,6,11,0,,,17,15.83,5,Standard,506.93,35.38325088,17 Years and 3 Months,Yes,0,143.4329937,Low_spent_Small_value_payments,254.4118813,0,-0.7364,0.3271,0.6752,0.662,-0.9521 -0x6f91,CUS_0x5c67,August,32,677-56-5879,Accountant,38103.74,3175.311667,8,7,16,0,,8.538368343,10.49484074,4.74,5,Standard,145.3210259,29.18242155,32 Years and 8 Months,No,0,33.98486427,High_spent_Medium_value_payments,533.5463024,0,-0.2504,-0.2172,1.0596,-0.7249,-0.0203 -0x6f9d,CUS_0xaeb8,August,42,032-01-1939,Musician,67426.82,5810.901667,4,6,5,5,"Not Specified, Not Specified, Home Equity Loan, Auto Loan, and Not Specified",,10,9.88,7,Standard,671.39,32.17708789,13 Years and 5 Months,Yes,196.570837,730.6773316,Low_spent_Small_value_payments,,0,1.922,-0.6698,-0.0647,-0.8407,0.234 -0x6fa9,CUS_0x36fb,August,32,465-97-6079,Lawyer,20501.67,,6,7,17,8,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Student Loan, Not Specified, and Payday Loan",35.21061043,17.78953665,18.15,12,Bad,3801.253214,25.7347925,9 Years and 5 Months,Yes,108.6281377,164.6045349,Low_spent_Small_value_payments,193.9145774,0,0.9093,-1.7527,1.3704,-0.4258,0.9445 -0x6fb5,CUS_0x10bb,August,35,075-30-4340,Journalist,60830.92,5044.243333,0,1,11,4,"Payday Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",2.012056618,3,7.41,0,_,133.63,38.71229772,23 Years and 10 Months,No,159.799347,404.0458181,Low_spent_Small_value_payments,230.5791683,0,-0.3519,0.133,-0.693,0.672,-0.988 -0x6fc1,CUS_0x4206,August,26,891-70-1711,Entrepreneur,17188.14,1178.345,6,9,17.95700519,6,"Not Specified, Auto Loan, Student Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",,24.34994695,9.2,7,Bad,2218.146171,38.20305389,7 Years and 9 Months,Yes,1386.99471,91.28316673,Low_spent_Small_value_payments,208.5062543,0,0.1155,-0.6826,-1.182,-0.7704,0.7728 -0x6fcd,CUS_0x455e,August,44,297-53-4131,Teacher,21759.54,1693.295,3,4,11,1,Auto Loan,,18.22834953,9.1,2,Standard,1337.318623,34.79182153,23 Years and 11 Months,No,10.44434362,143.5966923,Low_spent_Large_value_payments,285.2884641,0,-0.5936,-1.4077,-0.5403,-0.033,-0.6273 -0x6fd9,CUS_0x4ba1,August,18,073-56-9255,Engineer,70705.88,6034.156667,6,9,955.8895478,6,"Personal Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Payday Loan, and Payday Loan",90,2351.634402,13.81,8,Standard,2416.31051,28.07487087,13 Years and 9 Months,Yes,1644.579876,95.46684533,High_spent_Large_value_payments,409.0388642,0,0.1473,-1.8336,0.4845,-0.7946,-1.2169 -0x6fe5,CUS_0x645f,August,31,024-45-7185,Developer,20415.52,1728.293333,7,6,27,5,"Payday Loan, Home Equity Loan, Student Loan, Personal Loan, and Not Specified",30.37278659,14,7.42,9,Standard,2590.01,33.87078648,,Yes,74.27241505,,Low_spent_Large_value_payments,244.9608249,0,-0.6993,1.0169,1.9249,0.232,0.5734 -0x6ff1,CUS_0x387a,August,25,432-76-8859,Architect,18707.73,,10,9,29.06745738,4,"Not Specified, Personal Loan, Not Specified, and Personal Loan",43.81572901,21.65306992,13.48,8,Bad,1695.177436,42.42313968,19 Years and 5 Months,NM,32384,16.58502585,High_spent_Large_value_payments,313.7071023,0,-0.3291,0.1139,-0.2435,-0.0544,0.1476 -0x6ffd,CUS_0x8370,August,36,348-82-8145,Journalist,20915.43,1533.9525,9,8,21,2,"Auto Loan, and Debt Consolidation Loan",27.10068897,16.94567997,10.21,6,Bad,2510.945066,23.66094741,11 Years and 3 Months,Yes,34.7557189,,Low_spent_Small_value_payments,283.8603219,0,0.6752,-1.0338,0.5642,0.0649,1.7326 -0x7009,CUS_0x82dd,August,25,473-98-6511,Mechanic,16397.44,,2,1,1,1,Auto Loan,7.002381056,7,,6,Good,699.0385007,38.55647812,32 Years and 6 Months,No,6.898288998,110.2093213,Low_spent_Small_value_payments,300.6387134,0,-0.3348,-0.5269,-0.5361,1.2957,0.8604 -0x7015,CUS_0x2e8b,August,46,840-54-3758,Doctor,138154.96,11388.91333,5,2,7.288361749,2,"Not Specified, Home Equity Loan, and Home Equity Loan",9.271356186,9,5.68,4,Good,1251.9,42.37869453,28 Years and 2 Months,No,270.1905666,722.1963848,High_spent_Small_value_payments,826.4418429,0,1.5554,1.1288,0.2153,0.2474,0.2379 -0x7021,CUS_0x3fb3,August,29,192-09-0024,Mechanic,119568.15,9880.0125,0,4,0.288361749,2,"Student Loan, Student Loan, and Not Specified",,11,8.87,0,Good,451.46,39.99327708,23 Years and 3 Months,No,249.6811132,788.1699,High_spent_Medium_value_payments,620.0876979,0,-0.6877,1.4224,-0.4592,-0.5512,-1.0258 -0x702d,CUS_0x590,August,43,084-84-5855,Journalist,63539.56,4996.963333,8,7,15,2,"Student Loan, and Personal Loan",,21.32596492,2.03,14,Bad,2966.044048,37.22538448,16 Years and 11 Months,Yes,60.66704902,70.5260024,High_spent_Large_value_payments,608.5032819,0,0.1165,0.1598,0.1846,1.865,0.8479 -0x7039,CUS_0x1d85,August,33,057-78-0785,Engineer,19455.49,,7,3,20,2,"Student Loan, and Not Specified",21.38903987,17,15.46,9,Standard,1427.03,36.39292995,12 Years and 9 Months,Yes,31.3071307,136.1955804,Low_spent_Medium_value_payments,255.3263722,0,0.9753,-0.6031,0.6332,-0.5679,-2.7446 -0x7045,CUS_0x39c0,August,31,325-55-9402,Accountant,62546.8,,5,6,450,2,"Credit-Builder Loan, and Student Loan",25.303879,20.48122538,8.63,4,Good,1271.305615,29.69858317,19 Years and 3 Months,No,69.72084239,261.4998577,High_spent_Small_value_payments,423.9026333,0,-0.4921,-0.7463,-0.2145,-0.6613,-0.1583 -0x7051,CUS_0x4a11,August,20,955-34-2486,Architect,67825.23,5819.1025,6,4,15,0,,10.66255792,8,16.82,11,_,148.04,27.33268225,17 Years and 9 Months,Yes,0,148.2195821,High_spent_Medium_value_payments,683.6906679,0,1.5923,-1.9311,0.2469,-0.2046,1.3538 -0x705d,CUS_0xa3ba,August,39,039-16-1692,Scientist,60082.77,,8,5,16.06745738,6,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Not Specified",,20.72477958,20.68,7,_,3720.015002,32.5390098,6 Years and 10 Months,Yes,21445,,Low_spent_Small_value_payments,209.5714375,0,0.3433,-2.9596,0.6669,1.3298,-0.0658 -0x7069,CUS_0x31bd,August,21,695-82-0727,Engineer,56122.68,,10,8,31,4,"Home Equity Loan, Auto Loan, Payday Loan, and Home Equity Loan",32.27887869,20,,13,Standard,1274.63,37.1172994,15 Years and 3 Months,Yes,98.38217359,37.62584926,High_spent_Large_value_payments,579.1809771,0,-1.0551,1.4584,-0.4082,-1.7657,0.4164 -0x7075,CUS_0x514e,August,24,418-27-3029,Teacher,15331.52,1033.626667,10,7,35.06745738,100,"Student Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Credit-Builder Loan",39.80278681,19,3.05,12,Bad,2321.260954,27.6315522,9 Years and 6 Months,Yes,42.68588125,131.8067413,Low_spent_Small_value_payments,192.1497562,0,0.587,-0.6724,-1.0428,-0.904,-0.2962 -0x7081,CUS_0x4d61,August,39,754-31-0999,Mechanic,33749.25,,5,7,3,2,"Home Equity Loan, and Home Equity Loan",,13,5.16,3,_,753.63,35.93043437,25 Years and 3 Months,No,41.83206032,,High_spent_Large_value_payments,441.3982502,0,-1.5647,-0.2219,1.1299,-1.1219,-1.5116 -0x708d,CUS_0x78a2,August,25,145-47-0135,Manager,50528.61,4073.7175,10,10,18.95700519,9,"Personal Loan, Not Specified, Mortgage Loan, Not Specified, Auto Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",33.17702689,20.44692208,14.26,10,Bad,3156.163726,38.25990689,13 Years and 4 Months,Yes,1657.188422,,High_spent_Large_value_payments,203.7234668,0,-2.0796,-1.2168,1.0267,-1.5106,-0.9836 -0x7099,CUS_0x8927,August,29,184-06-0856,Media_Manager,29758.46,,5,6,8,3,"Student Loan, Home Equity Loan, and Payday Loan",25.66892996,17,10.79,4,Standard,817.45,40.74742069,27 Years and 3 Months,No,71.50603017,96.16857227,High_spent_Medium_value_payments,351.1125642,0,-0.7379,-1.9573,-0.2251,1.253,1.6467 -0x70a5,CUS_0xf3c,August,29,496-52-1373,Entrepreneur,25355.14,1878.928333,8,4,12,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",7.685394562,8,4.49,3,Standard,172.56,25.60496017,15 Years and 10 Months,No,38.23483307,,Low_spent_Small_value_payments,330.1133581,0,-0.3948,0.2995,-1.0788,-0.1533,-0.5182 -0x70b1,CUS_0x85ba,August,45,366-96-2058,Musician,29944.64,2787.386667,8,4,4,1,Personal Loan,17.74186755,13,1.41,3,_,1211.682645,26.03651169,24 Years and 0 Months,No,22.23768127,90.84664491,High_spent_Medium_value_payments,424.1025366,0,-0.3439,1.5734,1.1437,-1.6598,1.0224 -0x70bd,CUS_0x1e96,August,29,782-91-2016,_______,17187.27,1589.2725,10,7,25.06745738,8,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Auto Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",30.03313664,,7.79,8,Bad,5688.2061,30.20905079,5 Years and 0 Months,Yes,90.56454169,121.8084942,Low_spent_Small_value_payments,209.8339262,0,1.6,-0.3838,0.0519,0.3115,1.503 -0x70c9,CUS_0x5f67,August,18,302-54-1542,Scientist,42266.3,3505.191667,7,7,13,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",,14,12.13,7,Standard,598.7214824,40.54613784,28 Years and 6 Months,Yes,59.26225983,331.2071762,Low_spent_Medium_value_payments,286.9274571,0,-1.6706,2.6141,0.7563,0.7793,-0.3156 -0x70d5,CUS_0x28f3,August,39,995-69-9991,Lawyer,56038.28,4860.856667,5,4,9.288361749,2,"Personal Loan, and Credit-Builder Loan",14.6335965,14,8.03,4,Good,244.138946,30.58087415,21 Years and 4 Months,No,76.22103398,516.9484776,High_spent_Medium_value_payments,575.8973306,0,-0.2703,0.7194,0.3258,-0.806,-0.7824 -0x70e1,CUS_0x124a,August,28,591-07-8373,Developer,16861.34,,2,6,2,3,"Mortgage Loan, Payday Loan, and Not Specified",4.462346276,8,10.77,2,Good,408.71,37.59274536,23 Years and 8 Months,No,41.57299471,118.2143746,Low_spent_Large_value_payments,255.5237974,0,1.7174,1.2642,-0.6218,0.021,-0.5706 -0x70ed,CUS_0x2123,August,19,941-73-1564,Mechanic,15094.925,1342.910417,3,5,1,0,,13.70534256,11,9.56,3,_,268.53,30.38810516,24 Years and 2 Months,No,0,61.47365113,!@9#%8,362.8173905,0,-0.254,0.3902,-0.2458,-0.284,1.0172 -0x70f9,CUS_0x37fb,August,34,829-28-9860,Lawyer,35166.35,,4,4,2,1,Not Specified,13.91875024,12,4.33,3,Good,1061.471052,39.14041091,21 Years and 4 Months,No,10747,207.8323344,Low_spent_Small_value_payments,390.6433365,0,-1.4488,1.3467,-0.5295,-0.7856,0.2227 -0x7105,CUS_0x45db,August,50,824-30-1475,Mechanic,86742.32,7030.526667,8,4,18.28836175,2,"Mortgage Loan, and Payday Loan",,15,14.12,2,_,19.11,31.90116912,26 Years and 5 Months,Yes,136.3423111,748.9752466,High_spent_Small_value_payments,497.6725699,0,-0.7086,0.2521,-0.4842,-0.1517,0.4069 -0x7111,CUS_0x8ac0,August,20,385-33-2227,_______,71608.12,6029.343333,2,3,10,4,"Auto Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",0,1,3.61,5,Good,643.24,39.97822848,18 Years and 10 Months,No,122.4784536,359.0969114,Low_spent_Medium_value_payments,401.3589683,0,0.5572,-0.2388,0.3591,0.2098,0.681 -0x711d,CUS_0x6fb1,August,28,848-55-0249,Manager,20685.51,1779.7925,6,5,28.06745738,4,"Payday Loan, Mortgage Loan, Not Specified, and Auto Loan",32.54507917,19,19.7,10,Bad,1479.870954,37.34750141,19 Years and 9 Months,Yes,44.04970092,,Low_spent_Large_value_payments,246.2247586,0,0.8625,0.6276,0.9393,-0.4642,0.205 -0x7129,CUS_0xc492,August,35,886-01-0009,Manager,21734.19,,4,1,10,1,Personal Loan,13.48975288,13,8.11,7,_,263.2,27.48486633,28 Years and 8 Months,No,13.35905908,106.8148156,Low_spent_Small_value_payments,327.0443753,0,-0.0247,-1.8415,-1.2,0.8912,1.032 -0x7135,CUS_0x7dac,August,52,#F%$D@*&8,Teacher,22489.25,,5,5,7,2,"Mortgage Loan, and Home Equity Loan",,12,13.93,5,Good,1189.23,36.89343318,17 Years and 6 Months,No,34.01900828,146.8616943,Low_spent_Large_value_payments,253.4297141,0,0.4565,-0.5598,0.4245,-0.0897,-0.137 -0x7141,CUS_0x3a1b,August,47,250-09-2815,Manager,16524.395,1645.032917,5,5,21.06745738,4,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,20,11.65,3,_,1103.774623,35.87146984,26 Years and 2 Months,No,44.23685736,,Low_spent_Medium_value_payments,239.8258796,0,-0.7997,-0.6402,0.5013,-0.6228,0.6725 -0x714d,CUS_0x6596,August,27,#F%$D@*&8,Scientist,124885.11,10127.0925,3,6,0.288361749,0,Not Specified,17.64664007,15,10.41,0,Good,935.74,32.24811682,30 Years and 10 Months,No,73.82316215,1279.797228,Low_spent_Medium_value_payments,359.0263207,0,-0.7462,-0.8255,-2.4014,0.0466,0.7168 -0x7159,CUS_0x121b,August,42,162-52-8159,Architect,33209.27,,1,6,8,2,"Debt Consolidation Loan, and Not Specified",7.100598893,4.541416474,8.99,4,_,827.2981857,30.24811514,17 Years and 5 Months,No,54.26316332,,Low_spent_Small_value_payments,259.029719,0,-0.2217,0.506,-1.8195,-0.293,0.9486 -0x7165,CUS_0xb46,August,33,004-46-4845,Engineer,16572.96,,4,3,14,3,"Not Specified, Auto Loan, and Personal Loan",20.89914894,17,18.02,,Standard,2253.31,30.5133442,,Yes,21.71981434,70.36276275,Low_spent_Small_value_payments,329.6254229,0,0.0191,-0.4146,-0.1812,-1.4389,-0.5805 -0x7171,CUS_0x34aa,August,26,955-87-4801,Journalist,20833.19,,6,6,35.06745738,5,"Auto Loan, Mortgage Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",,25.21575167,16.02,9,Bad,5816.711238,38.09317256,4 Years and 4 Months,NM,77.59130262,71.61593256,Low_spent_Small_value_payments,280.4823935,0,0.909,0.3961,-1.6889,0.0647,-0.0023 -0x717d,CUS_0x689c,August,40,809-67-7994,Entrepreneur,19436.28,,5,5,16,5,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",15.24352754,12,17.59,9,_,1819.46,36.45503515,15 Years and 10 Months,Yes,80.27057496,10000,Low_spent_Small_value_payments,211.3532468,0,0.6491,-0.8822,0.3924,-1.1369,-0.4837 -0x7189,CUS_0x553,August,30,104-11-0399,Engineer,20456.35,,7,10,16.06745738,9,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Personal Loan, Payday Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",,18,8.58,9,Bad,4647.780954,33.23169081,8 Years and 2 Months,Yes,85.67526559,,High_spent_Large_value_payments,213.6404737,0,-0.7778,-0.7093,-0.3515,0.7841,-2.3417 -0x7195,CUS_0x5050,August,36,215-17-4568,Musician,28485.95,,8,5,5,1,Student Loan,18.75702735,15,19.51,5,Standard,339.45,25.05153835,33 Years and 6 Months,Yes,17.43495131,239.5218785,Low_spent_Large_value_payments,277.0260869,0,1.6625,0.3866,-0.3088,1.0889,-1.0993 -0x71a1,CUS_0x95cf,August,25,685-36-3528,Writer,40105.03,,2,6,4,1,Auto Loan,,4.629360785,6.55,3,_,708.2310452,34.99296562,27 Years and 5 Months,No,79971,121.6350027,High_spent_Small_value_payments,472.0122474,0,-1.0535,-1.2028,-1.0244,-0.4722,-0.0165 -0x71ad,CUS_0x3f18,August,41,309-95-7818,Scientist,30988.54,,6,6,6,7,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Student Loan, and Credit-Builder Loan",25.22040751,18,8.4,8,Standard,189.28,25.31383687,,Yes,158.5492413,36.38160219,High_spent_Large_value_payments,327.8069898,0,0.8597,0.937,-0.4186,1.1181,-1.0349 -0x71b9,CUS_0xb74c,August,33,687-42-0262,_______,73475.02,6225.918333,0,5,8,3,"Personal Loan, Personal Loan, and Home Equity Loan",,,4.6,1,Good,160.0845455,30.19405096,17 Years and 3 Months,No,177.0168471,177.3475646,High_spent_Small_value_payments,528.2274216,0,0.0801,-1.1318,0.9023,-0.0777,0.2454 -0x71c5,CUS_0x7a0a,August,54,828-80-4340,Entrepreneur,17321.505,,6,7,13,1,Not Specified,23.61326593,17,7.64,2,Standard,589.67,31.58451495,30 Years and 11 Months,No,14.36936423,94.09866103,Low_spent_Small_value_payments,317.6778497,0,-0.422,-0.0799,0.0228,-0.7615,-0.2631 -0x71d1,CUS_0x8f4,August,49,884-12-2323,Developer,27525.02,2239.751667,6,6,6,0,,26.95967111,19,17.92,2,Standard,999.12,27.331822,23 Years and 8 Months,Yes,0,92.01887945,High_spent_Medium_value_payments,381.9562872,0,-2.6519,0.1913,0.7632,-0.9849,0.3288 -0x71dd,CUS_0xb6b9,August,47,107-13-6164,Journalist,122050.38,10173.865,3,2,8,4,"Personal Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",4.569469451,5,10.66,5,Good,456.0249094,34.42004357,22 Years and 0 Months,No,336.3754162,301.7529153,High_spent_Small_value_payments,684.3522647,0,-0.778,-0.416,0.0647,-0.6031,1.6224 -0x71e9,CUS_0xb5e3,August,27,172-01-0082,Musician,32763.68,,7,7,5,4,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",,13,16.3,8,Standard,512.3021355,38.43556931,18 Years and 10 Months,Yes,99.19011378,112.9133758,High_spent_Small_value_payments,322.0866215,0,-1.2968,-2.0123,-0.9402,-0.2507,-0.3732 -0x71f5,CUS_0x1748,August,35,958-25-6723,Mechanic,179987.28,14816.94,5,5,8,4,"Mortgage Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",,9.224816895,-3.46,1,Good,838.4206327,43.96243209,21 Years and 2 Months,No,417.8439911,135.9553521,High_spent_Large_value_payments,1167.894657,0,1.2623,-1.2601,-0.7507,-1.3188,-0.9618 -0x7201,CUS_0xb223,August,37,337-54-1559,Manager,34989.38,,4,3,9,3,"Personal Loan, Payday Loan, and Debt Consolidation Loan",12.93847054,,9.28,4,Good,957.58,32.15816714,25 Years and 11 Months,No,84.11593622,282.2807952,Low_spent_Medium_value_payments,234.7814352,0,-0.7624,0.2806,0.8671,0.525,-0.0399 -0x720d,CUS_0xf58,August,29,108-83-3774,Scientist,35235.45,3048.2875,6,4,5473,1,Debt Consolidation Loan,,8,19.41,12,_,1140.68,40.32776005,18 Years and 0 Months,Yes,23.12509761,145.041852,High_spent_Small_value_payments,396.6618004,0,0.285,0.4092,-0.1354,-0.4249,0.6776 -0x7219,CUS_0x801f,August,33,404-03-3907,Scientist,72414.06,,5,6,19,4,"Student Loan, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",19.8090293,17,9.55,2,Standard,1020.01,39.51035116,25 Years and 5 Months,No,201.3750786,259.2594835,High_spent_Medium_value_payments,412.8159379,0,-0.5091,0.5082,0.3333,-0.1968,-1.26 -0x7225,CUS_0xb93e,August,38,977-08-5980,Scientist,63259.8,5538.65,4,4,17,6,"Payday Loan, Home Equity Loan, Not Specified, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,19,16.86,7,Standard,2572.3,37.4754155,18 Years and 0 Months,NM,263.0772079,,High_spent_Small_value_payments,332.1688884,0,0.9742,-1.2631,-0.1452,0.5569,0.3452 -0x7231,CUS_0x102d,August,31,692-71-7552,Entrepreneur,89064.52,7256.043333,5,3,1,1,Mortgage Loan,1.714108832,5,6.37,3,_,599.7266111,30.57429936,30 Years and 3 Months,No,37.57275058,339.0956493,High_spent_Medium_value_payments,641.9374637,0,0.9343,-2.7121,-0.8351,-0.7685,2.4679 -0x723d,CUS_0xb51a,August,26,099-89-4998,Media_Manager,31137.12,2405.76,6,6,31,8,"Home Equity Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, Auto Loan, Student Loan, and Auto Loan",24.69348989,20,20.18,8,Bad,2938.55,31.15334631,2 Years and 8 Months,Yes,112.9666989,57.31715541,High_spent_Medium_value_payments,320.2921457,0,1.4582,0.8054,-1.5887,0.2423,-1.1942 -0x7249,CUS_0x4843,August,44,036-30-1880,Lawyer,33714.38,,10,10,16.95700519,9,"Mortgage Loan, Auto Loan, Auto Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Mortgage Loan",33.4660408,22.30551069,21.09,6,Bad,3685.211179,28.07393605,2 Years and 3 Months,Yes,1558.763224,78.46039118,Low_spent_Medium_value_payments,213.5791826,0,-0.4355,0.6321,-0.5667,0.9898,0.2598 -0x7255,CUS_0x5c81,August,23,003-29-4313,Teacher,17497.83,,3,7,19,4,"Payday Loan, Mortgage Loan, Personal Loan, and Personal Loan",27.46586708,17.14123256,8.13,9,_,2742.158448,25.76684398,9 Years and 11 Months,Yes,43.90394491,37.79856394,Low_spent_Large_value_payments,329.2127412,0,-0.9593,0.672,0.6856,-0.1644,-0.2636 -0x7261,CUS_0x4be5,August,18,964-87-3738,Scientist,9150.48,992.54,8,3,15,5,"Mortgage Loan, Student Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",,22,9.17,7,_,177.16,31.15159608,14 Years and 10 Months,Yes,22.50044086,79.17128805,Low_spent_Small_value_payments,287.5822711,0,-0.557,0.6269,-1.034,-0.3382,0.9571 -0x726d,CUS_0x3e57,August,18,#F%$D@*&8,Scientist,35593.16,2711.096667,6,10,27,4,"Not Specified, Home Equity Loan, Student Loan, and Credit-Builder Loan",37.4738234,22,15.67,11,Bad,1368.27,37.58009158,6 Years and 5 Months,Yes,72.42175525,80.88404784,Low_spent_Large_value_payments,387.8038636,0,-1.3404,0.6988,-0.5489,-0.2711,0.9227 -0x7279,CUS_0x83f,August,34,786-66-2253,Engineer,10333.895,,3,6,20,100,"Credit-Builder Loan, Personal Loan, Student Loan, and Not Specified",,15,11.32,10,Standard,70.46,35.01209019,10 Years and 6 Months,Yes,21.45334054,10000,Low_spent_Large_value_payments,279.1794007,0,0.1894,0.9389,-0.679,0.982,-1.1835 -0x7285,CUS_0xb182,August,28,784-97-8297,Doctor,19903.785,1670.64875,1,4,7,0,,,2,4.33,6,Good,1015.4,35.12300386,29 Years and 4 Months,No,0,38.76867175,High_spent_Small_value_payments,388.2962033,0,0.4983,0.7563,-0.6384,-0.7075,0.3351 -0x7291,CUS_0x79d5,August,34,788-50-6387,Architect,19171.68,1413.64,10,10,35.95700519,9,"Not Specified, Mortgage Loan, Auto Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",42.04139694,25.90101268,11.5,13,Bad,2601.777845,36.29535139,11 Years and 10 Months,Yes,1416.074357,82.84460832,Low_spent_Medium_value_payments,201.3946654,0,-1.029,0.7021,0.3859,0.1877,0.3446 -0x729d,CUS_0x3bc5,August,26,144-98-8454,Developer,18863.28,,9,7,34.06745738,6,"Payday Loan, Credit-Builder Loan, Personal Loan, Personal Loan, Auto Loan, and Auto Loan",,27.31513929,6.68,8,_,1860.31848,34.70081943,12 Years and 9 Months,Yes,49.78859568,72.49736719,Low_spent_Small_value_payments,292.5877492,0,-0.3826,1.0689,-0.3977,-0.6574,-1.0538 -0x72a9,CUS_0x3ded,August,18,226-87-4091,Scientist,33537.3,2899.775,10,6,28,7,"Debt Consolidation Loan, Auto Loan, Personal Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",,24,15.95,14,Bad,2502.26,35.64539238,8 Years and 11 Months,Yes,169.2558028,65.46855276,High_spent_Medium_value_payments,305.2531445,0,2.0509,0.9302,0.2556,-0.1988,1.2676 -0x72b5,CUS_0x7808,August,18,088-72-9373,Developer,15784.09,1417.340833,8,7,19.06745738,6,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Not Specified",,29.37366991,,7,Bad,1629.786207,27.9785726,6 Years and 6 Months,Yes,51.7655562,,!@9#%8,201.1578791,0,0.3644,0.6207,0.0572,1.1541,0.8318 -0x72c1,CUS_0x966e,August,42,165-41-7730,Doctor,69895.76,5954.646667,632,6,16,100,"Debt Consolidation Loan, Auto Loan, and Home Equity Loan",20.72017699,18.07721884,11.82,13,Standard,2541.590819,32.72268001,15 Years and 3 Months,Yes,21368,144.9826418,High_spent_Medium_value_payments,560.7380216,0,-1.8643,-0.717,0.7153,1.2649,0.6781 -0x72cd,CUS_0x29ff,August,49,145-67-9263,Musician,33254.2,3062.183333,4,7,3,0,,8.977289354,3.639167105,6.94,2,Good,76.6056671,31.98050121,17 Years and 9 Months,No,0,89.70796635,Low_spent_Large_value_payments,486.510367,0,-0.7166,0.511,-0.2799,-0.699,0.5162 -0x72d9,CUS_0xbca8,August,46,874-08-7483,Developer,15635.86,,3,3,15,2,"Credit-Builder Loan, and Credit-Builder Loan",25.1786597,18,6.21,1,Standard,409.7,31.61425801,,No,18.13451945,10000,High_spent_Small_value_payments,318.9357712,0,-0.3295,0.5818,-1.9072,-0.1372,0.0859 -0x72e5,CUS_0x20de,August,40,446-11-4496,_______,52742.91,,4,7,15,3,"Student Loan, Mortgage Loan, and Not Specified",,15.97395829,13.79,11,Standard,1833.993037,37.24417048,12 Years and 0 Months,Yes,76.63686697,159.4987748,High_spent_Medium_value_payments,457.9886082,0,-0.2275,-1.9993,0.8689,0.2941,-0.5203 -0x72f1,CUS_0x752f,August,37,297-48-4612,Writer,140948.32,11794.69333,6,7,13.28836175,4,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",20.60863759,17.47832426,10.29,3,Standard,115.107085,33.62740482,,Yes,310.155971,810.9662069,Low_spent_Medium_value_payments,758.2846164,0,-0.7903,1.3229,-0.5914,-1.9362,0.1306 -0x72fd,CUS_0x1ffd,August,43,806-33-9100,Architect,14311.105,1277.592083,4,3,4,3,"Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",16.28277124,,4.53,3,_,353.2389273,28.71060251,21 Years and 9 Months,NM,21.81573251,73.68263689,Low_spent_Small_value_payments,329.1911975,0,-0.2667,0.2793,2.1574,0.7732,0.9265 -0x7309,CUS_0xa05d,August,30,445-30-2049,Scientist,177546.36,14813.53,5,1,5,0,,5.623827641,6,7.3,1,Good,715.97,31.82763474,30 Years and 5 Months,NM,3776,308.7854773,High_spent_Medium_value_payments,1422.567523,0,-0.2399,-1.5323,-0.0943,-0.1781,-0.0449 -0x7315,CUS_0x62a6,August,51,912-87-7914,Developer,20995.615,,0,2,6,1348,Payday Loan,2.286054933,5,4.57,8,Good,1238.55,32.57852152,29 Years and 0 Months,No,9.143908458,78.26328597,Low_spent_Small_value_payments,393.5562639,0,-0.5263,-0.4381,-0.6202,0.3595,-0.833 -0x7321,CUS_0x859d,August,25,013-32-5071,Musician,15985.56,,6,7,29,7,"Student Loan, Student Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",23.60582126,17,21.6,,_,3311.2,22.51143,,Yes,121.1140652,18.12791547,High_spent_Medium_value_payments,276.9484036,0,0.7485,-1.2824,-2.2871,0.9814,0.9653 -0x732d,CUS_0xc516,August,44,051-99-9115,Doctor,94159.71,8028.6425,0,1,3.288361749,2,"Mortgage Loan, and Personal Loan",13.59665228,12,2.2,2,_,701.9808641,35.74302867,19 Years and 5 Months,No,121.048548,665.2609006,Low_spent_Medium_value_payments,753.3923242,0,-0.6235,1.103,0.6686,-1.098,0.7771 -0x7339,CUS_0x9c80,August,44,721-72-7576,Engineer,59426.85,5049.2375,8,10,28.06745738,9,"Not Specified, Auto Loan, Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, and Auto Loan",32.35188369,18,29.06,14,_,4848.630954,36.52874236,1 Years and 6 Months,Yes,226.4557712,162.90581,Low_spent_Medium_value_payments,368.8418809,0,0.4459,0.1445,0.5503,1.0251,-0.5315 -0x7345,CUS_0xa0f4,August,35,880-02-0378,Writer,48662.02,4301.168333,7,7,5,4,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",,13,11.96,2,Standard,660.09,39.33915719,31 Years and 6 Months,Yes,86.44703441,28.11914675,High_spent_Large_value_payments,555.5506522,0,-0.1581,0.622,1.0273,-2.3684,-0.4375 -0x7351,CUS_0x330c,August,18,970-80-1015,Journalist,61277.55,4876.4625,5,6,14,2,"Student Loan, and Credit-Builder Loan",16.79624807,15,15.54,9,Standard,1380.47,29.19859506,8 Years and 3 Months,Yes,88.56625812,195.6119615,Low_spent_Medium_value_payments,483.4680304,0,-0.6176,0.8318,1.08,0.6505,0.0558 -0x735d,CUS_0x210d,August,33,667-42-0049,Journalist,15447.63,,3,4,28.06745738,100,"Home Equity Loan, Mortgage Loan, and Home Equity Loan",14.98862233,10,15.91,8,Standard,2685.090954,29.99973139,6 Years and 5 Months,NM,37.98330516,,Low_spent_Medium_value_payments,254.8318159,0,-1.9678,-0.7451,0.9208,-0.7759,1.1596 -0x7369,CUS_0x7278,August,43,712-34-1572,Doctor,70334.76,5602.23,9,9,21,3,"Home Equity Loan, Student Loan, and Credit-Builder Loan",,27.24976055,9.52,15,Bad,1565.309715,32.13294885,16 Years and 2 Months,Yes,69849,,High_spent_Small_value_payments,520.5863385,0,-0.0188,0.8385,0.5267,0.2689,1.2436 -0x7375,CUS_0x4898,August,41,819-28-9726,Accountant,51884.96,4490.746667,6,4,2025,0,,27.1400311,21,8.98,10,_,811.42,39.45320675,16 Years and 11 Months,NM,0,594.4287327,Low_spent_Small_value_payments,144.6459339,0,2.7017,1.1232,-0.613,0.8589,-0.3122 -0x7381,CUS_0x7a6f,August,26,630-51-0238,Engineer,50774.91,4431.2425,6,7,23,7,"Payday Loan, Not Specified, Auto Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",,23.61963618,1.81,,Bad,1402.015388,32.77702064,19 Years and 10 Months,NM,290.5017437,49.16480373,High_spent_Medium_value_payments,353.4577026,0,0.2337,0.721,-2.2291,-0.1992,-0.4901 -0x738d,CUS_0x66bb,August,49,310-18-5191,Scientist,142665.96,,8,6,6,0,,,,16.42,7,_,430.1523457,27.92650268,22 Years and 8 Months,NM,1102.977069,1253.900619,Low_spent_Small_value_payments,378.0420962,0,0.4047,-0.4056,-0.8346,-0.3901,-0.2809 -0x7399,CUS_0x5465,August,36,639-70-2163,Musician,68332.18,5513.348333,7,6,20,0,,24.23950739,17,4.92,1,_,380.03,28.56326925,,No,0,319.1070455,High_spent_Small_value_payments,492.2277879,0,0.0555,-0.1348,2.0349,0.6873,-1.164 -0x73a5,CUS_0xbfe4,August,42,826-67-4358,Mechanic,38919.9,,8,7,13,100,Debt Consolidation Loan,9.619725116,10,10.2,0,_,1058.13,36.8086712,20 Years and 8 Months,No,22.01288434,219.2342931,Low_spent_Large_value_payments,350.2853226,0,-0.4259,1.0898,-0.7776,-1.0999,1.5204 -0x73b1,CUS_0x6945,August,35,189-61-6487,Engineer,17164.73,1545.394167,3,6,17.28836175,2,"Not Specified, Payday Loan, and Not Specified",6.173541253,8,14.35,8,Standard,172.13,30.46481793,9 Years and 6 Months,Yes,35.18435848,516.1812268,High_spent_Small_value_payments,283.1112924,0,-0.5301,-0.0437,1.5179,-0.5487,-0.0435 -0x73bd,CUS_0x7c64,August,48,399-83-4333,Architect,39715.98,3089.665,4,7,12,3,"Mortgage Loan, Home Equity Loan, and Personal Loan",,15,19.73,6,_,1125.16,32.96363895,26 Years and 10 Months,Yes,77.18699826,,Low_spent_Large_value_payments,235.1985116,0,-2.322,-0.3664,0.3522,0.1726,-0.9976 -0x73c9,CUS_0x53c0,August,33,355-60-0601,Mechanic,162550.04,13331.83667,5,1458,0.288361749,0,,0.212767695,3,3.9,6,Good,571.39,29.07952225,29 Years and 0 Months,No,0,1258.447587,Low_spent_Medium_value_payments,774.6735407,0,0.7663,-1.5205,0.7032,0.1407,-0.8076 -0x73d5,CUS_0x10dd,August,25,907-60-4113,Teacher,105645.6,9090.8,4,3,5,4,"Credit-Builder Loan, Student Loan, Payday Loan, and Personal Loan",,19,2.41,4,_,1336.91,40.45548153,21 Years and 4 Months,No,315.4061006,170.8991872,High_spent_Large_value_payments,662.7747121,0,-0.3234,-0.8488,-1.3812,-1.2506,-1.6538 -0x73e1,CUS_0x6d25,August,39,302-04-8460,Mechanic,40908.16,,0,7,10,0,,,8,8.01,4,Good,1210.4,27.93153433,17 Years and 5 Months,No,0,295.0757056,Low_spent_Large_value_payments,302.2256277,0,0.7709,-0.4022,-0.844,-0.6932,-1.9083 -0x73ed,CUS_0x724a,August,31,719-37-1810,Architect,14012.055,1464.67125,4,6,14,3,"Credit-Builder Loan, Mortgage Loan, and Student Loan",15.23888868,8,2.8,3,Standard,702.16,22.35618559,15 Years and 11 Months,No,29.83798149,197.3458362,Low_spent_Small_value_payments,209.2833074,0,-2.9293,-0.8564,-1.1237,-0.9969,-1.5459 -0x73f9,CUS_0xafed,August,60,446-64-3664,Writer,87903.62,7269.301667,2,6,12,3,"Credit-Builder Loan, Auto Loan, and Auto Loan",16.71605992,,7.86,3,Good,30.01954704,35.14128403,18 Years and 9 Months,No,143.2560921,723.9826531,Low_spent_Medium_value_payments,206.968969,0,1.6068,1.1938,0.1602,0.254,-0.4334 -0x7405,CUS_0x397b,August,31,546-18-3954,Manager,139608.72,11378.06,5,5,1884,4,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",90,1509,2.27,3,_,481.89,35.16569081,27 Years and 11 Months,No,235.1463447,1248.304344,Low_spent_Small_value_payments,,0,1.6317,0.3171,0.6728,-1.4474,0.7069 -0x7411,CUS_0x7efe,August,41,338-22-8890,Journalist,126382.92,10386.91,5,3,9,3,"Auto Loan, Student Loan, and Payday Loan",10.12967765,8,4.53,0,Good,672.4954721,30.18889949,22 Years and 8 Months,No,248.8965581,603.9334809,Low_spent_Medium_value_payments,549.1079597,0,-0.466,0.4713,-0.5001,0.9847,-1.3841 -0x741d,CUS_0xb0ce,August,38,312-27-5194,Media_Manager,28949.6,,3,5,2,3,"Home Equity Loan, Home Equity Loan, and Payday Loan",,8,1.45,9,Good,405.51,23.24526284,,No,51.26711955,10000,Low_spent_Small_value_payments,275.4716863,0,-1.3023,1.2684,-3.1243,-0.4101,-0.4184 -0x7429,CUS_0x8cf3,August,18,343-21-3350,Manager,15359.74,,10,7,27,8,"Student Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Auto Loan",18.05813817,,1.06,,Bad,2278.70036,30.7607674,,Yes,70.86812407,48.16846782,Low_spent_Medium_value_payments,297.2612414,0,-1.0709,0.6686,-0.5685,-0.2462,0.5873 -0x7435,CUS_0x1197,August,28,799-23-8283,_______,92300.01,,2,4,11,3,"Credit-Builder Loan, Not Specified, and Credit-Builder Loan",16.09316939,9,18.96,2,_,755.17,26.98978682,18 Years and 11 Months,Yes,49236,,Low_spent_Large_value_payments,581.1567885,0,-1.5005,2.3119,-1.0645,0.0262,0.8771 -0x7441,CUS_0x1e62,August,33,495-51-7258,Journalist,11149856,1272.239167,689,4,1,2,"Auto Loan, and Personal Loan",,2,11.42,3,Good,805.77,34.44458589,32 Years and 6 Months,No,16.22361044,107.2236217,Low_spent_Small_value_payments,293.7766845,0,-1.9638,0.7534,0.2834,0.0423,2.1567 -0x744d,CUS_0x6184,August,48,245-92-1411,Doctor,30416.28,,5,4,4,0,,0.005754371,3,1.33,3,Good,893.0390963,24.54267346,18 Years and 11 Months,No,0,100.1776781,High_spent_Medium_value_payments,398.3769616,0,-0.5729,1.3747,-0.5041,0.3266,0.1632 -0x7459,CUS_0x369d,August,32,483-28-8127,Manager,62380.11,,7,5,29,5,"Credit-Builder Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Not Specified",28.95499461,18.29943612,26.26,,Bad,3399.603325,25.19899319,7 Years and 8 Months,Yes,214.9195125,321.3998062,Low_spent_Medium_value_payments,255.4149313,0,0.4017,-0.9143,-0.8614,0.2872,0.4213 -0x7465,CUS_0x4285,August,52,967-33-1628,Accountant,19271.95,1536.995833,6,4,9,3,"Not Specified, Not Specified, and Credit-Builder Loan",16.64088774,9,15.97,2,Standard,368.72,25.72746902,32 Years and 9 Months,Yes,35.04678908,123.9885042,Low_spent_Large_value_payments,264.6642901,0,-0.3074,-1.1374,0.1407,-1.5701,-0.7036 -0x7471,CUS_0xaf09,August,49,003-80-8234,Lawyer,15055,,3,3,8,3,"Credit-Builder Loan, Not Specified, and Home Equity Loan",,4,2.61,7,Good,360.12,38.52557244,17 Years and 11 Months,No,31.77546124,,Low_spent_Small_value_payments,274.1014646,0,-0.2533,-1.7539,-0.8785,-0.516,1.4147 -0x747d,CUS_0x3159,August,41,179-75-4453,Writer,30963.76,,3,5,5,2,"Personal Loan, and Debt Consolidation Loan",,21,7.23,1,Standard,759.58,28.60245096,19 Years and 11 Months,NM,37.46358878,41.0784825,High_spent_Medium_value_payments,446.2892621,0,0.406,-0.7698,-0.6222,-0.2516,0.7157 -0x7489,CUS_0x587,August,32,291-15-8697,Doctor,18070.01,,9,7,34,3,"Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,28.76905891,8.89,8,Bad,2780.677086,38.79505378,9 Years and 6 Months,NM,43.4806842,,High_spent_Small_value_payments,286.3731905,0,0.8845,0.8816,-0.4364,-0.7527,-0.1666 -0x7495,CUS_0x91ee,August,32,475-37-1012,Manager,59241.38,4818.781667,4,5,9,3,"Personal Loan, Debt Consolidation Loan, and Auto Loan",7.694924361,10,6,2,Good,690.12,36.73129131,24 Years and 2 Months,No,128.9292457,169.71807,Low_spent_Small_value_payments,473.2308509,0,-0.8686,0.6907,-0.3478,0.8742,-1.2056 -0x74a1,CUS_0x7b90,August,44,816-38-1312,Developer,65588.1,4813.717403,7,4,11,3,"Not Specified, Mortgage Loan, and Credit-Builder Loan",26.50313019,20,,0,Good,1152.157513,24.10212967,31 Years and 3 Months,No,609.0231126,,Low_spent_Large_value_payments,203.5645442,0,0.5365,-0.7921,0.0747,-0.6667,-0.7834 -0x74ad,CUS_0xb1e8,August,25,401-41-0715,_______,69941.9,,4,6,14,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Mortgage Loan",13.47186844,11,9.81,,Standard,375.97,39.81531588,22 Years and 0 Months,No,218.5600879,126.8146188,High_spent_Medium_value_payments,481.27446,0,-0.4677,0.8265,1.4848,-0.8978,0.7414 -0x74b9,CUS_0x3d79,August,33,049-54-5444,Architect,17914.24,,6,6,11,5,"Not Specified, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,9,4.98,5,Standard,703.21,38.36740434,10 Years and 0 Months,Yes,65.91462582,140.0041615,Low_spent_Large_value_payments,238.566546,0,0.2029,-1.7087,-0.7264,-0.9985,0.672 -0x74c5,CUS_0x45b4,August,49,557-86-2567,Lawyer,39580.3,3203.358333,0,5,8,2,"Debt Consolidation Loan, and Personal Loan",,7.2375323,11.14,7,_,510.2414231,39.48024645,17 Years and 9 Months,No,56.75506518,90.27327613,Low_spent_Medium_value_payments,453.307492,0,-0.1724,-2.2454,-1.2427,0.508,1.8373 -0x74d1,CUS_0x624e,August,51,949-49-0437,Engineer,172413.64,14258.80333,2,3,2,0,,8.205397536,8,3.18,6,_,1094.29,45.34304546,,No,0,272.8658105,High_spent_Medium_value_payments,1403.014523,0,-0.3945,-1.2414,-1.099,-1.5699,0.153 -0x74dd,CUS_0x752e,August,48,069-41-0961,Writer,100233.4,8499.783333,6,4,1.288361749,2,"Student Loan, Home Equity Loan, and Student Loan",15.48283656,15,6.95,4,Good,616.68,36.15789547,25 Years and 10 Months,No,182.347046,,High_spent_Large_value_payments,776.8932379,0,-0.87,-1.6175,-0.4143,0.0939,-0.9635 -0x74e9,CUS_0x5b88,August,52,358-72-2084,Developer,35444.72,,1,5,5,0,,13.94327738,11,,2,Good,1348.43,27.38882729,18 Years and 3 Months,No,0,,Low_spent_Large_value_payments,486.2463624,0,0.482,-0.3073,0.5088,-0.3537,0.3378 -0x74f5,CUS_0x41cd,August,34,342-11-7845,Scientist,76338.68,6608.556667,4,6,18.28836175,0,Credit-Builder Loan,15.05247689,,12.18,6,Standard,965.06,37.62671827,13 Years and 10 Months,Yes,52.63006496,534.3640374,!@9#%8,733.7990253,0,-0.112,2.0164,-1.61,0.7706,-1.2364 -0x7501,CUS_0xa955,August,42,861-50-3592,Mechanic,129680.28,,8,3,5,2,"Mortgage Loan, and Credit-Builder Loan",22.17038181,15,16.65,6,Standard,240.27,35.75271976,,Yes,114.1656094,114.72445,High_spent_Large_value_payments,1075.478941,0,0.8624,-0.1287,-0.3211,-0.6898,-0.8812 -0x750d,CUS_0x34c8,August,29,928-40-2690,Accountant,45250.17,3751.8475,4,3,15,6,"Payday Loan, Personal Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",21.58977162,15,17.93,12,Standard,492.07,39.67371316,11 Years and 6 Months,Yes,173.8112291,220.300826,Low_spent_Large_value_payments,251.0726949,0,2.3518,-0.7123,-1.5615,-0.9254,-0.1374 -0x7519,CUS_0x5df5,August,22,697-66-1702,Journalist,14795.73,1011.9775,6,6,17.06745738,6,"Student Loan, Payday Loan, Mortgage Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",,15,15.53,10,_,3347.840954,34.43580188,8 Years and 0 Months,Yes,63.73944805,98.16242754,Low_spent_Small_value_payments,202.5755865,0,1.5434,0.1928,-0.8687,0.971,0.9989 -0x7525,CUS_0x75e,August,38,606-90-0153,Lawyer,77190.52,6470.543333,4,7,5,7,"Auto Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",13.88131517,12,12.3,7,Standard,75.94,26.46561126,16 Years and 10 Months,Yes,253.0491574,10000,High_spent_Large_value_payments,587.5925551,0,-1.6534,3.2047,-0.7647,-0.5609,-0.4012 -0x7531,CUS_0xc505,August,30,487-84-3914,Media_Manager,64030.6,5510.883333,6,6,15,5,"Credit-Builder Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",,15,16.52,11,Standard,1253.52,26.79837017,15 Years and 0 Months,Yes,183.8143039,346.9539337,Low_spent_Medium_value_payments,300.3200958,0,-1.6568,1.1975,-0.1665,-0.7224,-0.0165 -0x753d,CUS_0xb74d,August,21,222-44-7036,Media_Manager,9816.78,890.065,720,8,27.95700519,7,"Personal Loan, Not Specified, Auto Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",47.23855899,27.39070551,26.01,11,Bad,3291.67201,33.4421994,,NM,1371.882984,82.54431982,Low_spent_Small_value_payments,203.5288269,0,1.0553,1.419,-0.6788,2.3984,-0.3545 -0x7549,CUS_0xd60,August,32,810-45-4212,Mechanic,15628.95,1490.4125,10,8,20,100,"Not Specified, Debt Consolidation Loan, Home Equity Loan, Not Specified, Mortgage Loan, Personal Loan, and Personal Loan",39.35873398,21.24490405,5.52,,Bad,2332.285345,31.2359868,14 Years and 10 Months,Yes,45.84577065,26.00185461,High_spent_Medium_value_payments,327.1936247,0,0.0503,-0.7655,1.479,0.6306,0.6 -0x7555,CUS_0x99c,August,41,769-63-7639,Doctor,8578.295,,4,10,32.06745738,5,"Payday Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",22.28918007,14,22.38,6,Standard,1649.220954,33.32732664,16 Years and 8 Months,Yes,19.53533033,,Low_spent_Small_value_payments,256.1804901,0,-1.6002,-0.4761,-0.3862,-0.0363,-0.5873 -0x7561,CUS_0x3f31,August,42,208-56-2917,Developer,147210.68,12329.55667,2,5,4.288361749,0,,12.02035206,12,10.74,4,Good,323.31,37.72160786,,No,0,1301.924211,Low_spent_Medium_value_payments,630.968917,0,-0.5347,-0.4467,-1.6204,-0.3003,0.7069 -0x756d,CUS_0x3ee7,August,53,449-78-1167,Scientist,31223.33,,8,3,9,4,"Mortgage Loan, Mortgage Loan, Not Specified, and Personal Loan",19.59422988,13,7.89,3,Good,906.8,39.36931019,31 Years and 4 Months,No,362.2146195,146.4304913,Low_spent_Large_value_payments,286.5339351,0,-1.0941,0.8722,-0.3546,0.4343,-0.6621 -0x7579,CUS_0x1ef1,August,30,619-16-9988,Lawyer,30567.46,,8,3,5,100,"Not Specified, and Home Equity Loan",,15,5.54,8,Good,909.74,29.05775155,23 Years and 6 Months,No,43.22960638,103.7910731,Low_spent_Small_value_payments,375.3081539,0,-0.5055,-0.091,-0.9208,-1.2717,0.8375 -0x7585,CUS_0x8925,August,35,878-13-0132,Lawyer,45705.78,3866.815,8,3,19.28836175,0,,,8,9.97,4,Standard,132.3,40.27588275,,No,0,588.0420856,High_spent_Small_value_payments,478.5768754,0,0.7227,0.7321,0.7016,-0.2496,0.5029 -0x7591,CUS_0x4a77,August,80,187-66-6476,Engineer,169293.52,14365.79333,1,3,5,1,Debt Consolidation Loan,4.040937854,6,10.22,1,Good,863.5429467,40.68723398,,No,92.04008013,208.0962147,High_spent_Large_value_payments,1405.602614,0,1.4373,0.3403,-0.189,1.6873,0.2919 -0x759d,CUS_0x321f,August,50,669-11-4608,Writer,31002.86,,8,6,10,0,,12.08774011,12,5.1,2,Standard,1256.7,32.76453008,26 Years and 2 Months,Yes,0,139.1845546,Low_spent_Small_value_payments,435.6726121,0,3.2728,-0.6698,-1.9088,-1.3785,0.1266 -0x75a9,CUS_0x5c53,August,42,413-13-1716,Media_Manager,9275.95,553.9958333,8,8,25.06745738,4,"Mortgage Loan, Not Specified, Not Specified, and Home Equity Loan",41.5727299,24.71859567,14.23,12,Bad,2136.879214,31.32879207,12 Years and 10 Months,Yes,19.78890226,20.09468877,Low_spent_Small_value_payments,278.7957044,0,0.2953,2.0448,1.6395,-1.9677,-2.1758 -0x75b5,CUS_0x7721,August,31,678-37-2131,Musician,66999.96,,10,9,27.88954781,7,"Student Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Mortgage Loan, Student Loan, and Mortgage Loan",35.26277279,26.62098572,4.72,11,Bad,1852.811603,32.46643089,12 Years and 2 Months,Yes,1680.889512,247.9865158,High_spent_Medium_value_payments,213.0268914,0,0.2017,0.4223,-1.276,1.2323,-1.7924 -0x75c1,CUS_0x1d46,August,47,121-98-2623,Engineer,88685.32,7417.443333,0,2,3,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",1.474312128,4,6.75,8,Good,1286.060671,24.95089714,22 Years and 0 Months,No,168.7708042,249.028556,Low_spent_Large_value_payments,630.5835274,0,1.2952,-0.6264,1.3841,-1.0184,0.1889 -0x75cd,CUS_0x533e,August,45,637-69-5055,Teacher,49316.19,3848.6825,7,8,20,2,"Credit-Builder Loan, and Not Specified",43.51264007,22.42439072,10.4,12,Bad,2325.763207,37.18994305,15 Years and 9 Months,Yes,50.2979305,457.6222983,Low_spent_Small_value_payments,166.9480212,0,1.4491,1.7793,0.2645,0.3621,0.0662 -0x75d9,CUS_0x67e3,August,45,357-37-6454,Architect,8532.975,,6,6,19,6,"Not Specified, Credit-Builder Loan, Mortgage Loan, Personal Loan, Payday Loan, and Not Specified",,20.11700865,7.47,,_,2647.039648,30.44868403,14 Years and 0 Months,Yes,24.35809436,,Low_spent_Small_value_payments,249.784562,0,1.0948,1.2992,-0.1253,-0.2006,0.7636 -0x75e5,CUS_0x6c99,August,26,508-43-5579,Entrepreneur,9582.025,1022.502083,5,7,7,2,"Payday Loan, and Personal Loan",17.80821004,15.22104523,5.49,1,Good,913.1967692,26.52395586,33 Years and 4 Months,No,8.129068767,80.89999982,Low_spent_Medium_value_payments,293.2211397,0,-0.4239,0.2343,-0.8808,0.0633,1.2707 -0x75f1,CUS_0x9c59,August,25,158-74-3542,Mechanic,10568.51,,4,6,8,0,,33.42739544,24.17567045,7.15,7,Standard,1206.664968,23.35725158,16 Years and 2 Months,Yes,0,115.5664983,Low_spent_Small_value_payments,292.1044184,0,-0.1905,-0.7563,-0.5532,1.5929,-1.1223 -0x75fd,CUS_0xb298,August,80,741-31-0979,Writer,78024.96,6746.08,6,9,32,5,"Personal Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",32.96964304,23,24.34,6,Bad,4732.06,25.09330325,13 Years and 0 Months,Yes,301.0706312,394.3278179,Low_spent_Small_value_payments,269.2095509,0,-0.1949,-0.7721,1.6322,-0.5772,0.1816 -0x7609,CUS_0xc3c3,August,34,066-13-8372,Musician,32227.12,,1,4,0.288361749,2,"Student Loan, and Home Equity Loan",14.9045145,,4.09,4,Good,44.32779658,27.12495743,17 Years and 8 Months,No,49.16865304,468.5416789,!@9#%8,421.8043808,0,-0.3457,2.3762,0.0468,0.219,0.1213 -0x7615,CUS_0x38b8,August,49,272-14-6281,Lawyer,15988.665,1154.38875,2,7,8,1,Personal Loan,,11,-0.07,190,Good,912.94,26.24563966,22 Years and 11 Months,No,11.37745622,10000,Low_spent_Medium_value_payments,296.7585284,0,-0.2747,1.2386,-1.2075,0.189,1.3497 -0x7621,CUS_0x3b40,August,25,109-74-8676,Mechanic,83334.5,,5,3,3,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",0,3.544270423,10.54,8,Good,1348.088998,28.94513063,19 Years and 9 Months,No,168.1317314,305.2214693,High_spent_Small_value_payments,478.5009659,0,0.6323,0.5942,1.066,0.215,0.166 -0x762d,CUS_0x1d8f,August,27,977-87-4804,Teacher,17469.68,,7,9,19.06745738,5,"Auto Loan, Payday Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",34.13898295,18.37551272,29.12,10,Bad,4200.755452,23.88930212,6 Years and 2 Months,Yes,67.96105154,,High_spent_Small_value_payments,276.5385841,0,1.2416,0.6094,0.81,0.3963,-1.3056 -0x7639,CUS_0xa574,August,24,216-81-8709,Doctor,56023.84,,8,5,23,8,"Debt Consolidation Loan, Payday Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Student Loan, and Mortgage Loan",,25.29033936,5.6,10,Bad,4135.886824,38.00824702,10 Years and 3 Months,NM,296.1959609,63.22762135,High_spent_Medium_value_payments,384.9417511,0,-1.0156,-0.3789,-0.255,0.6154,0.9498 -0x7645,CUS_0xbdf9,August,50,256-08-6713,_______,19206.195,,5,4,7,1,Mortgage Loan,0,0,2.36,6,Good,315.4261067,34.53764325,24 Years and 3 Months,No,12.87583065,91.15399332,Low_spent_Small_value_payments,329.821801,0,-0.5605,-1.2894,1.6312,0.4002,0.6876 -0x7651,CUS_0x210f,August,36,522-83-5666,Scientist,24376.2,,4,7,10,1,Personal Loan,17.34808228,16,7.3,1,Standard,1109.03,33.34860848,22 Years and 0 Months,Yes,10.83592887,197.0518503,Low_spent_Small_value_payments,309.9472208,0,1.9711,2.1545,1.3088,0.4407,-0.0004 -0x765d,CUS_0x753,August,49,250-36-8350,Manager,29416.29,,4,5,5,4,"Home Equity Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",6.601545852,6.765874002,0.97,2,Good,1029.389725,33.07414846,,No,93.32743828,184.6156065,Low_spent_Small_value_payments,227.1927052,0,-1.0914,0.3985,-1.0219,0.3962,-0.1606 -0x7669,CUS_0xa040,August,21,079-12-3965,Architect,130353.39,10949.7825,5,6,9.288361749,0,Personal Loan,0,2,10.39,6,Good,804.31,24.18541086,24 Years and 10 Months,No,104.746202,1395.120124,Low_spent_Large_value_payments,285.049385,0,1.0734,-0.5969,0.3408,1.3367,0.2037 -0x7675,CUS_0x78d,August,33,209-53-3717,_______,35372.4,,1,6,5,3,"Personal Loan, Home Equity Loan, and Payday Loan",0.284373788,5,3.2,,Good,505.2550492,37.99841933,30 Years and 0 Months,No,63.39018116,206.0846433,Low_spent_Medium_value_payments,308.3776885,0,-0.2171,0.301,0.0889,1.0343,-0.8553 -0x7681,CUS_0x4380,August,31,261-79-5644,Writer,14360.97,,588,3,9,7,"Student Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",,14.02003447,15.1,6,Standard,2189.69007,36.7826502,,Yes,48.72288126,73.02424942,Low_spent_Medium_value_payments,284.5276193,0,0.0387,-1.0593,-0.3002,-0.5416,0.5094 -0x768d,CUS_0x6ebe,August,51,953-94-4394,Teacher,28112.52,,0,992,2,1,Auto Loan,2.504202064,4,4.53,4,Good,521.187542,39.53177426,31 Years and 9 Months,No,18.02218672,104.6128575,!@9#%8,367.8780657,0,-0.6164,-0.0949,-2.5067,0.0438,-0.2081 -0x7699,CUS_0x41fa,August,54,757-86-1116,Architect,29020.21,,5,4,5,4,"Payday Loan, Credit-Builder Loan, Student Loan, and Personal Loan",0,0,2.92,6,Good,1158.175606,24.88376786,17 Years and 8 Months,No,74.67200875,68.55444883,High_spent_Medium_value_payments,341.0682079,0,-0.9227,-0.328,-1.6114,-1.225,-0.1853 -0x76a5,CUS_0x63f7,August,55,318-11-8554,Mechanic,16168.52,,5,7,16.28836175,0,Payday Loan,11.97834174,11,8.65,3,_,92.04,32.12751671,18 Years and 10 Months,NM,7.188037222,588.5065789,Low_spent_Small_value_payments,265.5805115,0,-1.0318,-0.5662,-0.4067,-0.3157,-0.0923 -0x76b1,CUS_0x2963,August,48,203-84-0467,Entrepreneur,82859.08,7200.923333,1,1,6.288361749,2,"Payday Loan, Home Equity Loan, and Not Specified",16.41010551,,6.43,3,_,169.7164665,29.26403387,26 Years and 9 Months,No,186.7197042,803.2715742,Low_spent_Medium_value_payments,479.840697,0,-1.6214,1.428,1.3746,-2.3691,-0.08 -0x76bd,CUS_0x6deb,August,80,532-67-5525,Scientist,44986.07,3957.839167,3,3,4,2,"Personal Loan, and Debt Consolidation Loan",,,11.37,5,Good,1013.076855,39.07004999,28 Years and 10 Months,No,63.75170391,161.7125143,Low_spent_Small_value_payments,478.4510386,0,2.075,1.0757,-0.871,-0.716,-1.5826 -0x76c9,CUS_0x7357,August,23,931-66-4373,Doctor,32160.08,,5,6,5722,4,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",14.84121652,9,1.38,2,Standard,317.33,38.84245876,24 Years and 3 Months,No,76.87375541,24.73989704,High_spent_Large_value_payments,386.3870142,0,0.1845,0.0043,-0.9512,1.1005,0.8509 -0x76d5,CUS_0x9f03,August,42,#F%$D@*&8,Lawyer,28570.38,,4,5,18,1,Mortgage Loan,,12,11.2,5,Standard,1204.12,36.97751814,22 Years and 3 Months,Yes,74523,,High_spent_Medium_value_payments,391.7858293,0,-2.2701,0.8657,0.8633,1.2433,0.0521 -0x76e1,CUS_0x8162,August,50,159-20-9590,Scientist,86957.85,6769.936269,5,3,20,0,,,16,4.39,5,Standard,392.9625471,27.34199733,27 Years and 0 Months,No,496.5512307,114.4375638,High_spent_Large_value_payments,864.1351249,0,-0.0011,0.4639,-2.0845,-0.0819,-0.1554 -0x76ed,CUS_0xb67f,August,35,987-08-4120,Lawyer,76170.12,,5,7,16,6,"Auto Loan, Not Specified, Debt Consolidation Loan, Not Specified, Student Loan, and Auto Loan",,14,19.31,11,Standard,567.53,35.62187601,14 Years and 3 Months,NM,41352,,Low_spent_Medium_value_payments,182.8288275,0,0.6245,0.4153,-0.9582,-0.5754,-1.1148 -0x76f9,CUS_0xc18f,August,32,686-70-9142,Manager,123028.6,10017.38333,4,7,4,3,"Credit-Builder Loan, Home Equity Loan, and Not Specified",9.812361711,9,8.52,4,_,1361.12,38.59428458,,No,214.2706924,218.9296593,High_spent_Large_value_payments,808.5379816,0,0.6117,-0.0588,0.0709,0.4173,-0.8796 -0x7705,CUS_0xa204,August,36,966-03-9034,Doctor,16735.02,1176.585,10,10,16.95700519,7,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Home Equity Loan",26.77530099,14,14.43,11,Standard,2392.170954,36.83463588,18 Years and 5 Months,Yes,1395.233204,10000,High_spent_Small_value_payments,193.0730763,0,-1.6811,-0.3993,0.267,-0.7805,-0.1867 -0x7711,CUS_0x6678,August,31,798-42-4298,Manager,109122.21,8895.5175,3,6,2.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Auto Loan",,12,7.32,3,_,1040.38304,39.1709603,28 Years and 3 Months,No,199.7216097,,Low_spent_Large_value_payments,510.1574961,0,-1.2329,-0.2846,0.8908,0.0055,-0.453 -0x771d,CUS_0x3ee5,August,80,696-07-6139,Doctor,78738.68,6583.556667,9,7,29,100,"Auto Loan, and Mortgage Loan",,22.44443433,8.38,11,Bad,1984.319709,36.76698457,,Yes,97.01484553,227.3217308,High_spent_Medium_value_payments,584.0190903,0,0.0021,-0.1968,-0.3357,1.0512,-0.7343 -0x7729,CUS_0xbab2,August,35,429-23-9903,Architect,27752.64,2105.72,3,4,12,1,Debt Consolidation Loan,21.9818603,13,8.27,6,_,915.19,25.98523074,13 Years and 3 Months,Yes,16.18033537,,High_spent_Small_value_payments,376.4698598,0,1.0535,-1.184,0.597,-1.0279,0.8965 -0x7735,CUS_0xb92e,August,18,#F%$D@*&8,Entrepreneur,15312.52,1021.043333,7,10,33.06745738,2,"Payday Loan, and Auto Loan",24.10482923,9,19.06,8,Standard,2514.320954,38.22343638,10 Years and 3 Months,Yes,13.56492108,10000,Low_spent_Large_value_payments,251.928307,0,0.2596,2.0235,0.4684,0.7249,1.4549 -0x7741,CUS_0xb512,August,32,343-73-5111,Doctor,9277.245,,7,5,26.06745738,9,"Mortgage Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,25,24.79,9,Bad,4028.170954,27.06832651,6 Years and 0 Months,Yes,51.49139953,25.40734753,High_spent_Medium_value_payments,235.99134,0,0.8245,0.761,0.3787,-0.7068,1.0008 -0x774d,CUS_0xb29a,August,32,996-84-2540,Writer,27676.16,,3,7,2,2,"Mortgage Loan, and Mortgage Loan",,12.7767282,,2,Good,1343.615217,30.07890668,27 Years and 5 Months,NM,33.10159949,63.5411122,High_spent_Large_value_payments,388.291955,0,-0.2406,0.8757,-0.6023,0.3095,-0.9327 -0x7759,CUS_0x6072,August,46,715-49-4883,Scientist,14900.75,1291.729167,9,5,16,6,"Payday Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",,19,18.62,,Bad,3088.8,24.75213731,4 Years and 8 Months,Yes,43.5780958,,Low_spent_Small_value_payments,270.8502871,0,1.2326,-2.3426,0.7779,0.9304,-0.5803 -0x7765,CUS_0xbafb,August,20,046-83-9533,Teacher,28077.18,,6,8,28,4,"Auto Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",23.62950812,,3.61,14,Bad,2599.23,38.74519629,9 Years and 8 Months,Yes,50.74755802,173.4836919,Low_spent_Small_value_payments,298.6452501,0,-1.6456,1.882,-0.5253,0.4986,-1.3759 -0x7771,CUS_0x82cb,August,35,825-62-0682,Developer,104988.04,8711.003333,8,7,1,0,,30.96174871,20.10372625,16.03,3,Good,100.4792188,33.34449805,17 Years and 2 Months,No,0,240.722873,High_spent_Medium_value_payments,880.3774603,0,-0.6009,-0.0883,-0.4041,-0.1091,0.6666 -0x777d,CUS_0x7523,August,44,331-34-5518,Doctor,63756.33,,8,3,1,1,Mortgage Loan,19.50136315,15.18397303,9.94,0,Good,1085.255027,42.62891268,31 Years and 8 Months,No,50.39282331,10000,High_spent_Medium_value_payments,626.6353043,0,-0.6682,1.4309,-0.6703,0.7944,-0.3226 -0x7789,CUS_0x5324,August,45,882-90-4446,Entrepreneur,9415.2,,8,10,33.88954781,6,"Not Specified, Student Loan, Student Loan, Mortgage Loan, Not Specified, and Auto Loan",38.1069407,25,24.44,14,Bad,3020.564226,23.83320257,5 Years and 4 Months,Yes,1347.279567,,High_spent_Small_value_payments,240.0521345,0,0.1548,-0.1207,-0.0761,0.706,0.0964 -0x7795,CUS_0xc2dc,August,18,480-21-2927,Manager,42450.3,3382.525,6,5,20,9,"Not Specified, Personal Loan, Not Specified, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Personal Loan",,25,27.85,7,Bad,4653.37,29.43935962,5 Years and 9 Months,Yes,165.1651252,93.35891789,High_spent_Small_value_payments,339.7284569,0,-0.5997,0.06,0.8318,-0.2205,-0.0639 -0x77a1,CUS_0x901,August,40,637-42-2504,Architect,19041.48,,7,7,17.06745738,7,"Home Equity Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Student Loan",30.31092593,17,6.64,16,_,2042.650954,31.98673186,7 Years and 11 Months,Yes,83.188124,142.255681,Low_spent_Large_value_payments,206.214907,0,-0.8743,-0.6776,0.0773,1.0948,-1.3002 -0x77ad,CUS_0xbafd,August,23,568-03-0874,Writer,19234.69,,5,5,6,2,"Personal Loan, and Mortgage Loan",19.17368855,15,3.83,4,Standard,844.75,35.06751088,23 Years and 5 Months,Yes,20.51111523,124.0124181,Low_spent_Small_value_payments,294.76555,0,1.1748,0.3373,0.7729,-0.2039,2.9507 -0x77b9,CUS_0x2009,August,47,572-47-1898,Doctor,85272.06,7276.005,1,3,4.288361749,100,Auto Loan,,10,4.93,4,Good,849.7428148,39.2057025,28 Years and 11 Months,No,36.57053949,776.7928656,Low_spent_Medium_value_payments,657.7208686,0,-0.6537,-0.1443,1.8509,1.629,2.1165 -0x77c5,CUS_0xc497,August,18,#F%$D@*&8,Lawyer,55663.65,4420.6375,5,5,29,7,"Personal Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",,12.19741552,12.09,16,Standard,2140.930259,40.55903018,15 Years and 8 Months,Yes,168.9236973,180.3937342,High_spent_Medium_value_payments,342.7463185,0,0.5689,2.5882,1.4188,-1.1496,-0.0043 -0x77d1,CUS_0x44b4,August,50,400-93-6626,Entrepreneur,97637.4,8159.45,3,6,3,1,Credit-Builder Loan,17.82813289,14,7.15,1,Good,73.76360579,41.6625598,25 Years and 11 Months,No,48.95227219,343.7487437,High_spent_Medium_value_payments,713.1705841,0,0.5163,-0.6222,2.5429,0.3923,-0.652 -0x77dd,CUS_0xbbd3,August,33,851-69-5578,_______,9769.965,,8,8,28.88954781,7,"Credit-Builder Loan, Auto Loan, Auto Loan, Not Specified, Personal Loan, Mortgage Loan, and Home Equity Loan",,19.10196994,9.14,13,Bad,2112.46941,23.52373498,6 Years and 8 Months,Yes,1373.120514,97.12626517,Low_spent_Medium_value_payments,220.7395146,0,-0.4954,-0.199,-0.3875,0.8999,-0.126 -0x77e9,CUS_0x4437,August,40,095-24-1528,Teacher,46003.29,,8,6,34,6,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Student Loan",25.81498825,18.50137938,18.37,12,Bad,3063.294374,30.20779161,4 Years and 10 Months,Yes,142.4531101,,Low_spent_Small_value_payments,304.1024357,0,0.5505,-0.4827,0.3083,0.6468,-0.0903 -0x77f5,CUS_0x5e6b,August,46,278-23-1336,Scientist,72904.16,6341.346667,4,7,13,100,"Auto Loan, and Debt Consolidation Loan",,18,10.91,7,_,748.11,27.54397636,19 Years and 0 Months,No,67.7603496,,High_spent_Large_value_payments,650.4496572,0,-0.8,2.2426,1.917,-0.3479,0.8288 -0x7801,CUS_0x9bb7,August,23,583-34-9697,Journalist,22171.89,,3,4,6,3,"Home Equity Loan, Mortgage Loan, and Not Specified",13.67674233,12,2.74,4,Standard,1022.647957,30.47564556,22 Years and 4 Months,No,51.94868144,75.16463482,High_spent_Medium_value_payments,310.5267594,0,-1.8834,0.7238,0.3608,1.4201,-1.4902 -0x780d,CUS_0x80a0,August,26,165-78-8906,Manager,121237.53,9995.1275,3,6,3.288361749,100,"Not Specified, Home Equity Loan, and Debt Consolidation Loan",14.5097208,,8.66,1,Good,605.0163488,40.35692574,30 Years and 6 Months,No,232.057192,772.1193878,High_spent_Medium_value_payments,698.191065,0,1.2063,1.4906,-1.3869,-0.2313,-2.1331 -0x7819,CUS_0xa12c,August,41,861-82-4463,Musician,136386.2,11512.51667,7,5,16,2,"Student Loan, and Auto Loan",17.07272187,15,1.42,0,_,971.34,27.27100203,,No,187.4643229,448.4634238,High_spent_Medium_value_payments,765.3239199,0,0.3391,-0.6088,-1.1016,1.5469,-1.0478 -0x7825,CUS_0x71da,August,33,851-20-4325,_______,19801.67,,6,7,32.06745738,7,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Payday Loan, and Not Specified",34.82608167,21,3.73,8,Bad,1739.400954,33.03695548,14 Years and 6 Months,Yes,115.3680516,,High_spent_Medium_value_payments,237.0769032,0,-0.1524,0.6599,1.5042,-1.2879,-0.4804 -0x7831,CUS_0x492e,August,56,748-90-2499,Entrepreneur,103620.54,8336.045,5,3,170,2,"Payday Loan, and Personal Loan",22.51436608,16,7.33,4,_,100.85,32.78493755,21 Years and 8 Months,NM,103.2277351,529.9804342,High_spent_Small_value_payments,460.3963307,0,0.97,0.5786,-0.167,0.4819,0.4116 -0x783d,CUS_0x818c,August,45,482-76-6283,Mechanic,10105.995,552.16625,8,8,16.88954781,7,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Auto Loan, and Credit-Builder Loan",19.11554263,,3.46,12,Bad,2056.61,26.54460622,7 Years and 10 Months,Yes,1367.463512,,Low_spent_Small_value_payments,237.4187846,0,-0.6229,1.0388,0.6613,-0.4893,-0.3753 -0x7849,CUS_0xba60,August,42,030-58-1207,Teacher,17455.005,,1,3,4,2,"Debt Consolidation Loan, and Student Loan",,3.56784482,11.04,1,_,595.546932,32.8102938,15 Years and 11 Months,No,24.61353407,37.70032791,High_spent_Medium_value_payments,352.844513,0,-0.1135,-0.3139,-0.4104,-0.5717,-1.4249 -0x7855,CUS_0x8ae5,August,37,396-24-8172,Entrepreneur,34884.34,,8,4,30,4,"Student Loan, Student Loan, Mortgage Loan, and Payday Loan",,14,7.52,10,Standard,2162.63,37.84987899,,Yes,67.03698429,82.44032756,High_spent_Medium_value_payments,363.8255215,0,0.5514,1.7867,0.6634,-0.238,-0.1281 -0x7861,CUS_0x44e8,August,35,113-89-3532,Manager,8304.89,,3,4,20,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,20,13.27,7,Standard,1383.25,26.93329538,20 Years and 3 Months,Yes,19.5246677,41.8084622,Low_spent_Small_value_payments,309.7742868,0,-1.303,0.5415,0.022,0.1619,-0.4235 -0x786d,CUS_0xdbf,August,80,686-42-0469,Developer,102628.28,,5,3,9.288361749,0,Not Specified,16.39754743,14,11.47,5,_,91.11384045,41.80551481,26 Years and 6 Months,Yes,76.90893809,567.9116439,High_spent_Large_value_payments,857.9145087,0,1.1927,-0.5095,-0.2597,-1.6427,1.2677 -0x7879,CUS_0x44b0,August,44,161-84-5662,Journalist,36823.24,,6,7,17,4,"Student Loan, Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",,18,14.2,4,Standard,772.35,37.32368905,19 Years and 4 Months,Yes,109.074896,70.09068592,High_spent_Medium_value_payments,368.5947514,0,-1.4982,1.8648,1.7178,0.1327,-0.3422 -0x7885,CUS_0x5a26,August,20,460-90-9091,Musician,10356.98,722.0816667,6,10,28.88954781,8,"Payday Loan, Auto Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Not Specified",,20,26.06,16,Bad,3716.71,33.98136152,10 Years and 11 Months,Yes,1389.940269,,Low_spent_Small_value_payments,246.8715862,0,-0.4692,-0.373,1.3622,0.607,-0.0874 -0x7891,CUS_0x1c1c,August,45,702-44-7038,Writer,107626.59,9095.8825,3,5,11,3,"Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",20.91570258,14,11.1,8,Standard,914.63,28.90267359,18 Years and 11 Months,Yes,163.8027943,10000,High_spent_Large_value_payments,791.6333165,0,2.4094,-2.1818,-1.4316,-0.6388,0.7328 -0x789d,CUS_0xbcda,August,37,297-59-7628,Doctor,68096.88,5757.74,5,5,17,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",15.14971395,13,7.86,2,Standard,655.37,28.30055096,,No,166.6482066,233.3183869,Low_spent_Large_value_payments,445.8074065,0,-0.6325,0.0694,0.6157,-1.2004,0.4538 -0x78a9,CUS_0xe84,August,21,043-91-6538,Engineer,18521.71,1613.056385,10,7,19,9,"Payday Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Mortgage Loan",,22,9.07,9,_,3397.76,40.03618248,1 Years and 6 Months,Yes,58181,,High_spent_Large_value_payments,297.9802377,0,-0.2782,0.6049,0.6064,-0.3121,0.1193 -0x78b5,CUS_0x6a66,August,39,116-73-1838,Manager,10640.355,,6,3,13,2,"Credit-Builder Loan, and Credit-Builder Loan",22.37614137,18,9.62,7,_,76.19,39.80736781,24 Years and 0 Months,Yes,17.31503008,33.75597916,High_spent_Medium_value_payments,310.4986158,0,-0.0929,-1.3642,0.5491,-0.9076,1.4435 -0x78c1,CUS_0x53bc,August,50,267-52-0601,Teacher,160454.04,,3,7,2,2,"Not Specified, and Payday Loan",0,1,3.63,2,_,773.94,37.52454095,26 Years and 2 Months,NM,168.7194994,197.747576,High_spent_Large_value_payments,1236.249925,0,-0.1636,0.6026,0.3658,-2.2728,-0.0943 -0x78cd,CUS_0xac7b,August,46,651-72-0851,Developer,27288.85,,5,3,5,4,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",6.882009238,8,19.85,6,Standard,1354.13,40.9740064,19 Years and 8 Months,Yes,65.72813668,82.63918422,Low_spent_Medium_value_payments,384.0397624,0,-2.4064,-1.3129,0.5164,-1.143,-0.1699 -0x78d9,CUS_0x3e8c,August,48,295-13-5026,Journalist,35730.44,,5,6,3,4,"Auto Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",15.86814857,13,1.65,4,Good,1185.95,29.73132139,22 Years and 0 Months,NM,74.46925594,211.6201977,Low_spent_Large_value_payments,277.3642131,0,0.842,0.444,-0.5496,-2.239,-1.4487 -0x78e5,CUS_0x75ca,August,19,791-94-5827,Teacher,9045.11,981.7591667,10,10,34,4,"Debt Consolidation Loan, Student Loan, Mortgage Loan, and Student Loan",26.54280933,19,6.91,10,Bad,2575.87,33.9620978,18 Years and 5 Months,Yes,24.81605232,37.50071894,Low_spent_Large_value_payments,305.8591454,0,-0.6838,0.536,-0.3602,0.5938,0.3061 -0x78f1,CUS_0xb4ab,August,54,801-96-0784,Scientist,101910.75,,1,4,0.288361749,2,"Not Specified, and Credit-Builder Loan",,,8.62,7,Good,564.7250521,39.38082332,26 Years and 6 Months,No,86.63599558,,High_spent_Large_value_payments,881.7246879,0,0.0683,0.1126,0.728,-0.1192,-0.2171 -0x78fd,CUS_0x4d50,August,80,282-83-1022,Scientist,145931.88,12017.99,4,3,8,4,"Not Specified, Credit-Builder Loan, Student Loan, and Mortgage Loan",10.62006834,10,10.54,1,Good,1178.913356,27.33399788,27 Years and 3 Months,No,314.4820936,640.86018,Low_spent_Medium_value_payments,604.0136976,0,3.7982,-0.4984,1.6673,0.0329,-0.342 -0x7909,CUS_0x7dd7,August,43,177-67-8669,Entrepreneur,19853.95,,10,5,21.06745738,7,"Auto Loan, Auto Loan, Payday Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,26.66079482,4.2,17,_,2250.094551,29.12525789,13 Years and 6 Months,Yes,63.48402233,71.02076246,High_spent_Medium_value_payments,283.2245106,0,0.5859,0.4974,0.4896,1.2042,-1.8252 -0x7915,CUS_0x99c6,August,32,553-29-9085,Mechanic,43978.14,3663.845,6,7,9,2,"Credit-Builder Loan, and Auto Loan",,16,7.07,1,Standard,1102.66,34.21169868,17 Years and 9 Months,Yes,68.78510048,,Low_spent_Large_value_payments,474.4357285,0,1.521,-0.7835,-2.1159,1.0086,-0.4633 -0x7921,CUS_0x57f5,August,56,314-89-8569,Journalist,95774.36,,6,3,5,3,"Auto Loan, Personal Loan, and Home Equity Loan",14.50153739,12,10.3,3,Standard,704.92,27.41441534,30 Years and 10 Months,Yes,173.3232082,271.0767526,Low_spent_Medium_value_payments,661.9197059,0,0.6065,0.1172,-0.1023,0.7748,1.5204 -0x792d,CUS_0xa6f9,August,29,979-88-6619,Scientist,46722.72,3781.56,9,9,18,9,"Not Specified, Payday Loan, Student Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",31.41996205,22,2.13,16,Bad,4764.13,37.05317666,,Yes,284.6597508,328.3376305,Low_spent_Medium_value_payments,45.15861873,0,0.3099,1.1834,1.7543,0.5852,1.6351 -0x7939,CUS_0x7871,August,43,527-03-8325,Developer,38331.37,,3,5,1,4,"Payday Loan, Mortgage Loan, Payday Loan, and Not Specified",0,2,5.89,3,Good,1333.411544,30.38071577,18 Years and 11 Months,No,70.81331347,67.75484907,High_spent_Medium_value_payments,417.3735381,0,0.2714,-0.7717,0.1222,0.0918,-0.7467 -0x7945,CUS_0x7f0a,August,25,924-98-2206,Architect,9730.25,975.8541667,844,9,17.88954781,100,"Student Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",24.16794613,17,2.18,16,Bad,2464.02,37.93495912,7 Years and 4 Months,NM,1351.027291,131.4915365,Low_spent_Small_value_payments,210.7365074,0,-0.9602,1.0616,0.5266,-0.1406,0.4375 -0x7951,CUS_0x4734,August,21,839-25-8518,Manager,42240.87,3296.0725,9,8,22,5,"Payday Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",,24,19.62,10,_,3483.9,40.28200461,14 Years and 0 Months,Yes,95.74849409,23.54920102,High_spent_Large_value_payments,450.3095549,0,2.1399,-0.8939,0.133,-0.638,0.2342 -0x795d,CUS_0x37e1,August,46,242-28-3294,Accountant,19660.58,,3,2,12,0,,9.908796097,9,4.32,3,Good,831.6452388,26.05667369,28 Years and 4 Months,No,0,107.6690782,Low_spent_Small_value_payments,338.430069,0,-1.0708,1.1821,0.4501,-0.7167,1.6758 -0x7969,CUS_0xb586,August,56,437-59-9821,Engineer,27175.69,,8,3,17,1,Debt Consolidation Loan,16.36083036,13,4.47,7,Standard,1010.89,30.24552558,28 Years and 0 Months,Yes,14.74214814,165.8665794,Low_spent_Small_value_payments,333.0553558,0,0.1636,0.945,0.4484,1.5839,-0.7771 -0x7975,CUS_0x8a74,August,51,023-79-4833,Media_Manager,106695.48,,3,5,5,2,"Mortgage Loan, and Mortgage Loan",,13,4.18,3,_,631.0481068,34.58086868,31 Years and 11 Months,No,1130.725175,725.7311329,Low_spent_Small_value_payments,411.2756521,0,1.4191,-0.9859,-0.451,-1.3297,1.5055 -0x7981,CUS_0x8e28,August,50,163-41-4240,Mechanic,75520.47,6410.3725,4,7,13,4,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",14.79946088,12,7.3,4,Standard,1447.18,29.07383423,22 Years and 6 Months,Yes,167.7914685,,Low_spent_Large_value_payments,486.1021393,0,-0.8275,-1.3376,0.1205,0.5048,-0.1134 -0x798d,CUS_0x913a,August,53,941-51-2438,_______,12141519,5030.591667,2,1,4,4,"Home Equity Loan, Not Specified, Not Specified, and Home Equity Loan",17.17507984,,8.22,0,Good,372.4573712,37.52729227,30 Years and 2 Months,No,190.4408282,,High_spent_Medium_value_payments,375.398548,0,-0.7925,-1.1633,-1.7779,0.4027,-1.5426 -0x7999,CUS_0x44f4,August,52,773-02-8961,Media_Manager,95421,7823.75,2,4,6,0,,0,4,1.36,2,Good,363.9744963,27.4468355,17 Years and 11 Months,No,0,,Low_spent_Medium_value_payments,669.9453854,0,-1.6145,-0.7544,0.6308,-0.7235,0.3512 -0x79a5,CUS_0x531b,August,42,529-43-1473,Musician,28408.97,,1,5,4,4,"Payday Loan, Auto Loan, Home Equity Loan, and Auto Loan",0,3,7.23,3,_,487.0103311,37.57616224,19 Years and 8 Months,No,144.7150939,,High_spent_Large_value_payments,343.6062656,0,-2.3635,0.8269,-0.6864,-1.6907,0.9239 -0x79b1,CUS_0x6dd7,August,34,142-40-1977,Accountant,60738.48,5336.54,8,734,20,5,"Personal Loan, Personal Loan, Not Specified, Home Equity Loan, and Payday Loan",,30.67821583,3.6,15,Bad,2622.354904,37.86762225,13 Years and 11 Months,Yes,180.9257205,475.2631567,Low_spent_Large_value_payments,147.4651227,0,-0.9253,-0.041,-0.7447,0.3278,-0.1264 -0x79bd,CUS_0x145a,August,29,648-17-9617,Lawyer,41587.37,3704.614167,5,4,3,2,"Not Specified, and Mortgage Loan",,7,2.27,4,Good,1199.474952,26.19892582,16 Years and 6 Months,No,68.53991441,51.71532989,High_spent_Medium_value_payments,506.1230455,0,-0.537,0.2913,0.5487,-0.5336,1.0753 -0x79c9,CUS_0x9f7a,August,61,692-62-0934,Writer,178793.92,14642.49333,1,1,11,0,,,6,7.72,7,Good,880.3384662,32.04985523,21 Years and 11 Months,No,0,1517.04928,Low_spent_Medium_value_payments,396.8678676,0,1.1581,-0.9938,0.3238,0.82,0.5615 -0x79d5,CUS_0x3c69,August,42,696-39-5159,Lawyer,17004.68,1572.056667,6,8,22.95700519,7,"Home Equity Loan, Personal Loan, Payday Loan, Payday Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",19.51950565,13,11.51,12,_,2495.480954,35.00919362,,Yes,1378.548166,149.3030989,Low_spent_Small_value_payments,198.3040324,0,2.1984,-1.4363,-1.3812,-0.3825,-0.5929 -0x79e1,CUS_0x3663,August,23,904-44-3397,Manager,31856.05,,3,1,5,3,"Not Specified, Personal Loan, and Not Specified",0.280418248,3,3.21,7,Good,1178.38,33.61890861,30 Years and 6 Months,No,66.8865545,,Low_spent_Large_value_payments,269.7160101,0,2.0346,1.4976,-0.2736,0.1241,0.3168 -0x79ed,CUS_0xa21c,August,46,350-85-7603,Mechanic,8068.86,774.405,9,10,33.06745738,5,"Not Specified, Not Specified, Home Equity Loan, Student Loan, and Payday Loan",27.38649747,16.92416878,4.43,11,Bad,4658.4321,34.08130036,6 Years and 9 Months,Yes,19.24465375,14.99614886,High_spent_Large_value_payments,256.4794094,0,0.4654,-0.1911,0.7595,0.1048,-0.2176 -0x79f9,CUS_0xac3b,August,21,024-80-3350,Mechanic,35249.28,2667.44,0,4,2,4,"Auto Loan, Personal Loan, Debt Consolidation Loan, and Auto Loan",4.444954751,7,1.55,2,_,1033.32,32.07300134,27 Years and 5 Months,NM,114.3131461,107.3250981,High_spent_Medium_value_payments,295.1057557,0,1.2424,-0.2899,0.1557,0.5365,0.4748 -0x7a05,CUS_0x34d2,August,35,179-82-0650,Mechanic,24095.19,,7,6,16,3,"Student Loan, Payday Loan, and Debt Consolidation Loan",16.28722024,13,9.18,4,Standard,1110.022962,29.2900799,18 Years and 10 Months,Yes,223.136783,24.6371068,High_spent_Large_value_payments,363.5889842,0,0.3523,-1.5934,0.4114,-0.5007,0.3242 -0x7a11,CUS_0xbb55,August,25,121-13-0061,Mechanic,53579.55,4639.9625,10,7,22,2,"Debt Consolidation Loan, and Personal Loan",,24.04074635,19.95,15,Standard,2666.89623,31.02360735,7 Years and 11 Months,Yes,74.48357848,,Low_spent_Small_value_payments,229.8713408,0,0.0153,-0.2238,-1.7673,-1.1979,0.3599 -0x7a1d,CUS_0x53f4,August,43,372-20-9785,Mechanic,15647,1044.916667,10,5,18.06745738,6,"Credit-Builder Loan, Student Loan, Personal Loan, Auto Loan, Home Equity Loan, and Payday Loan",43.16461685,25,28.89,13,Bad,5196.540954,23.67338356,10 Years and 6 Months,Yes,56.71688158,,High_spent_Small_value_payments,233.7534305,0,0.4224,0.2263,1.0782,-0.0905,-0.547 -0x7a29,CUS_0x9b03,August,32,725-10-2639,Media_Manager,122847.88,10266.32333,3,77,10,3,"Student Loan, Personal Loan, and Home Equity Loan",18.82621665,10.37143787,10.2,5,Good,945.8336051,36.96660414,25 Years and 5 Months,No,297.9939506,195.4579274,High_spent_Medium_value_payments,783.1804554,0,1.0666,1.2594,-1.731,0.2735,-0.5116 -0x7a35,CUS_0xabed,August,32,339-32-0541,Lawyer,15513.3,,5,6,9,7,"Home Equity Loan, Mortgage Loan, Not Specified, Student Loan, Student Loan, Home Equity Loan, and Not Specified",11.61983003,12,19.96,7,_,1976.34,27.45354699,15 Years and 0 Months,Yes,73.77635207,51.52079779,Low_spent_Medium_value_payments,309.2803501,0,1.1565,0.3619,-1.1487,0.0692,-1.8859 -0x7a41,CUS_0x6a86,August,22,351-07-6021,Doctor,19632.01,1853.000833,7,5,3,4,"Payday Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,8,6.4,160,Good,818.1298479,26.74986539,29 Years and 4 Months,No,49.46928717,110.6096122,Low_spent_Large_value_payments,309.6584577,0,-0.971,0.8333,-0.5479,1.4606,1.2035 -0x7a4d,CUS_0xa6df,August,18,279-62-0890,Manager,75888.64,6089.731592,3,6,11,6,"Auto Loan, Student Loan, Personal Loan, Payday Loan, Payday Loan, and Home Equity Loan",16.26179618,13,15.44,7,Standard,988.7372086,31.21195247,8 Years and 9 Months,Yes,25678,143.0708679,High_spent_Large_value_payments,487.9527905,0,-0.1942,1.2948,1.5521,1.4499,0.9426 -0x7a59,CUS_0xa97a,August,50,836-34-5737,Journalist,111674.25,9212.1875,2,6,1,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Personal Loan",3.899658146,1.131031658,10.24,8,Good,154.2140371,29.53532669,,No,233.8175112,74.77068836,High_spent_Large_value_payments,852.6305504,0,-0.1729,2.1296,-0.7885,-0.671,-0.1691 -0x7a65,CUS_0xb1c2,August,45,023-36-9291,Scientist,106871.4,9127.95,0,3,3,0,,,5.635955009,5.19,1244,Good,279.0886623,26.53690612,33 Years and 5 Months,No,0,204.1065467,High_spent_Large_value_payments,948.6884533,0,1.2492,0.1404,1.2426,-0.6128,-0.7749 -0x7a71,CUS_0x9bb1,August,50,336-60-7082,Entrepreneur,15749.97,1474.4975,0,3,2,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",2.559393913,6,2.34,2,Good,696.8225695,31.90486073,28 Years and 9 Months,No,36.18458872,97.39909392,High_spent_Small_value_payments,285.5822627,0,1.6234,-1.9378,0.8072,-0.8611,0.1048 -0x7a7d,CUS_0xd6a,August,33,997-71-2344,Scientist,99668.76,,7,4,20,6,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Not Specified",24.0363032,17,4.1,,_,100.2345627,28.04372381,18 Years and 0 Months,NM,292.2634821,799.8573582,Low_spent_Medium_value_payments,158.8934074,0,-0.8563,-1.6279,0.7611,-1.225,-0.0725 -0x7a89,CUS_0x563d,August,39,269-05-1234,Journalist,20992.38,,5,9,26.06745738,2,"Credit-Builder Loan, and Not Specified",26.28934577,17.07688623,9.52,11,Standard,1785.648009,39.95231845,10 Years and 10 Months,Yes,25.4335699,74.20136175,Low_spent_Medium_value_payments,315.7812804,0,1.2309,0.9226,0.44,-0.6347,-0.4036 -0x7a95,CUS_0x4d68,August,49,558-98-5170,Media_Manager,60725.28,,3,3,19,1,Personal Loan,15.31068317,12,11.74,8,Standard,977.18,40.39675002,19 Years and 4 Months,Yes,37.94909505,296.5101898,Low_spent_Large_value_payments,427.5847151,0,-0.7335,-0.2339,1.3383,-0.9468,2.564 -0x7aa1,CUS_0xbc29,August,49,903-64-4248,Lawyer,31802.4,,3,5,14,3,"Payday Loan, Payday Loan, and Home Equity Loan",11.79749862,11.91221319,6.17,3,Standard,1505.487693,29.24997285,26 Years and 5 Months,No,49.8175981,65.63042275,!@9#%8,415.3719792,0,1.8374,-0.9481,1.3106,0.0404,0.3472 -0x7aad,CUS_0x7db5,August,44,772-78-1010,Musician,37464.04,3002.003333,8,7,34.06745738,2,"Personal Loan, and Auto Loan",32.82611785,17,,11,Bad,2531.240954,24.86187052,,Yes,43.19302767,70.53376368,High_spent_Small_value_payments,419.753254,0,-0.8468,2.0502,-1.4118,-0.7188,-2.0023 -0x7ab9,CUS_0xc59f,August,18,288-64-1513,Engineer,25631.48,,3,4,12,3,"Not Specified, Personal Loan, and Home Equity Loan",21.41989653,16,8.74,12,_,203.18,37.01380035,,Yes,55.67499968,54.52744762,High_spent_Small_value_payments,355.6932194,0,-2.0592,-0.126,0.3206,0.6744,0.6739 -0x7ac5,CUS_0x4375,August,53,606-13-1030,_______,43594.55,3778.879167,1,3,2,2,"Debt Consolidation Loan, and Home Equity Loan",0,2,1.62,2,Good,1231.5,26.94438906,28 Years and 4 Months,No,51.23168952,110.47072,High_spent_Small_value_payments,476.1855071,0,-0.3163,0.7442,0.6883,-0.2607,-0.2208 -0x7ad1,CUS_0x73f1,August,26,406-87-6497,Mechanic,131282.91,10873.2425,4,3,1,4,"Credit-Builder Loan, Personal Loan, Auto Loan, and Mortgage Loan",11.52565104,12,,7,_,929.64,30.93032215,22 Years and 11 Months,No,262.8759417,1393.686271,Low_spent_Small_value_payments,,0,1.4124,1.0055,0.2749,-2.1584,-0.9177 -0x7add,CUS_0x97d5,August,21,401-45-8386,Engineer,18736.83,,10,6,26.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",30.08603605,18,26.37,12,Bad,4178.200056,38.72169615,0 Years and 10 Months,NM,92.65003808,11459.7159,High_spent_Medium_value_payments,258.0325578,0,0.6988,-0.0893,-0.119,1.0128,1.359 -0x7ae9,CUS_0x38e3,August,35,289-42-3489,_______,61654.32,5176.86,4,3,12,1,Not Specified,22.05826107,17,7.01,5,Standard,340.42,27.00374576,16 Years and 0 Months,Yes,30.03102777,89.8822607,High_spent_Large_value_payments,637.7727115,0,1.3269,-0.651,0.528,1.5676,-0.3992 -0x7af5,CUS_0x8046,August,80,245-07-8526,Teacher,17572.15,,3,5,18,4,"Not Specified, Credit-Builder Loan, Student Loan, and Student Loan",13.83710129,10,15.71,4,Standard,116.02,27.20401147,17 Years and 8 Months,Yes,37.22258622,184.6250233,Low_spent_Small_value_payments,225.6869739,0,2.6283,0.1114,-1.0101,0.5644,-0.7943 -0x7b01,CUS_0x5b7c,August,51,447-29-0008,_______,14179.49,,5,2,5,3,"Student Loan, Auto Loan, and Personal Loan",0.142549061,2,3.62,1,Good,1362.09,35.82387489,31 Years and 0 Months,No,21.89895396,45.46936584,Low_spent_Small_value_payments,350.2940969,0,0.2813,-0.9684,0.5739,2.2253,0.1544 -0x7b0d,CUS_0x2d82,August,40,358-29-0203,Doctor,26411.81,,5,6,6,4,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",24.29857576,16,11.78,6,Good,1223.3,26.4541894,29 Years and 4 Months,No,140.6105749,,High_spent_Small_value_payments,348.7593106,0,0.9163,-0.0492,-0.7514,0.7506,-0.6982 -0x7b19,CUS_0x403a,August,29,#F%$D@*&8,Media_Manager,45412.95,,8,6,30,6,"Auto Loan, Personal Loan, Payday Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",25.27151429,17,23.07,10,Bad,4601.39,33.74618992,5 Years and 2 Months,Yes,113.6915522,87.30558775,High_spent_Large_value_payments,391.0441101,0,0.9935,-1.4316,-0.8128,0.1272,0.9872 -0x7b25,CUS_0xc15d,August,44,#F%$D@*&8,_______,37681.01,,5,5,11,0,,21.1530108,,8.08,3,Good,189.78,31.52207182,15 Years and 8 Months,No,0,72.02463134,High_spent_Medium_value_payments,494.3837853,0,-0.8794,0.5231,-0.6417,0.1651,-1.2702 -0x7b31,CUS_0x2d62,August,28,377-32-6573,Doctor,10024.25,812.6367937,9,5,23.06745738,8,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Not Specified, Personal Loan, Not Specified, Payday Loan, and Mortgage Loan",90,2323,19.82,14,Bad,3261.450954,27.59917534,8 Years and 2 Months,NM,108.5460829,93.22417229,Low_spent_Small_value_payments,194.1622466,0,-0.0275,0.501,-0.2395,0.8343,-0.247 -0x7b3d,CUS_0x6c89,August,23,634-91-8207,Mechanic,23001.71,1901.809167,5,6,12,3,"Debt Consolidation Loan, Home Equity Loan, and Personal Loan",,16,0.83,4,_,1091.42,34.06776901,30 Years and 6 Months,Yes,47.40727166,48.95746113,High_spent_Medium_value_payments,343.8161839,0,-0.7065,-0.0471,0.3143,-0.3491,-0.1309 -0x7b49,CUS_0x8399,August,22,528-82-8771,Doctor,71903.26,,8,4,13,100,"Student Loan, Personal Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",20.03398511,13,2.38,10,Standard,541.54,39.10199409,16 Years and 5 Months,Yes,166.4560556,218.2558369,High_spent_Medium_value_payments,439.2819409,0,-0.795,1.3465,-0.742,0.9123,-1.4951 -0x7b55,CUS_0x812c,August,36,631-45-4165,_______,65644.4,5275.366667,10,9,32,6,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",27.90706419,18,25.61,10,_,3057.46,34.71516363,9 Years and 4 Months,Yes,279.6848167,96.24463353,High_spent_Large_value_payments,391.6072164,0,0.7581,-1.0938,-0.4383,-0.5491,0.5272 -0x7b61,CUS_0x5f4f,August,31,404-96-0470,Architect,9265.495,,10,9,25.06745738,9,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Personal Loan",32.54843894,18.05844774,24.66,8,Bad,4933.287992,31.59964057,11 Years and 4 Months,Yes,55.49646553,,Low_spent_Small_value_payments,200.6665514,0,-0.1328,0.6848,-0.8537,-0.2076,0.7269 -0x7b6d,CUS_0x1233,August,51,816-01-8282,Entrepreneur,42112.56,,5,6,9,4,"Not Specified, Auto Loan, Personal Loan, and Auto Loan",0,3,,4,Good,1052.71,25.03652442,16 Years and 10 Months,No,132.1935422,218.9142599,Low_spent_Small_value_payments,290.0301979,0,-1.2075,0.1066,-0.676,-0.4184,-0.2256 -0x7b79,CUS_0x6ee,August,37,352-67-8040,Doctor,14619.875,,4,5,6,3,"Credit-Builder Loan, Payday Loan, and Payday Loan",19.38716931,12.55242231,5.38,4,Good,119.940682,29.70399826,21 Years and 5 Months,No,18.81136373,37.34838376,Low_spent_Small_value_payments,339.6725442,0,-0.7164,-1.1546,-1.3084,1.0392,-0.6159 -0x7b85,CUS_0x5905,August,18,862-28-4220,Writer,36597.55,2988.795833,3,4,11,100,,18.35211371,14,16.86,7,Standard,983.51,23.53095586,31 Years and 10 Months,Yes,0,122.7598011,High_spent_Small_value_payments,436.1197822,0,1.5015,0.0557,1.5735,-0.2247,-0.0382 -0x7b91,CUS_0x9c2,August,18,434-76-9598,Writer,38721.76,3104.813333,10,6,24.06745738,2,"Home Equity Loan, and Home Equity Loan",,24.18930535,7.26,11,Bad,2929.238286,39.94619657,18 Years and 5 Months,Yes,41.16430259,160.7338894,High_spent_Small_value_payments,341.8628534,0,-0.1174,-1.455,-0.9157,-1.0021,1.8488 -0x7b9d,CUS_0x7aec,August,27,550-76-4588,Writer,104722.71,8974.8925,3,4,19,5,"Mortgage Loan, Not Specified, Credit-Builder Loan, Not Specified, and Auto Loan",18.06333933,12,16.51,10,_,1262.11,33.25666132,12 Years and 8 Months,Yes,227.2823046,599.5792203,Low_spent_Large_value_payments,340.6277251,0,-1.0895,-0.3946,3.1286,-0.34,-1.3855 -0x7ba9,CUS_0x2477,August,27,931-19-6828,_______,45404.4,,10,8,23.95700519,7,"Personal Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, and Auto Loan",45.81302917,24.14031662,17.83,11,Standard,2829.923658,29.7657694,15 Years and 10 Months,Yes,1518.723732,,Low_spent_Small_value_payments,221.0619234,0,0.6018,0.5134,0.3972,-0.3451,-0.9812 -0x7bb5,CUS_0x8ad9,August,38,691-51-3532,Entrepreneur,49570.5,4335.875,6,8,24,4,"Credit-Builder Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",,25.04585474,4.86,8,Bad,1842.519507,32.4178323,11 Years and 6 Months,Yes,130.6349191,157.9615085,Low_spent_Small_value_payments,434.9910725,0,-1.3705,-0.876,-0.6402,0.6426,-1.3151 -0x7bc1,CUS_0x6fd5,August,42,741-35-9886,Musician,14096.44,,9,7,29.06745738,8,"Mortgage Loan, Not Specified, Mortgage Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",26.77582839,18.02388368,1.27,12,Bad,1826.782323,29.69140793,17 Years and 6 Months,Yes,166.6514308,63.24284564,Low_spent_Small_value_payments,232.0995084,0,0.0441,1.59,-3.5149,-1.2092,-0.4498 -0x7bcd,CUS_0x1577,August,23,812-17-6549,Mechanic,38060.7,3197.725,6,6,31,6,"Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Student Loan",38.84902279,25,25.12,12,Bad,3813.35,23.16131903,4 Years and 5 Months,Yes,172.4115227,,!@9#%8,188.0603987,0,1.2766,-0.532,1.0324,-0.4445,-0.2877 -0x7bd9,CUS_0x7dd1,August,47,929-08-8298,Developer,179825.36,14866.44667,5,6,1.288361749,4,"Auto Loan, Debt Consolidation Loan, Student Loan, and Payday Loan",2.807366286,5,17.03,0,Good,420.7336512,31.52781363,19 Years and 2 Months,No,561.9329933,1612.900845,Low_spent_Large_value_payments,141.2621753,0,0.2184,2.7913,1.0364,-0.0935,-0.8248 -0x7be5,CUS_0xa3b5,August,55,748-03-0674,Scientist,68588.28,,8,7,16.28836175,0,Payday Loan,6.830661379,9,2.61,3,Standard,347.58,29.51328625,,No,35.65185868,615.4294749,High_spent_Medium_value_payments,610.2251274,0,-0.0536,0.5991,0.59,-0.9132,0.3859 -0x7bf1,CUS_0xa1be,August,20,475-57-4358,Musician,8814.92,,10,7,23,8,"Auto Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Personal Loan, and Student Loan",44.00833222,32.1384691,0.53,12,Bad,2387.650045,37.91791876,,Yes,46.30316907,55.36933534,Low_spent_Medium_value_payments,279.4851623,0,0.8091,-0.9117,0.1625,0.2868,-0.1116 -0x7bfd,CUS_0x696,August,36,912-94-2116,Mechanic,89780.85,,4,5,11.28836175,4,"Home Equity Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",4.721714284,7,3.64,2,Good,467.6483897,28.27475805,24 Years and 4 Months,No,186.4684773,477.0025008,High_spent_Large_value_payments,768.5836885,0,-1.7315,-1.5435,-0.4339,-0.6346,-0.1402 -0x7c09,CUS_0x8973,August,35,187-06-6371,Musician,30472.5,,3,7,27,7,"Debt Consolidation Loan, Auto Loan, Not Specified, Payday Loan, Auto Loan, Home Equity Loan, and Personal Loan",23.32009334,16.21998074,14.87,,Standard,2094.74656,37.91767383,14 Years and 5 Months,Yes,128.7851854,70.34772967,High_spent_Small_value_payments,287.9045849,0,-1.0017,0.4279,1.1975,-0.0541,-2.4387 -0x7c15,CUS_0xa3ec,August,26,634-51-4615,Lawyer,32772.29,2485.024167,7,7,10,0,,29.35589846,19,9.11,1,_,1012.37,30.80679242,30 Years and 2 Months,Yes,0,125.8971408,High_spent_Small_value_payments,382.6052759,0,1.0914,1.2212,-0.6092,1.7207,-0.3533 -0x7c21,CUS_0xabc9,August,35,691-56-6885,Accountant,28415.93,,2,2,12,2,"Personal Loan, and Payday Loan",,10,-3.6,1,Good,965.8873655,32.25222953,24 Years and 3 Months,No,35.469401,208.5412935,Low_spent_Medium_value_payments,279.4174324,0,1.0364,-1.6584,-0.486,-0.8419,1.2991 -0x7c2d,CUS_0xc501,August,27,022-51-0582,Lawyer,23454.09,,5,5,11,5,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",,14,17.99,8,_,846.41,38.29223963,12 Years and 4 Months,Yes,73.34809191,250.0121869,Low_spent_Small_value_payments,187.7904712,0,-0.2681,0.1058,1.304,0.3418,-1.1962 -0x7c39,CUS_0x626a,August,19,865-52-1613,Architect,31916.17,,4,3,20,4,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",23.97064664,19,2.73,0,Standard,90.18,33.86143983,16 Years and 11 Months,NM,97.66275546,10000,High_spent_Small_value_payments,259.2963804,0,2.197,0.7824,-0.8911,0.7713,0.5432 -0x7c45,CUS_0x9eba,August,24,085-29-8899,Teacher,58704.26,4940.021667,6,3,8,1,Not Specified,18.57560675,15,4.32,2,Standard,244.69,27.47628416,25 Years and 2 Months,Yes,38.32334645,,Low_spent_Medium_value_payments,371.0120863,0,-0.2291,-1.5008,-0.0035,-0.0694,1.7822 -0x7c51,CUS_0x7e2a,August,39,425-94-8273,Writer,18122.37,,3,4,7,6,"Not Specified, Mortgage Loan, Not Specified, Debt Consolidation Loan, Auto Loan, and Student Loan",20.36385163,17.84513537,15.33,7,Standard,2988.968876,22.83146524,16 Years and 2 Months,Yes,76.14258795,,Low_spent_Large_value_payments,251.8438525,0,0.1005,0.1924,1.2967,1.4879,-1.7861 -0x7c5d,CUS_0x4d75,August,42,125-45-2480,Manager,22089.68,,7,3,6,2,"Auto Loan, and Debt Consolidation Loan",27.70809914,18,3.95,4,Standard,346.64,33.74926135,24 Years and 10 Months,NM,35.73370991,138.9182385,Low_spent_Large_value_payments,272.0287182,0,0.3529,-0.2678,0.4808,0.2516,-0.6 -0x7c69,CUS_0xbde6,August,35,323-64-4752,Writer,10805206,2844.2875,7,6,13,5,"Home Equity Loan, Payday Loan, Not Specified, Personal Loan, and Mortgage Loan",18.98270064,14,16.78,6,_,1497.12,38.18995834,15 Years and 11 Months,Yes,135.1026903,98.17115097,High_spent_Small_value_payments,311.1549087,0,-0.2936,-0.0824,-0.0488,-0.6251,0.8082 -0x7c75,CUS_0x144f,August,19,035-27-0594,Engineer,74346.44,6134.536667,8,10,25.88954781,8,"Not Specified, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Student Loan, and Credit-Builder Loan",,20.33096121,6.52,15,_,2911.173287,30.2311158,10 Years and 4 Months,Yes,1626.956715,77.59476206,High_spent_Large_value_payments,454.5721079,0,0.5557,0.3033,0.6505,-0.606,0.6692 -0x7c81,CUS_0x7e12,August,29,717-56-5604,Engineer,169106.96,13943.24667,4,5,12,4,"Credit-Builder Loan, Not Specified, Student Loan, and Not Specified",6.033902522,6,11.52,4,Good,220.7769957,31.5579458,18 Years and 2 Months,No,283.5338841,,High_spent_Medium_value_payments,1120.564322,0,-0.8154,-1.2825,0.2422,0.4621,-0.2382 -0x7c8d,CUS_0x49fa,August,33,417-63-4822,Engineer,114261.68,9320.806667,3,7,1,1,Personal Loan,17.5112789,,0.95,5,_,295.25074,26.30708676,16 Years and 5 Months,No,51283,11373.60569,High_spent_Small_value_payments,706.4299563,0,0.4767,-0.0456,-0.0354,-1.4899,0.3785 -0x7c99,CUS_0x6e36,August,43,330-21-5845,Lawyer,75050.37,,7,7,11,4,"Student Loan, Not Specified, Personal Loan, and Student Loan",,16,10.58,9,Standard,509.49,25.06146237,17 Years and 5 Months,Yes,179.8968793,95.93532967,High_spent_Medium_value_payments,594.687541,0,-0.6185,0.1363,0.4844,-0.8975,-1.4197 -0x7ca5,CUS_0x3915,August,43,#F%$D@*&8,Architect,19570.56,,10,10,27.95700519,8,"Not Specified, Student Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",,25.76260746,0.69,9,Bad,3231.177699,28.62603813,14 Years and 0 Months,Yes,1411.193744,,Low_spent_Small_value_payments,215.8180715,0,-1.1277,-0.6151,-1.7114,-1.0072,0.3802 -0x7cb1,CUS_0x5ade,August,35,706-03-4308,Manager,28238.45,2167.204167,5,5,17,3,"Personal Loan, Personal Loan, and Credit-Builder Loan",26.6552135,17,19.82,5,_,4.61,33.83529056,,Yes,56.16091247,139.7872666,Low_spent_Medium_value_payments,300.7722376,0,-0.5717,0.2858,1.1424,0.5859,0.1602 -0x7cbd,CUS_0x3bf3,August,30,416-44-4780,Engineer,83576.26,6912.688333,3,129,8,2,"Student Loan, and Not Specified",2.342924304,4,4.97,0,Good,1192.96,31.97747565,23 Years and 3 Months,No,112.387082,284.7530039,Low_spent_Medium_value_payments,574.1287475,0,0.0268,-1.032,0.3108,-0.3604,0.4892 -0x7cc9,CUS_0x2eac,August,52,902-88-9590,Lawyer,107797.8,9109.15,7,3,20,4,"Auto Loan, Credit-Builder Loan, Not Specified, and Personal Loan",,14,-2.11,0,_,102.540398,39.14220659,33 Years and 3 Months,No,250.9522882,765.2905805,Low_spent_Large_value_payments,244.7028761,0,1.8063,-0.2949,-0.8671,-0.3555,1.2515 -0x7cd5,CUS_0x9857,August,31,534-32-1760,Mechanic,16014.16,,7,6,29,9,"Payday Loan, Auto Loan, Mortgage Loan, Student Loan, Not Specified, Student Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",41.0597071,28.60768509,9.47,9,Bad,1387.032717,27.1997802,9 Years and 8 Months,Yes,76.22321068,60.55834965,Low_spent_Small_value_payments,293.469773,0,-0.2891,1.2053,-0.379,2.2573,0.7859 -0x7ce1,CUS_0x868a,August,36,005-96-9911,Scientist,18214.24,1594.853333,5,7,20,3,"Home Equity Loan, Student Loan, and Not Specified",,16,4.91,2,_,1079.55,38.56899936,31 Years and 4 Months,NM,23.67297843,118.2636891,Low_spent_Small_value_payments,307.5486658,0,-0.8444,0.0215,-0.7,0.758,-0.3971 -0x7ced,CUS_0x1c99,August,26,118-02-3131,Engineer,33278.28,,7,3,11,4,"Auto Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",11.75440342,10.49281818,16.93,6,_,467.4788155,28.16188731,6 Years and 10 Months,Yes,75.95386612,282.1170574,Low_spent_Small_value_payments,194.1480765,0,0.3286,-1.7912,0.8315,-0.0706,1.8139 -0x7cf9,CUS_0x91fe,August,22,690-96-7017,Architect,28230.08,,8,5,19,2,"Mortgage Loan, and Personal Loan",20.78865098,18,16.49,1,_,1437.62,29.33813944,33 Years and 4 Months,NM,36.86468342,176.6889258,Low_spent_Medium_value_payments,316.5970574,0,0.7249,-1.2269,-0.4237,0.077,1.6435 -0x7d05,CUS_0x7833,August,22,796-39-9783,Manager,43311.84,,3,4,9,3,"Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",,8,2.78,1,Good,951.78,33.96898328,23 Years and 4 Months,No,73.54904407,97.6966388,High_spent_Medium_value_payments,466.6863171,0,0.5187,-1.0291,1.4446,-2.3093,0.6856 -0x7d11,CUS_0x17c7,August,53,302-01-7301,Engineer,16862.715,,8,859,10,2,"Debt Consolidation Loan, and Not Specified",26.01320776,18,17.13,5,Standard,574.86,30.48912275,26 Years and 4 Months,Yes,14.74034407,46.02102503,Low_spent_Medium_value_payments,379.5612559,0,-1.3866,-0.2085,0.32,-0.5607,-0.447 -0x7d1d,CUS_0x4434,August,31,949-12-7408,Scientist,7087.24,361.6033333,8,5,14,6,"Personal Loan, Home Equity Loan, Mortgage Loan, Student Loan, Student Loan, and Student Loan",,10,8.24,8,Standard,54.25,36.52654665,6 Years and 9 Months,Yes,22.30193994,40.03226642,Low_spent_Small_value_payments,263.826127,0,-0.7502,-1.6107,0.4568,0.5463,0.0803 -0x7d29,CUS_0x4a3b,August,23,589-89-6617,_______,7455.07,357.2558333,10,6,29.06745738,9,"Personal Loan, Home Equity Loan, Not Specified, Not Specified, Not Specified, Home Equity Loan, Mortgage Loan, Personal Loan, and Not Specified",36.21705524,22.09408568,23.73,7,_,5330.042965,27.9492723,3 Years and 10 Months,Yes,39.60788087,,High_spent_Small_value_payments,205.4762966,0,-0.1699,1.3122,-0.9433,-0.9267,-0.0034 -0x7d35,CUS_0x9214,August,42,361-27-9731,Accountant,20774.34,,6,6,25,3,"Personal Loan, Student Loan, and Student Loan",7.854149688,9.748319392,19.93,7,_,2047.102518,32.12356761,8 Years and 6 Months,Yes,37.08877865,96.5849268,Low_spent_Large_value_payments,306.5457946,0,-0.8564,-2.7805,0.7962,0.8554,0.8162 -0x7d41,CUS_0x4127,August,41,505-63-7384,Lawyer,128588.56,10707.71333,4,6,5.288361749,0,Home Equity Loan,,10.42874205,10.36,2,_,442.3725554,30.10496566,27 Years and 6 Months,Yes,80.37479028,862.4279006,High_spent_Medium_value_payments,797.9061034,0,0.6969,0.2125,-1.5559,0.8618,-0.4089 -0x7d4d,CUS_0x7ff3,August,45,300-00-5065,Developer,144456.16,12222.01333,4,3,6,5,"Home Equity Loan, Payday Loan, Not Specified, Mortgage Loan, and Payday Loan",27.88994443,19,13.62,8,Standard,1061.63,38.19209935,13 Years and 11 Months,Yes,481.0079648,,Low_spent_Large_value_payments,260.0477973,0,-0.7902,-0.1709,1.3703,1.4884,0.3333 -0x7d59,CUS_0x1207,August,34,365-76-1037,Developer,19506.73,,9,7,23.06745738,6,"Personal Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Student Loan, and Mortgage Loan",27.22350739,13.96874193,2.69,15,Bad,1979.307864,25.29796458,14 Years and 10 Months,Yes,59.13404169,,Low_spent_Small_value_payments,203.6139894,0,0.4553,-1.1191,-0.2988,-1.195,-0.7595 -0x7d65,CUS_0xba18,August,18,542-02-2519,Media_Manager,32196.04,,10,8,17,8,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Auto Loan, Student Loan, Auto Loan, and Home Equity Loan",30.0086299,19,6.6,8,Bad,1661.03,25.2492182,18 Years and 8 Months,Yes,164.2565162,,Low_spent_Large_value_payments,140.2138967,0,-0.461,-0.1901,0.3585,1.62,-0.5757 -0x7d71,CUS_0x976,August,41,958-13-3057,Lawyer,7901.055,797.42125,8,7,14,5,"Auto Loan, Auto Loan, Student Loan, Auto Loan, and Mortgage Loan",24.20199346,17,17.41,8,Standard,2154.6,28.42147074,13 Years and 3 Months,Yes,24.57329317,51.63067079,Low_spent_Small_value_payments,293.538161,0,-1.5435,-0.2691,0.9356,-0.2679,-1.0288 -0x7d7d,CUS_0xb46f,August,39,498-14-0072,_______,14930.95,,3,4,3,4,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",7.153298922,8,10.49,5,Good,1185.05232,33.46572952,17 Years and 2 Months,NM,25.21902009,,Low_spent_Medium_value_payments,253.7236538,0,0.3214,-1.0578,1.4343,0.7726,1.5957 -0x7d89,CUS_0x9c7f,August,43,207-33-7022,Musician,59501.97,4736.72843,1436,7,32,7,"Payday Loan, Mortgage Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",34.02982263,20,12.64,9,Standard,1279.86,33.48908055,11 Years and 6 Months,Yes,606.9464247,80.05029938,High_spent_Medium_value_payments,391.7220958,0,-0.5811,0.7853,-1.1865,0.952,-1.6756 -0x7d95,CUS_0x1ec4,August,32,715-13-3421,Lawyer,22853.37,1708.4475,6,3,12,100,Not Specified,,20,6.68,2,Standard,423.83,28.18482015,,Yes,12.31978455,28.02712796,High_spent_Medium_value_payments,380.4978375,0,-1.6213,-1.467,0.8229,0.4188,1.5621 -0x7da1,CUS_0x5715,August,37,771-76-3424,Lawyer,12714.98,,4,253,5,4,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",23.87516716,18,7.71,2,Standard,1154.56,31.89096486,22 Years and 5 Months,No,22.19752967,75.51186786,Low_spent_Small_value_payments,290.2487691,0,0.8532,-0.5475,1.1277,-0.86,2.2681 -0x7dad,CUS_0x1472,August,38,144-90-7708,Entrepreneur,15512.055,,3,4,13,5,"Personal Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",9.037711632,9,16.95,9,Standard,865.3,34.67920938,12 Years and 0 Months,Yes,48.13304478,182.1360313,Low_spent_Small_value_payments,202.8980489,0,0.7001,-0.5246,-0.6663,0.4979,0.3777 -0x7db9,CUS_0x906b,August,28,677-40-1433,Developer,23459.45,2121.954167,8,5,9,2,"Home Equity Loan, and Mortgage Loan",,11.92668811,3.56,5,Standard,286.3209412,24.98628731,25 Years and 3 Months,Yes,26.60782995,121.2540904,Low_spent_Small_value_payments,354.3334963,0,1.2676,0.363,1.7398,1.4428,-0.0171 -0x7dc5,CUS_0x1f2c,August,27,846-10-4542,Media_Manager,83722.16,7270.846667,3,3,0.288361749,2,"Not Specified, Home Equity Loan, and Not Specified",1.677031284,6,10.9,4,_,857.4051265,41.13356248,,No,157.9707494,588.6543865,High_spent_Large_value_payments,661.4960086,0,1.6857,-0.0869,-0.8216,-1.7637,0.1657 -0x7dd1,CUS_0x63e0,August,80,693-74-3562,Architect,42057.16,3348.763333,4,7,4,0,,,15.50759241,-1.82,5,Good,1664.710273,29.53710734,27 Years and 3 Months,No,26904,97.62183851,High_spent_Medium_value_payments,487.2544948,0,0.3491,0.5003,0.4658,1.7056,-0.9138 -0x7ddd,CUS_0x76c4,August,43,861-27-0906,Developer,17315.32,,8,8,21.06745738,2,"Payday Loan, and Student Loan",,8,,12,Standard,1951.930954,36.80581544,18 Years and 4 Months,Yes,23.80003882,88.64649663,Low_spent_Small_value_payments,302.8275099,0,0.3171,-1.4855,0.032,-0.1554,1.2151 -0x7de9,CUS_0x39c6,August,37,959-94-5192,_______,16833.355,1395.779583,7,3,5,2,"Payday Loan, and Not Specified",19.6953277,13,8.98,8,_,65.59,25.80874073,11 Years and 0 Months,Yes,19.78555752,156.2209717,Low_spent_Small_value_payments,253.5714292,0,0.2749,-0.1388,0.8294,-1.3841,1.3643 -0x7df5,CUS_0x6086,August,18,728-68-4575,Developer,41599.96,3240.663333,9,5,17.06745738,7,"Credit-Builder Loan, Payday Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Student Loan, and Auto Loan",38.08619763,21,21.66,6,Bad,3695.210954,30.2076231,1 Years and 5 Months,NM,237.9966166,137.1384317,Low_spent_Small_value_payments,212.2109971,0,0.3331,1.3756,0.4998,0.9246,2.3626 -0x7e01,CUS_0xc622,August,54,#F%$D@*&8,Engineer,114588.4,9338.033333,5,7,20,0,,21.93011939,17,13.21,5,Standard,941.85,31.75648981,33 Years and 5 Months,Yes,0,141.7403597,High_spent_Large_value_payments,1032.062974,0,0.0803,-0.7046,0.9262,0.5784,0.5257 -0x7e0d,CUS_0xeb6,August,24,495-96-8811,Developer,16472.87,,7,5,32,9,"Student Loan, Student Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,19.26104607,9.65,12,Bad,2340.418982,35.85750121,,Yes,69293,,Low_spent_Medium_value_payments,317.8272908,0,0.8605,0.7627,-1.0925,1.49,-0.0041 -0x7e19,CUS_0x4e0d,August,25,861-75-5653,Manager,18314.57,,6,7,19.06745738,2,"Payday Loan, and Not Specified",,10.92265349,9.57,11,Standard,1855.320327,32.00266331,13 Years and 8 Months,Yes,19.61210131,51.41090388,Low_spent_Small_value_payments,334.3781235,0,-0.0308,-0.4766,0.8091,-0.4516,0.9769 -0x7e25,CUS_0x16c4,August,18,365-26-7399,Mechanic,8473.795,,4,7,7,100,"Mortgage Loan, Personal Loan, and Not Specified",,14,12.78,10,Standard,1040.14,35.32789901,17 Years and 9 Months,Yes,16.79884713,25.57495899,!@9#%8,298.8411522,0,-2.3244,0.4838,-0.1631,-0.9677,-0.1351 -0x7e31,CUS_0x50ef,August,29,629-09-0735,Teacher,36794.54,3165.211667,7,4,9,0,,21.37820559,15,8.69,5,Standard,1117.63,38.13622549,8 Years and 10 Months,NM,0,40.65314199,High_spent_Large_value_payments,515.8680247,0,0.1357,-0.1248,-2.5702,-0.1716,0.5968 -0x7e3d,CUS_0xa366,August,51,232-50-6033,Doctor,68042.58,5728.215,4,7,7,0,,14.5704827,14.13647511,3.96,4,Standard,1299.661142,36.34264916,21 Years and 5 Months,NM,0,343.7452167,Low_spent_Small_value_payments,519.0762833,0,0.5368,0.6507,2.1278,0.0222,1.3707 -0x7e49,CUS_0x2e5f,August,40,067-86-9905,Musician,82668.24,6873.02,7,4,16,2,"Auto Loan, and Payday Loan",14.87434364,8.416075569,10.31,6,Standard,1822.319705,26.14944179,8 Years and 9 Months,Yes,113.1648417,10000,High_spent_Medium_value_payments,620.6762195,0,-0.9899,0.8527,0.9623,-0.9346,-1.4198 -0x7e55,CUS_0xae02,August,29,962-65-2926,Teacher,127052.04,,4,5,18,7,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",14.90327684,12,15.6,8,Standard,1339.15,32.67315786,16 Years and 3 Months,Yes,651.8947716,489.4512591,High_spent_Small_value_payments,155.4209694,0,1.02,-0.7902,0.0325,1.395,0.5464 -0x7e61,CUS_0xa99c,August,25,337-61-1276,Journalist,34742.74,2881.228333,6,4,20.06745738,3,"Not Specified, Debt Consolidation Loan, and Personal Loan",,12.45602216,16.19,9,Standard,3007.024649,35.84575059,10 Years and 4 Months,Yes,59.09737529,,Low_spent_Medium_value_payments,183.7149636,0,0.3719,-0.6376,0.7803,-1.6404,-0.2958 -0x7e6d,CUS_0x9177,August,40,860-92-3178,Musician,35971.51,,2,5,9,2,"Home Equity Loan, and Credit-Builder Loan",4.875221966,6,5.42,4,Good,1312.290388,31.05560471,30 Years and 10 Months,No,42.55376084,,!@9#%8,281.9783057,0,-1.3838,-0.8797,0.3266,0.0853,0.1689 -0x7e79,CUS_0x7eda,August,36,692-50-2240,Doctor,162053.08,13470.42333,1,7,10.28836175,0,Mortgage Loan,5.591093716,7,4.63,3,Good,1469.14,32.59866654,24 Years and 8 Months,No,96.07213048,10419.93746,Low_spent_Small_value_payments,122.6840912,0,-1.354,0.2795,-0.0589,-0.5099,-0.9924 -0x7e85,CUS_0x665a,August,39,274-38-8035,Engineer,33022.7,,6,6,19.06745738,2,"Student Loan, and Student Loan",35.41275448,24,7.26,7,_,2655.490954,30.73189811,6 Years and 11 Months,Yes,39.65054684,164.5833579,High_spent_Small_value_payments,331.134974,0,1.0375,0.8249,0.7909,1.2818,-0.629 -0x7e91,CUS_0x8766,August,23,682-79-9909,Manager,25622.61,,6,7,7,2,"Auto Loan, and Payday Loan",,,15.74,4,_,326.09,26.7009108,17 Years and 6 Months,NM,37.25286577,,High_spent_Medium_value_payments,398.4137799,0,-1.0575,1.7529,0.6185,-0.3875,-0.897 -0x7e9d,CUS_0xba13,August,18,206-40-8360,Architect,13032.705,,5,6,3,4,"Personal Loan, Student Loan, Payday Loan, and Student Loan",,19,2.11,0,Good,1497.16,28.09462259,25 Years and 11 Months,No,28.85989008,57.95288035,Low_spent_Small_value_payments,306.3931046,0,0.5345,-1.8889,-0.1113,-0.4584,0.748 -0x7ea9,CUS_0x356c,August,37,000-63-0442,Lawyer,67644.92,5465.076667,4,9,22.88954781,100,"Mortgage Loan, and Home Equity Loan",,21.6679723,14.03,11,_,1600.792287,28.46470481,8 Years and 9 Months,Yes,1426.268868,10000,High_spent_Medium_value_payments,585.6089581,0,-0.7135,1.3848,-2.1777,0.0347,-0.6973 -0x7eb5,CUS_0x54b2,August,24,225-34-3629,Scientist,16106.15,,8,3,10,3,"Not Specified, Auto Loan, and Home Equity Loan",,,7.52,5,_,109.59,36.95677912,19 Years and 9 Months,Yes,35.49095459,69.02434569,Low_spent_Large_value_payments,309.9026164,0,-1.1539,1.157,-0.2039,-1.4597,-0.3339 -0x7ec1,CUS_0x4534,August,37,551-95-2963,Media_Manager,20496.79,,3,3,6,2,"Credit-Builder Loan, and Debt Consolidation Loan",19.86973207,15,3.37,4,Standard,1165.77,25.55098959,25 Years and 2 Months,Yes,28.71256286,,High_spent_Medium_value_payments,343.0940911,0,0.2579,-0.5432,0.286,-0.5098,2.1694 -0x7ecd,CUS_0xac67,August,36,482-89-9000,Entrepreneur,19753.22,,6,6,26.06745738,8,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Student Loan, and Debt Consolidation Loan",38.02322893,20.87289664,,11,Bad,4808.35924,23.45429766,13 Years and 8 Months,Yes,111.0376358,177.2723248,Low_spent_Small_value_payments,126.9799182,0,0.5354,0.9104,2.3157,0.0315,-0.3999 -0x7ed9,CUS_0x7ab1,August,22,091-11-7082,Developer,23520.69,1746.0575,7,7,6,7,"Auto Loan, Student Loan, Mortgage Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",,10,8.21,6,Standard,1126.463802,40.41498532,10 Years and 4 Months,Yes,85.37459134,39.19566911,High_spent_Large_value_payments,295.5249326,0,-1.0464,1.043,-0.1251,0.1776,0.7094 -0x7ee5,CUS_0x52c8,August,42,691-39-2873,Architect,16896.19,,7,6,23,9,"Home Equity Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Personal Loan, and Auto Loan",,,4.1,9,_,1878.31,32.97598037,17 Years and 10 Months,Yes,36696,,Low_spent_Small_value_payments,229.1877495,0,-0.5945,0.0443,0.6101,-0.4748,-0.5009 -0x7ef1,CUS_0x7373,August,31,#F%$D@*&8,Accountant,44689.77,3741.1475,6,6,20,7,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",17.42166151,14.27703013,8.31,7,_,2511.714134,26.85888111,14 Years and 0 Months,Yes,202.0610805,502.8256545,Low_spent_Small_value_payments,,0,-1.7897,-0.088,-0.7975,1.3228,-0.6231 -0x7efd,CUS_0xa12e,August,39,131-41-2883,Media_Manager,17682.035,1343.502917,7,3,7,3,"Not Specified, Student Loan, and Home Equity Loan",20.368693,19,14.23,7,_,972.53,34.04497996,22 Years and 10 Months,NM,38.81691983,90.8171776,Low_spent_Small_value_payments,294.7161942,0,-1.4863,0.5955,0.2239,0.055,0.7056 -0x7f09,CUS_0x10aa,August,20,101-00-4424,Musician,114432.03,9272.0025,1,2,7,0,,7.921890844,9,7.98,4,Good,444.51,39.0147841,21 Years and 6 Months,No,0,101.6493026,High_spent_Large_value_payments,1065.550947,0,1.5031,-1.6489,0.2857,-0.5374,-1.4579 -0x7f15,CUS_0x6109,August,26,003-48-8065,Architect,19657.56,,4,3,15,2,"Student Loan, and Debt Consolidation Loan",19.16718423,13,8.74,5,Standard,1480.88,32.98198145,6 Years and 2 Months,Yes,21.24011733,32.31753318,High_spent_Large_value_payments,321.3553495,0,0.6094,1.9789,-0.9894,-0.089,0.531 -0x7f21,CUS_0xbb25,August,44,922-22-3171,Writer,31748.41,,7,6,14,0,,9.305587359,8,15.28,1,Standard,1134.85,36.37929733,32 Years and 2 Months,NM,163.1527128,,Low_spent_Large_value_payments,292.9561586,0,-1.424,-0.0044,0.5048,-0.926,-0.0258 -0x7f2d,CUS_0x8c7c,August,51,189-34-5628,Developer,19997.78,,5,5,20,2,"Not Specified, and Debt Consolidation Loan",20.17187343,13,4.87,2,Standard,427.06,27.15642608,,Yes,18.98379688,,Low_spent_Small_value_payments,340.8348783,0,0.8008,-0.2621,-0.3279,1.1041,-1.3066 -0x7f39,CUS_0x3475,August,27,271-20-5461,Musician,36783.38,3151.281667,10,5,17,7,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",29.36239378,22.3782754,23.35,12,Bad,5015.602151,22.81365003,2 Years and 0 Months,Yes,148.3581178,406.7804393,Low_spent_Small_value_payments,49.98960957,0,-0.2715,-1.1141,-0.6339,0.7979,-0.5785 -0x7f45,CUS_0x67de,August,23,451-00-6663,Journalist,32102.6,2958.216667,3,7,10,0,,19.12221784,15.66702738,11.36,5,Standard,1377.525423,27.25123644,19 Years and 2 Months,Yes,0,249.8338362,Low_spent_Small_value_payments,335.9878304,0,0.8909,0.2485,-0.8463,0.3584,-0.4644 -0x7f51,CUS_0x9647,August,37,954-95-9646,Lawyer,19667.89,,9,9,32,100,"Not Specified, Not Specified, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",22.66425445,17.02394749,12.91,6,Standard,1539.107324,32.48911706,18 Years and 3 Months,Yes,95.66654836,196.7455162,Low_spent_Small_value_payments,147.1870188,0,0.9154,1.6037,-0.5566,1.3129,-1.8051 -0x7f5d,CUS_0x8142,August,22,338-90-1524,Entrepreneur,31156.18,,7,4,15,5,"Not Specified, Not Specified, Auto Loan, Mortgage Loan, and Student Loan",11.38274636,12,19.65,7,Standard,159.08,25.20619093,18 Years and 11 Months,Yes,113.9011859,43.92786185,High_spent_Large_value_payments,329.0057856,0,-0.5909,0.8944,1.1925,0.2354,-0.4616 -0x7f69,CUS_0x1184,August,49,963-76-2464,Lawyer,19867.475,,3,5,11,3,"Student Loan, Mortgage Loan, and Payday Loan",8.231398551,9,6.74,4,Good,644.9765683,26.68978981,32 Years and 8 Months,No,42.60688196,,!@9#%8,313.5944657,0,-0.4006,-0.2931,-0.2642,-0.0376,0.8742 -0x7f75,CUS_0x6437,August,51,726-51-0453,Lawyer,28225.49,,1,4,5.288361749,0,,0,0,9.23,8,Good,227.8614015,33.86418997,21 Years and 11 Months,NM,0,625.1181586,Low_spent_Large_value_payments,327.4762636,0,-2.0858,0.2259,2.9861,-0.3761,-1.4303 -0x7f81,CUS_0x9a92,August,28,015-63-9321,Mechanic,28575.4,2603.283333,6,10,25.88954781,8,"Mortgage Loan, Student Loan, Student Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Payday Loan, and Personal Loan",32.36670378,15,16.07,17,Bad,2641.74,23.61913068,14 Years and 5 Months,Yes,1458.741545,,Low_spent_Large_value_payments,315.8691646,0,-0.3761,1.2061,-0.416,0.4385,0.0976 -0x7f8d,CUS_0x955b,August,44,696-78-4933,Media_Manager,12993.97,,6,6,14,7,"Payday Loan, Payday Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Payday Loan, and Student Loan",11.88025084,9,10.92,66,Standard,488.79,25.78599182,13 Years and 3 Months,Yes,64.89671412,,!@9#%8,218.3337144,0,0.6656,-2.1012,-0.3261,0.9366,-0.856 -0x7f99,CUS_0x4fc9,August,48,258-52-7665,Journalist,14274.54,,7,6,10,0,,17.62648018,14.3346326,8.13,5,Good,1434.353954,35.57645436,28 Years and 8 Months,No,0,130.1295481,Low_spent_Small_value_payments,259.1249519,0,-0.7949,0.7724,0.7881,-1.0498,-0.6822 -0x7fa5,CUS_0x1436,August,23,988-70-0775,Developer,167545.24,,5,4,1.288361749,2,"Personal Loan, Not Specified, and Student Loan",8.662997734,9,4.77,0,Good,449.5315445,25.48909364,16 Years and 3 Months,No,234.9597699,1368.92855,Low_spent_Small_value_payments,607.1697107,0,-1.1115,-0.2211,-1.0686,0.9178,0.2644 -0x7fb1,CUS_0x13de,August,35,298-78-5836,Lawyer,14192.12,1401.676667,4,3,19,4,"Personal Loan, Student Loan, Student Loan, and Home Equity Loan",,8,16.33,8,Standard,1483.6,38.49698951,17 Years and 3 Months,NM,45.18519184,58.02528806,Low_spent_Small_value_payments,326.9571868,0,-1.046,-1.024,-1.5167,0.6295,0.6723 -0x7fbd,CUS_0x617c,August,44,490-27-9036,Writer,101191.17,,6,6,17,3,"Personal Loan, Personal Loan, and Debt Consolidation Loan",31.75443807,21.31402995,16.56,4,_,1403.657295,33.37109522,25 Years and 9 Months,Yes,134.0481273,450.5335762,Low_spent_Medium_value_payments,536.5780466,0,0.6094,-1.5251,0.3207,0.1713,-0.7561 -0x7fc9,CUS_0x2d48,August,23,508-50-7959,Engineer,132180.24,,5,7,8,2,"Personal Loan, and Not Specified",3.38580532,6.06825687,-0.48,7,_,823.6106311,36.33566036,32 Years and 11 Months,No,155.1618339,207.0658473,High_spent_Medium_value_payments,999.6743188,0,-0.5444,-0.7969,0.3955,0.9723,0.3225 -0x7fd5,CUS_0x65cf,August,41,099-60-2680,Journalist,72145.32,,1,6,10,0,,9.676629518,11,3.14,0,Good,1285.49,39.85577611,27 Years and 5 Months,No,0,90.53505155,High_spent_Medium_value_payments,741.6759485,0,0.8696,0.7879,0.7856,0.4735,0.3748 -0x7fe1,CUS_0x1ef5,August,80,663-41-3108,Media_Manager,11189.065,,6,3,15,3,"Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",,11,17.09,9,_,761.18,23.70443943,11 Years and 0 Months,Yes,18.43980108,119.1888502,Low_spent_Small_value_payments,268.313557,0,-0.3653,1.4743,-1.2325,-0.3165,-1.0617 -0x7fed,CUS_0x87a,August,34,506-42-3465,Musician,20274.94,,1,6,5,1,Student Loan,1.667547265,3,2,3,Good,11.02,24.18876729,22 Years and 0 Months,No,14.55354317,131.2072463,Low_spent_Large_value_payments,287.1970439,0,2.5689,-0.6713,0.336,0.7785,2.5578 -0x7ff9,CUS_0x5bcb,August,33,543-33-4896,Developer,115484.2,9403.683333,5,6,4.288361749,0,,,7.073473802,1.64,3,Good,775.7746127,38.47274898,19 Years and 2 Months,No,0,1203.086473,Low_spent_Large_value_payments,427.2193212,0,-0.111,-1.2471,-0.9213,0.8862,0.1241 -0x8005,CUS_0x489,August,26,#F%$D@*&8,Writer,9388.27,,4,4,32,100,"Mortgage Loan, Not Specified, Credit-Builder Loan, and Student Loan",28.59052888,23.17841977,8.73,10,Standard,3069.135918,26.71600924,,Yes,18.49496408,31.98468761,High_spent_Small_value_payments,307.3559316,0,0.5859,0.9783,-1.7594,-0.9896,-0.7873 -0x8011,CUS_0x4c5a,August,41,589-58-1945,Media_Manager,49732.41,4274.3675,5,7,17.28836175,6,"Personal Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Student Loan",9.073277389,9.177334852,19.71,5,Standard,157.2620033,27.17793928,5 Years and 10 Months,Yes,212.3839109,580.7806154,High_spent_Medium_value_payments,304.2096847,0,0.4545,-2.2683,-0.6117,-1.0274,-0.1742 -0x801d,CUS_0x9c5b,August,30,604-13-8673,Mechanic,75488.16,6504.68,7,7,20,2,"Payday Loan, and Payday Loan",35.65700843,27.32971814,15.98,12,Bad,2131.715098,29.45763772,7 Years and 2 Months,Yes,85.45857271,,Low_spent_Medium_value_payments,238.5008024,0,-1.3881,0.9952,0.6436,-0.6426,-0.8378 -0x8029,CUS_0x3ddc,August,52,934-11-6218,Musician,23211.26,2136.271667,7,5,10,3,"Mortgage Loan, Mortgage Loan, and Personal Loan",23.83365157,16,15.14,1,Standard,361.52,26.31877986,25 Years and 5 Months,Yes,42.55771769,85.35596488,Low_spent_Large_value_payments,355.7134841,0,0.2218,1.8533,0.5473,-1.3362,0.0536 -0x8035,CUS_0x4b09,August,18,146-77-2738,Scientist,80657.84,6534.486667,7,7,13,3,"Mortgage Loan, Credit-Builder Loan, and Personal Loan",24.26171606,17,15.33,10,Standard,1017.73,27.54412133,21 Years and 5 Months,Yes,167.4967126,,Low_spent_Small_value_payments,,0,-0.9035,-0.6629,0.2462,0.1276,-0.2667 -0x8041,CUS_0x9f1a,August,23,211-56-2000,_______,66978.24,5473.52,8,4,11.28836175,2,"Debt Consolidation Loan, Personal Loan, and Payday Loan",11.02480758,12,10.37,0,Standard,462.74,23.6385828,24 Years and 0 Months,Yes,165.4941439,604.7052506,High_spent_Medium_value_payments,447.0900665,0,-1.0494,-1.5295,1.3656,-0.0476,-0.3854 -0x804d,CUS_0x1183,August,22,972-42-3182,_______,134393.73,10944.4775,1,3,12,2,"Credit-Builder Loan, and Mortgage Loan",0,1,11.49,3,Good,945.29,34.95128259,25 Years and 8 Months,No,136.0306305,178.1009964,High_spent_Medium_value_payments,1030.316123,0,1.1934,0.1094,0.631,0.6204,0.2101 -0x8059,CUS_0x61de,August,41,547-03-3727,Doctor,32152.32,,4,3,5,1,Personal Loan,25.85010829,17,2.57,3,Standard,1100.76,26.95434844,31 Years and 6 Months,No,22.75178378,80.56855757,High_spent_Medium_value_payments,394.2156587,0,0.1577,-1.5292,0.0662,-0.913,-0.3053 -0x8065,CUS_0x167a,August,48,851-45-6853,_______,17064.095,1541.007917,1,2,8,1,Credit-Builder Loan,0,1,0.7,4,Good,758.8097954,27.91576126,20 Years and 3 Months,No,10.80813118,196.0682216,Low_spent_Small_value_payments,259.437773,0,1.1397,-0.9495,-0.7534,-1.1766,1.1065 -0x8071,CUS_0xb499,August,45,180-24-3145,Scientist,33381.68,2482.806667,8,3,8,5,"Credit-Builder Loan, Auto Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",20.87606635,19,17.94,7,Standard,1403.84,25.718216,11 Years and 9 Months,Yes,114.7275457,,Low_spent_Large_value_payments,241.4496139,0,0.3799,0.0303,-0.7521,1.6121,0.1783 -0x807d,CUS_0xc53f,August,42,665-97-7596,Media_Manager,12705.77,1159.814167,6,6,17,2,"Auto Loan, and Auto Loan",19.87959034,11.58954206,2.89,5,Standard,342.7396,27.45686856,22 Years and 6 Months,Yes,14.58771653,,Low_spent_Small_value_payments,271.6268126,0,-0.2457,2.3986,0.5376,-0.6122,-1.4804 -0x8089,CUS_0x9b33,August,20,183-09-6257,Doctor,28021.64,2326.905191,7,4,33,6,"Auto Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Home Equity Loan, and Student Loan",,,19.11,14,Standard,1515.440593,39.06107304,7 Years and 4 Months,Yes,194.2706741,188.920684,!@9#%8,275.053784,0,-0.846,-0.7332,0.0835,1.2355,-0.4879 -0x8095,CUS_0x8d45,August,38,239-07-9719,Mechanic,18718.52,,6,9,17.06745738,100,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Mortgage Loan, and Home Equity Loan",,17.54962665,18.73,14,Bad,5320.339488,34.62946332,,Yes,126.4914892,47.58790023,High_spent_Medium_value_payments,227.6879893,0,-0.919,-0.3589,0.8219,-0.1201,0.1149 -0x80a1,CUS_0x6d28,August,39,034-49-6474,Teacher,44512.24,,8,4,13,3,"Personal Loan, Personal Loan, and Payday Loan",,9,18.8,8,Standard,939.29,28.52528401,22 Years and 11 Months,Yes,71.90679931,76.87242178,High_spent_Small_value_payments,481.3561122,0,-0.8569,-0.1748,-0.0799,0.5228,-1.6221 -0x80ad,CUS_0xa69e,August,34,#F%$D@*&8,Teacher,56663.16,,7,10,30.06745738,5,"Student Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, and Auto Loan",25.47730958,15,20.07,,Bad,3163.090954,31.04672045,11 Years and 5 Months,Yes,194.7025447,177.8858846,Low_spent_Large_value_payments,334.4842828,0,-0.1012,0.0594,-0.0418,-0.1631,1.7545 -0x80b9,CUS_0x89b2,August,41,389-15-8321,Media_Manager,143961.52,,4,3,12,4,"Auto Loan, Personal Loan, Auto Loan, and Payday Loan",19.42484842,13,5.7,3,_,1296.94,28.59368348,33 Years and 6 Months,No,247.0599169,495.8429167,Low_spent_Medium_value_payments,764.7764997,0,-1.4265,0.2045,-0.7863,-0.9413,0.9478 -0x80c5,CUS_0x383e,August,36,842-46-0151,_______,33045.79,2611.815833,4,3,10,0,,6.839147759,9,11.2,9,Good,1081.812309,37.72686833,26 Years and 3 Months,No,27141,,High_spent_Small_value_payments,445.9016465,0,0.9539,-0.0164,0.104,1.4925,-0.0383 -0x80d1,CUS_0x242a,August,45,662-87-9463,Entrepreneur,76374.93,5505.266544,8,7,12,2,"Home Equity Loan, and Mortgage Loan",10.97605967,7,3.8,3,Standard,963.1803344,39.01144677,29 Years and 10 Months,No,834.031361,144.8943141,High_spent_Large_value_payments,671.7235651,0,-2.4641,0.6143,-0.1632,-0.5185,0.5314 -0x80dd,CUS_0xc36d,August,35,676-55-8577,Entrepreneur,119433.42,10099.785,0,3,1.288361749,2,"Debt Consolidation Loan, Personal Loan, and Mortgage Loan",13.52754566,12,7.22,4,_,857.1339203,23.57228829,26 Years and 5 Months,No,256.3437451,,Low_spent_Medium_value_payments,99.34252186,0,-0.2839,0.0809,1.205,1.2413,-0.9499 -0x80e9,CUS_0x92e8,August,32,576-73-9678,Writer,12989.77,,4,4,7,6,"Credit-Builder Loan, Not Specified, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Student Loan",,15,14.37,9,Standard,1298.38,28.72453705,,NM,62.21461364,,Low_spent_Small_value_payments,249.2119336,0,-0.7342,-0.9086,0.1356,1.0581,-2.1216 -0x80f5,CUS_0xb69a,August,32,704-62-9013,Doctor,17282.31,,5,4,1,2,"Not Specified, and Mortgage Loan",,20.29466512,8.98,2,Good,214.6745641,32.40524412,29 Years and 10 Months,No,185.9205006,,Low_spent_Small_value_payments,256.1777265,0,1.698,-0.4523,-0.0331,-0.604,0.011 -0x8101,CUS_0x8443,August,44,553-51-4273,Teacher,80415.12,6472.26,6,7,16,6,"Home Equity Loan, Payday Loan, Home Equity Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",21.88049328,17,7.16,4,Standard,1210.762231,28.69170433,,Yes,269.1210392,184.2993932,High_spent_Large_value_payments,460.521958,0,1.3409,-0.1372,-0.7509,0.9752,1.5882 -0x810d,CUS_0x6a74,August,19,876-18-9837,Entrepreneur,134734.16,,7,7,11,2,"Payday Loan, and Not Specified",18.42051012,13,2.11,2,Standard,45.12,41.52313697,,NM,153.8139477,249.0177099,!@9#%8,975.653009,0,1.67,-0.2077,-0.7341,-0.6386,-1.6547 -0x8119,CUS_0x5558,August,42,173-57-0735,Architect,138188.84,11668.73667,7,7,7,6,"Home Equity Loan, Personal Loan, Payday Loan, Personal Loan, Not Specified, and Home Equity Loan",19.01022167,16,23.75,7,Standard,277.31,28.04317177,19 Years and 9 Months,Yes,648.9027424,128.9090925,High_spent_Medium_value_payments,639.0618318,0,0.896,0.5553,0.187,-0.4714,-0.4551 -0x8125,CUS_0x650f,August,46,015-91-3257,Accountant,12434.24,,6,1420,15,2,"Personal Loan, and Debt Consolidation Loan",,15,12.42,0,Standard,768.69,32.72408082,26 Years and 11 Months,Yes,11.24452942,87.99905114,Low_spent_Small_value_payments,276.2750861,0,1.6569,-0.7037,0.9486,-0.5842,1.965 -0x8131,CUS_0xa7c5,August,45,566-80-0785,Lawyer,37756.85,2865.404167,3,4,10.28836175,2,"Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",,12,9.31,0,_,320.2932804,26.13270163,33 Years and 5 Months,No,83.95989216,607.7664771,High_spent_Small_value_payments,294.5525655,0,-1.4727,-0.6801,2.1878,0.3242,0.6003 -0x813d,CUS_0x8727,August,24,999-92-7186,Architect,29020.78,2423.398333,8,3,10,0,,19.35322123,13,5.56,2,_,1290.3,39.71393367,26 Years and 2 Months,No,0,40.88652563,High_spent_Medium_value_payments,451.4533077,0,0.464,1.4604,-0.4593,-0.3384,0.3946 -0x8149,CUS_0x6640,August,37,636-48-6294,Doctor,19944.35,,8,9,30,5,"Student Loan, Mortgage Loan, Student Loan, Personal Loan, and Payday Loan",,25.06120014,4.7,9,Bad,2429.433887,23.69551795,14 Years and 2 Months,Yes,44.33687369,,Low_spent_Small_value_payments,237.54213,0,-0.489,-0.39,1.0693,-1.5124,-1.2459 -0x8155,CUS_0x87fe,August,37,029-54-7884,Media_Manager,32411.63,2752.969167,8,7,4456,2,"Personal Loan, and Mortgage Loan",,20,6.78,5,Standard,282.3591662,36.44529317,,No,27.84830407,174.062799,High_spent_Small_value_payments,358.2900839,0,-0.5851,0.6628,1.5508,0.4312,-0.2018 -0x8161,CUS_0xc1f7,August,38,136-72-4563,Entrepreneur,97826.07,8406.1725,5,3,15,4,"Mortgage Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,12,21.97,7,Standard,395.61,32.2460088,6 Years and 9 Months,NM,295.681168,554.9011682,Low_spent_Small_value_payments,280.0349138,0,0.066,0.5209,0.2982,-0.5366,1.3256 -0x816d,CUS_0x7b97,August,48,787-10-9379,Journalist,30760.15,2639.345833,4,1005,7,3,"Auto Loan, Personal Loan, and Mortgage Loan",19.44043201,11.83310288,11.5,6,_,157.3685327,28.9411839,27 Years and 8 Months,No,41.12529798,54.68315043,High_spent_Medium_value_payments,418.1261349,0,-0.8247,-0.6581,0.5387,0.5468,1.4026 -0x8179,CUS_0x5bdb,August,42,419-12-7067,Engineer,7866.91,,3,1498,11,7,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, and Payday Loan",90,2697,13.97,6,_,1076.09,37.38378382,11 Years and 6 Months,Yes,23.92606403,10000,!@9#%8,311.9382334,0,0.7998,0.9656,0.9515,-0.2986,-0.1182 -0x8185,CUS_0x7716,August,18,463-91-2032,Manager,13672037,3143.796667,8,10,29,5,"Not Specified, Auto Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",,18.53857282,22.49,11,Bad,3266.339399,35.5982169,10 Years and 0 Months,Yes,122.900223,,Low_spent_Small_value_payments,252.3859652,0,1.3228,0.2844,0.5613,0.4133,0.0304 -0x8191,CUS_0x5e61,August,25,615-93-9083,Teacher,16256.3,,3,3,7.288361749,4,"Personal Loan, Student Loan, Mortgage Loan, and Personal Loan",0,3,1.65,1,_,204.66,33.22115628,15 Years and 9 Months,No,29.89646505,478.3219558,High_spent_Small_value_payments,283.3882068,0,0.5638,1.5945,-1.1315,-0.4821,-0.869 -0x819d,CUS_0x691f,August,18,633-68-4376,Musician,16791.76,1648.313333,8,10,34.06745738,3,"Student Loan, Student Loan, and Personal Loan",26.7390817,13,16.13,9,Standard,2687.310954,29.19691843,16 Years and 8 Months,Yes,31.8113891,,High_spent_Large_value_payments,331.4971101,0,-1.2165,-0.8895,-0.4518,1.2729,-0.3267 -0x81a9,CUS_0xb867,August,39,972-48-4030,Accountant,86408.13,7257.6775,0,6,5.288361749,100,,15.92388589,,2.38,4,Good,646.89,40.19343018,,No,0,596.4468042,High_spent_Large_value_payments,789.2584068,0,1.1679,-0.9239,0.3748,1.0284,-0.5392 -0x81b5,CUS_0x8004,August,43,250-70-4756,Doctor,84379.82,,3,4,12,0,,,2,3.03,5,Good,498.02,38.06510297,27 Years and 4 Months,No,0,372.5215906,Low_spent_Medium_value_payments,602.043576,0,0.0017,2.5515,-1.659,1.8251,0.004 -0x81c1,CUS_0xa6f4,August,51,055-64-9665,Doctor,126091.71,,1,5,5.288361749,0,,0,3,5.38,2,Good,1284.117694,33.2411178,19 Years and 4 Months,No,0,1086.202806,Low_spent_Small_value_payments,746.2595623,0,0.7468,-0.7587,-1.3874,0.0172,0.2964 -0x81cd,CUS_0x8da2,August,56,968-20-8427,_______,118446.69,9708.5575,3,1,8,0,,0,2,9.12,6,Good,828.9209733,31.3734783,15 Years and 9 Months,No,0,132.0590743,!@9#%8,1094.959748,0,1.8963,0.3571,-0.0403,0.3782,-0.0759 -0x81d9,CUS_0x99c9,August,42,950-35-3123,Lawyer,65804.68,5639.723333,8,4,5,4,"Student Loan, Home Equity Loan, Student Loan, and Auto Loan",23.77491018,16,21.69,1,Standard,1068.77,27.15350385,31 Years and 10 Months,Yes,181.6034832,433.2858802,Low_spent_Small_value_payments,239.08297,0,-1.1316,0.1467,0.8296,0.7154,0.1715 -0x81e5,CUS_0x7347,August,43,611-53-0923,Teacher,8719,,9,5,20.06745738,6,"Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",22.9270665,11.56043299,15.58,14,Standard,2018.582282,36.96234758,8 Years and 11 Months,Yes,34.67191677,53.95399987,Low_spent_Small_value_payments,240.0121287,0,1.4233,-0.013,0.3243,0.7329,0.0837 -0x81f1,CUS_0x5ebd,August,26,883-40-7232,Doctor,20937.38,,8,8,31.06745738,3,"Personal Loan, Student Loan, and Home Equity Loan",,22.20324332,25.56,8,Standard,2172.471635,38.8672762,8 Years and 4 Months,Yes,52.14929737,48.55449014,Low_spent_Large_value_payments,307.6540912,0,-2.4291,-1.2008,-1.3458,-0.341,0.9401 -0x81fd,CUS_0x8e72,August,49,767-92-0166,Lawyer,37813.97,3233.164167,5,6,11,2,"Home Equity Loan, and Payday Loan",,5,4.91,4,Good,880.43,28.98867489,18 Years and 5 Months,No,36.01705179,10000,High_spent_Large_value_payments,496.3237684,0,-0.5169,-1.1187,-0.0302,0.3725,-0.457 -0x8209,CUS_0x3aa1,August,39,701-98-5720,_______,47888.94,4197.745,4,4,27,4,"Mortgage Loan, Student Loan, Home Equity Loan, and Not Specified",,18.55836232,8.84,8,Standard,2042.386104,36.19591193,14 Years and 6 Months,Yes,150.783745,95.94631215,High_spent_Large_value_payments,413.0444429,0,0.3902,1.4605,-0.3603,-1.0455,1.4045 -0x8215,CUS_0x9d51,August,32,189-87-7469,Musician,15361.995,1414.16625,8,6,10,5,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Personal Loan, and Student Loan",30.07532453,23,13.35,,Standard,440.92,29.91200631,10 Years and 6 Months,Yes,51.74325541,124.8189074,Low_spent_Small_value_payments,254.8544622,0,-1.2414,0.6675,0.0234,0.5687,0.6109 -0x8221,CUS_0x5048,August,21,986-86-6614,Doctor,172792.68,14189.39,4,5,10.28836175,100,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",2.157125223,5.759788792,11.61,7,Good,342.0551726,29.71446157,23 Years and 6 Months,No,356.9316469,732.5198371,High_spent_Small_value_payments,1009.424977,0,-0.0136,2.5928,-0.7707,-0.2772,-0.6959 -0x822d,CUS_0x6c6d,August,38,093-21-1258,Manager,73028.88,5955.74,7,6,34,8,"Mortgage Loan, Student Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Not Specified",,16,22.75,9,Bad,3641.51,23.15169819,14 Years and 5 Months,NM,425.5467784,,High_spent_Medium_value_payments,288.8459947,0,2.7213,-0.9257,0.3708,0.3702,-3.0057 -0x8239,CUS_0x224a,August,55,612-13-5545,Teacher,114929.01,9469.4175,794,3,1.288361749,2,"Personal Loan, Debt Consolidation Loan, and Payday Loan",0.620122341,3,2.08,,Good,742.14,30.58356871,26 Years and 9 Months,No,206.87483,10419.93746,Low_spent_Medium_value_payments,44.23472708,0,0.6725,0.5743,1.3572,-0.6454,0.4503 -0x8245,CUS_0x1e5e,August,34,464-14-7094,Engineer,28501.86,,4,2,10,2,"Home Equity Loan, and Auto Loan",0,0,10.78,0,Good,946.0330198,25.99184938,,No,29.15376484,180.443212,Low_spent_Medium_value_payments,335.4182194,0,0.9068,0.3644,-0.113,-0.9305,0.2033 -0x8251,CUS_0xa877,August,55,112-83-9854,Manager,18167.415,,1,7,5,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",0.778590563,3,5.99,4,Good,718.95,23.89019489,32 Years and 2 Months,No,24.44118001,88.25617833,Low_spent_Large_value_payments,307.6977667,0,-0.2195,0.3406,0.209,-0.3028,-0.1901 -0x825d,CUS_0x26ac,August,26,023-06-5608,Musician,90487.96,7330.663333,4,4,12,7,"Not Specified, Student Loan, Student Loan, Mortgage Loan, Payday Loan, Mortgage Loan, and Not Specified",17.60404484,13,15.62,13,Standard,1416.61,31.44380653,11 Years and 0 Months,Yes,482.3616914,,Low_spent_Large_value_payments,127.1101127,0,0.2274,-0.9495,0.7767,0.8485,1.0492 -0x8269,CUS_0xb5be,August,30,760-98-9558,Accountant,130597.17,10775.0975,2,4,5.288361749,2,"Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",6.559429753,7,7.23,5,Good,1295.716892,35.52988725,,No,236.2577301,1016.931648,Low_spent_Small_value_payments,589.0022808,0,1.0936,-1.1077,-0.757,-1.4394,-0.1301 -0x8275,CUS_0xa9c2,August,18,331-82-4019,Lawyer,9243.765,564.31375,9,8,19,2,"Auto Loan, and Mortgage Loan",34.14766973,19,4.1,6,Bad,1459.06,30.7470861,13 Years and 11 Months,NM,13.68289337,28.27386865,Low_spent_Medium_value_payments,294.474613,0,-0.2493,0.7042,-1.7694,0.1449,-0.448 -0x8281,CUS_0x299d,August,18,794-47-1465,Accountant,64159.53,,8,6,8,6,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",14.06965079,12,19.9,10,Standard,795.79,33.40041927,12 Years and 6 Months,Yes,250.417246,177.901082,High_spent_Small_value_payments,358.444422,0,-0.7174,-0.1842,1.122,0.3539,-0.1983 -0x828d,CUS_0xe2a,August,20,880-98-7602,Developer,88295.34,7224.945,5,2,939.2883617,0,,0,2,1.4,1,Good,723.63,30.32839201,30 Years and 4 Months,No,0,1164.372353,!@9#%8,258.0596077,0,0.6,-0.7912,-1.3948,-0.206,0.8248 -0x8299,CUS_0xc01a,August,56,084-85-3392,Teacher,28517.53,,1,4,8,4,"Debt Consolidation Loan, Auto Loan, Auto Loan, and Personal Loan",,7,-0.36,1,Good,229.9247803,25.28327293,16 Years and 5 Months,No,89.35557337,45.51491851,High_spent_Large_value_payments,325.7992216,0,-1.1068,-1.4049,-1.7743,-0.3476,0.808 -0x82a5,CUS_0x5f86,August,25,309-04-1544,Musician,17234.695,,7,3,7,3,"Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",11.83864522,10,11.63,2,Standard,901.12,30.98970667,28 Years and 8 Months,Yes,33.49155037,,Low_spent_Large_value_payments,282.1757723,0,0.1075,1.5879,-0.7152,0.6848,-0.6906 -0x82b1,CUS_0x4487,August,30,952-89-5647,Accountant,62848.88,4546.214822,7,7,8,5,"Not Specified, Mortgage Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",23.43969421,19,17.34,4,_,2421.524525,32.23065164,,Yes,767.947345,400.885273,Low_spent_Small_value_payments,207.5531718,0,-0.5836,-1.2777,-1.62,-0.5624,-0.5858 -0x82bd,CUS_0x631f,August,36,837-78-9503,Mechanic,15270.77,,10,9,32.95700519,6,"Debt Consolidation Loan, Student Loan, Payday Loan, Payday Loan, Payday Loan, and Payday Loan",42.78745958,24.86116058,4.46,8,Bad,3169.900985,28.68379592,6 Years and 3 Months,Yes,1375.985186,,High_spent_Small_value_payments,260.3021847,0,1.4443,-0.793,0.2855,-1.2595,0.295 -0x82c9,CUS_0x4db9,August,19,641-29-5684,Accountant,53587.86,4197.655,6,6,18,3,"Mortgage Loan, Home Equity Loan, and Personal Loan",17.31898088,12,16.99,6,Standard,636.73,30.79226073,15 Years and 5 Months,Yes,124.9151428,228.5205137,High_spent_Small_value_payments,326.3298435,0,-0.7154,-0.8368,0.4083,-0.6588,-0.9058 -0x82d5,CUS_0x9497,August,41,938-80-4362,_______,9920.795,743.7329167,1089,9,33.06745738,9,"Home Equity Loan, Not Specified, Home Equity Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Payday Loan",,20.24167182,22.34,9,Bad,3326.735619,28.31826516,6 Years and 4 Months,Yes,42.26743181,10000,Low_spent_Medium_value_payments,235.1852261,0,0.5696,0.3824,-0.0032,-0.7843,1.4279 -0x82e1,CUS_0x1281,August,22,728-18-4971,Writer,8780.975,435.7479167,5,4,20,6,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Not Specified, Student Loan, and Debt Consolidation Loan",11.71273341,9.179208009,14.82,4,Standard,924.0358776,38.9583947,11 Years and 3 Months,Yes,36.74831398,52.84878987,Low_spent_Small_value_payments,243.9776878,0,0.9615,-0.957,0.6998,1.6756,-1.0681 -0x82ed,CUS_0x352b,August,45,190-64-8072,Doctor,15148.98,,6,9,17,2,"Home Equity Loan, and Personal Loan",19.30136046,14.38971358,14.76,11,_,2835.437741,35.32272738,17 Years and 9 Months,Yes,25.18058929,115.5893608,Low_spent_Small_value_payments,277.2715499,0,0.6201,0.1082,0.6512,-2.1025,0.5133 -0x82f9,CUS_0x2af3,August,23,105-65-3952,Mechanic,80442.28,6995.523333,8,7,21,9,"Auto Loan, Home Equity Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",28.46071444,20,19.33,10,Bad,2738.93,34.79344311,1 Years and 4 Months,Yes,374.6506222,456.5683938,Low_spent_Medium_value_payments,148.3333173,0,0.8162,0.3503,1.9917,-0.3701,0.4771 -0x8305,CUS_0xc3a1,August,39,064-96-4304,_______,15106.33,1540.860833,6,9,16,8,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Not Specified, Mortgage Loan, Personal Loan, Not Specified, and Mortgage Loan",,19.37372873,3.98,13,Bad,1519.089119,23.0117189,8 Years and 3 Months,Yes,79.45377456,141.0392295,Low_spent_Large_value_payments,203.5930792,0,-1.9515,0.1343,0.9732,0.1785,-0.4027 -0x8311,CUS_0x3a3d,August,25,171-73-4099,Journalist,30555.87,,2,6,11,0,,5.855003771,9,7.33,5,Good,418.79,35.35793603,22 Years and 10 Months,No,0,128.4752614,Low_spent_Small_value_payments,439.1569886,0,-0.6622,-2.2144,0.8819,0.0932,-1.4479 -0x831d,CUS_0x60e8,August,18,#F%$D@*&8,Musician,49880.52,4239.71,4,6,6,3,"Student Loan, Home Equity Loan, and Auto Loan",,14,18.22,13,Standard,849.02,29.94298015,18 Years and 9 Months,Yes,111.3567314,,Low_spent_Small_value_payments,183.2638546,0,-1.1284,-1.5725,0.2533,-0.3671,1.2282 -0x8329,CUS_0x9e7a,August,26,993-26-5069,Musician,25610.67,,3,4,18.28836175,2,"Student Loan, and Credit-Builder Loan",18.77385861,16,2.24,1,_,46.58,33.38435981,24 Years and 11 Months,No,24.79970893,527.402485,High_spent_Small_value_payments,346.7575171,0,0.7128,-1.778,1.1739,0.3132,-0.0496 -0x8335,CUS_0x5775,August,48,410-75-4980,Accountant,16609.095,1488.09125,1,2,4,3,"Home Equity Loan, Credit-Builder Loan, and Student Loan",,4,8.81,3,Good,864,38.21875472,23 Years and 3 Months,No,22.41100577,146.9766852,Low_spent_Small_value_payments,269.421434,0,-1.0023,-0.1757,0.3284,-1.3949,-0.1669 -0x8341,CUS_0x7084,August,26,967-68-4738,Musician,30619.71,1965.121357,5,3,18,0,,24.51697012,16,10.06,11,Standard,614.0344827,26.19421381,24 Years and 10 Months,Yes,298.5211429,94.05924796,High_spent_Medium_value_payments,391.6656051,0,-1.3506,-1.0095,0.7384,0.0902,0.7336 -0x834d,CUS_0x46db,August,26,276-03-8497,Scientist,74837.12,6261.426667,4,3,17,6,"Home Equity Loan, Personal Loan, Mortgage Loan, Not Specified, Not Specified, and Personal Loan",21.33296814,16,12.14,10,_,1527.44,32.54682348,7 Years and 2 Months,Yes,362.2500409,457.6515168,Low_spent_Medium_value_payments,86.24110905,0,-0.6952,-1.2077,0.8665,-0.2212,-0.8812 -0x8359,CUS_0x4a51,August,18,658-15-9936,Scientist,18885.93,1591.8275,9,7,22,2,"Not Specified, and Auto Loan",29.31053651,21.30831684,7.55,8,Standard,1533.269911,27.97627106,10 Years and 0 Months,Yes,29.60456059,70.87432036,Low_spent_Large_value_payments,328.703869,0,1.1468,-0.5957,-1.6815,-0.5929,-0.3346 -0x8365,CUS_0xa682,August,53,276-56-8950,Mechanic,22933.45,,8,7,19,4,"Credit-Builder Loan, Mortgage Loan, Personal Loan, and Auto Loan",20.72540047,11,6.52,,Standard,328.94,35.2416349,20 Years and 5 Months,Yes,38.75600326,70.97280466,High_spent_Medium_value_payments,327.5832754,0,-0.4012,-0.1475,0.7351,-1.3685,-0.0838 -0x8371,CUS_0x1e16,August,53,443-08-6028,Journalist,40019,3401.916667,2,1,2,4,"Home Equity Loan, Home Equity Loan, Student Loan, and Personal Loan",0.210097775,4,3.58,6,Good,1445.81,34.60242342,20 Years and 6 Months,No,70.34034034,427.7105996,Low_spent_Small_value_payments,132.1407268,0,0.0253,-0.7807,1.3248,0.1658,1.7156 -0x837d,CUS_0x30ed,August,30,310-48-0958,Scientist,28634.88,,6,6,18.06745738,8,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Auto Loan",32.93912779,,8.34,10,Bad,3745.785381,24.67123832,7 Years and 4 Months,Yes,106.5034545,223.3785137,Low_spent_Medium_value_payments,167.6217438,0,1.3759,-2.4816,-0.3823,0.1022,0.8127 -0x8389,CUS_0x58ba,August,26,642-96-2535,Developer,57055.95,,4,4,9,4,"Mortgage Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",18.11463741,15,15.03,7,Standard,470.01,32.43936169,8 Years and 4 Months,Yes,174.286333,,High_spent_Medium_value_payments,361.3582351,0,-0.0862,-0.5954,-1.0244,0.4559,0.8604 -0x8395,CUS_0x684c,August,18,215-51-4680,Entrepreneur,33238.98,,7,8,28.06745738,2,"Mortgage Loan, and Mortgage Loan",35.9560976,21.70796143,4.84,15,Bad,2081.53336,30.30534381,14 Years and 4 Months,Yes,54.70127741,268.1688145,!@9#%8,189.0011202,0,0.5196,1.1143,-0.5765,-0.886,-0.7995 -0x83a1,CUS_0x1431,August,32,752-76-8063,Mechanic,110525.97,9471.4975,7,7,9,5,"Not Specified, Not Specified, Not Specified, Payday Loan, and Payday Loan",25.35832254,18.84665048,10.27,8,Standard,1132.929068,38.92767664,8 Years and 11 Months,Yes,267.3351804,142.0067414,High_spent_Medium_value_payments,787.8078282,0,-0.8489,-1.5649,0.7996,-0.2104,1.2535 -0x83ad,CUS_0x46ff,August,36,846-58-3098,Lawyer,72849.56,6118.796667,3,3,12,6,"Personal Loan, Payday Loan, Auto Loan, Personal Loan, Auto Loan, and Auto Loan",28.84528815,20,15.07,9,Standard,965.85,27.94902833,,Yes,230.4748559,373.9437855,Low_spent_Medium_value_payments,287.4610252,0,1.0849,0.7572,-0.0288,0.6189,-0.2096 -0x83b9,CUS_0x84a0,August,28,417-38-2507,Accountant,45783.32,3643.276667,7,7,18,0,,,15,10.25,6,Standard,608.27,28.02523426,,No,0,40.27800304,High_spent_Medium_value_payments,574.0496636,0,-1.24,-0.6798,-0.6831,-0.7386,-0.3462 -0x83c5,CUS_0xaa84,August,26,103-20-0690,Musician,33520.04,,8,6,13,4,"Home Equity Loan, Not Specified, Not Specified, and Not Specified",16.63104869,,5.58,3,Standard,673.04,38.72827944,21 Years and 9 Months,No,82.39694576,251.4380311,!@9#%8,206.8986898,0,-0.5341,0.1287,1.6193,-1.1821,0.3257 -0x83d1,CUS_0xb9d2,August,28,000-80-0683,Manager,79950.34,6393.528333,3,1,10,4,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Auto Loan",6.240419781,5,6.27,2,Good,464.7065605,24.95211951,24 Years and 10 Months,No,261.4747997,122.5483811,High_spent_Medium_value_payments,519.1153045,0,-0.7209,0.6593,-3.0522,0.6431,0.0282 -0x83dd,CUS_0x9f4c,August,28,148-87-5022,Teacher,14155.74,,10,5,23,9,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",28.40060021,18,2.14,15,_,1971.13,28.58608557,7 Years and 0 Months,Yes,60.47033609,50.53552373,Low_spent_Medium_value_payments,282.4586402,0,1.4787,0.7947,1.671,1.8156,-0.6563 -0x83e9,CUS_0x28a7,August,31,969-11-1053,Media_Manager,69502.12,,3,7,17,2,"Personal Loan, and Not Specified",10.40976909,9,7.86,10,Standard,1065.78,40.59266314,30 Years and 10 Months,Yes,96.18121645,109.2479789,High_spent_Large_value_payments,608.155138,0,-1.9686,-1.4893,-0.4891,0.6493,2.2139 -0x83f5,CUS_0x97dc,August,31,069-20-5974,Musician,99912.57,8615.0475,1,5,5,1,Home Equity Loan,7.443765603,5.652725671,1.13,1,Good,167.3719205,39.05147101,22 Years and 9 Months,No,64.37027168,240.4009871,High_spent_Medium_value_payments,806.7334912,0,-1.1396,0.5987,0.5105,-0.0001,-2.2428 -0x8401,CUS_0x1152,August,29,330-02-2598,Accountant,31316.47,2510.705833,0,2,6,2,"Payday Loan, and Personal Loan",,5,5.44,1,Good,737.3156877,36.45165605,18 Years and 6 Months,No,26959,140.1242836,High_spent_Small_value_payments,355.2718152,0,-0.8522,0.9553,0.3747,0.2184,-1.2946 -0x840d,CUS_0x7942,August,32,017-06-0145,Engineer,57852.3,4571.025,8,10,19.95700519,8,"Payday Loan, Auto Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Personal Loan",29.01687395,19.15575334,20.67,8,Bad,5445.842145,39.24020442,5 Years and 10 Months,Yes,1561.858359,148.2444359,High_spent_Medium_value_payments,275.9493358,0,1.4743,-0.4994,-1.2121,0.4355,-0.5174 -0x8419,CUS_0x644f,August,25,712-62-5103,_______,9988.76,,4,7,5,1,Credit-Builder Loan,,11,19.19,6,_,71.42,36.47076304,25 Years and 3 Months,Yes,4.865689677,62.84062094,High_spent_Small_value_payments,292.233356,0,-0.2329,0.1375,-1.577,-0.1961,-0.3246 -0x8425,CUS_0x5ee5,August,43,666-08-3263,Scientist,109864.47,9093.3725,8,6,15.28836175,0,,10.11701275,10,8.67,7,Standard,35.21,40.45186342,20 Years and 4 Months,Yes,0,630.5133199,High_spent_Large_value_payments,938.7613912,0,1.4273,-1.6512,0.2017,-0.4861,-0.1616 -0x8431,CUS_0x2555,August,24,373-90-7239,Doctor,33818.2,2879.183333,8,591,18,1,Credit-Builder Loan,30.1741228,21,,4,Standard,170.13,36.45898836,31 Years and 6 Months,NM,23.68594246,97.88706775,High_spent_Medium_value_payments,416.3453231,0,-0.869,-0.3956,0.5105,1.2894,0.7648 -0x843d,CUS_0x4044,August,39,#F%$D@*&8,Engineer,19151.85,1746.9875,8,9,25.06745738,2,"Personal Loan, and Home Equity Loan",,13,6.89,2190,Bad,2808.610954,34.85937368,15 Years and 3 Months,Yes,31.78078547,17.41270615,High_spent_Large_value_payments,338.7849704,0,0.4523,1.8739,-0.4546,0.8553,-1.2718 -0x8449,CUS_0x8cc9,August,18,340-05-3601,Media_Manager,8953.055,,3,10,30,5,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",23.94008733,17,15.76,7,Standard,1539.76,21.848104,17 Years and 8 Months,Yes,22.59698567,10000,Low_spent_Small_value_payments,262.4022672,0,0.3751,0.622,-2.577,-0.3284,0.2795 -0x8455,CUS_0x9d87,August,19,187-59-2688,Accountant,41200.26,3516.355,8,9,32.95700519,7,"Debt Consolidation Loan, Personal Loan, Payday Loan, Home Equity Loan, Not Specified, Not Specified, and Home Equity Loan",45.97398885,24.12678914,9.22,10,Bad,3220.039942,27.99286166,14 Years and 8 Months,Yes,1455.169348,,!@9#%8,167.3127703,0,-0.2163,0.1703,-0.8535,0.4521,1.1677 -0x8461,CUS_0x85e8,August,22,548-50-3919,Lawyer,126115.56,10304.63,8,7,19,4,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",,14,9.72,3,Standard,1106.804117,26.70552369,29 Years and 3 Months,No,389.0075114,1072.721403,Low_spent_Medium_value_payments,,0,0.9048,-0.0292,0.5851,0.3336,0.5157 -0x846d,CUS_0x6197,August,39,079-81-7123,Engineer,18610.89,1674.9075,6,8,22,5,"Credit-Builder Loan, Payday Loan, Student Loan, Auto Loan, and Payday Loan",36.9667733,17.28583973,8.52,8,Bad,2094.308754,36.25690694,8 Years and 4 Months,Yes,59.1208058,,Low_spent_Medium_value_payments,294.2616341,0,0.3685,-0.7266,-0.9047,0.7536,-0.7215 -0x8479,CUS_0x385d,August,38,647-38-7901,Teacher,18495.14,,3,3,7,4,"Auto Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",21.41608573,17,12.61,10,Standard,1110.59804,33.08035449,14 Years and 0 Months,Yes,39.64558521,123.6112225,Low_spent_Small_value_payments,323.0507126,0,-0.2874,0.904,-0.4513,-0.726,-0.3636 -0x8485,CUS_0x9bb0,August,48,815-47-0096,Developer,66120.99,5665.0825,1197,4,20,2,"Auto Loan, and Mortgage Loan",16.52942943,14,5.65,0,Standard,553.15,33.36276024,,NM,95.35810192,,High_spent_Medium_value_payments,652.2868676,0,1.1572,0.4214,-1.3634,-0.533,1.3112 -0x8491,CUS_0xeea,August,37,693-89-3430,Accountant,31909.18,,9,6,29,8,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Student Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",27.8489756,21,1.63,8,Bad,3409.48,29.52795354,8 Years and 11 Months,Yes,202.911972,124.0540781,High_spent_Small_value_payments,188.5437833,0,0.2553,2.0577,0.3759,0.6279,1.0158 -0x849d,CUS_0x7e18,August,26,682-78-8709,Manager,91836.48,7716.04,6,7,12,1,Mortgage Loan,,24.9067318,8.26,6,Good,185.5294745,36.74465595,18 Years and 10 Months,No,62.42521456,110.1750879,High_spent_Medium_value_payments,849.0036975,0,-0.907,1.0824,0.3292,0.9235,1.3511 -0x84a9,CUS_0xa666,August,38,587-63-0002,Media_Manager,31153.48,,2,5,9,3,"Debt Consolidation Loan, Home Equity Loan, and Payday Loan",9.549350647,9,5.96,5,Good,737.93,29.43325674,18 Years and 8 Months,No,68.46128853,105.862704,High_spent_Medium_value_payments,329.9883408,0,1.4932,0.6959,-0.7617,-1.6267,-1.7891 -0x84b5,CUS_0x6c85,August,26,920-99-0917,Architect,72576.04,5934.003333,5,3,6.288361749,4,"Credit-Builder Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",,14,2.27,1,Good,419.6693069,38.33170898,25 Years and 0 Months,No,197.0099318,575.87546,High_spent_Medium_value_payments,508.5345375,0,-1.3912,-2.0332,0.0601,0.224,0.415 -0x84c1,CUS_0x240e,August,37,944-76-1544,Writer,27476.99,2301.749167,7,4,20,4,"Not Specified, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,,12.8,7,_,566.21,27.82606731,22 Years and 9 Months,Yes,73.47853819,42.95200445,High_spent_Medium_value_payments,363.744374,0,0.5567,1.1057,0.6463,-1.1421,-0.4768 -0x84cd,CUS_0x5c87,August,40,144-83-3183,Developer,13115381,,9,8,30,5,"Credit-Builder Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Mortgage Loan",31.66183014,23,22.94,10,Bad,3026.97,27.50550908,9 Years and 6 Months,Yes,208.769613,306.8360158,Low_spent_Large_value_payments,361.8217045,0,0.6446,-0.6018,0.8601,2.5527,-0.796 -0x84d9,CUS_0x5313,August,21,378-22-0903,Entrepreneur,9584.875,643.7395833,6,1181,12.88954781,6,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",23.54208341,20,12.65,6,Standard,1414.03,34.05378564,14 Years and 8 Months,Yes,1348.191983,32.05445912,Low_spent_Small_value_payments,279.7974351,0,0.9749,0.1449,0.1455,0.7036,1.0858 -0x84e5,CUS_0x2e1d,August,18,408-57-4420,Accountant,53251.36,4636.613333,5,3,20,3,"Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",16.92567316,11,19.82,9,Standard,777.1461272,38.48759482,27 Years and 5 Months,Yes,128.2098442,,Low_spent_Medium_value_payments,373.5582175,0,0.1242,-0.7506,0.6001,0.1173,0.7031 -0x84f1,CUS_0x8b99,August,49,578-99-4316,Mechanic,32260.97,,1,4,2,3,"Student Loan, Not Specified, and Student Loan",7.681138859,7,4.7,4,Good,902.7974411,32.81182929,31 Years and 10 Months,NM,190.4936988,104.9599692,Low_spent_Large_value_payments,341.9384172,0,1.974,-0.7215,-0.707,0.2734,1.5249 -0x84fd,CUS_0xad55,August,30,985-38-7873,Engineer,58337.79,4697.4825,8,6,19,2,"Auto Loan, and Home Equity Loan",11.60092489,11.91449921,13.36,8,Standard,1466.167415,38.66390244,18 Years and 0 Months,Yes,86.26591449,193.0563356,Low_spent_Small_value_payments,480.4259999,0,0.3241,0.1837,-0.2132,-1.2854,-1.1197 -0x8509,CUS_0x7e3e,August,30,230-16-9822,Engineer,80932.92,6759.41,9,7,22,4,"Credit-Builder Loan, Payday Loan, Not Specified, and Payday Loan",54.03695206,28.19071729,7.22,6,_,2960.495713,30.19094014,16 Years and 4 Months,Yes,192.8108777,91.69376617,High_spent_Large_value_payments,631.4363561,0,-0.3098,0.1287,0.282,-0.3122,0.8869 -0x8515,CUS_0x7b1c,August,26,022-18-2145,Architect,121466.8,,0,7,7.288361749,2,"Personal Loan, and Student Loan",,12,2.1,2,Good,439.0078614,37.54432295,30 Years and 10 Months,No,178.1958737,588.7791841,High_spent_Medium_value_payments,935.8355414,0,-1.0852,1.6619,0.6159,0.974,0.3263 -0x8521,CUS_0xa4b3,August,36,482-29-3534,Accountant,61351.77,4997.6475,8,10,18,5,"Personal Loan, Payday Loan, Auto Loan, Home Equity Loan, and Payday Loan",41.61593733,26.41339188,13.27,9,Bad,2484.500225,26.00763383,17 Years and 5 Months,Yes,47697,137.0431523,High_spent_Medium_value_payments,429.3085682,0,-0.686,1.0614,-2.9977,-1.276,-0.2487 -0x852d,CUS_0xb013,August,22,607-56-0354,Developer,32667.1,,6,8,33.06745738,7,"Student Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Personal Loan",25.68188249,13,,7,Bad,4132.210954,39.87416214,1 Years and 6 Months,Yes,117.5504507,101.1866679,Low_spent_Small_value_payments,303.8684267,0,0.871,-0.0226,0.645,-0.5409,-0.7463 -0x8539,CUS_0xa201,August,22,926-53-0959,Scientist,104994.57,8635.5475,7,4,9,3,"Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",16.90417677,13,18.2,1,Standard,536.97,40.77074448,30 Years and 6 Months,Yes,187.304419,200.2783354,High_spent_Medium_value_payments,725.9719957,0,0.4523,-1.3431,0.2723,-0.522,0.3005 -0x8545,CUS_0x29ab,August,43,406-65-3278,Writer,20498.12,,7,6,32,2,"Home Equity Loan, and Payday Loan",19.99251592,15,10.58,11,Standard,1473.64,31.47475472,19 Years and 9 Months,Yes,31.91744658,131.786356,Low_spent_Small_value_payments,282.213864,0,0.733,1.9718,-0.6448,-0.7086,0.5818 -0x8551,CUS_0x9347,August,21,406-68-6740,_______,33832.58,,8,5,23.06745738,8,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Not Specified, and Student Loan",,25.3051472,3.42,12,_,4133.167077,26.18632221,0 Years and 10 Months,Yes,150.2708913,31.68887308,High_spent_Medium_value_payments,322.2581144,0,0.9099,-1.3752,-0.0023,-0.1343,-0.7704 -0x855d,CUS_0x2ffe,August,80,453-58-5804,Doctor,13913.795,1156.482917,7,4,12.06745738,3,"Debt Consolidation Loan, Student Loan, and Home Equity Loan",21.88009125,15,7.01,0,Standard,1693.720954,25.03107024,17 Years and 4 Months,NM,24.63645069,89.41213766,Low_spent_Small_value_payments,264.8794154,0,0.8427,0.7402,-0.3507,-0.4718,0.0011 -0x8569,CUS_0x85fd,August,42,575-74-4681,Teacher,40225.32,3609.11,0,5,11,1,Student Loan,0,1,8.02,8,Good,674.01,38.96306566,15 Years and 9 Months,No,18.37742156,,Low_spent_Medium_value_payments,375.1085559,0,0.672,-0.8274,0.1311,0.5943,-0.3252 -0x8575,CUS_0x2473,August,32,590-31-4442,Lawyer,66614.64,5704.22,6,4,27,7,"Not Specified, Student Loan, Payday Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Home Equity Loan",14.86531993,10,15.27,10,Standard,1287.55,38.3464368,12 Years and 6 Months,Yes,241.3714473,129.5153683,High_spent_Medium_value_payments,449.5351844,0,0.9589,1.3626,-0.4068,0.2104,0.1481 -0x8581,CUS_0x37cd,August,40,371-36-1042,Manager,15916.47,1317.3725,3,6,9,4,"Debt Consolidation Loan, Student Loan, Student Loan, and Personal Loan",32.66687551,22.76259835,10.05,6,_,1520.846577,24.69773443,12 Years and 11 Months,Yes,40.62841199,104.4842439,Low_spent_Medium_value_payments,266.6245941,0,-0.8663,0.1356,0.9448,0.7793,-0.7761 -0x858d,CUS_0x651d,August,34,689-46-1968,_______,40372.5,3466.375,5,4,11,4,"Personal Loan, Auto Loan, Mortgage Loan, and Auto Loan",,10,13.63,11,_,1000.07,37.64716651,9 Years and 0 Months,Yes,73.99500614,53.47795649,High_spent_Medium_value_payments,469.1645374,0,-1.5603,0.1036,0.6606,-0.2748,-0.4926 -0x8599,CUS_0x584e,August,33,#F%$D@*&8,Accountant,43600.04,,8,4,17,5,"Credit-Builder Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",17.9349189,16,,8,Standard,773.73,38.55204333,12 Years and 5 Months,Yes,178.1022658,104.2930592,High_spent_Medium_value_payments,355.6383417,0,0.4249,0.6967,1.7171,-1.4078,-1.3693 -0x85a5,CUS_0x4daf,August,55,387-41-1667,Lawyer,31438.12,2416.843333,1,4,8.288361749,0,Personal Loan,3.06968878,7,18.38,5,Good,71.40495094,38.93594245,33 Years and 4 Months,No,18.94534825,520.532781,High_spent_Medium_value_payments,384.393132,0,-0.7364,0.3379,-0.6813,-0.8673,-0.0684 -0x85b1,CUS_0x8785,August,21,786-21-8884,Doctor,175718.04,,4,4,2,1,Mortgage Loan,,11,8.62,3,Good,444.46,38.17123008,17 Years and 0 Months,No,145.952613,,Low_spent_Medium_value_payments,232.9437651,0,-0.0426,-0.4829,-0.4306,1.294,-0.5611 -0x85bd,CUS_0x2c18,August,22,057-91-9509,Mechanic,56183.79,4597.9825,6,9,22.88954781,6,"Home Equity Loan, Home Equity Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",35.73109106,18.15346592,13.22,15,_,2431.573888,27.60553216,7 Years and 5 Months,Yes,1536.794843,186.8934716,High_spent_Medium_value_payments,291.7798536,0,-0.6215,-0.115,-2.0204,-1.57,-0.8988 -0x85c9,CUS_0x8425,August,21,416-89-7777,Manager,29908.4,,1,4,5,4,"Payday Loan, Home Equity Loan, Not Specified, and Payday Loan",,9,10.21,3,Good,1045.11937,30.47609593,19 Years and 8 Months,No,54.91471649,118.2035601,High_spent_Medium_value_payments,348.1603449,0,2.1037,-1.0511,-0.5272,-0.0593,-0.3168 -0x85d5,CUS_0x9c22,August,30,552-02-1881,Developer,11203.125,,8,7,5,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",20.80245322,13,19.48,6,Standard,954.43,27.2638369,13 Years and 11 Months,Yes,35.8102866,37.9452804,Low_spent_Small_value_payments,308.103808,0,0.0376,-0.1378,0.6474,1.1269,0.8526 -0x85e1,CUS_0x977a,August,22,444-80-4079,Journalist,73713.48,6269.79,4,6,22,6,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Personal Loan",20.98474474,17.9236395,15.78,7,Standard,1609.840483,33.59898226,17 Years and 3 Months,Yes,321.9597775,120.9536638,High_spent_Large_value_payments,424.0655588,0,0.079,0.3564,0.5046,-1.3475,-1.1473 -0x85ed,CUS_0x185e,August,47,410-17-8287,Lawyer,21672.79,,0,133,1,3,"Student Loan, Mortgage Loan, and Personal Loan",0,1.165741434,2.65,3,Good,629.7942418,32.63279895,19 Years and 4 Months,No,46681,30.339014,High_spent_Large_value_payments,337.5518104,0,0.0167,-0.2584,1.3574,-0.2098,-0.6088 -0x85f9,CUS_0x4f51,August,26,977-36-4651,Writer,20488.9,,10,199,26.88954781,9,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Not Specified, Personal Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Not Specified",45.59135773,28.07179264,6.04,14,Bad,4087.238243,37.67218763,1 Years and 2 Months,Yes,1413.774462,,Low_spent_Small_value_payments,227.668146,0,0.2521,0.804,0.5005,-0.8794,-0.9337 -0x8605,CUS_0x652f,August,29,#F%$D@*&8,Journalist,69654,,6,10,26.88954781,6,"Credit-Builder Loan, Home Equity Loan, Not Specified, Not Specified, Student Loan, and Credit-Builder Loan",22.58091375,12,22.44,10,Bad,3002.69,29.34265772,12 Years and 0 Months,Yes,1500.257682,135.2301297,High_spent_Medium_value_payments,471.5321067,0,-0.3151,-0.4561,-0.4288,-1.282,1.4177 -0x8611,CUS_0x9d29,August,45,007-02-9848,Scientist,20468.75,,8,1374,20.95700519,6,"Student Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Auto Loan, and Mortgage Loan",25.1644795,16,5.59,10,Bad,3498.320954,33.62433282,3 Years and 6 Months,Yes,1387.98503,52.03416443,Low_spent_Small_value_payments,274.9033527,0,-1.711,-0.919,-0.1023,-0.0216,-0.3933 -0x861d,CUS_0xb98,August,32,483-44-1274,Doctor,85740.33,6871.0275,8,7,18,6,"Auto Loan, Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, and Not Specified",,16,11.64,9,Standard,561.74,24.19170612,11 Years and 11 Months,Yes,398.5896165,843.6204578,Low_spent_Small_value_payments,,0,0.0428,1.1147,-0.413,-0.8337,-0.0362 -0x8629,CUS_0x5f10,August,20,776-14-7936,Scientist,24238.03,,8,7,2915,1,Credit-Builder Loan,17.03538905,13,3.1,8,Standard,349.88,34.88472237,22 Years and 9 Months,No,15.19501014,212.9311817,Low_spent_Small_value_payments,275.7573915,0,-0.0802,0.7587,0.6834,1.147,1.596 -0x8635,CUS_0x2e0f,August,49,023-04-9631,Doctor,111940.64,9348.386667,3,7,5,1,Payday Loan,14.3124833,,7.69,4,Standard,598.18,32.52622227,30 Years and 11 Months,No,90.87489069,198.0371282,High_spent_Medium_value_payments,895.9266478,0,-0.0721,-1.8814,-1.984,-2.5012,0.7677 -0x8641,CUS_0x15f8,August,37,979-81-8610,Developer,69840.02,5874.001667,6,5,10,1,Payday Loan,,8,8.42,4,Good,603.2363674,40.27629316,19 Years and 2 Months,No,49.69735077,,!@9#%8,630.7955053,0,1.1446,-0.8423,-0.5507,0.6089,1.7423 -0x864d,CUS_0xa088,August,27,599-50-4906,Journalist,32012.57,,4,7,20,1,Personal Loan,24.75172915,16,13.81,5,_,87.33,32.04416691,32 Years and 10 Months,Yes,19.87326286,10000,Low_spent_Small_value_payments,404.9549232,0,0.3316,-0.6641,0.2337,0.0225,-0.5496 -0x8659,CUS_0xb276,August,46,#F%$D@*&8,Writer,64090.04,,4,7,7.288361749,2,"Auto Loan, and Debt Consolidation Loan",4.462346276,8,6.7,9,Good,353.1958287,23.71043936,19 Years and 6 Months,No,604.350994,535.6378665,High_spent_Medium_value_payments,572.3244935,0,-0.1961,-0.3951,0.2072,-0.0875,0.6256 -0x8665,CUS_0x4cf1,August,36,356-73-0844,Writer,7233.01,,10,8,30,5,"Payday Loan, Home Equity Loan, Auto Loan, Personal Loan, and Auto Loan",35.69851196,24.38796762,9.16,12,Bad,2492.572506,23.28424481,,NM,18.65990246,51.37568684,Low_spent_Small_value_payments,286.639494,0,1.2284,-0.395,-0.4094,1.2784,0.2079 -0x8671,CUS_0x7bb2,August,45,112-97-6129,Mechanic,73083.44,,8,9,28.88954781,6,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",30.06613465,17.49160184,1.48,6,Bad,2793.605548,24.94652327,6 Years and 0 Months,Yes,1555.808687,238.4578325,Low_spent_Medium_value_payments,417.832066,0,-1.0122,-1.8229,-0.558,-0.3337,0.064 -0x867d,CUS_0xc125,August,45,840-41-5035,Scientist,91869.45,7426.7875,5,4,7.288361749,2,"Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",16.29804285,,11.27,2,Good,135.37,26.51481055,31 Years and 2 Months,No,168.1982894,,Low_spent_Medium_value_payments,204.1856941,0,0.8052,0.0123,0.3711,-0.9723,0.8632 -0x8689,CUS_0x2ddd,August,23,297-78-3372,Manager,38443.42,,9,8,27,3,"Not Specified, Payday Loan, and Mortgage Loan",25.07061773,,,15,Standard,1703.99,25.92080191,5 Years and 9 Months,Yes,64.49968213,90.53928653,Low_spent_Medium_value_payments,416.8228647,0,-0.4046,-0.2483,2.0821,1.9054,-1.2777 -0x8695,CUS_0x51e0,August,18,044-07-2339,Lawyer,30355.35,2193.323151,6,3,12,4,"Home Equity Loan, Auto Loan, Personal Loan, and Mortgage Loan",,5,0.91,1,Standard,1170.159845,36.62383263,16 Years and 8 Months,No,178.7702934,11674.40846,High_spent_Small_value_payments,313.3140743,0,-1.9643,0.9412,1.1286,-1.423,-1.7323 -0x86a1,CUS_0x4503,August,53,667-99-2952,Developer,17839.11,,3,3,1,2,"Auto Loan, and Auto Loan",14.60022615,11,7.43,4,_,520.94,27.45995605,21 Years and 2 Months,No,23.58999365,,Low_spent_Small_value_payments,246.5625138,0,0.65,-0.8221,-2.369,-0.0403,-0.0493 -0x86ad,CUS_0xa153,August,31,610-15-3894,Accountant,136747.8,11484.65,4,3,6,2,"Mortgage Loan, and Auto Loan",,11,7.11,2,Standard,34.14966291,27.18191766,33 Years and 4 Months,NM,135.7637816,1013.084478,Low_spent_Medium_value_payments,374.67588,0,-0.6218,-0.536,-1.1895,-1.4063,1.6203 -0x86b9,CUS_0x408c,August,80,997-04-6413,Journalist,57107.52,4980.96,8,10,17.88954781,6,"Auto Loan, Payday Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Not Specified",,29.62989033,,9,Bad,2870.966316,37.58453752,13 Years and 9 Months,Yes,1478.191502,142.4045111,Low_spent_Large_value_payments,453.1699057,0,-0.1059,1.096,0.2367,0.2741,-0.6263 -0x86c5,CUS_0xa9ad,August,30,081-80-5156,Mechanic,7457.695,503.4745833,10,6,25.06745738,6,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",40.65076381,23,23.73,8,Bad,4960.140954,38.96423243,4 Years and 3 Months,Yes,34.63209748,44.87548834,Low_spent_Small_value_payments,234.1195846,0,1.4727,0.9649,-0.631,-0.7516,-0.0912 -0x86d1,CUS_0xbeaf,August,35,946-99-5854,Entrepreneur,12127.235,894.6029167,4,4,12.06745738,1,Home Equity Loan,34.9405625,22.73079119,6.96,5,Standard,886.430496,30.02149208,31 Years and 0 Months,Yes,5.629824417,62.59318533,Low_spent_Medium_value_payments,274.516994,0,-0.2456,0.5629,-0.0827,-0.2824,0.229 -0x86dd,CUS_0xbf43,August,18,616-52-0527,Developer,49639.2,4364.6,8,501,13,2,"Home Equity Loan, and Credit-Builder Loan",9.740447657,10,14.71,7,Standard,451.16,34.94454631,8 Years and 3 Months,Yes,45.02028607,177.630163,High_spent_Medium_value_payments,463.809551,0,0.1051,0.1756,-0.6106,-0.3018,-1.2393 -0x86e9,CUS_0x734d,August,45,#F%$D@*&8,Entrepreneur,109945.32,9122.11,3,1281,9,2,"Mortgage Loan, and Home Equity Loan",27.23548811,19,9.49,8,Standard,709.14,29.32911946,,Yes,110.4149553,,Low_spent_Large_value_payments,473.9561912,0,0.7524,0.6851,0.0025,-0.1779,-1.1861 -0x86f5,CUS_0x2c55,August,18,926-53-9407,Lawyer,13646.215,,8,4,21.06745738,3,"Auto Loan, Credit-Builder Loan, and Payday Loan",27.07017667,18,19.4,10,Standard,1154.250954,40.99814632,17 Years and 0 Months,Yes,31.80020032,,Low_spent_Large_value_payments,291.0136602,0,-2.2728,-0.7393,0.0997,-0.3,0.0021 -0x8701,CUS_0xf19,August,44,148-07-6236,Musician,76054.58,6198.881667,5,3,4,3,"Not Specified, Student Loan, and Credit-Builder Loan",4.761731704,7,5.22,7,Good,1383.11,26.59276124,,No,171.6011449,10000,High_spent_Medium_value_payments,558.0615107,0,-1.8043,1.7277,0.7971,-0.4097,0.0491 -0x870d,CUS_0x7853,August,26,329-90-9486,Writer,46010.31,3692.1925,7,8,15,3,"Credit-Builder Loan, Home Equity Loan, and Personal Loan",42.43670966,27.57338497,7.93,13,Bad,1568.497129,33.24730078,12 Years and 0 Months,NM,87.48268217,,High_spent_Small_value_payments,374.3439021,0,-0.4289,1.1894,-2.1318,-0.4693,1.3265 -0x8719,CUS_0x5aa2,August,29,121-25-0802,Entrepreneur,63788.88,,8,7,17,100,,17.04958593,11,0.68,3,Standard,1081.09,29.53034735,19 Years and 9 Months,No,0,,High_spent_Medium_value_payments,599.5736904,0,-0.8792,0.5209,0.321,-0.8968,-1.8033 -0x8725,CUS_0x133d,August,21,#F%$D@*&8,Musician,15307.26,,2,1,3,0,,0,1,4.89,3,Good,705.9,38.92848361,24 Years and 10 Months,No,0,,Low_spent_Small_value_payments,354.7082218,0,-0.1712,0.8786,0.4144,-1.053,-0.0895 -0x8731,CUS_0x349b,August,35,536-69-4106,Media_Manager,13571430,8170.53,5,4,10.28836175,2,"Student Loan, and Home Equity Loan",11.73000694,11.46273973,14.87,3,Good,606.0626293,41.70236677,25 Years and 4 Months,No,150.3072804,586.8207577,High_spent_Large_value_payments,739.8624229,0,1.5321,1.8379,-1.0127,-1.7817,0.1671 -0x873d,CUS_0x7d70,August,42,749-80-5139,Developer,14378.24,1311.186667,8,8,30.88954781,6,"Student Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Auto Loan, and Payday Loan",13.93270731,10,18.45,2241,_,1823.61,29.76612327,11 Years and 2 Months,Yes,1381.336945,84.64649158,High_spent_Small_value_payments,230.805149,0,-0.2972,0.542,-0.8567,0.2463,0.9859 -0x8749,CUS_0xcb9,August,32,879-60-3713,_______,22050.56,,5,4,12,1,Home Equity Loan,,13,17.75,9,Standard,33.25588636,27.76967925,32 Years and 10 Months,Yes,148.4676519,50.12904255,High_spent_Large_value_payments,363.9777255,0,0.2446,0.8914,0.1292,-0.6857,-0.1212 -0x8755,CUS_0xc00a,August,33,240-36-9482,Scientist,36926.92,,9,5,19.06745738,2,"Mortgage Loan, and Debt Consolidation Loan",,16,-0.78,11,Bad,2219.560954,36.00711473,14 Years and 3 Months,Yes,47.07890401,169.427958,Low_spent_Medium_value_payments,344.8971834,0,0.9839,0.8145,1.4564,-1.2255,-0.6655 -0x8761,CUS_0x5fd3,August,39,884-11-5710,Lawyer,15266.8,,5,6,18.06745738,7,"Student Loan, Personal Loan, Student Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Auto Loan",,19,14.24,9,Standard,1101.250954,38.28700826,16 Years and 8 Months,NM,79.94678082,65.6223618,Low_spent_Small_value_payments,217.7339028,0,-0.6495,-0.3284,0.8154,-0.9505,0.6154 -0x876d,CUS_0x506c,August,49,041-08-8352,Musician,27268.7,,3,5,5,0,,10.39479028,9,6.7,4,Standard,1446.21,38.64566656,31 Years and 8 Months,Yes,144.1794554,164.7174808,Low_spent_Small_value_payments,360.8216859,0,-1.2706,0.1236,-3.6102,0.1389,0.5008 -0x8779,CUS_0x65e1,August,20,498-47-7214,Accountant,34642.94,3180.911667,3,5,7,3,"Mortgage Loan, Credit-Builder Loan, and Payday Loan",21.51699,20,10.84,2,_,1079.65,22.76495502,26 Years and 11 Months,Yes,49.68527131,141.0166419,High_spent_Small_value_payments,387.3892534,0,-0.3208,0.7536,-0.0032,-1.1064,0.5324 -0x8785,CUS_0x9ed4,August,22,853-99-1297,Scientist,32493.04,,3,7,10.28836175,4,"Personal Loan, Mortgage Loan, Personal Loan, and Payday Loan",,9,10.71,8,Good,412.23,37.154249,27 Years and 11 Months,No,65.75647977,10419.93746,Low_spent_Large_value_payments,234.1220739,0,0.1898,0.3732,0.2025,-0.0196,-0.9142 -0x8791,CUS_0x376e,August,48,084-31-1205,Mechanic,104255.67,8571.9725,6,3,18,3,"Payday Loan, Credit-Builder Loan, and Auto Loan",8.152415187,8,2.46,6,_,992.62,40.30257392,15 Years and 10 Months,No,133.9910669,484.4252824,High_spent_Small_value_payments,498.7809007,0,0.2772,-0.8608,-1.6841,1.0409,-1.7746 -0x879d,CUS_0x4e03,August,34,527-33-9915,Media_Manager,161674.84,13667.90333,1,5,8,4,"Home Equity Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",2.355749534,3.390204529,7.01,4,_,1014.732336,25.31041334,16 Years and 5 Months,No,451.3280961,960.9851913,!@9#%8,234.4770459,0,0.0725,-0.8793,-0.8765,-0.8762,0.455 -0x87a9,CUS_0x6c0f,August,25,#F%$D@*&8,Media_Manager,48331.59,3847.419395,8,9,33.95700519,6,"Payday Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Student Loan, and Auto Loan",36.58978973,22,15.7,9,Bad,3218.569309,38.20530454,12 Years and 2 Months,Yes,1780.521461,,Low_spent_Small_value_payments,5.543434514,0,-0.0653,1.8321,0.7653,1.2578,-0.2256 -0x87b5,CUS_0xb46e,August,21,816-14-8532,Doctor,81744.76,6948.063333,10,6,15,7,"Not Specified, Payday Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Student Loan, and Student Loan",43.4679803,22.56787696,18.45,17,_,2468.390784,34.84798595,8 Years and 6 Months,Yes,434.9673574,10000,Low_spent_Medium_value_payments,,0,0.4438,0.3588,-0.0577,-1.1719,-1.1299 -0x87c1,CUS_0xc0f8,August,42,346-22-6698,Mechanic,134439.4,11030.28333,0,3,1.288361749,794,"Student Loan, and Auto Loan",,10,11.57,4,Good,199.96,38.48921351,23 Years and 5 Months,No,158.044048,,High_spent_Large_value_payments,1028.086132,0,-0.2469,-0.289,0.22,-0.4028,1.5176 -0x87cd,CUS_0xbf82,August,80,768-22-1294,Developer,122618.16,10062.18,3,7,348,1,Not Specified,,21,9.14,0,Standard,664.37,44.06259088,31 Years and 10 Months,No,62.38010038,216.7098077,High_spent_Small_value_payments,987.1280919,0,-0.7005,0.4787,-0.402,-0.2281,-1.3337 -0x87d9,CUS_0x3c21,August,18,599-76-2938,Teacher,30519.74,,10,9,21.95700519,6,"Debt Consolidation Loan, Payday Loan, Not Specified, Mortgage Loan, Payday Loan, and Personal Loan",22.68372876,,25.5,10,Bad,5015.930954,26.63161569,1 Years and 0 Months,NM,1527.935923,,Low_spent_Small_value_payments,240.7288479,0,0.7974,0.3769,-0.8571,-0.0078,-1.2689 -0x87e5,CUS_0x5a6d,August,21,954-02-4606,Scientist,39891.42,3246.285,4,4,22,6,"Auto Loan, Student Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",24.91783178,18.74218182,7.69,11,_,2660.556288,23.05423267,6 Years and 10 Months,Yes,195.2203691,,High_spent_Medium_value_payments,321.353299,0,0.2077,-0.1541,-0.2058,-0.5692,-0.3275 -0x87f1,CUS_0xa299,August,45,145-74-4512,Journalist,78569.9,6667.491667,3,5,2,0,,11.67330512,10,8.76,6,Good,1316.34,35.89579985,,No,0,156.4653981,High_spent_Large_value_payments,750.2837686,0,-0.851,0.6939,2.0621,0.541,-1.1652 -0x87fd,CUS_0x8bd4,August,56,652-47-0987,Mechanic,106251.21,8805.2675,0,4,7,3,"Mortgage Loan, Payday Loan, and Not Specified",,2,6.39,3,Good,513.1,36.64801394,28 Years and 11 Months,No,245.5260121,,High_spent_Large_value_payments,684.0545598,0,-1.061,0.4114,0.0253,0.293,0.9074 -0x8809,CUS_0xa0b6,August,44,990-17-6411,Writer,63354.36,5421.53,6,6,10,100,Not Specified,,16,12.2,7,_,895.41,29.09668489,17 Years and 4 Months,NM,27.55391999,272.5579871,Low_spent_Large_value_payments,512.0410929,0,0.2894,0.116,-1.1173,-0.7158,-1.128 -0x8815,CUS_0x545e,August,45,484-23-8650,Manager,23973.16,,7,7,10,2,"Mortgage Loan, and Student Loan",17.96613887,14,13.07,11,Standard,874.39,36.10850235,32 Years and 9 Months,Yes,30.13805346,40.07544313,High_spent_Large_value_payments,373.4628367,0,0.1552,-0.3292,1.6606,-1.0278,-0.4039 -0x8821,CUS_0xa2c5,August,38,216-22-6346,Teacher,10150.185,,6,7,29.06745738,7,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Not Specified, and Student Loan",,15,7.21,14,Bad,2897.350954,27.00482568,10 Years and 4 Months,Yes,30.90755321,84.6889207,Low_spent_Medium_value_payments,234.5681131,0,-0.3732,0.6461,2.1619,-1.3932,-0.4556 -0x882d,CUS_0x983a,August,53,866-48-7201,Teacher,74213.52,6072.087064,5,6,6,0,,9.973679086,9,5.65,3,Standard,180.144307,33.59344181,18 Years and 5 Months,No,333.372936,,High_spent_Medium_value_payments,636.5684145,0,-0.9662,1.4815,-0.6787,1.8972,0.7583 -0x8839,CUS_0x3a94,August,32,642-07-8250,Mechanic,22320.13,,5,6,19.06745738,2,"Credit-Builder Loan, and Not Specified",,11,18.5,7,Standard,1649.720954,38.39154185,20 Years and 0 Months,Yes,30.85524782,236.9528437,Low_spent_Small_value_payments,210.5727039,0,0.2357,0.252,0.3873,0.1357,-0.9278 -0x8845,CUS_0x5bd3,August,35,172-11-9220,Teacher,17646.25,,4,6,14,4,"Student Loan, Payday Loan, Auto Loan, and Not Specified",24.79821824,17,18.7,8,Standard,414.4,39.71588014,7 Years and 4 Months,Yes,40.65314276,,Low_spent_Medium_value_payments,270.8989647,0,1.3807,0.7176,-1.9509,2.2064,0.0693 -0x8851,CUS_0xbfa8,August,80,349-13-3796,Doctor,16210.85,,6,3,6,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",,21,2.49,5,_,188.36,25.8367738,29 Years and 6 Months,No,30.7389485,,Low_spent_Medium_value_payments,314.0954358,0,-0.2872,-0.2579,0.219,1.0861,1.1319 -0x885d,CUS_0xaa3b,August,36,940-15-6881,Accountant,31892.18,,5,3,20,2,"Credit-Builder Loan, and Auto Loan",28.22534142,21,4.14,5,Standard,507.01,24.80060058,,No,38.144027,,High_spent_Medium_value_payments,432.9022807,0,0.1334,1.0557,-0.1328,0.7357,2.0211 -0x8869,CUS_0x41f0,August,18,803-57-7987,Teacher,18507,1561.25,6,3,14,4,"Debt Consolidation Loan, Payday Loan, Not Specified, and Personal Loan",,13,7.07,5,_,1814.83,36.49618462,10 Years and 3 Months,Yes,34.03914632,71.64193475,Low_spent_Medium_value_payments,330.4439189,0,0.8828,-0.4843,-0.4184,1.3799,-0.366 -0x8875,CUS_0x5e3e,August,31,956-17-1632,_______,29020.27,,2,4,7,1,Home Equity Loan,5.165072865,7.840448628,8.29,3,_,586.2952579,24.60335705,32 Years and 0 Months,No,12.1274433,174.3939158,Low_spent_Small_value_payments,349.1142242,0,-2.4083,-1.4624,0.4344,-0.1589,1.8971 -0x8881,CUS_0x87d4,August,28,135-14-9967,Entrepreneur,91459.48,7076.774926,8,6,20,4,"Not Specified, Home Equity Loan, Not Specified, and Debt Consolidation Loan",26.09201814,18,11.79,3,Standard,1225.407509,41.22821328,29 Years and 11 Months,No,683.4115255,,High_spent_Large_value_payments,727.2322649,0,-0.9954,-0.2518,-0.8633,-0.0991,0.7573 -0x888d,CUS_0x24e4,August,37,#F%$D@*&8,Accountant,43108.4,3362.366667,3,6,8,0,,,14,11.49,5,Good,779.1912027,34.54781048,28 Years and 8 Months,No,0,,High_spent_Large_value_payments,510.2480972,0,2.3348,-0.3875,0.5009,-0.233,1.4083 -0x8899,CUS_0xbc1c,August,36,144-47-3324,Media_Manager,16769.58,,6,5,29.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",,18,8.87,11,Bad,2192.820954,41.13865034,7 Years and 6 Months,Yes,63.5484486,130.333056,Low_spent_Medium_value_payments,192.9447075,0,-0.229,0.723,-0.3039,0.9604,-0.8781 -0x88a5,CUS_0x8bb9,August,22,024-41-0864,Developer,38477.4,3374.45,9,8,22,3,"Credit-Builder Loan, Personal Loan, and Home Equity Loan",19.61785274,15,9.21,12,_,2343.6,30.20644801,12 Years and 8 Months,Yes,89.53664269,120.6394254,High_spent_Small_value_payments,387.2689319,0,-0.6538,0.3553,0.164,0.4213,0.175 -0x88b1,CUS_0x4c7d,August,20,165-68-6225,Manager,99194.19,,3,6,7,2,"Debt Consolidation Loan, and Home Equity Loan",19.67189672,13,18.75,11,_,573.52,34.49320038,9 Years and 5 Months,Yes,109.2107085,514.5329131,Low_spent_Medium_value_payments,509.2746284,0,0.5623,-0.292,-0.3821,0.1891,-0.7693 -0x88bd,CUS_0x1eff,August,29,788-07-1050,Developer,12410.005,,3,5,12.06745738,7,"Payday Loan, Home Equity Loan, Not Specified, Not Specified, Payday Loan, Mortgage Loan, and Payday Loan",27.87477047,19,19.5,6,Standard,1510.290954,27.06443529,19 Years and 0 Months,Yes,41.75602566,66.63673757,Low_spent_Small_value_payments,264.6036571,0,0.9936,1.291,-0.1596,-0.6073,-1.1795 -0x88c9,CUS_0x8669,August,47,247-85-1293,_______,170759.4,,2,1,9.288361749,2,"Home Equity Loan, Not Specified, and Student Loan",16.12150326,,3.15,8,_,12.65,33.74258934,26 Years and 2 Months,No,358.8601966,681.3761704,High_spent_Medium_value_payments,1024.496094,0,0.231,-0.0604,0.9367,1.9909,-1.9781 -0x88d5,CUS_0x61d4,August,22,554-77-7865,_______,94913.16,,7,5,10,3,"Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",10.40176112,8.112550374,1.51,1475,Standard,850.5595345,36.39570603,21 Years and 6 Months,No,131.998346,156.6098824,High_spent_Small_value_payments,784.2347717,0,-1.6914,-1.9311,0.0478,0.8057,-1.0577 -0x88e1,CUS_0x66df,August,41,584-61-3950,Lawyer,59977.98,,8,10,28.06745738,100,"Mortgage Loan, Payday Loan, Payday Loan, Home Equity Loan, Not Specified, Personal Loan, and Home Equity Loan",,20,19.17,10,Bad,4695.620954,41.09575576,7 Years and 9 Months,Yes,251.9325109,35.54398766,High_spent_Large_value_payments,442.9197135,0,0.1888,1.4063,1.4927,0.3579,-0.5511 -0x88ed,CUS_0xbabe,August,25,547-62-1545,Mechanic,19966.51,1768.875833,8,8,32.95700519,7,"Payday Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Credit-Builder Loan",,28.21560263,9.18,14,Bad,5598.406601,28.58231918,11 Years and 9 Months,Yes,1399.183516,110.609268,High_spent_Small_value_payments,206.0444305,0,0.4062,-0.183,-0.4051,-1.1631,-0.1069 -0x88f9,CUS_0x6b2,August,53,675-07-5555,Engineer,75893.07,,6,5,1,0,,20.70854234,16,3.37,1,Good,451.8720753,31.688561,19 Years and 10 Months,No,0,318.0745701,High_spent_Small_value_payments,611.044778,0,1.0873,-1.9154,-0.1219,-0.1629,1.2059 -0x8905,CUS_0x930d,August,38,878-21-7485,_______,69312.12,5956.01,8,6,6.288361749,4,"Mortgage Loan, Auto Loan, Payday Loan, and Student Loan",12.81829125,,8.43,8,Standard,192.6484557,27.09551588,16 Years and 8 Months,Yes,220.1614408,653.0867768,High_spent_Small_value_payments,402.2902435,0,-0.3198,0.1071,-0.4245,0.1844,0.055 -0x8911,CUS_0xb87,August,45,717-04-9189,Entrepreneur,31564.72,,6,6,13,4,"Not Specified, Home Equity Loan, Not Specified, and Personal Loan",19.10475288,17,15.99,6,Standard,1077.62,25.95448242,16 Years and 9 Months,Yes,73.39786305,20.78601434,High_spent_Large_value_payments,408.7554559,0,0.4794,2.7111,-0.4147,-0.0304,-2.9885 -0x891d,CUS_0x857e,August,21,251-46-1218,Entrepreneur,52410.92,4479.576667,3,4,5.288361749,4,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Personal Loan",20.93305416,18,8.63,4,Standard,361.32,36.64185367,18 Years and 0 Months,Yes,92.60129053,,Low_spent_Small_value_payments,187.9662371,0,0.3879,0.5488,0.0048,-1.0273,0.2108 -0x8929,CUS_0xacb7,August,28,420-47-3027,Developer,16054.15,1196.845833,8,5,30,8,"Payday Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",,21.52919179,27.12,14,Bad,4611.364254,33.27547982,10 Years and 5 Months,Yes,66.92608582,87.56819457,Low_spent_Medium_value_payments,245.1903029,0,-0.2925,-1.1359,-1.3527,-1.1632,-0.3407 -0x8935,CUS_0x97ca,August,25,822-60-2559,Developer,20616.95,,10,6,16.06745738,5,"Mortgage Loan, Home Equity Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,30.25549673,16.89,6,Bad,2148.461059,23.73487267,8 Years and 0 Months,Yes,48.0956134,70.53377488,Low_spent_Small_value_payments,292.2582404,0,0.9851,-1.253,1.3414,1.1381,1.9935 -0x8941,CUS_0x3adb,August,27,160-10-4534,Architect,103351.8,8465.65,3,7,8,2,"Personal Loan, and Student Loan",,9.256652881,10.03,8,Standard,1400.113627,29.53270436,8 Years and 10 Months,Yes,140.8582359,,Low_spent_Medium_value_payments,270.2141844,0,-0.4971,1.0709,1.3098,0.034,0.0479 -0x894d,CUS_0x2ae9,August,41,#F%$D@*&8,Engineer,41073.26,,8,10,26.06745738,3,"Home Equity Loan, Auto Loan, and Home Equity Loan",32.34147239,15,6.22,13,Bad,2669.730954,34.46565945,12 Years and 11 Months,Yes,87.32680436,69.38787434,High_spent_Medium_value_payments,435.3422,0,-0.3979,-0.4531,-0.6522,1.1451,2.0215 -0x8959,CUS_0x19d4,August,32,999-95-7259,_______,22751.59,1759.965833,7,5,12,4,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",20.83480006,17.02435564,6.75,3,_,1593.920582,26.18023249,20 Years and 10 Months,No,38.35028233,89.80981177,Low_spent_Medium_value_payments,327.8364892,0,0.4922,0.254,1.4597,1.385,1.4571 -0x8965,CUS_0xbe03,August,27,831-77-3712,Manager,62325.9,5033.970428,3,7,9,100,"Student Loan, Credit-Builder Loan, Payday Loan, and Student Loan",,9,12.92,4,Good,1123.592647,38.84130753,24 Years and 3 Months,NM,456.0519132,76.9913207,High_spent_Large_value_payments,501.2992488,0,-0.027,-1.9471,-0.0537,-1.2895,0.1119 -0x8971,CUS_0x3214,August,30,229-85-4742,Architect,37550.74,2930.228333,0,5,8.288361749,2,"Student Loan, and Debt Consolidation Loan",0,0,7.96,0,Good,379.1934376,32.87260689,22 Years and 11 Months,No,61.35582984,,Low_spent_Small_value_payments,313.139964,0,-0.4425,0.1899,-1.1122,0.1761,-0.3777 -0x897d,CUS_0xab0f,August,40,118-42-6441,Engineer,60031.96,5148.663333,10,9,23.95700519,9,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",55.98971037,29.87099838,28.85,6,Bad,4009.047786,31.50494991,,Yes,1585.651518,190.516945,Low_spent_Medium_value_payments,297.6475011,0,-0.0707,0.3997,-1.1811,0.3953,0.4502 -0x8989,CUS_0x5734,August,31,484-76-3179,Developer,135883,,6,7,7.288361749,0,Not Specified,10.83556567,10,16.73,2,Standard,122.4659039,26.69562169,23 Years and 5 Months,Yes,109.0751641,1283.586841,Low_spent_Small_value_payments,552.0478739,0,-0.7829,0.3557,-2.3028,0.0769,1.1527 -0x8995,CUS_0x695c,August,80,#F%$D@*&8,Teacher,67812.74,5821.061667,3,3,8,0,,,,6.32,8,Good,1201.316053,27.65162811,26 Years and 9 Months,No,0,566.7104293,Low_spent_Medium_value_payments,354.4340413,0,-0.4215,-0.8382,1.5019,-0.0873,-0.8409 -0x89a1,CUS_0xbaf8,August,55,572-88-7813,Manager,105667.62,8668.635,7,3,15,4,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",18.04243688,12,6.87,876,Standard,511.96,33.91542578,26 Years and 6 Months,No,318.5010526,178.4158204,High_spent_Large_value_payments,609.946627,0,1.1927,0.8679,-0.4538,-0.8935,-0.6348 -0x89ad,CUS_0x84f5,August,26,348-47-1523,Media_Manager,81462.18,7048.515,6,7,19,4,"Student Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",16.43462887,14,10.66,8,Standard,1200.63,25.61054326,31 Years and 6 Months,Yes,165.8188604,345.9886897,Low_spent_Medium_value_payments,473.04395,0,-1.2469,-0.6928,-1.5509,0.9368,0.0265 -0x89b9,CUS_0xa0dc,August,49,596-48-5931,Mechanic,19271.825,,0,4,6.288361749,0,,7.408765217,9,8.51,8,Good,101.1337059,36.71050585,18 Years and 4 Months,No,0,485.4901275,High_spent_Small_value_payments,391.3269956,0,0.2653,0.2349,1.6217,0.2597,3.6682 -0x89c5,CUS_0x27a3,August,40,#F%$D@*&8,Journalist,31357.42,,0,4,8,4,"Credit-Builder Loan, Student Loan, Mortgage Loan, and Not Specified",7.247661267,10,4.48,3,Good,1196.115691,26.68083583,28 Years and 5 Months,No,80.5133837,91.65961695,High_spent_Medium_value_payments,379.6488083,0,1.596,-0.4508,0.674,-1.8192,1.5609 -0x89d1,CUS_0x1139,August,32,952-67-5462,Scientist,94991.82,8144.985,7,6,13,0,,,16,24.45,6,_,1320.61,39.28777693,26 Years and 5 Months,Yes,0,105.98186,High_spent_Large_value_payments,948.51664,0,-0.3035,0.2389,-0.8095,-0.5504,-0.4432 -0x89dd,CUS_0x2c9f,August,18,469-09-7205,Teacher,52982.07,4344.1725,6,8,32.95700519,8,"Payday Loan, Payday Loan, Not Specified, Personal Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",29.67872878,15,18.37,8,_,4174.750954,33.80289317,8 Years and 11 Months,Yes,1595.125342,76.67527022,High_spent_Large_value_payments,281.5662689,0,0.988,1.4169,1.59,-0.1631,0.4402 -0x89e9,CUS_0x4423,August,80,675-66-2016,Scientist,15305.23,,8,5,3,4,"Auto Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",26.06463779,22.15441643,10.57,0,_,1568.382214,25.13851724,31 Years and 5 Months,No,189.9448731,53.40867269,Low_spent_Large_value_payments,299.9832878,0,1.3771,-1.3996,-0.6375,-1.2022,-0.3255 -0x89f5,CUS_0x4849,August,23,021-95-9989,Architect,15987.51,1155.2925,10,6,30,7,"Home Equity Loan, Not Specified, Not Specified, Student Loan, Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",44.79017694,25,21.98,10,Bad,2698.66,27.00784387,1 Years and 4 Months,Yes,67.96593726,57.47876006,Low_spent_Small_value_payments,280.0845527,0,-1.3404,1.0627,-0.9252,-0.3261,1.6662 -0x8a01,CUS_0x69c7,August,31,600-22-2209,Architect,17653.7,,10,8,20.88954781,6,"Personal Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",31.82622497,23.66084354,-1.95,13,Bad,2118.04405,36.47861125,13 Years and 4 Months,Yes,1377.684722,84.45349594,Low_spent_Small_value_payments,275.3458675,0,-0.8302,1.5881,0.1869,-1.4101,-1.0345 -0x8a0d,CUS_0x60d5,August,50,329-64-3575,Doctor,38217.6,3204.8,6,6,13,2,"Not Specified, and Auto Loan",18.7942046,,6.29,5,Standard,448.54,27.90713303,22 Years and 8 Months,No,57.88171693,111.3169965,High_spent_Medium_value_payments,401.2812866,0,-0.4836,-0.1665,-1.1506,0.1009,0.5956 -0x8a19,CUS_0xa9f5,August,26,739-75-2776,Teacher,15088.35,,7,8,30.06745738,3,"Credit-Builder Loan, Auto Loan, and Home Equity Loan",,21.81019015,8.88,,Bad,2524.797006,27.42003235,16 Years and 0 Months,Yes,37.10487867,102.2618442,Low_spent_Small_value_payments,247.0492391,0,-2.0218,0.8406,-0.2855,-0.9043,-1.0898 -0x8a25,CUS_0x68d8,August,18,#F%$D@*&8,Media_Manager,19784.23,,7,9,20.06745738,5,"Mortgage Loan, Payday Loan, Payday Loan, Student Loan, and Home Equity Loan",30.82606347,16,3.63,16,Bad,1492.370954,25.20228579,17 Years and 11 Months,Yes,66.81748257,16.44642199,High_spent_Large_value_payments,316.6843908,0,-1.4166,-3.0584,1.4946,-0.7163,1.5142 -0x8a31,CUS_0x46d5,August,26,416-55-5307,Doctor,14560.52,,6,8,30.88954781,9,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",,23,16.99,7,Bad,3831.31,32.45872808,8 Years and 9 Months,Yes,1391.21572,20.89375595,!@9#%8,262.5981095,0,-0.8173,-0.7477,-0.3422,1.1026,0.4512 -0x8a3d,CUS_0x18f7,August,41,498-86-5960,Musician,72508.86,5920.405,6,7,20,4,"Personal Loan, Home Equity Loan, Student Loan, and Mortgage Loan",16.53629617,14,8.74,0,Standard,1057.79,31.03648969,32 Years and 5 Months,No,171.6244797,,High_spent_Medium_value_payments,472.1000692,0,-0.1202,-0.7586,1.4955,0.3436,1.4104 -0x8a49,CUS_0x9a70,August,31,#F%$D@*&8,Mechanic,15264.39,1383.0325,1,4,5,0,,11.26726957,10,0.95,2,_,104.07,22.61820775,,No,0,56.26703626,!@9#%8,372.0362137,0,-0.305,-0.0361,-0.0216,0.4687,-1.2198 -0x8a55,CUS_0xb0f7,August,56,252-52-6324,Musician,30678.73,2615.560833,8,4,11,3,"Personal Loan, Home Equity Loan, and Auto Loan",,,1.84,5,Standard,1484.42,36.35920536,18 Years and 3 Months,Yes,69.33783255,129.1089051,Low_spent_Small_value_payments,353.1093457,0,2.1269,0.9031,2.3626,-2.2822,1.6529 -0x8a61,CUS_0xab2,August,25,979-70-2397,_______,41751.65,3442.304167,5,1,1.288361749,0,Debt Consolidation Loan,,,-3.68,6,Good,279.17,24.29592709,16 Years and 11 Months,No,32.80100638,554.3180247,!@9#%8,467.0488466,0,-0.5655,-1.6255,-0.345,-2.5558,-0.0926 -0x8a6d,CUS_0x21dc,August,48,241-53-8475,Developer,130125.04,10871.75333,5,2,11,2,"Mortgage Loan, and Debt Consolidation Loan",0,0,3.82,3,Good,1061.775612,30.53285251,16 Years and 6 Months,No,204.2856498,,High_spent_Large_value_payments,1009.323141,0,1.2362,0.6501,0.1442,0.781,-0.7294 -0x8a79,CUS_0x69f0,August,50,669-75-6091,Accountant,86638.52,7333.876667,1,4,3.288361749,4,"Debt Consolidation Loan, Personal Loan, Auto Loan, and Student Loan",10.87882346,11,5.37,1,_,892.1064298,32.54271271,27 Years and 8 Months,NM,241.8134483,494.4027251,High_spent_Large_value_payments,666.3667573,0,0.5231,-0.3575,1.6272,0.6122,0.2977 -0x8a85,CUS_0x3b2e,August,18,527-96-0772,_______,17609.57,1442.464167,6,10,17.06745738,5,"Mortgage Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",17.76398095,9,16.39,11,Standard,2837.310954,36.36422877,15 Years and 2 Months,Yes,61.70650327,60.5692986,Low_spent_Medium_value_payments,275.2503268,0,-2.3381,-0.4594,0.1179,1.4971,0.2084 -0x8a91,CUS_0x2595,August,38,508-13-1248,Writer,14688.4,,7,6,8,3,"Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,15,14.68,5,Standard,840.9336175,23.63467519,11 Years and 6 Months,Yes,24.35419767,55.28575623,High_spent_Small_value_payments,291.961683,0,-0.8087,-0.3283,0.6426,-0.2392,0.4195 -0x8a9d,CUS_0x70b,August,46,729-67-4171,Entrepreneur,109945.32,9287.11,8,3,11,100,,21.60976497,14,4.31,3,Standard,480.83,39.10133916,21 Years and 4 Months,No,0,214.1441949,High_spent_Medium_value_payments,964.5668051,0,-0.276,1.742,0.08,-0.362,0.9308 -0x8aa9,CUS_0xc6be,August,22,111-98-2664,Entrepreneur,44962.88,,3,2,10.28836175,0,Student Loan,7.452160432,8,9.04,0,Good,565.48,29.4015773,20 Years and 10 Months,No,18.86286845,744.0276845,Low_spent_Small_value_payments,299.2375747,0,1.1534,-0.4848,-0.3922,0.2411,0.8582 -0x8ab5,CUS_0x96a6,August,50,973-70-9064,Lawyer,90371.01,,3,4,2.288361749,4,"Not Specified, Credit-Builder Loan, Student Loan, and Credit-Builder Loan",2.050041963,5,7.26,8,_,850.5752593,38.0969329,25 Years and 5 Months,No,254.7579659,503.9938602,High_spent_Large_value_payments,671.6398858,0,1.5383,-0.2909,-0.187,0.121,0.6592 -0x8ac1,CUS_0x8b7a,August,26,809-40-8569,Scientist,8928.69,,9,10,16,5,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Auto Loan, and Not Specified",34.35784941,17.04044262,18.46,10,Bad,1664.297622,33.62945072,11 Years and 6 Months,Yes,27.30559528,44.58711391,Low_spent_Medium_value_payments,268.2130408,0,-0.5187,0.1853,0.7289,-0.7818,0.7517 -0x8acd,CUS_0x5534,August,40,246-34-3138,Developer,23200.82,,3,7,5,0,,27.89936566,18,12.73,6,Standard,987.07,28.00959701,17 Years and 11 Months,Yes,0,60.73967493,!@9#%8,397.0004917,0,0.8316,-0.9169,-0.1001,0.0673,-1.5768 -0x8ad9,CUS_0xa6f1,August,80,499-80-5776,_______,69865.22,5775.101667,3,294,7,0,,14.70480677,11,14.28,2,Standard,656.7,28.92350306,29 Years and 5 Months,Yes,0,364.6117878,Low_spent_Small_value_payments,502.8983788,0,-0.5191,0.3757,0.1663,-0.4895,1.6532 -0x8ae5,CUS_0xad75,August,27,164-86-6702,Teacher,14388.77,1060.064167,4,5,16,100,"Credit-Builder Loan, Auto Loan, and Home Equity Loan",10.14783096,12.08247161,18.17,9,Standard,2031.661316,31.23240051,6 Years and 0 Months,Yes,30.0950708,101.7267095,Low_spent_Small_value_payments,264.1846364,0,-0.3588,-1.596,0.0619,-0.9483,-0.2432 -0x8af1,CUS_0x8966,August,60,824-88-9636,Mechanic,103187.22,,0,3,5.288361749,0,,,8,4.07,4,_,717.4234089,41.54229503,22 Years and 6 Months,No,48352,11775.62722,High_spent_Medium_value_payments,910.7514833,0,0.0649,-0.2735,-1.737,0.5417,0.3049 -0x8afd,CUS_0x286a,August,18,#F%$D@*&8,Accountant,83218,6966.833333,8,6,18,5,"Auto Loan, Mortgage Loan, Not Specified, Student Loan, and Credit-Builder Loan",34.07590513,25,12.84,9,Bad,2159.69,38.33964324,11 Years and 4 Months,Yes,246.5636447,256.9134673,High_spent_Medium_value_payments,443.2062214,0,1.2224,0.6218,1.9494,-0.0606,-1.3319 -0x8b09,CUS_0x1b62,August,27,564-56-0485,Developer,8805.955,,6,5,19,4,"Credit-Builder Loan, Not Specified, Student Loan, and Credit-Builder Loan",18.32585916,,13.04,10,Standard,532.166161,27.77687691,10 Years and 2 Months,Yes,23.57735329,,Low_spent_Large_value_payments,257.5780155,0,0.8493,-0.2674,1.1932,1.0089,0.2952 -0x8b15,CUS_0x3a26,August,33,421-39-6944,Architect,83003.64,,8,8,26.88954781,6,"Student Loan, Personal Loan, Student Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,22,26.24,10,_,4171.563071,31.63971911,13 Years and 2 Months,Yes,2192.969556,575.5892528,Low_spent_Large_value_payments,60.41382285,0,-0.7031,-0.7739,-0.0173,0.678,1.3837 -0x8b21,CUS_0x3d71,August,38,133-11-8146,Media_Manager,128674.44,10551.87,1,7,2,0,,0,2.424573305,8.49,4,_,1035.387957,39.55415639,24 Years and 6 Months,No,0,593.9893053,Low_spent_Medium_value_payments,741.1976947,0,0.6415,0.0665,0.1367,-0.3419,1.6143 -0x8b2d,CUS_0xf3e,August,43,690-21-5356,Journalist,9846.55,,5,6,16,1,Credit-Builder Loan,14.253295,11.58753091,13.14,8,Standard,622.892822,34.47335871,18 Years and 9 Months,Yes,5.218466359,60.07997802,Low_spent_Small_value_payments,294.556139,0,-1.2465,-1.5945,-0.8359,-0.9806,-0.8866 -0x8b39,CUS_0x10c0,August,39,658-53-1756,Architect,49454.13,,8,5,23,2,"Payday Loan, and Auto Loan",,27.5304366,4.95,8,Bad,1573.922677,28.97842663,13 Years and 4 Months,NM,73.34635945,,Low_spent_Medium_value_payments,459.0780762,0,-1.0491,1.2291,0.9022,0.5502,0.9376 -0x8b45,CUS_0x3846,August,29,351-48-9736,Teacher,18019.14,,5,5,19,4,"Credit-Builder Loan, Auto Loan, Personal Loan, and Mortgage Loan",16.14026363,,18.17,8,Standard,1475.32,35.93877808,18 Years and 3 Months,NM,55.05032975,112.9436657,Low_spent_Small_value_payments,296.2655045,0,-0.3164,0.0231,0.5839,-1.3602,-0.5225 -0x8b51,CUS_0x79dd,August,21,432-18-9218,Teacher,73409.8,6202.483333,7,9,18,3,"Auto Loan, Student Loan, and Auto Loan",15.08265883,11,18.13,10,Standard,2529.51,24.30089964,18 Years and 9 Months,Yes,91.94082317,770.5660993,Low_spent_Small_value_payments,47.74141088,0,0.2484,0.7045,-0.7618,-0.6815,0.1512 -0x8b5d,CUS_0xc113,August,28,993-82-1651,Mechanic,65397.5,5287.791667,6,6,18,0,,13.6952617,11,3.76,7,Standard,1392.76,33.93453488,31 Years and 6 Months,Yes,0,658.3130568,Low_spent_Small_value_payments,160.4661099,0,0.0474,0.544,-0.2097,-1.1418,0.7948 -0x8b69,CUS_0x47e8,August,49,835-63-0464,Entrepreneur,39131.02,3001.918333,2,6,8.288361749,2,"Home Equity Loan, Home Equity Loan, and Auto Loan",0.147147838,4.507569508,0.8,6,_,48.05954971,37.81870982,,No,52.4099686,764.701255,Low_spent_Small_value_payments,193.0180707,0,-0.1693,-2.1143,-0.0564,-0.3012,0.6961 -0x8b75,CUS_0x1afd,August,35,662-00-3287,Teacher,100191.36,8058.28,4,7,6,2,"Student Loan, and Mortgage Loan",,21,13.61,,Standard,496.71,38.11465194,20 Years and 3 Months,No,145.5814448,274.7410649,Low_spent_Large_value_payments,655.5054902,0,2.0401,-0.3209,0.1267,-0.6745,-0.3878 -0x8b81,CUS_0xacaf,August,31,449-32-0792,Scientist,19431.83,,3,6,8,4,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Payday Loan",11.93773484,9,11.63,3,Standard,865.23,30.08891782,30 Years and 0 Months,Yes,49.3823642,37.08771157,High_spent_Small_value_payments,353.2618409,0,0.6851,-1.2882,-1.3903,0.5407,0.4412 -0x8b8d,CUS_0x5a72,August,26,551-70-7456,Architect,58144.56,,6,3,8,3,"Credit-Builder Loan, Not Specified, and Payday Loan",16.1236619,11.3632618,18.84,1726,Standard,2756.71904,30.11461839,19 Years and 0 Months,Yes,75.29088273,109.1520427,!@9#%8,544.6950745,0,0.0216,0.8196,1.116,1.9551,0.9912 -0x8b99,CUS_0x56b2,August,24,505-20-4361,Mechanic,30466.74,,6,4,15,7,"Credit-Builder Loan, Personal Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Auto Loan, and Not Specified",14.2257355,,10.53,7,Standard,670.48,27.96073325,13 Years and 0 Months,NM,114.5975537,42.54188232,High_spent_Large_value_payments,320.7500639,0,0.5241,-0.5154,-0.2795,-0.2102,0.5213 -0x8ba5,CUS_0xaa3a,August,51,107-75-7844,Developer,111059.94,,5,7,2,100,,,13,0.53,0,Good,418.69,31.11511495,30 Years and 9 Months,No,0,134.1692136,High_spent_Large_value_payments,1021.330286,0,0.4241,1.4496,1.2142,0.1823,0.5069 -0x8bb1,CUS_0xb00,August,38,585-13-6101,Writer,100284.24,8288.02,5,7,17.28836175,2,"Payday Loan, Mortgage Loan, and Credit-Builder Loan",6.4516882,8,2.1,4,Standard,333.25,30.8877254,30 Years and 8 Months,Yes,148.351807,10419.93746,High_spent_Large_value_payments,849.3378149,0,0.6925,1.3118,-0.1512,0.7377,1.0535 -0x8bbd,CUS_0x7d83,August,31,227-93-6471,Lawyer,74902.8,6272.9,8,8,33.88954781,9,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Auto Loan, Personal Loan, Payday Loan, and Home Equity Loan",,19.56865369,16.13,8,Bad,3316.600712,37.47393134,13 Years and 4 Months,Yes,1858.234978,364.202369,High_spent_Small_value_payments,,0,-0.8674,-0.4946,-0.0731,-1.087,1.5728 -0x8bc9,CUS_0x58f4,August,45,331-91-1785,Accountant,107360.1,9145.675,7,7,13,1,Payday Loan,23.4436361,19.65671649,8.04,5,Standard,1619.875586,35.35663418,17 Years and 2 Months,Yes,81.23913389,563.6891354,Low_spent_Medium_value_payments,549.6392307,0,2.0964,-0.0199,0.7779,1.1621,-1.9436 -0x8bd5,CUS_0x8ed,August,27,315-27-3562,Architect,42796.52,3461.376667,4,4,9,0,,,17,13.85,10,_,631.12,37.27115128,20 Years and 3 Months,Yes,0,,Low_spent_Small_value_payments,186.9591441,0,0.0767,1.2205,-0.3242,-0.6302,0.7782 -0x8be1,CUS_0xae7c,August,43,853-37-6310,Musician,35196.36,,10,7,19.06745738,2,"Personal Loan, and Home Equity Loan",,23.33618796,8.28,10,Standard,2398.950746,40.22150151,7 Years and 2 Months,Yes,48.25920998,94.61193694,High_spent_Small_value_payments,383.0115651,0,-0.8808,0.2082,-1.1803,0.3985,-1.0056 -0x8bed,CUS_0x9562,August,43,677-93-2447,Writer,28843.09,,5,6,15,2,"Mortgage Loan, and Home Equity Loan",,17,10.55,8,Standard,74.41,35.0078298,20 Years and 6 Months,NM,25.7834897,152.1989096,Low_spent_Small_value_payments,351.476684,0,-0.7633,1.4774,-0.5822,1.4588,-1.058 -0x8bf9,CUS_0x6b49,August,46,424-32-0755,Mechanic,31931.73,2652.9775,7,3,10,3,"Home Equity Loan, Personal Loan, and Payday Loan",22.01740746,19,8.16,2,Good,534.3163135,28.47541397,31 Years and 9 Months,No,77.81784184,84.45198756,High_spent_Medium_value_payments,361.8039533,0,0.2449,-0.4774,-0.0246,-0.7679,0.9024 -0x8c05,CUS_0xb82d,August,28,977-03-1207,Doctor,52475.7,,8,8,15.88954781,6,"Mortgage Loan, Student Loan, Student Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",41.18268138,30.11890237,22.13,9,_,3814.824536,22.2978897,7 Years and 10 Months,Yes,1573.487255,,Low_spent_Small_value_payments,81.29913328,0,0.5451,-0.2002,0.3685,-0.5105,0.1224 -0x8c11,CUS_0x6fea,August,36,444-51-2059,Entrepreneur,67854.3,,3,7,6.288361749,0,,8.366217203,9,3.38,,Good,543.4781593,24.78523073,31 Years and 4 Months,No,0,706.6561752,Low_spent_Small_value_payments,596.3893544,0,0.9895,1.5585,-0.0962,-0.7381,0.5226 -0x8c1d,CUS_0x30cf,August,80,489-98-9033,Scientist,18927.65,1779.304167,6,7,24,6,"Student Loan, Mortgage Loan, Auto Loan, Personal Loan, Home Equity Loan, and Personal Loan",21.53500693,18.00519784,3.61,12,Standard,2192.92826,38.606387,19 Years and 11 Months,Yes,62.5402524,48.10410273,High_spent_Medium_value_payments,317.2860615,0,-0.822,-0.65,1.409,-0.0488,-0.8602 -0x8c29,CUS_0x8bd3,August,26,428-88-1742,Journalist,14982.1,,8,10,19.88954781,6,"Payday Loan, Mortgage Loan, Student Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",,24.72026945,7.23,17,Bad,4853.407132,35.33483255,10 Years and 5 Months,Yes,1391.971608,,Low_spent_Medium_value_payments,242.5469236,0,-0.0098,1.5954,-0.5091,3.1416,0.2045 -0x8c35,CUS_0x2634,August,27,221-75-3766,Mechanic,9127.26,991.605,7,9,26,2,"Not Specified, and Debt Consolidation Loan",39.56326731,25,1.65,17,Bad,1399.89,27.08729446,8 Years and 10 Months,Yes,12.88116184,,Low_spent_Small_value_payments,247.9533516,0,0.0923,-0.1976,0.7166,-0.864,0.0895 -0x8c41,CUS_0x9146,August,45,845-07-7226,Writer,16989.6,1165.8,5,6,7,3,"Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,,10.09,6,Good,52.93265886,25.93614883,20 Years and 10 Months,No,29.19702392,52.89962994,High_spent_Medium_value_payments,292.2975387,0,2.4455,0.6168,0.1747,1.4871,0.2054 -0x8c4d,CUS_0xb7b1,August,21,607-46-9294,Mechanic,90827.68,,8,4,20,3,"Debt Consolidation Loan, Student Loan, and Auto Loan",15.9042315,11,-0.97,5,Standard,1167.05,35.06391592,23 Years and 0 Months,Yes,25130,157.0956778,High_spent_Large_value_payments,693.2958909,0,-1.1956,2.0172,-0.318,-0.3548,0.4743 -0x8c59,CUS_0xb0bd,August,37,744-86-5309,Accountant,26196.39,2139.0325,7,6,11,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",,13,16.97,3,Standard,459.1832156,35.47193323,30 Years and 0 Months,NM,48.53365138,59.01200378,High_spent_Medium_value_payments,362.0384142,0,-1.1114,-0.5062,1.6343,1.2652,0.6994 -0x8c65,CUS_0x6e65,August,32,963-16-7499,_______,120314,10039.16667,6,5,11,0,,27.744738,19.79643327,5.82,4,_,631.1195331,30.2163296,23 Years and 0 Months,No,0,344.1550114,High_spent_Medium_value_payments,909.7616553,0,0.0545,-0.1542,-0.3938,-0.8965,-0.0464 -0x8c71,CUS_0x2517,August,19,203-07-7505,Teacher,73099.84,,5,7,26,3,"Debt Consolidation Loan, Auto Loan, and Home Equity Loan",28.88569554,,8.12,14,Bad,2004.528248,36.50891297,7 Years and 9 Months,Yes,155.9817455,83.23027126,High_spent_Large_value_payments,608.3533166,0,0.7021,0.8558,1.2365,0.249,-0.5233 -0x8c7d,CUS_0x9079,August,44,732-80-4889,Lawyer,23211.7,,4,7,15,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",27.53400962,20,9.28,2,Standard,100.19,38.70637469,23 Years and 4 Months,No,58.5259866,147.8490014,!@9#%8,273.4558453,0,-0.1641,0.8725,2.2664,-0.132,-0.6106 -0x8c89,CUS_0x9a84,August,38,#F%$D@*&8,Scientist,60552.24,4794.02,7,5,19,4,"Student Loan, Not Specified, Home Equity Loan, and Not Specified",23.88793856,18,10.57,6,Standard,30.50843489,26.60993119,15 Years and 0 Months,Yes,168.846508,211.646883,High_spent_Medium_value_payments,378.804819,0,-1.7157,-0.5857,-0.1863,2.0879,0.3584 -0x8c95,CUS_0x5b57,August,32,763-87-9227,Accountant,81166.86,6735.905,194,4,7,2,"Payday Loan, and Mortgage Loan",18.52468565,14,7.5,10,_,1353.18,34.518073,12 Years and 0 Months,NM,135.1044836,,High_spent_Large_value_payments,651.4679409,0,0.63,-0.993,-0.8862,-0.7446,0.3277 -0x8ca1,CUS_0x339e,August,25,224-42-3295,Entrepreneur,86971.56,7053.63,8,5,4,1,Not Specified,32.94460546,22.07812129,2.98,4,_,372.2608609,31.70632126,20 Years and 10 Months,No,38.44517562,891.5717619,Low_spent_Small_value_payments,65.34606251,0,-0.4777,0.7996,0.1451,-1.0477,0.4547 -0x8cad,CUS_0x5f89,August,21,899-12-3125,Engineer,38963.38,3018.948333,6,7,28.06745738,6,"Auto Loan, Payday Loan, Not Specified, Mortgage Loan, Student Loan, and Credit-Builder Loan",41.06316962,22,10.25,13,Bad,4944.400954,31.63916435,13 Years and 2 Months,Yes,177.8434286,75.42865474,!@9#%8,281.9024621,0,-0.8638,-0.2058,-0.2338,-0.2881,0.2686 -0x8cb9,CUS_0x96ca,August,45,088-99-8644,Accountant,18849.1,,528,8,17.88954781,8,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,20,18.24,9,_,3327.28,32.67479869,13 Years and 9 Months,Yes,1399.131473,,Low_spent_Small_value_payments,144.5025139,0,-1.5487,0.3866,0.816,0.7296,0.0863 -0x8cc5,CUS_0x839b,August,49,403-71-6438,Lawyer,73119.46,5572.248969,4,3,5,4,"Personal Loan, Home Equity Loan, Not Specified, and Mortgage Loan",0.414325858,3,1.1,0,Good,1100.502786,37.08789724,26 Years and 0 Months,No,848.6793881,,!@9#%8,573.0619259,0,0.4554,0.13,0.7309,-0.8873,0.225 -0x8cd1,CUS_0x7fd9,August,56,#F%$D@*&8,Accountant,32946.22,2865.518333,0,7,10,2,"Student Loan, and Debt Consolidation Loan",14.8990139,,10.03,4,Good,1330.02,35.8710654,18 Years and 2 Months,NM,46.24458495,226.8737073,Low_spent_Small_value_payments,303.4335411,0,1.2068,0.1244,0.5218,-0.7359,0.8703 -0x8cdd,CUS_0x869b,August,34,576-94-1039,Architect,23814.73,2104.560833,3,4,10,4,"Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",17.26844535,10.18669026,13.05,8,Standard,950.9789785,29.97166448,6 Years and 6 Months,NM,76.39432093,108.8162451,High_spent_Small_value_payments,285.2455173,0,0.6565,2.5785,-0.0089,1.667,1.386 -0x8ce9,CUS_0x8f86,August,45,561-67-6184,Media_Manager,10613.34,,8,6,7,1,Not Specified,9.424351006,8.012189677,,0,_,1293.611348,23.2886408,27 Years and 6 Months,No,6.487867526,135.5427818,Low_spent_Small_value_payments,254.6138507,0,0.7496,-0.4593,1.2234,-0.9342,-0.2645 -0x8cf5,CUS_0x1ad9,August,22,625-37-5496,Journalist,19386.02,,4,4,7,3,"Payday Loan, Student Loan, and Credit-Builder Loan",,15,9.74,11,Standard,2438.26,39.70864326,15 Years and 0 Months,Yes,40.00925125,20.54877655,High_spent_Large_value_payments,365.2921389,0,1.9511,-1.2095,0.7199,-0.3645,-0.1102 -0x8d01,CUS_0x4131,August,42,508-52-1146,Media_Manager,28832.98,,7,7,7,3,"Mortgage Loan, Debt Consolidation Loan, and Auto Loan",,10,12.14,13,Standard,2576.04,27.42341988,16 Years and 4 Months,Yes,53.28671123,40.76597807,High_spent_Medium_value_payments,418.822144,0,0.0504,-1.1188,-1.6813,2.3324,0.1446 -0x8d0d,CUS_0x2df8,August,27,214-58-4052,Musician,10240.42,,10,9,24.95700519,9,"Mortgage Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Student Loan, Personal Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",43.69218397,25.89915479,9.13,10,Bad,1796.425867,26.77902146,7 Years and 8 Months,Yes,1366.457862,78.30573578,!@9#%8,217.9228659,0,2.4073,0.0331,0.5551,1.6864,0.838 -0x8d19,CUS_0x2b62,August,39,788-00-6739,Developer,110924.58,9113.715,4,7,2,0,,26.71325553,17.06583236,11.36,5,Good,1499.2037,38.71094442,20 Years and 6 Months,No,0,543.9537793,Low_spent_Small_value_payments,657.4177207,0,-0.6868,0.5879,-2.1746,-0.1406,0.1922 -0x8d25,CUS_0x9e5,August,21,873-59-6048,Media_Manager,97414.8,8134.9,8,3,12,2,"Not Specified, and Auto Loan",10.27058275,9,10.2,3,Standard,496.4,38.27654568,19 Years and 9 Months,NM,84.63705087,95.70067337,High_spent_Large_value_payments,873.1522758,0,1.1888,-0.4893,-0.5759,0.3724,0.8823 -0x8d31,CUS_0x24ef,August,44,856-24-1723,Writer,18110.7,1733.225,611,8,20,7,"Personal Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Student Loan",,21.65117258,4.09,14,Bad,2073.122805,36.11229773,6 Years and 4 Months,Yes,100.7314623,120.3662553,Low_spent_Large_value_payments,222.2247824,0,1.1561,1.1326,0.1007,0.3531,-0.5304 -0x8d3d,CUS_0x661f,August,42,857-27-1046,Media_Manager,150467.64,12642.97,2,5,10,4,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",14.07303804,12,2.96,5,_,1443.25,38.06591968,19 Years and 9 Months,No,80832,373.1558057,High_spent_Medium_value_payments,880.937844,0,0.4547,-1.4656,-1.7865,-1.2528,0.9986 -0x8d49,CUS_0x6c90,August,25,786-65-3651,Manager,52770.12,4633.51,6,1229,20.06745738,5,"Credit-Builder Loan, Home Equity Loan, Payday Loan, Student Loan, and Payday Loan",59.11126254,31.59844788,17.9,14,Bad,4734.516349,38.06271412,14 Years and 4 Months,Yes,191.8522573,42.88452675,High_spent_Large_value_payments,441.893928,0,1.4033,0.8686,0.9363,-0.3451,-0.157 -0x8d55,CUS_0xaa5,August,35,593-90-9236,Media_Manager,60493.08,4976.09,9,7,31.06745738,9,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",21.97507302,15,25,12,Bad,3904.030954,33.28457941,13 Years and 11 Months,Yes,432.5810337,298.3226387,Low_spent_Large_value_payments,9.985039651,0,-1.6922,-0.9597,-1.2135,0.8385,1.9775 -0x8d61,CUS_0x1f2e,August,26,049-84-5378,Entrepreneur,41012.42,3341.701667,5,4,27,7,"Payday Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Student Loan, Personal Loan, and Personal Loan",9.709094106,9,14.47,4,Standard,1690.55,30.68716331,7 Years and 11 Months,Yes,199.3678026,174.7952014,High_spent_Small_value_payments,220.0071627,0,1.2889,-0.4636,1.1442,-0.4206,-3.0369 -0x8d6d,CUS_0x5f81,August,80,054-65-4637,Entrepreneur,147517.36,,3,5,15.28836175,0,Not Specified,,20,4.79,6,_,292.9342719,38.86287566,32 Years and 4 Months,No,1626.169078,1001.933238,!@9#%8,948.330342,0,1.4627,0.9987,-0.8492,-0.6359,-0.655 -0x8d79,CUS_0x6c52,August,34,873-88-8377,Musician,100241.67,8121.4725,8,5,10,4,"Student Loan, Auto Loan, Not Specified, and Mortgage Loan",24.40039344,16.72993371,1.8,3,Good,230.0195864,41.9505305,21 Years and 11 Months,No,260.608105,72.39262088,High_spent_Large_value_payments,719.1465241,0,0.2085,0.5256,-0.8876,0.7095,0.4722 -0x8d85,CUS_0x42b1,August,21,468-45-3404,Entrepreneur,88463.25,,5,3,5.288361749,100,"Debt Consolidation Loan, Personal Loan, Student Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",,9,10.66,6,Standard,827.79,37.05022162,,Yes,243.3581693,727.0203505,Low_spent_Small_value_payments,500.5526912,0,0.1177,1.3745,-1.7133,-0.6362,0.1229 -0x8d91,CUS_0xbb79,August,18,648-47-1930,Engineer,22324.105,1723.342083,1,4,4,3,"Not Specified, Debt Consolidation Loan, and Not Specified",13.2367122,11,8.72,1,Good,781.3262282,31.06798756,31 Years and 5 Months,NM,45.02575122,91.51673511,Low_spent_Medium_value_payments,329.4590818,0,0.0302,0.9032,-0.0471,0.0872,-0.6127 -0x8d9d,CUS_0x769a,August,56,565-87-6956,Scientist,77469.6,,4,5,12,1,Student Loan,22.84702313,17,3.74,2,Good,529.13,35.17475506,26 Years and 6 Months,No,55.80907754,,Low_spent_Medium_value_payments,211.9176905,0,1.0187,0.165,-0.0336,-1.4696,0.3064 -0x8da9,CUS_0x5a03,August,18,811-09-5468,Teacher,60014.88,,5,9,26,2,"Credit-Builder Loan, and Auto Loan",22.06800967,15,19.57,9,_,2620.62,29.05097765,10 Years and 4 Months,Yes,288.1904128,440.7012683,Low_spent_Medium_value_payments,253.7797844,0,-0.5177,-0.0442,-0.0314,2.9924,-1.1652 -0x8db5,CUS_0x3a28,August,42,668-80-7236,Scientist,8833.225,,10,7,23,5,"Auto Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Auto Loan",29.05051059,,1.63,14,Bad,2987.52,37.43662167,8 Years and 0 Months,Yes,34.61951806,,Low_spent_Large_value_payments,286.5417226,0,1.7539,-0.158,-1.8431,-1.1098,0.3292 -0x8dc1,CUS_0xa6d4,August,44,231-06-2460,Journalist,35733.69,2953.8075,4,3,10.28836175,2,"Credit-Builder Loan, and Payday Loan",15.23088887,,2.71,2,Good,57.06677687,35.89603567,32 Years and 5 Months,No,44.65081871,526.446178,High_spent_Small_value_payments,416.8895583,0,0.2343,0.6539,-1.5588,-0.6579,-0.2924 -0x8dcd,CUS_0xb06e,August,43,575-22-9133,Accountant,15117.51,,6,5,28,7,"Not Specified, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Not Specified, and Personal Loan",,11.24967741,19.94,13,Standard,2285.387222,40.63186224,,Yes,78.69659138,47.39849892,!@9#%8,255.5841597,0,1.8518,-0.0112,0.078,-0.2783,0.5685 -0x8dd9,CUS_0x720a,August,27,093-22-4351,Mechanic,40624.94,3665.411667,7,9,21,4,"Credit-Builder Loan, Not Specified, Personal Loan, and Not Specified",38.61609112,17.5388376,12.06,14,_,1973.740084,28.51843622,14 Years and 6 Months,NM,73.02343359,,Low_spent_Small_value_payments,436.0375511,0,1.4477,0.3592,0.2287,0.141,-0.0974 -0x8de5,CUS_0x3925,August,20,236-45-3040,Journalist,81793.56,6769.13,6,7,19,3,"Auto Loan, Auto Loan, and Home Equity Loan",19.59985375,17,4.47,7,Standard,1208.29,29.33818803,29 Years and 11 Months,Yes,124.4591163,,Low_spent_Medium_value_payments,152.8885115,0,1.7616,-0.9412,0.4186,-0.2921,0.4323 -0x8df1,CUS_0x635d,August,39,308-00-9678,_______,80265.2,6596.766667,5,7,12,4,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Student Loan",10.94616243,8,13.86,5,Standard,636.92,30.25370558,10 Years and 2 Months,Yes,220.0650676,366.6025808,Low_spent_Medium_value_payments,353.0090183,0,-1.1192,0.7205,-0.7317,2.3342,-0.1816 -0x8dfd,CUS_0x3032,August,48,001-43-6015,Architect,38712.58,,2,3,4,3,"Debt Consolidation Loan, Payday Loan, and Home Equity Loan",,7,4.63,2,Good,924.3319831,32.9774438,25 Years and 3 Months,No,49.44864692,,Low_spent_Medium_value_payments,362.4700286,0,0.3234,1.7831,-0.6121,1.5775,-0.3206 -0x8e09,CUS_0xb0a5,August,26,242-18-3151,_______,15895.235,1268.602917,4,7,16,4,"Student Loan, Mortgage Loan, Auto Loan, and Student Loan",18.09333047,14,8.92,5,Standard,237.72,32.11896857,26 Years and 9 Months,NM,35.88598876,50.89921346,Low_spent_Small_value_payments,330.0750894,0,-1.3244,-0.3432,-0.9556,-0.5663,-0.1948 -0x8e15,CUS_0x9ce4,August,40,420-50-3636,Developer,32540.8,,10,10,29.88954781,9,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Student Loan, Auto Loan, and Credit-Builder Loan",46.17527722,30.14650563,16.54,6,Bad,2928.265327,28.86493323,6 Years and 2 Months,NM,27921.48344,43.21496308,High_spent_Large_value_payments,322.144842,0,-1.3152,-1.0064,0.0724,-0.132,-2.3947 -0x8e21,CUS_0x37ea,August,54,435-51-0275,Scientist,121107.9,9322.687972,0,7,5,0,,7.365351605,6,9.41,8,Good,1490.72,30.5765441,16 Years and 8 Months,No,657.6370276,614.3232517,Low_spent_Medium_value_payments,663.7092483,0,0.4657,0.6174,-0.426,-1.5292,0.6825 -0x8e2d,CUS_0x3e92,August,25,199-63-4034,Entrepreneur,23029.61,1981.671967,4,5,3,4,"Auto Loan, Personal Loan, Personal Loan, and Auto Loan",30.67422444,20.07751932,0.88,4,Good,469.0678298,38.53837805,29 Years and 4 Months,NM,100.0204572,30.44971301,High_spent_Medium_value_payments,375.4054462,0,-0.8206,-2.8522,0.4476,0.0053,1.1007 -0x8e39,CUS_0x3a69,August,34,961-04-7892,Doctor,62925.64,5109.803333,7,5,21,2,"Credit-Builder Loan, and Debt Consolidation Loan",,21.4609099,14.02,10,Standard,2267.391858,40.3102605,20 Years and 2 Months,Yes,94.35528887,283.7020362,Low_spent_Large_value_payments,402.9230083,0,0.7069,-0.5369,-0.4451,-0.3769,0.0671 -0x8e45,CUS_0xda6,August,29,719-64-1889,Manager,20194.19,,5,7,18.28836175,0,,14.42243976,13,7.85,7,_,189.79,24.00718123,29 Years and 9 Months,Yes,0,575.7734313,Low_spent_Large_value_payments,291.6489464,0,-0.3799,-0.88,1.2124,-0.6945,1.4777 -0x8e51,CUS_0x6347,August,35,903-20-5885,Writer,27403.02,,5,6,5,4,"Credit-Builder Loan, Personal Loan, Auto Loan, and Home Equity Loan",,8,7.25,2,Standard,955.0556187,30.96166969,29 Years and 11 Months,NM,75.22435917,94.96071427,High_spent_Medium_value_payments,296.4426466,0,0.3165,-1.7012,1.5347,-0.3635,0.5247 -0x8e5d,CUS_0xa83,August,18,644-26-1074,Teacher,19072.63,,8,7,25.06745738,4,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",24.37984838,10,18.16,17,_,1595.050954,38.84029324,,Yes,60.51420701,80.98844839,High_spent_Small_value_payments,254.91564,0,1.2346,0.9589,0.5853,-0.417,-0.9216 -0x8e69,CUS_0x787b,August,34,121-75-0461,Doctor,65538.64,,9,7,23,8,"Payday Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Home Equity Loan",,23.57002478,8.1,14,_,2041.647152,39.95556585,16 Years and 5 Months,Yes,359.2632373,,High_spent_Large_value_payments,320.0954392,0,1.8101,-1.4391,-1.3287,-1.0942,0.0406 -0x8e75,CUS_0x73c1,August,33,019-77-0295,Entrepreneur,19457.51,,7,5,27.06745738,9,"Auto Loan, Mortgage Loan, Not Specified, Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",,27.73648119,22.32,877,Bad,5481.885086,38.17505695,,Yes,75.80109831,,Low_spent_Small_value_payments,253.6040874,0,-1.5241,0.4838,-0.7115,0.3685,0.4724 -0x8e81,CUS_0x286f,August,22,915-80-8522,Developer,121644.6,9859.007563,1,1,12,2,"Credit-Builder Loan, and Student Loan",0,0,1.01,1,Good,924.21,39.68457777,15 Years and 9 Months,No,658.1925445,816.1036593,!@9#%8,394.4512334,0,-0.8647,0.1243,-1.156,-0.1473,-0.2552 -0x8e8d,CUS_0x5ab7,August,21,061-51-4957,Teacher,39024.34,3166.028333,4,5,33,2,"Mortgage Loan, and Auto Loan",,20,9.22,12,Standard,2201.24,40.13874776,13 Years and 4 Months,Yes,58.20110411,176.2039903,Low_spent_Medium_value_payments,362.1977389,0,-0.8833,1.6892,-0.0673,-0.5688,-0.2352 -0x8e99,CUS_0x5cff,August,18,173-86-1649,Mechanic,24931.39,,4,6,13,2,"Credit-Builder Loan, and Home Equity Loan",11.11832562,8,11.34,12,Standard,18.55,41.1815195,29 Years and 3 Months,NM,74926,54.27919299,!@9#%8,378.7805513,0,-0.561,-2.662,-0.1215,-0.4867,-1.2881 -0x8ea5,CUS_0x2d5a,August,22,864-98-6255,Engineer,35247.02,,9,7,28.06745738,2,"Not Specified, and Payday Loan",,26.22540461,9.12,7,Bad,2065.892371,28.31278062,13 Years and 2 Months,Yes,39.21200651,28.75144073,High_spent_Large_value_payments,433.0414315,0,1.6932,0.1667,0.1588,-0.8815,-0.6144 -0x8eb1,CUS_0x123d,August,31,736-67-4134,Architect,7703.635,651.9695833,6,8,19.95700519,6,"Auto Loan, Home Equity Loan, Student Loan, Home Equity Loan, Home Equity Loan, and Student Loan",43.78411051,22.26080789,16.05,15,Bad,3718.975189,27.72495562,2 Years and 8 Months,Yes,1355.564542,49.09496419,Low_spent_Small_value_payments,229.4870826,0,-0.9135,-0.1236,-1.9648,-0.1292,1.2641 -0x8ebd,CUS_0x45b6,August,40,973-20-0372,Media_Manager,58228.38,,4,1,3.288361749,0,Personal Loan,0,2,6.02,4,Good,179.9239631,28.70648079,29 Years and 3 Months,No,33.92926402,484.5752354,High_spent_Medium_value_payments,645.3818528,0,1.2925,-0.0325,0.2466,-0.0299,1.3338 -0x8ec9,CUS_0x5634,August,18,965-27-2454,Media_Manager,73425.16,,3,3,13,7,"Home Equity Loan, Mortgage Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",30.55894793,20,15.21,2444,_,1205.13,26.13484992,19 Years and 6 Months,NM,426.9718233,359.8424193,Low_spent_Medium_value_payments,103.5620907,0,-1.6639,1.8142,-0.0614,-1.173,-1.4813 -0x8ed5,CUS_0xc211,August,34,884-43-1819,Architect,22252.63,,8,6,1132,100,"Mortgage Loan, and Auto Loan",17.00573244,14,17.3,6,Standard,358.36,28.00497708,31 Years and 5 Months,Yes,28.04391197,54.57980226,High_spent_Medium_value_payments,350.0148691,0,0.1553,0.4742,-2.0183,-0.4539,1.2463 -0x8ee1,CUS_0x41ce,August,29,510-01-7946,Mechanic,11831.605,,6,4,20,4,"Student Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",,18,-0.87,5,Standard,746.3957579,34.92551006,28 Years and 8 Months,Yes,33.34467082,81.0956603,High_spent_Small_value_payments,266.1709096,0,0.7304,-0.5079,-0.6144,-2.6519,-0.9316 -0x8eed,CUS_0x211f,August,30,#F%$D@*&8,Doctor,15293.55,1251.4625,7,3,18,3,"Mortgage Loan, Auto Loan, and Personal Loan",18.67484444,13,17.87,7,Standard,939.47,25.06140065,,Yes,23.75468254,,Low_spent_Small_value_payments,308.4190483,0,-0.3508,0.3442,1.1179,0.2233,-0.2158 -0x8ef9,CUS_0x9b1f,August,26,373-86-3169,_______,47726.04,4007.17,7,8,18,2,"Student Loan, and Personal Loan",19.83745127,16,12.2,14,_,2519.86,26.18979779,15 Years and 3 Months,Yes,61.84755016,467.5018576,Low_spent_Small_value_payments,161.3675922,0,1.1027,-1.4439,-0.5808,-0.3354,-1.4031 -0x8f05,CUS_0xaac6,August,31,#F%$D@*&8,Musician,51938.04,4473.17,7,7,33,7,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Not Specified, Auto Loan, Student Loan, and Auto Loan",26.6960384,,6.62,11,Bad,1638.92,32.00999447,16 Years and 6 Months,Yes,196.378019,100.9481224,High_spent_Large_value_payments,389.9908586,0,0.5995,-1.3662,0.7119,1.3368,0.5531 -0x8f11,CUS_0x8c44,August,32,911-81-8555,_______,141000.84,,5,3,20,4,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Debt Consolidation Loan",13.66704755,9,8.25,3,Standard,256.7789688,29.88577124,24 Years and 9 Months,Yes,255.3987089,1201.448413,!@9#%8,192.6495281,0,-0.1227,1.4323,-0.5126,1.3118,0.537 -0x8f1d,CUS_0x2fa2,August,24,076-99-3069,Manager,19731.2,,6,6,11,0,,,19,1.53,5,Standard,424.32,38.54038038,17 Years and 8 Months,No,0,104.8483859,Low_spent_Small_value_payments,336.0782807,0,2.08,-0.6535,-0.0903,-0.9818,-0.0501 -0x8f29,CUS_0x7d64,August,37,423-88-6945,Entrepreneur,41772.18,3365.015,4,4,13,4,"Payday Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",,18,13.5,9,Standard,1383.84,30.8779686,,Yes,119.0880548,211.6055506,Low_spent_Medium_value_payments,285.8078946,0,-0.4684,1.5248,0.0791,0.1573,-1.2363 -0x8f35,CUS_0xb191,August,42,848-67-6653,Engineer,17158.43,1507.869167,8,7,2128.067457,7,"Credit-Builder Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",,27,28.45,6,Bad,4661.820954,31.39573493,8 Years and 6 Months,Yes,97.71693435,,Low_spent_Small_value_payments,176.6881476,0,-1.5384,-0.9332,-0.6065,-0.3558,0.01 -0x8f41,CUS_0xb160,August,51,077-78-3625,Scientist,35516.68,2729.723333,0,2,5201,4,"Auto Loan, Payday Loan, Payday Loan, and Payday Loan",,6,6.65,3,Good,981.33,36.57520121,16 Years and 8 Months,No,95.85926638,97.4688671,Low_spent_Large_value_payments,349.6441999,0,1.096,-2.97,-0.1677,-0.7205,-0.7255 -0x8f4d,CUS_0x3ca4,August,43,353-00-0111,Media_Manager,73910.61,5995.2175,3,7,12,0,,,18,10.18,2,Standard,1469.17,34.16779245,18 Years and 11 Months,Yes,0,229.5758767,High_spent_Medium_value_payments,619.9458733,0,-0.5457,-1.0148,2.2137,-1.3532,1.4711 -0x8f59,CUS_0x9cab,August,80,755-46-9784,Doctor,38186.84,3428.236667,8,6,20,100,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Student Loan, Payday Loan, and Personal Loan",23.04543565,16,17.03,11,Bad,3269.54,29.95143831,10 Years and 4 Months,Yes,282.3710469,,Low_spent_Small_value_payments,224.5493734,0,1.0204,-0.905,-1.5081,1.4913,0.572 -0x8f65,CUS_0xa276,August,34,789-12-3913,Accountant,24192.59,,3,7,19,2,"Mortgage Loan, and Student Loan",13.82828356,10,8.78,2,Standard,974.45,30.77832259,16 Years and 5 Months,Yes,34.50356089,43.50742173,High_spent_Small_value_payments,410.193934,0,-0.0177,-1.9552,-1.1533,1.4388,-0.7771 -0x8f71,CUS_0x5d14,August,24,666-63-9523,Scientist,38387.94,3079.995,8,5,20.06745738,8,"Debt Consolidation Loan, Payday Loan, Payday Loan, Auto Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Student Loan",,25,27.2,11,Bad,4085.860954,33.28591941,7 Years and 11 Months,Yes,171.7429823,88.67521225,Low_spent_Large_value_payments,290.8610175,0,1.0606,-0.0465,0.8919,0.555,0.0457 -0x8f7d,CUS_0x8ca3,August,20,169-53-4759,Accountant,31469.96,2622.496667,1065,9,27,5,"Home Equity Loan, Payday Loan, Student Loan, Not Specified, and Home Equity Loan",26.29672758,19,27.4,9,Bad,3858.12,24.61719709,2 Years and 0 Months,Yes,74.55748412,,Low_spent_Small_value_payments,265.3807254,0,-0.6643,0.2842,0.8439,-1.3409,0.9344 -0x8f89,CUS_0x3e91,August,42,973-32-5469,Developer,17775.71,1543.309167,8,5,34.06745738,8,"Home Equity Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",,15,19.2,8,_,2862.090954,35.14709328,1 Years and 5 Months,Yes,65.87536999,66.66150905,Low_spent_Small_value_payments,285.0737497,0,-0.1465,0.6257,0.1349,-0.5487,-1.0972 -0x8f95,CUS_0xa0eb,August,40,284-62-1369,Manager,65599.92,5680.66,9,7,27,3,"Personal Loan, Debt Consolidation Loan, and Personal Loan",17.09484277,9.272000661,19.83,10,Standard,1453.855958,24.39969698,12 Years and 8 Months,Yes,100.1998169,306.3553809,Low_spent_Small_value_payments,451.5108022,0,1.5417,-1.143,0.8331,0.6763,-0.0747 -0x8fa1,CUS_0x2ff3,August,35,475-78-3962,Mechanic,8949.35,,4,9,15.88954781,6,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",,20,15.96,14,Standard,2556.01,30.49259108,8 Years and 5 Months,Yes,1364.842714,43.71892976,!@9#%8,221.6861914,0,-0.9545,0.5626,-0.5344,0.5993,-1.1716 -0x8fad,CUS_0xa52e,August,37,902-32-6869,Teacher,7079.32,668.9433333,9,9,20.06745738,7,"Not Specified, Auto Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Not Specified, and Home Equity Loan",,19,27.26,13,Bad,3413.110954,42.38327864,14 Years and 6 Months,Yes,35.8510307,33.75752542,Low_spent_Medium_value_payments,250.5654893,0,1.2114,-0.9575,0.4826,0.2738,-1.1765 -0x8fb9,CUS_0xa86b,August,49,568-23-0854,Lawyer,26733.39,,8,6,9,4,"Mortgage Loan, Auto Loan, Student Loan, and Credit-Builder Loan",18.49827593,13,10.97,1,Good,1259.051252,34.35749965,26 Years and 2 Months,No,49.94217204,22.3311013,High_spent_Large_value_payments,377.0947146,0,-1.2514,-2.1816,-1.2786,-0.4924,-1.3102 -0x8fc5,CUS_0x18ac,August,39,749-91-6133,Scientist,18270.68,1348.556667,7,9,34.06745738,6,"Payday Loan, Personal Loan, Student Loan, Home Equity Loan, Student Loan, and Personal Loan",,21.43153597,15.49,8,Standard,2479.165868,38.7773438,,Yes,90.93654041,,Low_spent_Small_value_payments,220.4672657,0,-0.1678,0.9645,0.7158,0.8415,0.0746 -0x8fd1,CUS_0x6d70,August,28,059-15-8950,Accountant,68454.96,5820.58,8,9,19,5,"Payday Loan, Not Specified, Personal Loan, Auto Loan, and Payday Loan",39.63357386,18.00404712,8.08,16,_,2660.690345,32.60832883,19 Years and 3 Months,Yes,160.5136746,10000,Low_spent_Small_value_payments,311.2522007,0,0.8137,-0.9882,-0.8795,2.4472,-0.4399 -0x8fdd,CUS_0x9595,August,33,740-18-4590,Developer,17474415,9541.596667,0,5,9,2,"Student Loan, and Auto Loan",,1,9.14,3,_,261.326807,25.45450609,26 Years and 3 Months,No,166.9918084,878.3435142,Low_spent_Medium_value_payments,321.6681093,0,-0.0191,0.569,-0.4333,2.0599,-0.9086 -0x8fe9,CUS_0xbe4b,August,38,589-84-0344,Developer,19920.93,,8,3,11,2,"Credit-Builder Loan, and Not Specified",17.26910449,12,18.44,4,_,2645.5,33.17358214,15 Years and 2 Months,NM,21.04414154,10000,Low_spent_Medium_value_payments,333.4726512,0,0.5588,-1.5879,2.5053,1.6561,0.6802 -0x8ff5,CUS_0x76c1,August,80,763-06-9169,_______,66422.98,,8,7,5,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",16.47980593,11,24.32,5,_,153.99,39.55864846,11 Years and 5 Months,Yes,280.9275506,215.9597155,High_spent_Medium_value_payments,291.7375672,0,-0.3743,0.9782,1.7064,3.101,1.213 -0x9001,CUS_0x7997,August,25,287-47-9795,Entrepreneur,16568.58,,5,5,23,7,"Student Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",,19.05713719,20.05,,_,5187.91546,31.44769522,13 Years and 6 Months,Yes,80.97704531,,Low_spent_Small_value_payments,159.5354609,0,0.3981,-1.2184,-1.6649,-1.8601,-0.7864 -0x900d,CUS_0x1eea,August,29,957-07-5513,_______,8439.33,554.2775,6,9,16.06745738,6,"Credit-Builder Loan, Student Loan, Personal Loan, Not Specified, Payday Loan, and Auto Loan",,26.42789222,16.6,9,Bad,1752.046725,29.20364788,19 Years and 8 Months,Yes,35.34387474,10000,Low_spent_Medium_value_payments,246.5498091,0,0.0416,-0.2516,-0.9121,0.5561,0.6955 -0x9019,CUS_0x7f3c,August,44,427-34-4793,Architect,10244.8,1131.733333,8,5,19.06745738,8,"Debt Consolidation Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",,17.46650502,16.29,,Bad,5676.255856,39.34271812,10 Years and 2 Months,NM,37.75420493,10000,Low_spent_Medium_value_payments,234.8448334,0,0.2549,0.7325,1.1572,-0.5121,-1.7293 -0x9025,CUS_0x840b,August,31,068-07-3518,Scientist,9623.005,,7,9,29.06745738,5,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,17.97113714,5.13,11,Bad,2154.580902,27.7462798,18 Years and 3 Months,Yes,26.24081335,100.411954,Low_spent_Small_value_payments,232.7186531,0,-0.3862,1.0676,0.0446,0.9061,-2.6026 -0x9031,CUS_0x1e87,August,25,988-83-0517,Lawyer,167489.4,,1,1,10.28836175,2,"Not Specified, and Payday Loan",10.38280046,11,8.51,5,Good,1157.838892,35.86161273,26 Years and 11 Months,No,196.0304653,724.9034891,High_spent_Large_value_payments,1170.592107,0,0.0267,-0.5103,-0.7365,-1.0624,-1.081 -0x903d,CUS_0x8d7e,August,42,911-18-9186,Accountant,21490.82,1812.901667,3,5,5,4,"Payday Loan, Payday Loan, Payday Loan, and Auto Loan",9.584268047,6,8,5,Standard,377.9891937,27.28382738,26 Years and 5 Months,Yes,58.14835817,110.0359711,High_spent_Small_value_payments,285.1161798,0,-0.3447,1.3199,-1.6589,-0.4956,-0.2015 -0x9049,CUS_0x79b8,August,28,028-33-6202,Accountant,34392.44,,9,6,30,3,"Auto Loan, Payday Loan, and Credit-Builder Loan",,21.88680323,13.84,12,Standard,2758.22056,27.84975991,12 Years and 8 Months,NM,80.04324652,,Low_spent_Medium_value_payments,216.5604283,0,-1.1177,0.9023,0.8982,-1.8532,-2.4425 -0x9055,CUS_0xab2b,August,35,559-25-3277,Entrepreneur,31985.64,2537.47,5,6,11,4,"Not Specified, Auto Loan, Mortgage Loan, and Student Loan",27.71171881,21.38473377,15.35,7,_,2917.822772,31.56875006,5 Years and 10 Months,Yes,65.83466693,302.6406399,Low_spent_Small_value_payments,175.2716932,0,-0.0717,-0.0254,0.6298,2.1522,0.1259 -0x9061,CUS_0xa73b,August,41,341-87-3689,Scientist,26526.93,,4,7,13,4,"Student Loan, Not Specified, Home Equity Loan, and Auto Loan",9.653318343,9.567085407,5.3,1,Standard,973.395971,35.35611944,30 Years and 6 Months,Yes,76.55602868,142.2270684,Low_spent_Small_value_payments,291.1746529,0,0.7798,1.064,-0.0684,0.8785,0.6685 -0x906d,CUS_0xa980,August,34,787-43-5273,Mechanic,70360.58,6051.381667,3,6,12,1,Payday Loan,4.448375498,7,1.15,2,Good,946.96,40.06863539,18 Years and 2 Months,No,50.41366815,638.6316912,Low_spent_Small_value_payments,206.0928073,0,0.3036,-1.0083,0.1384,-1.3427,-0.0283 -0x9079,CUS_0x734a,August,22,549-24-0925,Developer,36349.28,2885.106667,6,8,26,4,"Auto Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",30.76208182,22.60904661,17.25,12,Bad,2425.939558,39.09992959,10 Years and 8 Months,Yes,72.66080283,234.3922888,Low_spent_Medium_value_payments,261.457575,0,-0.569,-0.1878,0.7351,0.7889,-0.0751 -0x9085,CUS_0x56c5,August,22,978-95-3432,Developer,17701.62,,5,4,13,4,"Home Equity Loan, Not Specified, Not Specified, and Personal Loan",16.93444554,13,9.37,11,_,816.95,29.18679553,13 Years and 11 Months,Yes,38.24882791,111.8982017,Low_spent_Medium_value_payments,264.3664704,0,0.916,1.3875,-1.0134,0.1368,0.9477 -0x9091,CUS_0x8924,August,40,343-62-3057,Lawyer,19008.32,1825.026667,4,3,7,2,"Personal Loan, and Student Loan",18.93890284,13,7.79,7,Standard,673.99,38.49185731,,No,31.09390071,165.2413235,Low_spent_Small_value_payments,276.1674424,0,-2.3916,-1.127,-0.5137,2.1807,-0.7317 -0x909d,CUS_0x9296,August,20,291-14-0882,Manager,8649.85,,7,10,35.06745738,5,"Payday Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,21,8.04,13,Bad,2512.790954,36.65437033,,NM,68.5454725,23.54436063,Low_spent_Medium_value_payments,280.5123686,0,0.1725,0.3054,0.1584,-0.1734,0.6335 -0x90a9,CUS_0x2d17,August,32,821-45-9270,Media_Manager,23401.58,,5,7,8,0,,,19,9.16,11,Standard,1433.84,29.4979287,16 Years and 6 Months,Yes,0,113.8352399,Low_spent_Small_value_payments,388.1779268,0,1.1274,-0.7269,-0.6217,0.0107,0.8391 -0x90b5,CUS_0x10c5,August,26,041-74-6785,_______,158623.16,,2,7,10,1,Payday Loan,5.151979031,5.799314511,6.04,0,Good,1243.143175,41.79680012,30 Years and 2 Months,No,91.03390498,282.7186891,High_spent_Medium_value_payments,1194.307073,0,0.5911,0.1225,-0.0055,-0.6488,0.1626 -0x90c1,CUS_0x3a9d,August,26,725-74-3647,Scientist,88726.46,7104.871667,2,3,6.288361749,100,"Personal Loan, Mortgage Loan, and Home Equity Loan",,4,8.92,4,_,425.9507949,37.13419122,31 Years and 9 Months,No,161.2242491,615.4202051,High_spent_Medium_value_payments,627.1544606,0,0.9862,-0.0144,-1.2961,0.3976,-1.2512 -0x90cd,CUS_0x938,August,25,#F%$D@*&8,Architect,12593.445,,4,4,6.288361749,2,"Personal Loan, and Credit-Builder Loan",,,8.42,5,Standard,43.68,37.82502778,16 Years and 10 Months,Yes,18.94454818,474.6141541,Low_spent_Small_value_payments,292.7241338,0,0.2375,-1.3877,-0.4393,-0.5125,-0.8908 -0x90d9,CUS_0x5184,August,22,998-89-8313,Architect,72757.26,5816.105,2,2,4,0,,16.46247309,,5.65,2,Good,522.38,39.00632557,22 Years and 10 Months,No,0,128.6418016,High_spent_Medium_value_payments,702.9686984,0,-1.0725,-0.8567,0.2785,-0.3238,1.2309 -0x90e5,CUS_0x45ab,August,42,#F%$D@*&8,_______,91111.98,,6,3,16,6,"Debt Consolidation Loan, Payday Loan, Not Specified, Auto Loan, Not Specified, and Credit-Builder Loan",16.9822553,12,14.91,7,Standard,729.0281407,40.37102102,11 Years and 3 Months,Yes,421.3789056,193.766861,High_spent_Medium_value_payments,410.5837303,0,0.6239,-1.4084,-0.5947,-0.1696,1.1318 -0x90f1,CUS_0x7e7f,August,45,171-52-8384,Doctor,73439.26,6144.938333,8,7,6,4,"Debt Consolidation Loan, Auto Loan, Auto Loan, and Auto Loan",18.29143794,16,10.71,5,Standard,613.92,26.13445109,18 Years and 3 Months,No,186.3811784,408.3665151,Low_spent_Small_value_payments,309.7461398,0,-1.4075,0.8956,-1.7882,-1.0674,1.2805 -0x90fd,CUS_0x16be,August,38,241-14-6353,Doctor,62983.02,5525.585,5,3,20,6,"Personal Loan, Mortgage Loan, Not Specified, Not Specified, Payday Loan, and Debt Consolidation Loan",7.61374084,8,13.14,5,Standard,1469.91,32.20993301,7 Years and 5 Months,Yes,199.4797293,589.2433377,Low_spent_Small_value_payments,53.83543306,0,-1.58,0.0469,-0.4975,0.3261,-0.5742 -0x9109,CUS_0x325f,August,34,153-16-9858,Architect,13840.485,,6,7,17,4,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Auto Loan",16.25605314,15,5.56,6,_,687,28.32687412,19 Years and 5 Months,Yes,35.08888572,80.71198479,Low_spent_Small_value_payments,279.4365045,0,-0.699,1.1247,-0.7017,-0.0937,0.0903 -0x9115,CUS_0x332c,August,36,#F%$D@*&8,Media_Manager,17693.62,,9,9,34.06745738,2,"Payday Loan, and Student Loan",,19.25817713,14.29,13,Standard,2944.120947,36.05420715,10 Years and 10 Months,Yes,20.00324805,10000,Low_spent_Small_value_payments,346.2131915,0,1.8893,-1.2241,0.6407,0.5653,1.9779 -0x9121,CUS_0xb163,August,42,085-73-7726,Architect,101029.59,,3,5,9,3,"Auto Loan, Not Specified, and Not Specified",18.09623533,12,10.02,5,_,237.9934592,38.93676352,14 Years and 2 Months,Yes,192.8950127,169.1896084,High_spent_Large_value_payments,722.7092461,0,0.3232,-0.5609,0.7442,0.3292,1.698 -0x912d,CUS_0x2467,August,20,772-51-2153,Media_Manager,61279.77,,6,3,17,5,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",12.86918701,11,12.39,9,Standard,1836.43,34.86639794,10 Years and 0 Months,Yes,430.716701,,!@9#%8,470.6528889,0,-2.0145,0.8076,-0.9987,-1.5166,-0.5196 -0x9139,CUS_0x4484,August,44,725-12-6374,Architect,38365.21,3258.100833,4,4,4.288361749,2,"Not Specified, and Student Loan",10.76869055,11,4.16,5,Good,108.2702235,37.5070227,29 Years and 2 Months,No,35.0070255,635.8287657,Low_spent_Large_value_payments,368.9293947,0,-1.1929,0.4213,0.6259,-0.7302,-1.1869 -0x9145,CUS_0x703c,August,55,537-15-0590,Architect,131113.28,,1,4,5.288361749,2,"Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",12.11002474,11,6.1,2,Good,864.5353848,26.71122664,17 Years and 2 Months,No,258.360226,690.6762977,High_spent_Large_value_payments,843.5661934,0,-0.588,-1.0044,-1.2498,0.7883,0.8671 -0x9151,CUS_0xadf2,August,24,098-99-7773,Architect,99663,,5,3,7,4,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",0,0,9.5,4,Good,89.74512419,31.83007542,21 Years and 0 Months,NM,293.3183174,,High_spent_Medium_value_payments,603.8739643,0,0.0182,-1.0692,-0.7401,-0.7906,-1.8813 -0x915d,CUS_0x5321,August,27,301-55-3014,Accountant,38897.52,3402.46,5,5,3,1,Student Loan,,7,7.01,2,Good,286.43,29.17689795,22 Years and 9 Months,No,76076,146.0576093,Low_spent_Small_value_payments,457.7253903,0,-0.5968,1.9948,0.38,-0.6707,1.4609 -0x9169,CUS_0x5f43,August,55,708-15-7663,Entrepreneur,29964.04,2223.739889,6,494,11.28836175,2,"Not Specified, Auto Loan, and Credit-Builder Loan",15.87620197,14,5.73,4,Standard,107.0133846,27.61915567,33 Years and 6 Months,NM,258.7692837,522.9457484,High_spent_Medium_value_payments,337.025363,0,-1.314,0.353,-2.4446,-1.1526,1.3723 -0x9175,CUS_0xae47,August,18,368-25-5594,Doctor,68657.76,5558.48,6,4,16,6,"Payday Loan, Auto Loan, Student Loan, Student Loan, Auto Loan, and Not Specified",14.60525332,14.4911929,11.06,9,Standard,1747.081962,27.89053924,17 Years and 9 Months,NM,282.6706473,107.6505563,High_spent_Medium_value_payments,415.5267964,0,-0.7568,0.1069,-1.7724,-0.3964,-1.5185 -0x9181,CUS_0x6117,August,28,478-07-5623,Lawyer,17570.58,,8,7,5,3,"Auto Loan, Debt Consolidation Loan, and Not Specified",10.13232163,8,8.77,10,Standard,884.54,31.07999974,15 Years and 2 Months,NM,42.47517658,12.91820434,High_spent_Medium_value_payments,314.0281191,0,-1.1347,-0.0759,1.0463,1.692,0.3593 -0x918d,CUS_0x1f4a,August,25,741-62-1913,Mechanic,102023.4,8535.95,6,5,6,0,,25.98522188,20,11.41,8,Good,271.96,28.98956697,22 Years and 6 Months,No,0,398.6561902,High_spent_Small_value_payments,714.9388098,0,0.6694,-1.427,-2.0589,0.8918,-0.9522 -0x9199,CUS_0x52d3,August,80,439-31-4578,Manager,93424.8,7549.4,8,7,15,1,Not Specified,,18,7.8,1,Standard,757.48,28.11922812,22 Years and 6 Months,No,46.95094517,,!@9#%8,897.4941972,0,0.0826,0.0201,1.1998,-1.8934,-0.7737 -0x91a5,CUS_0x29ae,August,46,899-22-2246,Mechanic,75723.81,5280.946608,5,7,1,0,,,20,-0.04,6,Good,1107.007304,40.92497844,33 Years and 6 Months,No,860.3708924,236.0145214,High_spent_Medium_value_payments,652.2814497,0,-1.9354,-0.7015,-1.1133,0.7675,-0.5178 -0x91b1,CUS_0xa514,August,38,896-84-1335,Media_Manager,15659.24,1469.232332,7,9,15,6,"Student Loan, Credit-Builder Loan, Student Loan, Payday Loan, Personal Loan, and Not Specified",47.10257761,32.59284797,12.03,9,_,2880.246542,37.4858598,10 Years and 6 Months,NM,149.1801156,,Low_spent_Medium_value_payments,243.965799,0,0.0107,-0.8677,0.5414,1.4795,0.2041 -0x91bd,CUS_0x6aec,August,36,#F%$D@*&8,Journalist,9290.25,,6,7,32,9,"Home Equity Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Not Specified",32.56902273,21.91076334,9.28,8,Bad,1866.592172,36.61160851,15 Years and 0 Months,Yes,40.85673733,36.77306304,!@9#%8,260.1889496,0,0.1721,1.3375,-1.1201,-0.4045,1.9931 -0x91c9,CUS_0x39d6,August,31,297-98-4713,_______,17416.5,,6,7,31,6,"Credit-Builder Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",5.181513338,8,7.9,12,_,2505.52,27.9442337,18 Years and 9 Months,Yes,65.22298549,126.1301757,Low_spent_Medium_value_payments,244.6843388,0,0.067,0.0485,0.2975,-0.6278,0.6299 -0x91d5,CUS_0x5e02,August,21,864-61-5672,Writer,21156.88,1643.073333,5,6,13,0,,10.16444369,7,14.12,5,Standard,386.38,28.7842902,16 Years and 9 Months,Yes,0,87.86265498,High_spent_Small_value_payments,336.4446783,0,0.3075,-1.9411,-0.0124,-0.1311,-1.0016 -0x91e1,CUS_0x842e,August,25,609-29-1019,_______,15881.58,1169.465,8,6,35.06745738,7,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Not Specified, Debt Consolidation Loan, and Payday Loan",,22.45472352,28.27,15,Bad,4141.272804,38.6969663,6 Years and 6 Months,Yes,67.15145011,22.66385125,High_spent_Large_value_payments,240.4109107,0,0.224,0.4945,1.0976,0.0854,0.4028 -0x91ed,CUS_0x3c9b,August,30,532-23-8409,Scientist,7199.325,,8,6,21,6,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",,22.69843077,16.46,9,_,5587.251531,27.08115381,3 Years and 5 Months,Yes,31.94138147,10.1075469,!@9#%8,268.8454466,0,0.0173,-1.6705,0.8087,-0.0273,1.9131 -0x91f9,CUS_0xb38b,August,20,700-56-1712,Accountant,80436.12,6643.01,3,4,13,6,"Not Specified, Debt Consolidation Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Not Specified",22.40687801,19,7.59,12,Standard,2409.33,24.51133648,7 Years and 8 Months,Yes,304.631707,550.4238115,Low_spent_Medium_value_payments,89.24548151,0,-1.2181,1.2122,-2.3653,-0.155,0.4642 -0x9205,CUS_0xa3fa,August,46,239-91-8699,Engineer,24282.15,,4,6,6,0,,19.34635535,14,4.92,0,Good,820.1337151,30.59498684,32 Years and 8 Months,NM,0,108.9965447,Low_spent_Large_value_payments,364.3607254,0,1.0331,0.3996,-1.1633,0.0495,0.2211 -0x9211,CUS_0x9281,August,36,114-10-2779,Engineer,46352.82,,6,9,33.06745738,4,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",,23.74912865,16.4,13,Bad,2888.459483,30.09695566,17 Years and 9 Months,Yes,93.10897495,229.252827,Low_spent_Medium_value_payments,330.9914101,0,-0.0824,0.2906,-0.4763,0.4007,0.6095 -0x921d,CUS_0x3a82,August,46,219-72-8338,Entrepreneur,20393.22,1803.435,7,7,12,7,"Payday Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",12.70120362,9,13.03,8,Standard,10.52,32.51695557,13 Years and 10 Months,Yes,99.81250237,88.73184481,Low_spent_Large_value_payments,261.7991528,0,-0.0735,-1.3239,-0.355,0.8364,-0.1358 -0x9229,CUS_0x8d90,August,41,#F%$D@*&8,Scientist,14826.93,916.7634182,6,6,17,9,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",,28,21.21,9,Bad,3732.22,27.56637507,7 Years and 10 Months,Yes,172.6672896,63.39586806,!@9#%8,224.6086741,0,1.366,2.1216,0.1533,-2.219,-0.1153 -0x9235,CUS_0xaed9,August,25,007-90-6393,Teacher,97566.81,8327.5675,0,3,6,3,"Student Loan, Auto Loan, and Not Specified",,4,3.68,2,Good,523.21,28.54222426,25 Years and 4 Months,No,203.4421695,194.5080928,High_spent_Large_value_payments,674.8064877,0,-1.2898,-1.3013,-0.3845,0.4467,0.4501 -0x9241,CUS_0x6e1e,August,38,#F%$D@*&8,Entrepreneur,61449.66,5333.805,8,8,25.88954781,6,"Student Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Payday Loan, and Student Loan",27.67407645,,7.25,,_,1501.861713,30.61472614,12 Years and 0 Months,Yes,1483.029858,102.9295579,High_spent_Medium_value_payments,503.0910026,0,-0.8617,0.7353,0.5663,-2.1746,0.0828 -0x924d,CUS_0x659b,August,18,061-02-5773,Writer,19980.36,,4,3,6,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,,14.44,8,Standard,1367.818374,40.32124464,22 Years and 5 Months,Yes,25.80543921,,Low_spent_Small_value_payments,348.6429032,0,-0.4871,-0.4014,1.1675,0.1389,-0.3411 -0x9259,CUS_0xa54d,August,39,022-66-6862,Writer,56047.34,4136.149386,3,6,1,4,"Not Specified, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",,8,6.27,4,Good,873.4303209,34.1340132,21 Years and 2 Months,No,402.2887999,204.1175006,Low_spent_Large_value_payments,414.8655262,0,0.254,0.6965,-0.7356,-1.2966,0.5393 -0x9265,CUS_0x9e3,August,18,795-25-5894,Developer,44756.64,3611.72,10,6,19,6,"Student Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,20.19671186,0.91,10,Bad,2003.711072,37.22180873,12 Years and 5 Months,Yes,116.6411474,171.2495224,Low_spent_Large_value_payments,343.2813302,0,-0.1352,0.2698,-1.4489,0.8725,-0.1451 -0x9271,CUS_0x2730,August,39,272-36-5834,Engineer,23289.74,,4,6,6,4,"Auto Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",,10,1.09,8,_,804.75,31.09736533,23 Years and 4 Months,No,40.09514487,115.984098,Low_spent_Large_value_payments,315.2019238,0,1.4923,1.8784,-0.9441,-1.342,1.3184 -0x927d,CUS_0xafbb,August,32,840-28-4257,Lawyer,26265.81,,3,3,17,4,"Credit-Builder Loan, Payday Loan, Personal Loan, and Debt Consolidation Loan",,19,18.48,6,Standard,1259.6,40.23352937,11 Years and 9 Months,Yes,46.66250172,52.43489151,High_spent_Medium_value_payments,397.3843568,0,-1.1301,0.3969,-1.0969,-1.1287,0.165 -0x9289,CUS_0xae92,August,26,978-16-2793,Teacher,94287.36,7823.28,4,4,13,2,"Student Loan, and Personal Loan",25.27315246,17,18.66,2,Standard,1261.99,24.30445667,16 Years and 2 Months,Yes,124.1430163,,Low_spent_Small_value_payments,231.3266575,0,-1.996,1.3705,1.5572,1.0414,0.2454 -0x9295,CUS_0x5e33,August,28,095-07-4805,Developer,14860.49,,10,8,24.95700519,100,"Mortgage Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",44.08747286,22.83396945,7.13,10,Standard,3215.52887,24.82207698,17 Years and 10 Months,Yes,1355.13399,81.21967493,Low_spent_Small_value_payments,273.2333824,0,-0.2508,1.0011,1.7159,-0.2746,0.1832 -0x92a1,CUS_0x5974,August,42,481-22-7460,Mechanic,81465.64,,10,6,34,7,"Home Equity Loan, Not Specified, Not Specified, Mortgage Loan, Personal Loan, Auto Loan, and Home Equity Loan",43.94984825,29.2797935,-5.01,10,Bad,5224.936341,38.8941306,11 Years and 9 Months,Yes,450.5851706,124.9358926,High_spent_Small_value_payments,354.4592701,0,0.3744,-1.5947,-0.0728,0.1671,-1.0907 -0x92ad,CUS_0xb7ca,August,29,869-43-2005,Developer,9550.435,,9,5,20.06745738,8,"Payday Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Mortgage Loan",23.07595279,15.61079207,1.85,14,Bad,2255.209803,24.3723158,12 Years and 8 Months,Yes,48.02113782,36.55743653,Low_spent_Large_value_payments,230.688096,0,-1.2883,-1.0217,0.2105,0.1321,-1.0523 -0x92b9,CUS_0xd88,August,40,819-73-4086,Journalist,11308893,,10,5,26,6,"Payday Loan, Not Specified, Student Loan, Payday Loan, Payday Loan, and Home Equity Loan",,22.29926525,10.33,16,Bad,1786.874818,39.19868046,,Yes,30.47353816,31.52473642,Low_spent_Small_value_payments,317.4457671,0,1.5835,-0.1293,0.589,-0.2722,-1.9335 -0x92c5,CUS_0x25b0,August,31,686-89-7086,Teacher,8819.74,866.9783333,10,8,21.95700519,6,"Auto Loan, Student Loan, Payday Loan, Payday Loan, Personal Loan, and Debt Consolidation Loan",,20.5582068,31.26,6,Bad,4671.550567,31.81249643,6 Years and 10 Months,NM,1345.688121,,Low_spent_Medium_value_payments,214.8694309,0,1.4193,0.2939,0.2597,-0.6229,-0.7999 -0x92d1,CUS_0x7623,August,19,315-73-7611,Musician,16518.68,,4,6,14,100,"Not Specified, Student Loan, Auto Loan, and Payday Loan",3.234030041,6,5.17,0,Standard,1277.8,33.74515609,,Yes,51.73970546,66.83964203,Low_spent_Small_value_payments,327.3763192,0,0.4128,-0.6152,0.0685,-0.1622,0.5294 -0x92dd,CUS_0xa72c,August,30,003-28-8343,Writer,32117.87,2720.489167,6,6,6,4,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",21.38116377,18,19.38,11,Standard,947.9177673,29.54125954,,NM,69.69259132,250.3552685,Low_spent_Large_value_payments,253.104915,0,-2.3135,-0.5069,-1.9369,0.8704,0.5589 -0x92e9,CUS_0x3870,August,26,758-17-1797,Manager,32720.38,,10,9,25.06745738,4,"Credit-Builder Loan, Student Loan, Personal Loan, and Payday Loan",37.26734091,22.87638105,6.77,6,_,2780.668135,41.86282069,7 Years and 0 Months,NM,75.89867167,170.0860147,High_spent_Small_value_payments,285.064859,0,1.0611,1.1184,0.8591,-0.3921,-0.3 -0x92f5,CUS_0xc9f,August,18,#F%$D@*&8,Scientist,21382.81,,7,5,14,2,"Debt Consolidation Loan, and Auto Loan",12.93231964,11,18.18,8,Standard,1059.86,33.04525145,7 Years and 5 Months,Yes,30.71014171,100.7011481,Low_spent_Small_value_payments,327.0787935,0,0.6422,-0.3628,-1.1142,1.4761,-1.5725 -0x9301,CUS_0x76ca,August,49,#F%$D@*&8,Mechanic,97010.16,8178.18,1,7,3,0,,0,1.167338482,-3.29,7,_,282.7035277,25.15909854,30 Years and 5 Months,No,0,10000,Low_spent_Medium_value_payments,659.928282,0,0.5921,0.3711,-0.4906,1.3421,2.2052 -0x930d,CUS_0x672c,August,19,450-62-5162,Manager,19569.27,,10,6,33,5,"Payday Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",30.86063971,20,26.03,7,Bad,3902.74,28.61206985,0 Years and 11 Months,NM,64.02497918,114.7529223,Low_spent_Large_value_payments,264.8993485,0,-1.4086,0.2104,0.1693,0.4278,-0.1231 -0x9319,CUS_0x909d,August,21,156-69-3703,Engineer,17686.19,,10,9,20.95700519,6,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Home Equity Loan",33.75653091,20.30252017,15.04,9,Bad,3532.49614,30.41897136,9 Years and 10 Months,Yes,1382.869141,,Low_spent_Small_value_payments,256.87034,0,-0.1597,-0.4955,0.0599,-0.7516,-0.2547 -0x9325,CUS_0x4ef0,August,23,797-45-1666,_______,7177.535,,9,9,16,5,"Payday Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Not Specified",,18.79432615,7.48,12,_,1488.889577,39.0545643,6 Years and 4 Months,NM,22.08428099,40.35012924,Low_spent_Small_value_payments,268.7783814,0,0.5962,0.9142,0.1282,-0.0965,-0.2376 -0x9331,CUS_0xacd6,August,42,333-29-1726,Engineer,83245.14,7037.095,2,3,8,1,Student Loan,3.309145517,5,5.47,9,Good,1229.4,29.88320712,21 Years and 0 Months,No,67.69217501,297.1735201,High_spent_Medium_value_payments,588.8438049,0,1.939,-1.121,1.0611,-0.3035,2.2728 -0x933d,CUS_0x49bf,August,31,067-13-9000,Musician,44056.29,3946.3575,4,5,29,5,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",20.85409566,19,14.55,13,Standard,1474.48,30.04858849,13 Years and 2 Months,Yes,139.3308661,263.0923104,High_spent_Small_value_payments,252.2125735,0,-0.813,-0.5848,-0.3426,-1.1552,0.2203 -0x9349,CUS_0x31ac,August,23,599-00-4004,Mechanic,20929.34,1838.111667,7,6,10,3,"Mortgage Loan, Personal Loan, and Mortgage Loan",8.383897799,8,8.28,8,Standard,695.45,32.49780755,14 Years and 5 Months,Yes,45.44267175,67.49512151,High_spent_Medium_value_payments,320.8733734,0,0.4075,0.5912,1.0766,-2.0823,-0.8331 -0x9355,CUS_0xaa62,August,45,059-43-1970,Teacher,19379.71,,8,5,19,4,"Payday Loan, Mortgage Loan, Personal Loan, and Student Loan",19.6582827,15,12.23,6,Standard,2010.92,39.9996911,14 Years and 2 Months,Yes,42.10086855,46.47211575,High_spent_Medium_value_payments,341.124599,0,1.0609,-0.7602,0.6502,-0.1362,0.518 -0x9361,CUS_0x1929,August,29,395-44-7800,Engineer,101586.12,,8,7,5772.288362,0,,6.626551415,8,2.28,7,Good,528.8747577,28.81657062,28 Years and 10 Months,No,0,1361.004114,Low_spent_Small_value_payments,272.3497011,0,-2.0101,-1.2965,-0.3165,-0.0389,0.3983 -0x936d,CUS_0x7703,August,39,401-95-5016,Writer,17129.91,1335.4925,5,1,5,3,"Auto Loan, Payday Loan, and Auto Loan",,7,9.36,6,Good,1307.4,32.24769999,26 Years and 10 Months,No,30.15286078,64.31665525,Low_spent_Small_value_payments,329.079734,0,0.5923,0.0259,1.1138,-0.4992,-0.4086 -0x9379,CUS_0xa387,August,27,959-82-5575,Writer,85303.08,6847.59,5,7,20,4,"Student Loan, Mortgage Loan, Personal Loan, and Payday Loan",13.02840257,11,15.37,3,Standard,1024.56,29.51711138,22 Years and 0 Months,Yes,264.2737027,825.7529114,Low_spent_Small_value_payments,,0,-1.8724,1.4708,1.0682,1.6667,-0.0759 -0x9385,CUS_0x51de,August,26,724-50-8362,Writer,66553.95,5581.1625,7,4,17,3,"Debt Consolidation Loan, Payday Loan, and Auto Loan",,17,11.59,6,Standard,574.55,38.68896533,10 Years and 4 Months,Yes,134.7539416,67.20471953,High_spent_Medium_value_payments,606.1575889,0,-0.2106,-1.0979,0.4154,1.7061,0.958 -0x9391,CUS_0x7a76,August,30,513-52-8804,Teacher,32795.94,2929.995,3,5,1,3,"Student Loan, Home Equity Loan, and Personal Loan",6.148261882,7,1.57,3,Good,654.3861941,29.44253114,23 Years and 4 Months,No,55.29188211,90.70973313,Low_spent_Large_value_payments,429.4379317,0,0.6031,0.0503,0.4885,-0.7677,0.238 -0x939d,CUS_0x8ce7,August,22,829-65-6560,Doctor,60610.14,5322.845,6,8,15.88954781,6,"Auto Loan, Student Loan, Not Specified, Student Loan, Payday Loan, and Student Loan",,,14.65,12,Standard,2096.742953,31.9578381,12 Years and 4 Months,Yes,1527.501517,168.9516237,High_spent_Medium_value_payments,391.501278,0,0.8698,0.9665,0.2163,-0.4813,0.3476 -0x93a9,CUS_0x97e3,August,48,830-60-4167,Doctor,10973.515,907.4595833,8,4,5,3,"Not Specified, Student Loan, and Payday Loan",14.96460876,14,16.88,6,Standard,927.55,34.19372025,28 Years and 8 Months,Yes,22.58008643,41.40029311,Low_spent_Small_value_payments,316.7655788,0,-0.0018,-0.94,1.3587,-0.5276,0.3492 -0x93b5,CUS_0xa4a5,August,35,378-19-5029,_______,66361.76,,10,10,25.88954781,9,"Student Loan, Mortgage Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Student Loan, and Payday Loan",23.37980368,19,9.46,11,Bad,2531.63,38.47452987,14 Years and 5 Months,Yes,1694.806358,109.7069107,High_spent_Medium_value_payments,329.2713166,0,-0.2244,0.5378,-0.1213,0.0825,0.7067 -0x93c1,CUS_0xb1c4,August,34,#F%$D@*&8,Accountant,14525.53,,10,8,29.88954781,6,"Not Specified, Debt Consolidation Loan, Payday Loan, Student Loan, Payday Loan, and Home Equity Loan",29.3836342,18,21.38,16,Bad,2607.995412,31.72623774,12 Years and 11 Months,Yes,1375.057289,51.45949663,High_spent_Small_value_payments,260.0251822,0,-0.0954,-0.0604,-0.0468,0.3952,-0.0894 -0x93cd,CUS_0xc181,August,37,675-08-7274,_______,25567.26,1970.605,3,7,15,3,"Debt Consolidation Loan, Payday Loan, and Personal Loan",12.68528541,8,9.5,6,Standard,1446.82,23.5237423,21 Years and 10 Months,Yes,44.83155236,145.3852203,Low_spent_Large_value_payments,276.8437274,0,1.3848,-0.508,0.8194,-0.5104,-0.0145 -0x93d9,CUS_0x15df,August,29,472-10-4696,Manager,162713.28,,2,3,422,1,Credit-Builder Loan,0.75140247,5,3.13,3,Good,640.07,29.74449753,29 Years and 9 Months,No,97.85936259,560.0343667,Low_spent_Medium_value_payments,989.3502707,0,0.6532,1.9214,0.1467,1.1187,1.5358 -0x93e5,CUS_0xbd64,August,27,488-49-1260,Manager,28749.39,2181.7825,7,3,10,4,"Mortgage Loan, Student Loan, Debt Consolidation Loan, and Not Specified",,18,-2.04,3,_,988.1393314,34.80159806,17 Years and 2 Months,No,93.13682412,194.1675333,Low_spent_Large_value_payments,223.267533,0,-0.8601,-0.5172,-0.0374,1.0702,0.2766 -0x93f1,CUS_0x181a,August,60,165-48-8166,Mechanic,34676.38,2592.248483,5,5,18,100,Student Loan,14.69081587,15,8.93,2,Standard,1190.084077,29.52694721,16 Years and 0 Months,Yes,200.8180757,228.1640516,Low_spent_Small_value_payments,340.4641683,0,0.2464,1.6931,0.2259,-1.0346,-0.7799 -0x93fd,CUS_0x922f,August,42,477-02-5379,Doctor,30243.64,2743.303333,10,7,23,6,"Payday Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",26.87486272,19.84817541,2.32,15,Bad,2305.680852,35.55670755,15 Years and 5 Months,NM,85.88494194,42.07894093,!@9#%8,386.3664505,0,0.2666,0.0116,0.7326,-0.4367,-0.5172 -0x9409,CUS_0x65ae,August,48,#F%$D@*&8,Journalist,41832.64,3713.053333,7,7,10,3,"Mortgage Loan, Student Loan, and Student Loan",,24.26320133,18.22,3,Standard,871.0586367,33.15286078,26 Years and 3 Months,Yes,17362,99.8884924,High_spent_Medium_value_payments,458.6751615,0,-0.223,-0.3389,-0.6433,-0.2891,-0.0528 -0x9415,CUS_0x8b06,August,40,414-76-2511,Journalist,20946.12,1955.51,10,9,18.88954781,7,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Not Specified, and Mortgage Loan",38.56868159,27,25.07,12,Bad,3093.39,34.3558775,1 Years and 8 Months,Yes,1427.558789,,Low_spent_Small_value_payments,116.5421992,0,-1.0507,1.4912,0.4104,1.0005,0.6099 -0x9421,CUS_0x6371,August,29,291-73-9080,Manager,9485.61,,10,579,35.06745738,9,"Mortgage Loan, Auto Loan, Personal Loan, Payday Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",35.58679945,19,9.98,7,Bad,2794.070954,32.81063519,16 Years and 6 Months,Yes,53.17130481,10000,Low_spent_Small_value_payments,272.0386691,0,-0.6594,-0.3319,1.6693,-0.392,-0.7266 -0x942d,CUS_0xbfd,August,39,828-42-8328,Mechanic,48518.88,,7,9,25,5,"Home Equity Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",15.97624757,,3.48,11,_,3771.66,29.79213872,12 Years and 11 Months,Yes,117.9504525,90.59778616,High_spent_Large_value_payments,452.7757614,0,0.267,0.5479,0.3875,-0.406,1.0015 -0x9439,CUS_0x965e,August,37,871-95-3874,Teacher,17116.05,,1,5,11,3,"Auto Loan, Payday Loan, and Personal Loan",1.631396451,5,6.18,3,Good,875.6570722,37.62886007,25 Years and 3 Months,No,22.96869166,77.76356584,Low_spent_Small_value_payments,339.0139413,0,-0.2622,0.5272,-0.6899,-0.9263,-0.8163 -0x9445,CUS_0x415f,August,22,563-25-4248,Manager,99384.72,8236.06,4,6,9.288361749,100,"Personal Loan, Payday Loan, Not Specified, and Personal Loan",13.00144984,14,9.61,1,_,199.26,39.39752482,20 Years and 5 Months,No,249.3459909,573.5276655,High_spent_Small_value_payments,680.6698046,0,-0.317,1.9126,-0.3049,0.0388,0.8828 -0x9451,CUS_0x641a,August,21,647-00-7060,Engineer,59431.26,5130.605,8,5,14,0,,,16,19.01,5,Standard,474.04,38.54155212,16 Years and 0 Months,Yes,0,418.0834052,Low_spent_Small_value_payments,384.9770948,0,0.9743,0.2801,0.1592,-0.1351,-0.5515 -0x945d,CUS_0xc29b,August,35,608-51-9169,Lawyer,19424.31,1689.6925,7,5,33,7,"Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Payday Loan, and Student Loan",,25.39195353,29.16,11,Bad,2897.714063,24.91911186,1 Years and 9 Months,Yes,103.3186275,181.1910841,Low_spent_Small_value_payments,174.4595385,0,-0.7523,1.4305,-0.3592,-0.1886,0.6969 -0x9469,CUS_0xb9d,August,21,030-76-7737,Mechanic,51506.55,,4,6,279,4,"Home Equity Loan, Auto Loan, Personal Loan, and Personal Loan",,,13.4,4,Standard,2681.39,27.91419516,8 Years and 10 Months,Yes,160.9924108,,Low_spent_Small_value_payments,261.2767968,0,0.9265,0.4158,-1.0628,1.7507,-0.36 -0x9475,CUS_0x6d9f,August,26,369-28-8057,Media_Manager,15658.16,,10,8,21.88954781,6,"Payday Loan, Auto Loan, Student Loan, Payday Loan, Personal Loan, and Credit-Builder Loan",,19.22698985,16.67,7,Standard,2857.374862,25.95870705,11 Years and 10 Months,Yes,1376.519349,105.487138,Low_spent_Small_value_payments,223.5480982,0,-0.76,0.152,0.117,1.3974,0.8 -0x9481,CUS_0xb04b,August,40,807-44-4970,Manager,170391.52,14096.29333,3,3,3.288361749,0,,5.467730976,7.245165222,11.98,1,Good,340.451544,41.9778982,30 Years and 8 Months,No,0,964.1905807,High_spent_Small_value_payments,1125.376214,0,1.4695,0.3088,-0.0435,0.5253,-0.6858 -0x948d,CUS_0x5a95,August,32,476-07-5355,Accountant,34188.81,,0,4,5,1,Home Equity Loan,0,0,10.22,1,Good,1076.67,39.79426622,23 Years and 10 Months,No,25.17859848,103.2494321,Low_spent_Small_value_payments,433.4787194,0,0.5572,0.2813,0.0235,1.8261,0.3594 -0x9499,CUS_0x1fd1,August,32,005-25-5327,Writer,33494.36,,10,9,29.95700519,8,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Student Loan, Not Specified, Home Equity Loan, Student Loan, and Payday Loan",,33.23189221,8.78,9,Bad,3808.813841,40.18211193,9 Years and 6 Months,Yes,1520.738977,,High_spent_Medium_value_payments,209.7463821,0,0.8446,-0.8036,1.6675,2.0936,-1.547 -0x94a5,CUS_0x7398,August,18,981-68-0892,Entrepreneur,43213.44,,7,7,17,8,"Auto Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",30.93468167,23,16.56,14,Bad,4525.41,26.69459732,14 Years and 4 Months,Yes,162.9720423,40.59797515,High_spent_Large_value_payments,419.1419825,0,-1.0156,-0.4928,0.5459,1.2312,0.9877 -0x94b1,CUS_0x96ad,August,28,345-00-0295,Engineer,15755.455,,8,4,8.288361749,0,,,15,12.17,3,Standard,132.378078,38.24062774,25 Years and 9 Months,Yes,0,530.4595911,Low_spent_Medium_value_payments,343.50235,0,-0.6616,-0.1576,1.0156,1.3067,-0.2404 -0x94bd,CUS_0x1e72,August,36,895-93-2668,Architect,26670.7,1996.558333,5,4,5,3,"Debt Consolidation Loan, Payday Loan, and Payday Loan",11.85700749,13,15.96,5,_,502.35,30.73318109,11 Years and 9 Months,Yes,38.9895816,38.5309103,High_spent_Small_value_payments,382.1353414,0,-0.5136,0.1347,0.0865,0.4412,0.6254 -0x94c9,CUS_0x8e35,August,31,310-24-3292,Engineer,51093.9,4347.825,9,5,26,4,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",36.8955488,23,7.44,11,Bad,1997.75,28.30963868,6 Years and 5 Months,Yes,23084,10000,!@9#%8,498.6833585,0,0.3581,-0.7876,1.5096,0.8271,0.8815 -0x94d5,CUS_0xbfe8,August,18,629-08-5018,Entrepreneur,15007.61,,6,6,28.06745738,4,"Credit-Builder Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",,21.52388287,22.28,13,Standard,3102.038783,29.46798642,16 Years and 4 Months,Yes,49.65825698,,!@9#%8,219.1657864,0,0.4822,-0.8704,0.2022,-1.3914,-0.5855 -0x94e1,CUS_0xc727,August,37,559-56-3897,Media_Manager,91686.69,,3,3,3,2,"Student Loan, and Mortgage Loan",0.65834344,1.188325552,6.69,1412,Good,659.8526681,30.27420165,18 Years and 5 Months,No,83.09116326,,Low_spent_Medium_value_payments,460.1803585,0,0.1519,1.3168,-1.055,0.8579,0.3348 -0x94ed,CUS_0xc38d,August,50,693-25-9938,Doctor,21196.23,,5,6,11,4,"Not Specified, Credit-Builder Loan, Student Loan, and Home Equity Loan",24.49384793,19,18.92,6,_,1383.67,34.36436713,16 Years and 2 Months,Yes,61.54129633,50.62715115,Low_spent_Large_value_payments,356.1668025,0,-1.4065,-0.1837,-0.5247,-1.7895,-0.7501 -0x94f9,CUS_0x46bf,August,40,155-04-1050,Scientist,18344.75,,6,6,32.06745738,6,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Mortgage Loan",33.26192261,17,12.39,10,Bad,2265.690954,35.74569178,16 Years and 0 Months,Yes,76.55205263,26.35766845,High_spent_Medium_value_payments,302.2429076,0,-2.2472,2.0677,-0.3857,-1.364,1.311 -0x9505,CUS_0x766b,August,58,586-93-2728,Manager,84094.1,,0,2,2.288361749,2,"Student Loan, Personal Loan, and Debt Consolidation Loan",,12,11.12,4,_,486.5089269,40.08013527,,No,185.232478,734.5443977,Low_spent_Large_value_payments,490.6007134,0,-0.9756,0.8562,-2.8287,0.0248,1.3748 -0x9511,CUS_0x52bf,August,46,331-26-0350,Manager,147334.32,12223.86,5,1,7,0,,,12,8.96,4,Good,1133.25,40.06625267,25 Years and 3 Months,No,0,690.4668649,Low_spent_Medium_value_payments,811.9191351,0,-0.7488,0.4141,-1.4725,-0.7368,-1.2408 -0x951d,CUS_0xc24c,August,21,242-49-5854,Engineer,56850.32,,3,6,5,4,"Auto Loan, Auto Loan, Student Loan, and Personal Loan",,9,11.94,584,_,201.22,38.5502869,,Yes,135.2489551,114.2766106,High_spent_Medium_value_payments,475.827101,0,0.4679,0.2115,-0.0368,0.4399,-0.7001 -0x9529,CUS_0x9a7,August,54,818-94-9241,Engineer,116941.71,9614.1425,0,7,6,0,,,2,10.03,2,Good,721.24,42.04216679,20 Years and 0 Months,No,0,10000,High_spent_Large_value_payments,1087.63597,0,-0.5003,1.2345,-0.9399,0.3046,0.8234 -0x9535,CUS_0x67c7,August,22,220-80-3397,Mechanic,41644.48,,6,7,22,8,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",,21.67058314,4.77,7,Bad,3472.330207,23.56884355,8 Years and 11 Months,Yes,188.1393658,,High_spent_Medium_value_payments,329.1326443,0,-0.5089,-0.6649,-0.819,0.1838,0.7573 -0x9541,CUS_0xb56c,August,19,106-83-0154,Accountant,60801.28,,3,1235,2,2,"Personal Loan, and Student Loan",11.2955956,11,7.39,3,Good,1179.956148,34.0528649,22 Years and 8 Months,NM,89.583483,11596.75564,High_spent_Medium_value_payments,506.033905,0,-0.5709,-0.6282,-0.679,0.4747,0.2023 -0x954d,CUS_0x424,August,22,180-42-9738,Architect,30758.43,,4,5,8,1,Credit-Builder Loan,20.4205318,16,7.47,6,Standard,471.15,29.94101729,30 Years and 6 Months,Yes,24.40311987,,High_spent_Medium_value_payments,440.1320161,0,1.3834,-1.0776,-0.6149,-0.247,0.284 -0x9559,CUS_0x5d77,August,20,305-67-0878,Mechanic,66886.28,,6,9,17,4,"Credit-Builder Loan, Payday Loan, Payday Loan, and Payday Loan",,25.39183976,14.43,11,Bad,2876.365148,37.33840759,16 Years and 8 Months,Yes,436.6439568,234.2489444,Low_spent_Medium_value_payments,409.1034626,0,-0.327,0.138,1.9753,1.764,-0.1465 -0x9565,CUS_0xc6fa,August,26,600-70-6095,Entrepreneur,29648.86,2229.265672,3,5,15,3,"Auto Loan, Home Equity Loan, and Not Specified",,20,17.93,11,Standard,554.0413566,35.34492109,29 Years and 11 Months,Yes,340.6947185,48.46866383,High_spent_Medium_value_payments,405.0915613,0,-0.197,-0.4614,-0.7953,-0.5183,-1.0423 -0x9571,CUS_0x1feb,August,47,098-21-5869,Engineer,31254.23,,0,6,4,4,"Credit-Builder Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",0.506110468,2,9.94,6,Good,783.52,36.80974644,30 Years and 2 Months,No,74.50361698,340.9873415,Low_spent_Small_value_payments,141.0609581,0,0.8344,-0.7391,0.1512,-0.6961,0.0811 -0x957d,CUS_0x9e41,August,23,039-89-0333,Mechanic,18417.19,1754.765833,9,10,5616.067457,5,"Debt Consolidation Loan, Auto Loan, Personal Loan, Student Loan, and Auto Loan",31.4752566,17,18.24,13,Bad,4906.030954,26.84598707,6 Years and 3 Months,Yes,53.69033545,96.03638576,!@9#%8,269.0295742,0,-2.2226,0.5773,0.2721,1.0167,-0.2976 -0x9589,CUS_0xc52a,August,46,601-99-6960,Writer,35032.66,2853.388333,10,6,33,7,"Credit-Builder Loan, Student Loan, Personal Loan, Mortgage Loan, Payday Loan, Payday Loan, and Student Loan",,21.91736964,2.52,10,Bad,2040.343431,25.08617646,11 Years and 5 Months,Yes,150.5000973,106.7356793,Low_spent_Small_value_payments,318.1030568,0,1.268,1.7527,1.0709,-1.6062,0.3782 -0x9595,CUS_0x8b3e,August,24,266-96-2968,Doctor,32835.4,,2,6,2,1,Payday Loan,18.89519244,,5.35,7,_,866.86,34.6964132,27 Years and 0 Months,No,14.03481796,66.03387917,Low_spent_Large_value_payments,458.9596362,0,0.5475,-0.2924,-0.0819,-0.4683,-0.1269 -0x95a1,CUS_0x4409,August,18,024-84-1689,Writer,82899.52,,6,5,29,9,"Payday Loan, Auto Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",42.66616459,23,1.96,12,Bad,2550.26,30.72200515,5 Years and 2 Months,Yes,575.2949267,10000,High_spent_Medium_value_payments,145.8215976,0,0.6656,0.4364,-0.9587,-0.5043,0.0204 -0x95ad,CUS_0x6ee1,August,49,119-35-9497,Entrepreneur,133868.52,11000.71,5,4,8,3,"Mortgage Loan, Not Specified, and Personal Loan",0.955373498,3.647421913,6.79,0,Good,588.9071171,40.6212322,30 Years and 3 Months,No,328.3347072,411.2168616,Low_spent_Medium_value_payments,640.5194312,0,0.6329,-1.1598,-0.6201,1.5783,-1.032 -0x95b9,CUS_0x2ce8,August,36,598-78-9078,Manager,28706.94,,4,4,12,0,,,12,7.33,1,Good,702.368554,37.44923499,16 Years and 9 Months,No,0,189.9167413,Low_spent_Small_value_payments,371.3420979,0,-2.085,0.7416,-1.9373,-0.9252,0.4403 -0x95c5,CUS_0x64a4,August,46,907-98-0707,Developer,35372.36,,8,5,25,100,"Home Equity Loan, Auto Loan, Mortgage Loan, Auto Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",29.59032044,23,36.97,9,_,3850.97,34.48340224,7 Years and 8 Months,Yes,173.2419659,77.47750358,High_spent_Medium_value_payments,285.8501972,0,0.8886,-0.0425,0.9605,-0.9832,-0.0665 -0x95d1,CUS_0x4881,August,38,803-60-0204,Media_Manager,37263.45,3156.2875,3,3,7,0,,,6,7.76,2,Good,1238.06,41.94393819,31 Years and 3 Months,NM,0,,High_spent_Medium_value_payments,500.1341852,0,-1.2349,-0.3308,-0.5388,1.2314,-0.6309 -0x95dd,CUS_0x4527,August,30,210-47-9099,Entrepreneur,32426.78,2999.231667,6,5,2,2,"Payday Loan, and Debt Consolidation Loan",,15,3.41,1,Good,929.8745857,23.26791857,22 Years and 6 Months,No,32.36628526,,High_spent_Small_value_payments,408.0234722,0,-1.6631,-0.9695,1.1094,0.1193,-0.2193 -0x95e9,CUS_0x6240,August,30,439-23-4642,Journalist,33439.39,,8,6,5.288361749,4,"Not Specified, Credit-Builder Loan, Personal Loan, and Personal Loan",10.4031268,11,10.58,3,Standard,372.17,25.7829743,15 Years and 10 Months,Yes,58.60518842,529.3992153,High_spent_Small_value_payments,381.2946407,0,-1.6362,-0.8991,-0.9089,1.1863,0.1462 -0x95f5,CUS_0xb9f9,August,30,155-23-5479,Writer,54231.16,4727.263333,6,3,18,4,"Payday Loan, Student Loan, Home Equity Loan, and Mortgage Loan",16.39749022,14,18.89,,Standard,1293.76,34.22144417,15 Years and 5 Months,Yes,129.7066303,,High_spent_Medium_value_payments,517.482936,0,-0.1015,-0.4376,0.2055,-0.0198,0.0438 -0x9601,CUS_0xbd09,August,24,#F%$D@*&8,Doctor,42122.28,3211.19,2,6,5,2,"Payday Loan, and Not Specified",0,4,0.53,7,Good,775.54,39.29933787,19 Years and 8 Months,No,61.36280292,56.25446375,High_spent_Medium_value_payments,453.5017333,0,1.2939,0.0833,0.1241,-0.3052,-0.1748 -0x960d,CUS_0x2f11,August,47,148-19-8466,Writer,28022.9,,5,7,5,1,Debt Consolidation Loan,12.84702427,11.70956256,12.79,9,Standard,420.209719,29.68447014,20 Years and 8 Months,NM,11.74467148,120.7733113,Low_spent_Small_value_payments,367.3061839,0,0.9306,1.3273,0.7837,-1.3679,0.7558 -0x9619,CUS_0x9bc8,August,40,676-02-7685,Musician,44812.78,3770.398333,3,6,12,0,,18.90110386,16,7.57,31,Good,628.32,29.96720463,31 Years and 2 Months,No,0,,Low_spent_Large_value_payments,555.1462634,0,1.2076,-1.9296,0.8215,-1.0951,-0.7708 -0x9625,CUS_0x1621,August,41,470-60-1304,Writer,18329.93,1312.494167,7,6,6,6,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",14.34990324,11,18.41,6,Standard,161.04,35.15460513,19 Years and 11 Months,NM,51.96709426,176.1227535,Low_spent_Small_value_payments,193.1595689,0,0.937,0.7573,1.404,1.5623,0.3991 -0x9631,CUS_0x33e0,August,25,655-15-0889,Entrepreneur,12427.74,767.645,6,6,11,4,"Payday Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",,12.42185564,9.61,1,Good,243.02341,30.35569492,27 Years and 5 Months,No,33.80826908,100.6794546,Low_spent_Small_value_payments,232.2767763,0,-2.3107,-1.0693,-1.6216,-0.7588,0.7855 -0x963d,CUS_0x376f,August,40,623-90-3707,Doctor,60575.7,4794.975,4,7,15,3,"Home Equity Loan, Personal Loan, and Credit-Builder Loan",,18,,4,Standard,832.55,37.61073057,30 Years and 3 Months,No,135.037723,,Low_spent_Small_value_payments,92.00204314,0,-0.7201,1.0981,0.2437,-0.5022,-0.1909 -0x9649,CUS_0x87e2,August,43,#F%$D@*&8,Teacher,62359.82,,4,5,11,1,Personal Loan,13.58019168,12,14.94,3,Standard,250.56,34.60504097,24 Years and 4 Months,Yes,29.76576296,550.0125352,Low_spent_Small_value_payments,222.2868685,0,-0.2327,1.9259,-2.5524,-0.4521,0.2833 -0x9655,CUS_0x2e50,August,37,363-62-6314,Journalist,9987.295,,8,5,23,7,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Personal Loan",,22.49281097,7.03,16,Bad,3247.27644,33.69444359,3 Years and 11 Months,Yes,47.26374474,21.5967247,Low_spent_Medium_value_payments,268.9669889,0,-0.6783,-1.3178,-0.8143,-0.8311,0.1167 -0x9661,CUS_0xb9cd,August,20,521-86-5620,Mechanic,33146.84,2704.236667,6,4,11,1,Student Loan,20.91690609,,10.83,5,Standard,168.46,26.99663405,31 Years and 8 Months,Yes,19.92112515,212.8740454,Low_spent_Small_value_payments,327.6284962,0,-1.6271,0.331,0.4329,-0.2419,-1.5894 -0x966d,CUS_0x51e3,August,47,603-82-8438,Writer,98803.47,8099.6225,0,3,2.288361749,2,"Not Specified, and Debt Consolidation Loan",4.205805798,6.909250315,-1.17,2,_,862.6481029,36.26709986,31 Years and 3 Months,No,120.1736897,1138.671172,Low_spent_Medium_value_payments,251.0548497,0,-0.472,-0.1228,0.4618,1.2047,0.4225 -0x9679,CUS_0x2e79,August,31,670-14-6375,Engineer,35059.2,2653.6,8,6,25,9,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Personal Loan, Auto Loan, and Not Specified",,20,22.42,10,Bad,2834.16,33.3597265,4 Years and 4 Months,Yes,200.3861549,129.781559,Low_spent_Small_value_payments,225.192286,0,-0.903,-0.5405,0.1058,0.3257,0.2471 -0x9685,CUS_0xc2ea,August,37,665-75-2844,Accountant,14392.84,,10,7,27,5,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",31.68177876,17.47833921,14.48,10,_,1732.599105,34.92732929,17 Years and 10 Months,Yes,55.62030247,,Low_spent_Small_value_payments,239.9676359,0,-0.4485,1.3964,-2.0997,1.0246,-0.1633 -0x9691,CUS_0x763c,August,54,028-40-4770,Accountant,12924.77,,5,7,5,2,"Personal Loan, and Personal Loan",22.94737235,17,12.7,4,_,149.02,30.80537976,33 Years and 2 Months,Yes,11.51526285,40.70261703,Low_spent_Small_value_payments,318.7885368,0,-0.884,-1.293,-0.1822,1.5067,2.0098 -0x969d,CUS_0x59c7,August,29,650-76-1704,Mechanic,33036.44,,4,3,17,6,"Payday Loan, Mortgage Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Home Equity Loan",23.71674835,16,13.76,7,Standard,1377.16,27.76909151,6 Years and 10 Months,NM,143.1403448,,Low_spent_Small_value_payments,200.9067401,0,0.8622,-0.1933,0.8261,-1.3071,-0.1847 -0x96a9,CUS_0x387d,August,33,761-53-5627,Doctor,102279.18,,7,5,9,5,"Payday Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",24.85293086,17,6.45,6,Standard,959.34,28.01173369,8 Years and 11 Months,Yes,339.675527,252.4827552,High_spent_Small_value_payments,546.9682178,0,-0.7419,-0.7398,1.2146,0.1038,-0.5559 -0x96b5,CUS_0xd35,August,44,168-20-8848,Engineer,37227.24,3006.27,8,7,28,2,"Mortgage Loan, and Auto Loan",20.52661734,10,7.32,,Standard,1309.53,23.19696616,17 Years and 5 Months,Yes,47.42556537,251.2206309,Low_spent_Small_value_payments,291.9808037,0,-0.7485,-0.4506,1.5337,1.1473,-0.4177 -0x96c1,CUS_0x7c66,August,18,046-49-7407,_______,8507.27,,8,535,17.88954781,8,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",,22,2.22,6,Bad,1409.04,39.33427692,,Yes,1366.327885,,Low_spent_Small_value_payments,213.5622535,0,1.2074,0.5134,0.4942,-1.0873,-0.4091 -0x96cd,CUS_0x878c,August,41,479-15-5308,Journalist,70847.52,5637.96,8,9,21.95700519,7,"Not Specified, Credit-Builder Loan, Student Loan, Not Specified, Payday Loan, Auto Loan, and Payday Loan",,27.27752473,,12,Bad,4756.504842,41.25401654,,Yes,1550.672211,,High_spent_Medium_value_payments,451.7272471,0,0.0683,1.7012,-0.991,0.0633,0.3419 -0x96d9,CUS_0x8261,August,49,946-68-5714,Engineer,18894.02,,0,3,7,2,"Personal Loan, and Not Specified",0,3,3.83,3,Good,501.22,25.7276628,24 Years and 0 Months,No,29.57994369,148.225496,Low_spent_Medium_value_payments,254.644727,0,0.7526,0.4779,-0.6155,2.32,-0.5388 -0x96e5,CUS_0x4eb6,August,45,930-91-3174,Media_Manager,134563.36,11153.61333,6,7,10,4,"Student Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",27.66513767,18,15.62,,_,402.25,29.66105923,17 Years and 9 Months,Yes,356.3315408,397.1549978,Low_spent_Large_value_payments,631.8747948,0,0.8677,-0.1958,-0.3947,-0.8669,-1.3479 -0x96f1,CUS_0x9c05,August,80,934-83-2341,Doctor,7453.305,,6,10,22.88954781,9,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Credit-Builder Loan",,26.19083042,16.6,10,Bad,3054.840537,34.8968479,1 Years and 4 Months,Yes,1363.923167,,High_spent_Small_value_payments,230.436101,0,-1.7038,-1.3304,1.1903,0.4918,1.9557 -0x96fd,CUS_0x7ffd,August,36,605-23-4684,Media_Manager,42247.17,3501.5975,10,8,21.95700519,9,"Mortgage Loan, Personal Loan, Student Loan, Student Loan, Not Specified, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",27.73849148,18.22444038,20.77,6,Bad,3314.397017,25.19318511,7 Years and 11 Months,Yes,1579.271197,58.28413925,High_spent_Medium_value_payments,241.5540444,0,-0.8731,0.3758,0.5322,1.0411,2.0699 -0x9709,CUS_0xc6f2,August,26,359-07-9611,Engineer,103515.51,,0,2,4.288361749,4,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",90,2222,6.2,4,_,55.80265065,34.86871657,29 Years and 6 Months,NM,211.6298822,496.5434919,High_spent_Large_value_payments,796.8435621,0,1.3287,0.1689,-0.59,1.9926,-1.8232 -0x9715,CUS_0xb153,August,42,417-39-7961,Lawyer,51340.92,4269.41,7,7,14,7,"Home Equity Loan, Personal Loan, Mortgage Loan, Student Loan, Not Specified, Payday Loan, and Payday Loan",,19.27442232,12.71,4,Standard,2404.588372,31.27733524,5 Years and 11 Months,Yes,289.2410451,168.6151232,High_spent_Medium_value_payments,219.0848317,0,-0.6669,1.8003,-0.7816,-0.5473,0.5707 -0x9721,CUS_0x1986,August,53,136-39-0495,Teacher,17707.46,,6,6,5,0,,23.02254715,17,16.37,3,Standard,1261.444838,32.30755057,26 Years and 11 Months,Yes,165.7288563,34.65984931,High_spent_Small_value_payments,374.5561754,0,0.2485,0.7561,-2.124,0.4639,-0.9646 -0x972d,CUS_0x6d41,August,45,794-86-1129,Journalist,22006.43,1655.869167,8,3,19,0,,26.0954376,21.15374473,9.21,4,_,1401.677723,25.73570999,22 Years and 3 Months,Yes,0,37.70176585,High_spent_Medium_value_payments,377.8851508,0,0.3891,1.1006,-0.4171,-0.4723,-1.0253 -0x9739,CUS_0xb82b,August,30,022-92-7129,Scientist,74023.53,,4,6,8,0,,,13,11.66,5,Standard,436.51,26.61518829,10 Years and 0 Months,Yes,0,147.4768455,High_spent_Medium_value_payments,736.0859045,0,-0.473,0.0569,-2.1041,1.4132,0.5092 -0x9745,CUS_0x5bf,August,26,712-86-4030,Scientist,9846.615,826.55125,8,5,20.06745738,8,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Student Loan, and Home Equity Loan",29.53945565,19.79939562,1.55,12,Bad,4925.128912,25.55554746,6 Years and 10 Months,Yes,33.1955523,22.76914495,Low_spent_Large_value_payments,269.9701398,0,0.6174,0.8615,-0.6391,-1.0384,1.8977 -0x9751,CUS_0xae82,August,50,129-82-2093,Architect,31080.36,,8,4,6,1,Personal Loan,20.14824555,13,8.92,5,Standard,512.07,33.25506129,32 Years and 6 Months,No,19.65614005,163.6921133,High_spent_Small_value_payments,316.0547467,0,-0.8486,0.375,0.1999,0.9842,-1.5582 -0x975d,CUS_0xa530,August,37,528-62-6036,Teacher,19078.52,,9,5,34,6,"Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Student Loan",,29.86301021,29.39,9,Bad,3298.680754,25.45521097,10 Years and 8 Months,Yes,83.35605779,35.60802947,High_spent_Medium_value_payments,300.8235794,0,0.8708,-1.8596,-1.3555,1.2742,1.1851 -0x9769,CUS_0xa7b7,August,41,052-14-7505,_______,83789.22,,8,6,2,2,"Home Equity Loan, and Not Specified",18.99107726,18,9.21,7,_,1185.23,23.63390994,31 Years and 8 Months,No,98.48607056,,Low_spent_Large_value_payments,321.2029983,0,0.2185,0.5973,0.6607,0.6695,0.3884 -0x9775,CUS_0x9673,August,25,713-38-9516,Architect,108702.09,8900.5075,3,4,12,4,"Not Specified, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",7.215020467,6,3.37,1,Good,364.81,30.86685869,26 Years and 8 Months,No,313.7135654,,High_spent_Small_value_payments,587.2399511,0,1.085,-0.3879,0.4906,-1.0311,0.096 -0x9781,CUS_0x4be2,August,44,431-73-9913,Manager,7201.505,488.1254167,6,5,29,5,"Credit-Builder Loan, Student Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",8.471260694,7.216139279,14.2,15,Standard,2671.956384,23.7023284,,Yes,24.90026851,17.80885898,High_spent_Small_value_payments,266.1034142,0,-0.0506,0.3991,-1.5104,-1.8135,1.0428 -0x978d,CUS_0x85b9,August,45,754-52-5757,Journalist,135445.2,11415.1,5,4,17,3,"Payday Loan, Not Specified, and Payday Loan",36.73078497,23.98850412,19.4,4,Standard,738.8219522,37.35350461,,Yes,222.9189043,693.0599434,Low_spent_Large_value_payments,495.5311523,0,1.1789,0.1317,0.577,0.2136,-0.3666 -0x9799,CUS_0x7c6d,August,27,889-77-4172,Accountant,39139.35,3414.6125,4,4,4,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Personal Loan",23.40641089,15.69495829,1.94,0,Good,1441.974922,38.06527385,16 Years and 8 Months,No,122.6212995,66.60256336,High_spent_Large_value_payments,392.2373871,0,0.7657,-0.6393,0.2321,-0.7565,0.3165 -0x97a5,CUS_0xbda6,August,29,619-50-3543,_______,68552.32,5618.693333,8,8,32.95700519,7,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",31.97498009,18,27.16,13,Bad,4497.500954,39.56152339,3 Years and 6 Months,Yes,1531.193702,245.9170572,High_spent_Small_value_payments,323.7082046,0,0.9693,0.3721,-0.4636,-1.0569,0.4639 -0x97b1,CUS_0x1768,August,37,738-21-7582,Writer,112080.48,9211.04,2,4,6.288361749,2,"Debt Consolidation Loan, and Payday Loan",11.7840236,12,11.69,3,Good,1360.45,26.61550641,21 Years and 4 Months,No,105.3645556,762.1931176,High_spent_Medium_value_payments,723.4837878,0,0.1412,-0.5338,-1.1861,1.71,-0.1244 -0x97bd,CUS_0x5198,August,36,805-09-7081,Doctor,14526.58,1318.548333,5,7,31,7,"Payday Loan, Student Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",16.65103412,,6.1,7,_,2795.172016,29.51494399,17 Years and 8 Months,Yes,83.96047516,10000,Low_spent_Small_value_payments,213.9657039,0,-0.873,-0.9238,-1.8078,-0.0706,1.8004 -0x97c9,CUS_0x9357,August,29,600-08-5694,Musician,36780.03,,5,6,5,2,"Auto Loan, and Personal Loan",1.09307089,3,-0.58,5,Good,195.07,27.64093139,33 Years and 2 Months,No,61.19963022,121.7924187,High_spent_Medium_value_payments,383.9082011,0,-0.449,-0.1817,0.5323,1.2901,-0.5693 -0x97d5,CUS_0x580e,August,48,357-06-5725,Manager,97174.44,,4,3,14,4,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",17.09433136,11,-5.7,3,Standard,137.68,32.28968153,24 Years and 4 Months,Yes,184.7522282,659.5742138,Low_spent_Large_value_payments,227.260558,0,-1.6809,1.1778,1.7188,-0.1831,-0.5027 -0x97e1,CUS_0x7a15,August,19,744-57-1972,Developer,62877.88,5485.823333,8,8,19.06745738,5,"Student Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Student Loan",,19,27.71,12,_,5016.030954,43.52817652,5 Years and 8 Months,Yes,169.5140972,106.2652589,High_spent_Medium_value_payments,496.0826893,0,-0.0832,-1.0821,-1.072,-0.5674,1.363 -0x97ed,CUS_0x54a3,August,18,225-90-9918,Teacher,39039.8,3397.316667,10,6,29,8,"Mortgage Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Personal Loan, Auto Loan, Personal Loan, and Auto Loan",,20,7.33,13,Bad,1913.06,33.84693278,15 Years and 8 Months,Yes,130.45662,140.8931825,!@9#%8,318.3818642,0,-0.9693,-0.2723,-1.0721,-0.2568,0.9828 -0x97f9,CUS_0xc390,August,47,243-16-4221,Teacher,11617.39,850.1158333,7,7,16,1,Home Equity Loan,23.05290045,16,17.01,7,Standard,816.39,26.63808329,32 Years and 5 Months,Yes,5.463308978,41.9750478,High_spent_Small_value_payments,297.5732266,0,1.32,0.6496,-0.0494,-0.6334,0.3817 -0x9805,CUS_0x2e98,August,50,818-27-8113,_______,43734.68,3650.556667,0,5,5,1,Mortgage Loan,,11,9.33,3,Good,879.2199426,37.60669831,24 Years and 8 Months,No,19.84423303,94.07375485,High_spent_Large_value_payments,501.393561,0,0.1295,-0.4117,-0.9278,-1.0456,0.6792 -0x9811,CUS_0xc050,August,26,634-03-2346,Scientist,20235.8,,8,7,7,2,"Personal Loan, and Mortgage Loan",,15,4.74,6,Standard,856.73,24.84726839,,No,28.31703254,108.5014278,High_spent_Small_value_payments,293.1132063,0,0.985,-0.3416,-0.1135,-0.6511,-0.1379 -0x981d,CUS_0x1705,August,52,176-22-5639,Media_Manager,43543.72,,3,3,7,1,Not Specified,0,0,6.7,3,_,175.4209735,35.23900633,23 Years and 10 Months,No,33.43804242,134.8905149,High_spent_Medium_value_payments,442.9181176,0,-0.4285,-1.1419,1.0312,-0.6188,-1.0097 -0x9829,CUS_0x7283,August,24,078-84-8943,Writer,53370.42,4618.535,6,7,7,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",23.62617524,17,8.68,7,Standard,240.27,29.37850259,20 Years and 11 Months,Yes,43528,356.7220982,Low_spent_Large_value_payments,278.5761313,0,0.0633,0.1378,0.6385,-2.5005,-0.8519 -0x9835,CUS_0x63de,August,43,684-76-8682,Developer,77613.39,,7,6,12,0,,10.1463296,10,9.01,6,Standard,321.59,30.51713599,30 Years and 10 Months,Yes,0,154.266331,Low_spent_Large_value_payments,734.011919,0,0.14,0.0611,-1.9675,0.9293,1.0151 -0x9841,CUS_0xb6e6,August,22,989-37-3565,Media_Manager,108680.19,,8,7,5,1,Mortgage Loan,9.939357912,10,12.26,5,_,1439.29,32.15801477,17 Years and 5 Months,Yes,60.64089801,260.6039712,High_spent_Medium_value_payments,857.0233808,0,-1.5358,0.4068,-1.6267,-1.0951,0.5744 -0x984d,CUS_0x87b4,August,43,151-39-5789,Musician,34114.43,,4,3,5,4,"Credit-Builder Loan, Auto Loan, Personal Loan, and Not Specified",12.84288386,13,8.32,4,Good,774.320114,39.61975533,19 Years and 8 Months,NM,80.10216969,,High_spent_Large_value_payments,421.3186331,0,1.2337,0.282,-0.9288,0.1574,0.875 -0x9859,CUS_0xac2b,August,41,080-40-4889,Teacher,15723.705,,7,3,6,4,"Credit-Builder Loan, Auto Loan, Personal Loan, and Mortgage Loan",,11,5.68,3,Standard,632.13,35.90360199,19 Years and 11 Months,No,29.31306813,,Low_spent_Small_value_payments,221.8635056,0,-0.1494,0.1658,-0.0013,-0.8887,1.7322 -0x9865,CUS_0x2d88,August,37,365-13-3951,Manager,97420.86,,6,7,20,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Student Loan",20.85176376,15,1.08,6,Standard,619.58,24.19217828,28 Years and 8 Months,No,179.0211463,381.6875128,Low_spent_Large_value_payments,493.1318409,0,-0.4445,-0.9245,0.2394,-0.1213,-1.9986 -0x9871,CUS_0x903f,August,40,686-12-7117,Media_Manager,67097.28,5132.226161,3,3,11,100,"Student Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",,,11.16,1387,Standard,995.9118564,23.57718784,23 Years and 0 Months,Yes,417.495569,154.0620935,!@9#%8,471.9274535,0,0.2556,0.631,-0.3134,-0.337,0.457 -0x987d,CUS_0xa692,August,22,732-31-3576,Architect,38029.86,3032.155,10,9,18,5,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",32.12072007,23.62708462,30.72,11,_,3274.55153,30.66390554,10 Years and 9 Months,Yes,111.504345,67.91664144,High_spent_Small_value_payments,383.7945135,0,1.2975,0.1443,-1.7111,-0.6309,0.5606 -0x9889,CUS_0xa60a,August,36,#F%$D@*&8,Manager,18508.07,,9,6,24.06745738,5,"Not Specified, Not Specified, Payday Loan, Not Specified, and Student Loan",,23,23.44,9,_,3242.580954,31.81381504,0 Years and 9 Months,NM,64.88860761,107.9318824,Low_spent_Small_value_payments,258.2931387,0,2.0502,0.8464,0.5321,-0.4841,1.1937 -0x9895,CUS_0x4cae,August,24,223-47-1067,Writer,77832.74,6234.061667,5,4,5,3,"Payday Loan, Not Specified, and Not Specified",,12,6.01,3,Good,454.41,29.16540761,25 Years and 2 Months,No,152.7340615,,High_spent_Large_value_payments,579.0398636,0,1.0552,-2.0757,-0.1764,0.3754,-0.6032 -0x98a1,CUS_0x1258,August,50,673-09-0668,Entrepreneur,44955.64,3878.303333,4,6,20,0,,14.20037322,9,17.2,4,Standard,766.63,38.79470513,17 Years and 3 Months,Yes,0,70.33669216,High_spent_Medium_value_payments,567.4936412,0,-2.1397,-0.3635,-0.1383,1.3277,0.714 -0x98ad,CUS_0x237d,August,33,297-24-1456,Developer,31632.32,,2,3,9,3,"Payday Loan, Payday Loan, and Mortgage Loan",5.855003771,9,3.7,6,Good,64.3406279,25.96230299,32 Years and 10 Months,No,59.02287401,85.69603456,High_spent_Medium_value_payments,357.85335,0,1.674,1.1515,2.284,1.3637,0.566 -0x98b9,CUS_0x6ea9,August,25,017-93-1533,Musician,140719.08,11580.59,3,1,7,0,,5.989386147,6,10.63,2,Good,985.1413767,33.71614235,16 Years and 5 Months,No,0,632.1231122,Low_spent_Medium_value_payments,888.4995674,0,-0.0647,-0.1255,0.3401,0.11,0.6281 -0x98c5,CUS_0x775d,August,46,347-38-4910,Entrepreneur,32146.13,2698.844167,0,7,11.28836175,100,Personal Loan,8.113995126,9,3.58,6,Good,65.89,28.79166462,29 Years and 3 Months,No,24.73686007,513.2971207,Low_spent_Medium_value_payments,431.7878969,0,0.5656,0.0728,0.5622,0.0688,-1.3419 -0x98d1,CUS_0x660b,August,21,712-12-7095,Accountant,118875.69,9939.3075,0,4,12,2,"Not Specified, and Auto Loan",0,3,9.5,1,Good,347.6032509,29.73018206,31 Years and 9 Months,No,99.33992627,195.6513817,High_spent_Medium_value_payments,969.3793242,0,1.4588,0.7909,-0.3862,1.233,0.3704 -0x98dd,CUS_0x88c,August,18,017-54-5930,Teacher,63845.4,5293.45,3,5,5,6,"Credit-Builder Loan, Payday Loan, Auto Loan, Student Loan, Home Equity Loan, and Mortgage Loan",13.5627557,11,14.57,8,Standard,596.67,28.43279346,14 Years and 6 Months,Yes,306.6610383,183.190594,High_spent_Medium_value_payments,289.4933677,0,0.494,-0.7076,-0.3087,1.929,0.6991 -0x98e9,CUS_0x2662,August,34,071-40-3808,Manager,35134.51,2824.875833,8,6,15,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",,17,3.16,6,Standard,1359.56,32.09393705,32 Years and 2 Months,NM,45.90645161,44.34095243,!@9#%8,442.2401793,0,0.5156,0.3723,-1.5452,-1.0532,0.0895 -0x98f5,CUS_0x3733,August,42,684-91-0976,Developer,12868.625,829.3854167,6,7,6.067457376,4,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",14.46430481,8,0.77,3,Standard,1061.260954,34.97541063,33 Years and 5 Months,Yes,39.26859785,,Low_spent_Small_value_payments,260.0944889,0,-0.7283,1.3957,-0.3221,-0.3453,0.5943 -0x9901,CUS_0x974f,August,49,114-41-4714,Developer,26025.94,,8,7,7,0,,,19.11804452,9.23,1,_,741.1791439,33.01357071,23 Years and 8 Months,Yes,0,,!@9#%8,250.4637776,0,-0.1439,-1.4716,0.669,-1.1754,0.4047 -0x990d,CUS_0xbed8,August,21,510-24-8765,Scientist,74449.44,6251.12,8,8,28.88954781,6,"Student Loan, Auto Loan, Personal Loan, Mortgage Loan, Student Loan, and Home Equity Loan",,17,25.97,13,Bad,2646,23.85093322,6 Years and 3 Months,Yes,1643.152964,687.4917604,Low_spent_Small_value_payments,,0,-0.4855,0.1503,-0.3331,-0.535,2.0046 -0x9919,CUS_0xb362,August,25,374-08-5763,Writer,71531.2,6170.933333,9,7,7.288361749,2,"Not Specified, Not Specified, and Auto Loan",12.9577552,12,-4.28,2,Standard,642.03,30.80543405,15 Years and 10 Months,No,162.9691033,1245.228378,Low_spent_Small_value_payments,,0,1.2491,-0.1192,-0.2879,-0.7352,-1.4172 -0x9925,CUS_0xc6e4,August,20,577-08-7180,Manager,15471.01,,6,9,21.06745738,5,"Mortgage Loan, Student Loan, Mortgage Loan, Payday Loan, and Student Loan",21.25529021,,13.76,8,Standard,2149.119194,29.68477018,13 Years and 0 Months,Yes,36.67392969,41.4999866,Low_spent_Large_value_payments,311.8308791,0,0.4305,1.0086,-0.4433,-0.1662,1.3382 -0x9931,CUS_0xb8da,August,34,882-30-4887,_______,89434.35,7281.8625,2,6,7,4,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Not Specified",6.95318012,8,6.31,2,_,537.46,36.50141991,28 Years and 10 Months,No,244.7423877,,High_spent_Large_value_payments,551.4379957,0,-0.945,0.1728,0.6818,-1.051,-0.3228 -0x993d,CUS_0x710e,August,44,840-65-9735,Doctor,41678.65,,2,5,7,4,"Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",2.993858179,5,5.31,3,_,1209.49,24.36083837,21 Years and 3 Months,No,76.05827117,48.55615702,High_spent_Medium_value_payments,492.6076551,0,0.1893,1.02,-0.024,-1.3829,1.3658 -0x9949,CUS_0x6e2a,August,40,251-61-8238,_______,53320.08,4387.34,8,7,2,2,"Student Loan, and Not Specified",,15.04840825,3.54,3,Good,661.0459853,31.4770822,20 Years and 2 Months,No,45.78996249,74.44891624,High_spent_Large_value_payments,558.4951213,0,-1.6002,0.7151,0.555,0.8481,0.4712 -0x9955,CUS_0x8029,August,56,435-10-7131,Architect,151303.88,12714.65667,3,1,1.288361749,0,,9.414774869,11,9.97,1,Good,1097.17,30.8688688,16 Years and 10 Months,No,0,1265.973898,Low_spent_Small_value_payments,715.4292298,0,0.7654,0.0683,0.0805,-0.7389,0.0203 -0x9961,CUS_0xab44,August,43,860-36-6944,Accountant,62109.24,5152.77,5,4,15,4,"Not Specified, Personal Loan, Auto Loan, and Home Equity Loan",18.51636432,11,7.63,7,_,1308.94,30.9216365,27 Years and 6 Months,Yes,166.1585477,653.9601338,Low_spent_Small_value_payments,,0,-0.9079,0.0113,0.7405,0.728,-0.0459 -0x996d,CUS_0x440a,August,59,854-64-6856,Musician,44789.64,,2,3,8,0,,3.287711914,5,8.99,2,Good,106.1895428,39.96437287,16 Years and 8 Months,No,0,191.458986,Low_spent_Medium_value_payments,480.0210313,0,-1.0291,0.6069,-0.717,2.4434,-1.4088 -0x9979,CUS_0x55f1,August,27,170-18-6434,Scientist,9898.6,,6,8,21.06745738,5,"Debt Consolidation Loan, Not Specified, Mortgage Loan, Payday Loan, and Payday Loan",21.58154804,,5.01,16,Bad,1719.599196,29.49839747,7 Years and 2 Months,Yes,40.66265593,106.2135176,Low_spent_Small_value_payments,202.6918719,0,-1.1251,0.062,-0.1415,-2.4917,0.7414 -0x9985,CUS_0xc218,August,18,856-65-2141,Media_Manager,37240.22,,6,10,16,3,"Payday Loan, Debt Consolidation Loan, and Mortgage Loan",31.86224949,24.91889426,13.23,8,Standard,1940.083996,33.12630577,8 Years and 8 Months,NM,58.2301877,90.28268454,High_spent_Medium_value_payments,432.8222944,0,-1.1532,-0.7717,-0.6783,0.1987,0.0856 -0x9991,CUS_0xc0f6,August,24,773-23-6801,Developer,177330.24,14601.52,2,5,8,3,"Auto Loan, Home Equity Loan, and Student Loan",,7,10.98,1375,Good,529.85,37.23282466,29 Years and 5 Months,No,435.3482727,245.8716232,High_spent_Medium_value_payments,1028.932104,0,-1.1713,0.4177,0.0168,0.7641,-0.6445 -0x999d,CUS_0xf4b,August,30,527-06-9414,_______,28485.71,,1,6,7,3,"Credit-Builder Loan, Not Specified, and Student Loan",0,2.261362037,9.33,1,Good,1079.594832,39.52022135,22 Years and 3 Months,No,51.28993104,92.61576858,!@9#%8,346.275217,0,1.4074,0.1619,1.9067,-0.608,-0.9337 -0x99a9,CUS_0xa42a,August,80,#F%$D@*&8,Developer,15974.84,,8,6,24.06745738,9,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,26.5085952,4.91,12,Bad,2702.413377,37.46098006,18 Years and 0 Months,Yes,180.855787,,Low_spent_Small_value_payments,227.167148,0,0.6598,0.55,1.9184,0.3281,0.767 -0x99b5,CUS_0x9263,August,30,939-68-0807,Manager,14369.5,962.4583333,7,7,20.06745738,9,"Not Specified, Credit-Builder Loan, Mortgage Loan, Auto Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",34.74391786,21,23.96,12,Bad,4720.180954,34.94023415,12 Years and 2 Months,Yes,79.50655235,39.49041336,High_spent_Small_value_payments,210.5285797,0,0.3669,-2.2316,2.0486,-0.1286,-0.0917 -0x99c1,CUS_0x3f3,August,44,422-13-0011,Writer,104142.56,,3,5,5,3,"Personal Loan, Auto Loan, and Auto Loan",18.66376022,14,15.28,692,Standard,1371.8,36.33950238,15 Years and 6 Months,Yes,257.738646,481.7990883,Low_spent_Medium_value_payments,383.8169323,0,0.3516,0.3625,0.874,0.4158,0.3863 -0x99cd,CUS_0x1c58,August,43,190-08-2429,Writer,35319.26,,4,3,6.288361749,4,"Mortgage Loan, Payday Loan, Payday Loan, and Credit-Builder Loan",0,3,6.66,3,Good,140.19,25.60950708,29 Years and 2 Months,No,112.7362381,,Low_spent_Small_value_payments,231.4415999,0,-0.8513,-1.3433,2.1854,0.564,1.6336 -0x99d9,CUS_0x5a4d,August,26,036-71-9071,Architect,10830.26,922.5216667,8,7,3,3,"Payday Loan, Student Loan, and Payday Loan",15.69823758,11,1.89,0,Standard,375.51,23.39441985,33 Years and 2 Months,No,13.54391811,28.25653987,Low_spent_Large_value_payments,320.4517087,0,-1.5592,-0.2513,1.336,-0.135,0.3651 -0x99e5,CUS_0x2796,August,23,123-92-7016,Scientist,8329.915,660.1595833,8,5,31.06745738,8,"Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Personal Loan, Payday Loan, Not Specified, and Auto Loan",26.26207543,,0.79,12,_,2531.510954,32.31904569,,Yes,31.26580197,,Low_spent_Small_value_payments,214.5870175,0,1.1429,-0.5253,0.4648,-2.23,-0.1782 -0x99f1,CUS_0xc2e2,August,18,327-46-6796,Architect,16891.04,1420.586667,7,7,21.06745738,9,"Student Loan, Home Equity Loan, Mortgage Loan, Not Specified, Not Specified, Payday Loan, Payday Loan, Home Equity Loan, and Not Specified",31.80160609,16,18.5,6,_,3181.870954,25.48463589,4 Years and 5 Months,Yes,112.1692222,,High_spent_Medium_value_payments,207.6768681,0,1.0695,-0.4124,2.5394,1.4189,0.564 -0x99fd,CUS_0x1f34,August,59,554-15-1394,_______,68041.56,5885.13,3,5,0.288361749,2,"Mortgage Loan, Home Equity Loan, and Student Loan",7.671626739,9,14.55,8,Good,751.4756493,32.1722012,27 Years and 11 Months,No,93.66877612,559.1490324,High_spent_Large_value_payments,611.6057847,0,0.6058,-0.2781,0.3371,0.3522,0.4927 -0x9a09,CUS_0x8fdf,August,23,312-56-4208,Scientist,107871.9,8816.325,3,4,8,100,"Student Loan, Mortgage Loan, and Credit-Builder Loan",19.09579137,,6.27,2,Standard,882.1311808,29.41952776,32 Years and 10 Months,No,227.241789,1231.449746,Low_spent_Small_value_payments,,0,0.3436,2.3113,-1.0413,-1.7478,1.2009 -0x9a15,CUS_0xba67,August,29,290-73-1416,Doctor,24795.16,,8,6,20,0,,14.69649774,9,6.26,0,_,664.38,32.32677812,27 Years and 10 Months,No,0,52.01965,Low_spent_Large_value_payments,398.7066833,0,-0.5976,-0.2354,0.9336,-1.0764,-1.0305 -0x9a21,CUS_0xb828,August,36,045-34-1946,Journalist,57074.58,,7,9,15,3,"Home Equity Loan, Auto Loan, and Student Loan",,28.20343986,2.79,8,Bad,2803.333555,32.62530104,8 Years and 0 Months,Yes,109.1532273,344.7251504,!@9#%8,304.0431223,0,-0.1802,-0.6048,1.0951,0.2566,-0.2817 -0x9a2d,CUS_0xb15d,August,18,495-07-8544,Teacher,16762.18,,5,6,21.06745738,3,"Home Equity Loan, Student Loan, and Student Loan",17.69662947,11,5.3,8,_,1228.660954,29.32005047,13 Years and 3 Months,Yes,36.24728808,68.47399621,Low_spent_Large_value_payments,280.5432611,0,0.8001,-0.6071,-0.6001,-0.3432,1.2988 -0x9a39,CUS_0x488b,August,26,504-16-8903,Engineer,39560.62,3247.718333,6,10,29.88954781,7,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",32.58617066,23.14940571,11.66,9,Standard,1644.979289,29.54048418,20 Years and 0 Months,Yes,1512.526253,119.10222,High_spent_Medium_value_payments,248.8132796,0,0.3151,-1.1871,-0.9242,-1.4862,-0.6322 -0x9a45,CUS_0x4454,August,22,025-39-9516,Doctor,63919.12,5067.593333,7,9,22,4,"Payday Loan, Student Loan, Not Specified, and Debt Consolidation Loan",27.43919067,17,19.44,9,Bad,1534.21,28.14051691,12 Years and 3 Months,NM,171.5747814,337.8008703,Low_spent_Large_value_payments,267.3836817,0,-0.0829,0.9364,0.4303,-0.0446,1.5929 -0x9a51,CUS_0x2976,August,27,011-81-5967,Manager,30155.09,,6,5,14,3,"Payday Loan, Mortgage Loan, and Auto Loan",21.02376037,19,9.75,4,Standard,972.35,32.19637941,29 Years and 2 Months,Yes,75.10935763,,!@9#%8,240.5409974,0,-1.3104,0.6561,0.5312,1.5724,-0.9838 -0x9a5d,CUS_0xa5be,August,54,735-68-3009,Entrepreneur,30084.89,2375.074167,5,5,7,3,"Student Loan, Student Loan, and Debt Consolidation Loan",,20,10.57,4,Standard,115.84,37.38439086,15 Years and 10 Months,Yes,52.09709631,,High_spent_Large_value_payments,400.4210737,0,0.5449,-0.0071,-0.249,0.0255,-0.3474 -0x9a69,CUS_0x7e5d,August,21,073-11-4561,Entrepreneur,14755.09,,6,6,17,2,"Debt Consolidation Loan, and Student Loan",39.70313321,20.27054981,15.65,13,Bad,2664.759448,34.70903795,9 Years and 4 Months,Yes,14.80384315,66.65223854,Low_spent_Large_value_payments,295.8030016,0,-0.4569,-0.3213,1.6945,0.2124,-1.6706 -0x9a75,CUS_0x6276,August,36,231-43-8275,Media_Manager,110147.52,8189.033389,6,5,9,3,"Debt Consolidation Loan, Mortgage Loan, and Personal Loan",23.56804114,17,13.69,6,Standard,1109.859153,32.82600506,17 Years and 0 Months,NM,27614,132.1699068,High_spent_Large_value_payments,802.1825776,0,0.6191,-0.3998,-1.1065,-1.8753,-0.0525 -0x9a81,CUS_0x1b3a,August,45,286-54-9844,Architect,15858.64,1414.553333,9,7,18.06745738,7,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Auto Loan, and Personal Loan",38.33736756,19,4.06,16,Bad,5098.180954,27.42675156,0 Years and 9 Months,Yes,53.11698769,,Low_spent_Small_value_payments,213.9656027,0,1.5361,-0.6219,0.3371,0.3448,1.8113 -0x9a8d,CUS_0xc0d9,August,34,762-52-2841,Accountant,17078.485,1256.207083,3,7,10,2,"Personal Loan, and Payday Loan",,12,,3,Good,1048.53,33.05000866,24 Years and 3 Months,No,22.18158195,57.76022818,Low_spent_Small_value_payments,335.6788982,0,-2.0681,-0.3047,-0.7779,-1.3488,0.0889 -0x9a99,CUS_0x5352,August,41,237-02-3551,Lawyer,15375.09,,6,4,27.06745738,9,"Home Equity Loan, Personal Loan, Payday Loan, Student Loan, Payday Loan, Personal Loan, Personal Loan, Not Specified, and Payday Loan",34.74397598,18,22.65,9,_,4872.820954,27.07255427,4 Years and 0 Months,NM,81.43213755,202.3610474,Low_spent_Small_value_payments,136.7122771,0,-2.4196,1.2419,-1.225,1.6665,-0.5105 -0x9aa5,CUS_0x9a88,August,25,792-12-6717,Journalist,31599.56,2528.626262,8,8,24.95700519,7,"Auto Loan, Student Loan, Mortgage Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",42.27818847,28.30657258,1.9,10,Bad,2949.527603,39.71232363,16 Years and 9 Months,Yes,1570.392382,51.93313552,High_spent_Large_value_payments,299.824185,0,-0.6765,-0.0335,-0.0968,-0.6782,1.6508 -0x9ab1,CUS_0xa2d5,August,36,#F%$D@*&8,Mechanic,18666.83,,7,5,28.06745738,9,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",31.7371381,17,24.89,12,Bad,4295.600954,30.23675248,10 Years and 5 Months,Yes,65376,138.4699585,Low_spent_Small_value_payments,185.653836,0,-1.3801,-0.4433,-1.2683,-0.2739,-0.2844 -0x9abd,CUS_0x910a,August,18,924-42-4638,Mechanic,16701.54,,7,6,26,5,"Not Specified, Personal Loan, Payday Loan, Not Specified, and Personal Loan",30.74556397,16,19.53,14,Bad,2917.234667,33.11301638,4 Years and 0 Months,NM,45.01267382,63.71210619,Low_spent_Large_value_payments,324.8042932,0,0.1363,-2.4636,-1.6845,-1.131,0.9992 -0x9ac9,CUS_0x97b0,August,32,361-41-1814,Mechanic,23635.39,,8,5,10,3,"Home Equity Loan, Debt Consolidation Loan, and Payday Loan",10.07447975,9,16.09,8,Standard,136.8104097,29.83302034,13 Years and 10 Months,Yes,46.91741255,59.49295602,High_spent_Medium_value_payments,374.0429659,0,1.4272,-0.9668,-1.6323,-1.3927,-1.6032 -0x9ad5,CUS_0xc4bd,August,31,740-66-1214,Accountant,15289.33,,8,6,12,7,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Payday Loan, Personal Loan, and Home Equity Loan",,16,11.29,8,Standard,12.9,27.61925236,7 Years and 10 Months,Yes,44.72054752,54.68489481,Low_spent_Small_value_payments,332.305641,0,-1.0665,-0.5214,-0.0282,0.588,-1.5725 -0x9ae1,CUS_0x5ca1,August,36,678-30-7197,Engineer,34323.26,,1,4,9,3,"Student Loan, Auto Loan, and Not Specified",,4,9.94,3,Good,330.1366625,30.48982191,25 Years and 3 Months,No,63.30212611,211.1054091,High_spent_Small_value_payments,287.0612061,0,0.6084,-1.3795,0.4844,0.0025,-1.821 -0x9aed,CUS_0x469a,August,29,059-20-5955,Teacher,11978.875,,4,6,11,4,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",19.6533958,15.31671585,3.3,3,Standard,460.3123603,34.83778834,25 Years and 3 Months,No,38.34096157,49.12553536,Low_spent_Large_value_payments,265.0574614,0,0.7526,0.1702,2.4507,0.5937,-0.5311 -0x9af9,CUS_0x7f72,August,49,700-08-5887,Doctor,40838.93,3440.244167,2,2,4,4,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",13.71175464,12,3.52,7,Good,417.0610612,29.96866562,29 Years and 0 Months,No,95.12531073,114.1691116,High_spent_Medium_value_payments,395.4906544,0,0.5146,-1.4077,-0.7384,1.3076,-0.5543 -0x9b05,CUS_0x1f1a,August,39,189-83-4148,Media_Manager,35139,,6,6,12,5,"Payday Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",,22.05774968,12.8,4,_,263.5891258,32.13257662,15 Years and 3 Months,NM,132.8653363,82.3414729,High_spent_Small_value_payments,309.8181908,0,1.0909,-0.7062,-1.4121,0.771,2.2805 -0x9b11,CUS_0x755b,August,51,601-45-5485,Scientist,69684.86,,0,7,11.28836175,2,"Debt Consolidation Loan, and Credit-Builder Loan",3.796684005,6,1.46,2,Good,596.1,24.36855349,23 Years and 10 Months,NM,83.13713352,595.4382024,High_spent_Medium_value_payments,578.5692918,0,0.0288,-1.7868,-0.1735,-1.0373,0.2048 -0x9b1d,CUS_0xc4de,August,26,611-21-4406,Developer,70897.32,,7,8,24.06745738,7,"Not Specified, Not Specified, Home Equity Loan, Student Loan, Not Specified, Personal Loan, and Not Specified",,22.34808403,29.02,13,Bad,4314.082753,39.97064586,13 Years and 8 Months,Yes,268.8336033,154.588546,High_spent_Large_value_payments,403.7685627,0,-0.0445,0.3119,0.154,0.1768,-0.7601 -0x9b29,CUS_0x4379,August,48,760-50-8474,Entrepreneur,19204.25,1660.354167,5,7,13,3,"Not Specified, Mortgage Loan, and Credit-Builder Loan",13.90628005,12,5.31,7,Standard,504.06,34.49942909,30 Years and 2 Months,No,35.1481234,157.3218419,Low_spent_Medium_value_payments,253.5654514,0,-0.3617,0.7109,-0.2062,-0.9223,0.756 -0x9b35,CUS_0xb903,August,18,979-13-5480,Lawyer,89869.72,7626.143333,3,7,15,5,"Auto Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Personal Loan",22.71886236,17,9.2,7,Standard,658.47,34.68634869,15 Years and 10 Months,Yes,263.1899625,,High_spent_Medium_value_payments,571.9398827,0,0.7145,1.3586,-0.3248,-0.0389,0.389 -0x9b41,CUS_0x4f44,August,28,496-79-9955,Writer,81320.88,6764.74,7,3,15,1,Auto Loan,,14,10.34,1,Standard,520.44,38.52680736,15 Years and 10 Months,No,48.35319696,454.8254846,Low_spent_Small_value_payments,463.2953185,0,-0.7648,0.8565,-0.254,0.2587,-0.6098 -0x9b4d,CUS_0x674e,August,45,017-96-2874,Manager,70413.48,5971.79,8,10,27.88954781,8,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",37.51744982,24.21473559,1.9,,Bad,3247.012189,36.07536081,,NM,1678.130609,271.5125917,Low_spent_Large_value_payments,223.205718,0,-1.8917,-1.3704,-1.0203,1.1616,0.7009 -0x9b59,CUS_0x612f,August,31,700-23-9385,Journalist,34775.16,,7,9,25,5,"Auto Loan, Mortgage Loan, Auto Loan, Payday Loan, and Not Specified",,20.82008668,17.16,11,Bad,3360.950552,36.21903217,13 Years and 8 Months,Yes,126.5968144,48.99415602,High_spent_Medium_value_payments,379.3020296,0,-1.0343,-0.8076,0.9954,-0.2756,-1.7254 -0x9b65,CUS_0x35b4,August,18,998-18-5319,Accountant,7912.96,751.4133333,7,6,22,100,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",,23,1.76,2362,_,2352.07,30.09482526,7 Years and 3 Months,Yes,12.95638859,,Low_spent_Small_value_payments,254.4805591,0,1.0555,0.5237,0.3391,0.2904,0.1144 -0x9b71,CUS_0x2d27,August,27,741-94-7341,Media_Manager,42277.83,3724.1525,8,4,14,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,4216,12.59,8,Standard,1469.21,26.40497546,20 Years and 6 Months,Yes,59.41160421,82.48482515,High_spent_Large_value_payments,470.5188206,0,0.2663,-0.6413,-2.0573,-0.3046,2.2633 -0x9b7d,CUS_0x29ef,August,32,560-72-1726,Entrepreneur,94545.75,7617.8125,0,6,8,0,,12.30544725,11,10.74,4,Good,384.8,29.90165393,,NM,12358,287.6358765,High_spent_Medium_value_payments,724.1453735,0,0.2367,-0.555,-0.4831,0.0791,-0.8268 -0x9b89,CUS_0x6ca8,August,52,515-45-8703,Doctor,33763.89,,4,3,8,100,"Payday Loan, and Mortgage Loan",,19,4.7,0,Standard,812.74,25.08582964,30 Years and 8 Months,No,30.02077907,,Low_spent_Medium_value_payments,253.2204722,0,0.5212,0.0108,0.7583,-1.0604,0.3202 -0x9b95,CUS_0x1e0f,August,55,198-49-3462,Lawyer,20660.16,1995.68,1,1,5424,2,"Mortgage Loan, and Credit-Builder Loan",6.154254987,9,6.59,4,_,501.1177916,36.80539886,,No,33.8787011,249.8178303,Low_spent_Small_value_payments,230.9602224,0,1.4002,-0.8031,1.5678,0.7735,0.2194 -0x9ba1,CUS_0x541a,August,29,279-55-9526,Scientist,44152.16,3831.346667,3,7,18,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",15.01062695,11,2.35,1,Standard,634.52,34.91669167,20 Years and 4 Months,No,107.9902331,154.5436308,Low_spent_Small_value_payments,410.6008028,0,-0.5612,0.8136,-0.8393,1.3125,-0.0755 -0x9bad,CUS_0x95d,August,24,055-19-9599,Media_Manager,8815.64,973.6366667,10,8,16.88954781,6,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Not Specified",20.81079396,18,24.57,6,Bad,3410.150802,24.72623524,2 Years and 4 Months,Yes,1364.589841,30.74319069,Low_spent_Medium_value_payments,291.9546881,0,-0.5101,-0.6022,-1.0126,0.9891,-0.9558 -0x9bb9,CUS_0xa08b,August,40,274-01-4475,Scientist,19206.92,,7,1223,20.06745738,5,"Credit-Builder Loan, Not Specified, Not Specified, Credit-Builder Loan, and Payday Loan",31.83514601,19,3.08,11,Bad,3823.470954,24.74541012,2 Years and 8 Months,Yes,65.19760799,58.0837658,Low_spent_Large_value_payments,257.3560049,0,-0.0459,0.3847,0.3119,1.3691,-0.37 -0x9bc5,CUS_0x5436,August,32,212-82-3845,Teacher,17166.71,,8,10,719.9570052,9,"Student Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",30.75834093,16,9.82,272,Bad,4748.680954,36.39810463,5 Years and 2 Months,Yes,1429.135104,38.82657363,Low_spent_Medium_value_payments,209.1438695,0,-1.3727,-1.8381,-0.1975,-1.1191,0.4003 -0x9bd1,CUS_0x49ff,August,23,363-74-1894,Engineer,50513.25,4051.4375,10,10,23,5,"Home Equity Loan, Student Loan, Payday Loan, Personal Loan, and Auto Loan",,20.61794677,20.55,9,Bad,3683.480068,32.32888985,,Yes,208.4454341,240.4398908,Low_spent_Large_value_payments,226.2584251,0,1.0573,0.1052,-0.9848,-0.9804,0.3398 -0x9bdd,CUS_0x974,August,42,063-51-6871,Teacher,152148.92,,1,3,8.288361749,100,,,4,2.45,1,Good,957.3162479,36.54283079,17 Years and 8 Months,No,0,675.0370051,High_spent_Large_value_payments,1307.441515,0,-1.7006,1.3088,-2.1982,0.2445,1.2091 -0x9be9,CUS_0x4549,August,30,116-49-8748,Accountant,79290.96,6646.58,7,6,34,7,"Auto Loan, Payday Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",20.51731593,,6.04,9,Bad,3809.37,27.19100846,9 Years and 0 Months,Yes,371.4364338,116.2215273,High_spent_Large_value_payments,417.0000388,0,-0.4918,-0.6068,-0.5493,0.4304,1.4238 -0x9bf5,CUS_0xc2da,August,32,376-12-9828,Media_Manager,18038,1534.166667,5,1,10,0,,2.155215955,6,5.4,4,Good,451.3847447,28.17316855,17 Years and 0 Months,No,0,72.34351026,Low_spent_Medium_value_payments,368.1558033,0,1.2916,-0.146,-0.543,-0.6778,-0.0866 -0x9c01,CUS_0x1db5,August,43,088-31-1690,_______,74092.04,,7,9,15,3,"Credit-Builder Loan, Mortgage Loan, and Student Loan",27.79998843,16,1.94,10,Bad,1531.49,30.51239085,13 Years and 9 Months,Yes,105.645995,284.6940064,Low_spent_Large_value_payments,482.5936652,0,-0.1866,-0.3246,0.172,-1.8036,2.2447 -0x9c0d,CUS_0x8e8b,August,30,990-02-5969,Scientist,18760.6,1531.383333,7,8,19.06745738,5,"Auto Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",39.02034731,22,16.3,15,Bad,4796.770954,26.99697302,7 Years and 0 Months,NM,71.4771647,47.34427356,Low_spent_Large_value_payments,277.5966071,0,0.7083,-2.0193,-0.53,-0.7284,0.4472 -0x9c19,CUS_0x361b,August,23,717-69-1968,Musician,42767.89,,1,7,11,1,Student Loan,2.873217298,6,2.63,3,Good,1413.55,40.44889629,26 Years and 6 Months,No,20.33801862,29.21902409,High_spent_Large_value_payments,532.5420406,0,-0.0605,-0.2145,1.3089,1.132,-1.3032 -0x9c25,CUS_0xd0c,August,24,191-87-1257,Musician,47953.86,3706.155,7,6,27,3,"Personal Loan, Payday Loan, and Auto Loan",31.21450508,22.46331314,8.48,8,Standard,1788.23766,36.8811259,7 Years and 6 Months,Yes,80.92386027,103.7872826,High_spent_Medium_value_payments,435.9043571,0,-0.9708,-0.0999,0.0476,-1.1724,1.7435 -0x9c31,CUS_0xb98d,August,29,134-03-4386,Journalist,24308.05,1762.670833,7,6,11,2,"Home Equity Loan, and Home Equity Loan",9.101310847,7,16.49,11,Standard,174.32,35.11246378,13 Years and 9 Months,Yes,21.12401651,158.2353003,Low_spent_Large_value_payments,266.9077665,0,0.2938,-1.5319,0.1402,-1.431,-0.1621 -0x9c3d,CUS_0x5a58,August,32,625-74-4024,Entrepreneur,42400.7,3627.391667,4,5,5,2,"Mortgage Loan, and Not Specified",3.464926094,1.13564872,6.54,7,Good,769.8827191,33.40132565,27 Years and 2 Months,No,45.77561819,,Low_spent_Medium_value_payments,249.5603828,0,0.3659,-0.4685,-2.2476,-1.8517,1.8962 -0x9c49,CUS_0x6c00,August,36,369-63-4486,Musician,55644.39,4715.0325,10,8,21.88954781,6,"Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Student Loan",,,2.24,10,Bad,2048.874535,33.78450677,,Yes,15386.48344,77.76326208,High_spent_Medium_value_payments,462.0016299,0,0.3558,0.8206,-0.0888,-0.1341,-0.7309 -0x9c55,CUS_0xc064,August,47,410-04-2124,Writer,14036.915,,0,6,3,0,,,5,8.66,2,_,586.2295589,38.05690077,,No,0,55.44602922,!@9#%8,382.439303,0,1.7288,2.1266,-0.183,-1.5893,-0.8225 -0x9c61,CUS_0x73c0,August,43,#F%$D@*&8,Writer,77004.92,6233.076667,10,5,22,6,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Home Equity Loan",,16.82838152,25.82,10,Bad,2790.142591,38.12568893,1 Years and 11 Months,Yes,370.6471223,156.3984133,High_spent_Medium_value_payments,346.2621311,0,0.2141,0.1001,0.0548,0.2423,-1.2235 -0x9c6d,CUS_0xace3,August,26,416-41-4485,Teacher,34902.43,3128.535833,7,3,6,3,"Credit-Builder Loan, Home Equity Loan, and Auto Loan",10.58643172,7,14.74,6,_,241.38,27.23077827,21 Years and 8 Months,Yes,44.14364379,86.84950528,High_spent_Medium_value_payments,431.8604343,0,-0.315,0.1354,-0.3134,1.1121,-1.4966 -0x9c79,CUS_0xbf0b,August,21,296-68-3706,Scientist,141420.92,,6,4,9,100,"Auto Loan, and Student Loan",27.84017175,19,7.27,2,Standard,367.22,42.15869134,31 Years and 5 Months,Yes,159.6233389,394.1343485,High_spent_Medium_value_payments,871.0499792,0,-0.0319,0.0964,0.3716,0.2027,0.4687 -0x9c85,CUS_0x43f1,August,54,222-18-8106,Teacher,62347.86,,8,7,7,0,,4.840644994,6,6.78,2,Standard,681.95,34.45323811,23 Years and 10 Months,No,0,116.3079285,High_spent_Medium_value_payments,635.3575715,0,-0.2924,-1.4399,-0.3013,1.0742,-0.8219 -0x9c91,CUS_0x321c,August,57,941-11-8492,Media_Manager,77165.86,6595.488333,0,4,11.28836175,0,Auto Loan,5.301041948,8,4.23,3,_,844.3557808,26.87763473,28 Years and 4 Months,No,47.81008995,,High_spent_Large_value_payments,750.71175,0,-0.6846,1.5502,1.0733,-0.4807,-0.7982 -0x9c9d,CUS_0x2d16,August,37,502-57-9756,Media_Manager,15335.895,,0,7,12,100,"Student Loan, Auto Loan, and Home Equity Loan",0,0,3.16,6,Good,556.5412601,36.31813568,23 Years and 8 Months,No,67968,,Low_spent_Small_value_payments,298.2553826,0,1.8776,-0.4626,0.7627,-0.0093,2.2073 -0x9ca9,CUS_0xa01,August,31,980-65-8757,Media_Manager,35455.23,2913.6025,0,4,1,2,"Mortgage Loan, and Student Loan",9.533037898,8,4.78,4,Good,29.85799658,39.32325229,16 Years and 6 Months,No,46.57969204,209.9590598,!@9#%8,350.1907605,0,-1.1903,-0.8785,-1.2877,-0.3747,1.6739 -0x9cb5,CUS_0x7e70,August,39,835-38-9326,Writer,34763.33,2907.944167,7,5,8,2,"Mortgage Loan, and Mortgage Loan",24.93543294,19,7.5,5,Standard,856.97,30.60067098,18 Years and 8 Months,Yes,39156,152.8954277,Low_spent_Small_value_payments,383.3166313,0,-1.4976,0.2853,0.6671,1.769,0.154 -0x9cc1,CUS_0x1cb0,August,50,459-13-4314,Teacher,59823.58,5220.298333,0,2,4.288361749,0,Not Specified,9.071088041,11,8.96,4,Good,350.5096827,41.22645594,22 Years and 11 Months,No,45.89219592,542.354144,High_spent_Medium_value_payments,620.7194886,0,-0.0488,-1.021,-1.6443,0.1555,0.2058 -0x9ccd,CUS_0x4196,August,43,622-70-4870,Engineer,58966.89,4628.9075,1540,5,7,0,,23.39903399,14,11.77,8,Standard,1452.98,33.3153181,19 Years and 2 Months,Yes,0,112.5898181,High_spent_Medium_value_payments,600.3009319,0,-0.6492,-0.0183,-2.0996,-0.8806,0.6729 -0x9cd9,CUS_0x4864,August,18,231-65-2394,Engineer,89507.07,7199.9225,4,6,8,5,"Student Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Home Equity Loan",25.01973072,20,,7,Standard,240.4,29.81848515,17 Years and 11 Months,Yes,250.9514287,323.9634256,Low_spent_Large_value_payments,415.0773957,0,-0.1977,-0.5786,-0.6877,1.2102,1.721 -0x9ce5,CUS_0x6809,August,23,936-38-8280,Journalist,41209.68,3413.14,6,7,31,7,"Mortgage Loan, Not Specified, Not Specified, Mortgage Loan, Student Loan, Auto Loan, and Credit-Builder Loan",45.08630176,25.46399983,9.23,10,Bad,1981.649825,36.56453918,7 Years and 3 Months,Yes,127.7477201,10000,High_spent_Large_value_payments,365.3603294,0,0.6784,-0.6541,-0.4674,1.3443,-0.2183 -0x9cf1,CUS_0x157a,August,18,103-88-8332,Media_Manager,59662.98,,7,4,16,3,"Auto Loan, Mortgage Loan, and Mortgage Loan",12.01880126,8,8.59,6,Standard,634.86,25.96965326,6 Years and 3 Months,Yes,85.60171471,10000,High_spent_Medium_value_payments,451.4414033,0,0.9099,0.9887,0.2746,-0.8471,-0.4962 -0x9cfd,CUS_0xcda,August,49,222-08-8611,Teacher,33153.69,2625.300546,4,5,1,1,Auto Loan,,1,7.37,4,Good,519.0105341,26.55657349,26 Years and 6 Months,No,404.025169,295.2941686,Low_spent_Large_value_payments,282.4395579,0,-0.4063,0.8177,-0.3987,1.7143,-0.9471 -0x9d09,CUS_0x6f69,August,44,737-19-5989,_______,42468.06,3355.005,0,7,11,2,"Auto Loan, and Payday Loan",15.39984331,14.11856894,3.01,1,Good,1316.746546,30.9132368,,No,41.94494612,,High_spent_Medium_value_payments,458.7743767,0,-0.695,-0.2149,-0.5338,-0.4902,-0.3358 -0x9d15,CUS_0xbcbc,August,53,889-47-7292,_______,30498.76,,3,4,15,3,"Not Specified, Credit-Builder Loan, and Credit-Builder Loan",15.37060043,13,18.79,2,Standard,1012.92,35.20788749,,Yes,45.4642679,202.8264052,!@9#%8,273.7656603,0,-0.4499,2.2148,0.2036,-0.9354,0.0981 -0x9d21,CUS_0x9046,August,42,985-91-4669,Engineer,30528.52,,1122,2,6,1,Auto Loan,,10,2.26,5,Good,3.68,36.56173306,19 Years and 3 Months,No,15.55732155,10000,Low_spent_Medium_value_payments,377.7346792,0,-0.9762,0.4892,-0.4865,-0.7964,0.2905 -0x9d2d,CUS_0x9f51,August,22,238-32-1687,Doctor,9675.845,1062.320417,8,10,35.95700519,8,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",37.23211737,19.31709404,17.17,9,Bad,4952.558608,33.62813654,11 Years and 0 Months,Yes,1374.527287,116.7345935,Low_spent_Small_value_payments,183.9197916,0,1.29,-0.01,0.5303,-0.3313,0.6097 -0x9d39,CUS_0x9d72,August,41,916-18-3437,Architect,27026.95,,4,3,11,2,"Not Specified, and Auto Loan",25.57707743,17,13.51,1,_,678.53,38.62172615,24 Years and 0 Months,Yes,38.26805817,131.9715666,Low_spent_Small_value_payments,320.8849585,0,0.0573,-1.6366,1.0729,-0.0983,1.9437 -0x9d45,CUS_0x1871,August,25,245-31-5920,Lawyer,83237.52,7162.46,8,7,16,7,"Credit-Builder Loan, Mortgage Loan, Not Specified, Not Specified, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,11,,8,Standard,2652.42,38.30530114,18 Years and 9 Months,Yes,419.6074347,693.698204,Low_spent_Medium_value_payments,,0,-0.8478,-1.3096,-0.8436,-0.4797,-1.61 -0x9d51,CUS_0x7da4,August,43,033-63-5379,Journalist,8126.595,872.21625,8,6,25,7,"Personal Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",7.114254935,6.991601137,8.27,8,_,1913.334519,22.09159366,11 Years and 2 Months,Yes,46.2671956,,Low_spent_Small_value_payments,237.9128394,0,-0.3269,0.7825,-0.3126,0.8837,0.1797 -0x9d5d,CUS_0x9506,August,38,878-67-4770,Lawyer,95713.28,7809.106667,5,5,20,4,"Not Specified, Auto Loan, Mortgage Loan, and Payday Loan",10.40326106,7,13.36,7,_,566.86,30.7059796,16 Years and 6 Months,Yes,215.5208034,247.7407038,Low_spent_Medium_value_payments,597.6491594,0,-0.9315,-0.3422,-1.6839,1.2136,-0.2507 -0x9d69,CUS_0x416d,August,37,573-33-2930,Media_Manager,44158.03,3733.835833,5,5,11,1,Mortgage Loan,0,3,7.33,0,Good,1205.63233,29.75069864,15 Years and 11 Months,No,30.46312347,266.4469881,Low_spent_Large_value_payments,377.5099049,0,-1.8116,0.0588,0.787,-0.4596,0.6866 -0x9d75,CUS_0x33b5,August,18,019-20-5348,Entrepreneur,78741.32,,9,10,33,6,"Debt Consolidation Loan, Student Loan, Payday Loan, Auto Loan, Payday Loan, and Not Specified",25.4568823,16,10.02,13,Standard,2011.92,26.30362068,17 Years and 2 Months,NM,12264,,Low_spent_Small_value_payments,14.40159349,0,0.1731,-0.1067,-0.1409,-0.2252,0.7991 -0x9d81,CUS_0x461f,August,55,352-50-3065,Media_Manager,108488.61,8773.7175,4,3,13.28836175,0,,16.99626374,17,4.99,6,Standard,1366.18,29.03379944,26 Years and 3 Months,Yes,0,531.5388309,High_spent_Large_value_payments,1005.77038,0,1.5909,-0.4477,-0.0925,-1.8204,-0.9636 -0x9d8d,CUS_0x43a3,August,26,954-99-5736,Media_Manager,121453.36,,1,6,11,2,"Not Specified, and Payday Loan",2.328520655,4.530584706,5.56,,Good,380.1071275,38.3567569,22 Years and 10 Months,No,142.6044434,111.3383763,High_spent_Large_value_payments,994.4685137,0,-1.8638,0.0438,-0.4142,0.9409,-0.1853 -0x9d99,CUS_0x9ae1,August,25,794-80-5794,Mechanic,82670.04,6775.17,9,9,31,6,"Personal Loan, Personal Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Student Loan",34.06182898,20.57769736,28.91,10,Bad,2829.380758,34.01534515,2 Years and 2 Months,Yes,388.6253064,140.4423499,High_spent_Large_value_payments,388.4493436,0,0.6284,-1.5318,-1.0553,0.2122,0.3297 -0x9da5,CUS_0x46dd,August,28,537-71-3800,Engineer,44572.43,3757.369167,2,4,9.288361749,0,,1.677031284,6,4.09,1,Good,198.87,28.35233039,15 Years and 8 Months,No,0,666.6833896,Low_spent_Small_value_payments,418.9909881,0,-0.3014,-0.0793,-0.1557,-0.3017,-0.6004 -0x9db1,CUS_0x38b2,August,30,379-55-6476,Media_Manager,26509.67,1820.106635,8,7,19.06745738,2,"Mortgage Loan, and Payday Loan",,24.02040218,14.37,4,Standard,1633.703471,27.9436007,24 Years and 6 Months,Yes,171.8100063,31.45732871,High_spent_Medium_value_payments,349.4588255,0,0.8793,0.5308,0.5851,0.7892,2.4519 -0x9dbd,CUS_0x637b,August,21,824-30-2794,Journalist,15115.04,1274.586667,7,7,24,2,"Auto Loan, and Personal Loan",,19.42035367,18.14,14,_,2432.720612,33.23847101,18 Years and 8 Months,Yes,20.63883931,45.1121101,High_spent_Small_value_payments,321.7077173,0,-1.3597,-0.3615,0.8164,-1.6452,1.2903 -0x9dc9,CUS_0x746e,August,54,551-33-8461,Scientist,78401.25,6475.4375,3,3,17,3,"Auto Loan, Debt Consolidation Loan, and Not Specified",14.11853903,10,3.97,0,_,444.02,27.63327704,18 Years and 8 Months,No,131.9938045,115.0219186,High_spent_Large_value_payments,640.5280269,0,-0.7824,-2.2395,0.9761,-0.311,0.8819 -0x9dd5,CUS_0xaff8,August,51,649-97-0569,Entrepreneur,34229.35,,3,2,12,4,"Home Equity Loan, Auto Loan, Mortgage Loan, and Payday Loan",,0,11.04,2,Good,1053.920685,31.06022348,30 Years and 6 Months,No,85.68697392,88.33048976,High_spent_Small_value_payments,381.1531561,0,-0.3665,-0.954,0.2586,0.4123,-0.5808 -0x9de1,CUS_0x5fd6,August,54,598-79-6237,Manager,17902.54,1669.878333,3,6,1,0,,0,1,8.87,5,_,1289.22,23.55719387,,NM,0,57.86276928,Low_spent_Medium_value_payments,389.1250641,0,3.1577,0.2873,1.2886,1.1449,-0.6006 -0x9ded,CUS_0x7a0b,August,25,417-25-2167,Developer,46650.9,4031.575,8,7,33,100,"Mortgage Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Not Specified, Personal Loan, Payday Loan, and Credit-Builder Loan",21.65771903,12,26.04,9,_,3555.25,23.05812703,12 Years and 2 Months,Yes,207.5520164,65.13109459,High_spent_Medium_value_payments,380.474389,0,-0.8916,-0.2664,1.0213,0.3288,0.4155 -0x9df9,CUS_0x55e3,August,21,908-25-9219,Accountant,31011.32,2810.276667,3,5,15,0,,23.3322802,17.41256093,12.37,5,_,1094.11195,38.44058075,19 Years and 5 Months,NM,0,100.6852337,Low_spent_Small_value_payments,470.342433,0,-0.1765,0.0385,0.2403,0.093,0.2866 -0x9e05,CUS_0x30b7,August,37,801-89-7511,Doctor,9491.025,768.91875,10,7,15,6,"Home Equity Loan, Mortgage Loan, Payday Loan, Student Loan, Payday Loan, and Home Equity Loan",29.69697429,16,17.46,9,Bad,3377.48,35.15253793,6 Years and 8 Months,Yes,28.87983089,84.00237426,Low_spent_Small_value_payments,254.0096699,0,-0.7139,-0.211,-0.1084,-0.6476,-0.4604 -0x9e11,CUS_0x1a2f,August,54,894-09-8608,Journalist,152340.56,,5,4,8,4,"Credit-Builder Loan, Student Loan, Student Loan, and Credit-Builder Loan",,12,7.66,6,_,283.7329818,37.67519601,26 Years and 10 Months,NM,422.7939489,313.1445677,High_spent_Large_value_payments,798.4149263,0,-0.0673,-2.1418,-0.7528,0.3665,2.8729 -0x9e1d,CUS_0x1647,August,19,747-79-7877,Lawyer,28608.65,2490.054167,1075,7,12,1,Personal Loan,14.28326793,,12.68,4,Good,130.4472771,29.42783602,17 Years and 8 Months,No,23.00844614,141.300033,Low_spent_Small_value_payments,395.1895115,0,-2.0129,0.9314,-0.9206,-0.8662,-0.9156 -0x9e29,CUS_0x1733,August,29,055-42-9873,Entrepreneur,46696.02,3811.335,8,4,33,3,"Credit-Builder Loan, Auto Loan, and Personal Loan",28.51826564,21.94188951,15.02,13,Standard,1780.677279,34.61613441,18 Years and 10 Months,Yes,89.91109044,196.77212,High_spent_Small_value_payments,354.4502895,0,-0.2402,-0.6805,-0.151,-0.8513,-0.3622 -0x9e35,CUS_0x7307,August,18,362-67-6890,Engineer,17157.47,1656.789167,10,7,23.06745738,6,"Student Loan, Auto Loan, Auto Loan, Student Loan, Auto Loan, and Mortgage Loan",,18,23.79,11,Bad,3602.817626,37.83818451,11 Years and 3 Months,Yes,44.45157465,97.75312909,High_spent_Small_value_payments,271.0553551,0,-0.7495,1.8116,-0.1238,0.6787,0.1356 -0x9e41,CUS_0xab5e,August,29,475-53-8980,Lawyer,57421.58,4522.131667,3,4,6,100,"Student Loan, Personal Loan, and Credit-Builder Loan",18.84584123,,9.89,3,_,287.31,39.39366833,24 Years and 4 Months,No,101.3815631,265.6601657,Low_spent_Large_value_payments,355.1714379,0,0.7052,0.3755,-0.3336,-0.7248,0.8453 -0x9e4d,CUS_0x8658,August,33,563-94-4382,Musician,21202.09,1943.840833,7,6,8,1,Credit-Builder Loan,21.66330915,15,9.29,4,Standard,192.21,36.14088924,28 Years and 9 Months,Yes,15.32320302,44.73343914,High_spent_Small_value_payments,394.3274412,0,-0.7825,-0.7831,1.8515,-0.9294,-1.0421 -0x9e59,CUS_0x3a40,August,29,833-84-9910,Architect,82831.68,7133.64,7,3,9,3,"Payday Loan, Payday Loan, and Home Equity Loan",15.56718542,,16.48,4,Standard,34.27,33.36777463,24 Years and 2 Months,Yes,113.7037937,,Low_spent_Medium_value_payments,473.178267,0,-0.1312,-1.0918,1.1778,0.4098,0.202 -0x9e65,CUS_0x376a,August,20,587-57-9576,Writer,56304.16,,5,7,13,5,"Payday Loan, Student Loan, Mortgage Loan, Personal Loan, and Mortgage Loan",16.68195523,14,8.8,8,Standard,1070.551453,26.08422511,16 Years and 4 Months,Yes,625.2852348,240.526394,Low_spent_Small_value_payments,366.9872259,0,-1.4523,1.7869,2.1049,-0.2005,-0.0347 -0x9e71,CUS_0xb17a,August,58,034-87-0785,Musician,36135.19,,3,4,11,100,"Auto Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",22.19737112,17,1.5,6,_,646.0414215,23.96824248,21 Years and 11 Months,NM,87.97703116,30.63987092,High_spent_Large_value_payments,414.864616,0,-0.5536,0.1982,-0.4932,0.3705,2.1795 -0x9e7d,CUS_0xb882,August,34,732-56-8461,Entrepreneur,55835.7,4617.975,9,5,24,8,"Auto Loan, Mortgage Loan, Not Specified, Personal Loan, Auto Loan, Mortgage Loan, Student Loan, and Payday Loan",,18,27.19,13,Bad,2802.64,40.0352073,8 Years and 8 Months,Yes,74787,53.45296216,!@9#%8,389.0910166,0,-0.2692,-0.8561,0.7459,1.0187,1.6473 -0x9e89,CUS_0xaf2e,August,18,294-75-3087,Media_Manager,73823.84,6130.986667,722,6,30,455,"Not Specified, Auto Loan, Credit-Builder Loan, Personal Loan, Auto Loan, and Auto Loan",29.5579551,13.013413,13.39,6,Standard,2183.69491,37.50734294,12 Years and 11 Months,Yes,356.3654785,65.04360274,High_spent_Large_value_payments,431.6895854,0,-0.1625,-0.2774,-0.7722,0.3578,0.4014 -0x9e95,CUS_0x4398,August,18,545-62-2882,Developer,14264.46,,7,7,14,6,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",24.56098719,15,14.54,,Standard,659.07,25.43954809,16 Years and 0 Months,Yes,60.27612821,10000,High_spent_Medium_value_payments,265.014498,0,0.0418,0.4497,-1.3216,-0.9698,-0.8745 -0x9ea1,CUS_0x18c6,August,42,719-44-4102,Engineer,35728.54,,7,7,11,3,"Mortgage Loan, Student Loan, and Not Specified",16.11885694,15,8.87,2,Standard,1229.33,36.41906572,22 Years and 9 Months,No,58.72947069,177.9675743,Low_spent_Small_value_payments,362.9407883,0,0.0181,-0.7574,1.1441,-0.391,0.3063 -0x9ead,CUS_0x2b2d,August,29,600-73-4577,Engineer,28119.52,2151.293333,3,6,17,0,,29.77323185,21.89018171,8.54,4,_,1004.810253,31.0959668,29 Years and 10 Months,Yes,0,123.4779841,Low_spent_Medium_value_payments,371.6513492,0,-1.1435,-1.0535,-0.4288,-1.8726,-2.039 -0x9eb9,CUS_0x49ae,August,58,846-52-5572,Manager,10243765,1938.303333,8,6,12,3,"Not Specified, Debt Consolidation Loan, and Not Specified",22.32925794,17,2.09,3,Good,156.3005185,30.4449837,,No,47.43011454,120.3336473,Low_spent_Small_value_payments,327.5145535,0,0.766,-1.8691,1.4489,-1.4267,0.6279 -0x9ec5,CUS_0x540e,August,31,238-20-2884,Mechanic,58224.1,4676.008333,2,2,10.28836175,2,"Payday Loan, and Home Equity Loan",,5,6.21,3,Good,635.4472279,37.34034914,23 Years and 6 Months,No,52.94349321,12092.11264,Low_spent_Large_value_payments,403.1605261,0,-0.1601,0.1574,-0.2705,-1.7727,-0.4005 -0x9ed1,CUS_0x94ac,August,35,960-78-7883,Writer,7765.195,,9,5,24.06745738,6,"Student Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",,25,30.64,10,_,4295.090954,36.19651819,4 Years and 11 Months,Yes,36.70242352,,Low_spent_Medium_value_payments,216.3294632,0,0.6926,1.095,-0.1548,-1.1712,2.1598 -0x9edd,CUS_0xc156,August,40,417-45-3942,Writer,31369.58,2607.131667,8,9,28.95700519,8,"Home Equity Loan, Not Specified, Not Specified, Personal Loan, Not Specified, Mortgage Loan, Mortgage Loan, and Personal Loan",32.43507932,22,19.7,,Bad,4483.320954,37.40574054,12 Years and 6 Months,Yes,1495.231862,44.99081105,High_spent_Medium_value_payments,249.4401243,0,-1.2491,0.0312,0.6136,1.805,-0.1222 -0x9ee9,CUS_0x53ad,August,32,842-95-1336,Entrepreneur,100268.73,,7,6,5.288361749,4,"Auto Loan, Payday Loan, Credit-Builder Loan, and Personal Loan",13.52418473,12,19.83,9,Standard,127.7663833,22.65112598,21 Years and 5 Months,Yes,491.3284202,1181.741353,Low_spent_Large_value_payments,146.1334792,0,-1.9189,-0.2574,-1.3412,0.9338,-0.2693 -0x9ef5,CUS_0x2cd1,August,44,503-47-3701,Accountant,7558.55,409.8791667,8,9,20.06745738,5,"Not Specified, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, and Personal Loan",,23.79940992,15.2,8,_,2474.703549,37.21153646,16 Years and 2 Months,Yes,16.99339529,10.92018009,Low_spent_Medium_value_payments,266.3540533,0,0.9057,-0.7818,1.378,-0.9299,-1.9938 -0x9f01,CUS_0x4dde,August,40,841-41-7313,Entrepreneur,63461.28,5109.44,3,4,6,4,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",14.8217178,15,13.39,6,Standard,1266.31,24.10362342,11 Years and 11 Months,Yes,176.6369654,208.1439866,Low_spent_Large_value_payments,396.163048,0,-1.0286,-0.1848,-0.8525,0.2059,-1.8844 -0x9f0d,CUS_0x841e,August,51,543-40-8050,Developer,88221.16,7113.763333,7,5,12,0,,16.64361632,15,14.98,7,Standard,988.12,38.93847485,27 Years and 3 Months,Yes,0,176.1791492,High_spent_Large_value_payments,775.1971842,0,0.9322,0.2387,-0.2907,-0.0397,0.0305 -0x9f19,CUS_0x8391,August,39,052-94-1839,Accountant,13300.535,,4,3,14,3,"Student Loan, Mortgage Loan, and Personal Loan",11.83559028,10,10.5,1,Standard,367.87,35.5731463,26 Years and 4 Months,Yes,18.41306923,76.85335809,Low_spent_Medium_value_payments,303.0713643,0,-0.1042,0.3346,-0.577,-0.7662,0.4851 -0x9f25,CUS_0x9557,August,21,202-25-0813,Doctor,14293.6,,6,5,33.06745738,6,"Student Loan, Payday Loan, Payday Loan, Home Equity Loan, Not Specified, and Not Specified",,25.38866476,8.01,11,_,4853.891817,36.98534529,13 Years and 5 Months,Yes,66.88854173,,Low_spent_Small_value_payments,199.1240052,0,-1.026,-0.6551,-0.4904,0.3764,-2.6474 -0x9f31,CUS_0x5fd8,August,48,147-85-0281,Musician,33388.1,,6,4,8,0,,,13,9.51,2,Standard,589.89,25.57882176,,Yes,0,60.18743503,High_spent_Large_value_payments,439.7467316,0,-1.7086,-1.3011,0.3895,-0.432,-1.1589 -0x9f3d,CUS_0x8934,August,41,992-21-0194,_______,60901.36,5351.113333,1,1,6.288361749,2,"Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",0,2,10.69,4,Good,475.75,22.42798315,20 Years and 6 Months,No,94.3359935,779.2459509,Low_spent_Small_value_payments,371.4668499,0,0.4159,-0.2777,0.3977,0.98,-0.7071 -0x9f49,CUS_0x37c4,August,44,036-85-4393,Teacher,30303.3,,6,6,6,4,"Payday Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",,15,6.74,0,_,102.53,26.69395321,32 Years and 9 Months,No,84.18037193,90.78392966,High_spent_Medium_value_payments,301.8631984,0,0.1994,-0.3047,1.4199,-0.4682,-0.2952 -0x9f55,CUS_0x789f,August,19,054-66-6794,_______,52882.77,,6,10,25.88954781,7,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",,20.44726428,9.95,11,Bad,2695.131466,37.78839561,,Yes,1482.239639,53.78699933,High_spent_Large_value_payments,455.2330301,0,0.7496,0.6776,0.4711,1.4784,0.6342 -0x9f61,CUS_0x2f39,August,27,533-29-8899,Manager,54881.55,4633.4625,9,10,22,7,"Auto Loan, Student Loan, Personal Loan, Auto Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",20.75682888,,5.24,11,_,5383.55636,40.25356975,3 Years and 4 Months,Yes,218.6546697,145.0581444,Low_spent_Large_value_payments,369.6334359,0,-1.4416,-1.4086,-0.1122,-1.8468,-0.5958 -0x9f6d,CUS_0x28b4,August,33,202-06-5346,Journalist,36945.28,3347.773333,7,4,2577,1,Debt Consolidation Loan,26.64724713,19,7.74,3,Standard,1465.01,32.37503461,24 Years and 6 Months,NM,16.01410496,249.4223224,Low_spent_Large_value_payments,339.340906,0,0.9868,1.1129,-1.251,-0.8907,0.9829 -0x9f79,CUS_0x1ee3,August,35,772-48-5860,Doctor,15950.66,1047.221667,10,8,27.95700519,9,"Auto Loan, Credit-Builder Loan, Student Loan, Student Loan, Payday Loan, Payday Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",,26.40456352,9.01,9,Bad,3033.636904,37.17401985,16 Years and 3 Months,Yes,1387.338845,134.3977682,Low_spent_Small_value_payments,151.9351838,0,0.4474,0.2771,-0.5683,0.4996,0.9957 -0x9f85,CUS_0x39ce,August,25,988-45-2984,Media_Manager,45852.8,3655.066667,5,5,9,3,"Auto Loan, Payday Loan, and Auto Loan",,20,5.69,4,Good,1249.64,32.53585143,33 Years and 4 Months,No,104.5891792,90.54556357,High_spent_Small_value_payments,430.3719239,0,-0.3668,-1.507,1.073,0.9214,0.6685 -0x9f91,CUS_0x77ec,August,28,597-68-4770,Engineer,8761.63,660.1358333,10,7,26,3,"Mortgage Loan, Debt Consolidation Loan, and Personal Loan",35.38589185,15.79188626,18.58,11,Standard,2129.211812,30.77770864,,Yes,12.85840377,,Low_spent_Medium_value_payments,276.9460168,0,0.6071,-0.6129,-0.2536,-1.2015,-1.1647 -0x9f9d,CUS_0x290d,August,23,#F%$D@*&8,Architect,34791.08,,6,6,9,3,"Credit-Builder Loan, Student Loan, and Credit-Builder Loan",23.78985464,18,13.83,1,Standard,1359.95439,41.14004648,29 Years and 3 Months,Yes,85.54661738,71.45353973,High_spent_Small_value_payments,426.4581446,0,-0.4145,-0.8407,0.2347,-0.7218,-0.7953 -0x9fa9,CUS_0x5a88,August,20,237-24-8008,Teacher,63340.32,5345.36,7,7,21,6,"Home Equity Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Mortgage Loan, and Home Equity Loan",18.97523179,10.87884866,7.72,6,Standard,1775.781902,33.96348014,19 Years and 11 Months,Yes,234.8938354,10000,High_spent_Large_value_payments,437.4696071,0,-0.456,-0.3523,0.9745,0.5336,-0.15 -0x9fb5,CUS_0x229d,August,18,131-92-1105,Mechanic,20082.65,,7,7,31,5,"Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",,24,7.06,10,Bad,1549.99,24.3800269,20 Years and 0 Months,Yes,52.58060232,187.9903511,Low_spent_Small_value_payments,196.4844633,0,0.6161,-0.3391,-0.4537,-1.2558,0.735 -0x9fc1,CUS_0x9919,August,39,848-55-2881,Mechanic,14365.54,,8,9,25.88954781,100,"Personal Loan, and Home Equity Loan",,23.9609265,5.49,12,_,2823.459753,25.88673029,19 Years and 4 Months,Yes,1339.752441,41.87586652,Low_spent_Large_value_payments,342.6544441,0,-0.7203,0.1208,0.2722,0.4577,-0.6058 -0x9fcd,CUS_0x2fab,August,27,411-00-6543,Manager,75804.94,6120.078333,0,1,9.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,7,7.89,5,Good,307.2272284,23.42749928,32 Years and 4 Months,NM,141.2894485,547.9826055,High_spent_Large_value_payments,594.5782445,0,-1.2817,0.6552,-0.4654,-0.5447,0.9568 -0x9fd9,CUS_0x8d7c,August,26,061-21-9925,Accountant,66176.67,,8,6,19,2,"Credit-Builder Loan, and Not Specified",,21,16.4,5,Standard,750.37,37.01577068,20 Years and 10 Months,NM,78.20935969,149.995604,High_spent_Medium_value_payments,602.7672863,0,2.0757,0.7912,-1.3199,-0.3966,-0.8678 -0x9fe5,CUS_0xa788,August,25,144-05-2864,Entrepreneur,29563.72,,8,7,17,5,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",40.61063716,21.84144923,10.05,11,Standard,1957.820268,29.29770312,13 Years and 5 Months,Yes,82.55306794,86.00996192,Low_spent_Large_value_payments,371.9013035,0,-0.0255,1.0835,0.5739,-1.832,2.3093 -0x9ff1,CUS_0x42c6,August,18,921-85-4898,Architect,20076.41,,8,9,30.06745738,6,"Auto Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",,26.19954921,22.67,,Bad,5591.042236,32.27019466,2 Years and 6 Months,Yes,65.22772759,,Low_spent_Medium_value_payments,287.0294778,0,-0.1434,-1.7724,-0.2673,-1.5167,1.4761 -0x9ffd,CUS_0x7967,August,28,810-09-6426,Manager,17379.785,1536.315417,0,1,1,4,"Not Specified, Payday Loan, Student Loan, and Payday Loan",1.413335027,4,5.61,7,Good,897.0362746,24.9010025,21 Years and 10 Months,No,29.42224655,47.61848809,High_spent_Small_value_payments,341.3275987,0,0.2214,0.8075,-0.2638,-1.4144,-1.1015 -0xa009,CUS_0x68d1,August,37,763-35-0890,Architect,20967.39,,7,6,29.06745738,8,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Not Specified",40.67510875,23.64372387,6.77,10,Bad,4738.635815,39.31175357,5 Years and 2 Months,Yes,99.51025967,25.85346135,High_spent_Medium_value_payments,291.144241,0,1.0248,-0.7113,0.0339,-0.4676,0.8428 -0xa015,CUS_0x5c9f,August,33,371-94-0530,Journalist,19890.19,1541.515833,6,5,28.06745738,6,"Auto Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Mortgage Loan",,24.35755599,,7,Bad,3587.88096,31.76105019,,Yes,54.93263676,132.8465552,Low_spent_Small_value_payments,229.6521034,0,-0.763,-0.3611,0.0563,-0.8831,-0.4998 -0xa021,CUS_0x2869,August,54,249-57-7977,Journalist,82146.63,6770.5525,5,3,6,3,"Student Loan, Personal Loan, and Auto Loan",,9,2.46,5,Good,804.62,39.45970293,29 Years and 6 Months,No,128.2930751,374.2520547,Low_spent_Medium_value_payments,454.5101202,0,-1.1347,-0.2222,-1.1778,-0.9107,0.3899 -0xa02d,CUS_0xa226,August,38,409-61-8014,_______,20700.455,1870.037917,3,4,5,3,"Student Loan, Student Loan, and Home Equity Loan",14.99590696,,,5,Good,1104.754767,22.45252704,18 Years and 9 Months,NM,38.726083,82.31599477,Low_spent_Large_value_payments,347.875621,0,-0.4142,0.613,0.536,1.6807,-0.3877 -0xa039,CUS_0x3117,August,33,914-03-5576,Mechanic,15789.99,1022.8325,1,4,5,4,"Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",0.717771957,3.645676663,1.8,5,Good,747.5435157,34.01623525,15 Years and 10 Months,No,50.30836757,,Low_spent_Small_value_payments,215.9305956,0,0.8253,-0.7378,-1.4585,-0.1273,0.1787 -0xa045,CUS_0x1329,August,50,525-33-6734,Entrepreneur,160573.56,13293.13,1,2,8,1,Mortgage Loan,2.1884324,3,2.01,4,Good,551.26,38.73971092,19 Years and 10 Months,No,121.1789374,386.7841063,High_spent_Medium_value_payments,1071.349956,0,0.5355,0.6354,-0.3848,-0.2281,0.6547 -0xa051,CUS_0x5225,August,27,317-61-9841,Journalist,14089.4,1046.116667,8,9,26.88954781,9,"Student Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Auto Loan",53.12895099,28.98075304,19.9,11,Bad,4505.91823,32.78294724,1 Years and 9 Months,NM,1426.132035,105.1000427,!@9#%8,169.0495078,0,-0.9697,-0.7931,-0.6258,-0.3174,0.3749 -0xa05d,CUS_0x575c,August,23,942-36-6717,Scientist,63561.98,5227.831667,4,1,6,1,Payday Loan,13.63517278,12,2.42,3,Good,877.9316097,34.54017767,22 Years and 5 Months,No,35.25643909,198.9438264,High_spent_Medium_value_payments,568.9186051,0,-1.4192,1.3693,0.4141,0.399,-1.6049 -0xa069,CUS_0x708e,August,29,360-92-7524,_______,97168.2,8002.35,7,6,8,100,"Personal Loan, and Student Loan",27.70619912,19.13918825,8.54,4,Standard,1378.100277,42.39062616,16 Years and 2 Months,Yes,95.99393137,,High_spent_Large_value_payments,801.6267734,0,0.3528,0.7865,0.0512,-1.1026,-1.1068 -0xa075,CUS_0x598f,August,42,955-11-8873,Accountant,20712.24,2007.02,3,3,30,7,"Student Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, and Auto Loan",12.24229923,12,8.43,6,Standard,2375.83,22.97007823,13 Years and 2 Months,Yes,84.77788282,74.94434692,High_spent_Small_value_payments,300.9797703,0,-0.4055,-1.5609,-1.1165,1.1866,-0.8194 -0xa081,CUS_0x3be2,August,33,857-38-4600,Scientist,72287.52,5910.96,4,10,30,4,"Mortgage Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",11.19379154,12,17.85,16,Standard,1802.44,35.77495701,17 Years and 4 Months,Yes,175.9651813,121.6297236,High_spent_Large_value_payments,533.5010951,0,-0.1705,0.0017,1.6506,-0.1634,-0.4957 -0xa08d,CUS_0x17fe,August,30,770-45-7126,Developer,31135.37,,3,5,9,0,,9.223213577,6,4.52,2,Good,1112.57,35.57921254,28 Years and 2 Months,NM,0,175.4047138,Low_spent_Small_value_payments,364.6567029,0,0.9885,0.3303,1.6262,-1.0012,0.6057 -0xa099,CUS_0x7b2c,August,25,805-29-2042,Manager,92091.87,7842.3225,5,4,8,1,Not Specified,5.059655332,5.697466894,,0,_,724.6216298,33.26301516,26 Years and 0 Months,No,49.0080968,110.5116656,High_spent_Large_value_payments,864.7124876,0,0.1547,-1.2009,0.4709,0.3284,1.1994 -0xa0a5,CUS_0x81cd,August,52,295-27-4404,Writer,107409.27,,8,7,13,1,Auto Loan,16.69653258,,12.3,1,Standard,550.22,34.00322264,27 Years and 6 Months,Yes,66.46230358,145.0460989,High_spent_Large_value_payments,903.0688475,0,-2.0559,0.032,-0.4087,-0.3964,1.4641 -0xa0b1,CUS_0x9d2c,August,27,002-65-6523,Scientist,23051.72,1873.976667,4,5,7,0,,26.91467531,20,4.53,3,_,649.2396064,38.50515916,,No,0,77.08464524,Low_spent_Small_value_payments,408.2265107,0,0.5075,-0.454,-0.8815,-0.4755,1.3618 -0xa0bd,CUS_0x635e,August,24,468-39-2500,Teacher,57619.53,4643.6275,4,6,7,2,"Payday Loan, and Auto Loan",25.75845199,21.25829655,10.63,2,Good,1398.356199,41.23647931,31 Years and 4 Months,No,81.52365105,88.54532294,High_spent_Medium_value_payments,544.293776,0,0.0677,0.2996,-1.0766,0.7929,0.1469 -0xa0c9,CUS_0xa49c,August,45,835-58-9367,Entrepreneur,55281.02,,3,5,9.288361749,100,"Student Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",,15,19.18,7,Standard,522.67,22.84487159,10 Years and 2 Months,Yes,99.25896307,732.88204,High_spent_Small_value_payments,319.1716246,0,-0.5093,-0.4897,0.8504,-0.257,-1.2176 -0xa0d5,CUS_0x2bdd,August,33,162-35-9568,Scientist,68090.85,,7,4,19.28836175,0,Auto Loan,12.50333495,13,2.43,9,Standard,791.78,37.82698923,23 Years and 0 Months,No,31.24593136,616.4948184,High_spent_Medium_value_payments,593.9204613,0,-0.56,-1.5161,0.3705,0.6343,1.5275 -0xa0e1,CUS_0x5de6,August,56,797-52-4322,Media_Manager,17741279,1507.335833,3,2,8,0,,12.66457901,11,4.73,6,Good,307.1728652,31.46411998,28 Years and 6 Months,No,0,131.6099544,Low_spent_Small_value_payments,328.0535296,0,0.495,-0.3355,-0.1681,0.8272,0.0677 -0xa0ed,CUS_0x663b,August,36,655-70-2468,Architect,81815.02,6884.918333,0,5,4,1,Mortgage Loan,0,2,5.18,5,Good,1273.245696,35.86704595,33 Years and 5 Months,No,53.9277855,170.5899916,High_spent_Large_value_payments,726.4087264,0,0.2225,-0.2172,-1.762,-0.0786,0.1794 -0xa0f9,CUS_0x38ce,August,26,220-55-9427,Lawyer,18283.91,1747.659167,6,10,29.88954781,6,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",30.84428784,19.81182404,3.87,13,Bad,2738.741643,23.85799057,10 Years and 2 Months,Yes,1378.204645,,!@9#%8,310.1287106,0,-0.3068,1.0306,-0.099,0.7244,-1.1238 -0xa105,CUS_0x6901,August,58,388-08-1184,Journalist,151696.32,12392.36,4,2,9.288361749,0,,6.230015196,9,12.05,3,Good,347.4643553,35.69300797,29 Years and 11 Months,No,0,2358.548315,Low_spent_Small_value_payments,,0,-0.9047,-2.3319,1.1152,-1.6992,1.6867 -0xa111,CUS_0x3f97,August,29,083-91-7118,Doctor,89190.57,7135.5475,3,4,19,3,"Credit-Builder Loan, Not Specified, and Credit-Builder Loan",16.53710758,13,2.18,0,Standard,1427.36,25.80820089,26 Years and 3 Months,Yes,165.4839039,361.8668846,Low_spent_Medium_value_payments,466.2039615,0,0.0703,0.2689,0.2163,1.2596,-1.1877 -0xa11d,CUS_0x62c7,August,22,485-54-9615,Musician,60460.92,,4,6,16,1,Payday Loan,6.259829685,5,9.3,8,Standard,1040.47,25.31485709,15 Years and 0 Months,Yes,40.27501432,485.1423521,!@9#%8,250.1236335,0,-1.4569,-0.5619,-1.5125,-0.1322,0.7005 -0xa129,CUS_0x8432,August,26,716-57-9686,Architect,14886.29,1379.524167,6,7,20,2,"Student Loan, and Personal Loan",,28.71198256,10.17,14,Bad,2799.839557,33.39150992,13 Years and 5 Months,Yes,17.63513531,,Low_spent_Small_value_payments,246.8905243,0,0.3788,-1.1833,0.2309,-1.6789,1.064 -0xa135,CUS_0x71a0,August,51,143-79-6232,Teacher,155916.32,12869.02667,6,6,1.288361749,2,"Debt Consolidation Loan, Personal Loan, and Not Specified",,1.201535398,1.26,4,Good,623.2711063,27.81600495,,No,249.104133,697.2276237,!@9#%8,1000.508371,0,-0.3001,1.5027,-0.3242,0.2418,0.8485 -0xa141,CUS_0x79ef,August,38,288-80-7664,Manager,14019.63,,9,8,19,6,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",,27.64755309,7.22,13,Bad,2439.222664,38.58173426,17 Years and 0 Months,Yes,69.87719095,67.95984486,Low_spent_Small_value_payments,283.6932142,0,-0.951,0.4116,0.5752,0.4513,-1.6883 -0xa14d,CUS_0x9f91,August,45,419-62-1555,_______,14155.67,1387.277278,6,110,15.88954781,8,"Mortgage Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Personal Loan",24.39377973,17,21.43,10,Bad,4896.28,27.93516539,14 Years and 2 Months,NM,1451.922561,,Low_spent_Small_value_payments,216.5590754,0,-2.9919,0.5297,-0.6625,0.2448,-1.9116 -0xa159,CUS_0x486d,August,43,288-92-4914,Journalist,9377.445,,5,3,12,6,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",,13,11.6,,Standard,1565.647023,36.5088329,7 Years and 4 Months,Yes,43.20952557,11737.71942,High_spent_Small_value_payments,264.4207566,0,-0.3513,0.9522,2.392,0.8679,0.7876 -0xa165,CUS_0x9ead,August,51,655-32-7007,Developer,100956.21,8658.0175,6,6,2,1,Student Loan,16.97613822,8.088985719,7.1,2,Standard,709.6215365,28.64032538,29 Years and 6 Months,No,53.08656992,292.293677,Low_spent_Medium_value_payments,800.4215031,0,-0.3723,0.7612,1.6302,-0.506,-1.5367 -0xa171,CUS_0x7023,August,34,#F%$D@*&8,_______,133439.76,,2,3,10.28836175,4,"Payday Loan, Auto Loan, Not Specified, and Credit-Builder Loan",0,3,2.21,1758,Good,744.5853488,29.87687741,30 Years and 11 Months,No,432.5213188,822.5277598,High_spent_Medium_value_payments,573.245053,0,-1.5988,1.1728,-0.3741,1.1177,-0.2289 -0xa17d,CUS_0x560d,August,35,285-43-4124,Lawyer,15967.505,1474.625417,3,5,7,2,"Payday Loan, and Debt Consolidation Loan",0,2,13.99,2,Good,393.892556,29.96763302,31 Years and 6 Months,No,16.52613638,214.9700367,Low_spent_Small_value_payments,235.914068,0,-0.6936,-0.342,2.5049,-1.8329,-0.8491 -0xa189,CUS_0x86b2,August,26,242-32-6684,Teacher,90182.31,7525.1925,1564,3,12,3,"Home Equity Loan, Auto Loan, and Not Specified",0,2.43796317,6.47,5,_,1387.65918,36.56340762,15 Years and 11 Months,No,139.3991845,249.9839032,Low_spent_Large_value_payments,633.1361623,0,-2.0531,0.4184,-0.0137,-0.0175,0.7564 -0xa195,CUS_0x2e73,August,45,667-70-4413,Accountant,7689.715,,6,5,30,8,"Not Specified, Payday Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Home Equity Loan",33.19059179,24.84335666,8.83,10,Bad,1510.326344,32.42345585,18 Years and 0 Months,Yes,39.72965111,0,High_spent_Medium_value_payments,255.955483,0,-0.8962,0.3249,-0.933,0.9162,-0.3613 -0xa1a1,CUS_0xb52d,August,41,856-39-9861,Manager,14241.48,,8,8,30.95700519,6,"Auto Loan, Home Equity Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,27.45368423,6.74,16,Bad,1949.911254,28.15547002,9 Years and 10 Months,Yes,1391.323666,,Low_spent_Small_value_payments,156.9356145,0,0.5525,-0.7231,-0.0561,-1.6011,0.2435 -0xa1ad,CUS_0x81e2,August,45,662-55-6547,Teacher,75042.72,6484.56,6,3,12.28836175,2,"Auto Loan, and Home Equity Loan",,12,15.65,7,_,417.62,36.51228827,17 Years and 10 Months,Yes,105.684175,861.9384433,Low_spent_Large_value_payments,370.7708427,0,-0.3233,-0.0011,-0.1983,0.3762,0.8492 -0xa1b9,CUS_0x6d6e,August,40,310-72-8518,Lawyer,114977.76,9641.48,1,6,8.288361749,4,"Personal Loan, Home Equity Loan, Home Equity Loan, and Personal Loan",0,3,-3.46,1,_,969.5840784,38.12812056,23 Years and 6 Months,No,245.0136839,1102.317871,Low_spent_Small_value_payments,420.8178347,0,0.5627,-0.4698,1.215,-0.8297,0.1925 -0xa1c5,CUS_0x20c4,August,43,352-92-3069,Manager,7435.16,,8,10,19.88954781,6,"Personal Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Personal Loan, and Auto Loan",25.6983748,17.83847752,29.79,11,_,4376.840214,27.24976603,5 Years and 2 Months,NM,1350.337464,,Low_spent_Small_value_payments,243.452434,0,-0.4756,0.815,-0.4609,0.0026,0.1336 -0xa1d1,CUS_0x440,August,30,144-45-0895,Accountant,10367.01,1095.9175,7,7,35.06745738,5,"Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, and Mortgage Loan",30.62285976,20,11.43,6,Standard,1791.900954,32.59782185,5 Years and 11 Months,Yes,37.90425467,,Low_spent_Large_value_payments,236.9913586,0,-0.0286,-0.501,-0.0882,0.1758,0.5844 -0xa1dd,CUS_0xaffc,August,42,104-15-4430,Accountant,30185.74,,4,6,11,0,,,0,12.38,2,Good,1403.95047,41.2351515,27 Years and 11 Months,No,314.0655567,10000,!@9#%8,467.9315393,0,0.6149,-0.9928,-1.3962,1.1267,-0.8823 -0xa1e9,CUS_0x8d74,August,51,157-46-1542,Teacher,69476.14,6016.678333,5,6,1,3,"Credit-Builder Loan, Credit-Builder Loan, and Not Specified",0,2,3.62,4,Good,1305.65,40.51631629,20 Years and 4 Months,No,106.6476117,93.01304824,High_spent_Medium_value_payments,652.0071734,0,-1.2538,0.3357,-2.1041,0.315,0.7046 -0xa1f5,CUS_0x1107,August,31,118-70-6277,Writer,28952.76,,8,9,22.95700519,8,"Personal Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",49.14121698,29.52915066,2.46,16,Bad,3170.742548,29.65284198,1 Years and 2 Months,Yes,1479.263433,,!@9#%8,216.7813936,0,0.8473,-0.0416,0.9477,1.1441,0.6977 -0xa201,CUS_0x182d,August,26,344-73-9102,Entrepreneur,18798.83,1721.569167,10,8,21.95700519,9,"Mortgage Loan, Not Specified, Not Specified, Personal Loan, Auto Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",29.65452019,20,21.73,13,Bad,4957.510954,40.485002,6 Years and 8 Months,Yes,1395.752163,36.18845,High_spent_Large_value_payments,259.1659341,0,-0.9974,-0.279,-0.0287,-1.063,-1.4185 -0xa20d,CUS_0x5e89,August,46,372-89-5474,Journalist,88348.8,,3,5,15,0,,16.49993843,14,1.7,9,Standard,261.93,27.40136152,26 Years and 3 Months,Yes,0,288.0456058,High_spent_Medium_value_payments,670.9943942,0,-0.7906,-0.431,0.1052,1.0128,-0.3906 -0xa219,CUS_0x735,August,44,542-75-5761,Architect,46076.49,,8,10,32.95700519,7,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",44.85686238,27.0208477,8.57,7,Bad,5661.992439,34.70164096,2 Years and 10 Months,Yes,1586.982549,186.382878,High_spent_Small_value_payments,121.4549534,0,1.3364,-0.0781,-0.3607,-0.7138,0.7339 -0xa225,CUS_0x453a,August,45,938-41-8427,Lawyer,22182.95,1937.579167,7,5,13,4,"Student Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",18.12253731,15,5.18,5,Standard,1170.58,29.48387553,6 Years and 3 Months,Yes,62.25704179,129.4477589,High_spent_Small_value_payments,262.053116,0,0.1231,0.5608,-0.3779,2.2472,0.1209 -0xa231,CUS_0x5e46,August,49,472-71-4758,Scientist,32357.41,2456.450833,5,3,9,0,,,19,8.89,8,Good,681.22,29.35079948,26 Years and 9 Months,No,0,,High_spent_Small_value_payments,450.463017,0,3.1892,0.6729,-1.0638,-0.2828,-1.435 -0xa23d,CUS_0xbb23,August,43,345-90-0825,_______,54601.74,4527.145,7,7,34.06745738,7,"Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Student Loan, Payday Loan, Student Loan, and Student Loan",,17.09135646,1.65,12,Bad,4359.019691,36.23243367,4 Years and 9 Months,NM,72690,,High_spent_Small_value_payments,289.9474346,0,0.6901,-0.0301,-0.5722,0.6279,0.1327 -0xa249,CUS_0x1938,August,24,059-09-5779,_______,31481.45,,4,3,8,0,,19.91557181,15,11.45,5,Good,599.362011,30.52247141,33 Years and 5 Months,No,0,89.84903496,High_spent_Medium_value_payments,452.8038559,0,-1.3865,-0.3194,-0.2454,0.2278,0.3855 -0xa255,CUS_0x4a5,August,38,867-41-1583,Teacher,85280.88,,3,3,1.288361749,0,,7.880378686,9,4.89,7,Good,825.18,37.06472956,29 Years and 10 Months,No,62337,548.6640611,High_spent_Large_value_payments,795.9473999,0,-0.0948,-1.1578,-1.861,1.3144,-0.2289 -0xa261,CUS_0xb583,August,43,035-00-5411,Journalist,34192.02,,1,1,7.288361749,2,"Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",0,0,5.91,5,Good,159.9885053,23.88330323,30 Years and 5 Months,No,61.64205859,525.8640519,High_spent_Medium_value_payments,380.4181037,0,0.2988,-0.9961,-0.5959,0.1233,0.0887 -0xa26d,CUS_0xc173,August,34,419-53-1975,Lawyer,40743.16,,6,9,20.06745738,5,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",32.12441842,22,29.12,10,Bad,3015.360954,30.00842322,6 Years and 3 Months,Yes,302.589439,,Low_spent_Small_value_payments,179.3940019,0,-0.3486,-0.6602,-2.6409,-0.3786,-0.9564 -0xa279,CUS_0x4db7,August,24,816-34-4526,Mechanic,15150.72,1336.56,7,5,14,6,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",29.85016268,21.98681399,7.58,5,Standard,1817.689278,33.34660194,6 Years and 0 Months,Yes,61.45405495,78.33852161,Low_spent_Small_value_payments,283.8634234,0,-0.989,-0.3376,1.6033,-1.8218,-0.8697 -0xa285,CUS_0x9b35,August,44,121-05-2056,Developer,76567.6,6322.633333,2,3,0.288361749,4,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",0,1,0.45,3,Good,953.4008356,25.35064038,19 Years and 9 Months,No,214.2405519,593.9564291,High_spent_Large_value_payments,501.200432,0,0.9584,1.4626,-0.351,-1.3231,2.2787 -0xa291,CUS_0x54d7,August,37,052-22-1460,Architect,119889.75,10174.8125,1,3,6,1,Payday Loan,15.24534452,,11.27,2,Good,441.4660295,35.65835987,17 Years and 0 Months,No,71.19272657,471.1748583,High_spent_Medium_value_payments,787.6896464,0,0.5075,-0.1545,-1.0287,0.4021,2.0523 -0xa29d,CUS_0x591b,August,49,061-35-8180,Manager,12593.765,,3,5,5,1,Payday Loan,12.02225408,11,11.43,2,_,1211.15,27.87110732,21 Years and 9 Months,Yes,6.786378095,52.23399488,High_spent_Small_value_payments,309.5276687,0,-0.3848,-2.2046,-1.4088,0.9033,0.8772 -0xa2a9,CUS_0x59dd,August,28,231-64-8594,Engineer,19370.48,,6,3,10,3,"Payday Loan, Mortgage Loan, and Auto Loan",17.36913329,16,3.58,6,Standard,482.47,35.17249943,21 Years and 8 Months,No,40.23889895,70.10832376,High_spent_Medium_value_payments,322.473444,0,-0.3976,-0.5392,0.3323,0.1979,1.4115 -0xa2b5,CUS_0x31ef,August,21,044-22-3761,Writer,8255.925,,9,5,16.06745738,5,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",,18,18.84,13,Standard,2843.220954,38.23407359,18 Years and 0 Months,NM,31.00373228,109.3446872,Low_spent_Small_value_payments,206.1306675,0,-1.9622,0.3488,0.2155,-0.1814,2.1255 -0xa2c1,CUS_0x1cfd,August,36,351-21-1003,Scientist,31994.01,2756.1675,3,7,8,2,"Credit-Builder Loan, and Home Equity Loan",,21,15.8,8,Standard,1197.22,22.64657555,16 Years and 8 Months,Yes,34.08151708,219.1725221,Low_spent_Small_value_payments,312.3627108,0,-1.0051,1.1615,1.0806,-1.749,-1.09 -0xa2cd,CUS_0xb3f4,August,26,553-09-5457,Entrepreneur,59534.16,,5,7,20,3,"Mortgage Loan, Student Loan, and Student Loan",,16,14.64,6,Standard,1350.67,27.46690707,10 Years and 8 Months,Yes,143.1834601,271.7730924,Low_spent_Small_value_payments,390.9614475,0,-0.6671,0.404,0.7128,-0.4496,0.2862 -0xa2d9,CUS_0x839e,August,23,378-13-1593,Scientist,14584.155,959.34625,4,6,4,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",,12,10.46,6,Standard,883.9,35.54383547,31 Years and 0 Months,NM,24.7128286,53.14761878,!@9#%8,298.0741776,0,-0.094,1.2043,-0.2885,0.5062,1.031 -0xa2e5,CUS_0x3615,August,27,959-59-4160,Accountant,122425.8,10001.15,4,4,6,2,"Student Loan, and Auto Loan",,20,16.19,2,Standard,1097.197672,32.94760155,23 Years and 11 Months,Yes,148.188179,924.493396,Low_spent_Large_value_payments,313.4266857,0,-0.517,-0.2515,0.6206,-0.3347,0.3854 -0xa2f1,CUS_0xa495,August,38,846-74-5800,Media_Manager,21206.82,1881.235,1,5,4,1,Credit-Builder Loan,9.080478968,10,4.5,4,Good,213.2476274,29.54393649,25 Years and 4 Months,No,14.43114591,58.61152372,High_spent_Medium_value_payments,371.8467804,0,-0.2811,-1.7519,-0.2873,-1.469,0.4559 -0xa2fd,CUS_0x18be,August,37,484-89-8097,Engineer,8393.5,517.4583333,9,7,29,5,"Student Loan, Student Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",33.24006368,24.97707158,2.92,2324,_,1922.634687,29.61663549,19 Years and 10 Months,Yes,28.7063974,55.76202234,Low_spent_Small_value_payments,257.2774136,0,1.4883,1.3265,-1.0729,0.2446,-1.3001 -0xa309,CUS_0x6e6f,August,18,314-01-7336,Musician,16801.22,,9,5,33.06745738,5,"Payday Loan, Student Loan, Personal Loan, Personal Loan, and Personal Loan",29.59739056,20,14.21,13,Standard,2668.250954,25.14739192,,NM,55.4487652,77.46387707,Low_spent_Small_value_payments,256.1772364,0,-0.7652,0.2366,2.6263,-0.631,-0.7352 -0xa315,CUS_0x41ac,August,45,051-82-4680,_______,44441.99,,2,3,8,1,Home Equity Loan,8.134463902,8,9.24,8,_,174.1089023,39.4213169,24 Years and 11 Months,No,20.33094567,35.44520972,High_spent_Large_value_payments,588.6643614,0,0.2844,-0.7684,-0.7809,1.4482,-1.0274 -0xa321,CUS_0xb863,August,55,#F%$D@*&8,Developer,23256.59,,6,7,7,4,"Payday Loan, Credit-Builder Loan, Student Loan, and Auto Loan",,22,3.41,4,_,1216.75,33.76269354,16 Years and 8 Months,Yes,56.05876752,126.884125,!@9#%8,296.2620241,0,0.1497,-0.6645,1.2111,1.9733,-0.5304 -0xa32d,CUS_0x4ef1,August,32,509-25-5550,Musician,113666.08,,8,7,8,4,"Personal Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",22.6081226,18,18.45,1346,Standard,883.26,34.2314234,20 Years and 3 Months,Yes,353.5609364,159.4405244,High_spent_Large_value_payments,690.7158726,0,-0.0581,-0.9397,1.6066,-1.0709,-1.2172 -0xa339,CUS_0x1a9f,August,19,391-61-3109,Writer,10062.82,696.5683333,10,7,19.06745738,55,"Not Specified, Personal Loan, Mortgage Loan, Mortgage Loan, and Student Loan",15.44623331,6.823428476,18.18,15,Standard,2540.803696,38.08776511,8 Years and 11 Months,NM,23.83120524,46.27606954,Low_spent_Large_value_payments,242.8292706,0,0.9895,1.2128,-1.4325,-1.2098,1.1267 -0xa345,CUS_0x9322,August,29,091-65-5683,Journalist,88601.46,7504.455,2,4,4.288361749,0,,16.04866001,,8.24,6,Good,683.6361272,42.63679397,25 Years and 2 Months,No,3828,759.9703093,High_spent_Medium_value_payments,703.7095385,0,0.3367,0.3404,0.4982,-0.5172,-0.8055 -0xa351,CUS_0x6c3b,August,41,507-21-0069,_______,11333.42,840.4516667,7,6,16.28836175,2,"Mortgage Loan, and Mortgage Loan",90,4042,12.18,7,Standard,111.4468066,23.25588407,24 Years and 2 Months,Yes,18.31565887,442.6073401,High_spent_Medium_value_payments,295.8372688,0,0.2537,-1.0501,0.3631,0.8564,-1.0797 -0xa35d,CUS_0x757d,August,26,522-28-0477,Lawyer,17135.33,1409.944167,6,8,19.88954781,6,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",25.18391108,17.37684226,21.61,10,Bad,5421.332605,28.37052903,14 Years and 4 Months,Yes,1380.959751,38.08526606,High_spent_Medium_value_payments,277.6193183,0,-1.1927,-0.2721,0.4498,0.7059,-1.2798 -0xa369,CUS_0x165b,August,25,639-95-8108,Mechanic,142717.44,11947.12,5,4,13,0,,21.91870797,14.82416809,17.99,9,Standard,1573.164048,39.01554454,16 Years and 11 Months,Yes,0,531.3412275,High_spent_Small_value_payments,923.3707725,0,-0.8974,0.1255,1.3577,-0.416,-0.1023 -0xa375,CUS_0x8d12,August,41,133-09-6880,Engineer,19269.565,,4,6,9,4,"Payday Loan, Auto Loan, Auto Loan, and Auto Loan",7.067274284,8,6.67,2047,_,578.31,38.56363105,28 Years and 3 Months,No,40.14952903,79.92585531,High_spent_Small_value_payments,274.304324,0,0.6456,-0.1712,1.9249,0.6717,0.607 -0xa381,CUS_0xb8b3,August,39,772-67-3885,Architect,29936.8,2302.733333,8,8,25.88954781,7,"Auto Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Not Specified, Personal Loan, and Credit-Builder Loan",36.19204649,26,17.63,8,_,4147.65,24.93325969,12 Years and 11 Months,Yes,1416.219429,53.04541874,High_spent_Medium_value_payments,316.6784043,0,-0.0068,-0.9859,-0.5677,-0.8395,1.1549 -0xa38d,CUS_0x8757,August,23,884-33-5995,Architect,9901.355,,7,5,21,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",26.4032647,20.13448214,10.54,11,Standard,2274.294401,25.766469,10 Years and 8 Months,Yes,51.74382561,95.30496501,Low_spent_Small_value_payments,266.0020379,0,-0.3354,1.943,-0.442,1.4053,-0.1419 -0xa399,CUS_0x68cc,August,49,919-02-0237,Manager,57197.04,4668.42,5,3,11,0,,18.18990961,11,11.36,3,Standard,1278.85,31.81082732,,NM,0,464.191115,Low_spent_Small_value_payments,292.650885,0,-1.2422,0.1072,1.466,-0.588,0.2601 -0xa3a5,CUS_0x21a3,August,33,185-07-6882,Journalist,17774.97,1281.184981,6,9,34.06745738,9,"Mortgage Loan, Student Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, and Not Specified",45.6018705,25,28.93,13,Bad,3407.090954,39.52411307,10 Years and 4 Months,Yes,78.77269746,,Low_spent_Medium_value_payments,135.2657264,0,-0.2032,1.3685,-0.8727,-0.1078,-0.6925 -0xa3b1,CUS_0x65e9,August,29,083-42-9959,Mechanic,81481.02,6973.085,3,4,6.288361749,2,"Auto Loan, and Student Loan",16.59820246,15,8.11,4,Standard,211.88,29.31905095,25 Years and 0 Months,No,69.3798369,598.8775066,High_spent_Large_value_payments,688.9886176,0,-0.7611,0.6807,-0.4715,0.1864,-1.7561 -0xa3bd,CUS_0xa66,August,19,889-69-4208,Manager,57994.96,4653.913333,3,5,1,2,"Not Specified, and Student Loan",0,1,9.56,6,Good,1096.7,39.45792217,18 Years and 8 Months,No,79153,,High_spent_Large_value_payments,546.6274012,0,-1.4052,1.537,0.9911,0.2291,0.8585 -0xa3c9,CUS_0x2ed4,August,39,766-84-9205,Architect,57473.58,4270.850879,2,854,4.288361749,2,"Payday Loan, Not Specified, and Debt Consolidation Loan",0,3,2.79,5,_,703.18,34.92760925,30 Years and 9 Months,No,402.1318926,912.793512,Low_spent_Small_value_payments,123.0726778,0,-0.347,0.7928,1.393,1.6713,1.3982 -0xa3d5,CUS_0xbfa1,August,54,576-86-0832,Architect,94525.68,,7,4,7.288361749,0,,18.19207667,17,6.65,46,Good,367.9017389,33.63288061,23 Years and 5 Months,No,1113.719713,12057.04277,High_spent_Medium_value_payments,899.9394966,0,1.1354,-0.394,-2.4288,-1.0452,0.0179 -0xa3e1,CUS_0x1bdf,August,24,568-57-0626,Mechanic,17163.15,1572.2625,7,5,21,9,"Home Equity Loan, Home Equity Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",18.19941187,,9.13,12,Bad,2491.33017,26.29007257,18 Years and 3 Months,Yes,104.7797525,74.1564505,!@9#%8,268.290047,0,0.9041,0.5425,-0.3896,-0.7008,0.7252 -0xa3ed,CUS_0x5604,August,41,358-38-0974,Developer,56195.04,4901.92,9,5,17,8,"Not Specified, Mortgage Loan, Home Equity Loan, Personal Loan, Payday Loan, Payday Loan, Auto Loan, and Personal Loan",27.80435118,17,11.78,16,Bad,1450.16,32.509724,15 Years and 6 Months,Yes,58140,118.4243663,High_spent_Large_value_payments,401.1264312,0,-2.0739,0.4889,-0.3375,-0.1707,-1.8513 -0xa3f9,CUS_0x3cc6,August,26,127-68-0039,Doctor,10279.305,,7,9,34,5,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Student Loan",,15.16824291,2.05,7,Bad,4627.537814,36.28302465,4 Years and 5 Months,Yes,42.45041549,43.77704588,Low_spent_Small_value_payments,299.3334136,0,0.3684,0.5735,3.1477,-0.0367,1.9607 -0xa405,CUS_0xbd37,August,50,225-80-8282,Architect,76072.76,6598.396667,6,6,12,0,,14.4367897,10,11.57,9,_,359.79,27.49995065,33 Years and 0 Months,No,0,252.3432178,High_spent_Small_value_payments,667.4964489,0,0.8824,1.1375,-0.7992,0.793,0.6169 -0xa411,CUS_0x5f37,August,37,472-20-2423,Accountant,32401.4,2742.116667,8,5,29,6,"Payday Loan, Mortgage Loan, Payday Loan, Payday Loan, Student Loan, and Personal Loan",37.45718002,22.13148115,9.62,8,Bad,5184.711161,23.30762112,9 Years and 6 Months,Yes,96.31286263,216.2833908,Low_spent_Small_value_payments,251.6154132,0,1.4052,-0.9257,-0.032,0.3435,-1.6294 -0xa41d,CUS_0x57a1,August,35,189-61-8704,Musician,88126.58,6601.061123,2,7,1,0,,6.680271305,6,9.57,5,_,237.935857,34.06542251,31 Years and 5 Months,No,649.8205433,254.585979,Low_spent_Large_value_payments,763.9646908,0,0.8518,0.8237,0.8901,-0.1774,0.3785 -0xa429,CUS_0x7223,August,55,053-71-7366,Musician,31049.93,,8,4,12,3,"Mortgage Loan, Auto Loan, and Mortgage Loan",,20,7.01,6,_,1217.19,32.22122811,24 Years and 8 Months,No,45.80279643,298.7288069,Low_spent_Small_value_payments,175.1178134,0,0.6331,-1.3873,-1.842,-0.9434,0.8657 -0xa435,CUS_0x20f8,August,30,252-54-0732,_______,87791.46,7176.955,6,4,15,1,Debt Consolidation Loan,27.87158093,19,4.34,3,Standard,510.1,40.24683014,24 Years and 2 Months,No,68.80725449,,High_spent_Large_value_payments,822.510421,0,1.2051,0.9899,0.035,-0.5139,-0.0652 -0xa441,CUS_0x7b14,August,54,650-65-4429,Developer,13966.77,,3,7,3,3,"Mortgage Loan, Student Loan, and Payday Loan",16.55387848,15,7.44,3,_,412.48,34.97837252,28 Years and 11 Months,No,127.4477382,38.75370455,Low_spent_Medium_value_payments,312.1841259,0,0.7608,-0.4626,0.7093,0.6504,-0.0725 -0xa44d,CUS_0x57c6,August,50,976-38-2581,Engineer,71660.3,5674.691667,4,366,6,1,Credit-Builder Loan,,19,4.86,0,Standard,1409.25,39.4500827,24 Years and 0 Months,Yes,39.33449899,,High_spent_Medium_value_payments,664.6777137,0,0.0489,-2.9608,0.7998,0.9199,0.7821 -0xa459,CUS_0x1fbb,August,45,891-52-4114,Engineer,70556.92,6078.743333,7,6,16,6,"Payday Loan, Student Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Not Specified",42.22069394,24,4.67,11,Bad,1260.11,31.20354862,,Yes,232.8516525,,High_spent_Large_value_payments,484.5371483,0,-1.3915,-0.6512,0.8627,0.0057,-0.406 -0xa465,CUS_0x622c,August,32,159-23-1271,Entrepreneur,34630.59,2654.8825,5,5,16,3,"Home Equity Loan, Home Equity Loan, and Auto Loan",,17,10.14,4,Standard,94.07023321,36.76333651,,No,85.658795,97.86756387,Low_spent_Large_value_payments,366.7300979,0,-0.2473,0.1973,-0.4532,0.9247,-1.3778 -0xa471,CUS_0x3f74,August,45,135-39-2875,Developer,48610.06,4238.838333,5,4,10,3,"Personal Loan, Home Equity Loan, and Payday Loan",,20,14.27,6,Standard,1032.945841,26.03715579,11 Years and 11 Months,Yes,74.05979386,,High_spent_Small_value_payments,397.3675822,0,-1.3873,-0.327,0.6746,-1.2348,-0.7562 -0xa47d,CUS_0xafc0,August,33,384-48-8170,_______,78363.06,5977.95249,5,5,5.288361749,4,"Not Specified, Mortgage Loan, Not Specified, and Home Equity Loan",5.696226141,8,10.37,10,Standard,23.67957827,26.74714142,17 Years and 3 Months,Yes,787.2121261,648.7692027,High_spent_Medium_value_payments,460.459421,0,0.8055,-0.4144,2.5495,-0.6908,0.6315 -0xa489,CUS_0x7906,August,80,277-33-1379,Media_Manager,32584.15,2863.345833,5,3,2.288361749,2,"Home Equity Loan, and Auto Loan",,5.693099354,8.23,1,Good,386.1111335,25.09584763,18 Years and 6 Months,No,42.41284562,491.9667778,High_spent_Small_value_payments,431.8924209,0,-1.1936,-0.71,-1.4686,-2.3521,0.1322 -0xa495,CUS_0x8149,August,30,846-26-8047,Writer,82293.24,6727.77,8,7,23.06745738,7,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Personal Loan, and Auto Loan",27.31305058,,19.71,11,Bad,5755.516088,42.30064119,9 Years and 3 Months,Yes,285.7450434,,!@9#%8,460.1083587,0,-0.2644,0.9323,0.3626,2.0763,-2.3256 -0xa4a1,CUS_0x26d4,August,39,331-38-2680,Lawyer,9493.125,662.09375,8,8,35.06745738,5,"Personal Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",40.27904016,24.81512227,8.3,8,Bad,1979.898503,32.99595959,11 Years and 4 Months,Yes,26.81750394,70.39253356,Low_spent_Small_value_payments,232.2790495,0,-1.104,0.1139,1.3013,-0.5288,1.2902 -0xa4ad,CUS_0x38a4,August,41,276-77-9532,Manager,32827.08,2597.59,7,3,10,2,"Not Specified, and Home Equity Loan",18.82475163,15,18.65,6,Standard,300.7,35.63749474,31 Years and 3 Months,Yes,29.60368126,105.7539635,High_spent_Medium_value_payments,374.4013552,0,-0.376,0.0638,0.3706,-2.4888,-0.9629 -0xa4b9,CUS_0xbdf7,August,41,698-60-8051,Teacher,20728.4,1506.366667,8,9,35.06745738,5,"Debt Consolidation Loan, Student Loan, Auto Loan, Auto Loan, and Not Specified",44.52897215,24,8.12,6,_,2341.440954,28.08440468,16 Years and 0 Months,Yes,44.18259681,,Low_spent_Medium_value_payments,250.7780637,0,-1.9253,0.1626,0.0439,0.7325,1.4256 -0xa4c5,CUS_0x4c8c,August,24,696-64-9504,Lawyer,15472.34,994.4958247,8,8,20.95700519,100,"Student Loan, and Debt Consolidation Loan",33.94445127,21.04255862,1.86,14,Bad,3192.583307,30.18339329,,Yes,1459.639252,86.14424659,Low_spent_Medium_value_payments,240.0681408,0,0.7138,1.4207,0.0577,0.0656,-1.3294 -0xa4d1,CUS_0x8b2d,August,19,#F%$D@*&8,Journalist,73928.78,,8,7,11,3,"Personal Loan, Not Specified, and Auto Loan",,16,13.54,8,Standard,1457.45,27.45918526,19 Years and 8 Months,Yes,150.5598197,237.8517348,High_spent_Medium_value_payments,484.0616121,0,-2.0878,1.4692,0.4927,-0.0656,-1.4711 -0xa4dd,CUS_0x2f4b,August,21,618-47-7413,Developer,29937.85,,0,1,2,1,Student Loan,,5,2.05,6,Good,642.7405208,37.61696588,18 Years and 11 Months,No,20.77941329,121.8492298,High_spent_Small_value_payments,396.504093,0,-0.0457,0.5017,-0.4557,-0.8257,-0.1121 -0xa4e9,CUS_0x427b,August,31,#F%$D@*&8,Engineer,48090.45,4039.5375,8,8,18.06745738,5,"Student Loan, Mortgage Loan, Auto Loan, Student Loan, and Mortgage Loan",29.00157536,18,24.87,12,_,3312.260954,38.33144961,0 Years and 10 Months,Yes,112.2037033,114.3293667,High_spent_Medium_value_payments,400.700392,0,0.5649,1.8332,-0.4028,-0.3911,-1.1593 -0xa4f5,CUS_0x5e44,August,20,324-95-7058,Media_Manager,29297.14,2004.667803,2,5,1,0,,,6,1.8,4,Good,1108.221921,26.87426222,22 Years and 11 Months,No,157.7605303,238.2769807,Low_spent_Medium_value_payments,286.024572,0,-1.0853,0.5655,-0.7831,-0.3628,-0.9417 -0xa501,CUS_0x2883,August,21,354-08-5738,Journalist,8264.75,,7,10,27.06745738,5,"Credit-Builder Loan, Home Equity Loan, Student Loan, Student Loan, and Credit-Builder Loan",36.91440513,20.30872049,1.35,11,_,3073.01015,31.09126558,15 Years and 2 Months,Yes,27.4585469,32.99178724,Low_spent_Small_value_payments,262.4022946,0,-0.178,-1.0161,0.0991,0.5818,-1.3153 -0xa50d,CUS_0xae9b,August,34,580-64-1142,Doctor,18514.195,,0,4,7.288361749,2,"Mortgage Loan, and Credit-Builder Loan",,2,5.23,3,Good,62.75,35.50969069,33 Years and 6 Months,No,20.05047356,489.8058483,Low_spent_Small_value_payments,371.4660975,0,-0.838,1.4159,-0.5521,0.1392,0.8848 -0xa519,CUS_0x2daf,August,18,023-84-7652,Developer,43270.47,3882.8725,3,4,19,2,"Home Equity Loan, and Student Loan",,15,15.01,9,Standard,1401.86,37.89178376,17 Years and 5 Months,Yes,71.75087621,99.94562064,!@9#%8,456.5907531,0,-1.2288,-0.7517,-1.9144,-1.8306,0.4734 -0xa525,CUS_0x8ed4,August,33,089-81-7594,_______,18380.15,1396.679167,5,5,11,4,"Mortgage Loan, Auto Loan, Not Specified, and Personal Loan",,14,16.2,4,Standard,1456.12,25.2080532,16 Years and 11 Months,Yes,46.08682421,132.6188284,Low_spent_Small_value_payments,250.962264,0,0.7323,-1.5212,-0.8924,0.713,-0.4024 -0xa531,CUS_0x49d5,August,32,373-75-0180,_______,51162.84,,7,10,34,5,"Mortgage Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",41.68997135,21.66614422,18.23,9,Bad,2091.691851,37.27045132,10 Years and 8 Months,Yes,178.7834235,169.0174348,High_spent_Small_value_payments,337.1561416,0,0.9874,-0.9535,-1.1252,-0.2957,1.4933 -0xa53d,CUS_0x1182,August,24,117-62-4809,Musician,176696.88,,5,7,11.28836175,4,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Not Specified",5.978161299,8,4.01,6,Good,402.4690203,40.84913882,17 Years and 2 Months,No,1169.809116,,High_spent_Large_value_payments,1022.736843,0,-0.7826,0.1698,-1.0608,-0.16,-1.2652 -0xa549,CUS_0x1b97,August,18,543-81-0130,Entrepreneur,28631.79,,3,3,11,3,"Credit-Builder Loan, Home Equity Loan, and Payday Loan",26.78610075,17,13.94,9,Standard,685.37,33.71095001,18 Years and 6 Months,Yes,65.28496332,232.4020986,Low_spent_Medium_value_payments,227.7111881,0,-0.9351,0.6574,-0.4572,2.2017,-1.0265 -0xa555,CUS_0x9228,August,39,907-49-9321,Developer,75004.05,,3,3,8,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",15.31979479,9,17.36,9,_,199.04,26.04544517,9 Years and 0 Months,Yes,161.4996802,251.8653433,Low_spent_Medium_value_payments,508.2687265,0,1.5741,-1.1143,-0.184,-1.6972,0.6432 -0xa561,CUS_0x7f08,August,36,597-26-2038,Writer,9888.7,,8,7,33,5,"Payday Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Not Specified",22.59550414,17,21.5,10,Standard,1416.74,28.00755549,7 Years and 2 Months,Yes,100.782846,26.86319217,High_spent_Medium_value_payments,284.704606,0,0.2499,1.2242,-0.7298,0.3756,-1.134 -0xa56d,CUS_0x23ff,August,28,846-25-0402,Architect,69050.52,5722.21,3,3,10,0,,22.45155526,18,8.1,3,Good,1274.419568,26.99983916,30 Years and 4 Months,NM,0,161.253723,High_spent_Medium_value_payments,683.5327043,0,-0.9179,-0.5037,-1.1574,-0.3606,-2.7723 -0xa579,CUS_0xaa6e,August,25,200-22-4622,Media_Manager,18412.85,,6,6,24.06745738,9,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Personal Loan",,26,23.03,11,Bad,4049.180954,24.35023662,12 Years and 0 Months,Yes,128.1553485,,Low_spent_Small_value_payments,112.3456418,0,-1.2289,0.008,0.0183,-0.8507,-0.2313 -0xa585,CUS_0x1367,August,45,434-08-1310,Engineer,142635.52,11708.29333,0,5,12,3,"Personal Loan, Auto Loan, and Mortgage Loan",13.86715753,12.1155442,8.45,5,Good,515.4669794,38.00911617,20 Years and 11 Months,No,308.4094298,86.4901234,High_spent_Large_value_payments,1015.92978,0,-1.3715,-0.1855,0.9104,-1.2065,-0.0574 -0xa591,CUS_0x1c12,August,20,644-02-4671,Musician,115177.32,9529.11,4,4,2,4,"Debt Consolidation Loan, Auto Loan, Not Specified, and Not Specified",,10,3.83,4,_,801.79,39.31693775,17 Years and 2 Months,No,293.9138436,168.39716,High_spent_Large_value_payments,730.5999964,0,1.9308,0.1957,-1.1324,0.4224,-0.2772 -0xa59d,CUS_0xa6bd,August,29,871-70-7348,Manager,76092.27,6055.0225,4,6,12,6,"Student Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Not Specified",5.901042231,8,14.25,8,Standard,1266.19,30.61871859,5 Years and 11 Months,Yes,208.996781,119.51553,High_spent_Medium_value_payments,526.989939,0,-0.6876,1.2711,0.6559,-0.199,-0.2853 -0xa5a9,CUS_0x68bb,August,53,565-48-2416,_______,103284.84,,2,4,8.288361749,2,"Home Equity Loan, and Not Specified",,6,-1.14,3,Good,256,37.27529796,32 Years and 6 Months,No,119.1377279,1219.696018,!@9#%8,210.2107148,0,0.3627,0.4619,-1.4475,-0.1918,-0.3098 -0xa5b5,CUS_0x4367,August,22,208-70-4954,Accountant,23312.22,1814.685,6,7,20,2,"Payday Loan, and Personal Loan",14.46157211,13,1.95,7,Standard,1067.99,26.17512664,31 Years and 6 Months,No,25.17433036,53.90544701,!@9#%8,352.3887226,0,-0.736,-0.0338,0.5588,-0.4963,0.6032 -0xa5c1,CUS_0x8b3,August,27,038-00-6125,Accountant,30093.32,2348.124388,2,4,10.28836175,0,Personal Loan,3.218321845,5,8.94,0,Good,22.88,33.48245096,26 Years and 10 Months,No,150.4276342,,!@9#%8,183.4607922,0,0.1254,-1.1295,1.6221,-0.1164,-0.0552 -0xa5cd,CUS_0xa7d4,August,42,363-17-2182,Journalist,132588.3,10918.025,5,4,3,2,"Mortgage Loan, and Home Equity Loan",6.79229333,4.777451718,1.61,6,Good,39.45938325,38.9779916,20 Years and 5 Months,No,130.1041062,495.2354338,High_spent_Small_value_payments,726.46296,0,0.75,-0.9961,-0.6693,-0.1236,0.2823 -0xa5d9,CUS_0x5255,August,46,917-67-4033,Engineer,29873.96,2477.496667,5,4,10,0,,,8.485636175,16.76,9,Good,1214.833511,39.05374036,26 Years and 6 Months,No,0,75.68106605,High_spent_Medium_value_payments,422.0686006,0,-0.7496,-1.6524,1.7543,-0.9225,0.004 -0xa5e5,CUS_0x96f7,August,43,531-78-9628,Lawyer,16544.455,1111.329223,1,3,11,0,,,3404,5.31,1,Good,217.92,32.34303108,,No,98.37536075,,Low_spent_Small_value_payments,258.7204589,0,1.2594,0.6374,-0.1209,0.0116,1.1076 -0xa5f1,CUS_0x5369,August,37,111-17-8056,Accountant,25899.18,2100.265,8,4,9,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",9.502261569,9,9.05,6,Standard,69.74,33.59246672,33 Years and 4 Months,Yes,64.20245915,,Low_spent_Large_value_payments,344.9226173,0,0.8964,-1.6523,-0.1551,-0.8577,-0.6959 -0xa5fd,CUS_0x62e4,August,61,336-90-0523,Mechanic,85954.42,7366.868333,0,7,5,3,"Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",16.07450969,,3.66,3,Good,708.6294063,24.7982093,30 Years and 9 Months,NM,128.5552334,203.9029911,High_spent_Large_value_payments,673.3628957,0,-0.7343,0.563,-1.3212,0.4854,1.3398 -0xa609,CUS_0xbcfa,August,40,556-18-4640,Journalist,58510.6,4540.174389,8,7,35.06745738,7,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Student Loan, and Personal Loan",32.05696847,20.33683096,9.25,12,Bad,4233.308414,25.40591277,3 Years and 6 Months,Yes,365.8933896,140.3244445,Low_spent_Large_value_payments,360.1591555,0,-1.3249,1.8325,-2.0197,0.3073,-0.3428 -0xa615,CUS_0x4e53,August,26,174-15-1334,Musician,44768.54,3535.711667,3,6,0.288361749,0,Debt Consolidation Loan,,10,-0.27,1,Standard,127.38,35.24937764,19 Years and 4 Months,No,20.83545848,606.870346,!@9#%8,425.8028232,0,-0.4018,0.0208,1.1816,1.2058,0.8666 -0xa621,CUS_0x9ed5,August,24,137-27-3761,Teacher,66914.37,5331.1975,8,6,18.28836175,4,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",,20.59049214,4.72,8,Standard,198.2445362,39.46054414,18 Years and 8 Months,No,204.9223095,,Low_spent_Large_value_payments,400.09645,0,1.6301,0.363,0.0032,1.7865,0.6046 -0xa62d,CUS_0x22d0,August,33,156-11-2163,Teacher,28108.17,2591.3475,2,3,18,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",14.09227525,9,5.9,7,_,597.44,37.60150675,15 Years and 0 Months,Yes,57.18198799,10000,Low_spent_Large_value_payments,233.4748424,0,0.2864,-0.2258,-0.0372,-1.7013,2.1426 -0xa639,CUS_0x442e,August,36,549-81-5604,Media_Manager,36857.22,2976.435,4,5,14,2,"Debt Consolidation Loan, and Auto Loan",15.66643886,12,8.9,6,Standard,1911.65,32.71157052,11 Years and 3 Months,NM,56.04252061,,Low_spent_Small_value_payments,155.4519954,0,-0.3916,0.0345,-0.021,-0.0238,-1.0498 -0xa645,CUS_0x12a8,August,44,036-08-3232,Doctor,103092.27,8311.0225,3,6,10,4,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",19.50635852,15,15.53,4,Standard,300.65,39.79152937,13 Years and 8 Months,Yes,328.6048364,65.92393373,High_spent_Large_value_payments,676.5734799,0,1.2891,-0.3483,-0.6738,0.6897,2.3555 -0xa651,CUS_0x4c2,August,19,068-99-0027,Lawyer,17569.69,1440.140833,6,7,5,4,"Student Loan, Home Equity Loan, Not Specified, and Not Specified",12.44059615,9,11.56,10,_,1135.31,33.9593929,18 Years and 4 Months,Yes,47.59909906,23.50837797,High_spent_Large_value_payments,312.9066063,0,-1.4626,1.0677,-1.4661,0.254,0.9695 -0xa65d,CUS_0x936d,August,38,703-48-3482,_______,100433.58,8074.465,1,5,10,2,"Student Loan, and Debt Consolidation Loan",4.034844132,5,11.59,6,Good,1023.93,32.47841194,20 Years and 10 Months,No,100.1634659,144.1842473,High_spent_Large_value_payments,803.0987868,0,-1.1872,-0.3591,-0.3444,-0.9251,0.7199 -0xa669,CUS_0x7712,August,32,835-41-5190,Developer,53751.21,,10,725,19.88954781,9,"Not Specified, Personal Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Payday Loan, Student Loan, Student Loan, and Not Specified",33.54175423,24.85664698,8.98,12,Bad,3705.979527,21.96731501,7 Years and 11 Months,Yes,1545.745002,458.197526,Low_spent_Small_value_payments,17.75414079,0,-0.0435,-1.0372,0.3316,-1.824,1.7287 -0xa675,CUS_0xa6e,August,27,219-05-9236,Musician,82823.92,7098.993333,4,5,18,2,"Payday Loan, and Not Specified",19.54890225,13.00287,11.59,7,Standard,191.8473772,30.65476405,13 Years and 3 Months,Yes,118.064832,521.2376917,Low_spent_Medium_value_payments,350.5968096,0,0.4056,0.6493,-0.1515,0.2409,-1.4117 -0xa681,CUS_0xa72,August,26,511-39-3582,Mechanic,20196.67,,9,9,17,7,"Not Specified, Personal Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, and Student Loan",40.40193363,21.99653815,26.96,11,Bad,3220.176018,24.65238099,6 Years and 2 Months,NM,66.81100361,,Low_spent_Large_value_payments,227.5803278,0,-0.3293,1.4157,0.3579,-1.581,-0.2512 -0xa68d,CUS_0x9bbd,August,50,217-52-9489,Media_Manager,107761.29,9047.1075,4,5,9,0,,,16,13.56,3,_,34.09,39.28781402,17 Years and 8 Months,Yes,0,429.1935626,High_spent_Small_value_payments,735.5171874,0,1.0772,-0.7524,1.7223,-0.4528,-0.9275 -0xa699,CUS_0x1252,August,28,938-09-5300,Entrepreneur,34132.87,,4,6,3.288361749,4,"Student Loan, Personal Loan, Not Specified, and Home Equity Loan",,13,10.89,2,Good,168.4014202,37.02735017,21 Years and 2 Months,No,100.0843179,863.2451577,Low_spent_Small_value_payments,108.21005,0,0.843,0.5196,1.326,0.2321,-0.5883 -0xa6a5,CUS_0xbaa6,August,24,062-43-3431,Architect,8102.765,,6,8,16.95700519,420,"Payday Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,21,26.54,13,Bad,2974.290954,37.70450449,10 Years and 9 Months,Yes,1352.976705,,Low_spent_Small_value_payments,200.3562156,0,1.7127,-0.3242,-0.3952,0.5033,-0.9025 -0xa6b1,CUS_0x3c61,August,49,020-98-6690,Musician,12153.69,886.8075,6,5,13,2,"Credit-Builder Loan, and Home Equity Loan",,19,9.97,5,Standard,116.0243064,22.34849414,,Yes,15.76815239,65.40649719,Low_spent_Medium_value_payments,296.4696399,0,-1.4507,0.2658,0.4214,1.8467,1.062 -0xa6bd,CUS_0xb340,August,18,059-35-4671,Mechanic,7619.09,,4,6,19.06745738,2,"Debt Consolidation Loan, and Auto Loan",26.52603081,18,11.5,13,Standard,2292.710954,26.49255543,16 Years and 0 Months,Yes,8.756593493,,!@9#%8,240.8000101,0,-0.9539,0.5659,0.4603,0.3929,0.4085 -0xa6c9,CUS_0xa1f1,August,28,907-78-2343,Musician,25664.86,,7,7,17,0,,15.99594153,13.14273951,0.9,2,Standard,4.143236131,28.60578081,26 Years and 2 Months,Yes,0,119.8154202,Low_spent_Small_value_payments,360.6584132,0,0.4286,0.9029,-0.4095,1.8868,-0.279 -0xa6d5,CUS_0xbe49,August,41,251-00-6756,Engineer,35615.68,,2,3,8,0,,13.70347769,8.291185624,5.05,5,Good,1643.833884,23.98761428,29 Years and 2 Months,No,0,105.017706,High_spent_Small_value_payments,422.7796273,0,0.04,0.4758,2.4417,-0.9753,-0.4997 -0xa6e1,CUS_0x2a8c,August,45,180-05-9282,Doctor,17296.38,,6,10,30,5,"Payday Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",23.62941496,18,17.34,9,Bad,4624.73,24.01929236,8 Years and 0 Months,Yes,49.36071018,117.3428318,Low_spent_Small_value_payments,271.332958,0,0.5915,-1.0359,1.6955,-1.0857,0.8793 -0xa6ed,CUS_0xacd7,August,25,171-88-1771,Musician,15701.03,1213.419167,8,10,30,9,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Auto Loan",,25.11679768,,9,Bad,1789.378447,30.03868318,19 Years and 3 Months,NM,60.44515193,67.76890495,Low_spent_Small_value_payments,283.1278598,0,-0.0614,2.8084,2.3332,-0.0485,3.1983 -0xa6f9,CUS_0x6e6b,August,51,424-23-9837,Accountant,177350.84,14615.23667,4,1,9.288361749,4,"Debt Consolidation Loan, Not Specified, Home Equity Loan, and Personal Loan",0,3,9.18,2,Good,256.54,23.73876087,29 Years and 5 Months,No,455.5984102,1279.890612,Low_spent_Large_value_payments,415.9721059,0,1.9851,-0.0102,0.2257,-0.326,-0.5422 -0xa705,CUS_0x7be,August,40,706-58-3472,Teacher,20282.38,1688.198333,3,7,4,1,Not Specified,13.98531883,,3.95,2,Good,1112.402451,32.18004567,24 Years and 8 Months,No,10.17939375,11440.79312,High_spent_Large_value_payments,387.3767178,0,-0.9821,-1.3314,0.0465,-0.7057,1.2065 -0xa711,CUS_0x4cb5,August,37,762-98-8448,Mechanic,49346.88,3593.222193,5,7,15,100,"Debt Consolidation Loan, Payday Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",63.64177402,47,16.99,7,Standard,198.5299555,26.3755174,7 Years and 6 Months,Yes,586.2382653,53.30458811,High_spent_Large_value_payments,375.5106533,0,-0.9152,-1.3189,-2.3492,1.8241,0.0532 -0xa71d,CUS_0x499d,August,41,573-37-4142,_______,8973.16,,6,8,16,5,"Home Equity Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,21,0.52,10,_,1483.24,30.95228531,14 Years and 6 Months,Yes,20.27801062,,Low_spent_Small_value_payments,269.3650533,0,-0.6699,0.6332,-1.3881,-0.55,-1.9527 -0xa729,CUS_0xa4f6,August,26,606-38-9646,_______,14810.545,1075.212083,6,7,2,100,Debt Consolidation Loan,23.89808643,19,8.03,4,_,862.5153196,33.05014228,26 Years and 9 Months,No,9.433937794,30.79098244,High_spent_Small_value_payments,330.7968998,0,0.1581,-1.4914,0.325,-0.103,2.1196 -0xa735,CUS_0x657e,August,55,#F%$D@*&8,Media_Manager,55929.32,4788.776667,7,6,5,0,,28.49387075,20,9.7,4,_,994.27,37.03351907,,No,0,,!@9#%8,560.810418,0,-0.7837,-1.2608,0.324,0.1844,0.4259 -0xa741,CUS_0x158e,August,34,208-03-8186,Writer,36638.43,,3,6,20,100,"Mortgage Loan, Personal Loan, Home Equity Loan, and Student Loan",16.71756192,,14.63,4,Standard,110.35,40.38555017,21 Years and 11 Months,Yes,120.7937025,96.74784653,High_spent_Medium_value_payments,313.178701,0,1.2852,-0.946,-2.0934,-0.6085,0.0767 -0xa74d,CUS_0x18c9,August,48,108-93-2981,_______,31183.16,,0,7,5,1,Mortgage Loan,18.51134959,17.86519791,2.46,1,_,950.2358431,26.62081573,,NM,23.72277458,76.39380256,!@9#%8,455.9430895,0,0.3715,-1.0338,-0.1215,0.9826,-0.0163 -0xa759,CUS_0x8ce,August,46,504-18-6493,Teacher,28956.72,2459.06,8,6,23.06745738,5,"Student Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",34.56415024,24,14.59,11,Bad,2768.450954,33.58551058,13 Years and 3 Months,Yes,98.63463842,,Low_spent_Small_value_payments,88.10165477,0,0.5269,0.0831,-0.3133,-0.0404,-2.2844 -0xa765,CUS_0x74c9,August,25,778-06-7158,Developer,28263.5,2514.291667,7,5,25.06745738,2,"Home Equity Loan, and Not Specified",19.52974905,13.05280047,9.34,8,Standard,2514.297933,35.02877748,14 Years and 11 Months,Yes,32.21531559,,High_spent_Medium_value_payments,367.8494692,0,-0.9242,-0.0959,-0.7374,-0.0445,-0.639 -0xa771,CUS_0x32d1,August,39,173-69-9224,Journalist,58267.23,4943.6025,8,6,17,4,"Student Loan, Student Loan, Not Specified, and Payday Loan",,10.37043902,17.98,7,Standard,2056.806615,34.92511586,15 Years and 4 Months,Yes,109.7203506,120.336101,High_spent_Small_value_payments,524.3037985,0,1.2519,-2.1006,-1.8539,-1.0293,1.0597 -0xa77d,CUS_0x81d3,August,41,939-81-7581,Architect,111112.76,,7,5,13,0,,28.25885209,18,19.75,6,_,261.78,31.00410687,22 Years and 11 Months,Yes,0,180.7281986,High_spent_Large_value_payments,956.9114681,0,-1.1553,0.9662,1.7424,0.2878,-0.3118 -0xa789,CUS_0x9c68,August,37,181-33-2849,Lawyer,19427.14,,4,6,16,6,"Debt Consolidation Loan, Student Loan, Auto Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",,15,11.4,7,Standard,696.13,29.00253675,11 Years and 2 Months,Yes,75.28872895,26.91216516,High_spent_Large_value_payments,278.2919392,0,0.4795,-0.1185,-0.0846,-1.8332,-0.3926 -0xa795,CUS_0x7ae,August,50,956-28-1881,Lawyer,87714.58,7483.548333,3,7,11,4,"Credit-Builder Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",7.347454555,7,3.97,4,_,53.4,24.00143072,16 Years and 9 Months,No,263.655491,629.3056772,Low_spent_Medium_value_payments,135.3936652,0,-0.0701,0.4295,1.4588,0.1718,-0.482 -0xa7a1,CUS_0x1676,August,22,408-02-4990,Mechanic,124436.4,10520.7,5,5,7,2,"Not Specified, and Debt Consolidation Loan",,7,2.82,1,Good,529.84,32.07150057,30 Years and 0 Months,No,164.0140823,398.5314393,!@9#%8,759.5244784,0,0.1205,-2.5005,0.638,3.0152,-1.3409 -0xa7ad,CUS_0x7251,August,31,516-69-1184,Developer,167860.16,13773.34667,3,7,3.288361749,2,"Home Equity Loan, and Home Equity Loan",5.930251149,9,11.19,4,Good,706.55,30.78219304,23 Years and 5 Months,No,218.3282682,657.268188,High_spent_Large_value_payments,1161.675672,0,-0.4797,-0.0808,0.5731,-0.1911,-1.2363 -0xa7b9,CUS_0x558e,August,58,351-09-5113,Scientist,5651693,2611.245,5,3,4.288361749,0,,,8,11.73,2,Good,1200.409172,27.57066718,26 Years and 3 Months,No,0,582.6890508,High_spent_Small_value_payments,377.2530581,0,0.6358,1.1085,-0.1786,-0.8598,0.1963 -0xa7c5,CUS_0x435a,August,59,295-35-0003,Architect,42103.18,3327.598333,4,2,754,100,"Payday Loan, and Payday Loan",12.81829125,,5,7,_,663.0495121,39.35744761,32 Years and 2 Months,No,42.46857923,251.6304822,!@9#%8,344.5399829,0,0.5744,1.1317,-1.6856,1.3832,2.2916 -0xa7d1,CUS_0x1c47,August,27,239-32-4017,Mechanic,15604.245,1554.35375,4,3,11,4,"Not Specified, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",7.159562112,8,1.64,3,Good,928.5521894,28.09477679,28 Years and 4 Months,NM,47.62919148,51.91429342,High_spent_Small_value_payments,321.9828004,0,0.3473,1.7074,2.2462,0.0097,1.4639 -0xa7dd,CUS_0x6908,August,27,979-88-4689,Accountant,15391.47,,7,7,19,3,"Not Specified, Auto Loan, and Payday Loan",,12,13.68,7,Standard,939.63,39.17326335,20 Years and 5 Months,Yes,114.7586613,60.97972126,Low_spent_Small_value_payments,322.2670756,0,-0.3492,0.1554,-0.5397,0.2444,0.7623 -0xa7e9,CUS_0x9853,August,21,355-95-9543,Musician,132897.24,11193.77,3,5,7,1,Not Specified,0,1,11.35,4,Good,1473.37,30.84577807,33 Years and 3 Months,No,67.30924983,,!@9#%8,1152.789934,0,-0.9957,0.7724,-0.1812,-0.4348,0.046 -0xa7f5,CUS_0x16a4,August,36,550-63-8553,Architect,31178.1,,6,9,25.06745738,6,"Student Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",,23.66125247,,10,_,5747.70422,31.68800985,6 Years and 2 Months,Yes,144.6297138,,Low_spent_Small_value_payments,54.62019143,0,-0.9088,1.1304,0.5153,0.3029,-0.1077 -0xa801,CUS_0x2363,August,25,380-39-9684,Mechanic,38038.59,3011.8825,2,3,10,2,"Personal Loan, and Credit-Builder Loan",0,0,8.63,4,Good,328.1757396,30.93988324,27 Years and 4 Months,NM,38.45595247,179.921998,Low_spent_Large_value_payments,352.8102995,0,-0.3701,-1.9777,0.7913,-0.3154,0.2332 -0xa80d,CUS_0x47e,August,47,821-33-2218,Writer,35539.56,2953.63,3,4,5,0,,10.00664156,8,3.4,2,Good,819.48,39.41336446,27 Years and 6 Months,No,0,20.63032454,High_spent_Large_value_payments,514.7326755,0,0.2423,-0.2777,1.4784,1.0673,1.2905 -0xa819,CUS_0x3e7e,August,25,132-80-5883,Accountant,83873.61,7034.4675,7,4,4.288361749,2,"Debt Consolidation Loan, Student Loan, and Home Equity Loan",18.17142068,16,7.53,7,Standard,90.93,37.3344167,5 Years and 9 Months,NM,171.4571987,838.9420836,High_spent_Small_value_payments,372.9849287,0,1.2544,0.6598,-0.4221,-0.4384,2.0952 -0xa825,CUS_0xa7a4,August,49,448-37-5187,Media_Manager,19042.55,1716.879167,3,7,14.28836175,0,,18.12038165,16,,3,_,36.36,34.27428214,22 Years and 9 Months,NM,0,492.1222883,High_spent_Medium_value_payments,349.5030894,0,0.1175,0.248,-0.1367,0.4584,0.5831 -0xa831,CUS_0xbe14,August,58,045-24-1440,Media_Manager,12975.45,,3,6,15,0,,16.04364933,15,15.91,4,_,523.7370903,38.98797826,26 Years and 9 Months,Yes,131.1338407,70.05031967,Low_spent_Small_value_payments,349.6962102,0,-0.3678,-0.1341,-0.8511,-0.5709,3.3239 -0xa83d,CUS_0xd46,August,26,366-52-8814,Entrepreneur,34693.86,,1,5,3,1,Credit-Builder Loan,2.97832185,4,10.99,7,Good,1400.6,32.82632288,28 Years and 2 Months,No,16.78352528,,Low_spent_Small_value_payments,200.9716111,0,0.9584,-0.7125,-1.5464,-0.7784,-0.8235 -0xa849,CUS_0xb01f,August,22,766-73-2626,Lawyer,28560.71,,4,7,11.28836175,0,Debt Consolidation Loan,,12,8.79,2,Good,24.57,39.87288008,28 Years and 6 Months,No,13.79706265,10419.93746,High_spent_Small_value_payments,381.629068,0,-0.2656,0.7824,0.6396,-1.0139,-1.8139 -0xa855,CUS_0x9c1f,August,28,818-95-8183,Teacher,55378.41,4665.8675,6,9,17,9,"Mortgage Loan, Payday Loan, Payday Loan, Personal Loan, Student Loan, Auto Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",,20,1.53,16,Bad,3911.65,32.38163927,4 Years and 8 Months,Yes,320.4510878,50.81393976,High_spent_Large_value_payments,335.3217225,0,-0.4862,-0.0893,0.0167,-0.132,-1.0654 -0xa861,CUS_0x22be,August,51,552-02-3722,Accountant,39296.5,3261.708333,4,0,0.288361749,4,"Payday Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",8.223592156,9,12.65,3,Good,167.8967535,34.34562836,27 Years and 8 Months,No,124.9486672,606.2349575,High_spent_Small_value_payments,295.901982,0,0.4929,0.0011,-1.2962,-0.5683,-0.12 -0xa86d,CUS_0x6080,August,34,773-11-0687,_______,16472.09,,4,3,6,0,,,7,7.4,9,Good,646.7957271,27.84903394,32 Years and 8 Months,No,0,87.48343122,Low_spent_Small_value_payments,370.970139,0,2.5565,0.1029,-1.6815,0.2655,-1.0518 -0xa879,CUS_0xa20f,August,35,042-35-5864,Journalist,21687.46,2003.288333,1,1,12,4,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, and Home Equity Loan",4.462346276,8,6.39,7,Good,1226.568251,24.49698881,21 Years and 9 Months,No,56.52993708,287.0843136,!@9#%8,174.3145523,0,-1.6278,-1.4399,-1.733,-0.0585,-0.5971 -0xa885,CUS_0x9aa1,August,40,375-38-2010,Architect,16517.795,1467.482917,5,6,11,0,,17.80695516,13,4.67,7,Standard,87.91,27.69237141,23 Years and 10 Months,Yes,0,122.1885304,Low_spent_Medium_value_payments,304.5597613,0,-0.3984,0.7953,-0.566,0.5122,-0.5654 -0xa891,CUS_0x1fdc,August,29,896-78-0268,Accountant,14189.3,,8,1499,23,2,"Mortgage Loan, and Student Loan",14.73066704,12.62055107,15.02,12,Standard,1436.742497,34.22719631,18 Years and 9 Months,NM,19.79281109,90.69247395,Low_spent_Small_value_payments,276.8588816,0,-0.4431,-0.3945,2.0161,1.6407,-1.2661 -0xa89d,CUS_0xf91,August,40,856-43-1180,Accountant,97384.44,8167.37,1,3,8,1,Debt Consolidation Loan,16.51880559,11.72088244,0.52,4,Good,461.8001074,29.92728141,28 Years and 4 Months,No,77.28494292,66.38998748,!@9#%8,913.0620696,0,-0.0835,-1.6798,-1.7914,0.6309,1.2649 -0xa8a9,CUS_0xd7c,August,40,#F%$D@*&8,Architect,36941.92,,8,7,24,9,"Personal Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",,17.82187736,0.74,6,Bad,2863.837539,26.70302067,12 Years and 11 Months,Yes,185.3588934,105.2146076,High_spent_Medium_value_payments,293.6758324,0,0.7552,-1.6352,0.9655,-0.0388,0.1631 -0xa8b5,CUS_0x5f97,August,27,568-79-7786,Lawyer,25322.83,,6,6,8,2,"Credit-Builder Loan, and Home Equity Loan",26.60113959,20,8.25,2,Good,247.013436,32.43761164,23 Years and 5 Months,NM,33.25945351,77.92389572,!@9#%8,334.1521629,0,-1.055,2.3305,0.3343,0.5747,-0.4576 -0xa8c1,CUS_0x2d94,August,48,525-03-2473,Journalist,19835.93,1531.994167,2,3,1,0,,4.429747007,6,3.09,0,Good,1385.49,27.15871505,25 Years and 8 Months,No,0,,Low_spent_Small_value_payments,244.7714188,0,-0.5861,1.0986,-0.0606,0.0871,-0.64 -0xa8cd,CUS_0x317a,August,37,123-72-0187,Developer,67049.66,,224,6,11,4,"Auto Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",18.61410677,12,17.27,13,Standard,1247.9,26.41324831,9 Years and 2 Months,Yes,139.3885777,170.0881897,!@9#%8,538.2703993,0,-0.2092,1.3018,0.411,1.5316,0.2383 -0xa8d9,CUS_0x603b,August,38,#F%$D@*&8,Scientist,86878.4,7336.866667,3,4,15,4,"Student Loan, Student Loan, Payday Loan, and Home Equity Loan",34.50258587,21.59583485,10.25,6,Standard,173.6383824,30.64502298,20 Years and 8 Months,No,210.5760447,250.132179,High_spent_Small_value_payments,532.978443,0,1.4023,-0.7606,-1.1933,-2.4749,1.3519 -0xa8e5,CUS_0x7963,August,31,820-04-5244,Engineer,39340.72,3534.393333,4,2,9,0,,0,2,5.98,3,Good,1336.832921,36.90480213,26 Years and 11 Months,No,0,285.9771066,Low_spent_Small_value_payments,391.9498882,0,0.6587,-0.508,0.0959,-0.6842,-1.2022 -0xa8f1,CUS_0x5876,August,43,593-61-6899,Writer,10003.495,,8,7,28.06745738,6,"Mortgage Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",38.95522476,23,19.76,14,Bad,3233.182254,24.48181508,1 Years and 5 Months,NM,38.50716227,86.53023446,Low_spent_Small_value_payments,234.864224,0,-0.9349,-0.7295,-0.4469,-0.6812,-0.1955 -0xa8fd,CUS_0x56f,August,20,451-16-8531,_______,45941.28,,6,4,4,3,"Credit-Builder Loan, Mortgage Loan, and Personal Loan",,20,1.57,7,Good,1279.96,39.66660658,28 Years and 4 Months,No,80.89486248,146.3712838,Low_spent_Large_value_payments,443.3778538,0,-0.9696,1.1406,0.655,1.3149,0.056 -0xa909,CUS_0x1b1a,August,80,025-91-0217,Accountant,29594.87,2493.239167,5,6,7,3,"Personal Loan, Student Loan, and Credit-Builder Loan",15.59289965,9,9.69,11,Standard,772.83,27.67907229,29 Years and 11 Months,Yes,70.19507834,36.10702816,High_spent_Medium_value_payments,393.0218102,0,-0.3276,-0.5019,0.7944,0.704,0.2319 -0xa915,CUS_0x79e4,August,38,369-89-2918,Architect,73348.2,5908.35,7,7,12,2,"Not Specified, and Student Loan",27.52563088,18,3.6,5,Good,790.6725418,30.229086,24 Years and 6 Months,No,11232,406.6149612,High_spent_Small_value_payments,368.9914812,0,0.1656,0.8626,0.3709,-1.567,-1.8079 -0xa921,CUS_0x5e0d,August,20,654-95-0851,Media_Manager,38415.69,,5,2,2735,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Not Specified",,6,2.42,2,Good,516.9885278,31.90354005,26 Years and 3 Months,No,117.8403031,103.467176,High_spent_Medium_value_payments,369.4357977,0,-0.4376,0.2256,0.1844,0.7749,-0.2992 -0xa92d,CUS_0x55c6,August,32,987-22-2665,Journalist,63022.2,5196.85,10,10,30.88954781,9,"Debt Consolidation Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Auto Loan, and Payday Loan",29.07606335,15,9.67,15,Bad,2955.49,37.72913211,6 Years and 4 Months,Yes,1614.936449,184.5176489,High_spent_Medium_value_payments,275.9008206,0,0.0948,-0.9294,-1.0282,1.2057,-1.5859 -0xa939,CUS_0x1119,August,36,596-61-5235,Entrepreneur,56301.9,,9,5,26,2,"Not Specified, and Not Specified",,20.42777873,14.73,14,_,2447.625018,37.38149611,14 Years and 6 Months,Yes,50.11934809,310.8444404,Low_spent_Medium_value_payments,378.4187115,0,-1.8803,-0.9554,1.7993,2.1195,0.4588 -0xa945,CUS_0x5eae,August,22,332-71-6850,Writer,114755.04,9114.102944,1,5,8.288361749,2,"Debt Consolidation Loan, and Payday Loan",,3,6.38,1,_,1025.620405,36.48499474,25 Years and 0 Months,No,677.3837977,601.8497499,High_spent_Medium_value_payments,935.0380863,0,-0.6902,-0.1167,-0.0925,0.3898,-0.6756 -0xa951,CUS_0x6cd2,August,20,863-39-0169,Media_Manager,22558.95,1991.9125,4,5,10.28836175,100,"Student Loan, Auto Loan, Personal Loan, and Mortgage Loan",13.37174894,14,17.74,5,_,141.14,31.98558309,31 Years and 6 Months,Yes,64.30119007,495.3546742,Low_spent_Medium_value_payments,339.4728467,0,-1.6133,-0.9203,-0.8852,0.7313,0.6133 -0xa95d,CUS_0xa26,August,42,604-83-5084,Lawyer,29377.62,2430.135,5,4,5,1,Debt Consolidation Loan,19.91844336,16,11.48,8,Standard,911.06,33.46273914,28 Years and 0 Months,Yes,17.32722005,53.74367914,High_spent_Large_value_payments,411.9426008,0,0.6271,-0.677,1.8431,-0.1529,-1.0409 -0xa969,CUS_0x17e0,August,31,739-05-3714,Lawyer,18250.52,1403.876667,9,8,34.06745738,8,"Auto Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Personal Loan, Home Equity Loan, Payday Loan, and Not Specified",,21,28.48,9,Bad,4681.010954,37.718372,,Yes,89.36053069,77.3491343,!@9#%8,206.9577137,0,-1.5745,1.6682,1.7641,0.5586,-0.6742 -0xa975,CUS_0x36a1,August,43,286-88-7128,Teacher,19214.965,1730.247083,0,4,11,100,,9.747869622,10,4.18,3,Good,445.053937,33.5976984,,No,0,73.56191672,High_spent_Medium_value_payments,357.9525963,0,-0.3612,-1.8584,-1.0878,-2.131,0.1472 -0xa981,CUS_0x47bb,August,22,#F%$D@*&8,Writer,18372.22,1486.018333,5,5,8,6,"Home Equity Loan, Student Loan, Payday Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",16.73720792,12,7.01,8,Standard,1517.44,26.81946573,19 Years and 0 Months,Yes,54.34722951,81.35040192,Low_spent_Small_value_payments,302.9042019,0,1.7135,-0.3712,0.7569,1.483,-0.1875 -0xa98d,CUS_0x1d08,August,80,075-72-5423,Doctor,79752.42,6348.035,5,3,6,2,"Debt Consolidation Loan, and Auto Loan",,20,4.61,1,Standard,1055.14,38.1984508,27 Years and 9 Months,No,109.8246394,58.02497082,High_spent_Large_value_payments,706.9538897,0,-0.1213,0.2963,-0.7174,-1.2901,0.7305 -0xa999,CUS_0xa260,August,35,645-88-6941,Journalist,33061.79,2752.149167,3,5,9,3,"Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,10,10.38,3,_,953.68,37.5502018,20 Years and 2 Months,No,81.98813542,60.47663821,High_spent_Medium_value_payments,382.750143,0,0.3948,0.2893,0.7723,0.6342,-0.6777 -0xa9a5,CUS_0x59c1,August,40,319-03-2071,Mechanic,62927.92,,7,5,31,4,"Personal Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,21.94911567,9.32,6,Standard,2625.979865,24.49092413,17 Years and 4 Months,Yes,193.8113755,,Low_spent_Large_value_payments,379.4501595,0,-0.769,-0.9256,-0.44,-0.5429,-0.5146 -0xa9b1,CUS_0x700f,August,25,197-74-0612,Mechanic,72896.12,5885.676667,5,1,12,4,"Home Equity Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",0,2,2.71,8,Good,1000.126291,38.88252851,,No,208.4931918,586.3555407,Low_spent_Large_value_payments,128.150765,0,1.1842,-0.5964,-0.0637,-0.0823,0.3836 -0xa9bd,CUS_0x66d,August,48,440-37-0746,Teacher,85840.34,7164.361667,1,5,1,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",0,3,2.32,1,_,270.42,26.54583035,23 Years and 11 Months,No,172.0550118,190.6673191,High_spent_Medium_value_payments,603.7138357,0,-0.2651,-0.2273,0.0629,0.5263,0.7355 -0xa9c9,CUS_0x52f3,August,52,323-41-6755,Teacher,72304.38,,8,7,14,2,"Auto Loan, and Home Equity Loan",10.36351058,8,8.94,2,_,1295.99,31.42183687,33 Years and 3 Months,Yes,64.06920215,309.2850876,Low_spent_Small_value_payments,526.5822102,0,-0.2944,0.3576,-0.377,-2.4873,-1.1476 -0xa9d5,CUS_0x20b8,August,39,187-58-8843,Architect,17090.225,,5,7,10,1,Student Loan,13.23523403,10,0.96,8,_,797.12,38.17206741,29 Years and 11 Months,NM,9.304233815,95.02604343,Low_spent_Small_value_payments,322.7882644,0,-0.6092,-0.849,-1.1719,2.1443,-1.4277 -0xa9e1,CUS_0x2513,August,32,470-35-3931,Architect,131990.84,,5,4,8,0,,24.35640261,15,10.07,0,_,647.15,34.60059157,22 Years and 4 Months,No,593.0166337,90.27996756,High_spent_Large_value_payments,1260.443699,0,0.9692,0.2965,-0.8087,0.3083,-0.3172 -0xa9ed,CUS_0x3e75,August,35,212-44-4567,Manager,34317.6,2794.8,5,3,7,0,,12.61926893,11,2.07,5,Good,386.33,29.147061,27 Years and 5 Months,NM,0,,Low_spent_Small_value_payments,195.3287515,0,0.7744,0.3104,0.8679,-0.0629,0.5093 -0xa9f9,CUS_0x2950,August,46,#F%$D@*&8,Accountant,33185.6,2629.466667,0,1207,5,1,Home Equity Loan,,6,5.5,1,Good,1340.52,38.15506319,33 Years and 4 Months,No,17.07939378,169.4699683,High_spent_Small_value_payments,336.3973046,0,-0.6161,-0.8526,0.3213,-1.7887,-0.2643 -0xaa05,CUS_0xc187,August,24,112-67-0429,Lawyer,19223.44,1476.953333,5,5,29.06745738,7,"Home Equity Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",20.1363164,11.34052925,7.56,8,Standard,2007.061242,28.25797849,13 Years and 4 Months,Yes,63.9858289,22.39377568,High_spent_Large_value_payments,274.5954408,0,-0.8938,-1.7535,0.7527,-0.5875,0.6911 -0xaa11,CUS_0x8ba4,August,18,124-32-2706,Engineer,35398.64,3123.886667,8,7,15,3,"Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",22.68829948,16.95798636,19.4,9,Standard,1686.482275,37.92501566,,Yes,86.56126134,126.2176461,High_spent_Medium_value_payments,349.6097592,0,0.5776,-0.6926,-1.5331,0.4653,-0.8976 -0xaa1d,CUS_0xbd9b,August,40,975-36-8835,Accountant,9989.875,,3,6,34,100,"Auto Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Auto Loan",14.87667096,12.74151284,13.36,10,Standard,1415.551538,37.36229694,19 Years and 5 Months,Yes,56.94747399,,Low_spent_Small_value_payments,253.2171256,0,-0.4012,-0.3816,-1.791,0.0904,0.9727 -0xaa29,CUS_0x7dab,August,20,745-71-9769,Writer,20456.57,1770.714167,10,10,30.06745738,5,"Mortgage Loan, Student Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",,20,22.91,11,Bad,4663.830954,28.72547785,1 Years and 4 Months,Yes,56.51776994,79.17898145,Low_spent_Small_value_payments,304.6543773,0,0.2135,-0.044,1.8376,0.2583,-0.0647 -0xaa35,CUS_0x13c7,August,34,305-39-6641,Teacher,69341.52,,3,3,11,1,Not Specified,17.62338295,,7.58,8,Standard,333.6687303,41.31044359,15 Years and 10 Months,No,54.60540123,328.3664527,!@9#%8,468.9741461,0,0.9679,-0.6842,-1.1853,-0.4076,0.0894 -0xaa41,CUS_0x42db,August,45,671-61-1523,Architect,70350.06,,5,131,2037,2,"Debt Consolidation Loan, and Debt Consolidation Loan",19.33030235,13,9.23,8,Standard,148.52,38.65318614,,Yes,78.48455053,72.23360085,High_spent_Large_value_payments,693.7323486,0,-0.0268,-1.8857,-0.1834,-1.4185,2.226 -0xaa4d,CUS_0xa4b6,August,31,571-19-8151,Journalist,13090136,,9,8,30,3,"Mortgage Loan, Auto Loan, and Payday Loan",18.63713075,,2.61,12,Bad,1868.46,31.7320722,10 Years and 2 Months,Yes,113.6499505,,Low_spent_Medium_value_payments,448.2620347,0,0.5418,0.9874,-2.1052,0.3187,0.4794 -0xaa59,CUS_0x8cc5,August,37,311-38-7874,Architect,77821.26,6619.105,1,1,12,1,Home Equity Loan,16.47443158,,5.58,3,Good,852.73,34.11615585,32 Years and 2 Months,No,51.55760108,126.2788328,High_spent_Small_value_payments,744.0740661,0,-1.3582,0.4174,0.7555,-1.5165,-0.8346 -0xaa65,CUS_0x2005,August,43,671-03-2737,Doctor,17063.595,1571.96625,7,7,16,0,,,14,16.53,2,_,486.79,24.76985798,26 Years and 2 Months,Yes,0,51.58852687,Low_spent_Medium_value_payments,385.6080981,0,0.2845,-0.6154,1.3014,0.599,-0.3386 -0xaa71,CUS_0x80d7,August,18,181-47-9455,Architect,19453.05,,3,6,10,6,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Auto Loan",25.00933281,18,19.86,11,Standard,731.24,29.79872335,17 Years and 3 Months,Yes,77.11008866,42.79711534,!@9#%8,321.801546,0,0.7375,-1.4387,-0.5563,-2.7735,-2.9123 -0xaa7d,CUS_0x8fd8,August,38,266-04-6005,Journalist,20417.71,,4,4,10,3,"Auto Loan, Personal Loan, and Debt Consolidation Loan",,24.17170328,19.7,8,_,564.3607053,25.59269062,12 Years and 11 Months,Yes,46.11577293,,Low_spent_Small_value_payments,318.6350838,0,1.2365,-0.1397,0.6825,-1.7119,1.4658 -0xaa89,CUS_0x8f9e,August,37,941-98-1752,Entrepreneur,20426.38,1653.198333,1,7,11,4,"Credit-Builder Loan, Payday Loan, Personal Loan, and Payday Loan",0,4,3.45,1,Good,622.66,26.68513221,32 Years and 4 Months,No,44.63949382,76.55828815,High_spent_Small_value_payments,304.1220514,0,-0.7225,0.8563,1.1929,1.0799,0.4638 -0xaa95,CUS_0x56a9,August,28,628-92-2669,Mechanic,24600.33,,4,4,13,4,"Personal Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",15.64177729,,1.26,8,_,1437.79,29.0636245,8 Years and 2 Months,Yes,45.43167275,156.5880885,Low_spent_Large_value_payments,271.4829887,0,-0.8941,-1.0645,0.1157,-0.0035,-1.1117 -0xaaa1,CUS_0x8f69,August,22,001-91-2742,Lawyer,31100.49,2456.7075,3,4,3,4,"Home Equity Loan, Mortgage Loan, Auto Loan, and Not Specified",,4.805184384,2.67,2,_,979.5502793,33.58046052,25 Years and 11 Months,No,82.7021934,43.33271356,!@9#%8,369.635843,0,0.6626,-1.1135,1.419,1.5457,-1.1377 -0xaaad,CUS_0x77ad,August,31,634-33-9227,Entrepreneur,26299.08,,3,7,9,3,"Credit-Builder Loan, Mortgage Loan, and Personal Loan",,13,5.07,3,Standard,353.2178396,29.91143223,,Yes,41.09867409,103.6218481,Low_spent_Small_value_payments,404.4188707,0,0.0446,0.4673,-0.8354,0.838,-1.3688 -0xaab9,CUS_0x350e,August,47,186-74-1693,Mechanic,106154.46,8961.205,1,2,10,1,Not Specified,0,1,5.38,2,Good,341.0536672,35.60255559,23 Years and 5 Months,No,47.7899986,594.1529652,Low_spent_Medium_value_payments,602.5088266,0,2.0667,-0.1651,-0.4939,1.0139,-0.8046 -0xaac5,CUS_0x9ae8,August,30,257-10-0042,Doctor,86058.54,7140.545,1,5,9,1,Student Loan,,1,7.77,2,Good,28.15,35.92244891,17 Years and 3 Months,NM,60.07540938,85.96596978,High_spent_Large_value_payments,808.0131208,0,-1.1773,-0.3342,-0.9864,0.4291,1.4298 -0xaad1,CUS_0x981a,August,26,201-19-1306,Lawyer,39693.86,3302.693122,0,2,1,2,"Credit-Builder Loan, and Payday Loan",10.03297626,12,1.69,4,_,274.4552163,34.78041518,18 Years and 5 Months,No,197.5362288,,High_spent_Medium_value_payments,463.9252726,0,-2.2277,-0.5522,-0.7925,0.0619,0.3416 -0xaadd,CUS_0xa60e,August,52,070-17-5614,Mechanic,134775.96,11379.33,0,3,11,3,"Auto Loan, Not Specified, and Debt Consolidation Loan",,2,0.95,4,Good,1185.900218,36.38109087,22 Years and 4 Months,No,276.8366335,974.9676473,!@9#%8,311.1166062,0,-0.7289,0.5978,1.1466,-0.7515,0.8192 -0xaae9,CUS_0x3998,August,43,066-70-0045,Journalist,34374.28,,5,7,15,7,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Auto Loan, and Home Equity Loan",,16,12.08,12,_,1530.430079,39.25434891,18 Years and 3 Months,Yes,167.6975258,118.4318291,!@9#%8,268.0351837,0,-0.8157,-0.7084,0.1499,-1.8739,-1.4987 -0xaaf5,CUS_0x9403,August,38,283-50-9155,Lawyer,82796.52,6927.71,3,5,6,1,Student Loan,30.65035125,21,18.06,7,_,966.79,28.99141299,19 Years and 8 Months,Yes,55.1214526,90.96229152,High_spent_Large_value_payments,786.6872559,0,0.5009,-0.1064,-0.3642,-1.6212,0.095 -0xab01,CUS_0xaaf8,August,38,181-79-7057,Teacher,79993.05,,7,3,18,4,"Student Loan, Student Loan, Not Specified, and Not Specified",19.94196374,18,5.72,3,Standard,1052.29,29.12740869,26 Years and 2 Months,No,188.6998751,10000,Low_spent_Medium_value_payments,114.0995467,0,0.6783,0.7997,0.4959,-1.9812,1.036 -0xab0d,CUS_0x94e8,August,18,961-22-4819,Doctor,64350.76,,10,5,18,9,"Auto Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,19,23.21,7,Bad,4055.26,39.35754072,11 Years and 10 Months,Yes,249.6308775,,Low_spent_Small_value_payments,33.53659125,0,-0.3027,0.8505,0.7895,0.1318,-0.5833 -0xab19,CUS_0x8f8f,August,29,437-93-6445,Journalist,101299.84,8403.653333,7,5,13,2,"Credit-Builder Loan, and Auto Loan",12.4022311,10,11.66,9,_,1473.68,37.37682137,32 Years and 8 Months,NM,113.5430522,94.20362627,High_spent_Medium_value_payments,882.6186548,0,-0.8875,-1.2994,1.2701,-0.1084,0.1669 -0xab25,CUS_0x4b5a,August,24,890-10-1820,Lawyer,24458.57,,4,4,7.288361749,2,"Not Specified, and Personal Loan",8.066094257,8,6.12,2,_,213.33,31.80420443,25 Years and 3 Months,No,29.79043267,599.3844665,Low_spent_Large_value_payments,287.8839785,0,0.5697,1.5048,0.2584,1.6539,-0.0748 -0xab31,CUS_0x10fd,August,29,119-33-7350,Developer,39576.59,3199.049167,0,7,2,4,"Personal Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",4.197944442,4.616200718,4.62,3,_,250.6769911,29.32616604,19 Years and 11 Months,No,124.3108391,104.7631642,High_spent_Medium_value_payments,340.8309134,0,-1.1129,-1.8332,0.8944,-0.2959,-1.4954 -0xab3d,CUS_0x8291,August,39,765-14-8559,Teacher,34826.32,,8,8,31.06745738,5,"Credit-Builder Loan, Not Specified, Mortgage Loan, Personal Loan, and Payday Loan",,17.33567674,20.72,9,_,4824.627303,39.10432927,1 Years and 10 Months,NM,119.9600422,,Low_spent_Large_value_payments,288.5174479,0,2.0301,1.6294,-0.1332,0.8643,-0.3305 -0xab49,CUS_0x4c89,August,39,978-02-8757,Entrepreneur,62805.48,5247.79,6,7,30,5,"Auto Loan, Mortgage Loan, Student Loan, Student Loan, and Debt Consolidation Loan",38.63133729,25.38753378,0.85,15,_,1768.055971,26.38858623,20 Years and 2 Months,Yes,134.0102882,128.467355,High_spent_Medium_value_payments,512.3013568,0,-1.177,-1.0322,1.0466,-0.7942,-2.3708 -0xab55,CUS_0x1934,August,42,170-20-9873,Entrepreneur,9085.09,,10,7,35.06745738,6,"Debt Consolidation Loan, Not Specified, Student Loan, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",47.59440566,26.08136951,20.04,15,Bad,4409.112877,39.02714434,14 Years and 2 Months,Yes,26.33955682,84.60564123,Low_spent_Medium_value_payments,240.3435973,0,-0.5739,-0.5445,0.1488,1.22,-0.1808 -0xab61,CUS_0x1cc0,August,27,957-41-7466,Media_Manager,95189.64,7924.47,5,3,1.288361749,4,"Student Loan, Payday Loan, Not Specified, and Student Loan",0,2,7.74,1,Good,627.3034185,24.031202,25 Years and 5 Months,No,203.6611796,487.6815381,High_spent_Large_value_payments,771.3649895,0,1.6613,0.0968,-0.5168,-0.9756,-0.7265 -0xab6d,CUS_0x2ed7,August,28,852-79-9264,Media_Manager,53460.93,4528.0775,8,10,27,6,"Not Specified, Credit-Builder Loan, Personal Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",25.22652223,18,8.31,7,Bad,1364.03,30.5114087,16 Years and 0 Months,Yes,251.8964338,46.01205238,High_spent_Large_value_payments,394.8992638,0,-1.4057,1.468,-0.9838,1.3645,0.7789 -0xab79,CUS_0x3731,August,35,#F%$D@*&8,Accountant,70137.8,,2,5,9,1,Not Specified,,14.53337383,0.99,4,Good,384.2964951,41.97232961,31 Years and 3 Months,No,48.2456714,73.43054989,High_spent_Large_value_payments,708.5054454,0,-0.7447,0.2513,-1.0202,0.4157,-1.6402 -0xab85,CUS_0x8c47,August,26,152-64-4162,Musician,128283.84,10873.32,1,7,8,4,"Payday Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",6.874887266,4.784196093,1.98,3,Good,1350.341529,43.32885468,19 Years and 3 Months,No,225.920391,345.6059598,!@9#%8,795.8056492,0,0.9412,-0.1767,-0.6011,-0.1577,-0.0131 -0xab91,CUS_0x33da,August,55,911-49-3124,Writer,35184.74,,6,654,13,2,"Home Equity Loan, and Home Equity Loan",,15,19.25,8,Standard,1036.03,41.12019764,26 Years and 0 Months,Yes,34.63006425,107.0195992,Low_spent_Large_value_payments,431.8565033,0,1.8929,1.3828,-1.0299,-0.4797,-0.9096 -0xab9d,CUS_0x3ae3,August,37,#F%$D@*&8,Mechanic,25040.59,,4,4,5709,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",,7,4.97,6,Standard,715.69,29.24702835,32 Years and 4 Months,No,53.57275099,92.75332831,High_spent_Medium_value_payments,331.545504,0,-0.1374,-0.6014,0.1861,1.7903,-0.7188 -0xaba9,CUS_0x5d24,August,23,624-33-5512,Doctor,20485.76,1950.146667,3,2,11,3,"Mortgage Loan, Not Specified, and Mortgage Loan",11.89016885,12,3.65,6,_,1234.170415,25.47388032,24 Years and 6 Months,NM,29.22649302,91.8143342,High_spent_Medium_value_payments,335.9968785,0,-0.4866,1.3111,2.3558,0.8041,0.2309 -0xabb5,CUS_0x3768,August,32,#F%$D@*&8,Journalist,17517.55,,8,7,4,0,,18.44834671,16,10.07,6,Good,1151.9683,25.46858239,15 Years and 8 Months,No,0,117.3958253,Low_spent_Small_value_payments,317.1377536,0,0.8137,-0.0241,-1.3137,-2.2304,0.4767 -0xabc1,CUS_0x4e6e,August,58,758-72-3397,Scientist,65598.44,5593.536667,1,3,10.28836175,0,Credit-Builder Loan,,,6.34,6,Good,264.1873106,26.44249461,33 Years and 2 Months,No,33.10606029,,High_spent_Small_value_payments,551.9788829,0,-1.949,-0.067,-0.8159,0.0444,0.2037 -0xabcd,CUS_0xa0ea,August,18,961-44-0305,_______,10347315,6872.15,8,7,27,9,"Auto Loan, Student Loan, Mortgage Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",36.18489507,22,20.55,13,_,4092.06,31.05535338,10 Years and 9 Months,Yes,317.9919727,704.5429024,Low_spent_Medium_value_payments,,0,1.2603,2.0722,0.4923,-0.3818,-0.9983 -0xabd9,CUS_0x6c2a,August,29,093-93-0051,Lawyer,102942.36,,3,5,18,2,"Student Loan, and Student Loan",18.76226678,13,18.28,5,Standard,76.07,34.7747885,14 Years and 4 Months,Yes,131.6009493,198.1036598,High_spent_Large_value_payments,756.3483909,0,-0.6505,-0.6379,-0.3129,-1.4396,-0.2456 -0xabe5,CUS_0x2a7d,August,32,852-92-6636,_______,15829.875,,4,2,4,1,Student Loan,,2,2.7,7,Good,968.61,35.17152764,20 Years and 3 Months,No,183.5424602,122.7272125,Low_spent_Medium_value_payments,274.7688775,0,-0.4424,-1.309,-0.3099,2.9008,-0.9199 -0xabf1,CUS_0xb97b,August,34,274-10-7458,Teacher,16706.97,1364.2475,6,7,29.06745738,100,"Home Equity Loan, Student Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",34.06895524,18.69114691,9.56,11,_,4656.37008,32.39228152,11 Years and 3 Months,Yes,70.36748553,,High_spent_Large_value_payments,255.6465698,0,0.3927,0.0247,-0.3418,-0.7299,-0.1098 -0xabfd,CUS_0xc0a4,August,50,696-32-3871,Developer,38095.88,2793.925287,1,3,7,0,,4.060936851,5,7.91,4,Good,484.8194927,39.5238515,23 Years and 2 Months,No,434.7313799,185.1444237,High_spent_Small_value_payments,419.7901675,0,0.433,-0.9418,-0.019,-2.6263,-0.6666 -0xac09,CUS_0x33ef,August,35,863-69-9979,Lawyer,82277.8,,10,10,32.88954781,7,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Payday Loan, Not Specified, and Auto Loan",32.84177917,15,17.71,7,Bad,2748.82,25.34526107,4 Years and 9 Months,Yes,1802.648746,140.8700678,High_spent_Medium_value_payments,294.7994379,0,0.0582,0.7771,0.0108,-1.1238,0.2615 -0xac15,CUS_0x8eb2,August,18,035-74-4421,_______,21695.12,,8,6,17,5,"Payday Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",,9,,7,Standard,1120.28,37.19518344,20 Years and 5 Months,Yes,253.3780218,39.38802448,High_spent_Medium_value_payments,294.0277065,0,0.2087,1.2116,1.244,0.3389,-0.1279 -0xac21,CUS_0xd3e,August,18,920-94-1868,Teacher,15971.125,,6,6,5,4,"Personal Loan, Credit-Builder Loan, Personal Loan, and Student Loan",26.52072318,18,11.58,5,Standard,335.98,24.32393596,12 Years and 8 Months,Yes,158.3758561,83.70657993,Low_spent_Small_value_payments,286.0664511,0,-0.5756,-0.2116,-0.0576,-1.538,-0.1996 -0xac2d,CUS_0x896f,August,35,815-92-5350,Architect,14271.95,1433.329167,6,6,17.06745738,2,"Home Equity Loan, and Payday Loan",29.5984631,,9.8,13,Standard,1983.217718,37.72120621,18 Years and 11 Months,Yes,18.56030163,57.91507895,Low_spent_Small_value_payments,330.1372481,0,-1.9758,-0.0622,-2.0794,0.2056,0.6151 -0xac39,CUS_0x965a,August,29,955-52-5577,Scientist,21353.19,1856.4325,4,7,5,0,,27.16773931,20,18.01,4,_,1198.13,40.39232315,33 Years and 6 Months,Yes,0,,High_spent_Medium_value_payments,372.6081188,0,-1.7145,-1.9056,-0.7644,-1.1522,0.003 -0xac45,CUS_0xb79c,August,19,633-61-0456,Architect,72000.7,,6,7,19,4,"Not Specified, Credit-Builder Loan, Home Equity Loan, and Student Loan",14.38799436,12,5.18,6,Standard,63.60377202,35.86446058,25 Years and 4 Months,No,325.0344856,129.2699329,!@9#%8,559.4584235,0,0.4344,0.4676,0.2251,1.4448,1.7546 -0xac51,CUS_0x9379,August,21,405-00-1795,Lawyer,61881.64,5266.803333,6,5,19,7,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",24.3795507,,5.81,8,Bad,4150.170622,38.74753655,1 Years and 3 Months,Yes,247.6331232,296.6235434,Low_spent_Medium_value_payments,262.4236667,0,0.4771,-0.8313,0.2489,0.0546,-1.5573 -0xac5d,CUS_0xb042,August,26,418-71-7160,Journalist,20368494,,5,6,31,5,"Payday Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",,23.30239485,11,6,Standard,1910.352463,24.89885038,5 Years and 11 Months,Yes,56.96234984,118.9592535,Low_spent_Medium_value_payments,250.1041467,0,1.3292,0.3256,0.9348,-0.9538,0.4552 -0xac69,CUS_0x72ce,August,18,062-16-4946,Teacher,16157.79,,6,4,9,7,"Payday Loan, Payday Loan, Payday Loan, Student Loan, Mortgage Loan, Payday Loan, and Personal Loan",,13,13.54,7,_,1665.02,37.1975388,17 Years and 0 Months,Yes,88.83505092,31.15388594,Low_spent_Medium_value_payments,275.9593131,0,-0.4561,1.7114,3.0196,0.2001,2.2134 -0xac75,CUS_0xb52b,August,23,998-53-5707,Manager,20290.79,1477.219538,6,8,23,5,"Student Loan, Personal Loan, Not Specified, Mortgage Loan, and Auto Loan",37.35326018,23,17.81,10,_,2727.69,28.75056575,,Yes,235.0543915,106.8883465,Low_spent_Large_value_payments,252.5268069,0,-0.0658,-1.3491,-0.8399,-1.129,1.3804 -0xac81,CUS_0x641f,August,35,568-09-2850,Writer,106077.6,8744.8,3,5,17,4,"Home Equity Loan, Home Equity Loan, Payday Loan, and Auto Loan",16.84277751,12.79332456,7.79,5,Standard,333.2175085,34.3560979,20 Years and 9 Months,NM,322.3022131,440.1985357,High_spent_Small_value_payments,371.9792512,0,-0.9455,0.9271,-0.9434,-1.4482,-1.8577 -0xac8d,CUS_0x198e,August,26,128-90-0444,Teacher,18140,1375.666667,9,5,33.06745738,6,"Student Loan, Auto Loan, Mortgage Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",,28.06619522,19.63,12,_,4756.735735,26.82539622,12 Years and 11 Months,Yes,87.66264139,,Low_spent_Small_value_payments,231.0184326,0,1.3612,0.6064,2.5316,-0.2754,-0.7411 -0xac99,CUS_0x6c91,August,21,995-34-4031,Architect,67518.81,5365.5675,8,5,8,1,Personal Loan,,17,8.88,5,Standard,264.7,28.53492449,22 Years and 10 Months,No,28.65858051,601.0948487,Low_spent_Small_value_payments,196.8033208,0,0.9075,-0.9921,-0.0893,1.0455,0.3221 -0xaca5,CUS_0x69aa,August,21,375-89-8205,Engineer,18925.44,1330.12,9,9,30.06745738,5,"Home Equity Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Mortgage Loan",,21,6.14,10,_,3080.740954,27.0124126,2 Years and 5 Months,Yes,44.74583078,61.86716759,Low_spent_Large_value_payments,269.6787137,0,-2.38,-3.0536,-0.1476,0.1559,0.5728 -0xacb1,CUS_0xc375,August,51,180-18-8849,Engineer,97577.28,7906.44,3,4,12,2,"Student Loan, and Credit-Builder Loan",3.06968878,7,6.75,5,Good,656.3210415,36.18979395,32 Years and 2 Months,No,92.86650661,148.2263164,High_spent_Medium_value_payments,814.1391603,0,-1.3401,-0.1243,-0.323,-1.567,0.0208 -0xacbd,CUS_0x7c7a,August,29,556-99-5288,Developer,33136.35,2681.3625,0,3,12,100,"Not Specified, and Payday Loan",0,1,2.34,455,Good,4.111457623,35.99152261,33 Years and 4 Months,No,31.92363404,256.1634877,Low_spent_Large_value_payments,275.5606081,0,-1.5622,-0.6662,1.4648,-1.5161,-0.5258 -0xacc9,CUS_0x69cd,August,24,254-46-7586,Engineer,18002.31,1645.1925,5,6,33,3,"Credit-Builder Loan, Auto Loan, and Mortgage Loan",16.1946839,13.03818031,12.7,12,Standard,2822.834015,25.62855116,20 Years and 0 Months,Yes,40.68737019,10000,High_spent_Medium_value_payments,310.9672241,0,-0.2858,0.658,-1.5286,0.2278,-0.0431 -0xacd5,CUS_0xbb73,August,37,685-41-4406,Lawyer,12029.15,,5,4,5,1,Student Loan,17.58139303,14,10.03,5,Standard,377.62,37.78099287,26 Years and 6 Months,No,6.518271071,79.81005643,Low_spent_Small_value_payments,325.0145892,0,-1.1057,-0.2364,-2.0417,-0.6085,-0.3573 -0xace1,CUS_0x7d65,August,43,029-29-2092,Developer,11381.825,,5,5,15,3,"Credit-Builder Loan, Mortgage Loan, and Not Specified",,17,11.06,4,Standard,256.61,34.49565756,26 Years and 5 Months,NM,14.88724078,83.97569575,Low_spent_Small_value_payments,291.4856051,0,0.1805,-2.0622,0.6057,-0.4571,0.5485 -0xaced,CUS_0x5dfa,August,45,471-52-7562,Entrepreneur,23834698,684.1579167,7,5,17,6,"Not Specified, Debt Consolidation Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,25,12.64,13,_,3766.44,40.24204335,11 Years and 6 Months,Yes,23.70618204,57.26212836,Low_spent_Medium_value_payments,267.4474813,0,0.4166,0.1911,0.3366,0.5731,-0.8188 -0xacf9,CUS_0x860,August,18,801-07-1693,Manager,24946.81,,8,4,13,3,"Personal Loan, Personal Loan, and Payday Loan",,17,11.71,6,Standard,72.27,39.35436165,12 Years and 9 Months,Yes,36.26961342,,High_spent_Medium_value_payments,348.3416295,0,-0.7469,-0.2936,-0.4579,-0.2636,0.4641 -0xad05,CUS_0xa19,August,44,308-90-5833,Entrepreneur,14773.38,,8,9,19.95700519,100,"Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Student Loan, and Personal Loan",28.81047094,19,4.34,10,Bad,2992.150954,24.88256171,4 Years and 9 Months,Yes,1366.784026,,Low_spent_Large_value_payments,220.6851832,0,0.822,0.0194,-1.6489,-0.2406,0.2393 -0xad11,CUS_0xbcca,August,40,844-59-1910,Writer,33262.2,,6,5,18,3,"Personal Loan, Payday Loan, and Not Specified",14.34345491,12,18.33,2,Standard,696.05,36.304856,29 Years and 10 Months,Yes,43.3251532,10000,Low_spent_Small_value_payments,245.9199786,0,-0.7903,-0.5979,0.7178,0.3011,0.2111 -0xad1d,CUS_0x67aa,August,22,517-97-5096,Doctor,45594.72,,7,4,18,6,"Personal Loan, Credit-Builder Loan, Personal Loan, Not Specified, Payday Loan, and Payday Loan",29.23805598,22,9.47,8,Standard,1256.49,28.62402048,16 Years and 3 Months,Yes,182.1071856,330.6920328,Low_spent_Medium_value_payments,148.0567816,0,0.1281,-1.1071,-1.0252,0.0309,-0.1146 -0xad29,CUS_0x5d01,August,50,279-85-1772,Engineer,25498.21,,4,3,12,100,Student Loan,9.877691553,8,7.85,3,Good,573.77,30.60639993,30 Years and 5 Months,NM,19.44372192,,High_spent_Small_value_payments,350.8963643,0,1.1055,0.5546,-0.4231,-0.8708,0.1752 -0xad35,CUS_0x3a02,August,35,243-14-8028,Engineer,14185.73,,0,7,11,3,"Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",0.601829311,4,-0.26,4,Good,717.0704854,25.46052374,31 Years and 3 Months,No,21.77352915,66.52550317,!@9#%8,306.4905149,0,-0.1229,-0.8707,0.0325,1.0827,-0.6298 -0xad41,CUS_0xae52,August,26,200-26-8708,Architect,17001.68,,10,7,19.06745738,6,"Debt Consolidation Loan, Payday Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Debt Consolidation Loan",,,8.19,11,Bad,4700.888237,40.06901416,13 Years and 0 Months,Yes,53.39197139,115.5318788,Low_spent_Small_value_payments,242.9365285,0,1.1203,0.6211,-0.6608,2.8978,-0.5631 -0xad4d,CUS_0x3172,August,31,570-35-6060,Lawyer,117724.16,9778.346667,1,5,10,2,"Auto Loan, and Home Equity Loan",11.87291413,11,10.26,5,Good,560.8,32.26778691,16 Years and 4 Months,No,156.3748762,218.6967135,!@9#%8,852.7630769,0,1.512,-0.4504,0.5695,0.5506,-0.636 -0xad59,CUS_0xc5d3,August,24,299-84-9786,Entrepreneur,119149.92,,4,4,10,3,"Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",16.00528509,10,2.3,1,Good,982.81,29.11738555,23 Years and 2 Months,No,246.0769175,304.6646181,High_spent_Medium_value_payments,706.5744643,0,2.3073,-0.134,-1.0391,0.2182,0.5779 -0xad65,CUS_0x4721,August,37,194-70-6848,Journalist,38392.96,3031.413333,8,10,26,2,"Personal Loan, and Student Loan",,20,7.88,10,Bad,1305.12,25.55260358,16 Years and 0 Months,Yes,46.91827939,168.9115937,High_spent_Small_value_payments,347.3114603,0,0.1108,1.4502,1.0617,-1.2012,-1.2455 -0xad71,CUS_0x5e3c,August,34,150-04-0811,_______,36607.63,,0,6,5,2,"Not Specified, and Credit-Builder Loan",4.085976083,4.644083467,0.98,7,Good,904.102863,33.07283818,29 Years and 6 Months,No,45.41123187,294.825723,Low_spent_Small_value_payments,248.4266284,0,0.1926,1.1828,1.1733,0.835,-0.4306 -0xad7d,CUS_0x352f,August,18,333-78-0103,Teacher,14015.32,1238.943333,8,3,11,6,"Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, Student Loan, and Mortgage Loan",26.56734295,20,23.01,7,_,1852.75,33.44427297,10 Years and 5 Months,Yes,54.00190509,42.05815899,Low_spent_Large_value_payments,297.8342693,0,-0.0567,1.5312,0.2619,-0.8286,-1.0802 -0xad89,CUS_0x318e,August,33,850-20-0083,Doctor,17488.905,,5,6,20,3,"Student Loan, Personal Loan, and Home Equity Loan",10.4314608,7,8.64,9,Standard,1169.13,24.07531091,25 Years and 0 Months,No,31.87466151,73.6546541,Low_spent_Small_value_payments,348.8115594,0,-1.3513,-0.1617,-1.0989,1.0173,-0.9079 -0xad95,CUS_0xb676,August,39,117-46-6530,Accountant,11562.215,,4,3,5,1,Mortgage Loan,,20,8.52,2,Standard,537.45,38.31478932,21 Years and 8 Months,Yes,4.916138542,,Low_spent_Small_value_payments,349.7559872,0,-0.5272,0.4989,-0.9264,-0.6406,1.0479 -0xada1,CUS_0x8b6f,August,53,565-35-9153,Lawyer,126982.68,9032.198037,0,6,1,0,,,9,7.26,4,Good,1240.731586,35.02575784,25 Years and 6 Months,No,1511.691963,333.3421084,High_spent_Medium_value_payments,1008.509091,0,1.2508,0.5374,0.9064,-1.6029,1.6365 -0xadad,CUS_0xb64a,August,38,408-06-4944,Engineer,104168.22,,3,5,14,0,,23.08892919,15,15.97,7,_,39.68,37.90603838,,No,0,310.7200033,High_spent_Medium_value_payments,804.8484967,0,0.1405,-0.8899,-0.2992,3.1847,0.9871 -0xadb9,CUS_0x8204,August,19,#F%$D@*&8,Developer,32414.96,2826.246667,6,5,16.06745738,6,"Mortgage Loan, Mortgage Loan, Student Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",25.73440393,15,9.06,16,_,2352.800954,28.51479308,14 Years and 4 Months,Yes,81.55170275,,Low_spent_Small_value_payments,350.1909379,0,0.1564,0.6472,-0.5677,0.8021,-1.5649 -0xadc5,CUS_0xc1fe,August,18,567-38-7886,Developer,39215.88,3419.99,5,6,13,6,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",27.1878475,21.69898917,23.1,5,Standard,2073.567128,30.74518569,,Yes,159.1221442,112.2139682,High_spent_Medium_value_payments,320.6628876,0,-0.3853,-2.5054,-0.2683,1.8322,-1.8841 -0xadd1,CUS_0xb48f,August,38,138-75-8407,Architect,100148.8,8175.733333,6,6,18,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Mortgage Loan",20.16070516,14,2.13,11,Standard,337.84,30.81128767,12 Years and 2 Months,Yes,194.6703165,,Low_spent_Medium_value_payments,620.6049495,0,-1.1852,-2.3895,-0.2272,-2.3311,-0.4955 -0xaddd,CUS_0xb8e5,August,18,940-35-3399,Teacher,84989.46,7314.455,7,7,6,0,,14.22791789,11,11.58,10,Standard,416.47,30.28688501,31 Years and 9 Months,Yes,12643,10000,High_spent_Medium_value_payments,838.4289113,0,1.4169,-0.3659,1.7545,-0.0891,0.8272 -0xade9,CUS_0x4c5c,August,44,636-39-1081,Doctor,8766.58,830.5483333,8,10,33.95700519,6,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Student Loan",,20,29.16,13,Bad,4828.400954,38.99973982,1 Years and 8 Months,Yes,1348.146975,108.0044762,Low_spent_Small_value_payments,195.8530129,0,0.8677,-0.0383,-1.398,0.9493,0.7238 -0xadf5,CUS_0xfa4,August,40,380-95-6875,Manager,15035.19,1214.9325,9,1180,1642.067457,5,"Not Specified, Payday Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",,21.60026448,10.98,13,Bad,1791.368405,24.53584584,12 Years and 11 Months,Yes,39.94969316,41.73804952,Low_spent_Small_value_payments,303.0852194,0,0.302,0.1491,0.8477,0.1498,1.3605 -0xae01,CUS_0x8ede,August,18,316-99-0677,Doctor,8359.475,,8,9,22.95700519,9,"Mortgage Loan, Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Not Specified",43.66754986,28.89910332,,1940,Bad,2612.677763,25.21653261,16 Years and 8 Months,Yes,1386.010705,41.79582755,Low_spent_Small_value_payments,216.0053903,0,-0.2054,1.6929,1.1447,1.369,-0.2492 -0xae0d,CUS_0xadeb,August,18,118-18-1829,Manager,41417.04,,7,5,18,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",,18,7.13,6,Standard,1486.49,34.5729508,14 Years and 9 Months,Yes,122.5038835,229.5523901,High_spent_Small_value_payments,251.8857264,0,-1.1201,-1.2185,-0.0091,-0.556,1.3858 -0xae19,CUS_0x41b2,August,32,624-65-3481,_______,74142.96,5909.58,0,2,11.28836175,2,"Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,0,2.45,4,Good,866.7656462,26.40802592,25 Years and 8 Months,No,164.8944435,,High_spent_Small_value_payments,520.7094356,0,0.8514,0.173,1.0318,0.8821,2.7189 -0xae25,CUS_0xb33a,August,19,005-38-9116,Teacher,16360.215,1410.35125,3,6,18,4,"Auto Loan, Credit-Builder Loan, Not Specified, and Not Specified",12.8128749,9,15.52,9,Standard,453.29,39.51115754,,Yes,38.79655821,96.6279487,Low_spent_Medium_value_payments,285.6106181,0,0.8305,-0.5241,-0.7846,0.6862,0.1424 -0xae31,CUS_0xad0e,August,26,739-57-5002,Doctor,20252.78,,8,8,28.88954781,7,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Debt Consolidation Loan",43.06149322,22.38252575,27.51,17,Bad,5233.940685,36.68431924,13 Years and 4 Months,Yes,1434.67026,,Low_spent_Medium_value_payments,231.826517,0,-0.23,-1.0927,1.5005,2.6107,-1.2091 -0xae3d,CUS_0x2c42,August,52,826-94-0529,Teacher,38147.38,,4,5,7,3,"Auto Loan, Home Equity Loan, and Auto Loan",12.84381714,8,16.99,1,_,857.12,33.49634108,21 Years and 11 Months,Yes,92.35285095,,Low_spent_Large_value_payments,198.3140134,0,-0.095,-1.0119,-1.202,-0.5945,-0.8237 -0xae49,CUS_0x1591,August,20,352-06-6563,Writer,150746.88,12589.24,0,5,10.28836175,0,,0,4,1.31,3,Good,696.58,35.98027587,30 Years and 2 Months,No,0,1523.293936,Low_spent_Medium_value_payments,435.5675253,0,0.3471,0.216,0.2851,-0.7634,-3.0792 -0xae55,CUS_0x4797,August,51,278-73-1001,Media_Manager,114998.64,,4,4,8.288361749,0,,,11,7.87,3,Good,325.3170515,35.48173619,18 Years and 9 Months,No,0,,Low_spent_Medium_value_payments,344.0186453,0,-0.0611,-0.5284,1.1996,1.2166,-1.8102 -0xae61,CUS_0x5bf2,August,22,#F%$D@*&8,_______,9945.42,800.785,4,7,15,5,"Not Specified, Student Loan, Not Specified, Personal Loan, and Auto Loan",,2590,18.6,12,Standard,1432.28,36.31015715,,Yes,32.85335322,13.0610355,High_spent_Large_value_payments,274.1641113,0,-0.5952,0.3236,0.3109,0.904,0.8315 -0xae6d,CUS_0x5ebe,August,50,889-60-8908,Mechanic,19731.16,1887.263333,7,4,12,4,"Student Loan, Auto Loan, Debt Consolidation Loan, and Home Equity Loan",16.15045612,15,17.01,3,Standard,341.3224565,40.16551442,19 Years and 5 Months,Yes,34.15673384,49.83624215,!@9#%8,370.3002616,0,-1.5654,0.1946,-0.8601,-0.2855,-0.7444 -0xae79,CUS_0x4b30,August,40,291-04-0774,Architect,72608.32,5855.693333,5,6,8.288361749,0,Payday Loan,,,7.78,3,Good,369.1063399,27.57787542,25 Years and 4 Months,No,43.5696154,606.2768471,High_spent_Medium_value_payments,605.6603318,0,0.2466,-0.7337,-2.3173,-0.0542,1.127 -0xae85,CUS_0x1f87,August,30,835-81-4593,Journalist,29111.07,,8,6,11,2,"Debt Consolidation Loan, and Mortgage Loan",24.18090241,18,13.43,10,Standard,279.95,25.34140881,10 Years and 10 Months,Yes,29.9419307,73.12210255,High_spent_Medium_value_payments,397.1282167,0,1.0215,-1.5335,-1.5318,-0.493,-0.5016 -0xae91,CUS_0x3ea3,August,42,717-18-8612,Teacher,59924.96,4816.746667,6,10,23.95700519,8,"Credit-Builder Loan, Auto Loan, Auto Loan, Student Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",27.82658976,,28.8,13,_,3416.748041,33.24437892,5 Years and 3 Months,Yes,1708.354685,,!@9#%8,179.3470246,0,0.4245,1.6601,-0.7183,1.0906,-1.2067 -0xae9d,CUS_0xdd9,August,56,107-35-7882,Musician,70978.78,5792.898333,0,3,2.288361749,2,"Payday Loan, Payday Loan, and Mortgage Loan",10.93686712,12,6.13,3,_,873.521107,28.39308306,33 Years and 4 Months,No,143.8699706,,High_spent_Small_value_payments,472.0540201,0,-0.1897,0.7208,1.1743,1.0959,-1.3296 -0xaea9,CUS_0x6069,August,18,294-99-9171,_______,31327.28,2427.606667,9,7,19,3,"Not Specified, Home Equity Loan, and Home Equity Loan",30.02507766,18,13.97,6,Standard,1819.09,29.40009195,13 Years and 11 Months,Yes,65.64066392,165.3742467,Low_spent_Small_value_payments,301.745756,0,0.1879,0.7972,0.8126,0.1578,-0.6205 -0xaeb5,CUS_0x57a,August,48,300-81-0244,Teacher,126530.4,10535.2,1,5,4.288361749,2,"Credit-Builder Loan, and Auto Loan",,4,3.54,8,Good,825.1225978,37.71715622,28 Years and 4 Months,NM,140.4924024,11435.61167,High_spent_Large_value_payments,930.4965591,0,-0.1789,-0.1787,0.6593,0.2066,0.5937 -0xaec1,CUS_0x23c1,August,27,338-33-2496,Media_Manager,113207.36,9137.946667,1,5,2.288361749,2,"Mortgage Loan, Not Specified, and Student Loan",0.864824832,4,7.96,4,_,1139.427589,33.31408063,30 Years and 0 Months,NM,221.7456272,518.798053,High_spent_Large_value_payments,844.5918269,0,-1.2105,0.2197,-0.0031,-0.0892,-0.2643 -0xaecd,CUS_0x4842,August,37,748-99-7670,Scientist,43287.85,3769.320833,4,4,5,1,Personal Loan,0,2,1.13,5,Good,1182.481832,28.12553259,20 Years and 4 Months,No,33.86127275,11498.26159,Low_spent_Large_value_payments,308.7871254,0,-1.7073,1.1576,-0.3645,-1.8057,-0.114 -0xaed9,CUS_0xc4a7,August,36,009-76-0533,Accountant,104045.91,,5,7,9,2,"Student Loan, and Mortgage Loan",,9,18.61,6,_,1.33,33.96378988,20 Years and 0 Months,Yes,93.70923447,139.8808532,High_spent_Medium_value_payments,888.2591624,0,-0.7481,-0.6075,-0.3547,-0.7629,0.6161 -0xaee5,CUS_0x59f1,August,30,529-44-0590,Engineer,114450.72,9430.56,7,3,5,0,,26.90462823,19,1.61,2,Standard,739.1275135,25.22572603,28 Years and 9 Months,No,0,945.6824042,Low_spent_Medium_value_payments,395.878346,0,1.1708,-1.1485,0.7462,0.7052,0.6721 -0xaef1,CUS_0x7820,August,37,301-59-7638,Engineer,34974.3,2986.525,6,9,33.88954781,6,"Home Equity Loan, Mortgage Loan, Personal Loan, Not Specified, Home Equity Loan, and Home Equity Loan",26.58306687,21,16.49,10,_,4624.51,28.13726003,2 Years and 4 Months,Yes,1457.742508,110.3718096,High_spent_Medium_value_payments,286.2081013,0,-0.2173,-0.7223,2.8798,0.5668,-0.5021 -0xaefd,CUS_0x159f,August,34,554-38-9690,Engineer,26625.58,,6,6,9,6,"Not Specified, Not Specified, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,10,18.59,4,Standard,1186.471246,40.83997776,11 Years and 0 Months,Yes,122.6345201,106.8557986,High_spent_Small_value_payments,260.4287552,0,-1.1242,-0.7041,0.8978,1.0793,0.509 -0xaf09,CUS_0x5268,August,55,300-94-2533,Entrepreneur,21818.285,,2,2,12,2,"Student Loan, and Student Loan",2.892003089,6,7.53,3,Good,818.31,25.63188672,25 Years and 2 Months,No,30.13313322,36.23345015,High_spent_Large_value_payments,361.0524583,0,0.6203,1.6418,-0.5294,0.4646,0.8423 -0xaf15,CUS_0x4d92,August,32,957-12-0539,Entrepreneur,56795.28,4303.629378,6,7,8,4,"Personal Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",10.53967742,8,14.31,10,Standard,1248.287996,28.17860673,22 Years and 11 Months,NM,365.2066651,121.4418529,High_spent_Medium_value_payments,444.8864999,0,-0.2494,1.1646,-0.0486,-0.5886,-0.5668 -0xaf21,CUS_0x20f1,August,26,741-54-1843,Journalist,68585.44,,7,5,34,5,"Home Equity Loan, Auto Loan, Student Loan, Auto Loan, and Student Loan",,24.72069236,19.2,11,Bad,2670.272501,23.32166965,10 Years and 0 Months,Yes,164.1164087,739.1053481,Low_spent_Small_value_payments,,0,0.242,0.1416,-0.9572,0.6023,-0.3751 -0xaf2d,CUS_0x3336,August,52,190-33-8702,Manager,29648.76,2740.73,0,2,10,0,,1.019601016,4,4.85,8,Good,963.1099957,25.67575217,,No,0,181.9946046,Low_spent_Medium_value_payments,397.8779004,0,-2.0956,-1.9314,-0.0154,0.6953,0.1438 -0xaf39,CUS_0x20da,August,33,090-34-7836,Mechanic,102447.39,,5,4,3.288361749,0,,8.23986969,9,8.54,5,_,190.48,28.6326705,33 Years and 3 Months,No,0,618.5754388,High_spent_Large_value_payments,876.0902722,0,-0.375,-1.0793,-0.9634,-0.0612,0.1821 -0xaf45,CUS_0x133e,August,41,914-49-0079,Entrepreneur,16626.25,1096.520833,0,2,5,0,,6.150124398,7,6.39,0,Good,989.0875465,25.3062199,22 Years and 10 Months,No,0,60.14876784,Low_spent_Small_value_payments,346.2658914,0,0.3425,-0.3445,-0.3381,0.1137,0.8589 -0xaf51,CUS_0xabb5,August,21,229-98-1275,Architect,85163.31,6902.9425,5,3,5.288361749,4,"Debt Consolidation Loan, Student Loan, Auto Loan, and Payday Loan",,18,-4.77,7,Standard,64.87,29.91302239,21 Years and 6 Months,No,271.9245644,,!@9#%8,424.5372034,0,0.0433,1.0716,-0.678,-1.7472,-0.8866 -0xaf5d,CUS_0x9404,August,26,461-85-8005,Engineer,105453.39,8759.7825,6,5,18.28836175,2,"Mortgage Loan, Not Specified, and Not Specified",19.83153707,18,8.19,0,Standard,831.24,25.51333359,19 Years and 4 Months,No,260.0720856,745.462981,High_spent_Medium_value_payments,540.3806445,0,-0.6038,-0.1463,1.2784,1.1713,0.0718 -0xaf69,CUS_0x5a90,August,52,264-53-1943,Engineer,29728.31,,3,4,6,2,"Student Loan, and Student Loan",0.24429647,2,4.81,7,Good,829.0801569,37.95895023,32 Years and 3 Months,No,34.4964452,297.2934504,Low_spent_Small_value_payments,241.9259073,0,-0.27,0.1243,-1.3681,1.9072,-1.1546 -0xaf75,CUS_0x3929,August,31,255-57-5980,Scientist,16164.77,1406.064167,6,3,8,4,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",21.67086472,,15.72,6,Standard,179.19,37.2077986,20 Years and 6 Months,Yes,53.45154389,31.09501283,!@9#%8,306.0598599,0,-0.3748,-0.4784,0.5268,-0.9097,-2.0724 -0xaf81,CUS_0x8062,August,80,#F%$D@*&8,Lawyer,86914.41,6957.8675,8,5,16,3,"Personal Loan, Mortgage Loan, and Auto Loan",11.45443611,9,,7,Standard,1084.06,34.16312373,32 Years and 0 Months,NM,142.5317779,681.1686331,Low_spent_Medium_value_payments,152.086339,0,-0.1855,1.3792,0.1472,0.0054,1.3579 -0xaf8d,CUS_0x23ad,August,46,993-95-0461,_______,42072.75,3263.0625,3,6,9,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",3.195957362,4,10.97,6,Good,689.65,38.16731369,31 Years and 2 Months,No,87.08162159,59.43630442,High_spent_Large_value_payments,419.788324,0,-0.1605,-0.6881,-0.6209,1.8995,0.0944 -0xaf99,CUS_0x4d25,August,41,303-85-3647,Engineer,118845.76,9877.813333,0,7,10,0,,1.800607308,6,9.38,6,Good,92.23701947,34.95964008,31 Years and 8 Months,No,0,242.7927679,High_spent_Large_value_payments,1017.286054,0,0.7165,0.5395,1.8384,0.0294,-0.8536 -0xafa5,CUS_0xf8f,August,44,975-64-8693,Scientist,68236.12,5542.343333,7,10,34,5,"Student Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",23.88194239,13.92278926,15.28,9,Standard,2776.702621,28.79349356,16 Years and 5 Months,Yes,232.5557584,490.0839167,!@9#%8,101.5946583,0,-0.9825,0.5343,-0.3544,-0.7339,-2.7553 -0xafb1,CUS_0x4498,August,44,#F%$D@*&8,Media_Manager,132856.92,,3,5,8,0,,22.00644954,14,10.22,3,_,998.5381482,36.98992164,19 Years and 5 Months,NM,11711,,Low_spent_Small_value_payments,188.186445,0,-0.4983,0.1644,0.3712,2.3781,-0.5212 -0xafbd,CUS_0x24d9,August,18,522-84-7788,Architect,108884.76,8805.73,8,4,16,6,"Personal Loan, Mortgage Loan, Mortgage Loan, Not Specified, Payday Loan, and Not Specified",16.44796643,11,6.48,9,_,769.81,37.99606971,5 Years and 10 Months,Yes,352.3227907,256.7802281,High_spent_Medium_value_payments,521.4699812,0,-0.9145,-1.5426,0.1303,2.1415,0.1946 -0xafc9,CUS_0x1109,August,43,410-39-6091,Lawyer,76284.72,6451.06,6,10,18.88954781,6,"Home Equity Loan, Credit-Builder Loan, Auto Loan, Not Specified, Payday Loan, and Mortgage Loan",20.6139303,14.06605896,6.69,11,Standard,2235.530672,29.36443367,,Yes,1546.442446,,High_spent_Medium_value_payments,490.6840032,0,0.0651,-0.0415,1.5197,0.24,0.4432 -0xafd5,CUS_0x3974,August,26,420-10-9235,Teacher,8007.85,897.3208333,8,7,25.06745738,7,"Mortgage Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",35.99380859,19,29.98,12,Bad,3138.090954,26.85805153,6 Years and 6 Months,Yes,36.22285933,45.38950219,Low_spent_Medium_value_payments,261.3994339,0,-0.4124,-0.2532,1.3406,0.3351,1.0007 -0xafe1,CUS_0x5c89,August,18,#F%$D@*&8,_______,8435.625,714.96875,7,6,17.06745738,4,"Mortgage Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",26.14971007,17.02249236,16.54,10,Standard,1977.858653,32.42790836,9 Years and 4 Months,Yes,15.22934287,46.70774049,Low_spent_Small_value_payments,272.8395037,0,-0.8429,0.5314,-0.1583,-0.4222,-0.273 -0xafed,CUS_0x8a62,August,39,024-46-1152,Developer,64427.3,,3,4,5,2,"Debt Consolidation Loan, and Personal Loan",,5,7.21,6,Good,1147.602497,31.09664263,16 Years and 2 Months,No,104.4603417,467.4318628,Low_spent_Large_value_payments,256.3008294,0,0.4585,0.222,0.0388,-1.3457,-0.0637 -0xaff9,CUS_0x42bc,August,32,440-19-7005,Developer,11533.485,786.12375,4,3,20,7,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Personal Loan, Personal Loan, and Home Equity Loan",,14,18.29,5,Standard,1278.39,38.91584844,16 Years and 0 Months,Yes,44.6185557,,High_spent_Small_value_payments,250.5496891,0,-0.2988,-1.6516,0.5217,-0.5296,-0.2954 -0xb005,CUS_0x7025,August,34,198-39-8199,Writer,20945.23,1552.435833,1240,7,20,9,"Credit-Builder Loan, Home Equity Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",,30.10109648,23.42,13,_,5084.556357,27.83146127,2 Years and 10 Months,NM,151.2004602,116.9846517,Low_spent_Medium_value_payments,167.0584714,0,0.8578,-1.3179,-0.0105,0.6496,-0.1041 -0xb011,CUS_0xa7e1,August,23,894-16-1581,Musician,44006.56,3432.213333,3,3,6.288361749,2,"Payday Loan, and Student Loan",0,2,3.96,3,_,186.6,24.67747677,,No,36.80825112,723.7087388,Low_spent_Small_value_payments,292.6418045,0,0.9022,-1.6,-0.0395,1.3863,-0.9499 -0xb01d,CUS_0x3763,August,52,862-21-8256,Journalist,32871.96,,5,6,14,2,"Auto Loan, and Personal Loan",,10,9.59,0,Standard,748.45,26.51501032,20 Years and 0 Months,No,31.64996493,181.2022705,Low_spent_Medium_value_payments,329.2807646,0,1.5369,-1.2693,0.1943,0.588,-0.8278 -0xb029,CUS_0x568,August,39,487-77-3167,Journalist,114867.4,9805.283333,8,3,12.28836175,0,Payday Loan,13.12455751,11.71420206,15.16,1,Standard,797.3620124,31.54242094,16 Years and 11 Months,No,95.21677348,511.8701491,High_spent_Large_value_payments,1033.378872,0,-1.2043,-1.5161,0.1647,-0.1783,2.3498 -0xb035,CUS_0x6968,August,52,323-77-7209,Teacher,46683.12,,7,7,19,1,Credit-Builder Loan,29.01435943,22,11.72,0,Standard,230.77,27.62583614,32 Years and 11 Months,Yes,27.72498144,156.2835743,High_spent_Medium_value_payments,446.6174443,0,-0.4433,0.083,-0.586,-0.1274,-1.3319 -0xb041,CUS_0x6698,August,28,164-76-2281,_______,168878.08,,5,5,6,1,Credit-Builder Loan,6.694736026,5,4.7,6,_,700.71,38.52621425,28 Years and 5 Months,NM,98.71209749,,High_spent_Medium_value_payments,1135.455138,0,-1.9071,-0.3782,-0.1887,0.2519,-0.674 -0xb04d,CUS_0xc0f3,August,42,734-44-8987,Musician,90438.88,,8,6,10,3,"Payday Loan, Debt Consolidation Loan, and Student Loan",,,11.89,0,Standard,898.09,33.17125091,33 Years and 4 Months,Yes,176.2534284,90.73868974,High_spent_Large_value_payments,717.0652152,0,-1.7562,-0.3975,1.7918,-0.0745,-0.4258 -0xb059,CUS_0x6b0b,August,27,206-94-5126,Doctor,20958.75,,9,9,22.06745738,8,"Home Equity Loan, Home Equity Loan, Personal Loan, Personal Loan, Student Loan, Mortgage Loan, Student Loan, and Mortgage Loan",58.59925478,30.09586847,1.67,11,_,1713.279923,35.09421341,18 Years and 8 Months,Yes,130.528737,,Low_spent_Large_value_payments,188.3340503,0,0.7472,0.6672,2.4299,-3.3724,0.6743 -0xb065,CUS_0x6a7,August,44,358-96-4237,Lawyer,50043.26,4014.271667,5,5,9,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",19.88908422,14,4.39,13,Standard,1208.82,30.29775996,7 Years and 11 Months,Yes,142.2408761,53.62576316,High_spent_Large_value_payments,445.5605274,0,0.8913,1.6728,0.76,0.0438,-0.4397 -0xb071,CUS_0x1ac0,August,37,728-34-9997,Doctor,7011.685,680.3070833,8,9,31,100,"Personal Loan, Auto Loan, Not Specified, and Student Loan",30.77812384,22,1.83,10,_,2425.02,36.49948716,17 Years and 9 Months,NM,18.872923,66.32463808,Low_spent_Small_value_payments,272.8331472,0,0.3635,1.4273,-1.9265,-0.1349,-1.0027 -0xb07d,CUS_0x7869,August,80,926-77-2617,Engineer,59710.88,,4,5,11,1,Personal Loan,16.99656195,,6.02,1,Standard,36.28,36.4764137,22 Years and 0 Months,No,41.77648534,396.4656201,Low_spent_Medium_value_payments,341.3485613,0,-0.5412,-2.0021,0.0716,-0.5876,-1.0932 -0xb089,CUS_0x544d,August,29,590-20-7080,Scientist,7139.64,451.97,10,8,31.95700519,6,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",,,4.46,9,_,2075.70771,29.65011626,19 Years and 0 Months,Yes,1345.078746,25.54760636,Low_spent_Small_value_payments,243.5202786,0,0.5528,0.8424,0.8114,1.0167,-0.5525 -0xb095,CUS_0x705e,August,27,958-88-2066,Entrepreneur,17621.705,,8,7,7,1,Debt Consolidation Loan,16.43320501,15,11.82,8,Standard,776.59,30.57047057,,Yes,10.38246434,125.5259394,Low_spent_Small_value_payments,287.6391379,0,0.62,-0.8076,0.8333,-0.7397,1.7497 -0xb0a1,CUS_0xbbb5,August,31,214-54-8925,Entrepreneur,35989.5,3039.125,7,6,26,7,"Mortgage Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Not Specified",17.8810085,,8.66,11,Standard,1754.71,31.67893359,9 Years and 2 Months,Yes,184.385193,49.98983583,High_spent_Large_value_payments,309.5374711,0,-0.7275,-1.2458,2.8963,0.0955,1.5567 -0xb0ad,CUS_0x8225,August,33,355-03-6809,Doctor,26992.21,2181.350833,8,4,3,3,"Auto Loan, Payday Loan, and Payday Loan",19.97685893,,10.11,4,Good,865.86,29.10822242,25 Years and 6 Months,No,45.0003195,52.25923721,High_spent_Medium_value_payments,370.8755266,0,0.3145,2.2682,-0.2434,0.682,0.239 -0xb0b9,CUS_0x9553,August,46,848-79-4549,Media_Manager,38797.22,3281.101667,6,4,5,3,"Home Equity Loan, Auto Loan, and Auto Loan",20.01561937,15,4.95,3,Standard,465.86,31.72435954,20 Years and 2 Months,No,62.08426992,145.1917549,Low_spent_Medium_value_payments,400.8341419,0,-0.7413,-1.177,1.0107,-0.5924,1.4305 -0xb0c5,CUS_0xc4ee,August,42,224-66-9981,Architect,110529.93,9049.8275,5,6,0.288361749,0,,11.2440914,11,2.19,0,Good,731.46,32.17044629,16 Years and 5 Months,No,0,808.0088229,!@9#%8,786.9113881,0,-1.0986,0.126,-0.5276,0.1028,0.8328 -0xb0d1,CUS_0x7258,August,19,942-66-7166,Entrepreneur,58982.64,,8,9,29,5,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,27.90843535,9.76,16,Bad,2703.274718,28.95261163,6 Years and 6 Months,NM,222.1754761,232.7747556,High_spent_Small_value_payments,273.5717683,0,-1.1548,1.3618,0.4861,-0.2027,-0.0904 -0xb0dd,CUS_0x64c6,August,27,995-72-8382,Scientist,97868.73,8272.7275,6,5,10.28836175,2,"Not Specified, and Student Loan",19.12229069,17,4.68,8,Good,355.24,28.57476268,32 Years and 9 Months,No,156.0553592,1220.193049,Low_spent_Medium_value_payments,150.9618032,0,-0.0188,2.45,0.2562,0.6657,0.5956 -0xb0e9,CUS_0x4d41,August,39,097-33-1673,Engineer,14293.9,,10,9,28.06745738,5,"Credit-Builder Loan, Personal Loan, Not Specified, Personal Loan, and Mortgage Loan",,10.91747181,7.14,8,Standard,3014.485716,37.94159133,,Yes,43.26439993,182.1545413,Low_spent_Small_value_payments,177.2766042,0,0.7223,1.2627,0.5808,0.6061,-1.1198 -0xb0f5,CUS_0xb2cc,August,25,037-63-8524,Accountant,14672.87,,9,10,29.06745738,4,"Payday Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",24.26018946,14.15000343,16.81,14,_,2607.127027,26.06184956,13 Years and 11 Months,Yes,48.66960493,72.59753865,Low_spent_Small_value_payments,270.1864851,0,0.5924,-0.4701,0.2396,0.3276,-0.1276 -0xb101,CUS_0x8acf,August,36,075-04-7112,Scientist,163255.64,13397.63667,0,4,11.28836175,2,"Home Equity Loan, Home Equity Loan, and Auto Loan",5.597808477,8,11.22,3,Good,370.6641069,24.14517774,24 Years and 5 Months,No,325.049504,1966.23086,Low_spent_Medium_value_payments,,0,-2.9891,-0.0649,1.3357,0.7725,0.7269 -0xb10d,CUS_0x6c17,August,23,536-43-4104,Developer,124955.08,,3,6,15,3,"Credit-Builder Loan, Not Specified, and Auto Loan",20.34712664,16,6.55,2,Standard,826.98,38.89562809,33 Years and 5 Months,Yes,205.8336847,211.2015625,High_spent_Medium_value_payments,856.3570862,0,0.7022,1.9503,-0.4665,1.3923,0.1246 -0xb119,CUS_0x9c3c,August,33,196-39-2777,Accountant,85543,,5,8,2,4,"Credit-Builder Loan, Student Loan, Student Loan, and Home Equity Loan",8.98621901,9.542691413,8.44,3,Good,1165.368927,40.05426176,28 Years and 11 Months,No,269.2390404,107.8345666,!@9#%8,545.8847263,0,0.8366,-1.5614,-1.4942,0.8755,1.2917 -0xb125,CUS_0xb936,August,29,466-13-8474,Writer,34898.52,,3,5,15,6,"Auto Loan, Personal Loan, Student Loan, Auto Loan, Personal Loan, and Not Specified",24.72429569,19.19574009,10.83,4,Standard,1746.517688,26.74350836,14 Years and 11 Months,Yes,91.84864713,,High_spent_Small_value_payments,345.2584449,0,0.8363,0.4631,2.321,-0.4109,-1.2888 -0xb131,CUS_0x4ce8,August,26,441-23-6569,Musician,18138,,9,6,29.06745738,5,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Auto Loan, and Student Loan",39.210135,24.32557103,15.1,10,Bad,4683.486531,39.02556361,3 Years and 10 Months,Yes,45.99505329,90.49889825,Low_spent_Medium_value_payments,263.2357605,0,1.2592,0.352,0.2141,-0.3976,-2.1235 -0xb13d,CUS_0x3d37,August,23,160-06-3935,Manager,17096.48,,3,4,5,0,,9.729899972,10,0.97,7,Good,662.4566295,29.83745356,21 Years and 9 Months,No,0,37.29824111,High_spent_Small_value_payments,374.061104,0,1.233,-0.1085,-0.4297,0.8559,0.2629 -0xb149,CUS_0x7df6,August,39,589-71-0854,Scientist,14085.15,1330.7625,3,3,8,3,"Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",17.40853287,14,12.66,4,Standard,298.5,38.09065919,16 Years and 8 Months,No,31.30907093,64.64795897,Low_spent_Large_value_payments,307.1192201,0,0.6241,1.3847,-0.4446,0.8452,0.4502 -0xb155,CUS_0x4ea4,August,36,826-95-8297,Lawyer,36729.93,,2,1,12,0,,,11,6.64,4,_,921.03,39.85465075,28 Years and 3 Months,No,0,162.5222401,Low_spent_Medium_value_payments,431.0605099,0,0.5542,-0.8991,0.2569,0.785,1.2703 -0xb161,CUS_0xb9d8,August,28,220-53-7123,Musician,51950.28,4218.19,7,8,5198,7,"Debt Consolidation Loan, Auto Loan, Student Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Not Specified",,12,11.71,9,Standard,1723.13,25.08004238,,Yes,235.1353203,78.94645627,High_spent_Medium_value_payments,357.7372234,0,-0.0608,0.8794,-1.866,-1.0196,0.0042 -0xb16d,CUS_0x4357,August,29,652-71-9457,Architect,17187.48,,6,5,9,0,,,13,17.98,9,Standard,1453.63,38.78288329,11 Years and 0 Months,Yes,0,100.0246404,Low_spent_Small_value_payments,360.7043596,0,-0.0614,2.2909,-0.512,0.4896,-0.6325 -0xb179,CUS_0x6969,August,56,183-53-8906,Writer,124623.9,,5,2,10,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Personal Loan",10.61550447,12,5.76,2,Good,895.5502653,43.41874608,26 Years and 3 Months,No,321.0802541,,High_spent_Medium_value_payments,681.4384495,0,-0.2075,-0.0532,0.7997,0.069,2.3414 -0xb185,CUS_0x3d44,August,29,534-16-1512,Media_Manager,23557.5,,7,4,6,4,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",,20,,0,Standard,7.51,40.62018933,28 Years and 5 Months,No,41.41703603,,High_spent_Large_value_payments,359.9968535,0,0.4076,-1.1129,-0.3675,0.2729,-0.4446 -0xb191,CUS_0x2493,August,46,468-04-0031,Teacher,30592.38,2583.365,6,7,8,0,,20.91142825,15.76507418,0.58,2,Standard,1437.878351,26.91367033,19 Years and 6 Months,No,9733,,Low_spent_Small_value_payments,358.5170635,0,0.1768,1.1876,-1.3388,0.3263,-0.3605 -0xb19d,CUS_0x74fc,August,22,011-70-3590,Musician,25655.23,2081.935833,7,5,6,1,Debt Consolidation Loan,26.16545725,20,6.3,6,Standard,1115.06,28.19109518,19 Years and 8 Months,Yes,15.08079606,159.4141193,!@9#%8,323.698668,0,-0.6255,-1.5008,0.9017,-1.0694,-1.6294 -0xb1a9,CUS_0x66c7,August,27,192-92-9184,Mechanic,42884.84,3578.736667,4,6,7,0,,4.127180414,2.295636344,1.73,2,Good,1449.532883,38.30045483,30 Years and 6 Months,No,0,87.17307237,High_spent_Large_value_payments,510.7005943,0,1.4478,0.1865,-0.9052,0.2571,-1.3417 -0xb1b5,CUS_0xb14f,August,33,996-73-7266,Writer,27694.66,2404.902618,7,4,10,2,"Auto Loan, and Debt Consolidation Loan",27.51449995,20,6.69,5,Standard,1275.496795,29.57872244,24 Years and 11 Months,Yes,131.361029,109.8431161,Low_spent_Small_value_payments,396.4710444,0,0.0516,-0.4864,-1.5773,-1.6593,-0.1737 -0xb1c1,CUS_0xad3c,August,27,886-35-0858,Media_Manager,24898.5,,3,3,16.28836175,0,Home Equity Loan,11.51576175,12,8.25,1,_,143.27,34.67330202,32 Years and 2 Months,Yes,28795,607.8061009,Low_spent_Medium_value_payments,292.9544957,0,0.4139,0.021,0.9027,1.0489,-1.2864 -0xb1cd,CUS_0x84e7,August,32,314-40-3453,Developer,169229.44,13892.45333,2,4,11,4,"Student Loan, Personal Loan, Payday Loan, and Payday Loan",2.850765976,4,10.36,4,Good,708.42,29.62104962,26 Years and 6 Months,No,305.0743098,395.8919797,Low_spent_Large_value_payments,958.2790439,0,0.2761,0.6429,-0.3602,-1.3693,1.1925 -0xb1d9,CUS_0x7656,August,34,515-31-7948,_______,19197.3,,8,8,23.95700519,7,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Student Loan, Personal Loan, and Home Equity Loan",33.64891839,18,16.65,8,Bad,4050.160954,37.57832975,2 Years and 2 Months,Yes,1394.876189,107.2919449,Low_spent_Large_value_payments,210.8589968,0,0.5435,0.5143,0.888,0.2137,-1.6155 -0xb1e5,CUS_0xb8d4,August,33,362-15-7400,Entrepreneur,158311.12,,2,7,6.288361749,4,"Not Specified, Personal Loan, Home Equity Loan, and Auto Loan",4.125959505,7,2.31,1,Good,285.28,38.82650995,31 Years and 0 Months,No,360.0177123,,Low_spent_Small_value_payments,163.4620021,0,-0.6506,0.0152,-0.3143,1.8684,-0.112 -0xb1f1,CUS_0x90e0,August,30,922-30-2893,Mechanic,65247.82,,3,5,12,2,"Personal Loan, and Personal Loan",,6,3.1,1,Good,301.9301932,38.31041889,17 Years and 8 Months,No,105.0187865,124.5709879,High_spent_Large_value_payments,589.6888319,0,-0.5626,0.0084,-1.9264,-0.8533,0.0287 -0xb1fd,CUS_0x59a9,August,28,#F%$D@*&8,Entrepreneur,135871.68,,3,2,5.288361749,2,"Not Specified, and Mortgage Loan",,11,1.21,4,Good,1331.460907,40.78853721,22 Years and 4 Months,No,174.8965293,952.8448415,Low_spent_Large_value_payments,773.024985,0,1.4225,0.7973,0.6186,-0.8423,-0.1481 -0xb209,CUS_0x5c44,August,39,290-76-5626,Scientist,10413.6,576.8,3,6,5,5,"Personal Loan, Payday Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",,17,,9,_,1098.56,37.0776761,19 Years and 10 Months,Yes,40.71403163,49.89442082,Low_spent_Small_value_payments,257.0715476,0,0.4817,-0.7284,-1.5106,0.112,0.3019 -0xb215,CUS_0x16d3,August,22,619-06-9383,Entrepreneur,34204.91,,4,5,10,3,"Credit-Builder Loan, Home Equity Loan, and Student Loan",6.499477915,3.525876962,,4,Good,1492.363915,28.1503461,32 Years and 9 Months,No,73.3462592,115.0294175,High_spent_Medium_value_payments,367.26524,0,-0.2302,-1.9282,-0.5042,-0.4491,1.8863 -0xb221,CUS_0xb5ae,August,48,264-30-0705,Developer,62170.26,4987.855,5,7,13,4,"Student Loan, Student Loan, Student Loan, and Auto Loan",,,12.04,8,Standard,1456.07,31.16562283,21 Years and 9 Months,NM,197.8103066,207.42994,Low_spent_Large_value_payments,363.5452534,0,-0.4287,0.4831,-0.1142,-0.3465,-1.0207 -0xb22d,CUS_0xe32,August,45,433-26-2777,Doctor,86902.59,7005.8825,5,4,12,4,"Payday Loan, Student Loan, Home Equity Loan, and Payday Loan",,9,7.85,,Standard,746.14,30.26680461,,Yes,170.6488172,505.3328877,Low_spent_Small_value_payments,314.6065451,0,-0.8287,0.0796,0.306,-0.5905,0.5481 -0xb239,CUS_0x926b,August,27,016-34-5925,Manager,38272.58,2980.381667,6,6,14,2,"Payday Loan, and Home Equity Loan",17.24578458,15,9.44,12,Standard,974.34,27.72895189,20 Years and 3 Months,Yes,63.27051683,90.90577079,High_spent_Small_value_payments,403.8618791,0,-0.6407,0.387,0.4527,1.9102,0.9695 -0xb245,CUS_0x6f02,August,44,638-18-9662,Entrepreneur,16358.97,,10,9,24.95700519,9,"Home Equity Loan, Payday Loan, Student Loan, Student Loan, Student Loan, Personal Loan, Student Loan, Payday Loan, and Auto Loan",,28.85425135,3.14,13,Bad,3414.332834,25.26983527,14 Years and 5 Months,Yes,1433.614995,115.2917236,Low_spent_Small_value_payments,181.1676623,0,-0.4192,-1.3978,-1.9586,0.3834,0.607 -0xb251,CUS_0x4669,August,44,023-38-3760,Architect,106271.13,8663.9275,4,7,13,2,"Not Specified, and Auto Loan",18.7228305,15,1.62,3,_,492.06,34.99274869,21 Years and 6 Months,NM,126.9306082,851.6721439,Low_spent_Small_value_payments,177.789998,0,-0.1665,-0.1569,-0.0474,-0.5155,0.5189 -0xb25d,CUS_0x6e7,August,34,636-33-5615,Engineer,95745.88,,7,6,18,3,"Payday Loan, Payday Loan, and Student Loan",17.45492983,13,10.17,8,_,738.41,35.02422714,21 Years and 5 Months,Yes,142.2807709,497.3087177,Low_spent_Large_value_payments,410.3928448,0,-0.6279,-0.3036,1.0376,-0.4774,1.1653 -0xb269,CUS_0x1b85,August,44,912-30-2671,Entrepreneur,36228.12,3105.01,3,7,3,2,"Credit-Builder Loan, and Not Specified",0,3,11.62,5,_,1292.653959,33.74617364,27 Years and 9 Months,No,39.04583087,119.4400208,Low_spent_Medium_value_payments,449.7308433,0,1.2717,0.567,-1.028,2.1996,1.5292 -0xb275,CUS_0x5d65,August,28,958-85-9128,Developer,65500.84,5457.403333,4,3,18,4,"Personal Loan, Auto Loan, Student Loan, and Auto Loan",12.88982207,13,4.26,4,Standard,1088.57,27.1973779,,No,197.5670856,102.6279122,!@9#%8,505.5453355,0,0.2333,2.627,-0.1432,-1.2344,-0.2122 -0xb281,CUS_0x8eaa,August,34,274-64-8413,Developer,16518.87,,10,8,28,100,"Not Specified, Not Specified, Auto Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, Mortgage Loan, and Personal Loan",22.07105004,17.18044339,10,8,Bad,2810.921811,30.02059157,10 Years and 10 Months,Yes,65.70517937,24.34212054,High_spent_Medium_value_payments,287.9099501,0,-1.5833,0.5654,-1.2836,0.7746,1.0442 -0xb28d,CUS_0x987a,August,27,528-33-3356,Mechanic,17181.105,,4,4,17,4,"Student Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",24.2627134,20,12.72,9,_,323.74,28.99372211,18 Years and 9 Months,Yes,34.004072,31.36312198,High_spent_Large_value_payments,346.408681,0,0.7756,-0.7074,-0.5925,-0.0736,0.9006 -0xb299,CUS_0x7972,August,80,065-29-8457,Engineer,46717.32,4072.11,9,6,25,7,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Payday Loan, Mortgage Loan, and Mortgage Loan",33.53905771,20.93669344,8.85,9,Bad,3048.716547,38.63337879,8 Years and 10 Months,NM,176.1264053,54.96583939,!@9#%8,426.1187553,0,1.2893,1.4881,-2.7728,-0.5749,0.8994 -0xb2a5,CUS_0x5975,August,38,711-80-8414,_______,44849.79,,10,7,18.06745738,5,"Mortgage Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",36.27337659,24,12.32,7,Bad,2607.320954,27.80703392,16 Years and 2 Months,Yes,164.7087422,503.6621957,Low_spent_Small_value_payments,,0,-2.199,-0.3499,-0.3322,0.4988,-1.6815 -0xb2b1,CUS_0x197f,August,39,334-38-7121,Writer,35669.97,,5,7,19,100,"Student Loan, and Home Equity Loan",,16,14.45,6,Standard,657.81,36.66679653,16 Years and 6 Months,Yes,57.64795768,60.27649453,High_spent_Medium_value_payments,451.7252978,0,-3.1193,-1.4219,1.0165,2.0661,1.2577 -0xb2bd,CUS_0xa478,August,27,289-96-2635,Musician,125222.6,,1,5,1.288361749,2,"Payday Loan, and Student Loan",0,1,3.47,5,Good,188.33,26.66456716,17 Years and 11 Months,No,205.6343261,606.9201423,High_spent_Large_value_payments,868.2046592,0,-0.7474,-0.8474,1.0431,0.4169,0.729 -0xb2c9,CUS_0x22f8,August,35,089-37-2681,Developer,89417.16,,7,4,19,0,,15.64066444,12,14.97,4,Standard,289.7429216,38.87475589,25 Years and 10 Months,Yes,0,835.101969,Low_spent_Medium_value_payments,280.006198,0,-1.6133,0.1285,-0.5138,0.2245,1.0166 -0xb2d5,CUS_0x25f2,August,23,956-42-0011,Manager,78426.52,6383.543333,8,4,9,0,,,9,7.66,4,_,1221.49,38.34229546,15 Years and 8 Months,Yes,0,,High_spent_Small_value_payments,761.284522,0,-1.5283,0.8724,1.0928,0.3372,0.5395 -0xb2e1,CUS_0x6f7d,August,22,419-63-0128,Developer,78839.48,6358.956667,7,4,3510,100,Mortgage Loan,25.0333909,16,4.21,5,_,1041.42,42.91540889,32 Years and 10 Months,Yes,39.35327288,96.92725237,High_spent_Large_value_payments,739.6151414,0,-1.4202,-0.188,-0.5661,0.0951,0.6345 -0xb2ed,CUS_0x35ba,August,34,458-07-0171,Engineer,95287.17,,1,6,12,3,"Credit-Builder Loan, Home Equity Loan, and Not Specified",6.810885395,6,3.98,7,Good,815.62,31.37857618,,No,236.755666,116.4598939,High_spent_Medium_value_payments,704.34419,0,0.624,-0.4861,-0.5369,1.0607,1.6154 -0xb2f9,CUS_0x6448,August,28,#F%$D@*&8,Media_Manager,35933.67,2728.4725,5,4,6.288361749,100,,4.492942005,7,5.95,4,Good,98.89,31.69067612,15 Years and 8 Months,No,0,528.0398793,Low_spent_Medium_value_payments,444.7448317,0,0.7089,-0.0846,0.5844,-0.8137,-1.217 -0xb305,CUS_0xc524,August,42,367-57-7593,Journalist,34216.85,,4,5,12,0,,30.05402588,19,18.41,11,Standard,1283.78,38.77414907,22 Years and 2 Months,Yes,0,69.00777875,High_spent_Medium_value_payments,452.8326379,0,-1.3543,-1.3838,1.0342,-1.0097,-0.3918 -0xb311,CUS_0x9438,August,25,397-81-3808,_______,7156.425,,10,6,32.06745738,5,"Home Equity Loan, Not Specified, Not Specified, Not Specified, and Student Loan",38.0027697,18.63182408,6.27,6,Bad,1833.191177,29.84028568,11 Years and 11 Months,Yes,18.88157799,10.92486948,Low_spent_Medium_value_payments,264.8101396,0,1.1584,-0.3979,0.1189,0.8935,1.0688 -0xb31d,CUS_0xa055,August,31,957-89-9722,Accountant,107157.12,9178.76,8,6,9,0,,,19,5.9,2,_,182.91,41.38483524,26 Years and 5 Months,NM,0,295.6267538,Low_spent_Medium_value_payments,902.2492462,0,0.082,-0.3803,1.2664,-0.1939,0.2562 -0xb329,CUS_0xa5a4,August,19,810-65-1317,Mechanic,135452.08,11212.67333,0,3,2,1,Not Specified,10.75868133,11,1.21,4,Good,257.19,42.09977414,20 Years and 11 Months,No,69.23716234,432.0669978,High_spent_Medium_value_payments,869.9631732,0,1.475,0.5834,-0.7265,0.2425,-0.528 -0xb335,CUS_0xc6d6,August,46,324-16-4438,Scientist,21229.73,1709.144167,5,4,10,2,"Debt Consolidation Loan, and Auto Loan",0,1,16.78,3,_,659.72,25.24734529,26 Years and 2 Months,No,28.88093048,20.29563815,High_spent_Large_value_payments,361.737848,0,1.2182,0.0878,-0.2051,0.2937,0.4469 -0xb341,CUS_0x43c0,August,41,264-92-2394,Musician,70064.92,,8,10,16.88954781,8,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Home Equity Loan, Personal Loan, Personal Loan, and Debt Consolidation Loan",42.66583979,21.60860295,26.61,7,Bad,4175.401358,29.79876362,13 Years and 3 Months,Yes,1713.726736,,Low_spent_Large_value_payments,221.3395157,0,-0.2035,1.1859,-0.9062,0.5955,-1.1178 -0xb34d,CUS_0x9dff,August,26,571-72-1744,Manager,17482.49,1181.874167,6,6,29,5,"Auto Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",,27.37579003,15.18,9,_,3185.633411,25.33423308,6 Years and 3 Months,Yes,51.83320723,58.28167091,Low_spent_Large_value_payments,278.0725385,0,-0.1688,0.6673,-0.4965,0.8348,-0.781 -0xb359,CUS_0x9d86,August,29,675-88-7269,Doctor,120091.92,10239.66,0,2,5,1,Credit-Builder Loan,,12,-4.45,5,Good,1132.46,41.24490282,23 Years and 11 Months,NM,84.40523007,,Low_spent_Medium_value_payments,700.4974333,0,0.4064,-0.0343,-0.1767,-0.8842,-2.2236 -0xb365,CUS_0xc118,August,30,626-84-2639,Journalist,56693.96,4662.496667,7,5,24,100,"Auto Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,22,9.24,13,Bad,1974.3,26.14632482,,Yes,113.5511309,432.8902826,Low_spent_Medium_value_payments,199.8082532,0,-0.975,-1.655,1.1028,-1.1564,-0.6959 -0xb371,CUS_0x5049,August,44,461-78-8318,Manager,171873.32,14285.77667,3,5,10.28836175,0,,,5,4.03,2,Good,817.3703838,25.5950404,,No,0,2080.858128,Low_spent_Medium_value_payments,290.6828522,0,-1.3095,0.727,-0.8222,-0.0987,-0.5671 -0xb37d,CUS_0x548b,August,44,542-92-9333,_______,66522.06,5409.505,8,4,7,3,"Student Loan, Not Specified, and Home Equity Loan",19.32573492,13,15.95,,Standard,561.13,27.84501992,15 Years and 10 Months,Yes,117.0880048,291.6330122,Low_spent_Small_value_payments,422.2294831,0,-1.5953,1.7888,0.1237,0.3928,-0.2605 -0xb389,CUS_0x1a18,August,18,800-90-7191,Lawyer,16724.855,1490.737917,7,4,11,2,"Credit-Builder Loan, and Mortgage Loan",,17,,5,Standard,917.9083709,37.28378928,20 Years and 0 Months,Yes,18.49257096,87.02021694,Low_spent_Large_value_payments,324.3287013,0,-1.8102,0.6667,-0.9812,0.0597,0.9889 -0xb395,CUS_0x600e,August,50,121-87-3090,Manager,120030.68,9972.556667,7,6,7,1,Personal Loan,14.11558766,11,4.28,,Standard,1247.79,31.9082788,21 Years and 2 Months,No,91.31136471,232.2785275,High_spent_Small_value_payments,933.6657745,0,-2.5355,0.8741,0.0591,-0.0508,-2.2905 -0xb3a1,CUS_0xbba9,August,24,984-62-2785,Engineer,175796.6,,3,7,11,3,"Auto Loan, Credit-Builder Loan, and Personal Loan",2.155696108,3.648133988,1.46,3,Good,1366.409113,28.34307787,30 Years and 10 Months,No,366.7589326,1477.500217,Low_spent_Small_value_payments,,0,0.4241,0.8946,-1.0444,0.1152,-0.4104 -0xb3ad,CUS_0xc45d,August,39,232-02-1071,Writer,61348.98,5038.415,5,7,9,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",16.16234627,11,11.19,5,Standard,1240.49,32.76834213,27 Years and 9 Months,No,168.595419,295.9175061,Low_spent_Medium_value_payments,319.3285749,0,-1.5761,0.7338,0.8795,-0.2043,3.0108 -0xb3b9,CUS_0x5b37,August,40,599-63-0212,Lawyer,9159.02,,6,8,19.06745738,4,"Home Equity Loan, Student Loan, Personal Loan, and Home Equity Loan",26.97009783,17.89000279,8.6,655,Standard,1985.638615,32.84868537,11 Years and 9 Months,Yes,22.08918973,94.52385454,Low_spent_Small_value_payments,235.3918345,0,0.982,1.0789,0.2768,-0.7836,0.864 -0xb3c5,CUS_0x2b9f,August,80,564-64-3020,_______,141816.36,,3,6,11.28836175,0,,12.51808697,13.78443782,9.2,5,_,594.1172085,34.33227922,31 Years and 4 Months,No,0,577.1405164,High_spent_Large_value_payments,1283.099945,0,1.2499,-0.8522,-0.7475,0.7749,1.1982 -0xb3d1,CUS_0xb8c,August,28,146-11-7370,Writer,78867.52,,8,7,33,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",32.08713448,18.21323888,18.1,12,Bad,1948.293459,38.77032362,6 Years and 0 Months,Yes,144.7774683,176.875715,High_spent_Medium_value_payments,606.2761501,0,-0.0961,0.4355,1.3646,1.4698,-1.4648 -0xb3dd,CUS_0x20e5,August,38,107-23-3924,Manager,99845.4,8600.45,1,1,10.28836175,2,"Mortgage Loan, and Not Specified",,2,4.84,1,Good,778.1,35.02341972,21 Years and 0 Months,No,136.474227,494.7385724,High_spent_Large_value_payments,888.7696616,0,0.4563,-0.4389,0.9296,-0.8395,1.8879 -0xb3e9,CUS_0x4c61,August,35,167-60-9343,Teacher,22373.535,2137.46125,5,5,10,2,"Not Specified, and Home Equity Loan",5.855003771,9,10.24,0,Good,1347.316431,26.13743819,25 Years and 2 Months,No,31.94779906,323.9004189,!@9#%8,185.2564609,0,-0.354,-0.3374,-1.7531,1.9372,0.4027 -0xb3f5,CUS_0x94a6,August,26,990-54-3184,Accountant,104616.9,8481.075,7,6,14,4,"Debt Consolidation Loan, Mortgage Loan, Student Loan, and Not Specified",19.08197345,14.35009008,1.59,7,Standard,1617.772546,38.83017954,,No,334.0983436,303.0713091,Low_spent_Medium_value_payments,490.9378472,0,-0.0434,-1.914,0.8931,-0.3351,-0.1935 -0xb401,CUS_0x2f7b,August,44,879-63-4182,Mechanic,15451.69,1271.640833,6,7,19,6,"Personal Loan, Personal Loan, Student Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",10.7597781,10,19.55,8,Standard,1620.67,36.99376724,13 Years and 2 Months,Yes,40.91557148,101.1671586,Low_spent_Medium_value_payments,265.0813533,0,1.4345,1.431,0.1921,-0.6214,-0.6172 -0xb40d,CUS_0xc1b9,August,40,098-04-5169,Lawyer,152483.32,12747.94333,5,4,0.288361749,2,"Student Loan, and Home Equity Loan",0,0,4.72,5,Good,678.31,29.85007007,28 Years and 5 Months,No,209.4921085,632.4805266,High_spent_Medium_value_payments,1102.759159,0,-0.5619,0.0401,0.1189,-0.6369,-0.5128 -0xb419,CUS_0x4846,August,23,670-60-0491,Musician,30494.3,2330.191667,9,7,31.06745738,8,"Student Loan, Payday Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",,27.5922036,18.42,9,_,5329.732315,27.6773912,14 Years and 0 Months,Yes,185.1153863,34.21861726,!@9#%8,226.9648751,0,0.6788,-1.6411,0.4062,0.3269,-0.5704 -0xb425,CUS_0x51f,August,56,910-56-2718,Lawyer,32937.83,2519.819167,8,6,11,4,"Debt Consolidation Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",18.94722603,14,4.95,0,_,134.09,31.58007492,18 Years and 4 Months,No,79.58570855,157.1391655,High_spent_Small_value_payments,275.2570427,0,0.6042,-0.4567,1.5877,1.6538,0.3714 -0xb431,CUS_0x5933,August,30,375-51-3125,Journalist,132705.63,,4,2,2478,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",1.677031284,6,5.55,4,Good,675.3626301,37.83098404,,No,364.3907233,102.0929629,High_spent_Large_value_payments,904.6506386,0,0.3837,0.025,-0.4125,-0.3195,-0.9074 -0xb43d,CUS_0x2694,August,20,708-87-0866,Lawyer,8952.155,,6,3,14,2,"Payday Loan, and Mortgage Loan",14.7262855,10.59312917,11.26,11,Standard,2228.896072,26.73215724,,Yes,11.55251699,32.49628077,Low_spent_Medium_value_payments,282.5524939,0,0.6888,-1.541,-0.4158,-0.1026,1.5374 -0xb449,CUS_0x3d77,August,29,691-72-0444,Architect,58301.44,,3,7,19,4,"Mortgage Loan, Student Loan, Personal Loan, and Credit-Builder Loan",14.92330782,13,7.44,0,Standard,352.44,25.13867165,26 Years and 11 Months,Yes,169.9120689,134.5746391,High_spent_Medium_value_payments,445.3586253,0,-2.0481,-1.6834,-0.7447,0.3273,2.1574 -0xb455,CUS_0xf9e,August,43,252-30-3555,Teacher,142475.32,12013.94333,8,5,11,2,"Mortgage Loan, and Home Equity Loan",26.44512836,18,1.65,3,_,628.57,42.34432204,30 Years and 8 Months,No,124.4000074,81.77875327,High_spent_Large_value_payments,1235.215573,0,0.547,-0.4188,-1.9545,-0.176,0.4199 -0xb461,CUS_0x2f53,August,39,772-95-6980,_______,38580.05,2928.576763,0,5,3.288361749,0,Payday Loan,2.708681867,5,2.73,4,Good,211.92,22.70163829,28 Years and 6 Months,No,472.6526137,,Low_spent_Small_value_payments,412.32435,0,1.0918,-0.6877,0.9401,0.5626,0.2614 -0xb46d,CUS_0x58d8,August,18,600-58-1259,Journalist,19135.35,,5,5,17,2,"Home Equity Loan, and Auto Loan",15.31372128,10.36200121,18.4,8,Standard,1216.402225,31.50632312,24 Years and 3 Months,Yes,60290,105.735346,Low_spent_Small_value_payments,340.0945725,0,0.0846,2.8542,-0.1994,-0.1077,-1.4122 -0xb479,CUS_0xa138,August,26,873-85-5247,Developer,126664.28,10474.35667,7,7,18,2,"Auto Loan, and Mortgage Loan",,8.990849915,8.84,12,Standard,301.427478,37.08311223,32 Years and 9 Months,Yes,149.1805718,286.7874656,Low_spent_Medium_value_payments,891.4676292,0,-1.4714,0.2108,-1.4938,-0.8284,0.0945 -0xb485,CUS_0xc28c,August,27,573-42-4273,Developer,19899.64,1759.303333,5,3,6,2,"Student Loan, and Auto Loan",13.10444976,12.95989028,4.85,4,Good,802.7037212,22.73033747,27 Years and 11 Months,No,17.12581198,28.71177859,High_spent_Medium_value_payments,380.0927428,0,0.0918,1.7959,-0.0897,-0.4622,1.0374 -0xb491,CUS_0x2794,August,26,457-70-4452,Developer,7542.5,818.5416667,8,5,20,6,"Not Specified, Personal Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",20.73180971,18,15.57,8,Standard,1916.7,33.90063518,14 Years and 2 Months,Yes,22.99932342,43.12893914,Low_spent_Medium_value_payments,295.7259041,0,-0.1598,1.3569,-0.5285,-0.8491,0.2882 -0xb49d,CUS_0xbe32,August,28,979-89-1794,Lawyer,64294.77,,6,4,7,1,Auto Loan,,14,13.11,1,Standard,1052.1,29.27702117,23 Years and 6 Months,No,37.73270214,117.0833929,High_spent_Large_value_payments,629.4736549,0,-0.6637,-0.3794,-0.6752,0.5765,0.652 -0xb4a9,CUS_0x1195,August,31,822-48-3629,Manager,30429.91,2808.825833,4,6,16,2,"Auto Loan, and Auto Loan",23.4262573,17,1.67,1549,Standard,362.48,33.34905039,28 Years and 11 Months,No,29.91407646,82.87878578,Low_spent_Large_value_payments,438.0897211,0,-0.4744,-0.6906,0.5291,0.2108,-0.5542 -0xb4b5,CUS_0x9ec7,August,22,223-21-1439,Teacher,34512.78,,3,5,7,2,"Payday Loan, and Payday Loan",4.920547846,5,11.36,4,Good,394.52,33.8252898,28 Years and 11 Months,No,36.11736925,76.21702748,High_spent_Medium_value_payments,427.8721033,0,0.5147,0.3995,-0.57,0.2162,-0.3059 -0xb4c1,CUS_0xdea,August,25,735-58-7826,Teacher,23522.97,,3,7,7,1,Debt Consolidation Loan,20.49830336,14,3.81,1,_,1343.0714,39.46619882,21 Years and 11 Months,NM,18.66644511,91.84014726,High_spent_Medium_value_payments,351.0295625,0,-0.6142,-1.9433,3.1534,0.2674,-1.5036 -0xb4cd,CUS_0x7fb0,August,39,433-96-3729,_______,29785.28,,8,4,7,100,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Personal Loan, and Personal Loan",19.0202098,,7.94,12,Standard,66.95,32.01509532,7 Years and 10 Months,Yes,116.3611122,211.9472284,Low_spent_Large_value_payments,181.502326,0,-0.1405,1.4787,0.373,-0.6311,1.3718 -0xb4d9,CUS_0x3809,August,53,060-56-1128,Journalist,108397.59,,3,5,10,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",,,0.84,2,Good,1299.953254,31.87508237,30 Years and 3 Months,No,182.7498648,,High_spent_Large_value_payments,758.2408019,0,0.0385,0.9275,0.2201,-0.5008,-1.2815 -0xb4e5,CUS_0xadd7,August,42,378-88-5726,Architect,71690.42,6001.201667,1,3,4,4,"Credit-Builder Loan, Student Loan, Home Equity Loan, and Home Equity Loan",,2589,2.24,5,Good,1217.03,39.98631886,16 Years and 11 Months,No,180.2505463,,!@9#%8,523.9354837,0,0.3169,1.0721,-0.7065,-0.3812,0.4921 -0xb4f1,CUS_0xa24a,August,44,752-76-8237,Developer,96108.54,,5,4,12,0,,0,2,0.52,5,Good,1477.46,40.56383532,20 Years and 3 Months,No,0,415.7883507,Low_spent_Medium_value_payments,642.7161493,0,-0.3698,-0.9177,1.0799,0.5307,0.0886 -0xb4fd,CUS_0x5528,August,22,#F%$D@*&8,Lawyer,20701.48,,8,9,25.88954781,8,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",41.65082455,24.02116897,24.5,10,Bad,3644.724917,38.99247065,10 Years and 8 Months,Yes,1443.22031,34.57223525,High_spent_Medium_value_payments,268.7897068,0,1.2348,-1.896,0.9903,0.768,-1.3301 -0xb509,CUS_0x22bc,August,22,588-02-4459,Manager,21129.11,,5,5,6,0,,19.53330567,,5.91,1,_,977.4871541,38.71219765,21 Years and 9 Months,No,0,163.9155225,Low_spent_Small_value_payments,311.3603942,0,0.9182,-1.3897,0.8049,-0.1108,0.0517 -0xb515,CUS_0xc1dc,August,42,516-83-0790,Writer,61355.12,,6,7,8,0,,14.73359033,8,4.86,2,Standard,428.61,33.41522144,21 Years and 10 Months,No,33914,209.2970727,High_spent_Medium_value_payments,558.7955939,0,-0.2255,0.3389,-0.6886,0.0418,-0.4787 -0xb521,CUS_0xbe29,August,31,970-80-4101,Architect,28993.75,2459.145833,2,4,12,1,Personal Loan,0,2,6.74,0,Good,822.72,33.82857351,20 Years and 4 Months,No,18.34558544,94.31949059,Low_spent_Small_value_payments,423.2495073,0,-0.3226,0.4723,-0.5626,1.2757,1.2457 -0xb52d,CUS_0xbbec,August,32,273-71-2807,Writer,30962.65,2711.220833,8,4,11,0,,18.58485793,13,5.4,,_,716.42,28.76477042,23 Years and 11 Months,No,0,10000,Low_spent_Small_value_payments,422.8772234,0,-0.3588,2.3155,-0.1372,0.6319,-1.1137 -0xb539,CUS_0x1f57,August,45,679-39-8293,Lawyer,19547.065,,3,2,8,3,"Student Loan, Credit-Builder Loan, and Mortgage Loan",14.77782951,12,5.14,5,Good,746.1685538,29.13058368,32 Years and 5 Months,No,46.36255909,71.66873511,Low_spent_Small_value_payments,329.414046,0,0.6582,0.085,2.3873,2.2144,-0.7651 -0xb545,CUS_0x1e95,August,24,540-71-5162,Developer,103943,8812.916667,5,6,11,2,"Auto Loan, and Payday Loan",20.87766262,18,8.21,5,Standard,1195.826346,28.4506005,30 Years and 0 Months,Yes,113.9982869,508.581225,Low_spent_Large_value_payments,602.2338519,0,-0.3997,1.2775,1.224,0.5944,1.0845 -0xb551,CUS_0xb060,August,39,309-06-5437,Manager,20695.58,,2,2,3,4,"Home Equity Loan, Personal Loan, Personal Loan, and Not Specified",6.162428002,7,11,2,_,1240.925376,25.73772151,19 Years and 11 Months,NM,253.5833674,187.509496,Low_spent_Medium_value_payments,265.0676598,0,0.4131,1.5523,1.7651,-1.1863,-0.1934 -0xb55d,CUS_0x37e6,August,23,491-70-1469,Architect,25846.78,,7,3,16,4,"Payday Loan, Not Specified, Home Equity Loan, and Personal Loan",12.59001317,12,11.92,1,Standard,1.23,32.24314916,24 Years and 6 Months,No,85.27657308,33.63162279,High_spent_Medium_value_payments,322.0816375,0,-0.064,0.457,0.8783,-0.8495,0.6166 -0xb569,CUS_0x3374,August,25,128-48-7511,Manager,73134.06,5913.505,5,4,12,4,"Not Specified, Not Specified, Student Loan, and Auto Loan",15.53209359,10,4.63,4,Standard,382.91,28.39894513,33 Years and 6 Months,NM,156.9209564,124.5931178,High_spent_Large_value_payments,549.8364259,0,0.2256,-0.0228,0.7999,1.0122,0.2457 -0xb575,CUS_0x48b7,August,25,233-46-6078,Doctor,67394.92,5844.243333,4,3,21,7,"Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Auto Loan, Payday Loan, Auto Loan, and Payday Loan",,19.8499526,9.77,10,Standard,1843.070757,30.84720836,9 Years and 8 Months,NM,341.5669033,604.4168873,Low_spent_Medium_value_payments,,0,-0.1217,-0.1028,-1.1912,-2.4949,1.6527 -0xb581,CUS_0x4abb,August,26,425-97-4776,Media_Manager,70171.29,,3,7,13,6,"Personal Loan, Student Loan, Mortgage Loan, Auto Loan, Student Loan, and Payday Loan",23.54962475,19,5.81,9,Standard,686.85,25.73018511,19 Years and 6 Months,Yes,268.672953,202.6586206,Low_spent_Large_value_payments,407.8291764,0,1.466,-2.5187,-1.7658,-0.7902,1.1724 -0xb58d,CUS_0x42dc,August,29,517-51-2372,Writer,28397.31,,7,4,7,2,"Student Loan, and Not Specified",,10,9.4,4,_,1398.33,40.37160675,27 Years and 3 Months,No,27.7670242,157.4787524,Low_spent_Small_value_payments,316.6984734,0,-0.1517,-0.386,1.5017,-0.1751,0.5562 -0xb599,CUS_0x953d,August,24,884-63-2579,Engineer,37419.7,,1,7,5,4,"Student Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",0,0,7.69,0,Good,653.66,31.92502871,22 Years and 3 Months,No,76.18253576,129.8357012,Low_spent_Small_value_payments,401.4125963,0,-0.5941,-0.5382,1.2106,0.5143,0.4059 -0xb5a5,CUS_0x902d,August,35,#F%$D@*&8,Architect,117680.84,10057.73667,5,5,10,2,"Debt Consolidation Loan, and Auto Loan",,17,15.32,0,Standard,217.1576349,41.04985083,18 Years and 2 Months,Yes,183.4525866,413.3757441,High_spent_Medium_value_payments,713.1512089,0,-0.6534,-1.2254,1.9622,0.7469,-0.7118 -0xb5b1,CUS_0x3eed,August,35,018-83-9065,Engineer,15833.7,,5,914,13,2,"Payday Loan, and Auto Loan",17.26449152,,15.02,6,Standard,2343.292083,34.84636576,12 Years and 8 Months,Yes,40320,47.96243244,High_spent_Medium_value_payments,318.2823721,0,-0.4623,0.2396,-0.2192,-0.2491,-0.669 -0xb5bd,CUS_0x1a23,August,51,092-81-2077,Lawyer,35205.45,,3,7,7,3,"Personal Loan, Personal Loan, and Home Equity Loan",8.670022171,9,9.06,4,Good,671.94,26.90904027,,No,57.51493672,122.3931214,High_spent_Small_value_payments,396.6706919,0,-1.1804,0.0729,-1.5376,-0.3252,-1.481 -0xb5c9,CUS_0x96da,August,30,777-66-9324,_______,15891.115,,0,4,5,3,"Personal Loan, Student Loan, and Mortgage Loan",8.069552814,9,10.6,4,Good,453.9158377,27.05155598,24 Years and 5 Months,No,82.47324663,45.54456142,Low_spent_Large_value_payments,324.2470747,0,-2.5471,0.4173,-0.3972,2.1148,-1.1637 -0xb5d5,CUS_0x88fb,August,38,069-08-9575,Architect,126680.84,10547.73667,7,7,8,7,"Personal Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",23.0938401,16,13.23,11,Standard,124.18,26.52665056,13 Years and 4 Months,Yes,565.128007,178.9199289,High_spent_Large_value_payments,550.7257307,0,-1.3828,-0.004,-2.171,-0.3359,0.8459 -0xb5e1,CUS_0x3f42,August,25,214-44-4143,Journalist,77224.88,6221.406667,2,1,11.28836175,4,"Student Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",8.680453053,9,0.47,6,Good,809.539041,28.54273727,24 Years and 4 Months,No,224.1707891,,Low_spent_Medium_value_payments,124.8121809,0,1.1353,1.1195,0.183,-0.6864,-0.333 -0xb5ed,CUS_0x46e8,August,21,084-77-0393,Architect,47631.96,3640.396464,5,4,17,5,"Debt Consolidation Loan, Payday Loan, Auto Loan, Mortgage Loan, and Not Specified",15.52030704,15,11.91,8,_,1203.002256,31.17118174,10 Years and 0 Months,Yes,565.1074777,280.4870098,Low_spent_Medium_value_payments,278.4147754,0,-1.0811,0.1426,-0.4558,-2.0426,1.5377 -0xb5f9,CUS_0xa041,August,55,216-08-7192,Doctor,148678.44,12353.87,3,4,0.288361749,0,Mortgage Loan,,6,7.66,0,Good,830.1408371,37.86961808,15 Years and 11 Months,No,109.1743903,625.8748828,High_spent_Large_value_payments,1186.678989,0,-0.5207,-0.049,1.1221,0.3931,-0.0276 -0xb605,CUS_0x8822,August,21,164-20-1767,Journalist,26697.27,,4,7,10,4,"Credit-Builder Loan, Personal Loan, Student Loan, and Credit-Builder Loan",,19,13.85,9,Standard,942.4,26.69601962,28 Years and 10 Months,Yes,72.56008125,158.5964249,Low_spent_Large_value_payments,266.7207438,0,-0.7988,0.8489,0.6438,-0.3157,1.9376 -0xb611,CUS_0xb6a5,August,20,986-22-2853,Architect,71633.48,5783.456667,5,4,2.288361749,0,,2.381965213,4,9.18,6,Good,157.93,26.49095167,33 Years and 2 Months,No,0,,Low_spent_Small_value_payments,93.85395294,0,0.9405,-1.2801,-1.8954,0.6547,-0.4846 -0xb61d,CUS_0x8d56,August,37,063-47-6931,Engineer,43395.09,,1,3,4,3,"Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",8.3865494,9,6,9,_,1103.7,33.04229314,33 Years and 0 Months,No,74.86925046,39.60267116,High_spent_Medium_value_payments,491.7538284,0,-0.9951,0.4291,0.4086,0.2043,0.066 -0xb629,CUS_0x6e43,August,46,409-83-0158,Scientist,19956.6,,6,5,15,0,,,18,5.77,11,Standard,415.74,35.53837165,26 Years and 4 Months,Yes,0,165.1973472,Low_spent_Small_value_payments,285.8076528,0,-2.0015,1.3354,0.6404,1.4004,1.1563 -0xb635,CUS_0xa23e,August,18,266-46-9280,Developer,71625.2,6031.766667,4,2,2,0,,0,3,0.74,4,Good,461.75,38.11510211,21 Years and 2 Months,No,0,,Low_spent_Medium_value_payments,534.78864,0,-0.6398,0.1001,0.9737,-1.1118,-0.3637 -0xb641,CUS_0x880b,August,24,790-45-5982,_______,7830.03,775.5025,8,7,30,5,"Payday Loan, Home Equity Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",,25.03507547,0.92,10,Bad,1386.148008,33.39744669,5 Years and 11 Months,Yes,31.59359991,,High_spent_Medium_value_payments,287.5668453,0,-1.3033,-0.2462,0.8063,-0.9526,-1.0519 -0xb64d,CUS_0x3911,August,23,#F%$D@*&8,Doctor,61839.26,5162.271667,4,5,12,0,,0,1,-2.73,0,Good,1014.5,36.46171356,23 Years and 5 Months,No,0,108.0628657,High_spent_Medium_value_payments,658.1643009,0,-0.0042,-0.1849,-0.8213,0.3475,-0.8379 -0xb659,CUS_0x2e7f,August,18,246-36-2777,Manager,123242.36,,5,3,9,2,"Student Loan, and Not Specified",24.08005622,18,11.73,6,Standard,37.69,28.01673189,24 Years and 8 Months,Yes,180.1007912,240.8140683,High_spent_Large_value_payments,870.5048072,0,-0.835,0.5721,0.9226,0.4127,0.9496 -0xb665,CUS_0x1b02,August,57,683-17-8939,Architect,12743.995,,3,4,8,2,"Student Loan, and Personal Loan",17.29833494,12,7.22,6,Standard,872.9956848,26.19808897,24 Years and 2 Months,No,12.86726798,53.30118493,Low_spent_Medium_value_payments,347.5029022,0,-0.8444,1.7893,-1.4503,-0.2199,0.0927 -0xb671,CUS_0x718a,August,24,981-14-9909,Teacher,18001.59,,7,9,32.06745738,2,"Credit-Builder Loan, and Mortgage Loan",32.24624467,21.55069983,16.34,12,Bad,2690.589045,32.02189006,20 Years and 3 Months,Yes,24.98644681,97.60876861,Low_spent_Small_value_payments,266.4977466,0,0.7105,-0.8822,-1.3536,-1.6989,1.0147 -0xb67d,CUS_0x1b9a,August,20,195-20-9615,_______,29892.37,,7,3,13,2,"Credit-Builder Loan, and Credit-Builder Loan",7.041495636,8,16.11,5,Standard,604.5238715,24.44201616,31 Years and 9 Months,Yes,29.95982727,76.38477012,High_spent_Medium_value_payments,420.7483847,0,-1.7414,-0.545,-2.1626,-0.0559,1.371 -0xb689,CUS_0xbd59,August,50,436-61-5981,Teacher,105226.98,8744.915,1,2,8,4,"Student Loan, Payday Loan, Auto Loan, and Home Equity Loan",6.162461028,6,6.67,8,Good,1010.06,36.40985256,26 Years and 10 Months,No,210.2506732,179.9967038,High_spent_Large_value_payments,724.244123,0,0.2565,0.515,1.6171,0.3955,-1.0667 -0xb695,CUS_0x1b0a,August,35,777-41-6594,Writer,30988.61,,5,3,11,0,,0.711017028,3,7.32,3,_,820.56,33.85552425,17 Years and 9 Months,No,0,35.98683832,High_spent_Medium_value_payments,492.6515783,0,-0.2126,-0.1133,-0.0773,0.3616,-0.5814 -0xb6a1,CUS_0xab3a,August,24,858-31-4023,Developer,86304.38,6471.440652,5,2,11.28836175,0,Debt Consolidation Loan,9.487404453,10,2.67,1,Good,5.851488757,31.98122019,32 Years and 10 Months,No,748.2370373,938.9911103,High_spent_Small_value_payments,461.3151365,0,0.1211,0.9642,-0.4567,0.7981,0.8265 -0xb6ad,CUS_0x6f74,August,40,519-80-5348,Teacher,18623.41,1764.950833,8,7,22.06745738,4,"Not Specified, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",33.70482068,15.01353157,15.41,13,Standard,2879.048061,35.71055384,20 Years and 4 Months,Yes,58.51794308,48.10813944,High_spent_Small_value_payments,303.1487129,0,-0.3406,-1.2316,-0.2832,0.3788,-0.6072 -0xb6b9,CUS_0x2468,August,45,733-64-4265,Journalist,10386.83,1095.569167,7,10,16.06745738,5,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Personal Loan",,25.44200533,24.51,15,Bad,4566.041143,33.03574022,13 Years and 4 Months,Yes,35.00271392,97.8088994,Low_spent_Small_value_payments,240.0250154,0,1.9689,1.3902,-0.7033,1.7185,1.0891 -0xb6c5,CUS_0x5edf,August,54,#F%$D@*&8,Lawyer,34476.64,,5,6,19,2,"Personal Loan, and Student Loan",6.080654651,9,7.44,2,Standard,697.4092846,24.41138211,24 Years and 0 Months,Yes,164.9956286,,Low_spent_Medium_value_payments,235.8594247,0,0.5243,-1.7561,0.7615,0.4059,-1.0438 -0xb6d1,CUS_0x6225,August,36,340-01-9048,Musician,144342.52,,0,1,11.28836175,0,Auto Loan,7.617026699,10,10.61,1,Good,1123.41,36.39854067,33 Years and 0 Months,No,104.5798686,597.8972739,High_spent_Large_value_payments,1169.414652,0,-1.2587,-0.2371,-1.2236,-1.2834,1.172 -0xb6dd,CUS_0x12fc,August,18,439-29-4580,Manager,128450.32,10943.19333,1,5,4,3,"Home Equity Loan, Student Loan, and Personal Loan",0,2,6.66,4,Good,22.08030069,29.21807,30 Years and 9 Months,NM,161.4875316,989.7211057,Low_spent_Medium_value_payments,367.7654207,0,-1.5106,-0.0315,-0.0983,-0.2069,-2.4679 -0xb6e9,CUS_0x53aa,August,39,291-32-9772,Writer,55139.82,4703.985,3,4,5,100,"Auto Loan, Auto Loan, Student Loan, and Mortgage Loan",23.33794924,,8.4,11,_,95.73,24.01618614,25 Years and 4 Months,Yes,110.39204,286.0075597,Low_spent_Medium_value_payments,353.9989003,0,-0.7768,-1.2523,0.3337,-0.8192,0.0544 -0xb6f5,CUS_0x5d1c,August,19,204-41-9068,Accountant,92497.5,7899.125,3,3,2.288361749,0,,0,2,0.52,0,Good,406.94,33.86470025,29 Years and 8 Months,No,0,561.0933255,High_spent_Large_value_payments,888.7566355,0,-0.402,-1.6423,-0.7655,0.2578,-0.4028 -0xb701,CUS_0x5a89,August,22,574-51-2436,Developer,28405.61,,7,7,6,3,"Student Loan, Auto Loan, and Personal Loan",,17,8.42,4,Standard,582.97,25.93954353,23 Years and 4 Months,No,45371,39.36913886,High_spent_Medium_value_payments,418.1853028,0,2.76,-0.6766,0.5947,-0.9657,-2.7061 -0xb70d,CUS_0x6f2a,August,36,268-16-4575,Journalist,151295.4,12378.40377,2,7,3,4,"Home Equity Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",90,2529,0.03,6,_,153.31,33.70775067,28 Years and 2 Months,No,729.4903435,,Low_spent_Medium_value_payments,180.8384863,0,1.0124,-0.7668,1.4227,0.0208,0.042 -0xb719,CUS_0xa062,August,44,048-21-3119,Doctor,63079.46,4966.621667,2,4,11,4,"Personal Loan, Payday Loan, Personal Loan, and Not Specified",12.53365115,13,0.72,0,_,776.4749236,35.7140234,,No,110.2345173,127.6782585,High_spent_Large_value_payments,515.9799979,0,0.2828,-0.5762,-0.6344,-0.0979,1.6853 -0xb725,CUS_0xb14a,August,20,493-18-7194,Developer,18084.08,1740.006667,7,5,29,3,"Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",,25.52911786,9.86,8,Bad,2626.758479,26.23481171,,Yes,42.92277704,81.64598023,Low_spent_Small_value_payments,339.4319094,0,-0.968,2.7662,0.6916,0.81,0.1457 -0xb731,CUS_0xad5e,August,32,467-83-2406,Lawyer,15769.54,,8,6,2023,2,"Credit-Builder Loan, and Home Equity Loan",25.04565204,19.0732993,7.02,14,_,1750.147339,32.01979444,6 Years and 8 Months,Yes,18.98573219,99.5911638,Low_spent_Small_value_payments,315.2359373,0,0.0931,0.3489,0.2269,-0.2273,-0.2855 -0xb73d,CUS_0x6b79,August,31,594-68-8045,Doctor,33656.12,2821.676667,9,8,28.06745738,8,"Student Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",41.84881758,25,6.42,9,Bad,2405.390954,35.54481434,15 Years and 9 Months,NM,215.3526595,111.6899126,!@9#%8,208.4048067,0,-0.4827,0.8484,0.8274,-0.9297,-0.2628 -0xb749,CUS_0x9e21,August,35,359-87-6453,Media_Manager,62168.04,5224.67,3,6,12.28836175,4,"Home Equity Loan, Personal Loan, Auto Loan, and Mortgage Loan",18.84994459,16,11.46,4,Standard,135.72,27.50940849,16 Years and 4 Months,NM,177.2141847,743.6608694,Low_spent_Large_value_payments,291.529407,0,0.821,0.2781,0.457,-0.0676,1.4988 -0xb755,CUS_0x6256,August,31,483-56-8418,Musician,17251,1226.583333,10,6,19,100,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Not Specified, and Student Loan",,22,28.05,10,_,4537.36,38.28457714,,Yes,49.92020787,88.42326239,Low_spent_Large_value_payments,254.3148631,0,0.0345,-0.612,0.9736,1.1482,0.8783 -0xb761,CUS_0x2ec3,August,32,499-61-1229,Teacher,116690.94,,2,4,5.288361749,2,"Auto Loan, Payday Loan, and Personal Loan",,11,6.14,6,Good,1096.42,36.77491689,28 Years and 6 Months,No,233.5025052,1484.643285,Low_spent_Small_value_payments,,0,1.0023,-1.0617,-2.0837,0.3613,0.8694 -0xb76d,CUS_0x269f,August,35,890-67-9419,Writer,140964.08,,5,7,1.288361749,2,"Debt Consolidation Loan, Auto Loan, and Home Equity Loan",13.81959288,12.52312381,11.96,113,Good,1197.268671,39.77150542,24 Years and 9 Months,No,292.7015662,590.324938,High_spent_Large_value_payments,951.8116234,0,1.8156,-0.2317,0.6021,1.9056,1.7247 -0xb779,CUS_0x4ebb,August,43,494-02-8633,_______,67583.2,5884.933333,8,8,19.95700519,8,"Debt Consolidation Loan, Payday Loan, Not Specified, Home Equity Loan, Home Equity Loan, Payday Loan, Payday Loan, and Not Specified",,18.52722256,9.85,17,Bad,4822.681518,35.89330556,6 Years and 6 Months,Yes,1724.82793,128.3674686,High_spent_Medium_value_payments,264.2475653,0,-0.3877,1.1571,1.6521,0.666,-0.5101 -0xb785,CUS_0xec3,August,28,063-94-6538,Scientist,9347.59,812.9658333,10,5,20.06745738,4,"Personal Loan, Student Loan, Credit-Builder Loan, and Auto Loan",,26.30923502,13.48,12,Bad,2273.821712,38.06327242,16 Years and 11 Months,Yes,15.79665189,44.82167763,Low_spent_Medium_value_payments,273.9579659,0,-1.2979,-0.7737,-0.4436,0.7973,1.0987 -0xb791,CUS_0x35fe,August,32,074-52-8105,Lawyer,31429.85,2879.154167,6,5,5,2,"Mortgage Loan, and Not Specified",26.79366252,20,9.03,2,Standard,817.9708839,28.58162601,17 Years and 0 Months,NM,48.43796806,82.58831615,High_spent_Large_value_payments,405.52424,0,-1.7703,0.2433,0.9943,-1.4848,0.1459 -0xb79d,CUS_0xc38e,August,19,780-64-9115,Journalist,61567.05,,8,5,31,5,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",28.25477848,16.98165042,5.15,7,Bad,1681.169292,29.47072151,11 Years and 5 Months,Yes,153.7755245,190.547079,Low_spent_Medium_value_payments,452.0361464,0,-1.621,-0.1523,0.8259,-0.8195,-0.3806 -0xb7a9,CUS_0x67bb,August,34,952-70-2786,Architect,86567.96,6326.657281,3,7,0.288361749,0,Debt Consolidation Loan,8.921455953,10,0.87,2,Good,807.8856742,28.2611201,24 Years and 11 Months,No,698.5065572,478.1846572,High_spent_Large_value_payments,820.0527865,0,-0.1728,0.3604,0.1378,-0.9146,0.1641 -0xb7b5,CUS_0x8a70,August,41,957-97-1235,Teacher,87603.24,,0,7,8,4,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",,1,-0.64,6,Good,194.3728175,35.29752993,20 Years and 4 Months,No,290.6612436,302.7827551,High_spent_Medium_value_payments,429.3347875,0,-1.9824,1.9819,-0.3769,1.5747,0.1433 -0xb7c1,CUS_0x6fb9,August,24,918-42-3999,Manager,20027.29,,6,9,27.06745738,5,"Debt Consolidation Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,11.89073824,19.3,12,Standard,2606.337559,33.04861704,7 Years and 0 Months,Yes,52.27417786,23.28897177,!@9#%8,296.9106458,0,0.2148,-1.4715,0.6878,-0.5191,1.2145 -0xb7cd,CUS_0x9de2,August,58,568-59-4064,Entrepreneur,31923.73,2506.310833,7,6,14.28836175,0,,10.00969233,10,10.37,1,Standard,51.34550189,26.54634116,29 Years and 6 Months,Yes,0,665.9644193,Low_spent_Large_value_payments,297.8437443,0,-0.8034,-0.5734,-0.3169,0.6656,-0.34 -0xb7d9,CUS_0x2541,August,27,842-08-3305,_______,14411.34,,10,9,29,9,"Home Equity Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Not Specified, Auto Loan, and Personal Loan",38.43912731,22,19.77,7,Bad,4716.04,36.16611707,,Yes,56.01518548,60.10897156,Low_spent_Medium_value_payments,257.770343,0,-2.3127,0.0585,-0.7735,-0.4034,-0.1111 -0xb7e5,CUS_0x57c,August,26,796-76-1915,Accountant,52984.53,4272.3775,8,7,17.06745738,8,"Student Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",,23,26.85,13,Bad,3752.290954,40.10165767,12 Years and 5 Months,Yes,291.209144,160.4409073,High_spent_Medium_value_payments,198.8674107,0,-0.0661,-0.3015,-1.3513,-1.0979,-0.7678 -0xb7f1,CUS_0x1414,August,46,960-30-9698,Journalist,51093.12,4080.76,8,9,25.88954781,6,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Payday Loan",,22,27.67,12,Bad,3628.5,30.71488668,11 Years and 2 Months,Yes,1569.57204,330.9223634,Low_spent_Small_value_payments,103.2515158,0,0.1762,-1.1355,-0.0369,-0.0905,-1.0923 -0xb7fd,CUS_0x646d,August,26,660-74-0810,Writer,45230.85,3471.2375,7,7,26,6,"Mortgage Loan, Mortgage Loan, Personal Loan, Auto Loan, Home Equity Loan, and Not Specified",,20.26757855,10.23,10,Standard,1941.936906,33.65509734,8 Years and 6 Months,Yes,212.6730074,363.4851423,Low_spent_Small_value_payments,60.96560031,0,2.0553,-0.4173,-0.8342,0.6964,0.5509 -0xb809,CUS_0xac56,August,29,565-66-0493,Lawyer,120889.62,10100.135,3,6,7,0,,,1.133196158,0.97,3,Good,1355.899506,41.41234588,20 Years and 8 Months,No,0,226.7611175,High_spent_Medium_value_payments,1033.252382,0,-2.2329,0.142,1.1341,-0.8447,0.0157 -0xb815,CUS_0x67c6,August,21,#F%$D@*&8,Musician,18246.25,1410.520833,4,4,4,2,"Credit-Builder Loan, and Personal Loan",7.879717756,8.162677789,5.46,4,Good,931.9858164,31.99108211,31 Years and 11 Months,No,25.20632569,181.514154,Low_spent_Small_value_payments,224.3316036,0,0.6578,-0.8701,2.096,-0.0478,-0.1371 -0xb821,CUS_0x599f,August,42,#F%$D@*&8,Doctor,34352.2,2573.683333,6,6,26.06745738,6,"Mortgage Loan, Personal Loan, Student Loan, Not Specified, Student Loan, and Auto Loan",,15,26.68,8,_,3807.540954,24.86834423,7 Years and 6 Months,Yes,140.5507562,329.5726454,Low_spent_Small_value_payments,50.52464377,0,-1.1556,-0.0785,-0.7131,0.3854,0.7503 -0xb82d,CUS_0x29fa,August,23,087-05-4939,Musician,35248.41,2683.3675,6,5,11.28836175,4,"Payday Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",20.50392142,18,8,1,Standard,430.56,24.84235813,26 Years and 0 Months,Yes,96.59653294,481.6103022,High_spent_Large_value_payments,350.0673759,0,1.1953,1.7238,-0.5491,-0.3796,-0.4349 -0xb839,CUS_0x7b3,August,32,676-41-8343,Accountant,20121.97,,8,6,21.06745738,9,"Personal Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Payday Loan, Home Equity Loan, Auto Loan, Auto Loan, and Student Loan",44.31188413,29.78361135,22.36,11,Bad,5796.852596,37.485361,9 Years and 3 Months,Yes,121.5196296,,Low_spent_Small_value_payments,144.2109515,0,0.97,0.3693,-1.378,0.7585,0.0416 -0xb845,CUS_0x73e8,August,39,124-68-9447,Writer,9500.235,,4,3,11,3,"Student Loan, Home Equity Loan, and Student Loan",17.57845182,,2.3,4,_,416.6716033,32.86709009,31 Years and 3 Months,No,17.71699643,105.3084654,Low_spent_Small_value_payments,274.4082169,0,0.5069,-0.6829,-0.2976,-0.5113,1.9201 -0xb851,CUS_0xaed6,August,45,768-75-7275,Lawyer,16096.54,,3,4,13,1,Credit-Builder Loan,11.28741914,11,11.84,3,Standard,815.4599199,27.96402459,28 Years and 4 Months,Yes,12.5675806,37.09278415,High_spent_Small_value_payments,341.0759221,0,-1.3604,0.4748,0.486,1.0261,0.9101 -0xb85d,CUS_0x7570,August,29,389-19-4125,Architect,146090.64,12283.22,3,7,11,0,,,8,6.08,1,Standard,909.23,40.82670371,21 Years and 10 Months,No,0,235.8910791,High_spent_Large_value_payments,1232.430921,0,-1.069,-1.1027,-0.8548,-0.3922,1.41 -0xb869,CUS_0x19a5,August,27,#F%$D@*&8,Doctor,8493710,3136.363333,4,4,7,1,Credit-Builder Loan,17.0819801,16,13.03,0,Standard,90.37,34.47893561,25 Years and 6 Months,Yes,28.44768635,,Low_spent_Medium_value_payments,434.8834419,0,2.8148,0.4424,-0.5153,0.0206,0.5406 -0xb875,CUS_0xbe46,August,20,257-88-2315,Architect,68369.88,,4,5,11,2,"Payday Loan, and Auto Loan",,20,9.66,2,Standard,40.13,35.92646916,16 Years and 6 Months,No,40101,,Low_spent_Small_value_payments,152.4667086,0,1.0774,1.5394,1.3733,-0.2172,1.77 -0xb881,CUS_0x6075,August,19,008-47-5004,Musician,29223.35,2611.279167,5,3,18,3,"Auto Loan, Auto Loan, and Auto Loan",27.92634637,19,8.83,3,Standard,436.64,36.69114223,,No,64.13026798,167.4554665,Low_spent_Large_value_payments,299.5421821,0,0.3837,-0.2723,-0.3805,-0.2872,-0.8418 -0xb88d,CUS_0xa9bb,August,24,#F%$D@*&8,Entrepreneur,84408.16,7211.013333,4,5,18,3,"Credit-Builder Loan, Student Loan, and Payday Loan",,13.56699842,13.29,8,Standard,710.2651288,37.05399994,7 Years and 9 Months,NM,174.7990344,165.2564269,High_spent_Medium_value_payments,631.045872,0,-0.6048,-0.2447,0.2912,0.368,0.1775 -0xb899,CUS_0x2176,August,37,308-31-8537,Writer,94053.57,,4,4,14,3,"Auto Loan, Personal Loan, and Not Specified",17.25614446,12,11.96,0,Standard,815.38,34.65891648,26 Years and 11 Months,No,197.1324869,89.31598569,High_spent_Medium_value_payments,759.0312774,0,0.1096,0.0206,0.0942,-0.4712,1.9783 -0xb8a5,CUS_0x4b7f,August,25,373-88-8828,Architect,15936.77,,6,8,25.06745738,7,"Payday Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",,24,,11,Bad,3157.680954,30.76799207,11 Years and 3 Months,Yes,53.92352059,142.7343093,Low_spent_Small_value_payments,183.0282989,0,1.6435,0.928,0.2412,0.3179,0.0101 -0xb8b1,CUS_0x3c82,August,55,145-41-0611,Architect,26877.26,2081.771667,4,6,12,0,,14.84672797,12,10.65,2,Standard,274.99,40.270568,23 Years and 6 Months,Yes,0,196.990047,Low_spent_Small_value_payments,301.1871197,0,1.2645,-1.8845,0.9257,0.1638,-0.617 -0xb8bd,CUS_0x699d,August,27,508-05-9026,Developer,73431.2,6296.266667,3,7,9,4,"Student Loan, Not Specified, Auto Loan, and Student Loan",14.30877427,12,16.44,8,Standard,1965.63,39.14265414,6 Years and 8 Months,Yes,200.3052304,211.8488309,High_spent_Medium_value_payments,467.4726054,0,-0.6434,0.6135,0.6443,0.8671,0.4502 -0xb8c9,CUS_0x1b21,August,31,382-04-7153,_______,134928.36,11197.03,1,5,6,0,,,11,7.25,7,_,532.0501892,38.59693287,21 Years and 5 Months,No,0,419.4714171,Low_spent_Medium_value_payments,1027.086622,0,-1.1317,-1.2635,0.4891,-0.9817,0.2292 -0xb8d5,CUS_0xa0c3,August,59,355-23-1301,Lawyer,101112.6,8600.05,8,6,4,2,"Auto Loan, and Mortgage Loan",,20,1.42,2,Good,364.4278965,36.51615971,29 Years and 3 Months,No,143.8567345,151.775738,High_spent_Large_value_payments,824.0774429,0,-0.0994,0.1526,-0.0672,0.6886,-0.2501 -0xb8e1,CUS_0x26b0,August,46,286-29-0244,_______,14584.2,,8,9,16.06745738,4,"Mortgage Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",21.5673931,9,19.9,12,_,1778.640954,34.97496835,,Yes,46.13828287,,High_spent_Small_value_payments,244.1089895,0,-1.6651,-0.3026,0.4096,-0.9549,0.8533 -0xb8ed,CUS_0x34ad,August,23,344-23-8384,Engineer,107334.88,8883.573333,8,5,7.288361749,0,,14.62006506,13,18.52,6,Standard,508.85,41.30587841,23 Years and 9 Months,Yes,0,618.9832105,High_spent_Medium_value_payments,939.3115838,0,-0.504,0.4974,0.4049,0.5071,0.0375 -0xb8f9,CUS_0xc305,August,27,656-31-5843,Media_Manager,42098.93,3220.244167,4,6,3,3,"Not Specified, Debt Consolidation Loan, and Personal Loan",12.4678772,8.131435891,11.73,5,Good,1058.137691,35.40127711,19 Years and 9 Months,No,63.69184783,165.2517532,Low_spent_Medium_value_payments,373.0808156,0,0.7968,0.0323,-1.0624,-1.0603,0.9617 -0xb905,CUS_0x8f7b,August,35,220-96-8677,Lawyer,163032.6,,4,3,5,1,Student Loan,6.793307257,6,8.3,3,Good,16.81997697,23.20386543,20 Years and 4 Months,No,120.6482115,1388.110096,Low_spent_Medium_value_payments,244.518242,0,-0.0337,-0.7871,0.6697,-1.152,0.1618 -0xb911,CUS_0xc2b5,August,19,733-62-4701,Scientist,69736.92,6091.41,6,10,26,5,"Credit-Builder Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",22.71341548,18,16.16,8,Bad,4401.517743,39.53156426,6 Years and 11 Months,Yes,186.2731752,,High_spent_Large_value_payments,508.1087779,0,-0.2218,0.9411,-0.8696,-0.1872,1.9628 -0xb91d,CUS_0xc3f2,August,20,#F%$D@*&8,Engineer,76909.76,,10,8,32,9,"Mortgage Loan, Credit-Builder Loan, Payday Loan, Not Specified, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",25.38565207,,18.45,12,Bad,4779.36,28.2078113,11 Years and 0 Months,Yes,576.2792649,647.5883187,Low_spent_Medium_value_payments,,0,0.385,-0.2382,1.1039,0.9489,0.1517 -0xb929,CUS_0x62b7,August,45,055-47-7711,Musician,41811.51,,4,4,3,3,"Auto Loan, Personal Loan, and Home Equity Loan",0,0,9.16,4,Good,1137.64,25.3876653,32 Years and 9 Months,No,68.27704539,30.46806328,High_spent_Large_value_payments,485.3841413,0,-0.4088,1.6856,-0.7544,0.2557,0.157 -0xb935,CUS_0x56d7,August,44,015-14-5182,Manager,40678.44,3631.87,8,4,19,1,Credit-Builder Loan,,18,12.93,7,Standard,1301.75,26.53693141,13 Years and 4 Months,Yes,32.86685373,206.5546733,Low_spent_Large_value_payments,393.765473,0,-1.1188,0.3187,0.7011,-0.1668,-0.5264 -0xb941,CUS_0x5537,August,42,160-41-2527,Scientist,14807.4,1030.955151,10,7,22,9,"Not Specified, Credit-Builder Loan, Student Loan, Not Specified, Not Specified, Auto Loan, Auto Loan, Payday Loan, and Payday Loan",30.87220967,19,25.32,7,Bad,3959.86,33.66751722,10 Years and 10 Months,Yes,120.1660519,,High_spent_Medium_value_payments,254.0697774,0,0.1765,-0.8753,0.5165,-0.739,1.3566 -0xb94d,CUS_0x7c06,August,51,494-74-7035,Accountant,61683.18,4941.265,4,3,3,4,"Credit-Builder Loan, Student Loan, Auto Loan, and Credit-Builder Loan",5.754827167,6,8.29,3,Good,553.0165228,24.14289714,22 Years and 6 Months,No,128.3843569,163.7537693,High_spent_Medium_value_payments,467.2378672,0,-0.7659,1.6056,1.4662,-0.062,0.1731 -0xb959,CUS_0x83fe,August,24,479-47-1083,Scientist,79284.92,6426.076667,8,5,15,100,"Auto Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Not Specified",,27.9022641,23.72,,Bad,3094.577155,26.154001,1 Years and 9 Months,Yes,374.3950465,222.3840084,Low_spent_Medium_value_payments,325.8286117,0,-0.7589,0.5347,-0.9435,-0.5773,-1.2521 -0xb965,CUS_0x4cad,August,35,179-19-0691,Architect,49131.42,3864.285,10,9,25.88954781,7,"Mortgage Loan, Personal Loan, Student Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",40.67830456,26.88324641,19.9,12,Bad,5046.815576,25.06981095,9 Years and 5 Months,Yes,1488.779752,,Low_spent_Small_value_payments,205.6963726,0,-1.5463,0.7048,-1.9314,0.6952,0.1178 -0xb971,CUS_0x5540,August,31,371-69-7764,Lawyer,17486.55,1389.2125,9,5,35.06745738,2,"Personal Loan, and Student Loan",47.35259477,26.44125075,2.82,12,Bad,2886.294619,26.8554783,6 Years and 8 Months,Yes,24.14454259,,Low_spent_Small_value_payments,237.5384575,0,1.2927,0.602,0.5023,-1.6568,0.7883 -0xb97d,CUS_0x79d7,August,21,060-18-9691,Developer,36319.38,2915.615,10,5,30.06745738,5,"Not Specified, Not Specified, Mortgage Loan, Payday Loan, and Personal Loan",47.26399347,23.66774454,-3.52,10,Bad,2926.932312,41.00254327,9 Years and 11 Months,Yes,113.6170148,64.09581046,High_spent_Large_value_payments,327.1283868,0,0.6215,-0.771,-1.9297,0.0187,0.9552 -0xb989,CUS_0x78f8,August,50,#F%$D@*&8,_______,14831.815,1096.984583,5,5,6,2,"Mortgage Loan, and Auto Loan",,14,8.17,4,Standard,1490.48,33.22155198,28 Years and 5 Months,Yes,22.61391464,55.1603044,Low_spent_Small_value_payments,321.9242393,0,-1.2146,0.2859,1.4978,-1.0364,-0.1425 -0xb995,CUS_0x9f08,August,37,214-00-2112,Journalist,10091.225,759.9354167,5,6,18,2,"Mortgage Loan, and Not Specified",21.50005496,16,4.21,4,Standard,855.24,27.28621921,21 Years and 6 Months,No,16.39534166,50.85376614,Low_spent_Small_value_payments,298.7444339,0,1.5744,-0.0778,0.3662,2.0922,0.4415 -0xb9a1,CUS_0x522d,August,48,833-66-4735,Media_Manager,30092.13,,1,3,8.288361749,2,"Payday Loan, and Auto Loan",0,3,1.58,4,Good,187.8035964,23.45049969,30 Years and 10 Months,No,35.75619336,632.3417577,Low_spent_Large_value_payments,274.3314517,0,0.7251,-0.9149,-0.3631,0.6741,1.393 -0xb9ad,CUS_0x16fd,August,34,953-21-5076,Architect,10227.53,987.2941667,9,6,23.06745738,6,"Payday Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",,22.98740974,2.38,8,_,2050.589948,37.62866288,8 Years and 4 Months,Yes,42.27073229,,Low_spent_Medium_value_payments,235.3924728,0,-0.7741,0.1976,0.1653,-0.9984,0.3213 -0xb9b9,CUS_0x34fa,August,35,#F%$D@*&8,Mechanic,60303.3,4756.275,10,6,25,2,"Personal Loan, and Auto Loan",22.8951607,14.08021718,11.78,6,Standard,2891.719344,36.23377311,13 Years and 8 Months,Yes,63.9508919,154.8386136,High_spent_Medium_value_payments,506.8379945,0,-0.5078,-1.9001,1.1661,-1.1484,-0.8372 -0xb9c5,CUS_0xb69d,August,39,719-93-0101,Architect,68876.12,5499.676667,3,7,16,7,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Payday Loan",,,12.58,8,Standard,1420.340868,29.21447332,20 Years and 3 Months,NM,275.2282431,,Low_spent_Medium_value_payments,77.73744324,0,-1.9867,-0.4353,1.6656,-0.565,-0.2006 -0xb9d1,CUS_0x6fa4,August,20,945-98-1078,Manager,20049.97,,8,5,18.06745738,6,"Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Student Loan, and Debt Consolidation Loan",23.90304834,16.31228373,1.75,7,_,2213.855869,32.78619827,16 Years and 5 Months,Yes,93.3227717,27.6935215,High_spent_Medium_value_payments,248.5465022,0,-1.2259,-0.1459,-1.3809,1.1724,1.4494 -0xb9dd,CUS_0x1032,August,40,620-58-8045,Lawyer,60410.94,5274.245,4,7,17,4,"Student Loan, Home Equity Loan, Not Specified, and Payday Loan",11.37217608,9,10.65,9,Standard,1852.86,31.80839554,16 Years and 3 Months,Yes,149.9263874,481.4927769,!@9#%8,176.0053357,0,-1.1964,-0.3143,-0.0398,0.5357,-1.2533 -0xb9e9,CUS_0x643b,August,30,669-61-1409,Architect,176572.12,,3,1125,9.288361749,0,Payday Loan,5.855003771,9,0.98,2,Good,1284.88,33.88142321,16 Years and 4 Months,No,135.0707336,10419.93746,Low_spent_Small_value_payments,,0,0.4707,-0.5358,2.1594,-0.8256,-0.612 -0xb9f5,CUS_0x3756,August,33,207-29-0604,Teacher,16046.46,,4,4,19,3,"Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",5.235805268,5,17.38,8,Standard,1925.94,27.68915958,8 Years and 9 Months,Yes,36.94910155,41.4408791,High_spent_Medium_value_payments,293.4305193,0,0.3521,0.4061,-0.2337,-0.2335,0.7462 -0xba01,CUS_0xb744,August,50,778-78-5622,Engineer,130169.92,11110.49333,8,6,17,1,Debt Consolidation Loan,16.56915986,12,9.62,2,Standard,354.32,34.62314385,33 Years and 4 Months,Yes,91.75812808,172.0346351,High_spent_Medium_value_payments,1097.25657,0,-0.3939,-0.4314,1.0067,0.3511,1.0025 -0xba0d,CUS_0x7e0e,August,36,694-08-8573,Entrepreneur,113616.93,9715.0775,1,5,6.288361749,0,,,1,0.93,7,_,1034.247477,37.6799165,16 Years and 4 Months,NM,0,,Low_spent_Large_value_payments,472.3432366,0,-1.7517,-2.6651,0.1075,-0.0336,-0.0108 -0xba19,CUS_0x7b94,August,19,449-05-9106,Media_Manager,107427.99,8868.3325,8,3,20,1,Not Specified,,,5.76,,Standard,1124.02,38.17590127,,No,55.65910097,152.5520616,High_spent_Large_value_payments,918.6220874,0,0.3507,-0.4193,-0.2102,-0.3524,0.1073 -0xba25,CUS_0xa905,August,45,964-12-7807,Scientist,55473.18,4873.765,6,5,29,5,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Payday Loan, and Personal Loan",,28.25938146,28.72,11,Bad,3115.542198,39.88865693,5 Years and 6 Months,Yes,155.7531447,116.6939527,High_spent_Medium_value_payments,464.9294026,0,-0.9243,-0.3052,0.8792,-0.375,-0.952 -0xba31,CUS_0x4fb5,August,46,143-26-2300,Writer,15371.47,909.4252075,9,10,28.06745738,4,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Student Loan",21.11599707,11.63996888,12.6,13,Standard,1996.167999,39.2309516,6 Years and 0 Months,Yes,120.744677,,Low_spent_Small_value_payments,255.1901187,0,-0.8431,0.974,-1.1719,-0.5399,-0.4476 -0xba3d,CUS_0x2ad2,August,33,193-63-6325,Journalist,34947.63,3022.3025,3,7,20,4,"Not Specified, Home Equity Loan, Personal Loan, and Auto Loan",5.940332111,8,2.49,3,Standard,936.29,21.94516736,16 Years and 10 Months,No,77.86290674,10000,!@9#%8,278.5516154,0,0.164,-0.0827,0.6157,-1.3594,1.0598 -0xba49,CUS_0xbee4,August,39,832-11-8325,Writer,19769.99,,6,5,23,5,"Not Specified, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",18.47739461,14.07975976,19.38,15,Standard,1886.848068,28.68806198,7 Years and 9 Months,Yes,81.97653726,10000,Low_spent_Medium_value_payments,257.1914396,0,-0.2554,0.3392,-0.5611,0.0836,-0.2979 -0xba55,CUS_0xa977,August,22,863-63-0669,Teacher,15812.43,,10,8,16,5,"Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",27.66617991,20,25.17,7,Bad,3297.76,25.6544384,10 Years and 10 Months,Yes,98.7221197,92.34422787,Low_spent_Small_value_payments,269.4203426,0,-0.2388,1.9116,0.9198,0.6761,0.8573 -0xba61,CUS_0x660c,August,20,256-36-1361,Engineer,61936,5018.333333,10,8,29.06745738,8,"Personal Loan, Student Loan, Mortgage Loan, Student Loan, Not Specified, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",27.35330493,,17.03,13,Bad,3816.740954,25.33944767,9 Years and 4 Months,Yes,280.3936682,,High_spent_Small_value_payments,179.3061239,0,0.4653,0.5986,-0.7749,1.2886,0.4352 -0xba6d,CUS_0xc617,August,21,135-33-6057,_______,73798.76,6422.896667,6,4,8.288361749,4,"Personal Loan, Student Loan, Credit-Builder Loan, and Student Loan",12.86168998,13,18.32,3,Standard,757.01,39.74781824,28 Years and 5 Months,Yes,194.0499142,497.994231,High_spent_Large_value_payments,610.1829825,0,0.5197,-0.5576,-0.3067,-0.4491,0.0174 -0xba79,CUS_0x5c94,August,28,319-65-7987,_______,20734.16,1984.846667,7,5,20.06745738,1,Personal Loan,,15.40915493,10.51,5,Standard,1702.331625,40.94668827,23 Years and 6 Months,Yes,12.65310947,104.8842445,Low_spent_Medium_value_payments,334.2270247,0,-0.5548,0.428,-1.0801,0.3904,0.3257 -0xba85,CUS_0xbb7e,August,80,567-05-3763,Doctor,14515.84,,6,5,5,3,"Not Specified, Debt Consolidation Loan, and Mortgage Loan",22.56577275,17,14.36,5,_,1470.11,39.70018165,8 Years and 8 Months,Yes,34.8678013,145.5203838,Low_spent_Small_value_payments,221.9771483,0,-0.4167,2.0972,0.8816,0.081,-1.7038 -0xba91,CUS_0x7ae9,August,31,786-60-9786,Scientist,20611.96,,7,3,23,3,"Auto Loan, Not Specified, and Mortgage Loan",,9,11.23,11,Standard,1948.98,38.12698813,11 Years and 10 Months,Yes,50.21472817,167.45545,Low_spent_Small_value_payments,216.7961551,0,1.4732,-0.7627,-0.1984,-0.9338,-1.4004 -0xba9d,CUS_0x3d8e,August,20,382-00-6048,Writer,73026.92,,2,3,5.288361749,2,"Auto Loan, Debt Consolidation Loan, and Personal Loan",12.89375754,13,4.43,4,Good,98.77,24.9942129,21 Years and 8 Months,No,158.9594673,843.743602,Low_spent_Medium_value_payments,320.5920583,0,-0.0012,-0.2602,0.0458,0.1371,-0.8466 -0xbaa9,CUS_0x6b6a,August,28,800-83-7927,_______,29249.41,,8,4,12,3,"Debt Consolidation Loan, Not Specified, and Not Specified",17.4372272,11,11.76,7,Standard,439.34,22.22572889,11 Years and 11 Months,Yes,66.78069533,,!@9#%8,240.354507,0,-1.8061,0.6151,-0.2145,-1.9212,0.8265 -0xbab5,CUS_0x7910,August,35,995-60-4305,Developer,118645.8,,2,5,4.288361749,2,"Debt Consolidation Loan, Auto Loan, and Mortgage Loan",,10,5.56,4,Good,1480.89,34.62674298,29 Years and 3 Months,No,861.9171986,622.5425272,High_spent_Large_value_payments,840.5423591,0,-1.3359,0.2277,-0.0141,0.7543,-0.0065 -0xbac1,CUS_0x43c3,August,42,984-54-0054,Mechanic,14424.97,,7,3,11,4,"Debt Consolidation Loan, Student Loan, Personal Loan, and Auto Loan",,15.74238763,18.59,9,Standard,902.6263811,29.86248142,16 Years and 0 Months,NM,43.79255347,105.2668101,Low_spent_Small_value_payments,289.1487198,0,-1.2905,-0.2904,-0.7553,-1.1109,-0.3462 -0xbacd,CUS_0x5d7c,August,53,277-42-4936,Teacher,37921.22,2987.101667,0,7,4,3,"Debt Consolidation Loan, Payday Loan, and Personal Loan",0.30543355,4,6.92,5,Good,1077.93,24.1474428,,NM,56.65847858,217.2333077,Low_spent_Large_value_payments,294.8183804,0,-0.034,0.4737,0.1283,0.1658,-1.1189 -0xbad9,CUS_0x4905,August,25,279-96-5726,Doctor,34238.4,2586.2,7,3,8,1,Credit-Builder Loan,19.99326634,,17.02,6,Standard,322.94,36.03917028,,Yes,23.27391442,54.45233766,High_spent_Large_value_payments,420.8937479,0,-0.5801,-0.055,-1.6282,-0.2017,-0.7196 -0xbae5,CUS_0xa8ab,August,43,284-07-3579,Engineer,9956.91,575.7425,10,7,27.06745738,5,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",,19.39693362,21.3,12,Bad,5167.133146,36.41696213,0 Years and 10 Months,NM,27.10831559,57.55891009,Low_spent_Small_value_payments,236.1867364,0,1.8366,0.3046,-2.1966,-0.1004,-1.0719 -0xbaf1,CUS_0x5b0f,August,35,054-05-1824,Teacher,75908.66,6220.721667,4,4,11.28836175,4,"Student Loan, Student Loan, Debt Consolidation Loan, and Not Specified",7.064390522,9,8.49,3,Good,52.67175971,31.87685549,33 Years and 0 Months,No,186.2573969,699.3231495,Low_spent_Medium_value_payments,464.2518824,0,1.7774,-1.6424,0.6724,1.5774,0.1328 -0xbafd,CUS_0x7bf,August,32,330-17-2088,Engineer,17464.64,1720.386667,6,5,5,7,"Payday Loan, Student Loan, Mortgage Loan, Home Equity Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",,,16.89,9,Standard,257.0994681,37.54490532,18 Years and 10 Months,Yes,72.58155411,23.69853001,High_spent_Medium_value_payments,328.5484413,0,0.8619,-1.1868,1.8091,0.7633,0.5228 -0xbb09,CUS_0x9e3c,August,18,968-16-4399,Doctor,33579.27,,6,5,20,3,"Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",19.24021879,14,13.51,7,Standard,517.8,23.88385219,21 Years and 4 Months,Yes,70.92850704,105.5876486,High_spent_Medium_value_payments,325.8110944,0,-0.542,0.1502,1.8084,-0.1095,-0.6972 -0xbb15,CUS_0x4e38,August,20,209-58-8295,Scientist,121471.44,9960.62,1070,3,3,2,"Payday Loan, and Mortgage Loan",1.815491248,3,1.37,2,Good,736.68,43.58606843,26 Years and 8 Months,No,161.1631987,,High_spent_Medium_value_payments,865.6944244,0,-1.7214,0.8181,0.1492,-0.0051,1.4559 -0xbb21,CUS_0xbcdf,August,49,939-13-4346,Developer,68721.08,5560.756667,5,7,4,1,Home Equity Loan,11.94893912,12,8.55,7,Good,130.89,33.79426995,23 Years and 4 Months,No,47.83572622,181.6517022,High_spent_Small_value_payments,586.5882383,0,-1.6093,0.3506,0.462,2.481,-0.2046 -0xbb2d,CUS_0x71d2,August,53,585-04-2598,Doctor,20830.8,,8,3,19,1,Home Equity Loan,19.21871863,16,11.67,2,Standard,449.39,36.71745073,30 Years and 10 Months,Yes,12.3899666,41.37691543,!@9#%8,373.023118,0,1.507,0.2123,1.0147,0.5831,0.6043 -0xbb39,CUS_0x53cb,August,33,054-73-6887,Teacher,16072.1,1585.341667,8,4,16.06745738,7,"Not Specified, Personal Loan, Student Loan, Mortgage Loan, Student Loan, Payday Loan, and Home Equity Loan",8.395641545,5,13.21,10,Standard,1687.050954,24.6286729,14 Years and 4 Months,Yes,54.74915666,195.6492824,Low_spent_Small_value_payments,171.4154397,0,-1.5076,0.954,2.3004,0.2564,1.1952 -0xbb45,CUS_0x4a7,August,80,865-33-5347,Architect,45342.24,,6,8,32,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",,29.418862,8.74,9,Bad,2237.165569,34.0492861,17 Years and 11 Months,Yes,61.78736078,72.05702271,High_spent_Medium_value_payments,517.5076165,0,-0.0192,-1.108,0.3542,-1.971,-0.514 -0xbb51,CUS_0xc1b8,August,28,539-37-7476,Entrepreneur,59377.14,5040.095,8,3,15,7,"Mortgage Loan, Auto Loan, Mortgage Loan, Not Specified, Home Equity Loan, Mortgage Loan, and Mortgage Loan",,14.67686116,15.84,15,Standard,1458.795191,29.17162187,13 Years and 2 Months,Yes,214.1651086,10000,High_spent_Small_value_payments,393.3460964,0,0.5243,-1.2844,-0.3454,-1.8774,-0.573 -0xbb5d,CUS_0xb339,August,38,307-29-9070,Media_Manager,10363.95,786.6625,10,8,26.06745738,2,"Student Loan, and Mortgage Loan",33.22584447,16.84107542,12.24,12,Standard,2645.742054,34.90497268,10 Years and 2 Months,Yes,11.45128167,,!@9#%8,224.5759373,0,1.4885,0.8292,0.2223,-0.9307,-2.0008 -0xbb69,CUS_0x7542,August,33,103-81-5015,Doctor,26347.02,,4,7,17,2,"Personal Loan, and Home Equity Loan",,9,1.18,,Standard,409.12,39.58238183,19 Years and 2 Months,No,40.1496265,33.73819181,High_spent_Large_value_payments,372.1706817,0,-0.2568,0.1437,1.388,1.1046,0.1039 -0xbb75,CUS_0x3f7d,August,35,739-02-3276,_______,16676.72,1629.726667,9,6,22,8,"Student Loan, Personal Loan, Personal Loan, Payday Loan, Payday Loan, Home Equity Loan, Payday Loan, and Payday Loan",,19,,15,Bad,2255.57,39.3625191,19 Years and 10 Months,Yes,110.535576,81.98621436,High_spent_Small_value_payments,230.4508763,0,-0.2373,-1.8107,0.5146,1.7737,-1.3553 -0xbb81,CUS_0x35e4,August,38,643-80-3274,Entrepreneur,14453.63,1250.469167,9,6,23,4,"Payday Loan, Personal Loan, Mortgage Loan, and Student Loan",,23.53086023,2.67,12,Bad,1483.413488,37.29120917,13 Years and 9 Months,Yes,36.85546967,113.9080074,Low_spent_Small_value_payments,264.2834396,0,-0.1571,0.9594,-1.2997,-0.6892,-0.7043 -0xbb8d,CUS_0x6397,August,28,206-27-6666,Journalist,50885.37,,10,10,31,7,"Payday Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",43.03088086,29.0920766,5.75,12,Bad,2132.282908,26.73371101,11 Years and 0 Months,Yes,273.9898393,350.2221701,Low_spent_Large_value_payments,91.03274065,0,0.7069,0.1544,0.318,-0.6984,-0.9185 -0xbb99,CUS_0xaad,August,18,775-21-5508,Developer,38644.16,,6,8,29.06745738,5,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Auto Loan",30.44105748,20.49154881,26.19,13,Bad,3152.411134,31.79065887,9 Years and 4 Months,Yes,88.10659877,,Low_spent_Small_value_payments,81.40080001,0,0.3168,-0.2639,-0.0919,1.4743,-0.8892 -0xbba5,CUS_0x2358,August,40,914-64-8225,Musician,35760.12,2904.01,8,8,33.88954781,6,"Personal Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Student Loan",21.07785455,16,-0.39,12,Bad,1656.52,38.54629057,12 Years and 5 Months,NM,1423.335804,70.27836624,High_spent_Medium_value_payments,352.4567487,0,-2.065,0.0983,-1.6799,-0.7831,0.7783 -0xbbb1,CUS_0xa833,August,52,529-70-9876,Manager,17357.205,1588.43375,1,4,1,4,"Home Equity Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",6.052457001,9,2.07,2,Good,1076.46,34.41875233,30 Years and 3 Months,No,40.97949325,103.3183651,Low_spent_Medium_value_payments,294.5455166,0,-1.2924,0.7809,-0.5525,-2.1646,-0.0384 -0xbbbd,CUS_0x873b,August,32,261-27-4967,Doctor,99854.67,8263.2225,4,6,15.28836175,4,"Mortgage Loan, Auto Loan, Payday Loan, and Not Specified",16.45209731,16,1.13,2,Standard,871.36,25.46886282,19 Years and 11 Months,NM,255.8694112,1173.915558,Low_spent_Medium_value_payments,96.47474232,0,-0.9188,1.0102,0.1047,0.3517,0.3369 -0xbbc9,CUS_0xaa56,August,41,754-89-1562,Manager,57258.28,4694.523333,4,6,25,7,"Payday Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,16.11274613,15.71,10,Standard,2597.401482,39.19713137,10 Years and 10 Months,Yes,320.2972698,107.2253871,High_spent_Medium_value_payments,291.9296765,0,-1.0145,-0.36,0.3688,-0.1846,0.0394 -0xbbd5,CUS_0x5e3d,August,38,839-54-5661,Musician,26508.58,2500.048333,5,7,12,3,"Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",25.42679496,20,10.54,4,Good,1356.64,38.66065164,27 Years and 0 Months,NM,35.37256937,10000,!@9#%8,263.2188514,0,-0.0422,0.0519,-0.4716,1.3473,-0.9202 -0xbbe1,CUS_0xa193,August,33,469-56-9848,Lawyer,110912.79,9392.7325,4,7,9.288361749,0,Auto Loan,0,3,8.75,3,Good,31.72461216,25.396222,,No,80.20521512,971.2778329,Low_spent_Small_value_payments,666.9463391,0,-0.6543,-0.7477,-1.1149,-0.8801,0.9025 -0xbbed,CUS_0x5f6e,August,24,074-69-5563,Lawyer,10358.88,921.9691512,7,7,19.06745738,6,"Payday Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",34.85367373,20,5.03,13,_,2724.490954,32.90492741,11 Years and 6 Months,Yes,126.1435246,72.05054309,Low_spent_Large_value_payments,239.8804932,0,-0.2368,-0.7374,-0.4538,-0.1514,0.9292 -0xbbf9,CUS_0xa664,August,56,792-91-5385,Architect,35940.94,2718.078333,5,3,11,1,Student Loan,,8,10.86,0,Good,215.0239499,29.4416614,30 Years and 6 Months,No,17.84299552,,High_spent_Medium_value_payments,423.9316502,0,0.6572,0.1531,0.0864,0.2099,-1.576 -0xbc05,CUS_0x7473,August,39,681-19-5707,Lawyer,95329.23,7863.1025,4,1,8,1,Personal Loan,0.541554431,2,5.74,0,Good,759.528274,37.527294,30 Years and 3 Months,No,78.19902291,140.0786398,High_spent_Large_value_payments,825.037587,0,1.563,0.5184,0.8098,1.3634,-1.9653 -0xbc11,CUS_0x97da,August,43,087-23-2406,Media_Manager,17399.84,,8,10,27.88954781,6,"Personal Loan, Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, and Mortgage Loan",18.53312647,13.69675724,18.03,14,Standard,2191.866078,23.66104479,15 Years and 10 Months,Yes,1367.867337,94.32105886,Low_spent_Medium_value_payments,268.3801891,0,-0.1461,1.3967,0.5294,0.6458,-0.7237 -0xbc1d,CUS_0x31e3,August,54,202-11-6489,_______,90398.96,7022.25396,7,6,11,0,,19.42291686,,8.73,1,_,535.5493924,42.43177776,23 Years and 0 Months,No,612.9927069,109.1526412,High_spent_Large_value_payments,910.7389455,0,1.6168,0.6367,1.7595,0.5344,-0.7408 -0xbc29,CUS_0x4904,August,34,662-96-6567,Media_Manager,67327.32,5551.61,5,3,7,3,"Student Loan, Personal Loan, and Payday Loan",15.3141915,9.683412243,18.25,7,Standard,537.0579809,39.05349876,18 Years and 2 Months,Yes,125.0155077,10000,Low_spent_Medium_value_payments,417.3422856,0,0.6593,-0.6937,0.6204,-0.3578,-0.5685 -0xbc35,CUS_0xb1dd,August,56,061-81-4991,Doctor,12151.75,1187.645833,5,3,10,1,Personal Loan,17.13706343,,-5.21,2,_,1011.03,23.07618547,23 Years and 5 Months,No,7.249926182,,Low_spent_Small_value_payments,276.7267986,0,-1.5613,0.9165,0.4623,-0.0592,-0.3303 -0xbc41,CUS_0x9466,August,50,168-77-9086,Doctor,61269.16,5295.763333,6,4,9,2,"Not Specified, and Home Equity Loan",24.67487059,19.26252999,4.45,5,Good,421.4652922,38.8700241,19 Years and 9 Months,No,55.59378877,676.1072665,Low_spent_Small_value_payments,87.87527802,0,-0.7138,-0.4778,0.0253,-1.1785,1.9708 -0xbc4d,CUS_0xa7b6,August,36,714-91-2569,Writer,67845.56,5177.606477,3,5,20,4,"Auto Loan, Payday Loan, Mortgage Loan, and Auto Loan",23.75281597,17,19.63,11,Standard,1478.49,26.68052093,19 Years and 0 Months,Yes,767.6307489,741.7565496,!@9#%8,0.382557979,0,0.5932,0.0116,-0.3727,-0.7739,-1.1525 -0xbc59,CUS_0x8ba3,August,33,861-70-9309,Architect,105080.76,8488.73,5,5,7,1,Payday Loan,16.44793611,13.01963114,12.62,2,Standard,409.4049559,43.59631921,,Yes,41407,10000,High_spent_Medium_value_payments,928.8964297,0,-0.9736,0.6211,-0.5232,-0.0023,-1.4894 -0xbc65,CUS_0x3e6d,August,46,747-47-1632,Journalist,111204.78,9270.065,0,2,1.288361749,4,"Not Specified, Payday Loan, Auto Loan, and Payday Loan",0,1,9.51,1,_,1103.999562,23.98721316,32 Years and 6 Months,No,22409,795.6551377,High_spent_Small_value_payments,511.9461281,0,-0.9141,1.1873,-0.014,1.4931,1.3723 -0xbc71,CUS_0x6f84,August,28,200-85-7540,Doctor,60238.56,4907.88,10,8,17.88954781,7,"Home Equity Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",33.65128485,18,5.97,10,Bad,1825.6,23.22459979,10 Years and 5 Months,Yes,1625.889945,246.4393211,Low_spent_Large_value_payments,194.1286529,0,-0.2945,-0.5277,-0.7415,-0.9326,0.7207 -0xbc7d,CUS_0x5632,August,20,664-67-8147,Accountant,42512.31,3361.6925,7,5,14,7,"Student Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Personal Loan, Not Specified, and Credit-Builder Loan",8.410929559,10,19.51,4,Standard,1810.72,33.36364835,,Yes,169.9457403,224.4859296,Low_spent_Small_value_payments,231.7375801,0,0.551,0.679,-0.5305,-1.0906,-1.3413 -0xbc89,CUS_0xc530,August,31,367-64-2250,Teacher,31751.78,2712.981667,7,3,11,1070,,,1884,0.61,4,Standard,581.67,25.78943412,25 Years and 6 Months,NM,0,124.4645203,High_spent_Small_value_payments,406.8336464,0,-1.5111,0.204,-0.7222,-1.3958,2.1698 -0xbc95,CUS_0x272a,August,25,444-95-6664,Teacher,29633.99,2370.499167,7,4,15,2,"Not Specified, and Mortgage Loan",24.66224602,18,9.95,9,Standard,113.42,32.85418038,6 Years and 5 Months,Yes,32.22601307,,High_spent_Small_value_payments,343.8469882,0,-0.4446,1.6558,1.4811,1.5587,0.8789 -0xbca1,CUS_0x8d9a,August,19,643-01-6771,Doctor,23489.78,,7,5,12,4,"Mortgage Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",14.8663166,13,6.54,0,Standard,467.5455485,37.77373981,25 Years and 4 Months,NM,49.04865314,155.11615,Low_spent_Small_value_payments,328.4816335,0,-0.8966,0.1818,0.1059,-1.1527,1.6527 -0xbcad,CUS_0x481d,August,37,021-95-8924,Musician,15328.665,,5,7,1,0,,11.45445029,12,6.1,3,Good,1279.471748,32.65793537,23 Years and 4 Months,No,0,102.934877,Low_spent_Large_value_payments,276.356044,0,-0.2622,-1.9209,-0.2812,-1.0939,-1.7425 -0xbcb9,CUS_0xbf8,August,18,959-11-1329,Media_Manager,7946.09,883.1741667,7,10,17,5,"Personal Loan, Mortgage Loan, Not Specified, Payday Loan, and Auto Loan",43.34586845,24,7.36,12,Bad,1572.64,27.16288116,15 Years and 11 Months,Yes,3316,43.29637392,Low_spent_Medium_value_payments,295.0010997,0,0.055,0.3851,0.9606,0.6807,-0.6732 -0xbcc5,CUS_0x2d93,August,34,713-04-5687,Architect,9613.62,564.135,8,10,29.06745738,2,"Credit-Builder Loan, and Debt Consolidation Loan",,11.80207523,9.65,10,_,2463.706957,38.77563171,14 Years and 5 Months,Yes,15.9482031,,Low_spent_Large_value_payments,255.6702782,0,0.0738,0.9952,-1.9102,0.7314,0.144 -0xbcd1,CUS_0x3b9e,August,41,887-13-6197,Journalist,23900.41,,3,5,20,4,"Auto Loan, Home Equity Loan, Not Specified, and Personal Loan",7.599077042,9,11.54,5,Standard,234.73,30.53778843,20 Years and 0 Months,Yes,68.03837552,20.40646448,High_spent_Large_value_payments,328.3252433,0,2.2495,0.6688,-1.1636,1.0716,-0.9528 -0xbcdd,CUS_0x64c8,August,24,451-53-6179,Manager,52032.16,,3,3,5,1,Personal Loan,,13,11.32,6,Standard,1255.37,34.57981615,31 Years and 5 Months,No,33.30013996,66.36458062,High_spent_Large_value_payments,551.9366127,0,1.4397,0.5959,1.0088,-0.8064,-0.6491 -0xbce9,CUS_0xc2fd,August,21,897-92-2253,Lawyer,11798.555,,6,5,15,5,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",18.92885198,15,17.76,11,Standard,679.1187706,40.11107362,6 Years and 11 Months,Yes,30.40323344,107.066197,Low_spent_Small_value_payments,266.8485152,0,0.2113,-0.2332,-1.1418,-0.6667,0.0049 -0xbcf5,CUS_0xaef8,August,26,570-73-5343,Scientist,95844.33,,1,3,4,4,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",,0,6.27,7,Good,536.6416328,40.47613927,18 Years and 0 Months,No,264.7650239,,High_spent_Medium_value_payments,486.1814453,0,0.4101,0.4024,0.972,-1.6994,-0.629 -0xbd01,CUS_0x367d,August,38,#F%$D@*&8,Entrepreneur,114467.67,,1,3,4,3,"Payday Loan, Auto Loan, and Personal Loan",12.67002546,13.24987943,0.76,4,_,966.5613728,33.20146974,19 Years and 3 Months,No,200.9517717,229.111539,High_spent_Large_value_payments,790.3339392,0,1.5536,-0.9962,-1.0731,-0.2788,-0.5044 -0xbd0d,CUS_0x316a,August,27,425-42-7056,Musician,14925.68,,8,10,22.95700519,7,"Personal Loan, Student Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",16.41623113,8,15.75,13,Standard,2671.010954,32.25642751,20 Years and 6 Months,Yes,1374.546217,180.0261718,Low_spent_Small_value_payments,162.457909,0,1.5876,-1.8161,0.353,-0.2376,-0.6033 -0xbd19,CUS_0x3bac,August,21,601-70-2993,_______,120479.64,9968.97,2,7,8,2,"Not Specified, and Payday Loan",0,2,6.98,8,Good,522.2449147,38.85880282,17 Years and 11 Months,No,129.1780028,,!@9#%8,179.6728766,0,-0.5741,1.4725,2.3594,-0.995,-0.8745 -0xbd25,CUS_0x4602,August,25,480-01-0903,Entrepreneur,60189.06,5138.755,10,8,31.06745738,5,"Not Specified, Personal Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",36.75113424,18.26389374,27.13,16,Bad,4725.872881,26.47350962,12 Years and 10 Months,Yes,221.0248385,190.0670511,!@9#%8,336.0633224,0,0.7545,0.9601,0.8835,0.4853,0.7986 -0xbd31,CUS_0x17ec,August,43,853-62-7450,Architect,30813.68,2109.205491,3,3,8,4,"Auto Loan, Student Loan, Student Loan, and Home Equity Loan",,10,6.93,2,_,1196.652895,35.38005532,18 Years and 10 Months,No,236.6567313,231.9988668,Low_spent_Large_value_payments,243.9998877,0,1.4147,0.4053,-1.6275,-0.5357,-1.0162 -0xbd3d,CUS_0xa10f,August,35,670-86-3211,Writer,20057.57,,10,6,24.06745738,9,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Student Loan, and Not Specified",31.72002081,,-2.25,10,_,3920.334545,36.68212795,9 Years and 11 Months,NM,133.6574299,,Low_spent_Small_value_payments,83.90191103,0,0.1362,-0.1504,2.0094,0.6403,-1.1966 -0xbd49,CUS_0x7bee,August,29,601-19-6338,Teacher,23631.2,,4,4,18,3,"Mortgage Loan, Not Specified, and Auto Loan",18.59027218,,11.7,1,_,903.96,36.89704394,27 Years and 3 Months,Yes,34.30784055,154.887065,Low_spent_Medium_value_payments,280.0317611,0,0.8885,-0.3935,-0.1863,2.0103,-2.1402 -0xbd55,CUS_0x301b,August,23,171-02-3830,_______,70383,,9,5,27.06745738,7,"Not Specified, Student Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",,23,26.82,17,Bad,4663.750954,39.06153005,,Yes,254.7977968,173.4580219,!@9#%8,416.9488933,0,0.4022,1.2075,-0.2218,-0.6153,0.165 -0xbd61,CUS_0xb3f2,August,38,198-29-0316,Writer,16099.62,,3,6,14,0,,10.61125654,9,9.14,7,Standard,1042.78,24.41930331,8 Years and 10 Months,Yes,0,51.26326363,Low_spent_Large_value_payments,329.9002364,0,-0.7426,1.1157,-0.5643,-0.924,1.7739 -0xbd6d,CUS_0xbe62,August,43,281-78-9721,Teacher,45070.56,,10,8,16.95700519,7,"Mortgage Loan, Not Specified, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Personal Loan",27.34784892,16.86136644,17.78,11,Bad,4943.394448,31.77333423,13 Years and 0 Months,Yes,1489.780149,161.9862492,High_spent_Small_value_payments,250.9712329,0,-0.1003,-0.2439,-0.4392,0.2984,0.8393 -0xbd79,CUS_0x83e,August,18,#F%$D@*&8,Teacher,16295.73,,10,10,28.06745738,4,"Not Specified, Debt Consolidation Loan, Not Specified, and Mortgage Loan",,12,19.55,10,Standard,2440.030954,28.28594862,6 Years and 0 Months,Yes,41.27243975,,Low_spent_Small_value_payments,178.9632564,0,0.3691,-0.3818,0.4602,0.3917,-1.1414 -0xbd85,CUS_0x5bd2,August,31,647-63-9696,Architect,70922.08,5794.122643,10,9,27.88954781,8,"Home Equity Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Not Specified",22.50606138,16,8.81,10,Bad,1801.3,24.18472035,11 Years and 4 Months,Yes,2133.869599,,High_spent_Medium_value_payments,195.2742292,0,-0.7017,0.7583,-1.0208,-0.2619,-0.6614 -0xbd91,CUS_0x644e,August,43,#F%$D@*&8,Writer,68213.38,,7,5,10,3,"Auto Loan, Credit-Builder Loan, and Home Equity Loan",19.31299378,,7.82,5,Standard,769.47,31.81374336,28 Years and 11 Months,No,141.4805053,531.8675635,Low_spent_Small_value_payments,212.3967645,0,1.1436,-0.4547,0.2864,-0.8862,-0.7174 -0xbd9d,CUS_0x918d,August,32,214-34-0125,Developer,17025.51,,0,3,3.288361749,2,"Credit-Builder Loan, and Debt Consolidation Loan",7.327135448,9,1.02,,_,42.85,26.65513183,17 Years and 10 Months,No,25279,529.4704779,Low_spent_Small_value_payments,274.1613174,0,0.8313,0.7526,-0.5594,0.3723,-0.7266 -0xbda9,CUS_0x28a4,August,29,012-37-7206,Writer,104075.52,8745.96,3,5,7,1,Student Loan,18.76490247,16,8.45,9,Standard,1371.49,36.82036095,20 Years and 6 Months,Yes,73.11669738,587.2816388,High_spent_Small_value_payments,474.1976639,0,-0.8871,2.2387,-0.6974,0.1885,-0.026 -0xbdb5,CUS_0x40a3,August,43,088-74-4900,Lawyer,60224.34,,1,8,5,0,,,,3.83,4,Good,1372.622856,30.11428478,23 Years and 3 Months,No,0,107.9192242,High_spent_Large_value_payments,634.9502758,0,-1.5124,0.4672,0.1741,2.1606,0.8508 -0xbdc1,CUS_0x3e54,August,47,923-35-3568,Accountant,78039.48,,5,7,4,4,"Student Loan, Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",19.37271952,15,-2.41,5,Good,1056.229401,23.4811925,29 Years and 0 Months,No,236.239616,,Low_spent_Small_value_payments,326.4007261,0,2.566,0.0336,-0.1533,-0.5055,-1.619 -0xbdcd,CUS_0x8245,August,48,302-98-4223,Journalist,109652.7,9317.725,2,4,328,2,"Auto Loan, and Mortgage Loan",,6,-1.21,1,Good,1056.45,30.02375505,32 Years and 10 Months,No,97.6275312,167.3978828,High_spent_Large_value_payments,906.747086,0,-0.1803,-0.1046,-0.7739,0.8358,1.6175 -0xbdd9,CUS_0x939a,August,80,517-26-6799,Lawyer,16499.63,,179,6,29,2,"Auto Loan, and Payday Loan",,29.25129445,9.27,10,Bad,2496.216087,29.36037666,6 Years and 10 Months,Yes,16.83970627,69.9441313,Low_spent_Small_value_payments,334.9130791,0,0.0446,-0.6221,-1.0544,-0.0939,0.3104 -0xbde5,CUS_0x1699,August,29,916-34-3895,Lawyer,59962.52,4976.876667,3,7,28,5,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Not Specified",21.80810975,14.25248154,,11,Standard,2909.971844,34.17064055,17 Years and 3 Months,Yes,140.2628376,120.5693002,!@9#%8,506.8555288,0,0.0482,-0.5763,-0.4163,0.8457,0.9034 -0xbdf1,CUS_0x843d,August,41,134-80-6824,Teacher,56911.28,4474.606667,10,9,35.95700519,7,"Not Specified, Payday Loan, Mortgage Loan, Mortgage Loan, Student Loan, Student Loan, and Credit-Builder Loan",24.56662707,16,29.98,13,Bad,5016.170954,37.37753668,1 Years and 9 Months,Yes,1609.441289,268.8426527,Low_spent_Medium_value_payments,128.1263555,0,0.2344,0.0357,-1.2075,0.8139,0.2173 -0xbdfd,CUS_0x7d48,August,18,652-47-0781,Media_Manager,61115.16,,6,5,30,7,"Student Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Payday Loan",30.67688709,,2.39,10,_,1990.909474,38.15945733,11 Years and 8 Months,Yes,233.0886466,572.9101556,Low_spent_Small_value_payments,,0,1.5018,-0.9473,0.1986,-1.1872,-1.6423 -0xbe09,CUS_0xa96d,August,36,819-31-7344,Mechanic,21892.96,1539.413333,0,3,8,1,Auto Loan,15.01824613,11.77462766,7.09,1,Good,701.6011418,39.27941486,30 Years and 3 Months,No,16.22560788,98.28538354,Low_spent_Small_value_payments,329.4303419,0,0.9886,0.0477,0.1475,-0.6404,-2.1907 -0xbe15,CUS_0xaef3,August,43,635-56-4059,Developer,163978.4,13830.86667,2,2,6.288361749,0,Student Loan,,1,-4.06,6,Good,690.4758065,39.81746467,18 Years and 6 Months,No,121.3960257,1178.616228,High_spent_Small_value_payments,850.2035652,0,2.4088,1.2381,0.8712,1.2123,-1.8397 -0xbe21,CUS_0x98c3,August,30,008-79-8963,_______,37313.32,3045.443333,8,8,33.95700519,6,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",31.83813783,21.25048313,9.51,11,Bad,5624.617986,29.45916611,10 Years and 9 Months,NM,1494.135342,270.4317893,Low_spent_Small_value_payments,108.926833,0,0.3943,0.8582,1.4637,0.7343,-0.0574 -0xbe2d,CUS_0x7fa8,August,29,541-30-9168,Journalist,42109.41,3299.1175,7,5,34,7,"Debt Consolidation Loan, Student Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Student Loan",38.60704355,25.60758665,4.26,11,Bad,3017.928871,34.0591879,3 Years and 9 Months,Yes,128.2122618,71.23504914,High_spent_Large_value_payments,370.4644391,0,0.2213,-1.3763,0.042,0.0314,1.7223 -0xbe39,CUS_0x43f8,August,33,847-59-9614,Doctor,14917.845,,1,7,6,2,"Not Specified, and Payday Loan",,3,-4.32,9,_,609.71,24.91179631,17 Years and 10 Months,No,17.70781612,55.60117247,Low_spent_Small_value_payments,368.9063864,0,-0.7993,-0.5805,1.3524,-0.1078,-1.2753 -0xbe45,CUS_0xc24a,August,31,504-49-1795,_______,35520.48,,3,5,4,100,,6.921839623,9,8.63,6,Good,877.031649,27.71277725,33 Years and 0 Months,NM,0,194.1028352,!@9#%8,383.1655185,0,-0.2221,-0.0758,-1.1206,-0.9002,1.9222 -0xbe51,CUS_0x6359,August,19,250-09-4400,Media_Manager,34746.02,,4,4,17,1,Debt Consolidation Loan,32.62091166,23,3.36,3,Standard,1258.88,36.14239985,18 Years and 9 Months,No,18.86077319,10000,Low_spent_Large_value_payments,420.0003211,0,-0.7279,0.3393,-1.8001,0.4888,0.25 -0xbe5d,CUS_0xad69,August,41,634-66-6400,Accountant,71187.56,5911.296667,4,6,6,4,"Home Equity Loan, Payday Loan, Personal Loan, and Auto Loan",23.76869976,16,3.36,7,Standard,96.68,31.47022446,,No,225.9554164,241.3345076,High_spent_Medium_value_payments,373.8397426,0,0.4638,0.2607,-0.5419,0.7406,0.4147 -0xbe69,CUS_0xa8ec,August,42,752-84-4249,Mechanic,126217.6,9015.652514,8,7,14,1,Mortgage Loan,6.046367365,7,5.34,5,Standard,917.364181,33.64873058,18 Years and 5 Months,No,1486.325808,141.286055,High_spent_Medium_value_payments,1097.793463,0,0.6657,1.2034,-0.3386,-0.189,0.5561 -0xbe75,CUS_0xa2a7,August,18,933-76-2305,Architect,17715.66,1486.305,6,5,23,6,"Not Specified, Home Equity Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",30.86805056,,15.48,14,Bad,5226.513361,39.42858857,8 Years and 6 Months,NM,21833,80.71123,Low_spent_Small_value_payments,305.2093379,0,0.6321,-1.2726,-0.9286,-1.8219,0.6417 -0xbe81,CUS_0x1f43,August,45,428-62-5470,Lawyer,21075.82,,8,3,10,1,Personal Loan,22.47036923,19,8.87,2,_,749.5,25.27137235,16 Years and 4 Months,Yes,14.22944411,36.3437405,High_spent_Medium_value_payments,369.5586487,0,-0.1577,-0.957,-1.451,0.079,-0.1544 -0xbe8d,CUS_0x617b,August,33,841-56-3771,Media_Manager,14049.075,1213.75625,4,7,4,1,Student Loan,0,1,6.69,5,Good,1409.86,37.81729924,18 Years and 3 Months,No,10.8487871,27.85439952,High_spent_Small_value_payments,342.6724384,0,1.4292,0.1179,1.1299,-0.3172,-0.038 -0xbe99,CUS_0x6d37,August,42,452-65-2361,Engineer,7103.73,,8,7,2349.067457,5,"Payday Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",30.60032016,15,13.05,13,_,5028.280954,39.19964053,,Yes,24.21577973,21.09939908,Low_spent_Small_value_payments,259.9622832,0,-0.6458,-0.9533,-0.6943,-2.2015,-1.6974 -0xbea5,CUS_0x1ab3,August,41,446-10-6070,Entrepreneur,81831.72,6910.31,6,5,1,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",2.806354204,4,5.14,4,Good,446.42,24.95649491,18 Years and 4 Months,No,234.5093959,145.2648816,High_spent_Large_value_payments,551.2567225,0,-0.194,-0.1367,-0.5093,-0.7036,1.0848 -0xbeb1,CUS_0x2924,August,18,366-25-1922,Musician,48151.86,,4,5,20,4,"Credit-Builder Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",11.56399308,9,14.94,8,_,2083.32,28.67872731,17 Years and 9 Months,Yes,80.82314161,40.47188977,High_spent_Large_value_payments,528.5704686,0,-0.2606,-0.2996,1.3118,0.6194,-0.4815 -0xbebd,CUS_0xbc50,August,49,538-29-9544,Lawyer,35482.43,,8,5,13,1,Auto Loan,3.027209833,6,16.84,8,Standard,64.61256974,29.32733748,26 Years and 3 Months,Yes,208.4252759,50.33583552,High_spent_Large_value_payments,444.7728124,0,0.0019,0.1539,1.6684,0.512,-0.5602 -0xbec9,CUS_0x38c6,August,34,697-65-7859,Teacher,12629.6,941.4666667,7,3,17,2,"Not Specified, and Auto Loan",,20,19.97,7,Standard,1090.8,33.11408567,15 Years and 11 Months,Yes,17.80923342,23.41659902,Low_spent_Large_value_payments,322.9208342,0,-1.0953,-0.7298,1.2828,0.7146,0.5483 -0xbed5,CUS_0x6799,August,26,572-41-8270,Architect,49215.3,3962.275,229,3,20,5,"Auto Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, and Not Specified",12.63818352,10.27086999,9.59,5,Standard,2974.54934,31.40995029,19 Years and 10 Months,Yes,158.3709313,113.0145757,High_spent_Medium_value_payments,374.841993,0,-1.2056,0.228,0.7679,-0.405,0.6598 -0xbee1,CUS_0x2be1,August,32,463-18-6967,Media_Manager,17623.09,,10,5,17.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Payday Loan, and Not Specified",,19,12.7,11,Bad,3070.650954,32.38681254,,Yes,68.13723211,,Low_spent_Small_value_payments,222.4664812,0,0.0893,0.5823,-0.7748,1.1162,1.6523 -0xbeed,CUS_0x34b6,August,26,358-29-5619,Musician,30726.96,2304.58,10,10,16,6,"Not Specified, Student Loan, Student Loan, Payday Loan, Mortgage Loan, and Payday Loan",17.64257128,14,3.92,12,Bad,4381.33,35.74996055,8 Years and 11 Months,Yes,100.6085184,100.1104929,Low_spent_Small_value_payments,319.7389888,0,-0.4087,2.0085,-0.6311,-0.9947,-0.3634 -0xbef9,CUS_0x4795,August,46,896-78-3151,Entrepreneur,66341.46,5369.455,5,3,9,4,"Credit-Builder Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",28.65497514,20,8.66,5,Standard,276.5,31.3315373,33 Years and 2 Months,No,155.4559648,357.1197097,High_spent_Small_value_payments,284.3698255,0,-0.5051,0.2486,-0.8273,0.1347,0.3734 -0xbf05,CUS_0x3c24,August,32,654-90-4605,Musician,16758266,,6,7,7,2,"Auto Loan, and Student Loan",18.6233146,16,6.02,3,Standard,1187.38,27.253597,29 Years and 11 Months,Yes,61.46342568,82.27956924,High_spent_Large_value_payments,737.5031717,0,0.1719,-0.5089,-0.3034,-1.0629,0.9519 -0xbf11,CUS_0x319c,August,36,592-03-8932,Musician,58145.22,,4,7,8.288361749,2,"Mortgage Loan, and Personal Loan",,3,6.76,4,_,158.7961654,35.87613525,29 Years and 5 Months,NM,82.44172214,479.2131693,High_spent_Medium_value_payments,571.5829358,0,0.3947,-1.1042,0.3752,-1.227,-0.2997 -0xbf1d,CUS_0x7b38,August,30,738-27-7124,Musician,101696.19,8432.6825,5,7,10,100,"Not Specified, and Student Loan",,20.82339901,7.53,1,Standard,619.0024591,29.7571633,27 Years and 2 Months,NM,6626,206.6678207,High_spent_Large_value_payments,764.6239173,0,-0.2939,-0.679,-1.4423,0.7168,-1.5292 -0xbf29,CUS_0x4329,August,27,845-73-4848,Doctor,28385.62,,4,6,9.288361749,6,"Student Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Not Specified",6.797848022,9.047859964,7.48,7,Standard,71.02367367,36.72822691,17 Years and 6 Months,Yes,88.63125778,537.5897194,Low_spent_Medium_value_payments,323.7633172,0,-1.0088,0.0989,-1.4648,1.1067,1.1671 -0xbf35,CUS_0x1595,August,40,132-58-0299,Accountant,30509.4,2321.45,5,7,8,4,"Debt Consolidation Loan, Not Specified, Mortgage Loan, and Mortgage Loan",14.47519047,14,10.95,6,_,1496.06,24.82668375,20 Years and 5 Months,Yes,66.36791773,,!@9#%8,343.4839168,0,-0.0434,-0.1296,-1.1581,-0.3676,0.5508 -0xbf41,CUS_0x7bf8,August,53,431-22-5697,_______,15820.155,1033.34625,8,7,15,2,"Student Loan, and Not Specified",12.21282161,9,11.67,1,Standard,1155.293912,29.3262873,32 Years and 5 Months,Yes,21.24455158,,High_spent_Medium_value_payments,296.4107088,0,-0.0191,-0.3238,0.7913,1.6493,0.1696 -0xbf4d,CUS_0x4967,August,27,675-75-3709,Doctor,16594.51,,10,8,18.88954781,8,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Not Specified, Payday Loan, Mortgage Loan, and Student Loan",,22.72944901,7.54,13,Bad,3701.902019,37.05985398,10 Years and 6 Months,Yes,1391.732335,,Low_spent_Small_value_payments,234.3789065,0,0.0999,0.9481,1.971,-0.4008,1.1653 -0xbf59,CUS_0x4ceb,August,40,517-27-6284,Accountant,64927.34,5059.777766,6,3,8,6,"Payday Loan, Auto Loan, Not Specified, Home Equity Loan, Not Specified, and Credit-Builder Loan",7.219521174,7,13.38,7,_,462.4444692,21.48488992,18 Years and 10 Months,Yes,667.0654312,788.600738,Low_spent_Small_value_payments,,0,0.0069,-0.0903,0.3349,0.5453,-0.6167 -0xbf65,CUS_0x13e4,August,80,652-14-9122,Doctor,62475.57,5307.2975,7,7,28,5,"Mortgage Loan, Student Loan, Student Loan, Home Equity Loan, and Personal Loan",,16,20.37,11,Bad,3523.03,38.93791341,14 Years and 8 Months,NM,177.6339566,134.7976913,High_spent_Large_value_payments,458.2981021,0,1.3058,0.3771,-0.5163,-1.0279,1.3981 -0xbf71,CUS_0xaf8d,August,49,745-63-1071,Architect,98518.68,,8,5,17.28836175,2,"Payday Loan, and Home Equity Loan",19.83303661,18,10.35,2,_,128.35,36.23784298,29 Years and 5 Months,Yes,153.4435514,,High_spent_Large_value_payments,796.2329544,0,0.3394,-0.2076,1.726,0.2523,0.2642 -0xbf7d,CUS_0x1b29,August,30,634-57-5757,Media_Manager,92362.68,,3,4,7.288361749,4,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Auto Loan",8.2734084,9,18.26,8,_,747.28,23.13300982,,Yes,155.3304165,1001.428687,Low_spent_Large_value_payments,276.9673575,0,-2.4686,0.5671,0.577,-1.0674,0.7724 -0xbf89,CUS_0x5c0f,August,21,050-21-1213,Musician,116336.32,9553.693333,3,3,11,0,,7.430126911,8.045737878,3,2,Good,1219.230726,41.18784255,,No,0,351.2922805,!@9#%8,874.0770529,0,0.2514,-0.6328,0.5069,-0.625,-0.6936 -0xbf95,CUS_0xae0a,August,26,662-79-7638,Manager,38635.95,3048.6625,2,2,3.288361749,4,"Credit-Builder Loan, Student Loan, Student Loan, and Credit-Builder Loan",9.145528384,10,14.63,4,Good,485.2857796,38.00568708,30 Years and 9 Months,No,66.37896276,609.7335855,Low_spent_Small_value_payments,365.0143019,0,0.5176,-0.3489,-1.9698,-0.4914,1.3937 -0xbfa1,CUS_0x697a,August,24,508-44-2013,Mechanic,19722.7,1625.558333,4,5,25,7,"Not Specified, Auto Loan, Auto Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Student Loan",21.70043267,15,9.83,11,Standard,2227.91,25.15131159,6 Years and 10 Months,Yes,85.2286893,177.0601241,Low_spent_Small_value_payments,190.2670199,0,-0.3004,0.9163,-0.3721,-1.9464,0.3844 -0xbfad,CUS_0x6000,August,30,280-96-0502,Developer,25203.1,2234.258333,5,7,17,2,"Auto Loan, and Credit-Builder Loan",7.770808509,9,2.61,3,Standard,344.9806766,23.55495817,30 Years and 5 Months,Yes,39.27024717,80.39718623,High_spent_Medium_value_payments,364.9458788,0,0.0003,1.079,-0.3594,-0.242,-1.0625 -0xbfb9,CUS_0x54a7,August,18,#F%$D@*&8,Writer,84446.2,7061.183333,6,3,7,100,"Payday Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Student Loan",24.65772496,15,17.96,13,Standard,28.15,41.12208427,19 Years and 6 Months,Yes,423.5393016,,High_spent_Medium_value_payments,279.8865626,0,-0.518,1.2741,-0.057,-0.3755,-1.0564 -0xbfc5,CUS_0xa69,August,34,189-86-7222,Scientist,32510.12,,1051,8,32,2,"Not Specified, and Credit-Builder Loan",20.57887483,,14.44,8,Standard,2305.08,38.41667411,13 Years and 8 Months,Yes,35.0635408,53.35924463,High_spent_Medium_value_payments,429.3948812,0,0.4497,-0.2028,-0.941,1.5792,-0.8989 -0xbfd1,CUS_0x512e,August,42,171-22-0944,Architect,19218.21,1669.5175,10,6,28.06745738,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Personal Loan",40.03047054,23,15.39,11,Standard,2552.810954,40.39437436,7 Years and 10 Months,Yes,53.97582252,130.6170923,Low_spent_Small_value_payments,245.6385473,0,-1.507,-0.9647,0.2695,0.8448,0.0746 -0xbfdd,CUS_0xaeec,August,46,225-91-1718,Media_Manager,7207.44,625.62,9,5,15,6,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Credit-Builder Loan",15.28146674,10.6129516,15.11,10,Standard,2514.62589,28.00310526,7 Years and 11 Months,NM,35.07605126,29.33183824,Low_spent_Small_value_payments,288.1541105,0,1.2159,0.1971,-2.1659,-0.1833,0.0147 -0xbfe9,CUS_0x128e,August,19,827-28-8015,Mechanic,20232.11,1918.009167,5,3,6,5,"Mortgage Loan, Payday Loan, Auto Loan, Not Specified, and Mortgage Loan",24.46386724,20,15.86,7,Standard,1104.6,29.79703172,9 Years and 4 Months,Yes,48.65776555,126.7879694,Low_spent_Large_value_payments,286.3551817,0,-0.194,0.8025,-2.2131,-0.5185,0.6366 -0xbff5,CUS_0x7d18,August,20,094-43-5058,Developer,37654.18,,8,10,28.88954781,9,"Payday Loan, Personal Loan, Home Equity Loan, Student Loan, Personal Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",28.36699413,20,8.72,11,_,1853.53,35.68514327,19 Years and 6 Months,NM,1529.203362,,High_spent_Medium_value_payments,241.3633265,0,0.9549,-0.1487,0.7661,-1.0559,0.328 -0xc001,CUS_0x59b6,August,56,315-03-3600,_______,111090.06,,0,4,10.28836175,2,"Payday Loan, Credit-Builder Loan, and Auto Loan",0,4,11.99,1,Good,530.8034744,39.25560506,28 Years and 0 Months,No,149.0796583,780.9446954,Low_spent_Large_value_payments,726.8561391,0,-0.388,0.7936,-0.0244,-0.1361,0.9328 -0xc00d,CUS_0x773,August,32,827-38-6871,Lawyer,44498.78,3748.231667,4,5,18,3,"Mortgage Loan, Student Loan, and Payday Loan",14.74533135,11,11.73,209,_,1131.03,33.15792685,24 Years and 9 Months,Yes,92.44447273,80.29180518,High_spent_Small_value_payments,462.0868888,0,-1.277,0.9018,0.8143,-0.4505,0.4499 -0xc019,CUS_0x42ab,August,46,230-60-1144,Scientist,57993.84,,7,8,22,8,"Credit-Builder Loan, Student Loan, Payday Loan, Personal Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Home Equity Loan",33.99284824,23.92434422,8.08,11,_,2030.371414,30.21203207,6 Years and 2 Months,Yes,234.4392139,175.0826458,High_spent_Medium_value_payments,329.0601404,0,-0.8137,0.0577,-0.6577,0.709,-1.0576 -0xc025,CUS_0x4bfb,August,44,352-16-8068,Mechanic,59479.26,4833.605,7,5,13,6,"Student Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",,12,12.95,8,Standard,1995.960123,21.68428129,11 Years and 6 Months,NM,166.119757,,Low_spent_Small_value_payments,39.74013819,0,0.6393,0.1244,0.1921,0.6606,0.7651 -0xc031,CUS_0x57ca,August,32,089-30-5268,Journalist,101628.12,8730.01,3,7,14,0,,11.92271164,10.10642894,18.25,11,_,270.5100704,32.42695094,13 Years and 3 Months,Yes,0,156.3124566,High_spent_Large_value_payments,956.6885434,0,-1.2079,-0.3388,0.2891,0.8226,1.0873 -0xc03d,CUS_0x76ed,August,46,776-21-6006,Mechanic,133455.93,11060.3275,0,3,4.288361749,2,"Not Specified, Auto Loan, and Payday Loan",3.350498846,6,1.47,3,Good,708.9396848,34.80907896,22 Years and 5 Months,No,284.9565831,11990.18838,High_spent_Large_value_payments,854.7965491,0,-0.9873,-0.1526,-1.3803,0.4243,-1.4144 -0xc049,CUS_0x6e23,August,37,344-34-3762,Scientist,66560.22,5369.685,5,7,20,2,"Payday Loan, and Student Loan",29.6440708,18.89277804,8.93,0,_,907.5343486,28.97550435,30 Years and 11 Months,Yes,80.29199979,54.47751516,High_spent_Large_value_payments,642.198985,0,1.5132,0.4409,-0.6257,-2.7374,0.1556 -0xc055,CUS_0x460a,August,33,680-98-1219,Engineer,66571.4,5600.616667,7,1250,34,3,"Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",39.86933456,24,16.55,7,Bad,2383.13,27.2159835,20 Years and 0 Months,Yes,144.5986348,116.4719737,High_spent_Small_value_payments,558.9910582,0,-2.0659,0.4337,-1.316,0.6916,2.2515 -0xc061,CUS_0xba8,August,26,777-03-1147,Manager,18327.97,,10,5,35.06745738,3,"Personal Loan, Home Equity Loan, and Home Equity Loan",,10.73610619,13.63,12,Standard,2840.873806,25.82702315,18 Years and 6 Months,Yes,23.82311055,,Low_spent_Large_value_payments,230.8281907,0,1.6657,1.2768,1.5243,0.5951,0.6267 -0xc06d,CUS_0xa95d,August,47,783-87-1945,Architect,38690.04,3074.17,5,3,16,2,"Student Loan, and Auto Loan",,14,12.39,7,Standard,590.94,33.0324059,31 Years and 0 Months,Yes,40.09533732,204.4626589,High_spent_Small_value_payments,322.8590038,0,-0.1543,-1.5355,0.144,-1.9056,0.3693 -0xc079,CUS_0x7091,August,19,230-80-0322,Architect,60909.15,5079.7625,3,6,9,5,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,22.80065114,10.8,8,Standard,1606.29294,31.18861234,7 Years and 4 Months,NM,131.1667361,545.6643718,Low_spent_Small_value_payments,121.1451422,0,-0.704,0.207,-0.8414,1.5721,0.9807 -0xc085,CUS_0x589c,August,24,919-16-2222,Lawyer,22705.83,,4,6,4,2,"Auto Loan, and Not Specified",17.4603406,12,4.53,8,Good,854.1,30.80187406,32 Years and 4 Months,No,22.6708027,,Low_spent_Small_value_payments,296.180034,0,-0.7482,2.681,-0.3425,-1.3716,0.16 -0xc091,CUS_0x8907,August,33,885-60-3879,Architect,163904.56,,3,5,1.288361749,0,,0,3,16.13,1,Good,26.80684193,39.93958052,16 Years and 5 Months,No,0,1127.087496,Low_spent_Medium_value_payments,1014.173394,0,-0.2342,-0.5134,0.3389,0.3792,1.9551 -0xc09d,CUS_0x41c1,August,29,824-78-7820,_______,20282.42,,4,4,14,4,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",24.70445894,17,7.82,4,Standard,489.03,27.51359132,16 Years and 8 Months,Yes,35.38627374,104.189723,Low_spent_Small_value_payments,296.4441699,0,0.2921,-0.915,-0.5228,-1.1592,-1.5419 -0xc0a9,CUS_0xb971,August,50,644-26-7468,Journalist,28891.26,,5,7,11,0,,,7,3.17,4,Good,457.4069437,40.55790947,22 Years and 4 Months,No,146.4484841,161.684553,!@9#%8,348.1969726,0,-0.0654,0.3412,-1.2259,1.5024,-0.668 -0xc0b5,CUS_0x6ea0,August,18,966-14-9295,Lawyer,8969.985,,9,6,23.06745738,8,"Mortgage Loan, Auto Loan, Student Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",37.43549186,21,18.73,9,_,4549.000954,37.91397945,10 Years and 2 Months,NM,39.62196691,19.00503684,High_spent_Medium_value_payments,226.4025833,0,-1.0026,0.0048,2.5834,0.6632,0.706 -0xc0c1,CUS_0x4237,August,46,846-96-5203,Developer,26918.38,,6,5,10,2,"Debt Consolidation Loan, and Student Loan",19.51595852,16,5.48,6,Standard,1054.9,40.6360781,26 Years and 0 Months,Yes,43.92660965,91.11438389,High_spent_Small_value_payments,369.1788398,0,-0.9462,-0.4816,0.2063,1.6627,0.1738 -0xc0cd,CUS_0x2aff,August,36,995-63-5427,Lawyer,34483.9,,8,7,30.06745738,9,"Credit-Builder Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",29.08138176,14,2.12,10,Bad,4609.940954,34.10365741,13 Years and 0 Months,Yes,183.9947235,10000,!@9#%8,236.3586838,0,-0.414,-0.5149,1.503,1.7618,0.7034 -0xc0d9,CUS_0x288d,August,55,970-19-8342,Lawyer,30748.93,2572.410833,1,6,12,2,"Payday Loan, and Home Equity Loan",,3,4.21,9,_,860.97,32.18941777,19 Years and 6 Months,No,43.72777399,269.9842239,Low_spent_Small_value_payments,233.5290854,0,1.1334,-0.0112,0.3696,-0.2865,-1.2883 -0xc0e5,CUS_0x4565,August,43,239-95-8894,Entrepreneur,19818.56,1801.546667,8,9,24.88954781,9,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Payday Loan, Personal Loan, Not Specified, and Student Loan",25.7891011,19,21.7,6,Bad,4534.32,31.82648545,14 Years and 2 Months,Yes,1464.598592,,Low_spent_Small_value_payments,236.3378875,0,0.4849,1.8888,-1.2516,0.0371,-0.153 -0xc0f1,CUS_0x5764,August,24,672-84-3682,Media_Manager,14469.88,,10,10,30.95700519,9,"Debt Consolidation Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Student Loan, Auto Loan, and Auto Loan",,30.44460826,5.35,15,Bad,3865.921919,28.73687632,8 Years and 6 Months,Yes,1385.126167,124.9311087,Low_spent_Large_value_payments,177.1746886,0,1.1297,-1.2567,0.6469,-1.438,-0.2289 -0xc0fd,CUS_0x65d7,August,18,974-54-9648,Teacher,37720.58,3212.381667,6,9,24,5,"Credit-Builder Loan, Mortgage Loan, Not Specified, Not Specified, and Personal Loan",,23.17697863,1.14,11,_,1790.926289,39.12474647,10 Years and 11 Months,Yes,128.9414089,30.27304256,High_spent_Large_value_payments,402.0237152,0,-2.7536,1.3683,0.069,0.2159,0.7336 -0xc109,CUS_0x837f,August,18,636-75-9520,Entrepreneur,48356.66,4233.721667,3,4,16,2,"Personal Loan, and Not Specified",7.638607124,8,17.01,8,Standard,1323.42,25.06419706,16 Years and 4 Months,Yes,45.44154274,259.6105653,Low_spent_Large_value_payments,388.3200586,0,-0.2798,-2.322,-3.5365,-0.8354,-0.6718 -0xc115,CUS_0x9748,August,49,772-52-0737,Scientist,112021.6,9452.133333,7,6,4.288361749,0,,,12.19481443,6.88,2,Standard,1431.739052,36.23854984,27 Years and 11 Months,No,0,716.7041429,High_spent_Small_value_payments,908.4466514,0,2.3813,-0.0947,0.8866,0.0542,0.1666 -0xc121,CUS_0xb131,August,46,999-52-5088,Journalist,17708.33,1692.694167,8,9,24.95700519,7,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",38.31961411,25.37500408,7.81,11,Bad,2731.937305,36.62070232,14 Years and 8 Months,Yes,1387.506504,44.60782407,High_spent_Medium_value_payments,266.104719,0,-0.8739,0.5467,-0.3151,1.5272,0.9306 -0xc12d,CUS_0xab77,August,54,686-29-2615,Musician,41736.66,3330.055,3,3,9,100,"Personal Loan, Auto Loan, and Payday Loan",0,2,5.25,1,Good,1269.073232,25.07291087,18 Years and 8 Months,No,98.01563851,82.82572222,High_spent_Small_value_payments,420.1569164,0,0.6195,2.5114,-0.5524,-0.4501,-0.2803 -0xc139,CUS_0x4ddb,August,49,#F%$D@*&8,Architect,40457.96,,0,6,6,0,,,6.978773408,5.86,0,_,386.5058712,38.7713643,21 Years and 9 Months,No,0,76.32164797,High_spent_Large_value_payments,483.4280187,0,0.2386,-0.584,-0.48,1.4246,0.0839 -0xc145,CUS_0x4517,August,55,052-90-2364,Teacher,40023.81,3214.3175,2,5,5,100,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Student Loan",3.771670542,6,0.8,4,Good,1045.629612,33.64987942,27 Years and 11 Months,No,122.9857763,176.0405336,High_spent_Small_value_payments,308.3977893,0,1.224,-3.5817,-0.4089,0.1018,0.6024 -0xc151,CUS_0xb9fd,August,57,714-66-9926,Musician,9389456,11228.895,3,5,10.28836175,0,Home Equity Loan,0,0,-1.17,4,Good,274.1833141,41.60537301,29 Years and 0 Months,No,77.63386827,,Low_spent_Medium_value_payments,926.9052382,0,1.6945,0.3884,0.1953,0.097,-0.9919 -0xc15d,CUS_0x36a0,August,80,881-20-6457,Media_Manager,35976.97,3126.080833,2,3,12,3,"Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",0,0,,4,Good,491.9603523,30.6127367,31 Years and 9 Months,No,53.68632881,149.2900035,High_spent_Medium_value_payments,381.4008247,0,-0.4341,1.0465,1.4069,-0.1206,0.7063 -0xc169,CUS_0x6883,August,20,513-15-4094,Entrepreneur,28287.18,,4,4,2,1,Auto Loan,12.21678418,12,6.87,1,_,907.4485424,26.70065595,17 Years and 11 Months,No,15.15922383,304.9661744,Low_spent_Small_value_payments,239.079472,0,-1.0776,0.7343,-0.7123,1.6578,0.0836 -0xc175,CUS_0xb222,August,41,804-28-7310,_______,77641.56,6180.13,4,6,20,4,"Not Specified, Student Loan, Not Specified, and Debt Consolidation Loan",,3102.196302,11.3,17,Standard,2959.173037,40.69405074,13 Years and 0 Months,Yes,182.85013,172.1909916,Low_spent_Medium_value_payments,542.9718784,0,1.2588,-0.933,-2.4142,0.6013,1.2754 -0xc181,CUS_0xa922,August,43,375-11-4912,Writer,25740.18,,5,6,1,1,Mortgage Loan,11.79261271,10,2.77,,Standard,1273.88,28.11026107,21 Years and 10 Months,No,19.46604343,10000,!@9#%8,371.8360622,0,1.9536,-0.1079,-0.489,0.0239,0.5239 -0xc18d,CUS_0x50a2,August,36,850-58-9504,Musician,64173.56,5163.796667,7,4,11,2,"Student Loan, and Credit-Builder Loan",,17,6.66,3,_,497.23,33.28953713,30 Years and 4 Months,No,68.34879901,,Low_spent_Small_value_payments,62.58601163,0,0.8083,0.2686,-1.9609,-0.6201,-0.5391 -0xc199,CUS_0xa9d2,August,19,#F%$D@*&8,Mechanic,17190.62,1591.551667,4,3,6,4,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",,16,15.94,6,_,1646.72,29.11106369,14 Years and 6 Months,Yes,29.95122537,76.88976585,Low_spent_Small_value_payments,342.3141754,0,1.0783,0.1155,-1.171,-0.6102,-1.9541 -0xc1a5,CUS_0xabd,August,41,283-39-0778,Lawyer,129569.52,10831.46,8,7,17.28836175,4,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",11.1669104,11,17.76,7,Standard,641.47,34.18570665,9 Years and 5 Months,Yes,383.1808701,10419.93746,Low_spent_Small_value_payments,,0,-0.7842,0.0454,1.2064,-1.8744,-1.3012 -0xc1b1,CUS_0x7f10,August,33,015-58-0092,Teacher,16436.66,,10,9,34,6,"Student Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",,26.61033885,6.58,10,Bad,2926.12767,32.7114631,7 Years and 3 Months,Yes,77.91293447,122.8872426,!@9#%8,226.4719896,0,-0.7688,1.2854,-0.9007,-1.0002,-0.9074 -0xc1bd,CUS_0xaa80,August,43,313-02-7200,Writer,55242.99,4660.5825,10,9,22.95700519,9,"Payday Loan, Mortgage Loan, Payday Loan, Credit-Builder Loan, Not Specified, Payday Loan, Student Loan, Credit-Builder Loan, and Auto Loan",,23,26.39,7,Bad,4397.300954,34.7895863,2 Years and 11 Months,Yes,1689.521302,146.4227686,High_spent_Medium_value_payments,159.0638101,0,0.2732,0.9989,-0.4274,-0.0745,-0.4001 -0xc1c9,CUS_0x3b9a,August,32,983-37-5040,Doctor,30819.56,2547.296667,7,3,9,4,"Payday Loan, Student Loan, Not Specified, and Home Equity Loan",9.561294973,10,7.68,5,Standard,401.26,31.21249545,14 Years and 8 Months,Yes,96.8485909,54.30216475,High_spent_Small_value_payments,363.578911,0,-0.6365,-0.5726,0.6587,-0.0714,0.6321 -0xc1d5,CUS_0x9cec,August,31,766-16-0803,Musician,9390.68,,9,7,31,9,"Debt Consolidation Loan, Not Specified, Auto Loan, Payday Loan, Payday Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",42.4944217,32.84861728,17.2,13,Bad,5226.352134,31.07455737,6 Years and 5 Months,Yes,45.55676019,46.55519524,Low_spent_Medium_value_payments,256.5437112,0,-0.1564,1.3349,-1.4432,-1.2904,-0.8927 -0xc1e1,CUS_0xa8d7,August,52,583-63-4832,Architect,79847.97,6831.9975,6,4,20,0,,23.66868789,20.36681362,14.57,2,_,1636.646545,34.63527682,16 Years and 10 Months,Yes,0,207.590711,Low_spent_Medium_value_payments,755.609039,0,-0.5699,0.7264,0.7487,-0.1701,0.6136 -0xc1ed,CUS_0xa587,August,53,879-08-9684,Writer,17525.87,,6,3,19,2,"Credit-Builder Loan, and Debt Consolidation Loan",11.88410339,13.12261544,17.76,4,Standard,1013.356412,40.59790792,30 Years and 8 Months,Yes,22.97305053,140.5771265,Low_spent_Small_value_payments,252.5987396,0,-0.7069,-0.1412,2.1134,-0.2441,0.6351 -0xc1f9,CUS_0x868,August,32,760-71-1258,Journalist,19014.19,,3,8,32,5,"Debt Consolidation Loan, Student Loan, Student Loan, Student Loan, and Home Equity Loan",,14.13373421,,13,Standard,2215.217495,35.64873703,17 Years and 4 Months,Yes,4760,145.4488044,Low_spent_Small_value_payments,209.6067469,0,0.235,-0.8625,0.5735,-0.0002,0.4689 -0xc205,CUS_0x7633,August,24,806-84-5565,_______,27910.59,,3,7,14,2,"Payday Loan, and Personal Loan",29.40995168,19.18747158,6.96,5,Standard,250.6321491,29.11887199,29 Years and 2 Months,Yes,36.62873393,,Low_spent_Small_value_payments,338.3354143,0,0.4995,0.4557,-0.8158,-1.9679,0.5029 -0xc211,CUS_0x46d1,August,33,#F%$D@*&8,Media_Manager,35849.77,,3,3,8,2,"Personal Loan, and Personal Loan",,18,14.2,5,_,566.08,38.48344641,20 Years and 4 Months,Yes,58.05787092,244.3154076,!@9#%8,290.2748048,0,-0.0201,0.4365,0.6715,-0.4863,-0.7624 -0xc21d,CUS_0x1354,August,28,432-99-3925,Entrepreneur,78498.72,6568.56,8,5,17,0,,15.75542018,10.77381493,8.82,7,Standard,1032.376189,25.32467874,9 Years and 11 Months,Yes,0,70.04196387,High_spent_Medium_value_payments,836.8140361,0,-1.3439,-1.191,2.4771,0.6523,-0.354 -0xc229,CUS_0x7380,August,22,665-54-1424,Mechanic,16135.12,,5,4,12,2,"Not Specified, and Mortgage Loan",,9,4.8,4,Standard,1091.33,40.74589924,29 Years and 10 Months,Yes,14.21294487,104.6553527,!@9#%8,333.4910358,0,-0.0347,1.3712,1.7226,-0.1485,2.1939 -0xc235,CUS_0xb2bf,August,29,575-99-4175,Developer,15649.3,1469.108333,5,7,15,2,"Student Loan, and Mortgage Loan",,17,23.32,4,_,1960.58,34.94045575,18 Years and 6 Months,NM,14.5614621,,!@9#%8,357.0211632,0,1.1234,0.3732,0.0449,0.6702,-0.7985 -0xc241,CUS_0x1fb5,August,39,474-15-7091,Scientist,51031.6,4180.633333,4,6,16,3,"Payday Loan, Not Specified, and Mortgage Loan",90,960,10.54,1,Standard,1437.83,24.73971041,17 Years and 4 Months,NM,113.1596428,44.87345738,High_spent_Large_value_payments,500.0302332,0,-0.2568,0.5856,-0.1365,-0.4677,0.2293 -0xc24d,CUS_0x9a06,August,30,048-78-0484,Manager,84659.22,6757.935,8,5,6,1,Home Equity Loan,19.2826731,13,12.55,4,Standard,704.53,27.52895818,18 Years and 3 Months,Yes,67.03772849,269.6820738,High_spent_Medium_value_payments,589.0736977,0,0.2803,0.65,0.4445,1.5992,0.3555 -0xc259,CUS_0x98a8,August,49,#F%$D@*&8,_______,44190.3,3695.525,7,6,17.28836175,2,"Debt Consolidation Loan, and Personal Loan",,14,10.74,7,Standard,476.56,38.2015081,33 Years and 3 Months,No,51.2728535,534.3902973,High_spent_Medium_value_payments,453.8268102,0,0.7865,-0.0768,1.1844,-1.9958,-0.4476 -0xc265,CUS_0xbbc6,August,27,122-43-5969,Accountant,38624.06,,0,5,11,100,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",9.200941786,10,4.19,6,Good,1394.46,25.27757687,16 Years and 0 Months,No,78.45202561,79.14388258,!@9#%8,416.7712585,0,-0.2328,-1.1875,2.0263,1.683,0.5605 -0xc271,CUS_0x250b,August,28,919-44-2707,Accountant,91018.76,7746.896667,4,7,11,2,"Personal Loan, and Credit-Builder Loan",,18.00151935,,4,Good,744.8569336,39.27750421,23 Years and 10 Months,No,118.6941571,228.082649,High_spent_Medium_value_payments,677.9128605,0,1.3273,0.5035,1.567,-0.2145,0.1835 -0xc27d,CUS_0xafe1,August,56,915-74-7492,Mechanic,36512.4,,1,3,3,4,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",,11,16.66,6,Good,545.2986309,30.48254683,24 Years and 11 Months,No,110.9599658,88.94858246,High_spent_Medium_value_payments,384.7170524,0,0.5199,0.5887,0.0087,-0.0959,-1.0964 -0xc289,CUS_0x526a,August,19,094-69-2245,Musician,34317.21,2702.7675,3,6,18,2,"Auto Loan, and Home Equity Loan",,20,18.82,13,_,1164.47,25.8640548,6 Years and 11 Months,NM,53.4566523,180.6446212,Low_spent_Small_value_payments,326.1754765,0,1.7692,0.4472,0.184,-2.4113,-2.1362 -0xc295,CUS_0x89d0,August,26,537-67-2894,Teacher,20317.12,,7,6,17,4,"Mortgage Loan, Auto Loan, Personal Loan, and Student Loan",,11.4146044,17.72,10,Standard,3088.466421,31.82078071,6 Years and 10 Months,Yes,59.69878768,26.44798041,High_spent_Large_value_payments,323.5625652,0,1.706,-1.5138,-1.8139,-0.1347,-0.685 -0xc2a1,CUS_0x5fc2,August,47,821-16-9505,Scientist,10285.71,1036.1425,8,7,6,1,Student Loan,12.37200098,9.028888702,7.49,3,Standard,1485.296384,33.59040409,29 Years and 3 Months,Yes,7.897074074,50.00437196,Low_spent_Small_value_payments,335.712804,0,-0.0436,-0.1488,0.3166,0.0035,-0.2138 -0xc2ad,CUS_0x8e9c,August,48,746-01-3836,Teacher,32500.35,2728.017745,2,6,6,1,Home Equity Loan,3.095022623,6,7,78,Good,1117.184028,28.09359214,24 Years and 5 Months,No,140.4736463,434.5218018,Low_spent_Small_value_payments,174.7440002,0,-0.0381,1.0052,-0.9325,-0.0855,1.5051 -0xc2b9,CUS_0x7611,August,56,587-14-1089,Entrepreneur,93125.48,7769.456667,4,5,7.288361749,0,,16.34580911,,8.76,0,_,461.72,37.75634277,20 Years and 4 Months,Yes,0,10419.93746,High_spent_Small_value_payments,541.1863153,0,0.4733,0.6044,-1.504,-0.0716,-0.8463 -0xc2c5,CUS_0x6237,August,42,527-37-8444,Musician,62879.96,5343.996667,8,10,2626,2,"Payday Loan, and Student Loan",38.40822067,20.57958162,7.9,9,_,1930.318369,26.16038562,19 Years and 4 Months,Yes,78.33841368,375.2464004,Low_spent_Medium_value_payments,360.8148526,0,0.6719,0.2078,-0.0641,-1.46,-0.666 -0xc2d1,CUS_0x7b75,August,40,146-07-7868,Accountant,8759.74,812.9783333,6,7,19,100,"Payday Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",36.0534753,25.78580972,23.37,6,Bad,4626.158907,29.97271386,12 Years and 6 Months,Yes,43.49571773,,Low_spent_Small_value_payments,226.6512784,0,-0.4225,1.3441,0.4125,-0.9001,-0.0449 -0xc2dd,CUS_0xed8,August,25,542-81-2536,Engineer,15847.06,,4,4,8,6,"Auto Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, and Student Loan",16.83546819,11,10.78,10,Standard,412.71,35.95457245,8 Years and 6 Months,Yes,45.68108361,10000,Low_spent_Small_value_payments,240.9122054,0,0.9559,-0.6772,-1.2701,-1.2675,0.9289 -0xc2e9,CUS_0x1416,August,20,036-32-2011,Accountant,29651.23,2460.935833,6,5,6,2,"Home Equity Loan, and Not Specified",18.20959733,15,1.62,2,Standard,1057.363656,23.16531585,27 Years and 10 Months,No,37.90300631,42.6040976,High_spent_Large_value_payments,411.5810589,0,-1.787,-1.3255,-0.2487,1.0627,1.2125 -0xc2f5,CUS_0x1b8a,August,33,577-72-6050,_______,44927.86,3687.988333,4,6,6,3,"Not Specified, Personal Loan, and Debt Consolidation Loan",6.716446015,8,5.55,0,Good,671.7263644,33.03308334,21 Years and 4 Months,No,102.1903288,86.45035929,High_spent_Medium_value_payments,438.1706496,0,0.9266,0.9925,-1.3404,0.7595,0.6233 -0xc301,CUS_0x1a2a,August,26,227-46-3036,Architect,72002.56,,8,7,13,2,"Mortgage Loan, and Credit-Builder Loan",21.89552861,18,13.53,7,Standard,1021.82,39.13621871,19 Years and 5 Months,Yes,92.23327755,70.74701327,!@9#%8,686.6410425,0,-0.5903,-1.8356,-0.1409,-0.9592,-0.8712 -0xc30d,CUS_0x413,August,23,851-32-4418,Manager,41806.16,,2,7,7,1,Personal Loan,1.539297785,4,6.04,5,Good,265.4450596,33.91505579,26 Years and 9 Months,NM,21.86468206,141.0443636,High_spent_Medium_value_payments,457.5458864,0,-0.1495,0.5809,-1.2865,-0.9298,0.5025 -0xc319,CUS_0x403d,August,49,067-11-8097,Manager,71421.15,6118.7625,7,7,18.28836175,0,,,10,11.3,0,Standard,566.98,34.61645679,17 Years and 10 Months,NM,0,528.9213605,High_spent_Medium_value_payments,752.8923505,0,-0.6018,2.2081,-0.4818,1.232,-0.2571 -0xc325,CUS_0x2997,August,20,012-07-2943,Journalist,64514.31,5353.1925,7,6,14,3,"Student Loan, Payday Loan, and Debt Consolidation Loan",,8,12.88,12,Standard,374.51,37.21220851,18 Years and 5 Months,Yes,98.00331867,90.86337818,High_spent_Medium_value_payments,596.4525532,0,-0.1284,0.707,-0.8626,0.7445,-0.5201 -0xc331,CUS_0x23eb,August,28,929-73-1862,Musician,109905.96,,8,4,8,1,Personal Loan,,22.18432794,5.07,1,Standard,169.3767749,40.60455533,20 Years and 8 Months,Yes,90.58286628,272.9301148,Low_spent_Medium_value_payments,826.1700189,0,1.1707,-0.7912,0.3672,-1.2798,0.8105 -0xc33d,CUS_0x46bd,August,42,791-21-8450,Scientist,156356.52,13152.71,4,7,7,2,"Not Specified, and Debt Consolidation Loan",16.19129582,10.29274359,8.31,3,Good,552.9628109,41.34289814,29 Years and 8 Months,No,245.7717773,,Low_spent_Large_value_payments,576.3381956,0,0.2066,-0.6809,0.1941,0.1337,1.4851 -0xc349,CUS_0x7be2,August,44,880-25-9026,Journalist,71889.08,6266.756667,7,8,22,3,"Debt Consolidation Loan, Payday Loan, and Personal Loan",17.72650978,9,18.49,15,_,2461.32,39.66957472,,Yes,109.660777,,High_spent_Large_value_payments,609.4361306,0,1.9547,0.7076,-0.9173,-0.053,1.0912 -0xc355,CUS_0xa3b4,August,18,734-47-5830,Scientist,19648.09,1890.340833,7,3,14,4,"Home Equity Loan, Mortgage Loan, Personal Loan, and Student Loan",20.57685128,16,10,7,_,2052.35,26.97706993,12 Years and 4 Months,Yes,39.66410354,27.07545092,High_spent_Medium_value_payments,372.2945289,0,-1.2046,-0.2739,-0.4679,0.758,-0.1949 -0xc361,CUS_0x7f3f,August,19,380-39-4930,Lawyer,7842.3,528.525,10,10,22.06745738,8,"Not Specified, Credit-Builder Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Not Specified, and Auto Loan",,15,23.06,9,Bad,3644.500954,37.13569888,2 Years and 4 Months,Yes,40.96970272,,Low_spent_Small_value_payments,243.5735848,0,-0.5916,1.0707,-0.0644,0.3564,-0.6213 -0xc36d,CUS_0x6947,August,19,#F%$D@*&8,Media_Manager,14051.56,,10,9,31.88954781,8,"Not Specified, Auto Loan, Home Equity Loan, Payday Loan, Payday Loan, Student Loan, Mortgage Loan, and Not Specified",,22.19816116,16.54,12,Bad,4778.324061,36.8734564,8 Years and 3 Months,Yes,1398.642346,,Low_spent_Medium_value_payments,215.3856863,0,0.534,0.3358,-0.6182,-0.3502,2.2515 -0xc379,CUS_0x4da0,August,41,195-55-5376,Scientist,73451.94,6309.995,5,7,9,3,"Payday Loan, Auto Loan, and Auto Loan",32.35204868,21,9.13,2,Good,965.51,41.60831393,23 Years and 8 Months,No,114.2405652,231.2654964,Low_spent_Large_value_payments,555.4934385,0,-0.5245,0.4702,-0.3212,0.8621,0.6652 -0xc385,CUS_0x3def,August,48,684-00-2977,Media_Manager,43360.74,3647.395,2,6,11.28836175,2,"Student Loan, and Credit-Builder Loan",6.373060631,8,1.56,6,_,262.0657112,25.62327739,30 Years and 11 Months,No,57.6589505,531.7086797,High_spent_Medium_value_payments,457.0792848,0,-0.9729,-0.2708,0.7124,-0.9968,0.6404 -0xc391,CUS_0x972d,August,47,#F%$D@*&8,Doctor,71605,6011.083333,2,5,0.288361749,2,"Mortgage Loan, and Not Specified",8.018427702,8,9.38,1,Good,519.84,32.03225807,27 Years and 5 Months,No,71.25191113,473.1176969,!@9#%8,716.6761864,0,-1.5482,-2.0534,-1.7879,0.7467,0.7938 -0xc39d,CUS_0x3815,August,39,#F%$D@*&8,_______,22457.51,,0,3,11,0,,0.603302392,0,2.68,3,Good,901.1363075,36.8311684,28 Years and 5 Months,No,200.5995938,105.616566,Low_spent_Medium_value_payments,350.7293506,0,-0.1103,1.0891,1.3974,-1.5017,0.0416 -0xc3a9,CUS_0x2f08,August,29,468-82-8711,Mechanic,37577.82,,8,5,24,7,"Not Specified, Payday Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, and Not Specified",22.79864827,16,3.56,12,Bad,1518.65,32.26242949,6 Years and 10 Months,Yes,198.0002783,,High_spent_Small_value_payments,179.0508231,0,-0.4032,1.4251,0.7801,-1.1053,0.7731 -0xc3b5,CUS_0x9ffa,August,41,337-76-8130,Manager,35218.52,3195.876667,1,2,3,2,"Home Equity Loan, and Credit-Builder Loan",11.17051439,12,4.03,0,_,874.2424998,23.13135888,24 Years and 2 Months,No,38.68319085,238.6732104,High_spent_Small_value_payments,324.216651,0,-0.1054,-0.8846,0.2764,-2.6669,0.6897 -0xc3c1,CUS_0x3e35,August,48,031-13-0139,Scientist,16988.435,1531.702917,0,1,10,1,Payday Loan,0,1,1.55,0,_,953.48625,37.33046729,29 Years and 8 Months,No,12.76159006,43.72679191,High_spent_Large_value_payments,341.619448,0,-0.6396,-1.5576,1.1445,1.5837,0.2692 -0xc3cd,CUS_0x6034,August,39,367-81-5174,Media_Manager,28838.96,,3,1,9.288361749,0,Credit-Builder Loan,14.30326357,,4.45,5,Good,221.7,29.24952648,31 Years and 3 Months,No,21.19455448,505.8319357,High_spent_Medium_value_payments,380.8356375,0,0.7494,0.3837,0.7907,-0.3223,-1.076 -0xc3d9,CUS_0x935b,August,32,814-23-1843,Developer,10616.07,,5,6,14,5,"Student Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",21.63948935,20,17.36,7,_,765.97,28.72982191,,Yes,28.71775192,,High_spent_Medium_value_payments,278.2759463,0,0.3432,1.1319,-0.1697,-1.2547,-0.5817 -0xc3e5,CUS_0x6473,August,32,116-72-1150,Lawyer,50686.32,,5,4,2891,2,"Auto Loan, and Personal Loan",15.39510063,10,14.01,9,Standard,145.46,22.32212042,9 Years and 11 Months,Yes,61.68673695,283.8907405,Low_spent_Large_value_payments,369.6085225,0,0.9567,-1.6495,2.5813,1.0929,0.3472 -0xc3f1,CUS_0xc2d8,August,49,389-75-2054,Engineer,16221.07,,0,3,3,2,"Auto Loan, and Home Equity Loan",4.133331836,6,5.39,2,Good,197.05,35.73684156,16 Years and 6 Months,No,19.25199559,25.27297493,High_spent_Medium_value_payments,356.5506128,0,-0.6033,-1.0395,-0.1977,-0.3142,0.8292 -0xc3fd,CUS_0x452f,August,43,024-28-2627,Writer,127614.78,,5,6,6.288361749,4,"Personal Loan, Credit-Builder Loan, Payday Loan, and Payday Loan",11.9996104,11.8684698,1.9,4,Good,1446.185416,34.5604407,26 Years and 4 Months,No,326.7097896,1155.955486,Low_spent_Medium_value_payments,258.2286859,0,-3.8931,0.4617,0.2878,-1.9025,-0.7197 -0xc409,CUS_0x7b2d,August,23,504-65-9658,Scientist,83181.88,,3,4,4.288361749,2,"Auto Loan, Personal Loan, and Payday Loan",0,0,,0,Good,322.3926669,33.6717999,21 Years and 8 Months,NM,173.817388,707.8766078,High_spent_Medium_value_payments,507.5981614,0,-1.1078,1.3155,0.3243,0.9987,-1.051 -0xc415,CUS_0x5e34,August,39,028-39-5974,Journalist,14696.62,,9,7,21.06745738,2,"Student Loan, and Home Equity Loan",34.82453933,21,7.35,11,Bad,2890.040954,28.5725146,,Yes,17.44148222,10000,High_spent_Medium_value_payments,278.180269,0,-0.3035,1.0509,0.5612,1.2217,0.1481 -0xc421,CUS_0x17ff,August,21,280-03-3060,Scientist,17574.745,1344.562083,4,3,7,3,"Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",,9,16.26,,Standard,766.72,37.63876297,24 Years and 2 Months,Yes,27.0251795,52.03243599,Low_spent_Large_value_payments,325.3985928,0,-0.8208,0.9249,-0.4351,1.779,1.6069 -0xc42d,CUS_0x3e9c,August,44,785-01-9853,Lawyer,31364.96,2573.746667,6,5,10,100,,12.2728299,9,14.47,7,Standard,948.01,35.25291124,16 Years and 2 Months,Yes,0,260.9354543,Low_spent_Small_value_payments,286.4392124,0,1.268,0.5623,-1.9032,-0.6656,-0.5177 -0xc439,CUS_0x8783,August,21,420-30-6739,Journalist,35793.61,,7,6,18,1,Not Specified,21.09207751,15,12.06,8,Standard,720.19,25.86179065,21 Years and 6 Months,Yes,28.21269044,200.0870333,High_spent_Small_value_payments,329.9803596,0,-0.0196,0.4973,-0.3072,-0.9579,0.865 -0xc445,CUS_0x2934,August,34,929-54-9881,Lawyer,40067.1,,3,6,11,100,Debt Consolidation Loan,5.121874024,8,10.33,0,_,999.8621045,25.59120415,32 Years and 5 Months,No,18.86285317,99.20852414,High_spent_Medium_value_payments,469.2646329,0,-0.5073,0.5777,-0.4968,-0.1633,-1.0962 -0xc451,CUS_0x71bc,August,35,432-65-2200,Engineer,31004.1,,9,7,25.06745738,5,"Personal Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",38.87098302,26.51401814,6.15,11,Bad,2023.297031,37.17487605,8 Years and 5 Months,Yes,77.96875781,68.48685922,Low_spent_Large_value_payments,362.591595,0,-0.3105,-0.3931,0.8217,-0.7115,-0.6134 -0xc45d,CUS_0x1968,August,18,259-84-4594,Accountant,7588.46,,9,9,29,5,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",21.37050497,17.22973533,26.46,11,Bad,4446.589685,27.79662523,7 Years and 8 Months,Yes,27.10999475,82.84561824,Low_spent_Small_value_payments,246.3815537,0,0.1261,-1.0055,-0.4829,1.8572,1.9422 -0xc469,CUS_0x7238,August,41,185-47-7772,Teacher,32530.44,,10,6,25,3,"Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,20,20.29,11,Bad,1560.96,34.23827369,13 Years and 3 Months,Yes,41.29297955,53.93264313,High_spent_Medium_value_payments,448.3613773,0,-0.4021,-0.3583,1.5395,-1.5914,-1.1042 -0xc475,CUS_0xc09f,August,22,832-22-5121,Engineer,53085.12,,8,8,15,3,"Auto Loan, Mortgage Loan, and Payday Loan",18.28245888,10,11.95,17,Standard,1918.192545,35.94773989,14 Years and 4 Months,Yes,411.0639773,65.81592747,High_spent_Large_value_payments,476.3141454,0,3.1594,-0.075,0.698,-0.7949,-2.8136 -0xc481,CUS_0x94ea,August,53,415-55-2149,Mechanic,160664.8,13235.73333,3,5,7,1,Mortgage Loan,6.084459088,5.713751454,11.76,7,Good,276.3356758,30.23591,21 Years and 6 Months,No,123.7901742,514.5870251,High_spent_Medium_value_payments,935.196134,0,-1.9621,1.8039,1.251,-0.6394,-0.4353 -0xc48d,CUS_0xbd32,August,33,722-77-7445,Scientist,34617.12,,7,7,33,6,"Not Specified, Payday Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Auto Loan",,22.11145221,11.4,,Standard,1773.196862,31.60140974,13 Years and 9 Months,Yes,94.90687019,133.4418778,Low_spent_Small_value_payments,332.127252,0,0.4408,-0.7851,-1.488,0.6766,-0.7789 -0xc499,CUS_0x48a4,August,38,977-59-9173,Teacher,133779.72,,0,5,2,1,Debt Consolidation Loan,0.522114085,2,8.06,2,Good,891.64,30.88234319,32 Years and 6 Months,No,92.93776256,239.6727778,High_spent_Small_value_payments,1026.92046,0,-0.1585,-1.8037,-1.0469,-0.2357,1.0476 -0xc4a5,CUS_0x4a6,August,26,879-08-8721,Entrepreneur,104744.88,,1,4,8,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Mortgage Loan",14.34166873,9.537801477,6.69,3,_,796.3088065,29.25531472,27 Years and 5 Months,No,195.0234166,177.2764797,!@9#%8,776.6741038,0,0.4108,0.0111,-0.565,0.891,0.6893 -0xc4b1,CUS_0x4a43,August,24,586-22-7224,Media_Manager,54889.92,,6,3,17,6,"Payday Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, and Student Loan",17.19086764,9.604004768,16.48,5,Standard,1737.38352,27.85087705,11 Years and 10 Months,Yes,147.0473711,84.49761292,High_spent_Medium_value_payments,469.671016,0,-0.0183,-0.7114,0.4062,2.0349,1.0481 -0xc4bd,CUS_0xad1b,August,28,801-37-4228,Writer,90562.83,7299.9025,3,4,0.288361749,2,"Home Equity Loan, and Debt Consolidation Loan",4.038861805,7,6.38,2,_,1080.907967,32.33710738,17 Years and 8 Months,No,147.2207735,625.9307044,High_spent_Large_value_payments,647.1767065,0,-0.8878,0.1043,1.019,-1.633,1.1758 -0xc4c9,CUS_0x4de6,August,32,232-71-0852,Lawyer,28256.63,,7,7,5,1,Payday Loan,23.12152011,17,3.93,1,Good,59.22134968,37.02703197,22 Years and 5 Months,No,12.34245979,263.4574459,Low_spent_Medium_value_payments,288.3699905,0,0.0852,0.923,0.1317,0.0131,0.5589 -0xc4d5,CUS_0x4a3d,August,34,351-61-7995,Architect,33755.94,,6,10,22.88954781,8,"Student Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",31.53486668,18,28.85,14,_,4503.42,23.94920544,10 Years and 8 Months,Yes,1503.452039,304.1364899,Low_spent_Small_value_payments,64.68088962,0,-0.1212,-0.3123,1.7346,-0.8291,0.2103 -0xc4e1,CUS_0x3e47,August,40,818-53-8754,Doctor,62901.08,5025.756667,4,6,10,3,"Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",19.06176808,16,18.58,6,Standard,228.25,27.40360948,,Yes,81.64127029,104.5068894,High_spent_Large_value_payments,556.4275069,0,-0.1285,1.3241,-1.4816,-1.0332,-0.362 -0xc4ed,CUS_0x2064,August,20,431-84-9907,Scientist,67928.84,5832.736667,5,5,12,0,,4.508807402,8,11.22,4,Good,1219.026747,31.76130326,31 Years and 3 Months,No,0,194.423752,High_spent_Medium_value_payments,661.0176033,0,0.5578,1.3167,0.4456,-0.7781,0.316 -0xc4f9,CUS_0x26d2,August,51,321-93-4142,Architect,119848.77,10224.3975,5,2,10,1,Personal Loan,10.91027194,10,5.75,6,Good,971.0763394,31.50488337,18 Years and 2 Months,No,55.85943763,,High_spent_Large_value_payments,1069.560407,0,-0.1641,-1.2298,1.5198,0.3085,2.7169 -0xc505,CUS_0x9ee5,August,24,043-79-7391,Teacher,11426.59,,4,7,5,0,,26.08803071,15.12273913,10.56,11,Standard,504.5173438,33.5389991,17 Years and 3 Months,NM,0,103.4825359,Low_spent_Small_value_payments,280.0390474,0,1.0839,0.7918,0.6141,-0.5264,0.4191 -0xc511,CUS_0x4395,August,34,861-88-4379,Scientist,45345.12,3737.76,8,7,20.06745738,5,"Student Loan, Credit-Builder Loan, Student Loan, Not Specified, and Home Equity Loan",31.28254071,20.07929635,20.45,11,Bad,4450.912884,37.0782452,1 Years and 0 Months,Yes,142.0302559,452.2634328,Low_spent_Small_value_payments,42.76202333,0,0.3761,-0.5057,-0.2678,0.2286,-0.9952 -0xc51d,CUS_0x697f,August,40,367-66-5050,Entrepreneur,62148,4949,9,7,24,5,"Mortgage Loan, Personal Loan, Payday Loan, Personal Loan, and Home Equity Loan",55.62402127,30.26691698,9.39,12,Bad,2705.017132,28.5875444,16 Years and 11 Months,Yes,258.8488611,174.0208581,!@9#%8,322.0302808,0,0.5341,-1.4183,1.0224,-0.8286,-1.1659 -0xc529,CUS_0xc730,August,24,076-13-6508,Journalist,9608.03,735.6691667,8,1213,10.88954781,6,"Student Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",11.29893142,11,12.44,5,Standard,1494.17,31.37025172,13 Years and 10 Months,Yes,1348.951443,40.11120027,Low_spent_Small_value_payments,280.1741925,0,1.4411,1.5853,-1.3218,-0.6241,0.6044 -0xc535,CUS_0xc39d,August,35,194-07-0591,Media_Manager,167883.84,13990.32,5,6,2.288361749,0,Payday Loan,0.314870498,4,11.72,4,Good,948.18,29.36061692,30 Years and 9 Months,No,86.95168098,980.8164837,Low_spent_Medium_value_payments,1031.201296,0,0.4307,0.7885,-0.3535,1.284,0.2025 -0xc541,CUS_0x214c,August,40,551-77-8269,Musician,20877.19,,7,6,20,5,"Not Specified, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",27.4009341,20,15.69,16,Standard,1324.1,27.87158539,16 Years and 5 Months,Yes,58.02206477,155.0404193,Low_spent_Large_value_payments,234.9140993,0,-1.0331,0.9573,-3.0182,2.8164,-0.7652 -0xc54d,CUS_0x8b1f,August,53,687-84-7697,_______,58280.72,4760.726667,5,7,11.28836175,0,Home Equity Loan,,4,7.78,4,Good,407.6834337,40.47282087,31 Years and 10 Months,NM,37.41121768,,High_spent_Medium_value_payments,540.0885713,0,-1.3437,0.0893,0.9532,0.1116,1.6505 -0xc559,CUS_0x1d3d,August,48,#F%$D@*&8,Doctor,60284.16,5153.68,0,4,2,2,"Student Loan, and Home Equity Loan",0,4.546392091,4.4,9,_,1500.36255,34.32494122,30 Years and 9 Months,No,67.9295751,367.7898487,Low_spent_Large_value_payments,349.6485762,0,1.0687,-1.2291,-1.402,-0.7569,0.1118 -0xc565,CUS_0xe98,August,39,663-43-9394,Journalist,68392.18,,0,5,12,3,"Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",3.985004809,5,10.78,5,Good,622.4282946,31.81827173,27 Years and 9 Months,No,21656,533.2052944,Low_spent_Small_value_payments,269.6394932,0,0.3749,0.6617,-1.0677,-0.2353,-0.594 -0xc571,CUS_0x6e3e,August,28,951-49-3710,Writer,16189.12,1535.093333,9,8,26,5,"Not Specified, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",45.63104785,28.57790657,16.54,13,_,3434.32433,38.82332505,4 Years and 9 Months,Yes,49.58333623,128.2659449,Low_spent_Small_value_payments,265.6600522,0,0.1359,0.9643,-0.0499,-0.9402,-0.9758 -0xc57d,CUS_0x5117,August,35,825-01-6145,Journalist,77604.32,6300.026667,1,7,4.288361749,2,"Payday Loan, Payday Loan, and Debt Consolidation Loan",,14.22690009,4.51,6,Good,626.6637057,30.00538896,21 Years and 8 Months,No,153.3254139,633.2212062,High_spent_Medium_value_payments,513.3935076,0,-0.4564,-3.0151,0.2835,-1.4402,-0.1791 -0xc589,CUS_0x1087,August,51,620-14-7570,Doctor,42153.13,,5,4,10,3,"Payday Loan, Not Specified, and Payday Loan",,9,4.81,7,Good,1027.64,26.34447695,28 Years and 5 Months,No,79.29961146,80.6249024,High_spent_Small_value_payments,437.8515695,0,-0.3904,-0.7363,1.7481,-0.0744,0.6005 -0xc595,CUS_0xa7be,August,43,901-06-2888,Journalist,61503.66,4972.305,7,4,11,4,"Mortgage Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",20.59766818,19,11.89,2,Good,1020.557371,26.87289945,33 Years and 5 Months,NM,179.6433416,,High_spent_Large_value_payments,484.7865954,0,0.5274,-1.3888,1.525,0.1757,1.4239 -0xc5a1,CUS_0x10a9,August,41,514-08-4156,Journalist,17603.265,,8,6,4,0,,14.32777341,12,10.27,4,_,774.4331876,41.7925525,15 Years and 9 Months,No,102.9927716,23.34115953,High_spent_Large_value_payments,362.1593857,0,0.6474,0.4387,0.8725,0.0383,-1.2896 -0xc5ad,CUS_0x2aa8,August,33,357-25-7547,Media_Manager,97009.44,8257.12,1413,7,1.288361749,0,,,7,7.53,3,Good,416.7245048,35.816271,21 Years and 9 Months,No,0,881.7492164,High_spent_Small_value_payments,682.3720836,0,1.0083,0.2044,0.0622,1.2601,1.1377 -0xc5b9,CUS_0x6f88,August,18,791-16-1444,Writer,38126.94,3373.245,8,9,29,9,"Payday Loan, Mortgage Loan, Student Loan, Personal Loan, Home Equity Loan, Auto Loan, Auto Loan, Home Equity Loan, and Not Specified",50.95540399,28.78345789,4.13,15,Bad,1808.882042,36.03203206,,Yes,168.5211474,94.4762808,High_spent_Medium_value_payments,324.3270718,0,0.2234,-2.1915,1.0591,0.9623,0.6981 -0xc5c5,CUS_0x5ee7,August,51,674-29-2346,Developer,92127.24,7849.27,5,7,6,3,"Not Specified, Not Specified, and Credit-Builder Loan",24.25306902,,-4.75,2,Good,530.4453888,34.56317563,21 Years and 3 Months,No,175.9159443,52.51875773,High_spent_Large_value_payments,796.492298,0,0.4826,1.0509,0.2588,-0.1605,-1.6517 -0xc5d1,CUS_0x236b,August,25,575-63-7039,Manager,18393.51,1689.693737,9,10,30.06745738,5,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",33.19851614,16,21.02,10,_,2827.500954,33.20461577,4 Years and 10 Months,Yes,115.303694,,Low_spent_Large_value_payments,203.3093776,0,0.73,0.5133,1.5093,-1.7865,-2.1836 -0xc5dd,CUS_0x75ff,August,43,817-58-4886,Doctor,60040.5,5258.375,8,10,34.88954781,7,"Personal Loan, Credit-Builder Loan, Personal Loan, Personal Loan, Auto Loan, Student Loan, and Home Equity Loan",44.85574247,25.53111567,29.37,15,Bad,4340.872569,25.55369602,13 Years and 5 Months,Yes,1636.474965,10000,!@9#%8,339.3817631,0,-0.0014,-0.0641,1.2992,0.1792,0.9236 -0xc5e9,CUS_0xbf99,August,38,744-68-1419,Media_Manager,28023.75,2023.243167,5,7,18,1,Debt Consolidation Loan,23.72818095,18,14.24,7,Standard,373.1411003,33.18187825,22 Years and 0 Months,Yes,296.1038342,,High_spent_Large_value_payments,417.2885849,0,-1.5381,1.7787,-0.613,0.8239,0.8208 -0xc5f5,CUS_0x273e,August,44,564-52-2141,Writer,42811.36,3825.613333,5,3,18,4,"Personal Loan, Personal Loan, Not Specified, and Personal Loan",21.07802902,14.2239991,,5,Standard,829.8864821,28.68945475,25 Years and 10 Months,No,74.60694981,,Low_spent_Small_value_payments,134.3679064,0,1.2742,-1.2922,-0.4834,-0.5597,1.3439 -0xc601,CUS_0x1769,August,30,416-99-1698,Musician,40651.74,3238.645,3,4,3.288361749,4,"Mortgage Loan, Payday Loan, Student Loan, and Personal Loan",0,3,10.69,5,Good,208.4305643,23.5236722,30 Years and 10 Months,No,133.1009612,503.9966628,High_spent_Large_value_payments,356.4688053,0,0.4355,-0.231,1.1439,1.7047,0.4963 -0xc60d,CUS_0x41f4,August,30,622-63-2657,Manager,19129.65,,7,6,31,7,"Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Auto Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",40.56600525,19.91950761,21.36,7,Bad,3525.433653,31.71808402,8 Years and 11 Months,NM,60.15333666,,High_spent_Small_value_payments,248.5307803,0,1.2262,1.0654,0.5051,-0.3171,0.777 -0xc619,CUS_0x894e,August,38,170-66-8219,Accountant,36841.39,,0,5,3.288361749,0,Student Loan,8.192553297,10,3.16,4,_,414.56,34.73247878,16 Years and 8 Months,No,29.83576249,,High_spent_Small_value_payments,409.4225931,0,0.5655,-1.2461,0.8829,-0.5584,0.0363 -0xc625,CUS_0x42eb,August,18,161-54-7964,Writer,20616.96,,9,10,24.06745738,3,"Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",45.63306664,28.77107156,12.97,9,Bad,3304.313682,29.45996448,15 Years and 0 Months,Yes,29.75642125,122.2540352,Low_spent_Large_value_payments,279.4772556,0,1.4187,-1.2978,-1.1496,-1.4992,0.8097 -0xc631,CUS_0x1e52,August,28,767-28-6057,Media_Manager,67059.18,,8,6,18,4,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",22.92344187,18,11.57,8,Standard,221.1647252,31.98804152,6 Years and 3 Months,Yes,167.1239995,,Low_spent_Large_value_payments,174.7057842,0,-0.139,1.1314,0.3239,-0.723,0.9742 -0xc63d,CUS_0x72b7,August,36,456-62-9690,Architect,128141.19,10812.4325,4,340,3,2,"Not Specified, and Credit-Builder Loan",8.637028531,10,11.42,0,Good,198.77,40.09395259,,No,121.5777072,263.6765768,High_spent_Medium_value_payments,945.988966,0,-0.1323,0.8254,-0.1796,-0.5143,1.4314 -0xc649,CUS_0xf7d,August,27,633-98-5342,Engineer,57437.4,4916.45,9,5,31,7,"Mortgage Loan, Auto Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",33.70802935,19.23998474,15.85,7,_,2851.530419,27.15541054,9 Years and 5 Months,NM,175.0096264,,High_spent_Medium_value_payments,476.3923525,0,0.6046,1.6228,0.749,1.1929,0.5713 -0xc655,CUS_0x6579,August,18,563-27-3202,Engineer,19536.45,1611.0375,10,7,23.06745738,8,"Student Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Student Loan, Student Loan, Credit-Builder Loan, and Personal Loan",37.67782304,22.99760912,8.37,12,Bad,3072.00176,32.84647544,6 Years and 3 Months,NM,101.5647387,157.3758669,Low_spent_Medium_value_payments,155.4428565,0,-0.7399,-0.656,-0.2937,-0.8612,1.0449 -0xc661,CUS_0x6d1a,August,18,619-06-7912,Scientist,76041.16,6078.763333,6,6,15,3,"Student Loan, Mortgage Loan, and Payday Loan",10.02508417,10.83879229,15.46,11,Standard,2677.881834,40.22838158,19 Years and 3 Months,Yes,184.7226306,288.1582117,Low_spent_Large_value_payments,404.9954911,0,-1.1492,0.8262,0.4103,-0.6041,-1.9638 -0xc66d,CUS_0x24f6,August,27,557-51-8001,Manager,65017.26,5248.105,5,7,12,4,"Payday Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",5.587482967,8,7.1,5,Standard,978.14,37.43559999,31 Years and 5 Months,No,168.3919056,163.6516651,!@9#%8,442.7669292,0,-1.0956,-0.4082,-0.3305,-2.006,1.0562 -0xc679,CUS_0x90be,August,35,444-07-8109,Mechanic,10466.825,,9,10,31.06745738,4,"Payday Loan, Student Loan, Auto Loan, and Debt Consolidation Loan",35.77134613,19,8.54,9,Standard,1743.120954,29.11052704,12 Years and 4 Months,Yes,96.86755288,44.26963115,!@9#%8,237.7789259,0,0.9369,-1.2516,-0.7383,-0.1971,-0.1035 -0xc685,CUS_0x6ab5,August,21,626-07-4067,Teacher,81995.32,7087.943333,3,7,5,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Mortgage Loan",13.77581098,10,9.47,9,_,193.78,32.94783593,20 Years and 0 Months,Yes,175.9027801,634.1400912,Low_spent_Small_value_payments,188.7514621,0,-0.4119,0.4453,1.3582,-1.106,-0.5456 -0xc691,CUS_0x63b1,August,50,181-37-1532,Writer,100686.12,,6,3,9,3,"Payday Loan, Student Loan, and Auto Loan",,16,,4,Standard,91.91,29.44393772,18 Years and 10 Months,NM,234.0551774,81.99036141,High_spent_Large_value_payments,792.0054612,0,0.2702,1.7332,0.7568,-0.1394,0.0024 -0xc69d,CUS_0x804e,August,45,424-56-2527,Teacher,67749.5,5381.791667,5,6,8,2,"Student Loan, and Payday Loan",26.07603634,17,14.77,13,_,1437.3,36.37460579,8 Years and 5 Months,Yes,75.3199965,194.2859378,Low_spent_Medium_value_payments,548.5732324,0,-0.2926,0.7011,1.0439,-1.0264,0.5577 -0xc6a9,CUS_0xae42,August,56,166-16-7587,Entrepreneur,29490.49,,2,4,6,4,"Debt Consolidation Loan, Payday Loan, Payday Loan, and Auto Loan",,6,8.41,6,Good,591.33,36.22790879,31 Years and 6 Months,NM,90.93073451,117.6044139,Low_spent_Medium_value_payments,296.0189349,0,0.0895,0.1397,1.6421,0.5937,1.8861 -0xc6b5,CUS_0x4e0e,August,58,798-36-9685,Doctor,164956.96,13601.41333,1,4,1,3,"Personal Loan, Auto Loan, and Personal Loan",,6,2.01,2,Good,712.1385268,34.37884145,23 Years and 10 Months,No,335.5410252,800.9683304,Low_spent_Medium_value_payments,621.8621506,0,0.2298,-0.7186,-0.5187,1.5775,0.869 -0xc6c1,CUS_0x73cf,August,50,404-87-5996,Scientist,105308.68,8538.723333,6,4,10,3,"Payday Loan, Debt Consolidation Loan, and Credit-Builder Loan",,20.25083502,10.65,5,Good,1016.960278,28.76062552,29 Years and 5 Months,No,200.4744119,239.371936,Low_spent_Medium_value_payments,694.0259855,0,-1.2594,-1.5122,-0.1434,-0.1603,-1.4772 -0xc6cd,CUS_0xc2e8,August,40,243-24-5828,Architect,38325.88,2942.823333,3,7,22,7,"Auto Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Home Equity Loan",,22.94642358,15.88,9,Standard,2019.795972,25.24829933,9 Years and 10 Months,Yes,173.6950345,102.1846682,High_spent_Medium_value_payments,268.4026306,0,0.7039,1.6001,-0.7584,-0.1123,0.3907 -0xc6d9,CUS_0x83c3,August,45,432-73-7397,Writer,109061.96,,8,4,13,4,"Credit-Builder Loan, Not Specified, Mortgage Loan, and Payday Loan",16.31228543,11.43735205,18.09,9,Standard,1081.518719,27.83254442,16 Years and 3 Months,Yes,273.4533889,117.5718351,High_spent_Large_value_payments,764.6244427,0,1.3268,-0.6303,-0.1815,0.6121,0.7457 -0xc6e5,CUS_0x2312,August,55,308-25-6929,Manager,44708.14,3653.678333,3,169,10.28836175,0,,,1,11.55,4,Good,323.6041308,29.50893664,21 Years and 0 Months,NM,0,561.3997742,High_spent_Medium_value_payments,494.5651266,0,-1.134,0.0934,-3.0702,1.9712,-0.3012 -0xc6f1,CUS_0x73d5,August,26,282-90-3051,Journalist,66022.26,5382.855,1,4,11.28836175,2,"Payday Loan, Mortgage Loan, and Mortgage Loan",,8,10.47,7,Good,851.7663203,31.80435272,,No,94.4961378,772.3014175,Low_spent_Medium_value_payments,414.7653146,0,-1.5519,1.1551,-0.0772,0.1289,1.3821 -0xc6fd,CUS_0xaf81,August,44,759-23-7670,Entrepreneur,57180.88,4584.073333,3,4,9,0,,12.17479411,13.31459938,3.89,2,Good,1250.808874,34.86255305,19 Years and 11 Months,No,0,385.2952135,Low_spent_Medium_value_payments,353.1121198,0,0.4308,-0.0773,0.412,-1.5879,0.8523 -0xc709,CUS_0x9cd7,August,23,211-57-8303,_______,62892.92,5461.076667,7,6,33,5,"Not Specified, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",27.00447643,16.97589516,3.58,,Bad,2761.512327,25.7599137,18 Years and 2 Months,Yes,211.7964619,184.8201753,High_spent_Medium_value_payments,399.4910294,0,-1.0588,-0.8375,-0.8299,-2.2394,-1.2027 -0xc715,CUS_0x48d4,August,20,775-84-9829,Engineer,56039.7,4899.975,2,5,9,4,"Personal Loan, Auto Loan, Student Loan, and Payday Loan",14.45806327,12,7.64,4,Good,895.2,25.6743428,18 Years and 3 Months,No,128.6409987,177.3165584,High_spent_Medium_value_payments,434.039943,0,1.4187,0.0518,-0.6317,0.0755,-0.854 -0xc721,CUS_0x2c15,August,18,389-41-3683,Developer,17790.73,,9,7,23.06745738,7,"Personal Loan, Student Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Student Loan",,25,17.22,17,Bad,4596.980954,39.82194396,8 Years and 5 Months,Yes,80.71470876,37.52138308,High_spent_Medium_value_payments,251.1997035,0,0.1339,-2.0709,1.3581,0.7227,0.5341 -0xc72d,CUS_0x2ee0,August,26,372-70-7552,Media_Manager,31731.94,2629.328333,5,6,10,3,"Payday Loan, Student Loan, and Credit-Builder Loan",17.42362371,12,11.51,3,Standard,889.42,33.63265079,,No,75.00231065,81.08476234,High_spent_Small_value_payments,366.8457603,0,-0.0789,0.7479,-0.7082,-2.2765,1.4 -0xc739,CUS_0xc106,August,80,957-59-3053,Teacher,28081.94,2406.161667,5,6,2,1,Personal Loan,90,758,12.99,0,Good,209.1093006,36.46413633,20 Years and 3 Months,No,18.29235536,78.2890501,High_spent_Small_value_payments,411.2990438,0,-0.0471,0.7494,0.4382,2.5693,0.0032 -0xc745,CUS_0x8894,August,32,347-33-6352,Manager,18976.46,1481.371667,8,7,23.06745738,7,"Auto Loan, Not Specified, Home Equity Loan, Mortgage Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",31.66390522,15,27.54,10,_,4761.440954,34.18141061,1 Years and 11 Months,Yes,60.38266673,64.93729986,Low_spent_Large_value_payments,266.0969121,0,1.3845,-1.8332,0.3449,-0.9519,-0.4806 -0xc751,CUS_0x9019,August,35,748-07-9339,Architect,16748.19,1252.6825,803,5,18,2,"Auto Loan, and Mortgage Loan",34.00984693,26.43657658,13.85,10,Standard,1736.045895,29.88302095,17 Years and 2 Months,Yes,14.3196618,28.9337833,High_spent_Large_value_payments,322.0148049,0,-0.5686,0.5448,0.9218,-0.1442,-0.0441 -0xc75d,CUS_0x937d,August,34,385-63-1732,Journalist,12167.22,,5,7,15,0,,,8,7.83,7,Standard,114.520239,36.39566418,18 Years and 2 Months,NM,97.31708751,162.3208636,Low_spent_Small_value_payments,267.403544,0,1.4289,-1.8794,0.5092,1.0502,1.2583 -0xc769,CUS_0xade3,August,49,#F%$D@*&8,Entrepreneur,165076.44,13822.37,1,6,2.288361749,2,"Personal Loan, and Credit-Builder Loan",,2,6.71,5,_,712.94,44.04352058,18 Years and 6 Months,No,273.1747174,614.9079619,High_spent_Medium_value_payments,1164.091782,0,0.0749,-0.6282,-0.0452,0.2725,0.4735 -0xc775,CUS_0x4d9c,August,29,059-80-7682,Manager,69753.12,,6,10,27,2,"Not Specified, and Payday Loan",30.64593523,21.87151442,7.92,7,Bad,2843.95907,27.20352766,14 Years and 4 Months,Yes,94.17278444,275.9519279,High_spent_Small_value_payments,442.0512876,0,0.322,0.8814,-0.5046,-0.5188,0.7688 -0xc781,CUS_0x98a,August,40,714-91-7378,Entrepreneur,20524.7,1791.391667,10,10,25.95700519,9,"Mortgage Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Payday Loan, Not Specified, Mortgage Loan, and Auto Loan",,28.30682779,8.86,12,Bad,4817.820256,36.10257635,8 Years and 11 Months,Yes,1403.28251,108.070193,High_spent_Small_value_payments,206.7360947,0,0.553,-0.3611,0.822,-0.2722,1.814 -0xc78d,CUS_0x2c2d,August,29,#F%$D@*&8,Mechanic,101173.8,,4,3,13,2,"Credit-Builder Loan, and Debt Consolidation Loan",4.462346276,8,8.09,4,Standard,85.31,42.60181794,20 Years and 6 Months,No,142.7062527,155.8640553,High_spent_Small_value_payments,775.644692,0,-0.4887,-0.9702,-1.1546,-1.5741,0.508 -0xc799,CUS_0xb471,August,43,091-55-3723,Developer,17638.12,1371.838441,4,5,31,7,"Auto Loan, Mortgage Loan, Auto Loan, Personal Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",19.55843442,16.30543282,18.06,11,Standard,2324.046205,36.5294587,16 Years and 2 Months,Yes,78.68786211,96.2896377,Low_spent_Medium_value_payments,262.0117254,0,0.0206,-1.2157,-0.0675,1.0964,-0.3697 -0xc7a5,CUS_0xb4c5,August,52,873-29-1123,Journalist,61358.82,4923.235,7,7,13.28836175,0,,18.3096373,16,5.99,3,Standard,537.91,26.92478958,,No,0,,High_spent_Large_value_payments,694.8497158,0,1.1006,-0.001,0.6229,-0.3134,-0.7358 -0xc7b1,CUS_0x510d,August,28,056-29-1977,Architect,38212.84,3306.403333,8,10,23.88954781,8,"Auto Loan, Not Specified, Not Specified, Auto Loan, Mortgage Loan, Home Equity Loan, Payday Loan, and Personal Loan",35.85213069,24,0.4,8,_,1384.44,39.76695194,8 Years and 4 Months,Yes,1472.148169,138.7142949,High_spent_Medium_value_payments,275.4477878,0,1.9014,0.9111,0.2815,0.3706,-0.0256 -0xc7bd,CUS_0x4f2a,August,40,807-03-5415,Engineer,22136920,,1,6,1,2,"Auto Loan, and Not Specified",,6,9.49,6,_,995.2756155,38.2785182,22 Years and 10 Months,No,196.5873212,386.0705478,High_spent_Medium_value_payments,758.1550423,0,0.8233,-0.305,-0.1895,-0.7795,-1.0842 -0xc7c9,CUS_0xb7d4,August,45,621-69-4420,Developer,147521.76,12586.48,1,1,1.288361749,0,Credit-Builder Loan,0,2,0.57,7,Good,90.35869285,27.93139828,18 Years and 4 Months,No,122.3425952,1521.171402,!@9#%8,421.3358752,0,0.0476,-0.2374,0.1807,-0.5471,-0.0865 -0xc7d5,CUS_0x3121,August,36,709-67-5219,Entrepreneur,42847.79,,4,7,2,100,"Home Equity Loan, and Credit-Builder Loan",,7,9.81,9,Good,164.7554888,40.5132142,21 Years and 2 Months,No,52.27619537,,High_spent_Large_value_payments,535.8641136,0,-0.32,-0.3432,0.0731,0.0237,1.2548 -0xc7e1,CUS_0xc3cd,August,18,398-19-9402,Musician,36818.29,,6,6,11,7,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Not Specified, Not Specified, and Home Equity Loan",9.396652569,9,19.92,7,Standard,563.84,38.52085749,13 Years and 6 Months,Yes,195.5092874,323.9156268,Low_spent_Small_value_payments,71.29416912,0,0.0121,0.9569,1.6992,-1.9349,0.1142 -0xc7ed,CUS_0x6191,August,41,714-80-5369,_______,20171.07,,9,7,26,7,"Payday Loan, Auto Loan, Personal Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",,32.1835299,17.81,12,Bad,3193.966015,37.63108639,3 Years and 9 Months,Yes,72.12381186,114.4481973,Low_spent_Small_value_payments,299.7202409,0,0.4095,-0.4046,0.9212,-0.9351,-1.3701 -0xc7f9,CUS_0xa65,August,45,156-18-7147,Architect,51647.07,,6,8,19.88954781,100,"Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",,,12.46,15,Standard,2429.698799,40.48303326,10 Years and 4 Months,Yes,1441.210511,232.5921041,Low_spent_Small_value_payments,352.4595536,0,0.6611,0.8287,0.6185,0.4219,1.0854 -0xc805,CUS_0xaf4c,August,48,056-43-1372,Architect,43787.09,,1,3,1,0,,5.607157578,7,6.75,2,Good,615.05,40.62087622,18 Years and 6 Months,No,0,94.8887177,!@9#%8,492.503699,0,1.0272,0.8019,0.7839,-1.2859,-0.1452 -0xc811,CUS_0x90cf,August,53,058-50-1241,Media_Manager,106234.11,8699.8425,4,5,16,1495,"Student Loan, Credit-Builder Loan, and Home Equity Loan",19.81120066,17,11.21,4,Standard,939.4,36.00942238,,No,201.1134901,625.8471561,Low_spent_Large_value_payments,313.0236038,0,1.2498,1.7363,0.2672,-0.3615,1.067 -0xc81d,CUS_0x686c,August,36,666-90-8248,Developer,10143.89,684.3241667,4,7,15.06745738,3,"Payday Loan, Debt Consolidation Loan, and Mortgage Loan",27.46529885,19,9.67,12,Standard,1230.739261,29.52817261,20 Years and 5 Months,Yes,22.88653282,,High_spent_Small_value_payments,254.3884724,0,1.2717,0.1818,-0.3518,0.2455,0.2175 -0xc829,CUS_0xad30,August,27,777-21-8079,Scientist,38076.6,3059.05,10,8,24,4,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",25.32878725,,11.26,16,Bad,1784.721737,29.19599192,6 Years and 3 Months,Yes,120.2991342,79.24473992,High_spent_Large_value_payments,346.3611259,0,1.79,-1.3075,0.1389,1.8553,-0.1943 -0xc835,CUS_0x58c5,August,27,780-95-9123,Lawyer,77677.38,6476.115,3,7,7,2,"Not Specified, and Payday Loan",,12,8.42,1833,Standard,78.81795497,40.70796734,27 Years and 3 Months,No,118.6305429,584.1508443,Low_spent_Small_value_payments,289.2051094,0,-0.5889,0.967,-0.1164,-0.9213,-0.3409 -0xc841,CUS_0x60c8,August,45,051-56-0904,Entrepreneur,48052.7,4266.391667,4,5,17,2,"Payday Loan, and Student Loan",26.68306114,19,15.89,7,Standard,346.41,29.1282356,10 Years and 2 Months,Yes,59.89857017,68.07389413,High_spent_Large_value_payments,538.6667024,0,0.3479,2.598,-2.2853,-0.1782,0.5776 -0xc84d,CUS_0x3aa8,August,24,730-30-0827,Engineer,20426.41,,6,5,16,5,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",,28.02251525,6.65,7,Bad,1800.645231,27.29360185,7 Years and 8 Months,Yes,57.88334831,211.7532666,Low_spent_Small_value_payments,184.3834685,0,2.0892,-0.3497,0.0576,-1.5177,0.0272 -0xc859,CUS_0x8a89,August,50,524-13-7174,Musician,152895.44,,0,5,4.288361749,2,"Not Specified, and Not Specified",8.809041783,9,,1,_,205.4430919,40.07397183,19 Years and 9 Months,NM,245.552918,699.7882691,High_spent_Large_value_payments,1022.224649,0,1.602,-0.1094,-0.4166,-2.417,0.0972 -0xc865,CUS_0xc190,August,26,876-14-5901,Developer,48537.12,3810.76,9,5,24.06745738,7,"Payday Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",46.98653552,24.02076383,6.39,13,Bad,4005.667135,39.27669234,10 Years and 9 Months,NM,255.5173338,,!@9#%8,270.9394406,0,1.5209,-0.6845,-1.6163,0.8976,-1.4758 -0xc871,CUS_0x9eb6,August,24,590-47-8337,Accountant,166692,13599,0,2,4,4,"Mortgage Loan, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",1.836565877,6,4.54,4,Good,779.1167718,24.00722982,23 Years and 10 Months,No,533.5631965,1289.652336,Low_spent_Medium_value_payments,,0,-0.3389,2.1163,0.0657,-0.5103,-0.2263 -0xc87d,CUS_0x56d3,August,19,869-43-5002,Media_Manager,16916.38,,3,7,24.06745738,5,"Debt Consolidation Loan, Not Specified, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",,20.42434521,12.77,13,Standard,2081.63157,40.43719368,,Yes,57.36799441,10000,High_spent_Small_value_payments,277.5856056,0,0.3404,1.2147,0.864,1.0646,3.0911 -0xc889,CUS_0x5105,August,51,834-61-1097,Mechanic,80191.38,6293.827869,2,3,3,4,"Student Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",0.599021884,4,11.94,7,Good,1269.969706,25.20188087,27 Years and 8 Months,No,762.638055,379.9834829,Low_spent_Small_value_payments,477.8661642,0,-0.7316,-0.333,1.0456,0.8535,-0.4579 -0xc895,CUS_0xabf0,August,39,831-41-5115,Manager,62428.53,5330.3775,10,8,18.95700519,6,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",50.9096589,31.12376499,21.38,9,Bad,4633.691701,25.94251828,,Yes,1569.094703,203.2014104,High_spent_Medium_value_payments,289.6912674,0,-0.9729,-1.0567,0.5701,-0.4383,0.045 -0xc8a1,CUS_0x2c34,August,18,748-96-2438,Scientist,86492.88,7075.74,7,5,16.28836175,2,"Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",14.87831984,,5.16,1,Standard,269.63,39.14468572,30 Years and 8 Months,No,172.3465509,644.7709876,High_spent_Medium_value_payments,560.3939225,0,-1.323,-1.0232,-0.0938,0.6478,-0.9678 -0xc8ad,CUS_0x8593,August,28,738-92-6385,Scientist,122490.3,10090.525,1,2,7.288361749,0,,15.8784091,15,0.7,2,Good,874.85,33.39595131,32 Years and 3 Months,No,0,557.3984115,High_spent_Medium_value_payments,1121.591549,0,-1.212,-1.4556,-1.0564,-0.7351,1.6096 -0xc8b9,CUS_0x30ae,August,22,808-52-5403,Scientist,40512,3091,8,8,15.88954781,9,"Payday Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",35.25167778,22.6982819,22.04,10,_,4565.910292,34.88176273,13 Years and 10 Months,Yes,1492.969945,118.4236274,Low_spent_Small_value_payments,293.3763466,0,0.8549,1.2981,0.0607,1.6209,-0.4827 -0xc8c5,CUS_0x533b,August,43,720-31-3769,Musician,21265.79,,6,6,5,2,"Debt Consolidation Loan, and Student Loan",25.62067414,17,10.99,2,Standard,515.14,32.88791846,21 Years and 5 Months,NM,19.35336205,10000,High_spent_Medium_value_payments,392.3807543,0,0.1913,0.4497,0.4408,0.6747,-0.4826 -0xc8d1,CUS_0x3b22,August,22,825-82-8472,Engineer,48179.67,4047.9725,3,3,13,3,"Not Specified, Auto Loan, and Not Specified",14.057739,10,12.08,5,Standard,2346.34,40.98786298,14 Years and 8 Months,NM,89.97133651,68.28476317,High_spent_Medium_value_payments,496.5411503,0,-0.286,-0.9603,0.4638,0.336,0.6286 -0xc8dd,CUS_0x46c3,August,52,299-88-0862,Entrepreneur,16257.915,,3,7,2,0,,20.3695949,16,4.03,3,Standard,1340.504853,35.22785144,22 Years and 2 Months,No,0,52.63325133,High_spent_Medium_value_payments,347.2375305,0,-0.7515,-0.033,-0.4256,-0.9468,0.237 -0xc8e9,CUS_0xa2c1,August,56,264-85-9135,_______,35094.85,2968.570833,0,3,6,2,"Auto Loan, and Auto Loan",0,3,8.41,1,Good,968.42,39.9999417,26 Years and 5 Months,No,37.44772466,,High_spent_Small_value_payments,361.3380767,0,-1.8116,0.3841,-0.2784,0.6693,2.0218 -0xc8f5,CUS_0xa294,August,55,527-12-0695,Teacher,39558.72,,9,7,13,3,"Home Equity Loan, Credit-Builder Loan, and Student Loan",14.41875866,9,9.5,4,Standard,957.41,25.83700339,19 Years and 6 Months,Yes,89.41511036,141.2167061,Low_spent_Large_value_payments,343.7241836,0,-0.0269,-1.6999,1.469,-0.6918,1.3881 -0xc901,CUS_0x8a63,August,35,945-10-6206,Media_Manager,85172.7,6428.92952,1,3,2.288361749,0,Home Equity Loan,,10,3.63,7,Good,345.8865093,28.5862389,20 Years and 4 Months,No,593.5502399,,Low_spent_Large_value_payments,707.5212035,0,-0.2677,-0.3734,-0.5215,-0.5367,1.2858 -0xc90d,CUS_0x8d5e,August,22,360-78-4610,Musician,33189.56,3030.796667,122,7,32,8,"Personal Loan, Student Loan, Payday Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",30.37933739,17.97623926,4.47,15,Bad,4688.67131,30.09014368,10 Years and 10 Months,Yes,195.2795765,246.9926721,Low_spent_Large_value_payments,130.8074181,0,-0.3237,0.0984,-0.6072,0.6873,0.0726 -0xc919,CUS_0x80bb,August,22,246-41-3277,Engineer,18998.52,1761.21,6,10,26.95700519,9,"Payday Loan, Not Specified, Student Loan, Not Specified, Personal Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Auto Loan",22.8545621,,6.5,13,Bad,5272.412331,32.28599428,8 Years and 0 Months,Yes,1461.191186,163.2241977,Low_spent_Large_value_payments,100.6552474,0,0.3146,-1.4993,0.4591,1.3275,0.1644 -0xc925,CUS_0x3e73,August,43,935-36-8161,Developer,21591.9,,4,3,1,4,"Student Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,17,4.59,8,Standard,618.8485493,32.50370985,31 Years and 8 Months,No,62.81359026,,Low_spent_Small_value_payments,253.4057226,0,-0.0709,0.5909,-0.999,-0.7043,0.7816 -0xc931,CUS_0x3fe8,August,46,289-73-0089,Teacher,55062.87,4801.5725,10,8,18.88954781,6,"Home Equity Loan, Personal Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Student Loan",,17.62664431,4.01,1104,Bad,1787.731543,41.57609589,,Yes,1466.344561,72.52697701,High_spent_Medium_value_payments,496.955631,0,0.4883,0.0481,-0.7457,1.1438,-0.395 -0xc93d,CUS_0x8998,August,51,886-31-5570,Accountant,85768.98,,2,1,7.288361749,0,,0,1,3.25,2,Good,681.5271864,29.04427231,23 Years and 5 Months,No,0,1150.292504,Low_spent_Medium_value_payments,335.9345021,0,-1.1341,0.4664,0.7024,-0.1405,-0.2763 -0xc949,CUS_0x82e5,August,22,342-77-9174,_______,15116.91,1005.7425,5,2,10,100,"Student Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Not Specified, and Auto Loan",,16,13.84,9,Standard,391.93,27.06926445,16 Years and 2 Months,Yes,75.32554729,,High_spent_Large_value_payments,243.1694624,0,1.4947,1.5603,0.9919,-1.0063,-0.1468 -0xc955,CUS_0x23f3,August,37,817-24-5272,Lawyer,19054.15,,3,3,18.06745738,6,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Student Loan, and Not Specified",18.09828193,10.60758803,15.61,8,Standard,2547.085817,25.86252962,12 Years and 5 Months,Yes,86.85026831,151.0119481,Low_spent_Medium_value_payments,172.2020789,0,1.2199,-1.3279,-0.8735,-0.9127,-1.3111 -0xc961,CUS_0x8d3,August,18,561-11-9757,Writer,20661.14,,8,8,18.88954781,7,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",9.842703588,9,20.29,6,Standard,1870.54,32.16299413,19 Years and 11 Months,Yes,1403.995297,,Low_spent_Small_value_payments,269.7497994,0,0.383,0.4341,-0.1452,0.5927,-0.7722 -0xc96d,CUS_0x994c,August,45,592-27-7551,Manager,50063.36,3574.256592,5,7,9,4,"Auto Loan, Mortgage Loan, Student Loan, and Not Specified",18.75170958,15,3.38,3,Standard,543.9598059,38.44330079,24 Years and 4 Months,NM,463.0696879,136.7507674,Low_spent_Medium_value_payments,424.4367575,0,1.3162,1.1727,-0.6234,-0.6853,0.0796 -0xc979,CUS_0xc566,August,80,703-64-8535,Teacher,127118.72,10850.22667,5,4,7,4,"Mortgage Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",19.04572273,13,10.27,3,_,853.09,29.1385929,22 Years and 11 Months,NM,247.2106191,390.8619585,High_spent_Medium_value_payments,696.950089,0,1.0558,0.5224,0.4612,0.2155,-1.4184 -0xc985,CUS_0x8109,August,25,845-68-5410,Musician,179068.04,14978.33667,5,6,6,4,"Mortgage Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",,12.59591359,11.86,2,Good,552.6927487,37.12567508,17 Years and 9 Months,No,501.2124042,364.4749586,High_spent_Large_value_payments,872.1463039,0,-1.4006,2.0986,0.3895,0.0252,0.4508 -0xc991,CUS_0xaf3a,August,34,078-94-7620,Mechanic,58110.06,,8,8,30.88954781,6,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",46.63818738,22.54621136,6.26,8,Bad,1789.89985,34.00485746,14 Years and 2 Months,Yes,1600.971596,,Low_spent_Medium_value_payments,139.5143166,0,0.2664,-0.4719,-0.7188,-0.2413,-0.8165 -0xc99d,CUS_0x10b3,August,48,293-45-3004,Mechanic,136150.6,11127.88333,1,5,9,3,"Student Loan, Student Loan, and Auto Loan",1.218509647,3,10.72,3,_,238.9777673,35.95859451,27 Years and 4 Months,NM,177.6540722,1507.186603,Low_spent_Small_value_payments,,0,0.8761,-0.2677,1.0043,0.2727,-1.957 -0xc9a9,CUS_0x86a,August,37,588-91-6598,Doctor,59072.52,4824.71,832,9,28.88954781,6,"Not Specified, Debt Consolidation Loan, Student Loan, Payday Loan, Mortgage Loan, and Not Specified",,20.67353518,19.2,13,_,3125.4991,31.76780845,10 Years and 8 Months,Yes,1542.990442,93.04907134,High_spent_Large_value_payments,392.1014051,0,0.5656,1.0795,1.1848,0.6791,-1.4364 -0xc9b5,CUS_0x423c,August,26,735-93-2088,Architect,26976.43,2525.035833,7,7,7,4,"Mortgage Loan, Personal Loan, Payday Loan, and Not Specified",15.32609584,10,15.26,3,_,377.8197695,27.8051168,,Yes,62.53029961,48.47987286,High_spent_Medium_value_payments,396.8831336,0,0.8923,0.9372,-0.5813,0.2304,-1.2914 -0xc9c1,CUS_0x5b28,August,19,806-77-5618,Teacher,72637.48,6064.123333,6,5,4751,4,"Not Specified, Credit-Builder Loan, Home Equity Loan, and Auto Loan",23.05804128,16.88282763,8.41,10,_,2164.466036,36.92508106,11 Years and 9 Months,Yes,174.4273555,152.7338244,High_spent_Large_value_payments,519.2511534,0,0.0555,0.2913,0.2142,-0.552,0.872 -0xc9cd,CUS_0xae4b,August,44,357-08-4783,Teacher,10952.32,631.733362,6,4,6,1,Debt Consolidation Loan,21.19796528,16,17.64,9,Standard,1270.54,28.46932502,24 Years and 5 Months,No,65.87314109,88.60898023,Low_spent_Small_value_payments,262.4471834,0,1.0298,-0.2882,0.9821,-1.6554,-1.4206 -0xc9d9,CUS_0x7977,August,23,974-79-8370,Teacher,121223.96,9864.996667,5,7,3,0,,,,3.36,2,_,1338.42,38.63633312,19 Years and 6 Months,No,68575,831.6646992,Low_spent_Medium_value_payments,434.8349675,0,-0.8178,1.1355,1.044,1.1655,1.0609 -0xc9e5,CUS_0xc7c,August,21,188-41-5955,Entrepreneur,23917.38,,7,4,6,3,"Personal Loan, Debt Consolidation Loan, and Auto Loan",,16,9.98,2,Standard,888.53,28.11501393,29 Years and 10 Months,Yes,35.50828907,46.87031082,Low_spent_Large_value_payments,360.0329001,0,1.0619,0.3625,0.2553,-0.3178,0.7755 -0xc9f1,CUS_0x4a94,August,41,515-69-0297,Architect,9093.815,782.8179167,3,4,27,100,"Payday Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Personal Loan, Personal Loan, and Home Equity Loan",22.28200076,16.83884956,8.46,9,Standard,2070.310499,36.20546952,16 Years and 9 Months,Yes,49.26630707,58.37763071,Low_spent_Small_value_payments,260.6378539,0,-0.175,0.6291,0.5892,0.9507,-0.2528 -0xc9fd,CUS_0x1134,August,49,#F%$D@*&8,Doctor,15279.545,1517.791627,0,5,7.288361749,2,"Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",,4,6.99,7,Good,145.8541223,26.68114621,30 Years and 10 Months,No,76.53930322,,!@9#%8,349.8139285,0,-0.8873,0.4053,0.0797,0.0393,0.6636 -0xca09,CUS_0xbfb4,August,37,885-74-8162,Media_Manager,17983.02,1522.585,5,6,9,4,"Payday Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",,1,4.92,5,Good,349.0097063,27.75004027,23 Years and 2 Months,No,36.67945595,,Low_spent_Large_value_payments,245.7629765,0,-0.5265,0.2967,-0.5853,0.066,-0.5008 -0xca15,CUS_0x7884,August,42,438-88-2167,Developer,17562.41,,7,9,31,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",35.42396942,21.32720783,8.94,8,Standard,2467.659074,28.66828701,,Yes,46.13293785,85.32295551,Low_spent_Large_value_payments,306.8975233,0,0.2781,-0.4261,-0.0151,0.636,-1.1369 -0xca21,CUS_0x9b30,August,23,497-57-8631,Architect,61793.46,,10,8,35.06745738,5,"Payday Loan, Auto Loan, Student Loan, Mortgage Loan, and Payday Loan",43.94446449,27.0786121,21.92,12,Bad,4323.05016,28.08826678,6 Years and 8 Months,Yes,257.445742,124.2370064,!@9#%8,368.1424637,0,-0.0907,0.8347,0.31,-1.582,2.598 -0xca2d,CUS_0x302f,August,30,971-08-8220,Accountant,88714.41,7504.8675,4,4,11.28836175,100,Mortgage Loan,0,3,9.12,3,Good,573.6727568,21.91742998,16 Years and 0 Months,No,47.81724752,1028.461413,High_spent_Small_value_payments,446.3417113,0,0.3465,-0.7227,-0.8138,-0.1318,-0.4554 -0xca39,CUS_0xaa8c,August,24,308-59-4171,Doctor,24713.49,2049.4575,3,3,17,100,,12.23057823,8,-4.22,4,Standard,106.33,34.79024831,32 Years and 11 Months,Yes,0,45.75416107,High_spent_Medium_value_payments,409.1915889,0,0.5022,0.1762,0.5877,-1.1884,-1.0818 -0xca45,CUS_0x93c8,August,37,549-93-1720,Manager,53935.11,4590.5925,7,10,24,5,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",,27.96320596,27.22,12,_,5136.593976,29.17206666,11 Years and 0 Months,NM,190.119287,,High_spent_Small_value_payments,220.9000394,0,0.3947,0.2936,0.096,-0.4703,0.229 -0xca51,CUS_0xacca,August,24,822-50-8118,Architect,38600.74,,6,7,28.06745738,7,"Personal Loan, Student Loan, Payday Loan, Auto Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",38.83356126,22,7.47,11,Bad,4687.960954,31.27975497,1 Years and 8 Months,Yes,145.659311,74.4447306,High_spent_Large_value_payments,334.2485038,0,-1.6879,-1.7995,-1.3917,0.2817,-0.1112 -0xca5d,CUS_0x3364,August,36,839-41-9606,Accountant,14132.32,,6,9,35.06745738,8,"Not Specified, Home Equity Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",,19.1613403,23.75,,Bad,5469.010296,37.47459138,1 Years and 10 Months,Yes,51.74926525,,Low_spent_Small_value_payments,176.6647658,0,1.1125,0.6761,-2.0199,-0.8505,-0.4431 -0xca69,CUS_0x90f0,August,36,996-57-7443,Teacher,28010.02,,9,7,27.06745738,4,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",,17.12245091,5.33,13,Bad,2187.62281,34.9897816,10 Years and 11 Months,Yes,49.87501653,140.4708915,Low_spent_Small_value_payments,280.1506373,0,-1.6907,-1.2995,-1.1215,-0.444,-0.3278 -0xca75,CUS_0xabf2,August,18,009-06-4377,Engineer,41781.42,3217.785,8,7,31,8,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Personal Loan",45.33623262,25,6.37,8,Bad,1570.42,32.62026378,9 Years and 2 Months,Yes,226.5679369,,High_spent_Medium_value_payments,258.8684639,0,-0.908,-0.3343,-0.0112,0.6223,0.7858 -0xca81,CUS_0xb413,August,23,235-59-4475,Musician,75454.2,6445.85,5,1497,8,4,"Credit-Builder Loan, Payday Loan, Auto Loan, and Payday Loan",7.873096684,9,9.51,5,Good,1270.920869,30.95888838,32 Years and 6 Months,No,247.2188065,497.6040211,Low_spent_Medium_value_payments,244.3314426,0,-0.183,-0.4835,-0.8175,1.6645,-0.4682 -0xca8d,CUS_0x7b27,August,18,590-91-2232,Lawyer,57858.3,4868.525,6,6,25,5,"Mortgage Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",28.01452995,21,19.39,9,Standard,2298.46,29.61275991,10 Years and 0 Months,Yes,226.7060075,304.4367754,Low_spent_Large_value_payments,225.7097171,0,-0.2758,-1.2241,-0.4648,1.2518,0.4126 -0xca99,CUS_0xb138,August,18,787-35-4659,Architect,19966.31,,6,1123,34.06745738,9,"Auto Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",,19,27.36,6,_,3008.860954,35.1200427,5 Years and 5 Months,Yes,135.3946781,,Low_spent_Small_value_payments,175.2364653,0,0.6956,-0.3285,-0.3579,-0.0323,1.0458 -0xcaa5,CUS_0x1220,August,31,#F%$D@*&8,Architect,128494.52,10580.87667,4,4,8.288361749,2,"Student Loan, and Mortgage Loan",0,0,10.33,3,Good,639.5457537,30.31780762,28 Years and 8 Months,No,176.9046097,11501.65989,High_spent_Large_value_payments,995.2348626,0,0.9789,1.5848,-0.5004,-1.8621,-0.3671 -0xcab1,CUS_0xabff,August,28,270-03-5678,Doctor,97881.44,8138.786667,5,7,4,3,"Not Specified, Credit-Builder Loan, and Mortgage Loan",,12,1.01,3,Good,1263.584981,36.74247568,27 Years and 0 Months,No,217.4601966,433.3752069,Low_spent_Medium_value_payments,491.4969744,0,0.4498,2.0486,0.3212,0.9687,0.5968 -0xcabd,CUS_0xb3ab,August,38,927-37-9220,Mechanic,33492.57,2348.297189,7,4,20,2,"Credit-Builder Loan, and Mortgage Loan",14.30047845,11,9.55,10,Standard,1183.604466,28.62029272,7 Years and 8 Months,NM,396.7141693,258.3843702,Low_spent_Small_value_payments,274.1928184,0,0.8818,-2.4288,-0.6477,0.6483,-2.6649 -0xcac9,CUS_0x8b4,August,23,046-73-4372,Journalist,32239.36,,4,6,4223,1,Student Loan,0,3,1.31,8,_,735.5761892,39.9802103,33 Years and 4 Months,No,18.53861236,81.42734305,Low_spent_Large_value_payments,447.0979184,0,-1.0807,-0.8347,-0.8219,-0.255,1.0968 -0xcad5,CUS_0x6939,August,34,633-98-1570,Accountant,14822.81,,8,7,17.06745738,6,"Auto Loan, Personal Loan, Payday Loan, Auto Loan, Personal Loan, and Payday Loan",36.46430688,25,26.48,12,Bad,3144.570954,30.12834945,8 Years and 5 Months,NM,51.83455348,,Low_spent_Small_value_payments,234.3347856,0,0.5188,0.1646,0.9766,-0.093,0.7632 -0xcae1,CUS_0x89d3,August,28,#F%$D@*&8,Accountant,7711.54,,8,7,25.06745738,9,"Not Specified, Home Equity Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, and Mortgage Loan",,,17.27,7,Bad,3451.13715,39.18189921,3 Years and 2 Months,Yes,44.85358883,32.46297714,Low_spent_Small_value_payments,263.9259794,0,0.8967,-0.594,0.6499,1.8092,0.7325 -0xcaed,CUS_0x976a,August,29,429-46-2010,Mechanic,122069.01,,4,5,5.288361749,4,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",,11,5.71,4,Good,883.42,32.01572575,,No,276.6254904,828.6481676,!@9#%8,576.205553,0,-0.9447,0.6453,0.6427,0.5777,1.8475 -0xcaf9,CUS_0x76dc,August,41,#F%$D@*&8,Mechanic,21088.46,,933,7,8,2,"Debt Consolidation Loan, and Credit-Builder Loan",10.67593289,11,4.85,0,Good,733.4018184,34.01591325,31 Years and 4 Months,No,33.44654409,143.903393,Low_spent_Large_value_payments,265.0846663,0,0.3527,0.1551,0.8049,-1.0169,0.3806 -0xcb05,CUS_0x13eb,August,30,110-23-1785,Journalist,9335.19,844.9325,7,564,26,6,"Mortgage Loan, Payday Loan, Student Loan, Payday Loan, Credit-Builder Loan, and Student Loan",,22.32518206,18.18,12,Standard,2084.626952,36.57530166,13 Years and 10 Months,Yes,41.49926737,82.41954502,Low_spent_Small_value_payments,250.5744376,0,0.0455,0.2444,-0.8232,0.8317,1.7176 -0xcb11,CUS_0x8447,August,32,457-60-5836,Media_Manager,17004.86,1231.071667,10,10,19.06745738,2,"Personal Loan, and Payday Loan",23.51963176,16,3.49,12,_,1485.000954,34.37609426,13 Years and 0 Months,Yes,25.02276876,70.63354517,Low_spent_Medium_value_payments,280.7305648,0,0.6175,-1.3038,2.3048,-1.7275,0.5548 -0xcb1d,CUS_0xa46c,August,45,372-17-9242,Teacher,54876.2,4760.016667,3,4,7.288361749,4,"Payday Loan, Credit-Builder Loan, Student Loan, Auto Loan, and Not Specified",,14,11.01,7,Standard,310.47,29.11415344,14 Years and 10 Months,Yes,145.624243,601.2404653,High_spent_Medium_value_payments,399.0744194,0,0.7115,-0.2177,-0.5929,0.7423,-0.6223 -0xcb29,CUS_0x6c27,August,22,297-05-8610,Journalist,56797.38,4784.115,6,4,18,5,"Mortgage Loan, Personal Loan, Not Specified, Student Loan, and Personal Loan",21.10092148,16.9594121,10.72,12,_,2493.647708,35.35651412,16 Years and 6 Months,NM,141.7218354,171.5219391,Low_spent_Small_value_payments,455.1677255,0,-1.082,0.7306,1.1042,1.1202,-0.6701 -0xcb35,CUS_0x2767,August,44,749-94-3595,Media_Manager,19251.265,,0,2,10,0,,3.645829249,6,10.51,2,_,199.5173496,22.69101791,27 Years and 10 Months,NM,0,85.44428596,!@9#%8,357.1512173,0,0.269,0.2689,-0.8468,-1.3398,0.8662 -0xcb41,CUS_0x487b,August,29,709-05-6923,Architect,58484.22,,8,5,16,7,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",29.53116497,21.8970133,7.95,5,Standard,2624.161137,28.92045703,12 Years and 5 Months,Yes,199.5641298,178.8934383,High_spent_Medium_value_payments,375.910932,0,-1.4124,1.9994,-2.1753,-0.9002,-0.166 -0xcb4d,CUS_0x667a,August,34,072-36-2011,Teacher,32045.78,,6,9,30.88954781,7,"Not Specified, Auto Loan, Student Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",15.54959905,14.57832448,17.19,11,Standard,1532.502148,37.51904478,6 Years and 9 Months,Yes,1493.253818,54.02723162,High_spent_Large_value_payments,266.1370358,0,-0.3951,-0.466,-0.4751,-0.4695,0.7525 -0xcb59,CUS_0x13ec,August,55,840-30-6552,Engineer,61934.52,5308.21,7,5,15,0,,,9,15.31,5,Standard,107.55,27.02541612,33 Years and 4 Months,Yes,0,117.1066162,High_spent_Medium_value_payments,663.7143838,0,0.3184,1.3414,-3.3539,0.6601,0.6041 -0xcb65,CUS_0x3a0b,August,49,618-96-2558,Writer,158871.12,12962.26,0,171,8,1,Home Equity Loan,,1,1.17,4,Good,576.48,24.75397025,19 Years and 6 Months,No,86.90586037,973.4921688,Low_spent_Large_value_payments,505.8279708,0,0.094,-1.2817,0.5048,0.1557,-0.1628 -0xcb71,CUS_0x219b,August,41,040-12-6776,Accountant,48072.27,4151.0225,7,5,15,9,"Not Specified, Not Specified, Personal Loan, Student Loan, Student Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, and Student Loan",37.37317154,18.6278976,7.37,15,Bad,1599.583311,25.83673339,7 Years and 3 Months,NM,305.0590761,84.03462657,High_spent_Large_value_payments,266.0085473,0,0.4963,0.1528,-0.8727,-0.389,1.2753 -0xcb7d,CUS_0xbf60,August,25,262-11-1783,Media_Manager,49649.73,4144.4775,7,6,25.06745738,100,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",30.45217128,17.29658546,7.57,9,Bad,2827.594898,33.83198169,6 Years and 11 Months,Yes,203.2380884,103.3376531,Low_spent_Large_value_payments,351.1517205,0,0.6434,-0.6845,-0.1187,0.3054,0.7275 -0xcb89,CUS_0x17fc,August,26,833-42-2182,Entrepreneur,71102.8,,2,1,5,0,,0.694939481,2,8.73,2,Good,719.9978562,33.22173362,21 Years and 0 Months,No,0,585.558984,Low_spent_Small_value_payments,404.5119069,0,0.0346,0.1145,0.0597,0.0443,-0.7923 -0xcb95,CUS_0x69d9,August,41,445-53-7249,Lawyer,72389.88,6020.49,4,4,15,4,"Payday Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,13,12.11,4,Standard,1144.45,37.35814985,5 Years and 10 Months,Yes,144.7824119,77.41174473,High_spent_Large_value_payments,619.8548434,0,-0.7039,0.6714,-0.7295,0.7117,0.2651 -0xcba1,CUS_0xc52c,August,26,418-53-6185,Developer,30827.58,,5,4,6,0,,20.53294547,16,0.65,4,_,687.4031863,30.05499376,26 Years and 9 Months,No,384.7002822,40.32631964,High_spent_Medium_value_payments,496.6414813,0,0.8137,-0.2581,-0.541,0.0831,-0.0605 -0xcbad,CUS_0x7d82,August,25,550-59-0151,Lawyer,19134.77,,8,5,24,7,"Credit-Builder Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Personal Loan",21.22456388,,19.18,7,_,2074.84607,36.69332708,8 Years and 6 Months,Yes,66.1584213,124.4748212,Low_spent_Medium_value_payments,270.3231742,0,-0.8169,0.5293,-1.4158,0.1661,1.0822 -0xcbb9,CUS_0xedd,August,80,888-82-5609,Engineer,125468.44,10445.70333,4,4,10,4,"Payday Loan, Credit-Builder Loan, Personal Loan, and Student Loan",,13,,4,Standard,1136.85,39.05375953,19 Years and 10 Months,Yes,338.0924087,590.0212862,High_spent_Small_value_payments,376.4566384,0,-0.8312,0.4002,0.6834,-0.9401,0.1206 -0xcbc5,CUS_0xa5e0,August,22,590-80-7797,Teacher,25312.34,1857.361667,4,7,5,2,"Mortgage Loan, and Mortgage Loan",23.83802094,19,10.54,2,_,893.13,27.40506514,20 Years and 9 Months,Yes,37.09182446,210.1289279,Low_spent_Small_value_payments,228.5154143,0,0.6544,2.383,-0.6102,-0.1544,-1.3392 -0xcbd1,CUS_0x5ede,August,28,881-30-7249,_______,11610.355,790.5295833,7,1441,16,2,"Credit-Builder Loan, and Auto Loan",,17,19.27,7,_,196.64,38.61679476,21 Years and 10 Months,Yes,18.76794286,45.14002207,Low_spent_Small_value_payments,305.1449934,0,-0.2431,0.8399,0.074,1.4305,-1.5516 -0xcbdd,CUS_0x60c3,August,51,448-88-3614,Scientist,70291.16,5428.547726,3,5,13,4,"Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",21.16248252,16,9.92,1906,Standard,386.752713,35.21794975,23 Years and 5 Months,No,623.2478902,171.6460923,!@9#%8,581.1592243,0,1.0006,-1.7667,1.0101,-1.2783,-0.7025 -0xcbe9,CUS_0x2344,August,19,709-46-6663,Doctor,54838.44,4336.87,9,5,31,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",,13.5206006,17.56,11,Standard,2305.772323,38.18248021,9 Years and 3 Months,NM,108.6263953,264.6435536,Low_spent_Small_value_payments,350.417051,0,0.5601,0.4537,-0.5378,-0.2406,1.5274 -0xcbf5,CUS_0x2803,August,34,438-68-7137,Media_Manager,37159,,5,4,15,4,"Personal Loan, Not Specified, Student Loan, and Mortgage Loan",,20,13.43,8,Standard,957.6608289,36.50958287,16 Years and 4 Months,Yes,74.6034267,30.85000358,High_spent_Large_value_payments,468.6191647,0,-0.035,0.7842,0.9828,-0.2518,0.5041 -0xcc01,CUS_0xaa35,August,39,857-42-2339,Mechanic,67703.85,5492.9875,6,4,17,2,"Home Equity Loan, and Student Loan",23.29550035,16,8.03,5,Standard,1325.112447,38.18900418,25 Years and 0 Months,No,79.79713621,316.596825,Low_spent_Large_value_payments,453.9010525,0,0.4948,-0.8415,1.4877,0.5841,0.7963 -0xcc0d,CUS_0x50df,August,36,117-43-4570,Lawyer,15845.47,1039.455833,5,10,26,6,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Payday Loan",23.60369759,16,,12,Standard,1275.75,32.67815024,6 Years and 10 Months,Yes,73.23949445,15.81314509,High_spent_Medium_value_payments,264.8929438,0,0.0207,-1.4188,3.0855,0.0882,-1.181 -0xcc19,CUS_0x2c32,August,37,329-04-9809,Mechanic,7823.985,,6,5,35.06745738,3,"Not Specified, Not Specified, and Home Equity Loan",52.93616212,28.45730855,8.53,11,Bad,2674.607194,29.36035583,14 Years and 9 Months,Yes,11.42685819,,Low_spent_Medium_value_payments,269.398375,0,-0.7977,-1.6203,-1.3364,-0.6662,-1.3558 -0xcc25,CUS_0x34b5,August,46,370-04-7463,Engineer,139383.6,,4,6,10,2,"Debt Consolidation Loan, and Personal Loan",20.70211075,14,8.14,5,_,1132.1,26.66536635,28 Years and 10 Months,No,163.1294566,,Low_spent_Small_value_payments,165.4785689,0,1.4007,1.887,-0.8403,0.6035,0.745 -0xcc31,CUS_0xbdc7,August,25,445-15-2674,Lawyer,21697.64,2088.136667,3,7,8,2,"Auto Loan, and Personal Loan",12.48078389,13,10.65,4,Standard,431.39,28.3304453,19 Years and 5 Months,Yes,36.14252866,66.43001631,High_spent_Medium_value_payments,356.2411217,0,-2.2511,1.2707,0.3067,0.1311,-1.505 -0xcc3d,CUS_0x2032,August,33,543-06-7157,_______,56622.69,4825.5575,6,7,20.06745738,8,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Student Loan",50.87874638,25.26732285,20.46,14,Bad,4561.862077,37.5751894,3 Years and 10 Months,Yes,348.6732714,81.59445649,!@9#%8,275.5677342,0,-1.5076,-0.8534,-0.6926,-0.4199,0.2621 -0xcc49,CUS_0xa34d,August,43,450-69-9081,Developer,71732.72,6020.726667,4,3,7,3,"Not Specified, Personal Loan, and Student Loan",9.543566675,9,19.8,5,Standard,632.16,28.42488812,6 Years and 11 Months,Yes,129.9330194,,Low_spent_Medium_value_payments,234.2011613,0,0.0277,-0.3314,0.1918,-1.1218,-0.6446 -0xcc55,CUS_0xb5e2,August,28,743-93-2407,Writer,19841,1756.416667,6,10,17,5,"Not Specified, Home Equity Loan, Student Loan, Student Loan, and Mortgage Loan",,25.32729118,17.88,11,_,2798.591255,35.92263022,5 Years and 9 Months,Yes,79.74213529,74.8799687,Low_spent_Large_value_payments,291.0195627,0,0.3656,0.0343,-0.916,-0.2245,1.1453 -0xcc61,CUS_0x9c19,August,26,470-98-3389,Scientist,79556.12,,8,6,9,7,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Mortgage Loan, and Auto Loan",15.54225109,11.90994478,10.09,5,Standard,2660.215425,27.26960341,,Yes,406.7656952,78.25506944,High_spent_Large_value_payments,435.046902,0,1.6875,-0.3137,-0.3068,1.285,0.3488 -0xcc6d,CUS_0x7e39,August,41,056-92-6979,Accountant,31134.22,2556.518333,7,6,5,3,"Debt Consolidation Loan, Auto Loan, and Payday Loan",14.19476733,11.73377997,17.23,8,Standard,1941.428423,30.92023929,19 Years and 6 Months,Yes,44.84666562,228.8713317,Low_spent_Large_value_payments,251.933836,0,1.5332,0.0043,-1.322,0.8771,-0.0331 -0xcc79,CUS_0x9bae,August,24,237-85-5444,_______,70981.16,,8,9,25.88954781,7,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",42.23902342,25.57777215,1.91,8,Bad,4909.45057,28.42885793,2 Years and 0 Months,Yes,1537.003832,112.7356186,High_spent_Large_value_payments,486.8401352,0,-0.4579,1.2456,-1.5083,0.2628,1.1198 -0xcc85,CUS_0xbcd8,August,26,906-84-9410,Doctor,21673.57,,7,3,16,1,Credit-Builder Loan,18.03075061,15,9.66,3,Standard,551.81,36.13834995,,No,14.53965123,,High_spent_Small_value_payments,301.3381462,0,0.8763,1.3254,-0.653,0.546,-1.1826 -0xcc91,CUS_0x6250,August,21,356-64-7629,Scientist,57986.32,4740.193333,3,5,2,3,"Mortgage Loan, Personal Loan, and Not Specified",,7,1.36,2,Good,222.83,37.56148776,,No,132.9673406,359.3902263,Low_spent_Small_value_payments,271.6617664,0,0.2025,1.0932,-1.0057,0.5706,0.8262 -0xcc9d,CUS_0x4075,August,32,208-19-2290,Engineer,81008.58,6728.715,8,6,5,0,,23.47889538,18,7.34,4,Standard,249.08,34.52229839,23 Years and 2 Months,Yes,0,249.4250384,High_spent_Medium_value_payments,673.4464616,0,-0.6862,-0.7221,1.8178,0.2303,-1.0007 -0xcca9,CUS_0x6d8,August,27,997-08-4281,Journalist,17919.81,1474.3175,8,6,26.06745738,5,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",29.23160623,19.11806395,19.82,10,Bad,2991.109273,35.44806189,7 Years and 4 Months,NM,62.53662542,170.2141549,Low_spent_Small_value_payments,177.9606817,0,1.5014,-1.9008,-0.121,0.8178,-0.8512 -0xccb5,CUS_0xa27a,August,56,972-80-2405,_______,49790.5,4060.208333,6,5,15,2,"Auto Loan, and Auto Loan",15.26267992,9,3.34,4,Standard,1021.5,32.045022,17 Years and 2 Months,No,63.0784179,98.9077759,High_spent_Large_value_payments,484.0346395,0,-0.0501,-1.9748,0.4218,0.231,-0.6105 -0xccc1,CUS_0x21f7,August,44,379-35-1984,Manager,131040.42,,3,1,6.288361749,0,,11.52952437,11,2.88,8,Good,591.8468524,38.13251077,19 Years and 3 Months,No,0,1297.173756,Low_spent_Medium_value_payments,639.19769,0,0.6404,-1.3422,-0.8763,0.4581,-1.1823 -0xcccd,CUS_0x3e2e,August,38,407-02-3314,Scientist,9365.44,617.4533333,9,5,22,4,"Credit-Builder Loan, Payday Loan, Personal Loan, and Home Equity Loan",14.51446758,10.95604503,7.28,12,Standard,1955.974651,33.08769386,14 Years and 9 Months,Yes,17.84200816,76.44601497,Low_spent_Small_value_payments,257.4573102,0,-1.6996,0.8231,0.1961,-0.4977,1.3024 -0xccd9,CUS_0x1535,August,25,600-38-3364,Musician,31396.36,2469.363333,2,3,12,3,"Not Specified, Mortgage Loan, and Not Specified",,3.425763218,11.13,8,_,1437.04488,28.19579487,,No,70.75495153,,Low_spent_Small_value_payments,218.3093672,0,-1.0764,0.2234,0.5989,0.4781,0.7278 -0xcce5,CUS_0x6afc,August,32,406-97-9286,Journalist,48070.3,4233.858333,5,5,2,0,,19.48006576,14,2.58,2,Good,1025.3,36.93164776,18 Years and 6 Months,No,0,188.9707865,Low_spent_Large_value_payments,504.4150468,0,-0.0341,0.4536,-1.1265,-1.047,-0.8693 -0xccf1,CUS_0xbc4b,August,24,121-37-4752,Developer,121622.84,,0,3,757,2,"Not Specified, and Personal Loan",,0,12.02,1,Good,1204.698132,36.38246349,20 Years and 8 Months,NM,173.2882999,109.121104,High_spent_Large_value_payments,978.5601235,0,-0.2736,0.6891,-1.3826,-1.33,3.4266 -0xccfd,CUS_0x1de6,August,18,024-88-0191,_______,40445.44,3152.453333,8,6,33,6,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,24.75575974,19.06,14,Bad,3784.465293,22.82657691,11 Years and 10 Months,Yes,123.1006768,,Low_spent_Small_value_payments,331.5844845,0,-0.0753,-1.0015,-0.7628,-0.1365,0.4493 -0xcd09,CUS_0x826e,August,26,878-71-9136,Scientist,41294.92,3215.243333,8,8,23.88954781,100,"Payday Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",32.61307904,,22.02,2399,Standard,1805.983956,25.7130383,13 Years and 9 Months,Yes,1478.227273,223.8179335,Low_spent_Small_value_payments,215.1490459,0,-0.5791,-1.0504,-0.5371,-1.1441,-1.7587 -0xcd15,CUS_0x4590,August,28,265-27-8321,Entrepreneur,28056.94,,4,6,10,2,"Credit-Builder Loan, and Personal Loan",,12,16.43,6,Standard,822.94,34.38230323,14 Years and 5 Months,Yes,41.74919161,17.97191748,High_spent_Large_value_payments,391.7867242,0,0.9248,0.0294,0.8628,0.1708,-0.2915 -0xcd21,CUS_0xa437,August,26,248-20-6693,Architect,54811.56,4510.63,4,5,11,6,"Home Equity Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",17.3234224,11,11.74,8,Standard,2170.62,29.92181668,19 Years and 2 Months,Yes,171.3413998,,Low_spent_Large_value_payments,200.7652422,0,0.2397,0.6646,-1.5116,-1.9326,-0.0892 -0xcd2d,CUS_0xbdd9,August,18,491-09-0120,Scientist,31785.1,2410.758333,8,9,28.95700519,9,"Personal Loan, Student Loan, Payday Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Personal Loan, Not Specified, and Credit-Builder Loan",,16,27.75,7,_,4074.918708,39.61414536,,Yes,1502.257604,180.7721998,Low_spent_Small_value_payments,143.707209,0,0.6365,0.5542,0.015,-1.9298,1.1438 -0xcd39,CUS_0x5f3d,August,35,289-24-3310,Doctor,51729.75,4565.8125,275,6,28,8,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",38.28439693,21.31927703,-5.19,13,_,2542.125231,35.64988126,10 Years and 3 Months,Yes,247.4006535,152.893944,High_spent_Medium_value_payments,306.2866525,0,-0.5193,-0.9522,0.3445,0.6952,-1.2821 -0xcd45,CUS_0x67bc,August,26,872-34-3009,Writer,12255.61,868.3008333,8,6,19,2,"Mortgage Loan, and Auto Loan",,19,8.23,5,Standard,494.31,25.28227026,,Yes,11.63732296,,Low_spent_Small_value_payments,320.9653368,0,1.0831,-0.335,0.9565,-0.3944,0.3038 -0xcd51,CUS_0x628d,August,25,173-51-3586,Engineer,33477.64,,7,6,24.06745738,6,"Student Loan, Payday Loan, Personal Loan, Auto Loan, Payday Loan, and Student Loan",,29.04215244,6.83,13,Bad,2335.32224,27.90181668,9 Years and 9 Months,NM,113.2192819,,Low_spent_Large_value_payments,262.967873,0,-0.9322,0.8905,-0.1293,1.9215,-0.9214 -0xcd5d,CUS_0x4b64,August,35,478-55-2676,Musician,38460.28,,6,9,17.95700519,7,"Personal Loan, Personal Loan, Home Equity Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",30.57238467,14,20.71,13,_,4329.910954,36.00207181,6 Years and 8 Months,Yes,1502.619265,166.7468966,High_spent_Small_value_payments,193.6858023,0,1.4488,-0.6043,-1.7375,0.1109,-0.4011 -0xcd69,CUS_0xa7ea,August,38,219-21-6108,Developer,15229.35,,10,10,28.06745738,5,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",,17,24.28,10,Bad,4275.240954,39.29074624,14 Years and 3 Months,Yes,40.57723364,68.97510003,Low_spent_Large_value_payments,235.8386284,0,0.8834,-0.5136,-0.0536,-2.1368,0.8224 -0xcd75,CUS_0xa87f,August,40,446-92-6533,Musician,102460.44,,5,5,10,1,Home Equity Loan,19.49892322,14,3.22,5,Standard,505.1617282,35.95549983,32 Years and 8 Months,Yes,887.4515846,1155.633273,Low_spent_Small_value_payments,31.47692823,0,0.5723,-0.5622,-1.6806,-0.5896,-0.0695 -0xcd81,CUS_0x699f,August,28,105-56-5438,Writer,32595.22,2606.268333,3,3,7,2,"Personal Loan, and Not Specified",9.941049497,10,9.72,1,Good,796.88,28.25345191,16 Years and 5 Months,No,50.30543332,196.9709808,Low_spent_Small_value_payments,303.3504192,0,-0.492,1.4773,-0.989,1.8832,-1.7593 -0xcd8d,CUS_0x4982,August,19,405-29-5229,Mechanic,20403.52,1755.293333,1,7,12,100,Debt Consolidation Loan,1.620067128,5,6.85,4,Good,397.38,30.96007001,32 Years and 5 Months,NM,13.89072634,85.24033204,Low_spent_Medium_value_payments,356.398275,0,0.4274,-0.2766,-0.4157,0.2112,-1.047 -0xcd99,CUS_0x9916,August,80,797-89-1729,Journalist,69591.18,5708.265,5,1,2,2,"Mortgage Loan, and Not Specified",0,0,4.02,6,Good,957.8719479,29.71550125,32 Years and 0 Months,No,73.60641908,180.6509085,High_spent_Medium_value_payments,590.2994167,0,0.349,-0.1829,0.5377,1.3934,-2.0612 -0xcda5,CUS_0x2b06,August,20,991-63-5601,Manager,71614.2,6102.85,0,7,2,2,"Student Loan, and Personal Loan",12.56577696,11,5.13,7,Good,1273.45,37.55410927,23 Years and 8 Months,No,114.6443451,,High_spent_Large_value_payments,691.3315324,0,0.5234,2.0798,-1.0979,1.5961,0.2922 -0xcdb1,CUS_0x9344,August,19,197-74-8431,_______,19126.65,,8,8,29.06745738,3,"Auto Loan, Not Specified, and Home Equity Loan",,21.88527971,1.93,14,Bad,3227.231602,40.32795898,18 Years and 11 Months,Yes,36.1616583,71.87457086,High_spent_Small_value_payments,293.6322329,0,0.0557,-0.7425,-1.6295,-0.9362,-0.453 -0xcdbd,CUS_0xbfb6,August,28,097-12-0730,_______,33684.42,,6,9,18,5,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",33.55844677,17,16.82,11,_,1329.97,31.98555996,13 Years and 3 Months,Yes,116.4179386,34.44361219,High_spent_Large_value_payments,368.3419492,0,1.2652,-0.0302,0.0025,-0.6392,-0.1361 -0xcdc9,CUS_0x63d8,August,19,393-92-0996,Manager,11436.15,933.0125,4,7,14,4,"Mortgage Loan, Payday Loan, Not Specified, and Mortgage Loan",11.39151712,10,17.33,8,Standard,339.47,33.71320768,19 Years and 5 Months,Yes,23.05957931,17.25092051,High_spent_Small_value_payments,312.9907502,0,-0.2395,0.7953,0.421,-1.679,-0.8498 -0xcdd5,CUS_0x8cd9,August,32,897-73-7005,_______,96141.48,,6,4,12,4,"Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",18.79375421,,18.95,5,Standard,1084.42,40.21649603,19 Years and 10 Months,Yes,243.6287575,68.42901433,High_spent_Large_value_payments,732.7212281,0,0.0358,-1.7762,-0.6018,-0.874,0.0931 -0xcde1,CUS_0x23e2,August,38,563-99-3300,Musician,57035.58,,3,7,12,0,,15.87554699,12,16.04,4,_,550.23,23.8424499,21 Years and 9 Months,No,0,84.56898553,High_spent_Large_value_payments,637.8275145,0,1.6604,-0.0781,-0.6793,-1.0281,-1.193 -0xcded,CUS_0xb4a,August,31,418-09-0995,Entrepreneur,71830.44,6110.87,7,3,19,3,"Not Specified, Auto Loan, and Personal Loan",12.33056084,11,7.48,3,Standard,647.2938985,36.92924694,27 Years and 4 Months,NM,119.4534418,387.8906959,High_spent_Small_value_payments,413.8843199,0,0.5158,-0.5973,1.1506,-1.3146,-0.4883 -0xcdf9,CUS_0x5417,August,80,488-18-2117,Manager,17830.73,1757.894167,8,5,1232,7,"Credit-Builder Loan, Student Loan, Not Specified, Payday Loan, Payday Loan, Auto Loan, and Credit-Builder Loan",27.15554435,,24.21,12,Bad,4730.61,34.9283996,10 Years and 2 Months,Yes,100.6833567,44.75743504,High_spent_Medium_value_payments,280.3486249,0,2.0863,-0.5237,1.0283,0.272,-1.0954 -0xce05,CUS_0x9375,August,28,486-51-9479,Developer,31815.94,,7,7,27,7,"Personal Loan, Student Loan, Payday Loan, Personal Loan, Auto Loan, Not Specified, and Student Loan",,15.79426065,20.65,11,_,4625.792762,36.77109298,1 Years and 3 Months,Yes,169.9491914,,High_spent_Medium_value_payments,245.1513175,0,-1.7259,0.4038,-1.7668,0.0022,0.5397 -0xce11,CUS_0x79ad,August,47,976-11-4359,Accountant,29814.97,2731.580833,4,3,17,1,Student Loan,26.17626844,18,1.09,4,Standard,25.6585201,29.81660568,33 Years and 3 Months,No,14.34532334,93.9800247,High_spent_Medium_value_payments,426.769519,0,-1.6484,0.3341,-1.5956,0.2291,-2.1851 -0xce1d,CUS_0x952a,August,30,179-17-6232,Accountant,14710.215,1334.033854,2,5,9,2,"Mortgage Loan, and Debt Consolidation Loan",0,2,8.33,4,Good,1373.93,28.06034772,17 Years and 4 Months,No,163.2857975,,!@9#%8,367.5018974,0,-0.5785,1.7436,-0.4205,0.8367,-0.0504 -0xce29,CUS_0xfaf,August,27,153-48-5124,Architect,39255.54,3546.295,4,3,5.288361749,2,"Not Specified, and Payday Loan",0,2,4.14,5,Good,487.3385842,28.9728799,33 Years and 8 Months,No,46.03458606,482.6765658,High_spent_Large_value_payments,494.8977282,0,-0.0813,2.6468,0.486,0.6559,-0.0036 -0xce35,CUS_0x80c0,August,20,252-31-6813,Lawyer,35787.86,2820.321667,9,7,32.06745738,100,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",,27,1.3,6,Bad,2709.910954,32.70165044,20 Years and 5 Months,Yes,76.88428434,70.45365825,High_spent_Large_value_payments,347.9739361,0,-0.4304,-1.4474,-0.3093,1.3807,1.9229 -0xce41,CUS_0x2731,August,54,721-95-6535,Teacher,43885.43,3596.119167,1,2,11,2,"Payday Loan, and Debt Consolidation Loan",6.718201191,8,1.99,0,Good,168.53,30.81345626,,No,51.65583324,123.5287602,High_spent_Medium_value_payments,434.4273232,0,-2.0229,-2.6472,0.165,0.5403,-0.3137 -0xce4d,CUS_0xb52f,August,43,764-12-4443,Accountant,61804.34,5228.361667,4,7,11.28836175,2,"Student Loan, Debt Consolidation Loan, and Home Equity Loan",,12,10.39,5,Good,179.87,34.57286615,15 Years and 10 Months,No,147.0159495,940.9241647,Low_spent_Small_value_payments,144.8335135,0,-1.429,-1.2588,0.2,0.1217,-0.2704 -0xce59,CUS_0x969b,August,38,782-58-3379,Musician,17442.09,,8,6,6.067457376,2,"Mortgage Loan, and Mortgage Loan",,20,16.34,6,_,2183.830954,25.92874154,19 Years and 6 Months,Yes,14.63779048,,Low_spent_Small_value_payments,277.0938436,0,-0.5076,-1.6918,0.2728,0.4129,0.2831 -0xce65,CUS_0x6f55,August,54,923-48-1651,Writer,18579.36,,0,4,2,2,"Home Equity Loan, and Student Loan",7.426120911,10,10.14,1,Good,1329.98,37.89779003,29 Years and 10 Months,No,22409,10.05376835,High_spent_Large_value_payments,343.5993744,0,0.647,-0.1793,-0.0053,-1.4715,-0.3472 -0xce71,CUS_0x2855,August,52,406-13-8367,Musician,34185.14,2659.761667,3,7,5,4,"Credit-Builder Loan, Not Specified, Student Loan, and Debt Consolidation Loan",,17.3575478,9.56,1,_,1644.1583,32.83177539,28 Years and 8 Months,No,103.4015698,,Low_spent_Medium_value_payments,356.8143708,0,-1.1035,0.5445,-0.9271,0.7738,0.0664 -0xce7d,CUS_0x9e8d,August,35,348-93-6719,Entrepreneur,20299.4,,9,6,23.06745738,6,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",32.36087481,19,26.12,10,Bad,4141.230954,35.34296454,2 Years and 3 Months,Yes,75.7736552,161.9159344,Low_spent_Medium_value_payments,191.3517891,0,-0.3438,-0.2571,0.6754,-2.8294,-1.5768 -0xce89,CUS_0x48a3,August,41,695-91-4434,Entrepreneur,11629.69,1263.140833,7,3,4,0,,25.11931817,19,8.42,7,Good,457.912764,25.21632278,28 Years and 2 Months,NM,0,,Low_spent_Medium_value_payments,306.1424463,0,-0.0099,2.1853,-1.071,1.9973,-0.9055 -0xce95,CUS_0x5ef3,August,29,933-56-0293,Lawyer,27559.56,2253.63,6,7,2.288361749,2,"Auto Loan, Payday Loan, and Not Specified",20.48803849,18,11.69,2,Good,160.02,24.36288524,27 Years and 0 Months,No,41.1675361,436.5724916,High_spent_Large_value_payments,407.5604333,0,-0.5494,0.3648,1.3417,-0.7874,2.2283 -0xcea1,CUS_0x6709,August,50,373-51-1419,Entrepreneur,94369.64,8164.136667,4,7,19,4,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",,23.96129622,2.99,,Standard,524.23024,32.36659681,24 Years and 0 Months,Yes,210.7093407,61.10101338,!@9#%8,784.6033126,0,1.7298,1.9522,0.889,0.7545,-0.7881 -0xcead,CUS_0xb312,August,25,#F%$D@*&8,Architect,61746.99,5167.5825,8,8,16.95700519,6,"Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Mortgage Loan",,28.38341878,4.27,11,Bad,4947.269092,37.24336476,7 Years and 9 Months,NM,1481.522353,,Low_spent_Small_value_payments,0,0,0.7937,-1.6327,-0.596,1.4987,-0.7652 -0xceb9,CUS_0x5629,August,36,784-17-0426,Journalist,33465.57,2820.7975,0,5,10,2,"Debt Consolidation Loan, and Student Loan",0.096854288,2.36654719,4.62,1,Good,601.547209,39.24389055,31 Years and 2 Months,No,40.22460349,53.91386332,High_spent_Small_value_payments,447.9412832,0,-1.6014,0.7283,0.6812,0.8671,0.5531 -0xcec5,CUS_0x6891,August,24,781-08-4133,Architect,132325.88,,6,5,8,2,"Personal Loan, and Credit-Builder Loan",22.84991836,15.04654838,3.43,4,Standard,602.6821097,30.18696501,,No,175.7895143,146.3441753,!@9#%8,1013.981977,0,-0.853,-0.1795,0.9791,0.2385,0.8455 -0xced1,CUS_0xc555,August,32,680-58-3774,Entrepreneur,14214.46,,4,7,19,4,"Mortgage Loan, Auto Loan, Mortgage Loan, and Personal Loan",8.218806775,9,12.7,12,Standard,908.46,30.42045282,,Yes,41.88616646,43.68660504,Low_spent_Medium_value_payments,284.2810618,0,0.4049,-0.4681,0.0584,-0.1322,-1.8896 -0xcedd,CUS_0x1e2d,August,55,028-71-5831,Media_Manager,10967.735,,334,6,5,0,,,15,19.36,0,Standard,1314.16,25.01704834,28 Years and 6 Months,Yes,0,37.3117075,High_spent_Small_value_payments,296.5860842,0,0.0162,1.0338,-0.6857,-0.2964,-0.516 -0xcee9,CUS_0xb108,August,38,888-27-8587,Musician,57449.79,4907.4825,8,8,27.95700519,6,"Payday Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",54.4215456,27.41745732,5.64,14,_,4739.633797,25.82098029,7 Years and 0 Months,Yes,1602.387639,590.7974188,Low_spent_Small_value_payments,,0,-0.1623,-1.1883,0.5287,0.7719,0.5524 -0xcef5,CUS_0x8d0,August,29,592-74-4196,Writer,81112,,5,7,28,7,"Personal Loan, Not Specified, Not Specified, Auto Loan, Home Equity Loan, Not Specified, and Payday Loan",45.01611581,25.93206135,24.94,8,_,3788.840368,37.91507208,12 Years and 8 Months,Yes,250.6906511,404.3465632,Low_spent_Small_value_payments,329.796119,0,0.5282,-0.5265,-1.3486,1.3195,1.1795 -0xcf01,CUS_0x34d7,August,38,065-57-1268,Mechanic,36821,,1169,6,7,0,,18.12002126,15,2.04,8,_,551.85,35.79637677,27 Years and 0 Months,No,80983,60.7893338,High_spent_Medium_value_payments,523.6523329,0,1.6162,0.3963,-0.119,-1.6873,-0.6128 -0xcf0d,CUS_0x8da1,August,46,360-75-0836,_______,15608.695,,7,3,12,4,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Payday Loan",,19,12.35,10,_,488.34,34.86090102,,Yes,92.91440921,128.7394575,Low_spent_Medium_value_payments,261.1551721,0,-0.4606,-0.4296,-1.1846,0.3345,-0.9929 -0xcf19,CUS_0x3105,August,39,358-01-3272,Manager,42804.4,,8,4,7,0,,18.55557582,14,10.27,4,Standard,1389.65,39.11583129,18 Years and 9 Months,NM,0,,Low_spent_Large_value_payments,342.1512623,0,0.1136,1.5707,1.9477,-0.5964,0.195 -0xcf25,CUS_0x4e11,August,24,620-12-8571,_______,17361.38,,10,9,3648.957005,7,"Personal Loan, Credit-Builder Loan, Not Specified, Auto Loan, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",30.97114313,20,10.16,12,Bad,2467.570954,26.44328532,15 Years and 11 Months,Yes,1375.442689,,High_spent_Large_value_payments,279.8340802,0,1.0863,0.1669,-1.9671,-0.3995,-0.8744 -0xcf31,CUS_0x8ec5,August,80,118-72-1060,Developer,18207.57,1369.2975,5,7,24,100,"Debt Consolidation Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",31.10415077,21.63224584,9.7,14,Standard,2564.884585,34.40096689,7 Years and 4 Months,Yes,68.36676227,130.9508921,Low_spent_Medium_value_payments,217.6120956,0,0.079,-0.6984,-1.1946,-1.2699,0.1227 -0xcf3d,CUS_0xa13f,August,52,332-09-6552,Engineer,37547.68,,4,6,8,1,Mortgage Loan,9.907134054,6.899839559,0.89,1,Good,1465.795525,29.79894757,22 Years and 5 Months,NM,24.84007251,208.8952654,Low_spent_Small_value_payments,385.5619954,0,1.5572,-0.0049,0.5671,0.2974,0.2144 -0xcf49,CUS_0x4143,August,22,341-30-9753,Manager,68056.4,5805.366667,8,9,24,5,"Home Equity Loan, Auto Loan, Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",,26.26152455,7.74,14,Bad,2365.527896,29.15509755,12 Years and 4 Months,Yes,172.5034567,,High_spent_Medium_value_payments,499.3139826,0,0.2394,-0.1978,2.643,1.0005,-0.6429 -0xcf55,CUS_0x564e,August,29,867-73-3888,Scientist,18208.19,,10,6,33.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",,23.82369926,2.91,7,Bad,2543.239226,35.81209501,17 Years and 11 Months,Yes,66.01536959,161.239805,Low_spent_Large_value_payments,188.0594541,0,0.7072,-1.7499,-1.0957,0.4261,0.2137 -0xcf61,CUS_0x6c5c,August,51,#F%$D@*&8,Doctor,118228.38,10121.365,5,5,4254.288362,2,"Not Specified, Mortgage Loan, and Personal Loan",0,0,7.54,0,Good,310.9730053,33.62644304,27 Years and 3 Months,No,271.1209091,646.9785761,High_spent_Large_value_payments,779.8174825,0,0.634,-0.8355,1.4691,0.8052,0.394 -0xcf6d,CUS_0x2c81,August,44,754-48-5368,Doctor,14954.745,1331.22875,6,4,20,6,"Not Specified, Mortgage Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Student Loan",15.52266688,13,14.91,6,_,255.76,39.05727426,18 Years and 2 Months,Yes,54.3677416,,Low_spent_Small_value_payments,289.7542246,0,-0.2751,0.1954,0.1217,0.5822,0.9197 -0xcf79,CUS_0xa23d,August,44,458-00-2343,Developer,36886.49,,4,7,20,0,,,14,16.54,9,Standard,1251.85,36.4937369,,Yes,0,,High_spent_Small_value_payments,475.0811649,0,-0.2154,-1.7087,-0.1735,-0.037,1.9187 -0xcf85,CUS_0x2293,August,36,403-42-4176,Engineer,101641.14,8283.095,5,3,13,3,"Student Loan, Not Specified, and Payday Loan",20.21199021,13,19.97,9,Standard,631.4,38.56997725,13 Years and 9 Months,Yes,171.9384727,213.435,High_spent_Large_value_payments,682.9360272,0,-0.8019,1.8144,0.4913,-0.8411,1.6828 -0xcf91,CUS_0x13a9,August,52,920-85-0637,Manager,19473209,4618.901667,3,7,5,3,"Credit-Builder Loan, Auto Loan, and Mortgage Loan",14.13603773,12,2.03,7,Good,125.5499145,31.80644929,28 Years and 8 Months,No,92.50592257,127.486518,High_spent_Medium_value_payments,505.112639,0,-0.323,1.5416,-0.9658,-2.2231,0.3443 -0xcf9d,CUS_0x1c2a,August,45,473-13-5730,Accountant,33410.45,3059.204167,4,6,19,0,,22.58738025,15,10.91,1,Standard,693.39,36.86902906,28 Years and 2 Months,Yes,0,129.8622569,Low_spent_Small_value_payments,466.0581598,0,0.1861,-2.2012,0.2027,-1.2063,0.6875 -0xcfa9,CUS_0x333e,August,25,689-18-8933,Accountant,54843.69,4438.3075,6,7,33.06745738,9,"Auto Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",41.00473649,22,17.83,8,Bad,5119.410954,41.9344178,9 Years and 9 Months,Yes,81194,10000,High_spent_Large_value_payments,288.8595482,0,0.2399,0.5761,-0.7471,-0.5493,0.3273 -0xcfb5,CUS_0x3ed1,August,48,263-56-4879,Engineer,64874.08,5460.173333,3,5,8,0,,17.05615082,,0.89,3,Good,759.8696365,40.92906365,18 Years and 6 Months,NM,0,181.8165414,High_spent_Medium_value_payments,614.2007919,0,0.2161,0.9422,-0.857,1.0417,-1.5151 -0xcfc1,CUS_0x6b82,August,25,775-60-4225,Musician,58208.24,,10,9,26.88954781,100,"Debt Consolidation Loan, Not Specified, Personal Loan, Personal Loan, Personal Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",36.72535675,22.38834494,2.24,17,Bad,2846.80721,29.00089008,10 Years and 8 Months,Yes,1547.403535,53.53602403,!@9#%8,429.5990267,0,-0.1176,1.5329,-1.514,0.7012,1.7466 -0xcfcd,CUS_0x48e4,August,45,#F%$D@*&8,Engineer,28497.43,2086.785833,0,6,1,3,"Payday Loan, Personal Loan, and Payday Loan",2.480969724,4,8.51,0,Good,1089.995908,39.81362495,32 Years and 10 Months,No,46.0961934,82.75752877,High_spent_Medium_value_payments,342.4267997,0,-0.6992,-0.0043,0.1291,0.7975,0.4882 -0xcfd9,CUS_0x439a,August,33,259-01-6271,Engineer,164401.8,13674.15,4,1,10,1,Not Specified,12.34770001,10,2.44,3,_,716.9321303,44.95801491,25 Years and 2 Months,No,110.2575267,565.0924169,Low_spent_Medium_value_payments,1048.309277,0,-0.0021,0.2403,-1.0388,0.5145,-1.0066 -0xcfe5,CUS_0x759c,August,30,609-56-4412,Writer,70205.02,5650.418333,0,4,1.288361749,0,,1.953121403,5,0.37,5,Good,132.2204877,28.10353778,32 Years and 10 Months,No,0,,Low_spent_Small_value_payments,101.695951,0,0.5299,0.7795,-2.0071,-0.9834,2.0357 -0xcff1,CUS_0xbb69,August,22,278-17-1333,_______,28910.14,2441.178333,8,6,11,100,"Personal Loan, Payday Loan, Auto Loan, and Personal Loan",21.45853769,19,7.67,3,_,496.03,37.38469817,22 Years and 5 Months,No,75.1242701,,High_spent_Medium_value_payments,348.3461031,0,1.2622,1.3442,2.1565,0.029,-0.4929 -0xcffd,CUS_0x592a,August,28,800-89-3447,Doctor,17116.42,,8,6,23.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Mortgage Loan, and Student Loan",,23.79712737,3.64,15,Bad,3154.312384,36.63505,19 Years and 2 Months,Yes,89.7506862,,Low_spent_Medium_value_payments,186.764579,0,1.0084,0.2605,2.044,-0.2218,0.1821 -0xd009,CUS_0x3ef,August,48,964-81-2710,Manager,21212.91,,3,888,10,3,"Home Equity Loan, Mortgage Loan, and Student Loan",28.62616488,21.8182031,5.13,1,Standard,1125.049406,38.91186247,,No,45.74570037,118.5424461,Low_spent_Small_value_payments,275.3861035,0,0.5854,-2.3176,0.2085,1.6449,1.7139 -0xd015,CUS_0x6b45,August,41,645-19-1721,Manager,36964.22,,10,10,22.88954781,6,"Auto Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Student Loan, and Student Loan",,21.62536592,25.83,6,Bad,4359.091921,27.2247075,8 Years and 11 Months,Yes,1430.398871,127.7024356,High_spent_Medium_value_payments,300.1037784,0,0.5998,-0.0614,-0.546,0.0688,-0.9402 -0xd021,CUS_0x9f52,August,39,492-36-7041,Scientist,36993.94,,1,7,9,2,"Auto Loan, and Mortgage Loan",6.577669188,3.555302545,2.91,9,Good,306.9644999,36.25364256,23 Years and 0 Months,No,55.70168877,175.9504152,Low_spent_Medium_value_payments,385.9307294,0,1.3441,-2.1823,-2.2417,-0.7343,-0.7193 -0xd02d,CUS_0x50b5,August,30,452-15-2521,Scientist,31577.16,,10,6,15,2,"Personal Loan, and Payday Loan",32.17387886,21.84023461,,9,_,1673.068468,32.44600621,19 Years and 2 Months,NM,40.24901952,81.89082649,High_spent_Small_value_payments,430.303154,0,2.1069,1.8889,-0.717,0.0994,0.5574 -0xd039,CUS_0x4a65,August,38,399-59-9340,Architect,32009.81,,5,7,8.288361749,0,Credit-Builder Loan,7.675397899,8,14.92,7,Standard,310.76,35.93970398,19 Years and 6 Months,NM,65594,520.0614361,High_spent_Medium_value_payments,387.0836864,0,-0.1953,1.9893,-0.4011,-0.3655,0.0171 -0xd045,CUS_0x1fe3,August,28,458-63-0201,Manager,76386.04,6515.503333,8,7,24,7,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",36.86495889,16.8613525,8.02,10,Bad,4268.718201,28.87141869,8 Years and 11 Months,Yes,354.233485,879.5268059,Low_spent_Small_value_payments,,0,-0.1086,-0.66,-0.1582,0.0768,0.0897 -0xd051,CUS_0x8636,August,33,644-42-8469,Mechanic,101342.2,,2,3,14,2,"Payday Loan, and Mortgage Loan",25.0613319,19,14.46,9,Standard,828.02,32.6281559,7 Years and 5 Months,Yes,114.3299888,,High_spent_Large_value_payments,839.5750604,0,-0.62,-0.8405,-1.309,1.0871,-0.5602 -0xd05d,CUS_0x8090,August,35,560-15-3729,Musician,22311.08,1561.256667,4,3,7,4,"Payday Loan, Payday Loan, Not Specified, and Credit-Builder Loan",22.23518114,16,1.34,4,Standard,318.78,24.21793164,24 Years and 5 Months,No,58.98276404,79.93800145,Low_spent_Medium_value_payments,297.2049012,0,-1.1473,0.0468,-2.1326,0.5714,-0.0624 -0xd069,CUS_0x2617,August,38,048-98-3271,Architect,179072.36,,2,2,4.288361749,4,"Mortgage Loan, Auto Loan, Personal Loan, and Home Equity Loan",13.58896232,14,8.82,3,Good,269.2,26.05050636,17 Years and 2 Months,No,457.5856834,2397.263563,Low_spent_Small_value_payments,,0,-0.0184,1.4121,0.6063,2.1602,-1.1284 -0xd075,CUS_0x6fb2,August,25,244-19-0739,Lawyer,17277.78,,9,8,19,9,"Home Equity Loan, Home Equity Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",,30.15612101,-1.92,10,Bad,1967.837911,41.1125238,15 Years and 3 Months,Yes,72.31335766,34.60500039,Low_spent_Medium_value_payments,294.3631419,0,-1.4767,-0.4126,-1.2376,-0.5848,-1.9806 -0xd081,CUS_0x39e0,August,52,512-16-6054,Architect,80393.48,,3,4,6,100,"Home Equity Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",3.705414106,4,9.99,8,Good,329.74,24.45286787,32 Years and 6 Months,No,187.6645565,98.32748116,High_spent_Large_value_payments,618.553629,0,0.2769,-1.4037,0.4104,0.7263,-0.4134 -0xd08d,CUS_0x4328,August,55,775-15-3565,Teacher,15414.675,,5,5,11,0,,0,1,8.96,7,Good,508.81,37.18250461,23 Years and 6 Months,No,0,149.5130859,Low_spent_Small_value_payments,285.4425391,0,0.7356,0.4246,1.5483,-0.3928,0.2454 -0xd099,CUS_0x8ff8,August,28,765-92-4564,Developer,58246.4,4780.866667,6,5,18,2,"Payday Loan, and Debt Consolidation Loan",36.91721357,22,16.79,8,_,2534.49,38.29480963,8 Years and 11 Months,NM,55.39520153,299.266561,Low_spent_Small_value_payments,413.4249041,0,-0.5919,1.9945,2.0616,1.6131,-0.313 -0xd0a5,CUS_0x2372,August,41,304-34-0889,Scientist,62086.53,5316.8775,7,4,16,2,"Payday Loan, and Auto Loan",18.4565704,16,4.08,7,Standard,1286.42,35.04137956,33 Years and 2 Months,NM,57.40295877,36.92546354,!@9#%8,677.3593277,0,0.7566,0.8902,0.6137,-0.6215,0.2907 -0xd0b1,CUS_0x6572,August,45,594-42-1364,Doctor,99475.83,8108.6525,7,6,10,1,Home Equity Loan,21.6165524,,3.84,1423,Standard,587.9,30.21059586,28 Years and 0 Months,No,49.27572405,544.8765652,Low_spent_Small_value_payments,506.7129608,0,-0.4456,-0.4087,-0.9769,-0.4748,0.0497 -0xd0bd,CUS_0x9f43,August,21,367-85-2447,Manager,31152.06,,4,5,16,4,"Auto Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",13.78541253,12,1.31,6,_,593.4532983,24.89459984,28 Years and 5 Months,No,65.04548038,73.35547011,High_spent_Small_value_payments,364.600198,0,0.5143,-0.0245,-0.4552,0.4887,-0.0002 -0xd0c9,CUS_0x3518,August,32,744-42-7253,Writer,38250.71,2941.559167,1,7,8,3,"Auto Loan, Personal Loan, and Mortgage Loan",,1,0.76,7,Good,1464.74,26.50961059,25 Years and 6 Months,No,91.48681025,,Low_spent_Small_value_payments,127.2999202,0,0.9126,-1.2281,-0.3969,0.253,2.0279 -0xd0d5,CUS_0xba90,August,46,458-00-2231,Developer,59873.88,4836.49,3,5,9,3,"Credit-Builder Loan, Student Loan, and Credit-Builder Loan",0,2,3.11,3,Good,1017.45,32.58233246,17 Years and 10 Months,No,117.107326,262.2647972,Low_spent_Large_value_payments,374.2768768,0,-0.0866,1.2619,0.9877,-0.5464,1.5989 -0xd0e1,CUS_0xd4d,August,36,544-63-7260,Entrepreneur,23163.38,,4,3,8,5,"Payday Loan, Not Specified, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",18.58768222,14,9.38,8,Standard,506.3,32.43302173,,Yes,68.5564294,98.49000007,Low_spent_Small_value_payments,322.4817372,0,-0.9499,0.3175,-1.286,0.5325,-0.7741 -0xd0ed,CUS_0x72fe,August,44,969-12-8865,Doctor,70347,5913.25,8,9,31,4,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",,24.69521917,13.79,8,Bad,2868.873326,35.14605003,20 Years and 8 Months,Yes,207.9665065,10000,High_spent_Large_value_payments,552.0344206,0,-1.3954,1.1908,-0.3741,1.1277,-1.7851 -0xd0f9,CUS_0x23a8,August,40,023-13-3332,Media_Manager,47523,,6,9,4254.889548,7,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",19.19900201,14,7.64,8,Standard,2101.96,27.61283485,,Yes,1596.825349,517.7383937,Low_spent_Small_value_payments,,0,0.424,0.4815,0.479,-0.7558,0.9765 -0xd105,CUS_0x420f,August,37,750-75-7327,Musician,116569.62,,4,4,7,3,"Mortgage Loan, Credit-Builder Loan, and Personal Loan",13.82227069,14,11.5,8,Good,757.7,44.68387595,,No,149.5974624,123.1135016,High_spent_Medium_value_payments,976.402536,0,0.4487,0.3266,2.3548,-1.6744,0.0372 -0xd111,CUS_0x3420,August,36,411-61-2585,Musician,11482.565,1128.880417,4,3,10,3,"Debt Consolidation Loan, Student Loan, and Personal Loan",23.8265334,18,2.05,7,_,517.07,39.2009769,15 Years and 11 Months,NM,15.37086273,32.08959009,High_spent_Medium_value_payments,315.4275889,0,1.1166,0.3256,1.2535,0.1263,0.0212 -0xd11d,CUS_0x2d1e,August,32,613-01-1107,Engineer,44590.1,3605.841667,5,5,7.288361749,0,Auto Loan,3.434858583,7,-4.49,2,Good,509.0021349,25.19838111,21 Years and 11 Months,NM,33.79719283,,High_spent_Large_value_payments,486.0310191,0,-1.5197,2.0174,0.1386,0.6306,-1.1721 -0xd129,CUS_0x1f15,August,23,296-58-9430,Engineer,73378.32,,7,8,26,5,"Payday Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",37.63500008,28.03319702,9.76,9,Bad,2371.739443,24.91791103,10 Years and 8 Months,Yes,187.0729499,628.3738418,Low_spent_Small_value_payments,57.83920829,0,-0.8494,0.4447,-0.0281,0.049,-1.1152 -0xd135,CUS_0xb689,August,19,944-24-4212,Scientist,33806.55,2671.2125,4,6,8,0,,,23,5,0,_,208.25,37.88518626,28 Years and 4 Months,No,0,184.1408962,Low_spent_Small_value_payments,372.9803538,0,-0.0066,-1.2945,0.4672,0.712,0.7772 -0xd141,CUS_0x7551,August,18,926-03-8333,Writer,10353.13,,7,5,35.06745738,8,"Auto Loan, Home Equity Loan, Student Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,25,3.5,11,Bad,2461.400954,39.42230114,20 Years and 3 Months,NM,55.30319447,27.44456568,Low_spent_Small_value_payments,248.3080352,0,0.624,-1.0549,0.037,1.4385,1.4291 -0xd14d,CUS_0x8858,August,26,466-53-4101,Architect,114695.44,9612.953333,2,7,4,4,"Debt Consolidation Loan, Personal Loan, Not Specified, and Student Loan",6.496113484,4.645956216,4.98,1,_,1136.707118,30.23570396,29 Years and 3 Months,No,350.7441879,221.4576418,High_spent_Large_value_payments,629.0935037,0,-1.0588,-0.1482,-1.1144,0.35,-0.0733 -0xd159,CUS_0x1a57,August,49,185-32-4152,_______,63383.1,,6,3,8,3,"Student Loan, Auto Loan, and Auto Loan",,18.10670293,7.54,5,Standard,600.1952183,37.17231215,31 Years and 2 Months,Yes,151.4342489,,Low_spent_Small_value_payments,117.6107713,0,-0.4151,-2.621,-2.9313,-0.5236,-0.2177 -0xd165,CUS_0xb16,August,30,728-01-3765,Manager,10302.935,,3,4,12,3,"Payday Loan, Payday Loan, and Credit-Builder Loan",13.54536416,10,7.89,2,_,786.85,34.59266464,21 Years and 6 Months,Yes,19.15773109,73.85987281,Low_spent_Small_value_payments,291.9401878,0,-0.3794,-0.5187,-0.6806,0.1121,0.5329 -0xd171,CUS_0x94c5,August,36,195-25-3991,Writer,19419.65,1485.304167,8,6,25,5,"Auto Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Personal Loan",37.29508574,23,20.22,14,Bad,4525.71,29.24382162,8 Years and 11 Months,Yes,78.8888497,,Low_spent_Small_value_payments,177.76079,0,1.3265,-0.0993,0.7669,-0.6447,-0.2859 -0xd17d,CUS_0xae62,August,29,726-89-7592,Musician,23216.36,,6,3,9,3,"Student Loan, Auto Loan, and Payday Loan",,,13.37,10,_,861.44,36.40268559,9 Years and 3 Months,Yes,56.00199301,10000,Low_spent_Small_value_payments,279.0438947,0,0.0897,0.3527,-0.8052,1.0489,0.8816 -0xd189,CUS_0x5e1b,August,51,691-88-4829,Mechanic,151160.64,12758.72,1,6,0.288361749,0,,,7,3.45,4,Good,1139.22,29.43239473,,No,0,632.7799242,High_spent_Medium_value_payments,1313.029537,0,-1.1832,-1.0616,-1.5989,-0.193,1.6847 -0xd195,CUS_0x8ac8,August,22,751-26-7144,Teacher,10037.735,871.4779167,8,7,30,5,"Mortgage Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, and Home Equity Loan",,15,17.17,13,Bad,3052.44,37.2245457,,Yes,36.66766176,,High_spent_Medium_value_payments,264.3083904,0,0.0376,-1.4497,-0.5864,0.5419,0.0092 -0xd1a1,CUS_0x7b2f,August,33,445-64-4433,Writer,16114.17,1160.8475,3,6,13,2,"Student Loan, and Credit-Builder Loan",21.77854503,15,14.99,11,Standard,1246.74,27.88638674,,Yes,25.77988712,151.1781713,Low_spent_Small_value_payments,229.1266915,0,-0.2019,-0.6257,-0.3883,-0.6278,-2.6971 -0xd1ad,CUS_0x6349,August,45,884-18-7863,Scientist,22555.52,1995.626667,6,3,15.06745738,100,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",22.17602788,14.53523981,6.79,2,Standard,1815.727864,32.34759736,,No,55.00709724,143.4712822,!@9#%8,264.3639993,0,-1.5498,-0.3283,-2.07,-1.9385,0.6072 -0xd1b9,CUS_0x1b09,August,40,507-03-3969,Entrepreneur,96522,8334.5,4,4,2.288361749,4,"Personal Loan, Personal Loan, Not Specified, and Mortgage Loan",0,3,3.7,1,Good,1022.38,33.49551488,23 Years and 5 Months,No,247.9498725,,High_spent_Large_value_payments,641.1104434,0,0.5001,0.8686,-0.3617,-1.5972,0.756 -0xd1c5,CUS_0x7976,August,32,616-00-4975,Lawyer,67629.14,5479.761667,0,3,9.288361749,0,Auto Loan,0,0,4.69,2,Good,177.03,30.42830471,32 Years and 5 Months,No,25119,,Low_spent_Medium_value_payments,307.3510544,0,1.7894,0.1423,-1.0078,-1.1691,0.2782 -0xd1d1,CUS_0x5b5,August,39,027-27-7758,Mechanic,33480.02,2775.001667,8,10,20.95700519,9,"Payday Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, Personal Loan, Payday Loan, Student Loan, and Personal Loan",40.1947102,19.92351011,8.73,8,Bad,4841.221648,27.97834273,3 Years and 11 Months,Yes,1451.57915,254.2320987,Low_spent_Large_value_payments,120.6385489,0,-0.1827,-1.0184,0.3836,0.7511,0.507 -0xd1dd,CUS_0xb63e,August,37,646-59-8591,Engineer,16480.5,1669.375,8,6,15.28836175,6,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Not Specified, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",17.6515141,16,12.82,7,Standard,201.57,34.50241442,,Yes,85.124863,460.9715566,High_spent_Small_value_payments,300.7785414,0,2.2405,-1.4037,0.2696,0.4814,0.9598 -0xd1e9,CUS_0x1c5d,August,19,084-74-2355,Musician,19121.21,,8,7,15,7,"Debt Consolidation Loan, Not Specified, Not Specified, Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",19.45388907,,13.94,6,Standard,448.39,39.24866033,15 Years and 4 Months,Yes,79.71165235,56.52354783,!@9#%8,293.9082165,0,0.2153,0.8077,-0.1586,0.4148,-0.1466 -0xd1f5,CUS_0x2de3,August,55,053-51-0661,Manager,20515.94,1649.661667,7,5,15,2,"Mortgage Loan, and Payday Loan",27.50642865,19,7.47,6,Standard,878.79,33.40137779,15 Years and 8 Months,No,20.77430631,64.20784408,Low_spent_Small_value_payments,369.9840163,0,-0.4468,1.1299,-1.6037,-0.8854,0.188 -0xd201,CUS_0x2b7d,August,18,324-44-7622,Accountant,14771.43,,6,7,33.06745738,6,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Personal Loan",51.93533341,27.414046,8.59,10,_,2093.904463,32.94985107,9 Years and 2 Months,NM,51.56522936,,Low_spent_Small_value_payments,213.1247855,0,0.7522,-1.0721,-1.1587,0.5664,-0.0179 -0xd20d,CUS_0x2c08,August,31,918-15-6457,Manager,66357.14,5688.761667,8,4,8,1,Student Loan,21.85434378,16.93316745,9.66,2,Standard,1559.476475,28.70987071,20 Years and 2 Months,No,47.08813642,126.2718171,High_spent_Medium_value_payments,645.5162132,0,-0.9237,-1.0417,-0.6192,1.3424,0.6123 -0xd219,CUS_0x97f7,August,29,847-52-4156,Scientist,141897.84,,4,7,6,7,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Home Equity Loan, and Student Loan",,11,16.09,10,Standard,1348.77,35.25217013,7 Years and 4 Months,Yes,647.1602647,552.0077323,!@9#%8,259.614003,0,-2.0041,0.5691,-0.6256,-0.1886,2.4497 -0xd225,CUS_0x8f05,August,18,261-87-4617,Engineer,14569.27,,10,8,20.88954781,7,"Not Specified, Not Specified, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Not Specified",20.18196552,15,27.71,12,Bad,2321.844692,30.8121337,12 Years and 11 Months,Yes,1478.809675,,High_spent_Large_value_payments,250.7442993,0,1.0263,-0.4157,1.8175,-0.336,0.4736 -0xd231,CUS_0x910e,August,50,220-91-4662,Developer,10943.535,,6,4,8,2,"Auto Loan, and Credit-Builder Loan",26.27121252,21.91018379,5.88,2,Good,653.3750532,24.85943878,31 Years and 6 Months,No,16.71590243,92.63047176,Low_spent_Small_value_payments,273.8497508,0,0.9943,-0.9084,0.408,-0.2604,1.1895 -0xd23d,CUS_0xc000,August,31,292-78-1234,Media_Manager,35883.18,,6,5,8,4,"Not Specified, Auto Loan, Not Specified, and Auto Loan",17.24151362,,7.63,5,Good,68.84482406,35.70743541,31 Years and 3 Months,No,115.8024297,151.0761703,High_spent_Medium_value_payments,322.6589164,0,0.7263,-1.5642,-0.6618,-0.7911,-0.2475 -0xd249,CUS_0x2a09,August,40,271-31-5302,Architect,10296.705,,8,6,26,7,"Not Specified, Payday Loan, Personal Loan, Not Specified, Payday Loan, Home Equity Loan, and Auto Loan",31.14195353,22,25.58,12,_,3632.53,38.66583673,12 Years and 3 Months,NM,38.53878272,39.93788104,High_spent_Small_value_payments,294.5292112,0,0.1866,0.249,-0.2518,-0.321,0.9496 -0xd255,CUS_0x62ad,August,45,178-27-9290,Accountant,15915.73,1461.310833,5,7,24,100,"Personal Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",15.19596335,13.97694603,12.05,14,Standard,1751.608962,28.35591085,11 Years and 10 Months,Yes,50.66026354,,Low_spent_Large_value_payments,327.3184324,0,-0.3955,1.2102,1.0648,-1.7211,0.3945 -0xd261,CUS_0x2217,August,29,303-33-5518,Musician,28481.67,2441.4725,0,3,8.288361749,2,"Home Equity Loan, and Student Loan",,,7.45,3,Good,104.85,36.43031382,31 Years and 2 Months,No,46.99155012,486.6207858,Low_spent_Medium_value_payments,410.4723751,0,-0.4849,-1.4182,0.5699,1.3173,-0.6902 -0xd26d,CUS_0xb736,August,54,868-99-0276,Developer,25609.04,2233.086667,6,7,6,4,"Auto Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",16.31447571,16,19.55,2,Standard,1121.06,31.17662155,18 Years and 8 Months,Yes,74.36016971,63.53778062,High_spent_Small_value_payments,345.4107163,0,0.3303,-0.6018,-0.4039,0.0016,0.1949 -0xd279,CUS_0x9e51,August,24,941-84-3892,Accountant,23363.33,,5,3,19,2,"Student Loan, and Student Loan",11.03864686,11,8.38,2,Standard,1105.47,23.58802262,32 Years and 10 Months,No,38.08515391,81.67850197,High_spent_Small_value_payments,342.1307608,0,0.5421,-0.0822,1.16,-1.5647,-0.5539 -0xd285,CUS_0x2fca,August,50,279-66-3207,Musician,126769.86,10265.155,5,4,5.288361749,0,Credit-Builder Loan,2.485767227,5,6.63,1,Good,349.8093898,32.74058978,24 Years and 5 Months,No,79.73353789,546.1046222,High_spent_Large_value_payments,1073.433049,0,0.6323,0.4725,0.5381,-2.0728,0.9226 -0xd291,CUS_0x2483,August,37,468-18-1488,Media_Manager,10086.965,711.5804167,6,6,27,3,"Auto Loan, Credit-Builder Loan, and Student Loan",24.10616571,20,12.23,5,Standard,1689.61,38.98461712,8 Years and 3 Months,NM,18.99022286,27.95551672,Low_spent_Large_value_payments,294.2123021,0,-0.9025,1.382,0.1338,0.4246,-0.6119 -0xd29d,CUS_0xc517,August,44,036-05-5721,Writer,17302.08,1355.84,8,8,21.88954781,9,"Credit-Builder Loan, Payday Loan, Mortgage Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Payday Loan, Student Loan, and Student Loan",24.57604913,16,29.37,12,_,4570.87,38.15016499,4 Years and 0 Months,Yes,1391.443031,55.14901709,Low_spent_Large_value_payments,264.6618704,0,0.3803,-0.9227,1.5041,1.5676,-0.031 -0xd2a9,CUS_0x8f6f,August,29,108-42-4223,Musician,38713.36,,2,4,10.28836175,0,,0,1,3.56,7,Good,128.7351786,27.61848114,22 Years and 9 Months,No,0,688.9921638,Low_spent_Medium_value_payments,368.9820946,0,-1.286,1.3143,1.2736,-0.1051,0.6189 -0xd2b5,CUS_0xa86a,August,21,605-98-8733,Media_Manager,45953.94,3887.495,3,7,14,3,"Debt Consolidation Loan, Mortgage Loan, and Payday Loan",19.32727959,15,7.64,8,Standard,1237.97,38.6740135,18 Years and 4 Months,No,92.41505378,58.73229487,High_spent_Large_value_payments,477.6021514,0,0.3998,1.1488,-2.7892,-0.6665,0.7941 -0xd2c1,CUS_0xafdf,August,53,584-22-6688,Manager,121966.28,10161.85667,2,4,8.288361749,0,,7.934840515,9,7.51,5,Good,1467.6,36.81676159,28 Years and 2 Months,No,0,,!@9#%8,1086.054734,0,0.4778,-0.7262,-0.1864,0.7379,1.1061 -0xd2cd,CUS_0x7067,August,50,383-61-8635,Architect,173650.68,,4,4,1.288361749,100,"Auto Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",0,1,1.55,,Good,965.6309843,33.93977343,27 Years and 8 Months,No,28540,697.5081976,High_spent_Large_value_payments,1035.789892,0,1.2809,0.8394,-0.3312,0.8948,-0.2625 -0xd2d9,CUS_0x6b9d,August,46,390-39-5965,Doctor,9697.29,,4,3,9,4,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,17.2423024,12.95,9,Standard,574.2879936,30.83906109,8 Years and 8 Months,Yes,28.77453606,66.08474099,Low_spent_Small_value_payments,281.2514729,0,-0.4207,-0.1992,-0.6476,1.3911,0.7323 -0xd2e5,CUS_0x6a33,August,33,857-00-0192,Scientist,23808.75,1993.0625,8,7,8,0,,,15.57939948,19.79,1,Standard,8.91998969,37.1903114,,Yes,0,251.7137956,Low_spent_Small_value_payments,237.5924544,0,1.4999,0.1681,2.434,-0.854,-0.9469 -0xd2f1,CUS_0x7a24,August,41,409-59-5476,Teacher,10234.39,881.8658333,4,6,6,4,"Student Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",17.8209613,13,6.7,4,Standard,627.2,34.56433451,16 Years and 6 Months,No,26.99631558,22.8752816,Low_spent_Medium_value_payments,318.3149862,0,0.9808,-0.7218,-1.1312,1.6497,1.0269 -0xd2fd,CUS_0x4e52,August,38,983-62-4894,Lawyer,82583.61,6785.9675,6,4,9.288361749,2,"Personal Loan, Personal Loan, and Home Equity Loan",18.27406366,16,18.51,5,Standard,1072.11,32.26147243,25 Years and 10 Months,Yes,172.8137708,10419.93746,Low_spent_Large_value_payments,379.6650203,0,0.0843,0.335,0.9382,-1.3025,0.0136 -0xd309,CUS_0x4425,August,18,821-88-7412,Doctor,59788.89,5053.4075,9,9,20,7,"Student Loan, Student Loan, Debt Consolidation Loan, Not Specified, Student Loan, Student Loan, and Not Specified",,28.77129233,18.13,10,Bad,4030.016845,36.43254042,7 Years and 5 Months,Yes,188.5787132,274.1835572,Low_spent_Small_value_payments,332.5784796,0,0.9722,-1.2669,1.0772,-1.4459,-2.0374 -0xd315,CUS_0x9e4d,August,25,827-69-2109,Engineer,28823.03,2293.919167,7,6,0.288361749,2,"Not Specified, and Auto Loan",10.81553991,10,9.22,5,Standard,51.26,29.8903676,33 Years and 3 Months,No,39.34837245,532.5654811,High_spent_Small_value_payments,337.4155242,0,-1.8288,0.7601,-1.7983,-0.2312,0.05 -0xd321,CUS_0xad7d,August,28,561-15-5381,Architect,28338.43,,6,3,7.288361749,0,Home Equity Loan,21.59901578,18,21.1,7,Standard,135.5,25.41051719,19 Years and 3 Months,Yes,12.80528125,652.4874697,Low_spent_Small_value_payments,261.7982934,0,0.8261,-1.8557,-2.6358,0.7238,0.1036 -0xd32d,CUS_0x70b3,August,20,183-82-0629,Manager,32246.4,,5,4,10,0,,5.821010593,6,19.96,5,Standard,1396.38,34.38949338,23 Years and 3 Months,Yes,0,10000,Low_spent_Small_value_payments,221.2781415,0,-0.7045,1.2569,-0.7689,0.8219,0.6733 -0xd339,CUS_0x4fc2,August,50,#F%$D@*&8,Scientist,85770.33,7275.5275,5,5,5,100,"Home Equity Loan, Payday Loan, and Not Specified",16.50960788,12.43163991,5.25,3,Good,1467.078118,26.19098345,18 Years and 3 Months,No,144.4293021,383.4921544,Low_spent_Medium_value_payments,479.6312935,0,-1.5197,0.2433,-0.5959,1.2839,0.0874 -0xd345,CUS_0x53d6,August,39,368-56-4250,Mechanic,44826.54,3953.545,2,3,10,0,,,9,2.52,6,_,952.04,30.36977071,29 Years and 0 Months,No,0,157.7124176,High_spent_Medium_value_payments,487.6420824,0,0.6278,1.3132,1.0323,-0.1515,1.1373 -0xd351,CUS_0x96e8,August,27,928-09-7220,Musician,17484.02,1491.001667,5,5,33,3,"Debt Consolidation Loan, Not Specified, and Mortgage Loan",24.46623046,21.75312326,17,,Standard,2832.905772,27.15670952,20 Years and 6 Months,Yes,43.67294417,165.5688186,Low_spent_Small_value_payments,229.8584039,0,1.296,-0.0757,-1.8598,-0.1165,0.2386 -0xd35d,CUS_0x8680,August,32,381-06-3417,Mechanic,17455.36,1222.613333,8,10,1730.957005,7,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",,19.04957951,1.49,17,Bad,2064.224412,25.61942078,10 Years and 2 Months,Yes,1382.279665,80.07496079,Low_spent_Small_value_payments,228.8563383,0,-1.4851,0.7571,-2.0801,-0.2258,0.0663 -0xd369,CUS_0x37db,August,18,585-94-4096,Entrepreneur,19559.45,,5,4,20,4,"Student Loan, Personal Loan, Mortgage Loan, and Home Equity Loan",,21,13.77,2136,Standard,1115.06,33.42681801,19 Years and 5 Months,Yes,38.28721653,99.56806627,Low_spent_Small_value_payments,318.7401339,0,-2.0029,0.4975,0.365,-0.0551,-0.1299 -0xd375,CUS_0x4f31,August,18,586-32-9609,Journalist,54420.45,4237.48752,3,4,19,3,"Student Loan, Student Loan, and Home Equity Loan",20.89060932,17,12.5,11,Standard,597.9388612,33.90649358,16 Years and 2 Months,Yes,564.7840976,81.40793829,High_spent_Large_value_payments,516.7782877,0,-0.0613,-0.7726,-0.6054,-0.0747,-0.6285 -0xd381,CUS_0x16d4,August,44,132-82-7348,Developer,174353,14739.41667,2,4,6,3,"Debt Consolidation Loan, Payday Loan, and Student Loan",11.45488036,10,8.75,2,Good,405.65,36.92759723,29 Years and 5 Months,No,380.7224903,,!@9#%8,1048.402959,0,-1.1316,-0.2484,0.6506,0.5846,0.3705 -0xd38d,CUS_0xb363,August,37,227-96-9535,Entrepreneur,32470.08,,6,6,19,2,"Student Loan, and Mortgage Loan",19.77720522,16.52494706,17.11,11,Standard,1658.523937,37.9264449,17 Years and 6 Months,Yes,51.98769345,10000,Low_spent_Small_value_payments,152.1044129,0,0.0424,0.3254,1.1877,0.0063,-0.007 -0xd399,CUS_0x6cd9,August,26,478-01-7375,Teacher,16653.5,,3,2,7,2,"Debt Consolidation Loan, and Payday Loan",10.4130231,11,11.5,8,Good,513.8312921,36.01885311,16 Years and 2 Months,No,20.63424501,130.9546269,Low_spent_Small_value_payments,262.6782889,0,0.2227,-0.4254,-1.963,-1.3629,1.4218 -0xd3a5,CUS_0x3e65,August,50,190-85-0373,Media_Manager,103695.12,,3,4,10.28836175,0,,7.168108602,8,,4,Standard,939.25,27.17050021,19 Years and 4 Months,No,0,599.7077189,High_spent_Medium_value_payments,904.4557421,0,-0.5482,0.4838,1.598,1.0994,1.698 -0xd3b1,CUS_0x69e0,August,27,888-50-5438,Scientist,49847.55,3884.9625,9,5,18,3,"Home Equity Loan, Personal Loan, and Student Loan",29.77225349,21.30543628,2.77,12,Bad,2483.565961,28.48490752,20 Years and 0 Months,Yes,71.67569993,47.73377121,High_spent_Medium_value_payments,519.0867789,0,1.4463,0.698,-1.3052,0.2783,-1.3558 -0xd3bd,CUS_0x1589,August,36,618-91-2082,Doctor,71282.14,5807.178333,2,4,11,1,Home Equity Loan,,4,5.98,5,Good,1328.861773,36.60865463,32 Years and 11 Months,No,37.78886657,114.1472467,High_spent_Medium_value_payments,693.4347008,0,0.4047,1.2174,0.2417,-0.5024,0.9442 -0xd3c9,CUS_0x9c24,August,31,858-57-6580,Doctor,12285.14,991.7616667,7,4,9,3,"Credit-Builder Loan, Payday Loan, and Personal Loan",14.19824605,13,3.47,5,Standard,850.79,24.42672343,16 Years and 6 Months,No,19.8509267,66.73705047,Low_spent_Small_value_payments,302.5881895,0,0.3221,0.8841,0.1219,1.1359,-0.6594 -0xd3d5,CUS_0x4df9,August,18,643-21-3304,Architect,54832.83,4564.4025,6,9,24,3,"Mortgage Loan, Payday Loan, and Auto Loan",33.18135037,19.48439854,18.03,10,Standard,2075.642682,30.08431826,20 Years and 5 Months,NM,121.3524007,251.4444393,Low_spent_Medium_value_payments,363.64341,0,-0.3881,-0.1321,-0.7882,0.8368,-0.9801 -0xd3e1,CUS_0x91c4,August,32,537-73-6299,Teacher,118568.6,,8,7,6,7,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",,16,7.54,8,Standard,95.38,29.71098818,7 Years and 5 Months,Yes,575.528253,10000,Low_spent_Large_value_payments,,0,-1.4425,-1.0424,-0.1673,0.5796,0.149 -0xd3ed,CUS_0xc4f4,August,34,#F%$D@*&8,Musician,129561.96,10827.83,2,3,11,3,"Home Equity Loan, Payday Loan, and Home Equity Loan",3.783668845,1.121900326,6.65,2,Good,0.586834905,38.38491658,33 Years and 6 Months,No,220.5877276,133.6563478,High_spent_Large_value_payments,968.5389246,0,-0.4336,0.5265,-1.2414,-0.1965,-0.4485 -0xd3f9,CUS_0x54bc,August,18,425-82-8832,Entrepreneur,110116.64,9161.386667,7,5,9,438,"Auto Loan, Student Loan, and Payday Loan",22.43788902,16,7.57,3,Standard,324.69,33.84884691,32 Years and 3 Months,No,202.922584,,Low_spent_Large_value_payments,198.0197052,0,-1.5587,1.1371,-0.3911,1.6493,-2.5662 -0xd405,CUS_0x25f8,August,18,309-78-5676,_______,15686.54,1291.211667,3,5,8,4,"Auto Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",10.75400757,11,16.12,9,Standard,1657.45,28.60008606,14 Years and 6 Months,Yes,28.17472788,124.5581935,Low_spent_Small_value_payments,266.3882453,0,-0.3878,-0.5936,-0.0175,0.0569,0.0585 -0xd411,CUS_0x4aa6,August,42,532-79-6405,_______,13924.125,,489,3,10,0,,19.88237186,14,7.55,4,Good,1270.5,26.76513773,29 Years and 5 Months,No,0,91.90408951,Low_spent_Medium_value_payments,283.3302855,0,0.5224,1.5799,-1.2034,0.834,-0.6178 -0xd41d,CUS_0x5e8f,August,31,332-50-9349,Musician,16608.8,,10,6,16.06745738,6,"Student Loan, Payday Loan, Payday Loan, Mortgage Loan, Not Specified, and Home Equity Loan",,3533,16.64,9,Bad,3327.380954,39.2143817,,Yes,76.36770221,58.5982725,High_spent_Small_value_payments,225.220404,0,0.0385,-0.058,0.9436,-1.5339,0.9381 -0xd429,CUS_0x66e3,August,18,619-90-6478,Doctor,10279.675,,3,4,20,4,"Home Equity Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",25.59083032,19,16.68,6,Standard,2099.89,34.38098282,,Yes,19.72832589,52.34785984,Low_spent_Medium_value_payments,283.3877726,0,-0.7252,0.4646,0.2021,0.0921,-1.4703 -0xd435,CUS_0x6ae7,August,25,799-75-6587,Scientist,20837.54,1704.461667,4,6,4,1,Debt Consolidation Loan,0,1.129482475,10.49,2,Good,1320.44712,25.09937311,23 Years and 8 Months,No,16.86816554,114.3497553,High_spent_Small_value_payments,299.2282458,0,-0.6366,0.1307,1.2607,0.8083,0.4928 -0xd441,CUS_0x69eb,August,30,860-78-9875,Lawyer,14773.62,,5,3,23,5,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",16.32620721,13.8402882,12.16,11,Standard,2586.356303,37.7319214,13 Years and 6 Months,Yes,42.99065078,23.86437633,High_spent_Small_value_payments,301.6584729,0,-0.3569,-0.0269,0.4546,0.8667,-0.1895 -0xd44d,CUS_0x1d33,August,40,697-07-9858,Journalist,39294.3,,9,10,30,3,"Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",,23.752462,7.14,11,_,1466.021191,30.48575226,,Yes,60.74439251,129.7396727,Low_spent_Small_value_payments,428.7684348,0,0.9742,-1.3804,0.0447,1.1804,0.7776 -0xd459,CUS_0x6503,August,21,163-57-5111,Lawyer,29949.1,2419.758333,3,3,6,7,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Mortgage Loan",21.25904202,17,9.87,5,Standard,1316.19,31.92804148,20 Years and 3 Months,Yes,148.9974444,82.85996832,Low_spent_Large_value_payments,280.1184206,0,-1.4639,0.6815,-0.2821,-0.6798,0.4728 -0xd465,CUS_0x4488,August,35,#F%$D@*&8,Scientist,14489.475,,5,4,8,0,,3.06968878,7,1.58,2,Good,759.09,33.46971333,18 Years and 11 Months,No,0,154.8714359,Low_spent_Small_value_payments,280.8741891,0,-0.8117,0.8855,0.2334,0.359,-0.2962 -0xd471,CUS_0x15dd,August,80,794-51-3706,Architect,13351.83,1256.6525,6,3,13,2,"Auto Loan, and Payday Loan",16.10305774,13,19.48,1,_,303.84,26.12263729,23 Years and 5 Months,Yes,13.91394401,50.06530935,Low_spent_Medium_value_payments,341.6859966,0,-1.232,-0.8113,0.924,0.6802,1.4887 -0xd47d,CUS_0x8af8,August,38,823-92-1569,Developer,101718.63,8457.5525,3,3,12,0,,4.576720551,6,3.35,1,Good,668.1656855,33.34122644,,No,0,959.4623881,Low_spent_Medium_value_payments,304.0710719,0,0.1405,0.2856,1.11,-0.6186,1.239 -0xd489,CUS_0x7b61,August,18,132-42-7088,Developer,18216.63,,7,9,19.06745738,9,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,15,15.69,8,Bad,3136.154939,40.37014758,4 Years and 8 Months,Yes,105.6476073,,!@9#%8,203.2848378,0,1.0037,-1.3494,1.0838,-0.0254,-0.4851 -0xd495,CUS_0x90e7,August,25,#F%$D@*&8,_______,9978.995,,8,7,34.06745738,9,"Auto Loan, Student Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",,24,24.12,9,Bad,2973.140954,34.09052696,3 Years and 0 Months,Yes,65.14209981,50.35619123,Low_spent_Small_value_payments,240.8397127,0,0.6741,1.3038,1.2831,-0.611,0.6039 -0xd4a1,CUS_0x6054,August,29,024-19-5485,Developer,19296.24,1669.02,2,7,2,2,"Mortgage Loan, and Payday Loan",15.51686192,,8.76,8,Good,763.0259084,24.56533537,20 Years and 2 Months,No,25.3290433,59.70627568,Low_spent_Medium_value_payments,370.2043614,0,0.9576,-0.3963,1.7405,-0.5623,-0.8526 -0xd4ad,CUS_0x4779,August,20,448-73-9626,Teacher,16744.76,,10,5,16.06745738,7,"Not Specified, Credit-Builder Loan, Payday Loan, Home Equity Loan, Auto Loan, Not Specified, and Home Equity Loan",,17.11219417,13.65,16,_,3169.318471,39.90858635,13 Years and 5 Months,Yes,84.5729681,124.3910623,Low_spent_Small_value_payments,178.8553483,0,-0.048,-0.6727,0.5954,-0.1299,-1.1773 -0xd4b9,CUS_0x4cdd,August,19,865-79-1559,_______,40854.02,3552.501667,2,4,4689,1,Debt Consolidation Loan,,0,9.58,2,_,401.1273019,28.39011327,27 Years and 3 Months,No,26.26179386,167.5091298,High_spent_Medium_value_payments,434.84951,0,-0.5204,-1.3548,1.8846,0.249,-0.0586 -0xd4c5,CUS_0x5000,August,33,149-70-0580,Entrepreneur,39799.4,3049.616667,5,7,12,3,"Payday Loan, Home Equity Loan, and Home Equity Loan",1.948887374,5.789326099,10.06,1,Good,1281.687364,38.75080519,16 Years and 9 Months,No,54.9424937,,High_spent_Large_value_payments,441.4668731,0,-0.975,0.0661,-0.016,-1.5855,1.1465 -0xd4d1,CUS_0x9ab4,August,35,969-17-4818,Scientist,96650.64,8197.22,3,7,12,100,"Home Equity Loan, Auto Loan, Personal Loan, and Not Specified",,16,2.18,2,Standard,1198.559741,38.67116448,32 Years and 10 Months,No,223.1505599,142.2160499,High_spent_Large_value_payments,708.612668,0,-0.452,-0.1445,-0.0836,1.5804,-0.1179 -0xd4dd,CUS_0x5387,August,25,158-97-6900,Scientist,51191.4,4551.95,9,7,25.06745738,9,"Not Specified, Payday Loan, Not Specified, Student Loan, Student Loan, Student Loan, Mortgage Loan, Mortgage Loan, and Student Loan",27.10540428,18,19.65,10,_,3512.070954,26.67344912,9 Years and 2 Months,Yes,238.6368962,532.9161179,Low_spent_Small_value_payments,,0,0.6763,0.719,-1.8125,-0.5637,-0.5476 -0xd4e9,CUS_0x6b6,August,35,486-98-7856,Writer,14243.265,,1,1,7,1,Auto Loan,,,5.06,6,Good,900.6205005,39.34252359,26 Years and 6 Months,NM,11.73209087,74.14942129,!@9#%8,342.2976131,0,1.1077,0.2195,-1.4584,0.801,-1.9873 -0xd4f5,CUS_0x5d4c,August,41,920-96-4683,Lawyer,61314.12,5279.51,0,3,8,3,"Not Specified, Payday Loan, and Not Specified",0,1,,4,Good,829.54,29.03505994,,No,92.4219112,71.54109455,High_spent_Large_value_payments,603.9879943,0,-0.1751,0.352,0.6722,0.5433,1.1166 -0xd501,CUS_0x765,August,28,282-28-8981,Media_Manager,50940.09,4106.0075,8,7,8,5,"Student Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",,16,16.11,8,Standard,2414.34,23.28808509,12 Years and 9 Months,Yes,67469,,Low_spent_Medium_value_payments,76.10062505,0,-1.1553,0.7194,0.5551,-1.175,0.2425 -0xd50d,CUS_0x70bc,August,18,864-23-5531,Architect,46152.92,,3,3,7,4,"Home Equity Loan, Mortgage Loan, Student Loan, and Home Equity Loan",7.431747893,8,10.99,12,Standard,1294.2,36.62358877,,Yes,147.9637829,55.20429709,High_spent_Medium_value_payments,452.6395867,0,-1.6116,0.1692,-1.0498,0.0767,-0.4447 -0xd519,CUS_0x2951,August,27,598-57-4270,Entrepreneur,19441.41,1386.1175,9,8,32.06745738,2,"Mortgage Loan, and Debt Consolidation Loan",35.08353527,22,3.43,10,Bad,2800.760954,29.92306909,16 Years and 10 Months,Yes,22.39031486,,Low_spent_Medium_value_payments,272.3827503,0,0.0656,-0.9692,-0.0743,-0.5677,0.5205 -0xd525,CUS_0x2bfe,August,28,212-17-1520,Scientist,29376.07,,4,4,5,3,"Auto Loan, Mortgage Loan, and Student Loan",3.243922134,4,8.28,6,_,1439.6,34.13901141,32 Years and 3 Months,No,68.11743128,34.65850022,High_spent_Large_value_payments,353.1246518,0,0.7662,1.1135,-1.0885,0.7343,-0.996 -0xd531,CUS_0x9c82,August,38,139-07-1195,Lawyer,14450.43,1155.2025,9,6,21,9,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Personal Loan, Student Loan, Auto Loan, Student Loan, and Home Equity Loan",,20,23.96,9,_,3252.14,31.09750395,8 Years and 10 Months,Yes,72.81281954,,Low_spent_Small_value_payments,265.4309709,0,0.1312,1.6908,-0.1261,-2.3771,0.4519 -0xd53d,CUS_0x2a8f,August,26,381-55-9671,Media_Manager,7424.24,599.6866667,10,5,34.06745738,5,"Debt Consolidation Loan, Auto Loan, Not Specified, Mortgage Loan, and Personal Loan",,16,24.41,6,Bad,4940.560954,28.93072969,9 Years and 3 Months,Yes,23.35261734,78.35654799,!@9#%8,221.5392134,0,-0.3147,-0.6514,-0.0978,0.669,0.4244 -0xd549,CUS_0x8466,August,27,745-34-3416,Entrepreneur,60485.13,,9,7,15,8,"Student Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",,21,3.15,15,Bad,1746.37,39.66034555,14 Years and 9 Months,Yes,297.1648727,192.0442542,High_spent_Medium_value_payments,278.7336231,0,0.0986,-0.4997,0.2087,-1.4643,-0.445 -0xd555,CUS_0x451e,August,36,773-49-8622,Engineer,38323.46,,3,3,24,2,"Payday Loan, and Auto Loan",13.72104776,13.20371984,21.19,6,Standard,2342.703776,32.76536256,20 Years and 0 Months,Yes,42.21977824,149.9795903,High_spent_Small_value_payments,358.5627981,0,0.0626,0.3616,0.1785,0.9413,0.742 -0xd561,CUS_0xae07,August,47,495-04-7396,Teacher,21450.3,1752.525,830,6,7,4,"Mortgage Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",,,0.85,5,Good,422.8455533,39.4814663,29 Years and 5 Months,No,59.40297607,221.407365,!@9#%8,211.9547157,0,1.2975,-1.0971,-0.0023,0.6651,1.4786 -0xd56d,CUS_0x169d,August,20,282-18-9852,Musician,8637.095,,5,7,14,4,"Home Equity Loan, Home Equity Loan, Personal Loan, and Home Equity Loan",13.16074631,11,9.25,7,_,2039.13,37.53093748,7 Years and 10 Months,Yes,27.44717941,18.8964074,Low_spent_Medium_value_payments,298.1322049,0,0.4193,0.1515,-1.1524,-1.3491,-0.2004 -0xd579,CUS_0x7453,August,27,978-82-9151,Engineer,18569.39,1650.66255,10,5,18,8,"Student Loan, Not Specified, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Student Loan, and Credit-Builder Loan",29.35444711,20.67620053,19.43,8,Bad,4155.96151,32.96822217,12 Years and 0 Months,Yes,130.6366442,44.15297562,High_spent_Medium_value_payments,263.1419131,0,1.4463,-0.6051,-1.4614,1.9127,0.6332 -0xd585,CUS_0x6963,August,27,958-37-1518,Lawyer,56270.8,4540.233333,6,5,23,5,"Student Loan, Personal Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",25.6247268,,26.19,11,Bad,3991.601434,38.35256151,12 Years and 0 Months,Yes,129.0856837,151.7509734,High_spent_Medium_value_payments,423.1866762,0,0.7555,-0.5706,-0.0637,-0.1534,0.3652 -0xd591,CUS_0x46ea,August,19,150-70-3630,Teacher,14974.765,1240.897083,4,5,6,4,"Credit-Builder Loan, Not Specified, Student Loan, and Auto Loan",,13,7.53,4,_,1292.04,24.61135992,25 Years and 2 Months,Yes,32.17664706,59.83730131,!@9#%8,322.07576,0,0.3412,0.0277,0.3696,2.5875,0.7427 -0xd59d,CUS_0xb2ba,August,40,428-72-2041,Accountant,29079.95,,3,4,14,4,"Payday Loan, Home Equity Loan, Auto Loan, and Payday Loan",22.15044958,,9.4,6,_,1234.91,35.32055807,15 Years and 11 Months,No,68.11381307,46.36953088,High_spent_Small_value_payments,410.9495727,0,0.0174,-0.9154,0.5642,1.7847,0.3393 -0xd5a9,CUS_0x6c92,August,33,395-77-5456,Teacher,14513.88,,10,948,34.06745738,6,"Personal Loan, Auto Loan, Not Specified, Personal Loan, Home Equity Loan, and Mortgage Loan",38.17309288,24.41884472,24.45,11,Bad,3602.904638,33.6344362,11 Years and 0 Months,Yes,65.43734738,37.83936556,High_spent_Small_value_payments,236.7519991,0,-0.2595,0.353,0.4174,1.5271,-2.2137 -0xd5b5,CUS_0x4a7a,August,44,725-15-5087,Writer,71735.48,6021.956667,8,3,8,3,"Not Specified, Not Specified, and Student Loan",,20,15.07,2,Standard,940.19,38.16362416,20 Years and 0 Months,Yes,144.5400605,73.56393934,High_spent_Large_value_payments,624.0916669,0,-0.4147,0.2062,0.2527,0.2038,0.486 -0xd5c1,CUS_0x90fa,August,51,581-40-0575,Doctor,36918.96,,3,5,6,2,"Personal Loan, and Debt Consolidation Loan",,12,11.33,9,Standard,1190.58,33.24281266,18 Years and 9 Months,No,41.24441839,,Low_spent_Large_value_payments,292.4074841,0,-0.2267,0.7956,0.6078,0.679,0.6077 -0xd5cd,CUS_0xbb02,August,29,404-71-8835,Developer,43067.01,3488.9175,8,6,29.06745738,9,"Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",41.22621472,26.43641355,23.35,13,Bad,5031.626066,33.38576032,14 Years and 2 Months,NM,258.9188046,,Low_spent_Large_value_payments,106.4234473,0,-0.037,-0.3955,-0.4507,0.2503,0.1476 -0xd5d9,CUS_0x94b,August,18,140-03-1325,Journalist,31606.46,2402.871667,4,7,19,2,"Not Specified, and Personal Loan",25.60153352,19.38362189,15.79,12,Standard,2770.407971,39.72589005,12 Years and 10 Months,Yes,47.28812309,123.333766,High_spent_Small_value_payments,329.6652776,0,0.7848,2.235,-0.6192,0.5932,-0.2355 -0xd5e5,CUS_0x6669,August,35,845-20-9787,Journalist,19466.45,,8,10,20.95700519,8,"Personal Loan, Not Specified, Payday Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Auto Loan",44.48324337,24.57688641,31.07,13,Bad,4057.723725,25.46950882,13 Years and 0 Months,Yes,26853.48344,55.69026748,Low_spent_Medium_value_payments,302.9597703,0,-1.8178,0.8352,-1.957,-0.867,0.2167 -0xd5f1,CUS_0x9087,August,43,298-63-8112,Teacher,81142.96,6614.913333,3,5,8.288361749,4,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Payday Loan",0,2,9.72,4,Good,580.94,33.59420441,32 Years and 10 Months,No,207.5845304,655.0118349,Low_spent_Medium_value_payments,498.8324291,0,1.8312,-0.4071,-1.1339,-1.3859,1.2626 -0xd5fd,CUS_0x628,August,44,350-60-2048,_______,17889.405,1244.78375,1,728,4,4,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",0.428820401,5,0.93,7,_,892.7404012,27.65971934,27 Years and 11 Months,NM,57.33850242,74.09451062,Low_spent_Small_value_payments,292.08755,0,-1.7531,-1.6038,0.5973,0.6568,0.5063 -0xd609,CUS_0x98e2,August,26,994-46-5382,Scientist,148306.2,,0,7,11.28836175,4,"Personal Loan, Auto Loan, Home Equity Loan, and Auto Loan",13.96717378,,4.93,0,Good,1283.38,38.19787625,21 Years and 4 Months,No,281.6947736,700.261936,High_spent_Large_value_payments,890.3657514,0,-0.3123,-0.0056,-1.0566,-1.858,1.2727 -0xd615,CUS_0x9dc5,August,35,587-62-8474,Musician,32181.66,,3,3,7,4,"Debt Consolidation Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",4.51430006,5,3.66,2,Good,962.5153207,28.51303276,28 Years and 4 Months,No,63.8335462,19.2554605,High_spent_Large_value_payments,402.7638265,0,0.4412,0.6754,0.0014,-1.5753,0.8507 -0xd621,CUS_0x485e,August,22,550-38-9232,Scientist,108691.17,,4,2,1.288361749,0,,,7,1.42,4,Good,1115.05121,34.49377716,32 Years and 3 Months,No,0,11940.64241,High_spent_Medium_value_payments,843.3694685,0,-0.1561,1.4151,-1.456,1.1455,0.387 -0xd62d,CUS_0x43cf,August,33,480-06-1614,Scientist,34474.82,,10,7,22.06745738,6,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",36.75499791,25,23.59,10,Bad,3597.670954,23.6009447,1 Years and 4 Months,NM,143.5810172,254.0424132,Low_spent_Large_value_payments,150.7464484,0,0.2379,0.3072,0.9356,-1.4946,-1.0159 -0xd639,CUS_0x55d3,August,18,382-60-5077,Media_Manager,18474.665,1623.555417,6,4,9.067457376,4,"Not Specified, Student Loan, Auto Loan, and Mortgage Loan",16.42151099,9.330013172,17.81,5,Standard,1410.013179,32.71972235,27 Years and 3 Months,Yes,41.7787667,152.1723409,Low_spent_Small_value_payments,231.6841462,0,0.2935,-0.5218,-0.7877,-0.8212,-0.0104 -0xd645,CUS_0x4588,August,25,392-39-3654,Entrepreneur,20247.61,1733.300833,8,3,15,4,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",10.75745936,11,18.87,1,_,1300.16,33.55277845,26 Years and 4 Months,NM,46.61068524,161.7128363,!@9#%8,255.0065617,0,0.0672,1.3601,0.9877,-0.9275,2.6438 -0xd651,CUS_0xac16,August,20,573-34-6305,Media_Manager,8269.135,752.0945833,8,7,23.06745738,8,"Personal Loan, Personal Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,23,27.27,6,Bad,3890.930954,34.38957951,4 Years and 0 Months,Yes,32.46196845,0,High_spent_Large_value_payments,247.8283472,0,1.3166,1.3333,-1.0137,1.0909,0.9342 -0xd65d,CUS_0x6236,August,80,267-72-4028,Manager,18683.75,,8,8,29.88954781,7,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Not Specified",33.05393691,24.06348378,20.96,6,Bad,4030.875017,34.11500331,2 Years and 9 Months,Yes,1424.545396,177.6774317,!@9#%8,175.445008,0,-0.7666,0.1026,1.0483,0.337,-0.9819 -0xd669,CUS_0x5036,August,80,#F%$D@*&8,Architect,33191.11,,7,5,17,0,,11.40810209,10,16.67,1,_,908.33,32.8680863,23 Years and 9 Months,Yes,0,42.37241507,High_spent_Medium_value_payments,468.1201683,0,-1.2449,0.6509,-1.0535,0.7284,-0.3103 -0xd675,CUS_0x8fac,August,28,019-79-1629,Doctor,103026.8,8754.566667,7,6,16,6,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, Not Specified, Home Equity Loan, and Not Specified",25.79509522,18,11.75,8,_,253.63,31.46633414,8 Years and 5 Months,NM,414.1968017,137.3105832,High_spent_Medium_value_payments,573.9492818,0,-0.0903,0.0364,-0.2661,1.1354,-0.781 -0xd681,CUS_0x6ebb,August,49,549-17-7822,Media_Manager,31781.22,,2,5,11.28836175,0,,6.076035713,8,0.83,0,Good,67.52293006,24.7270429,20 Years and 9 Months,NM,289.5902198,528.4334725,High_spent_Medium_value_payments,427.2336386,0,1.759,-0.0156,-0.0756,0.2859,1.2948 -0xd68d,CUS_0x8880,August,38,849-38-1681,Entrepreneur,25628.96,2121.746667,3,7,6,4,"Personal Loan, Payday Loan, Auto Loan, and Not Specified",,8,9.89,8,_,69.21,37.53715051,19 Years and 5 Months,Yes,78.42622592,93.25214707,Low_spent_Large_value_payments,310.4962937,0,0.2123,1.2134,1.2158,-0.7346,-1.0875 -0xd699,CUS_0x6d0e,August,25,551-23-5741,Teacher,34898.9,,7,4,6.288361749,2,"Payday Loan, and Credit-Builder Loan",20.07889669,17,15.48,8,Standard,182.0234717,25.43751799,21 Years and 2 Months,Yes,325.153632,692.1788207,Low_spent_Large_value_payments,302.843446,0,0.4729,0.9075,-1.2441,-0.2112,0.5098 -0xd6a5,CUS_0xb7c7,August,26,879-63-2807,Teacher,56420.52,4919.71,7,5,21,5,"Home Equity Loan, Student Loan, Payday Loan, Home Equity Loan, and Not Specified",,20.73073643,15.37,9,Bad,1556.443805,28.60009318,14 Years and 6 Months,Yes,165.9995775,10000,High_spent_Small_value_payments,315.3327768,0,-0.8771,1.3285,0.4759,-0.6253,0.3236 -0xd6b1,CUS_0x5e29,August,24,984-68-5298,Musician,163851.12,13815.26,5,5,7.288361749,2,"Personal Loan, and Home Equity Loan",0,3,10.39,6,_,480.5567597,30.85174738,,No,139.1229366,1065.280852,High_spent_Medium_value_payments,919.7092835,0,-0.1305,-0.7459,0.1901,1.2695,-0.0423 -0xd6bd,CUS_0x2efd,August,20,637-80-3236,Writer,38860.98,3478.415,5,7,17,1,Mortgage Loan,,,13.32,8,Standard,1008.6,38.54655177,31 Years and 4 Months,Yes,24.20816982,114.2219862,High_spent_Medium_value_payments,459.411344,0,0.6394,0.3176,1.1076,0.3853,-0.4522 -0xd6c9,CUS_0x9987,August,29,249-07-7888,Doctor,16440.63,1105.0525,3,3,28,7,"Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Student Loan",22.09423103,15.50124552,13.87,6,Standard,2106.613969,35.57720249,9 Years and 8 Months,Yes,47.99206968,,Low_spent_Small_value_payments,314.2003482,0,1.5216,-1.6377,0.0137,-0.7826,-0.1681 -0xd6d5,CUS_0x99ab,August,48,522-12-5089,Lawyer,19592.49,1671.7075,8,5,12.28836175,4,"Personal Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",19.63729243,18,13.52,2,_,59.17,29.4716716,21 Years and 6 Months,Yes,37.78179999,,Low_spent_Small_value_payments,209.937442,0,0.4842,0.2094,0.6997,-1.216,-1.3332 -0xd6e1,CUS_0x35a2,August,19,421-32-3631,Developer,114447.09,,4,7,0.288361749,2,"Credit-Builder Loan, Credit-Builder Loan, and Not Specified",14.1222975,14,9.97,3,Good,1036.033317,25.24576341,22 Years and 2 Months,No,180.6409031,500.4267025,High_spent_Large_value_payments,957.0192564,0,-0.5257,0.2339,-0.9614,-2.125,-0.9345 -0xd6ed,CUS_0x12ce,August,42,460-15-2731,Accountant,9795.07,,7,8,30.06745738,6,"Debt Consolidation Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",36.24340076,15.79792302,4.01,15,Bad,2537.214624,30.06612124,5 Years and 11 Months,Yes,42.60531717,24.42508054,Low_spent_Small_value_payments,254.8748977,0,0.4833,-0.7132,0.036,-0.385,0.5328 -0xd6f9,CUS_0xbfd5,August,53,452-29-0142,Musician,42372.36,3448.03,4,7,6,3,"Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",7.129253003,9,7.01,3,Good,143.04,24.57699924,17 Years and 3 Months,No,77.14638149,92.92886842,High_spent_Medium_value_payments,424.7277501,0,1.195,-1.4669,0.2001,0.4545,-1.4177 -0xd705,CUS_0xbf2e,August,80,555-91-9225,Mechanic,136597.12,11166.09333,5,4,17,4,"Student Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",,14,4.35,0,_,843.65,30.03252947,30 Years and 4 Months,Yes,252.1050708,549.5042245,Low_spent_Medium_value_payments,595.000038,0,2.1908,1.6198,1.068,1.1556,0.1302 -0xd711,CUS_0x5ab,August,20,671-04-1709,Manager,40216.62,3176.323732,0,5,10,2,"Auto Loan, and Personal Loan",,7,8.02,5,Good,323.03,25.18265205,27 Years and 3 Months,No,12039,251.0115661,Low_spent_Large_value_payments,338.361461,0,-1.1447,-2.1875,2.6462,0.2881,-0.6206 -0xd71d,CUS_0xc74,August,24,474-28-4743,Entrepreneur,65294.18,5406.181667,3,2,12,1,Payday Loan,14.17971168,11,9.78,4,Good,911.08,37.42860122,30 Years and 8 Months,No,34.69980106,431.2777472,Low_spent_Small_value_payments,364.6406184,0,-0.5364,-0.2824,-2.0102,-1.4744,0.2518 -0xd729,CUS_0x2777,August,32,613-13-4444,Engineer,58873.05,4896.0875,4,4,16,7,"Student Loan, Personal Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, and Mortgage Loan",,9,18.07,10,Standard,1039.2,30.64492023,13 Years and 10 Months,Yes,203.8548687,52.48825147,High_spent_Large_value_payments,473.2656299,0,1.2941,-0.802,0.4724,0.358,0.7259 -0xd735,CUS_0x81f2,August,32,294-53-3416,Accountant,134038.64,,6,3,18,2,"Payday Loan, and Credit-Builder Loan",18.27908084,,8.99,6,Standard,1031.51,34.34172706,18 Years and 3 Months,Yes,187.9711116,563.4787717,High_spent_Small_value_payments,596.4387834,0,-0.5358,1.9908,0.3236,-0.6165,-0.7051 -0xd741,CUS_0xc204,August,25,805-67-9755,Lawyer,33610.36,,5,5,27,7,"Auto Loan, Personal Loan, Mortgage Loan, Not Specified, Payday Loan, Personal Loan, and Student Loan",26.7233672,19.98489517,15.91,14,Standard,2428.01238,34.73475697,8 Years and 2 Months,Yes,162.7668725,,Low_spent_Large_value_payments,171.8525978,0,1.3907,-1.8062,1.0335,1.0835,0.4677 -0xd74d,CUS_0xa2d2,August,22,652-10-5543,Lawyer,77818.98,,5,6,8,4,"Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",17.48676146,15,13.86,4,_,1066.38,38.36266832,,Yes,143.1858005,293.9339092,High_spent_Small_value_payments,480.2717903,0,-0.9053,-0.6545,-0.3323,0.1078,0.6568 -0xd759,CUS_0x2bc0,August,31,337-33-1709,Manager,124490.36,10209.19667,4,7,10,5,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,18,8.62,6,_,177.03,30.1458831,7 Years and 3 Months,Yes,369.7424643,181.7223656,High_spent_Large_value_payments,709.4548368,0,-1.7946,1.4855,1.2061,0.8764,0.1971 -0xd765,CUS_0x23bf,August,28,520-85-4444,Engineer,69806.76,6055.23,3,4,19,0,,26.40520577,19,0.49,8,_,192.43,33.15803508,19 Years and 0 Months,Yes,0,406.5695363,High_spent_Small_value_payments,458.9534637,0,-0.32,-1.8231,0.8604,-0.4981,0.399 -0xd771,CUS_0x31e9,August,20,906-34-0441,Scientist,18567.28,,4,6,19.06745738,6,"Personal Loan, Not Specified, Auto Loan, Payday Loan, Auto Loan, and Credit-Builder Loan",19.19792849,12.97521555,11.95,8,_,2463.061064,25.09696104,17 Years and 8 Months,Yes,85.03643929,,Low_spent_Medium_value_payments,220.7775841,0,1.1397,-2.0026,-0.5936,-0.897,0.6402 -0xd77d,CUS_0x6203,August,32,775-73-7155,_______,89477.92,,1,4,7,0,,7.515940222,8,1.89,7,Good,1176.75,31.13845326,16 Years and 0 Months,No,0,,!@9#%8,425.4355259,0,-0.0289,-0.2363,-1.2084,2.1308,-0.5791 -0xd789,CUS_0x6a5f,August,23,915-55-5034,Accountant,44464.37,3133.795926,0,5,11,0,,20.4072187,,12.31,5,Good,713.44,23.69729911,22 Years and 2 Months,No,344.5682408,,High_spent_Medium_value_payments,519.4522014,0,-0.828,-0.7083,-0.6849,-0.8623,-1.2139 -0xd795,CUS_0xbfdb,August,31,839-16-3066,Musician,35600.2,,0,3,9,3,"Student Loan, Home Equity Loan, and Credit-Builder Loan",9.556506318,10,6.63,4,Good,532.0488411,30.20097254,32 Years and 6 Months,No,50.64859983,73.71911668,High_spent_Medium_value_payments,447.5172534,0,-0.2698,0.5919,-1.3694,-0.9501,1.9977 -0xd7a1,CUS_0x4ce7,August,40,794-11-8994,Musician,36585.12,2765.774156,6,10,28.88954781,8,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, and Home Equity Loan",28.53599564,,4.59,14,Bad,1471.01,29.0721529,13 Years and 11 Months,Yes,1701.60954,191.2632156,High_spent_Small_value_payments,148.4590075,0,0.4375,-0.286,-3.1859,0.9067,-0.5054 -0xd7ad,CUS_0x7de1,August,35,589-59-5230,Developer,14916088,4619.37,10,8,31.88954781,7,"Not Specified, Payday Loan, Personal Loan, Not Specified, Personal Loan, Student Loan, and Credit-Builder Loan",34.67857349,,22.23,16,Bad,3615.399233,23.12514729,6 Years and 2 Months,Yes,1527.788309,163.9426216,Low_spent_Medium_value_payments,355.8759878,0,-2.2012,0.3203,-2.1439,-1.808,-1.8026 -0xd7b9,CUS_0x31b8,August,30,585-66-1321,Manager,110439.56,9224.296667,3,7,15,4,"Personal Loan, Payday Loan, Not Specified, and Not Specified",20.87036073,16,6,7,Standard,1218.92,26.44091018,27 Years and 6 Months,NM,348.9438197,86.38870329,High_spent_Large_value_payments,727.0971437,0,-3.1282,-0.6055,0.3205,1.2261,-1.1685 -0xd7c5,CUS_0x8388,August,29,617-55-4327,_______,60177.04,,7,1413,10.28836175,2,"Personal Loan, Payday Loan, and Not Specified",23.27128568,19,17.55,3,Standard,765.97,27.72718714,21 Years and 2 Months,Yes,142.7507076,693.4431205,Low_spent_Medium_value_payments,373.1189662,0,0.9021,0.432,0.2861,-0.5294,0.87 -0xd7d1,CUS_0x26fd,August,37,982-46-6532,Scientist,178328.88,,4,3,6.288361749,0,,5.571428062,8,7.55,5,Good,630.2264844,30.24760553,16 Years and 8 Months,No,0,1774.067668,Low_spent_Medium_value_payments,590.9313555,0,0.7383,0.0379,0.1488,1.396,1.0084 -0xd7dd,CUS_0x8d46,August,80,433-03-7131,Mechanic,18248.5,,7,7,26,2,"Not Specified, and Not Specified",26.35927375,9.658826071,14.17,12,Standard,1890.131033,35.77512053,16 Years and 0 Months,Yes,24.89370172,,!@9#%8,352.0692062,0,-0.0182,-1.5543,1.739,1.1128,-0.6199 -0xd7e9,CUS_0xcf5,August,80,766-36-8676,Entrepreneur,124900.86,,0,6,12,4,"Home Equity Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",0,0,1.7,3,_,562.56,43.42492991,26 Years and 2 Months,No,324.5956103,70.71816847,High_spent_Large_value_payments,857.1267213,0,-1.5153,1.8941,-0.283,2.0616,-1.873 -0xd7f5,CUS_0xb3e3,August,41,694-38-0048,Teacher,142639.96,11787.66333,5,4,16,1,Personal Loan,,13,7.69,528,Standard,1246.87119,37.16007915,15 Years and 9 Months,Yes,60.28510487,1284.15033,Low_spent_Medium_value_payments,300.7202133,0,0.4166,-0.2676,-1.9326,1.824,1.2623 -0xd801,CUS_0x3215,August,34,400-46-0837,Developer,9871.225,,10,5,26,7,"Auto Loan, Debt Consolidation Loan, Not Specified, Not Specified, Auto Loan, Student Loan, and Personal Loan",,27,26.03,15,Bad,3114.620352,27.83936351,8 Years and 5 Months,Yes,123.0507209,,High_spent_Medium_value_payments,269.6271684,0,0.1254,-0.424,-0.4949,-1.2626,1.1936 -0xd80d,CUS_0x44e,August,22,915-39-1230,Doctor,100681.41,8608.1175,5,4,8,2,"Auto Loan, and Student Loan",23.17953698,14,8,3,Standard,476.37,38.02263359,24 Years and 8 Months,Yes,145.9967511,,High_spent_Small_value_payments,378.3838709,0,2.2451,1.4167,-0.2166,1.6493,1.3376 -0xd819,CUS_0xb14d,August,27,949-99-1331,_______,32904.13,2885.010833,2,7,2,2,"Mortgage Loan, and Home Equity Loan",,2,1.43,3,Good,719.2036017,31.52703173,16 Years and 4 Months,No,46.03318158,317.7559802,Low_spent_Small_value_payments,247.6673099,0,-0.6675,-0.008,0.4819,-1.8146,0.7347 -0xd825,CUS_0x2be8,August,80,932-31-3250,Mechanic,73938.68,6438.556667,4,6,16,100,"Personal Loan, and Payday Loan",21.17591248,19,17.89,7,_,2596.08,27.78863536,12 Years and 3 Months,Yes,67.30138505,,High_spent_Large_value_payments,708.2764495,0,0.9009,-0.8265,0.3011,-1.5478,-1.0711 -0xd831,CUS_0xc206,August,26,941-20-6495,Lawyer,42787.44,,7,10,22.06745738,100,"Home Equity Loan, and Mortgage Loan",31.78641403,,21.26,15,Bad,3103.082832,38.68895303,15 Years and 3 Months,NM,71.18545976,118.6335262,High_spent_Small_value_payments,423.7227261,0,-0.8444,-1.195,0.605,2.4167,-1.5958 -0xd83d,CUS_0x589f,August,40,086-01-8876,Architect,47589.24,4145.333091,10,7,27.06745738,9,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",,,15.36,10,Bad,4107.370954,37.16582506,8 Years and 5 Months,Yes,319.5492326,73.36096031,High_spent_Large_value_payments,217.783428,0,1.7334,-1.4958,0.0091,1.5355,1.3654 -0xd849,CUS_0x3d10,August,44,318-77-7985,Manager,82346.16,6928.18,6,9,18,7,"Payday Loan, Mortgage Loan, Auto Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Personal Loan",,24,3.67,10,Bad,2341.16,35.33375993,7 Years and 0 Months,Yes,390.7054359,336.5313822,Low_spent_Large_value_payments,235.5811819,0,1.8288,-0.5887,0.1182,0.3824,0.8793 -0xd855,CUS_0x8353,August,80,140-25-3790,Architect,17235.115,,0,1,1,1,Payday Loan,11.86535223,10,11.37,,Good,446.4163325,33.8720093,26 Years and 0 Months,No,13.58017668,118.8513231,Low_spent_Small_value_payments,343.740373,0,-0.4197,1.2885,0.2261,0.4047,-0.4022 -0xd861,CUS_0x1e41,August,34,084-34-7268,Lawyer,133646.04,11429.17,4,5,10.28836175,2,"Mortgage Loan, and Personal Loan",16.16970054,,2.43,3,_,1290.92,35.57138253,33 Years and 5 Months,No,114.2482426,568.8185461,High_spent_Large_value_payments,1119.787672,0,-0.8855,0.9627,0.4979,-0.4198,0.5821 -0xd86d,CUS_0x7bff,August,21,084-18-2608,Manager,44286.36,3561.53,6,6,31,2,"Credit-Builder Loan, and Home Equity Loan",,14.55025717,7.5,13,_,2312.963566,35.76174599,11 Years and 9 Months,Yes,57.97158147,,Low_spent_Large_value_payments,362.4428549,0,0.9059,-0.79,0.9713,2.3455,-0.5104 -0xd879,CUS_0x5d34,August,47,582-59-3484,Accountant,69557.68,5570.473333,6,7,8,1,Credit-Builder Loan,,21,9.4,3,Standard,503.35,43.08198021,21 Years and 3 Months,Yes,47.3799986,114.0658814,High_spent_Medium_value_payments,645.6014533,0,-1.0763,-2.1675,0.7669,-0.8039,0.4675 -0xd885,CUS_0x1bef,August,51,160-43-6314,Doctor,121675.68,,2,6,2.288361749,0,Credit-Builder Loan,0,4,8,1,Good,984.27,27.97956016,,No,95.85734696,590.6405432,High_spent_Medium_value_payments,992.0035709,0,-1.5686,-0.3405,-1.9481,0.23,-0.067 -0xd891,CUS_0x7d45,August,31,380-39-2451,Mechanic,77561.64,6604.47,7,4,16,4,"Personal Loan, Student Loan, Home Equity Loan, and Payday Loan",22.77059607,15,10.36,7,_,613.6051424,37.64977853,17 Years and 11 Months,No,141.7648261,396.1689408,High_spent_Small_value_payments,430.5132744,0,-1.2876,-1.0666,-0.6116,0.7507,-0.7715 -0xd89d,CUS_0xac7e,August,51,592-74-1031,Scientist,91516.44,7844.37,2,4,12,4,"Student Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",,6,11.73,4,Good,226.23,25.85441943,16 Years and 11 Months,No,237.865417,112.4928265,High_spent_Large_value_payments,674.0787566,0,0.7876,-0.488,-0.4664,1.385,0.2844 -0xd8a9,CUS_0x7279,August,45,891-67-3760,Entrepreneur,41015.31,,3,2,1970,2,"Auto Loan, and Payday Loan",,8,8.32,3,Good,1246.056654,32.41948646,24 Years and 0 Months,No,41.53546802,58.0017883,!@9#%8,515.6235465,0,0.2486,-0.772,1.3695,-0.3584,0.8959 -0xd8b5,CUS_0x2d3a,August,34,767-72-8687,Engineer,8933809,,1,3,10,1,Home Equity Loan,8.777396061,8,1.4,4,Good,64.38,36.26817887,28 Years and 0 Months,No,52.80792695,,Low_spent_Medium_value_payments,249.6578183,0,-0.9388,0.1571,0.1597,-0.9565,0.9718 -0xd8c1,CUS_0x871,August,25,956-78-8536,Engineer,7189.54,,3,5,20,7,"Payday Loan, Payday Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,16,16.79,7,Standard,1808.655323,34.90192876,,Yes,34.07201429,0,High_spent_Large_value_payments,233.8633701,0,-0.7177,0.1032,0.0638,0.3009,-2.6528 -0xd8cd,CUS_0x8750,August,55,775-62-8217,Accountant,14544.485,,5,5,11,4,"Credit-Builder Loan, Not Specified, Mortgage Loan, and Auto Loan",,,-0.27,0,_,788.41,38.14977407,22 Years and 10 Months,No,36.51848954,52.9101139,Low_spent_Medium_value_payments,312.9754382,0,-0.6388,0.5148,1.0753,0.9007,-0.9898 -0xd8d9,CUS_0x85e7,August,35,959-37-3158,Doctor,102207.42,,2,3,7,0,,,6,11.07,2,_,839.8164146,41.25741654,23 Years and 11 Months,No,0,,High_spent_Medium_value_payments,954.6597939,0,-0.2215,1.7921,-1.3964,1.6431,0.8351 -0xd8e5,CUS_0x3acd,August,40,953-94-3809,Entrepreneur,49211.16,4048.93,4,5,15,7,"Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Mortgage Loan, Student Loan, and Mortgage Loan",18.00620134,9.517737637,13.42,17,Standard,2046.014196,29.56503267,,Yes,257.059377,,High_spent_Medium_value_payments,235.1256063,0,1.8027,0.527,1.8523,-0.4987,0.3312 -0xd8f1,CUS_0xc461,August,39,705-32-5842,Scientist,135994.36,11191.86333,9,6,16,2,"Debt Consolidation Loan, and Personal Loan",25.38204285,19,5.98,4,Standard,1280.06,36.36659212,28 Years and 4 Months,Yes,219.9554482,908.6939096,Low_spent_Medium_value_payments,270.5369755,0,0.1944,0.7855,1.4773,0.1334,-0.9953 -0xd8fd,CUS_0x890,August,39,439-56-8696,Journalist,19453.42,1861.118333,10,10,17.88954781,6,"Mortgage Loan, Personal Loan, Personal Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",,24.29990421,27.13,9,Bad,3735.899354,39.47152795,4 Years and 8 Months,Yes,1374.18528,36.54190859,High_spent_Medium_value_payments,331.0545632,0,-1.2465,0.1819,-0.0879,0.4077,-0.3067 -0xd909,CUS_0x58f7,August,50,890-01-3579,Doctor,81066.72,6639.56,8,3,17.28836175,2,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",20.53537174,17,6.14,6,_,651.2128342,28.15338963,29 Years and 9 Months,Yes,170.8293274,633.7802823,Low_spent_Large_value_payments,580.0918868,0,2.088,0.0934,1.0626,-0.3315,1.2498 -0xd915,CUS_0x25f5,August,18,357-54-0484,Mechanic,29905.94,2362.161667,10,8,34.88954781,6,"Payday Loan, Not Specified, Personal Loan, Credit-Builder Loan, Not Specified, and Not Specified",18.66010887,13,20.79,13,Bad,2987.02,39.30091313,9 Years and 10 Months,Yes,1446.580884,211.9360748,Low_spent_Medium_value_payments,163.3691264,0,0.8768,-0.0811,-0.0316,-0.629,0.0357 -0xd921,CUS_0x2594,August,26,691-55-1000,Manager,156687.16,,2,3,6.288361749,0,Payday Loan,,6.043732567,-0.48,7,_,542.2712419,42.97055606,33 Years and 0 Months,No,80.57653206,1027.502022,Low_spent_Small_value_payments,911.3852406,0,0.4305,0.8792,-0.1915,-0.4388,0.9248 -0xd92d,CUS_0x4674,August,37,963-53-1744,Doctor,15211.94,1366.661667,10,10,20.95700519,8,"Personal Loan, Personal Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Student Loan",46.26398515,24,12.36,12,_,1669.550954,36.43530814,11 Years and 0 Months,Yes,1380.231121,16.05473034,High_spent_Large_value_payments,259.329946,0,-1.4821,0.0629,0.7581,-0.957,-1.5369 -0xd939,CUS_0x5a2,August,21,#F%$D@*&8,Scientist,15410.19,1554.1825,10,5,28,100,"Auto Loan, Payday Loan, Payday Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",,30.07550923,4.69,11,Bad,1424.762959,30.9146868,14 Years and 4 Months,Yes,39.62811682,121.2357557,Low_spent_Large_value_payments,264.5543775,0,0.6851,0.3676,0.0467,-1.8913,0.3046 -0xd945,CUS_0x35c8,August,20,056-54-2895,Musician,73947.24,6008.27,9,8,1172,7,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",,23.60473777,2.6,6,Bad,3021.662697,27.00243565,14 Years and 2 Months,NM,306.6170153,209.6622884,Low_spent_Large_value_payments,354.5476963,0,0.7114,0.367,0.0613,1.1046,0.6776 -0xd951,CUS_0x87d0,August,22,018-45-3826,Doctor,74380.96,6374.413333,4,6,27,4,"Not Specified, Mortgage Loan, Debt Consolidation Loan, and Student Loan",10.71138977,9.160079088,16.51,7,_,1938.973394,25.63392414,19 Years and 10 Months,Yes,50639,172.0971788,High_spent_Medium_value_payments,512.2618467,0,1.1211,-1.5659,-1.3254,-0.1312,-0.0595 -0xd95d,CUS_0x48f2,August,31,568-82-5596,Scientist,18317.26,,6,9,15,3,"Not Specified, Not Specified, and Student Loan",,21,3.26,8,Bad,1611.27,36.39656394,8 Years and 0 Months,Yes,92.21290263,37.00993219,High_spent_Medium_value_payments,360.7954251,0,-0.2428,1.4066,-0.6505,-0.7714,0.2462 -0xd969,CUS_0x2eb4,August,39,936-12-2774,Engineer,14784.45,,8,7,20.06745738,9,"Mortgage Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",43.65623678,27.44504476,28.9,11,Bad,4189.032165,34.64927188,10 Years and 10 Months,Yes,103.5513277,,!@9#%8,215.1249454,0,2.2994,1.4089,0.0656,0.3287,-0.2424 -0xd975,CUS_0x7863,August,34,091-61-1869,_______,60573.96,4868.83,6,10,34,7,"Credit-Builder Loan, Not Specified, Mortgage Loan, Home Equity Loan, Not Specified, Auto Loan, and Student Loan",25.5519304,13.14893506,17.28,9,Standard,2372.084501,35.46277669,15 Years and 10 Months,NM,211.2229278,288.377818,Low_spent_Large_value_payments,257.2822542,0,0.8217,0.0893,1.277,1.2527,0.9051 -0xd981,CUS_0x9d89,August,28,576-38-5212,Entrepreneur,18413.795,1524.482917,5,7,14.28836175,0,,11.9564199,11,7.36,3,Standard,99.41,35.56200816,32 Years and 6 Months,NM,0,483.9402259,High_spent_Small_value_payments,348.4455268,0,1.187,-0.2865,1.9183,-0.6318,-0.7302 -0xd98d,CUS_0xc045,August,20,281-30-1712,Media_Manager,30622.73,2366.384852,4,2,10.28836175,4,"Credit-Builder Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",0.988385725,3,4.87,1,Good,349.5970117,35.83980764,29 Years and 11 Months,No,225.8448067,505.9102358,!@9#%8,366.289038,0,-2.6934,-0.1159,0.3238,-0.2347,-0.1483 -0xd999,CUS_0x932c,August,25,952-71-6906,Journalist,15968.78,1499.731667,8,7,8,6,"Home Equity Loan, Auto Loan, Not Specified, Mortgage Loan, Not Specified, and Personal Loan",,22.73841602,15.43,10,Standard,302.7182831,38.81592095,16 Years and 9 Months,NM,41.78674943,193.211921,Low_spent_Small_value_payments,204.9744963,0,1.0815,2.53,0.8409,-0.3414,-0.2292 -0xd9a5,CUS_0x1f33,August,18,183-30-3638,Architect,69860.18,5620.681667,4,5,10.28836175,2,"Personal Loan, Credit-Builder Loan, and Auto Loan",16.38753169,,9.85,8,Standard,859.03,41.62331936,11 Years and 9 Months,Yes,92.55897801,10419.93746,High_spent_Medium_value_payments,534.716045,0,0.4545,1.1415,-0.237,0.0919,-1.6053 -0xd9b1,CUS_0xc70,August,30,540-26-9440,Scientist,40566.32,3498.526667,4,7,20,3,"Student Loan, Auto Loan, and Personal Loan",,20,8.92,10,_,1366.41,31.8478783,18 Years and 9 Months,Yes,78.29005322,95.15481627,High_spent_Medium_value_payments,426.4077972,0,-0.8461,0.8308,0.2951,-0.3316,-0.0774 -0xd9bd,CUS_0xb0c9,August,35,095-06-9651,Developer,80364.48,6578.04,7,10,15,2,"Home Equity Loan, and Mortgage Loan",,11.6735567,6.31,10,_,2094.773217,37.43208831,6 Years and 5 Months,Yes,72.59131204,163.3520612,High_spent_Medium_value_payments,671.8606267,0,-2.1648,-0.3095,0.0628,-0.1654,2.3588 -0xd9c9,CUS_0x3bb8,August,36,855-98-5797,_______,41077.12,,9,7,29,100,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Payday Loan",,27.24876012,1.19,12,Bad,1675.093374,39.83429282,10 Years and 0 Months,Yes,199.5840004,10000,Low_spent_Large_value_payments,150.2802313,0,-2.1245,1.0116,-1.4696,1.0959,0.3809 -0xd9d5,CUS_0x11c0,August,19,534-48-4062,Media_Manager,14527.455,964.62125,3,3,4,4,"Debt Consolidation Loan, Student Loan, Auto Loan, and Home Equity Loan",2.347813719,3,6.31,2,Good,282.1909065,32.3885564,19 Years and 10 Months,No,41.69544479,58.09683302,Low_spent_Small_value_payments,295.3835812,0,-0.2774,1.3992,-1.3288,1.4428,-0.0447 -0xd9e1,CUS_0x92ec,August,23,538-01-3643,Manager,104183.46,,4,5,8,1,Student Loan,,11,5.89,5,Standard,244.23,41.5149241,27 Years and 0 Months,No,72.7527745,139.1302429,High_spent_Large_value_payments,911.2124826,0,0.9297,-0.2418,-0.3503,2.4029,-0.5047 -0xd9ed,CUS_0x7edb,August,26,858-91-7016,Lawyer,34660.86,2782.405,8,7,6,100,,17.64379483,12,5.63,9,Standard,901.74,39.72863939,15 Years and 9 Months,No,0,84.6562893,High_spent_Small_value_payments,453.5842107,0,1.9626,0.2243,2.0822,-1.5534,0.7093 -0xd9f9,CUS_0x7c79,August,53,011-03-4037,Mechanic,63051.86,,2,5,3,1,Payday Loan,11.83397129,12,4.68,5,Good,1006.09,26.88255217,,NM,47.52570014,154.8202311,!@9#%8,586.5862354,0,-1.1473,0.2072,-1.1533,-0.8617,1.2264 -0xda05,CUS_0x9485,August,39,710-98-3724,Mechanic,21949.16,1927.096667,4,6,4,0,,7.250159316,9.376920808,4.53,6,_,1541.87152,39.20683255,33 Years and 4 Months,No,0,62.23769344,High_spent_Small_value_payments,390.4719732,0,-1.3333,1.7685,1.5613,-1.8191,0.4628 -0xda11,CUS_0x50ee,August,34,057-95-4768,Engineer,58295.16,4590.93,10,7,18,100,"Auto Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",41.88155307,28.48221863,21.04,10,Bad,2754.141827,25.84976157,7 Years and 8 Months,Yes,203.3793006,382.6394802,Low_spent_Large_value_payments,143.0742193,0,-1.4916,-0.9259,1.2224,-0.91,-0.1096 -0xda1d,CUS_0xbfed,August,24,133-46-8895,Engineer,42082.91,,4,4,4828,3,"Auto Loan, Student Loan, and Debt Consolidation Loan",8.062449756,10.47129676,9.17,5,Good,904.1661819,33.67426292,20 Years and 10 Months,No,87.56433607,193.6606924,Low_spent_Small_value_payments,361.5658882,0,-0.5703,0.3827,2.3217,0.1141,0.4611 -0xda29,CUS_0x2507,August,30,#F%$D@*&8,Architect,12186.425,,6,5,8,1,Personal Loan,,22,8.95,6,Good,176.84,29.23482872,18 Years and 6 Months,No,9.584437904,99.39829827,!@9#%8,280.1708055,0,0.2176,-0.6033,-1.0745,0.805,1.8331 -0xda35,CUS_0x3e36,August,26,758-48-3253,Doctor,21508.72,1898.393333,1,4,6,0,,,10.69865967,-3.14,5,Good,1204.878863,39.89849468,28 Years and 9 Months,No,0,,Low_spent_Large_value_payments,374.8322908,0,-1.5723,-0.183,-0.2169,0.9739,0.7935 -0xda41,CUS_0x7872,August,29,#F%$D@*&8,Manager,64247.12,5330.926667,8,10,29.88954781,6,"Auto Loan, Mortgage Loan, Student Loan, Not Specified, Personal Loan, and Personal Loan",41.91171609,24.27366926,,10,Bad,1969.471403,29.75105517,9 Years and 4 Months,Yes,1504.825776,132.9816245,High_spent_Large_value_payments,440.955185,0,-1.3163,0.4683,-0.486,-0.9604,-0.276 -0xda4d,CUS_0x8417,August,20,941-02-3149,Lawyer,34253.08,,4,9,25.88954781,6,"Student Loan, Auto Loan, Not Specified, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",12.20952619,12,11.66,12,Standard,1485.7,28.74235237,,Yes,1457.327257,134.060162,High_spent_Small_value_payments,276.8248334,0,-0.6306,0.6947,-2.0704,0.0782,-0.9035 -0xda59,CUS_0x26f5,August,36,452-24-7475,Writer,41547.99,3192.3325,0,7,8,100,"Debt Consolidation Loan, Auto Loan, and Auto Loan",12.49602984,8,11.38,2,_,1156.82,35.28850247,24 Years and 4 Months,No,78.79997469,50.40258835,High_spent_Medium_value_payments,440.030687,0,-0.3688,1.0017,0.8918,1.4432,1.6924 -0xda65,CUS_0x5c6d,August,25,954-51-3032,Engineer,101238.57,8199.5475,1,3,6,4,"Mortgage Loan, Personal Loan, Payday Loan, and Personal Loan",0,1,3.05,5,Good,816.04,40.81429334,32 Years and 8 Months,No,172.6530623,150.2501621,High_spent_Large_value_payments,737.0515256,0,-0.0373,0.7618,-0.119,-1.7785,-0.4858 -0xda71,CUS_0x99f7,August,55,090-43-5198,Lawyer,21434.275,,1,5,2.288361749,2,"Mortgage Loan, Credit-Builder Loan, and Student Loan",0,3,4.54,3,Good,151.5550236,39.02360367,16 Years and 2 Months,No,49.59958595,498.7041969,Low_spent_Large_value_payments,332.5759235,0,0.0276,-0.5244,-1.6426,0.8924,-0.2399 -0xda7d,CUS_0x14f5,August,41,497-15-6333,Doctor,36348.06,3265.005,6,5,33.06745738,9,"Payday Loan, Not Specified, Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",46.35248666,25.09794953,5.07,9,Bad,5899.494587,34.63481025,3 Years and 11 Months,Yes,149.3999182,305.4816042,Low_spent_Medium_value_payments,124.8986897,0,1.7368,-0.6555,0.3924,-0.7963,-0.8469 -0xda89,CUS_0xb351,August,53,091-82-8016,Manager,77906.25,6399.1875,3,5,5,4,"Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",,17,14.47,4,Good,583.4,33.19597296,18 Years and 9 Months,No,173.5685577,,Low_spent_Small_value_payments,177.4127241,0,0.9135,1.4577,2.2704,-0.5424,-0.191 -0xda95,CUS_0x4f10,August,26,123-72-1445,Manager,70778.4,5849.2,9,5,18,7,"Mortgage Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",16.76876739,,27.73,6,Bad,4416.92189,39.06318037,14 Years and 5 Months,NM,239.6463576,240.4563852,!@9#%8,364.8172572,0,-0.1596,1.3745,-0.2022,0.7153,-1.1987 -0xdaa1,CUS_0xa463,August,19,878-26-9046,Engineer,172085.28,,4,4,1,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",1.180597665,3,11.6,2,Good,956.27,32.59424819,29 Years and 4 Months,No,253.1936917,352.6823959,High_spent_Medium_value_payments,1072.867912,0,-0.8868,-1.0764,-2.4114,-0.4258,-0.7435 -0xdaad,CUS_0x2fbe,August,53,723-79-5455,Teacher,79370.76,,8,3,19,3,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",19.70681434,16,7.59,7,Standard,715.18,40.24735172,30 Years and 10 Months,No,115.4856033,279.1839944,High_spent_Medium_value_payments,540.2534022,0,-0.2598,1.0371,0.974,-0.554,0.2301 -0xdab9,CUS_0x7ad8,August,26,614-62-5951,Accountant,8079.46,,7,7,23,5,"Mortgage Loan, Mortgage Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",29.88824616,20.52247353,11.76,13,Standard,1668.239111,38.29127465,13 Years and 9 Months,Yes,25.58542635,25.15980542,Low_spent_Medium_value_payments,271.5836016,0,-1.0053,-0.8039,0.4479,-2.5275,-0.0746 -0xdac5,CUS_0xc1a1,August,31,858-87-0851,Manager,112460.88,,2,4,9,1,Debt Consolidation Loan,22.94474753,14.54273254,10.04,2,Good,232.2620162,40.61149367,16 Years and 0 Months,No,86.6108701,301.4954136,Low_spent_Medium_value_payments,813.2677163,0,-1.1388,1.6562,0.3805,-0.0949,-1.1364 -0xdad1,CUS_0x69d5,August,25,322-87-0892,Engineer,40554.44,3380.536667,8,10,25.95700519,7,"Auto Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",,29.31234771,29.86,11,Bad,3531.538056,25.68936545,11 Years and 4 Months,Yes,1483.418458,331.3444784,!@9#%8,92.24036066,0,0.5593,1.0084,-0.1697,-0.1368,-1.934 -0xdadd,CUS_0x38c0,August,33,083-35-9736,Musician,15660.15,,9,10,24.06745738,5,"Not Specified, Not Specified, Personal Loan, Personal Loan, and Debt Consolidation Loan",,17.73383215,2.46,,Bad,1739.887356,39.21249366,,Yes,57.29067943,125.0706369,Low_spent_Large_value_payments,197.2196457,0,0.9612,0.2493,0.025,-0.6507,-1.3532 -0xdae9,CUS_0x447b,August,36,107-71-0612,Musician,58599.48,,7,5,30,5,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",38.85838411,21.71869922,,12,Bad,2736.240687,25.12124911,8 Years and 3 Months,Yes,474.9229307,207.6609755,Low_spent_Small_value_payments,375.7728915,0,-0.167,0.3041,0.8328,0.1408,-1.3848 -0xdaf5,CUS_0x2cd4,August,26,585-10-9106,Engineer,18115.21,,10,8,18.88954781,6,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Not Specified, Student Loan, and Student Loan",14.6663015,11.70382382,9.18,11,Standard,1596.149152,36.85624211,19 Years and 5 Months,Yes,1386.33016,46.32971141,!@9#%8,295.7701302,0,-0.9085,-0.573,0.1461,-1.392,1.1662 -0xdb01,CUS_0xa396,August,18,144-58-9585,Entrepreneur,18249.16,1677.763333,4,7,6,2,"Home Equity Loan, and Student Loan",,11,10.09,9,Standard,496.55,27.94713857,10 Years and 0 Months,Yes,21.58400546,63.75703117,High_spent_Medium_value_payments,332.4352967,0,0.2214,1.5902,-1.1656,0.0931,0.3131 -0xdb0d,CUS_0x17d7,August,41,768-24-1090,Scientist,141789.84,,6,6,19,1,Not Specified,22.86612939,17,4.02,1,Standard,1194.16,26.37778502,32 Years and 4 Months,Yes,85.74180593,634.9142649,Low_spent_Medium_value_payments,725.0259291,0,-1.3074,-2.2414,0.1116,-0.047,-0.1947 -0xdb19,CUS_0xc13,August,43,667-64-6394,Developer,30366.16,2329.513333,7,4,18,4,"Not Specified, Auto Loan, Auto Loan, and Debt Consolidation Loan",10.56292302,9.120304247,14.11,2,Standard,910.2371359,28.59937212,20 Years and 6 Months,Yes,62.00134474,64.02979697,High_spent_Medium_value_payments,356.9201916,0,-1.2984,1.2676,-1.0605,-0.9596,-1.1637 -0xdb25,CUS_0xc1b4,August,25,130-22-5184,Teacher,128675.76,9204.888026,4,4,6,2,"Credit-Builder Loan, and Not Specified",10.4769466,11,7.8,4,Good,47.98584648,36.10087762,32 Years and 10 Months,No,1466.973964,480.748283,!@9#%8,675.5226998,0,0.4814,-1.173,-0.0474,-0.3731,-1.2301 -0xdb31,CUS_0xb61d,August,48,212-25-3020,Journalist,34962.32,,3,639,9,3,"Student Loan, Credit-Builder Loan, and Mortgage Loan",6.82882086,7,1.49,1,Good,1470.65,26.43086648,17 Years and 3 Months,No,74.32387167,213.3383074,Low_spent_Small_value_payments,280.4904876,0,-1.0516,2.1557,0.9624,1.5499,-1.5129 -0xdb3d,CUS_0xbd46,August,29,255-94-3242,Architect,64918.54,5704.878333,8,7,8,2,"Auto Loan, and Debt Consolidation Loan",13.62673004,11,9.98,5,Good,916.93,41.46719244,23 Years and 6 Months,No,71.21983735,10000,High_spent_Medium_value_payments,528.1519622,0,0.4359,0.2087,-1.7656,0.3632,0.2597 -0xdb49,CUS_0x2a91,August,39,751-83-3561,Journalist,42070.96,,7,1130,17,2,"Student Loan, and Debt Consolidation Loan",25.14308506,18,9.02,7,_,330.7441509,26.20219398,17 Years and 9 Months,Yes,296.7457293,106.3020402,High_spent_Small_value_payments,485.7795155,0,-0.9259,2.5216,0.6678,0.9016,-0.9311 -0xdb55,CUS_0x4036,August,34,940-07-3149,Musician,8056.13,,10,5,33.06745738,8,"Student Loan, Home Equity Loan, Student Loan, Personal Loan, Not Specified, Auto Loan, Auto Loan, and Debt Consolidation Loan",,16,18.64,6,Bad,4453.450954,41.5404485,9 Years and 4 Months,Yes,37.58269379,65.97219224,Low_spent_Small_value_payments,212.7592427,0,-1.1282,-0.7693,-0.0231,0.0062,-0.4171 -0xdb61,CUS_0x7447,August,26,403-81-2155,Writer,71703.22,5888.268333,7,5,7,0,,,19,8.76,9,Standard,641.99,28.23133656,17 Years and 3 Months,Yes,0,67.94578348,High_spent_Medium_value_payments,770.8810498,0,-0.6489,0.6042,0.4468,0.9133,2.3353 -0xdb6d,CUS_0x468b,August,40,483-58-2227,Mechanic,21018,2011.5,8,4,17,0,,18.25415583,15.03142738,16.1,4,Standard,112.5166214,30.53798539,27 Years and 6 Months,Yes,81171,164.3459241,Low_spent_Medium_value_payments,316.8040759,0,1.0297,0.5186,-1.925,-0.0374,-1.4475 -0xdb79,CUS_0x7bc3,August,45,914-85-2580,Doctor,7636.4,884.3666667,6,9,20.88954781,7,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, Mortgage Loan, and Home Equity Loan",,17,20.33,8,Bad,2614.48,27.99031655,9 Years and 6 Months,Yes,1355.594791,10000,Low_spent_Small_value_payments,276.6313744,0,1.1581,-0.1041,-0.4639,0.3059,1.743 -0xdb85,CUS_0x8f3a,August,45,474-03-7921,Accountant,70566.82,6070.568333,8,1084,14,1,Personal Loan,24.60838888,14.49621764,12.43,0,_,1389.751343,37.35198839,20 Years and 6 Months,Yes,30.09371437,229.984676,Low_spent_Medium_value_payments,626.9784429,0,0.0081,0.8766,-0.8953,1.1648,-1.3165 -0xdb91,CUS_0x2d1a,August,53,174-58-5556,Musician,93451.41,7802.6175,3,7,15,2,"Home Equity Loan, and Student Loan",24.84231718,18,7.98,0,Standard,1048.87,29.28487559,26 Years and 4 Months,No,121.4791361,202.5604426,High_spent_Large_value_payments,696.2221713,0,-0.527,0.107,0.9716,-0.7291,-1.1731 -0xdb9d,CUS_0xa962,August,18,964-23-6499,Engineer,9511.795,,6,7,21.06745738,7,"Student Loan, Auto Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",32.17355369,15,1.62,14,Bad,2567.840954,36.29074079,13 Years and 4 Months,Yes,28.82527022,0,High_spent_Large_value_payments,243.3467604,0,0.9257,-0.8702,-1.3749,-0.1997,-0.0971 -0xdba9,CUS_0x78ab,August,52,534-36-8603,Accountant,65493.78,5196.815,3,7,8,3,"Debt Consolidation Loan, Personal Loan, and Personal Loan",,13,10.05,8,_,1255.36,28.41132303,32 Years and 5 Months,NM,57736,495.2148141,Low_spent_Medium_value_payments,155.0167949,0,-0.0508,-0.9304,-1.2051,1.219,-0.2896 -0xdbb5,CUS_0x27e8,August,26,821-62-6142,Accountant,61219.47,4860.6225,10,6,16,6,"Debt Consolidation Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,19.00560305,4.11,14,_,2733.884604,27.41948179,,Yes,263.2945306,,High_spent_Large_value_payments,414.4675625,0,-1.6871,1.3491,-0.6066,-1.5671,0.5052 -0xdbc1,CUS_0x17b5,August,51,714-28-0746,Doctor,110468.49,8934.7075,0,7,6.288361749,0,Auto Loan,,5,7.23,,Good,1096.492548,23.64370878,32 Years and 0 Months,No,52.45822349,1413.83142,Low_spent_Medium_value_payments,241.3171431,0,1.7093,0.0041,0.9874,0.3545,0.7798 -0xdbcd,CUS_0x614e,August,46,342-14-0940,Manager,8087.76,,8,9,23,3,"Credit-Builder Loan, Payday Loan, and Mortgage Loan",31.99911984,20,9.46,11,_,1810.49,28.22402449,,Yes,14.36421193,12.71220277,High_spent_Medium_value_payments,307.4215853,0,-1.3774,-0.781,0.3973,0.8374,0.0985 -0xdbd9,CUS_0x1234,August,24,101-01-2307,Musician,64996.98,5215.415,3,5,12,2,"Not Specified, and Auto Loan",,12,19.69,6,Standard,340.81,42.01869963,32 Years and 5 Months,Yes,97.54060256,,High_spent_Large_value_payments,577.8538451,0,-2.7356,0.8725,-0.5114,-0.5185,0.1592 -0xdbe5,CUS_0x19a3,August,41,719-96-4265,Lawyer,15636.605,,8,7,3,4,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",20.47780994,12.07560706,1.75,4,Standard,645.6104166,33.46180747,33 Years and 8 Months,No,43.51634815,57.44539889,Low_spent_Small_value_payments,346.5432946,0,-0.5508,-0.4262,0.2092,0.4052,0.2596 -0xdbf1,CUS_0x9886,August,26,797-91-9284,Journalist,164580.36,13871.03,5,3,9.288361749,2,"Student Loan, Credit-Builder Loan, and Mortgage Loan",8.179966603,9,8.37,6,_,803.5508727,33.17287247,20 Years and 3 Months,No,352.2489976,816.6893366,High_spent_Small_value_payments,953.8825896,0,0.5517,0.0754,-0.7418,0.2284,1.7334 -0xdbfd,CUS_0xb32c,August,24,655-50-2780,Mechanic,113788.47,9454.3725,129,5,0.288361749,4,"Not Specified, Mortgage Loan, Auto Loan, and Payday Loan",0,4,3.03,9,Good,466.36,33.09192035,26 Years and 5 Months,No,269.4651141,600.6426417,High_spent_Large_value_payments,735.2669552,0,-2.4036,0.0083,1.408,0.0128,1.116 -0xdc09,CUS_0xb734,August,49,021-51-1139,Manager,107512.29,,4,5,10,3,"Student Loan, Auto Loan, and Student Loan",12.72852361,11,10.39,4,Good,1325.35,32.95482278,19 Years and 5 Months,No,205.5899643,436.1366966,Low_spent_Small_value_payments,529.2090891,0,0.7493,-0.4292,-0.6662,-0.784,0.8307 -0xdc15,CUS_0x6f9b,August,25,#F%$D@*&8,Architect,31568.54,,7,3,10,2,"Personal Loan, and Auto Loan",,10,3.21,3,Standard,1044.92,38.76552265,18 Years and 10 Months,No,45.78709809,91.26626276,High_spent_Small_value_payments,401.5178058,0,0.4397,2.0883,-1.3788,0.6748,-0.1883 -0xdc21,CUS_0x64b,August,44,553-83-5204,Accountant,24693.09,2256.7575,4,5,4.288361749,2,"Credit-Builder Loan, Personal Loan, and Home Equity Loan",,14,8.34,0,Standard,251.4,37.5092866,31 Years and 6 Months,NM,46.78463899,624.3555201,Low_spent_Small_value_payments,264.473052,0,0.4046,-0.3325,0.8721,0.8682,-0.3709 -0xdc2d,CUS_0x5aa1,August,30,467-98-5147,Entrepreneur,19721.21,1633.434167,6,8,21.88954781,9,"Not Specified, Payday Loan, Mortgage Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Payday Loan",35.56434782,23,6.56,11,_,3200.09,23.27344653,8 Years and 8 Months,Yes,1433.733495,32.32646899,High_spent_Large_value_payments,242.9533715,0,0.92,0.693,-0.3472,0.6358,-2.0129 -0xdc39,CUS_0x982e,August,52,252-80-5274,Musician,24353.63,1851.469167,6,7,11,1,Mortgage Loan,15.9590111,11,17.24,4,_,806.4,36.48539266,23 Years and 10 Months,Yes,15.46594646,191.791674,Low_spent_Small_value_payments,267.8892962,0,1.1555,0.374,1.5156,-0.1428,-1.5393 -0xdc45,CUS_0x16f5,August,53,138-08-3421,Scientist,119396.91,9949.7425,1,5,7,3,"Auto Loan, Home Equity Loan, and Payday Loan",0,2,7.51,1,_,431.5436058,40.43102574,29 Years and 11 Months,No,214.0383411,176.8712038,High_spent_Large_value_payments,867.1264221,0,0.9896,1.2095,-1.0739,-0.6351,-0.3339 -0xdc51,CUS_0x19c1,August,43,246-36-9292,Teacher,14188.48,1312.373333,10,10,23.95700519,7,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",26.46974907,17.02920481,4.53,7,_,1667.187766,33.26196977,20 Years and 6 Months,Yes,1370.311397,90.67283038,Low_spent_Small_value_payments,239.2027363,0,-0.1123,-0.2221,-2.0198,-0.4864,1.0055 -0xdc5d,CUS_0xbfc1,August,42,449-42-3493,Engineer,27392.76,,3,3,17,3,"Personal Loan, Not Specified, and Personal Loan",,10,17.33,10,Standard,1148.91,28.54409079,33 Years and 0 Months,Yes,42.54851456,68.9070818,High_spent_Medium_value_payments,394.2174036,0,0.8843,-0.1009,-0.0395,0.4742,-1.8762 -0xdc69,CUS_0xc63b,August,28,563-40-6433,Media_Manager,32928.36,,5,6,20,0,,,13,,0,_,781.1,38.91835126,30 Years and 0 Months,Yes,0,191.2010338,Low_spent_Medium_value_payments,389.4019662,0,-0.7379,1.3398,1.2297,-0.387,1.4713 -0xdc75,CUS_0x84d1,August,44,094-32-7985,Accountant,19609.38,1531.482636,9,7,23,8,"Payday Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Auto Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",27.00864125,21,18.1,15,Bad,3817.315041,33.22902568,5 Years and 9 Months,NM,230.9139078,65.08101549,High_spent_Small_value_payments,283.280955,0,-1.3748,0.1502,-1.8676,0.3126,-0.1639 -0xdc81,CUS_0xb910,August,38,173-92-4344,Musician,29644.12,2073.882744,8,3,18,1,Credit-Builder Loan,28.92809754,20,9.87,5,_,15.81319418,40.03239315,23 Years and 6 Months,Yes,14226,41.35855428,High_spent_Medium_value_payments,433.6346699,0,-0.7889,0.4047,0.428,-0.2673,0.3922 -0xdc8d,CUS_0x9215,August,33,749-11-6940,Media_Manager,36196.52,3201.376667,8,7,33,5,"Payday Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Auto Loan",28.78652892,19,21.53,15,Bad,4329.090995,32.98998275,13 Years and 3 Months,Yes,108.575866,51.64401714,High_spent_Large_value_payments,407.6621417,0,0.241,0.2213,0.9767,-0.1123,0.3305 -0xdc99,CUS_0x7f67,August,61,167-84-0564,Engineer,74457.8,,0,4,9.288361749,0,Payday Loan,,6,6.41,4,Good,73.38692245,41.98255463,24 Years and 5 Months,No,41.17896525,,High_spent_Large_value_payments,768.6301476,0,0.2892,0.8016,-0.0684,1.2586,-0.2476 -0xdca5,CUS_0x744c,August,34,195-92-0874,Musician,39912.02,3440.001667,6,7,11,0,,,12,4.86,3,Standard,780.21,26.51086719,30 Years and 6 Months,No,0,65.27849882,High_spent_Medium_value_payments,528.7216678,0,1.0542,-0.9358,-1.4728,-0.1986,-0.292 -0xdcb1,CUS_0x2ccb,August,52,470-93-6587,Journalist,100100.22,8291.685,5,4,7,0,,9.430756194,8,3.94,6,Good,1472.32,37.60751317,24 Years and 4 Months,No,0,275.5459837,High_spent_Medium_value_payments,803.6225163,0,0.056,0.2985,0.3285,-0.8178,0.2153 -0xdcbd,CUS_0xae0b,August,23,428-26-9400,Entrepreneur,8037.285,,5,3,30.06745738,5,"Auto Loan, Personal Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",25.49199818,17.28794059,13.66,11,_,3156.205361,30.95034943,9 Years and 4 Months,Yes,19.03590965,62.49248242,Low_spent_Small_value_payments,274.228695,0,0.5521,-0.6523,0.7042,-0.1808,-0.9095 -0xdcc9,CUS_0x93c9,August,33,#F%$D@*&8,Architect,21884.21,,3,7,9,0,,11.40316032,9,1.99,5,Standard,847.15,29.85962955,28 Years and 5 Months,No,0,197.1923719,Low_spent_Small_value_payments,255.8760448,0,0.581,0.8104,1.19,-0.1194,-0.903 -0xdcd5,CUS_0x1470,August,24,541-60-3931,Accountant,14156.88,1251.74,3,4,4,4,"Mortgage Loan, Not Specified, Payday Loan, and Home Equity Loan",5.367724325,8,8.86,4,Good,602.3,31.11071542,27 Years and 0 Months,No,57803,91.45229451,Low_spent_Small_value_payments,287.0636961,0,-1.5263,-1.2592,1.1042,0.4618,-1.7065 -0xdce1,CUS_0x44e0,August,50,663-26-0839,Musician,91426.95,7840.9125,7,3,14,103,,22.88438499,17,4.29,3,_,1011.38,27.88709392,32 Years and 2 Months,NM,0,279.126697,Low_spent_Medium_value_payments,784.964553,0,-2.2152,-0.0107,0.2362,0.6943,-1.2046 -0xdced,CUS_0x5451,August,32,941-92-4783,Journalist,176044.04,13654.48174,3,6,5.288361749,0,Auto Loan,11.96571947,11,2.63,0,Good,631.1429605,27.42695965,24 Years and 8 Months,No,1435.127574,1852.721741,!@9#%8,415.8971255,0,0.019,-1.8999,1.3005,-0.7434,-0.3658 -0xdcf9,CUS_0x12a9,August,44,583-20-9758,Media_Manager,44822.21,3555.184167,1,4,2,4,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",6.034664964,7,1.03,0,Good,730.64,30.05812456,,No,135.0442856,100.0534213,High_spent_Medium_value_payments,370.4207098,0,0.6189,-0.8774,-0.9356,-1.1357,-0.3552 -0xdd05,CUS_0x1cb8,August,53,550-64-9594,Mechanic,53003.18,4275.931667,6,6,6,4,"Payday Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",18.79603815,15,2.84,4,Standard,1387.17,29.25996022,,Yes,175.3544553,82.22125251,High_spent_Large_value_payments,410.0174588,0,-1.3126,0.0235,-0.4111,0.8207,1.5481 -0xdd11,CUS_0x3221,August,36,450-93-8421,Mechanic,18426.245,,5,4,13.28836175,4,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",,14,5.7,5,Standard,223.38,25.82870777,10 Years and 3 Months,Yes,147.5522416,472.6031568,Low_spent_Large_value_payments,331.3463797,0,-0.5304,-1.1658,1.337,-1.8014,0.2053 -0xdd1d,CUS_0x289d,August,54,983-41-0016,Journalist,15913.015,,6,7,17,0,,,17,16.14,1,Standard,1347.17,33.73401011,29 Years and 11 Months,Yes,0,133.2971229,Low_spent_Large_value_payments,291.6113354,0,-0.7535,-0.158,-1.8679,0.162,-0.7908 -0xdd29,CUS_0x7640,August,45,522-55-7850,Accountant,34257.69,3111.8075,809,5,9,3,"Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",19.28029617,16,5.38,6,Standard,777.19,24.78195866,19 Years and 4 Months,No,50.9925216,55.313054,High_spent_Medium_value_payments,454.8751744,0,-2.1282,-1.9846,0.8012,-0.5679,-0.1272 -0xdd35,CUS_0x8763,August,27,038-13-2033,Scientist,7536.015,589.00125,4,6,25,5,"Personal Loan, Mortgage Loan, Not Specified, Auto Loan, and Personal Loan",,20.67932506,12.24,9,Standard,1410.452767,29.11509024,20 Years and 4 Months,Yes,17.85292695,58.90196045,Low_spent_Medium_value_payments,262.1452376,0,0.55,0.257,0.0447,0.3361,-1.7471 -0xdd41,CUS_0x4dd1,August,18,092-62-2632,_______,57302.3,3896.514394,3,5,11.28836175,0,,,1,5.67,4,Good,502.73,24.32557525,27 Years and 0 Months,NM,604.677273,782.9740726,Low_spent_Large_value_payments,357.0825551,0,-1.6851,-0.5924,-0.35,-0.3008,0.1341 -0xdd4d,CUS_0xb5c6,August,40,174-39-8329,_______,79501.56,6836.13,7,5,12,2,"Not Specified, and Home Equity Loan",,12,19.94,6,Standard,533.41,27.3673286,16 Years and 8 Months,Yes,82.80383764,465.0817906,Low_spent_Medium_value_payments,415.7273717,0,-1.3675,-0.4253,-0.9153,-0.7594,0.0337 -0xdd59,CUS_0x58d4,August,57,190-54-2903,Architect,108057.12,8067.312667,1,4,8.288361749,4,"Student Loan, Student Loan, Home Equity Loan, and Not Specified",9.042027409,10,0.92,7,Good,149.9193297,26.28617121,20 Years and 6 Months,No,1042.25204,937.9385205,Low_spent_Medium_value_payments,367.9475943,0,1.15,0.7155,-1.289,-0.3799,-0.7481 -0xdd65,CUS_0x4c80,August,29,328-34-5200,Architect,37580.34,,5,2,6.288361749,4,"Student Loan, Not Specified, Student Loan, and Personal Loan",14.7008446,15,8.88,2,Good,417.2786993,30.25161766,31 Years and 6 Months,No,93.474333,634.6308467,Low_spent_Medium_value_payments,281.0100191,0,-2.5337,1.2923,-0.6977,0.9693,0.5565 -0xdd71,CUS_0xb7a7,August,32,243-73-8549,Developer,14368478,5845.9225,3,3,10,2,"Credit-Builder Loan, and Payday Loan",26.88587075,20,,3,Standard,312.59,28.09074405,26 Years and 0 Months,No,5322,192.2636481,!@9#%8,593.0298707,0,0.6618,0.6104,-0.1605,-0.7045,-0.5158 -0xdd7d,CUS_0xa0cd,August,50,870-09-1756,Mechanic,21209.33,,7,7,8,100,Credit-Builder Loan,17.16003048,12,18.7,7,Standard,138.94,24.6171151,24 Years and 9 Months,NM,17.30350889,,Low_spent_Large_value_payments,340.082584,0,0.6933,-1.6175,-0.0505,0.0715,-1.2388 -0xdd89,CUS_0xc23c,August,39,034-97-5921,Media_Manager,16647.05,,10,10,21.88954781,6,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",,29.23051445,-1.86,10,_,4236.141136,27.91312218,4 Years and 9 Months,Yes,1390.933691,50.71217267,Low_spent_Small_value_payments,263.749472,0,-0.0817,-2.244,-0.2707,-0.0007,1.0638 -0xdd95,CUS_0x1f74,August,19,588-75-5901,Architect,37539.84,3404.32,0,5,12,0,,10.11611791,9,2.34,5,Good,31.11,38.98210676,,No,0,41.34953039,High_spent_Medium_value_payments,549.0824696,0,-0.8677,0.5777,-1.23,-0.9759,0.6405 -0xdda1,CUS_0x72a8,August,24,812-06-2042,_______,52860.62,4676.051667,6,7,8,3,"Home Equity Loan, Not Specified, and Payday Loan",7.840815443,7,7.36,2,Standard,1453.24,30.50178294,17 Years and 3 Months,No,121.7858852,195.3587162,High_spent_Medium_value_payments,400.4605653,0,1.0672,-0.7717,-0.3454,-2.1047,-0.3132 -0xddad,CUS_0x4491,August,38,699-79-1235,Media_Manager,29588.18,,3,4,0.288361749,2,"Student Loan, Payday Loan, and Personal Loan",5.876533653,9,-4.27,3,Good,193.06,27.54706811,20 Years and 6 Months,No,61.70950161,,Low_spent_Large_value_payments,244.3966295,0,-1.3252,0.5869,-1.2586,1.1998,0.4774 -0xddb9,CUS_0x6cf3,August,24,716-15-1048,Doctor,45499.89,3659.411208,8,8,34.06745738,5,"Personal Loan, Student Loan, Not Specified, Debt Consolidation Loan, and Student Loan",27.18632264,18,20.41,9,Bad,4877.880954,36.15031534,7 Years and 2 Months,Yes,355.3469959,10000,High_spent_Medium_value_payments,350.8683557,0,0.1864,0.6021,1.6395,1.441,-1.3899 -0xddc5,CUS_0xb127,August,48,442-92-9205,Architect,17980.355,1522.362917,3,4,4.288361749,0,Mortgage Loan,5.977186676,7,3.7,1,_,162.87,30.18069878,25 Years and 8 Months,No,33556,549.6258125,Low_spent_Small_value_payments,304.9099845,0,0.7879,0.3712,0.0735,1.4376,-1.076 -0xddd1,CUS_0x49b8,August,26,#F%$D@*&8,Developer,19798.93,,6,8,17,4,"Student Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",,23,-3.09,15,Bad,1250.46,31.74753838,5 Years and 11 Months,Yes,61.25335493,79.72625305,Low_spent_Small_value_payments,307.0114754,0,2.2071,0.2385,-0.6518,-0.1993,0.3539 -0xdddd,CUS_0x627f,August,47,662-89-9566,Entrepreneur,83408.52,6812.71,4,5,3,2,"Home Equity Loan, and Mortgage Loan",,4.703134399,5.17,3,Good,218.0444667,39.72045507,31 Years and 6 Months,No,123.4884992,,Low_spent_Medium_value_payments,177.5805706,0,1.5504,-0.6648,-0.2407,-1.3227,1.0699 -0xdde9,CUS_0x48c5,August,30,#F%$D@*&8,Mechanic,7206.845,,3,4,15.06745738,4,"Auto Loan, Credit-Builder Loan, Student Loan, and Student Loan",32.50417176,20.79564456,17.42,5,Standard,1714.111855,33.01986207,15 Years and 5 Months,Yes,19.35518461,,Low_spent_Small_value_payments,226.8004539,0,1.7941,0.4276,-2.8469,0.1543,0.643 -0xddf5,CUS_0x38e6,August,23,055-82-9638,Accountant,38649.08,3402.756667,6,9,23,5,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",43.74522777,21.49482781,21.49,11,Bad,3990.563266,32.77064934,7 Years and 4 Months,Yes,115.3718495,23.77627488,High_spent_Large_value_payments,441.1275423,0,0.1297,0.213,1.5083,0.0521,-0.9428 -0xde01,CUS_0x387e,August,37,926-26-5893,Mechanic,118244.84,10055.73667,7,3,15,1,Credit-Builder Loan,20.27275582,16,3.03,9,Standard,1379.72,30.14122294,22 Years and 0 Months,Yes,50.8178128,212.8526446,High_spent_Large_value_payments,981.9032093,0,-2.4959,0.5408,1.8064,0.4761,1.3507 -0xde0d,CUS_0x2d84,August,27,565-71-0473,Architect,44171.71,3716.975833,1,7,9.288361749,4,"Mortgage Loan, Student Loan, Credit-Builder Loan, and Student Loan",13.10055309,12.5679779,1.58,4,Good,383.2816874,26.98858166,32 Years and 3 Months,No,101.3690441,484.0366556,High_spent_Medium_value_payments,456.2293447,0,1.4808,-0.9242,-0.3125,0.6088,0.2297 -0xde19,CUS_0x3f0,August,37,802-19-4704,Developer,33540.43,,6,3,17,0,,18.28211935,13,14.11,10,Standard,1138.97,23.68388954,24 Years and 11 Months,Yes,0,165.2044355,Low_spent_Large_value_payments,370.2991479,0,-0.7878,1.5313,-0.8537,-0.331,-0.6224 -0xde25,CUS_0x3597,August,41,471-78-7619,Musician,53466.6,4156.55,9,6,26,3,"Auto Loan, Home Equity Loan, and Credit-Builder Loan",23.98475627,18,9.76,13,_,1402.55,36.47133495,10 Years and 4 Months,NM,90.88752347,147.8835482,High_spent_Small_value_payments,436.8839283,0,-1.4404,-0.0494,-0.8695,0.5998,-0.8717 -0xde31,CUS_0x4845,August,22,623-80-6676,Mechanic,172259,,1,5,7.288361749,0,,0,0,0.57,8,Good,361.7573632,27.04902593,19 Years and 11 Months,No,0,1790.143316,Low_spent_Medium_value_payments,507.2762601,0,-0.3454,1.0285,1.7726,-1.4936,0.7112 -0xde3d,CUS_0x5ae1,August,43,393-43-4214,_______,68713.48,5526.123333,8,9,18.88954781,6,"Home Equity Loan, Not Specified, Not Specified, Credit-Builder Loan, Auto Loan, and Not Specified",46.79704637,25.93917369,9.88,10,Bad,3390.871342,28.58109777,6 Years and 4 Months,Yes,1629.561346,570.0481007,!@9#%8,,0,-1.7246,0.9734,-0.5778,1.2161,-0.9188 -0xde49,CUS_0x7a50,August,51,815-15-5821,Journalist,170374.76,14176.89667,5,2,4.288361749,2,"Student Loan, Mortgage Loan, and Home Equity Loan",7.308769846,8,2.98,1,_,179.42,32.47882383,18 Years and 2 Months,No,281.6314504,672.1076603,High_spent_Medium_value_payments,1133.888017,0,-0.3664,-0.9959,1.224,-0.3983,-1.8349 -0xde55,CUS_0x4ad9,August,38,849-86-8009,Mechanic,29310.85,,8,4,20,4,"Auto Loan, Home Equity Loan, Student Loan, and Student Loan",31.68143851,25.89035849,9.3,4,_,1319.92241,34.67524815,,No,93.77119067,30.35924005,High_spent_Large_value_payments,368.1266526,0,-0.2354,-1.3507,-0.3786,0.0857,-1.0403 -0xde61,CUS_0xc65a,August,45,867-19-1382,Media_Manager,33588.38,,2,1,12,2,"Payday Loan, and Mortgage Loan",8.640318763,11,8.24,4,Good,802.8193949,23.83082743,27 Years and 0 Months,No,51.64482836,37.88911377,High_spent_Large_value_payments,418.022198,0,-0.0213,0.6321,-1.1657,0.2466,-0.8988 -0xde6d,CUS_0xbef7,August,37,511-48-7019,Doctor,10186.205,,8,10,18.88954781,8,"Payday Loan, Home Equity Loan, Payday Loan, Home Equity Loan, Payday Loan, Student Loan, Home Equity Loan, and Payday Loan",33.41115602,18.21152979,23.03,10,Bad,3960.229817,37.98954104,1 Years and 9 Months,Yes,1360.636869,10000,Low_spent_Small_value_payments,239.4129794,0,1.1594,0.3369,0.5996,0.2335,-0.0771 -0xde79,CUS_0xb50f,August,43,319-70-2154,Engineer,11300.335,940.6945833,6,5,14.06745738,7,"Payday Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Home Equity Loan",31.26816702,21,15.1,9,Standard,873.8809543,29.20353234,,Yes,49.24349164,,Low_spent_Small_value_payments,272.3261115,0,0.2509,1.5569,1.4986,-0.6026,0.2569 -0xde85,CUS_0x2808,August,19,224-39-4670,Scientist,43279.04,3308.586667,1,5,4.288361749,4,"Mortgage Loan, Not Specified, Student Loan, and Student Loan",9.470141592,11,2.57,0,_,331.5199548,30.47551796,23 Years and 5 Months,No,103.1866505,501.3149814,High_spent_Medium_value_payments,407.5691654,0,-1.3493,0.3352,0.0564,-0.3612,-0.0629 -0xde91,CUS_0x2a60,August,31,564-00-4532,Entrepreneur,19042.82,,6,5,18,1,Not Specified,22.84989595,18.01632592,3.12,1,Standard,712.6012006,29.42462142,24 Years and 4 Months,No,10.90877619,68.62950012,Low_spent_Small_value_payments,374.0518904,0,1.2422,1.6728,-1.2823,-0.1096,0.2704 -0xde9d,CUS_0xa2b8,August,19,565-86-1115,Accountant,134809.28,10506.75093,2,3,6,2,"Auto Loan, and Payday Loan",5.89355743,5,7.34,5,_,309.3,42.55324455,24 Years and 11 Months,NM,1119.722927,134.658894,High_spent_Large_value_payments,1144.384579,0,0.4947,-0.695,1.6496,-1.1259,0.2512 -0xdea9,CUS_0x3c5f,August,39,002-45-6541,Musician,75839.22,6438.935,7,4,11,2,"Auto Loan, and Credit-Builder Loan",,9,2.95,3,_,717.83,33.24764101,22 Years and 5 Months,NM,122.1777442,210.5451789,High_spent_Medium_value_payments,561.170577,0,-0.2535,-0.9669,-0.6713,1.5701,0.0089 -0xdeb5,CUS_0x25c0,August,19,942-65-9443,Architect,13737.65,1238.804167,3,3,1615,100,,,,3.55,8,_,331.6499295,30.87732583,18 Years and 10 Months,Yes,0,,Low_spent_Small_value_payments,254.4602592,0,0.8517,0.4088,-0.4281,0.4574,1.0163 -0xdec1,CUS_0x5548,August,30,505-47-4262,Architect,108767.37,,5,4,4.288361749,2,"Student Loan, Auto Loan, and Mortgage Loan",2.720764748,5,2.5,2,Good,425.9485673,24.240924,16 Years and 4 Months,No,62084,,Low_spent_Medium_value_payments,265.0367428,0,-0.8517,0.3285,-0.5622,-2.4217,1.3245 -0xdecd,CUS_0x3650,August,37,581-79-3977,Journalist,60965.31,5012.4425,7,4,12.28836175,0,Not Specified,13.39911967,14,3.85,6,Standard,287.4,35.44202972,29 Years and 5 Months,No,28.65026857,467.7443062,High_spent_Large_value_payments,664.7871362,0,0.7385,1.2107,0.8291,0.8558,-1.6656 -0xded9,CUS_0x2e1a,August,40,982-30-1908,Architect,47390.28,3865.19,8,4,14,2,"Auto Loan, and Personal Loan",23.26315838,17,9.87,12,Standard,938.85,31.5522837,8 Years and 6 Months,Yes,41.95345502,97.44073088,High_spent_Small_value_payments,507.1248141,0,1.677,-0.1109,-0.3575,0.9842,1.3363 -0xdee5,CUS_0xaadb,August,24,165-61-8880,_______,35577.23,,8,4,5,172,,24.10890595,16,15.76,10,Standard,20.94,27.70447905,25 Years and 11 Months,Yes,0,90.49641613,Low_spent_Large_value_payments,482.0805005,0,0.0492,0.5406,1.9195,0.0082,0.402 -0xdef1,CUS_0x3331,August,27,190-23-4331,Mechanic,52243.56,,4,7,27,100,"Payday Loan, Personal Loan, Credit-Builder Loan, Not Specified, and Auto Loan",,17.49119505,8.06,12,Standard,2930.346907,41.3046319,13 Years and 0 Months,Yes,126.4426662,62.20982607,High_spent_Medium_value_payments,504.6105077,0,0.1879,1.8679,0.3198,0.3584,-0.7511 -0xdefd,CUS_0x2c5b,August,23,138-72-0416,Scientist,24812,,7,4,10,6,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",,20,8.15,7,_,930.13,23.42176377,16 Years and 9 Months,Yes,88.3694253,119.8581016,Low_spent_Large_value_payments,257.9391397,0,-0.1338,1.238,-1.0059,0.4394,1.094 -0xdf09,CUS_0xab0e,August,21,313-71-1125,Doctor,118386.4,10126.53333,4,6,1,0,,0,1,15.71,4,Good,0.77,26.55371692,26 Years and 3 Months,No,0,806.5904935,Low_spent_Large_value_payments,476.0628398,0,-1.5314,0.3202,-0.9124,-0.251,0.0025 -0xdf15,CUS_0x5382,August,37,272-92-4691,Teacher,47091.42,3962.285,5,5,16,4,"Mortgage Loan, Mortgage Loan, Home Equity Loan, and Not Specified",16.18342114,,19.67,6,Standard,629.67,39.37406185,9 Years and 10 Months,Yes,146.4743853,131.7406528,High_spent_Medium_value_payments,368.0134619,0,0.2993,-2.2115,-0.9362,-0.4826,-0.8363 -0xdf21,CUS_0x2996,August,53,575-10-2764,Mechanic,41027.94,,4,5,2,1,Payday Loan,0,2,1.52,9,Good,639.3883258,40.68252724,24 Years and 10 Months,No,31.72911294,147.5371131,!@9#%8,404.3666377,0,1.676,-0.4264,0.3395,-0.515,0.7254 -0xdf2d,CUS_0x544f,August,38,358-15-3403,_______,28585.38,,9,7,19,2,"Not Specified, and Personal Loan",,21.46904972,9.62,9,Bad,2750.000732,25.11688063,17 Years and 4 Months,Yes,43.83329423,133.0898124,Low_spent_Small_value_payments,346.6883934,0,1.5038,1.1282,1.5153,-0.5246,-1.2964 -0xdf39,CUS_0x4068,August,22,096-81-0180,Entrepreneur,102137.1,,5,5,8,0,,29.56150386,23.00161593,1.15,5,Good,456.7949312,31.07537318,28 Years and 6 Months,No,0,303.7363516,High_spent_Medium_value_payments,825.8061484,0,0.8745,0.925,0.1569,-2.0597,-0.1479 -0xdf45,CUS_0xb970,August,18,210-36-3488,Engineer,19253.02,,3,3,17,7,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Student Loan, and Not Specified",5.028037135,8,8.08,8,Standard,1264.11,29.79470767,6 Years and 8 Months,Yes,78.30239062,203.8558178,Low_spent_Small_value_payments,166.9836249,0,1.3124,-1.1297,0.9112,0.228,-1.1981 -0xdf51,CUS_0x1b42,August,43,073-79-8798,Musician,168899.44,14211.95333,4,4,4,1,Home Equity Loan,6.403591332,8,0.96,0,_,826.84,29.78880021,30 Years and 11 Months,No,71.8515742,514.0159662,Low_spent_Large_value_payments,1105.327793,0,-1.1058,-2.1301,0.218,0.7371,-0.2954 -0xdf5d,CUS_0xa3b8,August,19,653-49-1055,Developer,109726.14,9131.845,3,3,10,2,"Credit-Builder Loan, and Mortgage Loan",,15,,5,Standard,704.91,43.58911612,24 Years and 0 Months,No,138.5931851,219.7808583,High_spent_Large_value_payments,794.8104566,0,0.3888,0.781,-1.8693,-0.9618,-0.5922 -0xdf69,CUS_0x3f7,August,25,966-78-9490,Entrepreneur,26104.48,1995.373333,4,4,14,7,"Personal Loan, Mortgage Loan, Not Specified, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",16.76012589,14,10.51,9,_,377.32,38.67417513,,Yes,87.21995048,33.62535017,High_spent_Medium_value_payments,328.6920327,0,-0.8012,0.8754,0.1186,-1.8803,0.8991 -0xdf75,CUS_0x9ac5,August,47,232-20-2845,Lawyer,112423.8,9485.65,1,3,4,3,"Student Loan, Home Equity Loan, and Payday Loan",9.333655099,10.71391813,6.04,4,Good,746.5764569,39.68500257,27 Years and 4 Months,No,158.4753662,140.6663416,!@9#%8,899.4232922,0,0.123,0.4715,-0.0342,1.5805,0.3344 -0xdf81,CUS_0x69bb,August,27,273-48-2717,Lawyer,20940.02,1931.001667,9,10,16.06745738,5,"Auto Loan, Mortgage Loan, Auto Loan, Auto Loan, and Mortgage Loan",,24.18033792,1.24,7,Bad,3128.081124,28.61712543,8 Years and 9 Months,Yes,47.16396888,65.06973016,Low_spent_Medium_value_payments,334.1461797,0,-2.1313,0.0239,1.4349,-1.0496,-1.6862 -0xdf8d,CUS_0x2000,August,25,159-91-7430,_______,66227.56,5699.963333,10,9,31,2,"Mortgage Loan, and Debt Consolidation Loan",,17.13336842,,10,Bad,2071.626734,35.86519826,,Yes,77.13000491,100.4815816,High_spent_Medium_value_payments,642.3847468,0,-0.2574,0.6693,-0.9556,-0.3568,0.1439 -0xdf99,CUS_0x58ed,August,35,384-92-1465,Doctor,57707.74,,3,3,20,4,"Payday Loan, Payday Loan, Student Loan, and Payday Loan",25.24910074,16,10.01,12,_,1223,38.61145642,26 Years and 10 Months,Yes,117.1583173,133.9759646,High_spent_Medium_value_payments,470.4635514,0,0.7041,0.2681,-0.3639,1.1042,1.1782 -0xdfa5,CUS_0x92f0,August,19,147-69-1388,Writer,17496.35,,3,4,19,5,"Personal Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",21.12024676,17.46844277,9.59,12,_,1472.739593,27.03548575,7 Years and 3 Months,Yes,47.41790563,50.7062881,Low_spent_Large_value_payments,321.3787229,0,-1.9987,0.2685,0.7929,0.5443,-0.4806 -0xdfb1,CUS_0xa8c9,August,25,655-69-8443,Teacher,137428.16,,3,5,4.288361749,2,"Credit-Builder Loan, and Personal Loan",5.253514449,7,10.88,2,Good,1151.71,36.0269983,26 Years and 4 Months,NM,139.8255412,669.7010193,High_spent_Large_value_payments,985.9455672,0,-1.3734,1.7093,-0.8567,-0.2176,1.5678 -0xdfbd,CUS_0x7cc7,August,41,016-31-3693,Doctor,54052.82,,4,6,10.28836175,2,"Mortgage Loan, Home Equity Loan, and Mortgage Loan",16.60440369,16,13.75,4,Standard,281.77,29.0871288,26 Years and 4 Months,Yes,130.8433895,909.0431537,Low_spent_Small_value_payments,147.7910845,0,-1.5883,0.8428,1.2816,-0.1553,0.2147 -0xdfc9,CUS_0x58e3,August,45,531-24-4222,Accountant,15573910,1711.24,6,6,10,0,,18.61525435,12,0.57,4,Standard,560.11,31.02109402,29 Years and 4 Months,Yes,0,,High_spent_Small_value_payments,334.9029556,0,0.1392,1.2359,0.1159,-0.5958,-0.1389 -0xdfd5,CUS_0xc57,August,35,750-79-0475,Accountant,38027.68,3214.973333,5,6,9.288361749,4,"Auto Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",7.864611221,8,15.04,8,Standard,286.94,27.3759379,26 Years and 6 Months,NM,99.32828048,525.6643012,!@9#%8,366.4422127,0,0.4987,0.2233,0.5414,0.6243,-0.0974 -0xdfe1,CUS_0x57a7,August,18,187-24-6312,Scientist,14291.24,,6,10,33.06745738,6,"Not Specified, Personal Loan, Student Loan, Personal Loan, Student Loan, and Payday Loan",24.79137437,17,2.66,10,Bad,2751.250954,39.82664675,16 Years and 11 Months,Yes,68.47067908,66.2681374,Low_spent_Medium_value_payments,247.7345622,0,1.8154,1.3033,-0.0614,0.2983,0.9646 -0xdfed,CUS_0x6d55,August,31,191-05-3072,Writer,70421.78,5621.481667,6,6,14,2,"Debt Consolidation Loan, and Home Equity Loan",,10,13.07,7,Standard,171.4354337,37.25076986,14 Years and 5 Months,NM,75.01776899,137.3115208,High_spent_Medium_value_payments,619.9153595,0,1.1009,1.013,0.4736,-0.4336,0.6862 -0xdff9,CUS_0x4798,August,36,265-88-4094,Accountant,43287.28,3839.273333,7,6,13,4,"Personal Loan, Home Equity Loan, Not Specified, and Not Specified",15.48052592,11,14.15,3,_,1393.19,32.15530664,30 Years and 10 Months,Yes,111.3621465,56.29193932,High_spent_Medium_value_payments,466.2732475,0,0.7834,1.631,0.0866,-0.9786,0.4189 -0xe005,CUS_0x3c46,August,18,671-83-0137,_______,71933.7,6091.475,3,1307,12,2,"Home Equity Loan, and Home Equity Loan",,11,18.78,,Standard,661.9,38.11526119,20 Years and 6 Months,Yes,62.45662091,,Low_spent_Large_value_payments,498.8678784,0,1.3621,0.5257,1.3325,0.2201,-1.1998 -0xe011,CUS_0x103e,August,40,155-72-8070,Scientist,98690.8,,4,6,8.288361749,0,Student Loan,17.44232664,17,10.76,4,Good,706.96,25.93969011,26 Years and 11 Months,No,55.00440757,1333.41878,Low_spent_Small_value_payments,147.7376071,0,0.8008,-0.5391,-0.2461,-0.9073,0.1085 -0xe01d,CUS_0x71aa,August,25,632-01-7252,Lawyer,20574.71,,8,9,25.88954781,6,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,24.64468055,7.36,8,_,2880.334232,38.0150309,,Yes,1412.243419,96.05333377,High_spent_Small_value_payments,238.7290829,0,1.1524,-0.0446,-0.3923,0.4468,0.2614 -0xe029,CUS_0x8e1a,August,53,375-18-5371,Manager,114389.24,9637.436667,4,3,18.28836175,0,,8.525119562,9,0.06,1,Standard,8.11,35.53771731,27 Years and 5 Months,No,0,1117.8441,Low_spent_Medium_value_payments,545.8370272,0,2.0358,-0.1249,-0.1311,-0.9353,-0.2408 -0xe035,CUS_0x825b,August,34,#F%$D@*&8,Media_Manager,27592.7,2357.391667,8,7,12,100,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Student Loan",26.00923548,19,4.45,4,Standard,1217.125087,35.95528496,29 Years and 8 Months,No,61.62016243,160.0471977,!@9#%8,306.8060581,0,1.5953,0.3633,-0.3408,-0.8831,0.2881 -0xe041,CUS_0x8e88,August,29,528-98-7663,Engineer,58074.15,,8,6,24,8,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",33.10774029,23,26.76,13,Bad,2829.78,29.52777665,10 Years and 3 Months,Yes,207.6693429,,Low_spent_Small_value_payments,1.77998453,0,-0.5717,-1.5647,-0.1984,0.0911,0.557 -0xe04d,CUS_0x987c,August,33,567-00-4734,Developer,19786.36,,7,275,33.06745738,8,"Not Specified, Auto Loan, Not Specified, Not Specified, Credit-Builder Loan, Payday Loan, Student Loan, and Not Specified",,22.79624808,26.28,15,_,4832.86915,31.28359164,5 Years and 10 Months,Yes,102.2872859,,High_spent_Small_value_payments,243.7041431,0,0.3787,0.15,1.6356,0.0642,-1.388 -0xe059,CUS_0x2255,August,29,692-78-0444,Developer,64650.48,,8,7,31,5,"Auto Loan, Personal Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",28.70176493,,4.26,11,Bad,3259.605377,37.90487205,,NM,234.0066434,177.4626321,High_spent_Medium_value_payments,403.6847245,0,-0.9402,-0.8111,1.1962,-0.6106,-0.156 -0xe065,CUS_0x846a,August,52,603-04-5885,Media_Manager,111295.16,9209.596667,3,4,18,1,Home Equity Loan,21.64742301,15,5.23,3,Standard,416.4860072,30.59054093,24 Years and 2 Months,Yes,60.2312605,72.89126999,High_spent_Large_value_payments,1035.789652,0,-1.2123,-2.7205,-1.3489,0.7603,-1.3593 -0xe071,CUS_0xc127,August,43,596-27-6018,Mechanic,15762.82,1216.568333,3,5,7,3,"Not Specified, Personal Loan, and Student Loan",,14,10.18,2,Standard,537.23,28.54777839,30 Years and 8 Months,No,19.77809011,111.7294723,!@9#%8,270.149271,0,-0.3309,1.6782,0.3905,1.6306,-1.1575 -0xe07d,CUS_0x9b85,August,18,178-07-7586,Musician,104658.75,8434.5625,4,7,11,1,Not Specified,,16.08014915,17.76,9,Standard,1368.855944,39.52908321,29 Years and 0 Months,Yes,52.07193108,439.1156292,Low_spent_Large_value_payments,622.2686897,0,0.9775,-0.4413,-2.1433,-0.0507,-1.715 -0xe089,CUS_0x6808,August,43,687-82-5938,Mechanic,16523.08,1497.923333,9,5,28.06745738,8,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Not Specified, Personal Loan, Personal Loan, and Personal Loan",,30.38566271,30.39,11,Bad,5776.217213,29.57071297,13 Years and 6 Months,Yes,109.35109,102.0489629,Low_spent_Small_value_payments,201.6719925,0,-0.4448,1.2201,1.9415,0.5582,0.7402 -0xe095,CUS_0x906a,August,37,912-15-8539,Lawyer,34978.29,,3,6,13,4,"Payday Loan, Student Loan, Debt Consolidation Loan, and Student Loan",15.45487436,13,15.4,6,Standard,1219.82,29.76650899,16 Years and 11 Months,NM,79.50245627,,!@9#%8,182.9430922,0,0.2768,-0.189,0.6768,-1.4896,-0.3082 -0xe0a1,CUS_0xb1bc,August,35,267-50-6833,Mechanic,19194.75,,6,8,23,2,"Personal Loan, and Credit-Builder Loan",30.85027079,21.79647022,-4.95,6,_,2685.325507,28.39299587,7 Years and 8 Months,Yes,28.38685362,46.81440222,High_spent_Large_value_payments,351.8549942,0,-0.0727,-0.2128,0.6465,-1.5442,0.3254 -0xe0ad,CUS_0x4b42,August,38,030-87-0045,Musician,16201.47,1623.1225,4,6,20,2,"Personal Loan, and Debt Consolidation Loan",19.45196553,16.11025684,12.34,4,Standard,1562.373379,34.27723546,15 Years and 6 Months,NM,21.02467887,90.43067318,Low_spent_Small_value_payments,340.8568979,0,-0.446,-2.4161,0.0206,-1.196,1.6144 -0xe0b9,CUS_0x847b,August,43,115-16-8280,Manager,19331.53,,885,7,27,2,"Credit-Builder Loan, and Mortgage Loan",35.82595406,18.53797103,15.47,8,Standard,1437.849216,31.67287365,,Yes,21.28260906,97.0040513,Low_spent_Small_value_payments,313.509423,0,-0.9506,-0.9271,-1.1922,-0.0455,-0.0444 -0xe0c5,CUS_0x66a1,August,39,425-34-3402,Writer,18625.74,1601.145,9,7,16.06745738,8,"Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Personal Loan",,22,6.59,11,Bad,4082.390954,34.32143241,14 Years and 3 Months,Yes,93.08625731,90.05671076,High_spent_Small_value_payments,210.251244,0,-1.4432,0.2505,-0.1131,-0.6261,0.4258 -0xe0d1,CUS_0x61a6,August,31,918-55-2997,Doctor,77476.68,6235.39,4,1269,10,3,"Personal Loan, Credit-Builder Loan, and Not Specified",11.38532338,10,11.19,,Standard,711.7727388,40.45087735,31 Years and 5 Months,No,112.6382564,,Low_spent_Medium_value_payments,229.0673976,0,-0.3263,-1.936,0.3193,-0.1719,-0.0549 -0xe0dd,CUS_0x1a56,August,29,804-47-6828,Entrepreneur,16662.535,1464.544583,4,5,19,7,"Mortgage Loan, Student Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Auto Loan, and Student Loan",22.93151987,17,13.17,6,_,1384.8,23.18410655,11 Years and 4 Months,Yes,88.45540374,76.9869352,Low_spent_Small_value_payments,271.0121194,0,1.7804,1.6077,-0.2881,0.0555,0.0355 -0xe0e9,CUS_0x1d9a,August,18,986-27-1625,Lawyer,28547.56,,10,9,31.95700519,7,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, and Not Specified",31.1346745,17,27.29,8,Bad,4245.710954,38.84027009,7 Years and 6 Months,Yes,1411.361402,92.69758471,Low_spent_Medium_value_payments,310.2869777,0,-1.1217,0.203,1.7204,0.9071,-1.2742 -0xe0f5,CUS_0x424c,August,22,237-56-1887,Developer,92599.26,,0,3,2.288361749,0,,13.48887982,,5.61,1,Good,454.4,38.69312149,,NM,0,878.8855244,Low_spent_Large_value_payments,605.3124366,0,-0.7684,0.4913,0.0555,-0.6679,0.3929 -0xe101,CUS_0x5a5a,August,20,422-77-3211,Accountant,64692.7,,3,7,4.288361749,2,"Student Loan, Payday Loan, and Not Specified",5.806583743,7,11.58,4,Good,380.81,25.31839834,20 Years and 2 Months,No,129.3266373,622.0618579,Low_spent_Large_value_payments,453.5547991,0,2.322,0.5647,0.6364,0.8126,-0.5581 -0xe10d,CUS_0x3c09,August,18,548-06-7219,Musician,33687.46,2395.611465,4,3,20,5,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",18.41826845,15,9.24,8,Standard,702.57,27.16432861,19 Years and 11 Months,Yes,405.6014746,27.2442442,High_spent_Large_value_payments,375.2599829,0,-1.3173,0.6299,0.1701,-1.1736,0.2617 -0xe119,CUS_0x75c4,August,36,487-66-3786,Entrepreneur,9828.82,,10,9,25.88954781,8,"Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, Student Loan, Personal Loan, Auto Loan, and Student Loan",21.63862819,16.90862624,5.36,12,Bad,3738.016852,25.25128749,3 Years and 10 Months,Yes,18768.48344,55.37565242,Low_spent_Large_value_payments,228.3922898,0,0.8463,-0.5494,-0.5537,0.8227,0.9069 -0xe125,CUS_0x70d0,August,46,186-22-4112,Entrepreneur,68081.28,,7,5,10,2,"Home Equity Loan, and Debt Consolidation Loan",16.58544188,10,6.72,6,Standard,502.86,29.61495986,19 Years and 11 Months,No,95.81290819,97.70873983,High_spent_Medium_value_payments,607.422352,0,0.2233,-1.9057,-0.412,-1.4574,0.6671 -0xe131,CUS_0x362a,August,21,086-54-0486,Teacher,81491.94,6497.995,3,3,8.288361749,4,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",,2,8.51,9,Good,859.6,28.27158953,25 Years and 3 Months,No,231.0697623,10419.93746,!@9#%8,360.271829,0,1.5768,-0.3813,-0.5238,0.036,0.5746 -0xe13d,CUS_0x53e0,August,37,540-51-4829,Developer,104653.62,9004.135,0,2,4.288361749,4,"Payday Loan, Not Specified, Student Loan, and Debt Consolidation Loan",6.471075578,9,0.61,1,Good,1221.03,34.63127574,18 Years and 11 Months,No,198.374695,1053.213431,Low_spent_Medium_value_payments,348.7628352,0,-1.5278,0.8694,-0.8585,-0.026,0.1057 -0xe149,CUS_0xac31,August,28,580-52-0449,Engineer,43531.45,3678.620833,0,3,8.288361749,2,"Auto Loan, and Home Equity Loan",6.49146497,9,5.94,0,_,336.3908142,32.95416879,19 Years and 6 Months,NM,53.72127284,583.986324,High_spent_Medium_value_payments,419.1246674,0,1.7404,-2.5407,-0.8449,-1.6794,0.0323 -0xe155,CUS_0x6928,August,40,293-19-9209,Architect,18944.84,,7,6,25.06745738,8,"Student Loan, Student Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Auto Loan, and Home Equity Loan",,27.65627916,3.5,10,Bad,1845.813103,33.06946646,8 Years and 8 Months,Yes,116.9879795,16.50912619,High_spent_Large_value_payments,241.4562731,0,0.5144,-1.0817,-1.3279,-0.3508,0.0545 -0xe161,CUS_0xe18,August,80,260-70-2118,_______,16854.42,1664.535,3,8,32,3,"Credit-Builder Loan, Payday Loan, and Personal Loan",22.20836394,19.18298686,19.53,11,_,1400.720036,25.84108973,,Yes,36.18230816,114.7869643,High_spent_Small_value_payments,275.4842275,0,-0.4347,0.4476,-1.5788,-0.8732,0.4133 -0xe16d,CUS_0xaed2,August,42,169-61-6035,Manager,62825.9,5404.491667,6,6,3,0,,24.42176857,18.42438094,6.16,5,Good,184.0654151,41.73651832,32 Years and 10 Months,No,0,140.4811929,High_spent_Small_value_payments,659.9679738,0,0.596,-0.3492,-0.2958,1.2418,0.8947 -0xe179,CUS_0x88a6,August,38,119-65-1556,Mechanic,15040.47,,3,9,19,7,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Not Specified",,20.29510441,11.32,11,Standard,2596.086294,38.26219349,6 Years and 10 Months,Yes,52.95800884,,Low_spent_Small_value_payments,249.7103307,0,1.4424,1.5194,-0.8042,0.0153,0.9028 -0xe185,CUS_0x798f,August,40,001-41-8258,Journalist,21139.23,,5,5,7,4,"Personal Loan, Not Specified, Student Loan, and Payday Loan",12.82050135,8.223005893,2.75,4,_,341.8932763,28.22245317,,NM,66.90259343,,High_spent_Small_value_payments,260.7652085,0,0.3946,-0.9469,0.9622,0.7224,1.4862 -0xe191,CUS_0x64ae,August,34,074-14-2917,_______,31963.96,,7,9,33,2,"Payday Loan, and Personal Loan",30.68116402,,14,9,Bad,1470.74,29.64942905,7 Years and 8 Months,NM,304.8513259,184.6648892,High_spent_Small_value_payments,308.5911556,0,-1.3341,1.4434,-2.2093,1.5104,0.1628 -0xe19d,CUS_0x1ed5,August,31,025-32-3903,Teacher,18965.35,1317.445833,10,7,20,3,"Debt Consolidation Loan, Student Loan, and Student Loan",,21.08929604,7.33,6,Bad,1655.581395,27.23774144,8 Years and 0 Months,Yes,43.93610991,121.1414863,Low_spent_Small_value_payments,256.6669871,0,1.5464,-0.4439,0.2316,0.1663,-0.2533 -0xe1a9,CUS_0x853f,August,21,991-68-2510,Entrepreneur,113826.68,,3,1,6,4,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, and Not Specified",8.317178171,7,2.78,4,Good,304.21,28.61398904,18 Years and 8 Months,No,293.102834,299.9760923,!@9#%8,583.1767404,0,-0.3358,1.7099,1.0979,0.1124,-0.4186 -0xe1b5,CUS_0xa319,August,38,151-11-5554,Writer,95401.47,8171.1225,7,7,20,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",16.94065658,11,19.38,2,Standard,921.31,39.67275561,19 Years and 2 Months,Yes,230.0957676,552.0545071,Low_spent_Large_value_payments,304.9619753,0,0.2696,-0.3237,-0.5661,0.2722,-0.272 -0xe1c1,CUS_0x6d40,August,46,696-39-6251,Entrepreneur,85432.84,7279.403333,5,4,15.28836175,0,Not Specified,12.15062467,11,4.62,5,Standard,295.87,40.48448847,33 Years and 0 Months,Yes,41.12289025,736.3929411,Low_spent_Small_value_payments,660.361963,0,-2.0939,1.4812,0.2285,0.0348,-1.5373 -0xe1cd,CUS_0x3b4c,August,19,119-63-5471,Teacher,32130.51,2734.5425,3,7,9,6,"Not Specified, Auto Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",,19,15.86,8,Standard,1233.41,31.64328544,17 Years and 8 Months,Yes,84.15915489,83.86483904,Low_spent_Medium_value_payments,385.4302561,0,0.1004,-1.4934,0.9341,-0.4047,-0.1996 -0xe1d9,CUS_0x1b6d,August,26,503-24-1934,Engineer,16753.63,,6,9,24.95700519,9,"Credit-Builder Loan, Student Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",,28.9189468,2.86,7,_,4097.717338,32.85781866,12 Years and 11 Months,Yes,1409.042347,62.76192586,Low_spent_Small_value_payments,253.558941,0,-1.0198,1.2364,-0.068,1.289,0.5409 -0xe1e5,CUS_0x7736,August,40,697-71-5438,Musician,8930.885,842.2404167,10,6,17,8,"Home Equity Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",26.96507644,21,24.52,10,_,3138.495148,28.08906733,1 Years and 4 Months,Yes,33.59607244,29.44247994,Low_spent_Medium_value_payments,304.5577221,0,-0.4586,-0.7056,0.3995,-0.1285,0.9297 -0xe1f1,CUS_0xb928,August,51,#F%$D@*&8,Scientist,28880.56,,3,1371,10,1,Personal Loan,,10,17.66,7,_,412.8,23.4785297,25 Years and 9 Months,Yes,20.96972938,40.25466552,High_spent_Medium_value_payments,439.0469384,0,-0.5627,-0.8519,-0.2505,0.5344,-1.2562 -0xe1fd,CUS_0xb805,August,18,681-00-8612,Engineer,34471.16,2682.596667,8,6,13,2,"Credit-Builder Loan, and Debt Consolidation Loan",,14,17.84,6,Standard,561.18,37.9051661,14 Years and 2 Months,Yes,36.58553432,84.51297821,High_spent_Medium_value_payments,397.1611541,0,-0.4387,-0.4077,-2.4312,0.3635,0.9378 -0xe209,CUS_0x3b52,August,46,139-21-1407,Manager,55910.68,,5,3,11,0,,15.59181152,,9.76,2,_,6.778036715,40.20412382,29 Years and 10 Months,No,354.2949081,191.5587362,High_spent_Small_value_payments,557.9572024,0,-1.38,0.73,0.7629,-1.0664,-0.0089 -0xe215,CUS_0x6112,August,41,572-59-5510,Journalist,65677.38,5343.115,3,1,3.288361749,4,"Student Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,8,10.78,3,Good,356.2258975,36.06106288,26 Years and 11 Months,No,217.6167117,815.2531412,Low_spent_Small_value_payments,255.6786854,0,-0.4,0.9774,1.0071,1.4567,1.3191 -0xe221,CUS_0xa011,August,24,#F%$D@*&8,Developer,31408.15,,5,3,18,2,"Mortgage Loan, and Personal Loan",24.7660777,21.71700014,19.13,12,_,1533.932474,22.1952291,20 Years and 11 Months,Yes,30.79188324,245.9086343,Low_spent_Small_value_payments,274.2340658,0,-2.1447,-0.5867,-0.05,-0.6038,-1.7136 -0xe22d,CUS_0x4c44,August,80,872-37-6177,Journalist,20917.51,,6,5,23.06745738,9,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Student Loan, Not Specified, Auto Loan, and Home Equity Loan",21.6806782,14.65750454,3.92,7,_,2134.615736,33.61370249,18 Years and 11 Months,Yes,151.4146988,,Low_spent_Small_value_payments,57.54685607,0,0.2082,-0.2516,0.2162,1.0226,-0.5312 -0xe239,CUS_0x925d,August,37,053-50-1042,Mechanic,16415.38,,6,8,16,9,"Auto Loan, Payday Loan, Home Equity Loan, Not Specified, Student Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",,23.21314425,0.49,12,_,1786.096315,38.28901297,13 Years and 8 Months,Yes,95.15753444,,Low_spent_Small_value_payments,180.3972101,0,-0.7519,-0.4327,0.9526,-0.2101,1.6528 -0xe245,CUS_0xc283,August,43,768-07-9404,Manager,16012.64,,8,5,24,4,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",,30.41582745,14.49,11,Bad,1650.060054,28.98738005,17 Years and 9 Months,Yes,31.33212205,86.68432609,Low_spent_Large_value_payments,262.8222185,0,0.4944,-1.1992,-1.4244,0.3081,-0.4903 -0xe251,CUS_0x5447,August,30,611-61-5605,Entrepreneur,13214.895,1109.281854,795,4,7,6,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Personal Loan, and Payday Loan",22.16627767,16,15.36,8,Standard,825.6470793,33.449704,15 Years and 4 Months,Yes,65.3176088,,High_spent_Small_value_payments,231.1364432,0,1.1628,0.6495,0.9165,0.6223,0.2838 -0xe25d,CUS_0xccf,August,45,444-22-2741,_______,49349.64,3987.47,5,477,15,5,"Student Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Home Equity Loan",16.05007191,11.21122803,10.3,6,Standard,2074.074321,24.89102968,18 Years and 11 Months,NM,149.4695292,,Low_spent_Small_value_payments,147.4915648,0,0.3281,1.7155,1.4002,1.2294,0.8219 -0xe269,CUS_0x3586,August,38,201-39-3947,Lawyer,17476.72,,8,7,5,2,"Auto Loan, and Personal Loan",14.7001621,,13.23,5,Standard,1470.22,36.08948571,,NM,24.91418627,104.3872607,Low_spent_Medium_value_payments,305.6378864,0,-0.0677,-1.3811,0.3072,-1.2289,-0.6819 -0xe275,CUS_0x83fb,August,18,016-56-4100,Manager,11687.925,1212.99375,3,4,11,3,"Not Specified, Home Equity Loan, and Student Loan",,20,17.43,,Standard,991.78,32.44350434,10 Years and 8 Months,Yes,18.07906349,58.54462227,!@9#%8,304.6756892,0,-1.7796,-1.9799,-0.3984,1.0657,-0.9888 -0xe281,CUS_0x6754,August,43,221-68-3307,Musician,15469.21,1156.100833,10,9,32.06745738,4,"Credit-Builder Loan, Payday Loan, Not Specified, and Personal Loan",,21.76193231,10.38,12,Bad,2277.433069,35.89473784,9 Years and 11 Months,Yes,38.6767959,52.37501339,Low_spent_Small_value_payments,287.8379861,0,-1.5218,-0.5321,0.4966,-1.8743,-0.7132 -0xe28d,CUS_0x2fb0,August,28,855-00-3668,Architect,42162.24,3782.52,6,6,1,2,"Debt Consolidation Loan, and Payday Loan",19.03462238,,7.13,2,Standard,664.7,30.9410051,,No,56.148421,236.9816622,Low_spent_Large_value_payments,355.1219168,0,0.0344,0.0854,0.5781,0.0904,-0.4717 -0xe299,CUS_0xb60f,August,38,590-07-4139,Architect,119877.15,9942.7625,0,5,10,3,"Student Loan, Mortgage Loan, and Home Equity Loan",1.432577341,3,4.69,4,_,152.07,39.49153175,,No,239.7093039,388.6556088,High_spent_Small_value_payments,625.9113372,0,-0.2486,0.9735,-0.8272,-0.8208,1.9165 -0xe2a5,CUS_0x6d15,August,45,572-76-1796,_______,41550.06,3000.939039,9,7,25.06745738,2,"Home Equity Loan, and Not Specified",33.43432071,19,8.28,8,Bad,2731.340954,30.69085155,9 Years and 2 Months,Yes,239.1287801,187.7326422,Low_spent_Small_value_payments,346.1347506,0,0.2759,-0.9283,-0.4722,-1.0233,-0.6618 -0xe2b1,CUS_0x4037,August,33,022-20-2822,Engineer,92509.38,,7,4,12,0,,10.39124623,7,9.92,5,Good,1167.56,33.05856736,18 Years and 0 Months,No,0,246.7222468,High_spent_Medium_value_payments,790.8892532,0,-0.9485,-1.0541,0.5622,0.9113,0.914 -0xe2bd,CUS_0x7c59,August,22,788-42-3871,Architect,36298.36,2842.863333,3,4,9,2,"Personal Loan, and Mortgage Loan",10.00923046,10,4.38,6,Good,922.1180671,35.334859,29 Years and 8 Months,No,42.79523131,71.78842436,High_spent_Large_value_payments,418.2091578,0,1.0292,0.848,1.4597,0.0922,-0.9326 -0xe2c9,CUS_0x464f,August,43,631-96-5803,Entrepreneur,22298.54,,5,3,6,4,"Mortgage Loan, Auto Loan, Not Specified, and Not Specified",11.1108746,10,11.61,10,_,727.07,28.30749442,19 Years and 8 Months,Yes,52.42507017,,High_spent_Small_value_payments,332.8707021,0,-0.0154,-0.9855,-1.401,0.2672,0.0956 -0xe2d5,CUS_0x38cd,August,29,121-15-1586,Accountant,35856.82,,2,5,20,1,Payday Loan,16.56376211,,16.02,5,Standard,1212.78,34.50968156,25 Years and 10 Months,NM,20.55212296,,Low_spent_Medium_value_payments,365.9106821,0,0.8312,1.0166,-2.0673,0.853,-0.4881 -0xe2e1,CUS_0xc165,August,80,200-20-5107,Musician,16518.585,,1,5,9,4,"Student Loan, Home Equity Loan, Payday Loan, and Student Loan",7.247661267,10,11.67,6,Good,246.8394866,28.85557189,30 Years and 2 Months,No,47.62333141,88.97386167,!@9#%8,288.4970429,0,-0.6809,-1.2716,-0.0041,1.7172,0.005 -0xe2ed,CUS_0x7231,August,21,897-52-0754,Mechanic,61923.66,,9,9,29,2,"Home Equity Loan, and Auto Loan",,23.36483563,8.03,15,Standard,2533.878893,26.51510383,7 Years and 4 Months,Yes,53.17181692,177.6068016,High_spent_Medium_value_payments,543.7518815,0,-1.0561,-0.0048,-0.0463,0.1309,0.2853 -0xe2f9,CUS_0xc70e,August,80,937-90-1635,Scientist,97583.43,,7,7,9,1,Credit-Builder Loan,19.77799752,16,1.92,2,Good,1120.037942,29.02739174,30 Years and 0 Months,No,46.51178913,772.1132077,Low_spent_Medium_value_payments,338.2251097,0,0.213,0.3514,0.106,-0.6586,-0.407 -0xe305,CUS_0x6e98,August,25,096-42-8765,Accountant,16063.455,1142.62125,8,6,7,2,"Credit-Builder Loan, and Mortgage Loan",17.55540312,,15.79,9,_,355.79,32.15943092,16 Years and 5 Months,Yes,72151,90.19694192,Low_spent_Medium_value_payments,282.0055324,0,-0.1864,1.5356,-0.8848,0.7127,-0.6819 -0xe311,CUS_0x6aea,August,27,289-76-4615,Architect,54150.09,4595.5075,7,8,30,7,"Not Specified, Student Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",21.68879201,16.88966364,24.54,12,Bad,4724.885285,36.58300972,10 Years and 0 Months,Yes,211.3872219,72.99992053,High_spent_Large_value_payments,415.1636075,0,0.3279,1.5158,-0.2391,-1.0635,1.1079 -0xe31d,CUS_0x5ea7,August,31,930-79-9858,Entrepreneur,7682.515,,6,6,33.06745738,7,"Payday Loan, Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Personal Loan",17.39320806,9.663771246,9.59,15,Standard,1839.548184,29.07798012,9 Years and 0 Months,Yes,31.01695061,,Low_spent_Large_value_payments,250.5833237,0,0.1518,-2.585,0.3723,-1.9517,-0.1925 -0xe329,CUS_0xa660,August,22,752-72-1728,Doctor,7895.565,,5,10,34,5,"Student Loan, Not Specified, Not Specified, Auto Loan, and Auto Loan",16.35208448,15,,15,Standard,2659.39,33.7718681,19 Years and 4 Months,Yes,26.66209872,23.40997455,High_spent_Large_value_payments,281.1243017,0,1.0927,-1.5085,0.3652,1.3924,1.9037 -0xe335,CUS_0x9e48,August,18,191-96-6402,Teacher,74956.2,6151.35,9,7,34.06745738,6,"Debt Consolidation Loan, Home Equity Loan, Student Loan, Payday Loan, Payday Loan, and Payday Loan",,22,24.9,11,Bad,5165.600954,28.30741674,6 Years and 8 Months,Yes,281.8871266,144.6877503,High_spent_Large_value_payments,401.8398352,0,0.5063,-0.7266,0.0752,-2.6824,-0.0272 -0xe341,CUS_0x7a8d,August,46,921-21-5382,Architect,130232.25,10750.6875,5,3,6.288361749,0,Credit-Builder Loan,,6,4.05,3,Good,1077.66,36.2383901,19 Years and 4 Months,No,60.03972732,581.2482052,High_spent_Medium_value_payments,1103.718279,0,0.1997,-2.0189,-1.368,-0.1768,0.201 -0xe34d,CUS_0x180f,August,29,568-54-3190,_______,30028.29,,3,6,10,4,"Personal Loan, Student Loan, Personal Loan, and Home Equity Loan",,19,17.65,11,Standard,1410.84,35.26048981,7 Years and 3 Months,Yes,76.32040533,10000,Low_spent_Medium_value_payments,255.0243354,0,0.1543,-0.4635,-1.6718,0.3213,-0.2019 -0xe359,CUS_0x52b7,August,80,090-51-5624,Accountant,53331.48,4255.29,10,5,26,9,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",46.71878515,23.55350083,16.23,15,Bad,3198.954111,26.38668838,2 Years and 5 Months,Yes,230.3405624,460.0510617,Low_spent_Small_value_payments,25.13737595,0,0.8357,0.8059,2.207,0.4097,0.0437 -0xe365,CUS_0x6635,August,44,225-86-3141,Doctor,59359.04,4961.586667,10,10,29.95700519,6,"Payday Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",24.40155716,16.13981579,15.28,10,Bad,4058.582187,35.64673761,5 Years and 11 Months,Yes,1610.572294,648.9799928,Low_spent_Small_value_payments,,0,0.1423,-0.1324,-0.4399,-0.144,-2.4314 -0xe371,CUS_0x5162,August,34,653-06-1500,Manager,30771.54,,4,6,18,7,"Auto Loan, Student Loan, Mortgage Loan, Mortgage Loan, Student Loan, Student Loan, and Mortgage Loan",23.55186265,18,19.25,4,Standard,246.06,32.46018538,9 Years and 5 Months,Yes,162.4018137,,Low_spent_Medium_value_payments,190.7665625,0,-0.6362,-0.4048,1.3985,0.7144,0.5223 -0xe37d,CUS_0xbd5b,August,28,652-29-5461,_______,31040.14,2474.678333,833,5,16,2,"Auto Loan, and Mortgage Loan",5.17170684,8,13.77,5,Standard,1288.66,26.95388295,30 Years and 0 Months,Yes,44.31614813,111.2736691,Low_spent_Small_value_payments,381.8780161,0,-1.2039,0.3652,1.3128,0.5764,0.0415 -0xe389,CUS_0x66f5,August,24,430-15-0729,Mechanic,17414.3,,3,7,35.06745738,1257,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,13.031387,15.92,9,Standard,3083.472767,41.82501661,15 Years and 4 Months,Yes,61.1695887,34.90477785,High_spent_Small_value_payments,265.7245122,0,-1.2611,-1.0332,0.071,-0.5937,0.0526 -0xe395,CUS_0x24e0,August,39,068-83-7239,Entrepreneur,46248.72,3884.06,8,7,14,7,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,7,18.43,9,_,214.72,25.90256142,,Yes,207.8468579,,High_spent_Medium_value_payments,310.2995229,0,0.7719,0.3189,-1.0309,-0.4296,0.9689 -0xe3a1,CUS_0x35c6,August,53,521-19-2395,_______,21051.145,,1,6,8,1,Auto Loan,,9,7.38,2,Good,90.3,28.24899761,17 Years and 5 Months,No,15.49550054,,Low_spent_Small_value_payments,245.9338326,0,2.5751,0.4334,1.7999,0.6137,-2.5212 -0xe3ad,CUS_0x9014,August,24,561-30-9378,Engineer,59502.28,,2,620,0.288361749,4,"Auto Loan, Student Loan, Home Equity Loan, and Student Loan",0,2,11.21,,Good,346.0673394,29.06165096,25 Years and 8 Months,No,188.6943212,643.4783882,High_spent_Medium_value_payments,364.7487634,0,1.0365,-0.4923,-0.2693,-1.4861,0.2129 -0xe3b9,CUS_0x3e4d,August,30,265-51-7271,Mechanic,7567.505,749.6254167,6,7,22.06745738,5,"Mortgage Loan, Mortgage Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",,26.78584942,26.4,12,Bad,5067.243978,36.16715024,11 Years and 6 Months,Yes,25.53319096,64.00785957,Low_spent_Small_value_payments,248.7012032,0,1.2852,1.0084,0.1701,0.5492,0.5239 -0xe3c5,CUS_0x78c2,August,29,682-92-8819,Lawyer,93169.92,7794.16,6,7,18,172,"Mortgage Loan, and Payday Loan",12.05315022,12,19.62,2,Standard,1003.08679,24.25779772,27 Years and 2 Months,Yes,112.3402977,1158.0353,Low_spent_Small_value_payments,,0,0.3439,-0.6188,0.6633,-0.0125,-0.2102 -0xe3d1,CUS_0x30ee,August,18,237-56-8072,Lawyer,92084.4,7728.7,3,3,14,4,"Student Loan, Mortgage Loan, Student Loan, and Not Specified",20.52895757,16,18.09,9,Standard,1265.51,33.56713796,16 Years and 3 Months,Yes,180.5883652,,High_spent_Large_value_payments,775.6282141,0,0.9437,-2.0242,-0.4148,1.1643,0.4568 -0xe3dd,CUS_0x6b1d,August,20,971-49-5241,Musician,58225.78,,5,7,15,100,,26.61187837,18,1.77,3,_,152.123258,36.96425528,25 Years and 4 Months,No,696.2149441,498.7785218,Low_spent_Large_value_payments,324.6971347,0,2.0344,0.5027,1.3214,0.2576,-0.198 -0xe3e9,CUS_0xb5b9,August,80,893-75-4053,Lawyer,125943.63,10448.3025,3,5,5.288361749,0,Credit-Builder Loan,,4,2.19,4,Good,853.94,37.09087464,23 Years and 8 Months,No,90.8293526,,Low_spent_Medium_value_payments,506.1486197,0,1.3611,-0.9003,-0.1872,0.4773,0.252 -0xe3f5,CUS_0x2d22,August,27,911-53-5148,Accountant,16083.84,1488.32,7,4,11,100,"Payday Loan, and Home Equity Loan",28.80584539,21.77413458,7.92,0,_,590.2973643,30.90923201,17 Years and 2 Months,NM,14.68681221,51.11384559,Low_spent_Small_value_payments,373.0313422,0,0.3574,-0.7009,1.3354,-0.0616,-1.5606 -0xe401,CUS_0x25cd,August,28,050-78-7339,Entrepreneur,67512.6,5804.05,7,6,31,3,"Student Loan, Credit-Builder Loan, and Home Equity Loan",16.61164291,10.25986039,13.48,15,Standard,2663.053243,38.97144081,10 Years and 4 Months,Yes,88.99393704,270.9728041,Low_spent_Small_value_payments,510.4382589,0,1.8601,-1.1817,0.5814,0.7759,1.747 -0xe40d,CUS_0x38f3,August,18,110-21-0161,Mechanic,143703.4,12099.28333,8,3,6,2,"Not Specified, and Auto Loan",,14,11.53,11,Standard,418.85,30.7015149,,Yes,168.7055047,306.6047378,High_spent_Small_value_payments,994.6180908,0,0.0418,-1.1836,0.1712,1.4171,-0.2789 -0xe419,CUS_0x5e53,August,22,982-11-1159,Teacher,19742.24,,7,6,32,4,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",21.39034644,15.40817626,9.55,9,Standard,1566.789778,29.40476876,,Yes,52.09095848,41.77613239,Low_spent_Large_value_payments,338.0515758,0,0.3409,1.2099,0.8863,-0.5553,-0.9208 -0xe425,CUS_0x54fd,August,49,761-60-3177,_______,32027.38,,6,3,14,0,,,16,-0.54,2,Standard,990.39,29.42242578,23 Years and 8 Months,No,0,,Low_spent_Large_value_payments,411.740212,0,-0.7925,-0.0993,-0.9526,-0.5059,-1.6966 -0xe431,CUS_0x7f47,August,42,746-02-0586,Journalist,32424.62,2867.051667,4,7,3.288361749,0,,5.695755824,8,5.25,3,Good,404.3912389,34.00464757,23 Years and 4 Months,No,0,528.9147858,High_spent_Medium_value_payments,438.1214063,0,-0.5601,-0.0679,1.151,-1.0819,-0.4788 -0xe43d,CUS_0x3c3a,August,38,014-29-7065,_______,8499.645,,8,7,21.06745738,8,"Student Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, Not Specified, Auto Loan, Payday Loan, and Home Equity Loan",25.40419292,17,5.65,9,Bad,2796.510954,29.24432287,16 Years and 0 Months,Yes,34.70069003,,High_spent_Large_value_payments,252.9088172,0,-0.1534,0.3942,-0.9866,-2.0914,0.2047 -0xe449,CUS_0x8511,August,29,541-42-1348,Developer,43115.38,,4,4,6,4,"Not Specified, Student Loan, Payday Loan, and Auto Loan",11.15681244,10,7.86,0,Good,681.3531746,30.87897888,16 Years and 8 Months,No,118.4402088,66.51538452,High_spent_Medium_value_payments,453.987183,0,-1.2803,-0.3739,-1.0969,-0.9889,0.38 -0xe455,CUS_0x6cce,August,27,283-37-4594,Media_Manager,16038.69,,8,7,17.06745738,7,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Mortgage Loan",20.3439299,13.74180525,13.5,9,Standard,2477.294467,34.25335385,16 Years and 9 Months,Yes,79.94205891,,Low_spent_Medium_value_payments,221.9519905,0,0.8517,1.2488,-0.0294,-1.5017,-0.1294 -0xe461,CUS_0x7d6,August,44,554-10-7651,Journalist,7885.605,,8,7,24.06745738,5,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",38.77299236,23,1.64,12,Bad,1557.500954,32.17712069,10 Years and 3 Months,Yes,30.60062828,,Low_spent_Small_value_payments,231.8019933,0,-1.0277,-0.4746,-0.5408,-0.7634,1.9647 -0xe46d,CUS_0x390d,August,30,423-32-4754,Musician,10366.83,568.9025,8,3,6,4,"Home Equity Loan, Not Specified, Not Specified, and Debt Consolidation Loan",19.78468279,14,7.92,5,Standard,0.95,21.94129847,20 Years and 8 Months,Yes,24.41334705,41.7568451,!@9#%8,280.7200578,0,0.8212,-0.0465,-0.0868,-0.0332,-1.2879 -0xe479,CUS_0x903b,August,35,908-24-4478,Entrepreneur,82203.45,6655.2875,6,5,12,2,"Credit-Builder Loan, and Home Equity Loan",25.58589103,20,4.86,4,_,667.13,28.16081275,22 Years and 6 Months,Yes,104.3200658,,Low_spent_Large_value_payments,239.0597799,0,2.5037,-0.7193,-0.7092,0.3906,0.4013 -0xe485,CUS_0x17d1,August,22,#F%$D@*&8,Architect,27767.57,,5,7,20,0,,,17,9.81,4,Standard,1262.27,39.48528551,23 Years and 6 Months,Yes,0,,High_spent_Medium_value_payments,459.8231183,0,-0.6607,0.9909,-0.9315,-1.3249,0.6071 -0xe491,CUS_0x9185,August,31,295-97-5420,_______,48101.13,3798.949791,7,8,31.06745738,9,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Not Specified, Credit-Builder Loan, Personal Loan, Mortgage Loan, Not Specified, and Student Loan",30.91991034,19,27.14,12,Bad,4097.178107,23.79906051,6 Years and 5 Months,Yes,315.0737758,317.1466469,Low_spent_Large_value_payments,121.9497583,0,0.3991,0.1788,0.695,1.0831,-1.1572 -0xe49d,CUS_0x7181,August,45,413-36-1087,Scientist,9093.865,621.8220833,7,9,27,4,"Home Equity Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",26.05236214,18,15.75,11,Bad,2196.35,35.04738311,9 Years and 11 Months,Yes,25.63158429,48.58626708,Low_spent_Small_value_payments,277.964357,0,-1.2267,-0.9092,1.3603,0.5757,0.4261 -0xe4a9,CUS_0x9570,August,23,897-31-4273,Accountant,59214.6,5120.55,7,10,27,9,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Not Specified, Personal Loan, Debt Consolidation Loan, Personal Loan, and Auto Loan",33.87637132,21,25.47,11,Bad,2814.81,36.70086322,3 Years and 5 Months,Yes,388.1756412,521.4185407,Low_spent_Small_value_payments,,0,0.6718,0.3636,-1.648,-0.5245,0.9488 -0xe4b5,CUS_0x5df7,August,22,324-19-5816,Mechanic,8285.085,592.42375,6,6,33,5,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",,19.06352088,18.56,7,Bad,2021.372236,39.27355361,,Yes,18.84763609,40.26050413,Low_spent_Medium_value_payments,280.1342348,0,-0.4424,-0.421,-0.0314,-1.4418,-1.1197 -0xe4c1,CUS_0x6f62,August,27,155-15-5096,_______,104880.68,8771.056667,7,7,12,0,,,11.82916581,10.16,5,Standard,1169.437444,43.45473243,32 Years and 9 Months,Yes,0,177.6345244,High_spent_Medium_value_payments,949.4711422,0,-0.3637,1.1122,0.0772,-0.7805,-0.6369 -0xe4cd,CUS_0xa8b1,August,27,086-29-1667,Doctor,38036.61,3180.7175,2,3,2,2,"Debt Consolidation Loan, and Payday Loan",5.35789593,5,4.84,8,Good,241.07,34.79700222,17 Years and 4 Months,No,33.31106411,249.7729573,Low_spent_Large_value_payments,304.9877286,0,0.9727,-0.3579,-1.3793,-0.7415,-1.2505 -0xe4d9,CUS_0x262e,August,27,#F%$D@*&8,Journalist,8983.565,,6,4,6,2,"Credit-Builder Loan, and Auto Loan",20.75535353,18.02031154,11.25,8,Standard,1450.488489,25.42816663,15 Years and 3 Months,Yes,9.885124977,61.96396627,Low_spent_Small_value_payments,282.7139504,0,0.7735,-0.6446,-0.3717,-1.5485,2.2059 -0xe4e5,CUS_0xb2c,August,50,784-78-7776,Media_Manager,80302.47,6391.8725,5,5,20,0,,14.66233212,12.78643495,11.71,5,Standard,1075.279942,35.13812679,23 Years and 6 Months,Yes,0,142.9868364,High_spent_Medium_value_payments,746.2004136,0,1.4337,-2.3544,0.2083,-0.257,0.2248 -0xe4f1,CUS_0x328b,August,39,191-30-7869,Doctor,28279.12,2300.593333,4,7,13,0,,21.13717109,15,13.74,8,Standard,329.28,33.14476057,19 Years and 0 Months,Yes,0,,High_spent_Small_value_payments,394.5734835,0,-0.5336,0.6129,0.4513,-0.0259,0.1392 -0xe4fd,CUS_0x6831,August,24,897-28-5647,Engineer,28256.16,,8,7,22,9,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Personal Loan, Personal Loan, and Not Specified",35.38540522,24.93168783,8.95,11,Bad,1878.057607,29.5781708,10 Years and 8 Months,Yes,195.867181,184.0598737,!@9#%8,160.1409454,0,-0.5646,-1.6936,-0.7147,-0.2215,1.3312 -0xe509,CUS_0x22cf,August,35,693-76-8377,Journalist,14075.83,,7,10,19,5,"Not Specified, Student Loan, Credit-Builder Loan, Student Loan, and Student Loan",37.32917302,26.34276948,17.14,17,Bad,1477.679556,23.95753729,13 Years and 10 Months,Yes,31.00524599,63.19206708,Low_spent_Large_value_payments,263.5012703,0,0.7117,-0.575,1.0341,-0.0715,-0.4244 -0xe515,CUS_0xd07,August,24,958-58-8885,Teacher,30608.63,,3,6,9,1,Mortgage Loan,15.37647937,14,17.04,9,Standard,729.74,36.87501919,24 Years and 8 Months,Yes,12.91911988,,!@9#%8,427.9629172,0,-1.4761,-0.065,1.494,1.3902,-0.0189 -0xe521,CUS_0xb01a,August,30,442-12-0514,Accountant,15714.98,,10,1018,16.88954781,9,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Payday Loan, Not Specified, and Auto Loan",25.98587253,19.50301625,6.98,,_,2049.654993,28.97561033,7 Years and 11 Months,Yes,51360.48344,33.2947327,High_spent_Small_value_payments,264.6219926,0,0.4962,0.3166,-1.899,1.794,-0.3121 -0xe52d,CUS_0xabd8,August,31,143-65-6732,Media_Manager,55663.5,4932.625,5,4,30,7,"Student Loan, Personal Loan, Mortgage Loan, Not Specified, Payday Loan, Personal Loan, and Debt Consolidation Loan",21.82446988,15.74138316,7.39,6,Standard,1517.60662,29.41069626,6 Years and 0 Months,Yes,223.5445482,300.9042869,Low_spent_Large_value_payments,238.8136648,0,-0.5345,-1.7729,0.5134,0.9736,1.1447 -0xe539,CUS_0x6ced,August,34,563-01-6338,Accountant,19071.07,,7,6,21.06745738,4,"Personal Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",,31.91338629,7.06,13,Bad,1911.951449,31.8312874,13 Years and 2 Months,Yes,52.15717234,151.088927,Low_spent_Small_value_payments,248.759196,0,-0.0578,0.5837,-1.2442,0.1109,-0.3795 -0xe545,CUS_0x1ae8,August,48,302-22-0779,Entrepreneur,32019.94,,4,5,7,3,"Credit-Builder Loan, Student Loan, and Not Specified",15.57072055,14,1.79,1,Good,712.9214219,38.98785202,17 Years and 2 Months,No,41.77294001,141.8466591,High_spent_Small_value_payments,349.1527822,0,0.7276,-0.6737,0.9332,0.2066,1.151 -0xe551,CUS_0x8d6b,August,43,275-55-2149,Scientist,104118.69,8853.5575,5,7,5,3,"Mortgage Loan, Debt Consolidation Loan, and Personal Loan",22.44319467,15,8.65,9,_,555.27,39.44680168,21 Years and 11 Months,Yes,163.6445971,224.9203197,High_spent_Large_value_payments,736.7908332,0,-0.1758,-0.4143,-0.1383,1.9989,-0.0191 -0xe55d,CUS_0x24f8,August,42,429-74-0774,Writer,20562.56,1651.546667,5,6,31,2,"Not Specified, and Credit-Builder Loan",,13,11.16,9,Standard,2491.07,39.43457724,11 Years and 3 Months,Yes,28.58876933,112.0159375,Low_spent_Large_value_payments,294.5499598,0,-1.2688,-0.6473,-1.647,-0.8368,-1.0472 -0xe569,CUS_0x8b98,August,44,901-85-5314,Lawyer,34014.64,,4,4,21,7,"Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",15.25857285,11,15.58,9,Standard,1706.37,31.99192834,9 Years and 4 Months,Yes,99.50967879,129.8140334,Low_spent_Small_value_payments,334.9316212,0,0.0383,-0.5463,0.5633,-0.4436,0.4065 -0xe575,CUS_0x5786,August,39,166-30-9233,Teacher,20372.43,1411.7025,10,5,17,7,"Personal Loan, Not Specified, Home Equity Loan, Personal Loan, Mortgage Loan, Student Loan, and Payday Loan",22.09258475,,23.96,15,_,3857.801265,30.70813373,3 Years and 6 Months,Yes,108.1344183,10000,Low_spent_Medium_value_payments,219.3711231,0,-0.2141,0.9944,-0.2144,0.619,-0.9743 -0xe581,CUS_0x2a11,August,25,#F%$D@*&8,Lawyer,167787.16,13952.26333,5,4,9.288361749,2,"Personal Loan, Not Specified, and Not Specified",0,0,8.56,1,Good,1357.9,27.71730046,16 Years and 4 Months,No,413.5720378,695.0153185,High_spent_Large_value_payments,946.5764381,0,-0.1922,0.5157,-1.1196,-0.1255,0.6199 -0xe58d,CUS_0xa04b,August,31,401-21-4779,Journalist,135807.12,,7,7,12,3,"Student Loan, Not Specified, and Debt Consolidation Loan",,,5.1,3,_,1032.13,33.74245227,17 Years and 10 Months,Yes,214.3614518,1031.128621,Low_spent_Medium_value_payments,179.1359275,0,0.5921,0.2399,0.6365,0.6574,0.3754 -0xe599,CUS_0xc38f,August,38,324-29-0824,Scientist,69228.92,5752.076667,9,8,18,7,"Not Specified, Student Loan, Student Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Student Loan",35.08739089,18.78301141,5.84,15,_,5134.529049,34.83070282,2 Years and 2 Months,Yes,316.1501011,10000,Low_spent_Small_value_payments,197.6995236,0,-0.0944,0.1644,-0.0064,-0.1606,0.4362 -0xe5a5,CUS_0x9ede,August,43,544-06-8073,Scientist,17758.44,1403.87,8,3,13,1,Mortgage Loan,9.846185975,10,15.64,4,Standard,908.52,31.31924951,23 Years and 4 Months,Yes,11.66697227,,Low_spent_Small_value_payments,261.6795534,0,0.1375,-0.442,-0.7183,-0.6501,-2.0632 -0xe5b1,CUS_0x5f90,August,18,323-98-0014,Engineer,12680.815,1334.734583,4,5,15.06745738,0,,21.02077439,12.64551224,15.79,9,Standard,1023.503567,34.74389853,18 Years and 3 Months,Yes,0,41.2115188,!@9#%8,345.5416516,0,-1.0105,0.1075,-0.7994,-1.5401,0.1606 -0xe5bd,CUS_0x8bde,August,47,536-54-7101,Journalist,16943.505,1382.95875,4,6,11,1,Mortgage Loan,22.33441936,16,8.93,5,Good,857.7661097,39.35551916,25 Years and 10 Months,No,11.20324446,191.011041,Low_spent_Small_value_payments,254.7490027,0,-1.4043,0.7475,0.8103,-0.2011,-1.3989 -0xe5c9,CUS_0x1d2c,August,42,281-15-6845,Architect,118636.88,9865.406667,8,6,3058,100,Auto Loan,19.69942128,15,4.94,4,_,1097.71,36.41520197,,NM,86.54293081,632.5705692,Low_spent_Medium_value_payments,547.4271667,0,1.9057,0.0063,0.644,-1.331,-0.4454 -0xe5d5,CUS_0x9db8,August,34,#F%$D@*&8,Lawyer,90403.77,7433.6475,4,6,2,0,,8.296506534,7,0.84,3,_,575.68,31.32323933,20 Years and 5 Months,No,0,246.3218269,Low_spent_Medium_value_payments,777.0429231,0,-0.1729,1.3606,-0.5983,-0.7935,-0.0837 -0xe5e1,CUS_0xa1ec,August,52,987-26-7773,Teacher,171292.56,,1,5,9,3,"Payday Loan, Auto Loan, and Debt Consolidation Loan",,1,5.49,4,Good,342.9644391,40.14631225,32 Years and 4 Months,No,1779.103254,571.377789,High_spent_Medium_value_payments,869.9251357,0,0.3866,-0.4571,-0.8473,-0.352,1.7882 -0xe5ed,CUS_0x337d,August,51,199-25-7327,Manager,33768.99,2904.0825,5,4,4.288361749,0,,0,2.372406493,6.06,3,Good,235.1530865,26.72504397,17 Years and 2 Months,No,0,635.3297719,!@9#%8,365.0159391,0,-1.3651,1.78,1.2346,-0.6073,0.0015 -0xe5f9,CUS_0xada1,August,37,194-63-3140,Manager,78164.36,6553.696667,0,4,3.288361749,4,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Student Loan",1.895048903,4,9.35,3,_,379.9896139,37.13844517,,No,162.4884483,,Low_spent_Small_value_payments,232.1919903,0,0.3784,-0.4564,-0.5918,1.3369,1.2289 -0xe605,CUS_0xa90d,August,38,087-22-0110,Lawyer,7261.91,393.1591667,5,7,12,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Personal Loan, and Not Specified",24.47998256,17,22.98,12,Standard,808.5005012,33.75052613,8 Years and 11 Months,NM,35.46180125,17.86606066,High_spent_Medium_value_payments,237.6552598,0,0.2646,-1.7776,1.1119,0.8474,-0.0495 -0xe611,CUS_0x6ec7,August,41,166-55-7075,Scientist,114150.75,,5,4,7.288361749,0,,,,9.13,318,_,399.84,37.43016676,,No,0,584.1987142,High_spent_Medium_value_payments,1052.594997,0,-1.3615,-1.1105,-0.4169,-0.6813,1.8002 -0xe61d,CUS_0xb448,August,29,353-39-6535,_______,44219.46,,6,7,12,7,"Mortgage Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, and Payday Loan",16.23749776,10.67287698,18.21,7,Standard,1823.106023,35.16410183,7 Years and 11 Months,NM,206.3210389,89.76074339,High_spent_Medium_value_payments,339.5137177,0,2.3391,-1.2807,0.5301,1.584,0.2487 -0xe629,CUS_0x846e,August,33,152-12-7444,Musician,18848.995,1364.749583,3,6,10,0,,9.855503934,10.1046196,7.76,7,Good,183.0111966,38.42046162,29 Years and 4 Months,No,0,55.70334978,Low_spent_Small_value_payments,370.7716086,0,-0.9662,-1.3055,-0.015,-0.063,-1.1984 -0xe635,CUS_0xbad6,August,38,547-04-1695,Musician,41486.98,2959.217697,3,2,4,4,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",0,1,9.18,3,Good,728.4550923,35.9299302,24 Years and 0 Months,No,444.8342744,,Low_spent_Large_value_payments,320.965845,0,0.0765,0.511,0.1723,0.782,-0.3777 -0xe641,CUS_0x1efc,August,35,254-10-3672,Accountant,77463.99,6388.3325,7,6,15,2,"Auto Loan, and Debt Consolidation Loan",,,2.42,1761,Standard,451.63,33.76708825,17 Years and 3 Months,No,80.87723029,621.3233238,Low_spent_Medium_value_payments,216.6326959,0,0.6675,0.022,0.9603,-0.5077,0.2757 -0xe64d,CUS_0x8a68,August,41,#F%$D@*&8,Media_Manager,44456.6,,4,3,6,2,"Student Loan, and Not Specified",12.12643983,13.2486265,2.25,4,_,1358.055123,29.67238425,17 Years and 5 Months,No,42123,125.3952631,High_spent_Small_value_payments,453.6281464,0,1.3043,-0.5728,-0.7889,-0.5989,0.6308 -0xe659,CUS_0x4f3e,August,47,341-94-5301,_______,17766.93,1219.5775,5,6,11,1,Payday Loan,0,0,12.56,2,_,195.48,33.16403173,30 Years and 9 Months,No,9.712735563,97.94780902,!@9#%8,294.2972054,0,-0.4268,0.5796,0.707,0.8465,-0.3044 -0xe665,CUS_0x2697,August,55,711-21-3388,Scientist,98796.84,8206.07,1,3,4,2,"Auto Loan, and Mortgage Loan",2.041421901,2,4.31,3,Good,324.1,35.13095622,23 Years and 11 Months,No,110.2833807,241.9845135,High_spent_Medium_value_payments,718.3391058,0,1.8537,-1.3493,0.5798,0.0272,0.1 -0xe671,CUS_0x85e9,August,45,288-62-7562,Musician,20929.295,1704.107917,5,3,9,3,"Student Loan, Payday Loan, and Debt Consolidation Loan",4.342472773,5,1.99,9,_,858.09,29.55957894,22 Years and 0 Months,No,40.39817496,66.71879471,Low_spent_Medium_value_payments,343.293822,0,-0.1734,-0.1939,0.1245,0.3517,-0.223 -0xe67d,CUS_0x379e,August,46,870-05-0089,Lawyer,36742.54,,3,6,9,4,"Not Specified, Auto Loan, Debt Consolidation Loan, and Not Specified",18.66745549,14,19.73,9,Standard,1149.65,27.79648569,6 Years and 4 Months,Yes,80.43489216,260.8402319,Low_spent_Small_value_payments,238.1127093,0,1.4884,-0.05,0.2277,-0.3471,0.1403 -0xe689,CUS_0x4b82,August,28,#F%$D@*&8,Manager,41803.08,3685.59,3,3,13,2,"Debt Consolidation Loan, and Credit-Builder Loan",21.39579421,14,9.66,0,Standard,1204.07,29.42141864,28 Years and 10 Months,Yes,49.7525098,25.78441853,High_spent_Large_value_payments,533.0220717,0,1.0443,0.8432,1.824,-0.5695,-0.1362 -0xe695,CUS_0x3c8b,August,26,473-81-1618,Journalist,35384,2960.666667,9,6,33.06745738,9,"Payday Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",32.56400764,20.183135,,9,Bad,4977.249858,25.51333165,4 Years and 2 Months,Yes,214.3342971,186.2246672,Low_spent_Small_value_payments,158.7874144,0,0.2881,0.4317,-0.2946,1.3912,-0.7537 -0xe6a1,CUS_0xe5b,August,23,990-04-1542,Doctor,17488375,,5,7,4.288361749,0,Not Specified,,,2.25,4,Good,1389.9,29.02206553,28 Years and 0 Months,No,27.81626112,541.736762,High_spent_Medium_value_payments,485.6581046,0,-0.5693,-1.7978,-0.4817,-1.3663,-0.7869 -0xe6ad,CUS_0xac28,August,19,881-32-0506,Developer,10332.74,608.0616667,5,4,6,3,"Debt Consolidation Loan, Not Specified, and Mortgage Loan",,12,-3.81,1,Standard,820.75,27.88853932,25 Years and 6 Months,No,13.48292115,29.66221424,Low_spent_Small_value_payments,307.6610313,0,0.183,-0.0556,-1.1153,-0.8762,0.106 -0xe6b9,CUS_0x745a,August,46,414-00-8777,Teacher,37089.86,2983.821667,7,10,31,6,"Personal Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Mortgage Loan",,17,7.65,15,Standard,1950.21,38.16092666,20 Years and 2 Months,Yes,152.4813613,,Low_spent_Small_value_payments,199.5414797,0,0.1596,-1.1801,0.024,-1.056,-0.013 -0xe6c5,CUS_0x21e4,August,28,677-77-2825,Entrepreneur,93390.44,7538.536667,6,5,18,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",19.73357738,13,10.28,0,Standard,1036.26,31.73986965,18 Years and 4 Months,No,117.4871616,,High_spent_Medium_value_payments,749.5627425,0,0.1829,-1.1053,1.3022,-0.9626,0.1046 -0xe6d1,CUS_0x7527,August,38,913-79-8046,Journalist,7863.04,,7,3,24,4,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Home Equity Loan",,17.47534888,17.53,9,Standard,2617.969083,35.8854172,13 Years and 6 Months,NM,23.60905669,,Low_spent_Small_value_payments,284.0273251,0,1.2582,-1.0901,0.2805,-0.952,1.595 -0xe6dd,CUS_0x18e2,August,23,215-30-2338,Architect,16906.81,1167.900833,10,8,34.95700519,9,"Credit-Builder Loan, Personal Loan, Personal Loan, Not Specified, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",,21,3.43,6,Bad,1782.570954,37.24926928,13 Years and 6 Months,Yes,1434.272071,,High_spent_Large_value_payments,190.841586,0,-0.7489,-1.2091,-0.0667,1.8998,-0.3079 -0xe6e9,CUS_0x74c7,August,51,103-65-8314,_______,87853.56,7527.13,4,1,3.288361749,2,"Credit-Builder Loan, and Debt Consolidation Loan",0,2,9.99,4,Good,440.1189128,26.91654609,17 Years and 4 Months,No,142.3909189,494.4834362,High_spent_Large_value_payments,785.0480407,0,-0.3504,0.2649,2.3946,-0.3437,1.0485 -0xe6f5,CUS_0x34ce,August,37,284-14-5932,Architect,29827.76,,8,8,17.06745738,5,"Payday Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Payday Loan",22.81880109,,16.31,6,Bad,3875.664183,25.51846925,11 Years and 11 Months,Yes,118.9429454,64.08715685,!@9#%8,278.8142765,0,-0.4006,1.8087,0.7541,-1.1096,3.3399 -0xe701,CUS_0x3fc5,August,28,912-40-0813,Engineer,61389.18,5085.765,10,6,34,6,"Not Specified, Home Equity Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",33.73998125,20.23530684,24.77,10,_,3372.310917,35.64092893,9 Years and 6 Months,Yes,156.440598,184.6093133,High_spent_Medium_value_payments,417.5265887,0,0.1272,0.13,-1.3721,-0.7129,0.4102 -0xe70d,CUS_0x9c99,August,43,065-84-0454,Scientist,74424.6,6025.05,9,8,21,6,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",40.40042797,22.06987146,4.36,13,_,1821.567169,27.51466153,16 Years and 3 Months,Yes,243.2995324,,Low_spent_Medium_value_payments,150.6295826,0,1.1254,-0.4528,-1.1772,-0.3903,-1.0463 -0xe719,CUS_0x8a20,August,55,304-63-8182,Journalist,85038.87,6836.5725,0,2,5.288361749,2,"Home Equity Loan, Personal Loan, and Not Specified",4.462346276,8,3.86,2,Good,877.6862561,22.93160349,23 Years and 4 Months,No,154.4102475,,High_spent_Large_value_payments,594.2698549,0,-1.0447,2.2718,-1.0011,-0.9167,-0.1609 -0xe725,CUS_0x55cd,August,47,613-69-6896,_______,19705.74,1377.145,5,4,10,2,"Home Equity Loan, and Personal Loan",12.36698228,11,11.98,0,Standard,39.75,32.07344389,,Yes,22.96687928,152.2436847,Low_spent_Small_value_payments,252.503936,0,0.8025,0.5046,-0.747,-0.0692,-0.4571 -0xe731,CUS_0x47b,August,23,258-71-7950,Scientist,17863.15,,6,7,25.06745738,7,"Auto Loan, Personal Loan, Student Loan, Personal Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,25,18.84,12,_,4116.420954,34.07831351,13 Years and 5 Months,Yes,96.18186282,12.30693139,High_spent_Large_value_payments,280.3505012,0,1.4612,-2.0054,0.2884,-0.3092,0.522 -0xe73d,CUS_0x5b84,August,44,911-65-6359,Writer,10207.5,842.3276364,7,7,22,5,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",17.47543158,15.70987628,19.19,7,Standard,2654.82351,35.15398639,12 Years and 5 Months,Yes,82.52658446,,Low_spent_Large_value_payments,292.340982,0,-0.5215,1.2292,0.7234,0.2134,0.7277 -0xe749,CUS_0xb196,August,50,160-70-2253,Media_Manager,118297.6,10026.13333,2,1,9,3,"Payday Loan, Debt Consolidation Loan, and Auto Loan",0,0,10.97,7,Good,1446.83,28.80056398,31 Years and 0 Months,No,264.0927462,906.8334387,!@9#%8,101.6871484,0,-0.4929,-0.6607,-0.3068,-1.0081,-1.0214 -0xe755,CUS_0x6e5d,August,39,238-58-8923,Entrepreneur,39962.38,3151.198333,6,7,22,5,"Mortgage Loan, Payday Loan, Mortgage Loan, Auto Loan, and Auto Loan",,22.27623945,15.82,10,Standard,1598.676453,39.36220813,9 Years and 9 Months,NM,89.76177618,10000,High_spent_Medium_value_payments,403.59738,0,0.4935,1.3379,2.0138,-1.7036,0.3493 -0xe761,CUS_0x4314,August,43,088-74-9171,Writer,80562.56,,4,3,6.288361749,2,"Auto Loan, Personal Loan, and Personal Loan",,1673,0.79,5,Good,88.98,37.59178409,31 Years and 11 Months,No,136.8869538,667.5547479,High_spent_Medium_value_payments,524.250426,0,1.5807,1.1589,-0.1056,0.8587,-1.2093 -0xe76d,CUS_0x754c,August,44,899-74-8440,Entrepreneur,9897.565,,10,10,26.95700519,9,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, Mortgage Loan, and Personal Loan",34.33836536,20,21.83,14,_,2770.160954,29.27378701,,NM,1391.621952,50.39099319,High_spent_Small_value_payments,204.3163941,0,2.4217,-0.7934,-0.5603,1.1863,-1.6726 -0xe779,CUS_0xab1f,August,29,725-01-4124,Doctor,34052.56,2930.713333,7,6,19.06745738,6,"Credit-Builder Loan, Not Specified, Home Equity Loan, Personal Loan, Home Equity Loan, and Credit-Builder Loan",34.66793508,24.14432282,3.44,11,Bad,2573.12561,29.46396449,14 Years and 10 Months,Yes,162.3864425,66.30787725,High_spent_Small_value_payments,297.6567257,0,0.1707,-0.0599,0.2434,0.6008,-1.4032 -0xe785,CUS_0x2816,August,23,799-35-8165,Musician,62160.87,4940.0725,7,5,22,7,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",,21.00398846,9.92,,Bad,2588.574838,32.80160796,15 Years and 3 Months,Yes,323.5306728,,Low_spent_Large_value_payments,27.50899416,0,-0.8607,1.8664,0.2529,0.5005,0.3104 -0xe791,CUS_0xbca4,August,54,736-57-1275,Entrepreneur,82015.88,6907.656667,0,5,2,2,"Credit-Builder Loan, and Mortgage Loan",12.14816039,11,3.26,5,Good,1259.34,32.01927887,16 Years and 0 Months,No,115.4731023,287.6074154,Low_spent_Medium_value_payments,567.685149,0,-0.6812,0.7235,0.2475,0.8901,-0.6023 -0xe79d,CUS_0x6983,August,49,#F%$D@*&8,Architect,89495.67,7417.9725,1,4,9,2,"Student Loan, and Not Specified",,3.383178928,6.84,4,_,1556.082693,38.15991571,23 Years and 4 Months,No,87.14621471,462.8746074,High_spent_Small_value_payments,451.7764279,0,-2.2459,0.7887,-0.6931,-1.0179,-1.0054 -0xe7a9,CUS_0x7c2f,August,80,641-03-7701,Developer,15982.36,,7,5,34.06745738,7,"Not Specified, Payday Loan, Auto Loan, Not Specified, Not Specified, Payday Loan, and Mortgage Loan",36.14663888,17.67490497,17.08,8,Bad,5090.799508,38.18036541,13 Years and 0 Months,Yes,58.6229418,0,High_spent_Large_value_payments,272.8268882,0,0.1484,-0.664,0.4082,1.0559,-1.3741 -0xe7b5,CUS_0x1a03,August,28,692-28-2431,_______,34552.7,,6,3,9,0,,30.8565276,20,8.68,4,Standard,577.4,24.38575855,32 Years and 5 Months,NM,0,260.9597818,Low_spent_Large_value_payments,298.6793849,0,-0.8692,0.3246,0.1657,1.1704,-0.857 -0xe7c1,CUS_0x6ada,August,56,034-00-7974,Manager,44280.31,,4,3,8,2,"Student Loan, and Credit-Builder Loan",0.941694807,1,7.23,4,Good,1046.3,35.01624766,24 Years and 2 Months,No,72.68864733,70.94872434,High_spent_Medium_value_payments,493.6652117,0,-1.079,-0.3084,-0.5959,1.1458,-0.7852 -0xe7cd,CUS_0xab61,August,30,289-57-5410,Teacher,27099.11,2110.259167,8,4,334,0,,,13,,2,Standard,186.93,28.39292814,,No,0,97.11234101,Low_spent_Small_value_payments,403.9135757,0,0.6185,-0.8509,-1.8727,-2.2421,0.1856 -0xe7d9,CUS_0x11e2,August,39,809-04-1419,Musician,44986.55,,6,5,11,1,Credit-Builder Loan,0,4,10.26,3,Good,698.7722787,25.58628564,20 Years and 0 Months,No,23.26713548,49.60409892,High_spent_Large_value_payments,542.5171477,0,0.5297,0.1499,-0.239,-0.3785,2.2118 -0xe7e5,CUS_0x14ea,August,48,298-76-0431,Teacher,89338.36,,4,5,9.288361749,2,"Home Equity Loan, Payday Loan, and Auto Loan",0.446980857,3,2.3,3,Good,848.609816,34.13915147,19 Years and 10 Months,No,561.1987989,579.5594411,High_spent_Small_value_payments,741.0281745,0,-1.9846,0.4097,-0.6547,-0.2629,0.1745 -0xe7f1,CUS_0xa127,August,49,122-29-7699,_______,31534.94,2426.911667,5,6,1,0,,0,2.338329377,4.99,4,Good,1386.881992,23.22428865,29 Years and 10 Months,No,0,,High_spent_Medium_value_payments,410.7230809,0,-1.5645,0.6199,-0.3476,-0.9672,1.9917 -0xe7fd,CUS_0xabc0,August,42,993-68-8022,Developer,21336.9,,3,5,6,1,Debt Consolidation Loan,,,21.75,7,_,1338.82,25.41662737,10 Years and 11 Months,Yes,11.23033244,56.0509041,Low_spent_Small_value_payments,388.3262635,0,-1.5555,-1.1717,0.0878,-0.8422,0.2003 -0xe809,CUS_0x3e51,August,31,052-80-3776,Accountant,16486.52,1221.876667,4,7,16,0,,24.78890336,19.61335356,1.79,4,Standard,1196.546562,32.84940284,27 Years and 5 Months,Yes,0,57.32648622,Low_spent_Small_value_payments,354.8611804,0,-0.7495,-0.0338,-0.3473,-0.6871,-0.2173 -0xe815,CUS_0x2a45,August,19,021-52-4642,Architect,8459.02,997.9183333,7,7,14,3,"Debt Consolidation Loan, Mortgage Loan, and Not Specified",30.41589192,22,10.36,10,Standard,789.89,33.61806724,13 Years and 2 Months,Yes,18.89415692,,Low_spent_Small_value_payments,336.9680174,0,-0.504,-0.071,0.9054,0.4925,0.8597 -0xe821,CUS_0x5fab,August,38,578-05-9422,Engineer,48254.04,4215.17,3,6,16,3,"Payday Loan, Debt Consolidation Loan, and Auto Loan",17.39291755,11,16.92,8,Standard,210.78,35.16302082,24 Years and 11 Months,NM,72.33336184,209.3976258,High_spent_Small_value_payments,399.7860124,0,-0.1813,-0.1168,2.5572,-1.7504,0.7713 -0xe82d,CUS_0x211c,August,22,859-11-2732,Writer,20628.55,,4,4,9,4,"Debt Consolidation Loan, Payday Loan, Payday Loan, and Mortgage Loan",9.593393363,10,10.69,5,Standard,1276.97,29.85449609,33 Years and 3 Months,Yes,52.37594367,137.6136587,!@9#%8,233.914981,0,0.2583,-1.5536,1.7558,-1.0617,0.9449 -0xe839,CUS_0x30db,August,44,247-06-9289,Journalist,24744.78,2101.065,3,7,5,3,"Payday Loan, Student Loan, and Not Specified",,21,23.95,2,_,134.1,31.44241818,25 Years and 10 Months,Yes,61.4963184,46.3296393,High_spent_Medium_value_payments,352.2805423,0,0.405,-0.8514,0.7116,0.8016,0.4262 -0xe845,CUS_0x1833,August,49,277-68-3924,Architect,11527.73,,3,7,14,1,Auto Loan,12.00394145,12,1.39,3,Standard,532.86,23.33033014,23 Years and 11 Months,NM,5.913472082,43.23742384,Low_spent_Large_value_payments,304.8135207,0,1.8202,-0.0356,-1.4247,0.1096,1.7191 -0xe851,CUS_0x15e7,August,18,948-92-5850,Media_Manager,57407.04,,3,3,18,4,"Payday Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",16.94549859,11,9.64,7,Standard,895.05,28.88395093,16 Years and 0 Months,Yes,128.5306877,105.4021997,!@9#%8,463.1591125,0,-1.0641,2.2081,-1.0665,0.0007,0.5645 -0xe85d,CUS_0x32e4,August,47,470-50-6712,Musician,84378.96,7142.58,6,4,7.288361749,2,"Not Specified, and Debt Consolidation Loan",0.056663251,3.463610867,10.95,1,Good,40.39231232,25.51843693,24 Years and 4 Months,No,122.6797787,501.4997956,High_spent_Medium_value_payments,760.0158867,0,1.5944,1.0267,-0.5702,-1.2368,0.6787 -0xe869,CUS_0xa182,August,44,552-47-8695,Engineer,64794.64,,7,5,31,5,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Payday Loan",37.89591043,20,10.35,12,Bad,2080.18,27.11960926,17 Years and 3 Months,Yes,267.9417566,137.5662222,High_spent_Large_value_payments,401.0473545,0,0.8308,0.1052,-0.6135,-0.3302,0.7498 -0xe875,CUS_0x2fa7,August,28,440-12-8308,Developer,14785.12,,6,9,17,5,"Not Specified, Payday Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",47.38814111,24.84852523,22.41,17,Bad,5312.573537,27.69242966,1 Years and 11 Months,Yes,43.96605325,99.3682226,Low_spent_Medium_value_payments,273.1750575,0,0.3027,2.4838,-0.9475,-1.1762,-0.4357 -0xe881,CUS_0x5e59,August,18,607-24-1113,_______,15303.58,,8,1452,24.95700519,7,"Mortgage Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Not Specified, and Personal Loan",28.1232655,15,5.86,7,_,1825.680954,29.14888404,18 Years and 4 Months,Yes,1391.724764,,High_spent_Medium_value_payments,228.7080048,0,1.4426,-0.4002,0.602,2.4174,0.0933 -0xe88d,CUS_0xb7e,August,24,395-85-0199,Mechanic,14441.54,1369.461667,9,5,23.06745738,6,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",27.92297091,19,9.87,11,Bad,2400.340954,31.07485971,,Yes,47.79952575,103.6749918,Low_spent_Large_value_payments,228.7513612,0,-1.8417,0.7615,0.3747,1.7061,-0.8114 -0xe899,CUS_0x9bef,August,34,722-46-7243,Architect,31641.76,,5,2,3,0,,8.551059998,9,8.06,5,Good,1159.728659,33.43234035,18 Years and 0 Months,No,0,115.7440891,High_spent_Medium_value_payments,390.7738604,0,-0.7309,-0.5357,1.4845,-0.4062,1.9893 -0xe8a5,CUS_0xc47,August,54,449-91-5348,Engineer,55644.14,4908.011667,5,3,6,4,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Payday Loan",31.6550452,21,3.64,4,Standard,147.64,36.43645259,20 Years and 10 Months,No,181.7764245,316.4318837,High_spent_Small_value_payments,252.5928585,0,0.9635,0.1086,0.9793,2.0714,-0.0153 -0xe8b1,CUS_0x8af0,August,27,341-50-0808,Engineer,16050.73,,8,3,10,4,"Auto Loan, Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",13.51085509,9.278140795,12.76,7,Standard,1694.726933,36.92994721,,Yes,51.66243324,37.51320359,Low_spent_Medium_value_payments,322.3804465,0,0.2019,-0.9324,0.4334,-1.4151,0.8998 -0xe8bd,CUS_0x7429,August,30,378-86-7375,Manager,38861.72,3511.476667,4,5,11,1,Mortgage Loan,,1,3.83,9,Good,95.63649081,39.33208652,31 Years and 3 Months,No,26.06920391,138.2693311,High_spent_Medium_value_payments,452.7505505,0,-1.2985,-0.2834,-1.3572,-0.0424,-0.3823 -0xe8c9,CUS_0xa899,August,41,077-54-4259,Accountant,38764.8,2974.4,10,6,34.06745738,2,"Personal Loan, and Personal Loan",,,6.83,16,Bad,2460.546382,28.5847522,8 Years and 11 Months,Yes,73367,65.7341993,!@9#%8,402.0657277,0,-0.2843,1.9508,-1.4892,-0.6323,1.2778 -0xe8d5,CUS_0x23cc,August,39,798-10-4126,_______,85020.54,6962.045,0,5,7,3,"Personal Loan, Mortgage Loan, and Not Specified",11.4619659,9.302830876,4.74,3,Good,1072.87706,38.7345842,,No,205.2113345,198.4297897,High_spent_Small_value_payments,552.5633758,0,-0.3754,-2.862,0.3945,0.0318,-0.0893 -0xe8e1,CUS_0x40c5,August,42,266-57-9907,Journalist,34913.58,2867.648796,4,4,4,4,"Mortgage Loan, Student Loan, Mortgage Loan, and Auto Loan",0,0,5.76,2,Good,758.31,24.66386669,25 Years and 6 Months,No,267.6440927,214.0170547,Low_spent_Small_value_payments,324.8015568,0,-2.1294,0.3955,0.9344,-2.1167,-0.9137 -0xe8ed,CUS_0x2df7,August,18,804-07-5195,Doctor,122915.96,10003.99667,6,6,17,2,"Personal Loan, and Student Loan",17.09136738,14,7.89,3,_,478.02,42.25796267,32 Years and 5 Months,No,123.9844735,323.6015435,High_spent_Medium_value_payments,802.8136496,0,-0.0415,0.0139,-1.6047,0.4781,-0.9042 -0xe8f9,CUS_0x781a,August,37,176-88-1274,Engineer,41770.21,3652.850833,0,7,4,2,"Credit-Builder Loan, and Home Equity Loan",5.458603716,7,11.13,1,_,1083.398064,31.99594321,19 Years and 5 Months,No,51.92273431,299.9091595,Low_spent_Medium_value_payments,337.1525722,0,1.4563,0.8778,2.4063,-1.9115,-0.3467 -0xe905,CUS_0x54bd,August,80,389-25-0255,Journalist,167753.52,,3,3,12,3,"Personal Loan, Not Specified, and Mortgage Loan",,6,-3.38,2,Good,960.4141701,29.18915266,29 Years and 3 Months,No,1190.730221,605.1863891,High_spent_Small_value_payments,859.3178066,0,-1.5513,-1.1379,2.1136,0.1044,1.2596 -0xe911,CUS_0x8f0c,August,42,293-28-7372,Developer,50243.22,,8,3,19,3,"Personal Loan, Auto Loan, and Not Specified",19.10940222,14,12.19,2,_,1161.1,31.7797375,27 Years and 5 Months,Yes,62.89923429,,High_spent_Medium_value_payments,471.4245362,0,0.8232,0.2578,0.6701,1.2025,1.0736 -0xe91d,CUS_0xa1a2,August,25,906-36-6727,Media_Manager,40207.94,3068.661667,7,5,27.06745738,6,"Auto Loan, Student Loan, Not Specified, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",33.16774453,22.27006502,5.07,14,Bad,2315.519562,31.64394673,14 Years and 0 Months,Yes,159.6921422,,Low_spent_Small_value_payments,249.5370319,0,-0.3081,2.8906,-0.3906,-0.5623,-0.703 -0xe929,CUS_0x97e1,August,28,028-51-8765,Writer,8113.06,,9,5,35.06745738,7,"Debt Consolidation Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",36.53618504,18.48330513,20.65,9,Bad,3930.526617,23.97505173,7 Years and 8 Months,Yes,56627,32.01323395,Low_spent_Small_value_payments,264.4183177,0,0.3614,-2.0675,-2.4377,-1.1313,-0.8438 -0xe935,CUS_0x6b8,August,30,011-05-8096,Scientist,13499.855,1026.987917,7,3,1044,2,"Auto Loan, and Debt Consolidation Loan",5.533544152,8,-3.08,0,Standard,453.75,24.03138645,21 Years and 8 Months,NM,12.00028048,128.7636849,Low_spent_Small_value_payments,251.9348263,0,-0.3244,-1.4438,2.4949,0.1011,-1.0206 -0xe941,CUS_0x3149,August,27,271-04-2423,_______,20602.02,1727.835,10,183,23,7,"Debt Consolidation Loan, Auto Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",29.55972525,21.66147758,4.49,13,Bad,5624.191984,33.58771255,3 Years and 4 Months,Yes,93.60095036,,Low_spent_Small_value_payments,260.4907618,0,0.437,-0.9416,0.7755,-0.5398,-0.4474 -0xe94d,CUS_0x44aa,August,48,907-66-8700,Entrepreneur,85656.28,7161.023333,1,3,3,1,Personal Loan,0,1,9.32,1,Good,400.1341144,35.3757981,30 Years and 5 Months,No,52.55004411,,High_spent_Small_value_payments,749.2636329,0,1.2376,0.7766,-1.6845,-0.0028,-1.1115 -0xe959,CUS_0x3ae7,August,44,884-25-9290,Architect,41702.9,3249.241667,7,8,28.06745738,6,"Mortgage Loan, Home Equity Loan, Auto Loan, Not Specified, Not Specified, and Debt Consolidation Loan",,24.32673951,6.31,10,Bad,2844.196938,36.06274311,,Yes,145.6395523,178.8061609,High_spent_Small_value_payments,233.7581654,0,-1.7616,0.892,-0.2492,-0.3965,1.6182 -0xe965,CUS_0x66bc,August,22,864-70-6001,Writer,61266.63,5296.5525,4,6,15,2,"Debt Consolidation Loan, and Mortgage Loan",19.21931793,14.994868,12.45,12,_,648.7091717,33.26013118,10 Years and 0 Months,Yes,74.69387361,249.4992673,Low_spent_Small_value_payments,495.4621091,0,0.4383,-0.7656,0.6076,-0.701,-0.9583 -0xe971,CUS_0x2907,August,21,#F%$D@*&8,Scientist,14125.04,,5,4,7,2,"Mortgage Loan, and Home Equity Loan",4.624445913,7,3,0,Good,446.31,25.4420221,18 Years and 5 Months,No,14.53965628,101.6404006,Low_spent_Small_value_payments,294.0286098,0,-1.9412,0.4737,0.3688,-1.0112,-1.1065 -0xe97d,CUS_0x8207,August,27,459-97-4062,Doctor,34677.86,2725.821667,6,5,16,7,"Student Loan, Student Loan, Not Specified, Mortgage Loan, Payday Loan, Not Specified, and Not Specified",38.76229983,26.74260899,5.57,6,Bad,2639.848081,30.94079909,16 Years and 3 Months,NM,182.5851835,98.36317773,Low_spent_Small_value_payments,281.6338054,0,-0.1635,0.5931,0.6525,-0.9756,0.7349 -0xe989,CUS_0xb725,August,33,755-81-8384,Lawyer,28206.96,2294.58,7,7,26.06745738,7,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Personal Loan, Home Equity Loan, and Personal Loan",40.454002,20.56508975,8.74,15,Bad,2198.291051,36.30501267,14 Years and 6 Months,Yes,135.1337992,20.81628731,!@9#%8,286.7876256,0,-0.8618,0.905,1.2281,-1.2951,0.2254 -0xe995,CUS_0xb446,August,27,477-55-3999,Musician,51627.39,4132.2825,4,7,19,2,"Debt Consolidation Loan, and Debt Consolidation Loan",12.97647,11.95340133,16.03,11,Standard,2772.408491,36.29125449,17 Years and 4 Months,Yes,58.65782244,144.9855087,High_spent_Small_value_payments,469.5849189,0,-0.6157,-0.0413,1.6883,1.1502,1.782 -0xe9a1,CUS_0xba51,August,24,362-65-1233,Scientist,170751.96,,3,4,6,4,"Student Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",,0,7.78,7,Good,1076.56,32.59321806,32 Years and 11 Months,No,443.1054536,,!@9#%8,1119.38533,0,-1.714,-0.2695,-0.0986,2.4098,-0.9964 -0xe9ad,CUS_0x2e4c,August,20,354-71-3215,Lawyer,37679.14,3267.928333,10,6,18.06745738,5,"Mortgage Loan, Mortgage Loan, Payday Loan, Auto Loan, and Payday Loan",28.74743462,18,22.42,7,Bad,5081.280954,38.21806152,10 Years and 9 Months,Yes,95.41117062,69.38248207,High_spent_Small_value_payments,395.2788927,0,0.8226,-0.0791,-0.4594,0.3178,-0.5389 -0xe9b9,CUS_0x3a03,August,31,966-46-5658,Teacher,19435.6,1523.633333,5,4,19,4,"Debt Consolidation Loan, Not Specified, Home Equity Loan, and Auto Loan",21.00196399,17,10.36,11,Standard,652.5460734,28.73627682,13 Years and 4 Months,Yes,44.64073068,71.04393605,High_spent_Medium_value_payments,294.3956228,0,0.6327,-1.4679,-0.5992,-1.962,2.0934 -0xe9c5,CUS_0xdd3,August,41,536-31-0878,Accountant,30802.79,2522.149511,5,5,4.288361749,2,"Personal Loan, Mortgage Loan, and Personal Loan",4.909510935,7,9.18,2,Good,342.4159971,35.21213365,,NM,242.6128566,626.3451939,High_spent_Small_value_payments,276.4394132,0,0.4644,-0.2405,-0.8915,0.4613,-1.3227 -0xe9d1,CUS_0x77da,August,27,134-97-7756,Architect,57294.2,4699.516667,6,3,34,6,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",18.24056656,10.92227968,15.84,11,Standard,1478.893925,22.48354786,18 Years and 5 Months,Yes,253.7824797,,High_spent_Small_value_payments,232.4814239,0,-0.4266,-0.1984,0.8031,0.3332,-0.4323 -0xe9dd,CUS_0x4154,August,34,088-79-9555,Writer,46887.99,4167.3325,7,6,26.06745738,3,"Payday Loan, Not Specified, and Personal Loan",38.71421235,20,7.63,14,_,2869.800954,38.52814193,18 Years and 5 Months,Yes,66.41377765,,Low_spent_Small_value_payments,111.4988304,0,0.8357,-2.5599,0.552,-1.5013,1.2757 -0xe9e9,CUS_0x9449,August,51,574-97-8796,Manager,16857.295,1056.522397,0,5,12,3,"Not Specified, Not Specified, and Payday Loan",14.86991707,9.412654144,4.23,1,Good,815.7266951,33.20831607,22 Years and 9 Months,No,94.86173706,35.22844402,Low_spent_Large_value_payments,317.3394636,0,-1.4699,0.9803,0.7415,0.7643,-0.6385 -0xe9f5,CUS_0x5067,August,33,087-60-1097,Lawyer,35104.32,,3,5,10,4,"Home Equity Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",13.85428222,8.249219874,7.85,7,Good,1278.609707,39.09726347,24 Years and 2 Months,No,75.22465524,260.6715881,!@9#%8,221.0397567,0,-1.1057,2.2445,-0.103,0.1301,-1.2157 -0xea01,CUS_0x3c55,August,18,#F%$D@*&8,Engineer,39234.08,3201.506667,8,9,32.06745738,4,"Payday Loan, Auto Loan, Personal Loan, and Debt Consolidation Loan",34.09778425,19,4.94,14,Bad,2399.430954,30.16395809,,Yes,14203,,Low_spent_Small_value_payments,331.3870915,0,-0.7124,1.4681,-1.924,0.3901,-0.5339 -0xea0d,CUS_0x61d1,August,25,#F%$D@*&8,Entrepreneur,16562.01,1240.1675,7,7,24,2,"Not Specified, and Credit-Builder Loan",23.38525378,15.80607352,23.04,11,Standard,2803.286112,23.58445689,20 Years and 6 Months,Yes,25.54949775,110.0069346,Low_spent_Large_value_payments,258.4603176,0,-0.113,1.3519,-0.9638,-2.2106,0.5632 -0xea19,CUS_0xc4f9,August,43,084-06-5674,Lawyer,92200.68,,2,6,1,1,Auto Loan,8.414701318,6.04816484,4.67,3,Good,1022.192006,36.83737478,28 Years and 3 Months,No,52.43366677,193.6617029,High_spent_Small_value_payments,754.3436303,0,-0.0474,0.3085,1.1909,-0.2219,-0.8489 -0xea25,CUS_0x4af1,August,38,708-55-1426,_______,162955.92,,5,6,2.288361749,2,"Credit-Builder Loan, and Student Loan",4.462346276,8,1.77,0,Good,345.4068338,33.29719501,32 Years and 4 Months,No,175.5876843,813.9175732,High_spent_Large_value_payments,1059.286116,0,0.4524,-0.2517,0.0334,0.7996,0.0641 -0xea31,CUS_0x627a,August,52,564-44-2836,Media_Manager,99776.28,8051.69,4,6,6,4,"Not Specified, Student Loan, Home Equity Loan, and Student Loan",22.24537237,18,-1.66,8,Good,655.1947043,30.13225725,30 Years and 8 Months,No,296.5228181,473.5578742,High_spent_Small_value_payments,339.3195931,0,1.2479,0.2899,0.6982,-1.2217,0.853 -0xea3d,CUS_0x33b8,August,30,659-40-4348,Engineer,16362.68,1536.556667,10,5,19.06745738,6,"Home Equity Loan, Student Loan, Home Equity Loan, Payday Loan, Student Loan, and Credit-Builder Loan",51.51886903,27.50670606,3.36,15,Bad,3170.408622,36.23360634,8 Years and 5 Months,Yes,77.71339407,,Low_spent_Small_value_payments,164.980307,0,-0.1798,-0.3446,-0.9108,-1.5324,1.0725 -0xea49,CUS_0x89a6,August,39,762-87-0890,Entrepreneur,35284.57,,3,4,9,100,"Debt Consolidation Loan, and Personal Loan",0,1,3.92,4,Good,1019.862084,28.72975512,31 Years and 11 Months,No,38.38173942,212.2610979,Low_spent_Medium_value_payments,341.7656123,0,-2.0391,-0.9662,0.2964,2.2005,0.4086 -0xea55,CUS_0x3201,August,26,199-10-2467,Doctor,35336.77,2893.730833,4,5,16,2,"Payday Loan, and Student Loan",16.35034766,14,4.76,2,Standard,1172.87,33.64996741,32 Years and 9 Months,No,31.40243804,,High_spent_Large_value_payments,473.6781972,0,-0.0352,0.5479,-0.3286,-0.1177,-0.9756 -0xea61,CUS_0x4717,August,33,096-05-5633,Developer,11550.325,,5,148,15,2,"Auto Loan, and Credit-Builder Loan",27.19481832,19,1.46,2,Standard,626.7834937,33.08064367,17 Years and 11 Months,No,10.29088528,30.72007101,High_spent_Medium_value_payments,308.2031053,0,0.6954,0.2704,-1.4617,-0.508,-1.15 -0xea6d,CUS_0x70f7,August,39,199-34-7264,Media_Manager,94092.36,7644.03,3,6,17,4,"Mortgage Loan, Payday Loan, Not Specified, and Payday Loan",26.47442315,19,14.93,10,Standard,1338.47,31.74162359,26 Years and 8 Months,Yes,299.5763411,,High_spent_Large_value_payments,629.2773522,0,-1.0865,-0.2384,-0.5481,0.3711,0.7886 -0xea79,CUS_0x8009,August,21,101-91-5657,Mechanic,31598.5,2517.208333,9,7,28.06745738,5,"Payday Loan, Auto Loan, Personal Loan, Not Specified, and Home Equity Loan",,16,18.79,8,Bad,4795.420954,35.38225307,2 Years and 2 Months,Yes,127.8986143,51.05689158,High_spent_Medium_value_payments,296.0450395,0,1.1079,-0.2595,1.5731,-0.2906,-1.0812 -0xea85,CUS_0x355f,August,21,601-12-1746,Architect,18822.02,1821.501667,4,3,19,2,"Debt Consolidation Loan, and Student Loan",18.36657317,16,9.63,10,_,1464.16,36.7942762,16 Years and 3 Months,NM,16.42968449,65.6163237,High_spent_Medium_value_payments,350.1041585,0,0.0318,-0.1823,0.7809,-0.3419,0.1965 -0xea91,CUS_0xb875,August,53,972-49-2910,_______,61203.18,4911.265,7,3,5,777,"Home Equity Loan, Not Specified, Auto Loan, and Student Loan",25.92639763,19,8.29,7,Good,1050.116542,29.07303391,24 Years and 2 Months,No,133.6059354,,Low_spent_Small_value_payments,87.06820251,0,-1.1704,0.6447,1.1031,-1.0343,-1.5463 -0xea9d,CUS_0xcb3,August,38,899-28-6694,Manager,83601.84,7235.82,9,5,30.06745738,7,"Not Specified, Not Specified, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",38.6927581,20,11.87,11,Bad,4514.130954,34.9024859,6 Years and 3 Months,Yes,439.0918486,,Low_spent_Small_value_payments,105.9421717,0,-1.7636,-0.4981,-0.5493,-0.4049,0.7444 -0xeaa9,CUS_0x96a2,August,30,#F%$D@*&8,_______,11586.525,,5,6,18,2,"Mortgage Loan, and Mortgage Loan",20.43552033,15,12,1,Standard,498.68,32.9683489,,Yes,15.46654664,81.66618466,Low_spent_Small_value_payments,287.2216437,0,0.7927,1.2907,0.1558,-0.5106,0.5418 -0xeab5,CUS_0x97fc,August,48,861-65-3607,Doctor,80953.2,,6,3,8,100,"Personal Loan, and Home Equity Loan",,9,5.14,4,_,597.32,38.84564656,23 Years and 2 Months,Yes,111.7287964,106.1433698,High_spent_Medium_value_payments,704.3378338,0,1.7694,-0.0346,-1.5697,1.4727,0.7061 -0xeac1,CUS_0x9395,August,48,147-24-9906,Lawyer,102260,8580.666667,5,5,7,3,"Payday Loan, Credit-Builder Loan, and Mortgage Loan",19.61473856,13,16.08,6,Standard,407.46,24.30390757,,Yes,233.3445043,642.0952483,Low_spent_Medium_value_payments,262.626914,0,0.0801,1.3436,-0.2698,0.4345,0.672 -0xeacd,CUS_0xa8ed,August,27,899-63-9269,Teacher,74866.6,5964.883333,5,4,32,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Payday Loan, and Home Equity Loan",21.41437865,15.24454709,10.3,10,_,2052.296887,32.09618787,8 Years and 2 Months,Yes,277.4580436,,Low_spent_Large_value_payments,221.9495147,0,1.8746,0.0772,0.5197,1.3599,-0.0131 -0xead9,CUS_0x8a31,August,41,767-27-3999,Mechanic,147510.76,,3,7,8,0,,,1.165997853,4.97,3,Good,1667.716589,35.31221074,16 Years and 6 Months,No,0,582.9344225,Low_spent_Small_value_payments,955.3219108,0,-1.0978,1.3187,-0.7696,1.3285,0.4884 -0xeae5,CUS_0xb6aa,August,42,751-09-8599,Doctor,16678.98,,8,7,24.06745738,2,"Home Equity Loan, and Not Specified",29.59139241,13,9.36,9,Standard,2418.860954,28.93846348,7 Years and 8 Months,Yes,14.49060092,132.1709855,Low_spent_Small_value_payments,240.0096256,0,0.3927,0.5158,0.7292,0.0314,0.1471 -0xeaf1,CUS_0x6160,August,28,748-02-2384,Entrepreneur,129233.52,,6,4,7.288361749,0,Student Loan,10.79484938,10.34553402,,0,Standard,1156.299398,32.98519916,26 Years and 10 Months,No,75.60222093,563.8186967,High_spent_Medium_value_payments,1131.662543,0,-1.5031,-0.6558,-0.7794,-1.2407,-1.3779 -0xeafd,CUS_0x529c,August,32,071-87-6290,Manager,110347.2,9184.6,5,3,7.288361749,0,Payday Loan,0,2,3.23,0,_,383.2889023,27.96831724,23 Years and 10 Months,NM,62.73363985,627.9519172,High_spent_Medium_value_payments,918.4178086,0,0.4098,0.0813,-1.3258,0.7005,-0.0484 -0xeb09,CUS_0x7486,August,43,152-01-9858,Lawyer,108129.44,8776.786667,4,3,8,2,"Personal Loan, and Credit-Builder Loan",,14.34244882,19.7,7,Standard,1026.077035,39.70856186,24 Years and 10 Months,NM,144.3196738,343.9408311,High_spent_Medium_value_payments,639.4181618,0,2.0535,-1.1943,-0.2169,0.0759,1.3356 -0xeb15,CUS_0x320e,August,21,011-23-7847,Media_Manager,9812.96,875.7466667,8,3,9,100,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Not Specified, Not Specified, and Debt Consolidation Loan",14.69383192,13,12.39,5,Standard,727.39,28.5245246,,Yes,57.01337983,48.64118836,Low_spent_Medium_value_payments,261.9200985,0,0.3946,-0.813,-0.3091,0.1706,0.1799 -0xeb21,CUS_0x98e6,August,42,792-35-6886,Lawyer,53226.52,,7,4,17,2,"Student Loan, and Auto Loan",17.11770831,14,23.84,4,Standard,816.31,25.37630064,17 Years and 11 Months,NM,60.92730313,98.58578786,High_spent_Large_value_payments,523.7412423,0,-1.5759,0.4913,0.4567,0.124,1.6163 -0xeb2d,CUS_0x3003,August,31,843-29-2146,Developer,15129.9,,7,9,29.06745738,9,"Auto Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",35.8447936,16,8.73,8,_,2025.200954,32.30599335,17 Years and 5 Months,Yes,70.5054541,98.71312196,Low_spent_Small_value_payments,210.743636,0,-0.6188,1.0702,0.0232,-0.5429,-1.2956 -0xeb39,CUS_0x39ad,August,31,149-63-5296,Mechanic,63525.64,5409.803333,4,7,9,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",,5,10.73,2,Good,895.8835114,40.75835198,30 Years and 9 Months,NM,145.92956,,High_spent_Medium_value_payments,540.7695108,0,2.0855,-1.289,0.7628,-0.414,0.8767 -0xeb45,CUS_0x6ef,August,26,574-48-5259,Engineer,21613.57,1716.130833,4,7,18,7,"Debt Consolidation Loan, Not Specified, Personal Loan, Home Equity Loan, Student Loan, Personal Loan, and Payday Loan",,11,18.42,5,Standard,878.38,36.78939845,14 Years and 6 Months,NM,99.97414137,79.74033835,Low_spent_Large_value_payments,261.8986036,0,0.5008,-0.2275,0.5453,-0.0909,-0.069 -0xeb51,CUS_0x64d6,August,33,560-35-4678,Lawyer,20040.64,1508.053333,3,6,9,2,"Debt Consolidation Loan, and Payday Loan",17.12101233,11.95660224,10.68,5,Good,1429.103216,23.23624795,32 Years and 8 Months,No,32.71828748,95.14376283,Low_spent_Medium_value_payments,302.943283,0,0.9879,2.1064,0.0873,2.5566,0.0153 -0xeb5d,CUS_0x4574,August,26,115-33-9294,Mechanic,40341.16,3602.763333,2,5,1,4,"Debt Consolidation Loan, Payday Loan, Auto Loan, and Payday Loan",10.81975689,11,8.33,4,Good,1183.73,32.13925263,20 Years and 5 Months,No,113.0211027,389.6969803,Low_spent_Small_value_payments,147.5582503,0,0.3037,-1.0071,0.7509,0.1666,-0.6941 -0xeb69,CUS_0x7348,August,49,230-65-4556,Journalist,88859.37,7517.9475,5,4,7.288361749,0,Personal Loan,15.59158617,14,-0.51,4,Good,473.15,38.04843684,22 Years and 10 Months,NM,49.22129745,535.6884411,High_spent_Large_value_payments,826.8224725,0,-0.5573,-0.058,-0.5864,-0.0927,1.4709 -0xeb75,CUS_0x81f4,August,39,798-70-4000,Writer,29485.2,,8,8,20.88954781,7,"Debt Consolidation Loan, Personal Loan, Student Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",37.22102463,26.0582607,15.33,6,_,4485.791589,32.08048195,2 Years and 6 Months,Yes,1476.89752,128.9878449,Low_spent_Small_value_payments,213.9945534,0,0.1302,1.2973,1.9229,-1.6145,0.4696 -0xeb81,CUS_0xc702,August,28,559-27-4003,Manager,31959.4,,8,10,29.95700519,9,"Student Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Auto Loan, Credit-Builder Loan, Payday Loan, and Student Loan",,22,29.29,9,Bad,2976.860954,35.26286516,6 Years and 4 Months,Yes,1464.42016,100.0584039,High_spent_Small_value_payments,161.3170634,0,1.0193,-1.0322,0.1987,-0.0791,-0.8388 -0xeb8d,CUS_0x51bf,August,51,684-71-5126,Writer,88716.28,7476.023333,5,1308,5.288361749,2,"Payday Loan, and Personal Loan",18.45395074,17,18.75,3,Standard,58.82,24.06004568,20 Years and 10 Months,Yes,144.1698681,826.914682,Low_spent_Medium_value_payments,476.4552443,0,0.559,0.1484,-1.3705,1.9122,2.1306 -0xeb99,CUS_0x290b,August,29,833-02-7565,Scientist,18508.39,1461.834895,7,7,33,2,"Home Equity Loan, and Student Loan",25.40073726,,8.48,8,Bad,2384.609577,31.34993835,19 Years and 3 Months,Yes,133.6133238,,!@9#%8,318.2727761,0,-0.0625,0.416,0.7307,0.4234,-0.9531 -0xeba5,CUS_0x4b89,August,22,920-87-0240,Lawyer,8996.265,740.68875,4,5,20.06745738,2,"Personal Loan, and Home Equity Loan",26.26406416,17,15.07,5,Standard,2623.410954,29.08898402,15 Years and 4 Months,Yes,12.37170524,44.45767213,Low_spent_Small_value_payments,280.5192097,0,-0.5903,0.1071,-1.2745,-0.3608,-1.5321 -0xebb1,CUS_0xb7c4,August,28,581-05-4994,Engineer,39700.24,3080.353333,10,5,25.06745738,5,"Personal Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",44.40701656,21.59628622,9.98,7,Bad,3161.313385,26.83579859,12 Years and 5 Months,Yes,136.5763611,49.96735888,High_spent_Large_value_payments,334.7713254,0,-0.9924,-2.6898,-0.2432,0.2377,0.2898 -0xebbd,CUS_0xaa5b,August,27,964-98-3019,Entrepreneur,18671.92,1546.993333,2,7,11,4,"Payday Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",,,7.71,,Good,493.4649157,26.43142997,21 Years and 8 Months,No,57.15643422,,Low_spent_Medium_value_payments,246.2889833,0,-0.0929,1.4289,-1.2226,-0.4643,-1.5964 -0xebc9,CUS_0x569b,August,36,563-39-5850,_______,16435.27,,10,8,29.88954781,8,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",29.29831675,19,8.01,9,Bad,3414.12,29.65909252,10 Years and 9 Months,Yes,1398.972338,168.322128,Low_spent_Small_value_payments,181.0360365,0,-0.0652,-0.9104,-0.0294,-2.3371,-0.3989 -0xebd5,CUS_0x1d6f,August,18,197-05-2509,_______,17438.8,,8,11,16,5,"Not Specified, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,18,20.68,9,Bad,2635.91,30.58534347,9 Years and 9 Months,Yes,44.2353255,,Low_spent_Small_value_payments,218.8468092,0,-0.8573,2.7456,-0.4956,-1.1408,0.8159 -0xebe1,CUS_0x792b,August,28,535-06-2184,Engineer,43518.87,3567.5725,8,7,7,6,"Student Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",17.3298515,11,14.82,5,Standard,1284.78,34.76479904,8 Years and 8 Months,Yes,183.1832666,10000,High_spent_Large_value_payments,341.7287787,0,-0.5465,-1.6856,1.4112,1.636,0.6111 -0xebed,CUS_0x6689,August,39,538-47-6608,Entrepreneur,35996.23,,4,6,17,6,"Not Specified, Credit-Builder Loan, Auto Loan, Not Specified, Not Specified, and Payday Loan",23.08820954,17,16.81,7,Standard,767.11,40.28621908,15 Years and 6 Months,Yes,143.5268258,213.8300702,Low_spent_Small_value_payments,212.7116873,0,-0.2974,-0.9363,-0.8451,-0.5523,0.0983 -0xebf9,CUS_0x6ba3,August,25,531-12-1324,Developer,35310.83,,5,5,5,2,"Debt Consolidation Loan, and Not Specified",,9,9.74,1,_,813.8775904,25.60107563,31 Years and 3 Months,No,31.42723883,108.4274715,High_spent_Small_value_payments,442.4367623,0,-0.8561,0.1671,-0.9473,-0.9144,0.4632 -0xec05,CUS_0xbce2,August,44,968-51-7695,_______,68380.29,5448.3575,4,4,18,3,"Auto Loan, Debt Consolidation Loan, and Home Equity Loan",21.10196773,14,4.74,9,Standard,1293.3,39.99516911,19 Years and 11 Months,No,105.8878371,,High_spent_Small_value_payments,591.7307463,0,0.6855,-0.2788,-0.7975,0.3045,-1.0856 -0xec11,CUS_0xbc05,August,30,563-94-0929,Entrepreneur,20870.46,,8,8,17.95700519,7,"Mortgage Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",37.45846233,24.64405081,13.34,10,Bad,3179.910212,41.49142553,15 Years and 10 Months,Yes,1439.620863,,Low_spent_Small_value_payments,75.43698145,0,-0.5969,-0.3176,-0.5016,1.5008,0.9364 -0xec1d,CUS_0x5b22,August,43,810-51-7808,Accountant,81764.54,,1,6,7,4,"Personal Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",,1.209369101,9.28,2,Good,854.8275176,26.70791153,30 Years and 11 Months,No,475.4367995,305.2816619,Low_spent_Medium_value_payments,488.8282779,0,-0.6084,0.5634,-1.877,-0.0938,-0.0451 -0xec29,CUS_0x995d,August,22,586-31-9261,Doctor,44418.54,3626.545,9,7,33,8,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, Student Loan, Not Specified, and Personal Loan",33.6221922,,4.85,13,Bad,1490.443235,24.7544437,8 Years and 5 Months,NM,233.6362078,10000,Low_spent_Small_value_payments,44.07641174,0,-0.8081,0.3079,2.011,0.6831,-0.8462 -0xec35,CUS_0x82bd,August,38,199-83-0023,Scientist,171280.88,14157.40667,2,6,11,1,Mortgage Loan,10.61210999,10,5,3,Good,382.7880491,35.79160618,16 Years and 6 Months,No,115.3288918,1291.977819,Low_spent_Large_value_payments,408.8364114,0,0.7503,-0.5118,0.4798,0.2213,-0.2684 -0xec41,CUS_0x56c,August,41,646-03-4153,Mechanic,30385.07,,6,7,7,0,,,12,9.44,6,Standard,951.4,37.0070073,17 Years and 0 Months,No,0,294.6710344,Low_spent_Small_value_payments,271.7378823,0,-0.7179,-2.0147,0.2994,-0.818,2.3507 -0xec4d,CUS_0xb743,August,80,688-56-1839,Mechanic,34652.7,2975.725,6,7,14,3,"Payday Loan, Personal Loan, and Personal Loan",17.76473735,16,9.56,4,Standard,1096.33,38.34088887,20 Years and 4 Months,NM,64.6803123,,High_spent_Medium_value_payments,362.4525677,0,-0.8904,1.6193,0.3616,0.5246,0.4608 -0xec59,CUS_0x53f7,August,54,623-92-8926,Lawyer,62773.2,5370.1,3,4,18.28836175,2,"Payday Loan, and Mortgage Loan",3.6598195,6,11.22,7,Standard,746.09,22.91397186,28 Years and 3 Months,Yes,92.25412507,,High_spent_Small_value_payments,530.6858693,0,1.6477,-0.1103,0.2594,0.1672,0.6645 -0xec65,CUS_0x1d72,August,18,034-71-6292,Mechanic,54027,4269.25,6,4,8,2,"Home Equity Loan, and Not Specified",,11,7.2,4,Good,482.08,31.63309526,32 Years and 2 Months,No,53.26088663,85.33767763,High_spent_Small_value_payments,548.3264357,0,1.225,0.24,-2.044,-1.6218,-0.4167 -0xec71,CUS_0xa0c8,August,80,704-21-2271,Writer,16489.74,,4,3,10,3,"Mortgage Loan, Auto Loan, and Personal Loan",18.40790588,,18.18,5,Standard,1188.695005,40.41244981,12 Years and 6 Months,Yes,103.5215101,53.00604553,High_spent_Small_value_payments,299.9262548,0,-0.1153,-0.1827,-1.661,0.4219,-1.0264 -0xec7d,CUS_0x9297,August,31,#F%$D@*&8,Doctor,37823.27,2994.939167,3,5,11.28836175,2,"Student Loan, and Not Specified",12.2295557,12,7.14,8,Good,459.4544987,25.04854301,24 Years and 9 Months,No,59.0391824,580.2867131,High_spent_Small_value_payments,364.2960873,0,-1.1143,-0.0808,1.1767,-0.1359,-0.0181 -0xec89,CUS_0x848d,August,30,243-02-6463,Media_Manager,143469.16,11690.76333,4,1172,10,0,,,,7.94,5,Standard,858.9582655,34.69545495,27 Years and 6 Months,Yes,0,102.4051989,High_spent_Large_value_payments,1306.671134,0,0.052,-1.3489,-1.3594,1.6788,-0.9282 -0xec95,CUS_0x8159,August,44,891-07-9515,Mechanic,10728.4,720.0333333,6,3,4651,100,,,9,10.95,4,Good,1277.928694,34.01710114,16 Years and 9 Months,No,0,80.90233955,Low_spent_Medium_value_payments,279.8770688,0,-0.9032,1.2072,-1.3622,0.003,-1.3024 -0xeca1,CUS_0x30c6,August,31,044-69-2702,Musician,68469.6,,7,6,33,5,"Auto Loan, Student Loan, Mortgage Loan, Student Loan, and Home Equity Loan",37.39252157,19,5.16,11,Bad,1865.28,32.72195055,6 Years and 4 Months,Yes,230.3927541,144.7640661,High_spent_Medium_value_payments,424.9231798,0,-0.5456,0.5699,2.1047,-0.1233,0.206 -0xecad,CUS_0x6fbe,August,27,941-39-0627,Musician,27032.89,,6,4,17,3,"Student Loan, Debt Consolidation Loan, and Auto Loan",24.61301842,20,12.61,7,Standard,1181.93,24.87190016,25 Years and 4 Months,Yes,55.08103675,252.4140071,!@9#%8,181.0790395,0,2.2024,0.2257,0.4694,-1.0534,0.4977 -0xecb9,CUS_0x6dfc,August,80,858-22-2150,Lawyer,108952.35,9203.3625,4,4,6.288361749,2,"Personal Loan, Personal Loan, and Debt Consolidation Loan",7.548222707,8,6.04,1793,Standard,544.75,39.31811692,28 Years and 6 Months,No,230.6536457,509.9546249,High_spent_Large_value_payments,839.6654404,0,-0.9295,-1.6259,0.0383,0.2185,-0.2905 -0xecc5,CUS_0x498a,August,45,155-92-8974,Scientist,18990.85,1531.570833,6,6,30,8,"Debt Consolidation Loan, Student Loan, Auto Loan, Mortgage Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",18.34023772,,28.71,9,Bad,2878.45,29.45011031,13 Years and 3 Months,Yes,89.32400429,205.5481702,Low_spent_Small_value_payments,148.2849089,0,-2.0762,0.973,-0.9701,0.1392,-0.4202 -0xecd1,CUS_0xa2b0,August,30,785-25-4393,Accountant,30536.26,,4,1,7,0,,7.894385302,9,0.24,3,Good,419.2803765,31.01326904,32 Years and 3 Months,No,0,205.1365589,High_spent_Small_value_payments,347.3614779,0,-3.8304,0.127,0.4681,-2.268,-1.4505 -0xecdd,CUS_0x4269,August,19,686-50-2172,_______,73888.42,6077.368333,4,5,17,4,"Student Loan, Credit-Builder Loan, Not Specified, and Auto Loan",17.55959075,,10.81,4,Standard,604.85,34.42810778,27 Years and 3 Months,Yes,244.2649025,90.71501561,High_spent_Medium_value_payments,522.7569152,0,0.763,-0.0243,-0.0469,-0.4692,-1.383 -0xece9,CUS_0xc6f9,August,18,370-42-6142,Teacher,8763.22,,5,7,1272,6,"Mortgage Loan, Mortgage Loan, Auto Loan, Student Loan, Payday Loan, and Payday Loan",17.17681415,13.81263247,11.28,8,Standard,2433.678183,35.62348055,10 Years and 5 Months,Yes,22.51717724,55.44589959,Low_spent_Medium_value_payments,273.2637565,0,0.0559,0.7294,0.4068,-0.3763,2.1775 -0xecf5,CUS_0x9648,August,33,185-10-0638,Doctor,136435.2,,4,3,5,3,"Student Loan, Debt Consolidation Loan, and Student Loan",24.18290745,19,17.78,9,_,232.6553451,32.57022859,26 Years and 9 Months,NM,236.7443535,349.3868196,High_spent_Medium_value_payments,863.3879977,0,-0.8069,-0.1617,-0.1073,1.4541,-0.3142 -0xed01,CUS_0x57f7,August,28,#F%$D@*&8,Mechanic,14906.56,,6,6,20,2,"Student Loan, and Payday Loan",34.95495912,19.77585708,7.63,12,_,2950.859091,34.0574903,10 Years and 3 Months,Yes,20.69254628,74.95404368,!@9#%8,300.3747434,0,-1.3989,2.2054,0.0849,-0.47,0.1837 -0xed0d,CUS_0xbc23,August,39,474-38-7638,Entrepreneur,69779.8,5695.983333,3,6,12,5,"Mortgage Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Mortgage Loan",20.46433521,,18.99,7,Standard,2349.79,38.7669578,15 Years and 6 Months,NM,254.9681947,627.5291028,Low_spent_Small_value_payments,,0,0.0299,0.4464,0.3747,-0.2854,1.1299 -0xed19,CUS_0x7b62,August,22,722-22-8364,Doctor,13848.89,1152.074167,4,4,18,2,"Mortgage Loan, and Debt Consolidation Loan",17.21265011,11.81976996,5.77,2,Standard,70.77993454,29.4210158,26 Years and 11 Months,No,12.6634447,70.1456535,Low_spent_Small_value_payments,322.3983185,0,-2.0081,-0.7348,-0.4106,-0.284,-1.102 -0xed25,CUS_0x71ab,August,45,#F%$D@*&8,Media_Manager,7226.435,662.2029167,8,5,20,3,"Mortgage Loan, Student Loan, and Not Specified",16.19290308,14,8.72,9,Standard,1533.48,32.23947012,10 Years and 5 Months,Yes,16.19350655,18.6870462,Low_spent_Medium_value_payments,311.3397389,0,0.4675,-0.5852,-0.8442,0.2879,0.8273 -0xed31,CUS_0x4a97,August,34,886-52-2198,Writer,33765.68,,0,5,8,1,Payday Loan,9.355867245,10,1.27,1,Good,434.8888419,30.08457338,21 Years and 2 Months,No,22.33879869,333.357079,Low_spent_Small_value_payments,225.3500584,0,-1.0566,0.1953,0.4987,-2.0513,0.8656 -0xed3d,CUS_0x253c,August,35,399-03-5425,Developer,49128.9,4231.075,8,3,29,6,"Not Specified, Payday Loan, Personal Loan, Home Equity Loan, Personal Loan, and Auto Loan",,,18.88,7,Standard,2574.1,37.83616703,14 Years and 5 Months,Yes,169.5292211,98.50778274,High_spent_Medium_value_payments,405.0704962,0,0.7491,0.1703,-0.2788,0.6252,0.3435 -0xed49,CUS_0x2527,August,24,420-33-6964,Musician,7567.595,,10,5,21.06745738,5,"Student Loan, Home Equity Loan, Home Equity Loan, Personal Loan, and Not Specified",36.51584077,21,22.65,11,Bad,4917.350954,29.2964121,13 Years and 3 Months,Yes,27.51958814,,Low_spent_Medium_value_payments,275.2348471,0,-2.0129,0.7203,-0.7679,-0.2201,-0.0249 -0xed55,CUS_0x989e,August,37,131-36-4638,Teacher,19047.38,1430.281667,6,8,27.06745738,6,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",,23.03527129,29.54,8,Bad,3537.272602,29.23353019,2 Years and 10 Months,Yes,55.99002101,26.55836793,High_spent_Large_value_payments,273.7594898,0,0.739,-0.2695,1.5398,0.1004,0.626 -0xed61,CUS_0x33ba,August,19,179-95-2570,Scientist,79878.52,6535.543333,3,1,7,2,"Not Specified, and Personal Loan",6.930817737,9,7.42,8,Good,171.4357904,36.04322266,25 Years and 3 Months,No,81.1699913,552.5856435,!@9#%8,383.2818469,0,-0.908,0.5394,0.3661,-0.2909,1.8599 -0xed6d,CUS_0x7f73,August,46,342-72-4971,Architect,31329.83,2598.819167,5,3,6,0,,23.96320161,19,5.25,4,Good,628.91,32.2877332,27 Years and 11 Months,No,0,164.9415871,!@9#%8,374.9403296,0,0.3526,-0.0828,0.6629,0.0064,0.0754 -0xed79,CUS_0x8049,August,36,744-05-2416,Media_Manager,65891.85,5326.9875,4,4,5,4,"Mortgage Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",22.26960659,17,10.83,3,Standard,454.19,27.31180446,,Yes,118.882674,50.49215253,High_spent_Large_value_payments,603.3239235,0,-0.5216,-2.4533,-0.3278,0.5175,1.9989 -0xed85,CUS_0x76af,August,31,332-27-4330,_______,9955.255,,3,7,19,4,"Auto Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",,20,6.34,10,Standard,447.15,28.77570688,26 Years and 11 Months,Yes,18.4367866,80.50004376,Low_spent_Medium_value_payments,264.523628,0,0.7984,0.2151,0.0988,-0.117,-0.3364 -0xed91,CUS_0xaf47,August,29,078-24-5894,Accountant,127273.88,,8,4,14,1,Mortgage Loan,19.97907506,14,8.27,,Standard,506.0528972,43.41045958,25 Years and 9 Months,No,60.43215334,11095.58002,Low_spent_Large_value_payments,838.1212643,0,0.2472,1.2261,-1.0711,-0.4291,-1.5425 -0xed9d,CUS_0x5cd2,August,26,130-39-6294,Doctor,39318.5,3170.541667,6,9,26.06745738,6,"Credit-Builder Loan, Personal Loan, Payday Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",40.07412281,25.50954944,25.03,14,Bad,3717.293739,31.75998735,5 Years and 10 Months,Yes,137.4278479,104.857105,High_spent_Medium_value_payments,298.0489258,0,-0.4163,0.3385,-0.4216,0.1885,0.2902 -0xeda9,CUS_0x9f8a,August,26,572-19-4724,Writer,8361.59,,10,7,34.06745738,7,"Personal Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",,23.0332643,9.35,6,_,2258.268229,36.04234655,17 Years and 11 Months,Yes,27.87815482,10000,Low_spent_Small_value_payments,253.5700404,0,-1.4306,0.1251,0.069,-0.9534,-1.0063 -0xedb5,CUS_0x1249,August,32,851-75-4209,Teacher,9529.855,688.1545833,9,8,26,3,"Not Specified, Payday Loan, and Auto Loan",,15,7.2,10,Bad,1818.36,35.67904963,7 Years and 2 Months,Yes,12.01094253,50.63203546,Low_spent_Small_value_payments,296.1724803,0,0.26,0.0868,0.9161,-0.286,-0.4067 -0xedc1,CUS_0x5c92,August,24,515-12-7106,Doctor,19681.08,,4,4,16,3,"Not Specified, Mortgage Loan, and Payday Loan",,9.4531953,10.41,1,Standard,1251.780329,27.72035106,18 Years and 11 Months,Yes,33.87070847,,!@9#%8,258.9217274,0,-0.1047,-0.0068,0.402,-0.8904,0.0398 -0xedcd,CUS_0x35b9,August,18,854-53-4727,Developer,57943.41,4732.6175,8,8,20.95700519,6,"Mortgage Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",,24,21.78,15,Bad,5113.480954,41.79579429,10 Years and 11 Months,Yes,1524.177498,164.3426497,!@9#%8,323.6912332,0,0.6702,2.0128,0.1249,-0.4195,0.0783 -0xedd9,CUS_0x2219,August,40,453-62-6215,Architect,161007.32,13305.27667,4,2,11,4,"Payday Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",0,1,-2.55,3,Good,615.92,30.22221054,,No,421.1804078,232.9534266,High_spent_Large_value_payments,916.3938322,0,1.3886,-0.3338,0.9366,-1.406,-0.4579 -0xede5,CUS_0xa1c1,August,80,564-34-1623,_______,18760.69,1331.390833,10,10,22.95700519,9,"Not Specified, Auto Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",52.54120188,30.27775219,7.96,6,Bad,1730.890101,29.55461537,15 Years and 0 Months,Yes,1424.635672,37.934895,High_spent_Medium_value_payments,199.5181468,0,0.0021,-1.1113,-1.2769,0.0179,-0.0597 -0xedf1,CUS_0xa843,August,80,#F%$D@*&8,Writer,76804.72,5942.743352,10,9,16.88954781,8,"Payday Loan, Not Specified, Credit-Builder Loan, Student Loan, Mortgage Loan, Personal Loan, Student Loan, and Payday Loan",90,2587,25.93,8,Bad,4811.23,34.22130241,1 Years and 6 Months,NM,2097.931761,249.2783903,High_spent_Medium_value_payments,361.149082,0,-1.7677,-1.0168,0.0464,-0.4297,0.7119 -0xedfd,CUS_0x228d,August,35,848-58-5437,Musician,23357.87,,4,5,8.067457376,4,"Payday Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",20.94936585,13,17.38,5,Standard,1513.470954,27.8011382,6 Years and 5 Months,Yes,44.87283728,79.07626401,High_spent_Medium_value_payments,300.1795274,0,-0.1789,0.9579,-0.9175,0.307,-2.2235 -0xee09,CUS_0x3d57,August,26,833-70-3589,Writer,45834.57,3816.5475,7,7,19,2,"Student Loan, and Mortgage Loan",,19.40422728,15.07,8,_,2749.215941,38.61901989,15 Years and 10 Months,Yes,54.29309306,111.7789611,High_spent_Medium_value_payments,465.5826959,0,-0.0161,0.9558,0.1245,-0.1097,-0.6944 -0xee15,CUS_0x810,August,39,666-51-5857,Accountant,68470.86,,7,4,12,5,"Not Specified, Mortgage Loan, Not Specified, Student Loan, and Student Loan",15.17611902,12,18.49,10,Standard,965.14,36.30424055,16 Years and 10 Months,Yes,226.9156156,60.34071593,High_spent_Large_value_payments,541.2341685,0,-0.8762,-1.0407,-0.1368,0.7509,-0.7254 -0xee21,CUS_0x60e3,August,31,351-59-3736,Journalist,53945.85,,7,6,23,2,"Payday Loan, and Not Specified",39.50748703,24,11.82,11,_,2352.38,30.34380438,9 Years and 2 Months,Yes,71.11290618,10000,High_spent_Medium_value_payments,556.683271,0,0.2498,-1.7738,1.5891,0.6307,-1.4266 -0xee2d,CUS_0xc216,August,19,011-44-1570,Scientist,19028.45,1497.704167,10,10,16.95700519,7,"Credit-Builder Loan, Auto Loan, Personal Loan, Student Loan, Auto Loan, Personal Loan, and Student Loan",25.7941657,,16.16,6,Bad,3160.146343,33.94251232,12 Years and 11 Months,Yes,1402.332577,,Low_spent_Small_value_payments,116.5982273,0,-1.0203,-1.3774,-0.4407,-0.7194,-1.3278 -0xee39,CUS_0x6df9,August,24,859-34-6416,Developer,11486.08,1067.173333,8,7,11,3,"Mortgage Loan, Payday Loan, and Home Equity Loan",,13,11.73,9,Standard,550.98,39.19834044,17 Years and 4 Months,Yes,23.08311051,43.76780955,Low_spent_Medium_value_payments,319.8664133,0,0.994,0.6379,-0.6659,-1.5354,1.0541 -0xee45,CUS_0x6ad2,August,40,025-76-6023,Media_Manager,35643.6,3046.3,4,3,9,100,"Auto Loan, Personal Loan, Auto Loan, and Personal Loan",28.51858317,19,16.48,12,Standard,151.7942498,34.8313927,6 Years and 4 Months,Yes,60.03954017,89.30267123,High_spent_Medium_value_payments,413.5422472,0,1.556,0.6598,-1.8292,0.1697,0.1838 -0xee51,CUS_0x48f7,August,20,989-32-0623,Lawyer,35699.53,2864.960833,6,5,1293,0,,20.08635813,13,,5,Standard,397.35,24.18918022,30 Years and 11 Months,Yes,0,153.6561902,Low_spent_Large_value_payments,402.8398931,0,-0.7287,-1.0075,0.0926,-1.4751,0.2245 -0xee5d,CUS_0x4caa,August,18,715-08-6034,Scientist,53611.71,4733.6425,6,5,8,3,"Mortgage Loan, Student Loan, and Credit-Builder Loan",,15,20.82,8,Standard,1458.84,31.65969226,7 Years and 9 Months,Yes,87.35712884,75.11073091,High_spent_Large_value_payments,550.8963902,0,-1.266,1.5259,2.001,0.4884,-1.1756 -0xee69,CUS_0x7d6e,August,19,#F%$D@*&8,Journalist,15508.43,,4,4,16,4,"Home Equity Loan, Home Equity Loan, Student Loan, and Not Specified",18.35609693,,3.07,1,Standard,1193.492576,33.1089272,30 Years and 8 Months,Yes,43.05789457,,Low_spent_Medium_value_payments,335.5944642,0,0.6262,1.5868,0.634,-0.6452,-0.7353 -0xee75,CUS_0xb545,August,31,148-27-1804,Architect,52977,4595.75,8,9,24.88954781,7,"Not Specified, Debt Consolidation Loan, Auto Loan, Auto Loan, Student Loan, Student Loan, and Not Specified",,22,7.72,6,Bad,2578.67,31.68303978,7 Years and 6 Months,Yes,1572.627719,329.280166,!@9#%8,133.3370341,0,1.7336,1.9376,0.1415,-1.8128,2.5397 -0xee81,CUS_0x5e05,August,28,559-07-5598,Teacher,29283.91,,3,5,8,2,"Mortgage Loan, and Not Specified",4.55438533,4,12.33,2,_,309.61,27.58653662,31 Years and 3 Months,No,36.20844627,,Low_spent_Medium_value_payments,338.4424819,0,2.13,-0.4305,0.7923,0.8727,-1.7424 -0xee8d,CUS_0x48fe,August,22,#F%$D@*&8,Writer,71843.52,5836.96,7,6,10,0,,17.49118085,11,13.82,8,_,369.7,41.29231886,13 Years and 5 Months,NM,0,248.2689759,Low_spent_Small_value_payments,625.4270241,0,0.2421,-0.0032,-0.019,-1.1303,0.5307 -0xee99,CUS_0x54bf,August,28,542-71-6415,Doctor,7153.435,,8,9,25.06745738,2,"Personal Loan, and Personal Loan",27.57277533,13.08683396,16.98,10,Standard,1660.866891,32.32952168,14 Years and 2 Months,Yes,7.054436355,68.34597181,Low_spent_Small_value_payments,241.0912622,0,-0.2085,0.6333,-0.3677,0.4166,1.5876 -0xeea5,CUS_0x3dd5,August,18,853-66-3280,Mechanic,15862.67,,374,10,29.06745738,6,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Payday Loan, Auto Loan, and Not Specified",20.54509532,,18.36,13,Bad,4987.070954,27.02703627,8 Years and 0 Months,NM,76.60381293,88.92315434,Low_spent_Small_value_payments,202.4416614,0,-0.7479,0.615,0.7518,0.0275,0.5728 -0xeeb1,CUS_0x8627,August,38,896-61-5112,Mechanic,12549.985,828.8320833,7,5,13,1,Not Specified,17.66372405,15,3.87,6,Standard,803.44,31.30995226,32 Years and 3 Months,No,9.947697793,30.31723326,Low_spent_Large_value_payments,312.6182773,0,0.0027,0.0172,1.0431,0.5307,0.9664 -0xeebd,CUS_0xacb2,August,26,505-98-5428,Scientist,74478.72,6439.56,8,6,21,100,"Auto Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",42.90245019,27.7746836,24.36,8,Bad,4224.058102,32.52476224,14 Years and 5 Months,Yes,499.7320248,657.7577214,Low_spent_Small_value_payments,,0,0.4057,0.6746,-0.6357,0.3035,-0.7529 -0xeec9,CUS_0x9244,August,43,481-35-7248,Scientist,48818.1,4293.175,8,6,21.06745738,6,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Not Specified, and Not Specified",,24.7200361,1.43,12,Bad,2748.62591,32.98870521,17 Years and 5 Months,Yes,162.3432228,177.4752134,High_spent_Medium_value_payments,312.7787758,0,-0.2285,1.3145,-0.4129,0.4903,1.4849 -0xeed5,CUS_0x3881,August,43,354-99-3306,Engineer,98459.7,8165.975,3,7,9,4,"Personal Loan, Payday Loan, Auto Loan, and Auto Loan",11.62792114,12,1.8,3,Good,24.1,30.80000189,27 Years and 0 Months,No,196.5613025,694.7113861,Low_spent_Medium_value_payments,205.3248114,0,0.2099,0.4592,-1.5219,-0.0165,2.5569 -0xeee1,CUS_0x40d0,August,29,372-92-8319,_______,60462.44,5081.536667,7,7,26,7,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Payday Loan, Student Loan, Student Loan, and Student Loan",,19.50743761,8.19,10,Standard,1607.229143,31.81819817,7 Years and 11 Months,NM,319.7903879,355.5141781,Low_spent_Large_value_payments,102.8491006,0,-0.0521,1.4031,0.2734,1.0423,-0.9778 -0xeeed,CUS_0x4ace,August,26,719-15-2592,Media_Manager,19280.73,,5,9,33.06745738,2,"Auto Loan, and Not Specified",19.89931951,12.95512842,10.67,10,_,2831.687246,33.074476,9 Years and 11 Months,NM,17.67703579,10000,Low_spent_Medium_value_payments,278.5818579,0,-0.3435,0.1503,-2.003,1.3359,1.4957 -0xeef9,CUS_0x4900,August,34,518-03-9456,Teacher,17666.82,,8,5,3,2,"Mortgage Loan, and Debt Consolidation Loan",,21.83126253,2.77,0,Good,385.7826058,34.55108371,26 Years and 5 Months,No,18.33757707,73.27047443,High_spent_Small_value_payments,329.2154485,0,-3.0102,0.0128,0.0879,0.1087,-0.7344 -0xef05,CUS_0xa3a1,August,26,852-20-0763,_______,31757.98,,6,8,24.95700519,9,"Payday Loan, Auto Loan, Auto Loan, Personal Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",33.94235104,22,24.05,10,Bad,4253.161163,37.71372899,5 Years and 9 Months,Yes,1457.386236,152.9957621,!@9#%8,253.2968275,0,-0.4353,-2.2833,1.778,0.9989,-0.2854 -0xef11,CUS_0x1820,August,27,654-71-1742,Engineer,39123.42,3020.285,6,5,14.28836175,2,"Not Specified, Student Loan, and Home Equity Loan",23.23218949,20.38400226,7.47,5,Standard,151.7835143,26.17588885,15 Years and 11 Months,Yes,64.49842309,565.0588995,Low_spent_Small_value_payments,382.4086384,0,0.5565,1.5033,-0.8244,-0.2835,-0.6698 -0xef1d,CUS_0xa4de,August,19,#F%$D@*&8,_______,35844.02,2703.001667,3,7,13,1,Mortgage Loan,20.54233675,19,14.17,10,Standard,1072.28,30.48810979,20 Years and 10 Months,Yes,24.56853694,239.8543268,Low_spent_Small_value_payments,295.877303,0,-0.1702,0.0353,1.7961,-0.582,-0.174 -0xef29,CUS_0x48dc,August,80,414-76-9835,Developer,15169.51,,3,7,13.06745738,4,"Home Equity Loan, Not Specified, Personal Loan, and Personal Loan",,22,12.14,5,Standard,1403.360954,26.68054018,13 Years and 11 Months,Yes,33.0736202,,Low_spent_Large_value_payments,228.071608,0,0.4654,-1.087,-1.6121,-0.9108,0.2223 -0xef35,CUS_0xc4c7,August,35,653-23-4587,Writer,134139.48,11352.29,2,5,11,4,"Auto Loan, Student Loan, Mortgage Loan, and Mortgage Loan",3.066210534,2.395451196,11.14,1,Good,1623.753776,27.68189622,16 Years and 0 Months,No,416.3605236,,High_spent_Large_value_payments,732.5139124,0,0.5819,-1.0467,-0.0991,0.1573,0.3914 -0xef41,CUS_0x1286,August,80,456-37-9366,Entrepreneur,33642.07,,7,3,12,2,"Debt Consolidation Loan, and Not Specified",,8,0.14,8,Standard,696.57,32.07386883,22 Years and 11 Months,No,29.56393249,10000,High_spent_Medium_value_payments,430.5489706,0,0.7045,0.0152,0.9563,-0.9627,-0.3699 -0xef4d,CUS_0x1a71,August,19,708-94-5712,Engineer,15580.41,,10,9,16.88954781,9,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",32.64129459,16,30.57,13,_,4319.35,23.56799975,6 Years and 4 Months,Yes,1435.997165,,Low_spent_Small_value_payments,216.3928471,0,-0.5436,-0.0775,-0.6667,-0.4903,0.3893 -0xef59,CUS_0x48e5,August,46,195-08-6361,Accountant,107068.92,8657.41,3,3,5,3,"Student Loan, Mortgage Loan, and Home Equity Loan",,13,11.69,7,Standard,122.31,38.61206228,18 Years and 4 Months,Yes,211.8709282,127.2212409,High_spent_Large_value_payments,766.6488308,0,0.2184,0.502,-0.5832,0.5869,1.3153 -0xef65,CUS_0xa651,August,27,722-69-2109,Developer,73802.24,,8,10,17.88954781,8,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Not Specified, Payday Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",33.73683015,17.9032476,24.61,7,_,4170.977179,25.10929123,6 Years and 5 Months,Yes,1810.786257,549.7996275,Low_spent_Small_value_payments,,0,0.3114,-0.1852,0.5818,0.0311,-0.2599 -0xef71,CUS_0xa4d9,August,37,616-58-0746,Mechanic,43956.23,3820.019167,3,4,4,0,,0,1,7.16,4,_,964.4486942,30.46817834,30 Years and 4 Months,No,0,339.3653893,Low_spent_Large_value_payments,362.7935847,0,-0.8516,-0.2561,-1.1825,-0.638,-0.3786 -0xef7d,CUS_0x38b0,August,23,328-93-5711,Entrepreneur,80411.04,6694.92,8,4,11,1,Payday Loan,,10,5.71,5,Good,1292.102336,31.7622003,15 Years and 10 Months,No,65.73904985,180.9064773,High_spent_Large_value_payments,683.9167257,0,1.4591,0.4953,1.0296,-0.7146,-0.2576 -0xef89,CUS_0x2b1c,August,47,843-09-7358,Teacher,39305.86,,7,6,5,2,"Debt Consolidation Loan, and Student Loan",21.95861456,15,13.33,3,_,1365.29,34.81649721,20 Years and 4 Months,NM,64.40514455,83.14636466,High_spent_Medium_value_payments,450.8973241,0,0.2416,0.3146,-0.0458,-0.4963,0.8065 -0xef95,CUS_0x4db5,August,18,424-73-9223,Engineer,46417.56,3606.13,6,7,30.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Auto Loan",42.74197794,20.01699471,17.65,13,Bad,5116.739761,36.06203418,13 Years and 6 Months,Yes,150.6176887,169.417399,Low_spent_Small_value_payments,303.8576244,0,-0.8576,-0.9212,1.0398,-0.0901,0.4702 -0xefa1,CUS_0x5849,August,49,792-63-2492,Musician,44595.18,,3,3,10,1,Debt Consolidation Loan,,8.279180973,8.22,4,Good,884.8478164,35.71230547,21 Years and 0 Months,No,24.35688898,43.56466747,High_spent_Medium_value_payments,545.3049436,0,-0.5642,0.0523,1.2366,-0.6501,-1.2596 -0xefad,CUS_0x478,August,42,880-82-1203,Doctor,42757.81,3556.150833,0,5,3,3,"Mortgage Loan, Student Loan, and Home Equity Loan",2.047549878,6,,9,Good,580.1570062,29.21351612,32 Years and 6 Months,No,102.8095687,219.241101,Low_spent_Medium_value_payments,343.6756435,0,0.4168,-0.0435,-1.3462,1.8141,-2.5497 -0xefb9,CUS_0x446a,August,39,886-76-5266,Scientist,119902.4,,5,4,10.28836175,0,Payday Loan,,7,0.82,0,Good,1037.85,36.10568181,31 Years and 2 Months,No,93.33678291,1152.734388,Low_spent_Large_value_payments,464.1529572,0,0.1249,0.3568,-0.0089,-0.1348,-0.036 -0xefc5,CUS_0x80e5,August,42,254-17-0513,Writer,46410.42,3973.535,8,6,18.06745738,9,"Mortgage Loan, Student Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, and Not Specified",44.840513,25.93095984,18.19,8,_,3591.19689,35.4959374,7 Years and 4 Months,Yes,282.150245,305.7925185,Low_spent_Medium_value_payments,62.6904486,0,-2.0337,-1.531,0.8665,-2.2066,-0.8858 -0xefd1,CUS_0x5b5a,August,45,531-46-1872,Engineer,40894.22,,5,5,4272,0,,0,3,3.07,4,Good,1149.831035,27.31350238,33 Years and 4 Months,No,0,126.3198208,High_spent_Medium_value_payments,460.8462446,0,-1.5978,0.7183,1.7095,0.1185,-0.8436 -0xefdd,CUS_0x7f5d,August,29,#F%$D@*&8,Teacher,20615.79,,7,7,21,7,"Credit-Builder Loan, Auto Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",33.68655813,15.61809881,10.01,8,Standard,2156.261803,37.84495184,12 Years and 4 Months,Yes,72.10578358,,Low_spent_Small_value_payments,212.345118,0,0.4373,-1.7597,-0.3753,-0.7387,-0.1255 -0xefe9,CUS_0xbbe4,August,25,162-52-7725,Scientist,38673.64,,5,6,4,4,"Not Specified, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",1.588005583,5,8.38,7,Good,1047.272098,32.45338241,33 Years and 0 Months,No,88.28333171,428.9873472,Low_spent_Small_value_payments,153.5384564,0,-0.6129,0.086,-0.7865,1.2845,0.556 -0xeff5,CUS_0x347c,August,33,497-94-5245,_______,66460.6,,8,10,17.95700519,6,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",47.70633243,30.6191413,6.15,15,Bad,5578.06331,39.08446545,12 Years and 2 Months,Yes,1601.563407,669.5967778,Low_spent_Small_value_payments,,0,0.2854,1.8788,-0.6134,-0.1471,-1.7526 -0xf001,CUS_0x53eb,August,38,840-67-6481,Lawyer,127720.4,,5,6,12,0,,5.947005268,8,1.82,3,Good,330.7701058,34.57533671,,NM,0,1254.257063,Low_spent_Medium_value_payments,251.2721036,0,-0.651,-1.0034,0.6064,-0.3151,0.6406 -0xf00d,CUS_0x48a8,August,40,955-63-6307,Writer,18116.1,1552.675,3,9,34,7,"Payday Loan, Personal Loan, Auto Loan, Not Specified, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",14.28990051,10.21702071,7.43,13,Standard,1977.846948,22.64714643,11 Years and 4 Months,Yes,62.40101612,,Low_spent_Small_value_payments,175.015237,0,1.7775,-1.5275,1.484,0.5762,-0.2508 -0xf019,CUS_0x17e9,August,42,616-94-7076,Accountant,67841.78,,8,3,14,4,"Payday Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",24.62103683,17,2.35,3,Standard,1475.39,36.4708924,27 Years and 4 Months,NM,177.3507897,214.0251561,!@9#%8,424.8722209,0,0.1646,1.3789,-0.7624,1.6686,0.7681 -0xf025,CUS_0x5781,August,25,661-47-2868,Entrepreneur,31439.6,2846.966667,5,7,18,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,8,15.51,8,Standard,1283.46,36.65631568,,Yes,104.2731009,90.76627694,High_spent_Medium_value_payments,339.6572888,0,0.5695,-0.6559,-0.7152,-0.0163,-0.4769 -0xf031,CUS_0x9867,August,32,#F%$D@*&8,Architect,104506.98,8986.915,5,1,2.288361749,4,"Not Specified, Mortgage Loan, Personal Loan, and Home Equity Loan",5.926424458,8,10.61,2,Good,603.5699308,32.81506055,33 Years and 8 Months,No,340.1049572,1150.345964,!@9#%8,219.6601142,0,0.9241,0.6633,0.6669,-1.0237,0.893 -0xf03d,CUS_0x8506,August,41,543-15-5889,Manager,19078.99,1867.915833,9,9,28,5,"Payday Loan, Student Loan, Auto Loan, Auto Loan, and Student Loan",,,5.75,11,Bad,1367.42,27.08396604,12 Years and 3 Months,NM,44.88120482,47.74020451,High_spent_Medium_value_payments,344.170174,0,1.1496,0.6616,0.3087,-0.5908,-0.4849 -0xf049,CUS_0x8958,August,29,689-37-1106,Lawyer,14129.42,,5,4,28.06745738,5,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Not Specified",17.73939996,9.378827279,8.63,11,Standard,3047.379313,39.92463872,17 Years and 8 Months,Yes,55.22550618,35.93056796,Low_spent_Medium_value_payments,264.8688046,0,0.8516,-2.0321,0.6274,1.1693,1.3719 -0xf055,CUS_0x4ddf,August,31,004-98-8424,Lawyer,40984.4,3655.366667,3,5,7,2,"Payday Loan, and Personal Loan",3.991198825,1.181153956,9,5,Good,327.2302304,28.35298122,22 Years and 0 Months,No,56.96645846,399.4505955,Low_spent_Small_value_payments,199.1196127,0,0.4298,0.0569,1.0864,-0.6277,-0.0781 -0xf061,CUS_0xc56a,August,28,625-55-2056,Developer,15985.29,1210.985828,6,657,27.06745738,2,"Not Specified, and Personal Loan",13.39792643,8,11.85,15,Standard,1559.880954,35.2364986,14 Years and 0 Months,NM,101.9792214,,Low_spent_Small_value_payments,206.4942736,0,-0.2372,1.3099,0.0937,-0.3168,0.7357 -0xf06d,CUS_0x3ff8,August,29,537-63-5135,Media_Manager,25810.93,1916.910833,5,3,14,3,"Not Specified, Auto Loan, and Credit-Builder Loan",,15,16.53,5,_,976.702568,30.4300467,17 Years and 5 Months,Yes,51.42495074,149.8550566,High_spent_Small_value_payments,267.7941772,0,1.745,0.3161,-1.2986,0.8731,0.4776 -0xf079,CUS_0xbd23,August,31,985-30-0728,Writer,53699.7,4382.975,8,5,13,0,,,9,9.6,0,Standard,1422.8,36.52462779,27 Years and 2 Months,No,0,420.6979865,Low_spent_Medium_value_payments,297.5995135,0,-0.0254,0.5296,-2.4151,-0.2588,-0.2381 -0xf085,CUS_0xc122,August,49,225-25-3228,Scientist,112056.36,9485.03,5,6,12,2,"Personal Loan, and Credit-Builder Loan",,22.18420837,,1,Standard,903.3697909,31.93222397,,NM,117.2399282,239.5247038,High_spent_Medium_value_payments,841.7383679,0,-0.3926,-0.23,0.9046,0.9768,-0.514 -0xf091,CUS_0xab13,August,27,#F%$D@*&8,_______,45367.94,,4,4,3.288361749,2,"Auto Loan, and Not Specified",22.90552911,19,7.6,3,Standard,43.92,31.22427569,31 Years and 2 Months,No,68.77066952,649.8862171,!@9#%8,364.4467411,0,0.2523,0.7963,-0.4494,1.3918,-1.4398 -0xf09d,CUS_0x871c,August,24,243-66-3824,Developer,32737.58,2729.131667,0,5,6,3,"Not Specified, Payday Loan, and Personal Loan",11.56671977,11,3.43,,_,568.77,31.69391075,30 Years and 9 Months,No,78.59702321,107.6920134,Low_spent_Medium_value_payments,366.6241301,0,0.3462,-0.2085,0.0353,0.0385,-0.5679 -0xf0a9,CUS_0x2d52,August,22,566-07-5369,Journalist,126971,,0,7,6,3,"Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,1.132641377,11.83,1,Good,859.0556924,26.4017758,18 Years and 4 Months,No,293.5288822,541.6190535,High_spent_Small_value_payments,492.1437309,0,0.1444,0.6262,-0.5489,-0.0272,0.0312 -0xf0b5,CUS_0x87f,August,54,684-26-1191,Architect,37171.29,,1,6,0.288361749,4,"Personal Loan, Auto Loan, Personal Loan, and Personal Loan",0,2,5.48,8,_,103.82,26.37159575,,No,64.24998249,10419.93746,High_spent_Small_value_payments,378.6181214,0,-0.2451,0.9985,-0.6876,-0.3183,-0.6432 -0xf0c1,CUS_0x4b11,August,32,037-81-2575,Manager,8840.48,773.7066667,6,10,26.95700519,8,"Not Specified, Auto Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Auto Loan",32.28132431,20.73440757,25.69,14,_,4163.218616,36.00214143,7 Years and 6 Months,Yes,1371.179522,75.05584855,Low_spent_Small_value_payments,200.0849267,0,-0.0211,1.0896,-1.3329,1.49,-1.2486 -0xf0cd,CUS_0x4fd2,August,33,443-79-4577,Architect,77905.92,6635.16,6,4,8,3,"Auto Loan, Auto Loan, and Personal Loan",,18,16.62,5,Standard,1358.16,31.70239381,10 Years and 6 Months,Yes,150.0268422,73.25029894,High_spent_Large_value_payments,680.2388588,0,-0.2928,0.2066,-0.9039,-1.6264,0.3184 -0xf0d9,CUS_0xab1c,August,33,#F%$D@*&8,Lawyer,8781.955,949.8295833,8,4,5,7,"Personal Loan, Mortgage Loan, Mortgage Loan, Not Specified, Auto Loan, Not Specified, and Credit-Builder Loan",19.31617633,,8.15,,Standard,1711.1,30.98883221,8 Years and 10 Months,Yes,33.36482846,81.21853072,Low_spent_Large_value_payments,250.3995992,0,-0.219,-0.748,-1.1085,-0.5518,-0.7281 -0xf0e5,CUS_0xb213,August,80,359-92-4028,Manager,42921.75,3304.807427,2,4,4,4,"Home Equity Loan, Student Loan, Personal Loan, and Auto Loan",,13.71677017,8.87,0,Good,241.7390569,32.67809402,17 Years and 10 Months,No,203.5509381,,!@9#%8,195.9054343,0,0.3131,-1.5884,-0.1603,0.7567,0.0666 -0xf0f1,CUS_0x4067,August,36,230-06-8689,Teacher,17101.62,,6,9,17,4,"Student Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",19.69294706,9.239044708,14.34,12,Standard,1911.092395,31.30687585,12 Years and 3 Months,Yes,33.12879518,94.16752813,!@9#%8,297.7171767,0,1.39,-1.826,0.2502,0.3674,0.0206 -0xf0fd,CUS_0x670d,August,18,255-06-7657,Lawyer,72471.32,,8,10,30.88954781,100,"Auto Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Not Specified, Home Equity Loan, and Personal Loan",,23.08127823,9.4,11,Bad,4832.881755,25.06532124,3 Years and 3 Months,Yes,1717.628102,,High_spent_Small_value_payments,98.99581964,0,1.1479,-0.5504,-0.1059,0.5802,2.2436 -0xf109,CUS_0x4e26,August,20,207-53-4847,Manager,43430.88,,6,70,12,1,Not Specified,23.27731331,16,8.54,4,Standard,1288.94,33.05922414,18 Years and 2 Months,No,20.44081762,79.7122993,High_spent_Medium_value_payments,491.6708831,0,-0.1202,-1.3357,0.5579,-0.085,0.002 -0xf115,CUS_0x8d17,August,48,097-55-6135,Architect,16730157,,3,6,115,3,"Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,19,4.01,0,Standard,587.67,28.6659668,19 Years and 10 Months,NM,26.25172433,14.67420218,!@9#%8,331.7483235,0,2.1,1.9996,0.2341,-2.2634,0.4119 -0xf121,CUS_0x6c5f,August,25,811-75-8093,Mechanic,44864.55,,4,7,1.288361749,4,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",0,1,12.34,1,Good,441.24,39.1552655,32 Years and 5 Months,No,107.49008,,Low_spent_Medium_value_payments,214.3616477,0,-1.7094,0.5681,0.0411,-1.1309,1.6466 -0xf12d,CUS_0x562f,August,80,624-52-7163,Entrepreneur,23809.46,1916.121667,3,4,14,5,"Payday Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",,11,12.7,8,Standard,677.77,31.91593771,20 Years and 0 Months,Yes,85.01185405,10000,Low_spent_Large_value_payments,221.9809665,0,1.1269,-1.0891,0.8508,-1.3687,0.3823 -0xf139,CUS_0x8dbe,August,34,305-35-3845,Developer,16112.185,,3,3,19,1,Auto Loan,28.0223916,19,10.66,5,Standard,308.39,36.28533152,33 Years and 5 Months,Yes,11.92898539,59.18973664,Low_spent_Small_value_payments,352.0494863,0,0.7092,0.6098,1.5404,-0.2411,-0.8598 -0xf145,CUS_0x36f3,August,39,782-09-3485,Architect,57786.48,,3,6,20,2,"Student Loan, and Student Loan",,15,16.33,8,Standard,197.09,33.87287997,15 Years and 9 Months,Yes,81.78005165,81.92755679,High_spent_Large_value_payments,533.2463916,0,-0.0132,-0.2434,0.5001,-2.0882,0.5417 -0xf151,CUS_0x6b9,August,30,549-93-8055,Scientist,85486.14,,7,5,13,3,"Not Specified, Student Loan, and Not Specified",11.81033832,8,5.01,3,Standard,380.26,39.19627824,26 Years and 8 Months,Yes,177.1724304,457.0921757,Low_spent_Small_value_payments,396.9198939,0,-1.5647,0.2643,-1.618,0.3674,0.1795 -0xf15d,CUS_0x4334,August,18,403-45-6666,Scientist,17590.83,1531.9025,10,10,35.06745738,7,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",,,1.66,15,_,3024.793548,40.80261818,,NM,83.89104684,,Low_spent_Small_value_payments,229.439706,0,-0.7206,0.0022,-0.358,0.4421,-0.836 -0xf169,CUS_0x5f7a,August,36,813-61-9127,Media_Manager,32597.48,2734.456667,1,2,2,2,"Auto Loan, and Credit-Builder Loan",10.32996722,10,6.3,2,Good,1175.663331,31.44095262,19 Years and 11 Months,No,45.05338491,252.2458356,Low_spent_Small_value_payments,295.5596454,0,2.1282,-0.0113,-0.3733,-0.5267,0.6164 -0xf175,CUS_0x6d2c,August,22,207-09-4100,Scientist,18226.13,,8,3,15,5,"Student Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",30.30825001,22.64755224,15.9,4,Standard,1248.799373,29.41262581,19 Years and 6 Months,Yes,61.35256822,131.5757011,Low_spent_Small_value_payments,235.4561473,0,-1.246,-0.3962,-2.9058,1.5851,-2.6338 -0xf181,CUS_0xd91,August,41,242-15-8827,Musician,93939.36,8023.28,5,6,5,1,Payday Loan,5.952574479,9,1.72,2,Standard,202.3609932,37.45311207,29 Years and 9 Months,Yes,71.12946358,152.3988895,High_spent_Large_value_payments,841.913762,0,-0.9584,1.3107,-0.0144,-1.4389,-0.0184 -0xf18d,CUS_0x815c,August,20,796-47-4372,_______,42373.7,3742.141667,0,6,4,3,"Payday Loan, Debt Consolidation Loan, and Student Loan",2.280256365,4,10.84,2,Good,1391.5,27.19764271,28 Years and 9 Months,No,88.86030124,87.66821335,High_spent_Medium_value_payments,447.6856521,0,0.4751,1.2711,1.5999,0.0956,0.3467 -0xf199,CUS_0x65c6,August,26,802-57-8351,Entrepreneur,20300.56,1609.713333,4,4,13,2,"Debt Consolidation Loan, and Home Equity Loan",23.32259624,16.1627512,-0.41,3,Standard,1520.079589,28.69123634,23 Years and 3 Months,No,20.1102902,113.5369101,Low_spent_Small_value_payments,317.324133,0,0.0948,0.3654,0.3584,0.5041,-0.0355 -0xf1a5,CUS_0x986c,August,32,388-30-1508,Engineer,21298.53,1971.8775,4,5,16.28836175,4,"Not Specified, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",23.0999401,19,4.69,0,Standard,116.4281991,33.99535885,20 Years and 4 Months,NM,31875,474.8084845,High_spent_Medium_value_payments,334.1765262,0,-0.3466,-0.6795,1.0917,1.6278,-0.6038 -0xf1b1,CUS_0x3709,August,26,517-49-0617,Writer,18967.25,,9,6,17,6,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,21,27.31,10,Bad,3583.51,35.74695382,2 Years and 6 Months,NM,48.53938439,20.89315817,High_spent_Medium_value_payments,367.9278741,0,-0.4192,-1.6285,0.3563,-0.7742,0.8725 -0xf1bd,CUS_0x44fa,August,28,186-24-4468,Doctor,34175.26,,4,5,11,2,"Auto Loan, and Credit-Builder Loan",,14,4.5,4,Standard,654,31.38084221,23 Years and 5 Months,Yes,37.63755167,74.96517298,Low_spent_Medium_value_payments,443.5911087,0,0.3618,-0.4706,-0.3462,-0.2621,0.0697 -0xf1c9,CUS_0xadcf,August,43,024-47-8084,Accountant,29227.64,,8,6,18.06745738,7,"Home Equity Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",,31.32496499,,15,Bad,4511.465336,38.65889007,2 Years and 8 Months,Yes,114.1907588,,Low_spent_Small_value_payments,260.5707395,0,1.7515,-1.8036,-0.2345,-0.1657,0.1376 -0xf1d5,CUS_0x4f26,August,45,676-59-1699,Media_Manager,72200.76,5720.73,7,6,12,2,"Not Specified, and Auto Loan",,20,7.61,4,Standard,843.12,27.35102798,33 Years and 4 Months,NM,65.7791767,67.75414698,High_spent_Medium_value_payments,688.5396763,0,2.0346,0.2626,-0.631,0.9999,-1.0316 -0xf1e1,CUS_0x61fd,August,33,172-34-6874,Entrepreneur,7622.665,,8,6,25.06745738,5,"Credit-Builder Loan, Payday Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",34.23276425,23,6.17,9,Bad,2363.890954,28.42226173,14 Years and 4 Months,Yes,31.66156842,57.24755844,High_spent_Small_value_payments,229.1927935,0,-0.0053,-0.7816,1.0965,1.0785,-1.1187 -0xf1ed,CUS_0x7b32,August,24,461-94-1279,Developer,56455.35,4511.6125,10,9,21.95700519,9,"Credit-Builder Loan, Personal Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Student Loan, Mortgage Loan, and Auto Loan",36.09481073,24,22.15,12,Bad,4692.220954,37.46318891,6 Years and 5 Months,Yes,1739.090677,129.327118,!@9#%8,111.6930855,0,2.3975,-0.4986,0.6383,-0.2456,0.6062 -0xf1f9,CUS_0xc18e,August,45,355-28-4498,Musician,172205.96,14293.49667,2,2,6.288361749,2,"Personal Loan, and Home Equity Loan",,4,6.62,4,Good,1062.166706,36.8386054,25 Years and 6 Months,NM,175.6037638,866.048348,High_spent_Medium_value_payments,1117.127916,0,0.5789,-1.4578,-2.5985,0.1711,-1.2474 -0xf205,CUS_0x922e,August,41,044-84-7684,Scientist,10322.13,1056.233012,5,4,10,100,"Not Specified, and Payday Loan",9.481398139,8,18.48,7,Standard,1964.689518,33.55655557,6 Years and 6 Months,Yes,67987,11521.60584,!@9#%8,315.8577352,0,-1.1376,0.54,-0.3952,-0.4249,-1.0753 -0xf211,CUS_0x2bed,August,25,630-87-7057,Accountant,104177.61,,3,6,0.288361749,2,"Auto Loan, and Payday Loan",0,1.140910416,4.22,3,Good,633.372721,41.51461507,25 Years and 0 Months,No,141.6961458,531.9967057,High_spent_Medium_value_payments,863.3913596,0,0.2814,0.6851,1.7606,-0.5987,0.3396 -0xf21d,CUS_0x9b5a,August,29,178-77-0439,Media_Manager,22017.78,1576.815,3,7,11,2,"Credit-Builder Loan, and Payday Loan",20.71353312,18,14.49,9,Standard,1175.88,33.23745498,26 Years and 2 Months,Yes,32.85181287,89.68474176,Low_spent_Medium_value_payments,315.1449454,0,-0.464,-1.0639,0.4058,0.4134,1.7437 -0xf229,CUS_0xf74,August,19,355-58-6584,Doctor,17111.35,,10,6,3869.067457,7,"Personal Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",44.83325962,25,12.92,2446,Bad,1986.890954,26.74798297,19 Years and 0 Months,Yes,95.73400081,55.60022588,Low_spent_Medium_value_payments,237.9403464,0,0.0509,-0.1837,-0.1122,0.5251,-0.2085 -0xf235,CUS_0x5859,August,38,278-10-7087,Accountant,29943.55,,4,5,6,3,"Debt Consolidation Loan, Not Specified, and Personal Loan",1.256482589,5,11.1,3,Good,348.19,29.87908137,26 Years and 5 Months,No,62.41637498,10000,Low_spent_Large_value_payments,339.4115911,0,0.6112,-0.6093,0.2629,0.2352,-0.8363 -0xf241,CUS_0x6399,August,28,087-38-7228,Lawyer,77603.48,6214.956667,10,6,26,7,"Home Equity Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",27.74030714,14,21.26,13,_,3016.53,32.0489922,7 Years and 2 Months,Yes,317.8528394,53.13736209,High_spent_Large_value_payments,490.5054652,0,0.7262,-0.3995,0.0769,2.0332,0.3446 -0xf24d,CUS_0x8959,August,42,287-63-0588,Scientist,72618.32,6295.526667,5,6,14,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",18.44535102,17,17.02,1,Standard,805.95,29.7677873,27 Years and 11 Months,No,127.5007289,208.3576016,Low_spent_Large_value_payments,563.6943363,0,-0.3006,-2.0039,-1.2634,-0.5308,-0.5422 -0xf259,CUS_0x2618,August,48,#F%$D@*&8,Scientist,11458.24,,4,7,13,3,"Payday Loan, Mortgage Loan, and Personal Loan",,14,3.01,8,_,1227.03,34.57890371,33 Years and 3 Months,No,20.89483925,25.40579332,High_spent_Small_value_payments,332.2847008,0,-0.1482,-0.3528,-0.0402,0.5657,1.858 -0xf265,CUS_0x73a5,August,25,759-19-6701,Developer,50291.22,,7,9,22,4,"Not Specified, Not Specified, Auto Loan, and Payday Loan",38.20017553,18.07041348,18.06,9,Bad,1911.868644,37.17837204,,Yes,139.6537516,120.4678335,High_spent_Small_value_payments,399.8719149,0,1.1997,-1.4722,0.1145,1.9426,0.5837 -0xf271,CUS_0x64e7,August,38,556-17-3791,Accountant,141733.08,11570.09,5,5,20,6,"Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, Not Specified, and Auto Loan",,20,10.15,8,_,291.88,37.01407462,20 Years and 0 Months,Yes,495.8394914,182.3476479,High_spent_Medium_value_payments,728.8218607,0,-0.4442,-2.2518,1.3845,0.4497,0.9683 -0xf27d,CUS_0x6556,August,39,#F%$D@*&8,Developer,161063.8,,3,3,6.288361749,2,"Student Loan, Home Equity Loan, and Payday Loan",,11,9.77,3,Good,1193.64,46.17180795,20 Years and 5 Months,No,229.2862559,569.1555332,High_spent_Large_value_payments,1230.494005,0,-0.5874,-0.4296,-0.3169,-1.134,0.0834 -0xf289,CUS_0xace0,August,37,#F%$D@*&8,Writer,10275.925,,7,3,20,2,"Payday Loan, and Not Specified",,,15.32,7,Standard,159.73,40.6483979,27 Years and 11 Months,Yes,9.869009467,22.87751251,Low_spent_Medium_value_payments,317.4861864,0,-1.2332,-0.339,0.8059,-0.3937,-1.024 -0xf295,CUS_0x5197,August,49,036-41-0068,Lawyer,10328.58,,6,4,12.06745738,1,Not Specified,,18,8.49,1,Standard,1360.530954,27.31897744,,Yes,4.462837467,,Low_spent_Small_value_payments,257.3256644,0,0.376,-1.3975,-1.1337,0.0174,0.3496 -0xf2a1,CUS_0x4eef,August,47,328-98-9359,Doctor,33022.95,2975.9125,3,5,3,0,,4.073224518,4.551876497,10.27,1,Good,367.3415026,39.16179104,19 Years and 8 Months,No,0,186.5225722,Low_spent_Large_value_payments,381.0686778,0,-0.0477,-0.1314,-0.7293,1.202,1.8409 -0xf2ad,CUS_0xb995,August,22,578-26-6547,_______,52566.39,,8,9,23,5,"Not Specified, Payday Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",,23.32003295,25.02,1294,Bad,5706.629174,32.34893799,,NM,139.8521255,35.6468028,High_spent_Large_value_payments,526.2543216,0,-0.8718,-0.6187,-0.1406,0.0012,-0.2085 -0xf2b9,CUS_0xa4ba,August,39,063-71-0993,Writer,34126.19,,5,7,10,3,"Auto Loan, Personal Loan, and Auto Loan",13.90245531,13,9.51,9,Standard,963.43,28.12691846,12 Years and 8 Months,NM,50.64709903,222.0569187,Low_spent_Small_value_payments,279.280899,0,2.5749,-1.0322,0.0972,-1.867,1.944 -0xf2c5,CUS_0x9a6b,August,38,422-30-7649,Journalist,15954.72,,8,6,34.06745738,6,"Auto Loan, Student Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Personal Loan",19.07001476,8,,13,Standard,2382.630954,31.07326967,12 Years and 6 Months,Yes,45.36846286,66.80938404,Low_spent_Large_value_payments,270.6578652,0,0.1969,-0.4443,1.1269,2.4337,0.0429 -0xf2d1,CUS_0x78d3,August,41,790-07-2648,Journalist,17773.775,1388.147917,3,1,2,2,"Home Equity Loan, and Debt Consolidation Loan",0,2,4.57,4,Good,638.7054338,31.7603322,26 Years and 6 Months,No,28.23975347,111.6591182,Low_spent_Small_value_payments,305.3850409,0,0.2189,-0.9424,-0.8093,0.6266,1.7203 -0xf2dd,CUS_0xba11,August,43,925-91-1270,Musician,18942.005,,1,3,9.288361749,0,Credit-Builder Loan,13.18478018,12,1.88,2,Good,156.54,30.99078447,17 Years and 10 Months,No,14.04081043,556.65917,Low_spent_Medium_value_payments,264.1875222,0,2.7613,0.0975,-0.752,0.3908,0.1281 -0xf2e9,CUS_0x81b9,August,49,398-46-1818,Engineer,19646.255,1831.187917,3,6,10,2,"Mortgage Loan, and Debt Consolidation Loan",,1.15139526,6.7,1,Good,667.7819906,38.38042205,29 Years and 6 Months,No,30.11897656,,Low_spent_Small_value_payments,328.5724501,0,1.5364,0.7957,-0.0259,0.5868,-0.2112 -0xf2f5,CUS_0x17ef,August,21,339-70-9719,Journalist,83947.72,7167.643333,5,4,9,3,"Not Specified, Student Loan, and Payday Loan",,1,4.19,0,_,954.9,39.79534936,27 Years and 3 Months,No,176.4837183,237.8918892,Low_spent_Medium_value_payments,582.3887259,0,-1.1297,0.1345,0.083,0.1918,0.8902 -0xf301,CUS_0x9b8b,August,41,963-35-0135,Journalist,8940.14,,3,4,8,5,"Payday Loan, Not Specified, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",16.62644779,16,8.12,5,Standard,1159.946158,28.93186193,7 Years and 11 Months,Yes,35.22170251,19.85658874,High_spent_Large_value_payments,280.1858124,0,0.8233,0.6861,0.3779,-0.7189,0.2694 -0xf30d,CUS_0x9f5,August,34,526-02-8810,Media_Manager,55245.88,,3,3,12,2,"Mortgage Loan, and Payday Loan",26.75109228,21,11.32,10,Standard,119.7570356,23.02947083,10 Years and 8 Months,Yes,54.55618079,,High_spent_Medium_value_payments,480.5938535,0,0.0903,-0.717,1.4666,-2.2103,-0.7448 -0xf319,CUS_0x6664,August,33,395-24-4865,_______,38334.61,2966.550833,3,4,12,2,"Mortgage Loan, and Not Specified",0.289475989,2,4.35,3,_,1143.920344,33.56180864,20 Years and 11 Months,NM,41.07297101,193.4772446,Low_spent_Large_value_payments,361.3576584,0,-0.4712,-0.7079,0.2794,-1.3069,0.6032 -0xf325,CUS_0x9e81,August,18,215-20-8854,Teacher,17774.32,,0,4,6,3,"Student Loan, Credit-Builder Loan, and Credit-Builder Loan",1.437999193,2,1.19,1,Good,1026.7,26.04141763,25 Years and 8 Months,No,40.29685738,35.78882834,Low_spent_Medium_value_payments,324.4336476,0,0.0012,1.4894,-0.4441,-0.9699,1.2671 -0xf331,CUS_0x9a1d,August,37,763-78-0517,Journalist,7493.29,,5,5,5,6,"Not Specified, Payday Loan, Payday Loan, Payday Loan, Personal Loan, and Mortgage Loan",19.54078843,17,12.67,12,Standard,2179.63,30.51123869,13 Years and 3 Months,Yes,25.89105236,,Low_spent_Small_value_payments,243.5947257,0,-0.2172,-1.2922,1.3818,-1.4837,-0.2769 -0xf33d,CUS_0x5146,August,36,324-50-3753,Entrepreneur,63195.21,5318.2675,4,7,6,0,,,14,7.6,4,_,1113.92,34.82843523,32 Years and 4 Months,No,0,440.0241352,Low_spent_Small_value_payments,381.8026148,0,-0.4778,-0.4873,-0.1976,-0.7175,-0.1339 -0xf349,CUS_0x9a86,August,21,279-40-2641,Manager,29827.36,,4,5,17,2,"Student Loan, and Credit-Builder Loan",21.46133039,17.01298202,10.56,6,Standard,2142.030969,24.50726715,6 Years and 9 Months,Yes,31.49667415,152.9007634,!@9#%8,347.8638958,0,0.9089,1.7689,-1.4786,-0.4525,0.032 -0xf355,CUS_0x41b8,August,18,393-98-4443,_______,8597.69,,7,6,33.06745738,7,"Debt Consolidation Loan, Payday Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",36.05143023,22,10.59,9,Bad,1919.040954,27.88594089,7 Years and 3 Months,Yes,45.9638188,60.81793297,Low_spent_Medium_value_payments,216.0453769,0,0.8542,-0.972,1.0352,0.7808,-0.8163 -0xf361,CUS_0x54d0,August,24,754-96-9860,Musician,36641.86,3008.488333,6,6,15,2,"Mortgage Loan, and Student Loan",24.2883202,14,,7,_,1467.95,35.12167465,29 Years and 11 Months,Yes,37.41635946,,High_spent_Large_value_payments,464.6738748,0,1.4385,0.3144,-1.0207,0.4651,0.6483 -0xf36d,CUS_0x1b66,August,34,444-26-5685,Accountant,50538.58,4054.548333,6,7,9,4,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Payday Loan",,21,9.09,6,Standard,1205.13,23.56096,9 Years and 0 Months,NM,164.8074702,256.2464555,Low_spent_Large_value_payments,254.4009077,0,-0.5748,-0.9986,-0.2534,-0.4087,-0.0207 -0xf379,CUS_0x1bfd,August,40,882-93-1200,Writer,19186.4,,6,10,25.06745738,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,17.71305807,11.98,11,Standard,2151.532121,31.9470686,8 Years and 10 Months,Yes,47.83430931,92.97065272,Low_spent_Large_value_payments,267.0614167,0,-0.5278,0.4351,0.7816,0.4296,-0.7017 -0xf385,CUS_0xbfbc,August,35,429-04-9751,Architect,30371.74,,3,4,2.288361749,4,"Credit-Builder Loan, Not Specified, Not Specified, and Not Specified",10.19764617,10,3.48,3,Good,202.55,27.30907241,28 Years and 10 Months,NM,96.88485648,538.9877805,Low_spent_Small_value_payments,328.7626573,0,-0.279,0.8043,2.0428,0.6629,3.1273 -0xf391,CUS_0x835,August,44,036-30-8679,Journalist,132986.73,,4,6,8.288361749,0,,0,2,,0,_,272.8303783,38.50016155,20 Years and 8 Months,No,0,936.9824138,High_spent_Medium_value_payments,896.8928678,0,-0.7045,-1.5858,0.9348,-0.9446,0.4162 -0xf39d,CUS_0x8771,August,51,562-85-4128,Developer,150043.56,,5,3,916.2883617,2,"Mortgage Loan, Home Equity Loan, and Mortgage Loan",,8,9.93,1560,_,704.2081263,34.19808711,20 Years and 10 Months,No,1621.144915,1275.36267,Low_spent_Medium_value_payments,472.9193926,0,0.169,0.7851,0.4153,0.6857,-0.1291 -0xf3a9,CUS_0x2a4e,August,54,897-53-0248,Doctor,61236.86,,3,2,8,1,Not Specified,0.325446743,3,3.13,6,_,1305.649399,25.17111537,26 Years and 0 Months,No,32.21650598,529.0352861,Low_spent_Small_value_payments,321.145301,0,0.1377,0.0571,-1.1784,0.1791,0.4083 -0xf3b5,CUS_0x7711,August,40,339-01-5731,Mechanic,72814.86,6035.905,2,5,3.288361749,0,,2.068804079,4,2.43,4,Good,488.6645502,33.2511538,26 Years and 6 Months,No,0,723.0493891,Low_spent_Large_value_payments,615.3847656,0,1.1581,0.6363,0.6417,0.7402,1.1542 -0xf3c1,CUS_0x9636,August,80,025-09-5519,Teacher,18058.635,,3,3,1,4,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",12.32891852,11,1.55,3,_,357.6689809,24.19045951,29 Years and 8 Months,No,13951,159.2347764,Low_spent_Medium_value_payments,254.8826852,0,0.2113,0.5757,1.4929,0.3652,-0.1869 -0xf3cd,CUS_0x7ef5,August,53,354-51-2466,Musician,41115.08,3378.256667,3,7,12,1,Payday Loan,,19,1.92,,Standard,393.39,24.54178125,25 Years and 0 Months,No,31.42012808,76.15865539,High_spent_Medium_value_payments,480.2468832,0,0.7397,0.5312,-0.014,-0.116,0.1908 -0xf3d9,CUS_0x5a6b,August,40,567-66-4662,Architect,16952875,1935.375,4,3,13.28836175,4,"Home Equity Loan, Not Specified, Mortgage Loan, Payday Loan, and Payday Loan",21.21259209,17.92097803,12.3,10,Standard,1320.860993,37.25856066,18 Years and 4 Months,Yes,56.36501611,549.7339466,Low_spent_Small_value_payments,297.3759983,0,-0.2485,1.0317,-0.6896,0.5294,1.962 -0xf3e5,CUS_0x4b18,August,44,162-64-7150,Architect,106815.54,9125.295,5,5,11,1,Auto Loan,10.46460696,8,3.55,,Standard,529.87,28.84266381,26 Years and 5 Months,No,69.42193739,369.5394636,High_spent_Medium_value_payments,723.568099,0,1.0444,-1.3928,0.2412,1.457,1.2289 -0xf3f1,CUS_0xa37,August,30,577-49-4086,Musician,8721.605,,6,7,20,2,"Auto Loan, and Debt Consolidation Loan",,15.97335448,6.48,7,Standard,2892.479548,35.78565131,11 Years and 4 Months,Yes,12.86795149,38.66643863,Low_spent_Small_value_payments,331.2456515,0,-0.0375,0.1168,-1.2036,0.8262,-0.3333 -0xf3fd,CUS_0x8006,August,18,947-14-5076,Musician,13699.52,,6,7,7,4,"Payday Loan, Student Loan, Auto Loan, and Payday Loan",21.28277972,17,13.76,4,Standard,608.16,28.13462941,27 Years and 11 Months,Yes,32.11802132,32.379759,High_spent_Large_value_payments,308.2648863,0,0.1057,-1.5489,0.4236,0.9745,1.3679 -0xf409,CUS_0x5845,August,36,187-79-6590,Teacher,57295.88,4520.656667,4,7,5,0,,,11.60374229,9.19,5,Good,1215.00551,37.74248854,33 Years and 2 Months,NM,0,126.0375155,High_spent_Small_value_payments,586.0281512,0,0.376,0.4787,-0.2924,-1.1624,-1.661 -0xf415,CUS_0x5b62,August,27,386-34-3584,Journalist,31454.22,2618.185,8,8,28.88954781,6,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",,22,18.63,8,Bad,1996.6,38.77083427,11 Years and 4 Months,Yes,48427.48344,47.51731443,High_spent_Large_value_payments,295.1059453,0,-0.8716,-1.6758,2.2407,-1.4877,0.1406 -0xf421,CUS_0xc3a6,August,28,660-58-0563,Developer,27647.08,,7,6,13,5,"Not Specified, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",8.967149717,8,8.37,10,_,159.63,36.26917395,5 Years and 9 Months,Yes,100.7402032,10000,High_spent_Medium_value_payments,312.3613142,0,-1.2545,-0.0804,-0.8729,0.5824,0.1226 -0xf42d,CUS_0x73ef,August,41,428-80-8157,Journalist,64259.04,5060.92,6,6,5485,2,"Debt Consolidation Loan, and Not Specified",,16,18.69,10,Standard,1443.54,38.36489091,31 Years and 5 Months,NM,79.58757945,192.8130388,High_spent_Small_value_payments,493.6913818,0,0.4154,0.1051,0.9304,-1.9037,0.9994 -0xf439,CUS_0xc1c,August,48,518-63-7829,Journalist,32123.85,,1,3,8.288361749,0,Payday Loan,,4,4.84,3,_,106.9,27.74561887,29 Years and 9 Months,No,15.00750926,585.0377057,High_spent_Small_value_payments,375.090996,0,0.4238,0.3696,0.0012,0.86,-0.3202 -0xf445,CUS_0x44c8,August,27,381-88-6356,Architect,85461.63,7210.8025,5,7,11,0,,17.50523435,14,4.94,6,_,566.74,26.00741822,20 Years and 5 Months,Yes,0,440.6704713,High_spent_Small_value_payments,540.4097787,0,0.8361,-1.0194,-0.2709,0.0956,-0.8837 -0xf451,CUS_0x7b58,August,36,505-69-4727,Doctor,172510.48,14464.87333,5,5,6,100,Auto Loan,9.160176062,8,-2.65,3,Good,738.8392525,42.70327044,16 Years and 4 Months,No,82.59172082,689.5093814,Low_spent_Large_value_payments,1027.170348,0,-0.943,1.4577,-0.6601,-0.0014,-0.211 -0xf45d,CUS_0x15b9,August,23,824-34-8358,Writer,32023.64,,7,10,20.06745738,2,"Auto Loan, and Debt Consolidation Loan",24.84964048,16,9.43,6,Standard,2741.510954,38.62368189,12 Years and 10 Months,Yes,29.98949551,62.94868182,High_spent_Medium_value_payments,385.3052014,0,0.4419,-1.0039,-0.262,-0.1315,1.3896 -0xf469,CUS_0x7c01,August,18,036-74-6711,Lawyer,93220.71,7647.3925,3,7,9,5,"Not Specified, Mortgage Loan, Not Specified, Credit-Builder Loan, and Not Specified",,20,9.25,8,Standard,174.3228136,34.90607818,13 Years and 6 Months,Yes,238.2872692,350.454646,High_spent_Medium_value_payments,463.3549655,0,0.8567,1.5178,0.6743,0.3498,1.379 -0xf475,CUS_0xb8eb,August,80,818-38-8989,Developer,45243.21,,7,7,21,3,"Not Specified, Mortgage Loan, and Student Loan",58.49675962,31.3149264,0.9,6,Bad,2689.863128,31.68470014,13 Years and 8 Months,Yes,89.29681596,,High_spent_Medium_value_payments,421.7352523,0,-0.3725,-1.3098,0.3248,-0.9185,-0.0706 -0xf481,CUS_0x2e19,August,18,849-48-9283,Architect,55070.19,4747.1825,8,9,18.95700519,9,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Student Loan, Home Equity Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",,22,17.83,9,Bad,3235.670954,32.72007192,4 Years and 11 Months,Yes,1632.529817,,High_spent_Small_value_payments,246.3352241,0,0.2273,-1.269,0.8437,-0.0266,0.173 -0xf48d,CUS_0x43a2,August,35,721-56-6330,Doctor,8990.5,,10,9,33,3,"Payday Loan, Payday Loan, and Home Equity Loan",45.26074667,25.07862987,5.98,12,Bad,2884.518933,37.56851148,13 Years and 0 Months,Yes,14.74431653,72.14459638,!@9#%8,288.0319204,0,-0.6405,-0.6309,2.2798,-0.1492,0.0343 -0xf499,CUS_0xc393,August,36,514-45-2224,Developer,10466.16,,8,6,16.06745738,100,"Payday Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",29.15655975,14,15.07,10,Standard,2165.340954,33.64851381,9 Years and 5 Months,Yes,56.19108495,134.3785061,Low_spent_Small_value_payments,180.728121,0,-0.7706,-0.1478,1.6711,-0.0507,-1.7656 -0xf4a5,CUS_0x9178,August,20,#F%$D@*&8,Lawyer,14681.68,,6,7,23.06745738,6,"Auto Loan, Not Specified, Mortgage Loan, Personal Loan, Home Equity Loan, and Student Loan",,25,26.52,16,Bad,3141.530954,27.30539296,5 Years and 3 Months,Yes,54.2416451,,Low_spent_Small_value_payments,228.1729357,0,-1.5753,2.0922,0.5012,3.1561,-0.0779 -0xf4b1,CUS_0x7aae,August,80,701-33-6545,Architect,60860.1,4803.675,8,6,30,2,"Not Specified, and Mortgage Loan",,13.10361235,17.09,10,Standard,3015.454899,29.68213623,10 Years and 2 Months,Yes,94.24666239,205.3717376,Low_spent_Medium_value_payments,460.7491,0,1.5396,-0.5621,1.3253,0.1193,-1.5369 -0xf4bd,CUS_0x3f4a,August,34,613-12-9026,Engineer,39418.47,3099.8725,5,4,0.288361749,2,"Home Equity Loan, Personal Loan, and Mortgage Loan",,1,-0.44,0,Good,473.5335471,22.76419761,28 Years and 11 Months,No,69.72618323,857.2649479,Low_spent_Small_value_payments,145.4020681,0,-1.2024,0.0276,-0.4035,1.1477,0.383 -0xf4c9,CUS_0x1fbe,August,29,325-49-4807,Writer,29482.06,2395.838333,8,3,9,2,"Payday Loan, and Home Equity Loan",,22,14.09,,Standard,668.5,30.41158408,,Yes,28.81989404,41.47686283,High_spent_Medium_value_payments,419.2870765,0,0.1672,0.5793,-0.0038,0.0903,0.8386 -0xf4d5,CUS_0x8afa,August,34,053-77-1617,Entrepreneur,55516.29,4445.3575,8,10,18.88954781,8,"Credit-Builder Loan, Mortgage Loan, Payday Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",42.76814877,22,17.81,8,Bad,3871.02,31.98639941,9 Years and 5 Months,Yes,1675.142624,347.5347409,Low_spent_Small_value_payments,17.52830387,0,0.9869,2.2603,0.0742,0.708,0.0642 -0xf4e1,CUS_0x1b00,August,38,638-65-2500,Lawyer,59939.52,4721.96,3,5,16,0,,13.61529584,,12.23,4,Standard,1184.94217,30.6132493,31 Years and 10 Months,Yes,0,88.36044737,High_spent_Medium_value_payments,644.466311,0,-0.128,-2.4292,0.7041,-1.6585,0.8449 -0xf4ed,CUS_0x2c6a,August,39,580-22-5888,Journalist,99995.22,8560.935,0,3,7.288361749,0,Debt Consolidation Loan,,4.645623923,11.32,6,Good,583.5167247,33.75913391,32 Years and 3 Months,No,66.42833764,583.415049,High_spent_Medium_value_payments,876.1875744,0,0.193,1.0021,-0.8428,0.8773,0.132 -0xf4f9,CUS_0x38f1,August,25,908-12-2506,Scientist,16822.58,1584.881667,9,6,16.06745738,3,"Mortgage Loan, Auto Loan, and Debt Consolidation Loan",,29.90540803,12.03,12,Bad,3123.94787,26.55380749,,Yes,25.56347652,61.1067013,Low_spent_Small_value_payments,335.0977009,0,-1.6662,0.3665,0.1004,-0.7277,-0.495 -0xf505,CUS_0x7670,August,30,559-25-3382,Architect,11128.91,,4,7,8.067457376,4,"Debt Consolidation Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",27.46096065,18,10.64,2,_,1425.390954,40.63930874,24 Years and 0 Months,No,33.95560304,,Low_spent_Medium_value_payments,228.4567262,0,2.0752,-0.4356,1.3759,-1.2879,-0.0533 -0xf511,CUS_0x6575,August,33,368-18-7048,Entrepreneur,128754.04,10568.50333,3,4,6,4,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Auto Loan",10.39469284,9,4.5,9,Good,20.88,34.65427907,28 Years and 10 Months,No,342.0384504,281.5183221,High_spent_Medium_value_payments,683.2935609,0,0.2652,-0.8221,-0.3864,-0.4686,-0.9752 -0xf51d,CUS_0x68f6,August,32,176-81-8343,Media_Manager,32187.36,,4,3,8.288361749,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",18.67341025,16.54664462,1.4,7,Good,400.9008729,28.00685168,27 Years and 9 Months,No,106.8219395,537.76036,High_spent_Small_value_payments,277.6831615,0,0.5414,0.0671,-1.2901,1.1282,0.8644 -0xf529,CUS_0xbe26,August,29,956-82-3205,Mechanic,10046.24,926.1866667,6,6,16,5,"Debt Consolidation Loan, Student Loan, Not Specified, Home Equity Loan, and Payday Loan",27.4152391,19.07111,0.65,9,_,2715.2734,34.2706622,15 Years and 9 Months,Yes,37.81532035,61.82274065,Low_spent_Small_value_payments,282.9806057,0,-0.2682,-0.5369,2.0062,1.3131,-0.0883 -0xf535,CUS_0xc2ff,August,28,929-86-3226,Architect,33235.35,,3,5,19,0,,20.70538423,14,4.86,4,_,212.69,37.39768319,18 Years and 11 Months,Yes,0,57.0994081,!@9#%8,473.9618419,0,-1.0036,-0.2838,-2.4737,0.2289,-0.4524 -0xf541,CUS_0xbae3,August,25,741-46-5842,Manager,13268.945,,5,3,17,1,Mortgage Loan,,13,5.88,4,Standard,469.9821541,38.71796159,29 Years and 10 Months,Yes,9.576857834,,Low_spent_Small_value_payments,284.3578193,0,-0.1201,-1.0992,1.3498,-0.1409,-0.7478 -0xf54d,CUS_0x2879,August,42,461-85-2828,Engineer,8796.905,545.0754167,10,10,19.88954781,8,"Student Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Personal Loan",34.5194376,,24.37,12,_,5237.608773,39.26222062,3 Years and 4 Months,Yes,1372.974172,34.2287634,Low_spent_Small_value_payments,242.9745247,0,-1.1288,-1.1552,-0.5673,0.1727,1.0923 -0xf559,CUS_0xbe9,August,51,307-02-5111,_______,10648580,1054.075833,5,4,5,1,Not Specified,,8.021184894,0.75,4,_,220.5815966,35.29545881,31 Years and 2 Months,No,10.4218038,108.274568,Low_spent_Medium_value_payments,266.7112116,0,0.7684,-0.6822,-0.4809,-0.2079,-0.6809 -0xf565,CUS_0x2258,August,54,218-85-8418,Developer,29822.12,,4,4,7,4,"Payday Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",13.91517387,9,4.9,4,_,21.07,23.34204908,28 Years and 3 Months,No,77.97289803,56.01506817,Low_spent_Large_value_payments,358.3297005,0,0.2208,-1.2455,0.2106,0.3271,-1.8725 -0xf571,CUS_0x795,August,25,514-27-6028,Media_Manager,14517.44,,10,8,30.88954781,6,"Not Specified, Home Equity Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Personal Loan",49.7277511,25.38864322,4.73,6,Bad,1540.09833,23.99456913,16 Years and 10 Months,Yes,1363.621534,,Low_spent_Small_value_payments,248.1682317,0,-0.1765,-2.9995,1.2076,0.1132,-1.603 -0xf57d,CUS_0xa27d,August,23,160-93-9816,Engineer,20275.97,,9,9,16,2,"Auto Loan, and Mortgage Loan",,23.83545925,15.32,13,Standard,2019.650533,33.24592215,19 Years and 9 Months,Yes,26.11313897,86.91612594,Low_spent_Small_value_payments,339.3371518,0,0.2092,1.8136,-0.2205,0.4212,1.99 -0xf589,CUS_0xbb7,August,19,780-64-0604,Journalist,20067.05,1653.254167,10,5,34,6,"Payday Loan, Personal Loan, Student Loan, Not Specified, Credit-Builder Loan, and Auto Loan",32.9024068,24,17.94,16,Bad,4097.1,29.10206873,1 Years and 3 Months,Yes,62.46075236,129.7929474,Low_spent_Small_value_payments,263.0717169,0,0.6104,-0.5915,0.7613,0.0506,-0.0916 -0xf595,CUS_0x32f5,August,41,149-20-2571,Media_Manager,48297.48,,8,3,10,0,,,16,11.77,2,Standard,1323.54,39.26781238,33 Years and 2 Months,No,0,66.38390228,!@9#%8,567.9950977,0,-0.7728,-0.6082,2.0139,-0.4578,0.5546 -0xf5a1,CUS_0xae93,August,19,319-77-2947,Journalist,19357.89,,8,10,16.95700519,6,"Personal Loan, Not Specified, Mortgage Loan, Payday Loan, Student Loan, and Credit-Builder Loan",43.08286999,26.33315074,21.46,9,Bad,4844.312454,36.61358347,11 Years and 2 Months,Yes,1414.206959,,Low_spent_Small_value_payments,201.6482836,0,-0.8818,-0.663,-0.6865,0.7092,1.2339 -0xf5ad,CUS_0x6a82,August,27,468-95-0630,Mechanic,21498.365,1628.530417,3,3,8,4,"Student Loan, Payday Loan, Payday Loan, and Home Equity Loan",5.678699428,3.533296551,6.46,2,_,531.6198916,35.75888921,22 Years and 10 Months,NM,49.80052403,60.77908389,High_spent_Medium_value_payments,302.2734338,0,-1.8543,0.2369,-1.6116,1.3509,-0.6374 -0xf5b9,CUS_0x18f5,August,54,169-46-3515,Accountant,41801.68,,4,3,18,3,"Not Specified, Debt Consolidation Loan, and Not Specified",,9,5.11,1,Standard,140.6,29.74924091,19 Years and 4 Months,Yes,71.7170531,360.485265,Low_spent_Small_value_payments,185.8450152,0,-1.0721,-0.2416,0.5614,1.9651,1.0297 -0xf5c5,CUS_0xc134,August,38,494-80-1634,Accountant,86529.48,7463.79,7,5,18.28836175,2,"Mortgage Loan, and Credit-Builder Loan",10.44875425,12,7.22,1,Standard,1102.41,34.29542424,19 Years and 9 Months,No,86.59765165,872.4264438,Low_spent_Small_value_payments,497.2923655,0,-0.0679,-0.8082,-1.0661,0.0145,-0.191 -0xf5d1,CUS_0x3feb,August,29,872-56-1047,Manager,14445.76,,10,440,2993.889548,9,"Not Specified, Mortgage Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Payday Loan, Home Equity Loan, and Student Loan",33.76035737,24.31024274,16.46,14,Bad,4628.158495,32.02674878,3 Years and 0 Months,Yes,1417.350312,116.9468633,Low_spent_Small_value_payments,165.4540768,0,-0.0326,-0.7469,-0.0916,-0.9161,-1.2771 -0xf5dd,CUS_0x864e,August,33,345-95-5018,Media_Manager,28806.44,,4,3,6,5,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Payday Loan",,19,12.26,2069,Standard,332.57,31.63825559,13 Years and 3 Months,Yes,112.6350485,61.67655286,High_spent_Small_value_payments,321.8420653,0,0.6008,1.599,0.6513,0.7602,-1.093 -0xf5e9,CUS_0xa2ce,August,23,144-81-4947,Accountant,79626.93,6564.5775,4,3,18,3,"Not Specified, Student Loan, and Home Equity Loan",23.57013111,18,13.41,9,_,584.53,35.04530144,,Yes,150.6526992,510.9455303,!@9#%8,264.8595205,0,0.327,0.1326,1.2575,1.2202,-0.1418 -0xf5f5,CUS_0xb9e6,August,23,860-04-7636,Journalist,9092.87,,6,6,16,5,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Not Specified",,17,15.8,12,Standard,1968.857509,39.60371141,8 Years and 3 Months,Yes,30.73349689,28.64192569,Low_spent_Medium_value_payments,271.1382033,0,0.1974,-2.088,1.5741,-0.7982,0.2403 -0xf601,CUS_0x7b5a,August,23,137-81-2602,Journalist,78133.6,6636.133333,5,7,17,100,"Debt Consolidation Loan, Payday Loan, Auto Loan, and Personal Loan",,8,12.88,6,Standard,1055.06,41.09849801,14 Years and 9 Months,Yes,172.4891123,83.95356917,High_spent_Large_value_payments,647.1706519,0,-1.2699,1.3234,-1.9297,0.912,-0.2913 -0xf60d,CUS_0x643c,August,39,629-29-5016,Teacher,10426.61,,5,4,6.067457376,1,Auto Loan,90,3845,11.35,6,Standard,811.6578793,29.43972385,31 Years and 8 Months,Yes,49593,53.2376435,High_spent_Small_value_payments,264.7879945,0,-0.3903,0.6864,0.5054,-1.515,0.0268 -0xf619,CUS_0x697d,August,21,096-94-6781,Writer,56971.5,4717.059451,7,7,17,3,"Not Specified, Debt Consolidation Loan, and Auto Loan",15.93952524,12,8.53,11,Standard,142.2622936,25.8970326,24 Years and 9 Months,Yes,264.059658,325.7471068,Low_spent_Medium_value_payments,353.995923,0,-0.8726,0.9967,0.0104,1.2301,0.8402 -0xf625,CUS_0x7e94,August,32,446-63-0451,Engineer,46162.62,3548.885,10,5,16,2,"Personal Loan, and Debt Consolidation Loan",,19,6.45,7,Bad,1788.63,37.63822163,16 Years and 0 Months,Yes,65.95681941,128.1718173,High_spent_Medium_value_payments,410.7598633,0,1.4533,-0.4224,-0.5352,-0.7529,1.1006 -0xf631,CUS_0x9525,August,40,#F%$D@*&8,Writer,21457.185,,1,5,9,1,Debt Consolidation Loan,,3.600073276,5.74,2200,Good,827.1610266,32.21852976,,No,8.970576329,147.455812,Low_spent_Large_value_payments,298.1834867,0,0.0859,0.3054,0.6187,-0.2792,-0.6865 -0xf63d,CUS_0x893e,August,42,879-80-0822,Media_Manager,20997.075,1895.75625,0,2,8,0,,15.14203183,,0.7,5,Good,654.8057732,36.43885164,26 Years and 9 Months,No,0,,High_spent_Medium_value_payments,382.5638717,0,-0.96,-0.5449,-0.4812,1.2437,-1.0298 -0xf649,CUS_0xa766,August,23,476-50-2025,Engineer,36580.66,2926.388333,8,5,15,0,,12.63294013,11,4.21,3,Standard,716.33,38.14041724,17 Years and 6 Months,NM,0,147.4934988,Low_spent_Large_value_payments,415.1453345,0,0.4532,0.705,3.055,-1.0821,-1.3673 -0xf655,CUS_0x64aa,August,21,819-41-4042,Journalist,15961.545,,5,2,10.28836175,2,"Credit-Builder Loan, and Not Specified",2.466590304,6,2.88,0,Good,23.47303233,33.35720663,20 Years and 8 Months,NM,21.24850834,617.5434974,Low_spent_Small_value_payments,225.7207248,0,-1.2156,1.5067,2.3903,-0.3958,-0.3301 -0xf661,CUS_0xb4b7,August,31,252-13-8738,Journalist,39538.62,3540.885,10,5,23,3,"Credit-Builder Loan, Not Specified, and Student Loan",24.53693874,13.02598667,14.71,8,_,2007.979359,30.33917098,18 Years and 6 Months,Yes,54.20136422,148.6092836,High_spent_Medium_value_payments,401.2778522,0,-0.2617,-0.142,-1.1229,0.853,-0.5035 -0xf66d,CUS_0xad02,August,37,532-10-0243,Media_Manager,31244.71,2443.725833,3,4,8,0,,,11,2.63,0,Good,1066.16849,32.28136699,16 Years and 9 Months,No,0,39.40054895,High_spent_Large_value_payments,450.8568072,0,1.6095,-0.5703,-1.7438,0.2648,1.6991 -0xf679,CUS_0x3710,August,41,981-14-0079,Architect,28012.42,,5,7,14,3,"Not Specified, Payday Loan, and Payday Loan",21.51762739,15,3.93,8,Standard,1346.44,26.4992504,24 Years and 8 Months,Yes,68.83965451,86.5817067,Low_spent_Large_value_payments,371.0154721,0,-0.4573,-0.7372,-1.1892,1.5315,0.0251 -0xf685,CUS_0x6fca,August,35,#F%$D@*&8,Lawyer,27905.8,,3,5,13,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",13.25090422,12,7.77,2,Standard,775.81,34.81141642,17 Years and 5 Months,Yes,74.73459778,135.7602123,Low_spent_Large_value_payments,308.6535233,0,1.0783,1.4719,0.5504,1.2595,-0.9004 -0xf691,CUS_0x2f91,August,21,#F%$D@*&8,Developer,14719.33,1289.070193,4,5,9,7,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",26.18368406,21.65232073,10.31,626,_,2742.791921,35.29443105,15 Years and 10 Months,Yes,148.1081923,,Low_spent_Small_value_payments,208.433513,0,-0.3311,0.5664,-0.4513,-0.8067,-0.0544 -0xf69d,CUS_0x9e8f,August,23,879-49-6052,Lawyer,28769.52,,4,7,2,0,,18.60478038,14,9.39,4,Good,367.3776971,32.82642565,24 Years and 4 Months,No,0,168.9801152,High_spent_Small_value_payments,368.7494521,0,-0.3611,1.6236,1.2195,-1.4714,-2.1845 -0xf6a9,CUS_0x2abb,August,32,285-74-9089,Media_Manager,68898.56,5549.546667,9,7,30,9,"Credit-Builder Loan, Home Equity Loan, Not Specified, Auto Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Payday Loan",,12,22.8,8,Bad,3234.47,26.51008845,1 Years and 0 Months,Yes,498.0651868,,High_spent_Medium_value_payments,230.3269739,0,-1.6618,0.9062,-1.1671,-0.3151,-0.7176 -0xf6b5,CUS_0xde1,August,24,719-61-2924,Entrepreneur,21453.93,1600.8275,6,4,9,0,,21.69035466,14,10.96,1,Standard,162.76,30.82307303,33 Years and 0 Months,No,0,53.80543535,Low_spent_Large_value_payments,376.2773146,0,-0.6899,0.0405,-1.2638,-0.0585,-1.7799 -0xf6c1,CUS_0x94e1,August,23,370-39-7588,Scientist,33531.19,,7,3,10,2,"Personal Loan, and Home Equity Loan",19.04165148,17,2.75,4,Good,720.3966825,34.26469816,28 Years and 3 Months,No,35.33500711,,High_spent_Medium_value_payments,404.1806296,0,1.5297,0.7482,-1.3016,0.1871,-1.2996 -0xf6cd,CUS_0xbf07,August,44,859-46-5880,Media_Manager,17191.27,,9,7,27.06745738,9,"Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Auto Loan, Not Specified, Personal Loan, Home Equity Loan, and Home Equity Loan",,19,5.26,10,Bad,4646.950954,39.25994814,9 Years and 6 Months,Yes,94.57430456,,High_spent_Small_value_payments,230.2469086,0,1.1129,0.3337,0.302,1.3771,-0.0237 -0xf6d9,CUS_0x5b7,August,44,135-89-9498,Scientist,20721.78,,9,8,27,5,"Home Equity Loan, Personal Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",40.18419429,24.83978868,15.33,8,Bad,5225.916498,32.47984314,13 Years and 9 Months,Yes,75.36737085,161.785135,Low_spent_Medium_value_payments,202.4289941,0,0.8726,1.1816,1.0128,0.1704,0.2222 -0xf6e5,CUS_0x4d0f,August,30,542-51-9266,Entrepreneur,14602.16,1222.846667,10,8,33,7,"Payday Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",36.63887232,21,18.02,8,_,4205.7,24.66908738,3 Years and 8 Months,Yes,80.65111898,,Low_spent_Medium_value_payments,225.0643712,0,1.8821,1.9956,1.8222,-0.4558,-1.42 -0xf6f1,CUS_0x5c75,August,34,045-05-9944,Doctor,61869.04,,3,680,16,1,Debt Consolidation Loan,14.37611035,11,7.57,1825,Standard,1065.89,24.08796539,33 Years and 0 Months,No,50.85183516,141.3588481,High_spent_Medium_value_payments,567.6646501,0,-0.0222,-0.8566,-0.2288,1.6593,-0.8178 -0xf6fd,CUS_0x7a7f,August,46,555-12-0749,Engineer,35707.45,3124.620833,8,4,5,3,"Mortgage Loan, Payday Loan, and Auto Loan",14.29479448,,-2.14,8,Good,835.6484096,31.69412781,19 Years and 6 Months,No,75.50815554,73.29676329,High_spent_Small_value_payments,431.2081649,0,0.988,-1.6047,-0.6903,0.6743,0.5501 -0xf709,CUS_0x1881,August,36,580-26-8686,Entrepreneur,39755.36,3188.946667,10,10,27.88954781,9,"Mortgage Loan, Not Specified, Auto Loan, Mortgage Loan, Personal Loan, Not Specified, Student Loan, Not Specified, and Debt Consolidation Loan",51.48262784,28.90440473,4.05,13,Bad,1935.901537,25.42839797,9 Years and 8 Months,Yes,1477.711656,325.1063186,Low_spent_Medium_value_payments,101.7466112,0,1.1507,1.2854,-0.487,0.24,-0.3781 -0xf715,CUS_0x92c6,August,18,010-56-2501,Mechanic,29388.66,2353.055,6,5,19.06745738,9,"Personal Loan, Student Loan, Student Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Not Specified, Student Loan, and Not Specified",,15,17.16,8,Bad,4001.090954,40.03346256,1 Years and 4 Months,Yes,139.9889874,83.09808818,Low_spent_Medium_value_payments,265.4981365,0,0.8365,-0.1467,-0.3445,-0.6455,1.1307 -0xf721,CUS_0xba06,August,46,679-48-2124,Developer,7464.64,,7,10,25,5,"Payday Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",20.93193416,15,27.98,17,Bad,3802.67,32.34021377,9 Years and 6 Months,Yes,21.84576228,13.88302836,Low_spent_Small_value_payments,293.3765427,0,1.671,0.1805,-1.142,0.4486,-0.4693 -0xf72d,CUS_0x9491,August,38,#F%$D@*&8,Scientist,31608.12,,10,8,34.88954781,6,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Student Loan, and Not Specified",38.24424239,21.4668795,28.69,11,Bad,3797.348691,34.65508139,7 Years and 0 Months,Yes,1406.574824,,High_spent_Small_value_payments,348.5625499,0,0.1204,-0.2242,-0.9031,-0.4916,0.452 -0xf739,CUS_0x13d6,August,44,502-34-9558,Engineer,94158.69,,1,4,3,4,"Credit-Builder Loan, Mortgage Loan, Student Loan, and Payday Loan",9.496102604,5.953641231,9.52,4,Good,1606.00814,30.93572141,33 Years and 3 Months,No,204.3445224,323.5919943,High_spent_Small_value_payments,506.4192333,0,0.3318,-1.6488,0.0991,-0.0642,0.86 -0xf745,CUS_0x5c07,August,32,568-80-8390,Architect,35694.33,2990.5275,8,7,19,4,"Auto Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",21.24069519,15,19.05,5,Standard,119.49,27.79894583,,Yes,64.7114171,229.4048844,Low_spent_Large_value_payments,274.9364485,0,-0.9339,-0.1894,-0.3624,-0.4411,0.856 -0xf751,CUS_0xa384,August,44,389-02-2888,Doctor,33030.03,,3,5,4,1,Debt Consolidation Loan,8.377423695,8,10.59,3,_,1193.066969,31.54090348,16 Years and 6 Months,No,22.90157865,237.94709,Low_spent_Large_value_payments,297.1210493,0,1.0565,-0.9623,0.5591,0.6807,0.0638 -0xf75d,CUS_0x65b9,August,23,532-72-1174,Engineer,28686.15,,4,563,2,0,,0,0,8.41,4,Good,707.7460918,29.22777227,19 Years and 9 Months,NM,0,174.8960413,Low_spent_Small_value_payments,375.9127755,0,1.411,-1.8429,1.9396,0.5862,-0.8709 -0xf769,CUS_0xa8c,August,25,988-02-0605,Scientist,29212.86,,5,4,6.288361749,0,Credit-Builder Loan,7.987332924,8,11.16,4,Good,33.1453008,25.08587196,19 Years and 6 Months,No,19.328972,708.6343414,Low_spent_Small_value_payments,270.2080191,0,-0.6331,-1.9855,-1.7641,-0.9553,1.7727 -0xf775,CUS_0xaf6,August,18,784-61-9362,Journalist,8684.39,987.6991667,6,5,16.06745738,5,"Auto Loan, Payday Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",15.11349702,9.753721258,17.07,8,_,3040.728139,40.43816052,7 Years and 6 Months,Yes,29.98360352,,Low_spent_Small_value_payments,260.800352,0,0.875,0.6813,0.7786,-0.1292,-0.6452 -0xf781,CUS_0x52ad,August,29,398-97-2081,Writer,19220.61,,6,7,31.06745738,100,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",44.6212952,26.79530636,2.21,10,Bad,3288.200252,23.95832722,,Yes,66.54971871,,Low_spent_Large_value_payments,239.7691103,0,-1.2113,0.5123,0.5431,1.999,0.426 -0xf78d,CUS_0x130c,August,43,187-00-5211,Engineer,9203.725,,10,5,18,7,"Student Loan, Mortgage Loan, Not Specified, Home Equity Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",,24.13427854,1.8,11,_,2671.934289,24.21894227,8 Years and 8 Months,NM,31.49706645,,Low_spent_Large_value_payments,248.9163493,0,-0.3095,-0.3362,-0.3098,0.9129,1.2391 -0xf799,CUS_0x9520,August,23,927-06-6848,Engineer,88014.39,,4,5,17,2,"Credit-Builder Loan, and Payday Loan",14.70719141,13,16.02,5,Standard,1221.97,43.36026659,15 Years and 8 Months,Yes,125.4664843,87.65994508,High_spent_Large_value_payments,744.1268206,0,0.2618,0.1787,0.6685,2.2097,-1.249 -0xf7a5,CUS_0x45df,August,22,632-93-2072,Musician,40762.39,3442.865833,4,5,1,1,Payday Loan,6.95799845,8,6.05,9,Good,1069.368742,34.13466962,25 Years and 2 Months,No,24.23683312,,High_spent_Medium_value_payments,480.7559224,0,-0.3243,2.3034,0.1539,-0.4103,-0.6522 -0xf7b1,CUS_0x8fa9,August,28,176-38-4467,Media_Manager,28381.96,2236.163333,8,825,26.95700519,7,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Student Loan, Not Specified, and Mortgage Loan",22.7602721,13.80470006,14.17,7,Standard,2528.08661,40.08319881,17 Years and 5 Months,NM,1465.31654,151.2800303,High_spent_Small_value_payments,145.9693937,0,0.1605,-0.867,-0.2305,0.3992,-0.2782 -0xf7bd,CUS_0xbd0f,August,48,209-71-4397,_______,121844.2,,6,6,16,2,"Student Loan, and Mortgage Loan",7.708559717,6,15.3,4,Standard,1265.84,26.97779984,20 Years and 10 Months,Yes,162.6681386,567.5719152,High_spent_Small_value_payments,556.3282795,0,-0.2741,0.3097,0.0333,1.7328,0.7016 -0xf7c9,CUS_0x1ad6,August,18,127-10-3342,Lawyer,133444.08,10847.34,5,3,13,7,"Payday Loan, Not Specified, Home Equity Loan, Student Loan, Home Equity Loan, Home Equity Loan, and Not Specified",,15,17.04,11,Standard,217.91,37.25856856,15 Years and 3 Months,NM,24753,845.3280407,Low_spent_Small_value_payments,,0,0.8966,-1.0629,-0.6557,0.0316,-0.1463 -0xf7d5,CUS_0x4d2a,August,18,770-44-2270,Writer,32511.02,,7,1493,7,5,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",6.739051327,5,14.67,8,_,2336.737308,24.35548392,15 Years and 6 Months,Yes,117.8684149,380.5345294,Low_spent_Small_value_payments,109.6790338,0,-0.2916,-0.3125,-0.4347,0.4684,-1.3616 -0xf7e1,CUS_0xa0b8,August,32,339-52-4612,Mechanic,15026.04,,10,5,28,6,"Payday Loan, Auto Loan, Personal Loan, Personal Loan, Student Loan, and Credit-Builder Loan",,20.59087543,8.79,8,_,4659.19099,36.80929994,12 Years and 8 Months,Yes,39.47601127,79.65258848,Low_spent_Large_value_payments,256.7884003,0,-0.0892,0.9392,0.9709,-1.4862,-0.2487 -0xf7ed,CUS_0x3208,August,30,119-34-1742,Developer,165333.72,,1,3,7.288361749,2,"Mortgage Loan, and Mortgage Loan",0,1,10.46,,_,791.399344,23.57996699,,No,189.4662099,1926.834997,Low_spent_Medium_value_payments,148.6410197,0,0.3179,0.0053,1.224,1.9008,1.253 -0xf7f9,CUS_0xba21,August,21,156-60-0442,Teacher,45491.7,3753.444587,3,7,1459,3,"Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",27.24512993,20,15.3,7,Standard,577.5195114,26.99792787,27 Years and 2 Months,Yes,381.9317546,11478.11923,Low_spent_Small_value_payments,301.6835726,0,0.9373,-0.2636,-0.4974,0.0816,-0.5751 -0xf805,CUS_0x5e96,August,45,502-14-1939,_______,20780.41,1643.700833,7,7,751,2,"Student Loan, and Student Loan",12.60756649,10.48111696,18.95,9,Standard,2414.703325,25.63582696,10 Years and 8 Months,Yes,20.13365241,,Low_spent_Small_value_payments,233.7010297,0,-1.3962,-0.4034,0.8204,-0.9742,-0.5829 -0xf811,CUS_0x909a,August,36,676-42-2158,_______,17283.9,1360.325,182,3,6,4,"Auto Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",17.6979096,16,16.41,8,Standard,759.22,28.19699523,19 Years and 0 Months,Yes,55.01570933,176.8515991,Low_spent_Small_value_payments,194.1651916,0,-1.8204,1.3445,0.72,0.8717,-0.2599 -0xf81d,CUS_0x3ae5,August,42,708-01-2723,Manager,127770.52,10430.54333,4,3,1,1,Credit-Builder Loan,12.33918495,11,7.68,6,Good,1092.213563,37.26686965,,No,92.2519242,382.7235438,High_spent_Medium_value_payments,857.4708154,0,0.7075,-0.2471,-0.1572,-0.177,-0.6457 -0xf829,CUS_0x7167,August,20,942-81-5299,Writer,9067.12,637.5933333,10,5,30,6,"Mortgage Loan, Credit-Builder Loan, Student Loan, Personal Loan, Student Loan, and Personal Loan",30.51298227,22,20.79,16,_,2563,39.04745424,3 Years and 3 Months,Yes,39.71022377,,Low_spent_Small_value_payments,237.2178917,0,-1.0666,-1.9703,-0.0282,0.568,-1.9708 -0xf835,CUS_0x784,August,25,981-82-3993,_______,12302.195,822.1829167,7,7,7,0,,25.02057359,21,5.54,1,Standard,419.95,25.53616716,20 Years and 6 Months,No,0,80.73798493,Low_spent_Medium_value_payments,281.4803067,0,0.458,-0.0772,0.7985,-0.4516,-0.2585 -0xf841,CUS_0x84c,August,30,211-24-6887,Scientist,39141.08,3134.756667,5,3,3,3,"Personal Loan, Not Specified, and Payday Loan",5.487049265,8,8.99,4,_,1226.61,30.06769087,,No,58.38249154,85.16683554,Low_spent_Large_value_payments,439.9263396,0,0.0264,-0.8721,-0.0116,-0.411,2.0753 -0xf84d,CUS_0x2b77,August,21,006-36-0111,Doctor,15167.62,,4,5,3,1,Credit-Builder Loan,13.27047616,,13.36,7,Good,761.2787579,30.59976928,,No,9.930809054,106.5029487,Low_spent_Medium_value_payments,323.631745,0,-0.0734,-1.2267,0.7481,-0.8518,-0.1823 -0xf859,CUS_0x8459,August,57,958-07-1852,Teacher,27316.86,1985.405,3,3,20,3,"Mortgage Loan, Mortgage Loan, and Mortgage Loan",,21,10.05,8,Standard,701.6813713,35.71520324,26 Years and 8 Months,Yes,56.83239035,222.4472466,Low_spent_Small_value_payments,234.7677051,0,0.682,0.7093,-0.8397,1.3806,-0.7063 -0xf865,CUS_0x1e06,August,50,318-14-7292,Mechanic,29605.9,,8,6,16,3,"Payday Loan, Home Equity Loan, and Payday Loan",12.22488051,8,,8,Standard,786.55,34.80814805,31 Years and 2 Months,Yes,53.92845732,198.1506088,Low_spent_Small_value_payments,295.8367672,0,-0.2087,-0.9022,0.0807,-0.8387,-0.2659 -0xf871,CUS_0x4dff,August,23,464-42-3681,Scientist,27131.57,,4,4,11,2,"Auto Loan, and Auto Loan",19.05727329,15,8.02,8,Standard,783.37,31.25506092,17 Years and 9 Months,NM,23.08465896,32.20387167,High_spent_Large_value_payments,412.107886,0,2.1413,-0.5333,-1.8528,-1.5512,-0.2912 -0xf87d,CUS_0x20a6,August,47,011-41-0287,Media_Manager,7879.85,,8,9,21.88954781,9,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Personal Loan",18.47832536,13,25.43,12,Bad,2681.976564,33.28373458,13 Years and 0 Months,Yes,1380.922705,32.30583601,Low_spent_Large_value_payments,252.5885052,0,1.6163,-1.405,0.3694,-0.6534,1.0533 -0xf889,CUS_0x8ddd,August,28,991-28-5753,Writer,16439.24,,8,5,6,2,"Home Equity Loan, and Credit-Builder Loan",12.739148,10,19.21,6,_,699.36,30.31647441,7 Years and 9 Months,Yes,25.14660818,,Low_spent_Small_value_payments,247.5635312,0,-0.0675,0.1203,0.288,0.6502,-0.1464 -0xf895,CUS_0x87c9,August,26,484-33-0701,Manager,17142.64,1200.553333,8,10,29.88954781,6,"Mortgage Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",19.92467858,,,13,Standard,1734.054706,32.175367,10 Years and 5 Months,Yes,1404.466055,,High_spent_Large_value_payments,244.9633313,0,0.223,0.3914,-0.8598,0.5737,-0.6508 -0xf8a1,CUS_0x148e,August,45,942-00-5565,Accountant,19911.77,,5,5,17,7,"Not Specified, Credit-Builder Loan, Auto Loan, Personal Loan, Student Loan, Home Equity Loan, and Home Equity Loan",17.49792691,15,21.01,6,Standard,1864.825577,27.76849157,20 Years and 5 Months,Yes,95.50358441,64.46266966,High_spent_Medium_value_payments,279.7210451,0,-1.702,-0.3863,-0.0971,0.3623,0.0126 -0xf8ad,CUS_0x604a,August,80,345-45-3616,Engineer,94529.82,8153.485,3,5,10,100,,90,2128,13.32,8,Standard,640.1912831,32.21196822,26 Years and 11 Months,Yes,0,1031.421444,Low_spent_Small_value_payments,215.1481145,0,0.9043,-2.1397,-0.0392,0.4944,-0.3941 -0xf8b9,CUS_0x7129,August,23,865-88-5717,Lawyer,22019.77,1790.980833,0,5,9.067457376,3,"Payday Loan, Debt Consolidation Loan, and Payday Loan",22.61169786,,8.94,4,Good,1890.769413,26.75431513,21 Years and 10 Months,NM,42.07563553,86.48880465,Low_spent_Large_value_payments,293.8133552,0,-1.3569,-0.8225,0.3472,-0.1099,1.8003 -0xf8c5,CUS_0x2959,August,40,294-46-8269,Writer,38095.16,,9,6,26.06745738,2,"Credit-Builder Loan, and Not Specified",21.4049814,14.28124203,8.62,13,Standard,3273.705581,41.32803596,8 Years and 6 Months,Yes,59.76101723,132.2765893,High_spent_Medium_value_payments,370.0017722,0,-0.0814,0.0708,-1.0838,-1.381,-0.7819 -0xf8d1,CUS_0x1441,August,22,150-43-9697,Journalist,78604.47,,6,5,4,1,Payday Loan,14.10313178,12,1.45,1,Good,995.2371481,29.57462929,27 Years and 10 Months,NM,63.58226733,402.5848432,Low_spent_Medium_value_payments,514.3643632,0,2.6752,-0.172,-1.7864,-2.258,-0.9829 -0xf8dd,CUS_0xbae6,August,43,441-32-5477,Accountant,57153.63,4641.8025,4,4,9,2,"Debt Consolidation Loan, and Not Specified",10.85372426,9,13.23,2,_,487.1141332,40.39858816,16 Years and 5 Months,Yes,86.21990832,,High_spent_Medium_value_payments,576.464343,0,-0.1411,1.0185,-0.4744,0.7758,0.3519 -0xf8e9,CUS_0x9199,August,26,149-67-5279,Journalist,60787.32,,6,6,29.06745738,100,"Home Equity Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",46.72611096,23.88149831,24.93,13,Bad,5643.017878,36.18986902,1 Years and 10 Months,NM,279.4056539,,Low_spent_Medium_value_payments,4.186503271,0,-0.3901,-0.7743,-0.3168,-0.5795,0.1932 -0xf8f5,CUS_0x1269,August,22,755-70-8952,Manager,42031.09,3762.590833,2,1,7.288361749,2,"Not Specified, Debt Consolidation Loan, and Auto Loan",0.284373788,5,14.11,2,Good,74.05646325,23.14461612,17 Years and 3 Months,No,66.50617973,543.0580638,High_spent_Medium_value_payments,450.897046,0,0.3133,-0.8241,1.9517,0.6328,-0.9559 -0xf901,CUS_0xbed9,August,35,516-43-1005,Teacher,168647.08,14098.92333,2,5,1,2,"Credit-Builder Loan, and Credit-Builder Loan",16.71805642,,10.48,,Good,1296.900781,36.77025032,26 Years and 2 Months,No,242.2964535,304.5150982,High_spent_Medium_value_payments,1142.421291,0,-0.196,0.6068,-1.2285,-0.8496,1.0725 -0xf90d,CUS_0x2ca8,August,22,531-62-7802,Doctor,126026.19,10704.1825,0,7,2,100,"Credit-Builder Loan, Personal Loan, and Student Loan",,3,8.61,4,Good,1475.49,40.68960532,29 Years and 11 Months,No,250.116972,85.42924812,High_spent_Large_value_payments,974.8720299,0,1.7518,1.4421,0.0052,-0.7427,-0.1016 -0xf919,CUS_0x2283,August,21,786-14-0940,Media_Manager,18053.32,1231.443333,5,6,13,7,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Not Specified",16.82053528,13,12.06,9,_,1262.85,27.23018469,7 Years and 4 Months,Yes,57.00609769,,Low_spent_Small_value_payments,192.9610946,0,2.9306,1.6457,-0.7612,1.6578,-0.5927 -0xf925,CUS_0xf42,August,45,306-13-0709,Accountant,39225.32,3265.776667,8,5,23,2,"Personal Loan, and Personal Loan",,22.09715546,13.2,12,Bad,2235.037943,31.0894549,9 Years and 4 Months,Yes,37.03676633,202.3655471,Low_spent_Small_value_payments,377.1753532,0,-0.1022,0.4476,-1.2032,1.7111,0.8327 -0xf931,CUS_0x247c,August,48,478-48-3295,Developer,119321.84,9694.486667,2,4,19,4,"Auto Loan, Personal Loan, Mortgage Loan, and Payday Loan",27.47814141,19,8.85,1,Standard,149.44,28.01020492,18 Years and 10 Months,No,344.5781453,473.934985,Low_spent_Large_value_payments,420.9355364,0,0.5767,-1.4843,0.3167,-1.0469,0.3987 -0xf93d,CUS_0x10eb,August,56,#F%$D@*&8,Journalist,28315.95,,4,7,10,2,"Student Loan, and Payday Loan",6.23692493,8,10.34,4,Good,618.8169889,26.9123235,20 Years and 5 Months,No,30.23099627,155.158725,Low_spent_Small_value_payments,368.2864188,0,1.807,-0.544,0.9296,0.3196,-0.8257 -0xf949,CUS_0x355c,August,80,244-48-6204,Lawyer,18750.54,,10,9,28,4,"Auto Loan, Credit-Builder Loan, Personal Loan, and Payday Loan",23.87045937,18,12.89,2553,Standard,1668.49,23.217184,6 Years and 10 Months,Yes,54.07931766,50.93855155,High_spent_Small_value_payments,319.9366308,0,-0.7472,2.7046,0.164,0.303,0.4603 -0xf955,CUS_0x802f,August,28,647-94-9183,Engineer,40334.7,3313.225,9,7,26,2,"Not Specified, and Debt Consolidation Loan",,20.20493154,2.6,14,Bad,1403.05208,33.40916123,15 Years and 0 Months,Yes,45.34140137,297.5908671,!@9#%8,278.3902315,0,-0.3917,-0.3858,0.0667,-0.3755,-0.9058 -0xf961,CUS_0x634d,August,40,023-02-7424,Engineer,17594.015,1485.441223,0,3,11,0,,7.247661267,10,8.52,5,Good,576.75,27.17277479,28 Years and 6 Months,No,171.7266939,,High_spent_Medium_value_payments,381.5626836,0,0.5846,0.5867,0.9,-1.3825,1.3464 -0xf96d,CUS_0x7d3b,August,45,582-95-6911,Musician,71148.94,,1,3,0.288361749,0,,9.10351533,9,7.84,3,Good,518.43,24.8770273,23 Years and 9 Months,No,20392,544.4603301,!@9#%8,722.6849642,0,-0.6363,-0.0016,0.1405,0.1554,-0.3054 -0xf979,CUS_0x2a8b,August,50,441-09-7559,Architect,32570.85,2936.2375,6,7,16,2,"Auto Loan, and Payday Loan",20.53397149,18,11.32,5,Standard,542.2030199,36.54206477,16 Years and 2 Months,Yes,50.16601483,202.5664036,Low_spent_Large_value_payments,340.5468294,0,0.2985,-0.255,-1.2108,-0.5824,0.2081 -0xf985,CUS_0x1e8e,August,18,584-46-9934,Entrepreneur,27007.19,2193.599167,3,7,19.28836175,0,,,10,16.24,5,Standard,171.9030409,22.09545143,22 Years and 10 Months,Yes,0,484.1453716,High_spent_Small_value_payments,424.7111861,0,0.8212,-1.2005,0.952,0.4433,0.8372 -0xf991,CUS_0x64a5,August,42,681-01-0375,Scientist,29386.9,,4,4,28.06745738,6,"Auto Loan, Student Loan, Personal Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",24.69986784,17,9.17,12,Standard,2351.190954,28.94431421,17 Years and 2 Months,Yes,100.4863748,,High_spent_Small_value_payments,248.5593872,0,-2.4698,0.4225,0.7574,-0.3975,-0.0239 -0xf99d,CUS_0x2a6b,August,80,#F%$D@*&8,Accountant,44308.67,,5,3,9,0,,9.578371712,9,4.3,9,Good,1221.140359,27.26515677,,No,0,,Low_spent_Large_value_payments,527.5524405,0,1.9321,0.7727,-0.0523,1.2537,0.1953 -0xf9a9,CUS_0xa618,August,47,418-01-6196,_______,118988.19,9680.6825,5,3,2.288361749,2,"Auto Loan, Credit-Builder Loan, and Not Specified",7.083647782,9,4.26,1,Good,619.4042786,23.57201869,31 Years and 8 Months,No,198.14711,1709.12003,Low_spent_Small_value_payments,,0,-1.1618,-0.3032,1.3025,0.3737,1.0292 -0xf9b5,CUS_0x7d0a,August,40,017-46-9829,Architect,27217.23,2057.1025,3,5,11,7,"Auto Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",17.62351205,15,10.78,11,Standard,901.34,36.65247457,,Yes,145.7568677,50.62706787,High_spent_Large_value_payments,249.3263144,0,-1.8712,0.1147,1.1199,-0.3968,-0.059 -0xf9c1,CUS_0x460c,August,23,647-87-5349,_______,7019.435,711.9529167,6,5,20,6,"Not Specified, Not Specified, Auto Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",15.03858295,11,10.42,5,Standard,328.81,24.22986567,7 Years and 0 Months,Yes,25.23987455,0,High_spent_Large_value_payments,279.2470081,0,-1.7544,0.6051,-0.6218,0.3168,0.7657 -0xf9cd,CUS_0x4dba,August,25,057-73-9369,Engineer,14688.84,1030.584113,4,6,18,1,Credit-Builder Loan,18.92835201,15,5.56,6,Standard,1459.05,31.31979839,20 Years and 6 Months,No,121.9257023,154.4891519,Low_spent_Small_value_payments,241.4780327,0,-0.5968,-1.7123,2.2779,0.9435,1.2044 -0xf9d9,CUS_0x69a6,August,31,675-99-1025,Mechanic,130289.46,10677.455,0,4,3,1,Home Equity Loan,,3,0.88,5,Good,1035.987662,37.61427484,28 Years and 5 Months,No,76.06073445,351.3051132,High_spent_Medium_value_payments,940.5921848,0,0.0115,-2.3996,-1.6295,0.4416,0.4582 -0xf9e5,CUS_0x4e3,August,31,389-73-1750,Lawyer,65383.72,5522.643333,8,10,1562.889548,100,"Student Loan, and Payday Loan",13.96063076,9.351069315,9.09,16,Standard,2781.415429,27.43777135,,Yes,1394.246602,400.0945041,Low_spent_Medium_value_payments,343.5931455,0,-0.7625,0.5787,-0.7672,-0.2235,0.741 -0xf9f1,CUS_0xa2a3,August,40,004-73-7665,Entrepreneur,19278.72,,10,10,23.95700519,6,"Auto Loan, Student Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Student Loan",,22,28.3,10,_,3259.510954,31.99459468,2 Years and 5 Months,Yes,1395.379013,,Low_spent_Medium_value_payments,158.8534501,0,-0.025,-0.729,-1.2671,-0.6902,2.6262 -0xf9fd,CUS_0x6a8a,August,18,672-99-7085,Developer,21826.18,,3,5,6.288361749,4,"Not Specified, Personal Loan, Home Equity Loan, and Mortgage Loan",,19,9.86,11,Standard,72.03,35.03365115,27 Years and 11 Months,Yes,40.76315786,591.8046117,Low_spent_Small_value_payments,235.3545248,0,-0.128,1.6114,-0.5627,0.3627,-2.3075 -0xfa09,CUS_0x6a7e,August,32,715-62-4980,Scientist,40035.02,3205.251667,9,6,23.06745738,9,"Payday Loan, Not Specified, Student Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Student Loan, and Personal Loan",,25,19.79,11,Bad,3898.250954,35.38050704,12 Years and 4 Months,Yes,216.5099108,70.53822145,High_spent_Small_value_payments,266.7567465,0,0.6893,0.341,0.5683,0.9907,1.9956 -0xfa15,CUS_0x6853,August,45,777-91-5121,Manager,8305.15,,7,5,32,9,"Debt Consolidation Loan, Student Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Not Specified, Not Specified, and Personal Loan",29.11469991,,1.97,9,Bad,4299.232434,29.86722945,3 Years and 0 Months,Yes,48.91599115,81.78719698,Low_spent_Small_value_payments,221.3063952,0,0.4401,-0.8523,1.8294,-0.8686,-0.3285 -0xfa21,CUS_0x41c,August,50,#F%$D@*&8,Developer,18808.34,,1,5,10,0,,10.66966443,11,7.59,2,Good,1035.88,37.86705482,22 Years and 8 Months,No,0,93.07892998,Low_spent_Small_value_payments,358.7572367,0,0.1372,-0.5112,-0.637,-0.5132,-0.0825 -0xfa2d,CUS_0x4efc,August,37,981-75-4926,Musician,18350.255,,5,6,19,5,"Not Specified, Personal Loan, Auto Loan, Personal Loan, and Mortgage Loan",,21.74958203,7.75,6,Standard,556.9474592,23.42897591,10 Years and 10 Months,Yes,58.17802473,155.8244734,Low_spent_Small_value_payments,215.9162935,0,0.446,-0.4578,0.0651,-0.6462,0.4502 -0xfa39,CUS_0xc22c,August,19,076-84-5319,Developer,69428.72,5721.726667,10,8,18,4,"Mortgage Loan, Payday Loan, Payday Loan, and Student Loan",90,2585,2.94,12,Bad,2474.96,39.77797065,11 Years and 5 Months,Yes,178.0578629,45.28023393,High_spent_Large_value_payments,588.8345698,0,0.0721,-0.288,-0.8401,1.6625,1.7797 -0xfa45,CUS_0xb264,August,54,442-80-9610,Journalist,28867.01,,2,3,3,0,,5.535580283,2,7.78,6,Good,51.54,31.4473265,19 Years and 6 Months,No,0,95.75856334,High_spent_Medium_value_payments,423.4998533,0,1.3999,1.1348,-0.1298,1.4924,0.7082 -0xfa51,CUS_0x1ff5,August,43,313-93-6872,Accountant,147292.28,12261.35667,4,3,16,4,"Auto Loan, Student Loan, Mortgage Loan, and Auto Loan",26.33410752,17,10.61,5,Standard,1133.79,29.15789966,16 Years and 9 Months,No,246.2621915,93.2500006,High_spent_Large_value_payments,1126.623475,0,-1.7363,-0.5487,0.3967,0.3639,-0.937 -0xfa5d,CUS_0x9828,August,27,889-61-7625,Musician,17535.65,,8,7,29,6,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, and Home Equity Loan",29.05730657,20.52078479,19.11,10,Standard,1671.764573,38.00063661,20 Years and 8 Months,Yes,81.70490745,90.39512448,High_spent_Small_value_payments,236.9303847,0,-0.5699,1.1247,0.0329,1.1619,-0.6837 -0xfa69,CUS_0x23f8,August,26,004-44-2584,Scientist,40019.64,3049.97,7,6,16,9,"Mortgage Loan, Payday Loan, Not Specified, Home Equity Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",23.51985089,19,20.31,15,Bad,4187.21,27.82109665,,Yes,290.9728955,204.2752761,!@9#%8,79.74882841,0,1.292,0.5168,1.0119,-0.485,-1.2106 -0xfa75,CUS_0x9d7e,August,54,664-67-7834,Writer,106598.84,8639.236667,8,7,13,100,"Auto Loan, Not Specified, Mortgage Loan, and Mortgage Loan",14.46562128,9,3.06,5,_,1299.415955,33.87222894,29 Years and 2 Months,No,320.8929515,101.1539851,High_spent_Large_value_payments,693.7657309,0,-1.8085,1.7924,1.0475,-0.7233,1.7915 -0xfa81,CUS_0x4d1c,August,32,264-08-8572,Doctor,82892.4,6685.7,8,9,29.88954781,9,"Student Loan, Payday Loan, Student Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Mortgage Loan, and Not Specified",33.13327928,24,27.96,11,_,3885.46,31.03812132,,Yes,1756.009197,447.575631,Low_spent_Large_value_payments,40.65509064,0,2.1461,0.9176,1.0469,0.6805,-1.3612 -0xfa8d,CUS_0x1ebe,August,52,721-47-3071,Media_Manager,72195.24,6270.27,3,7,5,1,Personal Loan,,10,9.44,7,Standard,1248.19,26.65464014,21 Years and 6 Months,Yes,47.06610259,113.9439473,High_spent_Large_value_payments,706.0169501,0,1.9541,1.1748,-0.6959,0.2939,0.1723 -0xfa99,CUS_0x31b7,August,42,303-30-5170,Lawyer,31200.24,,2,3,0.288361749,100,"Not Specified, Personal Loan, and Student Loan",2.78563396,5,16.64,4,Good,12.79091502,34.26092841,23 Years and 2 Months,No,71.67124257,671.4532302,Low_spent_Small_value_payments,263.7447964,0,-0.7052,-0.8637,0.6371,0.1713,-0.9213 -0xfaa5,CUS_0x72b2,August,31,603-40-5139,Entrepreneur,33669.7,,5,7,14,6,"Credit-Builder Loan, Payday Loan, Not Specified, Student Loan, Home Equity Loan, and Auto Loan",19.08347706,18,15.59,7,Standard,795.19,38.55029524,14 Years and 8 Months,Yes,159.990097,,Low_spent_Large_value_payments,152.8877069,0,-0.567,-0.186,-1.3408,-0.2062,-0.2798 -0xfab1,CUS_0xa453,August,46,932-45-0249,Lawyer,33427.13,,4,2,4,0,,,6,5.51,4,Good,828.32,26.96893936,31 Years and 0 Months,No,0,342.2318725,Low_spent_Small_value_payments,218.6275442,0,0.1521,0.0075,-2.9266,0.2257,-0.3051 -0xfabd,CUS_0xff6,August,19,541-92-8371,Doctor,117639.92,9727.326667,5,6,1,2,"Home Equity Loan, and Auto Loan",,7,10.4,2,Good,301.4546541,32.87185347,24 Years and 11 Months,No,126.6384533,608.0087221,Low_spent_Medium_value_payments,592.0056862,0,1.7618,-1.5886,1.2431,1.0977,-1.2583 -0xfac9,CUS_0x8684,August,33,575-25-6683,Entrepreneur,22233.98,,5,6,3,4,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Auto Loan",0,0,10.24,2,Good,1320.47,36.96899063,29 Years and 4 Months,No,39.59802419,195.6957709,Low_spent_Small_value_payments,248.0893716,0,-1.9591,2.2492,0.9755,1.2625,-2.1392 -0xfad5,CUS_0x24d7,August,34,894-86-2765,Developer,58166.6,,6,8,29.95700519,9,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Not Specified, Personal Loan, Auto Loan, Not Specified, Student Loan, and Credit-Builder Loan",22.43241234,,29.19,9,Bad,3554.950954,30.85405465,,Yes,1642.597083,,!@9#%8,0,0,-0.8967,-0.3331,-0.0805,0.79,-0.3297 -0xfae1,CUS_0xbec0,August,20,186-66-2426,Writer,78006.32,6399.526667,9,5,24.06745738,6,"Auto Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Payday Loan, and Auto Loan",,,17.9,12,Bad,5022.950954,40.76711646,1 Years and 3 Months,Yes,274.4334182,82.68168839,High_spent_Large_value_payments,496.1172721,0,1.2945,0.8753,-0.6622,1.4968,0.9311 -0xfaed,CUS_0x99cf,August,43,043-69-4345,Accountant,22224.03,2145.0025,8,5,20,4,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",22.9695081,16,17.5,8,Standard,1418.03,38.63078905,7 Years and 4 Months,Yes,56.92474699,18.63897263,High_spent_Large_value_payments,378.9365304,0,-0.5632,0.0307,-0.2021,0.7489,0.4202 -0xfaf9,CUS_0x524f,August,56,562-64-3862,Musician,51150.64,,8,5,17,3,"Personal Loan, Personal Loan, and Home Equity Loan",27.0679881,19,15.74,2,Standard,1228.48,28.60468765,27 Years and 11 Months,Yes,127.2491976,10000,!@9#%8,437.9069728,0,0.4016,0.7515,1.9791,-2.2833,-1.6565 -0xfb05,CUS_0x5b04,August,18,811-53-2257,Entrepreneur,18608.17,1774.680833,7,8,30,6,"Personal Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",,16,21.87,13,_,4228.95,28.71220158,9 Years and 9 Months,Yes,55.15482121,,High_spent_Small_value_payments,258.7247566,0,0.1117,0.7377,0.5537,0.0332,1.5002 -0xfb11,CUS_0x4313,August,80,903-92-2277,Journalist,19051.66,,10,8,16.95700519,6,"Personal Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",38.1738489,18.06876669,7.74,10,Bad,3112.400985,38.34583015,,Yes,1464.786535,151.399159,Low_spent_Small_value_payments,178.0862392,0,0.219,-0.175,-0.3205,0.8052,0.011 -0xfb1d,CUS_0xa7b8,August,42,915-93-5464,Entrepreneur,25856.84,,3,7,1,3,"Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",15.28756356,,6.22,5,Good,586.46,26.49518913,18 Years and 0 Months,No,58.72646602,57.71918256,Low_spent_Large_value_payments,351.4280181,0,-1.0523,-1.6127,-2.0185,0.404,0.9482 -0xfb29,CUS_0x593c,August,49,184-32-0632,Developer,18464.08,,8,7,8,7,"Debt Consolidation Loan, Student Loan, Not Specified, Not Specified, Debt Consolidation Loan, Payday Loan, and Payday Loan",28.13349507,20,19.68,5,Standard,2290.537834,28.16033137,7 Years and 2 Months,NM,95.71838286,39.93408283,High_spent_Large_value_payments,278.9772688,0,1.145,0.5836,0.2183,-1.3287,-1.4044 -0xfb35,CUS_0x28e7,August,39,669-94-9890,Engineer,10395.46,1160.288333,6,8,24.95700519,9,"Personal Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Payday Loan",42.85549089,25,15.39,9,_,2004.980954,32.14907693,14 Years and 9 Months,Yes,1392.417827,35.01792738,High_spent_Medium_value_payments,217.5427096,0,0.2461,-0.4768,0.9662,0.3007,0.0143 -0xfb41,CUS_0x301f,August,38,743-99-6874,Accountant,138715.04,11841.58667,5,3,15,1,Not Specified,,17,14.11,2,Standard,551.75,35.93310161,21 Years and 0 Months,Yes,71.74642025,258.329745,High_spent_Large_value_payments,1094.082501,0,-1.9447,0.1808,1.3943,1.9013,0.4693 -0xfb4d,CUS_0x8de0,August,43,906-56-2463,Doctor,9375.245,,8,9,29.88954781,100,"Not Specified, Payday Loan, Personal Loan, Auto Loan, and Student Loan",,20.73350744,18.21,6,Bad,4804.886276,33.81183706,,Yes,1347.765142,25.59703675,Low_spent_Small_value_payments,285.4347812,0,-2.3795,1.2403,-2.4289,-0.2607,-0.2674 -0xfb59,CUS_0xaab7,August,40,110-58-2517,Entrepreneur,103744.83,8398.4025,6,6,18,3,"Not Specified, Payday Loan, and Debt Consolidation Loan",25.63830161,17,0.78,6,Standard,484.98,34.43477222,27 Years and 0 Months,No,160.970391,,Low_spent_Large_value_payments,527.8895722,0,-0.726,0.5547,1.1487,0.3569,-1.1636 -0xfb65,CUS_0x6275,August,19,926-55-7800,Architect,30355.01,,4,2,2,100,Student Loan,6.87460433,7,9.37,4,Good,710.0863837,40.53998072,28 Years and 9 Months,No,20.51068136,263.1200915,!@9#%8,283.9633984,0,1.8839,1.0593,1.4838,-1.2256,-0.742 -0xfb71,CUS_0xace2,August,20,444-33-6428,Accountant,22120.69,1809.390833,7,4,14,6,"Payday Loan, Student Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",9.950685394,8,17.94,7,Standard,67.23,30.79790053,13 Years and 5 Months,Yes,74.11808217,121.6788765,Low_spent_Small_value_payments,275.1421247,0,-0.435,0.0668,1.3396,2.0648,1.8001 -0xfb7d,CUS_0x85bd,August,32,055-00-5463,Scientist,49768.71,4045.3925,7,5,18,6,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",16.82959361,11.48222075,,11,Standard,1631.655154,28.00878187,14 Years and 6 Months,Yes,225.6934909,50.0365481,High_spent_Large_value_payments,368.809211,0,0.0181,-0.8719,-1.1426,0.5412,-1.5707 -0xfb89,CUS_0x4862,August,18,#F%$D@*&8,Mechanic,59703.75,,7,9,18.06745738,9,"Student Loan, Personal Loan, Not Specified, Auto Loan, Payday Loan, Personal Loan, Payday Loan, Student Loan, and Not Specified",,15,18.56,8,Bad,4478.190954,39.5951761,3 Years and 6 Months,Yes,410.2494796,238.6672959,High_spent_Small_value_payments,63.09418659,0,-1.65,0.1573,-1.201,-0.8847,-1.7416 -0xfb95,CUS_0xaf93,August,50,842-21-5410,Developer,97889.1,8205.425,1,7,9,3,"Payday Loan, Auto Loan, and Mortgage Loan",1.82562888,4.801657208,15.6,7,Good,1488.873876,37.90689544,18 Years and 5 Months,NM,132.4438582,120.9501379,High_spent_Medium_value_payments,817.148504,0,2.089,0.3952,0.3244,-0.2935,-1.2818 -0xfba1,CUS_0xbc74,August,18,235-99-8671,Accountant,17509,1657.083333,10,9,21.06745738,4,"Payday Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",29.18563964,19.04192305,,,Bad,2995.352118,32.81958299,,Yes,53.88071323,81.3279896,Low_spent_Small_value_payments,293.7793426,0,-0.3381,0.7266,-0.6712,0.7352,0.1297 -0xfbad,CUS_0x8563,August,18,762-82-6147,Teacher,67503.36,,7,5,17.28836175,0,Payday Loan,20.1470314,17,9.52,6,Standard,323.93,32.69986246,19 Years and 5 Months,No,36.81702733,10419.93746,Low_spent_Large_value_payments,609.6354467,0,1.6433,0.6074,-1.1592,0.2189,1.6181 -0xfbb9,CUS_0x82ff,August,24,276-50-0369,Musician,35366.38,2816.198333,9,5,29,8,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Student Loan, Mortgage Loan, and Not Specified",,24,18.35,8,Bad,4456.34,25.93645038,10 Years and 3 Months,Yes,140.7618722,186.7857514,Low_spent_Medium_value_payments,234.0722098,0,-0.1393,-0.2734,-1.8902,1.7529,0.0228 -0xfbc5,CUS_0x47e5,August,40,334-74-9570,Mechanic,40806.35,,3,7,12,2,"Auto Loan, and Auto Loan",,5,0.96,3,Good,595.2,31.72441156,,No,44.19786861,157.6842667,High_spent_Small_value_payments,419.9707814,0,-0.5618,0.5629,-1.1576,-0.3735,-0.6464 -0xfbd1,CUS_0x5ba1,August,32,803-91-4307,Scientist,45472.95,3676.4125,9,6,18,5,"Debt Consolidation Loan, Payday Loan, Personal Loan, Auto Loan, and Auto Loan",26.63866052,14,8.69,9,Bad,1814.78,29.55714767,16 Years and 10 Months,NM,119.6257476,200.6691118,!@9#%8,307.3463906,0,-1.42,-0.1889,-1.0021,1.5274,1.5438 -0xfbdd,CUS_0x312c,August,19,650-51-5112,Architect,56531.6,4643.966667,7,6,23,6,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",37.88369391,28.36497782,9.39,6,_,4236.116376,27.21929214,12 Years and 3 Months,Yes,192.8933297,56.21254343,High_spent_Large_value_payments,455.2907935,0,-1.7542,-0.7006,-0.8039,1.6616,0.0281 -0xfbe9,CUS_0xb51d,August,37,129-24-9664,_______,40174.36,,5,3,11.28836175,2,"Credit-Builder Loan, and Credit-Builder Loan",,,12.32,2,Standard,499.0398458,32.39284837,18 Years and 8 Months,NM,64.40131451,11854.88378,High_spent_Large_value_payments,448.0622694,0,-0.6336,-1.4361,0.5224,0.3572,0.9027 -0xfbf5,CUS_0x8919,August,34,412-59-9079,Scientist,76891,,6,782,19,4,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Payday Loan",38.58742369,20,6.79,12,Bad,1999.24,30.59272488,14 Years and 8 Months,Yes,362.184652,81.2993753,High_spent_Large_value_payments,676.5017984,0,2.4106,-0.0463,-0.097,-0.2731,-0.3975 -0xfc01,CUS_0x52cf,August,29,444-79-5421,_______,13511.76,,6,6,18,4,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",8.982903569,10,10.07,2,_,97.99,32.22777758,23 Years and 8 Months,No,25.0378665,15.84289309,High_spent_Large_value_payments,322.9172404,0,1.0147,-0.4883,-0.6842,-0.9873,2.0989 -0xfc0d,CUS_0xc526,August,41,938-07-0903,_______,112202.72,9144.226667,4,3,18.28836175,2,"Credit-Builder Loan, Student Loan, and Home Equity Loan",11.02129753,12,7,4,Standard,455.29,27.7613827,,Yes,223.8923924,911.9295194,High_spent_Small_value_payments,458.5382158,0,0.5374,-2.0742,-2.0385,2.2036,-2.2204 -0xfc19,CUS_0xa8d,August,39,685-12-6865,Lawyer,74063.28,,3,6,4.288361749,2,"Payday Loan, and Auto Loan",19.38722138,17,13.91,10,Standard,909.3378892,35.1773006,18 Years and 4 Months,Yes,117.4361398,937.3955011,Low_spent_Medium_value_payments,329.433266,0,0.6646,1.8456,1.1298,-1.7624,-0.8497 -0xfc25,CUS_0x6073,August,37,#F%$D@*&8,Teacher,107595.68,,8,4,4257,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",,17,10.1,8,Standard,225.86,40.71134643,11 Years and 2 Months,Yes,346.143121,,Low_spent_Large_value_payments,505.0545329,0,1.0021,0.1027,0.7839,-0.8336,0.3159 -0xfc31,CUS_0x53fc,August,39,777-57-0144,Engineer,60437.28,4948.44,6,4,8,4,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",20.16153231,12.97578,19.55,11,Standard,2386.758907,33.93301666,16 Years and 10 Months,Yes,129.3874628,189.2735912,High_spent_Medium_value_payments,426.182946,0,-0.0322,1.2354,1.7325,0.5254,-0.6522 -0xfc3d,CUS_0x74bd,August,24,510-77-7142,Media_Manager,29663.44,2676.953333,5,6,18,2,"Not Specified, and Credit-Builder Loan",7.585221155,9,17.76,8,Standard,598.51,36.43438682,17 Years and 6 Months,Yes,49.34591127,183.5826868,Low_spent_Small_value_payments,324.7667353,0,1.0062,1.1523,0.6091,-0.7644,0.7539 -0xfc49,CUS_0xbea3,August,18,127-36-3685,_______,23445.47,1870.789167,4,5,18,6,"Home Equity Loan, Auto Loan, Mortgage Loan, Not Specified, Student Loan, and Payday Loan",21.95157896,19,8.77,5,Standard,1339.754954,23.04403732,16 Years and 0 Months,Yes,109.7921401,129.2920593,Low_spent_Small_value_payments,252.5487549,0,-1.5068,-0.5246,-0.5679,-0.5798,-1.4068 -0xfc55,CUS_0x4db6,August,49,321-45-2585,Lawyer,60125.18,,3,5,3.288361749,2,"Not Specified, and Not Specified",10.03297626,12,3.95,4,Good,582.8605356,32.83517542,30 Years and 10 Months,NM,82.29577728,638.5826111,High_spent_Medium_value_payments,502.9294775,0,0.6966,0.7301,-1.4304,0.9997,0.7662 -0xfc61,CUS_0xa00f,August,41,436-51-1042,Writer,105950.76,8905.23,6,5,12,1,Not Specified,23.45121235,17,10.18,8,Standard,746.19,31.59455138,30 Years and 4 Months,No,46.54472119,72.46380996,High_spent_Large_value_payments,1011.514469,0,1.0388,-1.2808,0.5126,0.4344,-0.3886 -0xfc6d,CUS_0x109f,August,41,283-32-0255,Teacher,130435.86,,4,846,9,2,"Home Equity Loan, and Home Equity Loan",0,1,12.85,0,Good,942.71,34.78470398,29 Years and 11 Months,NM,188.1861332,,Low_spent_Medium_value_payments,81.141936,0,1.4872,-0.159,-0.112,1.9132,-0.2847 -0xfc79,CUS_0x32e2,August,44,162-29-6785,_______,31172.1,,6,10,17.06745738,5,"Not Specified, Not Specified, Student Loan, Auto Loan, and Student Loan",41.62291935,24,26.93,7,Bad,3596.311113,38.53729209,10 Years and 4 Months,Yes,106.0456042,,High_spent_Small_value_payments,213.2975793,0,0.0499,-0.6364,1.3268,0.038,-1.7575 -0xfc85,CUS_0x3175,August,18,800-82-2401,Developer,36776.48,,6,5,21.06745738,6,"Payday Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",33.64383956,15,6.43,11,Bad,2641.780954,31.1709219,14 Years and 11 Months,NM,105.9182821,,Low_spent_Small_value_payments,299.3402829,0,0.6204,-0.8754,-1.3712,-1.6392,0.8141 -0xfc91,CUS_0x38aa,August,42,132-95-9102,Media_Manager,10363.34,844.6116667,4,4,9,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",18.36716832,13,17.95,8,_,64.53,29.15269971,,Yes,13.9653729,48.54607514,High_spent_Small_value_payments,281.9497186,0,-0.1655,0.9234,-1.3846,-1.5825,0.9396 -0xfc9d,CUS_0xc016,August,37,850-47-2557,Entrepreneur,44793.34,3677.778333,0,5,2.288361749,0,,0,3,10.69,3,Good,506.7074022,23.09108448,25 Years and 9 Months,No,0,544.7381835,High_spent_Medium_value_payments,507.7401136,0,1.0498,1.4714,1.0088,0.7675,-0.7236 -0xfca9,CUS_0xc5fd,August,50,302-88-2882,Engineer,53876.66,4247.721667,3,4,12,0,,17.60883843,14,5.38,6,Standard,808.8,25.98589245,24 Years and 2 Months,No,0,68.89006067,High_spent_Medium_value_payments,605.882106,0,-0.3833,1.3266,0.2635,-0.3101,-1.1942 -0xfcb5,CUS_0x424f,August,33,352-32-4006,Developer,142285.72,,2,3,1,3,"Not Specified, Personal Loan, and Personal Loan",,1,-0.32,4,Good,985.1351911,31.02879122,32 Years and 6 Months,No,268.2087002,253.1379577,High_spent_Large_value_payments,929.3943866,0,-0.2438,-1.5863,0.9993,-1.6253,0.07 -0xfcc1,CUS_0x233a,August,39,077-98-9745,Manager,20062.86,,7,7,17,1,Not Specified,12.17460704,12,8.68,1,Standard,769.51,34.57488658,,Yes,8.56128096,47.63929772,Low_spent_Medium_value_payments,367.1899213,0,-0.5142,0.9947,0.7121,1.0059,1.2478 -0xfccd,CUS_0x732b,August,18,035-11-0443,Accountant,19860.55,,6,3,16,2,"Home Equity Loan, and Credit-Builder Loan",,17,11.07,5,Standard,1101.26,25.21502257,14 Years and 6 Months,Yes,18.539143,146.148397,Low_spent_Large_value_payments,274.4170434,0,-0.2463,-1.8639,0.3618,-1.49,-0.3327 -0xfcd9,CUS_0x1d00,August,44,185-89-0354,Teacher,14638.54,1134.878333,6,9,17,8,"Debt Consolidation Loan, Payday Loan, Student Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Home Equity Loan",39.73630682,22.45445164,26.3,14,Bad,3551.965287,37.55926354,12 Years and 4 Months,Yes,80.00617265,44.69070234,Low_spent_Small_value_payments,278.7909583,0,1.3342,-0.4244,0.6419,1.0412,0.3717 -0xfce5,CUS_0x346e,August,30,056-47-2468,Media_Manager,121684.36,9845.363333,4,6,1.288361749,2,"Payday Loan, Not Specified, and Not Specified",,,-4.5,3,Good,1047.718493,22.82096714,23 Years and 10 Months,No,190.0648044,,Low_spent_Small_value_payments,208.1176817,0,0.4712,0.999,-1.4902,-0.497,-0.8065 -0xfcf1,CUS_0xae09,August,20,224-67-6532,Musician,57377.16,4651.43,9,5,34,6,"Credit-Builder Loan, Personal Loan, Auto Loan, Payday Loan, Auto Loan, and Auto Loan",,,8.56,8,_,2117.187325,38.71734851,6 Years and 9 Months,NM,284.1447939,52.25778352,High_spent_Large_value_payments,368.7404226,0,-0.7823,-1.0281,1.029,0.3573,-0.6133 -0xfcfd,CUS_0x516c,August,47,324-60-4563,Accountant,38391.66,2921.305,4,1,1,1,Mortgage Loan,0,2,7.08,5,Good,271.61,33.21429611,24 Years and 8 Months,No,24.36219265,240.056172,Low_spent_Large_value_payments,297.7121354,0,-0.7216,1.0948,1.3467,-0.4131,1.5681 -0xfd09,CUS_0x9573,August,39,546-00-3244,Teacher,18025.17,,4,3,12,3,"Debt Consolidation Loan, Auto Loan, and Credit-Builder Loan",,1.211729472,10.28,8,_,750.7194835,28.25696354,16 Years and 4 Months,No,26.15464153,122.9258175,Low_spent_Medium_value_payments,290.829291,0,-0.6815,-0.6845,-0.2029,-0.5585,-0.195 -0xfd15,CUS_0x9daa,August,52,789-15-7049,Entrepreneur,36137.59,,3,4,2,4,"Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",14.03232718,,7.21,2,Good,1261.71,29.18755446,27 Years and 9 Months,No,73.14084221,109.297229,High_spent_Medium_value_payments,355.2085121,0,1.8642,-0.1978,-0.5553,0.2985,-0.2491 -0xfd21,CUS_0x70e,August,20,216-87-5046,Developer,120986.25,10288.1875,3,4,4.288361749,0,Not Specified,0,2,4.63,0,Good,1010.15,31.47740825,22 Years and 0 Months,No,53.78228479,1130.463196,Low_spent_Large_value_payments,534.5107304,0,-0.0034,1.3161,-0.5064,0.6195,-0.1482 -0xfd2d,CUS_0xc282,August,19,092-89-2578,Musician,18980.76,,7,5,16.06745738,7,"Not Specified, Not Specified, Personal Loan, Not Specified, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",36.25130152,21.84440169,16.86,7,_,5182.195389,38.54404068,0 Years and 11 Months,Yes,102.9896424,63.90731409,High_spent_Small_value_payments,241.3557556,0,-2.0541,-1.0356,-0.0115,2.2056,0.6041 -0xfd39,CUS_0x1d7b,August,24,512-27-0955,Engineer,70414.1,,2,1407,8.288361749,4,"Personal Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",11.23554882,11,9.24,4,Good,389.8751986,35.34035908,23 Years and 6 Months,No,221.0836457,553.3489795,High_spent_Large_value_payments,515.7299997,0,1.4627,0.7917,-0.7126,-1.1186,0.5101 -0xfd45,CUS_0x669f,August,42,329-48-8705,Engineer,15551.68,1542.973333,7,9,32,7,"Personal Loan, Mortgage Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",29.48824934,,1.99,15,Bad,1660.2,26.44505929,,NM,86.8039398,32.57780358,High_spent_Large_value_payments,274.9155899,0,1.0909,-0.7409,0.6589,0.0406,-0.9172 -0xfd51,CUS_0x6020,August,18,940-70-3305,Writer,58012.88,,7,4,8,6,"Home Equity Loan, Not Specified, Not Specified, Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",24.62453165,19,10.34,,Standard,168.33,31.88060947,18 Years and 9 Months,Yes,181.0265825,,Low_spent_Medium_value_payments,375.6666309,0,-1.6442,0.9766,-0.8944,1.1296,0.2998 -0xfd5d,CUS_0xa773,August,22,123-87-3291,Developer,42803.1,3628.925,5,7,23.06745738,4,"Personal Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",35.67564989,22.79294638,18.93,,Standard,2831.98832,29.13407471,17 Years and 10 Months,NM,73.78777939,79.37840488,!@9#%8,423.0060278,0,-1.0686,-0.7671,-1.3148,1.4103,0.8104 -0xfd69,CUS_0xb453,August,36,002-04-1319,Doctor,37485.37,,5,6,0.288361749,100,,0.841173556,3,4.79,4,Good,313.7678702,33.27938986,18 Years and 3 Months,No,0,11879.63929,Low_spent_Large_value_payments,372.7613272,0,-0.9422,0.0858,0.2682,0.1641,-0.8755 -0xfd75,CUS_0x3dd8,August,25,851-44-4923,Entrepreneur,32928.14,2948.011667,0,2,5,0,,,1,8.63,5,_,929.04,33.89946926,30 Years and 2 Months,No,0,149.1397544,Low_spent_Medium_value_payments,425.6614123,0,0.0533,-0.7445,-1.032,0.6146,-1.3775 -0xfd81,CUS_0x30e3,August,24,780-97-4667,Developer,9691.165,,8,6,29.06745738,6,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",27.35807908,13.01572478,9.22,11,Standard,2045.072385,29.13842066,19 Years and 10 Months,Yes,38.46153447,80.57082799,Low_spent_Small_value_payments,213.2070579,0,-0.6037,0.368,-2.004,1.3872,0.4637 -0xfd8d,CUS_0x133b,August,33,072-54-2150,Lawyer,44261.65,3317.27951,4,1,4.288361749,0,Debt Consolidation Loan,10.19563075,12,-1.64,2,_,452.2,34.56900621,30 Years and 3 Months,No,460.3113893,767.9964762,Low_spent_Large_value_payments,277.5680017,0,-0.0607,-0.5707,0.4072,-0.0298,-1.0251 -0xfd99,CUS_0x681c,August,29,446-41-8323,Scientist,19801.99,,3,3,17,4,"Not Specified, Mortgage Loan, Auto Loan, and Auto Loan",,18.15812505,10.84,11,Standard,2175.834789,28.09687327,,NM,52.36934009,,Low_spent_Small_value_payments,253.958258,0,0.4429,0.9988,-0.109,-1.722,-0.3619 -0xfda5,CUS_0x48ee,August,40,328-26-2142,Scientist,23756.68,1730.723333,8,7,7,0,,,11,16.37,2,_,612.93,33.88706992,20 Years and 11 Months,Yes,0,72.0371776,!@9#%8,361.0351557,0,0.9939,0.3911,-0.2161,-0.2728,-1.3508 -0xfdb1,CUS_0x14d9,August,36,225-59-9039,Writer,76082.25,6082.1875,6,5,13,3,"Credit-Builder Loan, Not Specified, and Payday Loan",16.40824427,15,7.8,4,Standard,847.11,24.93558654,33 Years and 0 Months,Yes,186.4647829,10000,Low_spent_Small_value_payments,,0,2.1301,1.0444,0.8128,-1.1688,-0.3301 -0xfdbd,CUS_0x4aee,August,43,795-12-4901,Architect,42956.58,3665.715,5,3,2,0,,8.906788014,8,1.16,4,Good,466.0870846,36.44947043,22 Years and 5 Months,No,0,11594.65853,High_spent_Medium_value_payments,502.1036213,0,-0.1603,-2.039,-1.5874,-0.4904,1.5001 -0xfdc9,CUS_0x291b,August,29,711-53-7330,Lawyer,24613.73,,8,3,11,100,"Mortgage Loan, Student Loan, and Mortgage Loan",,,8.18,4,Good,576.5049794,25.40602583,25 Years and 6 Months,No,56.50145629,263.1083082,!@9#%8,225.9051378,0,1.3549,-1.2745,0.9272,-0.7795,1.4937 -0xfdd5,CUS_0xb801,August,49,602-62-4745,Musician,162259.96,13239.66333,1,5,5.288361749,4,"Student Loan, Auto Loan, Not Specified, and Student Loan",0,1,7.33,6,Good,164.7832163,32.27778623,17 Years and 5 Months,NM,343.5778739,,Low_spent_Medium_value_payments,29.00554781,0,1.0022,0.0163,0.907,0.1049,0.3936 -0xfde1,CUS_0xa88c,August,22,#F%$D@*&8,Manager,14403.86,,4,4,14.06745738,0,,,10,5.08,4,_,1655.030954,28.41153592,31 Years and 8 Months,Yes,0,61.3034348,Low_spent_Small_value_payments,305.2084439,0,0.8539,-2.0989,-0.7349,0.3872,1.0218 -0xfded,CUS_0x63d,August,21,010-09-9927,Developer,19566.15,1888.5125,5,7,5,7,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Not Specified, and Home Equity Loan",,9,7.93,8,_,556.73,32.35308082,9 Years and 8 Months,Yes,31546,67.40975798,Low_spent_Medium_value_payments,343.0817551,0,0.1287,-0.0991,-0.597,0.5016,-0.5089 -0xfdf9,CUS_0x54a8,August,18,207-34-4989,Doctor,16055942,,8,3,31.28836175,2,"Home Equity Loan, and Payday Loan",7.99012898,10.14832093,9.79,,Standard,1883.656355,29.73817823,11 Years and 6 Months,Yes,21.59014348,517.2915031,Low_spent_Small_value_payments,355.4536478,0,-0.1123,-0.8445,0.595,1.0639,-0.1554 -0xfe05,CUS_0x2a68,August,46,835-40-7901,Musician,31029.7,,6,7,4,4,"Not Specified, Payday Loan, Home Equity Loan, and Student Loan",15.31969921,11,10.74,4,Good,1068.045232,30.29773652,19 Years and 9 Months,No,96.46996501,87.6315588,High_spent_Small_value_payments,337.5316128,0,-0.2355,0.5361,0.4495,3.5084,0.8784 -0xfe11,CUS_0x1718,August,43,047-16-1543,Architect,29062.92,2318.91,6,3,8,1,Credit-Builder Loan,,14.86911595,13.94,4,Standard,54.53890931,25.76550961,20 Years and 8 Months,Yes,14.51622313,150.3390913,High_spent_Small_value_payments,327.0356855,0,0.3673,1.0923,-0.4004,1.3754,0.3487 -0xfe1d,CUS_0xa6e8,August,24,766-02-6429,Scientist,33349.63,,4,1,3,2,"Home Equity Loan, and Auto Loan",17.03459934,,1.59,2,Good,230.2272682,24.68555897,18 Years and 8 Months,No,45.89836362,321.9762301,Low_spent_Small_value_payments,249.6297257,0,0.4803,0.437,-0.2736,2.0522,2.1634 -0xfe29,CUS_0x8395,August,25,374-03-0670,Engineer,14839.245,,3,2,10,2,"Home Equity Loan, and Credit-Builder Loan",,7,8.06,6,Good,1248.98407,28.78065787,30 Years and 2 Months,No,13.41811414,,Low_spent_Small_value_payments,246.9749371,0,-0.8285,-0.1088,-0.1076,0.2932,-2.387 -0xfe35,CUS_0xa66d,August,22,625-76-9061,Scientist,18743.8,,4,284,24,3,"Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",18.06047618,15,13.24,6,_,2019.55,29.86848014,11 Years and 6 Months,Yes,44.7635214,82.12982485,Low_spent_Small_value_payments,318.2049871,0,-0.1862,0.1841,1.0451,-2.3317,-1.2929 -0xfe41,CUS_0x5bac,August,32,182-39-6597,Lawyer,34612.26,,3,5,5.288361749,2,"Auto Loan, and Not Specified",,7,7.48,1,Good,122.92,37.28533814,16 Years and 6 Months,No,40.5640343,496.5340136,High_spent_Small_value_payments,417.3749131,0,-0.4085,0.3166,0.9077,2.2448,-0.9431 -0xfe4d,CUS_0x7baf,August,41,792-88-1863,Lawyer,44678.57,3502.214167,3,360,9,1,Credit-Builder Loan,12.21792811,10,10.41,5,Good,834,34.83393236,30 Years and 9 Months,No,25.15786633,40.62503286,High_spent_Large_value_payments,524.4385175,0,-0.0875,-0.2442,0.1464,-0.0473,-0.5142 -0xfe59,CUS_0x79ac,August,40,833-71-1983,Writer,46645.86,4056.155,4,3,5,2,"Auto Loan, and Auto Loan",8.812587255,10,10.89,9,Standard,1157.31,36.32677837,11 Years and 5 Months,Yes,61.79532,392.2930265,Low_spent_Small_value_payments,241.5271535,0,-0.3716,-0.5668,-0.5967,-0.1688,0.0851 -0xfe65,CUS_0x3c2c,August,42,557-07-3973,Scientist,85494.5,7336.541667,1,4,3,1,Mortgage Loan,3.075964239,7,13.81,1,Good,1351.71,33.21257837,15 Years and 11 Months,No,35.74525071,81.76325984,High_spent_Large_value_payments,856.1456561,0,0.5297,0.5461,1.3711,0.2854,-1.1019 -0xfe71,CUS_0x5d67,August,39,162-17-7776,Engineer,39136.42,3512.368333,4,3,4,0,,,0,12.29,2,Good,493.42,37.45061892,,No,0,55.28382262,High_spent_Medium_value_payments,545.9530107,0,1.3028,-0.2121,1.4214,-2.3346,0.9539 -0xfe7d,CUS_0x183d,August,19,259-11-0934,Writer,7005.93,835.8275,10,7,30,6,"Student Loan, Payday Loan, Home Equity Loan, Payday Loan, Auto Loan, and Student Loan",13.7657681,10.50232204,8.49,9,Standard,1858.896762,26.1786963,,NM,18.67290936,92.44429644,Low_spent_Small_value_payments,262.4655442,0,1.3675,-0.7789,0.0964,-0.5366,-0.3194 -0xfe89,CUS_0x85c0,August,41,475-80-5537,Manager,53698.44,4293.87,7,5,29,5,"Mortgage Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Auto Loan",34.58131956,22,23.44,12,Bad,3436.19,27.90484195,13 Years and 5 Months,NM,143.3166864,212.9620546,!@9#%8,333.108259,0,-0.371,-0.334,0.7992,0.1463,-1.1013 -0xfe95,CUS_0xfb4,August,47,159-51-7992,Writer,13982.725,931.2270833,7,6,12,4,"Student Loan, Payday Loan, Mortgage Loan, and Auto Loan",15.46621121,14,10.45,4,Standard,1458.61,29.66647919,30 Years and 2 Months,Yes,37.98336294,25.80070521,High_spent_Small_value_payments,289.3386402,0,-0.9857,-0.889,0.1508,-0.0114,-0.1777 -0xfea1,CUS_0x9278,August,22,424-53-6443,_______,20521.75,1632.145833,3,4,16,4,"Payday Loan, Auto Loan, Credit-Builder Loan, and Student Loan",,9,14.07,6,Standard,306.23,38.30999821,11 Years and 4 Months,Yes,48.1108143,26.96251797,!@9#%8,328.1412511,0,0.1837,0.1918,0.5887,-0.5705,-0.8597 -0xfead,CUS_0x7423,August,58,866-11-3352,Musician,42274.96,,3,7,1,0,,,8,11.79,2,Good,634.2169578,38.68158075,31 Years and 5 Months,No,0,260.9142759,Low_spent_Medium_value_payments,381.5470298,0,0.2672,0.2238,0.0412,0.1129,0.7888 -0xfeb9,CUS_0x6287,August,24,850-06-1322,Doctor,41026.38,,5,7,9,6,"Student Loan, Student Loan, Student Loan, Personal Loan, Mortgage Loan, and Student Loan",21.09123168,18,17.24,7,Standard,1241.69,27.29228229,13 Years and 5 Months,Yes,181.8040227,183.8521096,High_spent_Small_value_payments,211.0303677,0,-0.545,-1.7392,-1.0347,-1.1261,-1.5259 -0xfec5,CUS_0x5711,August,35,703-04-8420,Teacher,7708.69,,8,747,2631.067457,5,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",,15,28.96,13,Bad,4370.990954,35.1412417,2 Years and 3 Months,Yes,26.58831431,36.10871395,Low_spent_Medium_value_payments,228.5217671,0,0.495,-0.0752,1.0412,0.2291,0.7992 -0xfed1,CUS_0xb66c,August,56,168-03-6392,Writer,126615.04,10726.25333,3,4,12,0,,20.06038471,14,7.57,4,Standard,1468.46,32.6762492,29 Years and 9 Months,No,0,409.5670614,Low_spent_Medium_value_payments,943.0582719,0,0.4874,-1.2913,0.1657,-1.9339,-0.5006 -0xfedd,CUS_0x4824,August,31,188-94-9368,Musician,26794.85,,4,7,18,7,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",27.19333345,22.76737665,10.57,5,Standard,1680.100568,34.20585454,13 Years and 2 Months,Yes,148.8925604,,Low_spent_Small_value_payments,79.03631013,0,0.6056,0.6745,0.3152,0.5127,-0.8479 -0xfee9,CUS_0x4ab7,August,39,707-77-3263,Mechanic,54236.86,4427.738333,3,6,7,0,,21.42553521,14,6.82,4,_,1126.89,32.05568104,18 Years and 3 Months,No,0,52.38397418,High_spent_Medium_value_payments,640.3898592,0,-0.2798,-0.511,-0.6853,-0.2629,0.087 -0xfef5,CUS_0x9e1e,August,27,273-83-6467,Manager,19253.6,1823.466667,8,6,333.0674574,9,"Payday Loan, Auto Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Not Specified, Not Specified, Auto Loan, and Personal Loan",40.0485655,20.49139822,6.42,13,Bad,4219.51628,35.72031372,5 Years and 0 Months,Yes,125.9126095,152.9122036,Low_spent_Small_value_payments,166.8015656,0,-0.0095,-1.0735,-3.1727,-0.2542,-1.5224 -0xff01,CUS_0x34f2,August,26,008-83-1454,Accountant,40108.06,3554.338333,10,6,17,4,"Student Loan, Personal Loan, Auto Loan, and Personal Loan",14.19190695,10.12594005,11.44,13,Standard,1449.704072,27.0341887,10 Years and 10 Months,NM,121.2611842,26.61196009,High_spent_Large_value_payments,447.560689,0,0.8177,-1.1164,-0.4172,0.5345,-0.115 -0xff0d,CUS_0x16d5,August,32,434-00-3122,Mechanic,14313.74,1334.811667,7,6,32.06745738,100,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Payday Loan",28.96230512,17,26.71,15,Bad,4274.100954,36.67317826,11 Years and 8 Months,Yes,42.01506674,110.9400376,Low_spent_Small_value_payments,243.8057744,0,1.5983,0.5209,0.725,-0.1462,0.4779 -0xff19,CUS_0x3e79,August,30,578-88-1975,Mechanic,9956.155,780.6795833,7,10,35.06745738,5,"Payday Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",33.41574586,23.2030884,29.3,11,Bad,4859.449561,32.61166035,8 Years and 4 Months,Yes,38.86248876,,Low_spent_Small_value_payments,233.2570126,0,-0.1907,-0.1444,-0.638,0.8221,0.2863 -0xff25,CUS_0x9f1c,August,23,117-10-2190,Writer,18097.46,,8,10,18.88954781,6,"Credit-Builder Loan, Not Specified, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",19.58989561,,3.5,10,Bad,2794.588184,26.38920348,17 Years and 2 Months,Yes,1381.064041,107.7445633,Low_spent_Small_value_payments,255.073481,0,-0.479,0.3953,-2.5512,0.6821,-0.3121 -0xff31,CUS_0x7db4,August,37,825-38-8081,Engineer,17955.38,,3,7,2.288361749,0,Home Equity Loan,,,8.5,2,Good,136.2379517,27.68570983,,No,12.11580258,559.003341,Low_spent_Small_value_payments,302.3388244,0,-0.4139,-0.3013,1.4534,0.1287,-1.2576 -0xff3d,CUS_0x7db2,August,27,331-77-3147,Writer,43755.33,3828.2775,0,4,4,0,,,7,2.67,1,Good,1143.181431,41.68051333,29 Years and 3 Months,No,0,57.68618965,High_spent_Medium_value_payments,583.809105,0,0.1313,-0.1033,2.284,0.1811,0.8215 -0xff49,CUS_0x12a6,August,25,191-09-1571,Manager,18158.33,1325.194167,7,9,25,4,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",29.47053466,18.55218641,16.52,11,Bad,1516.671818,30.40442384,17 Years and 8 Months,Yes,39.76786259,142.0480554,!@9#%8,240.7034986,0,-0.6573,0.0232,-0.8045,-0.2411,-1.0199 -0xff55,CUS_0x7e3a,August,30,263-62-1641,Architect,37827.77,3116.314167,4,1,5,3,"Auto Loan, Mortgage Loan, and Not Specified",0.421258541,5,10.96,2,Good,271.88,37.0164203,32 Years and 4 Months,No,91.636884,219.4417076,Low_spent_Medium_value_payments,280.5528251,0,-0.6748,0.6922,-2.0582,-0.8282,0.4759 -0xff61,CUS_0x8197,August,31,607-50-9283,Entrepreneur,30661.16,2338.096667,4,5,15,3,"Home Equity Loan, Payday Loan, and Mortgage Loan",19.86697812,17,12.61,5,Standard,1210.376738,33.29931702,21 Years and 10 Months,Yes,52.38766844,69.55622518,High_spent_Large_value_payments,362.197398,0,-1.2631,0.0766,-0.6554,-2.1668,0.7048 -0xff6d,CUS_0xbf64,August,44,667-48-1315,_______,41122.99,3661.915833,2,3,6.288361749,0,Debt Consolidation Loan,13.28017689,,4.15,6,_,390.6718975,27.34813511,26 Years and 4 Months,No,29.87624054,,Low_spent_Small_value_payments,214.17297,0,0.1278,0.6265,0.5119,1.3995,0.6049 -0xff79,CUS_0x71e2,August,49,#F%$D@*&8,Engineer,28074.06,,1,6,1,1,Debt Consolidation Loan,1.939436979,6,4.98,0,Good,524.0523846,40.04541863,31 Years and 9 Months,No,15.50016292,52.85535839,High_spent_Large_value_payments,393.6462566,0,1.1198,1.8755,0.9859,-0.8495,-0.3987 -0xff85,CUS_0x8247,August,18,597-93-5210,Scientist,9670.15,,8,6,19,5,"Mortgage Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",43.93490381,24,3.06,11,Bad,3566.81,30.0009816,4 Years and 9 Months,Yes,35.31974339,,Low_spent_Small_value_payments,248.3829767,0,-0.8111,-1.5258,-0.824,-0.4919,-0.4298 -0xff91,CUS_0x46b1,August,29,364-59-7993,Mechanic,20399.82,1790.985,9,5,15,5,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",,18,27.72,9,Bad,4531.3,22.50189534,,Yes,64.3062989,85.4745104,Low_spent_Small_value_payments,319.3176907,0,0.5286,0.0603,1.9616,-0.5024,-0.0549 -0xff9d,CUS_0x1894,August,33,721-51-0373,Entrepreneur,20063.03,,3,5,15,3,"Student Loan, Payday Loan, and Credit-Builder Loan",,,8.55,10,Standard,1598.32,31.13213961,10 Years and 2 Months,Yes,36.89906434,103.6448356,Low_spent_Large_value_payments,275.5480167,0,0.2276,-2.2266,-0.2923,0.4499,0.0425 -0xffa9,CUS_0x1340,August,42,868-01-7823,Architect,40600.61,,4,7,6,2,"Credit-Builder Loan, and Home Equity Loan",,,5.5,2,Good,1198.96,33.44434002,21 Years and 3 Months,No,63.61485153,75.54045342,High_spent_Small_value_payments,462.8831117,0,-0.8159,1.3963,-0.9422,0.5301,0.8391 -0xffb5,CUS_0x4939,August,35,980-86-1679,Writer,16770.6,,5,6,25,2,"Auto Loan, and Payday Loan",33.00888772,20.72597204,7.44,4,Standard,2244.248417,30.5992567,10 Years and 0 Months,Yes,26.86920934,85.7189572,Low_spent_Medium_value_payments,316.2668335,0,0.7585,-0.0525,-0.144,-0.4201,-0.0508 -0xffc1,CUS_0x94e2,August,38,697-13-7537,Entrepreneur,30411.89,2443.654131,1,911,3,1,Debt Consolidation Loan,17.39829676,,7.97,2,Good,453.0990472,26.59004247,20 Years and 4 Months,No,251.1247438,81.46861874,!@9#%8,440.1582246,0,-2.2581,-2.2596,-1.4408,0.1057,0.0827 -0xffcd,CUS_0x89c2,August,51,420-82-9596,Teacher,18128.1,,3,3,12,4,"Home Equity Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",22.2993216,20,11.91,4,Standard,372.17,35.59262784,21 Years and 8 Months,Yes,56.64915907,71.04254824,High_spent_Medium_value_payments,295.2757927,0,-0.5718,-1.676,0.0864,0.0815,-0.74 -0xffd9,CUS_0x3b36,August,44,814-35-2546,Scientist,79205.36,,1,7,4,0,,0,0,10.59,9,Good,1379.14,27.76686664,25 Years and 5 Months,No,0,434.0748752,High_spent_Small_value_payments,477.9697915,0,-0.3036,1.6404,2.1302,-0.2776,-0.2464 -0xffe5,CUS_0xc062,August,55,856-61-9232,Writer,141219.08,11761.25667,5,7,10.28836175,0,,,8,7.15,6,Good,1028.440655,39.39914048,,No,0,11587.14534,Low_spent_Small_value_payments,461.9257503,0,0.42,0.7583,0.906,-2.3605,-0.2017 -0xfff1,CUS_0xabcf,August,44,257-31-1398,Musician,67857.8,,8,10,32,3,"Mortgage Loan, Personal Loan, and Student Loan",34.39988119,20.56572097,13.71,9,Standard,1625.067163,42.6286796,17 Years and 0 Months,Yes,116.0557763,41.92911826,High_spent_Large_value_payments,631.8967721,0,-1.6288,1.1457,0.8389,-1.775,-0.1511 -0xfffd,CUS_0x1a4b,August,23,490-54-0863,Doctor,19958.32,,1279,7,26,7,"Auto Loan, Student Loan, Home Equity Loan, Payday Loan, Payday Loan, Student Loan, and Debt Consolidation Loan",,24,1.9,6,Bad,4753.48,37.12801989,4 Years and 11 Months,Yes,94.81042935,,!@9#%8,187.989837,0,-1.117,0.3191,-0.8052,-0.5577,-0.6232 -0x10009,CUS_0x54c3,August,29,764-29-3740,Engineer,18354.805,1457.567083,0,3,9.067457376,1,Personal Loan,21.13649677,,5.85,4,Good,1199.674496,26.74335914,17 Years and 9 Months,No,13.9159062,67.84391295,Low_spent_Medium_value_payments,317.2766012,0,0.5225,-0.2498,-0.4342,0.0403,0.5401 -0x10015,CUS_0xab6e,August,44,391-34-0662,Developer,20974.05,1914.8375,8,8,27.88954781,6,"Auto Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",25.7566678,,14.54,12,Standard,1628.097373,30.38122577,12 Years and 11 Months,Yes,1407.246691,80.05399087,Low_spent_Small_value_payments,299.8529872,0,0.5312,-0.2178,0.9611,0.1918,-0.6083 -0x10021,CUS_0xa7cc,August,21,495-58-1191,_______,9602.285,,6,6,11,100,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Personal Loan",,20,14.82,11,Standard,512.05,32.0276452,12 Years and 10 Months,Yes,37.40299004,82.80183318,Low_spent_Small_value_payments,259.5142184,0,0.0289,-0.3326,-0.2184,-1.6657,-0.4444 -0x1002d,CUS_0x3f12,August,18,710-29-0360,Mechanic,15419.66,1451.971667,4,5,24,7,"Not Specified, Personal Loan, Not Specified, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",,11,17.1,1905,Standard,1852.93,28.7959645,13 Years and 6 Months,Yes,75.57783969,,High_spent_Small_value_payments,248.3149426,0,0.8822,-1.6696,1.0716,0.1991,-0.0092 -0x10039,CUS_0x8ea,August,29,069-74-8043,Journalist,16228.17,1374.3475,8,7,19.06745738,4,"Debt Consolidation Loan, Credit-Builder Loan, Student Loan, and Not Specified",27.7265795,19,8.37,13,_,2920.590954,29.50677558,19 Years and 6 Months,Yes,47.8740135,,Low_spent_Small_value_payments,221.852012,0,-0.4171,-0.9522,0.8512,-1.9033,-0.9263 -0x10045,CUS_0xbe4c,August,19,#F%$D@*&8,Lawyer,61778.7,4955.225,7,4,18,4,"Personal Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",17.51674536,10,3.06,2,_,519.01,33.62604012,15 Years and 11 Months,NM,131.983825,244.1298884,Low_spent_Small_value_payments,409.4087866,0,0.1839,1.1232,1.2999,-0.3715,-0.722 -0x10051,CUS_0x72c0,August,18,046-25-3960,Teacher,116522.68,8986.315953,3,4,16,6,"Home Equity Loan, Mortgage Loan, Payday Loan, Student Loan, Not Specified, and Mortgage Loan",11.68117843,7,16.74,11,_,272.6,26.25438211,5 Years and 11 Months,Yes,1042.674209,571.6997364,Low_spent_Medium_value_payments,293.4557673,0,0.5511,1.2784,1.0565,0.8293,-0.053 -0x1005d,CUS_0x3d6c,August,30,815-82-2603,Media_Manager,43894.24,,4,7,16,4,"Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",13.49774987,14,12.69,3,Standard,1422.84,25.56312961,32 Years and 8 Months,Yes,142.9634478,,High_spent_Large_value_payments,418.91767,0,-0.087,0.399,0.0971,-0.6461,-0.9715 -0x10069,CUS_0x41be,August,35,700-01-5042,Musician,72583.32,,7,3,10,781,"Auto Loan, and Personal Loan",20.50113233,14,7.66,5,Standard,1019.44,27.04114487,18 Years and 9 Months,Yes,104.0167304,338.7845504,High_spent_Small_value_payments,426.5597192,0,0.3912,-1.0358,0.5919,-1.0099,1.043 -0x10075,CUS_0xaea6,August,34,824-37-3261,Architect,9185.545,,7,6,22,4,"Student Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",16.04957098,13.76269413,11.91,4,Standard,2286.785887,22.56665751,9 Years and 10 Months,Yes,29.99716518,,Low_spent_Medium_value_payments,248.7105654,0,-0.3384,-0.8945,1.7988,-0.7608,-0.1629 -0x10081,CUS_0x3059,August,26,019-53-5460,Engineer,15671.96,1400.996667,10,5,35.06745738,2,"Debt Consolidation Loan, and Mortgage Loan",45.2801303,22.79346833,2.43,10,Bad,2289.072993,32.86826907,13 Years and 3 Months,Yes,13.24337105,78.92680495,Low_spent_Small_value_payments,311.2092027,0,-0.7374,0.1553,0.2251,-0.5665,-1.0554 -0x1008d,CUS_0xb804,August,48,005-21-1851,Musician,15649.26,,4,6,8,1,Personal Loan,,1,1.15,6,Good,195.62,38.86776354,,No,7.85394641,88.01244381,Low_spent_Small_value_payments,336.1441098,0,-1.3734,1.5401,1.2448,-0.3196,-1.7846 -0x10099,CUS_0x48e6,August,55,248-30-7023,Writer,52042.32,3780.98806,3,7,7,1,Not Specified,20.39776961,,6.86,0,_,1061.255681,29.42155095,22 Years and 4 Months,No,389.1598077,102.3214545,High_spent_Medium_value_payments,535.2201885,0,0.657,0.304,-0.8179,-0.2789,-1.075 -0x100a5,CUS_0x4c43,August,38,265-13-5943,Architect,104158.68,8387.89,4,3,14.28836175,2,"Auto Loan, Auto Loan, and Home Equity Loan",16.19232116,14,13.78,0,Standard,330.7,27.63822066,29 Years and 11 Months,No,225.653802,,Low_spent_Medium_value_payments,241.0319039,0,0.4621,0.0134,2.3857,-0.0969,-1.1013 -0x100b1,CUS_0x7197,August,44,727-45-8294,Musician,48824.14,,8,4,16,3,"Payday Loan, Debt Consolidation Loan, and Student Loan",22.90729494,15,10.55,5,Standard,651.27,28.51851222,18 Years and 11 Months,NM,496.375963,,Low_spent_Small_value_payments,245.0979264,0,-0.8209,0.0438,0.5454,-1.4772,0.1796 -0x100bd,CUS_0x34e9,August,45,282-35-3231,Manager,34323.86,3113.321667,10,8,28,2,"Not Specified, and Personal Loan",29.93345202,23.51378594,5.07,9,Bad,1490.82546,29.67552717,7 Years and 6 Months,Yes,34.40873143,60.63561652,High_spent_Large_value_payments,456.2878187,0,-0.053,0.3441,1.1348,0.8242,0.7596 -0x100c9,CUS_0x3afc,August,37,#F%$D@*&8,_______,120389.55,,1,7,7.288361749,0,,0,3,3.37,1,_,846.65,26.53333738,27 Years and 11 Months,No,0,10419.93746,Low_spent_Medium_value_payments,958.0305243,0,0.2974,-0.4488,-1.6349,1.2015,2.161 -0x100d5,CUS_0x1911,August,39,#F%$D@*&8,_______,66509.88,,1,4,3.288361749,0,Not Specified,0,3,0.9,0,Good,398.3223394,24.2233415,19 Years and 5 Months,NM,30.37073526,494.7678393,High_spent_Large_value_payments,712.8182776,0,0.78,0.4787,0.7244,-0.2692,0.3441 -0x100e1,CUS_0x5cdb,August,37,358-85-5659,Lawyer,12338.465,738.2054167,5,5,2,1,Student Loan,,17,13.52,4,Good,352.92,34.367667,32 Years and 3 Months,No,10.21851076,10000,High_spent_Small_value_payments,302.8923858,0,0.0016,0.5334,0.7398,0.8572,-1.4756 -0x100ed,CUS_0x1e76,August,20,600-30-3371,Musician,35361.27,3112.7725,4,6,7,0,,0,2,5.91,5,Good,982.38,33.25465023,,No,0,199.1975554,High_spent_Small_value_payments,372.0796946,0,0.0975,-0.2555,0.8226,-0.8796,-0.4832 -0x100f9,CUS_0x41d5,August,25,525-66-4602,Entrepreneur,17738.09,1384.951779,7,7,22.06745738,5,"Not Specified, Personal Loan, Home Equity Loan, Student Loan, and Not Specified",36.38303216,19,0.63,8,Bad,2511.450954,29.58019139,,Yes,207.5025323,10000,Low_spent_Small_value_payments,199.465883,0,-1.363,-0.4633,-2.4294,1.0555,0.3277 -0x10105,CUS_0x6f2d,August,48,474-41-2078,Lawyer,71503.76,5672.646667,3,4,9,3,"Student Loan, Home Equity Loan, and Credit-Builder Loan",27.35975716,19.17101622,7.37,3,Standard,1391.171033,32.61694239,27 Years and 5 Months,Yes,110.8505841,332.1493158,Low_spent_Small_value_payments,414.2647668,0,0.5011,-0.0176,-1.2741,0.4462,-1.3549 -0x10111,CUS_0x7953,August,45,281-10-4083,_______,46150.65,4052.8875,10,8,21.88954781,6,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Auto Loan",32.81389509,22.9572075,18.71,9,Bad,5520.024292,25.42591417,12 Years and 8 Months,Yes,76886.48344,348.2018217,Low_spent_Small_value_payments,177.9060375,0,-0.4769,1.5256,-1.6323,1.0135,0.5421 -0x1011d,CUS_0xb966,August,27,750-13-9718,Manager,14483.14,,9,5,22,6,"Auto Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Personal Loan",49.73739743,24.17101652,5.73,16,Bad,2194.816765,35.26846521,17 Years and 0 Months,Yes,54.9270727,,Low_spent_Large_value_payments,245.9741339,0,0.5253,-0.054,-0.5317,1.4446,0.8735 -0x10129,CUS_0x375e,August,19,575-48-0526,Entrepreneur,17683.37,,8,8,16.88954781,7,"Personal Loan, Not Specified, Auto Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Not Specified",28.43023804,20.71154549,11.88,11,Standard,2814.105671,26.61432865,7 Years and 2 Months,Yes,1413.400073,48.36815518,Low_spent_Large_value_payments,259.3631068,0,2.2595,-0.0584,-0.357,-0.2095,-0.7992 -0x10135,CUS_0x1096,August,43,228-65-4194,Lawyer,12931.56,,4,4,9,3,"Not Specified, Debt Consolidation Loan, and Home Equity Loan",32.5679047,23.73346492,18.51,3,Standard,823.0332317,27.70974959,21 Years and 4 Months,Yes,20.57915471,105.5666125,Low_spent_Small_value_payments,298.7172328,0,-0.0706,0.7419,-0.7754,0.1595,-0.2798 -0x10141,CUS_0x8dc4,August,39,331-36-8753,Scientist,53225.37,4526.4475,6,7,30,2,"Payday Loan, and Mortgage Loan",27.10429693,17.8522871,13.4,4,_,2333.293972,24.27344997,,NM,81257,107.0060783,High_spent_Medium_value_payments,550.4729541,0,2.6809,-0.0023,1.3117,-0.6316,0.4939 -0x1014d,CUS_0xbc5f,August,22,883-06-0841,Media_Manager,34498.62,3168.885,5,6,1,0,,4.891015246,4,7.21,5,Good,1238.7,38.04908748,27 Years and 3 Months,No,0,252.2154097,!@9#%8,354.6730903,0,1.2607,0.0689,0.1516,-1.4118,-1.7186 -0x10159,CUS_0x9878,August,27,770-90-1146,Manager,72412.74,,5,6,5.288361749,0,Credit-Builder Loan,20.50049347,17.08313664,6.76,4,Standard,891.1919078,37.55550664,,No,31.05332615,741.9710748,Low_spent_Medium_value_payments,556.35256,0,-1.4591,0.1165,1.0356,0.0184,-0.4979 -0x10165,CUS_0x3e7b,August,29,956-13-1252,Lawyer,15648.785,,1,6,2,4,"Student Loan, Student Loan, Student Loan, and Home Equity Loan",,11.39029067,1.99,850,Good,153.9811516,35.87443167,19 Years and 6 Months,No,40.58258195,138.1833451,Low_spent_Small_value_payments,234.2406146,0,1.0838,-0.0165,0.7689,-0.2112,1.3956 -0x10171,CUS_0x485d,August,37,748-22-1056,Lawyer,17678.47,1194.205833,6,6,29,4,"Home Equity Loan, Home Equity Loan, Personal Loan, and Auto Loan",24.57756552,17,12.09,12,Bad,2440.65,36.64340753,10 Years and 6 Months,Yes,31.32115354,,Low_spent_Small_value_payments,219.3377025,0,-0.8729,-0.489,0.4895,1.7729,-0.6596 -0x1017d,CUS_0xabf6,August,39,391-94-1112,Mechanic,37421.88,3060.49,2,4,9,3,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",5.32259953,8,3.14,1307,_,996.3374773,40.75187573,,No,59.18879735,314.5295206,Low_spent_Large_value_payments,243.7765461,0,-1.8241,-0.6193,1.0426,0.1054,0.6231 -0x10189,CUS_0x23b4,August,35,255-74-3717,Developer,68690.08,5588.173333,8,8,19.88954781,9,"Debt Consolidation Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",,26.98642236,3.63,10,_,2273.271291,36.75872115,20 Years and 0 Months,Yes,1704.271518,193.6007943,High_spent_Medium_value_payments,216.6149393,0,0.2238,1.2732,-1.65,0.9938,-0.7277 -0x10195,CUS_0x9974,August,35,112-88-4961,Manager,36130.89,,5,7,20,2,"Payday Loan, and Payday Loan",,10,2.13,6,Standard,1395.65,24.63013131,28 Years and 11 Months,No,32.5897949,55.07268166,High_spent_Large_value_payments,471.6282734,0,1.4384,2.0285,0.7559,-0.5109,-1.2759 -0x101a1,CUS_0x53bf,August,30,855-87-2352,Journalist,19916.14,,6,5,23.06745738,7,"Not Specified, Home Equity Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",,28.68853676,0.9,7,Bad,5194.085566,23.4505661,13 Years and 11 Months,Yes,76.85648948,166.8692945,!@9#%8,183.6217614,0,1.0634,-0.834,-0.1028,2.1311,-0.4221 -0x101ad,CUS_0xa806,August,18,577-56-0449,Musician,35733.63,2883.8025,5,3,11,6,"Personal Loan, Payday Loan, Not Specified, Personal Loan, Personal Loan, and Mortgage Loan",26.34921127,19,11.78,4,Standard,781.34,39.11782073,8 Years and 8 Months,Yes,96.60188431,120.6166362,Low_spent_Large_value_payments,341.1617295,0,0.454,0.6505,-0.6852,0.8314,-0.5392 -0x101b9,CUS_0x7af7,August,36,802-67-7093,Entrepreneur,141025.92,,5,5,9.288361749,0,Mortgage Loan,13.83965554,13,4.32,4,Good,730.5363236,28.94888801,,No,117.5147099,1225.186142,Low_spent_Medium_value_payments,650.9801859,0,-0.4077,-0.0844,-1.1184,0.1192,-0.7135 -0x101c5,CUS_0xb767,August,54,977-86-3066,Media_Manager,176783.92,14754.99333,0,1,2831,2,"Personal Loan, and Payday Loan",7.507701115,8,10.42,6,Good,1315.795738,34.51356968,32 Years and 4 Months,No,262.0930502,1945.392642,Low_spent_Small_value_payments,,0,-0.2476,-0.2594,-0.7207,1.5047,-0.2027 -0x101d1,CUS_0x3752,August,38,466-47-3467,Writer,98874.63,,6,5,12,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",,16,10.08,6,Good,681.2549958,21.65476613,31 Years and 4 Months,No,325.2833888,1112.692773,Low_spent_Small_value_payments,,0,-0.1549,0.8634,0.321,-1.3565,1.1979 -0x101dd,CUS_0x1358,August,22,967-90-7262,Teacher,59304.2,,10,10,24,3,"Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",54.99357003,29.02560631,2.47,16,Bad,2230.462687,28.25358622,13 Years and 0 Months,Yes,54454,430.309851,Low_spent_Small_value_payments,280.0165338,0,-1.0338,0.6692,0.6271,-0.238,-0.0469 -0x101e9,CUS_0x9d64,August,28,706-23-5738,Accountant,116114.76,9541.23,5,3,18,0,,,10,9.96,7,Standard,37.71,36.45815305,16 Years and 4 Months,Yes,0,1178.440329,Low_spent_Small_value_payments,65.68267087,0,0.8904,-0.5831,-1.6472,0.3789,0.6067 -0x101f5,CUS_0x3382,August,80,835-49-5730,Journalist,14799.91,,1,5,8,0,,4.727301221,6,9.78,5,Good,385.3518803,32.18629775,21 Years and 3 Months,No,0,71.98636959,Low_spent_Medium_value_payments,364.2486966,0,-0.6357,1.2195,2.1883,-0.604,-0.6167 -0x10201,CUS_0xc6d1,August,35,069-44-1610,Doctor,9548.815,,4,3,107,2,"Debt Consolidation Loan, and Home Equity Loan",18.07300569,13,8.8,5,_,1651.16,32.97294745,17 Years and 6 Months,Yes,8.693717318,36.49701147,Low_spent_Large_value_payments,278.3827295,0,0.8855,-0.3682,1.7163,0.4275,0.5938 -0x1020d,CUS_0x503f,August,37,912-49-8079,Musician,18180.43,,9,9,18.06745738,9,"Auto Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Student Loan, Personal Loan, and Home Equity Loan",30.66189804,,8.6,14,Bad,2552.700954,24.02532706,14 Years and 6 Months,Yes,116.0815943,26.27898319,High_spent_Medium_value_payments,253.4227179,0,-0.9009,-1.2366,-0.2371,0.1561,-1.9808 -0x10219,CUS_0x2dd5,August,53,142-91-7890,Manager,76476.66,6536.055,1,2,9.288361749,100,"Not Specified, and Auto Loan",0,4,-1.22,3,Good,881.435398,35.42507845,21 Years and 0 Months,No,108.9613683,12107.78592,Low_spent_Medium_value_payments,507.4921368,0,-0.8655,0.7572,1.4324,0.4971,-0.3138 -0x10225,CUS_0xb3b,August,23,763-19-2217,Writer,38714.36,3222.196667,6,8,25,6,"Student Loan, Payday Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",24.06869348,17.36948599,6.58,8,Bad,3734.336187,27.78692654,,NM,105.58041,140.0504989,High_spent_Small_value_payments,336.5887578,0,0.9688,0.522,0.134,-0.7264,-1.7952 -0x10231,CUS_0x9173,August,31,852-21-2835,Manager,16923.73,,10,7,20.06745738,9,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Mortgage Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",29.30353101,19,25.76,8,Bad,3105.910954,31.35089143,3 Years and 8 Months,Yes,93.94932532,,Low_spent_Small_value_payments,160.5539816,0,-0.0975,-1.3487,0.792,0.5808,-0.8309 -0x1023d,CUS_0x4da1,August,49,562-85-5806,Accountant,33797,,2,3,3.288361749,2,"Auto Loan, and Personal Loan",11.85557806,12,3.61,4,_,415.4479224,34.42464273,24 Years and 5 Months,No,39.77565866,620.4578757,High_spent_Small_value_payments,333.3786121,0,-0.4565,0.2759,2.2579,-0.318,0.0466 -0x10249,CUS_0x62cd,August,36,240-82-8070,Lawyer,33206.26,2519.188333,0,3,7,1,Debt Consolidation Loan,10.28149259,12,9.2,3,_,1027.77,30.01508358,26 Years and 5 Months,No,17.96255597,46.17751812,High_spent_Small_value_payments,447.7787592,0,-1.3219,0.4095,1.4257,0.1611,0.3786 -0x10255,CUS_0x98b5,August,42,699-05-8261,_______,117878.55,,3,3,5.288361749,2,"Home Equity Loan, Auto Loan, and Auto Loan",7.380653132,8,7.72,0,Good,84.22,27.02175307,,No,259.2369983,500.7697207,!@9#%8,883.551992,0,-1.1405,2.5228,-1.2333,-1.8464,0.2718 -0x10261,CUS_0x7df0,August,23,575-37-4253,Doctor,16520.79,,3,1069,11,1,Personal Loan,0,0,8.57,2,_,489.96,30.51262922,15 Years and 11 Months,No,13.63552717,115.6357449,Low_spent_Small_value_payments,271.801978,0,0.1292,-0.1446,-0.5877,1.913,1.0095 -0x1026d,CUS_0x3e83,August,35,661-87-8665,Architect,33857.41,,3,3,20,4,"Not Specified, Payday Loan, Home Equity Loan, and Credit-Builder Loan",28.05064383,19,17.52,5,_,899.22,27.68618343,18 Years and 2 Months,NM,89.43153714,68.12073935,Low_spent_Large_value_payments,380.7928068,0,-0.798,-0.9447,0.5766,1.599,2.2856 -0x10279,CUS_0x5fe6,August,32,121-06-9658,Mechanic,29349,,7,6,17,2,"Payday Loan, and Mortgage Loan",29.01258883,19,9.88,2,Standard,1419.52,24.94000022,20 Years and 2 Months,No,45.31352648,84.80217399,!@9#%8,404.1592995,0,0.0807,0.3747,-0.6535,0.0203,-0.1198 -0x10285,CUS_0xb66f,August,25,886-59-6339,Doctor,9748.985,,10,9,25,2,"Personal Loan, and Personal Loan",30.74406528,14.88438442,8.47,15,Standard,2468.508192,31.9802562,18 Years and 10 Months,Yes,16.09692534,63.51297765,Low_spent_Small_value_payments,271.4316387,0,0.2316,1.7666,-0.4576,-0.2895,0.3228 -0x10291,CUS_0x9b4f,August,32,074-24-4830,Teacher,93352.86,,5,3,9,1,Mortgage Loan,0.337019766,4,5.08,5,Good,483.78,26.95706411,17 Years and 6 Months,No,51.76975259,475.0911685,High_spent_Small_value_payments,496.0795789,0,-0.409,-1.2516,-1.6326,0.7858,-0.3416 -0x1029d,CUS_0x9620,August,37,337-56-9724,Architect,8242.335,,8,9,30.95700519,6,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Auto Loan",43.15501624,26.43913942,9.9,13,Bad,3207.870017,33.77029471,19 Years and 2 Months,Yes,73516.48344,,Low_spent_Large_value_payments,216.1865783,0,0.1994,-0.8002,1.0165,-2.0609,0.1144 -0x102a9,CUS_0x1ffc,August,35,808-28-9660,Teacher,33089.51,3019.459167,4,3,10,1,Not Specified,,10,9.32,4,Standard,557.02,28.03164819,27 Years and 9 Months,Yes,15.65412884,43.78067084,High_spent_Medium_value_payments,492.511117,0,0.7448,-0.4742,2.2223,1.6639,-1.9174 -0x102b5,CUS_0xa3bf,August,30,951-65-0782,Scientist,21551.57,,4,7,7.067457376,3,"Credit-Builder Loan, Personal Loan, and Personal Loan",,20.59400807,6.07,0,Good,1348.744573,28.19887235,16 Years and 0 Months,NM,49.27280925,28.74604677,High_spent_Medium_value_payments,322.7572727,0,-0.2511,0.2638,0.7587,1.1421,-1.2362 -0x102c1,CUS_0x797,August,19,691-34-0849,Developer,42846.39,,8,6,22,7,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",22.26460251,19,5.44,10,Standard,1745.53,32.8452275,12 Years and 9 Months,Yes,146.5273031,75.54641176,High_spent_Large_value_payments,384.9795351,0,-1.4835,-0.8408,0.1257,-0.8589,0.9266 -0x102cd,CUS_0x501d,August,41,381-39-3121,Accountant,31236.52,,8,9,30.88954781,7,"Student Loan, Not Specified, Mortgage Loan, Not Specified, Credit-Builder Loan, Student Loan, and Personal Loan",24.89225151,18,20.01,14,Bad,3596.37,38.81139833,10 Years and 8 Months,Yes,1483.876369,30.50917899,High_spent_Medium_value_payments,303.4887036,0,1.2442,-1.6068,-0.8329,-1.4479,-0.6669 -0x102d9,CUS_0xb795,August,27,321-16-3378,Manager,39343.02,3049.585,4,4,4.288361749,2,"Mortgage Loan, and Student Loan",24.08116765,20,8.04,6,Standard,347.48,39.37883946,28 Years and 9 Months,No,64.28243643,552.8112409,Low_spent_Large_value_payments,377.8022837,0,-0.3184,1.4273,1.3479,-1.0563,-1.1593 -0x102e5,CUS_0xb1aa,August,33,276-61-0743,Writer,60243.46,,6,5,16,3,"Personal Loan, Payday Loan, and Debt Consolidation Loan",,11,0.61,8,Standard,854.02,37.31990028,22 Years and 4 Months,No,76.82031354,212.9457879,Low_spent_Medium_value_payments,497.2627319,0,0.4851,0.4522,1.1266,-0.2875,-0.6016 -0x102f1,CUS_0x8aff,August,38,641-58-7727,_______,145994.28,12333.19,3,6,7,3,"Payday Loan, Auto Loan, and Home Equity Loan",,18,4.92,2,Standard,896.1,27.21703326,27 Years and 3 Months,Yes,272.5895259,275.538068,High_spent_Large_value_payments,925.1914061,0,1.6071,1.2264,0.83,-1.0695,-0.8225 -0x102fd,CUS_0x9ed1,August,48,397-13-1501,Journalist,15641.73,,1,4,8,4,"Home Equity Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",0.132190551,4,11.73,3,Good,1260.541258,38.17074149,21 Years and 11 Months,No,30.88270742,51.06547607,Low_spent_Medium_value_payments,323.67516,0,1.4233,-0.9221,-0.1278,2.3923,0.0766 -0x10309,CUS_0xc2b7,August,36,740-55-3863,Lawyer,8892.36,,8,595,34.88954781,8,"Home Equity Loan, Auto Loan, Payday Loan, Student Loan, Student Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",23.53020884,,29.89,13,Bad,3167.155751,28.95912804,10 Years and 11 Months,Yes,1359.161465,,Low_spent_Small_value_payments,250.5499218,0,1.0057,2.3882,-0.7385,-0.4824,0.3835 -0x10315,CUS_0x1cc4,August,47,541-42-6554,Lawyer,45034.34,4021.861667,4,7,8,2,"Home Equity Loan, and Mortgage Loan",13.74190554,13,6.3,0,Good,33.61819546,26.65762741,23 Years and 5 Months,No,33977,156.9942692,High_spent_Medium_value_payments,464.3767869,0,-1.2331,1.4266,0.2196,-1.3567,1.5187 -0x10321,CUS_0x944c,August,26,768-90-2112,Scientist,83206.72,,10,10,25.88954781,7,"Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Personal Loan, and Home Equity Loan",,25.90112532,3.81,6,Bad,1530.225684,32.59603714,7 Years and 2 Months,Yes,1795.968465,230.7512315,Low_spent_Medium_value_payments,259.3395552,0,0.7271,-1.0993,-1.7164,-0.3433,-0.3855 -0x1032d,CUS_0x897f,August,24,821-96-4140,_______,57136.44,4954.37,9,6,27,6,"Payday Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Student Loan, and Personal Loan",25.47361212,21,25.89,11,Bad,3811.31,24.95969129,2 Years and 4 Months,Yes,234.1594872,200.9699166,High_spent_Medium_value_payments,310.3075962,0,-0.8367,-1.9917,-0.05,0.5307,-0.7566 -0x10339,CUS_0xa80,August,46,264-57-8681,Accountant,17938268,1319.825833,7,4,10,7,"Not Specified, Credit-Builder Loan, Student Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",24.99724006,19,7.07,6,Standard,119.94,27.58786453,10 Years and 2 Months,Yes,64.32450334,130.6090842,Low_spent_Medium_value_payments,217.0489958,0,0.6433,-0.7447,2.0695,1.6412,0.445 -0x10345,CUS_0x68d5,August,24,856-14-7201,Entrepreneur,130402.88,,4,5,6.288361749,0,Auto Loan,,6,12.81,3,Good,856.0059942,35.80420164,,No,686.9800418,995.6556557,High_spent_Small_value_payments,782.8056733,0,1.4311,-0.7319,0.4915,-0.374,0.3926 -0x10351,CUS_0x4b41,August,48,467-48-3022,Musician,121486.92,10314.91,3,5,12,3,"Home Equity Loan, Student Loan, and Student Loan",6.482958326,5,1.95,4,Good,605.65,31.50676905,16 Years and 9 Months,No,217.1600114,135.3505856,High_spent_Large_value_payments,918.980403,0,0.8161,-1.1116,0.3422,-2.6575,0.293 -0x1035d,CUS_0x3d82,August,45,980-61-8289,Media_Manager,21642.845,,4,4,8,3,"Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",2.401247524,5,11.62,3,Good,1145.77,37.13383321,18 Years and 3 Months,No,39.01525509,50.0990753,High_spent_Small_value_payments,342.1427113,0,-1.3223,0.624,0.4112,0.6244,-1.1427 -0x10369,CUS_0x4c62,August,39,149-32-6460,Doctor,35586.4,2796.533333,5,5,6,6,"Personal Loan, Auto Loan, Student Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",,17,14.68,10,Standard,1355.24,29.60292799,18 Years and 3 Months,Yes,137.655894,,Low_spent_Large_value_payments,178.9279644,0,-0.4167,0.6526,-0.4108,-0.337,0.5661 -0x10375,CUS_0x4a2b,August,37,226-58-1620,Journalist,31230.98,,6,4,13,3,"Payday Loan, Auto Loan, and Payday Loan",13.04429713,12.15147134,9.71,8,Standard,754.8269937,24.72004783,8 Years and 0 Months,Yes,67.11533198,125.5160135,Low_spent_Medium_value_payments,368.3268212,0,1.5265,-0.7624,-1.9842,-1.6146,0.0239 -0x10381,CUS_0x9586,August,21,510-43-4054,Manager,8967.46,,8,7,17,5,"Personal Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Student Loan",35.29592649,16,28.66,10,Bad,4303,28.9199331,10 Years and 8 Months,Yes,34.45915838,39.35475656,Low_spent_Small_value_payments,314.6149184,0,0.8485,-1.0479,-0.9076,-1.2048,-0.4331 -0x1038d,CUS_0x9556,August,43,328-44-4511,Accountant,73394.12,,9,9,23,5,"Personal Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",,17,19.85,11,_,2704.68,29.90696353,8 Years and 8 Months,Yes,168.1767811,107.9166209,High_spent_Small_value_payments,580.7242646,0,0.1013,-1.2913,-1.2852,-0.0642,-2.2528 -0x10399,CUS_0x55c7,August,32,617-11-1965,Accountant,33643.54,,4,6,20,860,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",19.4609894,17,8.56,8,Standard,1300.7,33.24611472,15 Years and 11 Months,Yes,70.53606363,195.863353,High_spent_Small_value_payments,298.4634167,0,-0.5427,-0.1753,0.2168,-1.913,-0.004 -0x103a5,CUS_0x725f,August,33,112-81-8919,Architect,17044.23,,6,9,34,3,"Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",38.07948414,28.10973624,3.33,11,Bad,2660.050404,28.12421682,14 Years and 5 Months,NM,31.74690149,23.09987124,High_spent_Medium_value_payments,362.2884773,0,1.2019,0.1712,-0.6496,-1.3741,-1.4301 -0x103b1,CUS_0x7040,August,43,317-93-9186,Entrepreneur,30547.98,,7,3,5,3,"Personal Loan, Personal Loan, and Payday Loan",22.45392328,19,2.54,4,Standard,687.69,34.09840456,24 Years and 2 Months,Yes,55.52452793,64.35081779,Low_spent_Medium_value_payments,395.4911543,0,1.4865,2.6995,-0.5649,-0.3752,0.6269 -0x103bd,CUS_0x2c1a,August,42,502-32-2431,Journalist,8609.79,511.4825,8,8,28.88954781,6,"Home Equity Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Student Loan, and Payday Loan",30.7354174,23,24.1,7,Bad,3688.7,38.05695507,6 Years and 10 Months,NM,1358.314551,33.3937959,!@9#%8,245.109822,0,-0.2742,-0.1369,0.6323,1.8336,-0.5731 -0x103c9,CUS_0x63f3,August,34,079-74-4911,Architect,14353.89,,10,9,24.88954781,6,"Credit-Builder Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",,18.75482682,17.4,11,Bad,3598.672058,32.71228384,2 Years and 8 Months,Yes,1394.541416,,Low_spent_Medium_value_payments,269.6211391,0,-0.6667,-0.809,0.3205,-1.3857,-0.5296 -0x103d5,CUS_0x9b37,August,40,642-81-6284,_______,35865.45,,6,5,7,0,,9.086343464,9,3.27,7,Standard,1270.06,24.07401575,18 Years and 5 Months,No,0,33.27987056,High_spent_Large_value_payments,479.3988794,0,-0.6703,0.0821,-0.3734,-0.1594,1.2126 -0x103e1,CUS_0x4fcc,August,48,448-43-9417,Engineer,19339.08,1729.59,0,3,11,2,"Student Loan, and Not Specified",,8,10.64,3,Good,150.14,27.34071145,24 Years and 8 Months,No,28.4989489,76.7383698,Low_spent_Small_value_payments,357.7216813,0,-2.046,0.776,-0.2151,0.3174,-0.0906 -0x103ed,CUS_0x509,August,56,545-56-4628,Engineer,21596.24,1962.686667,4,6,5.288361749,2,"Home Equity Loan, and Mortgage Loan",4.1320146,6,9.06,4,_,118.6026879,35.31873493,16 Years and 9 Months,No,34.93664091,,Low_spent_Small_value_payments,232.5997234,0,-1.3228,1.5399,-0.1039,-2.1537,0.774 -0x103f9,CUS_0x3f49,August,56,860-62-7728,Accountant,123375.18,,2,5,6.288361749,4,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",,0,8.99,4,Good,31.28632143,35.64968623,23 Years and 4 Months,No,260.1840192,602.6972022,High_spent_Medium_value_payments,854.7187105,0,0.1555,0.9311,-1.1044,-1.5178,1.0761 -0x10405,CUS_0x5a59,August,23,346-22-5248,Engineer,17347.04,,6,8,15,5,"Home Equity Loan, Not Specified, Personal Loan, Not Specified, and Personal Loan",13.05228121,10.65622977,4.62,8,Standard,2986.149041,33.58079785,13 Years and 6 Months,Yes,38.51620311,,Low_spent_Small_value_payments,245.6953757,0,-0.7241,0.9623,0.1894,0.248,-1.9044 -0x10411,CUS_0x8b90,August,36,236-26-0276,Manager,102343.68,8736.64,6,5,10,4,"Personal Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",28.66083643,19,11.17,6,Standard,450.66,40.26711153,16 Years and 4 Months,Yes,240.3514811,190.1671088,High_spent_Large_value_payments,683.1454101,0,-0.9708,0.225,-1.2258,1.4545,0.9637 -0x1041d,CUS_0x24f9,August,31,323-09-1618,Manager,15828.15,,8,5,18,5,"Debt Consolidation Loan, Payday Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",12.54855123,13,18.23,8,Standard,1333.84,39.75794563,18 Years and 8 Months,Yes,35.23571969,121.4271195,Low_spent_Medium_value_payments,271.3384108,0,1.8809,0.3592,-1.858,0.4389,-1.8096 -0x10429,CUS_0x7745,August,25,154-95-3212,_______,60983.72,5162.976667,1,7,6,1,Auto Loan,0.93897361,0,11.18,3,Good,532.715754,27.67335411,27 Years and 2 Months,No,34.2282674,265.3439275,Low_spent_Large_value_payments,486.7254718,0,-0.2238,-0.1532,0.7834,0.5715,1.0413 -0x10435,CUS_0xa6a7,August,26,778-76-2369,Scientist,17816.75,1657.729167,10,7,30.06745738,9,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Auto Loan",,26.63079536,1.6,17,Bad,2987.944201,31.61667064,16 Years and 4 Months,Yes,68.75110038,,Low_spent_Small_value_payments,175.9946723,0,1.6971,1.518,1.6059,-0.2747,-0.0466 -0x10441,CUS_0xbf03,August,44,889-89-7508,Doctor,30231.09,2610.2575,3,6,3,3,"Student Loan, Debt Consolidation Loan, and Home Equity Loan",0,1,4.09,2,Good,1263.11,38.10959243,33 Years and 8 Months,No,55.943907,65.31443873,High_spent_Large_value_payments,379.7674043,0,0.5169,0.5046,-0.5885,0.6971,2.041 -0x1044d,CUS_0x806f,August,31,370-38-5926,Journalist,154352,,1,7,8,2,"Student Loan, and Home Equity Loan",0.771207086,4,2.83,3,Good,601.76,28.65145205,,No,47449,860.9124961,Low_spent_Medium_value_payments,455.9166306,0,0.4299,-2.0673,1.3431,0.9721,-0.9854 -0x10459,CUS_0x9c08,August,31,084-92-7120,Developer,139582.6,11353.88333,4,7,3.288361749,2,"Personal Loan, Credit-Builder Loan, and Auto Loan",,8,4.64,7,Good,976.8563904,35.53386731,17 Years and 10 Months,No,300.07611,822.9712092,High_spent_Medium_value_payments,743.0507199,0,-0.9033,0.9896,-1.1599,-0.7317,-0.2935 -0x10465,CUS_0x4d7e,August,44,078-92-8871,Developer,18293.52,,6,5,17.06745738,6,"Not Specified, Not Specified, Payday Loan, Student Loan, Mortgage Loan, and Student Loan",25.45132936,17,23.53,14,Bad,3169.330954,40.20404995,9 Years and 9 Months,Yes,46.50896766,19.86203085,High_spent_Medium_value_payments,320.3547135,0,1.4331,0.442,0.8026,0.4137,-1.7394 -0x10471,CUS_0x80b4,August,31,638-28-1217,Journalist,51371.13,,9,5,26.06745738,8,"Credit-Builder Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",46.95915078,25.86964443,6.96,10,_,2951.99063,40.72094944,6 Years and 0 Months,Yes,225.5710755,,Low_spent_Small_value_payments,220.3959574,0,0.0506,-0.7946,0.1125,-2.2635,-0.0721 -0x1047d,CUS_0x243e,August,41,807-09-3439,Accountant,14542.23,,7,5,17.06745738,100,"Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",31.76852335,15,15.08,13,Bad,1705.870954,28.85770623,16 Years and 8 Months,Yes,18.26578153,100.0996848,Low_spent_Medium_value_payments,241.9994958,0,-0.4186,1.2734,0.6137,1.945,-0.3749 -0x10489,CUS_0x7071,August,23,331-61-1751,Lawyer,34094.94,,8,5,16.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Not Specified",42.77207037,20.16984341,28.73,12,Bad,3225.207286,26.04908514,11 Years and 11 Months,Yes,169.8552986,,High_spent_Small_value_payments,148.574685,0,0.4882,1.0497,1.3091,-0.1654,0.524 -0x10495,CUS_0xa106,August,25,026-50-1269,Manager,30470.59,,3,5,12,100,"Auto Loan, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0.778062626,5,11.82,3,Good,495.8592985,33.76281696,25 Years and 11 Months,No,82.25597157,136.7896758,Low_spent_Medium_value_payments,325.5738786,0,-0.7166,0.3921,0.687,1.8083,-1.0839 -0x104a1,CUS_0xae70,August,41,948-24-6997,Journalist,67942.9,,5,3,19,6,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",28.29869386,21.76557079,11.98,5,Standard,1138.632601,33.27188792,14 Years and 6 Months,Yes,236.5161818,82.45756428,High_spent_Medium_value_payments,516.8170873,0,0.3265,0.7748,-0.9972,1.0784,1.5129 -0x104ad,CUS_0xac04,August,34,250-68-8351,Mechanic,71508.27,5994.0225,7,6,13,4,"Payday Loan, Student Loan, Not Specified, and Not Specified",,16,10.47,4,Standard,1266.04,40.28624009,26 Years and 2 Months,Yes,132.0968469,54.91811006,High_spent_Large_value_payments,652.387293,0,0.8668,-0.7572,0.572,-0.1735,-1.3223 -0x104b9,CUS_0x240c,August,37,481-23-2602,Manager,32364.58,,9,10,19.06745738,5,"Not Specified, Home Equity Loan, Personal Loan, Student Loan, and Personal Loan",45.05215452,20.65949413,17.15,11,Bad,3110.066427,26.04722361,9 Years and 10 Months,Yes,16581,193.5837233,Low_spent_Large_value_payments,193.7721234,0,2.0803,-0.6413,2.4187,0.329,-1.1899 -0x104c5,CUS_0x3672,August,37,398-41-4421,Mechanic,70709.04,,7,6,19.28836175,6,"Home Equity Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Not Specified",19.93947555,17,18.68,10,Standard,805.64,34.25545388,,Yes,260.8835124,581.5493968,Low_spent_Medium_value_payments,416.7465518,0,-0.383,-1.4161,-1.5709,-1.0094,-1.3308 -0x104d1,CUS_0x9afb,August,25,027-88-1476,_______,40341.16,,5,1436,15,7,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",,15.89013215,15.34,1202,Standard,2600.682096,34.24253624,18 Years and 6 Months,Yes,164.4472593,76.45406861,High_spent_Small_value_payments,372.0750054,0,1.5998,1.8091,-0.3817,-0.3133,-0.2094 -0x104dd,CUS_0x1155,August,41,189-76-0870,Developer,158483.48,12927.95667,2,1,1507.288362,2,"Home Equity Loan, Payday Loan, and Personal Loan",0,3,2.65,1442,Good,409.7725771,30.54188628,28 Years and 3 Months,NM,347.5354596,1429.16439,Low_spent_Large_value_payments,344.4600594,0,-1.2897,-0.8296,1.8613,0.5685,1.0611 -0x104e9,CUS_0xb1f8,August,47,410-81-2659,Writer,95858.31,,3,6,6,2,"Auto Loan, and Not Specified",,8,6.89,3,_,345.07,36.70808038,25 Years and 0 Months,No,149.8009201,,!@9#%8,759.7905322,0,0.3424,-1.774,0.2177,0.3931,2.1841 -0x104f5,CUS_0x145c,August,80,448-30-5081,Writer,41588.74,3201.728333,5,3,7,2,"Debt Consolidation Loan, and Personal Loan",7.741246347,7.124313761,8.95,6,Good,681.6869573,37.95536601,26 Years and 11 Months,No,61.94286576,48.67601884,High_spent_Medium_value_payments,459.5539487,0,-0.9472,-0.2686,-0.499,-1.9519,1.0624 -0x10501,CUS_0x6582,August,30,708-36-1676,Manager,75299.36,6367.946667,3,3,9,0,,,3.539512286,1.16,6,Good,1158.10305,38.85472438,,No,0,112.9338717,High_spent_Medium_value_payments,773.860795,0,0.1732,-0.4119,0.1732,0.3219,-0.3806 -0x1050d,CUS_0x8b02,August,28,512-93-1332,Accountant,108462.87,9313.5725,0,5,11,4,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",7.695433663,9.584898704,7.01,2,Good,38.0882474,33.47491446,18 Years and 2 Months,No,349.9197478,480.0562103,Low_spent_Medium_value_payments,381.3812918,0,-2.011,1.7195,-0.9427,0.145,-0.8273 -0x10519,CUS_0x472e,August,34,544-51-0603,Architect,81969.24,6707.77,210,8,15,4,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",22.94167962,,10.56,2348,_,1811.392274,32.49322807,20 Years and 6 Months,Yes,188.5425068,972.747346,Low_spent_Small_value_payments,,0,-1.3512,0.6979,0.8111,0.1389,-0.6515 -0x10525,CUS_0x3fee,August,31,#F%$D@*&8,Media_Manager,87095.61,,0,670,6.288361749,2,"Credit-Builder Loan, Student Loan, and Payday Loan",8.330500764,9,-0.23,4,Good,877.9971343,33.16056865,33 Years and 4 Months,No,158.7098857,509.7774116,High_spent_Large_value_payments,706.4437929,0,-1.1593,-1.2111,-1.1275,-1.1378,-1.0056 -0x10531,CUS_0xac54,August,32,077-81-3204,Accountant,35149.91,2703.159167,4,6,15,0,,12.07046999,9,8,1,Standard,476.09,38.82680537,22 Years and 0 Months,Yes,0,97.39083288,Low_spent_Small_value_payments,462.9250838,0,0.6158,-1.5786,-1.154,0.9446,-0.6956 -0x1053d,CUS_0x2200,August,45,932-35-5942,Musician,41647.6,3411.633333,9,8,33,5,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",,23.90438839,10.66,12,Bad,1454.6885,33.15135335,15 Years and 4 Months,Yes,170.4329237,212.9848566,Low_spent_Small_value_payments,247.745553,0,0.4597,2.3204,-1.6105,-0.8553,0.2057 -0x10549,CUS_0xba5,August,47,745-22-0093,Teacher,34343.83,3144.985833,3,5,16,0,,25.71754876,19,13.37,1,Standard,319.99,37.68288629,23 Years and 9 Months,NM,0,62.71671098,High_spent_Small_value_payments,511.7818724,0,-0.2292,-0.0975,0.5109,-1.6238,-1.3795 -0x10555,CUS_0x99b,August,20,373-66-6828,Media_Manager,71522.2,6107.183333,8,8,29.95700519,6,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Student Loan",,19,31.04,13,Bad,3907.390954,35.18262213,13 Years and 10 Months,Yes,1567.903518,,Low_spent_Medium_value_payments,209.8621826,0,0.4319,-0.9626,-0.2257,1.7478,-1.2687 -0x10561,CUS_0x9ae,August,33,121-14-9806,Engineer,14093.08,,4,3,23.06745738,4,"Payday Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",25.34559906,16.85663321,7.3,9,_,1674.853648,25.01566312,15 Years and 0 Months,Yes,42.11098305,144.1948575,Low_spent_Small_value_payments,201.6162048,0,1.1428,-0.1083,1.5161,0.9521,-0.424 -0x1056d,CUS_0x849d,August,36,730-96-4622,Media_Manager,174826.76,,5,7,10.28836175,2,"Not Specified, and Payday Loan",15.90425257,,15.5,0,Good,819.92,38.38483721,,No,279.604894,,Low_spent_Medium_value_payments,385.9053078,0,0.1561,1.0441,-0.2721,-0.9533,0.1336 -0x10579,CUS_0x7e10,August,37,924-66-5952,Manager,15509.88,,9,6,24.06745738,6,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Student Loan",42.7037461,22.49486885,18.16,10,Standard,3133.172289,37.52068317,10 Years and 9 Months,Yes,74.04113293,137.1587042,Low_spent_Small_value_payments,167.8288749,0,0.2061,0.3724,0.1624,0.5355,-0.6054 -0x10585,CUS_0x9d83,August,22,466-27-9258,Doctor,53627.01,,10,8,30,7,"Payday Loan, Personal Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Auto Loan, and Student Loan",,24.16477114,19.73,12,Bad,4166.268695,25.11995175,5 Years and 8 Months,Yes,186.1061962,,Low_spent_Large_value_payments,176.1690008,0,-1.7528,0.0604,0.0554,-0.1243,1.1163 -0x10591,CUS_0x1108,August,25,183-66-5001,Accountant,117499.47,,4,5,8,0,,9.658372024,9.753038688,8.32,4,Good,377.3932097,30.61812257,30 Years and 8 Months,No,0,,Low_spent_Medium_value_payments,923.6642729,0,0.1899,0.6019,-0.1968,-1.2885,0.695 -0x1059d,CUS_0x4ee4,August,31,498-04-7341,Mechanic,36210.3,3029.525,9,8,31.06745738,4,"Auto Loan, Credit-Builder Loan, Mortgage Loan, and Auto Loan",40.04719201,20.26084822,4.18,8,_,2186.996319,29.87416837,19 Years and 4 Months,Yes,106.0394772,255.2442577,Low_spent_Medium_value_payments,194.9484771,0,-1.1709,0.7785,-1.4807,1.0062,-2.271 -0x105a9,CUS_0x8cdf,August,39,691-71-2474,Lawyer,100831.95,8599.6625,0,1,2.288361749,2,"Personal Loan, Auto Loan, and Student Loan",0,3,6,6,Good,204.0386652,22.93996823,19 Years and 5 Months,NM,250.5993115,11714.88635,!@9#%8,325.0075136,0,-0.4661,-1.2646,0.2206,-0.5771,0.1774 -0x105b5,CUS_0xb5fd,August,39,178-59-4165,Architect,45051.24,3874.27,6,6,6,3,"Student Loan, Not Specified, and Payday Loan",21.31506909,16,10.3,11,Standard,1014.25,25.24828962,32 Years and 2 Months,Yes,73.94070822,151.3928512,High_spent_Small_value_payments,422.0934405,0,-0.0723,0.0315,0.6249,0.016,0.5806 -0x105c1,CUS_0x3934,August,36,898-97-1307,Writer,14787.01,1524.250833,7,7,34.06745738,5,"Student Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",26.68429658,16,28.77,11,Bad,3198.570954,24.26089075,5 Years and 6 Months,Yes,48.33910161,96.20988192,Low_spent_Medium_value_payments,261.1558119,0,-1.1883,1.2231,-0.2178,1.0411,0.8356 -0x105cd,CUS_0x5012,August,30,#F%$D@*&8,Accountant,82332.68,6814.056667,6,9,20.88954781,7,"Student Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Personal Loan, Student Loan, and Payday Loan",,18.8057627,9.25,10,Standard,1752.264324,25.48235411,6 Years and 9 Months,Yes,1612.838998,235.3039078,Low_spent_Medium_value_payments,418.9326797,0,1.0525,1.4769,0.5744,0.3613,1.1894 -0x105d9,CUS_0x4213,August,37,593-78-2658,Architect,28496.3,2357.691667,7,10,21,2,"Payday Loan, and Mortgage Loan",23.26817249,18,3.06,12,_,1513.71,32.60520807,20 Years and 5 Months,NM,45.56510699,213.829166,Low_spent_Large_value_payments,246.3748937,0,-2.0653,0.5559,-0.1573,1.8541,-0.1557 -0x105e5,CUS_0x9796,August,30,447-03-4867,_______,24813.21,,6,4,18,3,"Student Loan, Debt Consolidation Loan, and Personal Loan",25.41010025,20,2.35,8,_,573.77,31.31835403,29 Years and 3 Months,Yes,31.60556576,10000,Low_spent_Small_value_payments,379.2531217,0,1.0072,0.1329,0.4907,-0.9423,-1.3749 -0x105f1,CUS_0x6aeb,August,42,381-73-9446,Journalist,83669.52,6869.46,8,6,17,3,"Home Equity Loan, Personal Loan, and Auto Loan",,,15.22,4,Standard,1234.99,27.43864522,17 Years and 0 Months,Yes,179.5255377,,Low_spent_Large_value_payments,241.6232926,0,-0.1009,-0.666,0.0053,-0.5609,-1.1406 -0x105fd,CUS_0x5bff,August,31,731-35-0994,Lawyer,119113.71,9694.1425,4,7,3.288361749,2,"Auto Loan, and Personal Loan",0,3,5.85,0,Good,569.5125947,27.15180802,25 Years and 10 Months,No,139.7991968,862.0477632,High_spent_Medium_value_payments,696.1062084,0,1.7796,0.0246,0.1485,1.2765,-0.6292 -0x10609,CUS_0x4899,August,33,175-12-3231,Mechanic,19487.77,1338.980833,6,8,16,6,"Student Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",52.08557694,30.43187098,6.54,12,Bad,2246.111448,35.70847604,10 Years and 9 Months,Yes,97.37555546,96.63005204,Low_spent_Small_value_payments,229.8924758,0,-1.0337,-0.1298,-1.1758,0.2087,3.0811 -0x10615,CUS_0x20a1,August,23,212-13-0498,Manager,82339.36,,7,3,19,4,"Personal Loan, Mortgage Loan, Mortgage Loan, and Not Specified",21.80938124,19,18.2,7,Standard,1017.528049,31.3142758,28 Years and 9 Months,Yes,180.8383382,144.8391819,High_spent_Medium_value_payments,632.5917596,0,0.357,-0.4498,-0.0132,-1.7868,1.389 -0x10621,CUS_0x2f56,August,41,605-63-4252,Engineer,71766.06,5968.505,8,4,1091,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,11,,4,Standard,845.6658845,34.37733404,22 Years and 6 Months,NM,198.3090539,228.3324546,High_spent_Medium_value_payments,447.1758498,0,0.6296,-0.0091,0.9107,0.5449,2.3207 -0x1062d,CUS_0x9ec8,August,33,#F%$D@*&8,Engineer,29020.31,,0,4,6,2,"Personal Loan, and Debt Consolidation Loan",0,4,9.78,4,Good,863.0863014,26.42112627,23 Years and 3 Months,No,31.81302219,77.16868406,High_spent_Medium_value_payments,368.983796,0,-1.5386,0.8296,-0.7791,0.4433,0.4626 -0x10639,CUS_0xbfe0,August,25,413-35-4318,Doctor,7201.155,,8,10,33.95700519,7,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, Not Specified, Personal Loan, Student Loan, and Not Specified",,20.42300801,15.99,11,Bad,2314.325652,39.52590401,13 Years and 11 Months,Yes,1359.348146,54.63600871,Low_spent_Large_value_payments,199.9751011,0,1.0842,0.3292,0.6263,-1.3196,0.0645 -0x10645,CUS_0x4f1a,August,44,380-53-7048,Entrepreneur,7097.015,500.4179167,10,9,23.95700519,7,"Not Specified, Home Equity Loan, Payday Loan, Student Loan, Payday Loan, Mortgage Loan, and Student Loan",,27.3841214,23.84,11,Bad,4567.364931,31.15707929,2 Years and 11 Months,Yes,1357.493903,57.84064922,Low_spent_Small_value_payments,203.6568706,0,0.5286,-0.0704,0.059,1.1203,-1.4833 -0x10651,CUS_0x5815,August,32,172-09-0251,Engineer,12550732,4690.305,7,8,33,2,"Credit-Builder Loan, and Personal Loan",,20.94821103,15.73,6,Bad,2528.291103,36.60094213,12 Years and 3 Months,Yes,67.3343982,,Low_spent_Small_value_payments,82.85616041,0,0.2781,-1.226,0.6568,-0.3473,-1.0905 -0x1065d,CUS_0xb2b8,August,37,708-90-6151,Lawyer,20634.78,1572.565,5,3,18,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Auto Loan",19.22614072,13,17.98,17,Standard,2483.98,32.61511387,7 Years and 11 Months,Yes,55.57719291,10000,High_spent_Medium_value_payments,285.9745284,0,-0.8753,-0.1551,0.1012,-0.2582,1.8112 -0x10669,CUS_0xbe1,August,22,592-80-5739,Architect,55188.52,4876.043333,5,4,8,0,,25.35313889,16,5.84,4,_,299.91,37.47471599,21 Years and 10 Months,NM,0,,High_spent_Medium_value_payments,606.213842,0,0.3841,0.1025,-2.1103,-0.1668,0.1275 -0x10675,CUS_0xc506,August,18,598-44-8256,Architect,10499.56,995.9633333,8,3,11,7,"Student Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Student Loan, Home Equity Loan, and Mortgage Loan",11.27563474,8,7.86,5,_,2469.98,32.94947596,17 Years and 8 Months,Yes,40.53744009,47.62610949,Low_spent_Small_value_payments,301.4327838,0,-0.2845,-0.36,0.6258,-1.3779,-1.5285 -0x10681,CUS_0x6612,August,51,101-38-4991,Doctor,30924.04,2647.003333,4,1,11.28836175,2,"Payday Loan, and Mortgage Loan",,8,6.2,3,Good,1.13561961,22.61404624,28 Years and 8 Months,No,38.00148869,665.8554359,Low_spent_Large_value_payments,281.2757359,0,1.3005,0.5365,0.566,2.2079,-0.6606 -0x1068d,CUS_0x51ff,August,28,022-22-0975,Accountant,158952.84,13056.07,5,5,1.288361749,0,Payday Loan,4.462346276,8,4.03,4,Good,829.69,39.43666995,23 Years and 5 Months,No,87.446663,701.2501545,High_spent_Small_value_payments,1196.847643,0,0.6917,-0.1433,0.8014,0.9149,0.4987 -0x10699,CUS_0xacd9,August,29,#F%$D@*&8,Architect,64840.32,,6,7,18,6,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",15.20807005,9.406529452,13.14,12,Standard,2834.771149,28.71579473,9 Years and 5 Months,Yes,190.8036634,,High_spent_Medium_value_payments,446.5153269,0,0.1842,1.1162,-0.4272,0.1632,-0.6749 -0x106a5,CUS_0xf4d,August,20,855-72-4023,Lawyer,20985.48,1574.79,7,3,9,4,"Payday Loan, Not Specified, Debt Consolidation Loan, and Payday Loan",3.482462901,7,12.37,12,Standard,714.54,27.76290018,12 Years and 3 Months,Yes,38.21648467,10000,High_spent_Large_value_payments,323.2537825,0,-0.773,0.6453,-0.1572,0.8064,-1.4767 -0x106b1,CUS_0x194f,August,44,254-39-4934,_______,29503.65,,5,5,13.28836175,2,"Not Specified, Home Equity Loan, and Credit-Builder Loan",10.33542296,12,1.09,2,Standard,329.02,37.11867448,21 Years and 6 Months,No,50.98220999,556.5906383,High_spent_Small_value_payments,303.3283627,0,-1.2492,-0.3665,0.3648,0.2773,1.4917 -0x106bd,CUS_0x3854,August,21,774-91-6471,Manager,40100.45,3280.704167,0,4,7,0,,15.03531275,14,7.16,4,Good,821.74,25.01059515,32 Years and 11 Months,No,0,175.7190876,Low_spent_Large_value_payments,422.3513291,0,-0.0881,0.5671,0.2639,0.1442,0.2064 -0x106c9,CUS_0x74fa,August,47,230-43-6105,Entrepreneur,33647.34,,8,5,9,4,"Not Specified, Not Specified, Debt Consolidation Loan, and Mortgage Loan",13.19764662,9,11.07,4,Standard,1152.93,31.34897371,24 Years and 5 Months,NM,102.5575559,118.9902631,High_spent_Medium_value_payments,308.946681,0,-0.8189,0.513,0.0387,0.2223,-2.171 -0x106d5,CUS_0x2f78,August,50,#F%$D@*&8,Entrepreneur,90409.32,,7,5,9,4,"Payday Loan, Mortgage Loan, Payday Loan, and Not Specified",25.07900688,14.6597154,2.17,5,Standard,398.1163639,30.1665624,22 Years and 10 Months,Yes,167.030738,639.5224951,Low_spent_Large_value_payments,239.2577669,0,-0.4282,-0.1273,-2.7556,-0.7441,0.6007 -0x106e1,CUS_0x5543,August,34,819-22-3330,Writer,31225.44,2643.905594,8,5,10.28836175,0,Auto Loan,13.96055958,13,5.42,6,Standard,150.49,33.83800766,23 Years and 3 Months,No,155.7477115,746.2500092,Low_spent_Small_value_payments,215.5661466,0,-0.4778,-0.3831,0.3017,0.8898,0.5913 -0x106ed,CUS_0x146a,August,35,473-27-3479,Architect,25744.12,1923.343333,6,4,14,1,Debt Consolidation Loan,23.43281689,19,7.16,1,Standard,1118.51,24.68769241,25 Years and 9 Months,NM,12.3320131,80.1221651,Low_spent_Medium_value_payments,379.8801551,0,-0.2219,0.4839,-1.4023,-0.259,0.5529 -0x106f9,CUS_0x4f41,August,38,702-76-0398,Mechanic,16398.56,,10,6,26.06745738,5,"Payday Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",48.13745614,26.43782041,8.52,16,Bad,5453.435805,34.36560007,7 Years and 2 Months,Yes,58.56284722,,High_spent_Medium_value_payments,256.6116272,0,-0.26,-0.4474,1.1792,0.636,-0.502 -0x10705,CUS_0xa267,August,52,242-22-1951,Doctor,129727.4,,3,4,19,2,"Personal Loan, and Student Loan",21.83081464,15,11.68,5,Standard,1019.445626,27.51862731,31 Years and 6 Months,NM,175.0563407,808.6371744,Low_spent_Medium_value_payments,482.144226,0,-1.2314,1.0833,0.3118,0.389,-0.0534 -0x10711,CUS_0xbe63,August,30,046-41-7217,Teacher,63473.6,5385.466667,5,7,20,5,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",25.64009025,17,16.93,11,Standard,1029.31,28.67746133,14 Years and 3 Months,NM,163.3085564,,Low_spent_Medium_value_payments,212.539387,0,1.1921,0.0564,2.226,-3.5898,-0.0213 -0x1071d,CUS_0x4197,August,24,923-04-3411,Lawyer,59103.06,4806.255,8,6,7,0,,,9,2.57,7,Good,1428.53,28.02877629,16 Years and 2 Months,NM,0,181.2893433,High_spent_Medium_value_payments,549.3361567,0,0.3543,1.8607,1.0583,-0.5934,0.271 -0x10729,CUS_0x5591,August,35,191-72-1156,Media_Manager,18371.27,,10,10,28.06745738,5,"Home Equity Loan, Home Equity Loan, Auto Loan, Payday Loan, and Mortgage Loan",43.54400229,19.17354568,8.17,9,Standard,2762.17433,24.09668231,10 Years and 11 Months,Yes,52.0012016,83.27692226,Low_spent_Small_value_payments,257.5955049,0,-0.1965,1.2829,-1.1865,-0.0625,-1.2337 -0x10735,CUS_0xbfea,August,45,531-40-7694,Scientist,44258.1,3867.175,2,6,10.28836175,0,Debt Consolidation Loan,,996,-1.36,3,Good,345.23,34.98655196,32 Years and 6 Months,NM,23.66105445,717.2584727,Low_spent_Small_value_payments,355.7354339,0,0.93,-0.3488,0.6089,-1.6551,-0.1823 -0x10741,CUS_0x7266,August,24,063-49-8444,Teacher,46422.1,4085.508333,8,6,9,2,"Personal Loan, and Payday Loan",15.82043289,12,3.5,0,Standard,832.68,40.67267648,,No,66.49089007,49.98367161,!@9#%8,532.0762717,0,0.0284,-0.1563,-0.451,-1.5461,0.0474 -0x1074d,CUS_0xafce,August,43,779-14-8458,Engineer,40063.22,3305.601667,2,5,11,3,"Personal Loan, Payday Loan, and Student Loan",10.65009943,10,11.37,2,_,781.138131,33.54905056,28 Years and 3 Months,No,90.56267751,120.7985873,!@9#%8,384.2266929,0,-0.2139,0.4028,0.0568,0.4299,1.6001 -0x10759,CUS_0xb756,August,38,#F%$D@*&8,Developer,17625.61,1406.800833,10,10,19.95700519,7,"Debt Consolidation Loan, Not Specified, Not Specified, Payday Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",45.47243185,28,25.94,12,Bad,4714.630954,34.11967118,3 Years and 6 Months,Yes,1411.356973,77.13645038,Low_spent_Large_value_payments,201.136291,0,0.2296,-0.6606,0.3979,0.4589,-0.3473 -0x10765,CUS_0x89a9,August,27,049-07-7538,Media_Manager,32428.98,,6,5,23,5,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",35.14818675,25,21.88,11,Bad,4903.14,32.81095113,11 Years and 0 Months,NM,109.2732961,92.08098132,Low_spent_Medium_value_payments,329.8872226,0,0.5269,0.5508,1.2264,0.1556,-0.1266 -0x10771,CUS_0x7ac7,August,31,080-03-1929,Media_Manager,10457.88,,6,8,30.06745738,8,"Not Specified, Personal Loan, Home Equity Loan, Payday Loan, Auto Loan, Student Loan, Payday Loan, and Credit-Builder Loan",30.72183414,18.21396845,6.9,562,Bad,1631.196274,30.35960658,13 Years and 2 Months,Yes,68.54844529,,Low_spent_Small_value_payments,182.9781289,0,0.0242,-0.6578,1.5689,1.1896,0.7553 -0x1077d,CUS_0x4198,August,35,268-15-0119,Entrepreneur,93536.04,,6,6,20,0,,24.44031773,18,11.83,3,Standard,863.78,41.94719894,27 Years and 3 Months,Yes,0,299.0513746,High_spent_Medium_value_payments,707.5156254,0,-0.8505,-0.2789,0.6606,0.4949,-0.3787 -0x10789,CUS_0xb728,August,27,042-89-6909,_______,81823.28,6776.606667,8,6,31,7,"Payday Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Student Loan, Not Specified, and Credit-Builder Loan",,20.51547375,3.08,9,Bad,2932.300515,35.05469607,18 Years and 3 Months,Yes,306.1548544,438.2045357,Low_spent_Large_value_payments,203.3012766,0,-0.5019,-0.1378,-0.4685,-0.3714,-0.2642 -0x10795,CUS_0x10df,August,27,279-20-3097,Musician,9929.235,,4,8,23,3,"Not Specified, Auto Loan, and Student Loan",,21.18104024,11.5,14,Standard,2587.811991,36.50926646,7 Years and 2 Months,Yes,18.12096644,,Low_spent_Small_value_payments,260.9159335,0,-0.6039,0.177,-1.6778,-0.9764,-0.3219 -0x107a1,CUS_0x7b09,August,25,#F%$D@*&8,Musician,24148.54,1780.378333,4,4,14,4,"Credit-Builder Loan, Payday Loan, Mortgage Loan, and Not Specified",,15,3.03,5,_,157.98,39.76217737,22 Years and 0 Months,No,72.79827943,,High_spent_Small_value_payments,316.287939,0,-0.8805,0.3576,-1.281,-0.6181,-1.2099 -0x107ad,CUS_0x3279,August,41,837-88-8352,Writer,18762.55,1710.545833,8,6,25.06745738,6,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Auto Loan",,25.86682662,22.51,14,Bad,4455.32286,25.62054818,2 Years and 3 Months,Yes,54.0572108,40.88696982,High_spent_Small_value_payments,309.3901148,0,-0.1017,-0.1723,-0.9165,0.7667,-1.7554 -0x107b9,CUS_0x5209,August,30,708-44-3082,Doctor,457224,3201.483333,6,6,18,6,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, and Student Loan",,22.16821937,26.07,6,Bad,5120.295103,35.74226442,2 Years and 2 Months,Yes,195.6607339,10000,Low_spent_Small_value_payments,136.9331204,0,1.3445,1.5354,-1.2626,1.1531,-0.3928 -0x107c5,CUS_0xabbd,August,24,#F%$D@*&8,Scientist,83990.68,6776.223333,7,5,18,5,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",45.70272254,25.02495693,1.89,9,Bad,5566.083687,29.66289637,11 Years and 11 Months,Yes,336.5829611,,High_spent_Small_value_payments,186.1703376,0,-0.5212,-0.641,1.2913,-1.0023,0.6835 -0x107d1,CUS_0x585c,August,39,212-80-7573,Teacher,16154.255,,6,3,7,3,"Debt Consolidation Loan, Personal Loan, and Home Equity Loan",19.21579273,17,5.11,5,Standard,1232.63,32.58308681,17 Years and 9 Months,Yes,24.02784249,51.69708013,Low_spent_Small_value_payments,364.893869,0,0.9431,-1.0191,-1.107,0.3742,-0.188 -0x107dd,CUS_0xbd89,August,40,137-80-9734,Scientist,11100.59,1087.049167,6,5,13,4,"Personal Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",,19,6.67,5,Standard,465.87,37.65393152,19 Years and 0 Months,Yes,23.37810897,59.80329246,Low_spent_Large_value_payments,295.5235152,0,0.0236,-0.9454,0.5535,0.0852,2.2641 -0x107e9,CUS_0x81b8,August,50,161-97-7894,Mechanic,21964843,1553.835,3,5,14,3,"Credit-Builder Loan, Home Equity Loan, and Personal Loan",,20,10.14,2,Standard,1472.07,38.94598026,21 Years and 3 Months,Yes,31.71556317,144.781148,Low_spent_Small_value_payments,268.8867889,0,0.2934,0.324,-0.1314,-0.9358,-0.1819 -0x107f5,CUS_0x1cee,August,60,541-87-1826,Teacher,59782,,0,5,7,4,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",2.87260937,3,8.2,3,Good,238.3117945,40.00394259,24 Years and 5 Months,No,155.9091432,67.96582148,!@9#%8,544.6996376,0,-0.542,1.1697,-0.6464,1.352,1.0671 -0x10801,CUS_0xa8d1,August,44,596-68-6198,Accountant,32777.51,,5,4,1,100,"Mortgage Loan, Personal Loan, and Student Loan",8.348241636,9,4.22,2,Good,605.4999832,35.40825698,26 Years and 4 Months,No,64.9759091,32.68400372,High_spent_Large_value_payments,415.8612405,0,-0.6396,-1.5613,0.7973,1.302,2.2452 -0x1080d,CUS_0xa1cb,August,49,149-07-4465,Musician,43090.57,3787.880833,3,4,8,1,Mortgage Loan,11.59457864,12.05181968,6.55,4,Good,1250.382351,32.98807388,33 Years and 3 Months,No,34.76528019,,Low_spent_Medium_value_payments,341.4040499,0,0.3468,0.12,0.621,-0.6101,1.0492 -0x10819,CUS_0x53e8,August,34,988-17-8179,Teacher,9863.53,,6,7,30.06745738,8,"Student Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, and Auto Loan",36.98209938,24.67408577,25.06,9,Bad,5571.125408,28.83072917,5 Years and 0 Months,Yes,45.42488737,90.48614592,Low_spent_Small_value_payments,231.2647621,0,-0.2322,0.5204,0.6666,0.0008,0.8623 -0x10825,CUS_0x27a6,August,26,296-46-9959,Musician,47268.22,4058.018333,6,4,19,5,"Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",8.319547215,5,10.53,1807,_,914.7,31.51899831,14 Years and 11 Months,Yes,194.6771009,494.9295339,Low_spent_Small_value_payments,6.195198584,0,-0.2268,1.7507,-0.5184,-0.8407,0.015 -0x10831,CUS_0xa990,August,22,920-89-6435,Architect,9276.99,741.0825,10,5,26.06745738,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",39.94896498,26.88762063,24.2,7,Bad,3954.423555,27.66503014,9 Years and 0 Months,Yes,28.18064196,38.26350198,Low_spent_Small_value_payments,270.9438181,0,-0.9688,0.6644,0.554,0.9392,-2.0032 -0x1083d,CUS_0x2d38,August,25,975-00-7794,Musician,48409.17,4021.0975,8,6,12,4,"Personal Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",24.40743912,18,16.38,8,Standard,2120.2,35.79532366,14 Years and 5 Months,Yes,98.65879183,68.19762983,High_spent_Large_value_payments,475.2533283,0,-2.3743,-0.4688,1.7826,-0.1262,-0.3875 -0x10849,CUS_0x66e0,August,18,287-30-3523,Accountant,20256.39,1971.0325,8,6,22.06745738,7,"Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, Not Specified, Student Loan, and Payday Loan",32.48017658,17,14.89,15,Bad,2027.180954,34.81112123,9 Years and 8 Months,Yes,70.63605834,225.0701398,Low_spent_Small_value_payments,164.6767639,0,0.5067,-0.939,-2.0131,-0.9572,-1.2319 -0x10855,CUS_0xa1bb,August,29,484-76-2971,Mechanic,34225.79,,4,3,9,2,"Home Equity Loan, and Payday Loan",18.78231473,16,11.59,2,Standard,592.68,36.3702522,31 Years and 0 Months,No,37.17522467,82.68001888,High_spent_Medium_value_payments,405.1596731,0,-0.2694,0.1651,0.3274,-0.7358,-0.3959 -0x10861,CUS_0x3ff4,August,36,#F%$D@*&8,Scientist,18241.11,1387.232104,6,6,13,2,"Home Equity Loan, and Debt Consolidation Loan",9.16874982,9,3.13,12,_,2181.17,26.17050737,9 Years and 2 Months,Yes,215.7203824,52.83923084,Low_spent_Large_value_payments,354.5100326,0,0.5075,-0.4074,-0.5232,1.1804,1.1208 -0x1086d,CUS_0x2bb0,August,55,881-91-3553,Mechanic,44318.92,3491.243333,6,6,8,0,,9.113925217,9,15.55,4,_,998.3566507,34.74490346,29 Years and 0 Months,Yes,0,,High_spent_Medium_value_payments,505.4695798,0,-1.3528,0.1793,0.6152,0.0573,-0.2308 -0x10879,CUS_0xb873,August,43,622-15-4188,Accountant,61262.76,5054.23,6,9,20,5,"Auto Loan, Not Specified, Mortgage Loan, Student Loan, and Auto Loan",37.34881056,27.99882147,7.2,9,Bad,2647.597912,32.88710374,6 Years and 11 Months,Yes,250.5968425,132.7437633,High_spent_Small_value_payments,382.0823942,0,-1.5642,0.3812,-0.5306,1.856,0.1969 -0x10885,CUS_0x182b,August,47,736-28-6339,Doctor,105015.76,8719.313333,8,4,9,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Payday Loan",,18,17.52,3,Standard,715.37,29.54299504,26 Years and 8 Months,Yes,344.2124388,,High_spent_Small_value_payments,494.6596432,0,-1.3849,1.5262,1.1163,1.0597,0.6248 -0x10891,CUS_0x536b,August,32,805-19-9682,Journalist,53320.98,4343.415,7,6,20,4,"Payday Loan, Student Loan, Not Specified, and Home Equity Loan",,,7.95,3,Standard,167.15,29.09593503,,Yes,93.09327867,279.1028348,Low_spent_Medium_value_payments,342.1453865,0,0.0673,-0.8472,0.562,-1.8486,-0.5739 -0x1089d,CUS_0x1a44,August,44,990-15-5111,Mechanic,14435.435,1376.697641,3,5,20,4,"Credit-Builder Loan, Student Loan, Home Equity Loan, and Auto Loan",22.45270566,19,2.2,4,Standard,799.07,32.36903798,17 Years and 0 Months,NM,86.29587661,30.12764152,High_spent_Medium_value_payments,317.7270489,0,0.5357,-0.0825,2.0048,-0.1803,0.0871 -0x108a9,CUS_0x62c3,August,46,960-26-5577,Entrepreneur,17132.905,1283.742083,1,5,5,2,"Personal Loan, and Credit-Builder Loan",0,2,2.16,0,Good,992.6318149,29.68699273,22 Years and 2 Months,No,15.40179215,95.22351058,Low_spent_Large_value_payments,298.9548622,0,0.2077,0.5914,-1.553,0.7121,1.4883 -0x108b5,CUS_0x9944,August,39,359-31-4000,Teacher,7314.675,,10,7,30.06745738,7,"Personal Loan, Auto Loan, Home Equity Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,25.78797537,6.89,7,Bad,2668.328258,33.69435804,18 Years and 8 Months,Yes,25.15933031,0,Low_spent_Large_value_payments,242.4729805,0,-1.3823,1.088,-1.1101,-0.2255,0.3884 -0x108c1,CUS_0x5052,August,21,103-91-9926,Musician,47557.02,3715.085,4,3,17,6,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",,18.00194129,11.34,6,Standard,2512.18052,39.73822571,7 Years and 2 Months,Yes,122.8800057,313.2254448,Low_spent_Medium_value_payments,215.4030496,0,1.3832,-0.8774,-1.5936,0.1299,1.2108 -0x108cd,CUS_0x66d9,August,25,289-20-3745,Teacher,36401.36,,4,5,33,6,"Not Specified, Student Loan, Auto Loan, Not Specified, Student Loan, and Payday Loan",,12.36997891,13.55,6,Standard,2488.406941,37.48261506,13 Years and 10 Months,Yes,129.3361785,242.2722054,Low_spent_Large_value_payments,221.5362828,0,-0.9911,0.2225,2.0146,-1.5032,0.0739 -0x108d9,CUS_0x8814,August,26,257-81-4862,Engineer,33518.12,,6,9,24.95700519,7,"Not Specified, Home Equity Loan, Auto Loan, Mortgage Loan, Student Loan, Not Specified, and Student Loan",30.14351074,15.60770615,15.18,10,_,2123.194312,32.63787802,18 Years and 9 Months,Yes,80726.48344,370.9547733,!@9#%8,0,0,-0.3813,-2.0555,0.9852,1.3011,0.6757 -0x108e5,CUS_0x9633,August,37,693-09-9868,Entrepreneur,56274.24,4518.52,616,6,26,100,"Debt Consolidation Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",,20.64290646,16.82,14,_,1843.699959,25.81531394,11 Years and 3 Months,Yes,152.8345181,506.5393524,Low_spent_Small_value_payments,82.47812953,0,-0.754,-0.3612,0.2906,-0.0871,0.4422 -0x108f1,CUS_0x6077,August,31,#F%$D@*&8,Musician,57742.86,,10,5,31,7,"Payday Loan, Personal Loan, Home Equity Loan, Student Loan, Student Loan, Auto Loan, and Credit-Builder Loan",44.9482708,26,2.61,10,_,1758.91,30.11885946,12 Years and 8 Months,Yes,291.6415272,,High_spent_Small_value_payments,130.4057567,0,-0.8586,0.7535,-0.5581,-0.1926,1.7723 -0x108fd,CUS_0xbb70,August,22,809-62-3183,Musician,25971.13,,386,4,2,4,"Not Specified, Payday Loan, Not Specified, and Not Specified",8.132681202,9,3.35,4,_,700.6617457,38.93155656,,No,240.4295748,159.6365104,Low_spent_Small_value_payments,291.7087314,0,1.1414,0.191,-0.6007,1.4232,1.5966 -0x10909,CUS_0x8a3,August,19,641-10-7375,Accountant,34039.54,2728.628333,5,4,17,4,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",,15,14.17,1,_,197.39,33.00647782,23 Years and 6 Months,Yes,83.74554106,40.08779017,High_spent_Medium_value_payments,399.0295021,0,-0.5674,1.2941,1.4593,1.1275,0.2466 -0x10915,CUS_0x753d,August,32,651-76-8170,Lawyer,28694.16,,8,9,16.95700519,8,"Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",43.50573213,26.01694095,6.52,10,Bad,2943.089212,31.9457839,5 Years and 9 Months,NM,1447.187839,160.4634662,Low_spent_Medium_value_payments,205.7163252,0,0.024,-0.6747,-0.7759,-0.5359,1.0687 -0x10921,CUS_0x76f6,August,39,070-14-2190,Mechanic,88325.58,7486.465,0,4,7,3,"Not Specified, Student Loan, and Payday Loan",3.641091535,5,0.66,7,Good,475.5408024,34.73488739,27 Years and 9 Months,No,207.5639791,108.4964845,High_spent_Large_value_payments,683.0827502,0,-2.7529,0.4836,0.863,-0.55,-0.9637 -0x1092d,CUS_0xbdf,August,40,728-61-7997,_______,66489.74,,4,4,17,3,"Not Specified, Not Specified, and Credit-Builder Loan",12.97897742,9,10.18,7,Standard,819.57,29.41824992,31 Years and 2 Months,No,118.3344012,164.8125536,High_spent_Small_value_payments,534.4342118,0,-0.7597,1.4998,-0.2256,0.4223,1.1425 -0x10939,CUS_0xb303,August,27,286-26-8637,_______,7169.585,,8,7,33,5,"Student Loan, Not Specified, Student Loan, Debt Consolidation Loan, and Personal Loan",,19.07638234,19.18,7,Standard,1781.584716,38.93306178,,Yes,18.76056409,23.74628366,High_spent_Medium_value_payments,294.2396939,0,-0.0958,-0.9489,2.2388,0.0179,0.1338 -0x10945,CUS_0x7b6,August,39,666-80-2835,Scientist,82988.08,,4,4,10,3,"Mortgage Loan, Auto Loan, and Mortgage Loan",90,787,15.52,8,Standard,1036.93,38.45876591,18 Years and 9 Months,Yes,182.4249206,114.9656739,High_spent_Large_value_payments,652.6767388,0,1.8258,-1.1742,-1.9081,0.8177,-0.8626 -0x10951,CUS_0x2ba4,August,28,373-18-8417,Mechanic,70618.62,5775.885,8,5,15,5,"Personal Loan, Personal Loan, Not Specified, Payday Loan, and Payday Loan",21.73627555,,15.67,11,Standard,1471.433459,25.5367841,11 Years and 2 Months,Yes,267.8599513,247.792501,High_spent_Small_value_payments,321.9360477,0,-2.273,-0.0671,1.057,0.1758,1.7508 -0x1095d,CUS_0x1deb,August,25,334-90-6536,Entrepreneur,98436.6,8079.05,8,6,10,0,,24.60614215,16,10.28,3,Good,299.4539174,42.53460976,21 Years and 0 Months,No,0,282.5873318,High_spent_Medium_value_payments,810.8984396,0,0.2935,0.8243,0.8174,1.1776,-1.524 -0x10969,CUS_0x4079,August,45,344-37-9577,Mechanic,16858.01,1600.834167,9,6,21,3,"Personal Loan, Not Specified, and Credit-Builder Loan",25.83874219,13.44920073,12.95,13,Standard,2650.277974,25.78652442,11 Years and 9 Months,Yes,24.93265118,51.19932249,Low_spent_Large_value_payments,353.951443,0,-0.7123,-0.5688,1.6956,0.5999,-0.4262 -0x10975,CUS_0x68ce,August,80,#F%$D@*&8,Manager,19019.1,,5,3,8,4,"Not Specified, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,15,7.79,4,Good,878.69,40.23118151,17 Years and 9 Months,No,38.8376848,99.54181409,!@9#%8,315.4130011,0,-0.5124,0.8096,-0.8499,-0.4714,-0.7549 -0x10981,CUS_0x9093,August,29,967-62-7659,Manager,38158.8,2846.477896,6,8,31.95700519,8,"Student Loan, Not Specified, Auto Loan, Home Equity Loan, Not Specified, Auto Loan, Payday Loan, and Payday Loan",32.41921145,16,29.34,12,Bad,2902.260954,35.45176096,6 Years and 8 Months,Yes,1718.345168,,High_spent_Medium_value_payments,185.9789817,0,-0.0946,-0.3775,-0.4264,-0.7272,1.558 -0x1098d,CUS_0x3adc,August,46,#F%$D@*&8,Journalist,63539.66,5032.971667,6,7,19,4,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Personal Loan",10.99724337,10.87346554,15.15,5,Standard,197.0364002,28.96280245,19 Years and 6 Months,Yes,206.8674348,,Low_spent_Small_value_payments,157.5974543,0,0.7487,-0.8946,1.0127,-0.3665,1.0088 -0x10999,CUS_0x136c,August,53,158-74-4274,Lawyer,120644.88,10043.74,4,6,7,4,"Student Loan, Student Loan, Not Specified, and Credit-Builder Loan",,7.012173337,10.49,1,Good,1582.3011,41.94258015,,No,257.8997926,80.47305213,High_spent_Large_value_payments,906.0011553,0,0.5029,-0.7295,0.6323,0.3848,-0.0026 -0x109a5,CUS_0x3bdb,August,49,145-16-1646,Mechanic,129982.41,,3,2,11.28836175,4,"Not Specified, Mortgage Loan, Credit-Builder Loan, and Student Loan",3.230441567,5,14.6,8,_,395.78,39.05802232,29 Years and 2 Months,No,278.0421664,539.3531031,High_spent_Large_value_payments,907.9289415,0,0.6968,-0.1471,0.3675,1.7572,0.1213 -0x109b1,CUS_0x25be,August,22,136-25-7844,Media_Manager,8213.68,,5,4,14,6,"Student Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, Not Specified, and Not Specified",,8,16.84,11,Standard,2685.31,34.82388294,14 Years and 10 Months,NM,33.64236741,96.44766852,Low_spent_Small_value_payments,252.5572974,0,-1.9799,-1.3933,0.0718,-0.2822,-0.9682 -0x109bd,CUS_0x8121,August,45,958-40-2996,Journalist,64688.84,,6,10,31.95700519,7,"Home Equity Loan, Home Equity Loan, Not Specified, Mortgage Loan, Student Loan, Student Loan, and Mortgage Loan",23.92672982,16,19.34,12,Bad,3775.930954,38.65754978,11 Years and 0 Months,Yes,1545.125463,362.5207618,High_spent_Small_value_payments,196.7770729,0,0.3855,-0.6216,-1.165,-1.3901,0.7341 -0x109c9,CUS_0x14d5,August,37,476-48-0347,Engineer,71814.28,5976.523333,3,5,10,0,,13.62233978,13,6.93,4,Good,1434.97,26.42172835,33 Years and 3 Months,No,0,168.316671,High_spent_Medium_value_payments,679.3356623,0,-0.0107,0.4468,0.3603,-0.9303,-0.0493 -0x109d5,CUS_0x2441,August,38,558-95-8969,_______,38117.06,3245.421667,8,5,34,6,"Credit-Builder Loan, Mortgage Loan, Payday Loan, Student Loan, Student Loan, and Not Specified",38.21537545,27.07774445,26.16,15,Bad,2921.224838,27.50140338,8 Years and 6 Months,Yes,143.5088553,,High_spent_Medium_value_payments,335.1064397,0,-1.2097,-1.5855,0.8287,-1.5566,-2.4892 -0x109e1,CUS_0xc3d,August,23,263-96-1708,Writer,30549.55,,1,3,10,2,"Home Equity Loan, and Student Loan",13.02791496,,,8,Good,483.5848287,30.08392961,19 Years and 2 Months,No,46.87507161,,Low_spent_Small_value_payments,195.3070486,0,0.825,-0.7505,0.1349,-0.8499,1.8077 -0x109ed,CUS_0x3913,August,28,#F%$D@*&8,Writer,101203,8675.583333,8,4,6,4,"Not Specified, Payday Loan, Credit-Builder Loan, and Mortgage Loan",19.40931926,13,3.08,1,_,598.94,23.33954316,24 Years and 6 Months,No,278.9073204,593.907888,!@9#%8,274.7431249,0,-0.8252,-1.4608,-1.5142,-0.4066,-0.7729 -0x109f9,CUS_0x944f,August,26,120-63-8432,Media_Manager,35006.57,3203.214167,5,7,9.288361749,4,"Auto Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",10.8305247,11,18.95,5,Standard,246.13,33.65591288,16 Years and 4 Months,Yes,76.98345911,521.0479885,High_spent_Medium_value_payments,392.22743,0,1.1394,-0.1505,0.6682,0.3574,-0.3928 -0x10a05,CUS_0xb300,August,49,378-77-5875,Manager,41617.68,3350.14,2,5,1.288361749,4,"Auto Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",8.881638059,10,7.49,1,Good,201.05,38.38071373,30 Years and 5 Months,No,94.46144161,10419.93746,!@9#%8,400.6563571,0,-0.168,0.3638,-0.6216,-1.9689,-0.4604 -0x10a11,CUS_0xa26b,August,27,703-94-0835,Accountant,99657.51,,7,3,8,4,"Not Specified, Payday Loan, Home Equity Loan, and Mortgage Loan",28.02991686,20.37133966,19.24,4,Standard,128.92629,35.29066098,27 Years and 0 Months,Yes,307.5263812,525.069934,Low_spent_Medium_value_payments,263.8829348,0,0.5335,0.8634,-0.3006,1.5175,-1.1086 -0x10a1d,CUS_0xc1c6,August,32,807-95-9558,Manager,134504.68,11187.72333,0,2,1337,1,Credit-Builder Loan,4.988064955,7,3.21,8,Good,1085.4093,38.42146486,32 Years and 10 Months,No,72.81102835,203.1045589,High_spent_Large_value_payments,1104.614705,0,1.8103,0.1711,-1.1313,-0.4065,0.9225 -0x10a29,CUS_0xb96b,August,47,046-69-1325,Manager,63068.88,5406.74,2,5,11,3,"Auto Loan, Mortgage Loan, and Student Loan",8.080185074,7.846961361,11.47,5,Good,387.6474004,26.85299506,21 Years and 4 Months,No,97.05733789,10000,Low_spent_Large_value_payments,562.8980029,0,-0.5904,-0.5301,0.0247,1.2775,0.2902 -0x10a35,CUS_0x5215,August,38,#F%$D@*&8,Musician,71285,6207.416667,0,5,4,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,7,5.28,2,Good,1129.742611,38.48058706,24 Years and 4 Months,No,159.2071227,97.40123938,High_spent_Large_value_payments,616.5466495,0,-0.0712,-0.8251,0.214,-0.5336,-0.6011 -0x10a41,CUS_0x87e4,August,21,175-54-4117,Mechanic,19582.95,,4,4,31,6,"Payday Loan, Not Specified, Payday Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",22.17175928,19,8.63,10,Standard,2556.35,27.6086802,12 Years and 5 Months,Yes,241.0019004,71.78957419,Low_spent_Small_value_payments,288.8555035,0,-1.206,-1.2382,0.9927,-1.5532,-0.1181 -0x10a4d,CUS_0x4ef2,August,48,342-22-4742,Developer,57080.22,,6,4,2.288361749,2,"Mortgage Loan, Personal Loan, and Payday Loan",,11,0.75,0,Good,505.8223985,33.42741707,,No,116.5307469,500.5475853,High_spent_Medium_value_payments,522.5112029,0,0.6795,-0.2737,0.1627,1.6901,0.64 -0x10a59,CUS_0xbac4,August,49,582-35-5018,Manager,37367.34,,2,7,10,3,"Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",0.389818688,2.405568166,3.4,4,Good,501.0122673,26.28004881,,No,63.48696611,31.30949452,High_spent_Large_value_payments,475.5980394,0,-1.2636,0.0221,-0.5283,-0.5302,1.8718 -0x10a65,CUS_0xb6b1,August,46,667-44-5475,Entrepreneur,36647.46,,3,5,9,4,"Auto Loan, Personal Loan, Personal Loan, and Payday Loan",21.57689325,16,10.74,1,Good,1342.328242,33.86183753,16 Years and 6 Months,No,90.14748567,240.4807382,Low_spent_Medium_value_payments,282.9994104,0,0.9953,-1.3226,2.0725,0.2441,-0.5096 -0x10a71,CUS_0xc0e7,August,37,361-44-7164,Accountant,28468.13,,3,1,3,3,"Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",6.416384539,6,3.8,5,Good,875.4717639,33.47637245,20 Years and 11 Months,No,64.5192148,172.9112736,Low_spent_Medium_value_payments,325.8669773,0,0.9051,1.6083,0.2407,1.6731,0.2868 -0x10a7d,CUS_0x72b6,August,38,334-23-3707,Doctor,15195492,,10,8,31.88954781,8,"Mortgage Loan, Mortgage Loan, Not Specified, Mortgage Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Payday Loan",,23,16.28,11,Bad,4192.67,24.19783705,10 Years and 10 Months,Yes,1722.635663,,High_spent_Small_value_payments,168.7490281,0,-1.7891,0.2346,-0.1956,-0.9019,0.1187 -0x10a89,CUS_0x36b6,August,21,423-46-8663,Scientist,17918.66,,6,5,20,2,"Payday Loan, and Mortgage Loan",9.745161402,10,11.32,10,_,1761.39,38.09940291,9 Years and 0 Months,Yes,21.22002266,37.95193146,High_spent_Medium_value_payments,342.7502125,0,0.1283,0.3174,-0.3724,-0.2269,1.2648 -0x10a95,CUS_0x5501,August,33,019-80-1571,Accountant,58382,,6,7,32,5,"Student Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Payday Loan",,17.73658857,10.23,15,Standard,2159.565086,40.32537146,12 Years and 4 Months,Yes,241.320409,,High_spent_Medium_value_payments,401.1362344,0,0.0176,1.2652,-0.2925,2.8167,-1.5871 -0x10aa1,CUS_0x27e0,August,34,626-64-3775,Media_Manager,17945.77,,6,8,24.06745738,9,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Auto Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",,17,22.54,13,Bad,4719.450954,36.09157183,13 Years and 4 Months,Yes,108.4588277,,Low_spent_Large_value_payments,211.4338939,0,-0.8068,0.0764,1.6217,1.8424,-1.0161 -0x10aad,CUS_0xaaea,August,42,062-58-8737,Teacher,21833.79,,5,4,6,4,"Mortgage Loan, Mortgage Loan, Auto Loan, and Payday Loan",,11,5.53,8,_,12.84053581,27.05167547,24 Years and 5 Months,No,71.28000559,94.2199373,High_spent_Small_value_payments,285.6618853,0,0.2615,-0.2889,-0.2886,-0.9874,0.5598 -0x10ab9,CUS_0xaafc,August,52,427-21-8086,Lawyer,19799.73,1915.9775,7,4,11.28836175,2,"Student Loan, and Payday Loan",23.24399029,20,5.89,3,Good,112.2421039,29.35217105,33 Years and 4 Months,NM,18.15333812,,Low_spent_Medium_value_payments,311.2716355,0,-1.6493,1.404,-0.9528,0.6843,-0.7138 -0x10ac5,CUS_0x575e,August,40,368-58-5181,Developer,112985.56,9176.463333,4,470,15,2,"Payday Loan, and Debt Consolidation Loan",19.67747989,15,18.56,7,Standard,1050.97,36.75686749,8 Years and 10 Months,Yes,98.83261072,114.7431292,High_spent_Large_value_payments,944.0705934,0,-0.6281,-0.1744,-0.462,-0.6187,-0.2955 -0x10ad1,CUS_0x1383,August,19,000-58-0568,Developer,80206.64,6766.886667,5,4,20,5,"Student Loan, Payday Loan, Not Specified, Payday Loan, and Payday Loan",18.65074477,16,7,6,Standard,1129.87,32.07508945,8 Years and 8 Months,Yes,260.4189799,522.9770603,Low_spent_Medium_value_payments,173.2926265,0,0.4287,-0.0823,-0.7504,-0.3769,-0.8011 -0x10add,CUS_0xa70c,August,25,528-20-9045,Teacher,31380.64,,2,1450,4,3,"Student Loan, Personal Loan, and Debt Consolidation Loan",0,1,7.18,6,Good,938.6215688,39.04795448,25 Years and 6 Months,No,74.05278677,105.6542232,High_spent_Small_value_payments,330.8155011,0,-2.4001,-0.1005,-1.3294,-0.7842,0.0068 -0x10ae9,CUS_0xa022,August,22,706-02-3826,Entrepreneur,29727.93,2678.3275,6,6,14,1,Not Specified,,13,11.87,8,Standard,1237.42,23.70490268,29 Years and 6 Months,Yes,12.90851112,53.75033961,!@9#%8,451.1738993,0,0.7498,-0.6297,-1.2427,1.2315,-0.3924 -0x10af5,CUS_0x5172,August,36,293-53-8143,Doctor,18496.49,1802.374167,7,8,28.06745738,4,"Not Specified, Student Loan, Not Specified, and Credit-Builder Loan",48.25334927,30.21994561,4.48,12,Bad,1959.793502,32.15111697,19 Years and 9 Months,NM,56019,,Low_spent_Small_value_payments,147.9771325,0,-0.2377,0.4088,-1.2947,-0.6836,1.106 -0x10b01,CUS_0x6b24,August,39,215-10-3907,Lawyer,17594.78,,10,6,29,7,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Not Specified, Auto Loan, and Personal Loan",,27.6272853,5.55,15,Bad,2695.318273,35.98613071,18 Years and 11 Months,Yes,74.00056718,68.96089918,Low_spent_Medium_value_payments,285.1617003,0,0.7241,1.5317,0.0627,0.9799,-0.2761 -0x10b0d,CUS_0x7e51,August,41,272-41-5715,_______,13986.835,,6,3,15,2,"Debt Consolidation Loan, and Debt Consolidation Loan",18.05556111,17,0.21,6,_,482.88,36.06639971,16 Years and 6 Months,No,20.52757539,68.65588323,High_spent_Small_value_payments,311.9734997,0,1.5043,-1.4347,-1.5158,0.4837,1.5422 -0x10b19,CUS_0x26b1,August,42,071-50-1701,Architect,160052.2,13580.68333,4,25,9.288361749,2,"Not Specified, and Student Loan",5.396627924,8,0.51,7,Good,1020.40726,37.63667903,21 Years and 11 Months,No,207.8648075,1382.585761,High_spent_Small_value_payments,576.5303465,0,0.3911,-0.2702,-1.9006,0.6602,-0.9974 -0x10b25,CUS_0x39bd,August,36,799-65-8344,_______,79323.96,,9,8,17,8,"Debt Consolidation Loan, Mortgage Loan, Student Loan, Payday Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",36.81312873,22,23.77,12,Bad,3393.48,31.96132459,14 Years and 4 Months,Yes,423.1495504,,High_spent_Medium_value_payments,253.5610857,0,-0.03,-0.6185,1.4021,0.6101,-0.1538 -0x10b31,CUS_0x28cb,August,35,365-00-4133,Entrepreneur,128423.36,,6,4,11.28836175,4,"Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, and Not Specified",9.813632158,10,17.32,10,Standard,527.06,28.27165489,15 Years and 4 Months,Yes,339.1128757,,High_spent_Medium_value_payments,622.2397524,0,-1.7651,-1.1773,1.6276,-0.5454,0.1082 -0x10b3d,CUS_0x6c9d,August,50,856-49-0070,Engineer,34281.92,,1,7,9,4,"Home Equity Loan, Payday Loan, Not Specified, and Credit-Builder Loan",4.610129273,6,10.35,0,Good,935.85,29.32914858,19 Years and 9 Months,No,76.11284282,10000,High_spent_Medium_value_payments,337.5388032,0,0.1401,-0.1398,-1.3619,-0.3359,-0.4504 -0x10b49,CUS_0xa408,August,28,359-29-7978,_______,41167.6,3596.633333,7,3,7,0,,14.30952861,8.966953771,9.92,2,_,1001.439459,26.5501893,27 Years and 2 Months,No,0,78.72025584,High_spent_Medium_value_payments,530.9430775,0,-0.2019,-0.5321,-0.5517,0.9904,1.9661 -0x10b55,CUS_0x190e,August,21,455-09-3994,Developer,39734.74,,3,6,8,0,,5.886132617,8,1.75,0,_,933.4682282,37.21701645,18 Years and 3 Months,No,0,194.5842005,High_spent_Small_value_payments,434.7634142,0,-1.1659,1.7064,-1.1415,-0.0637,0.6336 -0x10b61,CUS_0x37bf,August,49,242-04-7296,Writer,38750.41,,1,5,6.288361749,100,"Credit-Builder Loan, Payday Loan, Student Loan, and Home Equity Loan",0,1,8.39,1,Good,2.090280113,25.51687001,,No,121.7266406,,Low_spent_Small_value_payments,69.32638628,0,-0.1236,0.1478,-0.3469,-1.752,0.7686 -0x10b6d,CUS_0xc271,August,50,871-72-6391,Developer,35871.34,,4,5,5,1,Student Loan,0,0,9.48,9,Good,525.01,37.87816956,24 Years and 8 Months,No,25.04916042,,High_spent_Medium_value_payments,464.5590613,0,0.2779,-1.1142,0.4341,0.0769,-0.3744 -0x10b79,CUS_0x8d9d,August,33,835-67-2782,Manager,24206.09,,7,3,9,3,"Auto Loan, Student Loan, and Student Loan",,,4.61,1,Good,919.4114474,37.03586951,31 Years and 4 Months,NM,147.521791,72.98615336,High_spent_Medium_value_payments,306.3667558,0,0.254,-0.8697,-1.0641,1.511,-0.1913 -0x10b85,CUS_0x40e8,August,41,#F%$D@*&8,Lawyer,19543.58,1400.631667,8,9,25.95700519,6,"Student Loan, Not Specified, Student Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",34.93045348,23.39296812,9.08,10,Bad,1695.622004,28.83714748,,Yes,1417.711353,108.6654519,Low_spent_Medium_value_payments,172.6359929,0,0.1377,0.2557,-0.5821,-1.4013,0.5102 -0x10b91,CUS_0x18f3,August,40,838-71-4191,Manager,43826.51,3584.209167,2,6,11.28836175,4,"Mortgage Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",0,2,11.9,4,Good,420.4764247,29.26236269,21 Years and 2 Months,No,130.4424952,549.0062826,High_spent_Medium_value_payments,365.0553782,0,-0.1135,-1.162,1.0444,0.6648,-0.465 -0x10b9d,CUS_0x7ad7,August,44,398-13-1916,Journalist,17728.55,,3,6,12,7,"Auto Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Personal Loan",21.95707215,15,15.91,6,Standard,1493.28,23.68063831,7 Years and 10 Months,Yes,63.72201054,108.0599732,Low_spent_Small_value_payments,274.755933,0,0.656,-0.01,-0.9908,-0.443,1.7477 -0x10ba9,CUS_0x5b05,August,21,872-74-2423,Engineer,7622.805,,4,4,9,6,"Student Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",9.785785838,10.23107824,19.67,7,Standard,2740.64249,36.80238466,19 Years and 4 Months,Yes,19.88956429,55.36133022,Low_spent_Small_value_payments,292.3724805,0,0.8413,-0.3732,-0.716,0.1039,-2.0226 -0x10bb5,CUS_0x78f3,August,37,077-35-4768,Accountant,80539.08,6103.54266,6,6,18,6,"Payday Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",,18,4.61,10,Bad,2160.91,29.33008547,7 Years and 11 Months,NM,741.950206,254.1114333,High_spent_Small_value_payments,357.2447008,0,-0.8883,0.361,-1.8455,-0.3474,0.0715 -0x10bc1,CUS_0x3e89,August,25,598-55-8096,Media_Manager,36408.04,,7,3,9,0,,9.874035468,6,9.39,6,Standard,903.14,35.06594619,18 Years and 11 Months,No,0,173.6414744,Low_spent_Small_value_payments,428.658859,0,-1.0874,0.5693,-0.3032,-0.6494,0.8155 -0x10bcd,CUS_0x8c77,August,39,854-57-9544,Writer,86163.52,7133.293333,6,7,6,100,"Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",7.897280549,5,,5,Good,647.3195221,30.31725543,32 Years and 0 Months,No,184.8242354,,Low_spent_Medium_value_payments,148.2843692,0,0.2337,2.5586,-2.1063,0.2156,-1.0884 -0x10bd9,CUS_0x73f9,August,38,607-70-9148,Media_Manager,58873.64,,4,5,5,7,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Payday Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",19.32154715,13,19.73,5,Standard,2452.62,30.83497987,16 Years and 8 Months,Yes,197.3143324,230.1565371,High_spent_Small_value_payments,320.0427972,0,1.6312,-0.7291,-0.1367,1.1714,-0.7368 -0x10be5,CUS_0x9c03,August,22,511-89-6968,_______,81760,6988.333333,8,5,24,3,"Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",26.80770841,,7.71,12,Bad,2943.672042,29.31710388,14 Years and 2 Months,Yes,125.1786319,290.4584942,Low_spent_Small_value_payments,573.1962072,0,-1.7848,0.9949,-1.1951,0.7547,0.5995 -0x10bf1,CUS_0xbd11,August,36,843-26-6643,Doctor,16264.7,1095.391667,7,8,27.06745738,9,"Payday Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Student Loan, Mortgage Loan, Payday Loan, and Not Specified",31.20151643,18.18715873,21.81,9,Bad,4041.569862,31.58476947,5 Years and 0 Months,Yes,81.57426045,,Low_spent_Small_value_payments,229.6605962,0,-0.5425,0.8848,0.8837,0.1137,-0.5195 -0x10bfd,CUS_0x4e35,August,45,358-02-4914,Engineer,41552.77,3482.730833,3,4,2,1,Credit-Builder Loan,,2,6.6,9,Good,28.85,35.62195391,21 Years and 11 Months,NM,27.06386791,104.5891841,Low_spent_Large_value_payments,486.6200313,0,-1.3096,0.3722,-1.0068,-0.4033,0.3831 -0x10c09,CUS_0x9535,August,19,178-60-8209,_______,14187.13,,3,4,23.06745738,3,"Auto Loan, Debt Consolidation Loan, and Auto Loan",32.93594175,21.72256759,18.35,10,Standard,1925.57823,27.7292276,11 Years and 6 Months,NM,64.54102018,73.23746005,Low_spent_Small_value_payments,297.3457694,0,-1.667,-2.2303,0.4196,-0.5947,-0.1451 -0x10c15,CUS_0xc254,August,31,133-79-2442,Developer,33818.63,,4,3,1,4,"Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",16.31038712,,5.81,2,Good,596.5021147,38.29478359,16 Years and 10 Months,No,68.08220369,56.56086669,High_spent_Large_value_payments,375.4154391,0,-0.954,0.0638,0.8978,-0.2679,0.6777 -0x10c21,CUS_0x11ae,August,22,032-97-5902,Architect,14550.52,,8,10,26.95700519,9,"Personal Loan, Not Specified, Home Equity Loan, Home Equity Loan, Personal Loan, Auto Loan, Home Equity Loan, Auto Loan, and Personal Loan",33.74859671,20,23.08,6,_,4668.400954,26.59278662,11 Years and 0 Months,Yes,1419.394474,,Low_spent_Small_value_payments,165.6707794,0,-0.2263,1.0068,0.7451,-0.2307,1.7225 -0x10c2d,CUS_0x87c2,August,53,802-97-1200,Architect,77439.87,6504.3225,3,4,13,2,"Debt Consolidation Loan, and Student Loan",10.94126817,9,3.34,2,Standard,879.87,24.4370897,15 Years and 9 Months,No,71.515841,,Low_spent_Medium_value_payments,364.9804503,0,-1.5806,-0.677,-0.5007,0.5851,0.2294 -0x10c39,CUS_0xab1e,August,28,752-72-2018,Teacher,175191.4,13891.399,2,3,3,1,Mortgage Loan,17.62447755,12,-0.2,7,Good,436.11,39.64583591,20 Years and 6 Months,No,1094.601613,168.382804,High_spent_Large_value_payments,1434.128246,0,0.2295,1.3413,0.9998,-0.3317,0.3059 -0x10c45,CUS_0x4711,August,18,725-84-0667,Architect,32430.82,,10,9,21.88954781,8,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",26.03695716,19,34.85,12,Bad,2532.02,36.87448244,13 Years and 10 Months,Yes,1451.492569,,Low_spent_Large_value_payments,160.1036353,0,-0.8058,0.2382,0.7271,0.5394,0.6516 -0x10c51,CUS_0x45bd,August,32,356-66-2055,Mechanic,80213.4,6919.45,3,3,8,3,"Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",5.88099823,6,8.61,7,Good,792.61,27.8610602,31 Years and 8 Months,No,200.3507017,,Low_spent_Medium_value_payments,418.1159493,0,-0.2121,0.6914,-0.4295,-0.2997,-0.3521 -0x10c5d,CUS_0xc08,August,35,266-42-7784,Scientist,20017.24,1481.103333,8,9,30,8,"Payday Loan, Debt Consolidation Loan, Not Specified, Student Loan, Personal Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,21.53322492,7.81,8,Bad,4718.931841,25.13007844,5 Years and 0 Months,Yes,109.0151652,66.49085722,Low_spent_Small_value_payments,262.6043109,0,-2.9057,0.6423,-1.1039,-0.347,-0.3519 -0x10c69,CUS_0xa3e4,August,38,013-06-9077,Accountant,30348.01,2572.000833,1,6,12,3,"Student Loan, Not Specified, and Mortgage Loan",0.824941477,4,2.87,0,_,564.9923544,24.1390404,19 Years and 9 Months,No,67.81742449,,Low_spent_Small_value_payments,166.2127202,0,-0.207,0.1279,0.4854,0.1961,-0.4582 -0x10c75,CUS_0xa9b1,August,18,043-16-9013,Scientist,61437,5114.75,8,9,18,3,"Payday Loan, Not Specified, and Debt Consolidation Loan",34.58361482,24.42687122,7.01,9,Bad,1560.253386,33.54781186,11 Years and 3 Months,Yes,126.7984327,119.9553111,!@9#%8,514.7212562,0,-0.5144,1.1912,0.7519,-0.1977,1.0693 -0x10c81,CUS_0x9e82,August,35,691-36-8661,Mechanic,19854.12,1425.51,5,4,15.06745738,100,"Mortgage Loan, Student Loan, and Not Specified",21.77329987,,17.25,12,Standard,1437.210954,28.39854534,10 Years and 3 Months,NM,48.20742189,,Low_spent_Medium_value_payments,219.8276406,0,-0.0711,1.6192,1.4085,-0.3645,-1.5189 -0x10c8d,CUS_0x6fc4,August,20,137-76-6084,Manager,87247.62,7005.635,3,1,10.28836175,0,,,7,5.3,0,Good,238.9656172,23.66304322,26 Years and 6 Months,No,0,759.0138984,Low_spent_Large_value_payments,669.0613887,0,-0.7479,-0.514,0.5007,0.8533,1.44 -0x10c99,CUS_0x61c2,August,23,008-17-0608,Lawyer,88752.26,,5,6,3,1,Mortgage Loan,3.439522002,6,5.02,8,Good,1180.26,29.43628938,18 Years and 9 Months,No,72.52444301,291.7123691,Low_spent_Large_value_payments,616.6653546,0,0.6964,-0.1436,0.8572,-0.188,1.309 -0x10ca5,CUS_0xb794,August,50,916-66-2598,Lawyer,20222.09,,4,6,6,3,"Student Loan, Personal Loan, and Not Specified",0,1,9.27,1,Good,1084.12,32.62041383,22 Years and 8 Months,NM,31.81502403,81.86048923,Low_spent_Medium_value_payments,352.7419034,0,-0.4015,1.6026,0.0997,-2.6245,1.4628 -0x10cb1,CUS_0xab18,August,29,272-52-5234,Developer,34378.87,,6,5,6,0,,22.56689372,21,8.7,10,Standard,1020.66,37.46040498,16 Years and 11 Months,Yes,0,228.972029,Low_spent_Medium_value_payments,352.5185543,0,0.3289,0.7948,-1.2109,-0.2161,0.4433 -0x10cbd,CUS_0x2108,August,32,223-81-4626,Musician,40306.66,3532.888333,8,7,26.06745738,9,"Auto Loan, Student Loan, Auto Loan, Auto Loan, Home Equity Loan, Personal Loan, Not Specified, Payday Loan, and Credit-Builder Loan",44.42097749,26.02626282,5.82,13,Bad,2572.135307,31.2970921,5 Years and 11 Months,NM,200.1075781,10000,Low_spent_Medium_value_payments,296.8011592,0,-1.2801,2.1927,-1.251,0.8151,0.5848 -0x10cc9,CUS_0xaa52,August,45,394-74-4000,Mechanic,19013.285,,1,5,2.288361749,0,Credit-Builder Loan,9.067459535,10,5.11,2,Good,175.8587083,33.23522444,18 Years and 8 Months,No,150.6873298,,Low_spent_Medium_value_payments,312.49999,0,-0.3043,1.8659,1.9292,-1.1129,-1.6081 -0x10cd5,CUS_0xa401,August,40,085-04-0051,Writer,156153.24,,1,5,7,1,Debt Consolidation Loan,9.022860846,7,3.08,2,Good,1074.05,23.35591047,29 Years and 5 Months,No,87.50153102,1272.70131,Low_spent_Medium_value_payments,225.6741593,0,0.2087,-0.7951,-0.031,0.5188,0.5569 -0x10ce1,CUS_0x8706,August,34,255-21-5817,_______,88556.7,7158.725,1,3,7.288361749,0,Debt Consolidation Loan,,14,2.17,5,Good,658.1175306,33.56055009,24 Years and 3 Months,No,60.7362588,,Low_spent_Medium_value_payments,485.5829092,0,0.0618,-0.7709,0.2919,-0.656,0.541 -0x10ced,CUS_0x958b,August,41,776-67-3495,Accountant,57700.16,4864.346667,8,11,22,5,"Mortgage Loan, Home Equity Loan, Auto Loan, Not Specified, and Payday Loan",47.58919207,24.22934604,16.2,1179,Bad,1983.397592,24.91924379,19 Years and 0 Months,Yes,221.763278,10000,Low_spent_Small_value_payments,,0,0.9017,-0.1669,0.5763,1.6431,0.6809 -0x10cf9,CUS_0x1355,August,30,858-73-0131,Entrepreneur,9474.16,745.5133333,7,6,31.06745738,2,"Not Specified, and Home Equity Loan",,17.60021133,17.57,9,Bad,2884.333299,36.16558151,9 Years and 11 Months,Yes,15.00342698,,Low_spent_Medium_value_payments,275.3146707,0,-1.1044,-0.7871,1.8244,-0.67,-1.4923 -0x10d05,CUS_0xb18d,August,41,#F%$D@*&8,Musician,109621.56,9335.13,4,5,5.288361749,0,Not Specified,,8,1.06,6,Standard,668.2004768,34.12935171,28 Years and 3 Months,NM,86.74756689,900.2440993,Low_spent_Large_value_payments,706.3972911,0,2.2732,0.4111,-1.4096,-1.1337,0.6337 -0x10d11,CUS_0x9eb2,August,18,930-93-7239,Writer,19647.55,1858.295833,4,7,15,6,"Personal Loan, Debt Consolidation Loan, Personal Loan, Student Loan, Auto Loan, and Not Specified",24.1591394,17,25.07,4,Standard,1207.31,36.60270147,15 Years and 2 Months,NM,82.20111714,10000,High_spent_Small_value_payments,289.4071773,0,-0.4402,-1.1595,-1.3603,-0.2654,-1.4799 -0x10d1d,CUS_0x48e1,August,23,738-31-5725,Media_Manager,37990.27,3247.855833,1,3,10,2,"Not Specified, and Student Loan",1.618843923,3,6.58,2,Good,1394.62,34.91611609,29 Years and 11 Months,No,41.33430324,203.6815799,High_spent_Small_value_payments,339.7697002,0,-0.892,-0.7952,1.1001,-2.8104,1.0487 -0x10d29,CUS_0xc664,August,80,433-68-8862,Developer,17517.69,1373.8075,8,6,29,6,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Auto Loan, and Student Loan",31.44267802,22.7865547,15.53,7,Standard,2849.609691,30.67407717,12 Years and 10 Months,Yes,45.70526666,84.21647702,Low_spent_Medium_value_payments,287.4590063,0,-1.3975,0.5569,-0.2492,-0.0375,-0.6866 -0x10d35,CUS_0xc4f5,August,26,062-13-0532,Musician,117551.96,,8,3,20,4,"Auto Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",,21.65779304,7.59,8,Standard,1082.542828,37.11935712,18 Years and 4 Months,Yes,344.1666003,275.1179231,Low_spent_Large_value_payments,622.7151433,0,-0.6814,-0.9641,-0.1903,-0.5462,0.2506 -0x10d41,CUS_0x27ab,August,30,626-43-7937,Media_Manager,134993.79,11462.4825,1,6,1292,3,"Debt Consolidation Loan, Student Loan, and Personal Loan",9.879173765,10,10.64,5,_,629.16,35.29101682,16 Years and 3 Months,No,280.8381171,1030.304472,Low_spent_Small_value_payments,125.1056614,0,-0.3145,-0.3817,1.6003,0.5552,-0.0477 -0x10d4d,CUS_0x13ee,August,31,497-59-7351,Doctor,11826.655,836.5545833,8,6,7.067457376,3,"Auto Loan, Mortgage Loan, and Student Loan",,,3.97,6,Standard,896.5509543,37.2616297,26 Years and 9 Months,No,25.23020182,95.83668148,Low_spent_Small_value_payments,225.8682871,0,-0.0867,-1.3105,-0.843,1.0762,0.1135 -0x10d59,CUS_0x2037,August,28,346-73-6994,Mechanic,15806.695,,1,1,6,2,"Auto Loan, and Student Loan",10.02909128,10,5.99,5,Good,1073.920967,29.70483776,31 Years and 8 Months,No,18.13762993,,Low_spent_Small_value_payments,238.8643488,0,1.3013,-0.4699,-1.5861,-0.115,-1.2325 -0x10d65,CUS_0xa39c,August,80,555-83-3357,Doctor,15148.68,,10,10,28,5,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",31.59813986,21.74764647,9.39,16,_,4551.647865,35.42314228,13 Years and 5 Months,Yes,49.08309253,,Low_spent_Large_value_payments,230.4903929,0,-0.0341,2.3576,0.4793,-0.2353,-0.2051 -0x10d71,CUS_0x86bc,August,23,796-04-1973,Architect,30821.3,2808.441667,4,3,11,3,"Mortgage Loan, Auto Loan, and Home Equity Loan",18.00328348,17,3.86,0,_,603.03,31.00168644,25 Years and 4 Months,NM,60.78632609,145.1761534,Low_spent_Small_value_payments,364.8816872,0,0.8211,0.4731,2.7479,0.7165,-0.3954 -0x10d7d,CUS_0xc56b,August,25,175-96-1739,Musician,74780.48,6340.706667,7,6,24,4,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,18.2289283,15.72,7,Standard,2224.15154,36.18706694,,NM,226.9975812,414.2559982,Low_spent_Small_value_payments,282.8170873,0,0.3804,-0.2641,-2.8006,0.5317,0.4269 -0x10d89,CUS_0xb209,August,30,547-23-1873,Musician,10300.895,,3,7,17,2,"Debt Consolidation Loan, and Not Specified",11.63827891,12,2.08,5,Standard,833.93,38.18574446,20 Years and 11 Months,No,15.10057115,,Low_spent_Small_value_payments,259.1635709,0,0.2578,-0.5306,0.5317,-0.4795,-1.7615 -0x10d95,CUS_0x5073,August,27,279-29-4520,Manager,27286.53,,6,3,18,0,,,13,1.33,8,Standard,302.21,36.12135997,16 Years and 3 Months,No,0,104.4691001,Low_spent_Small_value_payments,413.5186499,0,-1.3819,-0.2031,-0.0393,-0.1792,-1.8212 -0x10da1,CUS_0x24df,August,35,944-82-4384,_______,101275.8,8537.65,4,7,6,0,,,8,16.71,10,Standard,543.0125679,24.45664718,32 Years and 8 Months,Yes,0,859.0578692,Low_spent_Large_value_payments,344.3688744,0,-0.3367,-0.7768,0.2043,-0.4205,1.0958 -0x10dad,CUS_0x3a55,August,23,951-37-4835,Media_Manager,15786.96,,6,7,27,9,"Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Personal Loan, and Payday Loan",,16,20.24,11,_,3008.98,23.14268925,7 Years and 6 Months,Yes,101.9709023,,!@9#%8,234.2290565,0,-2.9805,-1.0616,0.5892,0.1819,-0.9802 -0x10db9,CUS_0x8a5,August,46,875-61-5832,Media_Manager,36779.9,2854.991667,5,4,10,0,,7.06914333,4,3.34,6,Good,1015.81,30.71464401,26 Years and 6 Months,No,0,137.5971136,Low_spent_Small_value_payments,437.902053,0,0.4479,-0.8429,-1.3975,-1.5406,0.8115 -0x10dc5,CUS_0xdac,August,34,771-98-9835,Scientist,15375.98,1348.331667,2,5,3,0,,13.1622281,12,3.93,5,Good,680.6239395,23.65241759,32 Years and 0 Months,No,0,11065.80921,Low_spent_Large_value_payments,367.8716141,0,-0.0784,-0.0187,3.2691,0.7224,-0.3246 -0x10dd1,CUS_0x2194,August,34,986-52-3729,Scientist,8086.375,,8,8,25.06745738,6,"Personal Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Personal Loan, and Student Loan",43.24448388,25,27.16,9,Bad,4110.010954,24.54128065,8 Years and 3 Months,Yes,24.83994814,,Low_spent_Small_value_payments,257.9574496,0,-0.4101,0.6977,-0.2839,0.2818,-1.5233 -0x10ddd,CUS_0x6972,August,42,926-84-8661,Musician,67321.96,5834.163333,2,3,2,2,"Debt Consolidation Loan, and Mortgage Loan",4.462346276,8,3.37,0,Good,1254.76,42.67994663,28 Years and 6 Months,No,70.7629071,49.18483873,High_spent_Large_value_payments,703.4685875,0,2.2727,1.719,0.3139,0.087,0.8028 -0x10de9,CUS_0x90e6,August,18,880-56-9524,Writer,82329.56,6765.796667,5,3,15,2,"Mortgage Loan, and Debt Consolidation Loan",15.76005801,13,,8,_,61.40856083,27.49139331,6 Years and 2 Months,Yes,92.0660155,,High_spent_Large_value_payments,677.405649,0,-0.6415,-1.036,0.9076,0.3591,0.1671 -0x10df5,CUS_0x87f0,August,43,827-51-8922,Mechanic,44964.22,3898.018333,6,1153,15,3,"Credit-Builder Loan, Student Loan, and Mortgage Loan",,20,13.04,3,_,210.15,36.46915409,33 Years and 5 Months,Yes,75.40796961,,High_spent_Medium_value_payments,431.3123561,0,-1.3637,0.4247,0.2524,0.5326,0.7884 -0x10e01,CUS_0x583b,August,28,236-13-4647,Manager,32853.95,,2,3,2,100,Auto Loan,7.857302898,8,10.73,3,_,918.3194232,22.65397298,31 Years and 0 Months,No,361.3783132,,Low_spent_Small_value_payments,177.8675501,0,-0.9742,-0.5719,1.952,0.575,-1.1478 -0x10e0d,CUS_0x135c,August,41,594-39-3524,_______,134947.24,11293.60333,933,6,16,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",19.33799242,18,8.34,6,Standard,1085.51,35.1303233,19 Years and 2 Months,Yes,321.2256555,362.6725148,High_spent_Medium_value_payments,695.4621631,0,-0.3639,-0.7457,-0.4476,-0.0214,-0.6628 -0x10e19,CUS_0x8c2d,August,26,333-11-9700,Media_Manager,35165.46,,5,6,18,0,,17.97813576,,8.21,3,Standard,953.2228996,26.73125284,20 Years and 4 Months,No,0,168.5499633,High_spent_Small_value_payments,380.3095941,0,1.2923,0.8586,-0.7211,1.3825,0.3614 -0x10e25,CUS_0x911e,August,38,430-60-9262,Architect,30321.95,,1,2,6,4,"Payday Loan, Student Loan, Mortgage Loan, and Student Loan",11.66833335,10,5.02,6,Good,305.09,29.97230516,17 Years and 6 Months,No,70.46849009,,Low_spent_Medium_value_payments,299.1044004,0,0.5845,0.1646,-0.0439,0.8402,-0.2423 -0x10e31,CUS_0x4098,August,18,422-50-2476,Doctor,18153.18,,10,8,34,5,"Personal Loan, Student Loan, Personal Loan, Payday Loan, and Home Equity Loan",,15,18.15,14,Bad,3830.47,34.16858862,9 Years and 0 Months,NM,66.61860403,92.11154292,Low_spent_Small_value_payments,304.8463531,0,0.3357,0.2544,-0.8553,0.6328,0.9104 -0x10e3d,CUS_0x8449,August,47,571-35-3463,Teacher,112938.08,9562.506667,2,7,9,1,Not Specified,4.199738235,7,9.48,0,Good,1398.69,32.81447351,27 Years and 2 Months,NM,91.36662006,164.9544896,High_spent_Large_value_payments,939.929557,0,0.1266,-0.6897,-0.2143,1.2813,-1.7583 -0x10e49,CUS_0x7051,August,31,940-15-4402,Doctor,120922.26,,2,2,3.288361749,2,"Not Specified, and Payday Loan",,2,3.37,6,_,1059.788826,40.02531607,21 Years and 6 Months,No,126.7274276,,High_spent_Large_value_payments,890.3445382,0,0.265,0.9058,-0.6654,0.2746,-0.2175 -0x10e55,CUS_0x3d53,August,29,341-94-4616,Developer,75524.26,6118.688333,2,5,10,4,"Home Equity Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",13.65116907,10,7.14,0,_,852.62,34.94749563,,No,167.2879146,481.011067,Low_spent_Medium_value_payments,243.5698517,0,0.3596,-1.3701,0.1175,-0.2424,-0.6928 -0x10e61,CUS_0x1979,August,31,661-25-5123,Doctor,87843.69,,1,4,1.288361749,2,"Personal Loan, Mortgage Loan, and Payday Loan",0,3,0.64,3,Good,879.2827835,25.11144435,15 Years and 11 Months,No,66581,955.0634272,Low_spent_Small_value_payments,408.6296946,0,-0.1784,0.8371,0.4701,1.7497,-0.3954 -0x10e6d,CUS_0xa262,August,22,579-46-3006,Lawyer,67639.38,5679.615,3,2,7,2,"Debt Consolidation Loan, and Home Equity Loan",8.946581606,10,10.23,0,Good,423.26,36.06750527,,No,96.24654424,10000,Low_spent_Large_value_payments,415.2877388,0,-0.612,-0.0463,1.3486,-1.654,0.6961 -0x10e79,CUS_0xb17b,August,55,722-93-1767,Teacher,91965.63,7151.015425,0,6,8.288361749,0,Student Loan,,4,3.12,4,_,820.86,42.89304538,19 Years and 8 Months,No,423.8739664,570.687436,High_spent_Large_value_payments,779.5433833,0,0.7259,0.8439,0.6993,0.9656,-2.3424 -0x10e85,CUS_0xbaee,August,41,015-50-7138,Journalist,66349.96,5333.163333,6,9,16,4,"Payday Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,14,8.58,17,_,1740.14,37.17792708,12 Years and 4 Months,Yes,165.0255187,283.4990671,High_spent_Small_value_payments,344.7917475,0,0.1165,-0.7583,-0.0678,-0.1213,0.4513 -0x10e91,CUS_0x8bf5,August,37,487-63-4849,Musician,21762134,3891.161667,203,5,4,3,"Debt Consolidation Loan, Auto Loan, and Student Loan",,18,5.63,,Standard,316.87,25.24278077,17 Years and 11 Months,No,93.83436677,75.71793301,High_spent_Medium_value_payments,469.5638669,0,-1.7765,-0.0376,1.8307,-0.046,1.0836 -0x10e9d,CUS_0x97d7,August,51,071-40-6343,_______,29043.12,,5,3,12,100,,13.21150184,8,19.47,3,Standard,489.94,25.12342478,25 Years and 2 Months,Yes,0,35.02097814,High_spent_Medium_value_payments,429.9050219,0,-0.1625,0.0072,-1.3857,0.5064,2.0326 -0x10ea9,CUS_0x2f1d,August,25,730-26-3997,Writer,15139.13,1459.594167,7,7,18.06745738,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Personal Loan, and Credit-Builder Loan",23.80168972,,15.02,11,Bad,3391.780954,38.56763914,,Yes,79.27214727,,Low_spent_Large_value_payments,177.2029534,0,0.8965,-0.595,1.1224,-0.986,1.4122 -0x10eb5,CUS_0x86da,August,35,#F%$D@*&8,Manager,19294.46,,10,5,23.06745738,8,"Personal Loan, Not Specified, Home Equity Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",41.03132402,21.37945876,2.06,9,_,2645.758341,28.19018881,19 Years and 5 Months,Yes,86.26888579,106.9134743,Low_spent_Small_value_payments,209.3845186,0,0.2575,0.3506,1.2564,0.4073,0.748 -0x10ec1,CUS_0xc04f,August,31,037-08-1260,Manager,54734,4607.166667,5,3,8,4,"Not Specified, Mortgage Loan, Personal Loan, and Auto Loan",25.93549076,17.15106971,2.18,,Standard,1375.694241,27.80408311,18 Years and 8 Months,Yes,155.367042,167.33384,Low_spent_Small_value_payments,428.0157847,0,-0.7457,-0.8927,-0.249,0.5394,0.8928 -0x10ecd,CUS_0x5157,August,36,561-50-6583,Writer,19012.94,1805.411667,8,6,31,2,"Debt Consolidation Loan, and Auto Loan",21.6254755,17,15.81,8,Standard,2670.43,35.08334484,8 Years and 5 Months,Yes,25.16027051,126.3149466,Low_spent_Large_value_payments,299.0659496,0,-1.5048,-1.4687,-1.4557,0.7112,-0.2337 -0x10ed9,CUS_0x6743,August,40,#F%$D@*&8,_______,37840.64,,6,5,5,2,"Debt Consolidation Loan, and Mortgage Loan",27.00788727,19.2205148,19.54,7,Standard,2991.096216,32.30958218,15 Years and 5 Months,Yes,60.6803605,239.3270774,!@9#%8,261.3312288,0,1.2016,-0.164,-0.2071,0.3027,-0.081 -0x10ee5,CUS_0xaf67,August,61,210-84-4357,Developer,91432.44,7840.37,4,2,8.288361749,2,"Not Specified, Not Specified, and Debt Consolidation Loan",,10,5.06,4,Good,1127.948502,38.79241423,30 Years and 8 Months,No,183.2068408,760.3152787,High_spent_Medium_value_payments,560.7123081,0,-0.5648,0.4084,1.7789,1.2388,0.5941 -0x10ef1,CUS_0x8fec,August,19,026-74-9990,Architect,45559.59,,10,7,25.06745738,5,"Mortgage Loan, Payday Loan, Student Loan, Payday Loan, and Personal Loan",31.2792425,15,13.28,7,Standard,2886.840954,39.17891932,16 Years and 4 Months,Yes,138.81007,242.8237296,High_spent_Small_value_payments,237.7091625,0,1.0488,-0.0564,0.721,0.1152,-0.5665 -0x10efd,CUS_0xa4ab,August,40,047-81-1032,Scientist,22115.435,,2,1,8,4,"Home Equity Loan, Student Loan, Payday Loan, and Credit-Builder Loan",0.080967003,4,11.5,2,Good,300.3454401,27.53772955,33 Years and 2 Months,No,60.84692726,85.63714773,!@9#%8,327.1584425,0,1.9145,-0.0391,0.5215,-0.0473,1.6806 -0x10f09,CUS_0x3a71,August,80,662-21-2846,Accountant,8865.63,670.8025,8,972,16,3,"Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",11.37593599,11.40157817,10.22,7,Standard,8.629456306,35.52151731,11 Years and 6 Months,NM,13.33840834,56.86163989,!@9#%8,276.8802018,0,-0.1587,0.0684,0.957,0.5122,0.7671 -0x10f15,CUS_0xb8d5,August,48,276-46-7680,Architect,42843.65,3403.304167,0,7,4,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,5,1.61,7,Good,1101.71,34.62859821,20 Years and 5 Months,No,83.59187417,173.7501598,Low_spent_Large_value_payments,352.9883827,0,0.9693,-0.4869,-0.4069,-0.0786,1.7898 -0x10f21,CUS_0x7334,August,37,196-83-8490,Lawyer,115661.32,9349.443333,8,3,13,2,"Not Specified, and Home Equity Loan",23.14114819,18,0.72,2,_,59.91,39.90870785,32 Years and 4 Months,No,115.0422592,103.6909977,High_spent_Medium_value_payments,966.2110765,0,-0.4518,-0.6809,-1.7291,0.8789,-0.5595 -0x10f2d,CUS_0x406c,August,33,744-01-6955,Scientist,14560.43,,6,6,20,6,"Student Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",15.64785539,14.89232967,16.05,8,Standard,2706.43741,23.91743199,13 Years and 10 Months,Yes,47.6316408,75.30669686,High_spent_Small_value_payments,262.098579,0,1.0119,1.0667,0.3295,1.3017,-1.7431 -0x10f39,CUS_0x7ea8,August,32,915-19-9718,Developer,18237.78,,10,7,20.06745738,7,"Student Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Student Loan, Personal Loan, and Personal Loan",51.45839837,27.96219165,3.4,11,_,1777.139409,29.91998518,16 Years and 9 Months,Yes,87.99910743,102.3057235,Low_spent_Large_value_payments,200.5563811,0,0.2671,1.1018,0.5207,-0.1927,-0.5114 -0x10f45,CUS_0x1190,August,48,#F%$D@*&8,Media_Manager,44134.06,,4,4,9,3,"Personal Loan, Auto Loan, and Student Loan",,19,0.9,5,Good,717.2417956,33.94352557,,NM,551.2715539,109.5826239,Low_spent_Large_value_payments,467.1587557,0,0.5287,-0.6785,0.0604,-0.9262,1.5538 -0x10f51,CUS_0xb16c,August,23,427-56-9280,Architect,38261.7,3088.475,6,4,12,4,"Auto Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",21.08924568,14,4.59,0,Standard,1194.12,34.69955216,26 Years and 4 Months,No,84.70736007,145.2722908,High_spent_Small_value_payments,338.8678491,0,1.1356,-0.0932,-2.0927,-0.9951,1.6564 -0x10f5d,CUS_0x41b3,August,20,305-82-4727,Manager,127285.41,10507.1175,4,3,5.288361749,0,Debt Consolidation Loan,2.124091117,5,7.97,4,Good,1141.72,30.33318291,28 Years and 5 Months,No,66.37784009,,High_spent_Small_value_payments,750.7501429,0,-1.0112,1.9157,1.2714,-0.5733,-0.1844 -0x10f69,CUS_0xb949,August,53,275-16-8434,Journalist,93163.52,7828.626667,5,5,9,3,"Payday Loan, Auto Loan, and Personal Loan",12.39070226,11,9.51,5,Standard,13.57,43.28644694,26 Years and 5 Months,NM,149.0727654,111.894109,High_spent_Medium_value_payments,771.8957923,0,-0.9684,0.1056,0.478,0.3243,3.0059 -0x10f75,CUS_0xe6c,August,26,172-24-1577,Entrepreneur,125597.52,9367.500187,1,3,11.28836175,4,"Debt Consolidation Loan, Not Specified, Student Loan, and Debt Consolidation Loan",,9,9.89,4,Good,1168.060776,29.40328371,30 Years and 5 Months,NM,1278.186251,1513.141379,Low_spent_Medium_value_payments,,0,-0.5262,-0.0083,-1.2056,0.247,-0.6169 -0x10f81,CUS_0x9f06,August,53,934-81-9974,Scientist,94187.25,7696.9375,4,5,3.288361749,0,Credit-Builder Loan,10.03297626,12,6.99,5,_,1005.254711,41.70951588,20 Years and 8 Months,No,41.72758325,934.93611,Low_spent_Medium_value_payments,541.6240207,0,0.1559,-1.8252,-0.8823,0.148,-0.4802 -0x10f8d,CUS_0x3d68,August,19,#F%$D@*&8,Musician,7650.145,910.5120833,10,664,30.95700519,6,"Not Specified, Personal Loan, Not Specified, Not Specified, Payday Loan, and Credit-Builder Loan",,26.19578055,3.7,9,Bad,1695.933025,34.59167649,12 Years and 6 Months,Yes,1351.597608,,Low_spent_Small_value_payments,209.5160198,0,0.6069,0.8792,0.4829,-0.4179,-0.2388 -0x10f99,CUS_0x8398,August,23,590-91-7790,Scientist,15937.74,1144.145,9,9,34.06745738,3,"Not Specified, Auto Loan, and Credit-Builder Loan",31.95396228,22,19.26,12,Bad,2655.500954,37.08707013,12 Years and 11 Months,Yes,38.41751661,61.0387962,High_spent_Small_value_payments,248.2378992,0,0.1876,-1.7769,0.8461,1.1826,-0.8638 -0x10fa5,CUS_0xc131,August,44,910-05-8770,Writer,7893.875,900.8229167,8,8,18.06745738,5,"Student Loan, Payday Loan, Not Specified, Credit-Builder Loan, and Payday Loan",44.14525678,22.09503632,18.22,6,Standard,2310.30869,30.47000045,12 Years and 5 Months,Yes,24.00024644,27.09649587,High_spent_Small_value_payments,272.2652614,0,-0.5429,-1.52,0.9912,-0.7567,-0.349 -0x10fb1,CUS_0x5b4e,August,27,589-66-2211,Musician,35880.37,3057.030833,4,1,7.288361749,2,"Debt Consolidation Loan, and Home Equity Loan",,0,7.12,,Good,101.9781899,38.25036141,21 Years and 5 Months,No,55.68093578,,!@9#%8,402.7219495,0,0.9706,-0.7191,1.0724,-0.9564,2.7458 -0x10fbd,CUS_0x443a,August,27,#F%$D@*&8,Teacher,7598.185,,5,4,10,3,"Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",11.01131993,8,15.18,9,Standard,1237.88,28.39911562,18 Years and 9 Months,Yes,71630,31.75106505,Low_spent_Small_value_payments,320.2617635,0,-1.3732,0.3119,0.9059,-3.3391,0.3489 -0x10fc9,CUS_0x13b0,August,33,724-94-0404,Entrepreneur,73417.48,6001.123333,7,4,20,4,"Auto Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",30.15031956,19,14.53,5,Standard,2402.05,29.14792309,11 Years and 11 Months,Yes,163.7130565,101.0783065,High_spent_Large_value_payments,575.3209704,0,-0.6013,1.7457,0.2097,-0.6672,0.7179 -0x10fd5,CUS_0x3097,August,33,228-53-9703,Architect,174098.52,14496.21,5,3,3,4,"Payday Loan, Student Loan, Auto Loan, and Not Specified",,1,1.48,3,Good,24.41529009,39.15906318,20 Years and 3 Months,No,535.592385,530.8036742,High_spent_Medium_value_payments,687.8956784,0,0.5528,-1.41,-0.5797,-2.2969,-1.1475 -0x10fe1,CUS_0x861c,August,29,654-98-3234,Doctor,58539.84,,6,7,32,8,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Student Loan, Mortgage Loan, Payday Loan, Payday Loan, and Not Specified",,21,19.56,10,Bad,2735.13,39.49402297,6 Years and 2 Months,Yes,79792,176.9470064,Low_spent_Small_value_payments,355.9226658,0,-0.158,0.9329,0.6658,-0.1149,-0.2968 -0x10fed,CUS_0x5a48,August,49,549-86-5251,Scientist,51410.98,,4,7,16,0,,16.37401593,15.84364576,1.49,6,Standard,804.8132128,27.5720589,27 Years and 2 Months,No,0,178.0219733,Low_spent_Medium_value_payments,503.2028601,0,-0.0057,0.5711,-0.5637,-1.5919,0.2492 -0x10ff9,CUS_0x6eec,August,48,184-10-9959,_______,34960.25,,6,7,4578,0,,13.45800042,13,8.04,1,Standard,1266.886694,31.40630938,23 Years and 11 Months,No,0,252.8961754,Low_spent_Small_value_payments,368.4062048,0,0.0528,0.639,0.8863,-0.5606,-1.1372 -0x11005,CUS_0x24f1,August,28,526-11-1825,Developer,17685.79,1186.815833,6,9,22,3,"Not Specified, Student Loan, and Personal Loan",20.9575447,15,12.98,7,Standard,2382.63,32.74355112,13 Years and 5 Months,Yes,40.26046357,144.7554489,Low_spent_Small_value_payments,223.6656709,0,0.4214,-1.4693,0.1701,-0.3646,-0.0479 -0x11011,CUS_0x2647,August,37,667-52-0666,Scientist,18618.23,,5,5,16,4,"Credit-Builder Loan, Mortgage Loan, Auto Loan, and Payday Loan",,10.26506227,8.88,7,Standard,2851.650208,27.6942174,18 Years and 3 Months,Yes,55.72718523,87.09017284,Low_spent_Large_value_payments,292.6345586,0,-0.8147,0.7562,-1.079,-0.8163,-1.1215 -0x1101d,CUS_0x9614,August,28,892-09-1255,_______,8044.13,,7,7,29,5,"Not Specified, Not Specified, Mortgage Loan, Home Equity Loan, and Not Specified",45.85171048,25.26425915,5.86,,Bad,2817.091426,39.79163657,19 Years and 6 Months,Yes,32.80291462,,Low_spent_Large_value_payments,251.9724749,0,0.606,0.4527,0.3642,-0.0426,0.9494 -0x11029,CUS_0xde4,August,30,733-85-7446,Architect,75402.52,,2,4,2.288361749,2,"Not Specified, Auto Loan, and Mortgage Loan",0.76584185,5,4.46,2,Good,656.1154417,26.85401727,,No,177.2089052,500.919091,!@9#%8,615.2286342,0,0.2119,-0.1411,-1.4242,0.5753,1.2868 -0x11035,CUS_0x1663,August,39,773-73-1932,Lawyer,14184.935,1038.077917,5,5,6,3,"Debt Consolidation Loan, Personal Loan, and Payday Loan",3.780484973,5,6.66,4,Good,752.1148364,35.13548146,21 Years and 5 Months,No,26.37107576,36.42948793,High_spent_Medium_value_payments,295.2341436,0,1.204,-1.0904,-1.4861,-0.6024,0.6652 -0x11041,CUS_0x2d6f,August,49,011-31-9656,Teacher,81815.31,7036.9425,4,6,3,1,Mortgage Loan,19.92521525,14,5.34,0,Standard,437.82,27.09960694,,No,39.67611651,138.8739325,High_spent_Large_value_payments,765.144201,0,-0.9891,1.9777,0.0935,0.6685,-0.0922 -0x1104d,CUS_0xb250,August,24,924-55-4713,Musician,19803.82,,7,7,26.06745738,5,"Payday Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Auto Loan",37.37244025,22.63001159,4.06,12,_,2380.837928,36.19180834,12 Years and 8 Months,Yes,73.58321011,125.039559,Low_spent_Small_value_payments,217.2887763,0,-0.0279,-1.2179,-0.2432,-1.0553,-1.1599 -0x11059,CUS_0xafa3,August,26,484-09-6362,Engineer,28347.68,2091.306667,0,2,8,0,,3.622503329,5,5.05,2,Good,643.8999938,33.05492769,27 Years and 4 Months,No,0,210.9806602,Low_spent_Small_value_payments,310.3038068,0,-0.5211,-2.5467,-1.2142,0.7999,0.2082 -0x11065,CUS_0x63ac,August,22,959-51-8089,Teacher,28699.48,2434.623333,4,7,19,2,"Home Equity Loan, and Home Equity Loan",21.17423622,20,17.86,8,Standard,813.45,24.00614899,8 Years and 0 Months,Yes,37.19278656,42.45473245,High_spent_Small_value_payments,423.8148143,0,0.7067,0.0836,0.8594,-0.697,0.0809 -0x11071,CUS_0x405,August,31,913-61-3427,Writer,20942.88,1671.24,10,10,32.88954781,6,"Payday Loan, Mortgage Loan, Student Loan, Not Specified, Payday Loan, and Home Equity Loan",33.07184287,25,28.82,12,Bad,4247.08,22.01054386,2 Years and 6 Months,NM,1387.637756,52.6449805,High_spent_Small_value_payments,292.5111823,0,1.0426,-0.5894,-0.7004,-1.0146,0.2341 -0x1107d,CUS_0x87fa,August,32,500-80-2670,Doctor,115362.96,,1,3,2,4,"Personal Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",12.43676062,9.615530363,4.76,4,Good,55.05153941,41.41102101,19 Years and 11 Months,No,248.1565802,191.5996255,!@9#%8,786.7017944,0,-1.1644,-1.5327,1.0002,-0.7344,0.2869 -0x11089,CUS_0xaa5a,August,21,622-18-5455,Doctor,19355.62,,6,7,9,2,"Mortgage Loan, and Home Equity Loan",23.80173209,19,11.38,4,_,1294.09,30.15459981,5 Years and 11 Months,Yes,25.54526965,108.1425818,Low_spent_Small_value_payments,329.2089818,0,-1.1285,1.0311,1.923,0.1135,0.7751 -0x11095,CUS_0xaba4,August,49,526-99-9750,Engineer,19462.925,1496.152099,1,1,8,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",,13,5.51,7,Good,141.7400638,26.49418773,32 Years and 4 Months,No,160.8225489,,Low_spent_Small_value_payments,337.0902563,0,0.2892,-0.454,-0.2575,-1.3813,-0.0477 -0x110a1,CUS_0x4750,August,28,028-65-6849,Accountant,9434.835,,7,10,35.06745738,5,"Personal Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, and Personal Loan",,30.3069844,7.28,15,Bad,2039.408136,27.55157071,13 Years and 6 Months,Yes,33.3295989,,Low_spent_Medium_value_payments,229.434271,0,0.0941,0.6884,-1.0132,-0.9255,0.9016 -0x110ad,CUS_0x7801,August,23,492-06-3147,Engineer,151515.68,,1,6,11,3,"Home Equity Loan, Auto Loan, and Student Loan",,11,2.68,4,_,1078.49,31.27701938,18 Years and 5 Months,No,1322.519529,857.1133438,Low_spent_Medium_value_payments,348.9923515,0,1.3941,-1.437,0.2946,0.8825,-0.9031 -0x110b9,CUS_0xb565,August,37,987-88-0910,_______,33905.67,,8,6,16,4,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",,10,15.03,,Standard,1425.2,36.03967106,17 Years and 3 Months,Yes,67.14186027,45.8439369,!@9#%8,381.1614528,0,-0.6068,0.2973,0.8448,1.4505,0.0939 -0x110c5,CUS_0x5afd,August,80,163-05-8880,Musician,128275.84,,8,6,16.28836175,0,,18.05647963,16,2.87,3,Standard,1171.85,28.17556607,16 Years and 9 Months,No,0,630.2063206,High_spent_Medium_value_payments,1078.796474,0,-0.6572,0.6126,1.3786,0.5756,0.5433 -0x110d1,CUS_0xa28,August,25,808-48-5118,Developer,19043.09,,8,4,20,3,"Student Loan, Personal Loan, and Credit-Builder Loan",40.46760359,25.0971254,5.49,13,_,2220.197764,27.47645712,5 Years and 10 Months,Yes,45.04345454,64.61901958,!@9#%8,320.3299425,0,-0.8573,-1.73,0.3367,0.0095,-0.641 -0x110dd,CUS_0xb461,August,42,981-15-5977,Teacher,63248.98,5456.748333,5,4,3.288361749,2,"Debt Consolidation Loan, Personal Loan, and Auto Loan",13.16318387,11.84208743,1.48,8,Good,481.1152691,27.81677696,24 Years and 9 Months,NM,119.4755026,576.6183987,High_spent_Medium_value_payments,519.5183931,0,-1.3319,-0.005,-1.2452,-1.1467,-0.5794 -0x110e9,CUS_0x5afa,August,35,447-42-6480,Accountant,20576.69,,10,5,27,7,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Student Loan",,27.91511719,2.24,10,Bad,3459.44159,35.92754464,9 Years and 8 Months,Yes,68.07893419,180.7552106,Low_spent_Small_value_payments,240.4382719,0,0.1478,0.5971,1.6615,-0.2804,0.2776 -0x110f5,CUS_0xae36,August,35,756-20-3064,Manager,31433.97,,3,3,16,0,,,16,6.99,3,Standard,188.89,35.83703816,33 Years and 2 Months,No,0,206.2355141,Low_spent_Small_value_payments,363.6142359,0,0.5234,-0.6665,-0.2904,2.08,-0.0938 -0x11101,CUS_0x3385,August,26,#F%$D@*&8,Mechanic,11308032,2836.380833,5,4,15,1,Not Specified,23.46577299,19,14.46,,_,982.98,38.31601298,21 Years and 2 Months,Yes,24.55212742,57.39333233,High_spent_Medium_value_payments,451.6926236,0,1.0133,0.3833,-0.738,0.2209,0.8293 -0x1110d,CUS_0x140e,August,41,622-11-3102,Engineer,90894.08,7744.506667,5,5,0.288361749,4,"Personal Loan, Student Loan, Student Loan, and Payday Loan",,15.09886608,10.12,5,Good,54.02725747,36.59735711,,No,259.7470406,657.8027774,High_spent_Medium_value_payments,526.8383096,0,-0.4197,0.0298,-0.6741,-0.1748,0.0287 -0x11119,CUS_0x2acc,August,48,091-30-2808,Manager,108171.63,9095.3025,3,4,7,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",16.68129802,13.30702978,5.24,4,Good,516.5383227,28.54100619,29 Years and 10 Months,No,145.8706334,691.5581939,Low_spent_Large_value_payments,342.1014227,0,-1.0921,0.6166,-0.3858,-0.1187,1.3736 -0x11125,CUS_0x4f7c,August,19,695-95-0589,Engineer,164861.36,13461.44667,4,3,10.28836175,0,,0,2,6.83,1,Good,455.55,35.35705856,18 Years and 11 Months,No,0,929.0282535,Low_spent_Small_value_payments,1127.053874,0,2.4233,-0.4763,0.0796,0.0275,-0.7153 -0x11131,CUS_0x3943,August,30,845-14-7462,Lawyer,18859.38,,6,4,5,4,"Auto Loan, Payday Loan, Auto Loan, and Payday Loan",20.12327611,15,9.41,6,Standard,330.26,35.71868611,13 Years and 9 Months,Yes,40.29201027,,Low_spent_Small_value_payments,224.4856574,0,-0.0681,-0.5165,-0.1648,1.7078,-0.1134 -0x1113d,CUS_0x4f62,August,47,082-15-0381,Journalist,84045.99,6800.8325,0,3,5,0,,6.310370705,8,3.07,7,_,1124.24,29.20385557,20 Years and 5 Months,No,0,319.0072546,Low_spent_Large_value_payments,631.0759954,0,-0.0284,-2.4486,-2.0394,-0.0458,0.668 -0x11149,CUS_0x8a78,August,25,579-14-0774,Accountant,63010.84,5550.903333,1,5,6,1,Payday Loan,15.21286718,12,8.19,1,Good,180.51,39.66339027,25 Years and 11 Months,No,34.69273627,102.2876284,High_spent_Large_value_payments,658.1099687,0,-0.2563,-0.4168,0.1259,-0.5081,-0.1717 -0x11155,CUS_0x6a4b,August,25,886-47-6166,Mechanic,22115.475,1830.95625,4,6,1,2,"Home Equity Loan, and Student Loan",,13,11.25,5,Good,510.55,32.40940007,22 Years and 8 Months,No,29.4299489,44.09378973,Low_spent_Large_value_payments,379.5718864,0,1.593,0.4318,-0.2523,0.1798,-0.7412 -0x11161,CUS_0x1799,August,47,069-90-4166,Mechanic,17098.88,1555.906667,7,4,9,4,"Debt Consolidation Loan, Payday Loan, Personal Loan, and Payday Loan",,20,7.14,5,Standard,1408.73,38.87421077,26 Years and 4 Months,Yes,51.67002068,122.3672289,Low_spent_Small_value_payments,271.5534171,0,-2.3033,1.4222,-2.3412,-0.151,-1.0381 -0x1116d,CUS_0x8f3,August,41,280-61-0137,Scientist,17493.02,,6,7,19.06745738,9,"Auto Loan, Mortgage Loan, Personal Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Payday Loan",30.24098794,17,6.8,13,Bad,2766.170954,40.3740184,,Yes,101.6215472,100.7213269,Low_spent_Medium_value_payments,209.7120046,0,-0.2256,0.5055,0.9917,-0.1959,-0.1136 -0x11179,CUS_0x2ca3,August,18,033-64-6829,Scientist,17075.64,,4,9,23.88954781,6,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Personal Loan, Auto Loan, and Student Loan",11.82825888,9.305541837,11.07,14,Standard,2934.773015,35.2367339,,NM,1515.623622,151.008172,!@9#%8,189.3801192,0,2.0736,0.7932,0.0718,-1.0506,0.5451 -0x11185,CUS_0x8d96,August,33,671-41-2038,Engineer,156429.52,,5,3,2.288361749,2,"Auto Loan, and Debt Consolidation Loan",4.130131151,5.641709482,11.73,6,Good,1295.118599,30.90461549,20 Years and 0 Months,No,179.1760689,732.6811564,High_spent_Large_value_payments,1043.659569,0,-0.1888,-0.2533,-0.3762,-0.6685,2.0169 -0x11191,CUS_0xbd5,August,53,893-14-9648,Media_Manager,105870.6,8763.55,7,3,5,4,"Student Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",,13,,7,Standard,1174.48,31.94683531,24 Years and 3 Months,Yes,205.6522687,620.3748364,Low_spent_Small_value_payments,340.3278949,0,-1.5272,-0.8564,-0.9194,-0.3781,0.7823 -0x1119d,CUS_0x23b0,August,39,040-53-8435,Scientist,73905.76,,2,4,10,0,,5.461325911,6,7.01,4,Good,1344.31,28.83388802,27 Years and 2 Months,No,0,132.3825212,High_spent_Large_value_payments,731.7988121,0,1.0608,0.9748,-0.5095,1.7313,0.6065 -0x111a9,CUS_0x435f,August,50,229-91-0496,Teacher,127430.52,,4,5,2,0,,,1,9.24,2,Good,913.955886,36.81765994,25 Years and 3 Months,No,0,84.92570644,High_spent_Large_value_payments,1251.974666,0,-1.1473,-0.8683,0.2163,0.4138,0.7066 -0x111b5,CUS_0xb88c,August,53,309-02-3479,Accountant,159058.44,12240.56231,5,2,1,1,Credit-Builder Loan,12.98967201,11,4.83,5,_,892.56,37.05515143,28 Years and 9 Months,NM,1247.05325,109.1128705,High_spent_Large_value_payments,1356.728572,0,-0.5403,-0.2316,1.3238,-0.0048,0.3419 -0x111c1,CUS_0xa082,August,34,737-67-1879,Manager,36068.94,,8,5,13,4,"Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",26.61655004,17,24.99,10,Standard,2208.99,36.47651695,19 Years and 3 Months,Yes,89.06747692,,High_spent_Medium_value_payments,349.4658748,0,-0.9146,-0.41,1.15,-0.4856,-0.6631 -0x111cd,CUS_0x5b42,August,20,513-25-2787,Manager,59110.83,4408.843427,6,8,29.95700519,8,"Credit-Builder Loan, Personal Loan, Auto Loan, Payday Loan, Personal Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",,21,22.23,1113,Bad,4329.270954,35.29560302,3 Years and 9 Months,Yes,1929.015108,141.7479377,High_spent_Medium_value_payments,329.235908,0,-1.084,1.3175,1.2896,0.4145,-0.8113 -0x111d9,CUS_0x90d7,August,22,737-92-9457,Mechanic,76941.6,6540.8,6,4,16.28836175,6,"Mortgage Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Personal Loan, and Auto Loan",19.18927956,17,14.13,8,_,23,38.45999053,20 Years and 0 Months,Yes,203.9809002,477.2876009,!@9#%8,632.7489599,0,-1.7282,0.7318,0.0896,0.9302,-0.66 -0x111e5,CUS_0x3f3e,August,33,030-62-1209,Engineer,39791.2,,6,9,29,100,"Personal Loan, and Not Specified",,27.41467931,15.55,7,Bad,1472.144961,23.23358066,,NM,58.03885575,231.2086768,Low_spent_Small_value_payments,349.9458008,0,-2.3704,-1.776,1.4755,-0.4741,-0.2518 -0x111f1,CUS_0x8f7f,August,25,184-07-3420,Architect,14475.63,1092.3025,7,7,10,2,"Student Loan, and Credit-Builder Loan",16.15139786,12.0489245,19.97,10,_,1859.625257,33.83367467,6 Years and 9 Months,NM,15.77701815,35.81739775,High_spent_Small_value_payments,317.6358341,0,0.1089,-2.5784,-1.2806,-0.0067,0.9113 -0x111fd,CUS_0x7e0b,August,37,333-61-5851,Media_Manager,30685.78,2591.148333,916,10,19.06745738,5,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Auto Loan, and Home Equity Loan",,26.47512161,16.67,6,_,3157.013509,39.23734856,9 Years and 5 Months,Yes,91.77083175,56.01374489,High_spent_Medium_value_payments,334.6099688,0,-1.025,-0.7321,0.8797,1.6919,0.2523 -0x11209,CUS_0x204b,August,31,893-44-1748,Mechanic,52256.67,4322.7225,10,5,21,3,"Home Equity Loan, Personal Loan, and Personal Loan",,27.56355214,19.69,13,Bad,2306.933768,30.40407103,,Yes,82.84402266,51.15649067,High_spent_Medium_value_payments,548.2717367,0,-2.2501,0.5551,-0.6647,-0.6224,-0.4741 -0x11215,CUS_0xaf18,August,26,627-46-2774,Lawyer,28174.7,,7,6,15,2,"Home Equity Loan, and Payday Loan",39.42540574,28.75570341,8.91,9,Bad,2310.735532,28.31311092,10 Years and 6 Months,NM,70320,99.77596459,Low_spent_Large_value_payments,354.001725,0,-2.2789,0.3355,0.3288,-0.4848,-0.8022 -0x11221,CUS_0xb021,August,30,628-82-4300,Scientist,64674.2,5675.516667,9,7,17,6,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Mortgage Loan, and Personal Loan",48.17296695,26.37774371,1.71,12,Bad,2598.516161,26.14761345,11 Years and 6 Months,Yes,197.226883,,Low_spent_Large_value_payments,293.433612,0,-0.3201,-0.6562,-0.3217,-0.6237,1.6404 -0x1122d,CUS_0x9840,August,45,286-21-0279,Teacher,8540.855,,10,10,27.06745738,3,"Payday Loan, Credit-Builder Loan, and Student Loan",,21.48839475,13.54,7,Standard,2747.207745,28.81317273,8 Years and 2 Months,Yes,12.15120062,,Low_spent_Medium_value_payments,258.462071,0,-1.1813,-1.0122,-0.243,0.3372,-0.6161 -0x11239,CUS_0x181e,August,36,949-56-8430,Doctor,29555.14,2663.928333,7,3,13,5,"Personal Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",24.62309686,17,9.04,6,Standard,1488.29,26.74922824,12 Years and 9 Months,Yes,81.46542677,30.05859982,!@9#%8,394.8688067,0,0.541,-0.0857,-0.9151,1.102,-0.6126 -0x11245,CUS_0x1fcc,August,27,515-77-3276,Media_Manager,125866.24,10420.85333,5,4,17,3,"Auto Loan, Payday Loan, and Debt Consolidation Loan",18.41611307,14,17.46,10,_,717.86,27.51216431,6 Years and 11 Months,Yes,253.1964894,,!@9#%8,806.2934314,0,0.2966,0.2044,1.4999,-1.8908,-0.239 -0x11251,CUS_0x1440,August,19,807-69-2993,Teacher,7780.49,,8,5,34.06745738,7,"Personal Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, and Not Specified",,17,25.55,6,Bad,4331.830954,36.1705688,12 Years and 9 Months,Yes,38.1078711,19.93089827,Low_spent_Large_value_payments,222.0783593,0,0.7614,0.1332,1.0488,-0.948,0.1967 -0x1125d,CUS_0xdfb,August,37,080-47-2722,Journalist,19366.73,1550.894167,7,3,20,2,"Not Specified, and Personal Loan",19.20399943,,13.18,7,Standard,990.39,31.40927086,24 Years and 11 Months,Yes,26.48480665,164.3712926,Low_spent_Small_value_payments,254.2333175,0,0.3651,0.5818,-0.1466,-1.1447,1.3038 -0x11269,CUS_0x63f1,August,37,677-88-8959,_______,7077.87,670.8225,4,3,17,7,"Payday Loan, Student Loan, Payday Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",14.98481669,,9.44,6,Standard,1923.54,38.59192646,6 Years and 5 Months,Yes,24.74499015,,Low_spent_Medium_value_payments,297.9361359,0,0.2909,-0.555,0.48,0.7242,-0.5998 -0x11275,CUS_0x2b99,August,41,208-85-4934,Lawyer,99858.15,8310.5125,3,8,8,4,"Auto Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",11.83135373,10.10330802,9.43,5,Good,1575.478635,25.77887695,23 Years and 5 Months,NM,190.6142563,70.75494162,High_spent_Large_value_payments,809.6820521,0,-0.883,0.082,-1.9652,0.5963,0.0467 -0x11281,CUS_0x270c,August,34,218-40-1399,Architect,9822.235,,10,5,23.06745738,6,"Student Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,17.24451213,20.99,13,Bad,5618.034925,32.64581307,12 Years and 10 Months,Yes,44.08872736,71.07795364,Low_spent_Small_value_payments,253.8649894,0,-0.2267,-2.6144,0.6657,-1.0259,-2.0774 -0x1128d,CUS_0x1eb6,August,35,459-21-0411,Mechanic,19755.43,,7,6,20,8,"Payday Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Personal Loan, and Not Specified",30.92319888,17,23.89,6,Bad,3671.84,34.87640875,12 Years and 2 Months,Yes,96.40455499,128.6855654,Low_spent_Small_value_payments,238.3384629,0,-0.4414,-0.3677,1.1577,-0.2629,0.2416 -0x11299,CUS_0x1b59,August,19,491-45-7607,Media_Manager,15400.91,1206.409167,6,5,13,4,"Student Loan, Auto Loan, Personal Loan, and Mortgage Loan",23.95955122,22,16.22,6,Standard,854.43,37.71858314,18 Years and 5 Months,Yes,71669,89.54611845,Low_spent_Medium_value_payments,273.9183433,0,-0.6741,-0.2932,-1.2621,1.9215,-0.963 -0x112a5,CUS_0xbe83,August,40,398-65-6897,Journalist,19675.36,,9,4,14,4,"Not Specified, Payday Loan, Student Loan, and Auto Loan",11.3612093,9.420496333,13.31,9,Standard,1179.551813,33.54280354,12 Years and 2 Months,Yes,40.55941023,97.13288507,Low_spent_Small_value_payments,296.369038,0,0.56,-0.1502,1.1776,-0.7996,2.8309 -0x112b1,CUS_0x1cbd,August,25,982-51-6725,_______,36412.86,,7,4,7,3,"Personal Loan, Mortgage Loan, and Credit-Builder Loan",25.86283734,19,4.06,0,_,1485.18,39.59519093,26 Years and 4 Months,No,71.17851039,60.1318479,High_spent_Medium_value_payments,424.1301417,0,0.5016,0.891,0.56,0.1124,-2.6448 -0x112bd,CUS_0xa903,August,42,607-91-4945,Lawyer,93871.89,7849.6575,5,3,7,2,"Auto Loan, and Home Equity Loan",4.428287103,5,1.78,0,Good,1020.080128,25.23863058,31 Years and 11 Months,NM,93.60161743,,Low_spent_Medium_value_payments,245.0566914,0,-0.5947,1.0815,0.0338,0.6917,0.2126 -0x112c9,CUS_0xa714,August,35,713-49-1176,Media_Manager,27412.03,,6,7,15,3,"Not Specified, Credit-Builder Loan, and Payday Loan",15.0499414,13,8.74,6,_,80.06,30.30141453,10 Years and 0 Months,Yes,56.2474427,140.8460403,Low_spent_Small_value_payments,342.8401003,0,-1.1744,-1.8778,-0.7873,1.3458,-0.0222 -0x112d5,CUS_0x4cb3,August,32,812-19-9012,Journalist,79748.92,,5,3,14,1,Payday Loan,17.70105765,,4.2,4,Standard,1069.89,34.29128549,18 Years and 6 Months,NM,55.83916081,554.9267062,Low_spent_Small_value_payments,367.6084663,0,1.605,1.1348,0.4835,0.5468,-0.8931 -0x112e1,CUS_0x3c87,August,49,972-92-2021,Entrepreneur,19179.165,,1,7,5,0,,,,4.35,4,Good,1391.31,25.68630837,28 Years and 8 Months,No,0,20.73593826,High_spent_Large_value_payments,390.2904367,0,0.4483,-0.9122,0.294,-0.0827,0.0619 -0x112ed,CUS_0xbf9c,August,23,704-52-3281,Accountant,10628.735,,4,6,10,2,"Auto Loan, and Not Specified",11.56479775,11,10.64,3,Standard,1185.56,31.3512736,22 Years and 6 Months,NM,11.915153,,Low_spent_Small_value_payments,307.015261,0,-1.0427,-0.3989,-0.4508,-2.9259,1.8087 -0x112f9,CUS_0xb7fb,August,30,352-53-0656,Entrepreneur,16752.69,1666.0575,8,6,27.06745738,6,"Student Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",40.83105607,25.81527011,6.88,13,Bad,2888.853783,29.9804742,7 Years and 4 Months,Yes,73.69989744,67.24878743,High_spent_Medium_value_payments,248.9367772,0,-0.1732,0.2892,-2.3056,0.5646,-0.5411 -0x11305,CUS_0x3cfb,August,32,637-69-3471,_______,59393.36,4870.446667,8,5,15,0,,14.21763457,,20.61,9,Standard,945.8578721,27.41121604,21 Years and 2 Months,Yes,0,174.9987425,High_spent_Medium_value_payments,579.3223092,0,-0.6774,0.4583,0.1575,1.5213,-0.3255 -0x11311,CUS_0x42c0,August,54,957-02-1372,Manager,67712.58,5549.715,3,5,15,1,Mortgage Loan,,3107,4.92,1,_,588.81,34.01341184,30 Years and 9 Months,No,31.29783539,188.7932807,High_spent_Medium_value_payments,584.8803839,0,0.1714,0.5554,-0.3539,0.8944,1.0601 -0x1131d,CUS_0x6213,August,38,678-86-0516,Musician,7343.865,,3,5,11,3,"Personal Loan, Auto Loan, and Credit-Builder Loan",13.9764607,10,11.66,7,Standard,116.26,23.85313989,,Yes,10.43387199,26.1157173,Low_spent_Small_value_payments,322.7492857,0,0.8277,1.0481,-0.3981,1.0191,0.7482 -0x11329,CUS_0x1972,August,30,888-62-8786,Engineer,54858.75,4327.5625,7,7,16,5,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",,21.91048658,11.74,5,Standard,2412.842662,36.64016446,20 Years and 0 Months,Yes,144.2991584,170.1765369,High_spent_Medium_value_payments,368.2805548,0,0.6136,0.8063,-0.3641,-0.9523,-1.338 -0x11335,CUS_0x543,August,45,269-07-0699,Media_Manager,20813.98,1484.498333,3,7,12,7,"Credit-Builder Loan, Not Specified, Personal Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",,12,12.66,5,_,720.08,28.99231001,18 Years and 0 Months,Yes,83.33123677,,Low_spent_Small_value_payments,181.5391079,0,-0.6546,-1.1023,0.5211,0.6505,-0.3542 -0x11341,CUS_0x2ed5,August,26,488-95-0151,Manager,76577.84,6597.486667,4,4,19,7,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, and Personal Loan",,22.76616027,13.01,10,Standard,2481.477041,31.05006349,8 Years and 8 Months,Yes,286.8245358,,High_spent_Large_value_payments,487.8378449,0,0.3669,1.4006,-0.9589,0.1997,-1.4317 -0x1134d,CUS_0x4d48,August,31,306-78-6269,Scientist,137123.88,11198.99,2,1,6,3,"Home Equity Loan, Home Equity Loan, and Auto Loan",,,15.38,,_,1371.453227,43.37116121,,No,299.9941207,260.8101866,High_spent_Small_value_payments,819.0946928,0,0.258,-1.0105,-0.7798,-0.3231,-0.1721 -0x11359,CUS_0x3777,August,56,948-27-5814,Scientist,35012.78,,8,4,9,2,"Credit-Builder Loan, and Credit-Builder Loan",21.92058035,15,10.06,0,Standard,279.53,36.31157696,31 Years and 9 Months,Yes,61218,244.8053165,Low_spent_Large_value_payments,280.2597901,0,-0.9105,0.4196,0.4839,0.3495,-1.6829 -0x11365,CUS_0x625d,August,46,656-18-8525,_______,9654.91,,6,3,16.06745738,2,"Mortgage Loan, and Not Specified",18.8846609,12,6.23,11,Standard,1191.750954,37.63632996,19 Years and 9 Months,NM,11.63328284,10000,Low_spent_Large_value_payments,284.9888755,0,-1.045,1.4718,-1.2772,-0.3224,-0.4614 -0x11371,CUS_0x380d,August,25,571-79-3290,Teacher,17510.655,,4,6,19,100,,13.33732754,10,5.6,6,_,1215.11,33.49820662,22 Years and 9 Months,No,0,70.51195394,High_spent_Small_value_payments,310.9101711,0,0.9434,1.9965,-0.4848,0.2382,0.1644 -0x1137d,CUS_0x56ab,August,80,313-72-1529,Writer,34508.66,,8,7,2622.067457,5,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Home Equity Loan, and Auto Loan",26.84919279,16,26.14,10,Bad,3047.240954,36.50921364,2 Years and 2 Months,Yes,97.2131205,103.5414424,High_spent_Medium_value_payments,284.2973158,0,-0.4816,0.1564,0.5231,-0.1663,2.2372 -0x11389,CUS_0x4cab,August,80,423-70-9474,Entrepreneur,55384.41,4825.3675,6,8,34,8,"Home Equity Loan, Credit-Builder Loan, Not Specified, Auto Loan, Auto Loan, Auto Loan, Auto Loan, and Not Specified",43.39579609,25,23.26,8,Bad,4151.04,27.71133989,10 Years and 0 Months,Yes,205.4880489,282.1178837,Low_spent_Large_value_payments,264.9308174,0,0.318,1.6891,0.2845,-1.3579,-0.1896 -0x11395,CUS_0x8359,August,43,448-22-5128,Writer,10418.315,672.5714365,7,5,28,6,"Auto Loan, Payday Loan, Personal Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",18.1924937,,6.51,11,Bad,2484.72,28.94192821,15 Years and 3 Months,NM,62.72004896,39.93703316,Low_spent_Medium_value_payments,262.8836897,0,0.6774,2.1611,1.6843,-0.2364,0.3916 -0x113a1,CUS_0x7974,August,28,792-49-9231,Entrepreneur,75257.64,6312.47,7,3,19,4,"Payday Loan, Debt Consolidation Loan, Auto Loan, and Credit-Builder Loan",10.73125509,9,6.37,5,Standard,499.04,25.47590434,11 Years and 10 Months,Yes,129.3281085,265.2921775,High_spent_Medium_value_payments,486.626714,0,2.155,-0.0472,1.2072,0.8927,0.2854 -0x113ad,CUS_0x3c72,August,21,#F%$D@*&8,Accountant,111642.18,,5,5,5.288361749,2,"Payday Loan, and Auto Loan",9.293818521,10,2.29,5,Good,1148.920553,39.05530562,16 Years and 0 Months,No,93.64865177,671.383603,High_spent_Large_value_payments,849.5838166,0,1.1939,-0.6187,1.5048,-0.5033,0.4601 -0x113b9,CUS_0x710a,August,26,065-10-1785,Entrepreneur,76855.56,6700.63,10,8,29.88954781,8,"Not Specified, Mortgage Loan, Student Loan, Student Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",90,4352.654853,,11,Bad,2889.69451,24.89618429,13 Years and 6 Months,Yes,1798.810224,140.6142775,High_spent_Medium_value_payments,286.3084172,0,-0.0752,-0.3976,-0.6858,0.5797,0.4828 -0x113c5,CUS_0x1e48,August,48,962-07-8770,Architect,73639.72,6119.643333,6,7,18,0,,21.52533704,13,15.06,3,Standard,1433.03,40.64687937,19 Years and 9 Months,NM,0,,High_spent_Medium_value_payments,718.7973943,0,-0.8859,0.8212,-1.195,-0.0184,-0.3824 -0x113d1,CUS_0xa2eb,August,43,733-40-5119,_______,56366.58,4897.215,5,3,19.28836175,2,"Mortgage Loan, and Payday Loan",23.87120932,20,,5,Standard,327.8,41.1407641,23 Years and 9 Months,Yes,65.36005762,,!@9#%8,490.8603632,0,-1.7342,1.3058,1.2579,2.1035,0.2565 -0x113dd,CUS_0x8a48,August,27,005-97-6679,Engineer,22709.94,,6,7,13,4,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Debt Consolidation Loan",12.99515913,13,11.59,5,_,994.73,26.92758502,21 Years and 11 Months,No,44.98950839,61.58239489,High_spent_Medium_value_payments,349.1775967,0,0.5654,-0.4177,0.0725,1.3558,0.7686 -0x113e9,CUS_0x8bcf,August,44,191-80-9435,Teacher,27794.43,,7,3,9,2,"Student Loan, and Personal Loan",,11,15.25,5,_,371.41,38.50027651,11 Years and 9 Months,Yes,137.4515639,92.39593418,!@9#%8,359.0208862,0,-1.0969,0.3457,0.861,0.4068,-1.1985 -0x113f5,CUS_0xa29a,August,38,609-19-3347,Engineer,84609.78,6579.689941,5,4,1,3,"Credit-Builder Loan, Payday Loan, and Not Specified",18.89492021,,3.82,0,_,227.721482,38.52590167,23 Years and 0 Months,No,797.5888866,190.8301798,High_spent_Medium_value_payments,658.0249645,0,-0.9052,0.6018,-0.0865,-0.1903,0.9567 -0x11401,CUS_0x78af,August,37,365-11-8309,Teacher,88827.54,7199.295,5,5,6.288361749,4,"Mortgage Loan, Mortgage Loan, Auto Loan, and Payday Loan",,,15.78,4,Standard,512.09,35.29044556,11 Years and 9 Months,Yes,277.043609,503.8385612,High_spent_Large_value_payments,598.9847908,0,0.5093,-1.485,0.8007,-0.0965,1.6075 -0x1140d,CUS_0x2bb5,August,29,766-17-4484,Architect,8241.75,843.8125,8,6,19,2,"Credit-Builder Loan, and Personal Loan",39.82390523,26.49713199,8.89,16,Bad,2873.247005,40.1294497,17 Years and 2 Months,Yes,12.41053935,38.7109236,Low_spent_Medium_value_payments,313.2597871,0,-0.3223,-1.1842,-0.3485,-1.0808,0.4047 -0x11419,CUS_0x7d93,August,40,695-08-9117,Engineer,52820.16,,6,4,5,2,"Debt Consolidation Loan, and Debt Consolidation Loan",7.970606458,10,1.27,0,_,1081.961249,27.10789618,29 Years and 0 Months,No,81.53346235,193.35758,High_spent_Medium_value_payments,446.7747789,0,-1.0643,-1.7567,-1.5695,2.7118,0.3715 -0x11425,CUS_0x6b52,August,27,556-49-4379,Media_Manager,88412.01,7495.6675,1,4,11,100,"Payday Loan, Credit-Builder Loan, and Mortgage Loan",12.80263503,9.005408962,0.55,5,Good,1046.391459,41.48649415,31 Years and 2 Months,No,199.4929765,173.6998509,High_spent_Large_value_payments,616.3739226,0,1.359,-1.0209,0.6142,-0.269,-0.3634 -0x11431,CUS_0x892d,August,18,148-15-1292,Manager,9427.945,,6,6,29.06745738,7,"Home Equity Loan, Credit-Builder Loan, Student Loan, Not Specified, Credit-Builder Loan, Auto Loan, and Payday Loan",,,9.67,11,Bad,2581.980954,35.92569169,8 Years and 3 Months,Yes,48.09471194,,Low_spent_Small_value_payments,257.2426984,0,-0.0805,0.0233,-1.3108,-1.1652,-0.9546 -0x1143d,CUS_0x5641,August,49,333-43-6398,Accountant,56609.58,,8,3,10,2,"Mortgage Loan, and Debt Consolidation Loan",,11,10.59,0,Standard,490.8703985,40.26314563,19 Years and 3 Months,Yes,73.9334745,165.985183,High_spent_Small_value_payments,515.2315664,0,-0.9518,0.3587,1.1897,-0.5202,0.0562 -0x11449,CUS_0x4f05,August,22,089-63-1676,Musician,33390.92,3068.576667,8,10,20.95700519,9,"Payday Loan, Student Loan, Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",,19.15192308,23.73,11,_,4259.849982,30.90076093,13 Years and 9 Months,Yes,1501.5755,121.5047479,High_spent_Medium_value_payments,212.7270496,0,1.4798,1.2738,0.3002,-1.6591,-1.9083 -0x11455,CUS_0x8bcd,August,34,948-09-0109,Teacher,50778.48,4501.54,6,6,18,7,"Personal Loan, Not Specified, Mortgage Loan, Payday Loan, Home Equity Loan, Not Specified, and Mortgage Loan",,19.03412789,13.52,6,Standard,1701.078401,37.09861815,17 Years and 6 Months,Yes,152.9570457,309.0674241,Low_spent_Medium_value_payments,268.1295302,0,1.0585,0.7916,-2.0859,0.7118,-0.699 -0x11461,CUS_0x3b90,August,24,699-86-7977,Writer,16413.23,1262.769167,6,10,31.88954781,6,"Payday Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",,25,,8,Bad,2547.35,28.8916774,12 Years and 10 Months,Yes,1397.643624,,Low_spent_Small_value_payments,248.9473843,0,-2.46,-1.0878,0.1734,0.6514,0.8311 -0x1146d,CUS_0x3257,August,40,970-71-1911,Developer,78595.6,6642.633333,9,7,17,6,"Mortgage Loan, Mortgage Loan, Student Loan, Student Loan, Home Equity Loan, and Auto Loan",26.10238854,17,11.4,9,Bad,1421.43,34.47287752,12 Years and 3 Months,Yes,366.9658733,604.4922495,Low_spent_Medium_value_payments,,0,-1.5795,-0.0205,0.1693,-2.0655,-0.3999 -0x11479,CUS_0x25ed,August,54,#F%$D@*&8,Writer,57365.73,4420.592439,8,4,8,2,"Payday Loan, and Mortgage Loan",11.31104393,8,13.82,4,Standard,910.8276349,38.10285022,17 Years and 6 Months,Yes,387.2760672,173.2180528,High_spent_Medium_value_payments,496.9384725,0,-0.2367,0.3684,-2.2098,-1.2718,-0.8543 -0x11485,CUS_0x6dec,August,42,918-46-9849,Developer,16511.395,1528.949583,2,5,8,2,"Student Loan, and Student Loan",0,0,7.91,4,Good,1206.07,33.84499978,29 Years and 2 Months,No,14.48345459,,Low_spent_Small_value_payments,246.7584024,0,-0.9754,-0.0752,0.1716,-0.7285,0.6618 -0x11491,CUS_0x3d60,August,24,127-22-3098,Teacher,40289.79,3073.4825,5,6,10,2,"Mortgage Loan, and Home Equity Loan",7.78975374,8,0.89,3,Good,1073.74,36.46549173,16 Years and 5 Months,No,38.97639029,10000,High_spent_Small_value_payments,374.9843353,0,-0.667,-0.48,1.3668,0.473,-1.0659 -0x1149d,CUS_0x269b,August,43,615-23-3582,Teacher,82757.96,,6,9,31.95700519,6,"Home Equity Loan, Payday Loan, Personal Loan, Home Equity Loan, Mortgage Loan, and Mortgage Loan",,21.51063319,19.09,14,Bad,5033.260916,35.54620335,5 Years and 6 Months,Yes,1708.235188,,Low_spent_Large_value_payments,123.1881437,0,0.013,0.5365,1.2763,1.0964,-0.3582 -0x114a9,CUS_0x91dd,August,36,947-53-5559,Writer,79062.44,6854.536667,8,6,5,4,"Student Loan, Not Specified, Credit-Builder Loan, and Auto Loan",22.56689372,21,15.63,4,Standard,426.07,33.70666286,9 Years and 3 Months,Yes,182.5895499,,Low_spent_Medium_value_payments,199.9553469,0,-0.1787,0.2304,-0.1959,-0.5749,0.1144 -0x114b5,CUS_0x7036,August,18,991-19-9986,Entrepreneur,34506.14,3032.511667,10,7,1254.067457,5,"Credit-Builder Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",,26.77793594,,10,_,4204.06457,36.20089196,11 Years and 10 Months,Yes,116.6601959,78.51446672,High_spent_Medium_value_payments,331.3562161,0,-0.068,-1.5627,0.0499,0.3049,-0.2276 -0x114c1,CUS_0x2ca6,August,46,477-91-2380,Lawyer,17502.19,,7,5,6,5,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",,13,15.32,4,_,251.99,35.09734654,13 Years and 10 Months,Yes,52.99951406,53.72523603,High_spent_Small_value_payments,291.3268332,0,-0.5081,0.3226,0.1514,-0.9456,1.42 -0x114cd,CUS_0x8852,August,34,723-55-9485,Journalist,129591.32,10667.27667,4,5,1.288361749,0,,,3,2.91,8,Good,1202.126136,38.8818919,32 Years and 6 Months,No,0,1244.234703,Low_spent_Medium_value_payments,611.9286819,0,-0.3548,0.3974,-0.7168,-1.3797,0.4218 -0x114d9,CUS_0xc0c8,August,20,150-91-6941,Developer,16594.59,1497.8825,82,7,35.06745738,2,"Auto Loan, and Mortgage Loan",21.54096363,10,23.02,10,Standard,2360.230954,32.83940339,19 Years and 4 Months,Yes,15.5443983,,!@9#%8,233.8665484,0,0.6149,-0.7993,1.4289,0.3662,0.5856 -0x114e5,CUS_0x340e,August,39,460-11-1786,Writer,106119.68,9128.306667,3,5,18,3,"Auto Loan, Student Loan, and Mortgage Loan",,14,16.95,5,Standard,336.54,33.39604424,15 Years and 8 Months,Yes,256.3297434,,Low_spent_Medium_value_payments,128.9122552,0,-2.2125,1.368,0.8542,-0.3057,-1.6404 -0x114f1,CUS_0x4c9c,August,26,324-91-7263,Accountant,83962.92,7148.91,6,7,26,6,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Personal Loan",44.65806691,20.76979659,2.97,11,Bad,2240.262122,25.08681651,12 Years and 10 Months,Yes,416.6088072,,Low_spent_Small_value_payments,66.92082864,0,2.6312,0.9586,-0.6921,-0.3562,0.4443 -0x114fd,CUS_0x2040,August,26,420-67-6873,Entrepreneur,10287.56,788.2966667,5,5,21,4,"Home Equity Loan, Student Loan, Auto Loan, and Not Specified",,26.77179506,10.66,4,_,2958.329609,36.61436192,9 Years and 10 Months,Yes,32.83336912,71.00567121,Low_spent_Small_value_payments,264.9906263,0,0.1232,-0.3164,-0.2808,1.5028,-0.4648 -0x11509,CUS_0x7755,August,49,669-85-5930,Musician,22313.78,1936.481667,1,3,1,0,,90,3423.576514,10.16,6,Good,1011.39789,24.61208419,24 Years and 2 Months,NM,0,152.1661268,Low_spent_Medium_value_payments,321.4820399,0,-0.6783,0.9086,-0.7863,3.4476,-1.1606 -0x11515,CUS_0x411d,August,26,956-90-9886,Media_Manager,15134.06,,7,7,30.06745738,7,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",32.88306246,17.82750873,4.03,9,Bad,2995.677308,38.6415564,7 Years and 9 Months,Yes,71.76209771,63.22845272,High_spent_Small_value_payments,200.1063283,0,0.0352,-1.2659,-1.1045,-1.8437,-1.8733 -0x11521,CUS_0x28ee,August,42,875-31-2310,Manager,34855.08,,5,7,23,5,"Payday Loan, Mortgage Loan, Payday Loan, Payday Loan, and Credit-Builder Loan",20.07777191,16.6244383,8.22,11,_,1859.830386,28.87735558,17 Years and 5 Months,Yes,136.5426719,59.91366754,High_spent_Medium_value_payments,338.3026605,0,0.1903,0.432,0.5973,1.2013,0.9835 -0x1152d,CUS_0x9be7,August,26,544-13-9805,Engineer,30789.35,,5,4,7,4,"Auto Loan, Home Equity Loan, Not Specified, and Personal Loan",,6,5.72,6,_,1106.11,29.16604286,20 Years and 6 Months,No,73.86569999,267.6623378,Low_spent_Medium_value_payments,212.3498789,0,-0.7741,0.3328,2.0309,-0.6863,-0.5215 -0x11539,CUS_0xb4b4,August,19,698-29-6212,Media_Manager,32629.08,2672.09,7,5,30,7,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",,26.21062088,9.27,9,Bad,2288.474848,34.99605688,8 Years and 5 Months,Yes,147.6795542,,Low_spent_Large_value_payments,316.0323061,0,0.6717,1.2742,1.2364,0.8843,-1.6781 -0x11545,CUS_0x6a52,August,58,073-61-1093,Musician,21700.68,,5,7,10,0,,15.16808843,11,9.73,,Good,387.3027028,26.09463761,26 Years and 9 Months,No,212.3144929,144.4298604,Low_spent_Large_value_payments,332.1827796,0,0.809,-0.3297,-1.4767,0.0891,0.107 -0x11551,CUS_0xe91,August,34,377-80-4073,Doctor,33777.11,,7,7,14,2,"Home Equity Loan, and Not Specified",25.39060673,17,3.49,0,Standard,619.29,28.71000504,24 Years and 3 Months,No,33.53558863,108.6847882,High_spent_Small_value_payments,409.6555398,0,-1.361,0.1247,0.1225,-1.7065,-0.377 -0x1155d,CUS_0x57e7,August,20,670-11-1080,Scientist,17196.13,,9,7,33.06745738,7,"Student Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",,20.90814619,17.45,11,Bad,4152.298793,34.53505891,,Yes,74.73334891,67.05680106,Low_spent_Small_value_payments,269.5906454,0,0.6339,0.8637,0.5738,1.7527,1.2159 -0x11569,CUS_0x9acf,August,19,305-54-1601,Scientist,22433.66,1574.471667,7,5,13,0,,,11,16.59,8,Standard,1013.53,34.10304786,16 Years and 9 Months,Yes,0,45.10212879,!@9#%8,382.3450379,0,0.98,1.1351,-0.5453,2.2632,-1.0156 -0x11575,CUS_0x153d,August,20,365-79-1629,Accountant,8538.405,,7,5,31.06745738,6,"Payday Loan, Not Specified, Payday Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",34.22036609,23,24.73,9,Bad,4394.500954,30.35176617,1 Years and 9 Months,Yes,27.17578271,35.10347977,Low_spent_Small_value_payments,300.2538246,0,1.8106,0.8949,1.0741,0.9138,1.0076 -0x11581,CUS_0x1a87,August,35,365-77-3067,Mechanic,106030.05,,7,3,14,100,"Student Loan, Mortgage Loan, and Home Equity Loan",15.93570138,14,9.51,8,_,136.53,41.35312563,10 Years and 8 Months,Yes,10979,80.59227045,High_spent_Large_value_payments,885.7982341,0,0.7983,-0.2975,-1.0809,-0.0308,-0.1693 -0x1158d,CUS_0x3169,August,45,292-18-7679,Scientist,31287.48,2858.29,10,5,22,8,"Home Equity Loan, Student Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Not Specified, Personal Loan, and Credit-Builder Loan",,22,19.93,6,Bad,4712.1,23.84689435,7 Years and 6 Months,Yes,129.4984665,50.36966255,High_spent_Large_value_payments,345.9608709,0,-0.6269,1.7814,-2.8036,-0.0171,-0.8651 -0x11599,CUS_0x1640,August,28,386-11-7632,Teacher,102910.11,,7,6,11,2,"Home Equity Loan, and Mortgage Loan",28.39205161,18.11304161,19.1,8,Standard,1051.019002,32.17915605,20 Years and 4 Months,Yes,166.0483202,649.9143328,Low_spent_Medium_value_payments,334.821597,0,0.3586,-0.9814,0.351,0.5797,-1.0622 -0x115a5,CUS_0xbab,August,34,708-47-0256,Writer,40032.16,3465.013333,5,5,3,2,"Personal Loan, and Auto Loan",5.198200989,6,5.08,6,Good,933.6937934,30.9965866,21 Years and 11 Months,No,64.38721912,99.34548095,High_spent_Large_value_payments,432.6873152,0,0.5263,0.3663,-0.78,-1.1761,-1.3675 -0x115b1,CUS_0x9fea,August,44,#F%$D@*&8,Media_Manager,38377.92,,4,5,5,0,,11.85705127,10.85310733,10.54,1,Good,626.928336,37.2289101,31 Years and 10 Months,NM,0,421.8243378,Low_spent_Small_value_payments,192.2916622,0,-0.7617,0.6816,0.5759,1.8029,0.9707 -0x115bd,CUS_0x29f9,August,24,806-26-2787,Media_Manager,9691.01,622.5841667,8,7,18,9,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",,21,21.7,7,Bad,3416.97,22.25017279,3 Years and 2 Months,Yes,66.96393607,24.10240942,Low_spent_Small_value_payments,261.1920712,0,-0.3444,0.1785,-0.1481,0.2395,0.5577 -0x115c9,CUS_0x5c2d,August,49,241-31-0106,Manager,73400.58,5957.715,1,7,11,0,,,7,-4.36,6,Good,1025.71,38.26086746,20 Years and 11 Months,No,0,,High_spent_Small_value_payments,693.5679337,0,-0.1997,-0.6706,-0.2274,1.7936,0.4825 -0x115d5,CUS_0x5af1,August,38,620-05-5524,Doctor,40026.12,3074.173535,6,10,22.88954781,7,"Home Equity Loan, Payday Loan, Auto Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",31.80254667,19,3.64,8,Bad,1472.86,24.81680492,18 Years and 2 Months,Yes,1638.943694,99.03710756,High_spent_Medium_value_payments,256.3765821,0,0.2087,0.0928,-0.1734,1.7063,-2.1391 -0x115e1,CUS_0x6c8e,August,19,672-18-8236,Manager,19098.69,1509.5575,8,10,22.88954781,9,"Mortgage Loan, Not Specified, Home Equity Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Personal Loan",,,26.84,154,Bad,4964.77,38.36595309,12 Years and 3 Months,Yes,1418.906837,161.8768037,Low_spent_Small_value_payments,165.8420276,0,-0.1578,0.6832,-0.0701,0.4041,-0.0765 -0x115ed,CUS_0xc010,August,48,843-92-4425,Media_Manager,31086.42,,5,6,11,0,,,20,2.07,262,Good,1057.47,27.75028385,20 Years and 11 Months,No,0,100.9945971,Low_spent_Small_value_payments,442.4589029,0,-0.6249,0.0094,0.7018,1.0583,-0.3682 -0x115f9,CUS_0x60c5,August,39,078-88-7853,Manager,36238.86,,8,7,11,3,"Not Specified, Mortgage Loan, and Student Loan",17.18732138,15,7.18,,_,1025.234965,32.80125738,,No,60.77391436,,Low_spent_Small_value_payments,206.627714,0,0.5153,0.237,-1.1595,0.0783,0.6828 -0x11605,CUS_0xa878,August,51,300-54-4627,Engineer,117851.07,9870.9225,1,6,7,0,,5.682130857,1.141733921,4.97,1,Good,688.3525994,34.04173337,21 Years and 0 Months,No,0,467.4158246,High_spent_Small_value_payments,779.6764254,0,1.5272,-0.0742,1.1751,-0.6259,-1.5657 -0x11611,CUS_0x997e,August,40,491-56-9204,Accountant,9084.52,,8,7,34.06745738,6,"Auto Loan, Auto Loan, Not Specified, Personal Loan, Payday Loan, and Student Loan",34.31534887,23,6,11,Bad,2727.170954,36.9672537,16 Years and 2 Months,Yes,38.26306838,,High_spent_Medium_value_payments,244.3237823,0,0.0828,-0.8667,-0.5247,0.0472,0.9015 -0x1161d,CUS_0x6320,August,45,442-44-5714,Scientist,72309.42,6135.785,1,5,1.288361749,0,,,11,4.29,1,Good,493.99,38.32581421,,No,0,491.3962739,High_spent_Large_value_payments,782.1196871,0,1.4195,-0.6229,-1.3748,1.4119,-0.5303 -0x11629,CUS_0x23d6,August,19,708-94-3434,Journalist,172074.88,14238.57333,2,6,11,3,"Payday Loan, Payday Loan, and Mortgage Loan",11.00026432,10,11.6,5,Good,59.21,36.7502529,22 Years and 0 Months,No,391.6293696,227.6754345,High_spent_Medium_value_payments,1054.552529,0,1.3779,1.1988,-1.1535,2.2468,1.7441 -0x11635,CUS_0x6fa1,August,42,144-60-9780,Teacher,32854.74,2452.895,7,10,31,5,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,18,27.6,12,Bad,4192.94,27.51566142,5 Years and 3 Months,Yes,76.21535155,294.5594522,Low_spent_Small_value_payments,164.5146963,0,-1.0918,2.262,0.5438,-1.0988,-1.1817 -0x11641,CUS_0x50ab,August,42,585-78-0085,Mechanic,39231.42,3202.285,6,9,23,3,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",18.81959811,9.544070624,12.33,8,Standard,1869.321332,41.02997092,15 Years and 4 Months,NM,49.07273644,97.24089629,High_spent_Medium_value_payments,423.9148673,0,-2.0392,0.8419,-1.6181,0.0879,0.7081 -0x1164d,CUS_0xbb2,August,51,#F%$D@*&8,_______,43249.78,3538.148333,5,5,5,3,"Mortgage Loan, Payday Loan, and Home Equity Loan",5.00495677,6.04660037,11.43,5,_,1631.407198,26.86328495,32 Years and 5 Months,No,97.25829537,33.9122136,High_spent_Large_value_payments,462.6443244,0,0.8768,-0.0308,0.4908,0.3589,-0.4974 -0x11659,CUS_0x38a1,August,44,180-47-5273,Mechanic,79980.52,6712.043333,8,9,24.88954781,7,"Not Specified, Mortgage Loan, Payday Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",23.30516492,,18.72,16,Bad,3921.14,34.17933883,4 Years and 8 Months,Yes,1611.420515,264.3287438,High_spent_Medium_value_payments,351.1249931,0,0.0682,2.0561,-0.7395,-1.7133,-1.8345 -0x11665,CUS_0xa224,August,26,645-72-5423,Accountant,9166.465,,9,5,22,3,"Home Equity Loan, Payday Loan, and Personal Loan",,23.49858163,15.76,12,Bad,2098.676646,24.60541963,12 Years and 11 Months,Yes,21.38599662,44.26356006,Low_spent_Small_value_payments,276.1376517,0,1.2968,0.1884,0.3412,-0.3037,-0.3464 -0x11671,CUS_0x7f31,August,54,630-24-4636,Mechanic,69388.26,,2,4,6,0,,0,1.197924699,8.16,5,Good,910.8371556,40.37836232,22 Years and 2 Months,No,0,,High_spent_Medium_value_payments,719.0133528,0,-0.6108,-0.9488,1.1255,-0.3747,1.8631 -0x1167d,CUS_0x9ed7,August,36,590-63-3545,Architect,85325.24,7395.436667,3,4,10,1,Not Specified,17.72062277,15,5.5,7,Standard,1168.002839,29.77231297,22 Years and 9 Months,NM,65.2452399,,High_spent_Large_value_payments,829.6243116,0,0.9327,0.1154,-0.0903,1.5048,0.0112 -0x11689,CUS_0x52cb,August,43,062-24-3926,Developer,93189.93,8037.8275,2,2,3,3,"Mortgage Loan, Not Specified, and Personal Loan",15.20252784,14,10.65,3,Good,104.8619101,33.7075701,32 Years and 9 Months,No,144.6709472,144.0514551,High_spent_Large_value_payments,770.1265408,0,-0.9787,-0.761,0.0271,-1.5088,-0.6197 -0x11695,CUS_0xaeb1,August,18,342-76-9390,Scientist,61707.72,,10,10,27,4,"Payday Loan, Personal Loan, Mortgage Loan, and Auto Loan",16.6222289,9,19.84,15,Standard,1626.82,35.68449227,15 Years and 6 Months,Yes,690.6418059,354.3777325,Low_spent_Large_value_payments,241.790834,0,1.1267,-0.1413,-0.086,2.3039,0.5749 -0x116a1,CUS_0x5cfd,August,29,697-06-5938,Writer,40972.04,3623.336667,8,6,26,5,"Credit-Builder Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Student Loan",18.99946008,13,16.88,12,_,1803.13,39.39962045,,Yes,147.8958519,34.14097963,!@9#%8,420.2968352,0,0.2191,-1.0251,0.4224,-1.2539,-0.909 -0x116ad,CUS_0x7aa8,August,80,990-79-6246,Media_Manager,14383.03,,8,10,30.06745738,5,"Student Loan, Payday Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",48.12854407,27.61836726,8.03,7,Bad,2793.348172,29.22606143,12 Years and 0 Months,Yes,51.36447607,94.3625856,Low_spent_Large_value_payments,208.5112337,0,1.08,0.434,0.1397,-1.3469,0.1998 -0x116b9,CUS_0xa160,August,44,118-84-2966,Media_Manager,20889.64,1616.803333,10,10,23.95700519,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",21.20453465,,4.42,13,_,3106.034854,36.39625699,11 Years and 11 Months,Yes,1426.614529,,High_spent_Small_value_payments,165.8220362,0,0.1245,-0.9548,0.233,1.1872,-1.1921 -0x116c5,CUS_0xa4ae,August,38,824-23-5571,Journalist,13315.2,1307.6,8,5,16,0,,13.96604534,12,7.84,7,_,1233.74,31.07646614,18 Years and 3 Months,No,0,27.09546533,High_spent_Large_value_payments,343.6645347,0,-0.6111,-0.7144,0.8332,1.9332,-0.2597 -0x116d1,CUS_0x2ef3,August,50,741-45-4523,Mechanic,21751.53,,1741,3,7,4,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",9.369247324,9,4.02,3,Standard,1211.85,35.28286852,16 Years and 10 Months,No,48.50039995,114.8314521,High_spent_Small_value_payments,296.930898,0,-0.5355,-2.0111,0.0653,-1.508,0.435 -0x116dd,CUS_0x95eb,August,27,514-75-9214,Journalist,9852.775,,7,8,25,9,"Not Specified, Auto Loan, Auto Loan, Mortgage Loan, Auto Loan, Payday Loan, Student Loan, Payday Loan, and Mortgage Loan",27.04390147,19,5.59,7,Bad,4887.73,39.66415036,,Yes,61.10009748,,High_spent_Small_value_payments,271.9162132,0,-0.1852,-0.0353,0.577,2.3021,-2.1503 -0x116e9,CUS_0x5337,August,31,823-52-8448,Scientist,42122.43,3451.2025,7,10,16.06745738,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",36.22267514,20,21.3,7,_,2812.720954,34.14689872,14 Years and 0 Months,Yes,114.8871329,176.0427622,High_spent_Small_value_payments,287.4700669,0,-0.8343,-0.0994,0.8412,0.1359,-2.429 -0x116f5,CUS_0x6da8,August,25,566-95-6703,Accountant,37607.28,2842.94,3,6,17,3,"Home Equity Loan, Auto Loan, and Not Specified",22.01330217,15.98486504,21,9,Standard,1540.111783,33.16398472,,NM,81.81690607,170.9383407,High_spent_Small_value_payments,291.5387532,0,0.7162,0.9553,0.2893,0.1346,-0.7922 -0x11701,CUS_0x7330,August,36,528-66-6277,Doctor,59658.09,5250.5075,8,6,8,5,"Not Specified, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",15.1855501,11,10.6,6,_,2034.67,33.63099576,8 Years and 8 Months,Yes,235.4214889,139.0060877,High_spent_Small_value_payments,410.6231734,0,-1.0896,1.7203,-1.0103,1.0021,0.9395 -0x1170d,CUS_0x35e6,August,40,968-59-1967,_______,34625.24,3006.436667,560,6,10,5,"Payday Loan, Student Loan, Personal Loan, Personal Loan, and Payday Loan",20.50938987,15.28886744,12.87,7,_,2721.895976,32.2398144,18 Years and 0 Months,NM,117.7523204,50.36181722,High_spent_Medium_value_payments,382.529529,0,1.2882,-0.4242,0.0356,0.9067,0.2399 -0x11719,CUS_0xac08,August,33,200-48-2687,Doctor,19068.01,1413.000833,8,1155,31.88954781,7,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Mortgage Loan",10.33470854,9.197250854,19,5,_,1764.841468,29.12999115,20 Years and 0 Months,Yes,1380.637364,92.49429745,Low_spent_Small_value_payments,263.8383401,0,-1.3947,-0.5727,1.6059,-0.3183,0.4954 -0x11725,CUS_0x8ea8,August,55,406-21-5977,Engineer,29616.72,,2,1,3,2,"Home Equity Loan, and Auto Loan",1.264015224,4,5.83,7,Good,164.1644728,25.80297239,,No,27.90432343,222.6669974,Low_spent_Large_value_payments,260.9013757,0,0.0956,0.9419,0.6714,-0.6615,-0.3056 -0x11731,CUS_0x244e,August,26,684-71-0736,Mechanic,32835.91,,1,3,1,0,,2.37448126,4,11.27,3,Good,671.88,36.37577441,19 Years and 11 Months,No,0,79.22314055,High_spent_Medium_value_payments,420.7094428,0,-0.8691,0.2224,0.0396,0.29,0.8274 -0x1173d,CUS_0x8fea,August,30,826-06-5646,Engineer,19159.565,,1,6,11,2,"Not Specified, and Mortgage Loan",,10,1.8,3,Good,677.58,32.63547852,26 Years and 11 Months,No,24.53485516,43.38098462,Low_spent_Large_value_payments,340.6472019,0,0.9999,-1.012,-0.799,1.904,-0.8105 -0x11749,CUS_0x155b,August,26,642-53-3146,_______,18309.54,1301.795,3,5,22,2,"Mortgage Loan, and Debt Consolidation Loan",14.18833132,14.38351412,18.15,711,Standard,2132.801052,24.35821769,20 Years and 3 Months,NM,21.25323932,112.0815276,Low_spent_Medium_value_payments,276.8447331,0,0.9894,0.9964,0.8491,-0.0044,-0.3643 -0x11755,CUS_0x628e,August,43,199-27-9186,Accountant,80754.16,,6,9,20.88954781,100,"Student Loan, Student Loan, Credit-Builder Loan, Auto Loan, Student Loan, Not Specified, and Credit-Builder Loan",,14,8.19,12,_,2587.15,37.54537775,15 Years and 6 Months,Yes,1715.653647,581.6604032,Low_spent_Large_value_payments,,0,0.0843,0.7493,-0.8402,-0.4287,0.0339 -0x11761,CUS_0x6d85,August,38,771-46-0192,Doctor,14951.22,,7,10,18.06745738,8,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Mortgage Loan",,22,28.79,10,Bad,3493.800954,28.38812987,7 Years and 9 Months,Yes,51.84110548,,Low_spent_Small_value_payments,270.6476358,0,0.6295,-0.0661,-1.4998,-0.5689,0.4116 -0x1176d,CUS_0x470e,August,40,402-32-6834,Media_Manager,15723.515,1173.292917,6,7,8,2,"Home Equity Loan, and Student Loan",23.06031196,,17.98,12,Standard,700.2,33.63017609,22 Years and 10 Months,Yes,20.89883028,15.66175188,High_spent_Medium_value_payments,330.7687095,0,-0.7507,-0.8337,-0.169,-0.9864,-0.1534 -0x11779,CUS_0x7740,August,39,945-15-9683,Architect,14497.4,,6,10,26.06745738,6,"Debt Consolidation Loan, Personal Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, and Personal Loan",42.73637476,25,19.54,12,Bad,4754.091947,40.57691366,4 Years and 11 Months,Yes,43.40016621,102.3240302,Low_spent_Large_value_payments,215.6158186,0,-1.8023,0.0826,0.3367,1.6198,-0.913 -0x11785,CUS_0xb107,August,28,191-99-1702,Accountant,34946.42,,4,1,4,0,,7.243719872,9,15.32,2,Good,860.37,33.98683451,29 Years and 10 Months,No,0,213.4462294,Low_spent_Medium_value_payments,330.0739372,0,-0.2088,-0.6364,-0.6609,-1.4107,0.8115 -0x11791,CUS_0xb585,August,35,280-11-4476,Manager,16253,1620.416667,8,570,25.95700519,9,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",,19.09112224,7.54,6,Bad,1867.756174,30.57563623,16 Years and 3 Months,Yes,1398.620066,,!@9#%8,257.4706886,0,2.3762,-1.4128,-1.1208,0.5514,1.0971 -0x1179d,CUS_0x4661,August,22,245-45-4597,Architect,35304.41,,8,6,16,7,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Not Specified, and Auto Loan",,14,8.16,11,_,290.39,37.18783749,13 Years and 11 Months,Yes,201.3256675,197.7559741,High_spent_Small_value_payments,174.1217751,0,0.6651,-0.9679,0.3895,0.3363,1.2152 -0x117a9,CUS_0x77e2,August,29,143-90-2973,Media_Manager,66823.12,5368.593333,7,9,19,6,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",,20.03772231,5.87,,Bad,1729.028792,35.96618541,19 Years and 11 Months,Yes,250.8476646,122.9823398,!@9#%8,413.029329,0,2.1181,1.1511,0.4421,0.0158,-0.8375 -0x117b5,CUS_0x4d16,August,32,169-51-5624,Doctor,18514.92,,9,5,19.06745738,6,"Debt Consolidation Loan, Personal Loan, Payday Loan, Student Loan, Payday Loan, and Personal Loan",,14.66623224,15.3,16,Bad,3474.694741,40.47348576,10 Years and 8 Months,Yes,49.67025367,,Low_spent_Small_value_payments,219.1833927,0,0.4477,0.1405,-0.3371,2.1938,0.8699 -0x117c1,CUS_0xbacd,August,38,704-18-6692,Manager,87246.15,7564.5125,4,3,10,2,"Debt Consolidation Loan, and Auto Loan",25.60634829,18,6.63,5,_,494.16,34.4714912,21 Years and 0 Months,No,116.9798297,181.5398289,!@9#%8,697.9315914,0,0.5156,-1.9234,0.5008,-0.0769,-2.1923 -0x117cd,CUS_0x4f57,August,18,504-94-9465,Doctor,10181.5,,4,4,18,0,,10.06393214,8,8.9,7,_,458.36,37.52050801,30 Years and 5 Months,Yes,0,40.89255161,Low_spent_Large_value_payments,298.0532817,0,-0.3057,-1.356,0.2353,-2.7552,0.6822 -0x117d9,CUS_0x1185,August,25,238-50-2115,Accountant,18963.65,,4,8,29,6,"Student Loan, Payday Loan, Not Specified, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",,7,13.04,11,Standard,2422.18,26.01558081,7 Years and 0 Months,Yes,64.12529497,60.75560556,High_spent_Medium_value_payments,304.5495161,0,-0.8763,0.7723,-1.0247,0.6447,1.7408 -0x117e5,CUS_0x755e,August,28,472-41-4865,Accountant,19127.84,,7,10,24.06745738,5,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, and Mortgage Loan",34.66604303,23,29.71,12,Bad,2846.610954,38.48895232,6 Years and 8 Months,Yes,63.97034096,,Low_spent_Large_value_payments,229.4168416,0,-0.305,1.0018,-0.3244,0.398,0.0225 -0x117f1,CUS_0x9538,August,22,852-24-3101,Entrepreneur,85019.76,5782.894507,5,7,4.288361749,0,,8.124241748,9,9.89,3,Good,1072.83,37.20698303,16 Years and 0 Months,No,1006.085493,,High_spent_Medium_value_payments,811.9097105,0,-0.8146,-0.0694,-0.157,2.0084,2.1316 -0x117fd,CUS_0xb239,August,47,047-63-7779,_______,84907.68,6642.952277,3,5,7.288361749,2,"Not Specified, Debt Consolidation Loan, and Auto Loan",9.347870778,9,-1.2,4,_,14.03030381,39.46026172,26 Years and 2 Months,No,700.8930943,,High_spent_Large_value_payments,666.1435358,0,-1.1986,0.6621,-0.0612,-0.6193,-0.1652 -0x11809,CUS_0x25ad,August,37,543-36-7249,Teacher,19744.64,1451.386667,3,6,34,3,"Not Specified, Debt Consolidation Loan, and Student Loan",15.80986729,11.36538475,11.1,6,Standard,1398.453479,32.7322838,18 Years and 4 Months,NM,28.52127591,38.86611121,Low_spent_Medium_value_payments,357.7512795,0,0.5267,0.1221,1.1371,-0.3944,-0.7532 -0x11815,CUS_0x130b,August,31,049-83-9018,Writer,79005,6860.75,5,7,19.28836175,2,"Not Specified, and Student Loan",13.45972655,13,2.74,7,Standard,778.6114166,37.05494075,27 Years and 4 Months,No,68.49550493,778.5223941,High_spent_Small_value_payments,568.802346,0,-1.5792,0.6734,0.5778,-1.3784,1.0105 -0x11821,CUS_0x5ed7,August,45,951-28-5056,Writer,65558.36,5715.196667,10,8,18.88954781,9,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Not Specified",56.50698698,33.84201129,6.4,10,_,2493.837804,36.24349808,8 Years and 6 Months,Yes,1592.475239,276.0053333,Low_spent_Medium_value_payments,288.7090133,0,-0.5513,1.5331,-0.7,0.008,-0.9649 -0x1182d,CUS_0x147a,August,20,947-32-0844,Writer,14384.4,1218.7,3,7,19,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",22.48510356,17,11.11,5,Standard,1465.3,35.84786534,7 Years and 3 Months,Yes,65.49708377,10.79480579,High_spent_Large_value_payments,285.5781104,0,0.7874,-1.0427,-1.086,-1.0293,1.4498 -0x11839,CUS_0x5a5e,August,26,120-69-3385,Manager,107437.53,,4,4,9,1,Credit-Builder Loan,7.482427444,4.551448868,9.37,8,Good,56.41108914,40.16813281,15 Years and 11 Months,No,53479,154.5190409,High_spent_Medium_value_payments,906.9166059,0,-0.4676,0.0792,-0.1293,-0.5896,1.2181 -0x11845,CUS_0x2b09,August,46,485-08-1506,Engineer,7630.57,,5,5,20,6,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",39.99040492,19.17465402,19.96,13,_,3571.815013,27.85867234,2 Years and 8 Months,Yes,28.12958333,78.2001904,Low_spent_Small_value_payments,274.7583096,0,1.3481,1.0678,-0.2105,0.1227,1.2516 -0x11851,CUS_0x6b61,August,41,073-93-9541,_______,16734.13,,0,6,6,1,Debt Consolidation Loan,3.939833468,7,5.71,0,Good,1418.31,37.71791047,28 Years and 3 Months,No,15325,25.43481552,High_spent_Small_value_payments,367.6060798,0,-1.6739,1.0254,-0.9328,-0.387,-0.2238 -0x1185d,CUS_0xc49c,August,41,207-68-9585,Engineer,121813.72,9866.143333,5,1,9.288361749,100,Personal Loan,5.414351688,8,11.14,8,_,203.170025,26.52794293,,No,57.1433571,712.4743236,High_spent_Medium_value_payments,925.8689014,0,-0.9962,-1.0362,-1.4581,0.4369,-0.0101 -0x11869,CUS_0x5952,August,19,#F%$D@*&8,_______,58307.97,,7,10,22.06745738,5,"Debt Consolidation Loan, Student Loan, Auto Loan, Personal Loan, and Home Equity Loan",24.99354828,,21.3,11,Bad,5108.320391,29.55179965,5 Years and 3 Months,Yes,208.5992921,71.71667441,!@9#%8,423.8634956,0,-1.307,-0.003,-0.2405,-0.5035,-0.5004 -0x11875,CUS_0x957c,August,31,271-98-0952,Journalist,130782.4,10773.53333,6,38,9.288361749,4,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",16.81377479,16,9.95,4,Standard,492.86,29.63126,17 Years and 10 Months,No,359.2959398,1079.500495,Low_spent_Small_value_payments,348.4943598,0,1.0371,-0.7488,-0.0513,0.0151,0.4861 -0x11881,CUS_0x311a,August,47,381-74-5902,Media_Manager,48698.78,3865.231667,8,3,11,4,"Home Equity Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,20,10.06,8,Standard,850.37,37.66809782,20 Years and 3 Months,No,143.351366,97.2287133,High_spent_Medium_value_payments,395.9430874,0,1.4691,-0.1559,0.0159,0.8803,0.7621 -0x1188d,CUS_0x35a4,August,39,200-57-9926,Engineer,81199.04,6683.586667,6,7,28,7,"Auto Loan, Not Specified, Student Loan, Home Equity Loan, Mortgage Loan, Auto Loan, and Auto Loan",14.29503382,11,10.3,9,Standard,2436.17,30.47153374,19 Years and 5 Months,NM,427.6528891,118.4796054,High_spent_Medium_value_payments,372.2261722,0,0.2305,0.2962,1.3714,0.2299,0.6317 -0x11899,CUS_0xc4b0,August,41,684-87-0292,_______,31490.63,2766.219167,7,5,17,0,,9.375427116,8,7.39,2,_,708.5,29.63024914,,Yes,0,196.5539161,Low_spent_Medium_value_payments,360.0680005,0,2.1832,-1.9697,-0.0112,0.1967,0.0165 -0x118a5,CUS_0xb70f,August,42,745-06-4072,Lawyer,42708.16,3595.013333,0,4,9,100,"Personal Loan, and Not Specified",6.599549724,9,3.67,7,Good,1180.614158,23.33928321,,No,55.48764122,,!@9#%8,230.4098682,0,1.5513,0.0521,-0.9865,0.2571,-1.5884 -0x118b1,CUS_0xecb,August,21,899-79-3678,_______,141688.28,11574.35667,5,6,2,2,"Home Equity Loan, and Credit-Builder Loan",,12,4.19,5,Good,1030.440723,35.42106619,29 Years and 11 Months,No,145.9531129,1073.877831,Low_spent_Small_value_payments,354.6848342,0,0.6776,0.5842,0.2401,0.5746,-1.6163 -0x118bd,CUS_0x9e9d,August,41,904-32-3540,Developer,19125.48,,10,7,31,6,"Not Specified, Home Equity Loan, Student Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",25.66033657,14.93979241,12.75,,Standard,1578.238365,28.65134674,6 Years and 3 Months,NM,57.88700145,75.57120334,Low_spent_Medium_value_payments,303.9207952,0,-0.726,0.3106,0.3732,0.4912,1.0828 -0x118c9,CUS_0x54e8,August,36,115-27-3103,Lawyer,17501.4,1351.45,9,6,30.06745738,2,"Student Loan, and Debt Consolidation Loan",,18,,7,Standard,1612.940954,36.24653133,5 Years and 10 Months,Yes,24.57920733,10000,Low_spent_Large_value_payments,245.840279,0,-0.9215,-0.3065,-0.6986,1.7491,-1.3453 -0x118d5,CUS_0x6ed7,August,45,759-77-2479,Media_Manager,44915.91,3138.630939,3,6,20,3,"Auto Loan, Auto Loan, and Personal Loan",15.54485057,12.11496475,17.53,7,Standard,1941.571217,27.17414417,15 Years and 2 Months,NM,537.0395603,80.2325557,High_spent_Large_value_payments,449.5886949,0,-1.8409,1.4068,0.3305,0.4324,-0.1183 -0x118e1,CUS_0x5a1a,August,80,#F%$D@*&8,Journalist,32599.32,,3,6,7,1,Auto Loan,,6,6.61,1,Good,1158.546594,25.69727442,32 Years and 0 Months,No,27.13278731,85.84936974,High_spent_Medium_value_payments,393.3939527,0,2.1754,-1.7561,-0.5067,0.6423,-1.2414 -0x118ed,CUS_0x56e7,August,18,476-63-4984,Lawyer,14581.315,,8,4,10,6,"Auto Loan, Payday Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",,19,7.67,8,Standard,471,29.04057767,,NM,61.62907954,57.84578065,Low_spent_Medium_value_payments,267.8360981,0,-0.2632,-0.2106,0.7674,-0.6802,-0.3938 -0x118f9,CUS_0xebd,August,38,528-72-4824,Engineer,7183.53,,2,2,15,6,"Student Loan, Personal Loan, Debt Consolidation Loan, Student Loan, Payday Loan, and Student Loan",29.26762371,21.8467855,8.23,11,Standard,2374.913721,33.7447273,18 Years and 5 Months,NM,35.27023227,,Low_spent_Small_value_payments,248.5437318,0,1.76,-0.5405,-0.0626,0.6083,-0.1657 -0x11905,CUS_0x875,August,53,182-17-1231,Entrepreneur,21568.28,1606.356667,3,6,9,0,,,19,2.26,2,Standard,1039.53,34.74075985,19 Years and 6 Months,No,0,,Low_spent_Small_value_payments,256.0949691,0,-1.3228,0.7565,0.3571,-2.1739,0.6106 -0x11911,CUS_0x1864,August,43,165-11-0805,Journalist,485755,8238.57,2,5,2.288361749,4,"Not Specified, Mortgage Loan, Personal Loan, and Mortgage Loan",0.397603,5,17.32,1,Good,128.48,38.08155488,28 Years and 6 Months,No,177.5035855,719.7805599,Low_spent_Small_value_payments,636.5103156,0,-0.5526,0.417,-1.7655,0.9608,-0.398 -0x1191d,CUS_0xa7d5,August,43,795-17-8225,Accountant,16595.94,,7,5,28.06745738,4,"Auto Loan, Home Equity Loan, Credit-Builder Loan, and Student Loan",22.36811522,15,18.35,6,Standard,1970.570954,29.59053704,7 Years and 2 Months,Yes,40.69342046,81.28054359,Low_spent_Medium_value_payments,248.905248,0,-1.5644,2.4089,0.2246,-0.7484,-1.3347 -0x11929,CUS_0x5a3d,August,25,266-30-4842,Musician,51711.96,4094.33,7,7,22.06745738,8,"Debt Consolidation Loan, Student Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Not Specified",,25.37972443,8.95,17,Bad,3227.167147,29.81696238,,NM,289.527895,,Low_spent_Small_value_payments,193.8773107,0,-1.1066,0.5366,0.4375,-1.0055,-0.8424 -0x11935,CUS_0xf15,August,26,881-11-1453,Developer,45652.17,,8,6,12.28836175,6,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Payday Loan, and Credit-Builder Loan",10.75776454,10,17.94,8,_,28.54,25.92565891,10 Years and 11 Months,Yes,160.4733036,574.4083254,Low_spent_Medium_value_payments,353.890582,0,0.3336,-0.5335,1.2698,0.5601,-1.3942 -0x11941,CUS_0x2297,August,43,#F%$D@*&8,Teacher,16084.71,,7,10,25,6,"Student Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Personal Loan",27.85842981,21,29.57,12,Bad,3647.98,26.83654032,7 Years and 0 Months,Yes,60.13711991,119.9011713,Low_spent_Medium_value_payments,251.4009588,0,0.3186,-0.1014,1.3562,-0.5579,-1.8313 -0x1194d,CUS_0x6587,August,28,#F%$D@*&8,Architect,118763,,0,7,7.288361749,4,"Payday Loan, Student Loan, Payday Loan, and Not Specified",5.785763637,8,2.78,3,Good,293.1572269,36.11871219,29 Years and 4 Months,No,269.2018929,,High_spent_Medium_value_payments,813.3547286,0,-0.3639,-0.467,-0.3499,0.2316,-0.4301 -0x11959,CUS_0x1fec,August,49,#F%$D@*&8,Media_Manager,26440.13,,5,6,12,4,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",23.78963482,16,6.79,5,Good,62.65244539,29.84760394,24 Years and 6 Months,NM,61.18174858,155.3732074,High_spent_Small_value_payments,282.9047606,0,-0.9316,0.325,-1.3598,0.9872,0.7346 -0x11965,CUS_0x15a9,August,39,827-07-8942,Writer,10737.365,,8,4,14,4,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",,16,16.61,8,Standard,1126.18,38.02931709,19 Years and 0 Months,Yes,19.50258106,28.45240848,High_spent_Small_value_payments,300.5230521,0,-0.4664,0.6921,2.3886,-1.3606,0.8662 -0x11971,CUS_0x1612,August,38,147-97-2500,Media_Manager,143823.12,11901.26,7,4,10,4,"Home Equity Loan, Payday Loan, Home Equity Loan, and Auto Loan",13.58403545,11,14.6,7,Standard,1436.53,39.49249398,31 Years and 10 Months,NM,373.970156,743.3793492,Low_spent_Medium_value_payments,352.7764948,0,-0.0855,0.0819,-0.3625,-1.6167,-1.3045 -0x1197d,CUS_0xb096,August,23,249-75-5523,Writer,20172.2,1612.987484,8,7,3213,100,"Auto Loan, Home Equity Loan, and Debt Consolidation Loan",22.99054381,16,6.03,0,_,778.09,31.12292936,24 Years and 4 Months,No,105.2917837,10000,High_spent_Small_value_payments,272.8368188,0,-0.7296,1.0281,-1.4233,0.2536,0.9832 -0x11989,CUS_0xab32,August,42,177-21-7542,Doctor,38873.66,3239.471667,10,5,17.06745738,7,"Personal Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Auto Loan",30.70945285,18,14.54,9,Bad,3597.260954,29.11296463,12 Years and 2 Months,Yes,225.6107082,44.15158478,High_spent_Medium_value_payments,277.4645857,0,-0.8824,0.1795,-0.4382,1.0862,0.5585 -0x11995,CUS_0xa3e1,August,46,943-92-4350,Scientist,19267.27,,10,8,26.95700519,6,"Home Equity Loan, Auto Loan, Payday Loan, Not Specified, Auto Loan, and Not Specified",,24.59299667,18.7,9,Bad,4506.767532,28.68740883,10 Years and 10 Months,Yes,1402.438269,,High_spent_Small_value_payments,208.951809,0,0.2561,-0.3926,0.9679,-1.0921,-1.1641 -0x119a1,CUS_0xbbd5,August,25,707-39-3944,Media_Manager,50391.24,4466.27,6,10,27,8,"Not Specified, Mortgage Loan, Home Equity Loan, Not Specified, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",,29.5263546,2.97,7,Bad,1944.478604,33.09392646,13 Years and 6 Months,Yes,306.74498,41.50071056,High_spent_Large_value_payments,338.3813094,0,-0.476,0.313,-1.0359,0.2578,1.168 -0x119ad,CUS_0x67b5,August,25,802-54-8603,Architect,42918.75,,0,5,2,2,"Payday Loan, and Personal Loan",,6,2.75,3,Good,370.57,33.04853087,23 Years and 9 Months,No,55.2429391,10000,High_spent_Medium_value_payments,391.9281462,0,-1.176,-0.8246,-0.2126,-0.1445,1.5365 -0x119b9,CUS_0x4250,August,30,042-68-7991,Doctor,59018.58,4383.318042,6,5,22,8,"Not Specified, Home Equity Loan, Personal Loan, Auto Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",39.34806705,21,24.98,8,Bad,2700.12,32.79908759,6 Years and 3 Months,Yes,509.4786166,184.3947972,!@9#%8,336.4450445,0,1.6301,0.4154,0.8782,-0.1459,-0.2682 -0x119c5,CUS_0xa222,August,26,151-84-0483,Manager,66376.28,5723.356667,3,5,5371,3,"Home Equity Loan, Auto Loan, and Payday Loan",17.25017021,12,7.14,3,_,1311.862799,29.53115693,33 Years and 5 Months,Yes,104.6317754,127.6516911,High_spent_Large_value_payments,594.5740762,0,-0.6629,0.927,0.202,0.461,1.9816 -0x119d1,CUS_0x536e,August,24,859-44-9371,Doctor,13100.02,,7,5,6,5,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",30.12311123,24.39632653,10.64,13,Standard,793.3609712,37.33240419,11 Years and 3 Months,Yes,41.17713179,95.54954898,Low_spent_Small_value_payments,277.9401526,0,1.5188,-0.4676,0.5158,1.8531,-1.9539 -0x119dd,CUS_0x57dc,August,35,019-51-4007,Musician,99955.08,8388.59,8,4,20,4,"Home Equity Loan, Mortgage Loan, Student Loan, and Student Loan",9.575591766,8,4.86,7,Standard,132.59,31.66642219,29 Years and 2 Months,Yes,174.4718574,167.0295041,High_spent_Large_value_payments,737.3576385,0,-2.3508,0.3637,-0.4109,-0.1786,-0.5843 -0x119e9,CUS_0x863b,August,33,834-96-0538,Manager,56978.79,4742.2325,10,6,30,6,"Credit-Builder Loan, Personal Loan, Auto Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",33.75183052,23.24697916,10.62,8,Standard,1486.557651,24.99731566,7 Years and 4 Months,Yes,251.7241859,,!@9#%8,250.2325273,0,-1.2029,-0.6947,1.4748,-0.9277,1.1611 -0x119f5,CUS_0x4274,August,21,062-44-0758,Engineer,132174.64,10999.55333,3,5,6,1,Home Equity Loan,0.985433858,2,9.77,2,_,898.45,28.68148182,33 Years and 0 Months,No,95.09938772,551.449696,Low_spent_Medium_value_payments,733.4062496,0,0.0431,-0.2828,-0.7607,1.3079,-0.2832 -0x11a01,CUS_0x104a,August,37,#F%$D@*&8,Mechanic,14981.39,1461.449167,2,7,5,4,"Mortgage Loan, Auto Loan, Not Specified, and Payday Loan",,6,0.63,4,Good,1122.46,39.64164182,32 Years and 3 Months,No,38.11596752,164.8891815,Low_spent_Small_value_payments,233.1397677,0,0.2195,0.8025,1.4717,0.7619,0.7782 -0x11a0d,CUS_0x7e62,August,35,192-82-4192,Developer,88940.76,7406.73,0,5,3,1,Not Specified,,6.030343881,2.16,5,_,1610.484847,24.74628818,31 Years and 9 Months,No,67.64255419,,Low_spent_Large_value_payments,420.4398057,0,0.3557,-0.2905,-0.6368,1.431,0.8167 -0x11a19,CUS_0x7dec,August,19,871-76-8159,Journalist,72245.76,5549.529946,9,10,20.06745738,5,"Not Specified, Mortgage Loan, Not Specified, Home Equity Loan, and Payday Loan",,27,1.79,9,Bad,4552.530954,38.44272117,2 Years and 9 Months,Yes,857.3577219,217.7050106,High_spent_Medium_value_payments,334.5150334,0,0.1824,-0.8998,-0.2955,1.2367,-0.8737 -0x11a25,CUS_0xc4bc,August,37,497-31-5365,Writer,28455.14,2524.261667,6,4,10,4,"Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",,9,7.89,5,_,784.87,28.91788982,18 Years and 0 Months,No,69.2844669,83.76932083,High_spent_Medium_value_payments,349.3723789,0,-0.175,-0.0881,0.5182,-0.0872,-1.0558 -0x11a31,CUS_0xbf94,August,40,#F%$D@*&8,Manager,159032.52,,0,1,10,3,"Payday Loan, Debt Consolidation Loan, and Mortgage Loan",11.5496189,10,2.21,3,Good,1292.52,39.19384564,32 Years and 8 Months,No,388.0236417,,High_spent_Large_value_payments,983.5621722,0,0.0932,-0.9841,1.6447,0.4409,0.9618 -0x11a3d,CUS_0x770a,August,35,288-28-5813,Entrepreneur,29327.1,,6,6,18,5,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Home Equity Loan",26.86842013,21.66718861,4.18,14,Standard,1565.895545,32.46800343,18 Years and 11 Months,NM,74.11511962,,Low_spent_Large_value_payments,253.1008928,0,-0.4311,-0.3233,-0.9933,-1.7256,-0.5809 -0x11a49,CUS_0xc323,August,33,568-14-9758,Manager,40550.16,3333.18,6,7,26,5,"Auto Loan, Payday Loan, Home Equity Loan, Payday Loan, and Not Specified",38.56438238,19.97136359,4.51,14,Bad,5361.644047,38.80136197,4 Years and 3 Months,NM,85.25108556,,High_spent_Medium_value_payments,356.8512757,0,0.2916,0.3176,0.8163,-0.5003,0.5582 -0x11a55,CUS_0xa00a,August,18,221-91-6056,Writer,176295,14960.25,5,2,9,2,"Home Equity Loan, and Auto Loan",9.734963023,10,1.32,1,Good,39.07255889,33.25142407,18 Years and 3 Months,No,158.3737327,11654.69222,!@9#%8,1376.326693,0,0.6319,-0.1934,0.0612,2.3107,0.5487 -0x11a61,CUS_0x3a39,August,39,105-23-4167,Journalist,18692.02,,2,4,1,1,Mortgage Loan,0,3,2.43,4,Good,1087.08861,34.53180092,16 Years and 10 Months,NM,8.616123308,166.054446,Low_spent_Medium_value_payments,283.297825,0,-0.6158,0.2892,-0.3868,1.2981,0.7321 -0x11a6d,CUS_0x6119,August,45,388-77-7201,Scientist,1379874,1548.300833,8,9,31.88954781,9,"Mortgage Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",32.26054312,19,31.94,11,Bad,3106.79,28.7742898,6 Years and 3 Months,Yes,1427.948948,,High_spent_Medium_value_payments,264.0841829,0,1.2957,0.4836,-1.4562,-0.0689,-0.7509 -0x11a79,CUS_0x2b61,August,41,255-12-4906,Teacher,33606.82,,7,5,19,100,,11.92015828,9,4.36,2,Standard,1295.38,35.51170532,24 Years and 5 Months,Yes,0,70.81388506,!@9#%8,471.7429483,0,0.8436,-0.3795,0.1124,0.6917,1.2708 -0x11a85,CUS_0x675c,August,30,457-87-2144,Media_Manager,17905.56,,6,5,28,6,"Debt Consolidation Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",23.78579957,9.697526222,9.52,,Standard,2214.57142,28.12561532,8 Years and 2 Months,Yes,53.29406263,46.10582459,High_spent_Small_value_payments,305.6131128,0,-0.4869,-2.1783,-0.2382,-0.3729,-0.0108 -0x11a91,CUS_0x5f06,August,42,873-56-8770,Doctor,8835.54,,4,6,29,7,"Mortgage Loan, Student Loan, Mortgage Loan, Not Specified, Auto Loan, Home Equity Loan, and Home Equity Loan",18.16423406,16.38868835,19.33,8,Standard,2189.308906,30.89088672,6 Years and 8 Months,Yes,40.03825896,58.76782262,Low_spent_Medium_value_payments,251.8234184,0,0.7722,0.3641,1.9971,0.7032,-0.7533 -0x11a9d,CUS_0x563c,August,40,366-24-0480,Mechanic,58416.36,,6,6,29,5,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",44.86234249,25,8.2,11,_,1300.14,30.54114517,11 Years and 10 Months,Yes,224.2047013,181.8786451,High_spent_Medium_value_payments,331.6196536,0,1.1565,1.0354,0.487,0.4738,0.1026 -0x11aa9,CUS_0x7f4b,August,30,785-54-6479,Accountant,31920.78,2690.065,1,3,10,1,Student Loan,12.81829125,,0.97,2,Good,310.0968596,24.23058235,17 Years and 11 Months,No,15.34406131,,Low_spent_Large_value_payments,442.5124946,0,-0.1404,0.67,-1.516,0.5541,-0.4059 -0x11ab5,CUS_0x5471,August,80,661-55-5194,Doctor,17535694,2811.215833,3,4,1.288361749,2,"Payday Loan, and Mortgage Loan",19.02529619,17,16.62,4,Good,57.35029397,34.51009976,16 Years and 9 Months,NM,38.48182907,510.1430046,High_spent_Medium_value_payments,416.0388718,0,1.7287,-0.387,-0.7438,1.5212,-0.3976 -0x11ac1,CUS_0x99b3,August,32,815-96-4134,Entrepreneur,7230.615,,9,6,3664,8,"Not Specified, Student Loan, Student Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Home Equity Loan, and Student Loan",,22,5.04,15,Bad,4492.18,31.55258355,14 Years and 6 Months,Yes,42.54340334,16.30867587,High_spent_Large_value_payments,263.3030458,0,0.6173,0.4636,-1.4834,-0.2239,-0.5677 -0x11acd,CUS_0x2c87,August,55,800-16-9117,Journalist,33103.85,2512.654167,3,3,14,3,"Credit-Builder Loan, Payday Loan, and Student Loan",26.57007175,19,10.39,3,_,521.92,27.77846892,25 Years and 8 Months,Yes,73.93236798,135.345118,Low_spent_Small_value_payments,331.9879307,0,-0.9554,0.0703,0.0669,-0.4549,-0.417 -0x11ad9,CUS_0x7058,August,32,176-82-9202,Architect,16276.325,,5,5,11,1,Not Specified,2.500459776,4.711264295,8.47,5,_,811.1292464,32.92296297,33 Years and 0 Months,NM,12.57618492,114.6680007,Low_spent_Small_value_payments,283.791856,0,-0.3321,0.5852,-0.4176,-1.3196,0.7576 -0x11ae5,CUS_0xa9e,August,37,644-91-0094,Architect,80247.24,6622.27,7,6,21,4,"Payday Loan, Payday Loan, Not Specified, and Payday Loan",22.5159443,17,12.7,12,Bad,1266.03,38.47198378,19 Years and 0 Months,Yes,164.4474383,657.0438778,Low_spent_Medium_value_payments,120.7356839,0,-0.2141,0.2439,2.3233,0.1331,-1.044 -0x11af1,CUS_0xc5cb,August,26,179-93-9579,Journalist,31113.36,2780.78,313,5,7,3,"Mortgage Loan, Auto Loan, and Personal Loan",,12,10.46,7,Standard,1151.7,30.01106567,13 Years and 8 Months,Yes,70749,101.309798,Low_spent_Medium_value_payments,383.6152192,0,-0.2524,0.3791,-0.1669,-0.8987,0.5567 -0x11afd,CUS_0x629c,August,49,797-28-8508,Journalist,81254.12,6696.176667,3,5,15,0,,,9,6.97,7,Standard,442.23,29.39411087,22 Years and 5 Months,Yes,0,238.6851026,Low_spent_Medium_value_payments,710.932564,0,0.1081,-0.2853,1.0537,0.5148,1.2047 -0x11b09,CUS_0x854f,August,20,124-72-9354,Media_Manager,8963.99,,8,10,27.88954781,9,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",38.73530692,18.21841371,25.25,9,Bad,4397.325861,37.32542494,11 Years and 9 Months,Yes,1375.540075,,Low_spent_Small_value_payments,255.3480875,0,0.3919,1.919,-0.6734,-0.595,1.3855 -0x11b15,CUS_0x3bde,August,45,262-48-5505,Journalist,34980.94,,1,5,7,3,"Home Equity Loan, Mortgage Loan, and Mortgage Loan",11.36405369,11,4.66,3,Good,641.6625813,27.29515905,17 Years and 3 Months,NM,52.92380656,,High_spent_Large_value_payments,430.0863884,0,-1.785,-0.3714,-1.4208,-1.0896,1.0696 -0x11b21,CUS_0x954e,August,31,437-48-1667,_______,95187.6,,4,7,14.28836175,0,,14.5459929,,3.29,2,_,1084.179652,36.873693,30 Years and 10 Months,Yes,0,556.1245172,High_spent_Large_value_payments,912.3043177,0,1.1487,-0.3026,0.9388,-0.145,-0.1954 -0x11b2d,CUS_0x34be,August,30,120-52-3028,Engineer,129800.32,11104.69333,8,6,20,1,Credit-Builder Loan,,9,12,1,_,358.85,38.63263023,24 Years and 5 Months,No,105.7173158,,High_spent_Medium_value_payments,1113.024058,0,-1.6409,-1.646,0.8669,-0.6968,0.5873 -0x11b39,CUS_0xad97,August,49,302-64-7091,Scientist,44835.39,3538.2825,3,4,4,4,"Student Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",24.18631199,14.39028628,7.53,9,Good,1065.914378,36.64618578,15 Years and 10 Months,No,96.92470263,116.7089434,High_spent_Medium_value_payments,390.194604,0,-0.2117,-0.0112,0.7242,0.6682,0.3847 -0x11b45,CUS_0x6e61,August,21,974-44-7143,Teacher,44806.6,,0,3,7,4,"Student Loan, Personal Loan, Not Specified, and Personal Loan",,7.197485119,11.87,0,Good,195.9096743,38.51611643,21 Years and 11 Months,No,109.5558085,10000,High_spent_Large_value_payments,494.5102571,0,0.9154,-1.0086,2.1855,-0.6649,-0.0484 -0x11b51,CUS_0xb63c,August,19,147-90-5013,Engineer,39503.02,3525.918333,3,4,7,4,"Payday Loan, Payday Loan, Mortgage Loan, and Payday Loan",19.50841299,18,10.3,8,Standard,1092.71,34.60750731,27 Years and 11 Months,Yes,114.2710467,,Low_spent_Small_value_payments,169.3864286,0,-0.9451,-0.3483,-0.7428,0.7219,-0.7711 -0x11b5d,CUS_0x9378,August,27,272-50-2716,Media_Manager,7055.84,,6,6,32,6,"Not Specified, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",36.38269917,24.89706927,19.46,11,Bad,4173.958903,33.71993398,2 Years and 3 Months,NM,32.77675141,57.59229556,Low_spent_Small_value_payments,272.9296197,0,0.2848,1.6397,-0.684,-1.7374,0.2208 -0x11b69,CUS_0x7e63,August,49,926-75-5141,Mechanic,18622.57,,3,3,11.28836175,2,"Payday Loan, Home Equity Loan, and Credit-Builder Loan",,1,4.85,4,Good,103.5307545,25.89584442,32 Years and 6 Months,No,30.63571778,12059.00972,Low_spent_Medium_value_payments,288.2808501,0,-1.0052,-0.0381,-1.0698,1.0439,0.5867 -0x11b75,CUS_0x7e06,August,21,013-51-5521,Musician,64662.04,5532.503333,1,2,2,3,"Not Specified, Mortgage Loan, and Not Specified",9.306591575,9,2.41,4,Good,1223.568773,38.23672476,,No,83.84218529,,Low_spent_Small_value_payments,98.245212,0,1.2557,-1.5014,-0.6882,-0.9877,-0.8736 -0x11b81,CUS_0x5cb6,August,43,361-21-7377,Scientist,11115.32,,7,3,8,4,"Credit-Builder Loan, Student Loan, Student Loan, and Credit-Builder Loan",16.14491516,11,15.38,4,Standard,1138.26,27.5204811,,Yes,31.91085382,55.00765409,Low_spent_Medium_value_payments,257.9091588,0,1.3827,0.7598,-1.239,0.5507,0.7802 -0x11b8d,CUS_0xa67d,August,31,094-71-6973,Teacher,16972.37,,6,10,17,5,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",,18,27.2,15,Bad,4348.66,23.11142231,8 Years and 6 Months,Yes,48.91655728,19.15136559,High_spent_Large_value_payments,309.7684938,0,1.0076,0.7159,0.025,1.2994,-0.7074 -0x11b99,CUS_0x17c3,August,25,530-88-6920,Writer,144423.72,11953.31,2,7,0.288361749,2,"Not Specified, Personal Loan, and Mortgage Loan",13.52695898,12.58080639,10.6,9,Good,1398.814306,33.25537127,23 Years and 3 Months,No,294.8831636,1360.448745,!@9#%8,239.9365523,0,-0.4026,0.5276,-0.5765,-2.1751,0.5509 -0x11ba5,CUS_0xec4,August,53,910-16-3301,Mechanic,38041.56,2972.13,5,1108,10,3,"Not Specified, Home Equity Loan, and Personal Loan",0.172726455,3,10.97,4,Good,682.46,34.72187218,32 Years and 11 Months,No,78.74374981,158.0626821,Low_spent_Small_value_payments,350.4065681,0,0.4292,-0.7172,-0.6199,-1.3419,-0.6203 -0x11bb1,CUS_0xbdac,August,26,238-72-7105,Writer,35913.64,,7,6,32,2,"Mortgage Loan, and Mortgage Loan",21.44532307,15,5.4,8,Bad,1898,35.14173265,15 Years and 5 Months,Yes,33.91419525,291.8449068,Low_spent_Medium_value_payments,255.8212312,0,-0.2047,1.6325,0.9183,-0.0856,1.1136 -0x11bbd,CUS_0x8eb6,August,38,794-83-9230,Writer,14025.885,876.82375,4,5,6,100,"Not Specified, Debt Consolidation Loan, Personal Loan, and Payday Loan",20.40664113,13,-3.53,9,Standard,447.92,22.10323516,,No,38.254822,62.7176231,Low_spent_Small_value_payments,276.7099299,0,1.0233,-0.6448,-0.7244,1.287,1.081 -0x11bc9,CUS_0x4f4f,August,36,914-56-5754,Architect,40327.81,3450.650833,1,3,7,3,"Auto Loan, Personal Loan, and Auto Loan",11.7210479,10,1.76,1139,Good,424.5,36.68552503,24 Years and 0 Months,No,87.96659057,130.0351654,High_spent_Medium_value_payments,377.0633274,0,0.4249,2.35,-0.3216,-1.1986,-0.0357 -0x11bd5,CUS_0x5262,August,32,541-53-3205,Developer,78339.66,6562.305,3,4,18,2,"Credit-Builder Loan, and Not Specified",18.49470665,14,6.66,6,Standard,285.36,37.28796243,19 Years and 5 Months,No,87.23420832,10000,Low_spent_Medium_value_payments,262.9250773,0,0.0829,-0.003,1.7425,0.6565,-0.2153 -0x11be1,CUS_0x40f9,August,46,455-57-8774,Architect,122364.84,10078.07,8,4,9.288361749,0,,15.15176308,,4.6,4,Standard,1063.73,37.33995137,33 Years and 4 Months,No,0,10419.93746,Low_spent_Medium_value_payments,787.9504781,0,-0.2592,-0.4926,0.099,0.6145,0.9528 -0x11bed,CUS_0x6331,August,38,664-06-1739,Lawyer,38554.72,3083.893333,2,7,10.28836175,100,,12.50495605,13,5.58,1,Good,428.6169086,25.73994379,24 Years and 0 Months,No,0,697.1777982,!@9#%8,334.3910753,0,-0.9268,-1.0184,0.1497,-0.2929,-1.4556 -0x11bf9,CUS_0x3da0,August,47,670-72-0248,Journalist,59775.24,5259.27,4,6,16,0,,22.65906338,15,2.69,9,Standard,787.76,38.66367295,20 Years and 6 Months,No,0,200.254931,High_spent_Medium_value_payments,575.672069,0,-0.3601,-0.9389,0.4028,0.9773,-0.5492 -0x11c05,CUS_0x6cd4,August,43,818-10-5790,Musician,27265.17,2101.653319,3,6,1010,0,,15.52366796,10,1.08,2,_,424.7435812,25.32293513,32 Years and 6 Months,Yes,309.4441809,,Low_spent_Small_value_payments,372.0059701,0,0.75,-2.8872,0.2626,0.6312,0.9095 -0x11c11,CUS_0x26d0,August,45,018-39-9919,_______,56705.7,,3,6,4.288361749,2,"Credit-Builder Loan, and Auto Loan",1.934157369,6,11.4,4,Good,207.43,25.10822812,17 Years and 10 Months,No,61.27521832,487.6731898,!@9#%8,616.5365529,0,-0.2923,0.0077,0.4894,0.9594,0.4444 -0x11c1d,CUS_0xc1e9,August,23,582-29-9428,Scientist,38535.5,3208.342954,7,9,33.06745738,2,"Credit-Builder Loan, and Student Loan",27.55594649,18,2.96,10,Bad,2361.180954,38.4026228,5 Years and 9 Months,Yes,256.3746045,42.43073817,High_spent_Medium_value_payments,480.6522485,0,0.1078,0.1269,-0.5489,-0.2298,1.2973 -0x11c29,CUS_0xe2b,August,19,078-20-5154,Journalist,10172.08,997.6733333,7,8,20.06745738,6,"Mortgage Loan, Payday Loan, Not Specified, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,,,8,Bad,3762.800954,39.67225943,14 Years and 3 Months,Yes,44.08367949,72.13318234,Low_spent_Small_value_payments,246.8301836,0,-0.3105,-0.6278,-0.5302,-0.4388,-0.3424 -0x11c35,CUS_0x2479,August,44,#F%$D@*&8,Musician,8083.345,,4,8,32,4,"Payday Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",18.49806818,16.31993892,14.15,8,Standard,2040.429278,27.64275942,19 Years and 4 Months,Yes,11023,,Low_spent_Small_value_payments,253.596993,0,0.1698,-1.2034,2.0179,-0.0224,1.1952 -0x11c41,CUS_0x3b89,August,19,119-87-9175,Manager,17923.05,,10,8,20.95700519,7,"Payday Loan, Not Specified, Auto Loan, Payday Loan, Home Equity Loan, Personal Loan, and Personal Loan",28.87434389,19,6.54,13,_,3773.120954,28.0240446,14 Years and 5 Months,NM,1386.638851,34.62791565,High_spent_Small_value_payments,284.0416146,0,-0.6651,-0.2596,0.0532,0.4208,-0.5123 -0x11c4d,CUS_0xbcfc,August,27,121-11-2540,Lawyer,36963.89,2902.324167,0,4,1,2,"Auto Loan, and Auto Loan",17.19561429,11.95446435,6.47,5,_,1357.483409,30.1455296,16 Years and 10 Months,No,46.4591139,100.4973455,Low_spent_Small_value_payments,433.2759572,0,-0.926,-0.1405,-0.4172,0.2664,-0.5609 -0x11c59,CUS_0x437,August,48,069-62-7151,Developer,105816.45,,4,3,11,100,Debt Consolidation Loan,,9,11.37,8,_,1342.14,36.72678618,20 Years and 9 Months,Yes,79.4959716,10000,Low_spent_Small_value_payments,629.5889219,0,-1.1703,0.8345,0.3111,-0.8985,-1.1564 -0x11c65,CUS_0xb4c4,August,52,842-39-5844,Entrepreneur,36064.74,2711.395,5,752,13,0,,,15,9.21,4,Standard,884.11,39.4057618,30 Years and 0 Months,Yes,0,275.7456473,Low_spent_Small_value_payments,285.3938527,0,-0.0673,0.8507,-1.0346,0.6748,1.2795 -0x11c71,CUS_0x376b,August,25,915-69-8780,_______,81779.54,,3,7,7,0,,,3.49125936,4.36,2,Good,905.0462051,36.19943627,,No,0,162.7306478,High_spent_Large_value_payments,737.4655189,0,-1.1082,0.4818,-1.1905,-1.1514,0.777 -0x11c7d,CUS_0x251a,August,26,849-10-1285,Mechanic,59112.81,4802.0675,5,7,8,3,"Not Specified, Not Specified, and Personal Loan",7.725033639,8,10.12,8,Standard,1421.95,24.63274315,22 Years and 8 Months,Yes,112.1915134,312.6407154,Low_spent_Medium_value_payments,335.3745212,0,-0.1954,-1.7487,-0.4298,-0.674,0.4369 -0x11c89,CUS_0x2226,August,31,428-65-5300,Engineer,35300.5,,3,5,14,4,"Payday Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",,11,12.08,6,_,404.81,27.24384924,14 Years and 4 Months,Yes,106.1040777,231.3295266,Low_spent_Small_value_payments,249.837229,0,-1.847,-1.1462,0.0273,-0.2973,-0.5041 -0x11c95,CUS_0xb98f,August,44,220-62-2638,Developer,82920.2,7201.016667,4,7,7,3,"Student Loan, Payday Loan, and Auto Loan",6.020550759,8,2.04,3,Good,1197.23,26.06113046,27 Years and 4 Months,No,163.0465911,189.1886592,Low_spent_Medium_value_payments,647.8664164,0,0.2631,0.1127,1.5394,1.0188,-1.5646 -0x11ca1,CUS_0x9fa9,August,51,057-69-4857,Entrepreneur,102737.64,8497.47,7,6,16,4,"Payday Loan, Home Equity Loan, Credit-Builder Loan, and Not Specified",16.63611372,10,16.46,8,Standard,484.79,28.85583568,29 Years and 11 Months,Yes,298.6968172,10000,!@9#%8,446.0777258,0,-2.2425,-0.6232,2.2877,-0.5973,-0.336 -0x11cad,CUS_0x26aa,August,20,639-27-1679,Journalist,52104,,9,6,27,9,"Mortgage Loan, Mortgage Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Auto Loan, and Auto Loan",44.80132396,25,18.75,9,Bad,4598.96,37.26980988,5 Years and 11 Months,Yes,308.7622748,,Low_spent_Large_value_payments,121.4113675,0,1.0492,1.0341,0.9375,-0.2238,-1.6835 -0x11cb9,CUS_0x4771,August,36,786-95-9000,Teacher,144051.84,11992.32,5,6,18,7,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",33.75225886,23.65986346,15.96,8,_,1435.730822,24.35913236,11 Years and 0 Months,Yes,585.8299976,10000,High_spent_Large_value_payments,622.5364409,0,0.3362,0.2386,0.1885,-0.1,1.1169 -0x11cc5,CUS_0x1869,August,30,716-60-2791,Developer,30643.51,,0,5,7,0,,13.53284098,12,1.74,5,_,1364.66,29.78164185,31 Years and 9 Months,No,0,10000,High_spent_Medium_value_payments,451.3866753,0,-0.5134,0.7972,1.3747,1.5466,0.2105 -0x11cd1,CUS_0x218e,August,18,687-39-9703,Accountant,14428.91,,6,8,29.06745738,5,"Not Specified, Mortgage Loan, Auto Loan, Not Specified, and Credit-Builder Loan",51.50155682,29.73540411,8.5,12,Bad,2207.131069,33.1015914,17 Years and 4 Months,Yes,39.76141223,45.76305678,Low_spent_Small_value_payments,280.6961597,0,-0.4836,0.2476,-0.7178,-0.6883,-1.9599 -0x11cdd,CUS_0x109d,August,45,260-21-1290,Writer,49140.87,4377.0725,10,6,28.06745738,6,"Not Specified, Not Specified, Mortgage Loan, Mortgage Loan, Payday Loan, and Payday Loan",,18,16.66,11,Bad,3174.210954,32.18708934,6 Years and 6 Months,NM,154.1724263,301.5937949,Low_spent_Small_value_payments,245.2207408,0,-1.5162,0.5152,0.5161,1.2269,-0.3437 -0x11ce9,CUS_0x92c8,August,31,703-48-9983,_______,16892.1,,3,2,5,2,"Not Specified, and Credit-Builder Loan",16.90609675,,9.17,5,Good,1063.31,33.80249227,29 Years and 0 Months,No,25.28560558,64.36059675,Low_spent_Large_value_payments,346.6212977,0,0.6158,-0.4265,1.1322,-1.0425,0.4889 -0x11cf5,CUS_0x1dc1,August,52,287-97-2627,Musician,30834.28,2471.523333,4,5,1,2,"Home Equity Loan, and Home Equity Loan",2.991766898,4.490243302,7.65,1,Good,1250.938536,25.67691141,25 Years and 3 Months,No,41.93027625,147.7971188,High_spent_Small_value_payments,317.4249383,0,1.0992,0.3953,0.3429,1.491,-0.5088 -0x11d01,CUS_0xbdcf,August,41,737-15-2835,Accountant,68291.7,,8,5,5,2,"Personal Loan, and Not Specified",,12,2.69,,Standard,1210.72,40.46921772,32 Years and 4 Months,Yes,62.35247097,118.3042553,High_spent_Medium_value_payments,610.8407737,0,-0.6613,-0.6104,-2.5866,-0.9443,0.6932 -0x11d0d,CUS_0x4034,August,53,224-53-0917,Doctor,26766.06,,7,5,9,3,"Mortgage Loan, Student Loan, and Auto Loan",13.22507042,11,14.6,2,Standard,530.27,38.10610591,22 Years and 4 Months,Yes,36.49758797,143.8549125,High_spent_Small_value_payments,315.2979995,0,0.2745,-1.3893,-0.2433,-1.8642,-1.0902 -0x11d19,CUS_0x77ca,August,26,851-21-4688,Lawyer,40031.94,3473.995,7,6,20,6,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Personal Loan",19.10619557,12,19.06,9,_,328.83,40.759207,18 Years and 9 Months,Yes,180.6347829,108.554592,High_spent_Medium_value_payments,308.2101252,0,-0.093,0.7477,0.2247,-0.4681,-1.2564 -0x11d25,CUS_0x5569,August,37,506-52-7572,Scientist,101565.68,8435.806667,4,7,11.28836175,4,"Mortgage Loan, Payday Loan, Auto Loan, and Personal Loan",19.10676752,16,2.39,3,_,825.71,32.92613118,19 Years and 10 Months,NM,181.4625427,602.495319,High_spent_Large_value_payments,719.560266,0,-2.1743,0.0478,-0.0834,1.0021,1.6692 -0x11d31,CUS_0x5bbc,August,27,720-10-7383,Lawyer,97900.4,8279.366667,3,5,18,1,Home Equity Loan,,17,7.9,5,Standard,891.71,32.28126634,28 Years and 4 Months,No,53.59226292,533.4485302,Low_spent_Medium_value_payments,520.8958736,0,0.2279,0.5528,-0.1639,0.6333,1.1071 -0x11d3d,CUS_0x619d,August,44,#F%$D@*&8,Doctor,32119.36,,3,5,12,7,"Not Specified, Payday Loan, Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",28.47189848,19.32934645,19.22,4,Standard,1130.656666,34.57824113,,Yes,109.3446515,107.79814,Low_spent_Small_value_payments,341.7185418,0,-1.094,-0.1563,0.4278,-0.5438,0.684 -0x11d49,CUS_0x6d35,August,38,908-27-4797,Mechanic,70058.88,,7,4,9,0,,26.79825039,18,9.63,1,Standard,289.82,26.8128579,31 Years and 11 Months,No,608.5196787,124.6198022,High_spent_Large_value_payments,714.4041978,0,0.3053,-0.6644,1.9884,1.5936,0.3149 -0x11d55,CUS_0x43af,August,20,751-81-2966,Architect,18214.08,,4,7,5,5,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",22.9164697,20,15.24,7,Standard,1581.51,27.50492641,12 Years and 8 Months,Yes,45.83789901,182.0140887,Low_spent_Small_value_payments,235.9320123,0,-0.8068,1.7659,0.1201,-1.0341,0.0132 -0x11d61,CUS_0xdda,August,26,446-78-2504,Engineer,14058.75,1367.5625,7,4,16,5,"Debt Consolidation Loan, Not Specified, Not Specified, Payday Loan, and Student Loan",,19.6495779,0.89,9,_,2192.64637,32.76381607,10 Years and 5 Months,Yes,45.9420573,,Low_spent_Small_value_payments,243.1168702,0,-0.6408,-0.1375,-0.276,-0.7367,-0.4219 -0x11d6d,CUS_0x59bd,August,41,792-25-6275,Architect,18823.32,,8,5,16,8,"Credit-Builder Loan, Not Specified, Not Specified, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",40.72926895,25.26725841,4.87,10,Bad,2966.551661,34.59992317,6 Years and 5 Months,Yes,103.0973299,,Low_spent_Small_value_payments,232.8633581,0,0.0115,-1.1763,-0.6648,1.6104,-0.6124 -0x11d79,CUS_0xb59c,August,53,878-43-3267,_______,28101.46,,5,7,8,3,"Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",14.33085571,11,1.85,4,_,391.5154872,31.31094631,26 Years and 10 Months,No,268.2680116,125.8219485,High_spent_Small_value_payments,336.5819096,0,-0.4347,2.483,1.0997,1.7378,-0.8179 -0x11d85,CUS_0xc4f2,August,33,525-81-0658,Musician,26886.51,2517.5425,5,3,9,6,"Student Loan, Personal Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Payday Loan",,9.021700523,11.88,6,Standard,1228.485784,25.64297826,17 Years and 0 Months,Yes,106.6325664,,Low_spent_Small_value_payments,186.2566854,0,-1.0466,1.5023,0.0758,-0.7332,0.3045 -0x11d91,CUS_0x820c,August,20,464-41-9296,Developer,18642.75,,9,6,24.06745738,9,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Personal Loan, and Credit-Builder Loan",24.92604191,17,29.69,16,Bad,4080.070954,41.75832027,5 Years and 6 Months,Yes,75.66762658,,High_spent_Large_value_payments,282.5856063,0,0.3918,-0.5196,1.4399,-0.0692,0.6237 -0x11d9d,CUS_0x8c36,August,20,243-75-6208,Engineer,16437.83,,9,7,31.06745738,6,"Not Specified, Payday Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",37.58966412,25.34295938,18.25,11,Bad,5322.51313,39.937287,13 Years and 8 Months,Yes,87.7753406,134.8249225,Low_spent_Small_value_payments,196.0278013,0,-0.109,0.2019,0.7702,-0.4063,-0.3071 -0x11da9,CUS_0x43b8,August,43,435-15-9519,Engineer,59695.36,5119.613333,6,8,23.06745738,6,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Not Specified",30.72915724,18,20.61,14,_,4671.650954,35.75820207,2 Years and 10 Months,Yes,274.9595753,61.60159905,High_spent_Medium_value_payments,398.6798711,0,-1.0042,-1.2343,-0.7296,-0.9402,-1.2908 -0x11db5,CUS_0xc2bf,August,19,514-00-5729,Entrepreneur,20138.87,1373.078949,3,5,6,3,"Payday Loan, Home Equity Loan, and Mortgage Loan",14.59777165,12,9.74,808,Standard,13.59,35.73347085,23 Years and 5 Months,Yes,194.4964439,120.8204171,Low_spent_Small_value_payments,278.2672731,0,0.3655,1.4069,0.2885,1.8922,-0.1659 -0x11dc1,CUS_0x51e5,August,31,001-11-0655,Teacher,8535.405,,7,5,35.06745738,2,"Not Specified, and Not Specified",,20.56645035,15.18,10,Standard,1951.585319,27.92966445,20 Years and 0 Months,Yes,7.981570049,,Low_spent_Small_value_payments,251.9868947,0,0.9427,-0.2576,1.3211,0.2611,-2.0877 -0x11dcd,CUS_0xb9da,August,37,562-36-1556,Entrepreneur,59665.2,,6,6,15,4,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Not Specified",46.54797126,26.48252049,9.49,15,_,2484.670346,34.98446468,,Yes,113.9663889,,High_spent_Medium_value_payments,486.1427229,0,0.1114,-0.4969,-0.2667,1.6106,0.3041 -0x11dd9,CUS_0x2452,August,18,144-82-6902,_______,65806.24,5626.853333,4,7,20,7,"Mortgage Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",19.84446823,18,12.26,11,Standard,2301.51,35.60031329,11 Years and 9 Months,Yes,229.4222204,477.5910084,Low_spent_Medium_value_payments,135.6721046,0,-0.5782,-0.6819,-1.2926,2.7162,-0.0575 -0x11de5,CUS_0x879a,August,44,056-87-0146,Manager,20957.27,,8,5,30,9,"Student Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",22.64551883,18,13.38,12,Bad,4912.34,37.20482572,11 Years and 11 Months,Yes,113.6460283,45.00825714,!@9#%8,280.3896312,0,-0.0804,0.3319,0.1966,-0.6,0.1583 -0x11df1,CUS_0x8892,August,31,226-34-4667,Writer,59730.57,5167.5475,4,3,5,3,"Student Loan, Mortgage Loan, and Home Equity Loan",,13,1.13,0,Standard,335.22,37.93236986,18 Years and 0 Months,No,109.3994769,373.5565809,Low_spent_Large_value_payments,303.7986922,0,-0.9222,-1.3896,1.7525,-1.6039,2.6688 -0x11dfd,CUS_0x2e97,August,47,898-69-7665,Entrepreneur,25759.24,,4,5,6,1,Home Equity Loan,,18,-0.31,5,Standard,766.58,29.1482858,33 Years and 5 Months,No,19.75971673,,Low_spent_Small_value_payments,223.4518434,0,0.9409,-0.5753,0.6398,-0.5143,-1.622 -0x11e09,CUS_0xb017,August,42,542-27-9387,Doctor,15766.76,1288.896667,8,6,26.06745738,8,"Not Specified, Not Specified, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Not Specified, and Student Loan",26.82853523,16,30.49,8,_,3703.300954,38.20347968,11 Years and 6 Months,Yes,76.95304496,171.0125407,Low_spent_Small_value_payments,144.203793,0,-0.181,-0.5314,-0.7443,-0.5421,-0.1577 -0x11e15,CUS_0x48a0,August,25,283-50-9361,Scientist,43239.81,,9,10,21,9,"Payday Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Not Specified, and Auto Loan",,27.70946227,25.37,15,Bad,4146.978002,30.90127986,6 Years and 10 Months,Yes,295.1759241,,High_spent_Medium_value_payments,199.8943989,0,-0.1689,-0.1761,0.6898,0.5706,0.1991 -0x11e21,CUS_0x756e,August,41,200-01-5537,_______,8128.965,,8,7,18,6,"Credit-Builder Loan, Home Equity Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Student Loan",26.44290358,17,9.63,11,Standard,1973,24.23084516,9 Years and 2 Months,Yes,33.01390638,,Low_spent_Small_value_payments,289.4143156,0,1.156,0.4176,-0.4446,0.5868,1.1334 -0x11e2d,CUS_0x65ab,August,39,310-13-3662,Entrepreneur,19592.58,1405.715,5,7,21,4,"Home Equity Loan, Student Loan, Home Equity Loan, and Personal Loan",24.35586871,17.57386514,8.82,12,Standard,2637.319161,31.86416789,13 Years and 2 Months,Yes,40.49688242,67.2754654,High_spent_Small_value_payments,292.7991522,0,-0.1369,0.7917,-1.0595,1.0739,-0.3547 -0x11e39,CUS_0x7793,August,28,800-26-8308,Journalist,35842.83,3172.9025,3,4,1,0,,,7,11.6,3,Good,1132.38,26.4238459,18 Years and 6 Months,No,0,304.6040354,Low_spent_Medium_value_payments,292.6862146,0,-0.0971,0.8293,0.5133,-0.7424,-2.1487 -0x11e45,CUS_0x90f,August,28,#F%$D@*&8,Developer,63455.1,5327.925,4,6,16,4,"Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",21.11924744,15,9.3,5,_,419.67,31.91728976,18 Years and 0 Months,Yes,205.6091496,147.4985688,High_spent_Medium_value_payments,429.6847817,0,-0.2896,-0.3106,-0.6506,0.1599,1.6367 -0x11e51,CUS_0x66e5,August,20,932-28-3481,Media_Manager,71892.94,,5,7,18,3,"Debt Consolidation Loan, Mortgage Loan, and Personal Loan",,11,9.85,7,Standard,1025.88,39.35858675,15 Years and 6 Months,NM,34004,237.2542276,High_spent_Medium_value_payments,463.4907,0,1.2194,-1.9068,-1.7899,-0.93,1.5133 -0x11e5d,CUS_0x6088,August,42,617-51-1535,Developer,18668.09,1735.674167,7,6,29,5,"Payday Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Mortgage Loan",,17.74258004,17.07,8,Standard,2569.289027,35.72551621,6 Years and 9 Months,Yes,72.98938875,38.08892512,High_spent_Small_value_payments,322.4891028,0,0.7761,-1.6323,1.2387,0.8489,0.0776 -0x11e69,CUS_0x98f5,August,31,078-09-2980,Accountant,30000.82,2213.068333,8,7,32,5,"Not Specified, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",17.95773976,,17.4,15,Standard,1557.420401,29.43869842,6 Years and 2 Months,Yes,80.47769164,,High_spent_Small_value_payments,247.7368873,0,1.321,1.3075,-0.4088,-1.1613,0.2102 -0x11e75,CUS_0x9533,August,40,596-51-3326,Media_Manager,136812.04,11572.00333,2,6,12,332,"Mortgage Loan, and Not Specified",0,0,11.91,4,Good,703.0209001,38.49498446,28 Years and 9 Months,No,165.4837962,583.5989988,Low_spent_Small_value_payments,767.1817816,0,1.1878,-0.3999,0.249,-0.1435,-0.143 -0x11e81,CUS_0xc10,August,21,643-78-7692,Teacher,127464.8,10572.06667,7,4,14,1,Home Equity Loan,,20.57210175,10.98,2,_,1017.491191,36.70877143,18 Years and 10 Months,Yes,85.26475732,483.6996178,Low_spent_Small_value_payments,778.2422915,0,-0.4308,-1.658,-2.5042,-0.9122,-0.0914 -0x11e8d,CUS_0x9081,August,22,008-89-2880,Scientist,71507.36,6072.946667,8,6,20,1,Not Specified,,15,25.05,8,Standard,1223,26.7852809,16 Years and 2 Months,Yes,50.18137687,132.9766798,High_spent_Large_value_payments,664.13661,0,-0.6191,-0.3771,0.5584,-0.8396,-0.6166 -0x11e99,CUS_0x1db4,August,38,218-60-8559,Mechanic,116798.36,9912.196667,8,7,7,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,13,6.51,0,Standard,1399.73,30.17807141,26 Years and 8 Months,Yes,256.2166164,481.5950262,Low_spent_Small_value_payments,543.408024,0,0.8125,1.1765,0.4816,-1.0843,-1.4608 -0x11ea5,CUS_0x3fcf,August,37,204-93-4852,Mechanic,71565.54,6161.795,8,5,10,3,"Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",20.68901983,17,10.64,4,Good,603.0702217,30.46391594,,No,140.5834784,947.8252898,Low_spent_Small_value_payments,,0,-0.9314,-0.8773,-0.4534,0.1361,0.6642 -0x11eb1,CUS_0x7837,August,43,051-86-5042,Media_Manager,33343.64,3042.636667,8,10,23.88954781,6,"Home Equity Loan, Personal Loan, Payday Loan, Payday Loan, Auto Loan, and Home Equity Loan",,27.05186706,0.56,13,_,5456.163388,31.88809386,0 Years and 9 Months,Yes,1411.844626,232.5918234,Low_spent_Large_value_payments,235.4971363,0,-1.1931,0.3807,-1.2518,-2.3319,0.92 -0x11ebd,CUS_0x3102,August,42,124-41-1150,Manager,40612.16,,3,4,8.288361749,0,,,11,5.84,4,Good,314.79,39.24880799,26 Years and 0 Months,No,0,533.6529981,High_spent_Medium_value_payments,496.2191296,0,0.9261,-0.2995,0.3727,-0.2118,-1.1633 -0x11ec9,CUS_0x2cab,August,41,245-98-9656,Architect,58651.88,4621.656667,9,8,26,2,"Payday Loan, and Auto Loan",48.41073684,27.05061287,7.19,11,_,1957.224789,26.48398633,6 Years and 11 Months,Yes,79.91358365,10000,Low_spent_Medium_value_payments,407.8924135,0,0.9024,-0.5742,-2.256,-0.913,1.4404 -0x11ed5,CUS_0xa347,August,22,423-71-7489,Lawyer,17585.29,,7,7,34.06745738,5,"Personal Loan, Personal Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",19.25263464,12.16047613,18.86,12,Standard,3086.939253,25.79466818,8 Years and 10 Months,Yes,44.78245156,,High_spent_Small_value_payments,236.6689054,0,1.6252,-1.086,-0.9028,0.9231,-0.929 -0x11ee1,CUS_0x42a5,August,45,013-16-5858,Manager,15191.03,1523.919167,6,6,21.06745738,5,"Not Specified, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",12.9906354,8,9.34,11,Standard,1647.470954,23.03297843,16 Years and 9 Months,Yes,48.6266581,33.22345953,High_spent_Medium_value_payments,293.8215111,0,0.5708,0.6633,-1.2717,0.7194,1.0086 -0x11eed,CUS_0x604,August,21,962-03-7975,Lawyer,65984.28,5278.69,8,3,24,4,"Personal Loan, Payday Loan, Home Equity Loan, and Auto Loan",18.15465635,,12.88,17,Standard,1573.325755,27.03287184,,Yes,169.7972369,405.1793377,Low_spent_Small_value_payments,242.8924254,0,-0.2937,-0.418,-1.228,0.136,-0.8131 -0x11ef9,CUS_0x3a57,August,39,058-04-9742,Teacher,83418.18,7113.515,0,4,6,1,Personal Loan,,3.455694278,11.9,2,Good,1081.551558,35.84877412,30 Years and 4 Months,No,42518,84.13479927,High_spent_Large_value_payments,807.6328199,0,-0.9504,0.4533,-0.9199,0.5588,-0.1815 -0x11f05,CUS_0x5128,August,18,273-66-6843,Entrepreneur,36471.78,,4,4,9,4,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",18.29115055,12,11.87,8,_,514.68,36.02524741,24 Years and 10 Months,Yes,87.05268918,120.7146971,High_spent_Medium_value_payments,354.2641138,0,0.9709,-1.8225,1.9839,-0.2532,1.5404 -0x11f11,CUS_0x68df,August,80,#F%$D@*&8,Developer,20422.48,1442.873333,5,7,5,0,,14.32926113,10,16.33,2,Standard,1283.736947,33.42750975,32 Years and 8 Months,Yes,0,37.9327254,High_spent_Small_value_payments,370.6410023,0,-0.763,-0.8942,1.1755,0.0688,1.6604 -0x11f1d,CUS_0x7341,August,36,227-87-8495,Journalist,16633.78,,5,3,9.288361749,2,"Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0.182881527,3,7.2,4,Good,101.5044352,28.43969749,21 Years and 8 Months,No,40.15058774,521.3519017,Low_spent_Large_value_payments,300.2600376,0,1.2312,0.8761,1.6358,1.0002,-0.3105 -0x11f29,CUS_0x88b6,August,31,978-01-9354,Journalist,93256.68,7697.39,5,7,19,1,Credit-Builder Loan,23.09765974,17,16.79,8,Standard,1125.67,26.2977011,18 Years and 8 Months,Yes,69.62122211,124.4802623,High_spent_Large_value_payments,815.6375155,0,0.2179,1.3192,-0.1968,0.7109,0.8977 -0x11f35,CUS_0x7e02,August,39,971-95-2589,Lawyer,68131.8,5801.65,8,10,19.88954781,7,"Payday Loan, Credit-Builder Loan, Student Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",22.94816531,17,26.04,12,Bad,4100.98,24.74424217,4 Years and 5 Months,Yes,1586.546483,550.6054211,Low_spent_Small_value_payments,38.68301485,0,0.9627,-0.9723,0.0651,0.0223,0.1992 -0x11f41,CUS_0x7aba,August,18,095-35-2056,Journalist,31136.8,,4,7,18,4,"Student Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",19.23792129,17,13.73,10,Standard,930.08,28.96232398,,NM,88.99986636,126.7239959,High_spent_Small_value_payments,305.5494711,0,0.3086,0.207,-1.9045,-0.5878,-0.5341 -0x11f4d,CUS_0xa520,August,36,861-14-7221,Musician,38555.62,3292.968333,2,3,4,4,"Not Specified, Not Specified, Home Equity Loan, and Student Loan",6.394157078,9,5.03,3,Good,316.2566695,27.58306815,20 Years and 5 Months,No,75.80655421,124.5857652,Low_spent_Large_value_payments,414.6035753,0,-0.1451,-0.4398,1.0619,0.2368,-0.5353 -0x11f59,CUS_0x3bbe,August,34,017-53-1609,Lawyer,102215.61,8482.9675,2,5,9.288361749,0,Mortgage Loan,,4,9.9,8,Good,73.94165659,37.1472244,30 Years and 9 Months,No,60.56736079,1356.175994,Low_spent_Small_value_payments,279.7387262,0,1.5125,0.6471,-0.7857,-1.3539,-0.414 -0x11f65,CUS_0xc6c7,August,53,367-39-2487,Manager,85498.65,,3,3,13.28836175,2,"Not Specified, Mortgage Loan, and Credit-Builder Loan",19.96261562,17,5.38,6,_,397.93,36.00451951,17 Years and 2 Months,Yes,151.7952771,664.4670094,High_spent_Medium_value_payments,585.0639244,0,-0.8154,0.6883,1.2726,0.4318,0.0081 -0x11f71,CUS_0x8d60,August,34,296-94-3235,Scientist,15330.755,,3,5,15,1,Auto Loan,28.10016148,17.58814156,19.47,10,Standard,1189.819068,32.09721521,12 Years and 10 Months,Yes,12.49941028,43.5701012,Low_spent_Small_value_payments,342.8867802,0,0.6841,-0.9975,0.5893,-1.1933,-0.9165 -0x11f7d,CUS_0x3c95,August,53,655-62-7433,Developer,138806.88,11661.24,6,6,7.288361749,0,,11.68414266,11,6.78,1,Standard,448.22,37.44825557,33 Years and 2 Months,Yes,0,700.4775317,!@9#%8,1125.583929,0,-0.4352,0.2263,-0.2793,0.3777,0.7747 -0x11f89,CUS_0x806c,August,40,944-68-1538,Entrepreneur,61228.6,4876.383333,10,7,33,4,"Student Loan, Payday Loan, Payday Loan, and Payday Loan",,3182.651979,16.16,16,_,2548.571287,28.0466723,18 Years and 0 Months,Yes,108.993644,201.7740746,Low_spent_Small_value_payments,466.8706147,0,-1.566,1.881,-0.0393,0.2879,1.1338 -0x11f95,CUS_0x47fe,August,22,740-19-9586,Teacher,7085.39,,9,7,16,6,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Student Loan, Personal Loan, and Credit-Builder Loan",33.94294816,18,22.03,10,Bad,3988.68,22.92132523,13 Years and 8 Months,Yes,82.70339407,82.25107892,Low_spent_Small_value_payments,248.6047278,0,-0.3762,-0.1584,1.9428,-0.9027,0.4957 -0x11fa1,CUS_0xa973,August,21,793-25-6763,Mechanic,20638.155,,2,5,5.067457376,0,,,2,3.16,3,_,1571.580954,36.55433647,27 Years and 8 Months,No,0,,High_spent_Medium_value_payments,353.5486071,0,-0.5919,-0.0194,-0.0901,-0.0003,0.0225 -0x11fad,CUS_0x689b,August,24,915-45-3725,Mechanic,20336.52,1587.71,4,5,19,5,"Personal Loan, Auto Loan, Auto Loan, Student Loan, and Personal Loan",27.1159127,17.96300059,13.05,5,Standard,1513.621518,37.31138024,15 Years and 5 Months,Yes,59.6606957,25.05555832,High_spent_Large_value_payments,314.054746,0,0.1011,0.6608,1.588,-0.1526,1.8942 -0x11fb9,CUS_0x4973,August,43,128-30-2776,_______,12291.445,,5,5,7.067457376,3,"Payday Loan, Credit-Builder Loan, and Home Equity Loan",19.11026595,13,20.49,4,_,1481.000954,29.7207058,21 Years and 9 Months,Yes,21.86769179,101.6879336,Low_spent_Small_value_payments,232.052795,0,0.3043,-0.6513,1.1614,-1.2604,-0.2988 -0x11fc5,CUS_0xadb2,August,42,807-07-8104,_______,142001.12,10508.05846,7,3,20,2,"Not Specified, and Payday Loan",18.86543652,15,9.64,11,Standard,237.3117666,32.41246895,13 Years and 11 Months,Yes,1701.955013,,High_spent_Medium_value_payments,846.5600838,0,1.3049,-0.8839,0.5449,0.2189,0.7383 -0x11fd1,CUS_0x3a41,August,42,745-44-6523,Musician,63473.68,5237.473333,0,4,6,0,,7.40675442,7,10.71,3,_,622.68,39.21831477,23 Years and 4 Months,No,0,43.4007407,!@9#%8,720.3465926,0,0.4892,1.4896,-0.015,2.1486,2.1148 -0x11fdd,CUS_0x2c10,August,32,561-72-0012,Engineer,51715.68,4529.64,8,8,15.88954781,7,"Home Equity Loan, Not Specified, Personal Loan, Personal Loan, Student Loan, Auto Loan, and Personal Loan",,24,28.99,11,Bad,3812.9,37.69605489,8 Years and 6 Months,Yes,45710.48344,184.1964897,High_spent_Medium_value_payments,332.4360381,0,0.3888,0.1028,0.1583,2.2034,0.9027 -0x11fe9,CUS_0x805b,August,45,511-47-4198,Journalist,37618.3,3285.858333,4,7,3,3,"Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",2.121863351,4,0.85,4,_,736.0917193,30.85200673,31 Years and 2 Months,No,79.93901796,150.235826,High_spent_Small_value_payments,379.5608832,0,-0.5503,-0.7686,-1.3897,-0.6451,-0.9187 -0x11ff5,CUS_0x86f4,August,20,607-39-4006,Architect,59923.89,,10,10,15,2,"Not Specified, and Payday Loan",26.88139948,14,15.47,11,_,2497.36,28.85833082,18 Years and 8 Months,Yes,94.81682821,195.4185132,Low_spent_Large_value_payments,458.1304086,0,-0.549,2.1889,-1.2142,0.3604,0.7391 -0x12001,CUS_0x82d,August,25,678-05-1602,_______,8167.74,,9,10,19,5,"Personal Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Student Loan",31.91573596,17,24.7,11,Bad,4335.7,35.93670465,8 Years and 5 Months,Yes,23.12936388,73.01020131,Low_spent_Small_value_payments,271.0249348,0,1.9932,-0.9305,-0.8056,1.7227,-1.3278 -0x1200d,CUS_0x5129,August,32,041-56-2811,Scientist,57150.74,,4,4,17.28836175,0,Personal Loan,,22.76825306,15.69,12,Standard,482.4773145,38.43583251,6 Years and 9 Months,Yes,24.21929847,,Low_spent_Small_value_payments,115.9820574,0,-0.2006,-0.459,1.0719,-1.1588,-0.3892 -0x12019,CUS_0x61ec,August,23,164-25-3351,Teacher,8749.465,,6,9,33.88954781,7,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Not Specified, and Debt Consolidation Loan",31.17128379,24,19.57,8,Bad,4676.17,23.71385692,11 Years and 0 Months,Yes,1354.518287,34.56488243,Low_spent_Small_value_payments,265.0989574,0,-0.3032,-1.6691,-0.0857,-1.4166,0.5479 -0x12025,CUS_0x15da,August,24,283-09-7565,Doctor,127014.28,10870.52333,7,6,14,3,"Payday Loan, Student Loan, and Not Specified",,13,,9,_,245.63,36.14219109,,Yes,215.3848503,323.4306765,Low_spent_Medium_value_payments,828.2368065,0,0.9449,-0.7228,-0.1957,-0.3371,-0.4428 -0x12031,CUS_0x7955,August,33,294-52-2292,Entrepreneur,42250.77,,0,4,3,0,,0,1,9.69,0,Good,1056.56,28.91385844,16 Years and 2 Months,No,0,111.8879746,High_spent_Medium_value_payments,474.5017754,0,-0.2474,-1.2991,0.8237,0.947,0.3229 -0x1203d,CUS_0x6d04,August,24,837-11-4072,Scientist,20734.2,1970.85,5,662,1.288361749,2,"Mortgage Loan, Auto Loan, and Auto Loan",0,1,5.23,3,Good,129.9747127,24.95276642,26 Years and 11 Months,No,32.92147168,518.4055815,High_spent_Medium_value_payments,330.5055727,0,-0.3698,-0.5073,0.1417,1.8444,1.5053 -0x12049,CUS_0x105c,August,80,998-18-7252,Journalist,127617.6,,0,4,5,3,"Not Specified, Mortgage Loan, and Payday Loan",2.855694172,6,12.22,0,Good,542.91,39.87736764,24 Years and 4 Months,No,211.054606,10000,High_spent_Medium_value_payments,861.6006704,0,1.837,-0.0107,-0.7795,-1.6189,-0.9855 -0x12055,CUS_0x6083,August,35,018-04-5329,Lawyer,17572.045,,5,5,0.288361749,100,"Credit-Builder Loan, Home Equity Loan, Auto Loan, and Payday Loan",,6,5.93,4,Good,109.83,23.62659261,,No,31.63069188,576.5147801,Low_spent_Small_value_payments,262.2256973,0,-0.6845,-1.4056,0.0728,-0.3877,1.3557 -0x12061,CUS_0xa7ab,August,23,307-59-3845,Teacher,71010.44,5667.536667,3,7,15,0,,15.30554235,12,8.24,11,Standard,1472.81,29.96383826,19 Years and 8 Months,NM,0,216.5436798,Low_spent_Small_value_payments,640.2099869,0,-1.7972,1.2697,1.3704,-0.1628,0.3645 -0x1206d,CUS_0x1370,August,32,710-06-0138,Writer,10216.36,,10,8,22,5,"Mortgage Loan, Personal Loan, Student Loan, Student Loan, and Personal Loan",36.36297564,27.38198068,19.55,6,Bad,4031.510645,29.4567378,,Yes,121.2297293,26.72371667,High_spent_Medium_value_payments,262.3304037,0,-1.1407,0.0934,0.2187,1.7019,-0.5366 -0x12079,CUS_0x8cbe,August,39,236-25-0124,Manager,76644.16,,5,4,9,3,"Student Loan, Student Loan, and Payday Loan",15.84416799,10,0.68,4,Standard,1234.9635,35.40526979,28 Years and 4 Months,No,932.564832,212.8498541,!@9#%8,580.0285075,0,-0.0392,0.1581,-0.7043,0.4807,-0.3074 -0x12085,CUS_0x5180,August,18,268-03-1866,Scientist,45245.52,3533.46,5,3,16,3,"Payday Loan, Personal Loan, and Personal Loan",23.9138581,16,14.02,11,Standard,2057.39,28.41345842,6 Years and 9 Months,Yes,86.08896255,,High_spent_Large_value_payments,425.3860694,0,1.5568,-1.36,-1.4564,0.7936,-0.1751 -0x12091,CUS_0xfb6,August,21,668-25-6453,Accountant,42165.91,3658.825833,4,3,7,0,,,11,7.73,6,_,981.66,26.85332895,30 Years and 8 Months,NM,0,,High_spent_Medium_value_payments,511.1070848,0,-0.1683,-2.0472,-0.9894,0.0075,-0.3756 -0x1209d,CUS_0x5525,August,45,832-59-7756,Doctor,80815.4,6862.616667,8,3,9,0,,20.84007382,14,6.37,2,Standard,575.33,34.57211716,33 Years and 0 Months,Yes,0,119.859764,High_spent_Large_value_payments,806.4019027,0,-0.4989,2.3715,0.3145,1.8254,-0.0013 -0x120a9,CUS_0x59d0,August,47,411-83-5846,Doctor,120171.48,9933.29,5,5,1.288361749,2,"Personal Loan, and Personal Loan",15.6672846,,,5,_,883.91,27.78404176,,No,139.7103732,895.2033045,Low_spent_Medium_value_payments,658.3527833,0,-0.5643,2.4193,1.3737,-2.3722,0.0652 -0x120b5,CUS_0xc76,August,43,916-79-7706,Mechanic,10227.655,,8,10,16.06745738,3,"Payday Loan, Personal Loan, and Payday Loan",44.15370073,24,7.56,12,_,2007.940954,25.77130266,19 Years and 4 Months,Yes,18.09524427,52.15534786,Low_spent_Small_value_payments,270.1595783,0,-1.3169,0.7638,-0.5438,0.3342,-1.1884 -0x120c1,CUS_0x39b2,August,29,215-58-5257,_______,81892.68,,6,6,20,4,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",37.26976653,26.90264493,16.22,8,_,2171.160676,24.02645205,10 Years and 9 Months,Yes,198.1620763,296.1309376,Low_spent_Small_value_payments,506.9459861,0,-1.8874,0.6546,0.0229,0.2507,-0.4749 -0x120cd,CUS_0x346d,August,33,049-22-6295,Manager,36136.49,,6,3,18,2,"Home Equity Loan, and Auto Loan",24.69834548,14,18.91,6,_,453.4,29.29616489,33 Years and 4 Months,Yes,42.4739898,219.4628038,Low_spent_Small_value_payments,331.1006231,0,0.3368,-1.1482,0.3337,1.0386,-0.2245 -0x120d9,CUS_0x9aef,August,47,632-70-4061,Scientist,67361.38,5497.448333,2,4,1,0,,1.298127594,4,11.47,6,Good,1013.66,25.92738544,17 Years and 3 Months,No,0,,Low_spent_Large_value_payments,601.0444132,0,0.7741,-0.3695,2.1475,1.1039,1.0515 -0x120e5,CUS_0xb2b5,August,32,824-84-8056,Mechanic,43985.8,,5,4,5,0,,21.46692725,19,5.56,3,Standard,715.46,26.82660425,25 Years and 5 Months,Yes,0,289.5431718,Low_spent_Small_value_payments,390.3051616,0,-0.3653,1.542,0.9713,0.1802,0.6541 -0x120f1,CUS_0x1d8d,August,24,306-63-6042,_______,17137.57,1617.130833,8,7,34,9,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,22.94040578,25.45,16,_,4105.660134,33.98647118,9 Years and 4 Months,Yes,119.532032,182.6730479,Low_spent_Small_value_payments,149.5080035,0,0.902,1.7206,-0.7325,-1.0986,1.577 -0x120fd,CUS_0xc5aa,August,46,#F%$D@*&8,_______,74106.94,5902.578333,4,5,9,0,,15.47910508,,2.06,4,Good,11.49,38.94201306,,No,66949,10000,High_spent_Small_value_payments,685.445191,0,-0.6031,-0.6578,1.5434,-1.092,0.2951 -0x12109,CUS_0x3948,August,29,450-87-5620,Mechanic,80235.27,6684.2725,7,7,9,2,"Debt Consolidation Loan, and Credit-Builder Loan",22.98569326,18,19.8,6,Standard,291.72,43.04394331,19 Years and 4 Months,Yes,91.17655185,108.8375017,High_spent_Large_value_payments,708.4131964,0,-1.9709,-0.6898,0.3805,0.8946,0.7752 -0x12115,CUS_0x6dc9,August,18,431-16-9515,Musician,17171.56,,6,3,16,3,"Mortgage Loan, Home Equity Loan, and Student Loan",21.44139112,17,16.25,8,Standard,146.6,40.03588928,9 Years and 3 Months,Yes,27.05387316,47.06704142,!@9#%8,336.3754187,0,-0.1648,0.5239,-0.4029,-0.0161,1.1928 -0x12121,CUS_0x5cc8,August,33,283-52-5386,Entrepreneur,118080.4,9899.033333,5,3,11,1,Credit-Builder Loan,,13,8.17,1,Standard,1201.75,34.81749682,23 Years and 0 Months,Yes,81.48586055,779.647304,Low_spent_Medium_value_payments,408.7701688,0,1.2868,-0.6529,0.5624,-0.2359,-1.0194 -0x1212d,CUS_0x3b72,August,48,708-35-4000,Manager,134533.32,11114.11,7,4,6,3,"Mortgage Loan, Debt Consolidation Loan, and Auto Loan",,20,0.97,5,Standard,434.36,23.13389208,16 Years and 3 Months,No,251.9882793,803.4681667,Low_spent_Small_value_payments,345.954554,0,-0.0647,-1.8667,1.0244,-0.1538,-0.4416 -0x12139,CUS_0x3f1d,August,21,540-99-5377,Musician,88434.96,,7,4,1002,2,"Student Loan, and Mortgage Loan",15.02660789,12,7.64,10,Standard,189.1,32.34216972,23 Years and 3 Months,Yes,143.6363938,163.403845,High_spent_Large_value_payments,680.8177612,0,-0.6744,-0.1691,2.0392,-0.7783,0.4066 -0x12145,CUS_0x1ebc,August,43,657-98-2592,Manager,122307.96,10230.33,1,5,5.288361749,0,,13.48803711,,2.31,5,Good,630.24,29.38102558,27 Years and 3 Months,No,0,,High_spent_Large_value_payments,1103.286335,0,0.8533,-1.3455,-0.2088,-0.5815,1.7327 -0x12151,CUS_0x504f,August,31,235-75-1663,_______,15548.34,1291.695,7,10,34.06745738,5,"Payday Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Personal Loan",,29.99528491,15.71,14,_,1763.312913,30.04640293,17 Years and 10 Months,NM,58.1549859,55.80894367,Low_spent_Medium_value_payments,268.4852825,0,0.1153,1.0539,-0.6688,0.5918,-0.1198 -0x1215d,CUS_0x9f95,August,26,166-65-6805,Mechanic,93106.05,,0,4,3,0,,10.12634188,8,9.96,2,Good,1454.68,43.37570194,18 Years and 2 Months,NM,0,241.4594613,Low_spent_Medium_value_payments,801.5242887,0,-1.0449,1.8846,2.0829,-1.2799,0.6322 -0x12169,CUS_0x2d7e,August,50,626-32-5386,Journalist,84673.2,,3,5,2,3,"Home Equity Loan, Student Loan, and Not Specified",1.372143826,5,2.09,1,Good,679.0999412,35.47935467,29 Years and 2 Months,No,130.5014997,285.6902209,High_spent_Medium_value_payments,577.7500441,0,1.0226,-0.1732,-1.0849,-0.2177,-0.5256 -0x12175,CUS_0xa36e,August,49,640-30-2701,Architect,36377.09,3146.424167,1,5,3,4,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Auto Loan",0,1,9.42,3,Good,822.54,33.41086199,16 Years and 2 Months,No,117.2794841,10000,!@9#%8,279.0054991,0,-0.1861,1.4558,0.476,0.7507,0.5461 -0x12181,CUS_0x94cf,August,37,168-36-8575,Entrepreneur,11403141,1237.526667,8,4,14,1,Auto Loan,23.2864525,18,6.13,2,Standard,1498.41,26.65164164,30 Years and 5 Months,No,13.03293872,75.89021739,Low_spent_Medium_value_payments,314.8295106,0,0.856,-1.0643,1.8156,-0.3043,-0.7226 -0x1218d,CUS_0x879d,August,25,788-22-2192,Manager,51557.73,4479.4775,10,7,22,3,"Debt Consolidation Loan, Payday Loan, and Mortgage Loan",27.22622647,15.12064923,6.04,9,Standard,1771.193623,28.6412053,10 Years and 9 Months,Yes,107.6469142,99.02300559,High_spent_Large_value_payments,481.2778302,0,0.5607,0.2838,0.1404,-0.6811,-0.3844 -0x12199,CUS_0x6fa7,August,80,162-09-1542,Developer,99403.32,8347.61,0,3,11,3,"Payday Loan, Mortgage Loan, and Home Equity Loan",9.496632727,9,0.72,1,_,904.93,39.07447004,23 Years and 11 Months,No,130.6197106,118.7304913,High_spent_Medium_value_payments,835.4107981,0,1.308,-0.4883,0.4568,-0.2949,-0.926 -0x121a5,CUS_0x6cda,August,80,780-03-4283,Writer,16586.58,1470.215,6,5,33.06745738,3,"Mortgage Loan, Not Specified, and Payday Loan",42.43072095,22.36960346,4.6,7,Bad,3003.265213,31.96926218,,Yes,22.91432794,80.64524755,Low_spent_Medium_value_payments,296.7416366,0,0.5477,-0.253,-0.2604,-0.8468,-0.9099 -0x121b1,CUS_0x799b,August,34,280-45-0102,Engineer,22007.11,,3,4,15.06745738,4,"Credit-Builder Loan, Personal Loan, Payday Loan, and Auto Loan",,14,2.48,2,Standard,1554.110954,36.461857,29 Years and 0 Months,Yes,45.12757853,145.078789,Low_spent_Medium_value_payments,261.4659278,0,0.2297,0.1651,-0.5876,-0.4796,0.9886 -0x121bd,CUS_0xab9d,August,35,976-87-8587,Musician,8391.185,,6,7,17,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Home Equity Loan",22.61179861,17.38084607,19.32,11,Standard,1721.124533,38.4787831,12 Years and 4 Months,Yes,21.83222707,,Low_spent_Small_value_payments,271.0723286,0,0.4595,0.7578,0.9579,0.0346,-0.0197 -0x121c9,CUS_0x2822,August,53,579-02-1738,_______,68763.14,5520.261667,5,2,1,2,"Home Equity Loan, and Home Equity Loan",2.317324553,6,6.72,5,_,1124.47284,38.54986692,24 Years and 0 Months,No,72.94696155,255.131777,High_spent_Medium_value_payments,503.3512424,0,1.176,0.2739,-0.2281,0.7682,-1.0227 -0x121d5,CUS_0x67b1,August,46,039-00-8391,Doctor,34209.8,,3,1,7,0,,6.811168101,7,13.51,,Good,905.9975005,33.78842954,26 Years and 2 Months,No,0,207.1295216,Low_spent_Small_value_payments,387.5626492,0,-0.9475,-0.3678,0.5757,0.9242,0.1935 -0x121e1,CUS_0xed4,August,80,329-84-6942,Architect,84738.63,,6,7,5.288361749,0,Personal Loan,16.41015295,14,19.72,10,Standard,381.11,39.99329172,18 Years and 11 Months,Yes,38.36419065,467.6054886,High_spent_Large_value_payments,883.2230318,0,-0.275,1.3624,-0.279,1.0464,0.0061 -0x121ed,CUS_0xc3c7,August,24,278-45-8598,Entrepreneur,41153.9,3322.491667,5,3,10,2,"Payday Loan, and Personal Loan",7.509925902,8,8.24,4,Good,775.8081264,39.16426925,26 Years and 6 Months,No,42.98560342,131.3369401,Low_spent_Large_value_payments,442.9149654,0,-1.6318,-0.1465,0.2912,1.7411,1.5558 -0x121f9,CUS_0x8293,August,23,588-86-8947,Mechanic,89254.77,7227.8975,8,5,18,1,Auto Loan,18.27677503,11,3.45,,Standard,997.64,29.06404197,25 Years and 9 Months,No,63.25482346,459.6111675,Low_spent_Small_value_payments,489.923759,0,0.1984,-0.2384,-0.4222,-0.2938,0.7068 -0x12205,CUS_0xb975,August,52,988-43-7974,Accountant,15308303,6301.5,3,6,19,100,"Student Loan, and Personal Loan",17.3404264,12,13.64,0,Standard,644.74,27.51352369,18 Years and 4 Months,Yes,92.88055091,,High_spent_Medium_value_payments,662.8151722,0,-0.0544,0.5434,-0.7424,0.2926,-0.0052 -0x12211,CUS_0x4c96,August,53,961-65-0909,Teacher,99868.83,8332.4025,2,3,1.288361749,2,"Auto Loan, Credit-Builder Loan, and Auto Loan",9.590547641,11,9.11,1,Good,617.4197553,32.8641957,22 Years and 6 Months,No,146.7012526,764.7821079,High_spent_Medium_value_payments,625.6221168,0,-0.7104,0.6426,-1.7846,-1.7973,-0.7747 -0x1221d,CUS_0x4ef6,August,39,164-29-1651,Scientist,31372.54,,8,6,28,7,"Auto Loan, Debt Consolidation Loan, Student Loan, Student Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",27.09101094,17.67791707,22.82,11,Bad,3540.909066,35.45463897,2 Years and 5 Months,NM,121.9598011,,Low_spent_Small_value_payments,222.4116025,0,-0.4902,-1.4633,0.5536,-0.8659,-1.7882 -0x12229,CUS_0x8fa7,August,29,427-09-7472,Mechanic,20024.17,1544.680833,4,5,10,4,"Home Equity Loan, Student Loan, Student Loan, and Personal Loan",20.85040479,16,13.93,12,Standard,698.93,39.79728081,8 Years and 4 Months,NM,35.90346971,,Low_spent_Medium_value_payments,253.8334394,0,0.4172,0.6015,0.4009,0.0348,-0.6172 -0x12235,CUS_0x46b5,August,21,491-92-4340,Entrepreneur,62717.24,,6,6,29,9,"Auto Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",51.63188278,28.79826069,10.82,7,Bad,2844.917028,28.18930539,18 Years and 3 Months,Yes,370.0219456,88.79484552,High_spent_Large_value_payments,284.7268755,0,-1.0042,-0.5701,-0.137,-0.8575,0.3559 -0x12241,CUS_0x211a,August,20,371-22-9085,Writer,56192.32,4676.693333,10,6,22.06745738,8,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, and Debt Consolidation Loan",36.23389037,21,14.07,7,Bad,4000.510954,26.81709923,11 Years and 6 Months,Yes,282.1903992,,High_spent_Small_value_payments,251.2723706,0,0.1965,-0.2999,1.1668,1.7774,-0.796 -0x1224d,CUS_0x27c2,August,18,534-04-9143,Teacher,98534.22,8050.185,6,6,8,0,,17.87383884,16,13.1,,Standard,1110.26,35.72364931,27 Years and 0 Months,Yes,0,10000,High_spent_Medium_value_payments,926.0349211,0,1.1404,-0.2011,-0.0623,0.597,-0.2033 -0x12259,CUS_0x6c65,August,28,#F%$D@*&8,_______,62276.37,,5,8,29,2,"Payday Loan, and Payday Loan",10.77390617,10.43649062,18.89,12,Standard,1541.573585,24.48805159,17 Years and 9 Months,Yes,70.05445943,294.3637204,High_spent_Small_value_payments,420.5515702,0,0.6532,-1.5146,0.7291,-2.0609,-1.0547 -0x12265,CUS_0x1f66,August,19,042-09-5105,Musician,67730,5697.166667,4,5,7.288361749,0,,,3,1.63,3,Good,626.34,31.98583365,27 Years and 11 Months,NM,0,618.9254201,High_spent_Medium_value_payments,620.7287076,0,0.1892,-0.3043,0.5869,0.2788,-1.8785 -0x12271,CUS_0x552f,August,20,828-39-5792,Architect,132842.56,9717.936208,6,5,16.28836175,0,Credit-Builder Loan,6.913413019,8,7.41,7,Standard,756.9347665,29.49769889,21 Years and 8 Months,NM,1645.529388,782.0995063,High_spent_Medium_value_payments,996.1280328,0,0.9762,-0.5651,-0.0386,-1.277,0.1782 -0x1227d,CUS_0x6d54,August,26,433-84-2151,_______,114224.24,9459.686667,5,6,15,3,"Credit-Builder Loan, Payday Loan, and Auto Loan",21.57679979,16,14.27,8,Standard,1216.94,37.87845628,23 Years and 9 Months,Yes,275.7179758,299.6856018,High_spent_Medium_value_payments,620.5650891,0,0.2832,1.8309,-0.7779,1.2286,-0.8399 -0x12289,CUS_0x930a,August,42,212-95-0341,Scientist,178969.48,14647.12333,0,5,1,4,"Debt Consolidation Loan, Not Specified, Student Loan, and Mortgage Loan",,7,2.87,9,Good,667.15,25.18805669,21 Years and 8 Months,No,554.1672741,857.3213065,Low_spent_Medium_value_payments,333.2237528,0,-1.4831,0.4388,-0.1249,-0.0325,1.4524 -0x12295,CUS_0x5e28,August,19,545-26-7513,Entrepreneur,87746.92,7411.243333,5,4,5.288361749,100,"Payday Loan, Not Specified, Personal Loan, and Personal Loan",24.03359935,20,14.78,7,Standard,864.67,25.76789239,16 Years and 11 Months,NM,152.8638892,767.0281079,High_spent_Small_value_payments,501.1697973,0,-0.5002,-0.1649,1.8481,0.6045,1.8936 -0x122a1,CUS_0xab7d,August,49,844-45-6184,Architect,58366.22,5041.851667,5,5,1,1,Credit-Builder Loan,26.79455795,19,1.37,3,Good,383.3,31.60339118,23 Years and 3 Months,NM,36.11027678,148.3549115,High_spent_Small_value_payments,579.7199784,0,-0.2543,-0.1155,0.0849,0.6084,0.8912 -0x122ad,CUS_0x5e9d,August,42,313-23-9282,Developer,12877209,1131.460417,7,6,10,1,Payday Loan,30.6263114,21.99534185,4.41,3,Standard,1650.770377,25.49709138,17 Years and 0 Months,NM,13.70987958,87.31344488,Low_spent_Medium_value_payments,292.1227172,0,0.8971,-1.9326,-0.4102,3.7287,-0.5248 -0x122b9,CUS_0x3d58,August,41,093-70-9090,Teacher,95846.49,8264.2075,8,4,9,0,,,19,19.38,7,Standard,1333.366633,37.39136527,30 Years and 11 Months,NM,0,345.5217382,High_spent_Medium_value_payments,775.8812404,0,0.1981,0.385,0.431,0.2497,0.5092 -0x122c5,CUS_0xad6d,August,29,026-97-5057,Journalist,42316.4,3627.366667,7,4,15,2,"Not Specified, and Auto Loan",12.75110487,9,14.59,2,Standard,1188.1,31.72367115,22 Years and 8 Months,Yes,53.58450436,,!@9#%8,229.3959389,0,-0.7408,0.3328,0.7438,-0.7297,-0.1022 -0x122d1,CUS_0xb39f,August,43,262-96-1321,Developer,18648.38,,4,9,22,4,"Student Loan, Auto Loan, Payday Loan, and Auto Loan",12.31298289,11.99611646,13.5,12,Standard,2348.938206,31.39242937,17 Years and 11 Months,Yes,34.45954512,10000,Low_spent_Small_value_payments,264.7061602,0,0.5717,0.9477,-0.6312,-0.9913,0.0905 -0x122dd,CUS_0x962b,August,22,956-84-8881,Mechanic,17655551,11879.53667,6,6,6,6,"Personal Loan, Home Equity Loan, Student Loan, Student Loan, Personal Loan, and Student Loan",26.06710838,16,13.29,7,Standard,1108.01,28.77466049,15 Years and 3 Months,Yes,553.5518785,107.7978509,High_spent_Large_value_payments,766.6039372,0,0.8555,-1.0387,-0.0391,0.6577,0.7573 -0x122e9,CUS_0x57da,August,40,098-89-7391,Accountant,31407.1,,7,7,29,8,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",21.99764774,,24.16,11,Bad,3239.664328,28.46864585,6 Years and 9 Months,Yes,115.2068732,71.29617515,High_spent_Medium_value_payments,325.0227849,0,0.0357,0.833,-1.6722,1.0415,1.4571 -0x122f5,CUS_0x99e5,August,29,146-62-6806,Manager,9183.32,769.2766667,6,8,19.88954781,6,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",40.81094698,22.64290249,2.81,10,Bad,2300.308444,23.28286899,6 Years and 2 Months,Yes,1356.884203,75.33209084,!@9#%8,240.3812911,0,0.0922,0.1822,-0.1407,0.2832,-0.2712 -0x12301,CUS_0x9b80,August,24,155-73-5444,Journalist,31227.35,,4,6,6,3,"Auto Loan, Payday Loan, and Home Equity Loan",,15,14.71,7,Standard,1257.27,28.08954227,11 Years and 5 Months,Yes,58.00291414,88.33803572,Low_spent_Large_value_payments,378.3869668,0,0.7265,0.9638,-0.4139,1.6265,1.93 -0x1230d,CUS_0x7ac9,August,43,122-02-5419,Journalist,10462.585,,4,6,5,4,"Payday Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",21.65978895,18,20.64,4,_,2057.65,36.52010401,12 Years and 5 Months,Yes,27.46489101,60.45315989,Low_spent_Small_value_payments,291.4701574,0,0.8996,-0.6071,-0.0026,-0.3688,1.1718 -0x12319,CUS_0x1c3b,August,39,596-35-8824,Media_Manager,79357.14,6703.095,2,3,8,100,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Mortgage Loan",,15.11977982,4.08,2,Good,1276.644263,37.07777743,18 Years and 4 Months,No,171.9987355,85.44689333,High_spent_Medium_value_payments,662.8638711,0,-0.49,0.0367,-2.0217,-0.2061,1.0167 -0x12325,CUS_0x9b22,August,31,565-34-6703,Architect,88533.27,,4,4,10.28836175,2,"Payday Loan, Student Loan, and Debt Consolidation Loan",23.1369356,21,3.23,3,Standard,364.08,36.02448662,30 Years and 10 Months,No,183.6890271,499.8175235,High_spent_Large_value_payments,708.8081603,0,0.8695,0.9279,-2.1732,1.3698,0.2723 -0x12331,CUS_0x584a,August,53,229-58-9523,Scientist,39487.82,,7,4,20,1,Payday Loan,22.07819787,16.97199713,2.48,0,_,394.2225294,29.58845616,,Yes,25.6641357,51.20459168,High_spent_Medium_value_payments,506.4964393,0,0.3266,-0.9332,-1.1891,1.1142,0.1234 -0x1233d,CUS_0x79d9,August,38,091-80-3722,_______,19010.58,1762.819195,9,7,17,3,"Personal Loan, Mortgage Loan, and Home Equity Loan",,,12.16,10,Bad,1519.25,24.93518231,6 Years and 3 Months,Yes,118.8242906,205.4811229,Low_spent_Small_value_payments,232.6118918,0,0.1207,2.5553,0.0941,-0.3524,-0.7321 -0x12349,CUS_0xaa14,August,42,057-84-6299,Engineer,33287.12,2844.926667,7,238,9,2,"Mortgage Loan, and Personal Loan",13.4951462,10,16.64,6,Standard,1137.16,37.31535721,16 Years and 9 Months,No,45.78583997,51.18416408,High_spent_Medium_value_payments,437.5226626,0,0.0688,-0.269,-1.6325,-1.7998,-1.1489 -0x12355,CUS_0x9d23,August,35,670-67-9282,Engineer,25042.69,,5,6,7,1,Not Specified,9.638926745,8,14.37,4,Good,332.8528865,22.19438467,29 Years and 4 Months,No,18.46866243,199.7015885,Low_spent_Large_value_payments,293.2869818,0,0.2704,1.1041,0.2407,-0.692,-0.2116 -0x12361,CUS_0x6032,August,20,741-59-1064,Media_Manager,9307.915,581.6595833,8,10,18.88954781,6,"Not Specified, Personal Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",,28.07169233,14,17,Bad,3197.472249,29.53118505,14 Years and 6 Months,Yes,1358.755114,48.12562848,Low_spent_Small_value_payments,246.9551347,0,-0.2361,0.027,0.3708,1.5226,0.8359 -0x1236d,CUS_0x4424,August,18,930-89-7190,Architect,105150.2,8836.516667,8,3,13,4,"Debt Consolidation Loan, Auto Loan, Student Loan, and Home Equity Loan",,19,14.46,7,_,1265.73,38.97951329,18 Years and 10 Months,Yes,323.443243,138.2767167,High_spent_Large_value_payments,661.931707,0,-0.5986,1.078,1.0017,0.7103,0.5434 -0x12379,CUS_0x65d0,August,31,259-61-9535,Doctor,27354.48,,6,6,12,0,,17.57803111,16,2.48,2,Standard,80.73,28.38299794,25 Years and 2 Months,No,0,63.99601756,Low_spent_Large_value_payments,458.6579824,0,0.8927,-0.6202,0.309,0.4069,0.4102 -0x12385,CUS_0x841f,August,32,666-99-6722,Journalist,135107.76,,6,4,12,3,"Mortgage Loan, Payday Loan, and Student Loan",,14,7.13,4,Standard,763.74,36.0245278,24 Years and 10 Months,No,193.8838417,287.6775627,High_spent_Large_value_payments,886.1365956,0,-0.6195,-1.375,-0.8634,0.7546,0.563 -0x12391,CUS_0x8018,August,52,456-03-1565,Mechanic,49937.4,,3,3,7,2,"Payday Loan, and Not Specified",9.342804275,8,18.53,4,Standard,933.1661746,33.5213342,16 Years and 5 Months,Yes,455.8673145,447.0536828,Low_spent_Large_value_payments,250.8434336,0,0.1131,1.3614,1.3637,-0.4753,0.634 -0x1239d,CUS_0x3e32,August,29,566-57-6637,Scientist,87902.13,,4,7,7,5,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",25.18117085,19,7.22,12,_,777.56,25.81441548,8 Years and 8 Months,Yes,283.9462698,514.2356285,Low_spent_Medium_value_payments,228.9358517,0,0.6115,-0.8028,-0.9581,-0.8903,-1.0011 -0x123a9,CUS_0xab43,August,31,466-71-2863,Manager,20625.07,,10,10,32,3,"Mortgage Loan, Auto Loan, and Home Equity Loan",35.30824045,24.86740082,16.31,9,_,2552.662672,29.88962035,14 Years and 2 Months,Yes,38.9631883,63.99532387,High_spent_Medium_value_payments,309.0170712,0,0.3683,-0.3034,1.3708,0.1291,-0.4137 -0x123b5,CUS_0x3713,August,41,660-31-3335,Developer,99340.08,8506.34,3,1,7.288361749,100,,4.381828717,6,7.91,5,Good,1028.59,36.686768,30 Years and 3 Months,No,0,711.5752521,Low_spent_Large_value_payments,828.996209,0,-0.1574,1.6719,-0.0519,0.3605,-1.5116 -0x123c1,CUS_0x821a,August,26,916-57-9650,_______,122705.73,10049.4775,5,6,6,3,"Auto Loan, Auto Loan, and Mortgage Loan",13.8451807,12,6.34,5,_,1004.82,40.86826383,21 Years and 3 Months,No,200.3156921,135.2151905,High_spent_Large_value_payments,909.4168674,0,-0.3283,1.0045,0.5171,1.8608,-0.0263 -0x123cd,CUS_0x9398,August,54,426-87-7817,Scientist,134790.56,,4,982,14,1,Mortgage Loan,20.06705802,14,2.93,7,Standard,349.04,35.51203079,30 Years and 11 Months,Yes,111.9133257,1212.957885,!@9#%8,70.48345626,0,-0.5832,-0.3319,0.1057,0.9942,-1.3046 -0x123d9,CUS_0x64d4,August,51,842-53-1233,Accountant,14730.78,,5,2,10,0,,21.2297688,16,5.76,7,Good,655.01,39.59591838,18 Years and 0 Months,No,0,173.4697127,Low_spent_Small_value_payments,267.2867873,0,1.1485,1.3444,-1.0275,-1.7096,0.9939 -0x123e5,CUS_0x6cb4,August,25,196-11-8284,Doctor,114948,9541.662004,3,6,11,7,"Student Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, and Student Loan",,10.60993831,7.01,10,Standard,1619.981933,26.57899519,,Yes,682.2537785,,High_spent_Large_value_payments,673.7187312,0,0.6274,0.4641,-0.9342,-0.6783,-0.0581 -0x123f1,CUS_0x8d48,August,26,968-82-9543,Developer,10813.53,1149.1275,4,4,10,4,"Auto Loan, Credit-Builder Loan, Payday Loan, and Not Specified",,16,11.12,6,_,862.42,28.85794804,28 Years and 0 Months,Yes,24.05878365,90.09791879,Low_spent_Small_value_payments,290.7560476,0,-0.2709,0.0606,1.6563,-0.2561,-0.9192 -0x123fd,CUS_0x537,August,42,#F%$D@*&8,Accountant,75776.55,,5,4,14.28836175,0,Debt Consolidation Loan,19.43542132,17,13.86,1543,Standard,1.37,27.23363346,26 Years and 0 Months,NM,60.27778126,,High_spent_Medium_value_payments,767.2608201,0,1.1151,0.2035,1.3631,1.0124,-0.3415 -0x12409,CUS_0x3f69,August,27,420-51-6685,Journalist,18515.18,,8,8,29.06745738,5,"Debt Consolidation Loan, Auto Loan, Student Loan, Not Specified, and Student Loan",,21.26400071,19.91,12,Bad,2911.572036,38.95608269,,Yes,59.19647163,12.6253738,High_spent_Large_value_payments,306.6510333,0,1.8591,-0.0255,1.5274,0.5019,0.0748 -0x12415,CUS_0x81ac,August,23,872-11-8915,Entrepreneur,33494.58,2754.215,8,5,12,3,"Not Specified, Student Loan, and Payday Loan",17.30803189,16,17.8,8,_,1257.38,31.62556084,8 Years and 6 Months,Yes,70.03545947,75.81192187,Low_spent_Medium_value_payments,409.5741187,0,2.618,-0.4118,-1.3833,-0.2248,0.1475 -0x12421,CUS_0x2a15,August,37,107-09-2657,_______,86771.08,7174.923333,8,3,18,5,"Personal Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",33.00038418,21.41602121,19.24,8,Standard,93.89987516,35.0178287,13 Years and 6 Months,Yes,218.8193142,281.9049341,Low_spent_Small_value_payments,506.7680851,0,-0.3786,-0.0003,-0.3056,-0.9411,1.021 -0x1242d,CUS_0x9dc2,August,37,#F%$D@*&8,Engineer,57227.04,4561.92,10,9,4801.957005,7,"Not Specified, Credit-Builder Loan, Auto Loan, Home Equity Loan, Auto Loan, Auto Loan, and Auto Loan",36.28098375,23,18.64,9,_,4126.380954,27.96117037,8 Years and 6 Months,Yes,1543.760258,73.5247158,High_spent_Medium_value_payments,367.8566572,0,0.051,-0.3304,0.1225,0.647,-0.0866 -0x12439,CUS_0x4a82,August,46,711-75-2709,Developer,21426.07,,5,7,16,7,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Payday Loan",,20,8.79,439,Standard,1024.27,35.61436157,15 Years and 8 Months,Yes,117.2667865,,High_spent_Small_value_payments,200.8171754,0,-2.1053,1.2459,-0.6568,0.8065,1.9135 -0x12445,CUS_0x8c68,August,20,203-97-2628,_______,7689.5,806.7916667,9,9,21.06745738,9,"Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",,23,23.95,13,Bad,3726.580954,36.13134382,,Yes,53.05905222,50.72951419,Low_spent_Small_value_payments,240.1703123,0,-0.2909,1.5706,0.6358,0.2923,0.7628 -0x12451,CUS_0xa814,August,49,167-27-0881,Accountant,143961.64,12106.80333,4,5,16,2,"Home Equity Loan, and Credit-Builder Loan",8.448757293,10,2.95,6,Standard,202.76,31.6773981,22 Years and 4 Months,Yes,215.3274884,656.6461838,Low_spent_Medium_value_payments,618.7066611,0,0.1831,-0.5356,0.1756,1.031,0.0144 -0x1245d,CUS_0x4596,August,49,432-19-3861,Accountant,89427.12,7485.26,6,5,9,0,,,15,18.15,2,Standard,1286.5,31.53012949,30 Years and 0 Months,Yes,0,100.7387609,High_spent_Medium_value_payments,897.7872391,0,-0.3184,-1.2263,-1.254,-1.069,-0.4039 -0x12469,CUS_0x968a,August,42,553-92-5790,Lawyer,18280.185,1498.34875,5,7,17,1,Debt Consolidation Loan,,16,8.53,7,Standard,556.78,32.85629803,16 Years and 9 Months,Yes,13.45356846,54.5610985,High_spent_Medium_value_payments,331.820208,0,0.2972,-0.6909,-0.9867,3.8446,0.8555 -0x12475,CUS_0x2f7a,August,36,407-98-9957,Entrepreneur,77883.54,6290.295,3,7,6,0,,,9,,6,Good,566.829853,39.26750338,30 Years and 8 Months,No,0,159.8512227,High_spent_Large_value_payments,725.4300201,0,-1.3458,-0.2274,-0.9881,1.051,1.0656 -0x12481,CUS_0x6f91,August,42,466-54-2527,Engineer,7020.545,,5,3,30,6,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Mortgage Loan",,10.41148935,18.34,7,Standard,1716.480336,35.43189323,15 Years and 4 Months,Yes,25.56488488,0,High_spent_Small_value_payments,269.6282071,0,0.3866,0.4575,2.1275,0.9834,-3.3794 -0x1248d,CUS_0x510f,August,50,#F%$D@*&8,Writer,39398.74,3002.228333,2,3,9,3,"Student Loan, Mortgage Loan, and Personal Loan",0.68539411,2.323731351,-0.62,6,Good,71.53630174,32.75013322,25 Years and 0 Months,No,82.98423268,233.9429172,Low_spent_Small_value_payments,273.2956834,0,-0.3396,-0.2328,-2.5154,1.3746,-0.0161 -0x12499,CUS_0xbbda,August,50,598-28-8368,Manager,72099.14,,4,3,2,4,"Payday Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",0.268021053,1,11.27,4,Good,1290.666013,35.96043451,28 Years and 2 Months,NM,426.7970767,478.5331715,Low_spent_Small_value_payments,290.8918608,0,0.9879,0.0485,0.3916,0.6929,1.8226 -0x124a5,CUS_0x86c0,August,22,176-63-8953,Scientist,14273.35,1387.445833,9,7,25.06745738,8,"Not Specified, Not Specified, Home Equity Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Personal Loan",38.71996687,22.33417905,9.16,9,Bad,4193.777045,31.86206618,8 Years and 11 Months,Yes,81.23849769,,Low_spent_Small_value_payments,236.1430356,0,0.2983,-1.5653,-1.9629,-0.4672,-0.3574 -0x124b1,CUS_0x92e5,August,54,122-80-2393,Accountant,63402.48,5574.54,5,7,2,2,"Auto Loan, and Mortgage Loan",7.979925013,9,1.86,0,_,707.85,28.82223531,16 Years and 5 Months,No,55.21913469,,High_spent_Small_value_payments,544.2033445,0,0.0281,1.7496,0.9061,-1.264,-0.474 -0x124bd,CUS_0x33bf,August,40,239-94-3241,Lawyer,155673.16,13044.76333,3,6,3,2,"Debt Consolidation Loan, and Auto Loan",9.078106851,6.912244916,2.59,4,Good,1361.016302,32.87315745,26 Years and 5 Months,No,185.0498564,,High_spent_Large_value_payments,1100.483198,0,-1.6751,1.3174,-0.5654,1.0631,-0.5403 -0x124c9,CUS_0x9000,August,80,844-17-9667,_______,10503.925,986.3270833,3,7,19,4,"Home Equity Loan, Credit-Builder Loan, Not Specified, and Payday Loan",,15,5.98,0,Standard,431.78,40.16821237,21 Years and 10 Months,NM,17.60819157,,Low_spent_Small_value_payments,241.6741033,0,-0.1243,-0.2545,0.9482,-0.549,-1.6648 -0x124d5,CUS_0x92ff,August,26,424-24-7936,Mechanic,88215.03,,7,3,11.28836175,2,"Not Specified, and Not Specified",17.95310026,17,16.36,5,Standard,1128.68,38.85645968,,Yes,100.415822,476.2741693,High_spent_Large_value_payments,818.8727198,0,-1.0381,1.1655,0.1105,0.6319,-0.2925 -0x124e1,CUS_0xa614,August,28,174-10-7823,Scientist,18184.99,,7,6,35.06745738,6,"Credit-Builder Loan, Not Specified, Student Loan, Student Loan, Mortgage Loan, and Student Loan",47.57689017,25,14.74,9,Bad,1718.400954,39.91507611,15 Years and 8 Months,Yes,88.56159526,127.4594971,Low_spent_Medium_value_payments,170.9002031,0,0.7673,-0.3336,-0.774,-0.6993,1.7036 -0x124ed,CUS_0x780c,August,26,879-19-2481,Lawyer,49125.57,4177.7975,8,8,32.88954781,7,"Home Equity Loan, Student Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",20.59333237,15,21.88,9,Bad,2575.83,33.12501143,14 Years and 8 Months,Yes,1491.76954,,High_spent_Medium_value_payments,415.6160931,0,0.4894,0.7364,-0.4309,0.7977,0.8756 -0x124f9,CUS_0x1f8d,August,51,486-78-3816,Entrepreneur,109600.95,9336.4125,4,7,1,3,"Mortgage Loan, Payday Loan, and Personal Loan",2.97542964,4,0.93,3,Good,141.08,27.71191906,19 Years and 0 Months,No,252.46481,197.0306414,High_spent_Medium_value_payments,734.1457986,0,0.075,-0.5313,-2.9229,-0.9348,0.2674 -0x12505,CUS_0xc249,August,55,043-21-5017,Doctor,24057.73,2279.810833,3,7,13,3,"Home Equity Loan, Not Specified, and Home Equity Loan",12.02104043,12,11.73,,Standard,548.3349241,37.8511189,20 Years and 0 Months,No,50.04247097,224.8879804,Low_spent_Medium_value_payments,259.8009164,0,-1.0888,0.071,-0.4048,0.3594,-0.3071 -0x12511,CUS_0x8d22,August,50,785-29-2037,Accountant,16476.04,,1,3,11,0,,9.658755745,9.540910552,8.94,4,Good,343.3020692,24.72938964,16 Years and 6 Months,No,0,67.47016704,Low_spent_Small_value_payments,333.1301663,0,-0.0092,1.6415,-0.2477,0.2162,0.6049 -0x1251d,CUS_0xb03b,August,42,005-71-5332,Entrepreneur,18869.78,,9,5,32,6,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, and Home Equity Loan",,24.24486466,6.27,11,Bad,2120.034769,34.09602621,9 Years and 8 Months,Yes,56.84102936,56.16880458,High_spent_Small_value_payments,324.0383327,0,-1.1682,-1.0776,-0.5573,-0.2761,0.368 -0x12529,CUS_0x6b7,August,31,756-02-2173,Lawyer,19632.64,1537.053333,5,5,12,5,"Debt Consolidation Loan, Payday Loan, Not Specified, Home Equity Loan, and Payday Loan",,12,10.95,8,Standard,2157.76,34.32032845,18 Years and 10 Months,Yes,42226,46.71234376,High_spent_Medium_value_payments,302.5096989,0,0.0003,0.9896,-0.1623,-0.2375,-0.4005 -0x12535,CUS_0x2b73,August,36,712-45-6575,Entrepreneur,17263.94,,10,10,24.06745738,8,"Auto Loan, Payday Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Mortgage Loan",26.83592526,18,27.15,10,Bad,4373.170954,26.55749929,13 Years and 9 Months,Yes,96.95386319,55.97987445,Low_spent_Small_value_payments,272.5121411,0,-2.094,0.0665,0.1427,0.4829,-2.9325 -0x12541,CUS_0xb38d,August,39,307-67-5773,Teacher,18409.79,1594.149167,7,10,17.06745738,5,"Auto Loan, Payday Loan, Personal Loan, Payday Loan, and Not Specified",,29.38218139,5.16,11,Bad,1914.430425,34.90244352,,Yes,57.47276726,,Low_spent_Small_value_payments,185.5337844,0,0.5688,2.8991,-1.585,-1.344,-0.0495 -0x1254d,CUS_0x2709,August,37,221-76-9774,Engineer,67556.8,,3,5,10,3,"Student Loan, Credit-Builder Loan, and Auto Loan",27.64108292,18,19.44,2,Standard,762.85,31.78837545,28 Years and 0 Months,Yes,118.348636,,Low_spent_Small_value_payments,133.6867159,0,-0.4011,-0.4956,-1.1908,-0.3452,-0.2658 -0x12559,CUS_0xa075,August,30,362-78-8068,Accountant,42900.21,3480.0175,8,5,17,4,"Personal Loan, Payday Loan, Mortgage Loan, and Auto Loan",21.19695175,15.81559384,10.47,6,Standard,3041.729025,37.32940036,10 Years and 4 Months,Yes,111.2093108,64.16691581,High_spent_Medium_value_payments,422.6255234,0,-0.6659,-0.7689,-0.8367,-0.6794,2.36 -0x12565,CUS_0x872f,August,19,442-30-8588,_______,31041.46,,5,2,5,1,Home Equity Loan,4.749043875,8,9.13,0,_,267.800365,34.40567449,33 Years and 3 Months,No,21.02118004,27.81306287,!@9#%8,445.3986916,0,-1.2002,-1.3954,0.5306,-0.018,-0.4189 -0x12571,CUS_0x6a79,August,23,#F%$D@*&8,Lawyer,173668.84,14293.40333,3,6,2,3,"Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0,0,-5.12,0,_,710.17,27.34960834,23 Years and 2 Months,No,310.1594183,552.8812388,Low_spent_Large_value_payments,836.2996763,0,-0.8272,-0.5337,-1.1926,-0.381,-0.6145 -0x1257d,CUS_0xac5d,August,26,376-28-6303,Writer,89956.16,7650.346667,5,6,19,5,"Not Specified, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",,11,10.3,8,Standard,1239.81,32.70446337,,Yes,299.497486,197.7562307,High_spent_Medium_value_payments,517.78095,0,-0.3524,-0.5429,-0.6039,0.6995,0.8087 -0x12589,CUS_0xad53,August,37,903-50-0305,Lawyer,64829.94,,5,6,19,2,"Student Loan, and Auto Loan",,9,4.71,5,Standard,169.28,41.97320325,21 Years and 3 Months,No,56.89300216,333.4808973,Low_spent_Small_value_payments,456.7756005,0,-0.5316,0.3823,0.9539,-0.3289,-0.0275 -0x12595,CUS_0x11b1,August,28,347-47-6952,_______,34819.83,,312,3,10,1,Student Loan,,12,7.69,4,_,905.89,37.69816887,18 Years and 10 Months,Yes,22.79539612,125.5996058,High_spent_Small_value_payments,380.5702481,0,-0.3589,-0.76,0.2388,-0.0575,0.4291 -0x125a1,CUS_0x3260,August,40,750-67-7525,Accountant,10897.385,1029.115417,5,6,16,2,"Auto Loan, and Credit-Builder Loan",22.28733377,18,17.66,1288,Standard,401.56,37.84989449,15 Years and 11 Months,Yes,12.98533866,,Low_spent_Small_value_payments,257.1438697,0,-0.6501,-0.9717,-0.2565,0.8575,-0.9853 -0x125ad,CUS_0x26bf,August,40,339-34-1758,Lawyer,77631.28,5852.639122,0,3,4,0,,12.92470895,,2.94,5,Good,1041.430342,32.35960121,22 Years and 6 Months,NM,557.6342115,254.7494104,High_spent_Medium_value_payments,660.9283449,0,0.0653,-1.632,0.6337,1.5424,-0.286 -0x125b9,CUS_0x10b6,August,49,439-76-5364,Journalist,5691341,,7,3,19,3,"Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",,,1.23,1,Standard,277.93,40.27854126,18 Years and 4 Months,No,37.99637813,65.37216415,High_spent_Small_value_payments,327.9283744,0,-2.6282,-0.2988,0.7816,0.3355,-1.5976 -0x125c5,CUS_0x56f1,August,36,377-07-9836,Mechanic,18910.83,1609.9025,1,4,8.067457376,0,,14.37369616,9.37237694,2.88,8,Good,1251.565625,34.95645573,25 Years and 5 Months,No,0,127.5855135,Low_spent_Medium_value_payments,286.6844485,0,0.5134,0.9155,-2.8158,1.6985,0.8144 -0x125d1,CUS_0x6a9e,August,35,139-41-1213,Entrepreneur,69601.24,5908.103333,7,7,29,5,"Credit-Builder Loan, Student Loan, Home Equity Loan, Payday Loan, and Student Loan",,11.94595383,15.25,10,_,2770.450424,35.08156855,7 Years and 2 Months,Yes,247.9727698,148.9962189,High_spent_Medium_value_payments,443.8413446,0,-0.3505,-0.5382,1.0396,0.6908,-0.6566 -0x125dd,CUS_0x3525,August,24,746-59-7879,Journalist,20324.355,,3,4,7,3,"Not Specified, Debt Consolidation Loan, and Payday Loan",7.866521455,8,10.81,4,Good,1396.07,25.04405913,,No,36.9330031,,Low_spent_Large_value_payments,259.805673,0,-0.5891,-0.385,-2.0115,-0.3857,-1.8256 -0x125e9,CUS_0x7f9c,August,32,349-56-0936,Developer,35452.34,,7,6,12,2,"Home Equity Loan, and Student Loan",,,19.97,7,Standard,1442.31,26.11450823,16 Years and 3 Months,Yes,46.37675344,130.7755295,High_spent_Small_value_payments,403.7838838,0,-0.294,-0.6079,0.2054,-1.1454,1.0962 -0x125f5,CUS_0x4999,August,33,#F%$D@*&8,Accountant,21366.12,1769.51,4,5,11,4,"Personal Loan, Payday Loan, Student Loan, and Not Specified",,14,7.98,4,_,830.5918892,38.18894713,29 Years and 5 Months,Yes,65.08973173,43.37380029,High_spent_Medium_value_payments,324.8627096,0,-1.2178,1.1173,-1.0778,-0.9653,-0.2329 -0x12601,CUS_0x2353,August,26,496-79-8901,Architect,31937.62,,5,3,15,2,"Student Loan, and Mortgage Loan",15.14238186,12.87922512,17.37,10,Standard,2177.650354,34.28741678,10 Years and 4 Months,Yes,35.38951471,42.22156175,High_spent_Small_value_payments,421.8357569,0,1.1899,0.5313,1.955,0.7165,-0.9804 -0x1260d,CUS_0x584b,August,27,462-03-5379,Accountant,92565.81,7870.8175,4,5,14,1,Personal Loan,,14,10.95,0,Standard,1236.76,42.87032688,16 Years and 6 Months,No,55.26199672,160.1289796,High_spent_Medium_value_payments,821.6907737,0,0.4977,-1.5889,-0.4958,0.2594,0.9895 -0x12619,CUS_0x2788,August,49,024-45-5113,Writer,97164.6,8167.05,3,5,17.28836175,2,"Credit-Builder Loan, Payday Loan, and Student Loan",25.9190518,21.39586522,13.53,1,_,1210.84792,35.26195965,28 Years and 10 Months,Yes,124.3399436,512.2553395,High_spent_Large_value_payments,840.0471779,0,-0.4604,-0.8369,-1.4333,1.369,0.441 -0x12625,CUS_0x631e,August,19,838-51-8043,Lawyer,129780.44,11034.03667,5,3,18,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",35.52843306,23.46885187,11.25,10,Standard,1266.115562,26.73813705,22 Years and 5 Months,Yes,250.190735,682.2991323,Low_spent_Medium_value_payments,450.9137994,0,-0.19,0.3821,0.6012,0.7466,-0.711 -0x12631,CUS_0x463,August,18,442-69-4443,Teacher,140875.88,11490.65667,6,4,16,4,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",,,7.91,6,_,299.78,39.56499242,27 Years and 8 Months,Yes,392.4273995,532.2332768,!@9#%8,514.4049903,0,-0.4275,1.0843,0.182,0.2187,-1.1958 -0x1263d,CUS_0x9650,August,23,579-04-4808,Accountant,16827.645,,7,4,6,1,Mortgage Loan,14.98241801,11,15.34,12,Standard,626.14,28.49424409,19 Years and 10 Months,Yes,73.76576666,97.64164009,High_spent_Small_value_payments,303.7002115,0,0.028,-0.805,0.4016,0.5752,1.4351 -0x12649,CUS_0xf30,August,29,#F%$D@*&8,Journalist,81610.44,,6,3,14,1,Student Loan,13.57642569,13,12.91,10,Standard,1080.855026,27.09629494,25 Years and 10 Months,Yes,56.98919005,765.6960035,Low_spent_Medium_value_payments,219.2658804,0,0.3109,0.3513,-0.6509,-0.1415,0.2125 -0x12655,CUS_0x7ed8,August,21,875-39-6024,Manager,68380.02,5427.646732,5,4,10,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Mortgage Loan",29.28264777,20,20.43,11,Standard,432.6860009,33.97281897,18 Years and 3 Months,NM,593.1509303,270.8661869,High_spent_Medium_value_payments,369.5622333,0,-0.2657,0.697,-0.0285,-1.8201,0.1577 -0x12661,CUS_0x727e,August,44,838-91-3677,Teacher,19675.25,1450.604167,5,3,1,0,,4.498149967,7,7.9,3,Good,755.7934189,31.66186712,33 Years and 5 Months,No,0,69.40200447,Low_spent_Medium_value_payments,362.5025936,0,0.0318,-0.3972,0.5785,-1.3642,-0.2573 -0x1266d,CUS_0x51a4,August,23,500-92-8739,Engineer,56390,4743.166667,7,6,28,8,"Not Specified, Student Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Payday Loan",17.61977184,,4.8,10,Bad,5019.911843,29.40196137,13 Years and 6 Months,Yes,329.3984894,,High_spent_Small_value_payments,264.3161639,0,0.902,1.2019,0.2875,0.0805,0.2375 -0x12679,CUS_0xb168,August,55,542-45-6915,Accountant,39323.54,3160.961667,4,1,10,3,"Not Specified, Credit-Builder Loan, and Not Specified",8.439857457,9,10.67,2082,Good,719.3635381,38.35743624,32 Years and 4 Months,No,81.21272918,88.45005564,!@9#%8,425.4006644,0,-0.039,-0.3165,1.8729,-1.5618,-1.9289 -0x12685,CUS_0x1542,August,43,946-39-9629,Engineer,70580.16,5991.68,5,3,4,4,"Mortgage Loan, Not Specified, Personal Loan, and Credit-Builder Loan",,3,9.93,3,Good,1218.994413,31.79808585,31 Years and 10 Months,No,221.770361,630.7528366,Low_spent_Small_value_payments,123.8210439,0,-0.5764,-1.126,0.5229,-1.8754,-1.2341 -0x12691,CUS_0x434c,August,46,659-53-9925,Doctor,87792.39,7448.0325,3,7,6,2,"Personal Loan, and Student Loan",,2,-2.66,8,_,630.2694238,36.91373248,20 Years and 9 Months,No,101.2059457,65.69562077,High_spent_Large_value_payments,824.4025697,0,-0.0214,0.0226,0.7609,-1.8475,-0.4048 -0x1269d,CUS_0x901c,August,23,311-01-2257,Engineer,15577.01,1383.084167,6,5,24,4,"Student Loan, Credit-Builder Loan, Student Loan, and Personal Loan",,20.86912548,10.63,12,Bad,2380.334316,38.16743663,6 Years and 0 Months,Yes,50.87262731,103.7135288,Low_spent_Small_value_payments,273.7222606,0,-0.0883,0.2023,-0.0081,-0.4844,-0.8426 -0x126a9,CUS_0x315f,August,57,940-94-4342,Mechanic,41794.32,,0,5,7,3,"Home Equity Loan, Payday Loan, and Payday Loan",10.27819838,12,3.78,4,Good,277.8555548,27.86227939,26 Years and 4 Months,No,89.81563465,418.8793553,Low_spent_Small_value_payments,163.005985,0,0.0213,0.0724,-0.9173,-0.6087,0.3386 -0x126b5,CUS_0x3d42,August,18,098-96-4178,Engineer,70582,5643.833333,8,5,31,100,"Student Loan, and Not Specified",,,6.35,9,Standard,2242.028889,26.83861362,9 Years and 0 Months,Yes,96.26348533,206.9556088,High_spent_Small_value_payments,521.1642392,0,-1.6657,-0.3294,-0.492,-1.6368,0.2128 -0x126c1,CUS_0xab56,August,54,401-73-3467,Doctor,43609.13,3058.989127,2,3,11,1,Personal Loan,0,1,2.5,5,Good,1312.58,30.5678561,24 Years and 6 Months,No,386.072643,,High_spent_Medium_value_payments,506.4376241,0,0.9013,0.6944,-0.369,-1.5576,-0.0261 -0x126cd,CUS_0x40bd,August,53,681-32-9435,Architect,110443.2,,8,3,8,2,"Auto Loan, and Personal Loan",22.69710919,15,11.16,5,Standard,1330.29,34.58468914,31 Years and 9 Months,Yes,183.6849156,65.36942552,High_spent_Large_value_payments,930.8056589,0,-0.2128,0.2218,0.5308,-1.142,0.2543 -0x126d9,CUS_0x5ef2,August,20,556-28-1765,_______,17804.96,1246.746667,4,4,13,2,"Not Specified, and Personal Loan",,18,6.17,4,Standard,1120.790096,36.59887855,18 Years and 6 Months,No,20.93658105,59.15022133,High_spent_Medium_value_payments,303.2829757,0,-2.5687,-0.2227,-1.2241,1.1523,1.77 -0x126e5,CUS_0xc2a7,August,25,790-76-9764,Developer,39323.36,3467.946667,7,3,34,3,"Home Equity Loan, Auto Loan, and Debt Consolidation Loan",21.63018158,14.57250973,5.39,7,Standard,1555.871228,25.20031334,12 Years and 2 Months,Yes,58.67403813,145.1194869,High_spent_Medium_value_payments,393.0011416,0,2.1579,0.6785,-0.7718,-1.781,0.9815 -0x126f1,CUS_0x1c3a,August,32,298-29-8622,Accountant,43450.25,,0,3,4,2,"Credit-Builder Loan, and Debt Consolidation Loan",0,0,7.47,2,Good,588.59,29.72616359,23 Years and 6 Months,No,41.39964367,154.5352047,High_spent_Medium_value_payments,425.2505683,0,-0.4896,0.6311,0.5001,2.2302,0.0395 -0x126fd,CUS_0x78e9,August,80,716-17-7548,Developer,43904.46,3934.705,4,4,15,7,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",9.871949194,10.36132336,16.18,9,Standard,1592.845974,25.90794225,17 Years and 3 Months,Yes,250.366653,104.7618151,High_spent_Medium_value_payments,288.3420319,0,-1.7763,0.0155,3.2438,-1.5754,1.4955 -0x12709,CUS_0x5749,August,18,277-59-7271,Writer,35374.6,3027.891753,3,6,25,2,"Home Equity Loan, and Mortgage Loan",9.508733337,10,9.6,6,Standard,2303.35,36.80177189,16 Years and 9 Months,Yes,161.4846618,,High_spent_Medium_value_payments,485.5418567,0,1.0492,1.6425,-1.5174,-0.9137,-0.4778 -0x12715,CUS_0x752c,August,37,483-01-4711,Media_Manager,99952.32,8120.36,3,6,2.288361749,2,"Credit-Builder Loan, Auto Loan, and Home Equity Loan",2.137855998,4,8.74,0,Good,162.01,31.39190682,27 Years and 0 Months,No,224.2379725,947.6938215,Low_spent_Large_value_payments,330.041667,0,-0.5294,-0.3723,0.4463,0.177,0.8528 -0x12721,CUS_0x90e2,August,40,767-53-7638,Architect,27377.06,,5,7,15,4,"Mortgage Loan, Not Specified, Debt Consolidation Loan, and Auto Loan",11.99045594,8,12.48,10,Standard,912.0868939,31.24881656,19 Years and 2 Months,Yes,57.31669544,48.00068508,High_spent_Large_value_payments,338.5307303,0,0.3054,-0.0203,-0.9057,0.5677,1.3584 -0x1272d,CUS_0x8800,August,35,154-71-8470,Scientist,15815.22,1241.935,6,10,19,5,"Auto Loan, Student Loan, Personal Loan, Payday Loan, and Home Equity Loan",,23.85718695,7.89,9,Bad,2685.97264,31.81285045,14 Years and 3 Months,Yes,63.78234222,15.62851225,High_spent_Large_value_payments,284.7826455,0,-0.9229,-0.307,1.8649,-0.3596,1.2285 -0x12739,CUS_0xbc0e,August,44,175-37-1300,Manager,16231.115,,6,7,15,0,,,15,11.92,8,Standard,1375.66,32.94169309,29 Years and 2 Months,No,0,,Low_spent_Small_value_payments,257.8138194,0,-0.0982,0.4364,-0.6256,-0.5785,0.2282 -0x12745,CUS_0x30bd,August,51,922-14-6752,Media_Manager,20199.46,1520.288333,3,3,6,4,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",3.985125847,5,8.56,2,Good,1207.63905,35.67993107,19 Years and 11 Months,No,60.04279174,,High_spent_Small_value_payments,315.0770691,0,-0.1382,0.741,-1.2589,0.6389,-0.846 -0x12751,CUS_0x43fd,August,23,235-91-8341,Mechanic,71096.02,6140.668333,6,3,18,1,Mortgage Loan,9.043938361,5,3.26,5,Standard,1494.93,29.8694142,24 Years and 8 Months,NM,10808,127.3320781,High_spent_Medium_value_payments,705.5424224,0,1.0638,-1.0206,0.1144,1.638,1.2693 -0x1275d,CUS_0x6779,August,18,632-25-2193,Developer,20394.2,1696.516667,4,6,17,5,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",,14,15.11,4,_,517.96,37.37440563,,Yes,58440,31.21858311,High_spent_Medium_value_payments,310.1120411,0,-0.563,-1.102,-1.0558,-1.4369,0.7188 -0x12769,CUS_0x2958,August,19,571-79-5091,Teacher,130045.95,11053.1625,5,1,3,3,"Payday Loan, Personal Loan, and Student Loan",90,2508,9.99,4,_,611.1447652,23.81862467,20 Years and 0 Months,No,237.0220798,1486.961448,Low_spent_Small_value_payments,,0,-1.2376,-1.2491,1.124,-1.2294,0.7067 -0x12775,CUS_0x72f9,August,49,868-83-8678,Teacher,83718.12,6744.51,4,5,9,0,,20.66742003,15,5.36,2,Good,572.2936094,29.4593229,30 Years and 8 Months,No,0,420.1763836,Low_spent_Small_value_payments,600.2362714,0,0.4033,1.3701,0.6531,-0.0354,0.0189 -0x12781,CUS_0x1c57,August,45,661-66-4873,Engineer,66940.62,5717.385,3,4,13.28836175,4,"Home Equity Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",,10,19.9,6,Standard,352.97,29.62872943,31 Years and 6 Months,Yes,164.2113668,520.5188367,High_spent_Medium_value_payments,556.9457575,0,1.3329,-0.0418,0.9307,0.7014,0.6493 -0x1278d,CUS_0x3b20,August,53,#F%$D@*&8,Journalist,36849.91,3355.825833,4,6,4,3,"Student Loan, Home Equity Loan, and Mortgage Loan",0,2,8.57,4,Good,660.89,31.26461007,,No,68.45114592,187.3319496,High_spent_Small_value_payments,339.7994878,0,-0.5253,1.5505,0.871,-0.9181,-0.489 -0x12799,CUS_0x50d5,August,19,783-40-0022,Engineer,62337.42,5236.785,3,5,6,100,Credit-Builder Loan,14.56426397,11,13.31,5,Standard,788.73,29.68871709,19 Years and 8 Months,Yes,40.39552173,300.4637722,Low_spent_Small_value_payments,472.819206,0,2.1342,-0.4307,-0.2542,-0.4067,-0.2712 -0x127a5,CUS_0x883b,August,44,436-25-6139,Mechanic,19092.585,1300.04875,0,65,12,1,Home Equity Loan,0,0,11.11,6,Good,136.25,22.91545611,17 Years and 2 Months,No,9.390404494,21.23605088,High_spent_Large_value_payments,339.3784196,0,-0.2929,-1.4593,0.0813,-0.9385,1.2484 -0x127b1,CUS_0x6ba2,August,43,041-16-8306,Mechanic,20877.69,1855.8075,8,3,16,4,"Mortgage Loan, Student Loan, Mortgage Loan, and Auto Loan",23.02270269,16,6.89,5,Standard,510.9294188,37.87136237,24 Years and 0 Months,No,58.42224632,41.70931489,High_spent_Small_value_payments,350.9120975,0,-0.7748,1.846,-0.5974,-0.1362,-0.7186 -0x127bd,CUS_0x5b41,August,22,#F%$D@*&8,Architect,37755.92,2979.326667,8,6,24.06745738,2,"Personal Loan, and Credit-Builder Loan",,19,17.69,12,Bad,2589.650954,41.09273999,8 Years and 6 Months,NM,46.85805209,,Low_spent_Medium_value_payments,416.7112318,0,-1.0786,0.931,1.2528,-0.4684,-0.6955 -0x127c9,CUS_0x2fb7,August,18,145-34-6936,Lawyer,71480.44,5883.703333,8,6,12.28836175,6,"Personal Loan, Debt Consolidation Loan, Student Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",7.548998953,9,7.92,8,Standard,315.42,36.47012923,18 Years and 6 Months,NM,40651,,Low_spent_Medium_value_payments,59.24584276,0,0.2726,-1.3997,0.1661,1.0228,0.083 -0x127d5,CUS_0x44b9,August,54,886-35-3071,_______,20867.67,1695.9725,6,6,5,3,"Not Specified, Payday Loan, and Mortgage Loan",22.30725917,19,8.34,2,Standard,912.86,24.40718779,22 Years and 5 Months,No,46.66752108,28.02706878,High_spent_Large_value_payments,334.9026601,0,0.5725,-0.4375,0.8568,2.3299,2.3278 -0x127e1,CUS_0x460f,August,33,540-34-2378,Writer,73615.36,5998.613333,6,9,16.06745738,9,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",,20.63407402,6.48,8,Bad,5503.124184,39.50337976,,NM,364.5136571,485.7944966,Low_spent_Large_value_payments,0,0,2.0384,1.9732,0.178,1.0929,0.3183 -0x127ed,CUS_0x165a,August,36,863-16-0608,Architect,56831.76,4627.98,5,6,6,1,Mortgage Loan,26.75123139,18,1.17,2,Standard,1179.08,25.53736592,29 Years and 6 Months,NM,37.50499252,182.6413954,Low_spent_Medium_value_payments,522.651612,0,1.6195,-0.2296,-0.0453,0.3926,0.8769 -0x127f9,CUS_0x7032,August,31,826-68-6064,Doctor,36463.21,,6,5,11,0,,22.78503169,20,,6,_,791.8147223,37.82989835,22 Years and 10 Months,Yes,0,83.65053769,High_spent_Large_value_payments,459.1238239,0,-0.208,-1.0297,0.0393,-0.1951,0.7872 -0x12805,CUS_0xa79,August,45,777-13-0214,Architect,80392.84,6633.403333,10,10,20.95700519,6,"Home Equity Loan, Payday Loan, Student Loan, Student Loan, Credit-Builder Loan, and Auto Loan",,24.43314497,13.35,14,Bad,5077.212259,41.42591457,2 Years and 8 Months,Yes,1526.04968,130.8582648,High_spent_Medium_value_payments,535.3820196,0,-2.0065,-1.1715,-0.7471,-1.5642,0.5014 -0x12811,CUS_0x416,August,25,275-79-7518,Musician,17641.46,,8,5,5,2,"Credit-Builder Loan, and Not Specified",20.49884775,12,11.63,4,Standard,322.43,31.44375614,6 Years and 9 Months,Yes,15.35727659,155.2723492,Low_spent_Small_value_payments,289.6825409,0,0.1553,0.2905,-0.6156,0.0361,0.1777 -0x1281d,CUS_0x8a1,August,33,022-55-1988,Musician,29101.2,,8,10,28,2,"Debt Consolidation Loan, and Home Equity Loan",34.07642884,17.29088433,-0.04,7,Bad,1456.137603,32.83065365,19 Years and 2 Months,Yes,43.28898385,10000,Low_spent_Large_value_payments,423.5409041,0,-0.419,0.3603,0.6805,0.0196,0.7871 -0x12829,CUS_0x5f1b,August,31,813-35-1407,Scientist,19167.22,1786.268333,6,10,26.06745738,9,"Auto Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",27.26108998,17,19.36,12,Bad,4120.170954,24.90066608,10 Years and 11 Months,Yes,135.9630381,,Low_spent_Medium_value_payments,150.6432013,0,-0.8016,0.4713,-0.1596,1.3322,0.8834 -0x12835,CUS_0x3767,August,48,324-83-7736,Mechanic,130832.37,,4,6,11.28836175,2,"Mortgage Loan, and Debt Consolidation Loan",,12,8.99,6,Good,83.91,31.38037267,26 Years and 11 Months,No,208.3674164,657.2077835,High_spent_Medium_value_payments,905.1320112,0,-0.116,0.8434,0.5439,0.3052,1.6801 -0x12841,CUS_0xbc56,August,55,234-31-6101,Scientist,117955.38,9859.615,3,2,4.288361749,2,"Personal Loan, Home Equity Loan, and Home Equity Loan",0,1,8.28,7,Good,885.9674803,28.73272931,33 Years and 6 Months,No,229.883528,1924.274892,Low_spent_Small_value_payments,,0,-0.2432,1.0274,-0.7083,0.2415,-1.0214 -0x1284d,CUS_0x1821,August,20,045-81-4729,Teacher,15157.25,,8,10,24,5,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Personal Loan",48.5598615,27.24546592,6.01,6,Bad,1649.212642,34.15370795,5 Years and 9 Months,Yes,41.93568919,95.69219921,Low_spent_Small_value_payments,261.5825283,0,-1.1805,0.0483,-0.1553,-0.4315,2.3187 -0x12859,CUS_0x838a,August,51,925-05-6508,Developer,30373.35,2495.1125,3,5,4,3,"Mortgage Loan, Auto Loan, and Personal Loan",9.779410522,9,11.51,1,Good,791.4,31.86377886,31 Years and 9 Months,No,55.61424998,,Low_spent_Small_value_payments,236.369931,0,1.0967,-1.0961,0.9887,0.4716,1.0063 -0x12865,CUS_0x21c0,August,50,385-18-5335,Media_Manager,22084.56,,0,7,9,0,,12.69587835,12.50552345,11.24,4,Good,1408.929623,33.56795502,29 Years and 10 Months,No,0,72.60876148,Low_spent_Medium_value_payments,381.7292385,0,-0.5716,-1.3122,-0.0379,0.9157,0.6276 -0x12871,CUS_0xa9a2,August,28,230-52-2154,Media_Manager,18735.98,,6,9,20,3,"Home Equity Loan, Auto Loan, and Debt Consolidation Loan",38.75270777,27.34457207,9.54,9,_,1725.540161,27.50096292,10 Years and 0 Months,Yes,37.32814249,84.73411286,Low_spent_Medium_value_payments,335.5709113,0,0.3219,-0.4094,-1.6291,1.0462,0.1025 -0x1287d,CUS_0xa84b,August,18,447-43-9811,Manager,24278.95,,8,3,13,100,"Personal Loan, Payday Loan, Personal Loan, Payday Loan, Payday Loan, Credit-Builder Loan, and Mortgage Loan",25.09435377,17.42824215,7.63,12,Standard,1641.518925,27.81489177,19 Years and 8 Months,Yes,980,229.5263608,Low_spent_Small_value_payments,183.9621523,0,0.4884,-1.086,0.5159,0.8223,0.2828 -0x12889,CUS_0x4d03,August,27,531-69-9619,Teacher,88400.97,,3,7,19,5,"Payday Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",23.90385977,17,9.13,9,Standard,1214.05,33.3152603,11 Years and 2 Months,Yes,279.6012644,,High_spent_Medium_value_payments,471.456007,0,-0.7401,0.1116,0.0734,0.2006,-0.4091 -0x12895,CUS_0x1e8d,August,23,545-44-8112,Doctor,29146.6,,4,3,11.28836175,2,"Payday Loan, and Payday Loan",,9,2.79,7,_,179.48,34.1390338,18 Years and 4 Months,No,26.24171487,597.6874043,Low_spent_Large_value_payments,322.1966752,0,-0.4719,0.4247,1.0441,-0.268,0.3243 -0x128a1,CUS_0x7eb2,August,28,084-27-1386,Manager,155911.4,,1,5,11,3,"Credit-Builder Loan, Payday Loan, and Home Equity Loan",10.22303012,8.386941572,6.96,3,_,1007.674807,30.65507545,32 Years and 3 Months,No,370.4485213,376.630476,High_spent_Medium_value_payments,827.5826694,0,-0.0358,-0.8175,1.4187,0.6384,-0.1473 -0x128ad,CUS_0x69e5,August,24,802-17-0201,Mechanic,28578.92,,9,6,24,9,"Auto Loan, Credit-Builder Loan, Student Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Student Loan, Mortgage Loan, and Home Equity Loan",,17,21.36,11,Bad,3224.48,39.11069442,2 Years and 10 Months,Yes,202.9796297,,High_spent_Medium_value_payments,227.8538541,0,-0.4404,-0.8206,0.4814,1.2895,0.8973 -0x128b9,CUS_0x6f3e,August,25,663-61-7502,Developer,19137.3,1871.775,10,7,28.06745738,2,"Not Specified, and Home Equity Loan",,30.49899006,10.29,8,Bad,1894.096425,36.5914559,15 Years and 5 Months,Yes,29.70160665,105.1680922,High_spent_Small_value_payments,285.5875132,0,0.4153,0.2194,1.0479,-0.0909,-0.2494 -0x128c5,CUS_0x5478,August,47,029-06-3475,Teacher,22229.37,,4,106,17,3,"Personal Loan, Personal Loan, and Auto Loan",27.96327949,22.54591033,9.24,0,Standard,1210.078802,23.57624297,22 Years and 11 Months,Yes,39.47443518,30.25929884,!@9#%8,353.011016,0,-2.1913,1.0485,1.2414,0.1562,-0.3616 -0x128d1,CUS_0x4a18,August,50,343-11-4876,Media_Manager,110608.83,,6,6,18.28836175,0,Student Loan,,20,4.05,9,Standard,214.4262807,24.95394015,28 Years and 9 Months,No,68.98888573,1416.834579,Low_spent_Medium_value_payments,297.7761871,0,0.3612,0.7549,0.0768,1.0748,0.6766 -0x128dd,CUS_0x2876,August,80,177-50-6419,Lawyer,34308.05,,3,4,12,4,"Not Specified, Student Loan, Payday Loan, and Debt Consolidation Loan",,19.53947183,11.68,2,Standard,1208.840867,37.90439304,29 Years and 2 Months,Yes,74.64845745,,Low_spent_Small_value_payments,340.8424619,0,-1.0115,0.1707,1.7166,0.3993,0.1094 -0x128e9,CUS_0x3872,August,39,#F%$D@*&8,Musician,20547.59,,6,4,13,1,Auto Loan,22.87065464,17,19.46,4,Standard,942.99,31.17761268,17 Years and 9 Months,Yes,120.2458435,116.3760063,Low_spent_Small_value_payments,307.7046447,0,-0.3753,0.3083,1.1742,-0.5221,0.1512 -0x128f5,CUS_0x7a34,August,45,596-93-2081,Scientist,83083.59,6681.6325,7,6,6,4,"Student Loan, Student Loan, Payday Loan, and Payday Loan",25.09379601,18,18.12,8,Standard,1100.84,39.41084894,18 Years and 6 Months,Yes,276.8366486,168.458146,High_spent_Medium_value_payments,472.8684554,0,1.742,2.8496,-0.5756,-2.2196,0.2115 -0x12901,CUS_0x7928,August,45,984-81-3172,Media_Manager,81047.56,,1,5,4,100,"Personal Loan, Student Loan, and Student Loan",8.999104054,9,0.68,6,Good,1180.849814,32.52827479,19 Years and 11 Months,No,153.2016876,184.3733188,High_spent_Small_value_payments,599.2374062,0,-0.1561,0.7238,-0.4176,1.0493,0.6314 -0x1290d,CUS_0x9fc5,August,30,896-56-4601,Doctor,78809.88,,8,4,6,3,"Payday Loan, Personal Loan, and Student Loan",10.33393214,9,6.57,10,Standard,203.21,26.80689441,20 Years and 8 Months,Yes,61830,172.7081252,High_spent_Medium_value_payments,539.2905507,0,-0.6071,0.0468,-0.4419,0.4852,0.7053 -0x12919,CUS_0x75aa,August,25,899-15-1889,Writer,60401.4,,6,6,27,6,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Auto Loan",,31.31277429,7.06,13,Bad,2439.319966,41.92131442,19 Years and 4 Months,Yes,226.8963394,124.6278787,High_spent_Large_value_payments,404.8207818,0,0.1087,0.4069,-1.5538,1.8104,0.1496 -0x12925,CUS_0x6a9,August,18,046-17-3131,Architect,8266.92,534.91,9,9,30.06745738,9,"Payday Loan, Not Specified, Personal Loan, Personal Loan, Personal Loan, Mortgage Loan, Student Loan, Personal Loan, and Not Specified",25.84562814,15,28.88,13,_,5178.920954,30.37744011,9 Years and 3 Months,Yes,55.54806951,57.63768624,Low_spent_Small_value_payments,203.5849563,0,0.2107,-0.6218,-0.639,0.0735,0.3424 -0x12931,CUS_0xbe68,August,18,969-71-6824,_______,58726.71,5167.8925,6,7,33,6,"Not Specified, Auto Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",,25,26.96,10,Bad,3100.276659,33.92520852,4 Years and 3 Months,Yes,225.7694427,242.1045872,High_spent_Medium_value_payments,326.6190396,0,1.9103,-0.2146,0.7436,1.3638,-0.064 -0x1293d,CUS_0x4bbb,August,24,422-72-6325,Lawyer,43608.18,,7,7,23,6,"Payday Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",,20,14.05,10,Bad,1492.88,37.90400035,20 Years and 3 Months,Yes,169.542099,118.723634,High_spent_Medium_value_payments,314.835767,0,0.3852,1.0908,1.0624,-0.0028,0.881 -0x12949,CUS_0x25ae,August,30,320-44-1842,Engineer,21803.325,,5,4,5,0,,0.014206185,4,2.37,2,Good,1315.1,30.88511067,22 Years and 2 Months,No,0,200.1735476,Low_spent_Small_value_payments,266.4208274,0,-0.9265,0.308,0.1224,-0.8337,0.3179 -0x12955,CUS_0x8f35,August,25,201-78-5838,Mechanic,39052.47,3075.46491,5,4,9,2,"Student Loan, and Debt Consolidation Loan",10.56216704,11,2.65,1,Good,1175.733704,31.30741835,33 Years and 6 Months,No,46764,74.80637067,High_spent_Large_value_payments,452.719311,0,-0.0962,-0.3886,-1.663,0.8897,0.8424 -0x12961,CUS_0xa934,August,25,467-87-7518,Journalist,45765.12,3677.76,5,7,6,100,"Student Loan, Not Specified, and Student Loan",10.59404461,7,15.44,6,Standard,1133.03,32.75875751,12 Years and 8 Months,NM,80.96909368,68.81457636,High_spent_Medium_value_payments,467.99233,0,1.2625,2.1653,-1.7247,0.0392,0.6023 -0x1296d,CUS_0x2f77,August,18,892-53-8384,Mechanic,107199.66,8795.305,8,3,16.28836175,2,"Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",16.06191513,15,18.03,8,Standard,1200.93,34.48855345,,Yes,252.3002451,631.4155351,High_spent_Small_value_payments,675.7521808,0,1.4219,1.2369,1.1165,0.0912,-0.0986 -0x12979,CUS_0x3119,August,25,761-32-7533,Developer,37346.16,3028.18,0,5,7,1,Credit-Builder Loan,6.76468181,7,11.2,1,_,1276.04,38.66572901,18 Years and 4 Months,No,15366,146.0115379,High_spent_Small_value_payments,398.6279039,0,-1.1609,-1.1719,-1.5972,-0.2488,-1.6068 -0x12985,CUS_0x1a00,August,30,407-05-1951,Manager,13590.595,,8,5,9,3,"Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",11.91185104,12,10.79,2,Good,157.1047766,34.84173304,29 Years and 3 Months,No,18.16813417,47.53237278,High_spent_Small_value_payments,328.3274176,0,-0.2948,0.944,0.8322,1.1469,0.077 -0x12991,CUS_0x51a1,August,46,959-74-6872,Entrepreneur,63306.54,5260.545,4,5,19,3,"Student Loan, Mortgage Loan, and Student Loan",,9,1.09,7,Standard,1203.19,38.89702649,28 Years and 4 Months,No,85.61112477,173.0854249,High_spent_Medium_value_payments,517.3579504,0,1.3176,-0.4348,-0.2121,2.1906,0.7841 -0x1299d,CUS_0x45de,August,33,331-45-2626,Engineer,112287.88,9168.323333,4,3,11.28836175,4,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",,4,4.43,3,_,612.1067501,35.35734753,,No,271.7979982,996.1236652,Low_spent_Large_value_payments,413.8786693,0,0.2785,-1.3512,0.2318,2.5271,1.7879 -0x129a9,CUS_0x961f,August,44,206-62-4836,Writer,13838.18,,5,4,15,6,"Student Loan, Not Specified, Not Specified, Payday Loan, Student Loan, and Debt Consolidation Loan",,16,9.6,7,_,1381.32,23.09916475,18 Years and 6 Months,Yes,51.98653037,,Low_spent_Small_value_payments,325.6234314,0,0.2503,0.022,1.8009,1.1573,-0.155 -0x129b5,CUS_0xbd0b,August,36,266-16-4841,Musician,17553.22,1343.768333,9,5,22,2,"Personal Loan, and Payday Loan",26.57928141,19.01728906,9.45,6,_,2511.867697,27.73877986,11 Years and 6 Months,Yes,21.0713294,15.93123892,High_spent_Medium_value_payments,347.374265,0,-0.0254,-0.3451,0.1596,0.7709,0.8078 -0x129c1,CUS_0x42ec,August,50,#F%$D@*&8,Accountant,115556.37,,1,3,5.288361749,4,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",6.79706027,8,10.83,6,Good,993.9631027,40.13760399,21 Years and 11 Months,No,222.0734835,718.4860548,Low_spent_Large_value_payments,747.9231719,0,-1.0481,-0.9373,1.0833,-0.8702,0.3532 -0x129cd,CUS_0x269a,August,41,530-21-7776,Scientist,131865,11158.75,5,7,8,3,"Home Equity Loan, Auto Loan, and Auto Loan",,10,10.65,1,Good,602.02,40.68632916,,NM,189.2079091,209.3176351,High_spent_Large_value_payments,957.3494558,0,0.9281,-0.9316,1.4405,-1.2463,-1.224 -0x129d9,CUS_0x48ac,August,21,600-27-5779,Manager,20474.14,,7,1104,33.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Student Loan, Personal Loan, and Personal Loan",47.10056147,28.28756252,8.58,6,Bad,2682.646755,33.3071494,19 Years and 8 Months,Yes,37627,,Low_spent_Small_value_payments,211.5428194,0,0.0243,-1.1317,1.5393,0.2127,0.2689 -0x129e5,CUS_0x5a54,August,46,396-95-2155,Manager,54758.55,,8,8,27.88954781,6,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",33.84753076,24.28393106,29.9,16,Bad,3441.284693,34.79381741,,Yes,1539.819014,72.62368672,High_spent_Medium_value_payments,416.2484682,0,-1.3511,0.1965,0.4012,-0.8123,0.3563 -0x129f1,CUS_0x1cbe,August,25,714-48-4921,Entrepreneur,59807.61,4976.9675,10,10,30.88954781,9,"Credit-Builder Loan, Mortgage Loan, Student Loan, Auto Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Home Equity Loan, and Not Specified",,,20,11,Bad,3126.29,22.49793557,8 Years and 2 Months,Yes,1766.25,466.8350085,!@9#%8,,0,1.9867,1.2329,-0.0277,0.6655,-0.5908 -0x129fd,CUS_0x9fce,August,35,369-67-4232,Lawyer,38444.52,2975.71,0,4,6,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",3.777226368,6.761842661,11.24,6,_,1088.061976,32.74966365,24 Years and 2 Months,NM,67.74489257,204.0763259,Low_spent_Medium_value_payments,305.7497815,0,-0.1764,0.5343,-1.3539,-0.2746,0.0741 -0x12a09,CUS_0x49d3,August,44,302-26-1825,Media_Manager,14266.53,,3,4,11,1,Home Equity Loan,18.63574554,,3.71,2,_,1238.04,36.46416622,21 Years and 10 Months,No,6.047543104,127.2867634,Low_spent_Small_value_payments,263.8534435,0,-0.2534,0.2305,0.1567,1.0984,0.2804 -0x12a15,CUS_0x4533,August,26,#F%$D@*&8,Mechanic,69761.43,,6,3,8,2,"Home Equity Loan, and Credit-Builder Loan",26.37743491,19,1.17,3,Standard,535.22,35.20440741,26 Years and 4 Months,No,58.41828838,82.12020315,High_spent_Large_value_payments,664.9067585,0,0.2443,-0.3571,0.5927,-0.5786,-1.0943 -0x12a21,CUS_0x7468,August,33,316-42-2610,Musician,134341.05,,1,3,9,2,"Payday Loan, and Home Equity Loan",8.157235277,8.422832181,5.86,4,Good,448.0989678,30.33733682,15 Years and 8 Months,No,186.9434011,281.8147668,High_spent_Large_value_payments,882.8505821,0,0.186,0.4354,0.6588,-0.0749,-1.2241 -0x12a2d,CUS_0xbc67,August,28,888-76-7145,Scientist,125141.22,,5,3,4,4,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",0,1,5.95,6,Good,339.4427915,40.56693082,29 Years and 4 Months,No,281.8616826,,Low_spent_Medium_value_payments,349.4614976,0,-0.9731,-0.0654,-0.2411,1.19,-0.6628 -0x12a39,CUS_0x8a39,August,19,339-94-9110,Manager,26612.6,,6,7,4613,1,Auto Loan,18.21538705,14,5.57,5,_,226.3988902,24.68479744,26 Years and 4 Months,No,21.86795408,199.6222947,Low_spent_Large_value_payments,315.8116404,0,0.8862,0.0633,-0.6431,-0.1625,2.3337 -0x12a45,CUS_0x84af,August,32,504-37-8446,Accountant,159319.92,13040.66,5,7,0.288361749,0,Not Specified,15.30025096,,1.14,3,Good,115.2919105,39.0190981,17 Years and 4 Months,No,115.3080029,600.965617,High_spent_Large_value_payments,1247.729841,0,1.5191,-0.0153,0.5044,-0.367,-1.1619 -0x12a51,CUS_0x7210,August,23,827-85-4562,Architect,13231.53,,5,5,12,5,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",22.01573047,,23.46,8,_,292.4,33.93389426,18 Years and 10 Months,NM,36.26350789,59.07515369,Low_spent_Small_value_payments,332.6240884,0,-1.8935,-0.4999,1.187,0.2686,0.5801 -0x12a5d,CUS_0x92e3,August,30,811-73-6476,Journalist,68122.46,5424.871667,4,5,3,2,"Personal Loan, and Personal Loan",0,0,9.4,2,Good,1171.17,36.3416543,27 Years and 6 Months,No,86.77836513,420.0427256,Low_spent_Small_value_payments,325.6660759,0,1.0469,-1.6113,0.3721,0.4917,0.4837 -0x12a69,CUS_0x7315,August,44,792-06-3719,_______,19337.16,,5,4,17,1,Auto Loan,21.32701177,19,5.9,5,Standard,449.37,27.54246301,19 Years and 0 Months,Yes,14.60887975,158.1309211,Low_spent_Small_value_payments,263.6031992,0,0.2997,-0.3839,0.451,-0.709,-0.7665 -0x12a75,CUS_0xc0cd,August,35,#F%$D@*&8,Engineer,14132.77,,8,8,23,5,"Personal Loan, Home Equity Loan, Student Loan, Student Loan, and Student Loan",50.20868612,27.25799418,32.56,12,_,4767.251855,26.69925647,,Yes,39.74250424,69.09196928,!@9#%8,260.6386098,0,-0.2544,-0.0835,-0.2232,1.0411,-1.5215 -0x12a81,CUS_0x5aeb,August,28,106-10-6893,Scientist,43139.76,3594.98,8,7,28.06745738,7,"Not Specified, Debt Consolidation Loan, Mortgage Loan, Personal Loan, Personal Loan, Student Loan, and Student Loan",,19.6539518,2.41,12,Bad,3010.915176,31.16619982,17 Years and 10 Months,Yes,169.8761638,331.8297402,Low_spent_Small_value_payments,121.071808,0,0.8337,-2.0649,1.1528,-1.3551,0.6412 -0x12a8d,CUS_0x1e91,August,49,360-54-9119,Media_Manager,70793.38,6103.448333,5,3,8,1,Credit-Builder Loan,24.85653183,18,9.68,7,_,138.21,26.70634055,21 Years and 3 Months,No,51.12551143,415.2197852,Low_spent_Medium_value_payments,423.9995367,0,0.2419,0.3628,-0.4419,0.8816,-1.3686 -0x12a99,CUS_0xc5d1,August,43,028-44-3271,Developer,33029.66,2766.471667,8,10,19.06745738,4,"Student Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",33.52327384,17.86063314,12.66,16,_,2517.083414,23.69950343,17 Years and 4 Months,Yes,76.87655995,93.44631347,Low_spent_Large_value_payments,349.6040053,0,0.2277,1.247,0.0853,-0.2249,-0.6976 -0x12aa5,CUS_0x43bc,August,36,307-06-8196,Lawyer,22312.07,,1,3,4,3,"Home Equity Loan, Debt Consolidation Loan, and Student Loan",7.706449279,8,9.04,3,Good,46.60453515,30.05921059,23 Years and 10 Months,No,32.89118637,26.67918629,High_spent_Medium_value_payments,395.4396368,0,0.2871,-1.3369,0.0779,1.7937,-2.8222 -0x12ab1,CUS_0x2999,August,38,945-07-8144,Mechanic,9530.69,,8,7,27.06745738,3,"Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",,17.06801496,16.02,10,_,1864.982091,35.63051899,12 Years and 2 Months,Yes,12.02629967,38.8254681,Low_spent_Medium_value_payments,290.750361,0,1.2349,0.9514,0.1496,-1.7083,2.1359 -0x12abd,CUS_0x65ca,August,48,880-92-1122,Manager,116396.67,9501.7225,0,4,6.288361749,2,"Personal Loan, Auto Loan, and Credit-Builder Loan",1.402621622,5,0.65,1,Good,885.57255,29.68955898,18 Years and 6 Months,No,229.4914065,633.7175791,High_spent_Large_value_payments,773.5164699,0,-0.3618,1.0139,-0.5821,1.1681,0.4398 -0x12ac9,CUS_0x70c5,August,36,331-56-7473,_______,38978.06,,6,7,11,3,"Credit-Builder Loan, Student Loan, and Student Loan",14.3488618,8,10.53,1,Standard,894.15,36.79513703,33 Years and 0 Months,No,79.45093121,271.4832897,Low_spent_Small_value_payments,269.6829458,0,-0.5132,1.248,-0.1266,2.3386,1.8419 -0x12ad5,CUS_0x446,August,44,767-35-3133,Architect,17327.28,,6,6,20,100,"Mortgage Loan, Personal Loan, Personal Loan, Mortgage Loan, Auto Loan, Personal Loan, and Auto Loan",,20.40917881,18.3,13,Bad,2523.486371,39.29868163,15 Years and 9 Months,Yes,55.43849807,153.6810477,!@9#%8,252.5744542,0,1.8738,-0.5232,-0.5995,-1.3391,0.6124 -0x12ae1,CUS_0x7528,August,37,932-59-3463,Engineer,57459.36,4839.28,8,7,15,5,"Home Equity Loan, Auto Loan, Personal Loan, Not Specified, and Payday Loan",17.23927921,17,18.18,11,_,2124.47,38.03791239,9 Years and 6 Months,Yes,222.1668798,168.6407984,High_spent_Medium_value_payments,343.1203218,0,-0.0587,0.1078,-0.401,0.6259,1.4079 -0x12aed,CUS_0x13bc,August,23,934-82-6083,Engineer,10885.15,611.0958333,5,5,5,1,Debt Consolidation Loan,,15,9,4,Standard,246.22,34.03570758,14 Years and 10 Months,Yes,6.606517983,36.64036734,Low_spent_Small_value_payments,307.862698,0,-0.579,0.1591,-0.254,-0.0715,-0.7878 -0x12af9,CUS_0x4b9c,August,44,634-49-7631,Writer,51676.26,4455.355,8,8,26.95700519,9,"Not Specified, Mortgage Loan, Student Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",35.57292452,23,21.44,7,_,3476.890954,28.45826559,7 Years and 2 Months,Yes,1631.927746,52.45168758,High_spent_Large_value_payments,280.1056973,0,0.7439,0.387,0.186,2.382,1.1394 -0x12b05,CUS_0x6d71,August,24,117-40-9536,Manager,58452.18,4676.015,3,5,2,0,,3.212650918,4.76746426,10.83,5,Good,1616.96621,36.7283882,17 Years and 11 Months,No,0,47.91748913,High_spent_Large_value_payments,659.6840109,0,-2.0762,1.3829,-0.8854,-0.9844,-0.4962 -0x12b11,CUS_0xdc1,August,54,202-07-3535,Journalist,28893.09,2295.7575,4,1,11,0,,,2,4.98,1,Good,224.36,38.9425863,22 Years and 6 Months,No,0,85.71733143,High_spent_Small_value_payments,403.8584186,0,-0.364,-0.414,-1.8514,-0.3516,-0.8575 -0x12b1d,CUS_0x1a4a,August,41,759-42-2499,Developer,12162.055,,5,7,13,3,"Auto Loan, Home Equity Loan, and Payday Loan",,11,10.84,4,Standard,1179.95,37.26939182,30 Years and 10 Months,Yes,27.80687832,10.35874106,High_spent_Large_value_payments,282.3848389,0,1.0168,-0.2525,-0.4294,-0.2676,-1.3815 -0x12b29,CUS_0xb443,August,21,151-39-2232,Doctor,147819.96,12452.33,3,5,14.28836175,2,"Payday Loan, and Debt Consolidation Loan",16.79445532,15,9.68,4,Standard,1205.02,26.27206849,27 Years and 5 Months,No,224.631416,,Low_spent_Medium_value_payments,33.72368794,0,1.6056,-0.3325,0.2048,-0.2352,0.2764 -0x12b35,CUS_0xa9a,August,41,809-65-2502,Mechanic,124106.04,9659.357841,2,3,4140,3,"Personal Loan, Payday Loan, and Home Equity Loan",2.588664369,4,4.28,5,Good,889.46,22.97000571,29 Years and 4 Months,NM,1200.655567,1336.556501,Low_spent_Small_value_payments,,0,0.0761,0.6204,0.952,0.5967,0.6714 -0x12b41,CUS_0xd50,August,41,943-43-6814,Entrepreneur,43771.85,,4,3,9,1,Student Loan,0,1,3.78,1,Good,1166.214914,37.22730816,25 Years and 9 Months,No,29.64887881,51.10485499,High_spent_Large_value_payments,525.2299651,0,-2.0615,1.7509,-0.8285,0.8595,-1.8352 -0x12b4d,CUS_0x5883,August,35,757-65-2556,Accountant,37898.34,3244.195,8,7,24,100,"Not Specified, Debt Consolidation Loan, and Payday Loan",13.90347019,10.7893187,9.97,11,Standard,2773.823918,24.01711386,13 Years and 11 Months,Yes,49.67038871,118.6333837,High_spent_Medium_value_payments,406.1157276,0,-0.1163,-0.2031,-0.011,0.1876,-0.3501 -0x12b59,CUS_0xa40d,August,56,973-89-7112,Doctor,22133.01,1583.4175,5,6,5,0,,,8,5.64,6,Standard,965.751412,29.60204108,19 Years and 9 Months,No,0,126.8903617,!@9#%8,318.1994568,0,-0.0513,0.7052,-1.0981,-0.9113,0.5006 -0x12b65,CUS_0x330a,August,41,936-92-2913,Entrepreneur,22225113,3798.6925,6,9,28,4,"Auto Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",44.92021317,26.75444666,5.91,12,Bad,2205.83487,32.07725977,10 Years and 9 Months,Yes,80.11142371,212.565401,Low_spent_Medium_value_payments,367.1924253,0,-0.283,-0.8862,0.799,0.4635,1.4216 -0x12b71,CUS_0xb4c3,August,36,577-67-1646,Doctor,31341.98,,8,9,33.88954781,9,"Mortgage Loan, Home Equity Loan, Student Loan, Payday Loan, Not Specified, Not Specified, Student Loan, Not Specified, and Home Equity Loan",35.78573709,26.75626397,3.72,14,Bad,4905.13801,25.19862013,3 Years and 2 Months,Yes,1536.60077,,Low_spent_Medium_value_payments,95.15240897,0,-0.2282,-0.3625,-0.6971,-0.2529,0.0612 -0x12b7d,CUS_0x56d6,August,37,349-72-1106,Journalist,17943.885,,4,3,7.067457376,3,"Payday Loan, Payday Loan, and Student Loan",27.78993052,19,10.55,10,Standard,1714.230954,32.505394,17 Years and 8 Months,Yes,35.30356913,61.20524031,Low_spent_Small_value_payments,321.6032776,0,0.8182,0.5866,-0.2465,-0.4279,-0.5003 -0x12b89,CUS_0x174b,August,30,942-42-9612,Writer,22709.37,2115.4475,6,5,19,2,"Personal Loan, and Debt Consolidation Loan",,11,17.62,8,Standard,412.53,35.8012918,26 Years and 8 Months,Yes,77114,99.74583122,Low_spent_Medium_value_payments,366.3601387,0,-0.2798,2.18,1.1093,0.4056,-3.6686 -0x12b95,CUS_0x2703,August,38,188-67-4231,Doctor,18661.91,1305.159167,6,6,27,8,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Personal Loan, and Not Specified",,30.26194795,15.81,14,Bad,5207.298715,25.79284332,11 Years and 0 Months,Yes,65.31669776,10000,Low_spent_Small_value_payments,268.5375734,0,-0.5361,0.5357,0.4816,0.1853,-1.3448 -0x12ba1,CUS_0x837e,August,27,363-22-9894,Teacher,22846.31,2166.859167,7,3,5,3,"Home Equity Loan, Auto Loan, and Not Specified",,9,19.12,623,_,1374.76,33.75054711,21 Years and 6 Months,Yes,44.81412898,95.46549925,High_spent_Small_value_payments,336.4062884,0,0.5587,1.0377,1.2214,-0.6365,-0.2876 -0x12bad,CUS_0x993a,August,26,054-60-4996,Architect,26649.48,2040.79,4,6,4,4,"Mortgage Loan, Auto Loan, Personal Loan, and Student Loan",,20,7.49,7,_,496.59,28.32474296,24 Years and 2 Months,No,73.10945321,134.1424797,High_spent_Small_value_payments,256.8270671,0,0.7152,1.1231,1.4047,0.6558,1.4595 -0x12bb9,CUS_0x46ef,August,30,867-02-2158,Accountant,9765.685,,5,7,17,4,"Debt Consolidation Loan, Mortgage Loan, Not Specified, and Mortgage Loan",26.87533308,18,10.47,4,Standard,989.35,38.03076174,27 Years and 9 Months,No,25.14704537,40.62031855,Low_spent_Small_value_payments,282.2133444,0,0.0631,0.494,-1.614,0.8254,0.1493 -0x12bc5,CUS_0x4abd,August,21,618-82-4410,_______,94465.32,,3,7,7,100,"Mortgage Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",18.41223495,14,6.57,3,Standard,522.8299562,25.52806434,30 Years and 9 Months,No,181.0340988,708.3811276,!@9#%8,273.0442215,0,1.5728,-1.5568,1.6341,0.0478,0.1457 -0x12bd1,CUS_0x432e,August,20,581-64-0161,Engineer,29489.63,,485,4,5,0,,7.393679653,10,3.79,5,_,428.2796955,39.5713051,21 Years and 10 Months,No,0,78.29616723,High_spent_Medium_value_payments,447.6035258,0,0.2891,-1.5032,-0.7642,0.587,0.9272 -0x12bdd,CUS_0x7281,August,18,840-14-9434,Architect,54553.59,4547.1325,7,5,22,8,"Payday Loan, Home Equity Loan, Payday Loan, Payday Loan, Not Specified, Auto Loan, Payday Loan, and Debt Consolidation Loan",36.7816345,24.4520404,14.89,12,Bad,5709.22194,30.73906476,9 Years and 8 Months,Yes,239.1367342,90.0214798,High_spent_Large_value_payments,365.555036,0,-2.1846,0.4606,-2.2001,1.0092,1.0128 -0x12be9,CUS_0x2491,August,30,202-92-7576,Entrepreneur,17569.87,,7,3,19,6,"Auto Loan, Mortgage Loan, Not Specified, Payday Loan, Student Loan, and Credit-Builder Loan",21.12824372,,14.21,12,Standard,1780.040386,26.44812875,10 Years and 2 Months,Yes,45.64725997,61.64103505,Low_spent_Small_value_payments,304.3272883,0,0.3487,-0.0378,-0.1057,-0.135,0.6541 -0x12bf5,CUS_0xa780,August,26,683-63-4431,Musician,118124.48,9559.706667,3,3,5,1,Student Loan,17.07697098,13,3.79,4,Good,86.51,31.44326686,17 Years and 11 Months,No,73.26054843,970.0948022,Low_spent_Medium_value_payments,192.615316,0,-0.757,-1.2156,-0.0036,0.3326,1.032 -0x12c01,CUS_0x729,August,80,716-07-7072,Manager,15648.85,,7,7,24.06745738,7,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Auto Loan",,29.73978222,4.64,10,Bad,4291.672505,33.76863054,5 Years and 4 Months,Yes,67.85705168,62.03305425,Low_spent_Small_value_payments,274.6966895,0,-1.9985,-1.6276,2.4054,-0.4828,1.0346 -0x12c0d,CUS_0x1458,August,80,222-55-6808,Developer,28127.13,2579.9275,6,5,11,1,Credit-Builder Loan,16.00327856,14,15,,_,1187.43,28.88577424,26 Years and 11 Months,Yes,17.03134464,162.6597982,Low_spent_Large_value_payments,348.3016071,0,-1.3507,-1.1133,-0.3224,1.3271,-0.0892 -0x12c19,CUS_0x2eb3,August,18,076-61-7709,Accountant,28876.41,,8,4,6,4,"Not Specified, Student Loan, Mortgage Loan, and Home Equity Loan",14.44803138,11,16.19,8,Standard,812.5,29.14662497,8 Years and 5 Months,Yes,50.29382155,31.9470137,High_spent_Medium_value_payments,435.9959147,0,-0.7141,0.072,-0.8699,-0.554,-1.9314 -0x12c25,CUS_0x92d6,August,31,914-52-5784,Accountant,17583.65,1177.304167,6,10,26.06745738,3,"Debt Consolidation Loan, Personal Loan, and Home Equity Loan",42.72147587,22.88407797,13.3,17,Standard,2504.210876,37.16016067,18 Years and 8 Months,Yes,26.79540287,,Low_spent_Small_value_payments,308.2298634,0,0.6646,0.9928,-0.5569,-0.5711,0.0431 -0x12c31,CUS_0x2a12,August,21,087-87-0131,Scientist,16038.68,1538.556667,3,4,15,0,,15.34644934,14,11.12,7,Standard,984.67,32.2965504,19 Years and 0 Months,No,0,109.8473622,Low_spent_Small_value_payments,334.0083044,0,-0.8478,0.1328,1.161,-0.2333,1.465 -0x12c3d,CUS_0x4695,August,22,486-94-2198,Writer,11980.385,,5,3,18,3,"Home Equity Loan, Credit-Builder Loan, and Personal Loan",26.59848701,18,17.4,10,Standard,29.81,35.48212631,,Yes,26.26588735,49.33750387,Low_spent_Medium_value_payments,307.4331505,0,0.7402,-1.2743,-1.0466,0.9556,-1.2561 -0x12c49,CUS_0xae34,August,23,395-84-0690,Architect,33470.66,2562.221667,6,3,7,4,"Credit-Builder Loan, Auto Loan, Home Equity Loan, and Not Specified",15.40014467,9,12.98,0,_,1423.22,30.51969173,20 Years and 0 Months,Yes,99.31719754,67.59604898,High_spent_Medium_value_payments,339.3089201,0,0.9479,1.3089,0.2422,0.3217,-0.3673 -0x12c55,CUS_0x5d4f,August,40,#F%$D@*&8,Architect,110398.14,9007.845,4,3,10.28836175,2,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",1.889211908,5,7.65,4,_,831.1557783,30.93409657,30 Years and 0 Months,No,167.2947882,630.6689057,High_spent_Large_value_payments,784.6490843,0,0.2015,-0.5269,-0.8266,0.5822,-0.5157 -0x12c61,CUS_0x245e,August,44,480-30-7979,Musician,31081.62,,7,7,23.06745738,9,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Student Loan, Credit-Builder Loan, Personal Loan, and Payday Loan",39.57662788,23,,12,_,2797.950954,34.97852873,13 Years and 6 Months,Yes,230.8309149,,Low_spent_Small_value_payments,31.50797865,0,0.3806,0.591,-0.6862,-0.676,-0.3432 -0x12c6d,CUS_0x4fb8,August,27,166-21-7041,Musician,31795.08,2320.594711,10,5,23,7,"Payday Loan, Auto Loan, Payday Loan, Not Specified, Not Specified, Student Loan, and Not Specified",29.72579585,18.96509496,6.05,11,Bad,2292.744188,32.52943068,8 Years and 5 Months,Yes,360.7688776,136.3924237,Low_spent_Medium_value_payments,228.2929877,0,2.2783,-0.5337,-0.5788,-0.4819,0.4425 -0x12c79,CUS_0x932a,August,30,519-83-5940,Writer,18431.53,,6,8,27.95700519,7,"Personal Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Payday Loan",,25.05087052,26.5,10,Bad,5557.733745,34.08124864,,NM,1390.237362,50.87932497,Low_spent_Medium_value_payments,258.0290273,0,-0.2802,1.8794,0.4609,-0.2606,0.1548 -0x12c85,CUS_0x9978,August,28,704-69-3409,Accountant,38305.28,3273.106667,7,5,15,5,"Credit-Builder Loan, Not Specified, Student Loan, Student Loan, and Not Specified",32.56891018,25.1379964,4.75,12,_,1875.195164,33.29740897,6 Years and 2 Months,Yes,151.9368597,133.4678532,Low_spent_Small_value_payments,331.9059537,0,-0.1034,0.0785,0.4802,-0.138,0.0824 -0x12c91,CUS_0xea5,August,28,196-98-4126,_______,71169.3,,2,4,4.288361749,4,"Auto Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",0,1,5.4,7,Good,741.3801594,37.20751841,,No,212.2330301,499.9988749,High_spent_Large_value_payments,573.4091545,0,-1.9844,-0.912,0.2143,-1.0736,-0.0099 -0x12c9d,CUS_0x3610,August,80,908-07-4890,Mechanic,7371.66,521.305,10,9,25,2,"Mortgage Loan, and Not Specified",,13,25.33,11,Standard,2276.26,26.48243005,18 Years and 11 Months,Yes,8.740465075,32.24313369,Low_spent_Small_value_payments,301.1469012,0,-1.5621,0.1137,0.6466,0.1268,-0.4274 -0x12ca9,CUS_0x38b4,August,45,050-41-8827,Accountant,56831.7,,10,7,23,2,"Debt Consolidation Loan, and Debt Consolidation Loan",36.59384837,19,7.82,12,Bad,2551.01,29.52795479,17 Years and 0 Months,Yes,56.70861052,123.9041356,High_spent_Large_value_payments,551.3847539,0,1.6121,-0.8017,-0.6914,0.738,-0.7256 -0x12cb5,CUS_0x8cb5,August,26,272-98-1671,Mechanic,21719.9,2016.991667,5,5,11,0,,14.45372348,10.93263565,7.73,3,Good,620.8718203,32.5781356,23 Years and 3 Months,No,0,114.792346,Low_spent_Small_value_payments,376.9068206,0,-2.0135,0.0384,-0.7635,0.3816,-0.8738 -0x12cc1,CUS_0x6ecf,August,18,644-77-4350,Engineer,118042.88,9823.906667,6,3,9,1,Debt Consolidation Loan,14.21004526,10,1.09,0,_,1476.36,34.34716412,17 Years and 11 Months,Yes,56.10129554,554.2617411,Low_spent_Medium_value_payments,652.02763,0,0.1045,-1.3694,-1.3965,0.4925,-0.9532 -0x12ccd,CUS_0x8854,August,46,761-81-1588,Teacher,15655612,,10,5,22,100,"Auto Loan, Not Specified, Auto Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,2138,7.66,14,Bad,1709.48,34.94454586,15 Years and 2 Months,Yes,83.93550477,49.02025546,Low_spent_Large_value_payments,270.8662883,0,-0.464,1.5005,0.4153,0.2393,0.4437 -0x12cd9,CUS_0x4e01,August,38,475-46-3247,_______,39014.5,3456.208333,4,7,5,0,,20.30854027,14.1388206,4.54,0,Good,1472.953763,27.93870606,15 Years and 9 Months,NM,0,231.6390084,Low_spent_Small_value_payments,403.981825,0,-0.4747,0.5787,-0.5035,0.3525,2.076 -0x12ce5,CUS_0x14b4,August,36,377-94-2974,Engineer,32473,2797.083333,4,5,6,0,,0.374340591,2,8.57,3,Good,509.8754398,33.71658304,,No,0,,High_spent_Small_value_payments,452.0122599,0,-0.0992,-0.5067,0.4458,-0.6861,0.7669 -0x12cf1,CUS_0x8d77,August,44,607-34-4092,Scientist,80370.32,6856.526667,8,7,17,100,,,6,12.36,4,Standard,1135.98,28.7429713,27 Years and 10 Months,Yes,0,189.2370623,High_spent_Small_value_payments,756.4156044,0,-0.5963,0.0427,0.6736,0.2564,-0.313 -0x12cfd,CUS_0x4da9,August,80,857-57-9621,Media_Manager,76448.44,6134.703333,6,5,17,3,"Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,9.481749362,9.37,,Standard,2242.554751,28.6028569,11 Years and 8 Months,Yes,141.2967147,,Low_spent_Small_value_payments,348.4174692,0,-0.2052,0.2158,-0.4769,0.3995,0.0606 -0x12d09,CUS_0x8f7e,August,32,235-01-7131,Scientist,35589.97,,4,6,14,4,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",12.93301802,13.04854356,19.4,8,Standard,1653.927602,29.10107462,14 Years and 10 Months,Yes,98.23221001,165.870386,!@9#%8,305.3804874,0,-0.5602,1.2768,0.2534,-0.5569,0.0306 -0x12d15,CUS_0xb7a4,August,35,486-84-2079,Journalist,33470.43,,7,5,10,1,Not Specified,14.12696024,13,15.22,8,Standard,1189.361169,26.58774236,26 Years and 0 Months,Yes,6535,,High_spent_Large_value_payments,451.6671382,0,0.3309,0.8742,0.3424,-1.0332,1.4785 -0x12d21,CUS_0xb15e,August,26,979-26-9525,Mechanic,123050.2,,3,3,7,3,"Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,11,2.36,0,Good,512.24,35.83020372,29 Years and 4 Months,No,180.1891692,414.3245423,!@9#%8,683.3046219,0,0.189,-0.1631,0.6126,0.8108,0.0752 -0x12d2d,CUS_0x12be,August,34,157-93-9714,Engineer,15717.275,,1,5,8,1,Credit-Builder Loan,5.56476648,8,7.03,1,Good,1020.27,26.46211532,31 Years and 5 Months,No,152.1814754,,Low_spent_Small_value_payments,257.7848702,0,-0.8907,-0.3335,0.4667,0.6944,-0.4593 -0x12d39,CUS_0x81e6,August,25,990-52-8222,Mechanic,22728.9,1773.075,5,3,16,3,"Auto Loan, Payday Loan, and Debt Consolidation Loan",17.81286522,10.64217622,16.27,4,Standard,965.961533,35.34153668,25 Years and 6 Months,Yes,42.19175512,189.9338112,Low_spent_Small_value_payments,235.1819337,0,1.0081,1.8001,-1.2433,-0.722,0.6677 -0x12d45,CUS_0x98cd,August,24,477-15-2157,Entrepreneur,74800,,3,1,5,4,"Credit-Builder Loan, Personal Loan, Home Equity Loan, and Payday Loan",4.285193894,7,7.73,4,Good,1015.619568,32.37290695,28 Years and 4 Months,No,244.5839725,279.7604425,High_spent_Medium_value_payments,362.0061839,0,-0.7067,0.2342,-1.5859,0.2827,1.497 -0x12d51,CUS_0x4470,August,39,622-40-1120,Mechanic,39102.56,3012.546667,9,7,24,5,"Mortgage Loan, Student Loan, Payday Loan, Student Loan, and Payday Loan",36.97467341,19,26.66,,Bad,3953.52,38.42357174,5 Years and 11 Months,Yes,135.0534302,,Low_spent_Small_value_payments,78.15999775,0,0.3407,-0.4423,0.0161,-1.184,-0.6626 -0x12d5d,CUS_0x20ba,August,41,595-90-1107,Manager,8135.855,,7,7,18.06745738,9,"Payday Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",44.4722459,24,21.15,8,Bad,4807.890954,40.64367529,7 Years and 2 Months,Yes,42.98980179,14.19335223,Low_spent_Large_value_payments,234.7953497,0,0.9782,1.4781,1.2505,1.8038,0.9421 -0x12d69,CUS_0x7354,August,51,904-08-9318,Manager,24749.2,,4,4,19,1,Not Specified,,10,2.41,9,Standard,1188.44,36.82838748,33 Years and 6 Months,No,12.42847184,143.154464,Low_spent_Small_value_payments,348.6603975,0,2.2028,2.7746,-0.7718,0.7386,-0.7995 -0x12d75,CUS_0x8d02,August,28,109-54-0844,Entrepreneur,29453.84,,7,5,11.28836175,4,"Not Specified, Payday Loan, Mortgage Loan, Home Equity Loan, and Auto Loan",,23.16859918,19.45,10,_,285.5019736,24.32278072,,NM,86.0863079,460.5245068,High_spent_Medium_value_payments,346.075313,0,0.5404,0.03,0.6104,-1.3537,0.0704 -0x12d81,CUS_0x55d9,August,28,#F%$D@*&8,_______,15701.525,,7,7,1,4,"Student Loan, Home Equity Loan, Student Loan, and Mortgage Loan",25.72881704,20.75418612,3.83,3,Good,1059.83793,39.32144276,32 Years and 2 Months,NM,50.3964188,10000,Low_spent_Medium_value_payments,307.7901821,0,0.218,0.7146,-0.2942,0.3886,-0.5619 -0x12d8d,CUS_0x3bd0,August,19,#F%$D@*&8,Entrepreneur,43592.1,3776.675,9,10,29.06745738,9,"Personal Loan, Not Specified, Student Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",29.77469163,19.22949425,23.28,12,Bad,3292.49132,39.88204379,4 Years and 5 Months,Yes,243.6995779,46.61921607,High_spent_Large_value_payments,300.6284181,0,0.0755,-0.5266,1.3622,-0.7457,-1.7766 -0x12d99,CUS_0x19fc,August,31,502-11-8830,Teacher,18390.3,,10,10,26.88954781,6,"Not Specified, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",32.90137607,19,24.89,10,Bad,3383.55,39.39272035,0 Years and 11 Months,Yes,1375.9055,69.12230588,Low_spent_Medium_value_payments,303.2946127,0,0.1502,-0.6862,1.0311,-2.2347,0.6358 -0x12da5,CUS_0xbe20,August,80,317-36-6374,Teacher,30162.35,2501.529167,5,7,16,4,"Mortgage Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",15.46605521,11,4.26,3,Standard,1278.35,37.00379201,25 Years and 11 Months,No,76.36269393,,High_spent_Small_value_payments,380.4825793,0,0.3797,0.2408,0.0215,-1.043,0.8997 -0x12db1,CUS_0x9319,August,30,144-38-5024,Writer,52046.28,,8,4,13,3,"Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",,18,,251,Standard,2314.66,22.88103393,6 Years and 5 Months,Yes,88.50752115,281.2414518,Low_spent_Small_value_payments,326.9700271,0,1.3663,-0.5266,0.11,0.743,0.6004 -0x12dbd,CUS_0x4adc,August,36,392-99-5218,Writer,20295.67,1474.8599,10,6,18.06745738,8,"Mortgage Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",35.93033094,19.28920509,-2.56,16,_,2608.013857,33.54564225,20 Years and 6 Months,Yes,131.5470951,,Low_spent_Medium_value_payments,204.0278329,0,0.3827,0.7793,1.6262,-0.005,1.0513 -0x12dc9,CUS_0x456f,August,25,013-63-3900,Writer,41694.36,,1,7,5,3,"Mortgage Loan, Student Loan, and Not Specified",0,2.275701963,10.15,3,Good,621.3990235,31.45278953,25 Years and 0 Months,No,84.47066365,86.67790143,High_spent_Medium_value_payments,438.4044349,0,-1.2122,0.3646,1.3321,-0.8645,1.2257 -0x12dd5,CUS_0x150d,August,38,868-87-6401,Writer,40085.46,3455.455,6,6,19.06745738,5,"Auto Loan, Student Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",29.99216777,14.61610038,8.97,12,Bad,2765.379966,25.68472212,18 Years and 11 Months,Yes,142.1126209,215.5387115,Low_spent_Small_value_payments,251.1738797,0,-0.3222,-2.1093,-0.1222,0.2702,-0.1906 -0x12de1,CUS_0xb337,August,38,368-00-3868,Manager,9917.025,,5,6,17,2,"Debt Consolidation Loan, and Mortgage Loan",21.87448289,17,13.96,8,Standard,1065.19,33.13058037,,Yes,14.19905763,57.36354395,Low_spent_Large_value_payments,308.3792734,0,-0.5311,-1.2942,-0.5548,0.9276,0.2709 -0x12ded,CUS_0x334d,August,23,609-56-6241,Entrepreneur,99237.75,8288.8125,4,7,10,3,"Auto Loan, Mortgage Loan, and Payday Loan",9.678781311,10,0.52,4,Good,1317.42,27.87812932,16 Years and 10 Months,No,214.607132,,High_spent_Medium_value_payments,604.4574495,0,0.9579,1.0912,0.6061,-0.6902,-0.6852 -0x12df9,CUS_0x90d8,August,44,#F%$D@*&8,Engineer,67930.88,5729.906667,5,4,25,7,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",15.85563676,11,11.28,,Standard,2486.49,38.86120982,9 Years and 2 Months,NM,379.6037902,,High_spent_Medium_value_payments,219.0969912,0,0.1438,-0.1501,0.6086,-0.6276,-1.6393 -0x12e05,CUS_0x884a,August,32,075-08-4605,Teacher,36707.7,3052.975,5,5,19,100,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",26.93152006,20,10.03,7,Standard,1867.79,31.90049751,11 Years and 11 Months,Yes,130.6361346,149.2546354,High_spent_Small_value_payments,285.40673,0,1.0513,-0.3362,-0.2799,-0.2984,-0.072 -0x12e11,CUS_0x4c87,August,51,671-87-7765,Musician,40428.66,,3,5,6,0,,16.65669064,13.89252715,6.66,,Standard,79.63744365,28.39428087,,No,0,224.0641024,Low_spent_Large_value_payments,401.2413976,0,1.4197,-1.9183,-0.2474,-0.757,-0.8831 -0x12e1d,CUS_0xc066,August,26,541-80-8668,Scientist,11451837,3323.63,6,3,20,0,,17.76800014,13,12.38,5,Standard,1001.61,37.28791055,28 Years and 4 Months,Yes,0,410.7808319,Low_spent_Small_value_payments,211.5821681,0,-1.0673,-1.8875,1.6671,-0.6005,1.0414 -0x12e29,CUS_0x5ecb,August,34,356-75-9183,Doctor,9015.625,1019.302083,6,6,19,9,"Not Specified, Payday Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, and Student Loan",,21.90551973,14.38,11,Bad,4181.083448,35.19254107,5 Years and 4 Months,Yes,62.15654999,,Low_spent_Small_value_payments,198.9223325,0,1.5065,-1.0785,-0.5371,-1.1728,-0.9982 -0x12e35,CUS_0x51c9,August,29,640-03-4819,Lawyer,105565.71,8813.1425,7,3,6.288361749,0,,21.73147637,18,13.63,9,_,881.4917937,35.73733436,,Yes,0,614.3853603,High_spent_Large_value_payments,955.2685732,0,0.5016,0.585,2.0537,0.426,0.3779 -0x12e41,CUS_0x42a,August,18,033-52-4312,Lawyer,64923.04,,8,3,4.288361749,2,"Personal Loan, Mortgage Loan, and Auto Loan",17.66293418,15,7.7,6,Standard,370.4,27.34886447,31 Years and 2 Months,Yes,156.6040855,,Low_spent_Small_value_payments,192.9905708,0,0.1911,-0.3898,0.1538,0.0568,0.9066 -0x12e4d,CUS_0xbc04,August,22,#F%$D@*&8,Entrepreneur,70361.76,,4,6,18,4,"Mortgage Loan, Student Loan, Personal Loan, and Home Equity Loan",,18,17.48,7,Standard,2171.51,27.44980182,,Yes,132.0605839,491.0179275,Low_spent_Small_value_payments,232.6694886,0,-0.0901,-0.3458,-0.6653,-0.3621,-1.2481 -0x12e59,CUS_0x509e,August,28,304-30-4564,Writer,16105.04,,10,6,24,9,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Student Loan, Student Loan, Student Loan, Payday Loan, and Personal Loan",24.35315607,16.90261598,15.82,12,Bad,3737.7411,27.12715349,9 Years and 0 Months,Yes,68.23494503,160.8494795,Low_spent_Small_value_payments,217.1242422,0,1.2582,1.2743,-1.0232,0.418,-0.6589 -0x12e65,CUS_0xbd90,August,48,500-94-1740,Lawyer,19749.315,1635.77625,0,6,8,2,"Payday Loan, and Not Specified",,,8.68,2,Good,1286.51,36.000086,24 Years and 0 Months,No,17.84950017,89.77687794,High_spent_Small_value_payments,315.9512469,0,-0.5481,0.3508,1.5875,-1.7799,0.9381 -0x12e71,CUS_0x8841,August,53,648-37-6041,Mechanic,74366.94,6380.245,0,7,1.288361749,2,"Personal Loan, Not Specified, and Payday Loan",7.704819594,10,9.61,7,_,228.9981363,37.51185674,31 Years and 6 Months,No,126.6422355,684.9813529,High_spent_Medium_value_payments,521.2728601,0,-0.8168,-0.7953,-0.4286,-0.2734,0.943 -0x12e7d,CUS_0xc40f,August,45,115-97-3102,Developer,8071.24,,7,5,22.06745738,9,"Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Personal Loan, and Personal Loan",,27.24556399,7.86,12,_,1724.485139,35.52213688,13 Years and 2 Months,Yes,45.68156231,,Low_spent_Small_value_payments,243.0643344,0,1.1096,-0.7385,-0.0294,1.2512,1.3353 -0x12e89,CUS_0x6172,August,32,794-09-7808,Manager,17091.96,,10,8,23,5,"Payday Loan, Student Loan, Personal Loan, Payday Loan, and Home Equity Loan",34.38648934,23.97294756,2.38,11,Bad,4543.125976,40.07793039,8 Years and 5 Months,Yes,54.85794586,10000,Low_spent_Small_value_payments,282.3548839,0,2.2133,0.6877,1.4932,-0.0564,-0.7599 -0x12e95,CUS_0x56cf,August,22,310-05-9951,_______,29960.97,,3,6,14,1,Home Equity Loan,23.55611394,19,19.54,6,Standard,744.37,29.64587853,31 Years and 6 Months,Yes,17.23485857,128.150503,Low_spent_Small_value_payments,368.6893885,0,1.3869,-0.8441,0.2723,-0.3075,-0.6737 -0x12ea1,CUS_0x5915,August,80,307-35-3344,Lawyer,9313.8,,10,1349,24,9,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Student Loan, Payday Loan, Not Specified, Personal Loan, Personal Loan, and Home Equity Loan",33.94722698,24,1.86,9,Bad,2879.88,30.70913644,12 Years and 3 Months,Yes,36.47355095,41.5223977,Low_spent_Large_value_payments,293.9190514,0,-2.2459,0.0502,3.0597,-1.3958,0.3075 -0x12ead,CUS_0x3023,August,29,775-12-4739,Musician,32613.68,,9,5,28,7,"Credit-Builder Loan, Payday Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",25.13566262,18.22993624,29.65,12,Bad,4361.403791,30.23468697,,Yes,116.6885376,48.19196749,High_spent_Large_value_payments,344.8001616,0,0.4747,0.2141,-0.9498,0.6761,0.2158 -0x12eb9,CUS_0xa493,August,23,964-65-9900,Architect,57586.82,,4,7,1,0,,6.329184617,8,1.59,3,Good,709.3871557,39.47227112,31 Years and 9 Months,No,75532,,High_spent_Small_value_payments,603.9264049,0,-0.481,-0.1998,-1.015,0.4634,-1.9633 -0x12ec5,CUS_0x169c,August,46,329-30-2891,Developer,11646.925,,7,4,8.067457376,0,,15.42332988,9,4.54,6,Good,1005.670954,25.5114253,32 Years and 11 Months,No,0,72.28518864,Low_spent_Large_value_payments,284.5522317,0,-0.1882,1.3034,-0.055,0.2249,2.2033 -0x12ed1,CUS_0x406e,August,55,178-31-4896,Journalist,22434.16,2060.513333,3,3,17,1,Home Equity Loan,,20,15.62,1,Standard,12.30156559,27.02516836,33 Years and 3 Months,Yes,17.04031521,282.0288034,Low_spent_Small_value_payments,229.3072922,0,-0.8848,-1.4284,-0.8621,0.1471,-0.5654 -0x12edd,CUS_0x3a93,August,22,892-22-1956,Mechanic,15411.93,,7,10,33.06745738,4,"Mortgage Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",29.81768436,17.20878633,9.58,14,_,2607.243161,27.56352667,15 Years and 10 Months,Yes,34.00796428,,Low_spent_Small_value_payments,193.2258213,0,-0.8503,0.6013,-0.3437,-0.4873,-1.0569 -0x12ee9,CUS_0x2a5d,August,18,161-17-6771,Musician,95610.81,8262.5675,6,4,5,5,"Student Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",9.677810302,8,17.43,9,Standard,383.55,39.908648,20 Years and 6 Months,Yes,276.3195455,435.2926343,High_spent_Small_value_payments,374.6445702,0,-1.3551,0.0929,-1.513,1.4534,-0.2351 -0x12ef5,CUS_0x2cc2,August,29,235-51-5174,Writer,39566.48,3050.206667,10,8,18.06745738,3,"Mortgage Loan, Personal Loan, and Not Specified",26.23819066,16.66385384,6.15,7,_,2413.797829,29.03653709,6 Years and 11 Months,Yes,63.70828192,189.2990128,Low_spent_Small_value_payments,315.293084,0,-1.4463,-0.9113,-2.2725,-1.1461,0.5365 -0x12f01,CUS_0x673c,August,40,#F%$D@*&8,Scientist,14744056,4976.025,5,4,11.28836175,4,"Not Specified, Student Loan, Student Loan, and Personal Loan",11.73796488,11,4.04,3,Good,286.92,39.85327642,24 Years and 5 Months,No,150.9501566,690.9923968,Low_spent_Large_value_payments,345.5974076,0,-1.0797,0.2356,-0.9772,0.2486,-0.2854 -0x12f0d,CUS_0x5a77,August,43,234-41-6154,Lawyer,28716,,7,10,17.06745738,5,"Personal Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",,28.913326,9.06,12,Bad,4235.525244,36.01146657,8 Years and 0 Months,Yes,90.72796187,,High_spent_Large_value_payments,341.7260934,0,0.7241,-0.4075,0.8922,-0.9389,-0.4599 -0x12f19,CUS_0x3c90,August,19,337-71-0334,Doctor,19125.75,,3,6,4,3,"Auto Loan, Credit-Builder Loan, and Not Specified",19.82615463,14,11.32,0,Good,1116.513147,22.60154592,21 Years and 0 Months,NM,33.55774425,167.1369048,Low_spent_Medium_value_payments,243.3060702,0,1.239,0.1345,-1.3218,0.0257,-0.1656 -0x12f25,CUS_0x80d8,August,25,879-65-6545,Lawyer,111845.6,9174.466667,3,4,11,1,Auto Loan,,19,,2,Standard,281.3842538,36.62946247,23 Years and 10 Months,NM,65.71200785,11249.41828,Low_spent_Medium_value_payments,230.2345057,0,0.0051,0.9408,0.9876,0.1731,0.0028 -0x12f31,CUS_0x92df,August,32,756-71-3400,Accountant,20168.99,,5,7,19,7,"Student Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",13.6465593,10,9.41,9,Standard,2043.24,32.08397542,16 Years and 5 Months,Yes,172.9610454,152.9571453,Low_spent_Small_value_payments,241.9221962,0,-1.2448,0.1725,-1.138,0.5236,-0.413 -0x12f3d,CUS_0xb0e5,August,42,934-39-5678,Mechanic,17908.01,1152.676742,5,4,12,2,"Not Specified, and Credit-Builder Loan",12.77135151,12,3.93,1,Good,1284.326341,30.45529121,18 Years and 11 Months,No,179.7810308,,Low_spent_Small_value_payments,237.2101744,0,0.0145,-0.4866,-0.9283,0.1959,-0.4953 -0x12f49,CUS_0xa08e,August,80,168-64-8956,Doctor,18202.235,,2,2,3,0,,2.519550429,6,1.78,4,Good,1196.275491,36.46021795,22 Years and 8 Months,NM,0,82.85935516,Low_spent_Medium_value_payments,334.6360984,0,-0.1254,0.3525,0.6123,0.6065,-0.8532 -0x12f55,CUS_0x4a0d,August,27,129-01-2521,Scientist,35038.35,3156.8625,4,4,17.28836175,2,"Auto Loan, Home Equity Loan, and Not Specified",,,9.97,4,Standard,362.03,29.48769324,33 Years and 6 Months,Yes,64.24529762,724.7501039,Low_spent_Medium_value_payments,226.6283095,0,0.2269,-0.015,-0.3121,-0.913,0.5624 -0x12f61,CUS_0xbec6,August,37,675-02-4667,Mechanic,84215.13,6832.9275,5,5,6,5,"Personal Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Student Loan",14.19657823,10,14.55,6,Standard,150.68,30.19581582,5 Years and 8 Months,Yes,191.7420707,859.734533,Low_spent_Small_value_payments,,0,-1.4674,-0.9673,-2.5037,-1.8339,0.0018 -0x12f6d,CUS_0x5a2f,August,18,392-01-5767,Teacher,14020.86,,2,43,9,0,,11.3076696,11,16.26,7,Good,1360.5,24.81397162,17 Years and 11 Months,No,0,,Low_spent_Small_value_payments,290.438452,0,-0.2881,0.8171,-0.7475,1.9117,1.0842 -0x12f79,CUS_0x4838,August,21,082-10-7518,Musician,103007.7,8637.975,1,3,3.288361749,2,"Credit-Builder Loan, Mortgage Loan, and Student Loan",,3,0.73,5,Good,904.53,34.88449051,20 Years and 2 Months,No,224.4373279,,High_spent_Large_value_payments,717.2930175,0,0.0925,0.3848,0.041,-1.5099,0.7963 -0x12f85,CUS_0x96fa,August,24,982-36-4500,Writer,69740.96,5926.746667,5,1,9,2,"Not Specified, and Personal Loan",,2,,0,Good,781.9299193,38.32305269,19 Years and 10 Months,No,78.45405614,105.5696407,High_spent_Medium_value_payments,671.9291817,0,1.9099,-0.3996,-0.4169,-0.0831,-0.8807 -0x12f91,CUS_0x1290,August,34,922-15-4739,Architect,10455.875,,6,5,12,3,"Personal Loan, Payday Loan, and Credit-Builder Loan",23.22354708,19,9.71,0,Good,76.4421751,29.46491267,23 Years and 3 Months,No,25.74844766,27.03978353,Low_spent_Medium_value_payments,302.6933396,0,0.0689,0.2602,0.0372,0.8133,0.309 -0x12f9d,CUS_0x5ffa,August,30,468-07-7694,Lawyer,20099.99,,7,6,9,2,"Home Equity Loan, and Credit-Builder Loan",12.13223067,10,17.16,12,Standard,371.5793539,39.3568296,18 Years and 10 Months,Yes,26.22934392,23.75195183,High_spent_Large_value_payments,356.248239,0,0.2579,0.9936,-2.05,-2.0593,-1.1774 -0x12fa9,CUS_0x8dfe,August,44,055-37-6531,Teacher,115379.64,9722.97,6,4,9,0,,15.45450633,,8.97,0,Standard,364.66,26.5852235,28 Years and 10 Months,No,0,549.1979237,Low_spent_Medium_value_payments,703.0990763,0,0.2563,0.1588,-2.3557,-1.835,0.1185 -0x12fb5,CUS_0x67e4,August,28,295-57-0333,_______,50493.8,4231.816667,4,4,12,7,"Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",18.06716089,15,14.52,7,Standard,1453.63,40.14623699,15 Years and 0 Months,Yes,201.7436564,98.77166699,High_spent_Medium_value_payments,372.6663432,0,0.2549,-1.4819,-1.0498,0.9689,0.7368 -0x12fc1,CUS_0x7044,August,80,374-75-3841,_______,59505.12,4898.76,5,7,17,2,"Personal Loan, and Home Equity Loan",6.450191655,8,9.9,7,Standard,1491.91,25.16570189,10 Years and 3 Months,NM,71.90689735,175.8754432,High_spent_Medium_value_payments,492.0936595,0,-1.1452,1.374,0.366,0.7512,0.7455 -0x12fcd,CUS_0x872e,August,36,813-58-4393,Doctor,56169.54,4763.795,5,487,9,2,"Auto Loan, and Mortgage Loan",,12,16.93,10,Standard,1951.58,27.18483596,19 Years and 4 Months,NM,49.3252977,125.0786909,High_spent_Small_value_payments,561.9755114,0,0.1905,-0.3598,-0.1531,0.7371,-0.2314 -0x12fd9,CUS_0x60aa,August,37,812-89-6483,_______,8058.875,,9,10,30,4,"Credit-Builder Loan, Student Loan, Student Loan, and Debt Consolidation Loan",40.01684726,21.31944714,15.7,10,_,1415.623521,34.06580971,10 Years and 4 Months,Yes,25.12994948,37.61794412,Low_spent_Small_value_payments,278.1093981,0,2.0731,0.4411,-0.1954,-0.868,-0.3598 -0x12fe5,CUS_0x9233,August,18,467-66-3762,Media_Manager,18256.6,,7,6,21,5,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",34.57558831,20,15.65,10,_,4670.52,29.07682595,2 Years and 2 Months,Yes,72.62659397,10000,High_spent_Medium_value_payments,282.711472,0,-0.7627,0.0128,-0.0964,-0.3254,-1.7519 -0x12ff1,CUS_0x3fdf,August,37,#F%$D@*&8,Developer,8475.375,653.28125,10,7,29,8,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Credit-Builder Loan, and Home Equity Loan",35.39447474,19,21,9,Bad,4399.81,25.11484036,1 Years and 5 Months,Yes,48.47441489,54.81827869,Low_spent_Large_value_payments,232.0354314,0,0.0913,-0.1113,-0.3015,2.0146,-0.063 -0x12ffd,CUS_0x9a4f,August,30,509-08-5237,Entrepreneur,93363.45,7237.3973,8,7,15,3,"Credit-Builder Loan, Auto Loan, and Not Specified",22.55859783,16,16.68,9,Standard,308.3425762,29.42657709,26 Years and 10 Months,Yes,981.0654877,11766.29341,!@9#%8,316.8524222,0,1.1346,-0.3339,-0.8742,-2.2338,0.585 -0x13009,CUS_0x9836,August,32,079-48-0859,Scientist,26013.73,,7,6,5,3,"Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",25.23854221,19,1.58,1,Standard,465.0776389,25.00915975,21 Years and 0 Months,Yes,59.21204297,82.10133958,High_spent_Medium_value_payments,309.1034144,0,-0.7527,-1.0368,-0.1909,-1.3372,1.1556 -0x13015,CUS_0x5eec,August,48,481-18-2270,Mechanic,97609.35,,5,3,11,1,Debt Consolidation Loan,,9,5.78,0,Standard,526.3701872,26.8157571,21 Years and 4 Months,Yes,923.8348486,567.4019019,!@9#%8,545.2537773,0,0.6972,0.7677,-0.5816,1.0591,-0.6122 -0x13021,CUS_0xc258,August,25,921-61-1717,Teacher,100713.72,8401.81,3,6,4.288361749,100,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",16.17107213,,15.83,4,Standard,138.92,33.43221939,7 Years and 0 Months,Yes,325.1832679,,Low_spent_Medium_value_payments,178.6427661,0,0.6086,0.6117,-0.4355,-0.8839,2.0766 -0x1302d,CUS_0x9976,August,26,933-45-8852,Lawyer,31182.38,,10,7,34.06745738,7,"Auto Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Personal Loan",,20.46628895,7.87,9,Standard,3002.378269,29.91117826,16 Years and 8 Months,Yes,181.5728344,,High_spent_Medium_value_payments,214.1993455,0,-0.1613,-0.2123,0.6042,-0.0321,-0.1161 -0x13039,CUS_0xb645,August,38,#F%$D@*&8,Engineer,55071.72,,6,3,19.28836175,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Personal Loan",,,0.69,4,Standard,224.35,25.25068609,28 Years and 10 Months,No,157.6914306,540.8390606,!@9#%8,433.8379698,0,0.2058,0.3753,0.6405,-0.8978,0.3481 -0x13045,CUS_0xa3db,August,18,736-80-3805,Accountant,18290.03,1454.169167,8,7,17.06745738,5,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Student Loan, and Mortgage Loan",35.96520935,23.02912332,16.61,13,_,4841.904751,27.76750599,13 Years and 0 Months,Yes,66.31045608,80.96884176,Low_spent_Small_value_payments,261.4173309,0,0.0789,0.0437,-0.5189,0.0162,-0.0586 -0x13051,CUS_0x8e50,August,38,052-30-0753,_______,15597.31,,8,5,9,5,"Home Equity Loan, Personal Loan, Mortgage Loan, Not Specified, and Credit-Builder Loan",22.89224292,20,11.3,6,Standard,660.6044995,28.54054824,5 Years and 9 Months,Yes,40972,153.2881508,Low_spent_Large_value_payments,238.2662923,0,-1.0081,0.2315,1.5255,-0.671,-0.8498 -0x1305d,CUS_0x5bad,August,50,358-46-9187,Lawyer,36535.57,3114.630833,5,3,9,3,"Student Loan, Student Loan, and Auto Loan",0,0,8.67,1,Good,557.68,40.02462066,20 Years and 6 Months,No,78.36932851,34.85088773,High_spent_Large_value_payments,438.2428671,0,1.7927,0.2583,-0.9367,-0.7508,-0.3556 -0x13069,CUS_0x5b2f,August,41,676-86-4432,Engineer,15957.41,,8,5,7,3,"Mortgage Loan, Personal Loan, and Student Loan",,22,16.33,4,_,1269.87,34.60537607,10 Years and 10 Months,Yes,25.04855436,114.500086,Low_spent_Small_value_payments,254.4297763,0,-1.157,0.6083,1.0369,0.1455,1.4505 -0x13075,CUS_0x8bdf,August,46,676-82-0055,Musician,9857.29,,5,5,20,2,"Student Loan, and Auto Loan",20.91304107,18,9.39,1,Standard,85.92,22.74982147,18 Years and 9 Months,No,16.17159305,98.87585589,Low_spent_Small_value_payments,259.8966344,0,-2.5303,-0.2806,-0.6011,0.0032,1.3487 -0x13081,CUS_0xbd4a,August,32,309-78-0181,Entrepreneur,112990.08,9349.84,8,4,8.288361749,4,"Home Equity Loan, Mortgage Loan, Not Specified, and Mortgage Loan",16.02173184,14,15.19,4,Standard,992.89,33.66922437,31 Years and 4 Months,Yes,360.3414703,992.1606474,Low_spent_Medium_value_payments,282.4193433,0,1.7625,0.6519,1.0074,-2.0078,0.2995 -0x1308d,CUS_0x2c3e,August,36,803-62-3706,Lawyer,12426.29,,5,4,13,3,"Payday Loan, Debt Consolidation Loan, and Personal Loan",22.84183262,16,17.14,10,Standard,1245.839395,34.05434964,8 Years and 11 Months,Yes,18.80189846,106.1904546,Low_spent_Small_value_payments,268.6412932,0,0.1321,-1.2298,0.7084,-0.3105,0.8569 -0x13099,CUS_0x9f55,August,20,507-29-6608,Lawyer,14774.495,,3,6,16,1,Credit-Builder Loan,16.4515936,15,5.44,3,Standard,370.12,30.00361644,23 Years and 5 Months,No,78.83772984,,Low_spent_Small_value_payments,250.4874548,0,0.2145,0.8239,-0.006,0.8875,0.6406 -0x130a5,CUS_0x785,August,43,949-02-1723,Media_Manager,100536.2,8310.016667,3,4,14,4,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Not Specified",,17,11.64,3,Standard,412.77,29.84730021,16 Years and 9 Months,Yes,224.8840501,209.064966,High_spent_Large_value_payments,637.0526505,0,-0.2163,1.7709,-1.0922,-0.4874,-0.1561 -0x130b1,CUS_0x6fff,August,28,738-16-5399,Scientist,43925.88,3889.49,1,3,7,0,,1.677031284,6,8.84,0,Good,96.8590045,25.15541393,19 Years and 9 Months,No,0,,Low_spent_Small_value_payments,256.9965912,0,1.3453,-1.6516,-0.8502,0.9708,-0.5507 -0x130bd,CUS_0xbb9a,August,27,798-84-4509,Lawyer,20434.595,1993.882917,5,1,2,0,,,7,6.01,2,Good,271.51,40.58716015,16 Years and 5 Months,No,0,74.61545393,Low_spent_Large_value_payments,394.7728377,0,0.8296,-0.7602,0.7546,0.1816,0.7213 -0x130c9,CUS_0x5978,August,35,763-74-8586,_______,8170.725,,7,5,21.06745738,4,"Student Loan, Mortgage Loan, Auto Loan, and Student Loan",,25.20349888,10.12,11,_,2845.17329,37.70058032,6 Years and 3 Months,NM,17.28840448,37.46122913,Low_spent_Small_value_payments,270.4194534,0,2.3128,-1.193,-1.2276,0.0029,0.7507 -0x130d5,CUS_0x8b38,August,29,872-37-5162,Entrepreneur,121933.2,10238.1,8,5,19,0,,,7,7.19,0,Standard,586.55,28.91278535,22 Years and 0 Months,Yes,0,,Low_spent_Small_value_payments,91.76276825,0,-1.65,1.2211,-0.0242,-0.8742,0.7564 -0x130e1,CUS_0x4bcf,August,46,739-73-1176,Engineer,42024.21,3695.0175,1,3,7.288361749,0,Auto Loan,,11,1.68,4,Good,143.12,24.50789405,,No,34.61643154,488.954419,High_spent_Medium_value_payments,515.8683604,0,1.466,1.9684,1.2202,1.0783,-0.2401 -0x130ed,CUS_0x3b46,August,37,031-66-3945,Doctor,119005.6,,5,4,9.288361749,0,,,11.24703736,5.31,6,_,1432.906646,40.55688674,21 Years and 2 Months,No,0,753.8249955,High_spent_Small_value_payments,945.4257988,0,1.8937,0.3284,0.4145,-2.5611,0.1431 -0x130f9,CUS_0x6bda,August,33,928-87-1423,Scientist,42515.6,3447.966667,3,4,11,3,"Personal Loan, Student Loan, and Mortgage Loan",,13,4.8,761,Good,629.75,27.76640243,16 Years and 0 Months,NM,103.3026646,52.65861871,High_spent_Large_value_payments,428.8353833,0,-0.4894,-0.5358,0.4977,0.1204,-0.7979 -0x13105,CUS_0xcfc,August,31,555-99-1654,Engineer,15330.305,1135.525417,4,5,5,4,"Personal Loan, Auto Loan, Student Loan, and Credit-Builder Loan",25.44741347,19,9.03,7,Good,672.49,25.38956527,18 Years and 5 Months,NM,46.38894479,118.6321835,Low_spent_Small_value_payments,238.5314134,0,-1.1408,1.6585,-1.5431,-0.856,-1.2478 -0x13111,CUS_0xc0af,August,32,723-06-5026,Developer,14126.68,,9,9,26,4,"Credit-Builder Loan, Personal Loan, Personal Loan, and Auto Loan",40.03659243,19.72789763,14.44,9,Standard,1864.261132,39.35668735,7 Years and 9 Months,NM,47.04210762,,Low_spent_Small_value_payments,315.4358397,0,-0.9213,-1.3967,-1.4333,-0.0276,-0.3922 -0x1311d,CUS_0xb6e7,August,26,722-98-5151,Engineer,15135.3,,9,7,18,9,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Auto Loan, Auto Loan, Home Equity Loan, and Personal Loan",29.97143581,22.40691118,21.06,11,Bad,4078.215042,31.38050444,7 Years and 4 Months,Yes,74.6184139,,High_spent_Small_value_payments,283.6534163,0,0.713,0.0796,0.4704,0.3946,1.703 -0x13129,CUS_0x51fe,August,44,871-93-0711,Developer,31752.1,,2,7,5.288361749,2,"Not Specified, and Payday Loan",6.304273557,9,1.2,3,Good,146.2,39.33280158,24 Years and 4 Months,No,241.5526284,558.998798,Low_spent_Medium_value_payments,374.4955744,0,0.7374,-1.3471,-1.8807,0.0616,0.1135 -0x13135,CUS_0x54b3,August,44,438-82-2211,Scientist,53146.47,,10,8,18.88954781,6,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",42.68854085,25.88574305,4.92,15,Bad,2462.434466,29.90893854,14 Years and 8 Months,Yes,1567.29349,475.2236276,Low_spent_Small_value_payments,19.740051,0,0.7978,0.14,-0.1564,1.3626,0.3588 -0x13141,CUS_0x48a6,August,35,437-08-1423,Architect,14691.485,928.2904167,3,4,10,1,Student Loan,13.73214047,12,1.9,5,Good,174.9385393,33.19159092,28 Years and 2 Months,No,7.767894392,48.50964028,Low_spent_Large_value_payments,311.0089441,0,1.0435,-0.7923,0.7229,-1.5367,0.9902 -0x1314d,CUS_0x5dd3,August,24,715-18-8451,Architect,41188.92,3515.41,2,6,3,4,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",0,3,3.33,3,Good,481.6679551,24.50496726,20 Years and 4 Months,No,133.1475739,,High_spent_Medium_value_payments,381.1699852,0,0.5453,0.1624,-0.3402,0.5689,-0.238 -0x13159,CUS_0x1f36,August,26,263-16-8350,Scientist,33455.64,2946.97,8,7,34.06745738,8,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",35.80935115,21,22.33,13,Bad,5031.060954,25.10361041,,Yes,217.7342576,340.2105838,Low_spent_Small_value_payments,0.031870707,0,1.3196,-0.567,-0.641,2.0687,0.9852 -0x13165,CUS_0xb9c9,August,22,375-46-0915,_______,19575.89,,5,10,16,5,"Auto Loan, Payday Loan, Not Specified, Home Equity Loan, and Payday Loan",24.95323103,18.4680707,18.27,8,Standard,2607.43484,34.03415754,17 Years and 5 Months,Yes,54.09079591,154.8295299,!@9#%8,237.0120908,0,0.3671,-0.1028,0.2456,-0.2758,-0.5371 -0x13171,CUS_0x867a,August,32,061-69-2674,Entrepreneur,80394.72,6639.56,9,7,34,6,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Personal Loan",34.05411758,16,0.63,2457,_,2803.03,36.15882424,2 Years and 2 Months,Yes,250.0544591,699.9337073,Low_spent_Small_value_payments,3.967833543,0,-0.5134,0.8371,-1.0035,-1.4183,-0.0101 -0x1317d,CUS_0x666b,August,44,949-63-3125,Media_Manager,20159.39,1403.949167,10,7,17.06745738,5,"Mortgage Loan, Payday Loan, Not Specified, Payday Loan, and Payday Loan",22.57077002,15,16.16,11,_,3828.330954,31.86982565,8 Years and 4 Months,Yes,80.4778639,,Low_spent_Small_value_payments,241.4205846,0,-1.0515,0.0497,-1.223,0.547,0.7057 -0x13189,CUS_0x3a86,August,44,491-96-7774,Manager,61955.82,4985.634322,8,6,29,6,"Student Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",26.7737831,,15.21,13,_,1381.96,24.43527353,9 Years and 4 Months,Yes,610.2876139,229.6992627,Low_spent_Large_value_payments,410.7623014,0,-1.0881,-0.6327,-0.4867,-0.5037,-1.803 -0x13195,CUS_0x8a9c,August,48,203-00-8741,Accountant,148570.8,,5,2,8,4,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,12,10.34,1,Good,147.27,35.0088023,31 Years and 0 Months,NM,420.4768142,,Low_spent_Medium_value_payments,187.3423568,0,2.0743,0.0667,0.8138,-1.1721,3.3529 -0x131a1,CUS_0x81ee,August,23,992-84-5158,Doctor,7664.42,,6,6,32,6,"Payday Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, Mortgage Loan, and Personal Loan",26.24575479,19,21.14,12,Bad,4332.94,29.235626,10 Years and 9 Months,Yes,22.1562827,44.68235884,Low_spent_Small_value_payments,261.4315251,0,1.1483,-0.6448,-0.1674,-1.2799,-0.1893 -0x131ad,CUS_0x7ea0,August,28,944-28-2927,Musician,20273.53,,3,5,15,4,"Home Equity Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",,17.11112136,8.03,6,Standard,1423.14774,24.43597025,13 Years and 11 Months,NM,40.67137268,37.9280783,High_spent_Medium_value_payments,314.1466323,0,0.7844,0.1498,0.3868,-0.9634,-0.1282 -0x131b9,CUS_0x8990,August,53,284-65-3957,Journalist,43220.64,3702.72,2,5,12,1,Mortgage Loan,,6,11.77,1,Good,1139.780072,39.00430087,,No,26.47911048,86.71638246,High_spent_Medium_value_payments,520.0388738,0,1.6962,-1.3239,0.9715,-0.0168,-0.0436 -0x131c5,CUS_0x7f70,August,54,878-29-0780,Journalist,49962.42,,7,7,15,3,"Not Specified, Credit-Builder Loan, and Mortgage Loan",,18,3.71,4,Standard,1175.81,39.90855639,32 Years and 6 Months,No,67.46103412,107.9298853,High_spent_Medium_value_payments,475.3625806,0,0.212,0.58,-0.0962,-0.1724,2.476 -0x131d1,CUS_0x9122,August,42,975-98-6988,Engineer,19773.56,,4,3,19,1,Debt Consolidation Loan,24.76765691,19,7.31,4,Standard,891.3234532,25.64007675,23 Years and 5 Months,Yes,10.35830659,,Low_spent_Large_value_payments,288.5556849,0,0.3241,0.2398,-0.3568,0.8308,-0.6759 -0x131dd,CUS_0x9762,August,50,369-44-6475,Writer,35664.72,,5,5,3,1,Personal Loan,0.019917372,2.410423229,9.41,8,Good,818.8100785,35.30743445,23 Years and 11 Months,No,15.54804348,27.18510559,!@9#%8,523.0728509,0,-0.4646,-0.1879,-0.4664,-0.0838,-0.7097 -0x131e9,CUS_0x344a,August,80,869-92-2559,Teacher,14210.27,,9,6,20.06745738,5,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, and Payday Loan",35.35040219,19,22.35,10,_,4791.555567,26.01893188,6 Years and 0 Months,Yes,51.07600843,54.98553303,High_spent_Medium_value_payments,251.6983772,0,-0.7661,-0.3436,0.8901,0.9875,-0.057 -0x131f5,CUS_0x3554,August,37,109-59-0887,Manager,10112.045,,4,5,6,1,Personal Loan,13.16346284,8,6.74,2,Standard,49.62,33.42126993,29 Years and 4 Months,No,56.14309655,52.16043791,Low_spent_Large_value_payments,268.0728586,0,-0.9501,-0.3775,1.6999,2.868,-0.2653 -0x13201,CUS_0x4c71,August,55,267-92-2329,Entrepreneur,32227.77,,3,6,6,2,"Mortgage Loan, and Home Equity Loan",,10,11.4,2,Good,430.39,36.72327747,30 Years and 6 Months,NM,37.93802076,,!@9#%8,389.4637102,0,-0.6815,-0.6654,1.7526,-0.2018,1.3885 -0x1320d,CUS_0x4fee,August,26,791-20-6533,Musician,33101.56,,6,10,29.88954781,6,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Not Specified",26.4455983,20,5.12,10,Bad,1507.49,32.4523649,12 Years and 8 Months,Yes,1641.594613,78.88124277,Low_spent_Medium_value_payments,396.7467778,0,-0.2121,0.258,-0.176,-0.856,-0.6736 -0x13219,CUS_0x5087,August,32,898-20-2778,Manager,46297.44,3806.12,7,8,27.06745738,9,"Student Loan, Student Loan, Personal Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Student Loan, and Debt Consolidation Loan",37.23183897,17,22.13,15,_,4969.220954,25.90858752,3 Years and 0 Months,Yes,210.1223635,,Low_spent_Medium_value_payments,202.9341665,0,0.1111,-2.5713,-0.6509,-0.0203,0.2993 -0x13225,CUS_0x36d3,August,80,806-65-8621,Teacher,108361.32,8829.11,7,5,10,4,"Mortgage Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",19.6523641,,9.83,1,_,402.23,39.98471693,,Yes,194.5740889,465.1305451,!@9#%8,483.206366,0,1.8912,-0.4185,1.3399,-0.2161,-0.3459 -0x13231,CUS_0x81d6,August,27,359-78-1565,Developer,34762.98,,8,8,16.06745738,6,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",43.38163685,26,21.63,9,Bad,3292.420954,36.06600248,3 Years and 8 Months,Yes,131.5641172,,High_spent_Medium_value_payments,311.5414061,0,-0.4596,0.1996,0.2834,-1.9314,0.8736 -0x1323d,CUS_0x6ae2,August,36,875-53-5736,Writer,37579.75,2891.645833,3,1,5,0,,,6,7.39,2,_,755.9722813,28.80133121,18 Years and 4 Months,NM,0,38.59702585,High_spent_Medium_value_payments,504.1000499,0,-1.7616,-0.8035,-1.166,-0.8148,-0.3727 -0x13249,CUS_0x2342,August,46,568-57-8267,Writer,22961.35,,8,6,18,2,"Debt Consolidation Loan, and Student Loan",23.15003883,17,10.3,1,Standard,1253.93,27.88551716,30 Years and 3 Months,Yes,22.55320696,10000,High_spent_Medium_value_payments,356.822046,0,0.6732,0.3335,-0.6819,0.8463,0.6775 -0x13255,CUS_0x6b35,August,23,747-34-6406,Developer,7908.935,644.0779167,9,5,33.06745738,3,"Mortgage Loan, Home Equity Loan, and Auto Loan",29.6328308,18.51591412,5.73,8,Bad,2232.327198,33.44231455,14 Years and 5 Months,Yes,18.17850647,10000,Low_spent_Small_value_payments,285.3604435,0,0.1929,0.8229,0.7919,0.3297,1.55 -0x13261,CUS_0x235a,August,22,830-22-8518,Architect,33911.02,2999.918333,3,5,14,1,Credit-Builder Loan,8.899374905,9,13.71,6,Standard,459.16,39.43982187,,No,23.70133849,39.56207444,High_spent_Large_value_payments,476.7284204,0,-0.9246,1.6052,-0.4952,-1.1638,-0.6377 -0x1326d,CUS_0xb0e8,August,25,#F%$D@*&8,_______,26921.13,,5,7,17,4,"Credit-Builder Loan, Home Equity Loan, Auto Loan, and Not Specified",,17,3.01,4,Standard,124.1,33.46257474,23 Years and 0 Months,No,72.52834994,62.91384702,Low_spent_Large_value_payments,349.600553,0,1.0998,0.493,1.3994,1.4455,0.2863 -0x13279,CUS_0x41ee,August,22,439-38-8702,Entrepreneur,56668.5,4996.375,4,8,28,2,"Auto Loan, and Credit-Builder Loan",8.760778592,6,,12,Standard,1627.25,28.09732541,9 Years and 6 Months,Yes,82.49753192,157.2540738,High_spent_Medium_value_payments,509.8858943,0,-0.9142,0.5667,-0.3263,-0.4714,-0.625 -0x13285,CUS_0x85f1,August,32,734-98-5113,Teacher,45109.52,4018.126667,6,6,1,4,"Credit-Builder Loan, Student Loan, Mortgage Loan, and Auto Loan",,12,8.71,0,Standard,651.79,41.13320104,25 Years and 10 Months,No,93.56115936,108.6244425,High_spent_Small_value_payments,459.6270648,0,1.4457,-0.8235,0.1082,-0.4945,-1.3925 -0x13291,CUS_0x9340,August,22,310-19-8594,Musician,126262.12,10475.84333,7,333,16,3,"Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",24.67180873,16,9.19,3,Standard,447.52,34.99508012,20 Years and 10 Months,No,284.571235,420.6000205,Low_spent_Medium_value_payments,622.4130777,0,-0.5323,-0.9221,-1.5435,-0.4046,0.4833 -0x1329d,CUS_0x94ef,August,38,604-49-3106,Teacher,15950.43,1127.2025,9,10,23.06745738,5,"Home Equity Loan, Not Specified, Credit-Builder Loan, Personal Loan, and Auto Loan",,20.54321129,26.98,11,Bad,3238.98468,27.86154054,,NM,42.56064525,69.51881894,Low_spent_Small_value_payments,263.9204979,0,0.6563,0.1828,0.0332,0.2873,-1.7359 -0x132a9,CUS_0x15b4,August,23,648-00-4817,Musician,106168.77,8700.3975,0,4,8.288361749,2,"Personal Loan, Credit-Builder Loan, and Mortgage Loan",10.31594417,11,4.62,4,Good,525.82,33.75372037,24 Years and 9 Months,No,191.4488059,1474.167563,!@9#%8,,0,1.9818,-0.0711,0.1614,1.0463,-0.294 -0x132b5,CUS_0xc26a,August,39,031-93-1916,Mechanic,37080.88,,7,7,30.06745738,9,"Home Equity Loan, Payday Loan, Auto Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",36.08821794,24,21.96,858,Bad,3228.390954,34.78008933,5 Years and 4 Months,NM,222.0722165,351.6991097,Low_spent_Small_value_payments,24.21571923,0,0.3264,-1.0613,-0.776,0.7969,0.3916 -0x132c1,CUS_0x80ce,August,49,635-01-2991,Engineer,31653.01,,3,7,9,2,"Student Loan, and Auto Loan",0,3,9.2,6,Good,1250.9,39.90971552,24 Years and 3 Months,NM,27.11102882,87.45175917,High_spent_Medium_value_payments,383.3122953,0,-0.1441,-1.4098,-0.2006,1.5888,-0.3427 -0x132cd,CUS_0x41eb,August,32,901-83-8493,Journalist,65498.88,5409.24,9,7,35.06745738,8,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",,25,18.41,6,_,3891.120954,35.21556912,13 Years and 0 Months,Yes,275.7159413,122.2894879,High_spent_Medium_value_payments,366.1982829,0,0.9581,-1.0273,0.0751,-0.6458,-0.4726 -0x132d9,CUS_0x84cc,August,33,241-89-4857,Writer,38364.56,,7,10,26,4,"Home Equity Loan, Not Specified, Payday Loan, and Student Loan",,9,11.7,9,Standard,2661.65,32.89049217,8 Years and 6 Months,Yes,118.1009028,,Low_spent_Small_value_payments,171.1908667,0,1.031,-0.8803,-0.8501,0.9215,0.1463 -0x132e5,CUS_0x2bf6,August,38,087-74-0376,Scientist,59319.42,4760.285,5,4,13,5,"Payday Loan, Auto Loan, Not Specified, Mortgage Loan, and Home Equity Loan",18.00995075,12,9.58,7,Standard,2569.72,37.45674717,5 Years and 11 Months,Yes,207.8496226,,High_spent_Large_value_payments,409.9138613,0,0.2501,-1.0999,-1.6622,-0.0807,-0.258 -0x132f1,CUS_0x5fc6,August,33,073-43-7459,Media_Manager,114004.84,9295.403333,5,7,8,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",,9,11.38,7,Standard,930.9895201,36.48538774,18 Years and 5 Months,Yes,228.8715203,,!@9#%8,643.3153069,0,-1.4969,0.8418,1.0874,0.8517,-0.287 -0x132fd,CUS_0x8d04,August,41,991-06-7515,Musician,53152,,3,6,9,3,"Payday Loan, Mortgage Loan, and Not Specified",,13,8.89,2331,Standard,153.23,34.00032859,16 Years and 6 Months,Yes,127.7062978,62.85806656,!@9#%8,475.168969,0,-1.6024,-0.4758,-0.1003,0.1397,-0.0358 -0x13309,CUS_0x7011,August,26,958-60-8128,Teacher,16945.21,1157.100833,7,7,18.06745738,2,"Credit-Builder Loan, and Student Loan",48.84288212,28.13350298,8.66,6,Bad,1661.338076,26.66675512,19 Years and 8 Months,Yes,27.21188356,92.69436698,Low_spent_Small_value_payments,259.0835448,0,-0.0311,0.1858,1.1483,-2.0791,0.6831 -0x13315,CUS_0x2f86,August,26,974-87-0253,Teacher,7569.055,,6,294,31.06745738,2,"Payday Loan, and Debt Consolidation Loan",31.35378894,17,3.18,11,Bad,2915.120954,28.08729678,12 Years and 10 Months,Yes,7.180053892,51.51497534,Low_spent_Small_value_payments,269.6601412,0,-0.2528,1.4505,0.0987,-1.4181,0.202 -0x13321,CUS_0x75f2,August,31,214-89-1579,Teacher,44982.74,3774.561667,4,2,11,2,"Auto Loan, and Payday Loan",2.285507758,6,2.14,3,_,357.4848124,32.98432968,20 Years and 3 Months,No,72.30835792,,Low_spent_Small_value_payments,224.1948745,0,-0.3656,-0.1403,1.1534,2.0076,-0.2203 -0x1332d,CUS_0x7a8e,August,44,113-27-5219,Lawyer,42311.16,3759.93,4,5,11,1,Personal Loan,17.74397708,,6.84,3,Standard,438.23,39.00149492,28 Years and 4 Months,No,24.8830317,206.6846125,High_spent_Small_value_payments,404.4253558,0,1.3433,1.0661,-0.5987,1.6538,-1.2537 -0x13339,CUS_0x4394,August,27,562-18-2327,Scientist,16974.83,1527.569167,3,6,14,5,"Not Specified, Payday Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",23.06914037,19.55325265,19.93,8,Standard,1638.632128,33.04041038,,Yes,54.63590412,10000,Low_spent_Medium_value_payments,335.0912119,0,1.0829,-0.7757,0.2381,0.7222,-0.347 -0x13345,CUS_0x2f7d,August,51,806-04-3537,Scientist,90960.56,,3,7,14.28836175,4,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",10.54191079,10,17.1,5,Standard,763.8322264,25.51975626,32 Years and 11 Months,Yes,299.6585696,716.1660373,High_spent_Medium_value_payments,435.5615958,0,1.4774,-0.7239,-0.8361,0.3793,-1.4704 -0x13351,CUS_0x1920,August,42,350-32-7099,Scientist,20328.25,,6,5,16,0,,17.53742833,,,5,Standard,1025.98,32.8856954,,Yes,0,63.30594125,Low_spent_Small_value_payments,382.7961421,0,0.2933,0.5393,-0.1084,-0.5136,-1.9728 -0x1335d,CUS_0x3faa,August,22,337-64-7215,Writer,73049.36,6047.446667,6,6,14,3,"Mortgage Loan, Home Equity Loan, and Not Specified",,9.380128212,19.05,7,Standard,2513.184781,24.42803944,16 Years and 0 Months,Yes,133.7890053,,High_spent_Large_value_payments,644.4136423,0,0.5372,1.2346,-0.0158,0.2614,1.2733 -0x13369,CUS_0x4ebf,August,45,372-76-7434,Journalist,63382.56,4996.88,10,9,24.88954781,7,"Not Specified, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",16.67224167,9.490839615,8.22,10,Standard,2652.392139,25.19199504,11 Years and 10 Months,Yes,1676.513242,67.40110299,High_spent_Large_value_payments,301.4435734,0,0.3049,1.2909,-0.643,-0.4539,-1.0295 -0x13375,CUS_0x438d,August,19,781-87-1917,Media_Manager,108782.52,7704.746711,5,7,5,0,,18.47826997,13,7.82,9,Standard,788.3114383,38.81178415,17 Years and 0 Months,Yes,1314.463289,715.8405819,Low_spent_Large_value_payments,553.2487432,0,0.5396,-1.7576,0.6029,-1.2092,-1.5267 -0x13381,CUS_0xc265,August,47,066-65-8508,Musician,30564.65,2554.054167,4,4,2,1,Auto Loan,10.73333009,10,11.79,1,Good,504.93,33.02538456,25 Years and 0 Months,NM,16.69408059,17.9322048,High_spent_Large_value_payments,460.7791313,0,-1.4166,1.1435,0.963,-1.4494,0.0117 -0x1338d,CUS_0x4ee9,August,21,603-95-6149,Media_Manager,35329.84,2819.153333,4,2,6,1,Personal Loan,,2,5.5,4,_,802.9188508,31.68309228,30 Years and 9 Months,No,15.14119679,181.2516065,High_spent_Small_value_payments,369.6077405,0,-3.7487,2.2391,0.3702,-1.988,1.511 -0x13399,CUS_0x55eb,August,18,#F%$D@*&8,Journalist,8205.14,,9,9,34,8,"Auto Loan, Auto Loan, Payday Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",39.95823628,25,20.51,6,_,3176.86,25.44299306,0 Years and 9 Months,Yes,47.38657981,103.5344431,Low_spent_Small_value_payments,228.7426209,0,0.559,0.2854,-0.5211,-1.1801,1.3632 -0x133a5,CUS_0x98ed,August,31,219-01-8357,Journalist,22229.06,1672.421667,6,4,5,3,"Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",10.19527999,10,9.44,9,Standard,1396.14,33.06186126,13 Years and 0 Months,NM,52.13847389,44.08400984,High_spent_Medium_value_payments,321.0196829,0,-1.0275,-1.1895,-3.4629,0.4463,-0.2528 -0x133b1,CUS_0x4f3b,August,47,360-58-3081,Accountant,44551.13,,535,5,2,4,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",0,2.257607847,6.55,0,Good,1075.398658,34.73991412,17 Years and 9 Months,NM,127.7597211,289.9612607,Low_spent_Medium_value_payments,216.2384348,0,-0.337,-0.1637,-0.8221,1.4957,-0.2465 -0x133bd,CUS_0x966b,August,38,941-68-5443,Scientist,32955.92,,6,6,8,2,"Debt Consolidation Loan, and Auto Loan",13.63458633,9,14.35,1,Standard,315.72,33.81771835,18 Years and 11 Months,Yes,29.86502513,,Low_spent_Large_value_payments,305.6861921,0,-0.7898,0.274,-0.1361,-1.525,-1.3406 -0x133c9,CUS_0xb83e,August,43,200-64-0969,Doctor,65671.98,5191.665,1,4,2,1,Credit-Builder Loan,0,1,11.01,3,Good,1311.976166,31.75228404,21 Years and 10 Months,No,30.13134912,594.9430613,Low_spent_Medium_value_payments,258.0234194,0,0.0096,0.6112,0.5823,-0.1369,0.7132 -0x133d5,CUS_0x5cac,August,25,440-50-2913,Mechanic,19070.065,1411.172083,3,5,11,3,"Mortgage Loan, Student Loan, and Student Loan",4.856066787,5,8.42,3,Good,801.19,27.05214534,19 Years and 0 Months,No,35.00184716,49.26655356,Low_spent_Small_value_payments,346.8488076,0,-2.3412,-0.831,-0.9851,-2.0279,1.2554 -0x133e1,CUS_0xc29e,August,45,467-13-5970,Accountant,28566.01,2385.500833,6,6,15,6,"Home Equity Loan, Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, and Payday Loan",23.67743073,18,19.32,8,Standard,479.65,35.21562522,17 Years and 11 Months,Yes,72.54576043,263.5236436,Low_spent_Small_value_payments,192.4806793,0,-1.7733,0.5507,-0.2143,-0.7487,-1.1291 -0x133ed,CUS_0x2dec,August,25,043-92-0360,Accountant,7698.58,731.5483333,9,10,30.06745738,5,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",36.45461985,17.65918814,22.86,12,Bad,3176.367893,31.81730996,5 Years and 6 Months,Yes,26.68874977,46.90338856,High_spent_Small_value_payments,232.8424071,0,0.4566,0.2458,-0.7202,0.1944,1.1896 -0x133f9,CUS_0x22b9,August,45,444-45-1931,Lawyer,9856.98,,6,5,23,6,"Personal Loan, Credit-Builder Loan, Not Specified, Auto Loan, Personal Loan, and Credit-Builder Loan",,14.66837989,8.43,10,_,1636.014404,29.03742246,13 Years and 8 Months,Yes,28.41082376,78.87125787,Low_spent_Small_value_payments,258.1594184,0,0.8121,0.4736,-2.0126,1.1285,0.2386 -0x13405,CUS_0xc669,August,18,946-81-7489,Doctor,39797.06,3310.421667,8,6,19,7,"Payday Loan, Mortgage Loan, Personal Loan, Auto Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",24.18803001,16,18.88,2246,Standard,1134.58,27.82593468,14 Years and 5 Months,Yes,192.8238925,103.480179,High_spent_Medium_value_payments,284.7380952,0,0.9693,-2.162,-0.5335,0.135,0.0815 -0x13411,CUS_0x525f,August,36,085-73-3755,_______,62953.95,,8,8,15.88954781,8,"Student Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Home Equity Loan, and Home Equity Loan",29.74013531,19,18.08,6,Bad,2457.320295,25.61278157,6 Years and 11 Months,Yes,2080.734539,184.5997081,High_spent_Medium_value_payments,307.814102,0,1.2106,0.5798,-1.036,-2.3008,1.3814 -0x1341d,CUS_0x6ba,August,30,669-57-9425,Developer,58162.12,4942.843333,8,4,13,2,"Debt Consolidation Loan, and Not Specified",22.72880554,19,1.39,,Standard,1159.306139,27.75142975,28 Years and 9 Months,No,60.10999658,483.5877751,Low_spent_Large_value_payments,270.5925085,0,-0.564,0.257,0.5979,-0.9002,-1.149 -0x13429,CUS_0x895d,August,32,850-31-2772,Writer,30638.93,2801.244167,5,6,16,4,"Credit-Builder Loan, Mortgage Loan, Payday Loan, and Payday Loan",17.04784163,13,0.64,5,_,1472.21,39.51225627,17 Years and 0 Months,Yes,74.63292377,145.3186663,Low_spent_Small_value_payments,350.1728266,0,1.3524,1.7585,0.2392,0.2216,0.8087 -0x13435,CUS_0x6ee0,August,29,352-17-4274,Accountant,8333.545,,3,4,20,6,"Credit-Builder Loan, Auto Loan, Not Specified, Auto Loan, Debt Consolidation Loan, and Auto Loan",21.90979629,17.95195076,10.29,7,Standard,2095.058574,28.48682655,,Yes,37.84543766,,Low_spent_Medium_value_payments,243.4413593,0,-1.2031,0.217,0.3877,0.4353,-0.2138 -0x13441,CUS_0xa55e,August,46,557-73-9968,Architect,132314.44,10973.20333,1,3,854,4,"Not Specified, Student Loan, Not Specified, and Credit-Builder Loan",,5,11,3,Good,39.53,33.11878744,24 Years and 2 Months,No,363.8735806,349.9547034,High_spent_Medium_value_payments,633.4920493,0,-0.1187,-0.6866,-0.0098,-0.2051,-0.4166 -0x1344d,CUS_0xbb85,August,41,574-70-6565,Scientist,93196.41,7991.3675,8,7,15,4,"Student Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",15.83047992,11,9.38,7,Standard,834.68,35.26203175,28 Years and 5 Months,Yes,297.0478895,193.0133778,High_spent_Large_value_payments,549.0754827,0,-1.3031,0.0757,-0.9298,-0.4882,1.3486 -0x13459,CUS_0x821,August,46,420-43-8481,Writer,119885.44,,3,3,20,1,Home Equity Loan,17.57497593,12,11.56,4,Standard,467.6622639,34.04138103,26 Years and 9 Months,No,62.59991814,907.3770381,Low_spent_Small_value_payments,436.4921665,0,-0.8056,0.9061,0.6643,2.3418,-0.469 -0x13465,CUS_0x6603,August,80,#F%$D@*&8,_______,88581.48,,3,7,3,0,,19.10414754,,1.23,3,Good,809.8941608,37.06671259,32 Years and 11 Months,No,0,546.3340612,Low_spent_Large_value_payments,523.3806264,0,2.6049,0.1913,-0.2714,-0.1516,-0.6161 -0x13471,CUS_0x80b7,August,18,739-39-9305,Architect,62646.42,,6,4,29,3,"Personal Loan, Auto Loan, and Not Specified",16.54113514,14.59380124,7.44,14,Standard,2366.261194,37.18298956,,NM,83.82403567,214.4997983,High_spent_Medium_value_payments,495.729666,0,-0.7543,-1.1507,0.6606,0.5637,0.7049 -0x1347d,CUS_0x6b0c,August,61,772-15-3100,Lawyer,17934.895,1316.574583,0,1,8,2,"Payday Loan, and Payday Loan",6.276732407,6,18.59,6,Good,1272.663622,30.54319324,29 Years and 8 Months,No,25.95670915,53.56867567,Low_spent_Medium_value_payments,337.8064924,0,0.7311,-0.4557,0.057,-0.721,2.4061 -0x13489,CUS_0xa290,August,51,498-02-5560,Media_Manager,102940.53,8729.3775,6,6,10,3,"Credit-Builder Loan, Student Loan, and Mortgage Loan",,13,0.99,4,Standard,185.84,40.45719474,27 Years and 4 Months,Yes,196.0201994,192.3170931,!@9#%8,724.6004575,0,1.6305,1.6562,-0.9491,-1.0068,-0.7658 -0x13495,CUS_0x737a,August,28,643-54-4901,Engineer,142277.72,,3,4,6,100,,12.03842434,10,-0.82,1165,_,293.6760468,32.60498576,20 Years and 0 Months,No,0,724.1255956,High_spent_Small_value_payments,830.5979888,0,-0.8959,2.0586,0.2441,0.1129,-2.04 -0x134a1,CUS_0x77b6,August,38,#F%$D@*&8,Manager,39994.31,3463.859167,5,3,7,0,,,7,4.75,6,_,651.27,39.59120008,26 Years and 5 Months,No,0,180.5881376,Low_spent_Large_value_payments,435.7977791,0,-0.8956,-0.9853,-0.1133,-0.6933,0.8188 -0x134ad,CUS_0x93f4,August,37,586-25-7492,Teacher,16580.73,,10,7,22,8,"Auto Loan, Payday Loan, Payday Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",29.56419963,21.34419371,19.21,14,Bad,3462.196441,37.42009112,14 Years and 4 Months,Yes,81.71606948,84.82461055,Low_spent_Small_value_payments,256.73207,0,1.3036,0.1385,-1.6453,-0.6762,-0.4819 -0x134b9,CUS_0x9275,August,23,143-85-0520,_______,30370.09,,1,4,8,0,,8.343010116,9,4.94,0,_,1333.93,34.91070197,21 Years and 10 Months,No,0,165.1917717,Low_spent_Medium_value_payments,341.4923116,0,-0.5166,1.8796,0.3097,0.1112,0.8975 -0x134c5,CUS_0x7a51,August,80,098-81-6499,Writer,19740.04,1769.003333,4,6,4,2,"Debt Consolidation Loan, and Credit-Builder Loan",7.247661267,10,5.37,1,Good,1057.269401,39.88824382,18 Years and 5 Months,No,26.49477979,,!@9#%8,335.1971233,0,-1.1836,1.5758,1.3623,0.9102,-0.8871 -0x134d1,CUS_0xc12f,August,37,090-99-2550,Entrepreneur,131165.24,,2,7,11,3,"Home Equity Loan, Auto Loan, and Student Loan",0,0,8.31,4,Good,124.81,29.91289542,17 Years and 8 Months,No,244.9845942,770.9303977,Low_spent_Large_value_payments,328.7286748,0,0.8672,-0.6267,0.6637,0.3454,-0.8118 -0x134dd,CUS_0x88e5,August,28,680-32-0710,Accountant,112882.68,,5,1,9.288361749,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",10.87010414,10,6.24,2,Good,622.7114052,37.27317575,29 Years and 3 Months,No,353.616124,711.055298,High_spent_Medium_value_payments,610.9400854,0,-0.4108,1.8305,-0.5103,-0.5322,-0.9924 -0x134e9,CUS_0x5121,August,44,730-95-1822,Writer,98112.03,,2,5,3.288361749,2,"Auto Loan, Not Specified, and Debt Consolidation Loan",1.194188916,5,7.79,1,Good,533.8834318,39.09874174,31 Years and 8 Months,No,197.322052,762.8000615,Low_spent_Large_value_payments,619.7908839,0,-1.0573,0.8853,-0.302,1.0457,-0.4641 -0x134f5,CUS_0x87d5,August,39,737-08-2499,Writer,16582.94,,9,7,27.06745738,8,"Mortgage Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Not Specified, and Payday Loan",,18,25.5,7,Bad,4047.440954,35.74565928,7 Years and 5 Months,Yes,88.64668073,,Low_spent_Large_value_payments,207.5579313,0,0.7754,-0.534,0.0582,-1.3379,-0.2668 -0x13501,CUS_0xa394,August,32,364-16-0033,Engineer,19487.775,,4,5,1,3,"Home Equity Loan, Debt Consolidation Loan, and Personal Loan",8.332914514,10,10.62,3,Good,246.83,28.09954822,33 Years and 2 Months,No,24.70283284,,Low_spent_Small_value_payments,310.9886229,0,-1.3733,-0.4283,1.9592,-0.4254,0.8775 -0x1350d,CUS_0xa279,August,37,845-19-4481,Developer,27113.76,,7,3,8,100,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Auto Loan",27.40388223,19,8.12,12,_,834.43,33.30244115,15 Years and 10 Months,Yes,97.89329113,175.0849441,Low_spent_Small_value_payments,213.2697648,0,1.134,-0.4822,0.1063,-0.661,-0.397 -0x13519,CUS_0x1638,August,28,419-04-0207,Lawyer,32370.6,2862.55,7,10,33.06745738,5,"Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",,,6.03,11,Bad,3931.635462,35.95720722,7 Years and 10 Months,Yes,74.73802678,161.0101358,Low_spent_Small_value_payments,313.7865495,0,1.0153,0.3907,0.2481,0.3487,0.9347 -0x13525,CUS_0x1bc4,August,49,179-87-9194,Lawyer,31638.5,,7,3,14,3,"Student Loan, Not Specified, and Payday Loan",15.82398083,11,14.13,2,Standard,607.9,37.96246602,25 Years and 0 Months,Yes,58.18502472,157.5146268,Low_spent_Small_value_payments,316.1545152,0,1.6306,-2.0764,0.0659,-0.105,-1.0486 -0x13531,CUS_0x603a,August,34,042-56-4117,Doctor,19123.56,,6,6,30,6,"Student Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Auto Loan",,24,7.43,12,Bad,3080.03,25.99058231,0 Years and 11 Months,Yes,60.7680372,,Low_spent_Small_value_payments,251.1168328,0,1.8566,-0.1818,0.376,-0.0419,-0.6177 -0x1353d,CUS_0xa84d,August,41,814-82-9218,Teacher,115810.56,9364.88,3,5,10,0,,,2.385171819,3.78,1,Good,1385.99695,39.57920663,,No,0,202.4251752,High_spent_Large_value_payments,974.0628248,0,-0.9091,1.542,-0.5784,1.237,-0.7509 -0x13549,CUS_0x6b6e,August,39,055-52-3236,Scientist,19815.44,,8,10,20.95700519,8,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, Student Loan, Mortgage Loan, Not Specified, and Mortgage Loan",40.13567838,23.01258513,18.53,9,Bad,4193.930263,30.53238683,1 Years and 4 Months,Yes,1390.041199,,High_spent_Medium_value_payments,256.2118966,0,-0.1963,1.3711,-0.2858,1.2263,0.1331 -0x13555,CUS_0x8870,August,42,549-65-3683,Manager,122426.2,10431.18333,4,4,1.288361749,0,Credit-Builder Loan,1.800804997,6,8.34,4,Good,1155.39,23.47667644,,No,76.28353861,1061.060128,!@9#%8,605.712128,0,-0.7128,0.7556,-1.4063,-0.691,-0.4941 -0x13561,CUS_0x501c,August,32,918-33-6747,_______,16383.26,,6,4,10,5,"Debt Consolidation Loan, Auto Loan, Payday Loan, Credit-Builder Loan, and Student Loan",24.86191632,20.31743866,16.81,5,Standard,1740.254518,32.08592742,13 Years and 10 Months,Yes,39.58324241,10000,Low_spent_Small_value_payments,326.2866863,0,1.271,-0.6031,0.4082,-0.5388,-0.6052 -0x1356d,CUS_0x69df,August,32,191-88-3581,Scientist,35229.28,,9,6,35.06745738,9,"Personal Loan, Payday Loan, Not Specified, Auto Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, and Not Specified",,,19.55,17,Bad,3741.380954,39.69396238,13 Years and 2 Months,Yes,165.773188,10000,!@9#%8,321.0986485,0,0.27,-0.5381,0.6521,0.1546,0.244 -0x13579,CUS_0xb22f,August,25,415-57-3149,Writer,34566,2636.5,1,5,2,3,"Personal Loan, Personal Loan, and Mortgage Loan",22.8615488,12.87351382,8.01,5,Good,1254.752366,30.24245875,,No,50.8127431,231.3769635,!@9#%8,251.4602934,0,0.2152,-0.3685,1.0902,1.2009,0.092 -0x13585,CUS_0x98c2,August,37,457-88-9588,Developer,48646.5,,1558,7,7,0,,12.10874682,12,5.13,3,Standard,723.55,37.26893607,20 Years and 6 Months,Yes,0,262.9593531,!@9#%8,420.1281469,0,-1.2988,2.5304,0.7723,-0.0304,1.0253 -0x13591,CUS_0x17c5,August,42,676-90-9901,Engineer,42265.53,,7,5,32,6,"Student Loan, Credit-Builder Loan, Personal Loan, Student Loan, Auto Loan, and Home Equity Loan",,10,9,8,Standard,2107.97,35.39526728,13 Years and 10 Months,Yes,112.393902,10000,High_spent_Large_value_payments,376.8750698,0,0.4294,-1.2224,1.0898,-0.2909,-0.2813 -0x1359d,CUS_0x9416,August,31,757-14-4155,Writer,20479.75,1629.645833,6,6,29.06745738,7,"Mortgage Loan, Payday Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, and Not Specified",,28.42091687,16.7,11,_,3417.755743,30.08553754,1 Years and 2 Months,Yes,91.05178659,161.9505386,Low_spent_Medium_value_payments,163.2419702,0,-0.1824,-0.4617,-0.7963,0.9502,0.3919 -0x135a9,CUS_0x845d,August,46,694-27-8258,Accountant,37731.42,3206.285,1,6,6,0,,17.49656305,10.93452833,9.33,5,Good,1310.378757,32.86047747,20 Years and 6 Months,No,41584,129.6899876,High_spent_Medium_value_payments,440.9385124,0,-0.2911,0.0777,0.231,-2.9875,0.439 -0x135b5,CUS_0x3806,August,43,193-16-3893,Architect,8381.195,,8,5,30,8,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",,24,17.77,,Bad,3791.41,33.02306915,7 Years and 0 Months,Yes,38.66112651,64.59190162,Low_spent_Medium_value_payments,239.4902635,0,-0.0841,-1.3462,-1.6263,0.8413,0.8231 -0x135c1,CUS_0x7033,August,27,#F%$D@*&8,_______,44657.68,,4,3,2,3,"Not Specified, Personal Loan, and Personal Loan",,5,14.21,0,Good,1142.207987,38.94061442,18 Years and 11 Months,No,88.80144045,120.2009041,!@9#%8,426.2411363,0,-0.972,0.2177,-0.2696,-0.7176,0.7872 -0x135cd,CUS_0x581b,August,26,919-59-4971,_______,12860.695,,4,7,6.067457376,1,Not Specified,,22.24886905,7.51,9,Good,1137.971925,38.95423063,29 Years and 9 Months,No,8.324578702,100.2956793,Low_spent_Medium_value_payments,279.5319124,0,1.9341,1.3331,-1.4904,0.7985,-1.5331 -0x135d9,CUS_0x5234,August,55,072-13-6258,Manager,107193.88,7925.785172,6,5,10,3,"Not Specified, Not Specified, and Auto Loan",16.47146682,13,4.5,4,Good,230.13,33.7927937,28 Years and 4 Months,No,1066.997784,212.0107553,High_spent_Medium_value_payments,652.4119549,0,-0.2893,-0.9975,0.6894,-0.0703,0.866 -0x135e5,CUS_0x919a,August,23,955-69-8416,_______,25994.56,2349.213333,5,5,12,1,Payday Loan,32.42561589,23.74485338,7.53,5,Good,1343.497825,23.36917854,32 Years and 4 Months,No,21.38487256,237.4921539,Low_spent_Small_value_payments,266.0443069,0,-1.3951,-0.123,-0.0141,-0.2515,0.6968 -0x135f1,CUS_0x61c6,August,30,#F%$D@*&8,Musician,125456.44,,5,6,5,2,"Personal Loan, and Credit-Builder Loan",21.75965636,,18.04,4,Standard,558.93,40.40234962,32 Years and 6 Months,Yes,188.2716836,837.3632525,Low_spent_Medium_value_payments,308.8353972,0,0.1027,0.7071,0.3328,-2.8541,0.9292 -0x135fd,CUS_0x9694,August,18,798-43-1227,Entrepreneur,46107.16,4048.263333,5,3,17,2,"Payday Loan, and Payday Loan",,19,8.4,6,Standard,2.04,24.31102978,10 Years and 10 Months,Yes,41.90237944,291.207858,Low_spent_Small_value_payments,361.7160959,0,-0.0269,0.9348,-0.3702,-0.771,1.1749 -0x13609,CUS_0x14b9,August,30,035-83-1012,Architect,30383.36,,3,7,14,3,"Home Equity Loan, Debt Consolidation Loan, and Payday Loan",28.43904074,20,13.29,6,Standard,527.91,38.58860967,,Yes,60.81724743,339.4201152,Low_spent_Small_value_payments,171.957304,0,1.1435,-1.5476,-1.6011,0.0859,-1.0476 -0x13615,CUS_0x6915,August,20,533-80-5681,Musician,15862.01,,10,6,31,100,"Payday Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",37.49764986,26.3994869,24.42,13,_,4455.470427,29.88413955,9 Years and 10 Months,Yes,66.78293289,46.85183975,High_spent_Medium_value_payments,276.848644,0,0.2534,-0.8368,1.2387,0.0184,1.5969 -0x13621,CUS_0x9bb4,August,27,049-55-8216,Journalist,59247,4782.25,8,3,18,5,"Not Specified, Auto Loan, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,15.28136705,7.34,14,_,1551.349058,39.27412168,,NM,241.969672,295.5816736,Low_spent_Small_value_payments,230.6736544,0,1.1335,-1.3073,0.2323,0.5696,1.0401 -0x1362d,CUS_0x6cec,August,20,208-12-1974,Writer,78208.96,,8,5,9,3,"Debt Consolidation Loan, Personal Loan, and Auto Loan",11.56488595,9,11.2,5,Standard,1419.42,34.39060577,,No,184.3775922,582.2945359,Low_spent_Small_value_payments,182.8692052,0,-1.0109,-1.3449,1.4943,-0.9402,1.0005 -0x13639,CUS_0x3551,August,19,162-44-5518,Mechanic,19797.56,,8,7,31,2,"Home Equity Loan, and Mortgage Loan",27.62301849,20,7.21,10,Bad,1793.37,32.28237087,14 Years and 11 Months,Yes,22.44875876,249.6855956,Low_spent_Small_value_payments,203.5453123,0,0.2052,-0.0822,-1.2823,-0.3016,-1.3325 -0x13645,CUS_0xc48d,August,38,525-99-8031,Writer,32579,2473.916667,7,6,11,4,"Auto Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",11.19983225,10,9.93,9,Standard,237.52,38.95202852,29 Years and 6 Months,Yes,86.82194247,26.76615846,High_spent_Medium_value_payments,383.8035657,0,0.4566,0.3751,-1.478,-0.3337,-0.2145 -0x13651,CUS_0x932,August,36,417-95-0656,Writer,75306.68,,2,4,5.288361749,2,"Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0,2,1.43,2,Good,103.22,25.7940314,31 Years and 5 Months,No,158.6074024,1140.819852,Low_spent_Small_value_payments,43.26587376,0,1.1477,0.0929,-0.9924,-0.2479,-1.1465 -0x1365d,CUS_0x63af,August,24,368-67-4929,Lawyer,3234780,7321.9325,8,3,8.288361749,0,Home Equity Loan,14.7659384,13,19.7,7,Standard,447.18,29.12556446,25 Years and 6 Months,Yes,40.10478564,622.6721806,High_spent_Small_value_payments,749.3537448,0,0.7436,1.5161,-0.1877,-0.4476,-0.6932 -0x13669,CUS_0xc2dd,August,22,813-68-9184,Architect,25433.4,,4,4,16,0,,,14,1.47,8,Standard,809.7987542,35.89406697,24 Years and 11 Months,NM,0,147.036144,Low_spent_Small_value_payments,351.573958,0,0.7569,0.9762,0.4479,0.1917,-0.0421 -0x13675,CUS_0x4972,August,22,148-03-8586,Accountant,18738.44,1411.536667,10,6,20,9,"Student Loan, Auto Loan, Home Equity Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Not Specified",24.30218535,17,20.93,8,Bad,2748.17,33.1190921,1 Years and 8 Months,Yes,136.2930224,,Low_spent_Small_value_payments,239.8786678,0,0.7154,0.6634,-0.5684,0.4208,-1.2336 -0x13681,CUS_0x2d76,August,51,035-96-6628,Accountant,48615.22,3937.268333,4,7,15,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Not Specified",,11,3.44,6,Standard,1235.05,35.25882383,16 Years and 10 Months,NM,135.3574337,,High_spent_Large_value_payments,455.0026601,0,0.687,-1.1648,-0.239,0.2403,-0.2514 -0x1368d,CUS_0x347b,August,30,812-16-1638,Engineer,17816.79,,6,5,31,5,"Personal Loan, Home Equity Loan, Student Loan, Not Specified, and Credit-Builder Loan",,24.97306613,8.44,7,_,2028.968516,30.1302019,11 Years and 11 Months,Yes,54.01042941,148.7334594,Low_spent_Small_value_payments,239.0293612,0,0.0041,0.7568,0.6865,0.1142,-0.8635 -0x13699,CUS_0x55b3,August,30,505-50-3068,Journalist,19606.68,,5,3,31,4,"Payday Loan, Student Loan, Not Specified, and Student Loan",14.07209145,9.600190902,12.15,10,Standard,1987.654428,26.0536339,11 Years and 5 Months,NM,68158,57.76144847,Low_spent_Small_value_payments,341.2855384,0,0.9873,-0.2611,-0.48,-1.4825,-0.0364 -0x136a5,CUS_0xb59e,August,30,#F%$D@*&8,Lawyer,23317.74,2109.145,4,303,12,3,"Home Equity Loan, Home Equity Loan, and Student Loan",19.38215672,14,0.6,2,Good,387.02,29.28343963,20 Years and 11 Months,No,32.03312743,98.3547358,!@9#%8,340.5266368,0,0.0259,0.9053,1.4211,-1.2119,-1.8337 -0x136b1,CUS_0xbcdd,August,43,551-45-1558,Entrepreneur,17286.51,1308.5425,3,3,17,1,Auto Loan,19.84077039,17,9.71,3,Standard,757.38,38.16462676,24 Years and 3 Months,No,12.24112016,85.06077218,High_spent_Small_value_payments,293.5523577,0,0.1195,0.0756,-1.0157,0.0456,-0.0223 -0x136bd,CUS_0xf84,August,34,618-81-3518,Lawyer,17260.57,,3,3,18,7,"Auto Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",17.427325,15,12.36,11,Standard,1496.49,38.89098492,16 Years and 11 Months,Yes,87.87147481,85.59696557,Low_spent_Medium_value_payments,241.269643,0,-0.19,0.3344,-0.1154,-0.879,-1.4695 -0x136c9,CUS_0x67ec,August,42,639-39-0670,Architect,77245.47,6671.1225,2,5,18,3,"Auto Loan, Credit-Builder Loan, and Not Specified",29.24370347,18,13.53,9,Standard,1251.67,28.76976178,23 Years and 9 Months,Yes,119.4671641,89.48576255,High_spent_Large_value_payments,698.1593234,0,-0.7142,0.1362,0.1867,1.0621,0.6998 -0x136d5,CUS_0x51b9,August,20,296-46-5676,Journalist,8220.625,588.0520833,8,9,24.95700519,6,"Not Specified, Student Loan, Personal Loan, Not Specified, Not Specified, and Mortgage Loan",,24.3192605,,15,Bad,5049.753979,33.91739422,1 Years and 5 Months,Yes,1361.301006,,Low_spent_Medium_value_payments,214.1424543,0,0.0831,-0.6335,-1.1698,1.1623,0.3145 -0x136e1,CUS_0x8b78,August,55,267-33-6948,Writer,80027.68,6652.973333,3,1,1.288361749,4,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Personal Loan",6.271336604,8,4.1,4,Good,21.75,38.3655782,27 Years and 8 Months,No,204.1540482,,Low_spent_Medium_value_payments,177.1603721,0,0.5361,0.5681,-0.9313,0.9345,-2.0205 -0x136ed,CUS_0x8823,August,55,220-68-1404,Musician,94639.11,7705.5925,3,4,15.28836175,2,"Credit-Builder Loan, Payday Loan, and Home Equity Loan",15.9691359,14,3.28,0,Standard,680.76,27.30563617,28 Years and 4 Months,No,3494,598.2196572,High_spent_Medium_value_payments,647.6759413,0,-0.4295,-0.0214,-1.8892,-0.7184,0.2878 -0x136f9,CUS_0x5aa7,August,46,443-67-6181,Journalist,21252.83,,4,5,9,2,"Student Loan, and Personal Loan",13.36568268,10,6.32,6,Good,233.8663119,35.38704561,26 Years and 8 Months,No,32.27022491,38.12164473,High_spent_Large_value_payments,351.5213015,0,1.0861,0.2656,0.4895,0.4192,-0.523 -0x13705,CUS_0x2778,August,41,531-52-1668,Developer,59453.48,,10,1356,33.95700519,6,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Student Loan, and Student Loan",42.50161959,23,26.85,9,Bad,3504.080954,30.15396763,2 Years and 2 Months,Yes,1514.848297,231.1355467,!@9#%8,303.5114532,0,-1.6488,-1.7856,-0.9202,-1.2938,-0.7835 -0x13711,CUS_0x8786,August,40,012-61-9198,Scientist,77095.8,,10,8,20.88954781,8,"Payday Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,21.77322614,17.87,10,Bad,3533.04195,25.30382581,2 Years and 5 Months,Yes,1657.281401,10000,High_spent_Medium_value_payments,346.4843275,0,-0.1231,0.9204,-1.8131,1.0667,0.3533 -0x1371d,CUS_0xc6c3,August,24,632-85-4331,_______,43729.32,3394.11,1048,5,32,9,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",39.30760262,19.98631691,1.86,9,_,1880.096509,27.5135317,5 Years and 9 Months,NM,233.6857318,47.98058547,High_spent_Medium_value_payments,307.7446827,0,1.1311,1.0572,-0.6022,-0.2882,0.434 -0x13729,CUS_0xba2a,August,43,832-73-8880,Journalist,33208.01,2494.334167,0,7,8.288361749,4,"Home Equity Loan, Not Specified, Payday Loan, and Payday Loan",0.009470549,4,11.11,5,Good,407.86,31.88717189,28 Years and 8 Months,No,75.66027411,,Low_spent_Small_value_payments,369.2218597,0,0.9227,0.9209,0.959,0.1784,-0.1512 -0x13735,CUS_0xb61a,August,80,993-89-4367,Writer,82934.76,,7,9,20,6,"Personal Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",38.66132959,18,4.11,13,_,3519.93,41.21744725,11 Years and 11 Months,NM,266.155814,178.9325793,High_spent_Medium_value_payments,466.0346067,0,-0.7671,-1.6526,0.0377,-1.7833,0.0298 -0x13741,CUS_0x7392,August,54,535-21-2576,Journalist,31226.77,,5,7,11,0,,,4.578632878,0.97,3,Good,1598.722997,28.62301461,,No,0,368.8441424,Low_spent_Small_value_payments,208.978941,0,0.4767,-0.7487,1.4004,-0.8049,0.6673 -0x1374d,CUS_0x21c1,August,53,#F%$D@*&8,Architect,107280.66,8671.055,5,5,10,1,Payday Loan,,13,13.23,4,Standard,1028.07,30.71611855,21 Years and 0 Months,Yes,51.4763744,338.5483585,Low_spent_Small_value_payments,767.0807671,0,-0.4032,-0.5797,-0.5746,0.1411,1.25 -0x13759,CUS_0x7699,August,22,152-69-5817,Developer,157299.48,13009.29,3,6,8,0,,0.750425564,3,1.01,2,Good,651.07,46.10143312,33 Years and 4 Months,No,0,,High_spent_Medium_value_payments,1141.86584,0,0.0569,-1.8089,0.047,1.5747,0.4395 -0x13765,CUS_0x508c,August,55,212-99-0909,Engineer,28420.92,,2,5,4,4,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,11,4.55,3,Good,401.6671114,40.87136503,24 Years and 5 Months,NM,86.15357285,106.0561726,Low_spent_Small_value_payments,347.7231873,0,-0.3837,-0.9405,-0.0783,-1.4297,-0.9645 -0x13771,CUS_0xba01,August,41,685-80-6053,Musician,17844.81,,6,5,23,6,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Not Specified, and Credit-Builder Loan",23.26731929,17,27.47,11,_,3962.26,32.24423089,3 Years and 0 Months,Yes,54.95751568,,High_spent_Small_value_payments,250.2988865,0,0.9446,1.1096,-1.6015,0.5665,1.345 -0x1377d,CUS_0xc1d7,August,80,905-30-7439,Musician,152947.12,12772.59333,1,3,1.288361749,0,Auto Loan,0,2,1.76,3,Good,1227.12,34.29949745,33 Years and 3 Months,No,75.19482963,903.4001299,High_spent_Medium_value_payments,968.6018348,0,1.9089,0.9253,0.9682,-0.99,-0.228 -0x13789,CUS_0x6b4d,August,36,901-60-2835,Media_Manager,47458.54,3860.878333,3,3,8,4,"Home Equity Loan, Home Equity Loan, Not Specified, and Personal Loan",17.3388894,16.05300728,7.6,6,Standard,638.2149329,35.87221222,7 Years and 5 Months,Yes,127.7286475,114.4537244,Low_spent_Medium_value_payments,423.9054614,0,-1.2269,0.0772,-0.429,-2.2946,-0.6621 -0x13795,CUS_0x679e,August,21,733-65-8835,Teacher,29258.69,,7,7,12,7,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",17.53352798,10.43831115,8.37,9,Standard,1474.039081,39.65633934,13 Years and 0 Months,Yes,164.0814713,44.61834738,High_spent_Medium_value_payments,315.022598,0,-1.7798,-1.7032,-0.4204,0.6194,-0.455 -0x137a1,CUS_0x69a2,August,25,445-37-3242,Scientist,32669.33,2850.444167,3,4,7,1,Not Specified,,14,3.7,2,Standard,154.63,38.5420122,19 Years and 6 Months,No,16.36698149,10000,Low_spent_Large_value_payments,315.3331321,0,-0.4777,-1.5198,-1.4806,0.0857,-0.7587 -0x137ad,CUS_0xdf5,August,20,780-69-0619,Doctor,21153.98,1520.831667,6,3,8,3,"Home Equity Loan, Auto Loan, and Payday Loan",18.20177166,15,8.6,0,_,951.68,40.19695923,32 Years and 6 Months,Yes,30.94777511,201.3457505,Low_spent_Small_value_payments,209.789641,0,0.9907,1.6546,-0.2516,-0.1682,-0.6187 -0x137b9,CUS_0x4056,August,46,077-34-1491,_______,71842.8,6101.9,3,7,11.28836175,2,"Payday Loan, and Credit-Builder Loan",10.82254874,10,7.41,4,_,39.31,29.69929061,27 Years and 2 Months,No,65.27357157,,High_spent_Medium_value_payments,614.4914873,0,2.5409,1.1296,1.5975,0.3355,1.1387 -0x137c5,CUS_0x6a27,August,80,607-78-8122,Architect,19890.14,1595.511667,3,6,13,2,"Mortgage Loan, and Home Equity Loan",22.29165263,18,18.74,10,Standard,98.81,29.06791788,9 Years and 9 Months,Yes,25.42711832,145.492925,Low_spent_Large_value_payments,258.6311234,0,-0.6229,0.7327,0.1285,-0.8524,-0.2678 -0x137d1,CUS_0x4c64,August,58,574-11-4911,Teacher,39057.08,3502.756667,0,5,9.288361749,4,"Auto Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",0,2,2.99,4,Good,331.712742,27.03580243,33 Years and 8 Months,NM,108.1196752,12079.66734,Low_spent_Large_value_payments,356.5538213,0,1.4455,1.1391,0.4705,-1.1856,-0.9735 -0x137dd,CUS_0xaabb,August,44,432-34-3192,Teacher,8265.3,827.775,8,10,18.88954781,6,"Payday Loan, Personal Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",,15,15.5,14,Standard,2256.44,25.44776065,5 Years and 11 Months,Yes,1358.982414,50.52872847,Low_spent_Small_value_payments,268.9362762,0,0.2973,1.0853,0.3938,0.9115,-1.2081 -0x137e9,CUS_0x3b4f,August,26,090-15-8892,Manager,17965.72,1295.143333,7,8,33.06745738,2,"Mortgage Loan, and Auto Loan",24.83731113,11.58338117,16.91,10,Standard,3219.349576,27.22470869,20 Years and 2 Months,Yes,17.05915245,148.8577775,Low_spent_Small_value_payments,226.8771154,0,-0.1987,2.3739,-0.2802,-0.2333,0.744 -0x137f5,CUS_0x421d,August,25,026-17-5849,Engineer,49675.38,,9,6,23.06745738,2,"Payday Loan, and Debt Consolidation Loan",,,14.75,12,Standard,3270.350116,28.80743576,12 Years and 4 Months,Yes,57.52334545,193.4652046,High_spent_Small_value_payments,393.252662,0,0.8329,-0.49,0.0912,-2.0269,0.6697 -0x13801,CUS_0x2881,August,26,917-87-8940,Accountant,41360.3,,3,7,12,100,Student Loan,15.37998339,13.4040715,9.31,0,Good,286.925554,26.51979653,21 Years and 6 Months,No,33.64768787,59.82082662,High_spent_Large_value_payments,489.0006522,0,0.433,-0.3783,1.5019,0.9972,-0.7386 -0x1380d,CUS_0x1aaf,August,24,750-26-4712,Engineer,42474.48,3101.080414,8,5,29,2,"Not Specified, and Not Specified",24.55610313,19,10.66,7,Standard,2637.96,25.33866131,12 Years and 9 Months,NM,499.9292444,43.39854416,High_spent_Large_value_payments,507.7857974,0,-1.2037,0.1659,-0.0133,0.6795,1.0849 -0x13819,CUS_0x61ba,August,38,778-88-8851,Entrepreneur,71111.1,,8,6,14,2,"Personal Loan, and Personal Loan",26.27143871,17.83953701,12.14,9,Standard,1231.46649,27.12529732,10 Years and 8 Months,Yes,80.10439038,53.72614543,!@9#%8,717.5619642,0,-0.6081,1.4112,1.334,-2.3979,0.5443 -0x13825,CUS_0xbfb5,August,45,#F%$D@*&8,Accountant,92561.2,7987.433333,8,3,15,3,"Payday Loan, Debt Consolidation Loan, and Student Loan",14.20708884,10,11.71,3,Standard,267.55,27.19044576,16 Years and 9 Months,Yes,189.3057444,194.1625308,High_spent_Medium_value_payments,665.2750581,0,1.0461,-1.4386,-3.0202,3.097,-0.7428 -0x13831,CUS_0x6dd3,August,50,111-44-1332,Scientist,26693.06,,7,5,6,4,"Not Specified, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,22.58849554,10.72,6,Standard,653.1078084,32.41417374,21 Years and 9 Months,No,53.25464283,117.2989548,Low_spent_Small_value_payments,363.1885691,0,-0.2313,1.9774,-0.6387,-0.9246,-1.3158 -0x1383d,CUS_0x9e43,August,18,384-48-7123,Accountant,16310.84,,7,6,8,4,"Student Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",,17,6.29,3,Standard,217.4,35.39604374,22 Years and 0 Months,No,35.56976024,102.7339815,Low_spent_Small_value_payments,285.0199249,0,0.4425,2.0566,0.0605,-0.6307,0.6182 -0x13849,CUS_0x6420,August,32,313-22-4562,Teacher,19077.25,1371.684255,10,8,28.88954781,6,"Credit-Builder Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",,21.80351479,7.6,11,Bad,4332.756607,26.69721277,,NM,1458.528894,92.17535931,Low_spent_Large_value_payments,249.129327,0,0.7359,0.9252,-0.982,-1.8062,0.499 -0x13855,CUS_0x3f75,August,55,841-56-7167,Media_Manager,28105.59,2133.1325,1,3,0.288361749,2,"Not Specified, Payday Loan, and Not Specified",4.778899995,8,6.44,6,Good,151.29,25.70159795,,No,54.99993831,450.9029033,High_spent_Medium_value_payments,377.3478694,0,-1.4468,0.3075,-1.0044,0.0902,-1.2748 -0x13861,CUS_0xb001,August,37,130-15-7471,Scientist,148729.12,12557.09333,2,5,1.288361749,2,"Auto Loan, Auto Loan, and Personal Loan",15.24221231,14,10.48,4,_,130.56,42.72483161,29 Years and 5 Months,No,198.496377,643.0654433,High_spent_Large_value_payments,1074.084974,0,0.0006,-0.1253,-0.1421,0.5801,-0.2593 -0x1386d,CUS_0x82b6,August,32,883-00-8749,Scientist,58765.53,5048.1275,6,6,27,100,"Student Loan, Not Specified, Home Equity Loan, Payday Loan, Payday Loan, Not Specified, and Personal Loan",42.54173519,24,3.16,9,_,1975.55,30.06961492,8 Years and 10 Months,Yes,178.6369244,65.05478608,High_spent_Medium_value_payments,511.1210395,0,-0.9295,-1.1442,-1.6847,-1.7725,-0.812 -0x13879,CUS_0x23b9,August,41,671-79-4575,Lawyer,22125.96,,2,799,12,4,"Debt Consolidation Loan, Student Loan, Home Equity Loan, and Home Equity Loan",5.914368094,5,0.69,2,Good,828.16,39.26433689,23 Years and 3 Months,No,66.2101143,63.78649077,Low_spent_Medium_value_payments,313.2863949,0,1.9168,0.5473,0.0685,0.0878,1.5482 -0x13885,CUS_0x25e3,August,30,177-35-0873,Journalist,75354.48,,8,10,31,9,"Mortgage Loan, Personal Loan, Personal Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Auto Loan, and Home Equity Loan",,25.49011485,9.01,7,Bad,3067.684565,33.07138745,10 Years and 0 Months,Yes,349.8449421,249.0437272,Low_spent_Medium_value_payments,337.4653307,0,-0.1587,1.0632,0.2823,1.0919,0.2577 -0x13891,CUS_0x663d,August,42,320-70-8885,Writer,60106.11,,6,9,32,3,"Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",,4959.522307,11.5,477,Standard,1628.40461,27.60980664,19 Years and 11 Months,Yes,102.2426785,156.844315,High_spent_Medium_value_payments,480.4972564,0,1.3833,1.3807,-0.1873,0.2894,-0.6397 -0x1389d,CUS_0x6f11,August,26,881-68-5762,Developer,30815.44,2753.953333,5,5,9,3,"Payday Loan, Credit-Builder Loan, and Mortgage Loan",11.91599174,8,19.14,8,_,1413.42,24.98877875,11 Years and 8 Months,Yes,56.17702853,143.0246278,Low_spent_Small_value_payments,366.193677,0,-0.7282,0.1029,-0.5959,1.8338,-0.9592 -0x138a9,CUS_0x30f8,August,50,894-72-5781,Writer,35139.27,,1,5,8,3,"Not Specified, Debt Consolidation Loan, and Not Specified",16.82802487,,-3.81,,_,853.2187723,29.85771581,29 Years and 5 Months,No,76.85758996,180.8924329,Low_spent_Small_value_payments,350.3854497,0,0.4428,-1.2623,2.2334,-1.189,-1.5843 -0x138b5,CUS_0x79bc,August,18,#F%$D@*&8,Doctor,20986.84,,9,10,18.06745738,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",30.44408497,18.34728766,19.35,11,Bad,2344.088153,25.17244156,10 Years and 4 Months,NM,49.83825004,77.65550445,High_spent_Small_value_payments,290.4762909,0,-0.7835,-1.0526,-0.073,0.5168,0.916 -0x138c1,CUS_0xfac,August,32,058-63-9425,Manager,20908.12,1566.907682,796,4,15.06745738,4,"Debt Consolidation Loan, Auto Loan, Auto Loan, and Home Equity Loan",12.36676678,8,4.17,2,Standard,1533.376344,27.3913461,27 Years and 10 Months,NM,139.1726577,24.45476239,High_spent_Large_value_payments,303.6743667,0,0.0802,-0.4525,0.4642,-0.1934,-0.424 -0x138cd,CUS_0x1c65,August,24,238-12-2167,Media_Manager,90783.75,7727.3125,4,3,3,0,,,18,-4.52,5,Good,54.93,41.29249256,21 Years and 11 Months,NM,0,,High_spent_Large_value_payments,961.0366172,0,0.6039,-0.4217,-0.5757,0.196,0.6645 -0x138d9,CUS_0x62d7,August,25,986-07-4110,Engineer,56387.92,4514.993333,7,6,25.06745738,1182,"Not Specified, Auto Loan, Payday Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",26.46467812,18,16.01,8,_,3791.080954,23.59021269,3 Years and 0 Months,Yes,241.7206581,427.2118177,Low_spent_Small_value_payments,45.84656964,0,-1.5084,0.6605,0.4749,-1.041,-0.0546 -0x138e5,CUS_0xc4dd,August,30,037-87-8652,Musician,17943.38,,8,10,22,2,"Student Loan, and Student Loan",,20,,14,_,1961.87,38.15937329,9 Years and 10 Months,Yes,20.60933525,80.36248018,Low_spent_Large_value_payments,332.0563512,0,0.4388,-0.5801,-0.34,1.0241,-0.1274 -0x138f1,CUS_0x5a8b,August,39,127-28-6453,Teacher,41771.88,,3,6,1550,2,"Payday Loan, and Credit-Builder Loan",18.4832603,13.52658891,0.94,7,_,2430.186768,28.65931988,12 Years and 5 Months,Yes,58.64897434,,High_spent_Medium_value_payments,489.608621,0,1.9617,0.2798,2.4504,-0.3361,1.9108 -0x138fd,CUS_0x23a4,August,42,381-82-1832,Lawyer,53876.88,,8,7,19,5,"Personal Loan, Not Specified, Student Loan, Mortgage Loan, and Home Equity Loan",31.95669082,13.22271612,19.96,14,_,1455.015464,24.00239692,19 Years and 9 Months,Yes,18868,221.0114903,High_spent_Small_value_payments,326.9528021,0,-0.5482,0.4053,0.4722,-1.0001,-0.2526 -0x13909,CUS_0x7e76,August,38,650-77-3931,Teacher,87629.7,,5,6,17,4,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",24.91824787,18,8.72,6,Standard,526.26,26.67977663,23 Years and 10 Months,Yes,178.4828137,357.8727626,Low_spent_Large_value_payments,467.0919238,0,0.3118,0.1946,2.7945,0.9228,-0.3766 -0x13915,CUS_0xc48b,August,25,646-19-1536,Entrepreneur,14539.01,,8,8,19.95700519,7,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",47.92512142,30.03152069,3.16,8,Bad,3196.774815,37.67316433,12 Years and 6 Months,Yes,1372.804317,,Low_spent_Small_value_payments,189.0376296,0,-0.7705,-0.6804,-0.5893,0.2586,-1.9324 -0x13921,CUS_0x265a,August,41,475-48-0414,Doctor,56270.46,4836.205,6,3,16,2,"Student Loan, and Payday Loan",,21,15.45,9,Standard,1570.56,35.25472422,12 Years and 11 Months,Yes,79.63089871,120.5891024,High_spent_Small_value_payments,543.4004989,0,1.7115,0.5042,-1.6481,0.3365,-0.1091 -0x1392d,CUS_0x715e,August,22,474-39-3036,Musician,17560.74,,10,6,15,3,"Payday Loan, Student Loan, and Student Loan",,20.27805431,8.71,7,Bad,2628.99336,30.11031221,10 Years and 3 Months,NM,35.13564075,,Low_spent_Small_value_payments,213.5352139,0,1.5184,0.3929,-1.5844,0.6834,0.3484 -0x13939,CUS_0x9a93,August,55,803-10-0905,Journalist,30412.85,2781.404167,3,4,14,0,,4.431987949,7,5.81,2,Standard,1220.51,34.12946222,27 Years and 6 Months,NM,0,148.6434294,High_spent_Small_value_payments,389.4969873,0,0.027,0.8598,-0.0322,0.7366,1.3812 -0x13945,CUS_0xa570,August,34,772-62-5695,Writer,9999.42,797.244797,8,6,14,3,"Payday Loan, Not Specified, and Credit-Builder Loan",13.42754591,12,1.56,2,Standard,153.12,30.7002468,28 Years and 3 Months,No,112.675367,89.5636781,Low_spent_Small_value_payments,267.6296579,0,-1.1135,-0.2357,-1.0402,-0.2843,2.2537 -0x13951,CUS_0x4fc1,August,52,945-39-2972,_______,133424.52,10127.54814,4,5,7.288361749,0,,0,2,17.38,2,Good,465.7252908,39.86825726,,No,915.1618566,606.1262959,High_spent_Large_value_payments,1179.773786,0,2.4508,-0.4379,-1.2978,-0.6932,0.1489 -0x1395d,CUS_0xb57b,August,47,891-87-0301,Accountant,22407.57,,9,4,13,1,Personal Loan,10.9448643,11,4.65,8,Standard,359.41,38.14348323,,No,9.406579838,66.72839149,High_spent_Small_value_payments,351.5947787,0,1.4393,-0.0645,-0.37,0.6395,1.471 -0x13969,CUS_0x78a7,August,47,561-74-1832,Lawyer,11777816,,5,7,11,0,,,,11.35,3,_,1069.592317,33.6915079,22 Years and 2 Months,Yes,0,812.224537,Low_spent_Small_value_payments,641.4197963,0,0.0506,0.6403,-1.0561,-0.8199,0.3793 -0x13975,CUS_0x4340,August,20,568-75-9435,Teacher,66061.04,5762.086667,6,5,22,3,"Personal Loan, Auto Loan, and Mortgage Loan",29.57697865,22,4.92,17,Bad,1801.38,32.34694101,12 Years and 9 Months,Yes,100.8021863,208.003213,!@9#%8,557.4032674,0,0.1392,2.3126,-1.8653,0.6941,1.4471 -0x13981,CUS_0x6568,August,27,956-80-0633,Lawyer,38493.68,,4,4,15,2,"Personal Loan, and Not Specified",,20,22.03,4,Standard,2277.198064,32.47687611,7 Years and 6 Months,Yes,36.46477122,,Low_spent_Small_value_payments,227.9466643,0,-1.34,1.1038,0.154,-0.7507,1.5559 -0x1398d,CUS_0x1c9c,August,28,#F%$D@*&8,Musician,64425.78,5254.815,1,3,8,4,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,9.457081045,2.69,1,Good,784.72705,32.61044712,,No,165.5650526,318.7564698,Low_spent_Small_value_payments,331.1599776,0,-1.0859,1.207,-1.6655,-1.1224,0.3689 -0x13999,CUS_0x980b,August,39,331-56-3918,Doctor,147048.8,12299.06667,0,1,10,1,Payday Loan,12.81829125,,3.14,4,Good,1081.65971,34.60560502,32 Years and 9 Months,No,77.93148847,,High_spent_Medium_value_payments,1130.724486,0,0.1368,-0.0273,-0.1956,-2.2052,1.182 -0x139a5,CUS_0x3c51,August,50,455-21-1131,Media_Manager,21662.395,,3,5,1,1,Student Loan,9.479366614,9.242911367,1.27,6,Good,711.9125825,35.15523092,16 Years and 4 Months,No,12.84127202,115.813511,Low_spent_Medium_value_payments,312.9651754,0,0.0532,-0.6597,-0.0751,-0.2778,-0.6368 -0x139b1,CUS_0x2f38,August,19,520-31-3047,Teacher,125854.12,,6,4,11.28836175,2,"Debt Consolidation Loan, Student Loan, and Auto Loan",15.19756967,14,10.69,6,Standard,1121.345253,36.82550427,23 Years and 0 Months,Yes,171.7727582,604.1266132,High_spent_Medium_value_payments,969.8920536,0,0.313,0.3234,-1.1006,-0.1089,1.116 -0x139bd,CUS_0x73ae,August,18,357-90-6128,Entrepreneur,64815.64,5627.303333,9,6,28,9,"Mortgage Loan, Not Specified, Home Equity Loan, Auto Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",,21.47142185,25.79,15,_,2778.138984,27.14954625,6 Years and 0 Months,Yes,25168,379.9129868,!@9#%8,86.11988758,0,0.75,0.8437,-1.2543,0.2156,-1.0157 -0x139c9,CUS_0x6793,August,33,201-71-4544,_______,94609.02,7861.085,7,7,7,1,Mortgage Loan,7.719531348,6,15.07,6,Standard,707.52,26.53047204,29 Years and 6 Months,NM,52.85799616,70.71377158,High_spent_Large_value_payments,902.5367323,0,-1.1291,-0.7708,0.0682,-1.0907,1.8252 -0x139d5,CUS_0x1236,August,25,144-88-9752,Scientist,28352.24,,4,4,7,3,"Personal Loan, Student Loan, and Mortgage Loan",0,0,9.02,0,Good,1085.7,23.10198935,16 Years and 10 Months,No,46.39072976,101.7152477,Low_spent_Small_value_payments,380.4626892,0,-0.781,0.3783,-0.7417,0.4942,-0.439 -0x139e1,CUS_0x9382,August,19,005-16-5195,Writer,9857.68,,8,8,30.88954781,8,"Mortgage Loan, Not Specified, Auto Loan, Payday Loan, Payday Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",30.10169593,22.91563458,17.32,13,Bad,3307.573198,31.23890507,8 Years and 6 Months,Yes,1357.547379,50.15384226,Low_spent_Medium_value_payments,282.1160311,0,0.1579,1.0707,1.5142,0.1664,-1.5872 -0x139ed,CUS_0x6590,August,39,059-11-3992,Mechanic,33002.23,,5,2,1,2,"Not Specified, and Credit-Builder Loan",0,2,10.71,7,_,1369.63,34.05657646,15 Years and 9 Months,No,42.19644173,52.67733303,High_spent_Large_value_payments,393.6448086,0,-0.4669,-1.6302,1.3989,-0.6648,-0.4161 -0x139f9,CUS_0x2301,August,44,206-55-6571,Doctor,27597.71,,6,4,13,1,Payday Loan,17.90976167,14.09602852,1.08,6,_,1538.3487,31.02441772,18 Years and 4 Months,No,18.34064321,214.9687552,Low_spent_Small_value_payments,270.2715182,0,1.2497,0.7327,0.2475,-0.2596,-1.259 -0x13a05,CUS_0x2bfb,August,27,627-00-9103,Engineer,15875.55,,6,7,19.06745738,7,"Home Equity Loan, Not Specified, Home Equity Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Student Loan",34.69843763,13.6286584,17.1,8,Standard,3054.723187,28.26270979,10 Years and 6 Months,Yes,89.76562703,10000,Low_spent_Large_value_payments,215.9919978,0,0.6201,0.0608,1.0448,0.6257,-1.3662 -0x13a11,CUS_0x6db3,August,34,588-36-6834,Lawyer,19667.73,,10,9,20.95700519,8,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Auto Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",24.91186017,16,17.73,10,Bad,4750.300954,32.94613158,6 Years and 3 Months,NM,9411.483444,73.78267469,Low_spent_Small_value_payments,231.3701229,0,0.9892,-0.1505,0.8317,0.4493,-1.7016 -0x13a1d,CUS_0x9f6c,August,26,765-21-4223,Accountant,38049.96,3132.83,8,8,29.95700519,8,"Auto Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Payday Loan, Home Equity Loan, and Auto Loan",40.20337031,24.15470163,2.07,10,Bad,3745.60527,40.02493455,6 Years and 0 Months,Yes,1498.63876,,Low_spent_Small_value_payments,184.4402131,0,0.2612,-1.5137,1.883,0.5421,-1.0416 -0x13a29,CUS_0x4b5e,August,26,272-77-3454,Scientist,85721.82,,4,3,8,0,,,4.697770066,8.82,4,Good,1260.215399,31.77597945,31 Years and 4 Months,No,0,265.3305987,!@9#%8,722.9179013,0,1.6877,-1.3087,0.7227,0.2118,-2.1979 -0x13a35,CUS_0x987d,August,28,235-10-4940,Musician,21060.63,,5,6,20,4,"Not Specified, Debt Consolidation Loan, Auto Loan, and Student Loan",15.41974389,12,10.73,7,Standard,1072.32,25.44145774,16 Years and 9 Months,NM,42.82585436,,Low_spent_Small_value_payments,235.2404942,0,0.8228,0.6547,-2.1317,0.0891,-0.7981 -0x13a41,CUS_0x2bf3,August,47,491-94-9987,Scientist,122658.64,,8,3,14,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,10,11.98,2,_,210.65,27.18027785,30 Years and 8 Months,No,155.4101407,10000,Low_spent_Medium_value_payments,590.3600102,0,0.061,-1.1285,0.4961,1.5058,-1.0008 -0x13a4d,CUS_0xb7f7,August,24,447-43-3640,Teacher,66250.64,,8,6,18,7,"Auto Loan, Mortgage Loan, Student Loan, Personal Loan, Personal Loan, Not Specified, and Not Specified",22.19059462,10,13.28,8,Standard,2073.32,25.86424545,6 Years and 3 Months,Yes,249.1620826,148.4025795,!@9#%8,423.8240045,0,0.9238,-0.4535,1.4958,-1.2503,-0.755 -0x13a59,CUS_0xaa29,August,49,794-72-8882,Writer,17258.715,,4,7,10,0,,10.03297626,12,11.09,1,Good,741.09,23.6967637,33 Years and 6 Months,No,0,140.0833903,Low_spent_Medium_value_payments,309.0392347,0,-0.1121,-1.0327,-0.5803,1.0681,-0.4636 -0x13a65,CUS_0x45cc,August,39,687-09-1058,Entrepreneur,15251.19,1144.9325,6,6,18,5,"Not Specified, Payday Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",20.46627451,16,9.85,8,Standard,1889.3,25.95440592,5 Years and 9 Months,Yes,43.74576037,,High_spent_Small_value_payments,269.3839603,0,-0.4776,-1.6251,0.4309,-0.5283,0.0597 -0x13a71,CUS_0x50e1,August,39,894-78-9681,Scientist,16046.49,,5,7,22,7,"Student Loan, Not Specified, Credit-Builder Loan, Not Specified, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",20.25866485,15,17.25,11,_,2297.22,40.11866159,18 Years and 4 Months,NM,177.7115251,,Low_spent_Medium_value_payments,243.8150796,0,-1.2173,0.4973,-0.4972,-0.7917,1.4339 -0x13a7d,CUS_0x2059,August,48,#F%$D@*&8,Journalist,121503.72,10000.31,4,6,3,2,"Home Equity Loan, and Payday Loan",0.691200779,1,-2.14,2,_,128.68,38.36845078,,No,189.119319,,Low_spent_Small_value_payments,6.991862421,0,-1.0114,-0.4159,-0.0697,-0.2779,1.3746 -0x13a89,CUS_0x4c09,August,33,271-16-7396,Mechanic,128501.8,,3,8,6.288361749,2,"Mortgage Loan, Debt Consolidation Loan, and Auto Loan",,3,1.25,0,Good,833.92,36.53988051,29 Years and 4 Months,No,175.3479404,665.2148162,High_spent_Large_value_payments,881.8230377,0,-0.7973,1.0674,0.2687,-1.2026,-0.259 -0x13a95,CUS_0x3a50,August,36,961-89-2245,Entrepreneur,8308.13,,10,9,21.95700519,7,"Personal Loan, Payday Loan, Personal Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",21.71724901,13.15156403,17.96,11,Standard,3264.85941,39.09109903,16 Years and 3 Months,Yes,1351.083768,,Low_spent_Small_value_payments,233.4834159,0,-0.9255,1.3241,1.2904,0.827,0.4846 -0x13aa1,CUS_0xd20,August,80,273-87-4456,Journalist,25527.32,,3,5,6,0,,22.36292742,16,-3.5,3,Standard,906.11,34.19163411,17 Years and 6 Months,No,0,205.7379937,!@9#%8,277.989673,0,-0.8977,1.0739,-1.2418,-0.8174,-0.5341 -0x13aad,CUS_0x6c8f,August,47,079-46-2572,Writer,31029.87,2856.8225,1,4,2723,2,"Credit-Builder Loan, and Personal Loan",0.61654744,3,1.61,3,Good,1347.05,38.56927241,16 Years and 3 Months,No,34.94921997,,High_spent_Medium_value_payments,458.5435249,0,-0.1979,-0.0365,-0.5073,0.6811,-0.1409 -0x13ab9,CUS_0x1fc1,August,51,517-59-6831,_______,31501.87,,5,3,16,2,"Home Equity Loan, and Personal Loan",,13,15.25,3,Standard,294.2239459,38.01331494,30 Years and 3 Months,NM,37.42615839,55.78799739,High_spent_Small_value_payments,423.0695008,0,-0.8197,0.6922,1.017,-0.2047,-0.4788 -0x13ac5,CUS_0xa936,August,20,217-12-4152,_______,131488.44,11031.37,7,7,4,3,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,17,3.95,4,Good,1024.09,42.69378163,28 Years and 4 Months,No,203.0917247,139.6636088,High_spent_Large_value_payments,1000.381666,0,-0.2458,-0.8592,0.6188,-0.9104,0.0631 -0x13ad1,CUS_0xb888,August,37,922-43-4216,Engineer,10189.235,557.1029167,7,3,25,7,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Not Specified, and Mortgage Loan",16.70399863,14.99100593,11.77,7,_,1581.836411,38.05192066,,Yes,33.10397924,,Low_spent_Small_value_payments,259.5535685,0,-0.3016,-0.2381,-1.0842,0.2382,2.3589 -0x13add,CUS_0x9684,August,38,169-39-0733,Developer,15108.07,,6,10,31,5,"Personal Loan, Student Loan, Credit-Builder Loan, Not Specified, and Auto Loan",23.31469167,15,26.34,14,Bad,3650.33,22.74305942,6 Years and 4 Months,Yes,42751,,Low_spent_Small_value_payments,220.8174534,0,0.8594,0.606,-1.0344,-1.3482,1.0545 -0x13ae9,CUS_0x12ec,August,42,836-23-7353,Scientist,45675,,8,5,28,4,"Home Equity Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",20.8782868,,10.51,8,Standard,1952.929446,37.76324166,6 Years and 5 Months,Yes,134.2702558,146.5630864,High_spent_Medium_value_payments,332.6916578,0,-0.8646,0.9046,0.2076,0.7264,1.1993 -0x13af5,CUS_0x419d,August,20,544-04-6202,Developer,35662.88,,8,3,34,4,"Auto Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,15.3554704,18.19,11,Standard,2668.659445,24.78390632,19 Years and 2 Months,Yes,60.78774439,220.264815,Low_spent_Large_value_payments,258.6381073,0,0.9412,0.614,-0.2217,-0.0947,1.3969 -0x13b01,CUS_0x2646,August,45,261-90-8736,Journalist,7807.285,606.6070833,4,6,13,2,"Debt Consolidation Loan, and Debt Consolidation Loan",25.46238842,20,16.31,4,Standard,692.63,38.48315501,7 Years and 0 Months,Yes,7.771075085,75.01807778,Low_spent_Small_value_payments,267.8715555,0,1.0412,-0.1083,0.9967,2.2107,-1.7758 -0x13b0d,CUS_0xa234,August,22,668-83-2972,Media_Manager,132265.36,10823.06006,6,7,16,6,"Payday Loan, Student Loan, Home Equity Loan, Student Loan, Payday Loan, and Mortgage Loan",25.68033471,17,15.65,11,Standard,551.3786423,40.33437306,5 Years and 11 Months,Yes,859.5166282,158.7575936,High_spent_Large_value_payments,808.5585074,0,-0.9999,-0.6091,0.0248,2.4245,-0.5585 -0x13b19,CUS_0xc734,August,38,946-82-3382,Media_Manager,27305.93,,3,4,19,0,,25.14741526,17,8.93,6,Standard,454.4,29.45159818,,Yes,0,26.37843941,High_spent_Medium_value_payments,452.5709773,0,-0.0498,0.183,0.527,0.0116,-0.9062 -0x13b25,CUS_0x6694,August,26,822-69-2443,Accountant,17794.98,1666.915,7,7,20.06745738,7,"Auto Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Student Loan, and Auto Loan",,22.14844066,4.01,,Bad,3087.013837,30.51681543,9 Years and 0 Months,Yes,68.50830127,18.39272722,!@9#%8,303.0701836,0,-0.4658,-1.9167,-1.008,2.7009,-0.4164 -0x13b31,CUS_0x3d76,August,30,479-80-1683,Journalist,25145.36,,3,3,18,2,"Payday Loan, and Not Specified",20.57486564,17,14.2,0,_,904.83,30.21316655,32 Years and 8 Months,Yes,31.28002924,25.33088074,High_spent_Medium_value_payments,398.1337567,0,0.2252,-0.4263,0.0406,0.0436,0.4965 -0x13b3d,CUS_0x7180,August,21,729-89-1122,Accountant,8373.24,,6,8,28.95700519,6,"Mortgage Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",,15,17.19,10,Bad,3848.880954,36.98129949,1 Years and 11 Months,NM,1353.023661,,Low_spent_Large_value_payments,199.3415021,0,0.4759,-1.0581,-0.5274,-1.0623,0.5045 -0x13b49,CUS_0xa465,August,32,762-10-5895,Engineer,34433.04,,7,3,7,0,,23.10630509,16,15.93,1,Standard,1408.75,23.49310803,32 Years and 4 Months,NM,0,,High_spent_Small_value_payments,422.058781,0,-1.6692,0.2276,-0.0184,0.054,2.5015 -0x13b55,CUS_0xa57b,August,29,872-67-1118,Teacher,20616.63,,6,6,16.06745738,6,"Personal Loan, Debt Consolidation Loan, Not Specified, Auto Loan, Not Specified, and Credit-Builder Loan",26.08237501,17,29.79,10,Bad,3612.450954,31.94693218,,Yes,70.57295724,124.7897016,Low_spent_Large_value_payments,226.3223033,0,-1.8166,-1.121,2.2478,0.3196,-0.4 -0x13b61,CUS_0x268d,August,29,#F%$D@*&8,_______,32842.44,,5,3,5,3,"Debt Consolidation Loan, Home Equity Loan, and Payday Loan",18.97619615,,15.08,3,_,1399.25,38.3546969,32 Years and 3 Months,Yes,48.04155063,,High_spent_Small_value_payments,413.3091942,0,-0.7071,-1.5945,0.2743,1.1077,-1.415 -0x13b6d,CUS_0xbef3,August,22,239-39-4735,Manager,9155.455,470.9545833,6,7,24,5,"Home Equity Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Mortgage Loan",,20,27.14,11,Bad,3914.45,36.41267773,,Yes,24.30024577,41.60576885,Low_spent_Small_value_payments,271.1894437,0,-0.8639,-0.9264,-0.976,-1.2716,0.7183 -0x13b79,CUS_0x5d1a,August,31,825-11-2838,Architect,40115.26,,8,4,9,4,"Student Loan, Auto Loan, Not Specified, and Personal Loan",23.56125935,18,16.45,13,Standard,28.98,25.86813154,16 Years and 3 Months,Yes,82.27202771,,High_spent_Medium_value_payments,437.5161732,0,1.864,-1.4313,0.725,0.3388,0.2594 -0x13b85,CUS_0x51c0,August,32,591-34-8676,Mechanic,14834.98,1236.248333,7,5,18.06745738,6,"Auto Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Student Loan",,25.91536083,8.52,6,Bad,4810.623076,40.89774709,12 Years and 0 Months,Yes,55.2147459,69.95240999,Low_spent_Small_value_payments,261.7373895,0,-1.5805,0.0311,-0.1646,-0.5171,-1.8934 -0x13b91,CUS_0x3db1,August,44,091-80-2935,Journalist,35871.7,,3,6,6,1,Personal Loan,3.275785214,4,7.87,5,Good,176.96,32.61640125,27 Years and 11 Months,No,24.57464246,83.78292951,!@9#%8,454.7732614,0,-1.5286,-0.7814,-1.2104,-0.6484,0.8686 -0x13b9d,CUS_0x8c39,August,35,947-41-5130,Entrepreneur,58955.56,4686.963333,4,6,34,6,"Not Specified, Student Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",,,19.06,10,Standard,2507.648335,38.6909577,18 Years and 4 Months,Yes,160.5393002,138.6086285,Low_spent_Medium_value_payments,449.5484047,0,0.5495,-1.5115,-0.6339,0.2281,0.0296 -0x13ba9,CUS_0x17c4,August,27,556-40-1723,Teacher,16962.91,,10,10,18.95700519,9,"Personal Loan, Not Specified, Student Loan, Payday Loan, Personal Loan, Home Equity Loan, Payday Loan, Student Loan, and Debt Consolidation Loan",,19.67364382,17.51,7,Bad,4339.634121,32.7657488,1 Years and 10 Months,Yes,18730.48344,,Low_spent_Small_value_payments,163.4746523,0,-1.673,0.0502,-0.6535,0.6633,-0.1447 -0x13bb5,CUS_0x9469,August,27,517-43-4607,Accountant,28582.04,,2,5,9.288361749,2,"Mortgage Loan, Personal Loan, and Debt Consolidation Loan",,1,6.81,1,_,299.8,27.45700013,16 Years and 2 Months,No,41.46045538,558.9255708,Low_spent_Medium_value_payments,309.9351015,0,-1.1342,0.5086,0.2002,-0.4783,-0.3021 -0x13bc1,CUS_0x520a,August,25,175-12-3956,Media_Manager,14544.27,,4,5,26,2,"Personal Loan, and Home Equity Loan",15.01955319,,17.39,7,Standard,3021.523009,33.99423543,9 Years and 9 Months,Yes,21.6806269,,Low_spent_Small_value_payments,253.9762461,0,1.1336,0.8729,1.2049,-1.0151,0.7571 -0x13bcd,CUS_0x39e5,August,20,378-91-8909,Accountant,19895.9,1384.991667,5,9,34,5,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Student Loan, and Mortgage Loan",28.03551131,17.55182095,19.44,6,Standard,2903.687605,40.19736268,14 Years and 0 Months,NM,66.38843413,59.42581251,Low_spent_Medium_value_payments,292.68492,0,-1.8997,0.7164,1.1566,-2.0366,-1.4297 -0x13bd9,CUS_0x9443,August,25,105-69-3347,Doctor,8204.11,816.6758333,6,7,21.06745738,9,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Student Loan, Not Specified, Payday Loan, Mortgage Loan, and Auto Loan",34.85945902,17.9725451,-2.36,8,Bad,2888.086832,35.29913141,,Yes,57.8713155,39.88321021,Low_spent_Medium_value_payments,237.1927697,0,0.2822,-1.0402,0.4706,-1.0488,-0.1168 -0x13be5,CUS_0xba97,August,44,804-73-5989,Media_Manager,45033.54,3860.795,5,6,21,2,"Debt Consolidation Loan, and Mortgage Loan",25.74371139,18,19.15,10,Standard,2381.98,33.7820978,17 Years and 8 Months,Yes,57.85260773,153.8779312,High_spent_Medium_value_payments,424.3489611,0,-0.0576,0.3621,-1.2209,1.3375,1.5518 -0x13bf1,CUS_0x9051,August,25,256-80-8294,Journalist,17613.49,,8,6,25,8,"Auto Loan, Payday Loan, Home Equity Loan, Payday Loan, Personal Loan, Not Specified, Student Loan, and Student Loan",18.40839815,,16.15,10,Bad,4723.28,26.7840465,2 Years and 9 Months,Yes,67.77605754,49.59128021,High_spent_Medium_value_payments,293.4117456,0,-2.2519,-1.0404,-0.4706,0.3479,1.7388 -0x13bfd,CUS_0x661d,August,25,128-26-1433,Journalist,52454.79,4130.2325,8,6,24,7,"Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Debt Consolidation Loan, and Student Loan",,28.97243421,-5.23,11,Bad,2713.208709,36.36765087,8 Years and 6 Months,Yes,273.5606473,459.9741391,Low_spent_Small_value_payments,,0,-1.296,-1.7596,-1.3713,1.0446,-0.2622 -0x13c09,CUS_0x1100,August,24,545-19-6617,Accountant,43062.54,,6,10,24.06745738,2,"Mortgage Loan, and Student Loan",43.39781098,22.726059,19.05,13,Standard,2672.591672,31.06592669,15 Years and 3 Months,Yes,47.49981874,71.94658529,High_spent_Medium_value_payments,464.587808,0,1.1767,0.5379,-0.181,-0.8746,-0.8331 -0x13c15,CUS_0xb07d,August,28,187-48-0283,Developer,84127.96,6919.663333,5,4,8,4,"Auto Loan, Home Equity Loan, Payday Loan, and Auto Loan",20.21909896,,9.81,0,Standard,1588.271857,36.89227247,,NM,176.4974326,55.2283999,High_spent_Large_value_payments,700.2405009,0,-0.0404,2.9972,-0.0635,-1.5786,-1.8523 -0x13c21,CUS_0xc5ea,August,27,596-35-4652,Writer,21301.19,,0,1,9,0,,,14,11.45,6,Good,1371.227784,34.83054323,30 Years and 11 Months,No,253.6742653,70.49143556,Low_spent_Large_value_payments,369.4156396,0,1.784,1.8627,-0.7509,0.068,0.7135 -0x13c2d,CUS_0x239e,August,35,867-85-4862,Musician,14390.16,,10,10,27.95700519,1014,"Not Specified, and Auto Loan",25.82945757,17,2.51,13,_,1551.320954,24.34730443,15 Years and 11 Months,Yes,1341.777656,52.76728632,Low_spent_Small_value_payments,274.4226886,0,-1.2442,-0.4663,-2.0817,1.722,0.0875 -0x13c39,CUS_0xb436,August,26,941-83-2392,Entrepreneur,62854.98,5370.915,10,5,23,7,"Personal Loan, Payday Loan, Personal Loan, Not Specified, Mortgage Loan, Payday Loan, and Payday Loan",35.03025453,21.27416485,11.38,11,Bad,2882.950629,32.10257956,11 Years and 4 Months,Yes,228.3441633,91.7957347,High_spent_Medium_value_payments,466.951602,0,-0.516,0.8758,-0.4038,0.2704,0.6948 -0x13c45,CUS_0xb611,August,20,503-24-0808,_______,17951.715,,5,5,9,0,,21.8610776,18,6.72,3,Standard,441.46,31.77306257,17 Years and 10 Months,Yes,0,133.7497574,Low_spent_Small_value_payments,297.3478676,0,-1.978,-0.1233,1.332,-3.1831,-0.4386 -0x13c51,CUS_0x78ca,August,53,030-35-7644,Journalist,35812.34,3124.361667,7,7,10,4,"Not Specified, Auto Loan, Personal Loan, and Home Equity Loan",18.51895341,12,1.62,0,Standard,367.46,34.41077976,30 Years and 11 Months,No,64.49951867,97.5829993,High_spent_Medium_value_payments,400.3536487,0,0.0155,1.2169,-0.9419,-0.6031,-1.2808 -0x13c5d,CUS_0x557f,August,20,574-13-2899,Developer,83204.52,6831.71,8,10,29,5,"Student Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",35.8484526,18,27.98,12,Bad,3388.37,24.46573673,13 Years and 0 Months,Yes,276.8748132,,High_spent_Medium_value_payments,450.8019693,0,0.4255,-1.1572,2.1192,-1.1005,-1.3371 -0x13c69,CUS_0x9692,August,24,556-37-4559,Scientist,138395,,4,5,14.28836175,0,Personal Loan,12.12373516,13,13.38,9,Standard,596.86,40.48166302,7 Years and 9 Months,Yes,103.5683594,762.4022203,Low_spent_Medium_value_payments,995.958548,0,0.7292,0.1572,1.051,0.1584,-1.2847 -0x13c75,CUS_0x8546,August,43,715-48-9784,Journalist,79172.08,6389.673333,8,4,14,5,"Mortgage Loan, Auto Loan, Mortgage Loan, Student Loan, and Not Specified",,12,16.11,12,Standard,2519.19,24.14356568,10 Years and 3 Months,Yes,170.1067666,83.75881922,High_spent_Large_value_payments,625.1017475,0,-0.0723,-0.6593,0.6164,1.1534,-1.5303 -0x13c81,CUS_0x9942,August,42,592-72-0472,_______,54491.84,,3,658,1325,0,,20.57114775,16,14.17,4,Standard,555.42,31.77685828,,Yes,0,,Low_spent_Small_value_payments,254.7353331,0,0.2475,-0.1199,-0.7363,-0.0794,-1.0518 -0x13c8d,CUS_0x4544,August,34,492-01-8431,Media_Manager,17224.395,1276.36625,3,5,1173,251,"Credit-Builder Loan, Payday Loan, Student Loan, and Debt Consolidation Loan",,1,-4.5,4,Good,1374.84,38.26158825,,No,38.96750727,,High_spent_Small_value_payments,262.5557096,0,-0.0767,-1.6033,-0.1303,0.0915,-0.4359 -0x13c99,CUS_0xb8a3,August,31,959-36-9830,Lawyer,38310.6,3371.55,8,6,20,3,"Not Specified, Mortgage Loan, and Auto Loan",,17,19.55,10,Standard,1616.26,34.26926644,7 Years and 11 Months,Yes,72.17252428,,High_spent_Large_value_payments,434.8038187,0,1.3957,1.7065,-0.9313,0.7736,-0.5152 -0x13ca5,CUS_0xa50e,August,36,253-30-1664,Journalist,125264.96,10404.74667,5,4,3,0,,14.5638963,9.65498418,5.53,2,_,1090.098805,31.97515865,25 Years and 8 Months,No,0,623.6064178,Low_spent_Medium_value_payments,696.8682489,0,-0.2137,0.385,-0.0374,-0.2461,1.3751 -0x13cb1,CUS_0x5b8c,August,53,022-86-4566,Lawyer,97536.09,,2,4,1.288361749,2,"Payday Loan, and Mortgage Loan",6.681005343,8,1.91,1,Good,724.5888674,36.45046311,18 Years and 10 Months,NM,98.97370839,1248.113493,Low_spent_Large_value_payments,266.6321278,0,1.4072,-1.4355,1.686,1.7066,1.3998 -0x13cbd,CUS_0x3a70,August,31,727-71-6595,Teacher,106928.84,9110.736667,5,3,13,4,"Home Equity Loan, Mortgage Loan, Not Specified, and Home Equity Loan",12.88395193,11,20.88,10,Standard,619.74,38.21930529,,Yes,240.733237,658.5443549,Low_spent_Large_value_payments,281.7960748,0,-0.208,-0.0522,-0.9414,1.0014,0.4354 -0x13cc9,CUS_0x5293,August,31,251-75-6319,Doctor,39829,3146.083333,4,6,14,3,"Student Loan, Not Specified, and Auto Loan",,12,19.04,8,Standard,1426.83,40.37338902,,Yes,71.45002882,168.1302739,High_spent_Small_value_payments,335.0280306,0,0.4026,1.553,-1.3121,-0.0007,-1.3517 -0x13cd5,CUS_0x26d7,August,49,253-33-8522,Developer,21623.465,,2,4,10,2,"Student Loan, and Payday Loan",10.07080683,10,6.65,5,Good,569.26,37.07298788,16 Years and 0 Months,No,34.33589952,66.12125795,Low_spent_Medium_value_payments,357.2383842,0,-0.7508,-0.1022,1.1219,-1.4236,0.7573 -0x13ce1,CUS_0x4c6c,August,19,055-37-7477,Musician,35416.64,3091.386667,8,4,7,1,Payday Loan,19.3206442,15,11.18,8,Good,620.9854453,27.43588562,17 Years and 0 Months,No,27.63153461,100.34256,High_spent_Medium_value_payments,442.3509174,0,1.2023,-0.4833,-0.2039,-1.8086,-1.0002 -0x13ced,CUS_0x64b4,August,80,553-99-2677,Doctor,88744.9,6628.270321,3,3,5.288361749,0,Auto Loan,11.64505662,11,0.97,3,Good,259.6540126,32.16605973,,No,592.7253982,606.195511,!@9#%8,765.7731439,0,-0.8078,-0.6322,1.4555,-0.3419,0.3049 -0x13cf9,CUS_0x4228,August,56,208-45-5775,Journalist,88799.78,,5,3,6.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",11.29546544,11,3.2,5,Good,950.667435,33.51509959,23 Years and 11 Months,No,220.1859312,941.9797937,Low_spent_Medium_value_payments,323.3782095,0,-0.8157,1.1807,0.2228,-0.623,-0.5218 -0x13d05,CUS_0x897e,August,37,#F%$D@*&8,Musician,58604.32,4788.693333,7,7,18,6,"Auto Loan, Payday Loan, Payday Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",34.36752952,21,8.75,2358,Bad,1887.32,28.68947107,20 Years and 2 Months,NM,197.4251427,240.9486617,Low_spent_Large_value_payments,310.495529,0,1.0851,-1.1758,0.968,-0.4326,0.4177 -0x13d11,CUS_0x84b,August,47,905-48-2798,Engineer,70164.9,5975.075,5,5,13,0,,25.84250452,18,11.21,6,Standard,1471.3,34.49831832,22 Years and 6 Months,Yes,0,590.5624309,Low_spent_Medium_value_payments,286.9450691,0,0.3812,1.3311,-0.0506,0.8143,-1.2133 -0x13d1d,CUS_0x92b9,August,20,855-40-7496,Teacher,46855.17,3987.5975,7,5,27,6,"Auto Loan, Not Specified, Debt Consolidation Loan, Auto Loan, Student Loan, and Auto Loan",,23.98811632,19.86,7,Standard,1860.903594,32.84243794,11 Years and 3 Months,Yes,145.5524217,140.9320975,Low_spent_Medium_value_payments,392.2752308,0,-1.0331,1.4315,-0.563,0.0672,-1.4427 -0x13d29,CUS_0x96b1,August,42,805-95-8957,Musician,60986.49,5017.2075,6,6,14.28836175,0,Auto Loan,,18,8.67,8,Standard,760.99,36.81467725,20 Years and 8 Months,NM,64795,520.760578,High_spent_Large_value_payments,608.9735031,0,-1.4272,-0.4078,-0.2227,-1.2224,0.599 -0x13d35,CUS_0x7c13,August,40,784-84-0195,Scientist,19181.27,,10,7,29,8,"Payday Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Auto Loan, Auto Loan, and Home Equity Loan",45.99558658,26.65062011,8.6,12,Bad,2598.346818,22.5340957,9 Years and 3 Months,Yes,117.5297547,,Low_spent_Large_value_payments,214.1655237,0,-0.6349,0.2342,1.9642,2.2402,0.3352 -0x13d41,CUS_0x90e,August,46,620-31-6876,Entrepreneur,70256.94,,1,4,6,1,Debt Consolidation Loan,6.328847514,2.420363481,2.09,2,Good,955.602874,34.89698552,19 Years and 2 Months,No,38.07247761,159.0392733,High_spent_Medium_value_payments,641.762749,0,-0.1881,-0.8425,0.0449,0.9113,-1.5554 -0x13d4d,CUS_0x844d,August,44,947-44-3246,Lawyer,29170.78,2588.898333,0,6,8,100,"Credit-Builder Loan, and Auto Loan",12.97917321,12,5.39,4,Good,1181.13,24.43417493,21 Years and 11 Months,No,32.50185774,180.7818306,!@9#%8,325.606145,0,0.5518,0.9573,-1.6398,0.8759,0.4618 -0x13d59,CUS_0x4c2c,August,18,029-34-1826,Manager,23883.28,,5,5,9,4,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",14.4486774,14,10.84,8,Standard,1125.583799,27.48187127,8 Years and 9 Months,Yes,230.6028738,105.9001649,Low_spent_Small_value_payments,328.270423,0,0.5689,0.9692,0.4801,0.4536,0.5105 -0x13d65,CUS_0x8b0c,August,80,587-03-6623,Lawyer,9635.555,,10,8,23.88954781,7,"Home Equity Loan, Student Loan, Payday Loan, Student Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,27.66465673,21.28,15,Bad,5239.339696,36.3349466,1 Years and 11 Months,Yes,1379.463502,,Low_spent_Medium_value_payments,245.0939753,0,0.6111,-1.5035,0.1139,0.2687,1.7253 -0x13d71,CUS_0x3873,August,80,#F%$D@*&8,Media_Manager,74961.78,,1,3,11,2,"Personal Loan, and Debt Consolidation Loan",,12,5.41,0,Good,212.9853557,40.94908786,,No,70.89350396,141.2918983,High_spent_Medium_value_payments,708.6195682,0,-0.0941,-1.0384,0.4093,-0.1085,-0.705 -0x13d7d,CUS_0x2ff8,August,28,503-21-2410,Lawyer,11654.425,,3,4,8,1,Student Loan,14.792191,,6.98,5,Standard,1154.58,25.4859338,18 Years and 2 Months,Yes,8.99650234,42.22118015,Low_spent_Small_value_payments,333.3025258,0,-0.2745,-0.4946,-2.3083,-0.4532,-0.7365 -0x13d89,CUS_0x28d8,August,29,096-79-8281,Developer,179193.76,14867.81333,5,3,7.288361749,0,Debt Consolidation Loan,0.928349186,5,6.85,5,Good,387.3393015,29.02604152,21 Years and 10 Months,No,83.4172915,1110.68265,Low_spent_Medium_value_payments,1079.554064,0,-0.4617,0.942,-1.0446,-0.1907,-1.6989 -0x13d95,CUS_0xa6e0,August,55,134-85-8550,Accountant,150755.48,12764.95667,5,5,7,4,"Student Loan, Payday Loan, Auto Loan, and Credit-Builder Loan",,,2.54,6,Good,559.23,31.95284445,32 Years and 0 Months,No,470.4072553,,Low_spent_Medium_value_payments,55.79269982,0,0.6242,-0.2669,0.8957,-1.7955,-0.0957 -0x13da1,CUS_0x792f,August,24,182-98-8567,Teacher,90216.75,7487.0625,4,2,12,1,Payday Loan,8.24468219,8,5.81,2,Good,9.35,33.94948583,20 Years and 9 Months,No,37.7603709,79.19840965,High_spent_Large_value_payments,871.7474694,0,-0.1826,-0.1148,-1.5118,1.1243,0.4617 -0x13dad,CUS_0xb798,August,52,908-32-4592,Mechanic,44184.71,3798.059167,5,5,11,0,,15.33449485,12,8.64,5,_,208.05,41.0888261,30 Years and 11 Months,No,0,43.165055,High_spent_Large_value_payments,576.6408617,0,0.9487,0.1087,0.154,-0.1447,-1.1193 -0x13db9,CUS_0xb450,August,47,564-78-6008,Entrepreneur,580744,2911.420833,1,2,8.288361749,364,Personal Loan,7.734714249,8,11.34,4,Good,1246.42033,25.72047915,25 Years and 5 Months,No,15.80562653,472.3209409,High_spent_Medium_value_payments,478.9106924,0,-0.2457,-0.5575,-1.567,-0.4469,0.9023 -0x13dc5,CUS_0x4be1,August,35,021-36-4734,Doctor,17247.71,1508.309167,6,7,20,5,"Auto Loan, Mortgage Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",,21,27.67,11,_,4596.48,34.52581136,7 Years and 4 Months,Yes,64.55412661,68.52945378,High_spent_Small_value_payments,277.7473363,0,0.2467,-1.0888,-0.0604,0.0156,0.5789 -0x13dd1,CUS_0xab26,August,36,886-95-6914,Journalist,21945.825,1979.81875,2,6,2,4,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",0.047770076,4,7.57,8,Good,202.68,38.934675,24 Years and 9 Months,No,63.32455347,72.64800576,High_spent_Medium_value_payments,312.0093158,0,-1.1088,0.4979,2.0388,-0.8545,-0.8255 -0x13ddd,CUS_0x71de,August,40,956-46-2324,Lawyer,28278.99,,8,7,16,1,Home Equity Loan,,10,8.97,2,Standard,796.54,30.56859859,29 Years and 6 Months,No,12.70016251,222.0213032,Low_spent_Medium_value_payments,274.6367843,0,-0.3843,0.6067,0.4375,0.4063,-1.9783 -0x13de9,CUS_0x440e,August,48,144-48-5573,Journalist,68590.02,,4,6,12,0,,4.462346276,8,7.25,5,Standard,1138.1,32.38702329,28 Years and 5 Months,No,0,95.00121051,High_spent_Large_value_payments,720.7822895,0,0.4279,-0.9803,0.2126,1.0387,0.89 -0x13df5,CUS_0x203c,August,26,631-48-5152,Accountant,48008.07,4135.6725,7,5,18.06745738,9,"Auto Loan, Credit-Builder Loan, Student Loan, Personal Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,,25.74,15,_,3755.500954,36.89721118,7 Years and 6 Months,Yes,19033,,High_spent_Medium_value_payments,252.6499021,0,0.9639,0.2204,0.6282,-0.251,0.3336 -0x13e01,CUS_0xaa8d,August,39,898-00-1803,Manager,70544.38,,1,7,9.288361749,0,,,11,,1,Good,30.36,38.55738036,22 Years and 4 Months,No,620.5955335,625.9194966,Low_spent_Small_value_payments,643.6877978,0,1.2648,0.9786,0.3615,-1.1201,-0.4734 -0x13e0d,CUS_0xe23,August,39,825-49-2383,Musician,17815.585,1427.632083,8,6,18,1,Home Equity Loan,20.70142447,14,14.18,10,_,982.63,33.89778183,30 Years and 11 Months,Yes,13.34655179,69.65885681,Low_spent_Medium_value_payments,339.7577997,0,0.0017,1.2146,-1.6678,0.3518,0.3412 -0x13e19,CUS_0xa2e5,August,49,600-39-8541,Entrepreneur,27109.79,,3,5,15,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",,12,9.26,1,Standard,320.07,35.08227469,15 Years and 9 Months,No,43.37870835,,High_spent_Medium_value_payments,341.5259846,0,2.2751,-0.9194,-0.7373,-0.2665,-0.0212 -0x13e25,CUS_0x12b6,August,18,652-60-9119,Writer,67104.12,5829.01,9,9,20.06745738,5,"Student Loan, Not Specified, Payday Loan, Not Specified, and Auto Loan",38.04786116,25,21.54,8,Bad,4859.160954,28.66732676,1 Years and 9 Months,Yes,265.0221602,10000,Low_spent_Medium_value_payments,364.9000272,0,-0.9416,-2.2151,-0.9549,-0.9486,1.1226 -0x13e31,CUS_0xa163,August,22,922-36-7237,Lawyer,38165.06,3273.421667,4,3,6,1,Auto Loan,3.717942039,7,8.91,1816,_,974.1155488,27.99975063,23 Years and 6 Months,NM,17.4369884,146.3874795,Low_spent_Medium_value_payments,458.3830244,0,-0.1084,-2.2309,-1.1401,0.1869,0.2028 -0x13e3d,CUS_0x8002,August,42,#F%$D@*&8,Mechanic,21596.82,2020.735,5,3,5,1,Home Equity Loan,5.305132624,8,2.11,0,Good,1262.645636,23.83125299,,No,9.742872376,186.7301595,Low_spent_Small_value_payments,313.7259211,0,-0.9957,0.1246,0.9805,0.2565,-0.6873 -0x13e49,CUS_0x245d,August,27,251-17-0514,Scientist,22147.105,,0,4,4,1,Student Loan,,3,,7,Good,947.58,37.05524105,20 Years and 6 Months,No,9.829845999,125.0398159,Low_spent_Large_value_payments,328.9895464,0,0.9283,0.1986,0.2181,0.5972,1.6536 -0x13e55,CUS_0xbbb0,August,25,180-22-8029,Journalist,48830.76,3911.23,8,5,35.06745738,100,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Payday Loan, Student Loan, and Student Loan",,21.61464047,16.62,9,Bad,4698.713555,37.2285315,2 Years and 4 Months,Yes,157.7215778,516.789255,Low_spent_Small_value_payments,0,0,0.9519,-0.9925,-0.1887,-0.6865,0.673 -0x13e61,CUS_0x1226,August,52,027-55-0167,_______,11421.51,,5,3,14,3,"Student Loan, Payday Loan, and Home Equity Loan",18.33926557,,15.72,7,_,1278.12,24.0165581,30 Years and 2 Months,Yes,20.89293594,55.88990035,!@9#%8,316.2964137,0,0.0167,0.2528,-0.8671,0.812,0.9364 -0x13e6d,CUS_0x6be5,August,26,321-47-0150,Musician,44820.08,,7,5,15,1,Student Loan,12.48131203,9,6.39,6,Standard,361.47,24.16369035,20 Years and 8 Months,NM,21.58133108,125.8309694,!@9#%8,492.3883662,0,1.3222,1.3716,0.1549,-0.6956,0.4575 -0x13e79,CUS_0x9c0,August,50,435-27-9315,Writer,37993.12,,1,6,0.288361749,4,"Personal Loan, Not Specified, Student Loan, and Mortgage Loan",0,3,5.57,2,_,473.9701053,30.890422,28 Years and 11 Months,No,110.3311455,443.8746871,!@9#%8,429.61381,0,1.3061,0.6043,-0.9012,0.6143,-1.6372 -0x13e85,CUS_0x840f,August,23,583-02-3933,Scientist,14856.35,,4,2,10,1,Home Equity Loan,,7,5.9,6,Good,1282.6168,38.84291538,26 Years and 4 Months,No,6.524757595,,Low_spent_Small_value_payments,358.1116075,0,-0.0115,0.5746,0.3867,0.1048,0.6641 -0x13e91,CUS_0x4555,August,34,#F%$D@*&8,Accountant,56135.16,4753.93,7,5,17,7,"Payday Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Student Loan, Not Specified, and Mortgage Loan",21.1338886,14.81493868,15.23,,Standard,3046.386419,36.43249144,7 Years and 8 Months,Yes,190.1022742,,Low_spent_Small_value_payments,170.0586406,0,-0.1322,-0.78,0.8819,1.0594,0.2697 -0x13e9d,CUS_0x8e44,August,54,#F%$D@*&8,_______,33476.83,2534.735833,4,1,7,0,,,8,3.26,6,Good,1115.904688,34.52746742,27 Years and 8 Months,No,0,106.0052917,Low_spent_Large_value_payments,431.7189391,0,-0.0283,-2.2849,-0.1572,-0.6119,-0.5379 -0x13ea9,CUS_0x43d1,August,40,904-98-0688,Mechanic,32749.15,2601.095833,0,2,2.288361749,4,"Mortgage Loan, Mortgage Loan, Student Loan, and Mortgage Loan",3.212277707,7,2.46,3,Good,98.55,28.18996621,22 Years and 11 Months,NM,105.362019,,Low_spent_Small_value_payments,192.8302367,0,0.1764,0.0635,-0.4806,-0.3728,1.8338 -0x13eb5,CUS_0x8125,August,20,764-23-2835,Media_Manager,118036.28,9899.356667,3,4,12.28836175,2,"Home Equity Loan, Payday Loan, and Home Equity Loan",24.4638071,20,16.74,9,Standard,175.4,31.87669288,19 Years and 5 Months,NM,233.0884415,808.9747378,High_spent_Medium_value_payments,617.8099483,0,-1.0906,-0.0726,-0.3313,0.7759,-1.0056 -0x13ec1,CUS_0xa7a3,August,24,195-25-1423,Engineer,53672.94,4589.745,9,5,27,100,"Not Specified, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",,23.81355153,9.72,10,Bad,1671.212159,32.21274029,6 Years and 4 Months,NM,220.7657778,140.6973433,High_spent_Medium_value_payments,347.5113789,0,-0.9441,0.2172,-0.2518,0.2294,-0.3649 -0x13ecd,CUS_0xa6f6,August,35,424-26-3353,Media_Manager,35292.24,,3,3,8,2,"Credit-Builder Loan, and Not Specified",8.542560828,8,7.35,2,_,996.99,23.64312122,22 Years and 5 Months,No,51.65026795,120.6182105,High_spent_Small_value_payments,359.2335215,0,-1.6789,0.0614,2.4474,2.7422,-0.1594 -0x13ed9,CUS_0x9c9c,August,43,555-63-9146,Mechanic,32827.25,2828.604167,5,5,5,3,"Payday Loan, Home Equity Loan, and Not Specified",,9,13.82,9,Standard,1121.080655,34.36350276,27 Years and 3 Months,Yes,49.53508236,438.8015436,Low_spent_Small_value_payments,146.8516708,0,-0.3082,-0.4054,0.1158,-0.6935,0.7104 -0x13ee5,CUS_0xbc7d,August,35,265-33-1368,Lawyer,52338.57,4451.5475,6,434,23.95700519,100,"Personal Loan, Not Specified, Payday Loan, Auto Loan, and Credit-Builder Loan",34.15021498,21.36239349,24.07,11,_,4263.179478,26.78638573,11 Years and 11 Months,Yes,1474.081187,125.3335905,High_spent_Medium_value_payments,374.6896033,0,-0.8609,0.8188,-1.476,1.2774,0.4137 -0x13ef1,CUS_0x95e7,August,25,423-07-8408,Doctor,7080.7,,10,9,21.95700519,8,"Payday Loan, Mortgage Loan, Not Specified, Not Specified, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Student Loan",,25.63302107,24.58,9,Bad,3618.974141,31.38683673,,NM,1358.498755,34.63343716,Low_spent_Medium_value_payments,201.6232718,0,0.4247,-1.3181,-0.6811,1.1858,-0.9223 -0x13efd,CUS_0x82db,August,39,115-17-6032,Teacher,37062.36,,8,8,31,6,"Student Loan, Payday Loan, Auto Loan, Auto Loan, Payday Loan, and Auto Loan",18.93052506,12.52069694,11.1,10,Standard,2465.404088,39.84450815,7 Years and 0 Months,Yes,165.7861053,157.3894918,High_spent_Small_value_payments,257.9774029,0,0.2862,0.9143,0.2575,-0.0487,0.0554 -0x13f09,CUS_0x80bd,August,35,534-53-3213,Manager,18550.4,,3,4,34,2,"Not Specified, and Credit-Builder Loan",12.58954298,10,15.08,9,Standard,1368.63,26.25677863,,Yes,28.83079989,140.9253484,Low_spent_Large_value_payments,266.3305184,0,0.8446,-2.0131,-0.0848,0.6826,-0.6035 -0x13f15,CUS_0x56c8,August,53,058-84-5590,Doctor,10777.43,741.1191667,5,4,17,2,"Mortgage Loan, and Payday Loan",17.77169603,12,-2.41,3,_,494.5359395,26.40100404,23 Years and 8 Months,Yes,10.3516523,22.45567938,High_spent_Medium_value_payments,293.5493617,0,-1.2643,0.324,-0.5984,0.2644,0.95 -0x13f21,CUS_0x3636,August,32,477-19-4895,Scientist,72079.52,5845.077965,9,7,24,100,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",39.99432099,22,16.33,11,Bad,1605.65,38.89095025,10 Years and 0 Months,Yes,578.521072,,Low_spent_Medium_value_payments,244.0330276,0,-0.8806,-0.722,-1.2973,2.3059,0.3458 -0x13f2d,CUS_0x32ad,August,46,426-46-4223,Teacher,56200.53,4544.3775,307,8,31,7,"Auto Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Student Loan",,28.75899861,18.22,7,Bad,5569.145811,34.83477703,1 Years and 8 Months,Yes,257.1125833,,Low_spent_Small_value_payments,,0,-0.0029,1.4585,2.0545,1.1414,-2.4332 -0x13f39,CUS_0x12bf,August,51,235-33-4203,Entrepreneur,97976.08,8136.673333,8,6,12,2,"Mortgage Loan, and Credit-Builder Loan",10.66457632,8,6.03,5,_,1113.49,34.21458101,,Yes,115.0873251,1039.373998,Low_spent_Small_value_payments,,0,0.1723,0.1105,-1.3604,-2.4139,0.1237 -0x13f45,CUS_0x7069,August,28,278-80-2094,Doctor,39126.01,3413.500833,3,6,10.28836175,4,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",,5.738687546,3.73,1,_,235.8740504,22.60530602,32 Years and 8 Months,No,71.19870448,542.8292602,High_spent_Medium_value_payments,397.2595797,0,2.3024,-0.4465,0.7665,1.2185,-0.6674 -0x13f51,CUS_0x632f,August,33,237-14-5884,Lawyer,40835.65,3173.970833,5,2,1,0,,10.39074304,11,6.42,3,_,1236.292385,37.56805969,29 Years and 11 Months,No,0,65.96819083,High_spent_Small_value_payments,519.2860264,0,0.3718,1.5735,0.5586,0.5801,-0.6004 -0x13f5d,CUS_0x9ff7,August,47,965-32-3124,Scientist,41813.18,,7,3,15,0,,14.70506728,13,9.68,6,Standard,1372.83,28.85379688,30 Years and 11 Months,No,0,280.0929968,Low_spent_Small_value_payments,382.8501699,0,-0.3729,-0.8859,0.7453,1.1474,0.2289 -0x13f69,CUS_0x8031,August,21,146-48-0684,Media_Manager,56990.6,,7,7,21,9,"Personal Loan, Home Equity Loan, Mortgage Loan, Not Specified, Home Equity Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, and Personal Loan",33.00499047,23.59538007,-3.12,,_,2419.433848,36.43808805,8 Years and 4 Months,Yes,305.7243026,112.3084906,High_spent_Large_value_payments,308.4888735,0,0.4571,0.7646,1.859,0.6824,0.1271 -0x13f75,CUS_0x9774,August,43,938-36-7670,Mechanic,32464.1,2668.341667,4,3,10,1,Home Equity Loan,1.668958508,5,4.82,1,Standard,681.09,26.80843212,32 Years and 6 Months,NM,19.18656123,234.9760355,Low_spent_Large_value_payments,282.67157,0,0.038,2.216,-1.7341,0.8909,0.3294 -0x13f81,CUS_0x46a,August,27,453-82-6508,Architect,135550.88,11547.90667,3,3,9,3,"Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",9.739108349,10,6.52,3,_,716.21,34.16396496,23 Years and 3 Months,No,203.494906,538.4947844,Low_spent_Large_value_payments,682.8009762,0,-0.461,-0.5193,-0.3811,0.3018,-1.6656 -0x13f8d,CUS_0x2ce9,August,48,314-22-8629,Media_Manager,22723.19,,5,7,6,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",16.9461851,13,9.47,6,_,352.164659,31.53557456,25 Years and 0 Months,No,51.94701371,80.53659227,High_spent_Medium_value_payments,296.0933931,0,1.4753,-1.29,-0.1734,-1.1664,0.4099 -0x13f99,CUS_0x24c3,August,52,484-34-7482,_______,84602.38,,2,4,10.28836175,0,,,12,7.5,3,Good,693.4467137,38.96530506,32 Years and 4 Months,No,0,546.0719832,High_spent_Large_value_payments,811.5492836,0,0.9845,1.5719,1.834,0.5053,-0.8632 -0x13fa5,CUS_0x19a9,August,28,923-50-7465,Engineer,14128.41,,6,5,30.06745738,9,"Personal Loan, Payday Loan, Auto Loan, Student Loan, Student Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",27.90157178,19,24.2,12,_,3025.038448,37.60836214,13 Years and 2 Months,Yes,93.95697677,,Low_spent_Large_value_payments,200.9095522,0,0.8511,0.9609,0.5885,-0.6347,1.0031 -0x13fb1,CUS_0x6f0a,August,38,380-75-0286,Musician,8461.285,699.1070833,9,9,21.06745738,5,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",,32.52809004,9.37,8,Bad,4504.630094,40.26296947,,Yes,34.02785836,84.72281314,!@9#%8,214.4397489,0,-1.2258,-0.5472,-0.6711,0.688,0.6425 -0x13fbd,CUS_0x3761,August,18,201-00-0167,Musician,73338.12,6373.51,3,4,12,7,"Not Specified, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Student Loan, and Not Specified",5.599965568,8,11.92,5,Standard,2449.13,33.59735971,18 Years and 2 Months,Yes,395.3348081,86.49377154,High_spent_Large_value_payments,395.5224203,0,-1.006,0.627,-0.3665,-1.5469,0.8383 -0x13fc9,CUS_0x68be,August,18,699-83-1909,Media_Manager,26938.02,,3,5,8,4,"Personal Loan, Payday Loan, Not Specified, and Personal Loan",13.82979676,10,6.43,4,Standard,579.96,30.17402093,18 Years and 0 Months,Yes,79.04761038,,High_spent_Medium_value_payments,356.5584793,0,0.3177,0.5027,-0.9249,-0.9522,0.7257 -0x13fd5,CUS_0x9576,August,28,333-99-1246,Developer,15692.35,,7,3,10,3,"Home Equity Loan, Auto Loan, and Debt Consolidation Loan",18.03963083,13,18.2,5,Standard,527.9899066,39.74805985,9 Years and 5 Months,Yes,32.93137302,61.73895801,!@9#%8,331.4237342,0,0.0155,-2.1282,-0.5367,-0.1443,1.2432 -0x13fe1,CUS_0x6228,August,36,951-96-0569,Doctor,68451.12,5578.26,8,4,8,7,"Not Specified, Mortgage Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",,,8.75,6,Standard,1215.29,39.85148801,12 Years and 0 Months,NM,361.3247739,,High_spent_Small_value_payments,111.6349182,0,-2.0444,-0.265,0.7177,-0.9192,0.4406 -0x13fed,CUS_0xb9d5,August,29,858-65-5945,Doctor,19823.565,1782.96375,1,3,6,3,"Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",9.844151659,9,3,4,Good,1408.66,34.00046411,29 Years and 11 Months,No,35.57630964,125.9048595,Low_spent_Large_value_payments,286.8152059,0,0.4815,-1.3623,-0.0152,-1.3243,-0.1113 -0x13ff9,CUS_0x35ca,August,40,602-68-5090,_______,33980.48,2855.706667,6,4,13,2,"Home Equity Loan, and Student Loan",8.26935909,8,14.23,4,_,955.32,29.26319252,30 Years and 11 Months,Yes,34.44199959,,Low_spent_Large_value_payments,401.1699949,0,-0.9373,0.4178,-0.9049,0.283,-0.3469 -0x14005,CUS_0x5e78,August,41,295-90-0803,Lawyer,16259.845,,3,7,6,4,"Home Equity Loan, Student Loan, Student Loan, and Payday Loan",8.640318763,11,1.6,5,Good,970.6991644,29.38486001,32 Years and 10 Months,No,36.08426906,188.9740667,Low_spent_Small_value_payments,223.0554065,0,-0.4322,-2.2242,-0.7605,1.0159,-0.6306 -0x14011,CUS_0xbdbf,August,45,276-84-5931,Entrepreneur,35124.99,,1430,1,10,4,"Student Loan, Payday Loan, Personal Loan, and Student Loan",12.93426754,11,9.52,4,Good,337.9066335,31.35077822,18 Years and 4 Months,No,106.8964638,,Low_spent_Small_value_payments,234.2486407,0,-0.6049,0.2591,-0.331,-0.0602,0.6805 -0x1401d,CUS_0x36b3,August,35,888-75-8140,Entrepreneur,12679.725,1228.64375,7,3,6,4,"Student Loan, Mortgage Loan, Student Loan, and Not Specified",17.41414522,14,9.84,1,_,1226.77,36.44954575,28 Years and 3 Months,No,17653,112.2539045,Low_spent_Small_value_payments,267.2569599,0,0.0435,-1.6843,2.3654,0.5967,-0.0689 -0x14029,CUS_0xb473,August,28,381-89-0590,_______,8143.805,,53,7,33.06745738,5,"Personal Loan, Debt Consolidation Loan, Personal Loan, Student Loan, and Payday Loan",26.88191784,18,15.12,10,Bad,3458.930954,38.40103463,2 Years and 3 Months,Yes,49.80484887,,Low_spent_Small_value_payments,244.2690054,0,1.5661,1.2031,1.3683,-1.1871,-1.5859 -0x14035,CUS_0x10e2,August,37,168-78-3262,Media_Manager,43133.85,3432.4875,10,10,32.95700519,7,"Personal Loan, Auto Loan, Not Specified, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",,24,6.41,11,Bad,2727.510954,28.13916429,10 Years and 9 Months,Yes,1474.770699,67.89250966,High_spent_Large_value_payments,319.5351721,0,1.4235,-0.2509,1.0025,-0.0569,0.404 -0x14041,CUS_0x948f,August,37,640-58-0930,Developer,116268.16,9677.013333,4,5,9,100,Home Equity Loan,,,11.48,2,Standard,602.5319813,40.6109606,29 Years and 6 Months,Yes,74.63229824,262.969363,!@9#%8,900.2720631,0,0.0555,0.6799,0.2413,-0.4202,-1.4357 -0x1404d,CUS_0x22fe,August,18,729-05-0487,Manager,76801.36,,8,52,13.88954781,6,"Payday Loan, Personal Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Not Specified",20.44672515,14,12.38,6,Standard,1172.94,26.80613097,8 Years and 2 Months,Yes,1584.330418,588.7151842,Low_spent_Large_value_payments,41.33565008,0,-0.8488,0.6672,-0.1039,-0.3996,-0.6726 -0x14059,CUS_0x7a8,August,33,544-38-3815,Accountant,21663.61,1656.300833,4,5,8,2,"Debt Consolidation Loan, and Mortgage Loan",9.061659315,10,3.64,,Good,494.8546939,25.35732013,32 Years and 10 Months,No,32.71616123,26.27657634,High_spent_Large_value_payments,349.1013694,0,-0.3907,0.0414,-0.0172,0.2479,0.206 -0x14065,CUS_0x1f42,August,31,773-22-5016,Lawyer,18146.26,,7,7,24.06745738,5,"Mortgage Loan, Personal Loan, Personal Loan, Personal Loan, and Payday Loan",25.56526902,16,15.25,14,Standard,1931.980954,25.8640522,18 Years and 9 Months,Yes,66.1580376,139.4450908,Low_spent_Medium_value_payments,191.895417,0,0.6507,1.6533,0.0976,1.4451,-1.3904 -0x14071,CUS_0xbd06,August,21,191-16-7901,Accountant,15444.65,,7,10,27.06745738,6,"Auto Loan, Payday Loan, Student Loan, Student Loan, Credit-Builder Loan, and Payday Loan",,20.47831445,8.31,12,_,2374.042538,25.36483273,12 Years and 2 Months,Yes,63.78224986,80.99096738,High_spent_Small_value_payments,208.0119115,0,-0.0173,0.813,-0.2491,-0.8529,0.4732 -0x1407d,CUS_0x3274,August,44,047-33-4886,Manager,32766.46,2499.538333,4,7,9,100,"Student Loan, Not Specified, and Mortgage Loan",18.789083,11,10.1,10,_,521.1,33.60741347,17 Years and 3 Months,NM,54.05561885,90.17379502,High_spent_Medium_value_payments,355.7244195,0,-0.788,-1.4663,0.6449,0.5252,-0.3139 -0x14089,CUS_0x7a77,August,27,044-19-7799,Musician,32085.89,2460.824167,4,6,14,5,"Payday Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Auto Loan",12.51430838,13,20.02,6,Standard,655.2826741,38.27866731,19 Years and 0 Months,Yes,84.06232164,94.78537281,High_spent_Medium_value_payments,326.902644,0,0.5379,-0.3825,-1.2936,-0.5117,1.8443 -0x14095,CUS_0x27e2,August,36,470-60-5606,Mechanic,8705.96,,3,7,28.06745738,3,"Student Loan, Not Specified, and Student Loan",,20.14676647,13.19,1329,Standard,3054.503739,29.11698981,16 Years and 8 Months,Yes,16.44695382,40.47648768,Low_spent_Small_value_payments,296.1059372,0,1.503,0.881,-0.5267,1.0542,-0.4543 -0x140a1,CUS_0x5db9,August,26,517-11-7660,Entrepreneur,24858.67,,8,6,11,2,"Mortgage Loan, and Mortgage Loan",24.1322617,16,2.99,4,Good,515.0746037,28.3967145,15 Years and 9 Months,No,35.19336501,128.5085146,Low_spent_Small_value_payments,342.7023671,0,0.6184,-0.1214,-0.3002,-0.7704,-0.6338 -0x140ad,CUS_0x67d0,August,36,103-41-3644,Manager,9695.47,1066.955833,5,3,20,2,"Home Equity Loan, and Home Equity Loan",,14,11.86,4,Standard,463.03,38.70772527,29 Years and 3 Months,No,8.394122073,102.4886705,Low_spent_Medium_value_payments,275.8127907,0,1.2604,0.1123,1.7194,0.2021,-0.2151 -0x140b9,CUS_0x1c70,August,44,149-05-1316,Scientist,31604.58,2378.715,1,2,10,4,"Auto Loan, Not Specified, Student Loan, and Auto Loan",3.870867091,6,2.86,3,Good,845.1434604,34.57481503,18 Years and 2 Months,No,65.50581843,52.78142243,High_spent_Large_value_payments,366.8121505,0,-0.5472,0.2718,0.515,-1.3902,0.4369 -0x140c5,CUS_0xa37f,August,41,189-57-2479,Developer,34751.53,,4,4,8,3,"Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",10.01038373,9,8.56,2,Standard,421.45,29.22151816,24 Years and 11 Months,No,74.53653938,30.48736636,High_spent_Large_value_payments,447.1721776,0,-0.9302,-1.0075,-1.0549,0.5907,-0.1341 -0x140d1,CUS_0x3852,August,45,654-67-5073,_______,15589.34,1005.111667,8,8,34.06745738,8,"Personal Loan, Auto Loan, Not Specified, Home Equity Loan, Auto Loan, Mortgage Loan, Personal Loan, and Personal Loan",,25.76306829,,12,Bad,3428.374364,39.77010207,2 Years and 2 Months,Yes,91.5718295,29.35194365,Low_spent_Medium_value_payments,232.8671056,0,0.7608,-0.8881,0.6341,-1.7127,-1.5223 -0x140dd,CUS_0xbb75,August,42,389-17-4424,_______,32829.62,2945.801667,5,697,10,3,"Mortgage Loan, Personal Loan, and Auto Loan",0,3,11.7,2,Good,823.88,36.70667597,22 Years and 4 Months,No,74.62833527,183.4363849,Low_spent_Small_value_payments,326.5154465,0,-0.5653,-0.5305,-0.4789,0.7956,0.5676 -0x140e9,CUS_0x979f,August,22,435-19-5149,Media_Manager,121238.4,,2,7,0.288361749,0,Credit-Builder Loan,11.78928477,12,5.64,2,_,1160.07,36.37609299,16 Years and 3 Months,No,92.00512576,639.670792,High_spent_Large_value_payments,926.6815433,0,-0.2683,-1.143,1.451,-1.4303,-0.0516 -0x140f5,CUS_0x3928,August,51,676-17-1399,Doctor,19602.22,,7,4,6,2,"Credit-Builder Loan, and Debt Consolidation Loan",,8.064879607,10.7,4,Standard,1039.579768,22.1232672,19 Years and 5 Months,Yes,23.7461843,106.133432,!@9#%8,284.9722171,0,-1.1185,-0.3356,0.2394,-1.4302,1.485 -0x14101,CUS_0x16f4,August,37,#F%$D@*&8,Media_Manager,28638.97,,7,6,6,3,"Credit-Builder Loan, Payday Loan, and Mortgage Loan",,9,1.34,1,Standard,149.92,33.87524269,30 Years and 2 Months,No,52215,143.6018344,High_spent_Small_value_payments,306.7679385,0,-0.6762,0.3287,0.5769,-1.6575,2.0843 -0x1410d,CUS_0xa2b9,August,52,261-38-1072,Scientist,27172.31,,7,6,4561,1,Not Specified,17.26898121,12,10.62,0,Standard,1235.92,36.29102643,17 Years and 5 Months,No,13.13957888,21.08438821,High_spent_Large_value_payments,426.1119496,0,-0.018,0.4567,-0.2075,-0.7317,0.36 -0x14119,CUS_0x8140,August,29,388-66-4056,Manager,18285.06,,5,4,22,4,"Payday Loan, Home Equity Loan, Mortgage Loan, and Mortgage Loan",26.5467495,19.20746962,16.25,11,Standard,2897.869285,23.32708425,14 Years and 6 Months,Yes,39.72156877,72.52500644,Low_spent_Medium_value_payments,291.6289248,0,-0.3306,-0.9715,-1.2541,-1.4229,2.6306 -0x14125,CUS_0xa8c6,August,20,214-47-2407,_______,60759.54,,5,4,6.288361749,4,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Auto Loan",13.03722567,13,7.76,6,Standard,117.3679582,38.43652042,24 Years and 2 Months,NM,155.525521,,Low_spent_Large_value_payments,326.3445167,0,0.148,-1.2336,-0.5727,0.833,0.2426 -0x14131,CUS_0xaa0a,August,46,490-91-8527,Manager,8770.725,851.89375,5,5,7,4,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",15.49954603,11,8.77,6,_,1609.69,36.84699807,12 Years and 4 Months,Yes,23.11902747,31.28728748,High_spent_Medium_value_payments,280.7830601,0,-0.1153,0.3121,0.2936,1.233,-0.5272 -0x1413d,CUS_0x2083,August,31,495-33-9893,Lawyer,54650.72,,5,3,4477.288362,0,,14.44623527,,22.44,1240,_,675.51,35.32292574,16 Years and 11 Months,Yes,0,833.9455823,Low_spent_Small_value_payments,335.7145454,0,-0.6036,-0.0681,0.2968,0.7642,-0.6667 -0x14149,CUS_0x4ec5,August,56,747-39-2384,Scientist,71716.56,,3,6,5,4,"Debt Consolidation Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",18.0671531,13,2.3,4,Good,930.3,25.93563026,,No,234.2817046,,Low_spent_Large_value_payments,248.4379901,0,-0.8373,0.3402,0.1861,-1.2511,-2.3562 -0x14155,CUS_0x1319,August,47,#F%$D@*&8,Media_Manager,138613.48,11706.12333,7,5,10,3,"Personal Loan, Personal Loan, and Personal Loan",26.45954097,20,6.49,4,_,768.69,31.69324508,17 Years and 10 Months,No,182.1762394,409.1683043,High_spent_Small_value_payments,839.2677896,0,2.4538,1.8084,-0.1848,-0.6305,-0.5018 -0x14161,CUS_0x663e,August,39,594-04-1648,Musician,18670.98,1553.915,5,5,14,4,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",20.47371242,,15.92,11,Standard,1397.21,31.89983916,10 Years and 11 Months,Yes,32.44445435,61.21789521,High_spent_Medium_value_payments,311.7291504,0,0.3555,1.7079,-0.0929,1.206,0.7519 -0x1416d,CUS_0x94f6,August,52,581-88-3699,Scientist,90789.21,7836.7675,1,1106,4.288361749,2,"Personal Loan, and Mortgage Loan",,7,3.53,8,Good,18.15,39.94135392,,No,105.505251,740.3957913,Low_spent_Medium_value_payments,637.7131687,0,-0.1365,-0.9392,-1.196,0.1674,-2.8456 -0x14179,CUS_0x7986,August,38,868-05-9841,Architect,34215.86,,8,9,27.06745738,5,"Not Specified, Student Loan, Payday Loan, Student Loan, and Auto Loan",,24.94510567,5.4,6,Bad,3094.234736,40.82818173,,Yes,96.7728048,,Low_spent_Large_value_payments,247.3178182,0,0.8936,0.2295,0.0346,1.2874,0.137 -0x14185,CUS_0x2d6a,August,25,195-30-6889,Journalist,16066.29,,6,5,8,2,"Payday Loan, and Mortgage Loan",,12,5.66,1,Good,78.69,37.25975785,,No,23.32325869,,Low_spent_Small_value_payments,279.8826505,0,1.6983,-0.9094,-0.607,-1.0089,0.6813 -0x14191,CUS_0x74b1,August,26,448-68-7130,Media_Manager,8590.155,,6,5,31.06745738,7,"Student Loan, Not Specified, Payday Loan, Personal Loan, Not Specified, Personal Loan, and Personal Loan",,14.47986873,7.79,9,_,3154.274199,41.11682548,6 Years and 2 Months,Yes,30.88666908,45.1117244,Low_spent_Small_value_payments,285.2659436,0,1.3204,0.2199,0.8427,0.3689,-0.2452 -0x1419d,CUS_0xc0fd,August,32,503-38-4873,Writer,29895.53,2246.294167,4,5,8,0,,0,2,3.22,6,_,795.9626625,32.90894383,26 Years and 9 Months,No,0,303.7010337,Low_spent_Small_value_payments,249.7674268,0,0.0654,-2.2722,1.6928,0.6815,-0.8481 -0x141a9,CUS_0x7558,August,38,264-81-8732,Developer,18746.95,1467.245833,4,3,3,1,Student Loan,12.81715843,12,12.32,4,Good,1403.55,28.14969355,23 Years and 2 Months,No,15.56516459,99.31000128,High_spent_Small_value_payments,291.8494175,0,-0.7088,-1.1785,1.2944,0.4708,0.2433 -0x141b5,CUS_0x9175,August,48,805-74-9060,Writer,145380.88,12361.07333,5,3,887,1,Student Loan,0.225788824,2,6.69,5,Good,693.0827575,35.28286366,,No,102.7586053,352.3122509,!@9#%8,1070.951524,0,-0.2853,-1.5988,0.9387,0.1017,0.7103 -0x141c1,CUS_0xb732,August,25,724-75-1703,Manager,94511.76,8168.98,4,5,18,5,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",12.70009748,12,15.38,5,Standard,28.68206803,28.86039657,,Yes,337.5737942,152.7205988,High_spent_Large_value_payments,582.5442019,0,-0.2914,-1.4365,1.0472,-1.7644,-0.5949 -0x141cd,CUS_0x1f24,August,42,796-58-2729,Musician,8938.07,678.8391667,6,9,34.88954781,7,"Student Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,30.2677266,27.81,13,Bad,4774.052429,34.28604368,2 Years and 10 Months,Yes,1357.161141,,Low_spent_Small_value_payments,246.5519408,0,-0.6374,-0.6216,1.7062,0.8988,0.1688 -0x141d9,CUS_0x63b7,August,35,736-70-3175,Mechanic,10095.545,755.2954167,5,3,14.06745738,4,"Credit-Builder Loan, Mortgage Loan, Payday Loan, and Payday Loan",27.00451954,17,2.26,1,Standard,1429.180954,32.43138888,30 Years and 8 Months,No,20.02483325,69.59370345,Low_spent_Medium_value_payments,239.190717,0,-1.6634,2.0205,0.8118,2.4814,0.0785 -0x141e5,CUS_0x426a,August,28,102-98-4046,Architect,97266.3,,3,5,7,4,"Personal Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",0,3,9.88,7,Good,252.5005623,31.07300352,33 Years and 6 Months,No,201.4880335,,High_spent_Large_value_payments,798.6993409,0,-0.3899,-0.0629,1.4874,-0.6572,0.6617 -0x141f1,CUS_0xbe6f,August,41,749-18-8231,Journalist,34945.16,,7,6,21,5,"Mortgage Loan, Auto Loan, Not Specified, Not Specified, and Debt Consolidation Loan",,20.68119615,9.45,13,Standard,2270.241481,35.78666438,11 Years and 2 Months,Yes,140.1209697,69.55253511,!@9#%8,334.6361619,0,0.7256,0.593,-0.2457,-0.4886,0.553 -0x141fd,CUS_0x1ffb,August,33,354-51-3405,Mechanic,15908.46,1426.705,10,9,25.95700519,8,"Personal Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",,18.23565222,1.74,10,_,3786.643169,38.52473314,1 Years and 3 Months,Yes,1411.271307,137.874419,Low_spent_Medium_value_payments,152.4744051,0,-1.5241,-0.046,0.9936,1.0394,0.4686 -0x14209,CUS_0xd7d,August,19,356-30-8640,Entrepreneur,34800.24,,10,8,25.95700519,8,"Auto Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",,28.50834057,25.25,13,Bad,4192.693583,34.77378007,1 Years and 2 Months,NM,1539.593104,,Low_spent_Medium_value_payments,228.049113,0,-0.8587,-1.2583,1.1495,-1.3272,1.9377 -0x14215,CUS_0xc08b,August,50,464-69-1352,Journalist,71825.98,,4,4,8.288361749,2,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",,10,11.97,2,Good,153.08,35.03939292,17 Years and 8 Months,No,168.5077974,488.4037204,High_spent_Large_value_payments,610.8757766,0,-1.5354,-2.3909,-2.5004,-0.8367,0.8329 -0x14221,CUS_0x36b0,August,31,461-58-4930,Doctor,41290.29,3601.8575,4,5,7.288361749,4,"Home Equity Loan, Not Specified, Personal Loan, and Auto Loan",0,2,7.64,7,Good,39.91491396,26.26545822,20 Years and 8 Months,No,85.64437208,,Low_spent_Small_value_payments,329.9245299,0,0.7032,0.2606,1.4338,-0.2199,0.2648 -0x1422d,CUS_0x7a36,August,39,070-06-0488,Entrepreneur,42960.39,3363.0325,2,5,8.288361749,2,"Mortgage Loan, Student Loan, and Debt Consolidation Loan",0,3.479897721,3.18,2,Good,430.0222382,35.1519998,30 Years and 3 Months,NM,58.19248942,,Low_spent_Small_value_payments,244.9521924,0,-0.6026,-0.34,-1.9268,1.4499,-0.0751 -0x14239,CUS_0x8da8,August,29,028-05-9742,Developer,10037.855,,4,5,3089,4,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Mortgage Loan",22.81996919,20.19229308,13.99,7,Standard,1882.283069,26.81081159,10 Years and 5 Months,Yes,54301,43.53689966,Low_spent_Small_value_payments,310.7209361,0,0.8448,0.2105,-1.2769,-0.2929,1.0439 -0x14245,CUS_0x7577,August,58,466-42-9476,Accountant,34769.18,3107.431667,4,3,3,1,Mortgage Loan,,,13.77,107,Good,1286.58311,30.52427395,22 Years and 10 Months,No,15.57206019,140.7032519,Low_spent_Medium_value_payments,452.9689218,0,-0.2809,-0.326,-1.2537,-0.1035,-0.9358 -0x14251,CUS_0x7aaa,August,41,559-82-7560,Accountant,58346.36,4616.196667,7,7,28,6,"Student Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Payday Loan",,,19.22,11,Bad,3534.9,38.33892097,7 Years and 8 Months,Yes,229.9157921,118.103895,High_spent_Large_value_payments,353.5999795,0,-1.6944,1.7698,0.604,0.1195,-0.2521 -0x1425d,CUS_0x4d40,August,40,#F%$D@*&8,Architect,19070.62,,7,5,28.06745738,8,"Payday Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",43.99047694,26.96265859,2.1,15,Bad,2725.513437,34.10759352,15 Years and 6 Months,Yes,111.4705372,100.0503793,Low_spent_Small_value_payments,182.0806288,0,0.3131,-0.6437,0.2559,-0.2489,1.6773 -0x14269,CUS_0x1bac,August,80,469-12-4672,_______,15926.285,,4,4,11,2,"Auto Loan, and Personal Loan",24.04602689,19,19.54,5,Standard,1481.35,36.38451854,21 Years and 0 Months,Yes,14.81700668,,Low_spent_Small_value_payments,255.7208613,0,-0.2407,1.6395,0.1698,-1.2677,-0.2429 -0x14275,CUS_0x5354,August,33,910-46-8987,Mechanic,90133.59,7795.1325,6,6,608,3,"Student Loan, Credit-Builder Loan, and Credit-Builder Loan",29.60410018,23,16.25,6,Standard,1464.72,30.30569162,12 Years and 9 Months,Yes,194.609776,121.5878094,High_spent_Large_value_payments,703.3156645,0,-0.4431,0.5677,0.1786,1.101,0.8248 -0x14281,CUS_0x7de5,August,48,390-51-5865,Lawyer,18613.045,1394.087083,1,3,6.067457376,3,"Payday Loan, Debt Consolidation Loan, and Home Equity Loan",13.26591294,7.225189088,8.54,9,Good,1657.753239,31.84078563,16 Years and 11 Months,No,34.39606375,,Low_spent_Small_value_payments,221.5995793,0,-1.2673,1.0197,0.3787,0.6254,-1.0214 -0x1428d,CUS_0x5fd1,August,28,856-19-6470,_______,35223.94,,7,4,17,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",15.26958425,13,18.56,9,Standard,1269.36,39.3631828,21 Years and 10 Months,Yes,61.91473592,64.49349954,High_spent_Medium_value_payments,408.5245979,0,-1.57,0.851,-0.2039,-0.9963,0.6511 -0x14299,CUS_0x2a1b,August,30,782-94-3133,Developer,36101.73,,4,5,7,1,Debt Consolidation Loan,13.38067174,12,19.62,0,Standard,1452.04,37.6466537,28 Years and 4 Months,NM,25.16344997,420.7592953,Low_spent_Small_value_payments,164.5250047,0,-0.9928,0.4431,2.977,-1.6999,0.9074 -0x142a5,CUS_0x914e,August,55,748-44-0227,Musician,89384.91,,1,3,10,3,"Auto Loan, Payday Loan, and Student Loan",,938,9.54,5,Good,959.8585493,28.29903631,,No,118.5349504,598.7788877,High_spent_Small_value_payments,378.8328922,0,0.2666,-2.7089,0.5624,-0.9617,-0.8631 -0x142b1,CUS_0x8988,August,32,599-51-7510,Writer,16017.57,1202.7975,1,7,3,1,Not Specified,12.30960192,12,1.59,3,Good,696.5643318,37.41348039,22 Years and 4 Months,No,7.42822188,94.98156869,Low_spent_Small_value_payments,322.3116612,0,1.2434,-0.0007,-0.4293,-0.5777,-0.0109 -0x142bd,CUS_0xbd9f,August,49,109-05-8401,Accountant,88027.62,,0,3,2.288361749,2,"Auto Loan, Personal Loan, and Student Loan",3.074041823,5,8.94,0,Good,235.4508615,30.23167364,15 Years and 10 Months,No,157.2738526,,Low_spent_Medium_value_payments,180.6774413,0,-2.6788,-1.7066,0.5754,-2.1558,2.2133 -0x142c9,CUS_0xb49f,August,49,732-35-8904,Journalist,136582.04,,4,6,4,0,,17.06389562,11.64825797,1.73,3,Good,1340.248407,33.83407374,,No,0,232.4109336,High_spent_Large_value_payments,1119.472733,0,0.396,-0.6753,0.1389,-1.7425,-0.4497 -0x142d5,CUS_0xd6f,August,40,634-41-3558,Mechanic,70045.84,5515.822143,4,6,6,2,"Personal Loan, and Mortgage Loan",0.284373788,5,11.75,4,Good,1337.129282,27.97553746,,No,604.6440005,83.70588788,High_spent_Large_value_payments,667.0402212,0,0.1573,-2.5822,0.7949,1.9853,0.6913 -0x142e1,CUS_0x3cfa,August,37,345-02-9110,Media_Manager,31751.83,,5,4,18,3,"Student Loan, Credit-Builder Loan, and Payday Loan",17.818372,12,18.76,8,_,110.73,26.10820486,24 Years and 3 Months,Yes,58.00693711,56.8921429,High_spent_Small_value_payments,402.5995033,0,0.0997,-0.3796,0.6329,0.8317,1.0397 -0x142ed,CUS_0x18a6,August,60,464-94-6491,Scientist,34279.21,2741.600833,5,2,4985,3,"Student Loan, Home Equity Loan, and Payday Loan",10.68011298,10,4.83,0,Good,1025.64948,22.53847444,32 Years and 4 Months,NM,64.81128191,369.8718374,Low_spent_Small_value_payments,166.0242289,0,-1.5425,0.1168,-0.5599,-1.0422,-0.3834 -0x142f9,CUS_0x8d16,August,54,195-02-2602,Media_Manager,33235.4,2510.616667,6,5,17,0,,,16,3.35,5,Standard,964.7361214,36.71789453,19 Years and 6 Months,No,0,61.73907138,!@9#%8,448.6113551,0,1.6682,-1.6212,1.7055,0.1725,1.1158 -0x14305,CUS_0x707c,August,33,670-84-4853,Writer,142496.12,,4,6,7,0,,24.72476281,19,15.13,6,Standard,460.79,38.78212527,19 Years and 5 Months,No,0,1026.798324,Low_spent_Medium_value_payments,418.1693424,0,-1.421,-0.7876,0.1463,0.3073,-1.2844 -0x14311,CUS_0x5b0d,August,18,740-39-0372,_______,14433.94,1113.828333,9,5,34,9,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Home Equity Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, and Student Loan",30.08417446,21,28.84,6,Bad,3155.47,27.77708454,13 Years and 8 Months,NM,81.00111264,78.25414715,Low_spent_Small_value_payments,242.1275735,0,-1.0386,0.106,-0.4988,0.0395,-0.2207 -0x1431d,CUS_0x66ef,August,43,620-02-1126,Writer,35081.49,3047.4575,6,6,16,2,"Payday Loan, and Credit-Builder Loan",,14,6.57,0,Standard,893.8112581,27.3362544,,NM,51.97855084,95.33399833,Low_spent_Large_value_payments,436.9415257,0,-0.5704,0.2656,0.2006,0.3441,-0.1321 -0x14329,CUS_0x88fa,August,29,122-25-1035,Entrepreneur,17642.1,1386.175,2,7,7,3,"Payday Loan, Personal Loan, and Payday Loan",4.149313175,3,4,3,Good,548.31,34.83683509,22 Years and 3 Months,No,39.52043147,146.1558045,Low_spent_Small_value_payments,242.941264,0,-1.4929,-2.0159,0.2708,0.3821,-0.1286 -0x14335,CUS_0xc4b2,August,35,713-13-2504,Journalist,16285.005,1464.86287,7,7,19,100,,17.59712666,14,19.27,5,Standard,1329.59,38.95826407,17 Years and 6 Months,Yes,84.2208803,32.62970069,High_spent_Medium_value_payments,372.2786743,0,-2.1096,0.1749,1.0968,-1.4472,-0.471 -0x14341,CUS_0x826d,August,19,950-38-4770,Engineer,40000.96,3187.413333,3,3,5,1,Debt Consolidation Loan,16.7233538,11,14.58,2,_,1326.39,32.15924111,21 Years and 6 Months,Yes,17.28816023,298.1310547,Low_spent_Small_value_payments,293.3221184,0,0.65,0.4079,-1.9856,-0.5858,-0.1526 -0x1434d,CUS_0x8ccd,August,45,514-58-5414,_______,59125.92,5224.16,10,9,32.88954781,100,"Credit-Builder Loan, Student Loan, Home Equity Loan, Mortgage Loan, Not Specified, Payday Loan, Not Specified, Not Specified, and Personal Loan",27.69314315,17,15.64,9,Bad,2676.54,28.51446246,6 Years and 8 Months,Yes,1663.185831,89.00738964,High_spent_Large_value_payments,315.892698,0,0.1886,0.3165,-1.6874,-2.0284,-1.0145 -0x14359,CUS_0x2dc9,August,28,419-02-3637,Accountant,12505.6,1069.177971,8,3,19,0,,19.04934832,13,8.81,3,Standard,304.77,36.29508944,21 Years and 4 Months,No,153.9553622,89.21205001,Low_spent_Small_value_payments,323.1012833,0,-0.687,1.1301,-0.0352,2.2799,0.288 -0x14365,CUS_0x7101,August,45,268-79-6680,Engineer,113238.84,9705.57,1,5,5.288361749,2,"Payday Loan, and Debt Consolidation Loan",0,2,4.99,2,Good,115.48,27.57536785,22 Years and 4 Months,No,60362,556.5637538,High_spent_Medium_value_payments,920.2481567,0,0.0119,-0.7325,2.1121,0.65,-1.4402 -0x14371,CUS_0x9729,August,34,406-76-5709,_______,167075.68,13893.97333,2,4,4,0,,,1.168536069,13.86,2,Good,908.2145284,33.5933093,28 Years and 8 Months,No,0,311.6091667,High_spent_Medium_value_payments,1327.788167,0,1.9253,0.2283,-0.2985,-0.1596,0.1961 -0x1437d,CUS_0x4c4b,August,51,866-43-5193,Media_Manager,104929.28,9025.106667,4,7,8,4,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",14.72955539,11,7.9,6,Standard,651.32,37.25990707,27 Years and 11 Months,Yes,291.5505606,92.25503374,!@9#%8,758.7050723,0,-0.6656,-0.5941,-0.1838,-1.052,-0.7989 -0x14389,CUS_0x6468,August,55,330-62-1012,Accountant,120948.16,,0,5,1.288361749,2,"Mortgage Loan, and Auto Loan",10.18345979,10,7.61,3,_,14.43258536,39.48029121,26 Years and 5 Months,No,121.8453296,,Low_spent_Medium_value_payments,311.938271,0,0.8213,0.0972,1.372,-1.2341,1.7254 -0x14395,CUS_0x8c5a,August,23,214-93-4299,Lawyer,58770.12,4659.51,10,10,30,5,"Student Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Student Loan",,22.95103883,11.49,9,Standard,2236.698028,38.11448365,7 Years and 2 Months,Yes,231.2523795,248.3743045,Low_spent_Small_value_payments,276.3243159,0,0.7455,0.1633,0.3945,-1.4311,-0.1334 -0x143a1,CUS_0x5bfe,August,18,932-62-0394,Media_Manager,11877.735,,3,4,15,4,"Not Specified, Student Loan, Home Equity Loan, and Home Equity Loan",10.12424255,8,9.64,7,Standard,172.91,36.78665624,30 Years and 9 Months,Yes,22.91934963,51.30848175,Low_spent_Medium_value_payments,278.2532936,0,0.4253,0.3631,-0.4455,0.6619,-0.1228 -0x143ad,CUS_0x8834,August,38,729-94-8669,Manager,27964.68,2224.39,8,3,6,4,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",,14,0.84,1,Standard,1213.1,22.34861833,20 Years and 11 Months,No,52.44953078,,Low_spent_Large_value_payments,243.90105,0,0.6001,1.2618,-0.3637,-0.0298,0.1722 -0x143b9,CUS_0x7d1f,August,50,476-03-7849,Accountant,21931.995,1887.66625,1,1,1,0,,11.68787925,10,,5,Good,782.1613239,34.17702009,16 Years and 6 Months,No,0,30.55803143,High_spent_Medium_value_payments,412.68993,0,0.843,-0.0126,-0.5275,0.0039,-0.2985 -0x143c5,CUS_0xb7df,August,80,061-83-0070,Accountant,53352.6,4345.05,6,10,30.88954781,7,"Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Payday Loan, Not Specified, and Personal Loan",28.68172533,20,17.81,13,_,3576.63,29.71004496,13 Years and 10 Months,Yes,1569.408386,118.8540157,High_spent_Small_value_payments,311.9125175,0,-0.1125,0.2483,1.1838,-0.8932,-0.9577 -0x143d1,CUS_0x38e0,August,20,385-08-6442,Writer,42395.16,3491.93,1,5,8,4,"Home Equity Loan, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",0,2,9.4,2,_,832.5242293,38.78896882,16 Years and 4 Months,No,135.0186833,72.67781888,High_spent_Large_value_payments,389.8581545,0,0.7582,-1.5815,0.0799,-0.2598,-1.6661 -0x143dd,CUS_0xbce,August,21,186-94-9117,Architect,14099.52,,8,336,20,4,"Debt Consolidation Loan, Home Equity Loan, Student Loan, and Student Loan",,19.64969733,12.43,9,Standard,1474.510968,26.38267542,13 Years and 3 Months,Yes,142.4741946,89.24716597,Low_spent_Small_value_payments,287.7323695,0,0.0609,-0.9459,-0.8872,0.5677,0.0961 -0x143e9,CUS_0x1231,August,39,780-20-7811,Journalist,30739.3,2298.608333,4,4,13,6,"Student Loan, Personal Loan, Payday Loan, Payday Loan, Student Loan, and Student Loan",9.577038419,8,16.7,,Standard,1365.58,23.4031424,,Yes,135.2381411,106.4532641,High_spent_Small_value_payments,248.1694282,0,-0.505,0.8097,-0.9501,1.3017,-0.4209 -0x143f5,CUS_0x507a,August,43,949-56-4266,Musician,53387.88,4437.99,5,5,5,1,Student Loan,24.8656405,17,13.39,11,Standard,1106.86,39.84520029,11 Years and 6 Months,Yes,23.0272467,76.68771641,High_spent_Medium_value_payments,594.0840369,0,-0.3141,1.0244,0.8259,-0.2089,-0.0535 -0x14401,CUS_0x5c1c,August,44,584-91-0882,Writer,17794.505,,5,4,8,0,,5.013517153,4.819743152,7.06,2,Good,92.32048834,37.73161307,31 Years and 4 Months,NM,0,10000,Low_spent_Small_value_payments,280.0364373,0,-0.764,-0.6176,0.178,-0.5523,0.0059 -0x1440d,CUS_0x7ea4,August,56,000-89-3828,Media_Manager,60422.06,4863.171667,6,7,11,2,"Personal Loan, and Payday Loan",13.33034975,10,16.44,2,Standard,194.58,30.5939769,30 Years and 2 Months,NM,79.00806767,65.92973783,High_spent_Medium_value_payments,591.3793612,0,-0.662,0.2814,0.3411,1.5074,2.5134 -0x14419,CUS_0x8d0d,August,55,061-41-0572,_______,112095.72,,7,5,5,0,,17.60797493,12,11.13,8,Standard,222.5546416,22.50014808,27 Years and 5 Months,Yes,955.7778563,1160.755298,Low_spent_Medium_value_payments,251.9606373,0,0.2022,0.2496,-0.118,0.2373,1.0767 -0x14425,CUS_0x8f59,August,36,705-77-2792,Mechanic,24577.48,2055.123333,5,5,18,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",21.0220137,14.53819158,11.91,10,_,912.1602017,28.35981596,14 Years and 9 Months,Yes,95.53848737,232.0719744,!@9#%8,167.9018716,0,-2.281,-2.3909,0.0858,-0.2963,-0.4523 -0x14431,CUS_0x6a50,August,39,576-50-6561,Teacher,37482.98,,5,6,6,1,Personal Loan,,12,11.73,0,Good,1321.541364,36.38311064,23 Years and 10 Months,No,29.67547632,165.1343303,High_spent_Small_value_payments,425.2872429,0,-0.4923,0.4278,0.3453,-0.6595,-0.7283 -0x1443d,CUS_0xb4c2,August,28,924-73-2576,Musician,33787.3,2956.608333,7,5,34,6,"Mortgage Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",32.60253864,15.58373733,0.72,11,Bad,3103.050388,29.29359225,8 Years and 4 Months,Yes,101.5531577,70.41001368,High_spent_Medium_value_payments,373.6976619,0,0.4049,1.7673,-0.5487,-0.6524,-0.4447 -0x14449,CUS_0x112f,August,25,294-20-6562,Mechanic,75506.42,6050.201667,1,4,5,1,Auto Loan,13.79603791,,3.44,7,Good,1209.46936,39.8489185,23 Years and 8 Months,No,60.90364323,278.2980759,Low_spent_Small_value_payments,555.8184476,0,-0.7036,-0.5963,1.0238,-0.3277,-0.9779 -0x14455,CUS_0x3bad,August,29,510-25-2095,Musician,142081.48,11771.12333,6,6,15,3,"Personal Loan, Not Specified, and Mortgage Loan",,20,2.21,4,Standard,867.0570374,34.49466617,27 Years and 2 Months,No,180.6164783,339.4784814,High_spent_Large_value_payments,947.6969622,0,0.7947,1.4491,0.9551,-0.0546,-1.7272 -0x14461,CUS_0x1ccd,August,32,808-03-9422,_______,17733.32,,5,5,19,3,"Mortgage Loan, Not Specified, and Not Specified",11.01676549,10,8.73,3,Standard,111.83,24.98656738,21 Years and 3 Months,No,25.9784603,,Low_spent_Medium_value_payments,342.4762894,0,0.1479,0.864,0.7091,0.8496,1.4421 -0x1446d,CUS_0x985e,August,23,207-73-2763,Doctor,63983.16,5318.93,9,8,31.06745738,7,"Payday Loan, Payday Loan, Payday Loan, Not Specified, Personal Loan, Payday Loan, and Home Equity Loan",36.43920946,21,22.34,15,_,3845.550954,33.48458387,11 Years and 2 Months,Yes,189.0601537,100.842294,High_spent_Medium_value_payments,465.2702644,0,-0.6137,-0.7669,-0.2817,0.0223,-0.8519 -0x14479,CUS_0x21b6,August,49,838-36-2359,Developer,33057.46,,4,3,12,2,"Personal Loan, and Payday Loan",14.72137294,10,7.08,4,Standard,954.98,34.21205941,32 Years and 6 Months,No,28.90233879,,High_spent_Small_value_payments,323.0911795,0,-0.8009,0.3096,-1.2929,-1.492,0.1402 -0x14485,CUS_0xac46,August,32,370-59-9988,Scientist,41729.08,,6,10,1061.067457,5,"Payday Loan, Auto Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",46.7744031,25.30172864,16.51,7,Bad,3227.293952,32.23215797,14 Years and 0 Months,Yes,155.9578428,26.96680329,High_spent_Large_value_payments,405.3973993,0,1.3421,-1.0021,1.0866,0.9571,-1.3789 -0x14491,CUS_0x7677,August,24,184-32-0967,Architect,68911.26,,8,6,20,2,"Not Specified, and Payday Loan",15.18487626,10,11.5,9,Standard,174.74,30.20519375,19 Years and 5 Months,Yes,81.89072477,145.3357275,High_spent_Small_value_payments,619.9340477,0,-1.3074,-0.4268,-0.9498,-0.0346,-0.5524 -0x1449d,CUS_0xae26,August,28,523-09-9908,Engineer,13129.295,827.1079167,6,6,14,2,"Personal Loan, and Mortgage Loan",,20.14841976,10.63,7,Standard,307.5765118,25.34452688,32 Years and 9 Months,No,20.96990473,75.88824758,Low_spent_Medium_value_payments,265.8526394,0,0.1395,0.0839,-0.9601,1.3227,0.6983 -0x144a9,CUS_0x3407,August,25,986-47-7831,Writer,19243.9,,6,5,19,4,"Student Loan, Payday Loan, Not Specified, and Home Equity Loan",19.63298787,16.13042949,7.88,6,Standard,2138.65708,34.31649653,6 Years and 5 Months,Yes,62.02620965,10000,Low_spent_Small_value_payments,229.231468,0,-0.2787,1.7574,-1.625,0.2786,0.5503 -0x144b5,CUS_0x5ae2,August,42,349-21-2943,Architect,35758.39,,3,3,15,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",25.41489024,18,8.82,9,Standard,785.19,24.88825763,,Yes,49.72792354,35.86844159,High_spent_Medium_value_payments,485.6902182,0,0.2727,0.7385,-0.987,-0.3348,-2.1468 -0x144c1,CUS_0x6136,August,25,398-44-5320,Writer,104562.72,7727.56045,8,7,15,7,"Payday Loan, Home Equity Loan, Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, and Not Specified",10.7616165,8,11.24,8,Standard,564.0425667,33.64303787,7 Years and 6 Months,Yes,1119.45238,125.9576728,!@9#%8,554.7676615,0,-0.8144,0.3699,-1.4339,0.665,0.8652 -0x144cd,CUS_0x663,August,38,#F%$D@*&8,Mechanic,22953.95,2180.829167,7,6,13,1,Auto Loan,16.64975867,13.09364663,1.69,5,Standard,192.9235819,38.83142339,24 Years and 2 Months,No,12.16263753,,Low_spent_Medium_value_payments,345.1347465,0,0.1375,0.583,0.2481,-1.1417,-1.4413 -0x144d9,CUS_0xbe72,August,31,734-25-2086,Writer,14780.71,,10,8,17.95700519,7,"Debt Consolidation Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Auto Loan",33.37126306,21.8690571,3.76,10,_,2204.198761,29.9540281,6 Years and 9 Months,Yes,1391.270782,,Low_spent_Small_value_payments,257.9847113,0,0.4486,2.4386,-0.9872,-0.3957,1.3227 -0x144e5,CUS_0x8513,August,33,783-31-2912,Teacher,107688.4,9252.033333,5,3,12.28836175,4,"Personal Loan, Auto Loan, Auto Loan, and Home Equity Loan",15.12970565,,15.59,6,Standard,758.4347265,32.95972646,22 Years and 6 Months,Yes,191.447968,539.1453294,!@9#%8,854.5474969,0,-0.3487,-0.1612,1.0379,1.36,1.861 -0x144f1,CUS_0xa5c,August,36,975-11-0042,Writer,62792.1,,7,6,26,100,"Not Specified, and Credit-Builder Loan",24.85347425,,3.42,7,Bad,2362.56,24.70199994,10 Years and 11 Months,Yes,100.4981151,127.8957776,High_spent_Medium_value_payments,537.3736073,0,-0.5096,0.9781,-0.2138,2.0436,-0.4366 -0x144fd,CUS_0xc4d7,August,18,356-44-7304,Journalist,35296.32,2939.36,7,6,5,4,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",,12,11.91,5,Standard,902.23,27.79612095,23 Years and 0 Months,Yes,59.16549864,72.89464257,Low_spent_Large_value_payments,431.8758588,0,0.6598,0.6554,-0.9183,-0.457,0.2896 -0x14509,CUS_0x47f1,August,41,269-58-1027,Architect,17893.36,,4,4,8.067457376,2,"Debt Consolidation Loan, and Personal Loan",,17,19.41,11,Standard,2628.910954,23.91891278,18 Years and 0 Months,Yes,27.73646464,114.8471008,Low_spent_Small_value_payments,283.7074799,0,-1.3956,0.6435,0.4389,0.1687,-0.5968 -0x14515,CUS_0x363a,August,26,140-53-9808,Musician,54539.52,4540.96,8,5,30,5,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",29.99555967,21.63001595,5.99,11,Bad,5219.782664,40.0970234,6 Years and 8 Months,Yes,189.9195019,149.8618976,!@9#%8,364.3146005,0,0.9989,-0.6707,-0.7363,0.964,1.0977 -0x14521,CUS_0x2561,August,32,433-00-9327,Doctor,37937.56,3129.463333,10,6,30,9,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Not Specified, Student Loan, Student Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",39.83199545,24,22.29,6,Bad,3339.22,25.0453742,6 Years and 9 Months,Yes,243.0830684,,!@9#%8,252.3584842,0,0.9474,-1.5031,1.409,-2.0518,-0.2068 -0x1452d,CUS_0xb338,August,52,897-27-3355,Doctor,132003.96,,5,4,6.288361749,2,"Not Specified, Debt Consolidation Loan, and Not Specified",0,3,0.63,4,Good,486.0371679,34.15247411,22 Years and 9 Months,No,309.2778143,671.1395324,High_spent_Small_value_payments,836.9890633,0,1.4484,-0.6488,-0.7294,0.6914,0.8434 -0x14539,CUS_0x1d21,August,37,515-83-9208,Doctor,73606.16,,3,7,17,6,"Not Specified, Mortgage Loan, Student Loan, Student Loan, Personal Loan, and Student Loan",11.10698694,10,9.06,17,Standard,1707.18,30.87193599,11 Years and 2 Months,NM,330.7686288,64.61424736,High_spent_Large_value_payments,429.9017905,0,-0.4125,-1.176,-0.2413,-0.446,-0.4022 -0x14545,CUS_0xc4a2,August,40,#F%$D@*&8,Engineer,41691.16,3040.290095,7,8,18.06745738,6,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",,20,21.32,11,Bad,5010.030954,32.84080777,,Yes,412.3715165,69.93525037,High_spent_Large_value_payments,275.8725172,0,0.4054,-0.8691,-0.8811,-0.1472,0.7174 -0x14551,CUS_0x2a46,August,32,295-98-3299,Writer,59641.5,4974.125,8,7,27,7,"Personal Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",30.35482356,22,23.99,8,Bad,3116.46,27.45709167,2 Years and 6 Months,Yes,260.9494756,139.2112808,Low_spent_Medium_value_payments,377.2517436,0,0.2264,0.906,-1.5093,0.2005,-0.6458 -0x1455d,CUS_0xab9,August,37,287-89-2054,_______,50573.82,4175.485,8,6,10,5,"Not Specified, Auto Loan, Credit-Builder Loan, Student Loan, and Not Specified",10.00993118,9,18.95,8,_,1778.409983,36.89110739,7 Years and 5 Months,NM,105.7122202,341.5059785,Low_spent_Small_value_payments,298.8588413,0,0.5494,0.4945,0.3528,0.1767,-0.093 -0x14569,CUS_0x3be5,August,43,075-06-4820,Engineer,11900.03,1264.669167,3,5,18,4,"Not Specified, Mortgage Loan, Not Specified, and Not Specified",11.78427422,12,2.86,0,Standard,399.01,27.14646895,,No,35.54622166,24.69872721,High_spent_Medium_value_payments,316.2219678,0,-1.2715,1.6754,-1.2382,-1.6179,-2.6706 -0x14575,CUS_0xc680,August,39,676-95-9854,_______,17046.75,,7,5,25,5,"Mortgage Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",,,27.59,7,Bad,3999.290989,30.47431817,,Yes,51.68830486,86.51491827,Low_spent_Medium_value_payments,296.2530269,0,-0.9348,-3.8351,1.559,-0.2081,-0.5999 -0x14581,CUS_0x45e1,August,36,039-56-8958,Architect,116680.84,10017.40333,5,5,7.288361749,2,"Auto Loan, Home Equity Loan, and Credit-Builder Loan",,9,11.63,9,Standard,300.0790304,40.02722005,24 Years and 0 Months,Yes,178.3581441,,High_spent_Medium_value_payments,850.0035269,0,0.3402,0.099,-0.1129,0.0383,-0.5474 -0x1458d,CUS_0xa2b6,August,45,426-46-8465,Teacher,27020.67,,5,7,15,0,,,14,3.27,4,Standard,764.45,25.45420666,16 Years and 3 Months,No,0,70.78100887,High_spent_Medium_value_payments,430.6912411,0,0.4172,1.3381,0.7922,-0.2818,0.8136 -0x14599,CUS_0x7478,August,25,529-17-6334,Entrepreneur,26554.52,2114.876667,4,3,20,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",16.19728254,11,9.72,2511,_,1114.46,32.02453754,8 Years and 2 Months,Yes,62.16581046,,Low_spent_Large_value_payments,238.4225671,0,-0.1001,1.5153,2.0363,0.218,0.1934 -0x145a5,CUS_0x92f9,August,21,818-22-3188,Lawyer,21555.5,,6,6,20,2,"Student Loan, and Not Specified",13.72349467,8,21.58,9,Standard,857.88,22.4274007,6 Years and 9 Months,Yes,22.7722112,126.879027,!@9#%8,330.9779285,0,0.1009,-0.1728,-1.0251,-1.1777,0.943 -0x145b1,CUS_0x5536,August,25,#F%$D@*&8,Musician,166102.8,,1,3,11,2,"Auto Loan, and Auto Loan",0.876732061,2,6.22,4,Good,953.24,40.01335688,29 Years and 5 Months,No,194.6938168,254.1975934,High_spent_Medium_value_payments,1204.59859,0,-0.0486,-0.6673,-0.1114,1.1952,0.4075 -0x145bd,CUS_0x8d32,August,30,206-96-2048,Media_Manager,39832.82,,8,8,31,4,"Home Equity Loan, Not Specified, Auto Loan, and Credit-Builder Loan",27.51808123,13,13.49,11,Standard,1446.99,39.93701186,11 Years and 11 Months,Yes,75.57256894,51.17786112,High_spent_Large_value_payments,462.4897366,0,0.496,0.2415,-0.4375,-0.3681,0.5427 -0x145c9,CUS_0x981c,August,32,248-83-8033,Mechanic,57906.8,,6,7,27,5,"Not Specified, Student Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",,25,23.63,12,Bad,2501.85,36.06734062,14 Years and 0 Months,Yes,182.2752672,152.3664793,High_spent_Medium_value_payments,388.8149202,0,-0.017,1.9528,-0.3886,1.0791,-1.3119 -0x145d5,CUS_0x7756,August,36,325-14-7904,Engineer,144388.36,,3,2,10.28836175,0,,7.279697529,9,9.47,8,_,636.908484,41.25839835,24 Years and 8 Months,No,1241.203549,767.234372,High_spent_Medium_value_payments,1126.549216,0,1.0164,1.0837,-2.1876,0.5402,-0.5233 -0x145e1,CUS_0x6156,August,41,525-65-7152,Writer,31729.38,2715.115,2,5,3,4,"Personal Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",,1.16820739,8.24,6,_,1350.802755,35.66675308,20 Years and 0 Months,No,95.75852838,71.94990274,High_spent_Medium_value_payments,353.8030689,0,0.702,0.6661,-0.38,-1.894,-0.5711 -0x145ed,CUS_0xad7e,August,25,304-40-0948,Engineer,82382.62,7097.218333,2,7,10,1,Student Loan,13.08296961,,14.18,5,Good,1091.483264,28.45061625,24 Years and 4 Months,No,56.537626,264.6882687,Low_spent_Large_value_payments,682.8617721,0,0.672,0.1174,0.5122,-1.9138,0.2679 -0x145f9,CUS_0x918c,August,18,153-15-2374,Entrepreneur,35397.98,,6,470,11,6,"Student Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Credit-Builder Loan",12.81829125,,15.51,6,Standard,1709.112753,31.20304352,18 Years and 8 Months,Yes,139.9411148,158.8935819,Low_spent_Small_value_payments,318.1952923,0,1.1288,-0.8281,0.707,1.2834,0.8075 -0x14605,CUS_0xba9f,August,38,547-25-7904,_______,45536.43,3426.884767,10,9,34.95700519,7,"Auto Loan, Student Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Not Specified",42.5170109,25,16.87,12,Bad,3638.790954,35.03002699,13 Years and 10 Months,Yes,1865.246682,42.68852697,High_spent_Large_value_payments,293.4024042,0,-2.3333,-0.2246,0.3231,-1.5751,-0.8187 -0x14611,CUS_0x1d86,August,25,370-67-4741,Developer,47725.98,,7,8,33.06745738,3,"Auto Loan, Mortgage Loan, and Payday Loan",22.8304118,11,10.52,15,Standard,2778.360954,30.05060696,,Yes,65.97000195,420.8290956,Low_spent_Small_value_payments,186.3971145,0,-1.0331,-0.8721,-2.943,-1.0558,0.3323 -0x1461d,CUS_0xbf40,August,27,806-23-3767,Doctor,81864.56,6882.046667,8,5,11,2,"Mortgage Loan, and Not Specified",,16,11.07,7,Standard,1210.87,37.58314669,,Yes,74.80770126,228.2468775,!@9#%8,635.1500879,0,-1.0998,-1.1203,-0.1813,0.2153,-0.8782 -0x14629,CUS_0x1854,August,27,369-07-8864,Scientist,30632.94,,3,5,1,2,"Not Specified, and Student Loan",,2,,2,Good,31.5,37.17580771,22 Years and 6 Months,No,44.89049415,,Low_spent_Large_value_payments,259.0609777,0,-1.1604,-0.7183,0.9992,0.9698,0.61 -0x14635,CUS_0x83c5,August,31,171-97-9968,Engineer,62859.18,5414.265,10,9,29.88954781,7,"Student Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Payday Loan",,30.36460015,4.64,12,Bad,1829.149988,35.62038503,19 Years and 4 Months,Yes,1565.796975,,Low_spent_Medium_value_payments,212.4095974,0,-0.5779,-0.7923,-0.2797,0.223,0.4171 -0x14641,CUS_0x997a,August,21,482-72-9781,Manager,45366.27,3481.5225,9,9,20.06745738,5,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Payday Loan, and Mortgage Loan",45.15051007,25,15.67,12,_,3651.490954,32.45477492,2 Years and 6 Months,Yes,112.3006149,48.30420846,High_spent_Large_value_payments,400.8271387,0,-0.8474,-0.8995,-1.0378,-0.844,-0.1362 -0x1464d,CUS_0x4a5d,August,18,714-45-9727,Lawyer,15522.74,1330.561667,8,7,21,9,"Not Specified, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",26.59540464,20,26.31,11,_,4268.86,36.81498846,1 Years and 9 Months,Yes,71.24551454,,Low_spent_Small_value_payments,300.0914421,0,0.4488,-0.048,-1.1363,0.331,-0.3966 -0x14659,CUS_0x6fec,August,46,265-87-8866,Media_Manager,136556.44,11613.70333,5,4,6,1,Student Loan,23.29491815,17,1.49,2,Standard,694.02,31.7564381,28 Years and 2 Months,No,94.17978857,323.7347961,High_spent_Medium_value_payments,993.4557486,0,-0.2944,-0.1608,-0.7286,0.5408,0.0182 -0x14665,CUS_0x4e2,August,27,#F%$D@*&8,Teacher,63484.24,5157.353333,5,7,10,2,"Debt Consolidation Loan, and Payday Loan",12.23839452,8.022263952,11.12,6,Good,333.2421962,32.63776289,27 Years and 9 Months,No,68.14234085,96.72543255,High_spent_Large_value_payments,590.8675599,0,1.2728,-0.796,0.4845,0.1254,-0.4962 -0x14671,CUS_0x4d8b,August,54,662-45-6089,Accountant,29508.41,,7,4,9,1,Payday Loan,17.67619094,,10.75,4,Standard,333.86,27.22113463,19 Years and 9 Months,No,16.5472122,32.35159607,High_spent_Large_value_payments,448.7046084,0,0.4482,-0.7676,-0.2157,-0.3571,1.0283 -0x1467d,CUS_0x626e,August,52,728-24-1498,Entrepreneur,128515.52,10879.62667,4,4,5,1,Personal Loan,20.16492324,,1.24,5,Good,721.91,38.13254658,30 Years and 9 Months,No,96.77814029,744.6707414,Low_spent_Medium_value_payments,526.513785,0,0.5742,1.2948,-2.8767,1.4542,0.6614 -0x14689,CUS_0x5d3d,August,36,276-69-9621,Accountant,7309.155,567.09625,6,8,19,4,"Not Specified, Not Specified, Auto Loan, and Credit-Builder Loan",26.25418004,13.1783603,8.56,8,Standard,1434.424802,31.78147713,8 Years and 3 Months,Yes,20.29077116,30.67023888,High_spent_Small_value_payments,265.748615,0,0.3011,-0.2803,0.9004,1.0671,-0.4335 -0x14695,CUS_0x9be9,August,26,541-32-7027,Journalist,9821410,3468.5825,654,6,15,7,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, and Not Specified",28.72375705,17.70816097,15.53,11,_,1710.572012,30.58946796,13 Years and 8 Months,Yes,214.0097779,,High_spent_Small_value_payments,236.390051,0,1.8356,-1.6968,-1.2551,0.3343,-0.46 -0x146a1,CUS_0x86ce,August,32,984-29-2530,_______,80877.72,6805.81,6,7,30,6,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,25.0021213,15.22,7,Bad,4369.254301,40.90778801,8 Years and 4 Months,NM,253.6070168,124.8854711,High_spent_Large_value_payments,542.0885121,0,0.427,-0.5961,-0.232,-0.1823,-0.7791 -0x146ad,CUS_0x9d62,August,37,533-48-6343,Accountant,60340.08,4327.369161,2,5,3,3,"Student Loan, Auto Loan, and Mortgage Loan",7.931652108,8,11,1,Good,593.2921952,22.84816932,18 Years and 8 Months,NM,577.3940268,,Low_spent_Small_value_payments,65.66197131,0,2.7387,-1.2784,0.4061,-0.5847,-0.9637 -0x146b9,CUS_0x6fbf,August,19,824-59-3661,Lawyer,32991.92,2682.326667,8,9,18.88954781,6,"Mortgage Loan, Student Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Auto Loan",24.34208878,17.28432959,0.66,10,_,1415.703891,35.05025799,10 Years and 5 Months,Yes,1448.089647,,Low_spent_Small_value_payments,177.4951464,0,0.9413,-0.9244,0.9062,0.2842,0.1599 -0x146c5,CUS_0xe72,August,43,644-98-4745,Scientist,21578.69,1592.224167,6,7,17,2,"Personal Loan, and Payday Loan",26.80984346,18,8.96,4,Standard,625.46,37.79020769,32 Years and 6 Months,No,18.87809836,118.5057751,Low_spent_Medium_value_payments,301.8385432,0,0.9455,0.0234,1.5719,0.59,-0.3301 -0x146d1,CUS_0xa4f3,August,40,958-52-5986,Accountant,32897.91,,3,3,5,3,"Personal Loan, Student Loan, and Credit-Builder Loan",18.76312959,18.26870093,11.7,0,Standard,389.2417803,24.90990935,27 Years and 3 Months,No,47.73495058,,Low_spent_Small_value_payments,170.1944121,0,-1.1522,-0.3757,0.6167,-1.4864,0.0169 -0x146dd,CUS_0xb395,August,50,355-24-5947,Entrepreneur,77020.76,,0,3,10,2,"Auto Loan, and Personal Loan",10.33166558,9,8.76,1,_,380.09,31.34442289,32 Years and 0 Months,No,92.21433911,,Low_spent_Medium_value_payments,175.9668062,0,0.1866,-0.2054,0.4505,1.1582,-0.3816 -0x146e9,CUS_0x3e62,August,80,102-37-1443,Developer,16921.67,,9,10,33.06745738,2,"Mortgage Loan, and Auto Loan",34.57381656,18.06028977,23.94,11,_,2716.755991,36.5203758,6 Years and 8 Months,Yes,25.16045758,57.39367794,High_spent_Medium_value_payments,286.3394932,0,0.1456,-0.8156,0.9523,1.0568,0.2443 -0x146f5,CUS_0x81ae,August,24,437-30-2794,Accountant,61281.6,,7,7,11,4,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",11.08831072,9,20.13,7,Standard,1255.59757,23.85141394,8 Years and 5 Months,NM,197.61091,759.6590506,Low_spent_Small_value_payments,,0,-1.6725,0.4232,-1.0817,-0.8132,0.6339 -0x14701,CUS_0x87c5,August,40,362-65-9938,Doctor,120174.4,10016.53333,7,4,6,1,Mortgage Loan,,14,15.67,7,Standard,828.59,44.04210487,,Yes,94.89845431,113.2659516,High_spent_Large_value_payments,1033.488927,0,-1.182,-0.6382,0.1688,-0.4447,0.603 -0x1470d,CUS_0x6826,August,80,527-13-3288,Engineer,107765.7,8982.475,7,5,7,4,"Auto Loan, Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",11.11780104,9,3.25,6,Standard,1134.39,32.26037879,28 Years and 8 Months,No,261.2601642,179.0590902,High_spent_Large_value_payments,697.9282456,0,0.4234,1.3057,-0.8987,0.1512,1.7042 -0x14719,CUS_0xb130,August,30,040-41-0981,Entrepreneur,61783.38,,3,7,11,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",6.061888927,7,11.35,3,Good,1385.21,36.56205927,25 Years and 3 Months,No,87.12472355,10000,High_spent_Small_value_payments,615.467325,0,0.2711,-0.0883,0.1268,-0.4238,-1.8841 -0x14725,CUS_0x3c5e,August,26,516-91-0042,Media_Manager,20588.45,,6,10,23,4,"Payday Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",22.89428586,18.25741826,5.12,14,Bad,2363.407348,38.26500907,6 Years and 3 Months,Yes,54.05859209,38.39854459,High_spent_Medium_value_payments,313.31328,0,2.434,-1.7525,1.6227,0.4216,0.5658 -0x14731,CUS_0x76a6,August,41,778-99-0909,Lawyer,47817.32,3814.776667,3,6,12.28836175,0,Personal Loan,,12,10.67,4,Standard,180.53,34.78222526,23 Years and 9 Months,Yes,38.92815899,460.6721897,High_spent_Large_value_payments,541.8147789,0,1.6204,-0.8943,-0.1949,-0.8324,0.617 -0x1473d,CUS_0x5b7d,August,46,052-24-8925,Musician,14320.27,,8,10,28.95700519,100,"Payday Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,25.40837264,14.49,11,Bad,1841.046697,40.41643817,11 Years and 6 Months,Yes,1397.753575,,Low_spent_Medium_value_payments,204.4655251,0,0.2663,0.2028,-0.9661,2.367,-0.2903 -0x14749,CUS_0x1c24,August,27,931-29-3452,Manager,87263.22,7297.935,8,6,16,1,Mortgage Loan,18.49572609,14,7.82,8,_,135.88,33.68364418,27 Years and 2 Months,Yes,67.17035352,,High_spent_Large_value_payments,717.9933353,0,-0.3943,1.433,0.6688,-1.2472,-0.2631 -0x14755,CUS_0x8bb5,August,27,531-59-5314,Journalist,33907.86,2562.655,3,7,8,2,"Not Specified, and Payday Loan",10.96512437,10.43401051,2.04,2,Good,1536.786621,30.03399446,22 Years and 6 Months,No,36.35654731,,Low_spent_Small_value_payments,223.1249742,0,0.9224,-0.8632,0.1344,-0.9463,-0.7038 -0x14761,CUS_0x99ba,August,53,542-49-0323,Journalist,17027.44,1366.953333,5,4,4,0,,9.745115272,9,3.66,2,Good,1134.25588,30.17056754,27 Years and 5 Months,No,0,54.66822611,Low_spent_Medium_value_payments,369.9735526,0,-1.0664,1.2058,0.1675,0.9145,-1.3833 -0x1476d,CUS_0x41ea,August,44,733-38-8328,Teacher,37261.31,,5,2,5,4,"Payday Loan, Student Loan, Debt Consolidation Loan, and Not Specified",0,2,1.01,1,Good,84.15111374,24.36714886,19 Years and 10 Months,No,123.1140715,130.8209377,High_spent_Small_value_payments,317.0789093,0,0.0626,-0.9835,1.53,-0.7017,1.5131 -0x14779,CUS_0x9cc4,August,53,788-70-2690,Accountant,11514.085,881.5070833,7,5,8,0,,,10,4.76,6,Standard,1408.3,38.23011363,27 Years and 6 Months,Yes,0,117.1177941,Low_spent_Small_value_payments,261.0329142,0,-1.0925,-0.9367,-0.8458,-1.1299,0.6216 -0x14785,CUS_0xd66,August,44,224-51-2369,Musician,15824.93,1207.744167,4,7,9,0,,13.63366036,12,6.98,0,Good,345.23,33.92347326,22 Years and 11 Months,No,0,110.4667678,Low_spent_Medium_value_payments,290.3076488,0,0.4167,-0.0749,0.8081,1.2137,0.1142 -0x14791,CUS_0x55f4,August,56,726-57-9713,Architect,28762.68,2281.89,7,6,10,100,,,12,8.23,1,Standard,1391.77,39.01966311,31 Years and 11 Months,Yes,0,45.07502743,High_spent_Small_value_payments,443.1139726,0,0.6689,1.3291,-0.2713,-0.3575,-0.0392 -0x1479d,CUS_0x61a4,August,32,472-31-0351,_______,32853.06,2929.755,8,910,34.95700519,6,"Debt Consolidation Loan, Student Loan, Student Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",39.49341272,24,26.66,9,_,3402.060954,39.77202137,12 Years and 0 Months,Yes,1426.060586,10000,High_spent_Large_value_payments,310.2818311,0,1.0106,1.6895,0.9252,-0.6986,-0.2426 -0x147a9,CUS_0x946e,August,31,699-70-2473,Entrepreneur,48658.29,3932.8575,6,10,32.06745738,7,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",38.98075284,20.24117613,18.36,8,Bad,4915.016668,33.62893516,10 Years and 8 Months,Yes,153.4653178,,Low_spent_Small_value_payments,74.1900415,0,-0.6026,-0.5899,-1.9409,1.0404,1.112 -0x147b5,CUS_0x8277,August,28,226-36-8093,Media_Manager,125982.48,,4,5,0.288361749,100,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",0,3,7.44,2,Good,1274.76,33.85490387,15 Years and 11 Months,No,247.7392335,538.971253,!@9#%8,906.7809745,0,1.5766,1.1533,0.7208,1.8854,0.7234 -0x147c1,CUS_0x1d28,August,25,075-04-2227,Entrepreneur,16644.79,1547.065833,7,6,24,9,"Personal Loan, Home Equity Loan, Personal Loan, Personal Loan, Payday Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",17.81817678,,10.93,12,Bad,3847.038088,33.06995287,,NM,100.765767,152.9462453,Low_spent_Small_value_payments,190.994571,0,-0.0342,-0.0918,-0.2138,-1.5989,1.538 -0x147cd,CUS_0x275d,August,32,257-48-1323,Architect,61739.8,5247.983333,609,6,19,100,"Credit-Builder Loan, and Student Loan",,24.34733242,8.26,7,Standard,1905.817302,39.27533243,14 Years and 3 Months,Yes,91.37642096,81.60060011,High_spent_Medium_value_payments,601.8213123,0,-0.1926,1.3186,-1.7931,0.5944,-0.1397 -0x147d9,CUS_0x3243,August,25,892-18-3180,Doctor,40377.89,3206.824167,5,7,2,4,"Auto Loan, Debt Consolidation Loan, Not Specified, and Not Specified",,6.846012779,3.35,4,Good,1581.306405,27.16129918,28 Years and 5 Months,No,119.1397369,211.8780555,Low_spent_Small_value_payments,279.6646243,0,0.369,-0.8714,1.129,0.57,0.6011 -0x147e5,CUS_0x1140,August,31,141-17-2233,Accountant,14532812,914.15,6,10,28.88954781,6,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Payday Loan, and Auto Loan",,19,27.01,14,Bad,4128.98,29.37085485,6 Years and 11 Months,Yes,1348.389707,80.86351181,Low_spent_Large_value_payments,237.8316995,0,0.5922,2.5896,1.018,-0.0747,0.4615 -0x147f1,CUS_0x1dd9,August,46,634-25-7796,Architect,4020402,,5,2,4.288361749,2,"Personal Loan, and Credit-Builder Loan",0,0,1.34,4,Good,556.951061,37.25135869,16 Years and 6 Months,No,44.730081,,Low_spent_Medium_value_payments,284.1199068,0,-1.2759,-1.021,0.0056,0.7674,1.2524 -0x147fd,CUS_0x831,August,18,424-18-8158,Developer,58820.44,4763.703333,8,946,24.88954781,8,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Credit-Builder Loan, Not Specified, and Personal Loan",38.24177604,21.6113966,29.97,9,_,4346.557206,32.92004024,9 Years and 8 Months,Yes,1603.67083,71.77817033,High_spent_Large_value_payments,346.5912521,0,1.8711,1.3264,-0.9233,0.4454,-0.807 -0x14809,CUS_0x2912,August,26,517-78-6058,Doctor,108143.55,8458.884362,5,3,13,7,"Home Equity Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Payday Loan, and Mortgage Loan",,10,12.09,7,Standard,418.24,36.12146057,7 Years and 9 Months,Yes,1298.652476,85.52972896,High_spent_Large_value_payments,590.5921824,0,1.2985,0.821,0.7894,0.6747,1.4498 -0x14815,CUS_0x6f0c,August,21,417-21-4554,Lawyer,53564.88,,5,3,13,100,"Mortgage Loan, and Personal Loan",8.437522078,10,19.98,2,Standard,1008.31,25.89143142,16 Years and 4 Months,Yes,80.56983299,185.262299,Low_spent_Medium_value_payments,434.941868,0,1.4277,-0.785,0.7737,-1.5525,2.2279 -0x14821,CUS_0x8144,August,38,830-28-5855,Media_Manager,28061.52,,5,1,5,4,"Personal Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",8.563442926,10,9.31,5,Good,1020.77,33.59332613,20 Years and 10 Months,No,49.43233977,,Low_spent_Small_value_payments,261.4168309,0,0.3448,-0.0036,-0.3172,0.9113,0.3456 -0x1482d,CUS_0x23e9,August,18,018-11-9472,_______,114614.88,9369.24,6,6,9,3,"Debt Consolidation Loan, Auto Loan, and Payday Loan",6.069766653,9,9.06,1,_,1379.67,35.45377952,27 Years and 11 Months,Yes,180.9107227,,High_spent_Large_value_payments,804.2606961,0,0.5223,0.752,0.7596,-0.5028,2.1948 -0x14839,CUS_0x7edf,August,27,229-64-4916,Teacher,43319.96,3777.996667,3,7,3,0,,,,3.47,0,Good,642.0457815,29.62646919,18 Years and 8 Months,No,0,89.70643897,Low_spent_Large_value_payments,558.0932277,0,2.0818,1.0226,0.8698,0.5998,2.1214 -0x14845,CUS_0x47ea,August,33,612-18-1401,Mechanic,63258.9,5061.575,6,6,11,1,Payday Loan,13.46686055,8,4.78,4,Good,137.98,35.29015895,,No,28.64388926,149.6700776,High_spent_Small_value_payments,587.8435332,0,-0.5149,-1.5321,-0.0501,2.0562,0.3856 -0x14851,CUS_0x53c,August,37,688-69-7066,Architect,33868.83,,5,3,16,4,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Auto Loan",16.82087284,13,8.2,7,Standard,664.61,36.41839717,11 Years and 5 Months,Yes,56.46757067,199.1743311,Low_spent_Small_value_payments,340.8983483,0,-0.6379,-1.0873,-0.7928,0.0595,-2.7037 -0x1485d,CUS_0x7c73,August,42,737-28-4078,Architect,57842.04,4864.17,8,5,31,8,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Not Specified, and Payday Loan",52.45708377,27.25367104,-5.43,7,Bad,1826.436415,24.15509409,6 Years and 9 Months,Yes,271.3141789,566.5892197,Low_spent_Small_value_payments,,0,-0.2325,1.3315,-0.5017,-1.5537,1.1113 -0x14869,CUS_0x4e22,August,52,903-30-6308,_______,31848.72,2588.06,5,3,9,3,"Student Loan, Mortgage Loan, and Not Specified",0.080048758,3,9.25,4,Good,542.6378365,24.97276851,26 Years and 6 Months,No,74.32420704,58.13441788,High_spent_Medium_value_payments,384.774614,0,0.0223,-0.9642,0.9983,-1.0613,1.0481 -0x14875,CUS_0x9754,August,53,228-11-6416,Manager,129204.92,10508.07667,5,6,11.28836175,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",22.45869269,19,1.54,3,Standard,953.8669823,23.97342882,24 Years and 6 Months,Yes,59083,1448.297559,Low_spent_Medium_value_payments,173.0427807,0,-0.0592,2.0289,1.082,1.0595,1.1023 -0x14881,CUS_0x5d87,August,80,084-35-5102,Journalist,70260.2,5564.016667,9,7,20,5,"Payday Loan, Mortgage Loan, Student Loan, Not Specified, and Home Equity Loan",,27.59613235,9.97,8,Bad,2483.147599,30.13850583,18 Years and 4 Months,NM,246.3786449,114.7086325,High_spent_Medium_value_payments,445.3143893,0,0.2374,0.7451,0.4557,0.8248,-0.4079 -0x1488d,CUS_0x6a1d,August,44,455-79-2070,Media_Manager,50643.18,4465.265,9,7,34,8,"Mortgage Loan, Auto Loan, Personal Loan, Mortgage Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Personal Loan",39.56615752,22.42647535,7.81,16,Bad,1711.765011,26.62888007,10 Years and 11 Months,Yes,217.4305742,49.82804158,!@9#%8,419.2678842,0,0.4379,0.2314,0.2064,0.8599,-0.9074 -0x14899,CUS_0x2181,August,47,026-64-0196,Teacher,90729.48,7299.79,4,4,15,3,"Credit-Builder Loan, Credit-Builder Loan, and Not Specified",10.4700176,9,0.93,3,Standard,46.92,31.29743273,28 Years and 10 Months,Yes,183.3112118,472.9654539,Low_spent_Medium_value_payments,353.7023344,0,0.7097,-1.3412,-0.5319,-0.9833,2.1809 -0x148a5,CUS_0x843,August,33,122-62-5484,Scientist,17912.65,1665.720833,9,5,26.06745738,100,"Debt Consolidation Loan, Personal Loan, Personal Loan, Not Specified, Credit-Builder Loan, Payday Loan, and Not Specified",33.70148187,23,16.19,11,_,3045.540954,28.86995436,7 Years and 0 Months,Yes,57.04388306,47.46875487,!@9#%8,285.3391575,0,-0.1464,-0.7991,0.3704,1.4967,-0.0943 -0x148b1,CUS_0x3c39,August,18,874-82-1264,Developer,7829.225,560.4354167,9,6,34,9,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",22.23054035,13,11.22,7,Bad,4579.09,24.83376204,,Yes,37.73561457,20.99778962,Low_spent_Medium_value_payments,277.3101375,0,0.5295,-0.4336,2.3045,-0.8181,-0.2507 -0x148bd,CUS_0xbedd,August,45,215-69-2225,Accountant,68824.42,,4,1,4,1,Not Specified,8.574157947,8,3.03,6,Good,1310.360168,25.83651613,19 Years and 4 Months,No,835.7175252,343.6726108,!@9#%8,496.2830647,0,-0.9646,1.2564,-1.018,0.6651,0.4862 -0x148c9,CUS_0x4bfc,August,44,183-74-2486,Developer,111755.6,,3,7,14,2,"Student Loan, and Mortgage Loan",,12,13.79,159,Standard,365.4975916,30.20162244,21 Years and 4 Months,NM,126.7042403,697.7652526,Low_spent_Large_value_payments,461.7898752,0,0.401,-0.0222,0.3506,1.0306,1.2086 -0x148d5,CUS_0x6c12,August,38,868-53-6968,Entrepreneur,33827.58,,8,3,14,2,"Not Specified, and Debt Consolidation Loan",5.716132914,7,17.96,0,Standard,1191.4,37.87336617,32 Years and 2 Months,Yes,32.36085257,,Low_spent_Small_value_payments,180.1110528,0,-0.0929,1.6465,1.0904,0.6328,0.575 -0x148e1,CUS_0x570b,August,20,453-58-9890,Scientist,73140.38,5799.031667,3,5,15,1,Auto Loan,8.642778395,9,13.56,5,Standard,1056.32,26.40542162,25 Years and 11 Months,Yes,44.98159232,453.1888481,!@9#%8,351.7327262,0,-0.0447,-0.5765,-0.5702,0.5126,-1.47 -0x148ed,CUS_0x47c5,August,20,619-50-3378,Journalist,63515.92,,3,517,3,1,Home Equity Loan,14.02095356,,3.65,9,Good,609.25,29.39238176,31 Years and 4 Months,No,29.28936491,462.604417,Low_spent_Medium_value_payments,344.8055514,0,0.1862,1.6181,-1.0477,0.6915,-1.4131 -0x148f9,CUS_0xc700,August,38,078-41-7717,Lawyer,32072.42,2768.701667,4,7,1,3,"Payday Loan, Credit-Builder Loan, and Auto Loan",6.868081014,9.398684308,6.11,6,Good,505.4582654,36.55169695,20 Years and 11 Months,No,76.46879212,169.1171288,Low_spent_Medium_value_payments,311.2842458,0,0.4496,-2.5776,1.4611,-2.421,-0.1539 -0x14905,CUS_0xc513,August,21,894-52-4160,Lawyer,7680.08,,6,6,30,5,"Auto Loan, Payday Loan, Student Loan, Personal Loan, and Personal Loan",,25,1.89,15,_,2181.01,31.51902072,19 Years and 9 Months,NM,19.06032272,48.67165402,Low_spent_Small_value_payments,276.6686899,0,-0.1374,-0.78,-0.2523,0.1185,0.5093 -0x14911,CUS_0xa5a0,August,21,491-30-8624,Scientist,33000.46,2772.038333,8,4,9.288361749,4,"Student Loan, Student Loan, Credit-Builder Loan, and Student Loan",15.3701131,14,23.23,0,Standard,33.61,32.25856998,29 Years and 6 Months,Yes,57.89010325,789.9607351,Low_spent_Small_value_payments,139.290456,0,2.3959,1.283,-0.4009,1.8148,0.9808 -0x1491d,CUS_0x4496,August,44,091-74-3731,Entrepreneur,68488.88,5692.406667,9,6,24,6,"Mortgage Loan, Payday Loan, Mortgage Loan, Student Loan, Home Equity Loan, and Not Specified",27.63617722,12.11481307,7.71,12,Standard,1479.591966,38.74285697,15 Years and 6 Months,Yes,211.3013582,,Low_spent_Large_value_payments,202.492549,0,0.8752,-0.0899,0.6037,-0.5131,-0.2088 -0x14929,CUS_0x3b1b,August,30,260-72-0235,Accountant,80918.14,6444.178333,2,5,8,4,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",,6,3.32,1,Good,216.05,35.24973591,31 Years and 8 Months,No,192.7597872,100.5204643,High_spent_Medium_value_payments,601.1375818,0,-0.567,0.059,-0.1055,1.3088,-0.218 -0x14935,CUS_0x8d0f,August,28,984-70-8010,_______,135907.48,11096.62333,8,5,16,4,"Debt Consolidation Loan, Auto Loan, Personal Loan, and Payday Loan",16.92206975,12,17.53,8,Standard,1218.052579,26.76361607,19 Years and 3 Months,Yes,230.8154493,,!@9#%8,145.5139707,0,-0.8345,2.4263,-0.0515,1.135,-0.0428 -0x14941,CUS_0x29e0,August,30,#F%$D@*&8,Journalist,62237.13,,4,4,5,5,"Personal Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,20,11.76,7,Standard,2547.59,27.28996212,,Yes,208.9293297,185.4779733,Low_spent_Small_value_payments,430.635447,0,1.9372,-0.8403,0.2913,0.564,1.5706 -0x1494d,CUS_0x898a,August,44,766-88-5509,Entrepreneur,142743.4,,3,4,4,0,,,3,10.75,4,Good,1054.783773,32.51240851,33 Years and 6 Months,No,0,,!@9#%8,765.1258092,0,-1.1191,-0.137,1.0216,-0.5998,-0.0203 -0x14959,CUS_0x4be,August,33,#F%$D@*&8,Engineer,13627.925,,5,7,11,7,"Not Specified, Mortgage Loan, Payday Loan, Mortgage Loan, Auto Loan, Student Loan, and Payday Loan",,19,12.28,9,Standard,639.32,38.05422186,7 Years and 10 Months,Yes,135.3834287,103.2415535,Low_spent_Medium_value_payments,261.7181325,0,0.801,0.3376,-1.6254,2.0909,1.0711 -0x14965,CUS_0x2c4c,August,31,134-52-6017,Journalist,17476.37,,5,7,21,5,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, and Payday Loan",,23.09206358,11.88,9,_,1679.713095,30.38777994,8 Years and 5 Months,Yes,72.33847952,,Low_spent_Medium_value_payments,249.4828477,0,-0.5488,0.5163,1.2159,-0.608,0.6557 -0x14971,CUS_0x3f1,August,23,891-06-2189,Accountant,80983.64,6692.636667,6,3,15,4,"Credit-Builder Loan, Student Loan, Not Specified, and Student Loan",25.65829065,18,16.91,7,Standard,982.44,27.28075143,28 Years and 2 Months,Yes,188.4565952,126.0716158,High_spent_Large_value_payments,594.7354556,0,2.0476,-0.8804,-0.2275,0.4915,0.6456 -0x1497d,CUS_0x4ab2,August,19,752-31-9562,Writer,127883.4,10874.95,6,7,13,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",18.48652943,11,14.55,4,_,820.08,35.84356249,31 Years and 10 Months,Yes,227.6577005,10000,Low_spent_Small_value_payments,349.181046,0,0.8643,-0.224,-0.5251,0.1092,-0.0865 -0x14989,CUS_0x7264,August,44,452-90-1470,Engineer,20234.93,,6,9,19.95700519,9,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Student Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,20.04647527,24.66,8,Bad,4239.545628,23.9194834,,NM,1428.65764,45.07230498,High_spent_Medium_value_payments,223.6441025,0,1.4801,-0.913,-0.2344,2.3516,0.0185 -0x14995,CUS_0x7ef7,August,29,124-45-4455,Entrepreneur,30411.9,,4,6,11,6,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Student Loan",20.45293263,17.07968932,8.68,10,Standard,2471.633341,32.42263972,8 Years and 8 Months,Yes,112.7534342,106.812731,Low_spent_Large_value_payments,327.6663348,0,0.9764,0.4922,-0.3805,0.9325,1.2734 -0x149a1,CUS_0x9997,August,18,234-78-5350,Mechanic,10041.885,,10,7,17.06745738,3,"Personal Loan, Auto Loan, and Debt Consolidation Loan",,19.94345572,13.61,16,Standard,2568.009276,33.82754834,17 Years and 9 Months,NM,19.12355551,,Low_spent_Large_value_payments,236.2671994,0,0.7709,1.4774,-1.3447,-0.3461,-0.374 -0x149ad,CUS_0x3b85,August,50,652-52-9782,Engineer,72790.92,6087.91,3,5,4.288361749,4,"Home Equity Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",10.14414414,10,3.89,0,Good,702.65,29.79762603,,No,157.3041565,535.5904619,High_spent_Large_value_payments,575.8338427,0,0.4095,0.6532,-0.3507,0.7421,-0.1533 -0x149b9,CUS_0x7fc8,August,42,200-21-8443,Journalist,87502.53,7277.8775,7,7,14,3,"Mortgage Loan, Credit-Builder Loan, and Not Specified",90,2148,6.35,3,Standard,1071.88,38.82731784,28 Years and 6 Months,No,167.9597938,185.6052831,Low_spent_Large_value_payments,644.2226731,0,1.3341,0.379,0.2958,-0.0661,-0.9696 -0x149c5,CUS_0x8343,August,59,942-59-0676,Teacher,35659.07,3074.589167,2,4,1,0,,4.95779963,8,11.84,7,Good,587.189976,32.67471263,31 Years and 5 Months,No,0,203.9720807,Low_spent_Large_value_payments,395.4413503,0,-0.5846,-0.8316,0.072,-1.1971,-0.5462 -0x149d1,CUS_0x442b,August,48,710-88-0178,Scientist,78749.9,6433.491667,0,5,5,2,"Not Specified, and Auto Loan",4.923071932,5,1.17,4,Good,807.52,25.06835322,22 Years and 0 Months,No,129.5540895,177.3688895,High_spent_Small_value_payments,596.4261877,0,0.4565,-1.3941,0.8854,-1.7459,0.1396 -0x149dd,CUS_0x53f3,August,36,#F%$D@*&8,Musician,27909.81,2574.8175,5,5,12,1,Mortgage Loan,,22,-1.71,5,Good,1040.534447,24.81899187,22 Years and 3 Months,No,21.47733545,136.1707905,Low_spent_Small_value_payments,405.0588811,0,2.0148,0.3899,-0.7803,-0.0095,-0.7641 -0x149e9,CUS_0x68b4,August,51,746-29-2436,Engineer,128429.68,,6,7,3,2,"Credit-Builder Loan, and Home Equity Loan",,8,3.52,4,Good,1052,38.93679507,,No,129.5216685,10000,High_spent_Small_value_payments,883.232642,0,0.5356,1.0082,-0.5472,-2.109,1.0704 -0x149f5,CUS_0x7512,August,55,078-58-1869,Musician,35234.99,2827.249167,3,5,8,2,"Mortgage Loan, and Home Equity Loan",1.290745549,4,9.89,4,Good,1369.84,25.9808723,16 Years and 0 Months,No,46.84749756,177.8326877,Low_spent_Small_value_payments,348.0447314,0,0.7193,1.5504,-0.827,-0.3484,0.1437 -0x14a01,CUS_0x8747,August,47,903-18-0825,Scientist,117019.2,9443.545592,2,3,6.288361749,4,"Student Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",0,3,4.87,2,Good,537.0909301,41.66679476,28 Years and 6 Months,No,768.3920503,903.6398199,Low_spent_Large_value_payments,641.7349898,0,-0.4686,-0.2605,0.1694,-0.4585,1.3311 -0x14a0d,CUS_0x502c,August,32,723-08-5344,Lawyer,45917,3714.416667,4,7,7,1,Payday Loan,8.903357089,8,,4,_,170.33,30.14292953,31 Years and 5 Months,Yes,25.73479098,107.3536184,High_spent_Medium_value_payments,488.3532573,0,-0.1382,-0.495,1.4535,0.9828,1.5546 -0x14a19,CUS_0xa3aa,August,28,924-27-9758,Architect,27395.53,,5,3,5,4,"Payday Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",12.94096441,11,3.57,3,Standard,410.57,24.99340413,19 Years and 2 Months,No,79.67404242,118.3720258,!@9#%8,313.4500151,0,0.5554,-0.4121,1.3962,-0.5291,-0.5731 -0x14a25,CUS_0xb7cf,August,19,291-17-5552,Engineer,25784.65,1853.720833,3,7,20,6,"Home Equity Loan, Personal Loan, Payday Loan, Student Loan, Credit-Builder Loan, and Auto Loan",8.649664234,8,11.79,8,Standard,1088.26554,25.06201038,6 Years and 4 Months,Yes,100.3082272,11177.36808,High_spent_Small_value_payments,301.4781561,0,0.1803,-1.6007,-1.7163,-0.0687,-0.8743 -0x14a31,CUS_0x5f55,August,33,745-91-0039,Mechanic,14295.47,,6,7,20.06745738,6,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",27.95147739,,17.33,8,_,4732.960954,32.43448375,3 Years and 6 Months,Yes,55.68921871,95.81882387,Low_spent_Large_value_payments,231.0005861,0,-0.1306,-0.3169,0.5582,-1.6241,-1.1711 -0x14a3d,CUS_0x69c6,August,33,124-21-1281,Journalist,100310.08,8320.173333,3,3,5,1,Home Equity Loan,,14,9.63,8,Standard,904.83,39.96412161,23 Years and 4 Months,Yes,47.04307588,207.5803596,!@9#%8,817.3938978,0,1.0569,0.4537,-1.6534,0.5057,1.9639 -0x14a49,CUS_0x57f2,August,46,852-93-7909,Journalist,98313.12,,5,4,14.28836175,4,"Payday Loan, Mortgage Loan, Not Specified, and Student Loan",12.53185917,12,22.51,5,_,96.56,29.78557775,18 Years and 10 Months,Yes,206.1812364,569.9435361,High_spent_Large_value_payments,682.8886885,0,-0.8621,0.2376,-0.9204,0.4029,-2.0748 -0x14a55,CUS_0x82e6,August,45,970-08-1927,Writer,36479.27,,1,7,7,2,"Home Equity Loan, and Payday Loan",,7,3.01,2,Good,719.7,34.40040939,30 Years and 5 Months,No,44.37575933,,Low_spent_Small_value_payments,366.8698912,0,0.2486,-1.4787,0.4447,-0.9332,-0.5492 -0x14a61,CUS_0x41a0,August,21,644-85-1673,Writer,61627.35,4993.6125,8,6,26,7,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Not Specified",13.09212265,11.21195399,11.57,13,_,2494.046201,26.31353198,12 Years and 3 Months,Yes,262.3144504,238.6792913,High_spent_Small_value_payments,258.3675083,0,-1.3074,-1.3875,-0.2539,0.5096,1.0276 -0x14a6d,CUS_0xb48d,August,49,839-15-4790,_______,19577.155,,3,2,1,2,"Student Loan, and Home Equity Loan",1.927298031,6,3.94,4,_,1029.244956,39.0407737,,No,20.76029447,120.1539174,Low_spent_Small_value_payments,326.1312018,0,0.6503,-0.912,1.5719,-0.439,-1.6124 -0x14a79,CUS_0x3061,August,30,991-78-2351,Scientist,17082.685,1695.557083,5,7,356,6,"Home Equity Loan, Payday Loan, Not Specified, Student Loan, Payday Loan, and Student Loan",29.67054658,21,8.42,4,_,560.63,25.26501944,7 Years and 9 Months,Yes,80.69204035,52.87854469,High_spent_Small_value_payments,295.9851233,0,0.0626,0.2498,-0.0638,-1.0436,-1.4846 -0x14a85,CUS_0x70f2,August,45,316-81-1821,Manager,145168.96,,4,6,7,2,"Auto Loan, and Not Specified",21.07388773,15.28341335,8.85,7,Standard,144.9242122,45.0654354,,Yes,141.22998,220.8886182,High_spent_Large_value_payments,1068.922735,0,0.9091,-0.873,-1.5028,0.1682,-1.4413 -0x14a91,CUS_0x45ea,August,46,083-95-6249,Mechanic,22269.09,,7,6,5,0,,28.11843982,20,19.61,4,Standard,529.22,36.45557256,19 Years and 5 Months,Yes,0,174.078831,Low_spent_Large_value_payments,289.096919,0,0.9235,-0.1456,-0.529,-0.0894,-2.3546 -0x14a9d,CUS_0x4ab,August,51,591-59-7438,Architect,88783.92,7405.66,2,1,5.288361749,4,"Payday Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",,12,10.33,0,Good,474.5332144,35.22925166,18 Years and 10 Months,No,160.5243372,675.6391559,!@9#%8,602.0424592,0,0.1802,-0.4647,-0.4433,0.4818,-1.594 -0x14aa9,CUS_0x333f,August,21,777-65-0580,Media_Manager,26030.03,,4,3,13,3,"Not Specified, Payday Loan, and Home Equity Loan",22.57843427,20,11.7,421,Standard,595.44,24.32566454,30 Years and 9 Months,NM,38.32453885,201.7946281,Low_spent_Small_value_payments,264.4977497,0,0.1606,0.252,-0.7323,1.0791,0.0786 -0x14ab5,CUS_0x5c06,August,38,887-34-3815,Journalist,32244.75,,8,7,12,1,Auto Loan,13.61198581,9,16.03,9,Standard,910.2729211,36.25814191,30 Years and 6 Months,Yes,22.35372557,34.22373266,High_spent_Medium_value_payments,452.9044152,0,-1.38,0.848,-0.7034,-0.2311,-0.9335 -0x14ac1,CUS_0xbe55,August,33,784-16-9686,Accountant,16907.7,,6,7,25.06745738,8,"Credit-Builder Loan, Personal Loan, Home Equity Loan, Auto Loan, Personal Loan, Home Equity Loan, Student Loan, and Mortgage Loan",,1178,31,14,Bad,2905.401353,30.01807851,6 Years and 3 Months,NM,82.04425785,26.31001868,High_spent_Medium_value_payments,263.9807074,0,-0.2089,-0.5229,0.3379,-0.5791,-0.164 -0x14acd,CUS_0x3992,August,28,218-97-2428,Mechanic,9385.19,,8,9,31.95700519,100,"Student Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Personal Loan",31.19776697,21.55421958,19.21,17,Bad,2889.411452,34.36163846,7 Years and 0 Months,Yes,1354.371538,51.25399136,Low_spent_Small_value_payments,269.4340181,0,0.436,0.3068,-0.5159,-1.1702,0.7816 -0x14ad9,CUS_0x7671,August,32,199-01-3833,Musician,16942.39,,7,4,20,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Student Loan",13.13751088,10.52504353,,11,Standard,88.33699908,33.04777083,26 Years and 5 Months,Yes,46.11596979,56.10816126,!@9#%8,298.9624523,0,-0.7664,-0.3376,0.0376,-0.899,0.069 -0x14ae5,CUS_0x8ad5,August,27,393-14-3118,Engineer,63876.62,5358.051667,2,4,7,4,"Debt Consolidation Loan, Student Loan, Student Loan, and Not Specified",0,2,8.79,5,Good,925.4812801,24.12782425,26 Years and 9 Months,No,145.0368565,330.9318827,Low_spent_Medium_value_payments,378.3901001,0,1.401,0.0665,-1.1171,-0.4836,-0.9775 -0x14af1,CUS_0xc0d,August,24,672-00-8132,Entrepreneur,14184.33,921.0275,6,7,17,0,,21.77432943,16.57282803,8.71,1,Standard,1281.173575,24.04321413,22 Years and 9 Months,Yes,0,113.277128,!@9#%8,268.825622,0,-0.7093,0.1245,0.4523,1.5854,-0.0943 -0x14afd,CUS_0xadd5,August,50,890-53-9009,_______,28638.1,,7,3,9.288361749,4,"Payday Loan, Mortgage Loan, Auto Loan, and Student Loan",25.60737698,22.09843131,9.58,6,_,93.34165979,21.14533801,26 Years and 2 Months,Yes,91.64952478,704.0984805,Low_spent_Small_value_payments,168.1402891,0,0.3824,2.4709,0.4384,1.089,-0.8598 -0x14b09,CUS_0x24a1,August,34,029-27-5479,Teacher,17200.97,,8,9,27,4,"Mortgage Loan, Auto Loan, Mortgage Loan, and Student Loan",16.93148051,12.00960186,7.3,9,Standard,1688.212889,30.57668445,13 Years and 9 Months,Yes,48.51381569,,Low_spent_Small_value_payments,216.2805676,0,0.6008,-0.57,0.4316,-0.4485,-0.2075 -0x14b15,CUS_0x1fae,August,40,747-51-4832,Developer,33405.74,2485.811667,3,6,20,1,Home Equity Loan,,10,7.77,4,Standard,196.3,36.7828709,24 Years and 4 Months,Yes,16.28068837,62.6992384,!@9#%8,429.6012399,0,0.1146,-0.8263,2.2961,-0.4524,-1.3344 -0x14b21,CUS_0xadb5,August,45,565-89-7418,Entrepreneur,77460.2,6494.016667,4,7,25,2,"Mortgage Loan, and Debt Consolidation Loan",,10,15.67,9,_,1329.63,33.31580482,12 Years and 0 Months,NM,108.8180482,138.7579643,High_spent_Large_value_payments,641.8256542,0,0.2519,1.001,-0.116,-1.8233,2.1045 -0x14b2d,CUS_0x51e1,August,29,584-44-2628,Teacher,29674.93,2597.993437,3,4,10,3,"Not Specified, Mortgage Loan, and Not Specified",10.32179663,11,7.46,1,Good,609.980813,33.86118233,28 Years and 10 Months,No,130.5216159,186.3358806,Low_spent_Medium_value_payments,332.2015086,0,-2.1606,-1.4604,0.9394,1.0206,-1.0516 -0x14b39,CUS_0x5fde,August,39,848-51-1133,Journalist,19426.81,,7,6,19,4,"Auto Loan, Personal Loan, Payday Loan, and Home Equity Loan",,16,10.28,7,Standard,658.69,40.48643317,20 Years and 8 Months,Yes,54.99719804,,High_spent_Medium_value_payments,318.7165337,0,-1.3399,2.0201,-0.3542,1.4324,0.9811 -0x14b45,CUS_0x73b3,August,34,706-85-6031,Journalist,14595.6,1058.3,8,5,30,3,"Student Loan, Not Specified, and Student Loan",26.09798152,17.76708841,16.12,14,Standard,2327.708177,35.51815354,10 Years and 0 Months,Yes,34.84204627,112.7335951,Low_spent_Small_value_payments,248.2543586,0,-2.1072,-0.8108,0.5901,-2.7881,0.5693 -0x14b51,CUS_0x24e1,August,80,918-33-3019,Engineer,93312.33,,3,3,13,2,"Not Specified, and Payday Loan",,17,10.88,0,Standard,555.33,36.71632437,,Yes,126.1858794,,High_spent_Medium_value_payments,816.3899991,0,1.7499,0.6497,-2.2915,-0.6422,1.1799 -0x14b5d,CUS_0x2391,August,21,046-96-1490,Architect,76154.56,,8,8,26.88954781,6,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Payday Loan, and Personal Loan",,23,5.03,9,Bad,2144.36,36.05271961,14 Years and 0 Months,Yes,1805.080767,145.2032451,High_spent_Large_value_payments,399.1811445,0,0.0513,-0.9463,1.0211,0.7793,-0.5198 -0x14b69,CUS_0x32cb,August,47,526-91-1494,Entrepreneur,32959.87,2957.655833,2,5,12,4,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",10.56026927,11.66848963,0.69,0,_,1164.455242,33.4471635,17 Years and 11 Months,No,60.9407457,129.2200085,High_spent_Small_value_payments,365.6048291,0,-0.4241,-0.7883,-1.0792,-0.4915,0.4102 -0x14b75,CUS_0x7f3,August,31,276-64-8276,Developer,39420.54,,6,8,33.88954781,7,"Student Loan, Personal Loan, Personal Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Auto Loan",30.93723643,20.64589217,11.99,10,_,2123.167327,30.2914467,,Yes,1509.175985,,High_spent_Medium_value_payments,320.2686611,0,-0.9205,-0.1962,-0.3035,-1.5157,0.2447 -0x14b81,CUS_0x247b,August,45,450-61-9465,Engineer,28766.28,,4,3,2.288361749,2,"Auto Loan, and Not Specified",0,1,4.51,3,Good,263.42,28.20995673,20 Years and 2 Months,No,45.68726761,498.9590005,!@9#%8,383.5101929,0,1.6204,-0.4355,-0.7039,0.5522,-0.0715 -0x14b8d,CUS_0xc1bb,August,26,859-83-6342,Doctor,28097.2,,0,7,4,0,,6.499457666,8,1.44,2,Good,563.4016461,24.72742543,29 Years and 10 Months,No,0,114.5306188,High_spent_Small_value_payments,398.9743881,0,-0.134,-0.4643,0.3975,0.8181,-0.5614 -0x14b99,CUS_0x7462,August,48,081-17-7455,Journalist,128938.95,10722.9125,5,5,5,4,"Payday Loan, Not Specified, Mortgage Loan, and Student Loan",,2.360150639,0.75,1,Good,689.8227901,37.70908945,16 Years and 10 Months,No,384.5801136,612.3060248,Low_spent_Medium_value_payments,355.4051116,0,0.2727,0.9988,-0.1345,0.7248,-1.5758 -0x14ba5,CUS_0x67cd,August,49,180-25-3939,Accountant,11176.27,,7,3,20,4,"Credit-Builder Loan, Home Equity Loan, Auto Loan, and Personal Loan",16.93672689,16,6.48,4,Standard,374.7,22.94252669,18 Years and 8 Months,No,19.38330153,50.20066755,Low_spent_Small_value_payments,288.4516143,0,0.2189,-0.0441,2.2775,-1.3281,0.1739 -0x14bb1,CUS_0x7a59,August,30,227-84-8917,Accountant,70802.28,6073.19,7,5,15,0,,21.01806917,,17.74,1,Standard,684.53,28.9177775,32 Years and 2 Months,Yes,0,10000,Low_spent_Medium_value_payments,327.4651231,0,-0.5396,1.2569,0.2935,-0.7463,0.4841 -0x14bbd,CUS_0x1e18,August,50,692-56-4864,Doctor,14366.56,1085.362297,1,2,3,1,Student Loan,3.83760667,6,4.48,5,Good,373.7303383,37.52856822,25 Years and 6 Months,No,133.5888438,82.43192268,Low_spent_Large_value_payments,311.150116,0,0.0183,-1.8104,-3.049,-0.1886,1.073 -0x14bc9,CUS_0xb699,August,20,193-03-2866,Teacher,39145.96,3457.163333,7,7,19,2,"Not Specified, and Debt Consolidation Loan",15.63804621,12,7.63,7,Standard,1004.26,30.98833344,22 Years and 3 Months,No,52.99710111,170.0889301,Low_spent_Medium_value_payments,402.6303021,0,-1.0801,-1.1637,-0.1954,0.0214,0.77 -0x14bd5,CUS_0xbcb2,August,32,250-74-5945,Entrepreneur,19853.4,1463.45,6,5,35.06745738,100,"Home Equity Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",30.52546746,,2.55,12,Bad,5297.40817,26.20192378,11 Years and 11 Months,Yes,89.2206305,118.4699156,Low_spent_Small_value_payments,201.934166,0,-1.2201,0.4193,-0.1999,1.0197,0.8811 -0x14be1,CUS_0x63c3,August,25,#F%$D@*&8,Lawyer,66610.28,5395.856667,4,5,9,2,"Credit-Builder Loan, and Not Specified",17.44213777,12,24.71,7,Standard,1167.86,28.70241294,33 Years and 5 Months,Yes,84.91415002,114.5455319,High_spent_Medium_value_payments,590.1259848,0,-0.3773,-0.582,0.2078,-0.7535,0.0269 -0x14bed,CUS_0x1382,August,45,#F%$D@*&8,Entrepreneur,11391.83,,8,5,1,4,"Personal Loan, Not Specified, Not Specified, and Credit-Builder Loan",23.54807687,19,14.02,4,Standard,589.97,24.73631599,19 Years and 6 Months,No,26270,18.57588363,Low_spent_Large_value_payments,299.3465423,0,1.0581,1.5915,-0.764,-0.7681,-0.774 -0x14bf9,CUS_0x7e1a,August,41,154-74-2451,Accountant,28637.08,2167.423333,3,7,1,3,"Mortgage Loan, Student Loan, and Debt Consolidation Loan",15.59023534,,10.91,4,Good,967.75,27.91441433,29 Years and 2 Months,No,67.8448708,222.1211519,Low_spent_Small_value_payments,216.7763106,0,-0.7216,0.968,-0.6509,2.0347,0.3888 -0x14c05,CUS_0x760c,August,38,929-07-7881,Manager,106309.8,8410.875663,5,3,7.288361749,2,"Credit-Builder Loan, Personal Loan, and Not Specified",13.64546236,14,6.81,4,Good,215.4635878,27.44046382,17 Years and 0 Months,No,711.9017392,1236.790231,Low_spent_Medium_value_payments,247.7309968,0,0.0104,-0.9787,0.8845,1.1138,-1.4097 -0x14c11,CUS_0x38d8,August,24,467-02-8866,Accountant,101114.73,8679.2275,6,6,8,3,"Personal Loan, Home Equity Loan, and Student Loan",11.05171801,9,18.91,6,Standard,1059.527978,31.241125,14 Years and 5 Months,Yes,209.6448868,132.6649947,High_spent_Large_value_payments,780.1221956,0,2.1819,2.1877,-0.0651,-1.5559,1.4389 -0x14c1d,CUS_0xc47b,August,25,560-39-0261,Manager,15837.31,,8,6,17.06745738,8,"Payday Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",48.60170788,26.80673774,18.88,12,Bad,4029.80785,34.80969769,,Yes,63.58758779,68.59729097,!@9#%8,233.0724166,0,-0.1542,0.2076,1.5821,-1.1035,0.4834 -0x14c29,CUS_0x4f52,August,30,383-56-7851,Scientist,11126.925,,7,6,12,1,Student Loan,,14,8.95,1,Good,337.9002561,35.60586356,32 Years and 0 Months,No,56.20942056,34.93681865,Low_spent_Medium_value_payments,346.2291859,0,0.7873,-1.62,0.2726,0.429,-0.2866 -0x14c35,CUS_0xa540,August,38,074-17-6086,Journalist,11954.335,932.1945833,5,6,18,1,Auto Loan,19.86719669,13.47206126,-0.3,5,Standard,79.96681565,26.54913066,17 Years and 4 Months,Yes,7.925876128,62.95421087,Low_spent_Small_value_payments,312.3393713,0,0.2647,1.1491,-0.0348,1.7314,-0.8961 -0x14c41,CUS_0xb28a,August,26,348-50-5120,Engineer,68984.84,,8,7,9,3,"Auto Loan, Auto Loan, and Personal Loan",12.56907281,12,8.28,8,Standard,1112.47,33.49265239,9 Years and 3 Months,Yes,166.3345983,75.03822647,High_spent_Medium_value_payments,589.3008419,0,-0.1557,-1.2868,0.7929,-0.3534,1.3211 -0x14c4d,CUS_0x6ef6,August,50,#F%$D@*&8,Manager,122178.93,,5,1,10.28836175,4,"Payday Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",0,2,2.11,1,Good,1144.40609,26.99791411,28 Years and 6 Months,No,61393,846.61382,High_spent_Small_value_payments,693.4740798,0,0.2379,-1.9418,-0.7385,-1.1289,-0.0744 -0x14c59,CUS_0x29b5,August,28,466-74-1374,Architect,120497.52,,0,5,7.288361749,2,"Payday Loan, Not Specified, and Debt Consolidation Loan",,2,11.29,4,Good,423.7650498,24.83483839,23 Years and 11 Months,No,232.7415708,748.6065509,!@9#%8,755.9301715,0,-2.1031,1.3845,0.2235,0.6689,0.0154 -0x14c65,CUS_0x14a3,August,80,642-06-3189,Media_Manager,119016.88,9918.073333,8,3,8,0,,,13,2.77,5,Standard,839.78,29.00174211,32 Years and 6 Months,No,0,10000,High_spent_Medium_value_payments,926.3716742,0,-1.0586,1.1709,0.1264,0.0304,-1.7456 -0x14c71,CUS_0x454c,August,33,441-33-1920,Journalist,91870.71,7946.8925,2,4,5,2,"Student Loan, and Personal Loan",0,0,17.71,6,_,90.19,40.06748295,32 Years and 5 Months,No,105.7372414,,High_spent_Small_value_payments,583.370482,0,-1.4752,0.633,-0.096,-0.9953,-0.1478 -0x14c7d,CUS_0x5735,August,44,941-81-5948,_______,95310.03,7978.5025,0,6,9.288361749,4,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",4.462346276,8,15.2,4,Good,716.24,32.25581757,31 Years and 3 Months,No,160.7692719,664.7807951,Low_spent_Large_value_payments,662.237644,0,0.6216,-0.8209,0.563,0.9641,0.1274 -0x14c89,CUS_0x82fc,August,18,867-26-3831,Teacher,20736.07,,10,6,17,9,"Personal Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",,3864,19.06,7,_,2704.866663,24.56367995,13 Years and 9 Months,Yes,81.96774254,,High_spent_Medium_value_payments,306.1470231,0,-1.0206,0.0876,0.9594,-0.8635,-0.6242 -0x14c95,CUS_0xc6cb,August,21,716-93-2424,Accountant,159958.32,13161.86,5,3,9.288361749,0,Debt Consolidation Loan,13.63873954,,7.51,7,Good,803.57,42.16836508,16 Years and 0 Months,No,7539,768.9671569,High_spent_Medium_value_payments,1102.216597,0,0.7658,0.7519,-0.369,-1.8549,-0.3738 -0x14ca1,CUS_0x20a3,August,30,838-84-0474,Lawyer,28793.49,2669.4575,7,5,17,3,"Payday Loan, Personal Loan, and Home Equity Loan",,20,9.01,6,Standard,405.99,23.58853453,22 Years and 0 Months,Yes,69.8882752,77.52860866,High_spent_Small_value_payments,379.5288661,0,0.9568,0.7368,-0.3302,0.2994,-1.5266 -0x14cad,CUS_0x574a,August,45,340-65-6634,Teacher,106444.68,9015.39,8,4,9.288361749,0,,14.68851137,13,17.96,6,_,959.18,38.64386181,31 Years and 5 Months,Yes,0,1023.139966,Low_spent_Large_value_payments,568.3364953,0,0.2132,-0.2188,1.0619,0.6867,0.3572 -0x14cb9,CUS_0x6aa4,August,20,147-09-0323,Architect,49732.35,,6,10,19.95700519,1085,"Personal Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",,,8.72,9,Bad,5057.390089,34.65076777,4 Years and 4 Months,Yes,1534.795785,397.9190578,!@9#%8,48.37103766,0,0.0006,1.014,0.6753,0.6953,-0.6425 -0x14cc5,CUS_0xc570,August,37,558-90-7115,Developer,35851.39,2762.615833,6,4,5,2,"Student Loan, and Auto Loan",16.2613998,15,9.1,8,Standard,926.99,30.57129899,,No,32449,144.0019226,High_spent_Small_value_payments,338.7405654,0,0.042,-0.7837,0.2309,1.1735,0.6435 -0x14cd1,CUS_0x62da,August,46,835-37-3964,Architect,62799.48,,10,8,32.88954781,9,"Personal Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Auto Loan, Student Loan, and Student Loan",37.14461533,20,20.07,9,Bad,4144.96,30.04665629,,Yes,1594.841317,130.3351279,High_spent_Medium_value_payments,346.422474,0,0.6468,2.0761,-1.0233,-2.8637,0.0465 -0x14cdd,CUS_0xc01e,August,37,357-48-1484,Lawyer,40883.92,,6,10,15,5,"Payday Loan, Not Specified, Home Equity Loan, Payday Loan, and Payday Loan",,27.528804,,11,Bad,1983.768035,40.88459395,15 Years and 10 Months,Yes,131.5281536,107.6287642,High_spent_Medium_value_payments,363.4424155,0,-1.5772,0.1767,0.0099,0.4026,0.7456 -0x14ce9,CUS_0xb1dc,August,41,041-94-6829,Teacher,74270.8,6325.233333,7,5,16,9,"Auto Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, and Student Loan",39.72662933,25,26.68,10,Bad,3593.912345,24.41608438,13 Years and 11 Months,Yes,391.0468209,108.3256211,High_spent_Large_value_payments,386.4647135,0,-0.428,0.1057,-0.6129,-0.5561,0.5852 -0x14cf5,CUS_0xb3ac,August,20,597-82-3599,Scientist,20188.33,1398.360833,7,10,30,6,"Credit-Builder Loan, Student Loan, Payday Loan, Student Loan, Student Loan, and Student Loan",,25.61827844,8.67,14,Bad,2722.104169,25.78232852,7 Years and 3 Months,Yes,70.46462062,90.00093138,Low_spent_Medium_value_payments,259.3705313,0,0.0275,1.8512,0.5707,-0.4698,0.5263 -0x14d01,CUS_0x8067,August,22,104-54-5798,Engineer,47868.74,3802.061667,5,5,15,2,"Debt Consolidation Loan, and Home Equity Loan",9.717222379,9.175998287,8.92,10,_,827.7355758,31.68646915,6 Years and 9 Months,Yes,64.05620009,256.0549384,!@9#%8,330.0950282,0,0.7574,1.3396,1.0656,-1.4218,1.5167 -0x14d0d,CUS_0xa11c,August,80,586-32-1202,Accountant,36913.88,,6,5,17.06745738,7,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Student Loan, Personal Loan, Not Specified, and Mortgage Loan",29.74062179,,28.27,7,Bad,5247.350033,23.8739736,4 Years and 0 Months,Yes,214.3092665,,Low_spent_Small_value_payments,107.1575761,0,-0.2672,0.0438,-1.4296,1.7381,0.8063 -0x14d19,CUS_0x2890,August,44,522-59-8579,Doctor,71015.07,,7,7,8,4,"Not Specified, Auto Loan, Payday Loan, and Debt Consolidation Loan",14.01955875,12.88337622,10.16,4,_,1413.703545,38.53637111,,Yes,139.2783643,,Low_spent_Medium_value_payments,470.0711096,0,0.8985,0.9175,-0.0417,0.9702,0.9027 -0x14d25,CUS_0x4f92,August,26,659-08-8401,_______,15669.87,,9,4,24,8,"Payday Loan, Not Specified, Not Specified, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",24.94264599,18,19.67,14,Bad,3339.61,30.27426441,2 Years and 9 Months,Yes,55.25125421,13.88990799,High_spent_Large_value_payments,319.0410878,0,0.0216,1.6967,1.7773,1.4016,-0.2834 -0x14d31,CUS_0xd96,August,21,667-28-7573,Manager,98839.2,7937.6,6,5,16,1,Personal Loan,9.98115402,8,6.88,2,Standard,940.12,39.91816172,19 Years and 6 Months,No,71.03874607,168.2647445,High_spent_Large_value_payments,794.4565095,0,0.5287,0.0925,0.4808,0.1183,0.4659 -0x14d3d,CUS_0x40cf,August,32,811-84-7081,Scientist,30953.51,2807.459167,4,4,14,2,"Personal Loan, and Credit-Builder Loan",14.82966636,13,8.04,4,Standard,1106.09,28.83801735,26 Years and 2 Months,Yes,28.5395758,49.22138113,High_spent_Medium_value_payments,452.9849597,0,-0.4622,2.3365,0.3455,0.8099,0.1375 -0x14d49,CUS_0x9bd9,August,47,218-24-8466,Architect,106122.03,8652.5025,3,1,2.288361749,0,Mortgage Loan,,8,2.87,1,Good,1004.32381,28.18154669,,NM,78.77689548,728.5211591,!@9#%8,762.7499291,0,0.0174,-0.4718,1.136,-0.0132,0.862 -0x14d55,CUS_0x8842,August,56,633-86-8268,Teacher,60498.6,,7,6,12,1,Personal Loan,25.89051049,18,9.92,3,Standard,736.07,25.59278426,26 Years and 10 Months,No,47.92820961,,Low_spent_Small_value_payments,116.9276511,0,1.6352,-0.6317,0.8428,0.1958,-1.0257 -0x14d61,CUS_0x9ba4,August,20,732-45-5415,Journalist,30931.16,,4,7,15,6,"Home Equity Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Not Specified, and Mortgage Loan",,14,14.41,10,Standard,775.33,39.46966862,16 Years and 8 Months,Yes,81.4748102,163.3591462,Low_spent_Large_value_payments,277.3257103,0,-0.5747,0.3326,1.4627,0.8463,0.1043 -0x14d6d,CUS_0xc2c7,August,46,787-40-1764,_______,119706.2,10267.51667,7,5,11,2,"Payday Loan, and Home Equity Loan",,16,19.58,6,Standard,264.89,34.47344279,18 Years and 6 Months,Yes,168.7303866,698.4777631,Low_spent_Small_value_payments,449.543517,0,0.1733,-0.2611,-2.1083,-0.0997,-2.3877 -0x14d79,CUS_0x11a4,August,44,000-40-3312,Manager,44295.54,,8,6,30,2,"Credit-Builder Loan, and Student Loan",,24.59193046,8.96,8,Standard,1412.223715,37.28447193,12 Years and 9 Months,Yes,65.57597408,,High_spent_Medium_value_payments,477.5404389,0,-1.1015,1.6094,1.3099,-0.6768,2.5291 -0x14d85,CUS_0x79aa,August,34,824-45-3893,_______,18114.35,,9,6,28,2,"Auto Loan, and Student Loan",21.35118482,16,7.85,15,Bad,1289.04,35.91139427,10 Years and 6 Months,Yes,16.12078865,168.4389891,Low_spent_Small_value_payments,256.9931389,0,0.3751,-0.6996,-1.9731,0.6557,-0.8781 -0x14d91,CUS_0x5b20,August,51,212-46-0114,Engineer,24771.94,,3,6,17,3,"Mortgage Loan, Payday Loan, and Debt Consolidation Loan",17.64091436,12,11.77,7,Standard,238.37,24.89485316,,NM,58.4544176,49.07806488,High_spent_Large_value_payments,368.1003509,0,-0.2593,-0.2204,0.3637,-0.2324,-0.2615 -0x14d9d,CUS_0x9f5d,August,31,999-99-3421,Developer,10210.735,733.8945833,10,9,30,5,"Personal Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",26.91147967,19,24.69,14,Bad,3694.28,36.3180441,14 Years and 2 Months,Yes,42.02463933,44.2008342,High_spent_Small_value_payments,247.1639848,0,-0.6924,0.4203,-0.8133,-0.9273,-0.5389 -0x14da9,CUS_0x727a,August,40,364-26-4442,Doctor,68529.92,,10,10,18.88954781,7,"Credit-Builder Loan, Not Specified, Mortgage Loan, Auto Loan, Student Loan, Student Loan, and Auto Loan",40.71805566,24.05006567,17.99,,Standard,2991.75432,27.32894603,14 Years and 3 Months,Yes,1641.677806,119.5904716,High_spent_Large_value_payments,384.4843082,0,0.1847,-0.7014,1.1464,-0.8786,-0.8697 -0x14db5,CUS_0x5eef,August,23,516-17-0651,Doctor,59240,4697.666667,6,5,8.288361749,2,"Credit-Builder Loan, and Auto Loan",16.14389853,14,11.56,2,Standard,469.89,30.2063593,17 Years and 9 Months,Yes,69.26616417,567.5042671,High_spent_Medium_value_payments,502.9336964,0,1.2621,-0.1207,0.0523,2.2371,-0.7083 -0x14dc1,CUS_0x9339,August,40,646-09-4131,Accountant,15898.59,,8,6,16.06745738,6,"Home Equity Loan, Payday Loan, Auto Loan, Mortgage Loan, Student Loan, and Debt Consolidation Loan",24.68745259,16,22.17,9,_,2776.270954,30.27918313,3 Years and 9 Months,NM,72.0104375,,Low_spent_Small_value_payments,167.1928943,0,0.6907,0.1226,1.6545,1.013,2.2333 -0x14dcd,CUS_0x7c8d,August,27,313-03-7956,Media_Manager,29132.58,2559.715,8,10,25.95700519,6,"Credit-Builder Loan, Auto Loan, Not Specified, Personal Loan, Debt Consolidation Loan, and Personal Loan",,24.67830388,18.5,7,_,5172.127623,30.98773803,10 Years and 11 Months,NM,1459.94067,333.8446643,!@9#%8,31.13579687,0,-0.1853,-0.5675,-1.7415,-1.1801,0.086 -0x14dd9,CUS_0xa20b,August,80,325-04-2025,Manager,57101.1,,7,4,12,1,Mortgage Loan,,16,2.3,4,_,1178.079649,37.68447683,25 Years and 9 Months,No,29.44850996,123.1370661,High_spent_Medium_value_payments,578.2226937,0,0.614,-0.5723,0.5948,-1.9454,0.27 -0x14de5,CUS_0xb37a,August,42,590-89-0942,_______,28062.39,2397.5325,5,5,7,1,Student Loan,3.660404025,1.170627144,9.74,3,Good,911.9670149,31.48015186,18 Years and 5 Months,No,14.83513484,81.3606218,Low_spent_Large_value_payments,413.5574934,0,0.0382,-0.2911,-0.0229,-0.1973,-0.8674 -0x14df1,CUS_0xbfd2,August,41,925-75-0446,Journalist,25434.13,2318.510833,8,5,12,1,Payday Loan,18.27296018,14,14.04,10,Standard,606.48,25.52292791,8 Years and 0 Months,Yes,17.08013273,154.586549,Low_spent_Small_value_payments,350.1844016,0,-2.7967,0.8088,-0.3366,0.6298,1.1344 -0x14dfd,CUS_0xbd2d,August,49,002-26-8942,Manager,22292.16,,5,5,14,0,,24.10135818,17,11.55,6,Standard,1000.190742,24.24412465,20 Years and 2 Months,No,0,,Low_spent_Small_value_payments,254.4417048,0,0.7984,2.1343,-0.238,1.4345,-0.155 -0x14e09,CUS_0x8d95,August,32,028-75-4632,Manager,84169.92,7221.16,5,6,18,1,Mortgage Loan,,8,19,8,Standard,617.14,34.1869378,29 Years and 8 Months,Yes,38.43795519,573.7596056,Low_spent_Medium_value_payments,389.9184392,0,-0.106,2.2877,0.2922,0.0391,-1.5185 -0x14e15,CUS_0xb6b,August,27,257-56-8708,Mechanic,36463.7,2845.641667,4,7,3,1,Personal Loan,,5,4.55,1,Good,925.8220216,24.49432762,18 Years and 4 Months,No,19.15972076,51.53321706,High_spent_Medium_value_payments,471.2457608,0,-0.4936,-1.8428,0.1823,0.9095,0.014 -0x14e21,CUS_0x6f40,August,31,566-34-8471,Musician,82995.82,,2,2,10,2,"Home Equity Loan, and Mortgage Loan",9.979729402,10,2.05,615,Good,1292.936126,34.77061848,27 Years and 10 Months,No,87.41803795,289.4565084,!@9#%8,617.37108,0,1.6479,2.1838,-0.4574,-1.6577,0.6088 -0x14e2d,CUS_0x4854,August,44,564-50-3217,Accountant,66012.28,5400.023333,10,9,31.95700519,6,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",35.21313689,21,25.47,11,Bad,3919.770954,30.59380841,14 Years and 2 Months,Yes,1550.785304,118.0530156,High_spent_Medium_value_payments,400.1136445,0,0.8313,0.6737,-0.2354,0.8272,0.7913 -0x14e39,CUS_0x741b,August,44,933-75-8093,Mechanic,72524.2,,8,4,6,5,"Payday Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",19.2800014,16,7.04,10,_,1032.63,31.12316554,17 Years and 3 Months,Yes,28683,318.9961615,Low_spent_Small_value_payments,330.4590108,0,0.8093,-0.2786,-0.4641,-0.18,0.8408 -0x14e45,CUS_0x35ac,August,30,973-19-0864,Architect,118184.92,9901.743333,5,4,12,2,"Mortgage Loan, and Payday Loan",,8,5.35,3,Standard,1038.301377,36.54674482,20 Years and 10 Months,No,160.5441525,235.6929951,High_spent_Large_value_payments,865.4980458,0,0.3339,-0.0559,1.3651,-0.1667,0.1105 -0x14e51,CUS_0xbcc9,August,40,628-62-7723,Scientist,7518.71,,6,4,15,3,"Not Specified, Not Specified, and Auto Loan",23.77966654,18,17.89,9,Standard,832,34.74572171,8 Years and 4 Months,Yes,9.552501317,36.04538008,!@9#%8,294.9580353,0,-0.3431,-0.972,2.2073,-0.7941,0.1379 -0x14e5d,CUS_0xb808,August,29,743-14-3427,_______,61711.89,5403.6575,6,6,5,2,"Home Equity Loan, and Payday Loan",18.405785,14,14.46,7,_,464,30.65793707,5 Years and 10 Months,Yes,68.57886737,306.5608475,Low_spent_Large_value_payments,435.2260351,0,-1.7498,-0.386,0.7474,-0.6945,2.2402 -0x14e69,CUS_0x4468,August,26,343-10-5114,Lawyer,14387.88,,10,6,33.06745738,6,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",31.26992876,17.03192026,27.67,10,Bad,3315.63499,30.04290834,12 Years and 4 Months,Yes,56.83504637,,Low_spent_Small_value_payments,213.1847419,0,-0.753,0.5401,-0.742,-0.7961,-0.5536 -0x14e75,CUS_0x86a8,August,27,938-92-1711,Mechanic,35938.45,,3,5,15,4,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",14.03581133,11,7.84,3,Standard,1438.83,32.95877718,,No,96.96085526,194.1348433,!@9#%8,261.9913847,0,-0.576,-1.2918,0.939,-0.3542,-0.8093 -0x14e81,CUS_0x12cb,August,39,075-60-6485,Writer,45188.52,3868.71,9,10,22,7,"Home Equity Loan, Student Loan, Home Equity Loan, Student Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",41.98912382,24.18131103,10.45,11,Standard,2192.743766,30.69063149,15 Years and 5 Months,Yes,154.3574584,150.5001061,High_spent_Small_value_payments,342.0134355,0,1.1803,-0.0805,-0.29,-0.4269,-0.3859 -0x14e8d,CUS_0x7532,August,40,#F%$D@*&8,Musician,30839.77,,4,6,20,3,"Payday Loan, Debt Consolidation Loan, and Home Equity Loan",15.00521178,11,5.66,,Standard,1086.63,32.48601348,25 Years and 5 Months,NM,218.7546585,143.383503,Low_spent_Medium_value_payments,294.4954173,0,0.8969,0.9717,-0.1106,-0.0401,0.1937 -0x14e99,CUS_0x7ba9,August,25,989-07-3770,Manager,52462.42,,4,3,16,3,"Student Loan, Home Equity Loan, and Student Loan",6.951469073,8,15.87,8,Standard,778.66,25.20932038,20 Years and 8 Months,Yes,79.0516951,200.0904217,High_spent_Small_value_payments,412.4447165,0,2.6206,0.1355,0.919,-0.2186,0.9764 -0x14ea5,CUS_0xb00a,August,41,977-99-6354,Accountant,172778.16,14626.18,2,3,3,3,"Payday Loan, Home Equity Loan, and Mortgage Loan",,12,5.53,3,Good,1115.397866,39.20770778,30 Years and 9 Months,No,360.6746759,1451.234781,Low_spent_Small_value_payments,86.61030723,0,0.3198,-1.1387,-0.3538,1.3095,-0.7507 -0x14eb1,CUS_0x345e,August,37,006-81-5590,Manager,83265.72,6899.81,8,8,30.88954781,6,"Student Loan, Credit-Builder Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Auto Loan",,16.8847727,-2.54,13,Bad,2481.200565,23.62118122,6 Years and 2 Months,Yes,1620.092938,46.09221264,High_spent_Large_value_payments,569.4657679,0,0.5743,-0.5553,0.3755,-0.3662,-0.4492 -0x14ebd,CUS_0x42ef,August,28,661-18-0432,Lawyer,18385.23,,10,10,35.95700519,9,"Payday Loan, Personal Loan, Mortgage Loan, Payday Loan, Personal Loan, Auto Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",32.62800038,15,20.94,9,Bad,3943.860954,37.88576643,13 Years and 2 Months,Yes,1407.181063,63.55539024,Low_spent_Small_value_payments,239.5234275,0,-0.7176,-1.2134,1.817,-0.3744,-0.9153 -0x14ec9,CUS_0x769d,August,34,971-25-1936,Writer,42366,3340.5,9,10,27,8,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",32.08730441,21.9277511,2.75,185,Bad,1797.194289,25.00267254,16 Years and 3 Months,Yes,254.1784182,58.94585692,High_spent_Small_value_payments,280.9257249,0,0.2611,-0.0571,-0.0516,0.6066,0.6388 -0x14ed5,CUS_0x3643,August,18,580-77-2584,Mechanic,46230.26,3579.521667,8,3,11,1,Student Loan,24.17423518,17,8.76,11,_,260.98,28.83423295,8 Years and 4 Months,Yes,34.42528668,71.34470083,High_spent_Large_value_payments,492.1821792,0,-0.5307,-1.0124,0.7839,0.2277,-0.4115 -0x14ee1,CUS_0x3a3b,August,53,608-37-5088,Doctor,113196.54,,2,3,9.288361749,0,,4.419821897,6,3.43,5,_,305.03,38.25607409,21 Years and 2 Months,No,0,695.2989364,Low_spent_Medium_value_payments,971.8430246,0,0.2996,-0.1583,0.8566,-1.1013,0.2195 -0x14eed,CUS_0xaad9,August,18,910-00-4345,Mechanic,8555.32,657.7759517,9,9,24,4,"Payday Loan, Payday Loan, Auto Loan, and Auto Loan",34.5981044,17,10.93,7,Standard,2457.42,31.41796911,11 Years and 9 Months,Yes,70.13822556,58.44935728,Low_spent_Small_value_payments,276.8741322,0,0.4239,0.0022,-0.504,-1.4379,-0.1133 -0x14ef9,CUS_0x9b81,August,43,226-30-7230,Musician,95949.4,7875.783333,3,4,12,0,,,,4.51,4,Standard,1264.37,37.37113156,19 Years and 11 Months,No,0,,!@9#%8,809.1155656,0,-0.2127,1.1377,0.9205,1.7954,0.2345 -0x14f05,CUS_0xc6ac,August,38,057-64-6271,Engineer,35185.56,2962.13,6,4,14,3,"Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",11.35741556,10,7.14,0,Standard,379.47,29.50788246,21 Years and 2 Months,No,83.27806425,124.5756386,Low_spent_Small_value_payments,378.3592972,0,0.5224,-0.9486,-0.9172,0.6816,0.1061 -0x14f11,CUS_0x3849,August,29,599-59-8932,Engineer,30695.12,,2,110,9,4,"Personal Loan, Home Equity Loan, Personal Loan, and Student Loan",0.137866095,3,0.43,1,_,392.8077686,28.17723243,23 Years and 6 Months,No,64.74861622,,High_spent_Medium_value_payments,340.8758087,0,1.5658,-0.7661,-1.0494,1.5494,-0.8015 -0x14f1d,CUS_0x46c4,August,30,570-10-0256,Manager,61102.78,,7,5,14,4,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,10,7.11,9,_,382.8228823,38.67984741,31 Years and 3 Months,No,475.6650538,232.4842807,High_spent_Medium_value_payments,340.1729494,0,-0.3823,1.1032,0.013,0.2908,-0.7551 -0x14f29,CUS_0xa323,August,54,587-60-5963,Architect,23667.29,,7,6,8,100,"Not Specified, Debt Consolidation Loan, and Home Equity Loan",15.87110763,11,13.46,3,Standard,1070.170432,36.70967292,20 Years and 2 Months,Yes,53.02313961,55.95902197,!@9#%8,355.4073659,0,-1.7037,-0.405,-0.1521,-0.2817,-1.2636 -0x14f35,CUS_0x9cc,August,42,138-02-9904,Doctor,40290.47,,5,5,4.288361749,4,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",10.250531,10.65989531,3.93,7,_,376.2971603,24.62748997,,No,74.087584,733.1256803,Low_spent_Large_value_payments,244.4781134,0,-0.644,0.2457,0.6319,0.4291,-0.2483 -0x14f41,CUS_0x63df,August,26,031-17-4326,Developer,44447.88,,7,5,30,5,"Credit-Builder Loan, Student Loan, Not Specified, Mortgage Loan, and Personal Loan",,22,19.48,8,Bad,3781.47,35.49369499,6 Years and 0 Months,Yes,107.6052907,90.32635024,High_spent_Large_value_payments,442.0673591,0,-0.6541,0.5046,0.2277,0.2335,0.521 -0x14f4d,CUS_0xb03f,August,44,389-89-7954,Accountant,17963.45,1328.954167,6,7,18.06745738,2,"Personal Loan, and Not Specified",,17.13731136,0.75,11,Bad,2503.328288,27.26316091,7 Years and 4 Months,Yes,23.01331426,,Low_spent_Small_value_payments,218.966221,0,0.3601,1.7724,0.9154,-0.6214,1.9416 -0x14f59,CUS_0x7b0,August,27,992-16-3962,Scientist,57626.34,4906.733879,3,5,4,3,"Not Specified, Payday Loan, and Auto Loan",,2,9.93,2,Good,79.39787035,35.73374301,23 Years and 6 Months,No,259.8403815,11649.89686,High_spent_Small_value_payments,417.2831274,0,-1.439,-1.5897,-0.8998,-0.3251,0.2841 -0x14f65,CUS_0x407a,August,20,250-68-2308,Engineer,15131.6,,5,5,8,3,"Auto Loan, Payday Loan, and Debt Consolidation Loan",0,1,1.59,1,Good,416.8955042,24.03769389,25 Years and 6 Months,No,25.93043174,,Low_spent_Small_value_payments,233.1146914,0,0.3865,1.3203,-1.3206,-0.47,-0.0731 -0x14f71,CUS_0xc146,August,55,178-30-4421,Teacher,83859.84,6759.32,8,4,14,0,,,18,8.41,2,Standard,881.24,25.97278051,18 Years and 8 Months,No,0,671.4431476,Low_spent_Medium_value_payments,284.4888524,0,0.0267,-0.394,-0.2525,1.9251,-0.7331 -0x14f7d,CUS_0x3fb4,August,33,#F%$D@*&8,Mechanic,73871.32,5985.943333,5,7,10,0,,,19,4.01,4,Standard,217.57,30.22947195,15 Years and 8 Months,No,0,564.4773614,Low_spent_Medium_value_payments,314.1169719,0,-0.3405,0.319,-0.1456,0.5993,0.5399 -0x14f89,CUS_0xbecb,August,29,052-29-4200,Journalist,8514.715,,514,7,23.06745738,6,"Auto Loan, Student Loan, Mortgage Loan, Student Loan, Payday Loan, and Student Loan",,18.62405125,23.04,11,Bad,5217.138787,36.95050678,9 Years and 4 Months,Yes,21.48330723,10000,Low_spent_Small_value_payments,262.2693361,0,0.2222,-0.7891,0.4839,-0.8302,0.9998 -0x14f95,CUS_0xb3b3,August,19,704-29-2598,Accountant,68893.59,,3,7,2,4,"Mortgage Loan, Personal Loan, Not Specified, and Credit-Builder Loan",16.47022068,14,2.53,5,Good,944.6541849,30.45536393,25 Years and 4 Months,No,147.3700278,91.9550563,High_spent_Large_value_payments,608.9766953,0,-0.7849,0.4747,-1.8776,-0.5077,-0.0713 -0x14fa1,CUS_0x2bc9,August,43,073-13-5403,Engineer,37819.13,3185.594167,0,3,1,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Payday Loan",0.103839939,1.1555112,7.63,1,Good,863.0362803,24.55852361,27 Years and 8 Months,No,79.44872834,252.0297496,Low_spent_Large_value_payments,257.0809388,0,0.4209,2.1775,-1.4013,-0.2926,0.4507 -0x14fad,CUS_0x4feb,August,31,921-30-7278,Journalist,33726.6,,6,5,19,100,,17.75522433,14,13.65,10,_,1251.27,31.78157512,28 Years and 6 Months,Yes,382.877556,90.06296489,High_spent_Medium_value_payments,445.9920351,0,0.4395,1.0307,0.7509,-1.9382,-0.1475 -0x14fb9,CUS_0x8036,August,46,102-56-8758,_______,78984.46,6360.038333,4,2,7.288361749,0,Mortgage Loan,8.499021227,9,8.15,5,Good,283.9853473,41.02658018,,No,50.09499242,586.6340048,High_spent_Large_value_payments,678.780986,0,0.4099,1.4987,1.4005,-2.0822,0.6336 -0x14fc5,CUS_0xc05d,August,22,172-24-4809,Lawyer,9531.25,,8,10,22.88954781,8,"Personal Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Credit-Builder Loan",32.02696525,24.29311667,,9,Bad,5569.725236,26.93436361,3 Years and 6 Months,NM,1363.955696,57.586229,!@9#%8,233.5550774,0,1.5235,-0.4559,-0.6431,-0.6593,-0.0164 -0x14fd1,CUS_0xbe3,August,31,074-22-4935,Lawyer,20730.15,1661.5125,6,5,28.06745738,5,"Personal Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Payday Loan",,22,2.75,16,Bad,2585.100954,26.34265285,,Yes,24325,106.3187207,Low_spent_Large_value_payments,254.9564399,0,-0.414,0.8802,1.3846,1.0668,0.8729 -0x14fdd,CUS_0x383c,August,56,329-16-0543,Teacher,89342.58,7644.215,5,3,5,0,,8.640318763,11,8.08,1,Good,533.66,41.31225323,30 Years and 0 Months,No,24612,147.6831317,High_spent_Small_value_payments,876.7383683,0,0.2717,-1.0843,0.3805,0.0694,0.5809 -0x14fe9,CUS_0x26f8,August,26,745-83-5485,Engineer,29374.77,,3,7,6,2,"Student Loan, and Payday Loan",24.64918286,17.65466758,16.65,7,Standard,1315.147995,35.68771724,20 Years and 3 Months,Yes,40.26407406,158.4885616,!@9#%8,329.0371143,0,0.9126,-0.2598,0.3647,0.4294,-0.2433 -0x14ff5,CUS_0x1eee,August,34,513-08-1791,Teacher,115649.52,9400.46,5,5,8.288361749,2,"Payday Loan, and Home Equity Loan",,8,10.46,6,Good,641.04,35.7893897,,NM,104.619466,,High_spent_Large_value_payments,929.381967,0,-0.8247,-1.1395,0.4912,0.3217,-0.7015 -0x15001,CUS_0xa8d6,August,27,176-81-8639,Journalist,31263.7,,4,6,1,0,,0,0,4.13,5,Good,1086.65,37.80985699,31 Years and 8 Months,No,0,113.0021547,Low_spent_Medium_value_payments,448.2286786,0,-1.242,0.1769,2.7188,1.8276,-1.0269 -0x1500d,CUS_0x74a3,August,80,630-80-7645,Developer,30936.69,2416.0575,4,5,17,1,Auto Loan,17.89453963,14.45332416,19.18,11,Standard,883.7263592,28.35286389,33 Years and 0 Months,Yes,21.48555542,10000,Low_spent_Small_value_payments,207.2560403,0,-0.737,-0.1244,0.2578,-0.0455,0.1573 -0x15019,CUS_0x494b,August,18,710-98-6480,Engineer,8984.62,575.7183333,8,4,18,7,"Auto Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Credit-Builder Loan",12.54949144,11,14.27,9,Standard,720.17,29.61205663,16 Years and 9 Months,Yes,31.086195,57.21507309,Low_spent_Medium_value_payments,249.2705652,0,1.7258,0.4417,0.2242,-0.8934,-0.543 -0x15025,CUS_0x9247,August,35,326-71-1514,Media_Manager,52385.58,4492.465,4,6,6,4,"Home Equity Loan, Home Equity Loan, Home Equity Loan, and Auto Loan",23.74599548,19,14.99,6,Standard,184.38,37.1865962,27 Years and 9 Months,Yes,166.0556306,75.50233951,High_spent_Large_value_payments,447.6885299,0,0.6245,0.0829,0.6665,-1.7968,-0.6419 -0x15031,CUS_0x3264,August,48,215-89-1175,Musician,20662.84,1663.903333,3,3,5,4,"Not Specified, Not Specified, Home Equity Loan, and Mortgage Loan",,15,7.23,4,Standard,699.36,34.1378374,18 Years and 6 Months,No,39.90889439,58.61908602,High_spent_Medium_value_payments,317.8623529,0,-0.0488,-2.2097,1.0186,0.3292,2.2345 -0x1503d,CUS_0x7fc3,August,19,733-71-6520,Teacher,139144.84,11572.40333,2,4,11,3,"Student Loan, Personal Loan, and Home Equity Loan",1.403546736,3,1.76,777,_,630.7499311,39.68150509,25 Years and 5 Months,No,323.1234839,919.0349714,Low_spent_Medium_value_payments,306.4033971,0,-1.3684,-0.7458,1.0222,-0.4322,-0.733 -0x15049,CUS_0x139b,August,46,346-99-5140,Scientist,29313.3,2151.775,4,5,1,3,"Credit-Builder Loan, Home Equity Loan, and Not Specified",0,4,5.95,7,Good,315.0526101,28.19561601,32 Years and 5 Months,No,52.21702036,,High_spent_Small_value_payments,293.9999599,0,-0.1249,-1.9531,0.6907,1.3871,1.7988 -0x15055,CUS_0x7af8,August,39,751-11-3630,Manager,33891.6,,8,10,25.95700519,6,"Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",30.92612022,18,28.46,12,Bad,4052.530954,27.3647158,12 Years and 2 Months,Yes,1409.133086,,Low_spent_Small_value_payments,180.949096,0,0.6328,-0.9462,1.0021,1.2052,0.3459 -0x15061,CUS_0x94f4,August,32,092-79-1687,Mechanic,40196.9,,2,5,7,1,Home Equity Loan,12.91358026,13,14.07,4,_,537.1773369,33.80697708,20 Years and 0 Months,No,272.69763,98.6072278,High_spent_Small_value_payments,490.8116891,0,-1.586,-0.1079,-0.92,0.7575,-0.2082 -0x1506d,CUS_0x2da2,August,46,029-33-0758,Architect,20318.97,1463.2475,3,3,17,6,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Personal Loan, and Payday Loan",,13,16.14,13,Standard,2097.84,39.09683599,12 Years and 5 Months,Yes,94.57002245,,Low_spent_Small_value_payments,255.4682698,0,-0.7114,-0.0952,0.0061,0.575,-1.053 -0x15079,CUS_0x82b,August,35,468-43-3883,Architect,16784.74,,7,10,23,5,"Not Specified, Home Equity Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",33.04287255,17,29.57,14,Bad,4174.75,34.32090279,3 Years and 4 Months,Yes,58.56580811,10000,High_spent_Medium_value_payments,284.1870781,0,-0.9465,0.6579,-0.302,0.1527,1.9439 -0x15085,CUS_0xa69f,August,38,685-51-3320,Teacher,8475.64,794.3033333,10,10,23.06745738,3,"Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,28.38284052,5.76,11,Bad,2488.221822,37.96361413,10 Years and 3 Months,Yes,12.79212258,,Low_spent_Small_value_payments,231.5689658,0,-0.8662,2.0733,1.9201,-1.9156,1.8528 -0x15091,CUS_0x1572,August,39,031-16-3010,Engineer,83384.2,7080.683333,3,9,24,3,"Student Loan, Debt Consolidation Loan, and Personal Loan",,11,15.14,9,Standard,2613.85,28.45556586,12 Years and 6 Months,Yes,112.0104147,105.6244855,High_spent_Large_value_payments,730.4334331,0,0.8362,1.3884,-0.1529,0.2739,0.4594 -0x1509d,CUS_0x12c1,August,48,902-44-7100,Manager,85760.85,7172.7375,2,6,5,4,"Student Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",4.210737275,3.591836035,10.92,3,Good,761.4821749,28.054554,31 Years and 3 Months,No,171.4301979,515.1066585,Low_spent_Large_value_payments,300.7368936,0,-0.2671,-0.1508,1.1744,0.0571,0.9397 -0x150a9,CUS_0x8a8e,August,35,#F%$D@*&8,Lawyer,80661.32,6551.776667,5,4,30,4,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Not Specified",17.98532929,16.89328035,9.58,5,Standard,1640.751508,33.60816609,7 Years and 10 Months,Yes,135.5624741,232.7733265,High_spent_Medium_value_payments,536.8418661,0,1.1591,-0.317,-0.3534,0.5486,-0.0596 -0x150b5,CUS_0xa01f,August,30,674-35-4435,Mechanic,79657,,7,10,31,9,"Auto Loan, Payday Loan, Payday Loan, Payday Loan, Student Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Payday Loan",23.48529925,17,17.42,17,Bad,3189,39.11736689,4 Years and 2 Months,Yes,950.8845835,265.3917549,High_spent_Medium_value_payments,254.7988572,0,0.8109,-1.3786,1.4508,3.1786,0.4537 -0x150c1,CUS_0x2246,August,18,869-97-4157,Media_Manager,79708.89,,4,5,17,2,"Home Equity Loan, and Student Loan",26.53859175,19,4.01,7,Standard,1262.12,29.70312442,28 Years and 5 Months,NM,125.3996585,211.3632131,High_spent_Small_value_payments,582.5778784,0,0.9283,1.0544,1.3389,-0.4985,0.0299 -0x150cd,CUS_0xb457,August,19,#F%$D@*&8,Entrepreneur,14363.23,,9,6,33.06745738,5,"Student Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",28.05747232,16,23.95,12,Bad,3025.860954,25.69984754,1 Years and 9 Months,Yes,53.60035082,51.60352413,Low_spent_Medium_value_payments,263.7694204,0,0.5263,-0.3911,2.616,-1.6352,-1.1543 -0x150d9,CUS_0x60f1,August,25,199-66-4993,Lawyer,16479.14,971.3620917,7,6,16.06745738,100,"Debt Consolidation Loan, and Debt Consolidation Loan",,25.85521588,19.58,12,Bad,2527.753309,39.40375919,13 Years and 2 Months,Yes,125.995814,59.32413267,Low_spent_Small_value_payments,291.585507,0,1.8339,0.5355,0.2446,0.5558,-1.0001 -0x150e5,CUS_0x42e6,August,36,811-31-7920,Manager,25389.26,1954.771667,5,3,6,3,"Home Equity Loan, Home Equity Loan, and Payday Loan",13.08229874,12,6.82,0,Standard,210.5450216,30.25808125,31 Years and 5 Months,Yes,60.30343391,11075.33069,Low_spent_Large_value_payments,341.0484654,0,-1.5992,-1.7925,0.7357,-1.2779,-0.0438 -0x150f1,CUS_0x7cb9,August,37,599-00-9018,Media_Manager,92705.84,,8,7,10.28836175,0,,15.07845898,13.63959491,9.81,0,Good,725.3413434,33.6209828,16 Years and 4 Months,No,0,580.237713,High_spent_Large_value_payments,875.4484146,0,-1.0195,0.5603,0.7178,-0.5693,1.3436 -0x150fd,CUS_0x69f3,August,22,297-20-4230,Engineer,46841.92,3734.493333,3,4,13,4,"Student Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",22.82765268,19,18.32,5,_,1368.545426,24.41131399,5 Years and 9 Months,Yes,149.3903592,65.62479585,High_spent_Large_value_payments,407.2131846,0,-0.522,-1.5078,0.961,-2.7521,0.9289 -0x15109,CUS_0x84bf,August,34,561-98-8315,_______,19433.48,,6,7,34.06745738,6,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,20,22.15,8,Bad,3820.100954,42.14627694,7 Years and 2 Months,Yes,143.3783232,85.57697309,Low_spent_Small_value_payments,274.6328243,0,-1.5365,0.7011,-0.4548,0.6438,0.7081 -0x15115,CUS_0x2b51,August,26,670-39-4075,Writer,47456.32,,1310,3,9.288361749,100,"Credit-Builder Loan, Not Specified, Not Specified, and Auto Loan",16.72186739,15,6.17,0,_,45.94,26.0893881,20 Years and 3 Months,Yes,112.7336672,568.4498637,Low_spent_Small_value_payments,429.5232635,0,1.143,-1.1255,-0.5672,0.252,-1.2401 -0x15121,CUS_0xa2a1,August,35,688-88-7277,Developer,18419.57,,4,4,10,1,Auto Loan,,7,9.08,1,_,699.06,28.61191213,25 Years and 5 Months,NM,9.803353349,129.3582507,Low_spent_Small_value_payments,275.2348126,0,1.3373,1.3206,-0.9919,-0.4586,0.4549 -0x1512d,CUS_0x99f1,August,27,983-66-2995,_______,30976.75,,8,660,0.288361749,0,Auto Loan,,8,7.69,5,_,267.22,32.51403265,26 Years and 2 Months,No,23.81773148,,High_spent_Small_value_payments,447.907591,0,-1.4243,-1.6433,-0.455,1.2402,-2.5541 -0x15139,CUS_0x8b18,August,41,#F%$D@*&8,Writer,61043.61,5052.9675,9,5,30,6,"Auto Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",35.38050237,19.38595262,27.17,17,Bad,3024.306987,30.50295894,9 Years and 10 Months,Yes,235.4503798,71.30281529,High_spent_Medium_value_payments,448.5435549,0,-0.7347,1.862,-0.105,0.0797,-0.6689 -0x15145,CUS_0xbfeb,August,41,366-30-8489,Developer,68078.6,5651.216667,3,3,29,2,"Debt Consolidation Loan, and Mortgage Loan",,16.60644528,8.54,7,_,2274.775525,39.11097671,13 Years and 6 Months,Yes,64.44340295,152.0841808,Low_spent_Large_value_payments,618.594083,0,0.7968,0.6091,-0.4599,1.7939,-0.3349 -0x15151,CUS_0xa7f8,August,41,741-64-6836,Manager,88709.79,7636.4825,4,5,11,0,,,12,11.09,2,Good,1335.857332,43.29864015,,No,0,73.41817269,High_spent_Large_value_payments,939.6413947,0,-0.3318,-1.1554,0.6169,1.2772,0.949 -0x1515d,CUS_0x529b,August,32,222-81-7309,Developer,43900.02,,8,8,30,4,"Student Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",23.11694524,19.07085596,14.4,15,Standard,2826.955584,36.13046374,16 Years and 0 Months,Yes,111.519608,281.8757409,Low_spent_Small_value_payments,251.4381511,0,-0.6629,-1.4647,0.4868,0.4504,-0.1071 -0x15169,CUS_0x386e,August,24,610-24-1396,Scientist,17399.43,,8,9,21,2,"Mortgage Loan, and Debt Consolidation Loan",,28.1192787,9.03,10,Bad,1658.120006,34.86933846,6 Years and 5 Months,Yes,27.10328705,41.0660852,Low_spent_Large_value_payments,350.4258778,0,-0.9038,2.9483,1.7662,-2.0415,-0.0726 -0x15175,CUS_0x1dac,August,29,235-35-8527,Mechanic,72886.08,5805.84,882,9,31.95700519,9,"Credit-Builder Loan, Student Loan, Home Equity Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",40.47865632,20.09275861,18.19,9,Bad,4548.604081,39.59046875,7 Years and 11 Months,Yes,1655.202954,,Low_spent_Medium_value_payments,255.4596631,0,0.9441,1.0869,0.1271,-0.5389,-1.891 -0x15181,CUS_0xa742,August,27,143-37-1481,Accountant,16474.49,1165.874167,8,3,23,5,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",,11.76900822,15.36,15,Standard,1708.663325,39.1183328,18 Years and 2 Months,Yes,68.4496453,56.94719903,Low_spent_Small_value_payments,281.1905723,0,0.4652,-0.0678,-0.5852,-1.1407,-0.322 -0x1518d,CUS_0xa82c,August,22,752-16-2968,Media_Manager,25838.55,,4,3,15,1,Credit-Builder Loan,21.96165738,15,11.73,2,Standard,6.41,25.35528975,24 Years and 9 Months,Yes,21.34436196,240.3919572,Low_spent_Small_value_payments,244.5849308,0,-0.3128,-1.7158,-0.016,-1.4299,-1.492 -0x15199,CUS_0xa1de,August,32,285-30-2522,Teacher,9662.195,885.1829167,6,7,6,5,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Payday Loan",19.43383659,17,12.25,8,Standard,656.57,35.47344894,12 Years and 11 Months,Yes,29.54006209,57.57122227,Low_spent_Small_value_payments,291.4070073,0,-0.4459,-0.0998,1.2003,0.3056,-0.2297 -0x151a5,CUS_0x79ff,August,39,885-50-0108,Mechanic,11850.985,,7,7,16,4,"Auto Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",13.58267143,11.87942624,,0,Standard,890.8565809,34.29777964,29 Years and 5 Months,NM,23.99855954,,!@9#%8,254.3255738,0,0.3431,0.9991,-0.3832,-1.799,-1.8709 -0x151b1,CUS_0x3f5,August,30,335-62-4040,Mechanic,30022.71,2684.8925,3,7,6,4,"Home Equity Loan, Mortgage Loan, Not Specified, and Personal Loan",1.056433271,2.41511236,3.06,1,_,1165.05128,33.56975512,26 Years and 6 Months,No,62.22228531,75.81759136,Low_spent_Large_value_payments,400.4493733,0,0.14,-1.1182,0.2963,-1.5471,-0.9001 -0x151bd,CUS_0xc2c5,August,42,563-08-0705,Mechanic,9221.27,,8,9,23.88954781,6,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Not Specified",33.22008269,19,21.41,12,Bad,3707.9,30.97397224,12 Years and 8 Months,Yes,1352.330879,54.47847765,High_spent_Small_value_payments,238.3044792,0,-0.6662,-0.7906,-0.6124,-0.2925,-0.1458 -0x151c9,CUS_0x9acb,August,20,955-93-2132,Developer,47406.22,,4,7,20,0,,15.55006305,13,1.37,1,_,890.19,28.49948981,30 Years and 5 Months,No,0,396.8836451,Low_spent_Small_value_payments,265.7681882,0,1.5389,0.9137,-1.0202,-0.1407,-1.374 -0x151d5,CUS_0x80e2,August,36,854-78-0713,Engineer,89891.43,7459.9525,1069,3,8,0,,13.81592118,9,6.98,2,Standard,1468.45,29.60615238,16 Years and 0 Months,No,0,261.7805007,High_spent_Medium_value_payments,734.2147493,0,0.8468,-0.1331,-0.9545,-0.6343,-1.4888 -0x151e1,CUS_0x5625,August,36,859-74-5676,Musician,125155.2,10231.6,1,4,9,3,"Student Loan, Auto Loan, and Mortgage Loan",11.03384382,7.877775396,10.7,2,Good,57.09311155,30.56243184,26 Years and 6 Months,No,169.6272275,134.9598416,High_spent_Large_value_payments,958.5729308,0,-0.5411,0.8269,-1.1719,1.5551,-0.8718 -0x151ed,CUS_0xba94,August,42,607-98-2198,Entrepreneur,18675.65,1548.304167,3,6,18,2,"Payday Loan, and Not Specified",,18,11.52,11,_,1352.15,38.40032075,8 Years and 5 Months,Yes,16.52870275,129.8277089,Low_spent_Small_value_payments,298.474005,0,-0.4451,0.7878,1.1588,0.316,1.0005 -0x151f9,CUS_0x4460,August,59,909-64-1351,Accountant,14566.335,,4,5,7,3,"Personal Loan, Auto Loan, and Auto Loan",18.76555832,13,6.22,3,Good,699.8204917,40.03593423,30 Years and 10 Months,No,19.08233456,65.99963496,High_spent_Small_value_payments,291.64595,0,-1.1912,1.3086,1.3391,-0.2754,-0.6897 -0x15205,CUS_0xc0b3,August,44,973-12-0733,Scientist,15990.655,,7,3,17,5,"Credit-Builder Loan, Mortgage Loan, Student Loan, Student Loan, and Credit-Builder Loan",24.03527041,19.53165015,11.85,8,Standard,1313.071359,39.14277659,14 Years and 8 Months,NM,53.91846893,,Low_spent_Small_value_payments,254.4306367,0,-0.9751,0.4203,-0.5452,-0.2675,1.8097 -0x15211,CUS_0xc42f,August,20,648-38-4326,Architect,7160.96,471.9786286,8,10,29.95700519,7,"Student Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",,18.21243629,3.2,12,Bad,2829.633262,39.94932602,9 Years and 10 Months,Yes,1389.893443,18.82937873,Low_spent_Small_value_payments,251.1695139,0,-0.0865,0.0863,0.994,1.1265,-0.6873 -0x1521d,CUS_0x1343,August,21,443-92-7114,Teacher,125280.36,,0,5,3,4,"Debt Consolidation Loan, Student Loan, Home Equity Loan, and Mortgage Loan",,5,11.69,0,Good,1286.475214,32.42628414,,No,305.7227762,164.2999624,High_spent_Large_value_payments,859.3368618,0,1.4145,0.9674,1.0597,0.1403,-0.8429 -0x15229,CUS_0x6058,August,38,159-06-4178,Journalist,113085.87,9531.8225,4,4,11,1,Auto Loan,0,1.144443357,8.37,4,Good,267.6984669,29.06426459,30 Years and 3 Months,No,81.10299285,711.5915371,Low_spent_Large_value_payments,430.4877201,0,-0.0008,0.9436,-0.415,0.4946,-0.3664 -0x15235,CUS_0x268b,August,28,647-38-6615,Scientist,61035.4,,9,5,21,4,"Payday Loan, Payday Loan, Payday Loan, and Student Loan",,27,9.64,10,Bad,2490.34,37.5467042,6 Years and 9 Months,Yes,186.8174693,,High_spent_Medium_value_payments,441.3469905,0,1.0438,0.5203,0.4603,-1.3718,-0.3009 -0x15241,CUS_0x59f5,August,32,099-38-8985,Scientist,132123.84,,0,2,0.288361749,0,,7.017754086,9,1.45,2,Good,1288.061206,36.11334368,24 Years and 10 Months,No,0,598.7210133,High_spent_Large_value_payments,1171.318887,0,-1.7587,1.4236,-0.5626,-1.5187,-0.7217 -0x1524d,CUS_0x1ec5,August,34,042-68-5885,Accountant,36802.82,,4,3,7,1,Not Specified,16.58816017,14,6.06,2,Good,190.98,26.64743815,32 Years and 6 Months,NM,379.683016,104.1844002,High_spent_Small_value_payments,403.0602487,0,-0.4268,-0.0345,-0.1958,1.5325,1.0666 -0x15259,CUS_0x4ae9,August,51,573-66-1824,Scientist,121962.9,10055.575,0,4,10.28836175,2,"Student Loan, Personal Loan, and Mortgage Loan",,5,5.66,5,Good,339.01,42.09475974,31 Years and 3 Months,NM,182.0979209,720.9522079,High_spent_Medium_value_payments,772.4448322,0,-0.8899,-0.3703,0.029,0.772,1.1284 -0x15265,CUS_0xae2e,August,27,909-46-6100,_______,20043.26,,8,10,26.95700519,6,"Not Specified, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Personal Loan",28.22699546,18,31.86,11,Bad,3936.650954,40.07863491,,Yes,1412.780829,75.34307175,!@9#%8,199.3528963,0,0.5191,0.5644,-0.3078,-0.3011,1.3081 -0x15271,CUS_0x1a53,August,38,425-07-1650,Manager,28360.5,,8,5,14,2,"Auto Loan, and Auto Loan",,21,11.26,8,Standard,2404.64,28.54944931,14 Years and 6 Months,Yes,45.17032541,87.43881429,!@9#%8,366.0283603,0,0.4295,0.7478,-1.285,-0.3718,-1.5851 -0x1527d,CUS_0x33bc,August,42,#F%$D@*&8,Engineer,17468.19,1453.6825,10,6,26.06745738,3,"Mortgage Loan, Home Equity Loan, and Mortgage Loan",,14.42698419,8.2,10,Standard,1914.124383,34.23887304,11 Years and 6 Months,NM,23.26779435,,High_spent_Medium_value_payments,317.3975248,0,-0.2098,-0.5129,-0.0186,-0.2983,0.4401 -0x15289,CUS_0xbfef,August,47,245-34-2752,Media_Manager,179078.28,15115.19,2,4,1.288361749,4,"Payday Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",7.133663993,8.110502098,5.26,7,Good,796.0989346,37.04245026,31 Years and 5 Months,No,585.3831318,965.7420382,Low_spent_Large_value_payments,650.331291,0,1.8179,2.1447,-0.7963,-0.4629,0.9291 -0x15295,CUS_0x8f68,August,22,302-10-7307,Musician,82659.32,6796.851833,10,7,32,9,"Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Student Loan",,25.98371396,31.59,11,Bad,3992.315634,26.02605765,1 Years and 9 Months,Yes,384.2426848,68.23475398,High_spent_Large_value_payments,360.9750615,0,1.7504,0.5679,0.3101,0.9237,0.2627 -0x152a1,CUS_0x4dfb,August,33,618-74-3788,Architect,119809.72,9939.143333,0,2,10.28836175,0,,5.13256624,6,6.2,2,_,542.7,28.44182216,19 Years and 5 Months,No,0,863.6033698,Low_spent_Medium_value_payments,830.2484246,0,0.2687,0.0707,0.1094,-0.2947,-1.3355 -0x152ad,CUS_0x8e40,August,80,173-90-1716,Journalist,73971.16,,6,9,33,7,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Not Specified, and Payday Loan",,21,19.3,11,Bad,3528.13,23.17573076,6 Years and 0 Months,Yes,330.285917,241.122774,High_spent_Medium_value_payments,283.7176424,0,0.4103,-0.2482,-0.971,0.9041,-0.1586 -0x152b9,CUS_0xa3c,August,27,054-73-9178,Accountant,14168.2,1054.683333,8,8,28,8,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",26.60111536,19,23.65,12,Bad,3457.78,24.66908505,7 Years and 6 Months,Yes,91.84540323,,Low_spent_Small_value_payments,162.7238473,0,-0.8176,-0.0728,0.3439,0.2775,-0.5296 -0x152c5,CUS_0x4605,August,26,592-19-3205,Media_Manager,87314.67,6498.906187,5,2,8.288361749,2,"Mortgage Loan, and Not Specified",2.485523764,4,4.72,1,Good,670.6294442,34.66783972,18 Years and 6 Months,No,719.2247835,523.6258466,High_spent_Large_value_payments,762.028273,0,0.2533,-0.5086,-0.5577,-0.2402,-1.5861 -0x152d1,CUS_0x789,August,46,059-43-6499,Accountant,16372.12,,9,5,29.06745738,2,"Credit-Builder Loan, and Credit-Builder Loan",,20,6.76,14,_,2321.970954,37.69492217,9 Years and 4 Months,NM,16.70423486,76.20039556,High_spent_Small_value_payments,305.209415,0,-0.213,0.1357,-0.7147,-0.4823,0.7274 -0x152dd,CUS_0x94d2,August,54,348-69-3594,Scientist,21834.105,2071.50875,4,5,11,1,Credit-Builder Loan,12.13018889,12,10.4,5,Good,1215.84,35.80986599,24 Years and 11 Months,No,16.92255727,189.8726023,Low_spent_Small_value_payments,290.3557154,0,1.099,1.6679,-0.0145,1.2357,0.9823 -0x152e9,CUS_0x95d4,August,54,957-80-4516,Entrepreneur,52205.88,4348.49,1616,6,5,100,Personal Loan,,12,,4,Standard,203.33,37.68351021,28 Years and 8 Months,Yes,40.58526111,416.1519602,Low_spent_Small_value_payments,268.1117787,0,-0.7449,-0.4283,-0.0358,-0.7067,0.359 -0x152f5,CUS_0xb7d0,August,38,668-54-0278,Engineer,16449.27,,903,6,20,2,"Debt Consolidation Loan, and Not Specified",21.3182187,15,19.86,4,Standard,1385.18,26.32316479,8 Years and 3 Months,Yes,16.59813424,,Low_spent_Small_value_payments,270.3005158,0,0.0086,0.0512,1.0248,0.175,0.063 -0x15301,CUS_0xaa93,August,41,#F%$D@*&8,Musician,18314.09,1779.174167,6,6,34,4,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",14.12135799,10.4156333,12.5,6,_,2071.659532,35.86962495,11 Years and 3 Months,Yes,38.43049906,70.8040963,Low_spent_Small_value_payments,358.6828213,0,-0.7936,-1.4528,0.6371,0.2148,0.8145 -0x1530d,CUS_0xaa66,August,32,841-06-2917,Architect,14995.29,,7,5,29.06745738,5,"Auto Loan, Payday Loan, Mortgage Loan, Payday Loan, and Student Loan",,25,13.85,8,Bad,4816.690954,30.15721773,3 Years and 6 Months,Yes,175.8323356,76.698504,Low_spent_Large_value_payments,219.9059943,0,-0.0218,-0.0815,0.2656,-1.1766,-0.2058 -0x15319,CUS_0x1567,August,31,675-44-1792,Entrepreneur,19363.33,,8,6,5058.288362,2,"Credit-Builder Loan, and Home Equity Loan",19.12219664,17,18.31,10,Standard,111.66,23.47385514,14 Years and 6 Months,NM,30.69393122,469.572138,High_spent_Medium_value_payments,360.1324751,0,0.0425,2.5628,-0.8112,0.3965,1.3458 -0x15325,CUS_0x9c17,August,35,224-39-6786,Entrepreneur,29655.22,,6,10,32.06745738,9,"Student Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Not Specified, Payday Loan, Payday Loan, and Personal Loan",28.43472194,17.43174759,0.45,14,Bad,1793.085855,40.6811037,12 Years and 3 Months,Yes,172.6284364,46.95329484,High_spent_Medium_value_payments,267.2248141,0,0.7554,0.2898,0.4785,0.6786,0.7678 -0x15331,CUS_0x70d8,August,41,379-60-1712,Architect,116346.93,9814.5775,0,3,9,3,"Home Equity Loan, Payday Loan, and Auto Loan",,7,10.23,3,Good,104.3805365,41.58255276,30 Years and 6 Months,No,183.0013199,265.0964239,High_spent_Medium_value_payments,816.6271174,0,-0.055,-1.4104,-0.6963,-0.6519,1.0312 -0x1533d,CUS_0x8980,August,50,729-65-2462,Engineer,74766.86,,4,7,2,100,"Mortgage Loan, Payday Loan, and Student Loan",,9.531017162,3.82,1,Good,116.2142077,40.1926552,22 Years and 8 Months,No,153.3949939,60.56554631,High_spent_Large_value_payments,628.5966264,0,0.8578,1.3512,-0.6756,-0.4947,1.9486 -0x15349,CUS_0x3e7f,August,29,749-76-8458,Journalist,162590.56,,5,1477,11,0,,,9.503688697,11.65,4,_,1149.253325,37.93835113,26 Years and 4 Months,No,0,1021.633178,Low_spent_Medium_value_payments,611.8881556,0,-0.7604,-2.1978,-1.2174,-0.0938,-0.4757 -0x15355,CUS_0x9da0,August,42,649-81-2116,Accountant,15153.54,1108.795,8,5,27.06745738,6,"Auto Loan, Home Equity Loan, Personal Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",40.31338824,19.23975707,18.1,11,Bad,3243.652207,32.40813195,,Yes,61.79987177,97.98082141,Low_spent_Small_value_payments,214.3785189,0,-0.565,0.5094,-1.7871,-0.1247,-0.0071 -0x15361,CUS_0x32ba,August,57,208-44-5905,Lawyer,115735.76,9468.646667,5,7,13,0,,17.74034951,,5.41,1,Standard,1174.240617,25.75843954,16 Years and 6 Months,No,0,853.2799417,Low_spent_Large_value_payments,445.7827778,0,1.0537,-0.6747,2.1139,-0.9448,0.2812 -0x1536d,CUS_0x6733,August,44,287-90-6751,Developer,14914.25,,10,10,32.88954781,7,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Student Loan, Credit-Builder Loan, and Payday Loan",32.78842211,19,23.02,13,Bad,3313.55,32.64293,10 Years and 4 Months,Yes,1390.995107,40.31984571,High_spent_Small_value_payments,285.4403826,0,-0.5143,-0.7634,-0.1831,1.2197,0.1628 -0x15379,CUS_0x47c8,August,19,791-33-3539,Scientist,9134.4,,10,9,16.06745738,5,"Payday Loan, Auto Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,18.21118788,1.63,13,Bad,2098.288878,34.6559826,14 Years and 2 Months,Yes,36.93670398,55.89604691,Low_spent_Small_value_payments,233.2669612,0,-0.7984,0.3527,-0.5263,0.9787,-0.2301 -0x15385,CUS_0xba16,August,35,642-83-9938,Teacher,44288.58,,10,5,16,8,"Payday Loan, Credit-Builder Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",28.58548805,20,4.9,12,Bad,1831.88,33.54327402,10 Years and 11 Months,Yes,183.928495,,!@9#%8,164.327617,0,-1.9581,2.0303,0.1826,-0.7966,2.1865 -0x15391,CUS_0x3c41,August,80,922-59-4417,Manager,38561.33,3289.444167,0,6,10,0,,0,0,2.34,2,_,1465.73,25.85144749,27 Years and 6 Months,No,0,205.1766119,High_spent_Small_value_payments,383.7678048,0,0.3586,-0.1815,0.2929,-0.7203,-2.2148 -0x1539d,CUS_0x9d1a,August,27,059-71-5401,Writer,70968.8,,6,6,18,7,"Personal Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",13.10026539,,18.24,8,Standard,2162.07,20.10076996,16 Years and 0 Months,Yes,73767,,Low_spent_Small_value_payments,,0,-0.24,-1.3878,0.6266,0.4418,0.1169 -0x153a9,CUS_0x12a4,August,24,694-31-4893,Mechanic,78094.28,6755.856667,10,7,15,5,"Personal Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Auto Loan",37.73431453,19,6.92,12,Bad,1695.41,38.27982816,19 Years and 8 Months,Yes,270.6398053,68.31523136,High_spent_Large_value_payments,576.63063,0,0.9513,-0.6474,0.9719,-0.3599,-0.778 -0x153b5,CUS_0xc737,August,49,087-09-7867,Doctor,78676.32,6710.36,50,1,3.288361749,0,Credit-Builder Loan,0,4,9.8,7,Good,981.3096211,29.85220694,19 Years and 5 Months,No,48.57797806,,Low_spent_Medium_value_payments,210.2798201,0,0.7896,1.6835,0.2746,1.4716,0.8202 -0x153c1,CUS_0xadab,August,35,019-69-0387,_______,155148.36,12909.03,5,5,9.288361749,2,"Credit-Builder Loan, and Auto Loan",4.912803862,6,5.13,6,_,1122.62,31.00942393,33 Years and 4 Months,No,129.959109,1233.523387,High_spent_Small_value_payments,607.3579651,0,0.6471,2.2042,-0.5757,-0.0529,0.6904 -0x153cd,CUS_0x9bb9,August,33,277-64-6981,Entrepreneur,152078,12435.16667,0,3,6,0,,16.55641041,14.02573222,2.64,0,Good,348.8528294,27.73467763,26 Years and 4 Months,No,5600,937.1183032,Low_spent_Medium_value_payments,586.3983635,0,-0.8342,-2.0577,0.1452,-0.215,-0.9422 -0x153d9,CUS_0x8b11,August,23,#F%$D@*&8,Entrepreneur,12837.245,,8,4,504,3,"Personal Loan, Payday Loan, and Payday Loan",9.190581892,9,4.34,0,_,1222.28,34.6240506,28 Years and 6 Months,No,21.24332548,42.3266654,Low_spent_Medium_value_payments,300.2070508,0,-2.089,-2.1843,-0.5993,-0.1475,1.0946 -0x153e5,CUS_0x5eaf,August,29,036-32-8848,Journalist,76652.88,,7,5,3969.288362,2,"Personal Loan, Debt Consolidation Loan, and Not Specified",10.7020498,12,6.99,4,Standard,779.9943088,31.33566318,18 Years and 2 Months,Yes,145.3729402,11845.51121,Low_spent_Small_value_payments,,0,0.8667,0.0252,0.7972,1.3565,-0.8185 -0x153f1,CUS_0x6f5c,August,30,150-04-7002,Developer,41810.59,,0,5,5,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",3.336356923,5,0.62,4,Good,610.8550832,35.61928558,22 Years and 9 Months,No,70.79723649,46.93456622,High_spent_Large_value_payments,451.2462014,0,-0.0441,1.3019,0.4908,-0.5708,-0.5832 -0x153fd,CUS_0xa04d,August,40,756-12-9488,Musician,19082.67,1495.2225,7,5,30.06745738,6,"Mortgage Loan, Not Specified, Auto Loan, Student Loan, Personal Loan, and Not Specified",24.11132859,15,27.96,9,Bad,2649.196159,37.30858831,3 Years and 10 Months,Yes,66.6487034,23.16623754,High_spent_Large_value_payments,275.0955216,0,-0.1751,-0.2991,-0.7477,-0.2812,0.2199 -0x15409,CUS_0xe99,August,48,164-90-3178,Mechanic,45461.54,,6,3,5,2,"Credit-Builder Loan, and Payday Loan",12.55144106,9,11.38,6,Standard,647.24,27.26468473,16 Years and 9 Months,No,69.31834886,,High_spent_Large_value_payments,519.4868162,0,-1.901,0.5667,0.5522,-0.7012,-0.2791 -0x15415,CUS_0x733c,August,38,499-65-2055,Mechanic,32995.78,2540.648333,9,6,16,4,"Home Equity Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",,23.72974446,15.69,9,Bad,1474.685029,40.84535096,17 Years and 3 Months,NM,105.6870339,66.98808464,High_spent_Medium_value_payments,331.3897148,0,-1.4254,-0.5658,0.864,-0.7719,0.9423 -0x15421,CUS_0xc548,August,46,540-77-4341,Mechanic,36154.22,3043.851667,8,9,33.06745738,6,"Home Equity Loan, Not Specified, Payday Loan, Personal Loan, Payday Loan, and Student Loan",,21.29340037,25.31,10,_,5713.64194,36.76962437,12 Years and 11 Months,Yes,96.92283323,107.9461906,High_spent_Medium_value_payments,322.7958549,0,-0.2548,0.4095,1.9243,0.3582,-0.5118 -0x1542d,CUS_0xbf9a,August,25,447-09-0118,_______,54430.71,,10,6,22,5,"Personal Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Personal Loan",33.75329027,,25.74,9,Bad,3440.56841,30.76845865,13 Years and 8 Months,Yes,213.4434272,294.7546335,High_spent_Small_value_payments,198.9911893,0,0.0237,1.312,0.1046,0.4689,0.7072 -0x15439,CUS_0x2b1a,August,39,300-01-6032,Manager,21469.245,,0,4,10,2,"Not Specified, and Auto Loan",0,0,0.63,8,Good,909.93,27.54790784,29 Years and 3 Months,No,33.39482274,,Low_spent_Large_value_payments,254.1669271,0,-0.3109,0.8164,0.9778,0.8158,0.8979 -0x15445,CUS_0x7d43,August,39,971-56-5281,Media_Manager,128349.75,,0,5,8.288361749,2,"Home Equity Loan, and Credit-Builder Loan",0,2,8.29,3,Good,226.21,31.29655613,,No,201.2473388,554.3326667,High_spent_Large_value_payments,994.7387055,0,1.7202,0.1434,0.7474,0.4308,-1.5043 -0x15451,CUS_0x473f,August,59,977-14-8386,Architect,20875.67,1536.639167,5,3,10,4,"Debt Consolidation Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",16.60150889,16,7.49,1,Good,1266.031927,24.87545596,22 Years and 5 Months,No,38.07252493,107.9960135,Low_spent_Medium_value_payments,303.0842741,0,-0.8286,1.5174,0.3522,0.3907,-0.0301 -0x1545d,CUS_0x9aeb,August,27,418-29-5117,Entrepreneur,44620.48,3421.373333,7,4,10,1,Payday Loan,24.10435727,17,10.63,6,Standard,1280.87,29.47316087,28 Years and 11 Months,Yes,31.5378555,119.1173069,High_spent_Medium_value_payments,441.4821709,0,-0.9867,1.8642,-0.3446,-0.8984,1.0661 -0x15469,CUS_0x8f84,August,31,709-75-8028,Mechanic,35540.74,,3,5,2,2,"Not Specified, and Home Equity Loan",0,1,9.45,1,Good,1027.048811,39.57906002,,No,52.41216562,,High_spent_Large_value_payments,449.5012673,0,0.1512,1.0152,0.0368,-0.6425,-0.6483 -0x15475,CUS_0x64c,August,35,569-95-4551,Writer,63978.72,,7,7,17,4,"Payday Loan, Mortgage Loan, Personal Loan, and Not Specified",,8,10.49,585,Standard,947.31,39.05576882,31 Years and 8 Months,NM,182.441217,,Low_spent_Large_value_payments,466.9094786,0,-2.2768,-0.172,0.9326,0.6186,-0.9816 -0x15481,CUS_0x70ac,August,23,285-03-4644,Writer,50814.28,,3,7,1.288361749,0,,9.293544316,10,4.06,3,Good,556.524977,33.20564976,21 Years and 8 Months,No,0,481.3991703,High_spent_Large_value_payments,636.3092257,0,1.7064,-0.2904,0.0685,-0.1075,0.2052 -0x1548d,CUS_0x2993,August,18,572-75-0922,Accountant,30660.86,,10,7,33.06745738,6,"Debt Consolidation Loan, Payday Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",41.52839763,25,1.52,12,Bad,4957.220954,23.16060259,4 Years and 6 Months,Yes,139.2392727,46.17953144,High_spent_Large_value_payments,312.6680746,0,0.5901,2.3314,-0.6725,0.4344,1.1961 -0x15499,CUS_0x9305,August,51,122-99-9715,Entrepreneur,64871.14,,5,5,5,2,"Student Loan, and Credit-Builder Loan",,,9.68,0,Good,34.3,33.8151144,23 Years and 11 Months,No,73.22635345,586.9081588,!@9#%8,163.258321,0,0.3337,-1.0568,-0.0008,0.1077,-0.7966 -0x154a5,CUS_0xa2b,August,31,427-87-7635,Manager,89256.75,7379.0625,8,5,15,100,,9.622054333,9,1.92,1,Standard,49.03,29.71406884,21 Years and 4 Months,Yes,0,259.6624434,Low_spent_Medium_value_payments,758.2438066,0,0.1586,0.1017,-0.6217,0.3926,0.9536 -0x154b1,CUS_0xa89b,August,20,701-64-5974,Entrepreneur,43913.46,3684.455,10,10,22.95700519,6,"Student Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",31.15140973,16,17.5,9,Bad,5037.490954,27.41528328,4 Years and 9 Months,Yes,1452.019854,93.14884951,Low_spent_Large_value_payments,372.2264274,0,-2.2737,0.9718,-0.1923,-0.3891,2.1817 -0x154bd,CUS_0x5bec,August,25,473-70-9348,Writer,17164.13,1455.344167,8,7,30,4,"Student Loan, Credit-Builder Loan, Personal Loan, and Student Loan",31.43896661,14.08325311,23.44,12,Standard,2512.652946,34.59852045,11 Years and 2 Months,Yes,48.78797271,62.07954129,Low_spent_Medium_value_payments,314.6669027,0,-1.8,-0.2304,-1.5858,0.3817,0.9922 -0x154c9,CUS_0x2f22,August,24,151-96-9989,Entrepreneur,170502.52,,1,5,9,2,"Payday Loan, and Not Specified",0,1,4.84,3,Good,334.62,26.8314484,25 Years and 2 Months,No,190.4814722,1109.992969,Low_spent_Medium_value_payments,428.4798921,0,0.0382,-0.4581,0.4625,1.9157,-0.3527 -0x154d5,CUS_0x3f6,August,56,766-29-6741,Entrepreneur,60244.72,5197.393333,6,6,2,3,"Payday Loan, Mortgage Loan, and Home Equity Loan",26.42422028,18,6.53,3,Good,989.42,33.2116696,,No,105.6624787,471.0746832,!@9#%8,233.0021714,0,0.3477,-0.3642,-0.6778,-0.4778,-0.0119 -0x154e1,CUS_0x87a4,August,20,011-46-1777,Accountant,14231.42,,8,4,5,0,,8.228611375,7,10.33,6,Standard,848.59,29.33926863,27 Years and 4 Months,No,0,109.3718459,Low_spent_Medium_value_payments,302.5233208,0,0.5742,2.3376,-0.0012,-0.1899,-0.4223 -0x154ed,CUS_0x6fa,August,47,039-37-1758,Media_Manager,16520.865,1492.73875,4,1,8,2,"Not Specified, and Debt Consolidation Loan",,6,1.53,8,Good,731.9572394,31.21153568,16 Years and 9 Months,No,24.13137918,65.50951297,High_spent_Small_value_payments,328.1757664,0,0.4943,0.1741,0.3724,0.3906,0.2839 -0x154f9,CUS_0x535d,August,30,118-92-2759,Developer,20127.72,,8,8,23.88954781,6,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",,22,24.32,8,Bad,2697.61,31.95322195,5 Years and 11 Months,Yes,1414.392863,10000,Low_spent_Small_value_payments,212.5437403,0,-0.3859,-1.0471,-0.6465,-0.5381,1.3789 -0x15505,CUS_0x9ff5,August,18,913-33-0020,Media_Manager,48259.38,4022.615,8,5,17,6,"Auto Loan, Student Loan, Auto Loan, Mortgage Loan, Home Equity Loan, and Not Specified",14.8937351,9,17.15,9,_,1819.26,37.2185671,9 Years and 3 Months,Yes,162.9793997,391.1759035,Low_spent_Small_value_payments,138.1061967,0,-0.1867,0.3496,-1.2257,-0.5945,-2.1451 -0x15511,CUS_0xf2e,August,31,286-44-9634,Architect,28866.94,2682.578333,10,5,29,9,"Home Equity Loan, Auto Loan, Not Specified, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",,19,2.12,9,_,1587.62,26.09666237,10 Years and 3 Months,Yes,138.3255344,62.29557698,High_spent_Small_value_payments,327.636722,0,1.2579,-1.8206,-0.8162,0.0331,-0.0388 -0x1551d,CUS_0x5b30,August,27,631-30-3731,Mechanic,15475.91,908.4253371,6,7,13,7,"Mortgage Loan, Not Specified, Student Loan, Not Specified, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",13.87726643,13,7.04,4,Standard,1948.99,36.56822883,14 Years and 5 Months,Yes,164.9894124,20.05447262,High_spent_Small_value_payments,259.5558612,0,0.6086,1.3863,0.5739,0.8564,-1.8211 -0x15529,CUS_0xa0c,August,18,767-22-6800,Doctor,16897.53,1165.1275,5,4,25,4,"Auto Loan, Home Equity Loan, Not Specified, and Auto Loan",,21,8.85,16,Standard,2322.35,32.8312805,13 Years and 10 Months,Yes,50.2433452,,High_spent_Medium_value_payments,297.2907379,0,0.0424,0.1721,-0.2537,-0.1397,-1.2351 -0x15535,CUS_0x51d8,August,32,383-53-7720,Journalist,77047.4,6711.616667,2,4,11,1,Debt Consolidation Loan,0.140473886,1,3.95,1,_,952.69,31.68001206,27 Years and 5 Months,No,50.1872956,314.151342,Low_spent_Small_value_payments,596.823029,0,0.8979,-1.0709,1.0384,0.5112,0.1252 -0x15541,CUS_0x7f46,August,24,678-01-6621,Media_Manager,178113.84,14784.82,2,4,10,2,"Home Equity Loan, and Payday Loan",8.314732794,8,2.55,0,Good,249.8806741,41.36112709,31 Years and 3 Months,No,294.2037426,,Low_spent_Medium_value_payments,742.33018,0,-1.119,-0.3013,-0.3592,-1.671,0.4351 -0x1554d,CUS_0x3134,August,49,100-88-4168,Scientist,101855.88,8446.99,3,3,8,0,,0,1,8.23,1,_,1371.87,27.00018527,,No,0,757.3539869,Low_spent_Small_value_payments,377.3450131,0,0.656,0.256,-0.7843,0.5271,-0.2733 -0x15559,CUS_0xa123,August,43,514-14-5445,Media_Manager,24688.88,2256.406667,8,4,9,1,Personal Loan,23.76541593,17,11.74,7,Standard,1014.83,27.71682994,23 Years and 4 Months,No,10.86931686,208.4899291,Low_spent_Large_value_payments,276.2814207,0,-1.3274,-0.3555,1.1782,0.6456,2.7679 -0x15565,CUS_0xb66d,August,18,565-85-5504,Writer,29985.2,,5,8,26,3,"Home Equity Loan, Student Loan, and Student Loan",,20,15.29,14,Standard,1793.18,38.40955203,19 Years and 3 Months,Yes,65.26315554,10000,Low_spent_Small_value_payments,366.4347924,0,-0.0269,1.1473,-0.9351,-0.9381,-0.8898 -0x15571,CUS_0x2547,August,35,716-36-6138,Lawyer,28070.62,,3,3,12,4,"Auto Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",19.47316615,17,8.55,7,Standard,1483.05,29.52290376,9 Years and 0 Months,Yes,63.95505298,152.1735663,High_spent_Small_value_payments,287.5932141,0,-0.777,-0.3963,0.3502,-0.2771,-0.2797 -0x1557d,CUS_0x3f9,August,27,872-42-3881,Scientist,18060.64,,8,7,23,3,"Debt Consolidation Loan, Personal Loan, and Auto Loan",,30.20443424,3.13,7,Bad,1545.892502,25.58356199,,Yes,30.22322907,102.7062559,Low_spent_Small_value_payments,285.0758483,0,-0.713,0.7441,-0.9513,-0.8759,0.6592 -0x15589,CUS_0x4802,August,45,509-17-8630,Scientist,32394.77,,6,4,8,4,"Student Loan, Credit-Builder Loan, Personal Loan, and Payday Loan",29.47843692,20,7.14,6,Standard,475.41,29.039628,18 Years and 4 Months,No,86.04239283,118.7810592,High_spent_Small_value_payments,316.6329647,0,-1.0615,-0.3402,-0.7742,0.9079,2.4802 -0x15595,CUS_0x6817,August,31,951-66-5100,Scientist,145056.64,11965.05333,4,5,10.28836175,6,"Mortgage Loan, Personal Loan, Not Specified, Personal Loan, Auto Loan, and Debt Consolidation Loan",16.37859832,14,15.8,9,_,529.67,35.47135502,6 Years and 0 Months,Yes,474.9304504,,!@9#%8,752.8626276,0,0.5359,0.1041,-0.0955,-1.1336,-1.1755 -0x155a1,CUS_0x29d8,August,26,#F%$D@*&8,Teacher,33271.74,2537.645,8,10,24.06745738,4,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Not Specified",,18.11235109,7.47,6,_,1954.822956,25.82680317,10 Years and 2 Months,Yes,94.06150204,281.1217061,Low_spent_Small_value_payments,141.8610039,0,-0.0359,0.78,0.1408,0.4745,-1.659 -0x155ad,CUS_0x5877,August,56,861-03-1735,Journalist,79710.09,6375.5075,3,4,16,3,"Student Loan, Not Specified, and Student Loan",19.47781902,13,4.85,4,Standard,109.97,26.98743081,33 Years and 2 Months,No,165.054542,433.7901551,Low_spent_Large_value_payments,308.706053,0,-0.3049,0.7067,0.3353,-0.2047,0.3332 -0x155b9,CUS_0x1ce6,August,34,006-25-8423,Journalist,65635.12,,7,7,20,5,"Debt Consolidation Loan, Student Loan, Not Specified, Payday Loan, and Credit-Builder Loan",,18.50116313,2.21,8,Bad,1353.54941,25.76426292,12 Years and 9 Months,Yes,180.1874059,71.59888325,High_spent_Large_value_payments,564.4730442,0,-1.8665,-0.8337,-1.1948,-0.3338,0.663 -0x155c5,CUS_0x8945,August,29,684-28-0826,_______,8453.49,,9,7,18,5,"Auto Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Payday Loan",,20.2869794,1.52,10,_,2627.489302,28.04503414,15 Years and 11 Months,Yes,29.23641589,31.48365847,Low_spent_Medium_value_payments,317.0256756,0,2.1001,0.2585,-0.8513,0.4348,-0.4942 -0x155d1,CUS_0x4c1c,August,42,654-14-2387,Media_Manager,106602.63,8924.5525,7,5,2583,2,"Credit-Builder Loan, and Personal Loan",27.83949236,19,11.33,5,Standard,962.51,44.59099159,30 Years and 6 Months,No,125.9142627,10000,High_spent_Large_value_payments,885.5243827,0,0.6453,0.0162,1.745,-0.5577,-0.3021 -0x155dd,CUS_0x8171,August,38,564-93-4153,Teacher,56227.47,4558.6225,8,8,22,5,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,23,31.58,14,Bad,2557.06,30.91660619,11 Years and 11 Months,Yes,196.6202025,,Low_spent_Medium_value_payments,115.0462471,0,-0.3582,-0.2924,-1.1479,-0.8909,-0.4531 -0x155e9,CUS_0xa336,August,44,849-68-8970,Musician,55735.62,4939.635,7,4,13.28836175,2,"Student Loan, Payday Loan, and Personal Loan",13.57474163,,5.29,1,_,48.86,38.42468413,25 Years and 4 Months,No,122.9193557,491.0562257,High_spent_Large_value_payments,539.9253797,0,-0.3441,0.3631,-0.1609,-1.1563,1.0474 -0x155f5,CUS_0x3906,August,24,835-52-7572,Writer,57829.74,4689.145,4,3,12,2,"Auto Loan, and Home Equity Loan",17.06681441,,12.77,9,Standard,170.06,39.79548568,,NM,88.88510991,106.9457435,High_spent_Medium_value_payments,523.0836466,0,0.1633,0.4697,1.1542,1.0492,0.4448 -0x15601,CUS_0x6894,August,39,043-33-2748,Media_Manager,14388.68,,6,8,25.88954781,100,"Not Specified, Home Equity Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Auto Loan",,24,15.78,17,Bad,3394.390256,26.29461172,1 Years and 4 Months,Yes,1410.505448,27.28174653,High_spent_Large_value_payments,211.9469872,0,1.2369,0.3201,0.2411,-0.2931,-0.7374 -0x1560d,CUS_0x8fa8,August,51,774-87-0981,Media_Manager,40639.06,3572.588333,1,1,3,0,,13.06582936,,3.5,4,Good,853.92,27.17660105,23 Years and 9 Months,No,0,125.2929787,Low_spent_Small_value_payments,521.9658546,0,-1.3176,-0.7494,0.0394,-0.4008,-1.1533 -0x15619,CUS_0x21f4,August,53,587-32-3592,Doctor,114597.04,,7,6,4,4,"Auto Loan, Not Specified, Payday Loan, and Student Loan",,9.520291868,10.54,2,Good,1024.373254,26.4363128,31 Years and 9 Months,No,225.9237623,327.6196683,High_spent_Medium_value_payments,633.1319027,0,-0.7174,0.9335,-0.5409,0.0946,-0.2419 -0x15625,CUS_0x2c13,August,27,071-83-5848,Media_Manager,15591.37,,5,7,26,2,"Not Specified, and Credit-Builder Loan",18.94505763,17.91637056,18.5,13,Standard,1442.948438,22.7389485,6 Years and 9 Months,Yes,16.35649405,131.828269,Low_spent_Small_value_payments,276.7433203,0,-0.6099,-1.1457,-0.7973,0.4254,-0.6248 -0x15631,CUS_0xbb6a,August,38,824-81-1271,Mechanic,21114.95,,4,7,12,1,Personal Loan,10.08694634,9.283207688,3.54,8,_,974.2698902,25.35859549,,No,9.60864464,78.77893315,Low_spent_Small_value_payments,349.4703389,0,0.6164,-1.0636,0.2776,0.5621,-0.1885 -0x1563d,CUS_0x97d,August,35,004-06-1187,Accountant,8940.905,985.5569044,8,9,19.95700519,6,"Home Equity Loan, Home Equity Loan, Student Loan, Not Specified, Not Specified, and Credit-Builder Loan",,29.25816262,16.84,9,Bad,2993.880288,27.31024722,4 Years and 8 Months,Yes,1363.581093,79.31821777,Low_spent_Small_value_payments,229.5763738,0,-0.3339,-1.6018,-1.1602,-0.1588,-1.123 -0x15649,CUS_0x68ef,August,34,889-56-0995,Architect,45012.72,,4,3,9,4,"Student Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",23.60687117,19,17.9,5,Standard,1661.328996,23.51826783,20 Years and 8 Months,Yes,351.5634875,,High_spent_Large_value_payments,461.5693811,0,-2.2563,-0.9473,0.991,-0.8788,0.4248 -0x15655,CUS_0x5737,August,34,915-29-8924,Architect,60195.36,4912.28,0,5,3,2,"Student Loan, and Payday Loan",3.721705742,3,7.69,3,Good,376.47,31.60335783,30 Years and 3 Months,No,52.93545646,416.3955634,Low_spent_Large_value_payments,291.8969802,0,-0.3188,-0.6367,-0.7444,0.8468,0.5659 -0x15661,CUS_0x6bc0,August,29,191-18-9591,Accountant,10172.3,,10,8,33.88954781,100,"Debt Consolidation Loan, Payday Loan, Payday Loan, Not Specified, Personal Loan, and Home Equity Loan",20.92216739,16,7.39,13,Standard,2054.39,34.76991799,9 Years and 10 Months,Yes,1359.972691,114.5492984,!@9#%8,225.8170958,0,0.4598,-0.1857,-0.2689,-0.7199,0.9682 -0x1566d,CUS_0x6b3a,August,38,578-99-4058,Doctor,31680.74,,6,6,26,3,"Auto Loan, Home Equity Loan, and Debt Consolidation Loan",,18,0.56,12,_,1280.16,38.42020922,8 Years and 2 Months,Yes,72.43564255,24.59274876,High_spent_Large_value_payments,409.9777754,0,1.2054,-0.3709,0.0366,-0.4962,-1.184 -0x15679,CUS_0x68cf,August,28,008-60-9208,Developer,9389.1,,8,9,34.88954781,9,"Payday Loan, Student Loan, Mortgage Loan, Student Loan, Student Loan, Auto Loan, Personal Loan, Payday Loan, and Mortgage Loan",34.04174933,24.82765085,20.29,11,Bad,3143.316879,35.47447513,11 Years and 4 Months,Yes,1387.665381,52.81070191,Low_spent_Large_value_payments,230.2363361,0,0.3055,-0.572,-0.4946,0.4146,-0.4841 -0x15685,CUS_0xb7f1,August,38,#F%$D@*&8,Lawyer,32200.64,,9,5,18.06745738,7,"Personal Loan, Payday Loan, Student Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",32.21940548,18.63555863,0.62,10,_,2539.293498,28.35522984,8 Years and 6 Months,Yes,140.793865,158.9706896,High_spent_Small_value_payments,188.7538241,0,-1.0831,1.981,0.2433,-1.3758,-1.4864 -0x15691,CUS_0xab01,August,33,775-12-8331,Writer,62574.16,5004.513333,10,8,16.88954781,785,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Auto Loan, Auto Loan, and Personal Loan",27.54503085,18,18.77,12,Bad,3697.41,34.94762927,12 Years and 10 Months,NM,1564.838684,235.2933201,Low_spent_Small_value_payments,295.9892475,0,1.2023,-0.7477,-0.0705,-1.3961,-0.9714 -0x1569d,CUS_0x13b2,August,27,404-97-1261,Musician,21440.93,,5,3,9,3,"Payday Loan, Personal Loan, and Auto Loan",14.64218053,9,6.15,3,Standard,969.29,28.29631643,33 Years and 2 Months,No,35.27302502,,Low_spent_Medium_value_payments,348.395657,0,0.8359,0.8877,-0.1273,-0.2878,-0.176 -0x156a9,CUS_0x93f,August,19,001-68-2340,Writer,7371.05,,3,6,29.06745738,5,"Home Equity Loan, Auto Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",23.66438535,16,14.63,11,Standard,1956.350954,37.64167377,16 Years and 10 Months,Yes,28.24828587,37.12949833,Low_spent_Medium_value_payments,228.2273445,0,-0.5584,1.2771,-0.9634,-0.1408,0.8797 -0x156b5,CUS_0x36f2,August,40,661-06-7195,Scientist,15366.215,,4,4,15,1,Auto Loan,24.37503835,16,8.58,0,Standard,189.59,27.27031337,29 Years and 8 Months,No,9.091012304,115.307119,Low_spent_Small_value_payments,265.2536604,0,0.1884,-0.7226,0.4671,1.2681,-0.4197 -0x156c1,CUS_0x301d,August,19,#F%$D@*&8,Writer,79829.6,,8,7,26,7,"Auto Loan, Student Loan, Student Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",19.61574002,15,17.63,6,Standard,2200.1,25.21943831,19 Years and 6 Months,Yes,448.512862,802.1840051,Low_spent_Small_value_payments,,0,-1.2683,0.5728,-0.0012,1.4659,0.1721 -0x156cd,CUS_0x861a,August,18,973-17-0279,Scientist,47828.67,4107.7225,8,915,7,6,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Home Equity Loan",25.48601246,16,16.73,7,Standard,1379.29,34.47102584,20 Years and 3 Months,Yes,230.7983297,132.9459247,High_spent_Medium_value_payments,297.0279955,0,-0.8832,0.8188,-1.0302,-0.6298,0.3463 -0x156d9,CUS_0x1de5,August,23,269-18-2158,Accountant,64122.84,5053.57,7,6,29,4,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",40.19825452,27.89218809,11.48,12,Bad,1512.737322,38.37767641,9 Years and 6 Months,Yes,147.0690963,354.2371774,Low_spent_Large_value_payments,274.0507263,0,2.1637,0.3332,1.3978,1.5291,-0.0453 -0x156e5,CUS_0x7641,August,24,329-66-7043,Developer,47504.49,,8,7,29.06745738,6,"Not Specified, Auto Loan, Not Specified, Mortgage Loan, Auto Loan, and Debt Consolidation Loan",28.5823415,15,22.55,8,_,2738.640954,38.85433417,11 Years and 9 Months,Yes,146.0481603,105.1312855,High_spent_Medium_value_payments,348.1710163,0,-0.5119,-0.4409,-0.0268,1.3944,-0.5332 -0x156f1,CUS_0x3d78,August,43,290-53-1322,Doctor,10389.32,,3,6,24,6,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, and Personal Loan",23.30451993,21.34534148,16.36,8,Standard,2147.293539,35.86416997,14 Years and 2 Months,Yes,95.41140512,10000,Low_spent_Medium_value_payments,262.9735228,0,-0.8299,1.4708,0.7952,0.974,-0.6896 -0x156fd,CUS_0x7765,August,23,566-24-8004,Entrepreneur,15777.945,,0,4,12,1,Debt Consolidation Loan,,12,6.89,4,Good,885.217457,39.76059766,32 Years and 0 Months,NM,6.637556692,48.69901661,High_spent_Small_value_payments,340.4331322,0,0.2949,-0.8264,0.4728,1.4318,1.4781 -0x15709,CUS_0x47d5,August,40,430-53-9095,Developer,10079.865,,9,6,26,9,"Credit-Builder Loan, Student Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Student Loan, and Personal Loan",,28.02813825,20.95,11,Bad,3970.580635,29.61070408,,Yes,44.86147622,39.71727526,!@9#%8,253.1201235,0,1.5531,0.0801,-0.2076,1.0549,-1.1635 -0x15715,CUS_0x1fcd,August,23,372-32-6203,Architect,66519.63,5759.3025,1355,3,8,2,"Student Loan, and Auto Loan",18.44469092,13,1.12,2407,Standard,64.27,25.97563531,17 Years and 11 Months,No,99.19363074,97.57862855,High_spent_Large_value_payments,619.1579907,0,0.7678,2.0767,0.3263,1.0151,0.3091 -0x15721,CUS_0x466a,August,51,363-86-6263,Manager,36868.13,,6,4,3,0,,32.19412387,20,3.88,4,Good,1360.71,35.35043409,26 Years and 3 Months,No,0,209.0179326,Low_spent_Medium_value_payments,377.116484,0,-0.5775,-0.3832,0.0355,-0.7149,0.0268 -0x1572d,CUS_0x8853,August,34,926-84-8152,Journalist,43549.86,,7,5,25.06745738,9,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Personal Loan",,23,21.52,6,Bad,4863.000954,29.18851577,12 Years and 8 Months,Yes,193.1143792,33.0908676,!@9#%8,354.2899652,0,-0.7512,-0.9683,-1.3591,-0.4126,0.3843 -0x15739,CUS_0x9c79,August,19,666-69-1793,Scientist,81165.56,6867.796667,4,5,3,3,"Student Loan, Mortgage Loan, and Not Specified",2.09394482,4,9.99,4,Good,1137.611012,26.4807721,24 Years and 10 Months,NM,151.7464949,102.3467849,!@9#%8,683.7898364,0,-1.0664,-0.2393,0.3998,-1.721,-0.7662 -0x15745,CUS_0x21a7,August,28,240-74-6989,Musician,126732.6,10443.05,7,5,15.28836175,4,"Student Loan, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",,9,11.6,,Standard,18.99,32.23663028,24 Years and 6 Months,No,294.9937276,584.8001426,High_spent_Large_value_payments,824.4485908,0,-0.9011,-0.4514,0.6896,0.2045,-0.8825 -0x15751,CUS_0x7768,August,42,971-95-9546,Journalist,104946.48,8701.54,3,3,10.28836175,4,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",1.1734641,5,7.54,3,Good,1218.121382,36.84767645,17 Years and 5 Months,NM,12532,1323.408972,Low_spent_Medium_value_payments,,0,-0.5601,-1.962,1.9733,-0.3265,-0.4242 -0x1575d,CUS_0x4ee7,August,37,999-01-9823,Engineer,128502.39,,1,4,11,0,,1.422122153,5,8.53,8,Good,1269.774748,39.29394569,21 Years and 10 Months,No,0,806.9975815,High_spent_Small_value_payments,602.8450352,0,1.1989,0.3516,-0.9402,-0.8276,0.1067 -0x15769,CUS_0x872b,August,26,199-14-9559,Mechanic,8898.495,,8,10,34.95700519,7,"Auto Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",25.13133269,9.46717067,16.57,10,Standard,3189.418257,40.50667495,6 Years and 10 Months,Yes,1360.552803,27.69119932,Low_spent_Medium_value_payments,244.5597539,0,-0.4421,0.965,1.7787,0.4744,-0.0048 -0x15775,CUS_0xbb2a,August,23,700-78-2708,Writer,62458.77,,8,6,20,4,"Credit-Builder Loan, Personal Loan, Personal Loan, and Personal Loan",13.066635,12,16.02,7,Standard,1055.488527,24.58132908,20 Years and 0 Months,Yes,199.0462556,443.5614133,Low_spent_Medium_value_payments,222.5515134,0,-0.5402,-1.2313,0.2326,-1.5162,-1.2286 -0x15781,CUS_0x8a30,August,51,972-56-1708,Engineer,34188.05,,5,1275,16.28836175,0,,21.67353065,18,7.71,8,Standard,31.79554526,33.6698636,29 Years and 3 Months,Yes,0,573.5739831,Low_spent_Small_value_payments,435.1455567,0,0.178,-0.1441,0.8453,0.1696,0.3915 -0x1578d,CUS_0x15f1,August,33,097-15-4981,_______,51568.11,,6,10,26,5,"Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",,14,,11,_,2620.12,36.11804355,10 Years and 2 Months,Yes,172.0831023,94.30047932,High_spent_Large_value_payments,375.2506683,0,1.1753,0.7076,-0.8609,0.2742,0.5661 -0x15799,CUS_0x70a3,August,22,291-89-8959,Accountant,14920.97,,6,10,17.06745738,2,"Auto Loan, and Student Loan",,18.63385533,13.48,12,Standard,1645.543403,38.49729087,13 Years and 6 Months,Yes,19.90951246,137.1716121,Low_spent_Medium_value_payments,238.6400042,0,-0.3904,-0.1657,-0.6558,2.1057,-2.5242 -0x157a5,CUS_0x4287,August,25,271-62-6210,Scientist,21595.875,2061.65625,5,7,7,1,Auto Loan,0,2.291684138,10.46,4,Good,728.8563709,33.73562185,21 Years and 11 Months,NM,13.08293848,172.0780187,Low_spent_Large_value_payments,291.0046678,0,0.7303,1.0198,0.1973,-1.8283,-1.592 -0x157b1,CUS_0xb887,August,38,880-09-9170,Teacher,26029.41,,3,7,12,1127,"Student Loan, and Credit-Builder Loan",18.18442538,15,10.88,1,_,364.9901683,33.65810145,25 Years and 3 Months,No,33.70115162,77.32642902,High_spent_Medium_value_payments,342.968413,0,0.5987,0.3787,0.0236,-0.1109,1.2216 -0x157bd,CUS_0x888e,August,38,664-83-0007,Accountant,107808.63,9147.0525,4,7,19,4,"Mortgage Loan, Student Loan, Debt Consolidation Loan, and Not Specified",22.05724568,20,5.59,6,Standard,431.7791543,23.64550363,31 Years and 0 Months,No,347.4841037,1009.809921,Low_spent_Medium_value_payments,,0,-1.5484,-1.1608,-1.1634,0.2542,1.0795 -0x157c9,CUS_0x81de,August,41,#F%$D@*&8,_______,86418.72,7085.56,1,3,5.288361749,2,"Not Specified, Student Loan, and Student Loan",12.13355024,13,1.25,0,Good,451.6036815,25.39363849,28 Years and 11 Months,No,187.87942,562.3069254,High_spent_Large_value_payments,637.6333143,0,-1.3743,-1.8386,0.1322,-0.998,-0.425 -0x157d5,CUS_0xa7cd,August,48,753-72-5171,Media_Manager,18290.89,1228.240833,8,4,14,1,Payday Loan,27.84398375,18.25266705,0.16,3,_,592.9535747,22.21678842,31 Years and 3 Months,Yes,12.79615829,,Low_spent_Large_value_payments,323.4494391,0,0.9512,0.1171,2.0428,-0.8708,1.8327 -0x157e1,CUS_0x5db2,August,22,929-83-1124,Musician,9400.43,847.3691667,7,8,22,5,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Auto Loan",,17,28.9,16,Bad,4505.63,36.605756,7 Years and 4 Months,Yes,30.33870136,80.14945156,Low_spent_Medium_value_payments,254.2487637,0,0.5725,0.7693,1.1128,-0.566,0.3551 -0x157ed,CUS_0xb99e,August,32,496-36-8312,Scientist,9900,,7,9,28.06745738,2,"Home Equity Loan, and Personal Loan",23.76613996,,17.73,13,Standard,2237.009311,33.17535261,19 Years and 3 Months,Yes,10.72940836,63.93343351,Low_spent_Small_value_payments,281.2168702,0,-0.7286,0.5924,0.6785,-0.2051,-0.2483 -0x157f9,CUS_0x8697,August,23,427-61-8430,Teacher,17916.46,,10,9,18.88954781,7,"Student Loan, Personal Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",38.80603128,19,17.21,12,Bad,4751.52,35.98056148,11 Years and 3 Months,Yes,1468.369194,,Low_spent_Small_value_payments,189.9591475,0,-1.0877,1.0051,-1.8015,-0.2032,-0.3722 -0x15805,CUS_0x2ab3,August,18,928-63-7229,Musician,35891.33,,5,4,9,3,"Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",,13,,5,Standard,638.27,34.55822549,8 Years and 5 Months,Yes,240.3940367,264.5540052,Low_spent_Medium_value_payments,268.6198245,0,0.4065,-3.1449,-0.3724,0.1216,-0.2876 -0x15811,CUS_0x5247,August,19,984-58-2416,Doctor,38197.25,,1,6,9,2,"Student Loan, and Not Specified",5.052397458,7,5.28,6,Good,822.881367,24.32904611,23 Years and 11 Months,No,44.12466476,,Low_spent_Small_value_payments,215.5473111,0,-0.2716,0.2154,-0.2453,-0.1892,-0.128 -0x1581d,CUS_0x5da3,August,30,333-52-1932,Engineer,17271.525,1269.29375,8,3,5,1,Debt Consolidation Loan,21.20064702,18,4.74,0,Good,825.102546,32.13887349,32 Years and 9 Months,No,13.31441945,172.4510923,Low_spent_Small_value_payments,250.8097284,0,1.5029,0.2818,-1.1724,-1.0097,-0.437 -0x15829,CUS_0x323f,August,25,805-19-6318,Mechanic,15620.91,,4,6,4,0,,0,1.174203909,11.17,5,Good,912.7216101,28.8003437,15 Years and 10 Months,No,0,97.47309211,Low_spent_Small_value_payments,294.3011579,0,-0.7165,0.0346,-1.1305,-1.3737,0.501 -0x15835,CUS_0x65fc,August,38,238-34-4780,Lawyer,133180.71,,1,6,4,0,,10.80357716,10,4.2,1,_,676.45,34.50479839,32 Years and 3 Months,No,0,352.5109016,High_spent_Small_value_payments,1018.928348,0,-0.2502,-0.4888,-0.5235,0.0074,-1.7097 -0x15841,CUS_0x3139,August,18,490-80-5398,Accountant,19369.96,1791.163333,6,5,18,4,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",26.87454836,21,17.39,9,Standard,1266.31,30.48539036,,Yes,57.41221246,222.341625,Low_spent_Small_value_payments,189.3624959,0,0.2882,0.1252,1.7323,0.0528,1.2682 -0x1584d,CUS_0x5ed2,August,26,558-96-0647,Engineer,9968.5,,8,6,32.06745738,6,"Personal Loan, Not Specified, Home Equity Loan, Not Specified, Not Specified, and Payday Loan",41.33975439,28.20249096,1.38,6,Bad,2161.122364,30.2751896,20 Years and 2 Months,Yes,34.81132415,10000,Low_spent_Small_value_payments,274.6838514,0,-1.9301,0.8958,-1.0337,-0.6194,-0.1103 -0x15859,CUS_0x7a4d,August,49,#F%$D@*&8,Writer,105295.08,,2,3,6.288361749,4,"Personal Loan, Auto Loan, Not Specified, and Not Specified",,0,10.02,6,Good,353.1953661,26.95204247,27 Years and 11 Months,No,178.3674403,716.4606507,Low_spent_Large_value_payments,680.56837,0,0.9969,0.4465,0.8069,-0.9493,0.1392 -0x15865,CUS_0xbf66,August,44,924-02-1044,Writer,68611.44,5790.62,3,3,1688,2,"Not Specified, and Not Specified",1.741481058,1.204428534,6.87,2,Good,1267.83515,31.80401228,19 Years and 5 Months,No,89.44055935,153.8357947,Low_spent_Medium_value_payments,615.7856459,0,-0.9443,-1.6315,0.0116,-0.619,-0.5995 -0x15871,CUS_0x5f5d,August,27,618-70-8009,Writer,30738.51,2438.5425,3,7,3,1,Student Loan,16.85819835,13,-3.58,7,_,645.49,26.82783342,31 Years and 10 Months,No,22.81589378,70.84256142,High_spent_Medium_value_payments,400.1957948,0,0.4144,-0.2298,1.2726,1.2983,0.0918 -0x1587d,CUS_0x1dbb,August,28,000-89-8752,_______,7187.17,,8,8,22,5,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Student Loan, and Not Specified",45.81497432,29.53053891,15.44,9,Bad,1565.352462,37.87554864,8 Years and 3 Months,Yes,26.82521296,49.21408453,Low_spent_Medium_value_payments,252.8537858,0,-1.1952,0.2804,1.0276,0.8061,-0.2965 -0x15889,CUS_0x83ef,August,18,332-20-3492,Teacher,76079.16,6462.93,0,5,3,4,"Student Loan, Auto Loan, Not Specified, and Student Loan",0,0,10.18,4,Good,677.8332703,26.56903611,25 Years and 3 Months,No,136.9389238,11610.00725,!@9#%8,452.9892062,0,-0.353,-0.0842,0.382,0.02,-0.4125 -0x15895,CUS_0x84fe,August,38,579-44-7984,Media_Manager,30111.3,,7,5,15,9,"Auto Loan, Mortgage Loan, Personal Loan, Not Specified, Mortgage Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Student Loan",42.04560533,22.61398413,6.31,14,Bad,3481.703401,32.6631569,4 Years and 6 Months,Yes,140.8366259,,Low_spent_Small_value_payments,196.1504257,0,-0.2225,0.5851,1.2367,-1.9633,0.3231 -0x158a1,CUS_0xc00f,August,31,792-34-9499,Lawyer,57617.88,4398.371681,6,9,26,9,"Personal Loan, Auto Loan, Not Specified, Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, and Student Loan",44.30460396,25,2.49,6,Bad,1747.08,26.13205619,6 Years and 10 Months,Yes,635.088082,490.8963654,Low_spent_Small_value_payments,,0,1.1717,-0.2627,-2.6725,0.5963,-1.9005 -0x158ad,CUS_0x4946,August,42,121-29-4094,Architect,20346.15,1901.5125,10,6,25.06745738,8,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",,20.39444396,5.19,14,Bad,1918.716664,28.30877154,,Yes,60525,141.5909773,Low_spent_Small_value_payments,239.5460868,0,-0.7812,0.0984,-0.4327,-0.4818,-1.7129 -0x158b9,CUS_0xc88,August,45,354-83-1291,Doctor,29378.06,2312.171667,7,6,17,4,"Credit-Builder Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",11.15810936,8,8.81,6,_,1078.84,36.82686696,18 Years and 5 Months,Yes,93.01729318,16.16564755,High_spent_Large_value_payments,362.0342259,0,-0.3051,0.2438,-0.7888,0.9285,-0.0068 -0x158c5,CUS_0x9486,August,45,335-91-9347,Musician,15659.78,1132.981667,9,9,21,8,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, and Personal Loan",40.40408145,22.7920271,3.9,11,Bad,2566.238044,26.40343525,14 Years and 3 Months,Yes,66.23584191,85.80506135,Low_spent_Small_value_payments,251.2572634,0,0.2078,-0.1381,-0.5198,-0.396,-0.5062 -0x158d1,CUS_0x4c9b,August,38,852-86-5759,Lawyer,27947.42,,7,5,15,2,"Auto Loan, and Not Specified",25.92001025,18,11.04,5,Standard,1472.05,28.93790848,32 Years and 8 Months,Yes,31.3353616,57.56156678,High_spent_Medium_value_payments,409.9982383,0,-1.9102,0.0748,-0.1465,-0.9362,0.1017 -0x158dd,CUS_0x9b27,August,50,479-44-2633,Developer,12382.94,,4,3,10,3,"Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",,14,18.06,7,Standard,407.8,37.57168491,28 Years and 11 Months,Yes,20.80195026,102.0887147,Low_spent_Small_value_payments,273.3005017,0,-1.5011,1.1961,1.1232,1.7592,0.7795 -0x158e9,CUS_0x7b47,August,28,874-02-7975,Journalist,98638.16,,6,1215,14,5,"Payday Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, and Not Specified",19.41127764,14,12.85,11,Standard,1475.05,27.75645886,17 Years and 8 Months,Yes,662.9654287,,!@9#%8,197.4858716,0,-2.0896,-1.0539,-0.5374,0.8372,1.6963 -0x158f5,CUS_0x1bb0,August,48,415-44-1369,Entrepreneur,20849.95,,8,3,7,1,Payday Loan,26.59577743,20,4.83,2,Standard,327.77,29.31649307,27 Years and 6 Months,No,9.060348683,135.3568614,Low_spent_Small_value_payments,340.7323733,0,-1.1735,-0.2564,2.1503,-1.0631,0.3957 -0x15901,CUS_0xbd5e,August,52,745-59-9139,Journalist,37452.59,,4,3,1,1,Credit-Builder Loan,8.340274724,9,4.11,8,Good,1175.450712,25.66353812,20 Years and 11 Months,No,29.05427308,42.206466,High_spent_Large_value_payments,468.9085884,0,2.4734,0.0701,-1.0063,0.566,-0.739 -0x1590d,CUS_0x5d6a,August,37,#F%$D@*&8,Entrepreneur,66074.92,5221.243333,8,6,32,6,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",46.95291743,24.72060042,1.27,16,Bad,2268.126835,25.01237213,7 Years and 9 Months,Yes,217.6214021,,Low_spent_Small_value_payments,167.7799973,0,-2.4207,0.1325,1.2241,-1.1685,1.0848 -0x15919,CUS_0x3fde,August,34,506-39-3987,Scientist,32033.29,,5,3,5,4,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Not Specified",16.10411535,13,0.64,5,Standard,1475.3,34.53776925,20 Years and 3 Months,No,71.3011565,205.8409978,Low_spent_Large_value_payments,260.301929,0,1.3569,1.0093,1.5708,1.9612,1.6715 -0x15925,CUS_0x26a7,August,41,944-91-6347,Teacher,28023.54,,5,446,12,3,"Home Equity Loan, Debt Consolidation Loan, and Auto Loan",17.43499488,,14.37,8,Standard,1151.05,29.2119486,,Yes,41.31955338,195.88842,Low_spent_Large_value_payments,286.0215266,0,0.7612,-0.529,0.8445,0.1512,1.5163 -0x15931,CUS_0x3acc,August,37,132-30-4857,Manager,30784.67,2682.389167,4,7,9,2,"Debt Consolidation Loan, and Not Specified",28.35972548,18,8.28,3,_,1362.65,26.30666937,24 Years and 8 Months,Yes,28.1622096,,Low_spent_Small_value_payments,205.6865212,0,-1.2126,-0.8095,-0.6093,-0.4777,1.5694 -0x1593d,CUS_0x7e0f,August,44,349-39-1974,Architect,165368.56,13561.71333,2,2,0.288361749,0,Not Specified,,11,9.22,0,Good,1115.017574,28.64820469,16 Years and 6 Months,No,78.52806891,1535.225064,Low_spent_Medium_value_payments,557.318639,0,0.8103,-0.5818,1.1336,-0.9273,0.9291 -0x15949,CUS_0x3baf,August,34,808-50-9635,Developer,115086.6,,4,7,14,4,"Auto Loan, Credit-Builder Loan, Not Specified, and Auto Loan",20.42908909,16,18.2,,Standard,1122.32,37.33209379,20 Years and 4 Months,Yes,377.8963393,390.0423005,High_spent_Medium_value_payments,460.0163602,0,0.1907,-0.0602,-3.7507,0.4735,0.2918 -0x15955,CUS_0x33d6,August,22,403-38-6794,Developer,17599.48,,2,6,6,1412,Payday Loan,,1,,0,Good,1319.290624,36.2816708,19 Years and 2 Months,No,13.08069088,86.33708787,!@9#%8,290.1230767,0,1.3231,-0.4817,-0.1036,-0.9496,-1.1143 -0x15961,CUS_0x56b9,August,30,335-16-7428,Doctor,48644.8,4142.733333,6,6,4.288361749,4,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",10.2955435,10,3.12,2,Standard,539.35,28.52089698,31 Years and 11 Months,No,121.558671,467.6635866,High_spent_Medium_value_payments,494.9885367,0,-0.1547,0.5226,-0.2368,-0.8353,0.1403 -0x1596d,CUS_0x5f45,August,31,257-90-5790,Journalist,28747.25,,3,4,3,2,"Mortgage Loan, and Auto Loan",,11,1.59,7,Good,1317.980258,27.46563037,16 Years and 0 Months,No,153.4724476,66.78239642,High_spent_Medium_value_payments,395.3538319,0,0.3311,0.8708,-0.0723,-0.1606,-0.5896 -0x15979,CUS_0x24ee,August,38,313-17-3944,Engineer,15496.42,1059.368333,7,7,26.06745738,7,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",42.71892545,21.95707055,8.65,11,Bad,2347.888943,25.04036819,20 Years and 2 Months,Yes,72.70667922,,Low_spent_Medium_value_payments,216.7287801,0,0.6106,0.4522,-0.4256,-0.333,-0.4749 -0x15985,CUS_0x3e17,August,44,754-95-5102,Media_Manager,57502.5,,10,5,24,7,"Student Loan, Credit-Builder Loan, Payday Loan, Not Specified, Payday Loan, Auto Loan, and Not Specified",,12.53453298,15.26,9,Standard,2824.509399,40.17542825,19 Years and 4 Months,Yes,286.5259334,182.6522075,Low_spent_Small_value_payments,326.4093591,0,0.3322,1.1364,2.8025,-0.1889,-0.1335 -0x15991,CUS_0x4d6d,August,44,173-39-8666,_______,86865.84,7479.82,4,7,11,4,"Payday Loan, Home Equity Loan, Auto Loan, and Not Specified",,7,4,4,Good,469.39,35.96963043,24 Years and 4 Months,No,282.0481917,942.3718469,Low_spent_Small_value_payments,,0,1.1631,0.0063,-0.3662,0.4074,0.2942 -0x1599d,CUS_0x40be,August,39,535-60-3557,Mechanic,23923.54,,4,7,15,4,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",18.93896955,12,11.46,1,Standard,877.44,34.63795951,,No,78.25312442,44.44635011,High_spent_Medium_value_payments,300.2633588,0,-1.1088,-1.3774,1.5808,-0.1998,-1.9981 -0x159a9,CUS_0x3b9d,August,40,303-61-1404,Entrepreneur,73226.6,6192.216667,10,5,22,6,"Debt Consolidation Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Auto Loan",44.22848951,21.71564879,12.62,8,_,2817.635339,34.57524861,14 Years and 8 Months,Yes,270.7572085,342.2594461,Low_spent_Medium_value_payments,286.205012,0,-0.0707,-0.2789,0.8916,0.0281,0.6683 -0x159b5,CUS_0xaa4,August,46,951-05-7822,Architect,36760.86,,6,5,17,5,"Not Specified, Debt Consolidation Loan, Not Specified, Not Specified, and Home Equity Loan",,19.86309489,21.76,12,Bad,3981.391856,31.08243007,,NM,151.6354205,239.6363395,Low_spent_Small_value_payments,195.4687401,0,1.0326,1.4364,0.772,1.0523,-0.559 -0x159c1,CUS_0xada3,August,19,764-30-4139,Writer,28059.97,,3,7,6,1,Payday Loan,9.644832556,9,15.37,2,Good,80.83,34.4627492,29 Years and 9 Months,NM,21.4919655,25.20921395,High_spent_Large_value_payments,424.5319039,0,0.4943,-0.785,-0.9305,0.223,0.0568 -0x159cd,CUS_0xb97,August,18,923-98-0119,Developer,14160.58,1067.048333,7,7,14,0,,23.06070297,17,18.46,7,_,670.02,29.39563148,24 Years and 8 Months,NM,0,100.1331171,Low_spent_Medium_value_payments,286.5717163,0,-1.301,-1.1551,0.2188,-2.1248,-0.3745 -0x159d9,CUS_0xac5a,August,26,#F%$D@*&8,Accountant,43428.47,3410.533902,5,6,12,100,,0,1,11.96,1,Good,1083.720575,36.73040669,18 Years and 4 Months,No,320.5052646,,High_spent_Medium_value_payments,480.6217767,0,0.2001,1.2823,-0.9591,0.421,-0.5472 -0x159e5,CUS_0xb749,August,27,351-84-1643,Mechanic,40636.56,3460.38,2,6,1,1,Not Specified,11.03918241,8.533736338,5.91,4,Good,540.5759332,26.03703329,28 Years and 5 Months,No,31.22680724,168.991063,!@9#%8,435.8201298,0,-0.4696,-1.306,1.497,0.0379,0.0239 -0x159f1,CUS_0x8a27,August,23,431-33-1435,Engineer,88556.58,7464.715,6,3,11.28836175,0,Not Specified,,19,2.16,3,_,968.19,36.67661598,29 Years and 8 Months,No,61.13806926,1086.428155,Low_spent_Medium_value_payments,298.8427366,0,-0.0139,-0.8356,0.4094,0.759,-0.5534 -0x159fd,CUS_0x1b9c,August,42,253-28-5253,Media_Manager,11603.81,900.9841667,6,7,12,2,"Mortgage Loan, and Not Specified",,15,7.4,4,Good,9.645141604,29.2971496,20 Years and 2 Months,No,15.04266866,77.68296989,Low_spent_Large_value_payments,278.8197917,0,0.285,0.0354,-0.5538,0.8949,0.5468 -0x15a09,CUS_0x18ab,August,20,023-12-4309,Musician,14840.5,1501.708333,9,8,25,9,"Not Specified, Home Equity Loan, Auto Loan, Payday Loan, Student Loan, Personal Loan, Mortgage Loan, Not Specified, and Auto Loan",28.66583638,22,22.07,7,Bad,2685.41,27.71028167,12 Years and 3 Months,Yes,84.42084263,,Low_spent_Small_value_payments,164.5545434,0,1.2035,-1.5078,0.7378,0.2613,-2.252 -0x15a15,CUS_0x8a47,August,45,533-77-7750,Journalist,65163,5586.25,3,3,5.288361749,4,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Mortgage Loan",8.01626989,9,18.2,4,Standard,64.66,34.20122601,11 Years and 10 Months,Yes,224.5207004,563.0019684,High_spent_Small_value_payments,451.0397922,0,0.6054,0.4016,-0.7426,0.5357,0.5283 -0x15a21,CUS_0xa737,August,29,286-09-5110,Accountant,79556.37,6378.6975,8,5,19,0,,,20,9.88,7,Standard,1191.79,32.35636607,30 Years and 4 Months,Yes,0,107.6858384,High_spent_Large_value_payments,770.1839116,0,-0.4983,1.0696,0.6736,0.9857,0.3558 -0x15a2d,CUS_0x470c,August,40,973-06-1882,Accountant,66995.86,5384.988333,3,6,15,999,,27.85015055,19,8.16,4,Standard,554.69,25.30495604,21 Years and 8 Months,Yes,0,71.31690269,High_spent_Large_value_payments,707.1819306,0,2.2026,0.5776,0.7394,-0.7171,0.698 -0x15a39,CUS_0xc58,August,45,398-06-7978,Developer,31185.98,2434.831667,6,6,14,4,"Student Loan, Auto Loan, Student Loan, and Payday Loan",6.131696054,8,10.41,10,Standard,2089.89,25.70178877,15 Years and 3 Months,NM,92.52719106,275.2667634,Low_spent_Small_value_payments,165.6892122,0,0.4622,-0.3288,-1.4603,-0.884,-1.2048 -0x15a45,CUS_0x73e6,August,27,732-04-5437,Developer,25290.87,1868.5725,3,5,17,3,"Student Loan, Mortgage Loan, and Student Loan",12.88899991,12,17.1,5,_,340.65,36.36631889,21 Years and 10 Months,Yes,59.86693432,123.372608,High_spent_Small_value_payments,263.6177077,0,0.3623,0.5749,-0.6638,1.073,0.6721 -0x15a51,CUS_0x950a,August,38,099-97-3650,Journalist,69637.24,6059.103333,8,10,24,6,"Auto Loan, Not Specified, Student Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",,24.30511147,9.93,10,_,1848.329982,26.33494608,11 Years and 9 Months,Yes,313.4597054,185.2651068,High_spent_Medium_value_payments,357.1855211,0,-2.2288,0.1862,-0.3132,-0.7632,-0.6718 -0x15a5d,CUS_0x9c9f,August,60,575-50-5128,Lawyer,17199.795,,8,6,20,4,"Personal Loan, Payday Loan, Payday Loan, and Payday Loan",,9,11.28,5,_,1137.443364,40.34955763,15 Years and 10 Months,Yes,35.00376882,69.03160389,!@9#%8,315.2250637,0,-1.2494,-0.6114,0.6933,1.2973,-2.6404 -0x15a69,CUS_0xc71a,August,28,289-07-8960,Mechanic,85653.96,,8,6,11.28836175,4,"Auto Loan, Payday Loan, Student Loan, and Payday Loan",,18,9.04,3,Standard,883.74,37.38246988,20 Years and 8 Months,No,229.085972,574.7418323,High_spent_Large_value_payments,577.2926567,0,-1.6674,-0.326,0.2559,0.5324,0.3628 -0x15a75,CUS_0x3542,August,25,410-12-2742,Writer,20455.92,,8,9,31.95700519,100,"Auto Loan, Mortgage Loan, Not Specified, Payday Loan, and Mortgage Loan",35.64347894,24.67014923,16.08,9,Bad,4920.745982,28.5719061,7 Years and 6 Months,Yes,1371.9749,95.97068072,Low_spent_Small_value_payments,294.5700502,0,1.6209,0.4641,-1.551,-0.2453,-0.0222 -0x15a81,CUS_0x7d96,August,21,403-90-2072,Teacher,16549.78,,627,6,30.06745738,5,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",33.08858086,,20.31,16,Bad,4736.778185,30.96659846,1 Years and 3 Months,Yes,67.4109964,156.4020268,Low_spent_Small_value_payments,156.9815222,0,0.9409,0.0247,-0.549,-0.0344,-0.4971 -0x15a8d,CUS_0x3f1a,August,41,425-40-1781,Architect,7832.295,488.69125,9,9,16.06745738,5,"Home Equity Loan, Payday Loan, Payday Loan, Payday Loan, and Payday Loan",,27.89964854,8.18,8,Bad,4766.025176,29.49026294,0 Years and 11 Months,Yes,27.09386205,28.92635361,Low_spent_Small_value_payments,256.1286214,0,0.6713,-0.6673,-0.0332,-1.7202,1.2152 -0x15a99,CUS_0xbfa7,August,18,918-55-8627,Accountant,8886.055,,8,3,6,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Payday Loan, and Not Specified",7.882705427,8,12.43,8,Standard,1105.370592,37.44669693,19 Years and 5 Months,Yes,34.78888164,,Low_spent_Small_value_payments,239.417664,0,2.4266,0.1688,-0.3859,0.3513,0.5711 -0x15aa5,CUS_0x715f,August,46,469-98-2089,Writer,83823.22,6841.268333,3,5,11,1,Auto Loan,13.20098756,10,7.31,0,Good,184.71,25.64502739,20 Years and 9 Months,No,41.30388916,588.753955,Low_spent_Small_value_payments,344.0689892,0,-0.985,2.261,0.8556,-0.1206,-1.1289 -0x15ab1,CUS_0x689,August,35,367-52-2109,Doctor,47984.19,3718.6825,8,6,26,5,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",26.51126029,15,1.27,12,Bad,1476.27,27.00510494,13 Years and 8 Months,Yes,195.2553923,171.5024358,High_spent_Small_value_payments,265.1104219,0,2.5169,-0.6766,-0.5685,-0.0292,-0.173 -0x15abd,CUS_0x36ec,August,32,837-30-3669,Accountant,31700.3,2444.691667,10,8,16,5,"Auto Loan, Personal Loan, Not Specified, Not Specified, and Personal Loan",,19,8.78,9,Standard,2482.73,27.05589285,9 Years and 2 Months,Yes,66.86611734,,High_spent_Large_value_payments,381.6219487,0,0.0696,0.098,-0.5017,-1.999,0.912 -0x15ac9,CUS_0x7226,August,42,#F%$D@*&8,Mechanic,58871.28,5042.94,5,4,9,4,"Credit-Builder Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",7.63905198,10,8.73,4,Good,1318.665811,24.70147094,33 Years and 2 Months,NM,167.0765792,312.6729043,Low_spent_Small_value_payments,355.6801986,0,0.8292,-0.0903,-3.0399,-0.334,-1.1513 -0x15ad5,CUS_0xa0be,August,35,616-18-1676,_______,17074.51,1426.875833,7,9,20.06745738,5,"Auto Loan, Personal Loan, Home Equity Loan, Not Specified, and Not Specified",43.36989097,24,7.67,10,Bad,1821.810954,36.79147825,18 Years and 6 Months,Yes,60.96389059,10000,Low_spent_Large_value_payments,263.414272,0,1.6066,0.2599,0.5845,-0.9732,0.6999 -0x15ae1,CUS_0x35f4,August,30,790-29-8933,Manager,21131.71,1882.975833,8,5,16.28836175,0,Payday Loan,14.39612162,13,15.55,4,Standard,34.15,31.19718175,13 Years and 5 Months,NM,10.58715058,444.9597825,High_spent_Medium_value_payments,402.6881112,0,0.2795,0.1607,0.8542,-0.5647,-0.4585 -0x15aed,CUS_0x7ee,August,30,193-00-4284,Lawyer,20637.2,,4,5,14,4,"Personal Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",21.18990749,18,4.74,4,Standard,1387.48,37.32110859,22 Years and 3 Months,Yes,68.57490437,124.5759382,Low_spent_Small_value_payments,263.7258241,0,0.228,-0.3048,-1.5199,-0.5453,0.2204 -0x15af9,CUS_0xb1f6,August,40,830-00-3552,Manager,122922.24,10210.52,2,1120,10,1,Not Specified,4.144303172,5,3.45,3,Good,1424.04,35.43241436,19 Years and 9 Months,No,59.65608314,144.5475759,High_spent_Large_value_payments,1056.848341,0,-0.6675,-0.9449,-0.4106,0.2929,1.2677 -0x15b05,CUS_0x7843,August,53,655-42-6359,Mechanic,89913.09,,8,4,10,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",13.59340195,10,19.7,4,Standard,315.5,33.00496563,28 Years and 3 Months,Yes,207.9658974,,Low_spent_Large_value_payments,591.1318921,0,-0.0823,-1.4743,-1.9976,2.0783,-0.3686 -0x15b11,CUS_0x7088,August,59,598-78-1639,Doctor,81223.36,,3,7,7.288361749,0,,3.276606762,5,8.78,9,Good,109.3610269,27.58670795,20 Years and 3 Months,NM,0,,Low_spent_Medium_value_payments,770.1000264,0,-0.2347,-0.2459,-0.1605,-0.1335,0.8448 -0x15b1d,CUS_0x30ca,August,48,626-06-2719,Mechanic,59861.2,,3,4,6,4,"Payday Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",9.265536682,7,13.04,3,Standard,511.5,24.07025534,29 Years and 8 Months,Yes,157.3423558,,Low_spent_Small_value_payments,29.74741458,0,0.2531,0.3044,0.3628,0.2488,-0.1881 -0x15b29,CUS_0x4dc5,August,34,307-04-8725,Accountant,18292.21,,8,7,26.06745738,7,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Student Loan, and Personal Loan",34.35909262,19,17.73,8,Bad,3713.310954,26.66321377,,NM,103.5876815,10000,Low_spent_Small_value_payments,241.5568301,0,-0.4103,-0.5947,-0.2203,0.8004,0.4348 -0x15b35,CUS_0x78eb,August,38,172-46-1166,Musician,131121.75,11211.8125,4,3,1.288361749,0,Debt Consolidation Loan,2.184272155,5,2.88,3,Good,1027.15,30.90397319,18 Years and 10 Months,NM,95.69914355,774.2660186,Low_spent_Medium_value_payments,951.1535489,0,0.5719,0.9789,0.4755,-0.5513,-0.7395 -0x15b41,CUS_0x97a2,August,28,836-69-1161,Mechanic,7567.63,,6,5,11,2,"Mortgage Loan, and Mortgage Loan",24.8386088,18.02702658,8.36,4,Standard,2850.692959,34.41791345,7 Years and 3 Months,Yes,7.340127499,54.64947633,Low_spent_Small_value_payments,295.2739795,0,-1.7317,-0.5703,0.6727,-1.2289,1.2891 -0x15b4d,CUS_0x70ea,August,37,907-18-5099,Architect,14679.83,1183.319167,10,10,19.95700519,6,"Not Specified, Student Loan, Student Loan, Student Loan, Student Loan, and Student Loan",25.04273803,17,13.88,8,Bad,2008.290954,28.62826014,8 Years and 5 Months,Yes,1394.781082,51.02175296,Low_spent_Small_value_payments,241.4787129,0,-0.5189,-0.4989,-2.1144,0.0069,2.6739 -0x15b59,CUS_0xb46a,August,27,906-16-9985,Accountant,37467.18,2920.265,6,7,34,100,"Personal Loan, Personal Loan, Auto Loan, Student Loan, Payday Loan, and Personal Loan",,23.74225855,6.34,8,_,2899.318579,40.73048432,6 Years and 6 Months,Yes,117.3356503,121.8487406,Low_spent_Large_value_payments,322.842109,0,-0.3829,1.0608,0.2992,-0.6643,-0.8642 -0x15b65,CUS_0x328e,August,25,560-60-4464,Journalist,46586.8,4026.233333,6,7,20,0,,19.48064195,13,14.98,8,Standard,751.4567629,34.11766119,9 Years and 3 Months,Yes,0,130.486394,High_spent_Medium_value_payments,540.0514576,0,0.0388,-0.6102,-2.4991,0.3211,0.929 -0x15b71,CUS_0x4daa,August,44,451-28-9406,Lawyer,34744.15,2784.345833,3,2,2.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Student Loan",12.64085701,13,-0.52,3,Good,219.59,34.8790523,33 Years and 6 Months,No,52.21889442,,Low_spent_Small_value_payments,237.5170645,0,0.7315,-1.3581,1.3403,0.3918,0.5506 -0x15b7d,CUS_0x8179,August,29,646-61-9900,Media_Manager,69194.98,5657.248333,3,4,16,0,,16.60510912,11,14.43,10,Standard,911.82,32.35967498,19 Years and 8 Months,Yes,0,578.8748696,Low_spent_Small_value_payments,276.8499637,0,-0.3464,-0.3996,-0.5258,-0.0568,-0.5038 -0x15b89,CUS_0xa25a,August,39,990-95-4938,Doctor,55339.56,,8,5,34,9,"Payday Loan, Personal Loan, Auto Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",22.81536549,16.88021441,7.28,7,Bad,3295.029198,30.35939808,0 Years and 10 Months,Yes,252.1209406,,Low_spent_Small_value_payments,241.3320641,0,-1.7923,0.2455,-0.4596,-1.5075,-0.0097 -0x15b95,CUS_0x1931,August,22,954-05-2870,Lawyer,20590.48,,6,6,32,9,"Not Specified, Auto Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Student Loan, and Payday Loan",46.12090464,22.43230053,7.85,10,Bad,2354.739249,34.70242125,9 Years and 0 Months,Yes,129.6836618,106.9946997,High_spent_Small_value_payments,193.8089718,0,0.5777,0.7887,-0.464,0.9955,0.3996 -0x15ba1,CUS_0x7766,August,49,876-26-2819,Writer,95460.81,7989.0675,2,5,4.288361749,2,"Mortgage Loan, Personal Loan, and Mortgage Loan",0,3,7.46,7,_,159.8684549,22.84941861,28 Years and 0 Months,No,201.5056401,974.967354,Low_spent_Large_value_payments,394.4336996,0,-0.1203,-0.4867,1.1259,0.4481,-1.5521 -0x15bad,CUS_0x93a7,August,39,836-72-8180,Lawyer,7414.145,,6,8,27.95700519,9,"Not Specified, Mortgage Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, and Auto Loan",,21,22.83,10,Bad,2803.460954,41.02175294,5 Years and 3 Months,Yes,1374.899574,,Low_spent_Small_value_payments,191.3643757,0,0.0056,-0.3769,0.0414,0.4632,1.904 -0x15bb9,CUS_0xa47e,August,20,852-55-6398,Architect,37024.7,3179.391667,8,7,25,5,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",38.22837129,29.00208308,0.82,10,Bad,2552.712442,32.53248129,9 Years and 11 Months,Yes,114.542383,,Low_spent_Small_value_payments,135.9309716,0,0.4506,0.7505,0.1524,0.8253,1.1841 -0x15bc5,CUS_0x8cdb,August,80,712-28-1926,Manager,92650.2,,5,2,2.288361749,2,"Auto Loan, Not Specified, and Auto Loan",0,0,8.65,6,_,752.1581879,34.24674688,,No,220.4071636,,!@9#%8,717.3092588,0,-0.4599,3.1125,0.7879,0.6071,0.2837 -0x15bd1,CUS_0xb68,August,34,578-86-5410,Musician,30375.05,,6,5,6,0,,,1891,4.09,4,_,1367.11,35.45290909,21 Years and 8 Months,No,0,44.14439387,High_spent_Medium_value_payments,448.4810228,0,-1.1365,1.1887,2.2804,0.0431,-0.8882 -0x15bdd,CUS_0x126d,August,36,047-21-1235,Architect,34710.6,3170.55,6,3,20,100,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Student Loan, Payday Loan, Not Specified, and Mortgage Loan",12.9387027,10,14.76,10,Standard,1462.53,33.98902252,15 Years and 0 Months,Yes,197.1080746,324.462408,Low_spent_Small_value_payments,85.48451747,0,-1.0494,1.3055,-0.2509,-0.6419,0.7011 -0x15be9,CUS_0xa2fd,August,27,102-04-9774,Journalist,86210.79,7142.2325,8,7,12,0,,18.32081086,12,8.96,2,Standard,587.61,42.61329816,31 Years and 5 Months,NM,0,111.3696187,High_spent_Large_value_payments,842.8536313,0,-2.1978,-1.5457,2.1474,0.3449,0.7164 -0x15bf5,CUS_0xb76f,August,45,069-45-8437,Musician,39513.84,2993.82,4,2,11,3,"Not Specified, Debt Consolidation Loan, and Personal Loan",5.800140358,8,9.63,2,Good,944.5322394,29.29254479,28 Years and 10 Months,NM,89.80089296,,High_spent_Small_value_payments,410.4349029,0,1.4739,0.9282,1.396,-1.2214,0.4627 -0x15c01,CUS_0x5993,August,41,120-48-2348,Developer,30352.11,2317.3425,1,4,7,1,Student Loan,2.06277297,4,7.11,0,Good,644.57,32.93739946,24 Years and 0 Months,No,16.48356622,89.62296249,High_spent_Medium_value_payments,375.6277213,0,-1.8685,1.0585,0.7347,0.7119,-0.1819 -0x15c0d,CUS_0x9235,August,48,506-29-3362,Scientist,63199.96,5426.663333,0,5,1,0,,9.810395732,11,11.01,7,Good,1435.61,27.52359551,,NM,0,317.9021423,High_spent_Small_value_payments,484.764191,0,-0.0803,0.1555,0.5634,-0.8209,-0.009 -0x15c19,CUS_0x8564,August,37,856-14-6029,Mechanic,93890.61,7717.2175,7,6,5,4,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",14.93314558,12,7.06,10,Standard,877.12,33.70057822,,Yes,233.5846629,168.3540145,High_spent_Medium_value_payments,619.7830727,0,-0.8936,0.0155,0.557,-0.5153,-1.4588 -0x15c25,CUS_0x477d,August,20,820-20-3690,Journalist,21001.62,1452.135,7,6,19.06745738,5,"Mortgage Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",29.22791417,18,9.61,10,Standard,1594.970954,37.27812993,,Yes,72.7911109,84.46514793,Low_spent_Medium_value_payments,241.2369532,0,-0.5254,1.7697,-0.3612,1.0748,-1.6857 -0x15c31,CUS_0x9d7d,August,48,574-82-7157,Architect,29879.43,,6,5,10,3,"Mortgage Loan, Home Equity Loan, and Auto Loan",23.77738776,21.32664049,11.79,8,Standard,1424.791831,33.06830462,25 Years and 2 Months,No,66.95682033,239.4080605,Low_spent_Small_value_payments,228.7303691,0,-0.068,0.336,-1.9239,-1.1799,-0.0095 -0x15c3d,CUS_0xad3f,August,37,152-57-8963,Developer,17559.88,,2,7,4.288361749,0,,,6,7.02,0,Good,21.07352784,30.9513932,18 Years and 10 Months,No,0,461.0553337,Low_spent_Large_value_payments,351.4701976,0,-0.0327,0.4009,1.6441,-0.3992,0.0134 -0x15c49,CUS_0x7aa9,August,25,760-24-6735,Doctor,60287.61,4712.692517,10,9,33.88954781,6,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Student Loan",,27,9.71,10,_,2198.712356,40.48085686,13 Years and 5 Months,Yes,1987.121699,134.1295491,High_spent_Small_value_payments,461.7622579,0,-0.1795,-0.3913,0.0627,0.2769,0.2843 -0x15c55,CUS_0x1138,August,44,832-92-6672,Lawyer,154868.24,13051.68667,2,5,10,0,,2.909368186,3.447876549,4.16,6,Good,263.8346026,42.32006806,29 Years and 11 Months,No,0,759.5938773,!@9#%8,825.5747894,0,-0.7398,-0.4203,1.1983,0.4859,1.4481 -0x15c61,CUS_0x97bd,August,80,552-35-7303,Engineer,8736.19,639.0158333,4,5,29,3,"Credit-Builder Loan, Auto Loan, and Student Loan",,22.16037436,11.25,4,_,2102.104433,34.39470049,11 Years and 8 Months,Yes,32292,53.31200556,Low_spent_Medium_value_payments,273.9233145,0,-0.7809,-0.8155,-1.2716,0.3696,0.0868 -0x15c6d,CUS_0x1277,August,23,682-00-8701,Engineer,13762.45,,7,6,13,5,"Personal Loan, Debt Consolidation Loan, Not Specified, Personal Loan, and Credit-Builder Loan",10.39536695,8,8.39,6,Standard,720.94,28.35485367,11 Years and 5 Months,NM,3653,10000,Low_spent_Small_value_payments,285.2506639,0,-0.5572,-1.5072,1.5423,0.3403,0.8773 -0x15c79,CUS_0x9550,August,34,780-51-5608,Writer,34435.82,,6,4,14,1,Auto Loan,,13,17.81,7,Standard,360.11,39.34963819,10 Years and 5 Months,Yes,27.82748604,92.05660773,High_spent_Medium_value_payments,404.1810729,0,1.5775,0.6706,0.2839,1.995,1.0971 -0x15c85,CUS_0xb83d,August,31,583-60-0474,Engineer,26690.13,2326.1775,6,7,2993,7,"Student Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",15.78972509,15,10.91,6,_,610.731016,30.78779818,13 Years and 4 Months,Yes,150.262787,145.7454003,High_spent_Small_value_payments,218.4454795,0,-0.2389,0.5112,-2.1275,-0.5722,-0.9524 -0x15c91,CUS_0xa1c3,August,44,822-25-5726,Manager,59789,4510.850859,3,4,1,100,Credit-Builder Loan,,10,8.06,1,Good,1155.96,25.69531776,30 Years and 2 Months,No,644.687869,330.2227457,Low_spent_Large_value_payments,415.5968598,0,1.6184,0.7371,0.4271,0.1003,1.8856 -0x15c9d,CUS_0x47d3,August,41,080-54-4228,Mechanic,23129.88,1735.49,5,3,7,2,"Student Loan, and Student Loan",14.53015445,14,4.1,5,Good,767.468297,22.87208246,15 Years and 8 Months,No,28.67553841,25.12274145,High_spent_Large_value_payments,362.1550572,0,1.9073,0.3984,0.1612,0.6575,0.3549 -0x15ca9,CUS_0x5585,August,54,916-97-3278,Doctor,60340.02,,6,5,17,1,Payday Loan,25.84012893,18,12.78,6,Standard,890.61,39.23098076,15 Years and 11 Months,NM,551.1491824,332.8822287,Low_spent_Small_value_payments,414.6217049,0,-0.8338,0.4521,1.0138,0.1428,-0.1655 -0x15cb5,CUS_0x5e1f,August,35,624-54-7787,Developer,16640.35,,5,6,9,1,Payday Loan,11.88005069,8,7.24,5,_,1128.37,32.37101808,17 Years and 9 Months,Yes,7.50474038,71.62032633,Low_spent_Small_value_payments,336.2445166,0,0.1197,1.277,-1.6918,0.9419,-1.1773 -0x15cc1,CUS_0x6dbb,August,31,401-50-8869,Manager,20804.18,,10,8,23.95700519,8,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Payday Loan, and Personal Loan",34.26061957,23,21.44,884,_,4027.590954,24.36424001,,NM,1458.370126,122.1664157,!@9#%8,119.9812555,0,0.7714,-0.903,-2.1366,1.7588,-0.3987 -0x15ccd,CUS_0x3530,August,29,738-74-7100,Journalist,43200.9,,8,9,16.88954781,237,"Personal Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,22,6.88,12,Bad,1404.99,35.67094794,11 Years and 10 Months,Yes,1441.317284,35.98475248,High_spent_Large_value_payments,449.0753823,0,1.5369,0.4896,0.3449,-0.009,-0.711 -0x15cd9,CUS_0x2f9b,August,25,343-89-9854,Engineer,17397.56,,9,10,16.06745738,6,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Not Specified, and Mortgage Loan",43.46703031,23.84785141,17.62,9,Bad,1844.183039,35.42064952,19 Years and 2 Months,Yes,21139,87.67642526,Low_spent_Medium_value_payments,264.4775762,0,-0.8806,0.2827,-0.2591,-0.7039,0.1437 -0x15ce5,CUS_0x8fb4,August,47,010-27-6689,Accountant,104994.33,,5,7,7.288361749,2,"Payday Loan, Not Specified, and Not Specified",,14,5.34,4,Good,467.77,33.85165952,,No,574.2385747,516.5892445,High_spent_Medium_value_payments,878.7023068,0,-1.404,-0.9305,-0.6286,0.1827,0.937 -0x15cf1,CUS_0x8d6e,August,18,436-98-0578,Doctor,13139.385,,8,6,10,3,"Mortgage Loan, Student Loan, and Credit-Builder Loan",12.1993297,13,13.94,7,Standard,1181.1,25.12898952,24 Years and 4 Months,Yes,31.09587324,86.88370075,Low_spent_Medium_value_payments,274.715301,0,0.5597,0.0477,-0.0193,0.8266,1.3276 -0x15cfd,CUS_0x6d05,August,46,429-09-6890,Mechanic,84833.62,,5,1,7.288361749,4,"Auto Loan, Payday Loan, Payday Loan, and Home Equity Loan",0,2,2.05,2,Good,506.4390038,23.46046841,20 Years and 9 Months,No,274.9442044,961.0940159,Low_spent_Large_value_payments,200.658381,0,-0.4398,0.2407,0.7776,-0.391,0.6529 -0x15d09,CUS_0x69b4,August,27,223-19-5180,Teacher,21178.31,1990.859167,5,4,8,3,"Not Specified, Auto Loan, and Not Specified",27.5058895,19,0.74,5,Standard,262.25,34.37408626,,No,45.48248913,89.24860514,High_spent_Small_value_payments,324.3548224,0,0.8924,0.4788,1.7363,-0.5157,-1.8946 -0x15d15,CUS_0x7154,August,32,624-46-9352,Accountant,122053.2,,8,7,12,5,"Debt Consolidation Loan, Payday Loan, Not Specified, Auto Loan, and Personal Loan",26.35620758,18,9.42,6,Standard,1292.35,29.69004031,6 Years and 10 Months,Yes,388.9097837,769.6829944,Low_spent_Medium_value_payments,158.417222,0,-1.2625,2.2791,-0.4073,1.6301,-1.3353 -0x15d21,CUS_0x3821,August,24,248-72-2340,Architect,16365.59,,7,7,12,4,"Auto Loan, Student Loan, Auto Loan, and Credit-Builder Loan",32.62658672,24.25167252,15.47,1,Standard,974.4418751,24.73607896,18 Years and 8 Months,Yes,31.37425599,27.67703183,High_spent_Small_value_payments,309.9286289,0,-0.0318,1.625,0.6535,-0.4351,-0.8342 -0x15d2d,CUS_0x2c3c,August,37,476-19-3594,_______,17238.11,1599.509167,8,8,24.95700519,9,"Home Equity Loan, Payday Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",34.73345322,19.21566189,1.46,11,Bad,1859.365118,27.39860757,9 Years and 3 Months,Yes,1407.627747,44.06228906,High_spent_Small_value_payments,247.210511,0,-0.4024,-1.629,-1.2449,0.257,0.5934 -0x15d39,CUS_0x84ae,August,29,#F%$D@*&8,Scientist,65929.12,,6,5,18,2,"Auto Loan, and Payday Loan",5.282484138,8,17.76,12,_,1329.17,31.02171553,20 Years and 5 Months,Yes,64.91669021,108.8650696,High_spent_Medium_value_payments,641.1275736,0,1.4121,-0.5209,-1.3629,-1.8661,-0.3886 -0x15d45,CUS_0xc68,August,36,500-95-2856,Entrepreneur,15334.13,,7,9,31.06745738,3,"Student Loan, Not Specified, and Payday Loan",,,6.8,11,_,2806.625869,35.76698088,13 Years and 8 Months,Yes,19.40118193,124.9508161,Low_spent_Medium_value_payments,255.2121307,0,1.8863,0.9722,0.1269,-1.0778,0.8308 -0x15d51,CUS_0x11ac,August,26,835-92-7751,Journalist,69136.54,5902.378333,3,4,14,0,,22.24311936,18,7.18,3,Standard,478.85,32.10316372,17 Years and 5 Months,Yes,0,435.9370015,Low_spent_Small_value_payments,444.3008318,0,-0.5561,-1.1523,-0.9722,-0.7765,-0.0293 -0x15d5d,CUS_0x4ade,August,51,293-07-0146,Architect,61976.44,,28,5,8,4,"Student Loan, Home Equity Loan, Student Loan, and Personal Loan",,12,11.01,6,_,67.6304516,28.09273993,18 Years and 0 Months,No,190.5567506,241.9176645,High_spent_Medium_value_payments,348.8088035,0,0.5978,1.2377,-1.2008,-0.5165,-1.234 -0x15d69,CUS_0x4d98,August,28,969-41-1662,Entrepreneur,87416.52,,2,7,6,3,"Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",,2,6.67,3,Good,814.52,36.38792827,18 Years and 2 Months,No,151.8567976,316.3343751,Low_spent_Large_value_payments,505.5798273,0,-0.8446,-1.8948,-0.6458,-0.4158,-0.7716 -0x15d75,CUS_0x33de,August,80,968-12-6596,Journalist,16340.12,1275.676667,10,9,17.06745738,5,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",34.06873727,17,18.18,,Bad,3985.260954,36.40903217,6 Years and 3 Months,Yes,41.16198161,97.70337821,Low_spent_Large_value_payments,231.9820189,0,-1.595,0.5814,-0.333,-0.1116,-1.3686 -0x15d81,CUS_0xae61,August,80,272-86-2874,Developer,60878.97,,4,6,12,5,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Auto Loan",16.91203866,,12.7,9,Standard,946.64,36.28903535,6 Years and 10 Months,Yes,158.3220875,,High_spent_Medium_value_payments,455.0506656,0,1.8327,-1.1476,0.816,-2.0513,-0.6304 -0x15d8d,CUS_0x579e,August,41,#F%$D@*&8,Journalist,19723.82,,10,82,24.06745738,3,"Auto Loan, Personal Loan, and Auto Loan",,19.46040969,2.45,10,_,3144.486432,33.61690643,12 Years and 10 Months,NM,48.84009702,,Low_spent_Small_value_payments,184.7882532,0,0.1171,0.144,-1.6622,-1.185,0.603 -0x15d99,CUS_0x9ae4,August,29,702-14-0511,Manager,14674.175,,2,1,6,0,,8.690192698,9,2.7,4,Good,1209.83,23.19179062,23 Years and 9 Months,No,0,41.91640151,!@9#%8,338.0683902,0,-0.5737,-0.3835,1.1124,0.4532,-0.4246 -0x15da5,CUS_0x79d3,August,35,541-86-2460,Doctor,14332.03,,5,3,16,100,"Mortgage Loan, Student Loan, and Student Loan",20.81020867,16,5.63,5,Standard,244.52,35.54781095,30 Years and 9 Months,No,21.97473682,10000,Low_spent_Small_value_payments,329.9103981,0,-0.2965,0.781,-0.7577,0.5498,0.1443 -0x15db1,CUS_0x659,August,27,557-06-1117,Doctor,16133.43,1283.4525,6,7,17.06745738,2,"Personal Loan, and Credit-Builder Loan",,26.18536995,9.64,11,Bad,1919.708327,27.14545445,11 Years and 11 Months,Yes,24.25711798,40.30814755,High_spent_Small_value_payments,297.0596965,0,1.0546,-0.3243,0.7003,-1.4013,1.631 -0x15dbd,CUS_0xb1d2,August,42,657-59-2344,Scientist,61737.94,4888.828333,5,3,20,3,"Student Loan, Debt Consolidation Loan, and Auto Loan",25.77238658,20,8.38,6,Standard,161,27.98793709,30 Years and 4 Months,No,111.6372765,226.2884625,Low_spent_Large_value_payments,420.9570944,0,0.5333,-1.8943,-0.3135,-0.209,-0.0955 -0x15dc9,CUS_0x650b,August,32,466-58-6225,Accountant,160350.4,,2,5,5.288361749,2,"Not Specified, Mortgage Loan, and Personal Loan",0,0,9.65,5,Good,983.7955947,29.28716209,31 Years and 3 Months,No,212.4293521,1452.316097,Low_spent_Medium_value_payments,513.2719895,0,0.2741,-1.169,0.384,0.4173,0.1241 -0x15dd5,CUS_0xa4ee,August,20,595-44-8320,Journalist,7471.91,,8,8,19.95700519,6,"Personal Loan, Payday Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Not Specified",32.44033208,20.06976762,18.95,8,Standard,2202.402885,34.34978845,19 Years and 4 Months,Yes,1342.177606,,!@9#%8,239.3595736,0,-2.018,0.4797,0.7618,1.694,-1.0142 -0x15de1,CUS_0xa8d8,August,41,035-13-0288,Doctor,61756.52,,9,856,33,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Auto Loan",35.97380969,20.31896733,2.35,10,_,2036.737093,35.48377051,6 Years and 5 Months,Yes,126.5799472,179.6338797,Low_spent_Large_value_payments,495.0238397,0,1.3312,-0.2917,0.0004,-0.025,-0.2441 -0x15ded,CUS_0x8535,August,50,751-98-8568,_______,12766.425,1206.86875,3,4,13,87,"Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",18.66994287,16,10.31,0,Standard,1287.799795,35.97854338,31 Years and 6 Months,Yes,27.97205372,59.71002391,Low_spent_Small_value_payments,331.7949956,0,0.7471,-0.9769,-1.7408,0.9895,1.1545 -0x15df9,CUS_0xab0d,August,26,191-35-2135,Developer,22032.32,,4,5,10,0,,3.999128297,7,5.11,7,Good,1252.459334,26.68093154,22 Years and 6 Months,No,147.4046017,48.03429123,!@9#%8,406.3493646,0,-1.6727,-0.2454,0.2831,-0.1763,0.226 -0x15e05,CUS_0xc719,August,36,994-77-4680,Media_Manager,60271.92,4782.66,6,7,28.06745738,6,"Payday Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Student Loan",37.72533018,25,28.85,13,Bad,4770.360954,29.69392311,,Yes,203.6057951,36.77646031,High_spent_Large_value_payments,451.1634567,0,0.5859,0.5504,-0.272,-0.1538,1.5071 -0x15e11,CUS_0xa08c,August,38,390-81-3983,Architect,10917.655,,5,4,19,6,"Not Specified, Mortgage Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",16.04806883,15,16.49,7,_,278.25,27.88146802,15 Years and 2 Months,Yes,94.31196625,,Low_spent_Large_value_payments,286.5883652,0,1.7594,1.8197,1.1256,1.1678,0.159 -0x15e1d,CUS_0x6f64,August,25,#F%$D@*&8,Accountant,20355.23,1978.269167,8,3,15,6,"Student Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Payday Loan",13.14892092,12,14.73,5,Standard,575.92,33.26674757,10 Years and 8 Months,Yes,59.28691589,249.1885123,Low_spent_Small_value_payments,179.3514884,0,0.4566,0.7771,-0.0244,-0.4857,-0.0783 -0x15e29,CUS_0x7bbb,August,36,189-26-3266,Accountant,14115.22,,6,5,16,9,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Not Specified, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, and Personal Loan",,19,6.54,13,Bad,3346.41,37.29292049,3 Years and 6 Months,Yes,96.77589176,114.2584775,Low_spent_Small_value_payments,209.8924641,0,-1.1352,-0.1768,0.3075,-0.6032,0.939 -0x15e35,CUS_0x75a0,August,34,005-81-4987,Media_Manager,43501.95,3418.1625,7,7,21.06745738,3,"Payday Loan, Credit-Builder Loan, and Not Specified",31.49469434,19,9.11,6,_,2596.810954,28.17464247,16 Years and 10 Months,Yes,68.05068486,228.8916639,High_spent_Small_value_payments,278.1536133,0,0.6058,-1.2998,-1.7339,0.1923,-0.4778 -0x15e41,CUS_0xa6d5,August,80,360-00-8751,Accountant,20762.97,,8,10,24.06745738,5,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",28.11331604,,9.9,10,Bad,1894.560954,30.53666414,16 Years and 10 Months,Yes,75.49127012,59.70017671,High_spent_Small_value_payments,263.2130152,0,-1.2118,-1.0708,-0.2348,-0.7609,-0.0644 -0x15e4d,CUS_0x5f92,August,19,762-79-2043,Teacher,9238.24,,6,7,26.06745738,7,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Auto Loan",44.70666207,29.3057197,3.7,11,Bad,4572.211621,34.50153481,9 Years and 3 Months,Yes,38.77068858,,Low_spent_Medium_value_payments,260.2655013,0,-1.4407,0.8771,-1.8832,0.3505,-0.3367 -0x15e59,CUS_0x8617,August,24,120-16-6347,_______,57326.49,5042.2075,3,5,13,2,"Payday Loan, and Student Loan",28.54982783,22.10695288,11.24,3,Standard,1139.379021,40.78697038,23 Years and 6 Months,No,55.24500538,283.5315817,Low_spent_Small_value_payments,455.4441629,0,-0.9217,0.0066,0.8133,0.3531,0.4946 -0x15e65,CUS_0x4781,August,44,001-70-8319,Teacher,61627,4599.783962,1,6,2,1,Credit-Builder Loan,,8,7.35,2,Good,1485.87,33.41524994,20 Years and 6 Months,No,298.8773341,10000,High_spent_Medium_value_payments,646.9585822,0,-1.1687,-1.5589,0.9305,1.5763,0.7036 -0x15e71,CUS_0x4567,August,19,761-63-8906,Architect,106215.04,8592.253333,6,4,9,100,"Payday Loan, Mortgage Loan, and Not Specified",18.0440211,13,13.71,10,Standard,1067.77,35.25567509,23 Years and 11 Months,Yes,152.9557281,712.661134,Low_spent_Medium_value_payments,273.6084711,0,0.3781,0.6187,-1.0972,0.1609,-1.1256 -0x15e7d,CUS_0x5789,August,43,395-30-8175,Architect,93529.05,7775.0875,5,4,17,2,"Home Equity Loan, and Debt Consolidation Loan",11.66557548,9,7.33,9,_,757.74,31.33677943,19 Years and 10 Months,NM,122.8407177,,Low_spent_Medium_value_payments,249.6578028,0,0.2354,2.265,0.5211,1.1254,1.5399 -0x15e89,CUS_0xae57,August,25,649-36-2502,Accountant,16909.09,1254.090833,9,10,29.06745738,5,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",,22.25801782,10.98,6,_,2371.543012,33.09596513,11 Years and 2 Months,Yes,37.43267819,96.51898399,Low_spent_Small_value_payments,254.7371332,0,0.9748,1.8713,0.3096,0.2614,1.0129 -0x15e95,CUS_0x3090,August,24,#F%$D@*&8,Doctor,43610.13,3640.1775,2,4,9,4,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",16.73096399,,10.29,1,Good,1371.99,29.77836471,28 Years and 6 Months,No,65617,111.4354562,Low_spent_Large_value_payments,389.2209286,0,-2.1008,0.7868,-1.1161,-1.2487,-1.7837 -0x15ea1,CUS_0x7303,August,18,727-06-5316,Media_Manager,60335.25,5120.9375,9,9,15,2,"Home Equity Loan, and Not Specified",,16,11.04,7,_,1814.22,36.07776651,17 Years and 3 Months,Yes,92.42547138,104.5527327,High_spent_Small_value_payments,575.1155459,0,1.1839,-0.6197,-1.5483,-1.1719,-0.7205 -0x15ead,CUS_0x947a,August,19,096-80-9236,Architect,26922.65,2343.554167,4,7,17,3,"Payday Loan, Payday Loan, and Student Loan",28.70344557,20,7.54,4,Standard,1179.89,37.58461872,20 Years and 9 Months,No,58.95953561,,!@9#%8,372.3235019,0,-2.0839,-0.5247,0.5833,-1.8224,2.8702 -0x15eb9,CUS_0x27b9,August,18,763-32-6416,Teacher,28356.18,,10,9,32.95700519,7,"Payday Loan, Personal Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",34.38447296,23,16,12,Bad,4380.610954,35.08624328,5 Years and 6 Months,Yes,1464.181887,29.14712316,High_spent_Large_value_payments,268.1221205,0,-0.1135,-1.0273,0.7725,-0.2923,-0.9024 -0x15ec5,CUS_0x2b94,August,48,528-54-1734,Engineer,24372.88,,5,6,13,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",17.4519187,12,0.4,3,_,719.48,32.42337705,28 Years and 9 Months,Yes,55.34957705,169.2246124,Low_spent_Small_value_payments,263.5331438,0,-0.3715,0.5074,0.2167,-0.6925,0.1082 -0x15ed1,CUS_0x8d9,August,37,984-95-1206,Media_Manager,24881.15,2304.429167,4,6,19,2,"Debt Consolidation Loan, and Student Loan",,6,17.84,9,Standard,931.68,33.77857438,18 Years and 4 Months,Yes,40.17366685,166.523983,Low_spent_Small_value_payments,313.7452669,0,-0.1318,0.153,1.0959,0.2815,0.3323 -0x15edd,CUS_0xb293,August,23,059-06-4253,Teacher,72152.8,5849.733333,4,7,3,3,"Personal Loan, Home Equity Loan, and Home Equity Loan",3.974959314,2.302991408,9.04,5,_,948.3896291,39.67056135,29 Years and 6 Months,No,171.8065669,99.77424218,High_spent_Medium_value_payments,563.3925243,0,0.0837,0.3346,-0.7573,0.3235,-0.536 -0x15ee9,CUS_0x558f,August,44,060-58-0187,Journalist,26908.25,2254.354167,6,5,19,3,"Auto Loan, Home Equity Loan, and Student Loan",21.89549094,17,9.86,3,Standard,546.83,25.65049873,19 Years and 4 Months,No,52.07057309,36.74415338,High_spent_Large_value_payments,376.6206902,0,-0.0088,-0.6832,0.3878,0.1078,-0.5923 -0x15ef5,CUS_0x6574,August,39,188-37-8564,Architect,32919.12,2723.26,7,10,26,4,"Auto Loan, Not Specified, Home Equity Loan, and Not Specified",,31.5542493,5.86,10,Bad,2136.555792,39.15836998,14 Years and 6 Months,NM,78.67040473,,High_spent_Large_value_payments,386.847371,0,0.934,1.027,0.33,-2.0482,1.1408 -0x15f01,CUS_0xa677,August,50,256-86-1956,_______,40656.6,3133.668702,0,6,7,1,Student Loan,,9,1.21,7,Good,681.37,36.82536154,18 Years and 2 Months,No,62549,22.71369237,High_spent_Large_value_payments,531.3383765,0,-0.2765,0.172,-0.9993,-1.1764,1.528 -0x15f0d,CUS_0x4f72,August,38,104-90-2721,Musician,53143.17,,8,8,19.06745738,7,"Payday Loan, Auto Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",23.99280305,15,4.66,11,_,3910.590954,27.70207373,6 Years and 3 Months,Yes,220.1441269,69.63975106,High_spent_Medium_value_payments,388.9555841,0,-1.1256,1.4328,-0.132,0.9065,-1.0571 -0x15f19,CUS_0x51cb,August,48,423-03-2444,Accountant,172534.16,14344.84667,4,7,5,3,"Debt Consolidation Loan, Student Loan, and Mortgage Loan",11.89407304,10,5.99,3,Good,1343.5,27.0616144,21 Years and 9 Months,No,393.6591444,733.2481084,Low_spent_Medium_value_payments,587.5774139,0,-0.3219,0.7903,-1.5463,-0.087,-1.1882 -0x15f25,CUS_0x458d,August,19,327-28-8071,Journalist,34315.71,3018.6425,4,4,19,2,"Debt Consolidation Loan, and Home Equity Loan",16.3687925,13,13.36,4,Standard,24.75,38.86463018,,Yes,37.61166736,58.40287933,High_spent_Large_value_payments,445.8497033,0,0.4161,-0.0182,0.1096,1.5516,-1.6901 -0x15f31,CUS_0xa964,August,80,792-17-2106,Lawyer,70686.44,,0,1,4,4,"Not Specified, Auto Loan, Payday Loan, and Mortgage Loan",,10,-6.07,2,Good,1356.885973,36.45396175,23 Years and 11 Months,No,164.456949,833.7336716,!@9#%8,,0,1.7069,-1.6195,-0.2022,-1.2408,-0.5069 -0x15f3d,CUS_0x27fa,August,47,544-49-9604,Manager,31280.63,,8,4,11,1,Home Equity Loan,10.14664272,8,9.15,8,Standard,385.83,34.79827204,25 Years and 4 Months,Yes,21.39713947,192.1124583,Low_spent_Small_value_payments,326.4623189,0,-0.0444,0.5012,-0.5734,-1.1731,0.5357 -0x15f49,CUS_0xa2af,August,44,838-46-6396,Engineer,14031.25,,8,10,29.95700519,7,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Auto Loan, Home Equity Loan, and Personal Loan",37.41537995,19.34489879,29.07,6,Bad,4424.471006,29.78107907,2 Years and 8 Months,Yes,1403.008124,96.74383074,Low_spent_Small_value_payments,179.9247595,0,0.6448,-0.5993,1.7842,-0.4118,-0.92 -0x15f55,CUS_0x2a77,August,80,622-39-0790,Mechanic,17015.66,1332.971667,6,7,28,7,"Student Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Student Loan",20.5686621,15,11.41,12,Standard,1987.47,36.00858441,16 Years and 2 Months,Yes,81.80577883,64.89123253,High_spent_Small_value_payments,246.6001553,0,0.1514,0.8335,-0.808,-0.8883,-1.128 -0x15f61,CUS_0x1d1c,August,25,993-91-6618,Developer,10307.97,625.9975,8,3,13,2,"Debt Consolidation Loan, and Auto Loan",,12,8.67,10,_,480.17,40.6101095,16 Years and 6 Months,Yes,11.02219042,37.73402851,Low_spent_Large_value_payments,283.8435311,0,1.4973,-0.2751,0.6119,0.7804,-0.5568 -0x15f6d,CUS_0x6b10,August,46,#F%$D@*&8,Developer,105675.6,,7,5,18,0,,22.92294019,19,6.45,1,Standard,837.5163435,36.89358487,32 Years and 0 Months,No,0,386.9973405,High_spent_Medium_value_payments,791.8101529,0,1.3538,0.3948,-1.0701,-1.7194,0.9177 -0x15f79,CUS_0x456d,August,55,594-26-5566,Lawyer,36368.55,2782.7125,6,5,15,4,"Student Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",8.77279439,9,5.9,3,Standard,950.56,29.40702007,,No,95.43359014,327.4867426,!@9#%8,145.3509173,0,0.2354,-1.8351,1.6707,-0.7642,-0.6423 -0x15f85,CUS_0x4ba7,August,18,102-98-8503,Mechanic,28150.72,2583.893333,8,4,5,0,,23.82374531,21,17.1,7,Standard,756.3,29.82380729,23 Years and 8 Months,Yes,0,298.8036669,Low_spent_Small_value_payments,249.5856664,0,-1.0533,-1.0512,-0.4434,-1.0318,-2.5175 -0x15f91,CUS_0xb7ea,August,26,#F%$D@*&8,Mechanic,12975.96,,8,5,16,1,Home Equity Loan,15.99653806,12,2.93,4,Standard,531.08,29.80376856,26 Years and 2 Months,No,5.76627588,67.67783225,Low_spent_Small_value_payments,320.1888919,0,0.6224,-0.6356,-1.1329,0.3522,-0.8677 -0x15f9d,CUS_0x36ff,August,80,881-57-6870,Architect,45780.86,3541.071667,6,6,19,5,"Credit-Builder Loan, Personal Loan, Home Equity Loan, Auto Loan, and Auto Loan",,16,16.18,12,Standard,984.91,34.73462568,6 Years and 4 Months,Yes,125.9581068,,Low_spent_Large_value_payments,192.765224,0,1.2167,-0.8764,-1.1965,-0.0797,0.2196 -0x15fa9,CUS_0xdef,August,55,857-73-1928,Media_Manager,158604,,4,3,1,4,"Payday Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",,9,0.54,3,Good,203.93,34.95326525,32 Years and 11 Months,No,438.342387,294.1456102,High_spent_Large_value_payments,834.8120028,0,-0.5962,0.4201,-0.2878,0.2701,-0.8978 -0x15fb5,CUS_0xbaab,August,21,420-43-4881,Accountant,28184.28,,7,5,10,1,Auto Loan,20.69043223,13,13.32,5,_,775.9252729,32.93093063,,Yes,10300,239.921233,!@9#%8,294.4479869,0,-0.2415,1.6657,0.3301,1.4419,0.4378 -0x15fc1,CUS_0xc3aa,August,31,172-48-6355,_______,24974.35,,8,7,8,0,,,10,12.58,9,Standard,331.11,31.10327986,28 Years and 6 Months,NM,0,77.97337977,Low_spent_Medium_value_payments,418.6462036,0,1.2816,0.924,0.3385,1.5257,-1.6592 -0x15fcd,CUS_0x7a46,August,29,954-07-2712,Journalist,9979.875,,8,5,17.06745738,1,Credit-Builder Loan,,19.00902834,12.57,2,Standard,1563.807826,39.62636037,27 Years and 11 Months,Yes,6.047450347,51.83688406,Low_spent_Medium_value_payments,292.7610026,0,-0.6105,0.8153,-0.2417,-0.101,-3.2169 -0x15fd9,CUS_0xa0d,August,48,655-78-0925,Scientist,19205.485,1828.457083,5,5,1,4,"Payday Loan, Student Loan, Student Loan, and Payday Loan",,10,4.01,3,Good,344.1936493,31.74996388,20 Years and 3 Months,No,39.41708646,85.39338821,!@9#%8,348.2527313,0,1.0732,2.1047,0.4585,-0.1337,0.2346 -0x15fe5,CUS_0x754d,August,50,257-18-5219,Entrepreneur,19891.58,,4,300,7,4,"Home Equity Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",15.18381648,12,3.12,2,Good,280.5769755,39.08607855,29 Years and 0 Months,No,187.2695295,130.7779256,Low_spent_Small_value_payments,265.4748601,0,0.7323,0.1668,2.1603,0.035,-0.4984 -0x15ff1,CUS_0x1e98,August,55,933-85-2688,Accountant,114082.64,9508.886667,6,3,9,0,,20.22492841,,10.61,3,Standard,38.01573767,41.35218099,22 Years and 0 Months,No,0,421.1072355,High_spent_Medium_value_payments,830.7606675,0,-0.3079,-0.1394,1.1951,0.6205,-0.0325 -0x15ffd,CUS_0x58ea,August,38,503-18-6343,Manager,30247.7,,5,6,10,7,"Auto Loan, Not Specified, Not Specified, Payday Loan, Not Specified, Not Specified, and Personal Loan",,10,15.87,8,_,841.39,34.99671591,12 Years and 11 Months,Yes,90.59921819,108.1456182,Low_spent_Small_value_payments,324.1193303,0,0.0441,0.5785,-0.2552,0.3262,-0.7028 -0x16009,CUS_0x440f,August,23,199-11-6403,Journalist,18207.375,,0,3,3,3,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",4.646065188,5,5.8,4,Good,589.65,34.6446861,23 Years and 5 Months,NM,35.11545669,111.3689168,High_spent_Small_value_payments,273.7437515,0,0.5416,0.3504,0.6959,-1.8478,1.1552 -0x16015,CUS_0xa94f,August,36,375-86-0761,Journalist,56340.6,4837.05,3,1,12,1,Auto Loan,11.44817849,11,11.51,3,Good,500.2367184,35.94655086,23 Years and 10 Months,No,26.80920043,42.98634935,High_spent_Large_value_payments,659.4727654,0,-0.6888,-1.4296,-0.7156,-0.4085,-1.0244 -0x16021,CUS_0xabd9,August,25,299-80-2126,Engineer,62571.84,,2,2,7,3,"Home Equity Loan, Home Equity Loan, and Not Specified",0,3,17.16,1,_,472.54,32.87391512,23 Years and 8 Months,No,103.5581985,,High_spent_Medium_value_payments,604.2702168,0,0.1591,-0.6923,-0.9463,0.0255,-1.1336 -0x1602d,CUS_0x6b7c,August,25,011-38-4224,Entrepreneur,81334.68,6766.89,9,411,32,2,"Auto Loan, and Not Specified",,27.72754529,13.62,11,Bad,1874.789939,27.42095309,13 Years and 9 Months,Yes,99.2796392,,High_spent_Small_value_payments,703.9320104,0,0.5772,-1.344,-1.267,-1.1056,-1.3961 -0x16039,CUS_0x4bd,August,55,422-79-5494,Mechanic,36274.17,3106.8475,8,4,15,4,"Student Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",19.31783507,16,8.99,6,Standard,237.17,23.11038431,26 Years and 2 Months,No,83.92104895,,High_spent_Small_value_payments,431.5770521,0,-0.455,-0.4312,-0.0124,0.7856,1.8854 -0x16045,CUS_0x6956,August,31,807-24-3038,Doctor,61883.44,4914.953333,9,7,28.06745738,100,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",,25.57501298,18.18,7,Bad,5570.05997,31.35955018,5 Years and 8 Months,Yes,231.0384276,395.824973,Low_spent_Small_value_payments,127.9116448,0,0.8202,-1.688,-0.4477,0.2017,-1.1763 -0x16051,CUS_0x652c,August,49,763-63-9015,Developer,59703.46,,3,3,8.288361749,4,"Personal Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",6.157846218,8,9.36,4,Good,621.5,30.46194863,24 Years and 6 Months,No,49752,611.6274931,High_spent_Small_value_payments,420.2714784,0,-0.177,-0.1238,0.3171,0.6161,0.4507 -0x1605d,CUS_0x944,August,42,992-65-1613,Manager,119402.64,9679.22,8,7,19,3,"Personal Loan, Credit-Builder Loan, and Mortgage Loan",10.3711842,10,3.39,7,_,766.15,33.40453505,29 Years and 8 Months,NM,176.1574914,82.13792858,High_spent_Large_value_payments,949.62658,0,-0.485,-1.5672,0.0103,1.2132,-0.5467 -0x16069,CUS_0x8d39,August,41,801-53-9308,Teacher,40740.44,,4,3,10,100,"Payday Loan, Not Specified, Home Equity Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",19.70900112,11.2855866,,10,_,277.7167592,31.02278315,18 Years and 6 Months,Yes,144.4111568,69.24343037,High_spent_Medium_value_payments,369.4490795,0,0.3966,1.4197,-0.9402,-0.0011,1.1788 -0x16075,CUS_0x47e3,August,38,326-46-1131,Architect,7750.735,,3,7,25,3,"Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",24.27645234,19.90633725,18.72,14,Standard,1786.879999,25.5262828,10 Years and 6 Months,Yes,17.19111019,,High_spent_Medium_value_payments,284.7526797,0,-0.0686,-0.1696,-0.5145,-1.6199,-0.0189 -0x16081,CUS_0xbfe7,August,22,171-94-6968,Teacher,8693.97,,6,5,18,7,"Auto Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, and Mortgage Loan",38.23779005,25,17.72,10,Bad,1496.11,38.70031237,12 Years and 6 Months,Yes,29.31050842,41.31206058,Low_spent_Small_value_payments,286.927181,0,0.5526,-0.133,-1.2322,0.339,1.6904 -0x1608d,CUS_0x6e8,August,52,061-88-8236,Lawyer,76040.82,,7,4,8,4,"Student Loan, Personal Loan, Personal Loan, and Payday Loan",,15,9.23,3,Standard,982.4,37.78990835,17 Years and 6 Months,Yes,223.694107,10000,Low_spent_Medium_value_payments,353.0802988,0,-0.6057,-1.4406,-0.5462,-0.6229,1.0937 -0x16099,CUS_0x6573,August,40,682-25-4861,Doctor,8922.155,,6,8,24.88954781,7,"Personal Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Payday Loan, and Home Equity Loan",18.72206538,,18.61,9,Bad,4304.064101,39.4907857,2 Years and 4 Months,Yes,1372.022449,117.2514417,!@9#%8,217.2882804,0,-0.3717,-1.2058,0.1388,1.9372,-0.8838 -0x160a5,CUS_0x40d7,August,18,480-05-6444,Engineer,18191.86,,9,5,28.06745738,6,"Home Equity Loan, Student Loan, Student Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",39.44484591,21,25.2,6,Bad,4683.530954,26.80671977,12 Years and 10 Months,Yes,78.56152135,83.36537615,Low_spent_Large_value_payments,207.7516479,0,1.4437,-0.6527,0.1922,-0.0593,-1.7727 -0x160b1,CUS_0x3dfe,August,27,662-33-1324,Engineer,39630.92,3169.576667,8,7,6,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Personal Loan",7.763814117,9,,9,Standard,2566.9,26.94636828,6 Years and 6 Months,Yes,78.76279139,107.0005272,High_spent_Medium_value_payments,381.1943481,0,0.4473,0.6597,2.2739,0.1347,-0.57 -0x160bd,CUS_0xbff8,August,36,758-99-6990,Lawyer,32086.38,2793.865,9,7,22.06745738,7,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Personal Loan, Not Specified, and Personal Loan",44.62219976,23,5.99,10,Bad,3088.900954,38.93650053,12 Years and 11 Months,Yes,120.1247539,,Low_spent_Medium_value_payments,216.9974632,0,0.2994,0.8193,-0.8585,-1.669,-0.0054 -0x160c9,CUS_0x5182,August,43,047-96-9953,Engineer,14562.32,1168.526667,7,8,3802.067457,4,"Not Specified, Personal Loan, Personal Loan, and Payday Loan",56.28578901,30.67436134,7.21,16,Bad,2313.229293,31.31412806,19 Years and 0 Months,Yes,43.09042995,77.89422359,Low_spent_Small_value_payments,259.1477252,0,-0.8724,-0.1658,2.4979,-1.8702,-0.8863 -0x160d5,CUS_0x880e,August,19,601-03-2677,Entrepreneur,58962.2,5086.516667,10,7,15,9,"Auto Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, and Student Loan",,22,18.89,13,Bad,4294.21,31.13691296,,Yes,289.2815178,77.35371111,High_spent_Large_value_payments,382.0164378,0,0.7664,-1.2423,-0.176,0.3316,0.7553 -0x160e1,CUS_0x45af,August,33,#F%$D@*&8,Media_Manager,35022.76,,6,4,11,3,"Home Equity Loan, Auto Loan, and Home Equity Loan",26.58971656,17,11,3,_,794.33,28.47380034,23 Years and 2 Months,No,64.4411065,111.1522694,Low_spent_Small_value_payments,379.0629575,0,0.9515,-0.326,-0.363,-1.3655,-0.4755 -0x160ed,CUS_0x2d05,August,36,#F%$D@*&8,Media_Manager,30910.68,2066.926954,6,3,17,3,"Mortgage Loan, Payday Loan, and Home Equity Loan",27.71179379,20,15.53,11,Standard,340.8240562,37.75341917,11 Years and 6 Months,Yes,362.9717567,30.11347697,High_spent_Large_value_payments,396.4074649,0,0.6581,-1.6486,1.3676,-2.1596,-0.1002 -0x160f9,CUS_0x7ea2,August,31,584-85-1295,Teacher,19956.75,,6,5,1,2,"Personal Loan, and Home Equity Loan",17.83275782,,6.36,6,_,1128.691343,33.25526569,,No,28.52010955,136.0234964,Low_spent_Small_value_payments,301.3025766,0,0.5927,1.7963,0.577,0.6223,0.3636 -0x16105,CUS_0x9ad,August,21,692-76-3442,Lawyer,49116.74,,4,4,16,387,"Personal Loan, Personal Loan, and Not Specified",19.95189769,15,12.07,5,Standard,1429.53,41.77764471,18 Years and 5 Months,Yes,112.6573794,88.47965441,High_spent_Medium_value_payments,483.1691329,0,0.9514,-0.5761,0.3876,0.8235,-0.0228 -0x16111,CUS_0xc03f,August,18,190-20-8188,Writer,126578.8,10817.23333,3,6,6,4,"Payday Loan, Payday Loan, Auto Loan, and Home Equity Loan",15.60079112,14,13.57,7,Standard,1156.17,38.34879335,19 Years and 0 Months,Yes,328.6588026,955.0665693,Low_spent_Medium_value_payments,77.99796145,0,0.3653,0.5828,-0.7468,-0.8298,-0.4123 -0x1611d,CUS_0x29dd,August,28,781-37-9008,Media_Manager,38218.3,,7,3,16,5,"Debt Consolidation Loan, Payday Loan, Not Specified, Payday Loan, and Home Equity Loan",8.282970892,8,11.78,13,Standard,1167.12502,32.81055074,19 Years and 3 Months,Yes,113.1464971,91.73163283,High_spent_Medium_value_payments,381.8011725,0,-1.3346,0.2527,-0.7545,-1.117,-1.789 -0x16129,CUS_0x2bf1,August,18,432-85-2655,Lawyer,73128,5796,5,6,20,1,Auto Loan,,12,15.63,4,_,1237.13,38.85820705,20 Years and 4 Months,Yes,42.36714782,91.34941392,High_spent_Large_value_payments,685.8834383,0,-2.1142,-2.8712,0.2123,-0.5059,1.8158 -0x16135,CUS_0x85be,August,25,808-96-6273,Writer,19669.56,,8,8,31.95700519,100,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",,24,17.01,6,Bad,4535.820954,42.11984123,,Yes,1392.504404,15.0849055,High_spent_Large_value_payments,299.373321,0,0.0792,-0.7599,-0.6698,-0.6402,0.2513 -0x16141,CUS_0x5953,August,38,603-30-8078,Journalist,147894.56,12186.54667,0,5,3.288361749,0,,5.574523042,7,0.57,2,_,1161.657508,29.82074787,16 Years and 10 Months,No,0,1567.985823,Low_spent_Medium_value_payments,498.793599,0,-0.0588,0.1197,-0.8854,-1.5451,-0.1599 -0x1614d,CUS_0x855f,August,43,153-56-1810,Lawyer,142204.08,,6,7,17,4,"Auto Loan, Not Specified, Payday Loan, and Home Equity Loan",18.17558805,13.11899278,3.43,3,_,1381.402956,38.99629567,24 Years and 0 Months,Yes,250.4088814,968.4281974,Low_spent_Medium_value_payments,275.2969212,0,0.0607,-0.5787,0.9772,-1.3991,0.7158 -0x16159,CUS_0xb3aa,August,19,275-61-6396,Scientist,127594.92,10535.91,5,4,4.288361749,2,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",7.312468293,8,14.55,10,Standard,1321.69,30.26754852,17 Years and 10 Months,NM,231.4532491,1345.798245,Low_spent_Large_value_payments,166.2769666,0,0.5399,-0.4376,0.2803,-1.611,0.4784 -0x16165,CUS_0x2508,August,45,811-51-3882,Musician,15131.11,1321.925833,7,8,15,9,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Student Loan, Credit-Builder Loan, Not Specified, Personal Loan, Payday Loan, and Debt Consolidation Loan",21.95311829,16.85281013,18.12,7,Bad,2999.335527,29.44942888,1 Years and 11 Months,Yes,86.06891364,,Low_spent_Small_value_payments,245.2809762,0,-0.2512,-0.3478,1.1537,1.9743,1.1812 -0x16171,CUS_0x65e4,August,45,609-54-4421,Doctor,63733.54,4720.400924,4,5,13,4,"Student Loan, Not Specified, Not Specified, and Mortgage Loan",,16,11.74,3,Standard,487.0332626,33.08650268,16 Years and 5 Months,Yes,645.6379857,109.135866,High_spent_Medium_value_payments,464.665218,0,0.8343,-0.9844,0.2101,-0.8785,-0.5063 -0x1617d,CUS_0x4aef,August,20,951-50-2417,Accountant,20137.56,,6,5,30,2,"Home Equity Loan, and Home Equity Loan",33.32986479,22.79667282,10.17,8,_,2906.694299,27.35594757,,Yes,31.67468057,,High_spent_Small_value_payments,380.3842206,0,0.2518,-0.5765,-0.733,-0.6599,0.3396 -0x16189,CUS_0x3d99,August,46,776-42-6105,Accountant,167258.04,12986.31552,5,1123,12,0,,0,0,10.72,,Good,436.8342885,26.56801037,,No,1213.854476,1094.536313,Low_spent_Large_value_payments,726.8893024,0,1.2367,-1.7804,-1.0128,0.2724,-2.1802 -0x16195,CUS_0xc3df,August,26,468-78-1035,Accountant,10142.545,991.2120833,8,8,32.95700519,9,"Debt Consolidation Loan, Auto Loan, Payday Loan, Personal Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Auto Loan",,25.54656642,12,12,Bad,5694.121068,37.75129249,2 Years and 3 Months,NM,1378.052725,,!@9#%8,230.2962847,0,0.3704,-0.6671,-0.0239,-0.554,0.1471 -0x161a1,CUS_0x87e7,August,39,148-41-6203,Mechanic,59513.44,,5,7,1,1,Credit-Builder Loan,1.225521971,2.302026688,10.89,4,_,52.55177126,38.58544395,33 Years and 0 Months,No,37.87853262,305.4217598,High_spent_Small_value_payments,421.3450409,0,-1.0481,1.3564,-2.0853,0.643,0.1555 -0x161ad,CUS_0x1dcf,August,49,181-80-6490,Writer,40331.05,3106.920833,5,5,3,2,"Auto Loan, and Personal Loan",,11.92524591,10.56,2,Good,843.3443797,39.40410367,20 Years and 0 Months,No,64.765007,,High_spent_Medium_value_payments,372.101325,0,-1.7032,0.3217,-0.4726,1.6505,0.3544 -0x161b9,CUS_0x2bf4,August,53,206-02-5700,Lawyer,42586.46,,5,3,6,3,"Student Loan, Credit-Builder Loan, and Home Equity Loan",11.1478422,7,-6.03,2,_,1053.75,39.12445661,29 Years and 11 Months,No,64.00895861,33.34691328,!@9#%8,513.7312948,0,0.7548,-0.1978,0.2187,1.1713,-0.3816 -0x161c5,CUS_0x79bf,August,31,871-58-3781,Journalist,9533.995,,9,5,25,8,"Credit-Builder Loan, Payday Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Auto Loan",,21,19.72,10,Bad,2579.1,31.6768918,7 Years and 11 Months,NM,61.36642782,35.52514298,Low_spent_Small_value_payments,272.8583875,0,-0.7697,0.328,-0.8954,1.4589,-1.1826 -0x161d1,CUS_0x47c1,August,21,749-16-4561,Writer,33729.28,,6,8,28.06745738,9,"Mortgage Loan, Not Specified, Mortgage Loan, Student Loan, Student Loan, Mortgage Loan, Not Specified, Auto Loan, and Credit-Builder Loan",51.67872643,29.31168735,29.86,11,Bad,5267.182227,36.16829855,5 Years and 0 Months,Yes,129.482589,230.0618921,!@9#%8,186.4125643,0,-0.293,1.1021,-0.2858,1.1681,-0.3157 -0x161dd,CUS_0x37a4,August,25,797-48-3371,Entrepreneur,80857.56,6769.13,6,9,15,4,"Auto Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",42.07676719,24.78281517,16.38,13,_,2628.469641,26.8650936,19 Years and 4 Months,Yes,164.7760378,130.0856604,High_spent_Large_value_payments,622.0513018,0,0.8827,-0.7873,0.578,-1.3209,2.1896 -0x161e9,CUS_0x47ec,August,20,#F%$D@*&8,Architect,40314.54,3653.545,9,7,32,9,"Personal Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",,19.75406102,3.17,7,Bad,2525.290368,34.58956792,13 Years and 5 Months,Yes,284.9562118,259.1991181,Low_spent_Medium_value_payments,101.1991701,0,-0.9302,-0.94,0.3374,-0.8859,1.7606 -0x161f5,CUS_0x2d3e,August,43,771-64-8544,Architect,68214.9,5660.575,6,5,7,2,"Not Specified, and Personal Loan",,12,16.22,6,Standard,978.49,26.59988347,28 Years and 2 Months,Yes,59.13169478,110.6878174,High_spent_Medium_value_payments,646.2379878,0,0.1918,-2.0769,-1.0555,0.3945,0.3258 -0x16201,CUS_0x8f6a,August,25,789-04-6740,Teacher,20365.57,1642.130833,10,9,30.88954781,6,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",33.69313871,24,24.6,17,_,2924.35,25.13337988,5 Years and 3 Months,Yes,1418.7307,127.2693469,Low_spent_Medium_value_payments,203.8829554,0,2.064,1.6222,0.353,-0.8288,-1.8295 -0x1620d,CUS_0x649d,August,23,792-87-7976,Architect,23767.59,2044.6325,8,1386,7,4,"Personal Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",,17,9.15,10,Standard,140.57,27.09654838,20 Years and 0 Months,Yes,46.79928932,,!@9#%8,344.0647654,0,-1.9912,1.2912,-0.6753,1.5577,0.3022 -0x16219,CUS_0xc6dd,August,28,158-71-6199,Entrepreneur,48819.34,,5,4,14,3,"Debt Consolidation Loan, Auto Loan, and Credit-Builder Loan",,12,11.28,5,Standard,535.3,29.5323054,8 Years and 0 Months,NM,68.30643798,214.781726,Low_spent_Small_value_payments,425.0396694,0,-1.4432,0.4513,0.373,0.701,0.0206 -0x16225,CUS_0x2dc6,August,46,262-10-1868,Writer,80574.12,6707.51,0,3,4,1,Payday Loan,15.35323769,,2,2,Good,1142.39,39.60440944,30 Years and 3 Months,No,56.99565328,191.7782625,High_spent_Medium_value_payments,671.9770842,0,-0.5052,0.1865,0.2948,0.5218,-0.5491 -0x16231,CUS_0x38df,August,54,958-49-4931,Architect,18140.575,,1,4,5,1,Mortgage Loan,16.54107966,,2.09,4,Good,850.7,34.8479332,17 Years and 0 Months,NM,7.954928158,,High_spent_Medium_value_payments,393.3143545,0,-0.8024,-1.0816,-2.5271,-0.6556,1.1204 -0x1623d,CUS_0x6dc5,August,19,#F%$D@*&8,Engineer,34860.05,,3,1,10,3,"Auto Loan, Student Loan, and Not Specified",,0,9.6,2,Good,1218.18,37.30840692,22 Years and 11 Months,NM,51.29232526,80.98137869,Low_spent_Large_value_payments,399.9267127,0,0.3663,-0.0458,0.2256,-0.1547,-1.0756 -0x16249,CUS_0xb556,August,22,065-00-5837,Manager,18145.22,,4,3,10,1,Home Equity Loan,3.292453634,7,8.36,2,_,1027.204917,36.49148429,16 Years and 5 Months,NM,12.84352243,11183.90854,Low_spent_Small_value_payments,253.8130212,0,0.1319,1.9447,-2.0639,0.6191,-1.9476 -0x16255,CUS_0x264a,August,35,893-00-6129,Doctor,18753.34,1623.778333,5,4,11,4,"Personal Loan, Home Equity Loan, Not Specified, and Auto Loan",18.69668152,13,18.1,9,_,2575.62,35.10498353,15 Years and 5 Months,Yes,54.39627003,185.4688993,Low_spent_Small_value_payments,212.512664,0,1.1519,-0.7986,1.1907,-0.1135,0.3888 -0x16261,CUS_0x5d5f,August,26,740-49-8165,Teacher,60363.5,5277.291667,3,7,4.288361749,0,,0,0,2.38,0,_,140.4107577,37.25712059,17 Years and 11 Months,No,0,,Low_spent_Small_value_payments,285.2563296,0,-0.4724,0.406,-0.386,-0.2459,-1.2332 -0x1626d,CUS_0x8e73,August,35,733-72-3818,Architect,15807.59,,6,8,29.06745738,5,"Personal Loan, Personal Loan, Not Specified, Mortgage Loan, and Payday Loan",26.03987973,15,7.59,10,_,2624.370954,39.50674405,14 Years and 8 Months,Yes,39.44534882,93.90973477,High_spent_Small_value_payments,239.7545451,0,0.2266,0.2451,0.3927,0.2207,0.9161 -0x16279,CUS_0x476c,August,28,643-75-6294,Manager,37688.55,3317.7125,2,6,1.288361749,4,"Payday Loan, Student Loan, Auto Loan, and Mortgage Loan",9.108363299,10,3.27,7,Good,24.48759414,33.15881947,25 Years and 2 Months,No,114.3337212,510.8007216,High_spent_Medium_value_payments,387.7660863,0,1.6529,-0.9511,1.0671,-0.9178,-0.0487 -0x16285,CUS_0x67a9,August,28,909-77-7191,Scientist,16268.51,1447.709167,6,6,19,2,"Mortgage Loan, and Not Specified",30.32651429,22,12.8,4,_,2181.28,38.05792037,17 Years and 11 Months,Yes,25.1260605,149.2451993,Low_spent_Small_value_payments,260.3996568,0,0.2069,3.3758,-0.5183,0.1301,0.4353 -0x16291,CUS_0x1000,August,20,913-74-1218,Lawyer,30625.94,,6,5,28.06745738,2,"Credit-Builder Loan, and Home Equity Loan",54.39017743,30.54789832,1.63,11,Bad,1936.045647,31.10049507,10 Years and 9 Months,Yes,42.94109042,77.31427572,High_spent_Medium_value_payments,373.6405126,0,0.5365,-0.3802,0.2652,1.1246,-0.275 -0x1629d,CUS_0x8124,August,28,702-30-5849,Journalist,15383.46,1325.955,3,2,1,4,"Student Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",12.29680245,11,6.03,1352,Good,511.27,29.8746473,18 Years and 0 Months,No,31.67114259,36.58121331,Low_spent_Medium_value_payments,344.3431441,0,-1.7065,0.6193,1.0041,1.1517,2.054 -0x162a9,CUS_0xa751,August,31,694-90-3548,Entrepreneur,19506.72,,10,6,17.06745738,7,"Payday Loan, Mortgage Loan, Student Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",,15,20.72,9,_,5073.980954,23.52064724,13 Years and 5 Months,Yes,111.8767031,127.0791133,Low_spent_Medium_value_payments,174.8798956,0,0.4028,-0.0166,-1.0443,0.0332,1.1112 -0x162b5,CUS_0x446f,August,52,318-09-4149,Accountant,56381.6,4535.466667,5,3,1,3,"Credit-Builder Loan, Mortgage Loan, and Payday Loan",3.101428738,6,0.81,6,_,1371.48,35.35433939,30 Years and 2 Months,No,119.6230081,172.1013336,Low_spent_Medium_value_payments,441.8223249,0,-1.0898,0.1435,-1.3753,-1.6969,1.2842 -0x162c1,CUS_0x3040,August,29,755-93-6252,Engineer,7056.405,,4,3,30,4,"Home Equity Loan, Mortgage Loan, Student Loan, and Auto Loan",24.38273918,16.62136366,14.06,11,Standard,2917.508195,41.33587816,16 Years and 6 Months,Yes,16.37229285,17.6500786,Low_spent_Medium_value_payments,294.5810035,0,-0.3084,0.9091,2.0139,-0.8254,0.1638 -0x162cd,CUS_0xb8f6,August,45,367-94-5147,_______,70943.86,,1155,4,11.28836175,0,Personal Loan,18.8314011,16,13.14,6,Standard,326.61,33.84914371,32 Years and 4 Months,Yes,39.69075362,811.740923,Low_spent_Large_value_payments,436.7046177,0,2.1011,0.676,-0.0734,0.9466,1.1181 -0x162d9,CUS_0x7a05,August,25,566-31-7717,_______,32520.93,,8,3,7,0,,11.76857149,10,7.95,4,Standard,1212.98,25.51936269,19 Years and 4 Months,NM,0,97.18579656,Low_spent_Large_value_payments,459.6219534,0,1.0805,-1.6023,0.7038,1.0326,-0.6143 -0x162e5,CUS_0x721,August,43,618-56-4729,Scientist,14297.72,1129.476667,10,5,25.06745738,7,"Payday Loan, Personal Loan, Not Specified, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Not Specified",,24.31071111,3.5,8,Bad,3069.358924,32.62676494,17 Years and 10 Months,Yes,77.97500513,,High_spent_Large_value_payments,221.335529,0,-0.3522,-1.5766,-0.9483,-0.4809,-0.9617 -0x162f1,CUS_0x9ee4,August,54,425-72-7007,Manager,102745.4,8615.116667,3,4,11,0,,16.84723278,15,3.8,4,Good,401.9565046,32.50294882,16 Years and 8 Months,No,0,,Low_spent_Large_value_payments,572.3695282,0,0.6424,-0.2641,-1.1195,-0.8767,-1.6042 -0x162fd,CUS_0x552,August,52,837-55-2459,Engineer,161006.32,13449.19333,0,2,7,1,Payday Loan,,0,2.6,0,Good,545.1109518,40.7164424,18 Years and 11 Months,NM,91.88030277,1223.258602,Low_spent_Medium_value_payments,443.1176513,0,-1.3367,-1.3361,0.7824,0.4694,0.4203 -0x16309,CUS_0x38c1,August,24,422-91-7585,Entrepreneur,31217.34,,9,10,16,6,"Not Specified, Credit-Builder Loan, Not Specified, Personal Loan, Student Loan, and Credit-Builder Loan",,22,6.63,14,_,2495.35,25.07699738,12 Years and 9 Months,Yes,81.6961794,,Low_spent_Small_value_payments,233.0788711,0,0.9612,0.2581,-0.1032,-0.01,-0.579 -0x16315,CUS_0x6700,August,36,#F%$D@*&8,Doctor,63213.12,,4,4,8.288361749,4,"Payday Loan, Payday Loan, Not Specified, and Student Loan",6.362761182,7,8.47,7,Good,518.6565241,33.64943013,23 Years and 5 Months,No,166.1176527,,Low_spent_Small_value_payments,120.1712056,0,2.0279,-0.9092,0.44,1.6358,0.2449 -0x16321,CUS_0xb71e,August,25,819-06-5794,Scientist,68354.84,,5,5,7,7,"Personal Loan, Auto Loan, Student Loan, Home Equity Loan, Student Loan, Payday Loan, and Not Specified",11.63898342,10,21.95,5,_,914.82,27.08624996,9 Years and 6 Months,Yes,241.7463336,127.7090733,High_spent_Medium_value_payments,465.6682598,0,0.7696,0.0975,1.0116,-2.0233,-0.6777 -0x1632d,CUS_0xac5f,August,44,840-92-7027,Teacher,35531.83,2743.985833,1,4,11.28836175,4,"Credit-Builder Loan, Mortgage Loan, Auto Loan, and Personal Loan",10.88047502,11,1.66,9,Good,282.6624535,20.58124334,17 Years and 10 Months,No,75.17187482,748.688401,Low_spent_Small_value_payments,196.0418445,0,1.5685,0.1615,0.072,-0.0413,1.2307 -0x16339,CUS_0xa8b9,August,22,679-69-9451,Doctor,23838.09,2031.5075,5,6,13,4,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Auto Loan",,11.61666157,7.15,7,Standard,871.2780807,39.30335383,30 Years and 5 Months,Yes,53.30809889,80.45043775,Low_spent_Large_value_payments,339.3922134,0,-1.5078,-0.3605,-0.7702,-0.1002,-0.9486 -0x16345,CUS_0x5523,August,25,871-01-3296,Lawyer,73062.6,6267.55,4,7,20,4,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",16.01685163,13,14.24,8,Standard,249.4316264,35.42089661,17 Years and 5 Months,Yes,176.8524434,79.95740614,High_spent_Large_value_payments,617.5333013,0,-0.9831,-1.3936,-0.7334,0.2706,1.6111 -0x16351,CUS_0x7467,August,21,883-64-0324,Developer,64341.36,,2,3,0.288361749,0,,1.11674095,5,1.6,5,Good,642.93,30.27496395,30 Years and 10 Months,No,0,642.9194089,High_spent_Medium_value_payments,589.1960521,0,-1.063,-1.5894,0.14,-0.8263,-0.4327 -0x1635d,CUS_0x1348,August,43,#F%$D@*&8,Lawyer,28825.73,2648.144167,5,6,19,5,"Auto Loan, Home Equity Loan, Student Loan, Payday Loan, and Student Loan",26.15292945,20,16.21,8,Standard,1310.98,34.85138039,14 Years and 2 Months,Yes,76.40594993,43.10917222,High_spent_Medium_value_payments,395.2992945,0,0.2886,-0.3863,1.9296,0.4402,2.0441 -0x16369,CUS_0x2171,August,26,704-85-3416,Journalist,22015.68,,6,5,7,5,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",17.70620099,12,17.68,7,Standard,775.52,28.83413373,12 Years and 10 Months,Yes,74.74171041,54.54246348,High_spent_Medium_value_payments,324.4798261,0,-1.551,0.2633,0.6946,1.0325,0.5663 -0x16375,CUS_0x18f4,August,23,123-85-8897,Teacher,35805.25,,4,7,16,0,,,15,3.81,2,Standard,723.27,37.07935873,25 Years and 3 Months,No,0,99.90848167,High_spent_Medium_value_payments,460.7686017,0,-0.0256,-0.7231,0.4057,-0.0966,0.3907 -0x16381,CUS_0x8e71,August,33,831-07-4489,Manager,51660.42,4311.035,6,6,10,4,"Auto Loan, Not Specified, Student Loan, and Mortgage Loan",,17,13.45,8,Standard,358.9,38.26793054,23 Years and 2 Months,Yes,94.53644988,,High_spent_Medium_value_payments,530.3565381,0,-0.1138,-0.4759,-1.0274,0.6562,1.52 -0x1638d,CUS_0x22ea,August,24,602-45-5807,Manager,61016.88,5090.74,4,3,3,1,Personal Loan,10.60658198,12,11.01,6,_,988.23,39.67233638,32 Years and 3 Months,No,49.72301525,200.7040671,High_spent_Medium_value_payments,508.6469177,0,0.9219,-0.1579,0.0043,-0.6592,0.428 -0x16399,CUS_0x8aa2,August,37,231-43-8484,Writer,68103.81,5270.796896,8,7,2,0,,8.364675003,8,3.41,3,Good,61.86727915,25.71966363,33 Years and 6 Months,No,669.520604,264.4951124,!@9#%8,616.6589351,0,-0.7918,-0.3195,-0.3128,-0.8223,-0.2643 -0x163a5,CUS_0x2bdc,August,29,454-30-4171,Writer,119223.09,10046.2575,0,6,2,0,,,4.716621632,4.53,4,_,16.98256262,37.30540655,22 Years and 3 Months,No,0,201.1301815,High_spent_Large_value_payments,1043.495569,0,-1.8198,1.6266,1.7872,0.42,0.1959 -0x163b1,CUS_0x85c6,August,18,175-90-4269,Teacher,14394.435,,5,6,5,5,"Auto Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, and Payday Loan",19.24064075,14,10.18,4,Standard,159.41,28.0154518,20 Years and 2 Months,Yes,53.51701552,64.21663638,Low_spent_Medium_value_payments,307.5199731,0,0.3695,0.3996,0.0617,0.3665,0.4645 -0x163bd,CUS_0xadef,August,27,154-27-1727,Lawyer,34797.74,,6,4,7,3,"Personal Loan, Payday Loan, and Personal Loan",14.1589499,10,5.08,3,Standard,874.86,30.46640327,31 Years and 8 Months,Yes,56.27407816,,Low_spent_Medium_value_payments,216.5942378,0,1.4346,0.6923,-0.014,0.0184,0.1561 -0x163c9,CUS_0x9a02,August,36,120-05-9806,Entrepreneur,17840.72,,10,6,29,8,"Payday Loan, Student Loan, Auto Loan, Payday Loan, Student Loan, Mortgage Loan, Not Specified, and Home Equity Loan",28.38822069,17,29.48,,Bad,2651.74,29.86740597,7 Years and 5 Months,Yes,118.0360464,100.2778714,Low_spent_Small_value_payments,199.2587489,0,-0.016,0.0954,-0.7918,0.3164,0.1861 -0x163d5,CUS_0xa001,August,27,006-12-2174,Developer,67648.36,,1164,8,35.95700519,9,"Home Equity Loan, Student Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,21.46882767,1.58,10,Bad,5763.402247,31.58114475,6 Years and 5 Months,Yes,1584.164271,,Low_spent_Medium_value_payments,338.7122389,0,-0.9435,-0.4327,-0.4999,0.1918,0.7914 -0x163e1,CUS_0x6f2,August,40,189-20-3120,Lawyer,33930.63,3061.5525,5,5,5,0,,13.18156722,9,11.37,6,_,138.97,36.65922899,29 Years and 11 Months,Yes,0,227.5770673,Low_spent_Large_value_payments,348.5781827,0,-0.557,0.6455,-0.5095,-0.4468,1.4172 -0x163ed,CUS_0x1dbd,August,26,699-27-2330,Developer,17169.365,1282.780417,4,3,21.06745738,0,,20.728295,13.87808769,5.65,3,Standard,1260.768867,29.74270412,30 Years and 8 Months,No,0,118.558192,Low_spent_Small_value_payments,272.9995618,0,0.0685,0.3846,0.6494,0.277,-1.1714 -0x163f9,CUS_0x22ba,August,48,103-76-4368,Architect,115023.36,9801.28,3,4,0.288361749,2,"Home Equity Loan, and Not Specified",1.72161219,4,-6.13,7,_,1143.52,24.83823432,21 Years and 5 Months,No,5041,1057.873357,Low_spent_Medium_value_payments,513.7786844,0,-0.6542,-1.9669,0.9026,-0.4315,-0.3397 -0x16405,CUS_0x3026,August,24,612-78-1569,Doctor,60214.04,5034.836667,7,5,18,5,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",26.10923745,20.29248155,1.97,12,Bad,1501.89215,36.68156419,13 Years and 10 Months,Yes,201.9560166,40.46506053,High_spent_Large_value_payments,501.0625896,0,-0.7351,-1.4724,0.0987,-1.9851,0.5326 -0x16411,CUS_0x6b59,August,24,992-54-9955,Developer,29041.4,,3,5,3,2,"Student Loan, and Payday Loan",0,0,8.58,1,Good,1137.142315,35.19020026,32 Years and 0 Months,No,37.02349818,134.9526689,Low_spent_Large_value_payments,362.6354996,0,-1.7751,0.0365,1.1762,-1.8851,-2.1126 -0x1641d,CUS_0x84b4,August,26,803-33-0206,Manager,16665.49,,6,7,21,4,"Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",16.91360939,12,13.44,7,Standard,2679.6,32.71661265,,Yes,41.64669483,42.77148889,High_spent_Small_value_payments,306.7608996,0,-0.793,-0.8555,-0.2451,1.2078,-0.0339 -0x16429,CUS_0x853d,August,42,328-21-9083,Lawyer,20028.04,,4,5,8,2,"Student Loan, and Not Specified",,19,2.85,7,Standard,528.22,38.98318745,12 Years and 4 Months,Yes,26.61314373,,!@9#%8,256.4107813,0,-0.8644,-0.039,-0.9259,-0.0038,-0.2997 -0x16435,CUS_0xc716,August,28,900-03-2348,Writer,14947.38,1191.615,8,10,4797.957005,6,"Personal Loan, Personal Loan, Auto Loan, Auto Loan, Student Loan, and Student Loan",34.54634674,20.517667,13.13,12,Bad,2557.603913,26.34838923,11 Years and 8 Months,Yes,1372.782341,,Low_spent_Small_value_payments,167.2466495,0,-0.047,-2.3229,-0.2077,2.5705,1.5409 -0x16441,CUS_0x682c,August,54,327-00-8482,Entrepreneur,37482.37,3182.530833,1,7,1,1,Not Specified,2.209952071,6.078772818,3.87,0,Good,1273.011153,24.54808218,,No,26.54322193,10000,High_spent_Small_value_payments,350.66086,0,0.6718,-1.6666,0.7492,0.7632,0.2303 -0x1644d,CUS_0x19de,August,34,162-12-7993,Lawyer,19140.25,,8,6,18,5,"Personal Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",39.37600141,24,4.11,10,Bad,3152.24,34.02004869,13 Years and 3 Months,NM,53.74566621,18.41802882,High_spent_Large_value_payments,328.6383883,0,-0.2509,0.9979,-0.3675,-2.0024,0.4345 -0x16459,CUS_0x2308,August,23,853-72-0269,Lawyer,19286.26,,9,9,20,6,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Personal Loan, and Auto Loan",30.81673854,19,28.01,14,Bad,4019.02,33.11877808,9 Years and 11 Months,Yes,66.33474977,42.86272012,High_spent_Small_value_payments,321.1213634,0,0.2824,0.3533,-1.1973,1.0967,-1.9032 -0x16465,CUS_0xac8e,August,19,990-90-4382,Mechanic,38904.52,,8,6,17,7,"Payday Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",29.76533369,21.72241865,14.95,5,Standard,376.148066,37.78841635,12 Years and 8 Months,Yes,173.4860591,113.5065554,High_spent_Small_value_payments,311.6117188,0,-2.4609,-0.0378,0.7751,-0.7531,-0.4613 -0x16471,CUS_0x6eb3,August,28,940-88-7389,Teacher,71716.6,5523.252385,3,5,9,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",21.8777201,20,7.65,7,_,418.54,38.80203268,16 Years and 11 Months,Yes,679.4240333,10000,High_spent_Small_value_payments,368.8402544,0,-1.1163,0.0994,-0.7765,-0.7226,-0.193 -0x1647d,CUS_0xa667,August,57,945-60-6497,_______,32021.48,,2,1,7,3,"Auto Loan, Payday Loan, and Payday Loan",0,0,4.7,5,_,1134.333299,25.52410735,33 Years and 6 Months,No,56.11966958,,Low_spent_Small_value_payments,226.4697796,0,-0.2402,-0.7386,-1.0398,-1.4919,0.0304 -0x16489,CUS_0x4f0a,August,23,471-82-7068,Journalist,7282.885,,7,7,25.06745738,7,"Home Equity Loan, Not Specified, Home Equity Loan, Personal Loan, Student Loan, Not Specified, and Home Equity Loan",33.88222886,19.44689414,6.77,6,Bad,4648.656598,27.71700627,7 Years and 0 Months,NM,34.00317846,41.91948792,Low_spent_Small_value_payments,244.247754,0,0.0965,1.1683,0.3993,-0.6246,-0.8233 -0x16495,CUS_0x1844,August,38,638-11-3367,Writer,11845938,636.715,6,6,5,3,"Not Specified, Student Loan, and Home Equity Loan",,13,15.49,6,Standard,1382.42,25.35741014,5 Years and 10 Months,Yes,10122,43.82720243,Low_spent_Medium_value_payments,276.2071017,0,-1.2703,1.5128,0.0412,1.4462,-0.1489 -0x164a1,CUS_0x5813,August,29,495-40-7800,Entrepreneur,106839.09,9018.2575,0,1,2535,2,"Home Equity Loan, and Payday Loan",9.828089372,8,9.96,9,Good,1138.94,29.09859218,31 Years and 5 Months,NM,105.4185611,100.5087311,High_spent_Large_value_payments,935.8984577,0,0.1362,0.9862,-1.0465,-0.6846,-0.1439 -0x164ad,CUS_0x9f25,August,35,069-47-0264,_______,28005.44,2582.786667,1,3,1,1,Student Loan,,3.410884395,3.25,3,Good,599.0537521,37.39878641,24 Years and 8 Months,NM,21.98061445,10000,High_spent_Small_value_payments,407.2521354,0,0.5206,-0.4733,0.0385,1.5444,0.1104 -0x164b9,CUS_0x159b,August,35,437-45-4869,Architect,55670.07,4395.1725,3,10,26,3,"Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,19,7.7,11,Standard,2074.85,37.91147818,7 Years and 0 Months,Yes,136.7747535,146.3984511,High_spent_Medium_value_payments,406.3440454,0,0.815,-2.3943,-0.2907,-0.5492,0.2163 -0x164c5,CUS_0x87df,August,29,876-74-5642,Media_Manager,15349.54,,9,7,23.06745738,100,"Student Loan, Not Specified, Not Specified, Not Specified, Personal Loan, Student Loan, Home Equity Loan, Payday Loan, and Auto Loan",41.72623711,25,27.08,14,_,3211.610954,37.91160021,12 Years and 4 Months,Yes,108.4610155,72.69007156,Low_spent_Small_value_payments,200.1414583,0,-1.2147,0.2968,-0.972,0.6312,0.401 -0x164d1,CUS_0xb644,August,26,682-75-1288,Scientist,44577.26,3838.771667,5,4,1,4,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Student Loan",1.157203471,5,5.98,3,Good,636.43,28.33402355,18 Years and 10 Months,No,124.7000728,124.478463,Low_spent_Medium_value_payments,414.6986308,0,0.6131,0.2495,0.4303,-0.2908,-1.5282 -0x164dd,CUS_0x7848,August,31,918-28-4144,Writer,113105.1,,4,3,12,1,Auto Loan,0,0,7.47,5,Good,894.8856075,32.63486749,18 Years and 9 Months,No,50.32667863,695.0340655,Low_spent_Large_value_payments,520.4486273,0,0.75,-0.4516,-0.6828,0.0392,1.0725 -0x164e9,CUS_0xb437,August,55,480-15-7639,_______,61169.82,4996.485,5,4,6,0,,15.46694931,15,8.85,3,Good,1046.694361,27.96458123,22 Years and 5 Months,No,59415,180.6983888,High_spent_Medium_value_payments,586.8452282,0,0.0773,-0.7339,0.8084,-0.9967,0.732 -0x164f5,CUS_0x5ece,August,56,598-13-8979,Teacher,79642.86,,2,5,5,3,"Auto Loan, Personal Loan, and Not Specified",0.920811698,4,4.15,1,Good,911.67,36.48062639,30 Years and 5 Months,No,172.8089158,69.78157327,High_spent_Medium_value_payments,658.4000109,0,0.1419,-1.9941,0.4006,-0.7384,1.4559 -0x16501,CUS_0xb9ae,August,26,121-97-1297,Doctor,17182.5,,0,6,11,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,1,,7,_,1174.870389,37.37694428,31 Years and 6 Months,No,19.84112855,149.0262708,!@9#%8,259.8938842,0,-0.5068,0.397,-0.3041,1.4035,0.4109 -0x1650d,CUS_0x5810,August,23,621-43-9828,Writer,103938.16,8864.513333,2,5,9,4,"Auto Loan, Auto Loan, Auto Loan, and Home Equity Loan",23.14272073,15,8.44,8,Standard,117.63,41.16644643,22 Years and 0 Months,Yes,324.5313172,291.5043134,High_spent_Medium_value_payments,520.4157028,0,-1.2729,-1.2962,0.727,0.0112,-0.5334 -0x16519,CUS_0x8702,August,35,319-16-7153,Accountant,19543.44,1592.62,8,5,16.06745738,7,"Credit-Builder Loan, Not Specified, Payday Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Auto Loan",37.97333417,24,25.57,16,Bad,3812.210954,32.99919812,,Yes,64.88541488,,Low_spent_Small_value_payments,149.561266,0,0.5924,0.3166,-0.1341,1.0872,-0.1173 -0x16525,CUS_0x970f,August,30,505-12-0535,Musician,121944.2,,3,6,2,1,Not Specified,23.40928384,17,9.16,6,Good,1344.25,36.59524859,30 Years and 5 Months,No,56.0355997,106.246864,High_spent_Large_value_payments,1102.419203,0,0.344,0.3382,0.8497,1.5137,-0.4563 -0x16531,CUS_0x75ee,August,25,488-13-8725,_______,44328.22,3710.018333,4,6,1,4,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",0,4,7.7,2,Good,537.6284826,25.18118735,29 Years and 10 Months,No,84.30765363,54.10305797,High_spent_Medium_value_payments,488.8429686,0,0.8985,0.4563,0.3714,0.3365,0.8747 -0x1653d,CUS_0x86c1,August,18,945-44-2551,Manager,15814.77,1300.8975,7,4,13,7,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Not Specified, Auto Loan, Not Specified, and Student Loan",7.529636492,6,10.69,10,Standard,902.47,28.23296301,20 Years and 0 Months,Yes,58.1199947,38.70727032,High_spent_Small_value_payments,293.262485,0,-0.3519,0.9846,0.8455,-1.175,0.9141 -0x16549,CUS_0xa556,August,44,304-18-9706,Media_Manager,39859.72,3102.643333,5,4,1,1,Credit-Builder Loan,4.657537164,7,6.16,3,_,1160.469369,29.3087534,33 Years and 3 Months,No,21.15615014,64.60176654,!@9#%8,480.6907088,0,0.6894,0.5301,-0.7455,0.8197,-1.7603 -0x16555,CUS_0xbd29,August,44,393-60-3317,Scientist,15427.215,1253.60125,0,3,8,4,"Mortgage Loan, Auto Loan, Not Specified, and Student Loan",0.308866889,2,11.22,8,Good,966.45,33.43942291,32 Years and 2 Months,No,48.81683362,126.9425491,Low_spent_Small_value_payments,239.6007423,0,-0.7883,0.0945,-1.372,-1.4048,-2.0656 -0x16561,CUS_0x5fd4,August,27,673-75-9639,Musician,73509.02,,5,5,20,0,,,19,6.69,8,Standard,1082.86,32.65059683,29 Years and 8 Months,Yes,0,,High_spent_Medium_value_payments,744.6583429,0,-0.4502,-1.6161,-2.15,-1.0432,2.091 -0x1656d,CUS_0x181c,August,20,255-78-5791,Manager,16348.87,1573.405833,10,9,25.06745738,7,"Personal Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Auto Loan, Payday Loan, and Mortgage Loan",24.26412847,16,7.75,9,Bad,1664.080954,35.41693566,6 Years and 10 Months,Yes,59.1748812,179.4635542,Low_spent_Small_value_payments,181.98186,0,-0.6976,0.6299,0.9965,-0.3123,0.5198 -0x16579,CUS_0xe7a,August,32,909-77-3458,Lawyer,7711.97,,10,5,30.06745738,7,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Auto Loan",,25.22513464,30.08,10,Bad,5526.647675,27.30065248,0 Years and 11 Months,Yes,29.56029982,44.3113944,Low_spent_Small_value_payments,228.9744345,0,-0.7264,1.5328,0.4166,-0.3811,-1.6582 -0x16585,CUS_0x1713,August,32,186-82-0006,Musician,54568.92,4452.41,10,10,24.95700519,9,"Debt Consolidation Loan, Student Loan, Student Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",,16.97057238,24.99,11,Bad,4004.314239,26.16284492,,NM,1600.78591,509.7004621,Low_spent_Small_value_payments,,0,1.1844,0.291,0.5427,0.3725,0.4572 -0x16591,CUS_0x844b,August,41,948-62-5361,Engineer,22195.605,,0,4,4,100,,15.03682426,,3.61,6,Good,1215.688921,29.02281258,18 Years and 11 Months,No,0,68.46321286,Low_spent_Large_value_payments,413.0426911,0,1.2673,0.7864,-0.4978,-0.4099,-0.4347 -0x1659d,CUS_0x53f6,August,26,740-76-9310,Writer,61064.08,,0,5,7,3,"Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",2.337335663,6,16.37,7,Good,1323.86,29.35936988,20 Years and 11 Months,No,94.25600619,150.0367853,Low_spent_Medium_value_payments,541.0745418,0,0.8028,-0.4594,-0.1667,0.7322,-0.7085 -0x165a9,CUS_0x3ccf,August,44,744-25-0877,Manager,36127.64,,2,5,3621,100,,,5,2.8,1,Good,770.1,32.59743032,25 Years and 4 Months,NM,47602,80.49984585,High_spent_Small_value_payments,451.7638208,0,-1.4192,0.0943,0.5306,0.1558,0.0298 -0x165b5,CUS_0x6801,August,24,236-52-4877,Writer,61224.33,4862.0275,4,5,12,1,Home Equity Loan,13.75796653,9,12.65,5,Standard,707.43,26.9862626,17 Years and 3 Months,Yes,38.30981031,206.2429628,High_spent_Medium_value_payments,491.6499769,0,1.2195,-1.511,-0.8609,0.1958,-1.071 -0x165c1,CUS_0x3528,August,55,505-50-0364,Journalist,23794.07,1771.839167,6,3,7,4,"Personal Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",,15,7.87,5,_,1436.59,39.93979247,17 Years and 5 Months,No,60.52471129,,Low_spent_Large_value_payments,235.3868674,0,0.0971,-0.2472,-0.9734,-1.0389,-0.7458 -0x165cd,CUS_0x8b31,August,44,#F%$D@*&8,Teacher,94811.36,7999.946667,4,5,10,6,"Student Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",,20,14.5,9,_,461.05,40.28768667,13 Years and 8 Months,Yes,248.4607171,461.7081384,Low_spent_Large_value_payments,359.8258112,0,-0.1725,1.5546,-1.3966,-0.7668,0.5077 -0x165d9,CUS_0x95ef,August,31,#F%$D@*&8,Mechanic,58427.31,4717.9425,10,5,23,4,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, and Auto Loan",41.34912294,22.07131115,18.39,6,Bad,2142.015174,38.05070957,17 Years and 6 Months,Yes,125.5956944,183.9357816,High_spent_Medium_value_payments,412.262774,0,2.0486,-0.7473,0.4558,-1.0116,-0.2126 -0x165e5,CUS_0x36c5,August,30,051-60-7823,Developer,32543.38,,5,6,25,3,"Debt Consolidation Loan, Home Equity Loan, and Student Loan",,23.0379555,7.91,8,Standard,2085.739427,24.8236157,16 Years and 6 Months,Yes,65.42524227,10000,High_spent_Medium_value_payments,374.0083438,0,-1.9534,-0.7348,-0.8876,1.1977,2.2234 -0x165f1,CUS_0x7dff,August,31,#F%$D@*&8,Media_Manager,18005.41,,3,9,33,3,"Payday Loan, Personal Loan, and Debt Consolidation Loan",11.65860574,9,13.45,15,Standard,2564.51,24.98138374,13 Years and 10 Months,Yes,36.34786743,162.2855175,Low_spent_Small_value_payments,212.7116984,0,1.1071,-0.9704,-0.0014,-0.2282,0.5316 -0x165fd,CUS_0x62be,August,32,218-41-6483,Media_Manager,141952.76,11726.39667,7,4,16,1,Mortgage Loan,26.06876122,19,11.48,4,_,1322.885879,31.52420454,29 Years and 0 Months,Yes,109.7589025,1121.878642,!@9#%8,359.2854761,0,0.0572,0.1926,-1.3964,0.9612,-1.3256 -0x16609,CUS_0x23ae,August,26,#F%$D@*&8,Journalist,34838.94,2895.245,3,9,21.06745738,5,"Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Personal Loan",27.49519491,17.83735492,14.56,7,Standard,2360.542784,26.14961722,15 Years and 9 Months,Yes,74.41338889,102.3464478,High_spent_Medium_value_payments,336.0443754,0,0.9613,-0.3445,-0.4496,1.5844,-1.7869 -0x16615,CUS_0x2c40,August,25,517-14-0812,Doctor,82651.74,6756.645,7,4,14,3,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,20,21.66,12,Standard,1348.26,28.72334457,17 Years and 5 Months,NM,147.5225031,573.3397288,Low_spent_Small_value_payments,244.8022681,0,0.463,0.534,1.4879,-0.5143,-0.0731 -0x16621,CUS_0x741d,August,36,#F%$D@*&8,Writer,21699.13,,8,4,18,3,"Home Equity Loan, Student Loan, and Student Loan",,14,8.64,3,_,1129.46,37.60905943,21 Years and 3 Months,Yes,45.0600107,91.67526837,Low_spent_Small_value_payments,345.7908043,0,-0.1096,0.4046,0.0676,-0.0142,0.9539 -0x1662d,CUS_0x1a86,August,33,835-36-1985,Entrepreneur,8135.92,378.9933333,7,5,32,9,"Student Loan, Payday Loan, Payday Loan, Home Equity Loan, Student Loan, Payday Loan, Payday Loan, Not Specified, and Payday Loan",35.61311728,21.83974777,16.62,10,_,3528.018502,30.00431376,7 Years and 0 Months,Yes,58268,34.39249564,Low_spent_Small_value_payments,260.4104784,0,1.0929,0.25,-0.1001,0.4328,0.3051 -0x16639,CUS_0x6d17,August,36,584-62-1775,Scientist,35942.96,3081.246667,4,3,20,4,"Not Specified, Payday Loan, Mortgage Loan, and Auto Loan",15.28129658,15,2.92,4,Standard,707.38,37.10477787,26 Years and 10 Months,No,116.0195532,93.02829773,Low_spent_Large_value_payments,369.0768157,0,-0.8023,-0.2193,0.1844,-0.1117,1.7333 -0x16645,CUS_0xa969,August,39,094-33-0731,_______,18102.96,1267.063843,5,5,17.28836175,4,"Debt Consolidation Loan, Not Specified, Auto Loan, Debt Consolidation Loan, and Not Specified",,8,11.79,10,Standard,86.63877841,34.42937431,10 Years and 2 Months,Yes,116.3270889,,Low_spent_Small_value_payments,236.7994327,0,0.5528,0.4989,-0.209,-0.2199,-0.5283 -0x16651,CUS_0x8917,August,24,750-35-4810,Developer,21434.2,,6,6,18,6,"Not Specified, Credit-Builder Loan, Auto Loan, Personal Loan, Credit-Builder Loan, and Mortgage Loan",10.80511957,10,10.09,11,Standard,1240.7,35.90204963,7 Years and 8 Months,Yes,177.6939648,80.643147,Low_spent_Small_value_payments,312.8679426,0,-0.3603,0.7784,0.7114,-0.8575,-2.7221 -0x1665d,CUS_0x7a32,August,41,149-87-5601,Writer,14990.045,,4,4,20,3,"Payday Loan, Student Loan, and Not Specified",26.1356549,20,9.16,2,Standard,1344,26.11521517,23 Years and 6 Months,No,22.75136613,,Low_spent_Small_value_payments,251.9626081,0,-0.7681,-1.5917,-0.8671,0.0341,-0.4861 -0x16669,CUS_0x2004,August,27,925-81-5909,Entrepreneur,73420.92,,4,5,8,2,"Personal Loan, and Not Specified",0,1,10.35,2,_,250.5473191,33.2564451,31 Years and 0 Months,No,67.04438353,291.5029108,High_spent_Small_value_payments,571.3344252,0,0.521,-0.8038,0.0502,0.3553,1.397 -0x16675,CUS_0x5e84,August,29,802-00-7859,Architect,10339.53,,10,7,29.06745738,8,"Not Specified, Home Equity Loan, Personal Loan, Not Specified, Payday Loan, Home Equity Loan, Auto Loan, and Student Loan",26.11984213,16.40479462,25.93,11,Bad,3302.604713,37.82380854,8 Years and 0 Months,Yes,65.86110878,35.06340974,Low_spent_Small_value_payments,237.1179435,0,-0.683,0.6166,1.0143,-0.319,-0.3225 -0x16681,CUS_0x5f0e,August,40,695-28-7940,Engineer,82134.44,,10,5,24,100,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Not Specified, Not Specified, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,19.46844192,4.55,10,_,1482.38472,28.074593,18 Years and 10 Months,Yes,317.4441996,174.1655715,High_spent_Medium_value_payments,425.5438956,0,0.7947,1.1499,-0.8846,1.0443,0.1939 -0x1668d,CUS_0x9348,August,19,195-44-0857,Entrepreneur,33189.02,,7,3,19,3,"Mortgage Loan, Personal Loan, and Payday Loan",13.98717334,10,4.08,7,Standard,209.88,31.51564401,23 Years and 5 Months,NM,63.71641945,,!@9#%8,367.6206037,0,-1.3338,-2.0506,-0.0987,0.5959,0.9563 -0x16699,CUS_0x7165,August,29,383-69-8663,Entrepreneur,9069.98,,8,9,31.88954781,100,"Payday Loan, Not Specified, Credit-Builder Loan, Student Loan, Not Specified, and Payday Loan",17.98013857,,7.15,15,Bad,3471.77,36.61905451,10 Years and 2 Months,Yes,1354.899427,56.20822865,Low_spent_Medium_value_payments,229.2454292,0,-0.6425,-0.267,-0.2456,-0.9905,-0.941 -0x166a5,CUS_0x9124,August,26,723-63-2577,Entrepreneur,52561.62,4572.135,8,8,32,2,"Not Specified, and Home Equity Loan",32.14776973,21.80624036,11.63,9,Standard,1436.410637,29.16209732,15 Years and 8 Months,Yes,48.93527189,128.3660255,Low_spent_Large_value_payments,549.9122026,0,0.7021,1.4005,-1.5615,-1.5779,-0.4666 -0x166b1,CUS_0xce2,August,20,590-83-1829,Musician,7979.775,,8,10,25.88954781,7,"Personal Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Auto Loan, and Not Specified",90,2954,11.32,7,_,2211.7,26.7095367,,Yes,1361.759963,21.34656816,Low_spent_Small_value_payments,265.7615124,0,1.2188,0.0447,1.6061,-0.0794,1.3328 -0x166bd,CUS_0x68ee,August,49,599-79-8361,Accountant,61614.9,5364.575,4,3,9.288361749,0,Mortgage Loan,1.716831082,5,15.17,8,_,157.71,41.53183536,27 Years and 4 Months,No,44.427963,10419.93746,Low_spent_Small_value_payments,588.2923529,0,1.6772,-0.9007,-0.1449,-1.0703,0.2868 -0x166c9,CUS_0x494c,August,39,849-28-7686,Accountant,10496.255,,9,10,27.06745738,5,"Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",39.47029501,19.54116327,3.12,11,_,4836.688361,34.95388479,2 Years and 8 Months,Yes,35.05698505,,Low_spent_Small_value_payments,206.4658371,0,-0.0923,-1.0114,0.8266,2.9281,0.2903 -0x166d5,CUS_0xb5d4,August,23,156-33-8200,Entrepreneur,100674.66,8435.555,4,4,6.288361749,0,Payday Loan,,14,19.17,7,Standard,1267.99,29.46185523,30 Years and 2 Months,Yes,42.26905625,710.4159804,High_spent_Medium_value_payments,760.8079244,0,1.8253,-0.6572,-1.2453,0.1936,1.7132 -0x166e1,CUS_0x8db6,August,26,754-28-9358,Architect,9481.025,561.0854167,4,6,33.06745738,100,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",17.88025398,11.8701478,17.78,8,Standard,2946.539543,36.58937558,17 Years and 3 Months,Yes,31.46063016,,Low_spent_Small_value_payments,246.1878721,0,-0.1197,-0.6151,1.4528,1.2341,-0.5197 -0x166ed,CUS_0xc80,August,31,610-12-1484,Musician,48706.1,4052.841667,5,3,7,3,"Student Loan, Payday Loan, and Personal Loan",,10,13.02,7,Standard,1006.260757,38.21476448,17 Years and 5 Months,Yes,107.1525577,189.3444854,!@9#%8,377.3674669,0,-0.8532,-0.8732,-0.0365,0.0028,0.3043 -0x166f9,CUS_0xc4e7,August,44,269-29-5635,Mechanic,53860.98,4260.415,4,7,15,0,,,8,10.82,6,Standard,1356.1,39.82130883,16 Years and 2 Months,Yes,20083,326.6682992,Low_spent_Small_value_payments,389.3732008,0,-1.5957,-0.9521,0.5135,-0.7378,-1.4365 -0x16705,CUS_0x48ef,August,25,151-74-3175,_______,105829.08,8729.09,3,5,18,4,"Debt Consolidation Loan, Student Loan, Payday Loan, and Payday Loan",20.76377016,17,5.65,6,Standard,549.99,27.19465313,19 Years and 5 Months,No,237.0235892,154.2808471,High_spent_Large_value_payments,721.6045637,0,-0.1075,1.8604,-0.7341,-1.8239,0.7719 -0x16711,CUS_0x6e8b,August,47,388-81-5443,Scientist,121197.9,,2,5,10.28836175,4,"Student Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",10.38677084,12,2.3,6,Good,178.6625599,38.43269158,21 Years and 2 Months,No,370.6193016,665.9264754,High_spent_Large_value_payments,685.2247598,0,0.0925,-0.3748,0.3334,-0.8193,-0.0799 -0x1671d,CUS_0x2e76,August,38,914-43-3700,Teacher,73985.12,6207.426667,6,5,27,5,"Not Specified, Payday Loan, Student Loan, Mortgage Loan, and Not Specified",25.23317052,20,16.24,10,Bad,4429.84,27.1630513,,Yes,194.8908388,420.3032538,High_spent_Small_value_payments,265.548574,0,-0.1397,-1.9095,-0.6502,-2.6738,1.3466 -0x16729,CUS_0xb1d8,August,18,337-80-9835,Scientist,122105.64,10307.47,6,3,14,6,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Student Loan, and Student Loan",19.06479144,14,9.75,8,_,626.1155036,31.08683971,14 Years and 8 Months,Yes,555.1684836,121.7582027,High_spent_Large_value_payments,607.0377437,0,-0.1141,-0.1295,-2.0391,0.4929,0.3449 -0x16735,CUS_0x7a35,August,41,869-37-6295,Musician,81571.88,6648.656667,5,3,23,3,"Not Specified, Debt Consolidation Loan, and Student Loan",,19.38343721,7.82,8,Standard,2599.919538,36.45203576,,Yes,203.7756088,138.4461271,High_spent_Medium_value_payments,572.6439307,0,-0.1036,-2.089,1.8262,0.5637,-1.2545 -0x16741,CUS_0x2e28,August,34,792-16-3996,Doctor,71391.78,,8,7,11,100,"Mortgage Loan, Student Loan, Personal Loan, and Auto Loan",,19,11.35,7,Standard,1305.41,30.7167725,31 Years and 2 Months,NM,191.5592019,,High_spent_Medium_value_payments,565.2978945,0,-1.247,-1.607,0.5719,0.6321,2.0597 -0x1674d,CUS_0xbbf6,August,28,187-06-3273,Engineer,65455.16,5194.596667,9,8,32,2,"Personal Loan, and Student Loan",,25.10572722,4.44,11,Bad,1838.227479,32.67590696,,NM,84.53938413,,High_spent_Small_value_payments,497.3896386,0,1.3834,1.6744,-1.7788,0.748,-1.349 -0x16759,CUS_0x111b,August,40,880-90-6663,Manager,70277.22,5633.435,3,6,7,3,"Not Specified, Not Specified, and Home Equity Loan",8.244038514,9,4.05,7,Good,661.0265876,36.53293818,20 Years and 6 Months,No,149.9341064,573.4638507,Low_spent_Large_value_payments,186.6182027,0,0.2287,-1.3291,0.8894,-0.6963,-1.9865 -0x16765,CUS_0x9c4f,August,26,#F%$D@*&8,Architect,49077.12,4200.76,5,3,8,2,"Personal Loan, and Not Specified",,,2.52,3,_,201.05,36.42115073,29 Years and 8 Months,No,74.2941716,258.6513691,Low_spent_Small_value_payments,377.1304593,0,-0.548,-0.0519,1.5206,-0.2909,0.708 -0x16771,CUS_0xc41f,August,31,710-88-8800,_______,140114,11603.16667,3,6,1,0,,0,0,1.99,3,Good,50.1,29.92510089,30 Years and 4 Months,No,0,,High_spent_Large_value_payments,1111.839371,0,-0.4316,-0.4647,-0.5681,-0.568,0.0663 -0x1677d,CUS_0x193b,August,18,044-37-0803,Lawyer,19462.47,1920.8725,7,7,29.06745738,6,"Auto Loan, Mortgage Loan, Mortgage Loan, Not Specified, Student Loan, and Not Specified",35.35544867,18,1.96,9,Bad,2434.460954,34.91834586,17 Years and 9 Months,Yes,60.80130552,121.8430494,High_spent_Small_value_payments,242.7226072,0,-0.8776,-1.1692,-0.331,1.4093,-0.4391 -0x16789,CUS_0x857a,August,19,763-45-1480,Engineer,108818.2,,6,5,4,3,"Debt Consolidation Loan, Not Specified, and Auto Loan",,16,4.5,6,Good,1056.832374,26.35959168,21 Years and 8 Months,No,207.2870629,,!@9#%8,183.3152196,0,0.2857,-1.2242,1.0891,-1.0925,-1.1317 -0x16795,CUS_0x80dc,August,28,498-19-5852,_______,18995.54,,6,7,427.0674574,4,"Not Specified, Home Equity Loan, Debt Consolidation Loan, and Student Loan",19.34007505,12,12.16,11,Standard,2910.610954,24.49423881,,Yes,49.24605681,,Low_spent_Large_value_payments,221.79462,0,-0.5867,-0.8921,-1.4787,0.3371,-0.2628 -0x167a1,CUS_0x191b,August,53,842-62-4462,Accountant,108625.29,9105.1075,8,6,13,0,,,18.25462126,2.88,3,Standard,337.3680982,39.23780128,22 Years and 3 Months,No,0,255.3762062,Low_spent_Medium_value_payments,935.1345438,0,0.4025,-1.1761,1.4059,0.5335,2.3709 -0x167ad,CUS_0x5c8d,August,36,876-79-6090,Developer,41982.88,3263.573333,4,7,14,0,,21.03531797,,15.83,6,_,1449.7,27.26175953,17 Years and 9 Months,Yes,0,,High_spent_Medium_value_payments,453.6164427,0,-0.2456,0.7957,-1.5965,-0.0484,-1.3799 -0x167b9,CUS_0xa03e,August,31,596-37-3692,Scientist,8284.83,655.4025,6,7,30,7,"Mortgage Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",,21.47501058,1.79,14,_,5216.072266,38.50151623,14 Years and 3 Months,Yes,26.3723852,45.23694378,Low_spent_Small_value_payments,283.930921,0,0.1097,1.092,0.4896,0.3308,0.3498 -0x167c5,CUS_0x37ec,August,18,#F%$D@*&8,Lawyer,68861.36,5936.446667,8,8,24,5,"Personal Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",40.91311035,30.32836528,4.36,11,Bad,2771.150714,27.82735759,16 Years and 2 Months,Yes,229.0809607,111.6208989,High_spent_Large_value_payments,492.942807,0,1.5223,-0.851,-0.1754,0.6004,-0.0154 -0x167d1,CUS_0x1766,August,18,751-67-7414,Teacher,17849,,6,6,15,7,"Home Equity Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Personal Loan, Personal Loan, and Not Specified",39.36305579,29.14980845,22.44,15,Bad,5152.697528,29.68565175,10 Years and 5 Months,Yes,88.00557838,,Low_spent_Small_value_payments,164.0352188,0,-0.0082,2.0856,-0.5095,-1.7456,-0.2529 -0x167dd,CUS_0x8100,August,30,603-81-4784,_______,16733.85,1612.4875,10,8,25.88954781,6,"Not Specified, Not Specified, Credit-Builder Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",23.23358577,15.82343505,6.26,11,Bad,2465.992356,31.03719321,13 Years and 6 Months,Yes,1377.46932,128.8011502,Low_spent_Small_value_payments,250.6481989,0,0.1002,-1.7876,1.4574,-1.026,0.2068 -0x167e9,CUS_0x9015,August,26,567-15-1471,Accountant,94031.7,,8,4,13,2,"Personal Loan, and Personal Loan",20.74409172,16,8.17,5,Standard,147.52,32.76058188,24 Years and 10 Months,No,120.4550596,424.3814756,Low_spent_Small_value_payments,556.7609648,0,0.4953,1.3548,0.3704,-0.2391,-1.7712 -0x167f5,CUS_0xb167,August,34,223-39-2177,Teacher,22239,,4,5,11,100,"Debt Consolidation Loan, Student Loan, Mortgage Loan, and Personal Loan",,3,1.34,2,Good,118.3639607,28.80588439,28 Years and 8 Months,No,70.17382304,243.3760855,Low_spent_Small_value_payments,196.8725001,0,-0.3118,-1.1593,0.7251,1.8351,-0.2071 -0x16801,CUS_0xbfa9,August,36,178-06-3359,_______,14759.68,,1568,10,23,3,"Student Loan, Auto Loan, and Home Equity Loan",31.69537348,16.88219227,5.65,8,Bad,1897.73151,32.07301726,11 Years and 2 Months,Yes,35.97966384,13.13454457,High_spent_Large_value_payments,293.0831249,0,-0.5942,0.251,0.2637,0.8933,0.7611 -0x1680d,CUS_0xa1f6,August,54,411-88-5165,Developer,33778.42,,3,4,12,4,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",9.210071655,11,10.06,9,Standard,739.51,30.46765023,21 Years and 4 Months,No,75.69956252,,Low_spent_Small_value_payments,250.5371733,0,0.1785,-0.0915,-0.2815,0.1757,0.2644 -0x16819,CUS_0x9e95,August,26,330-30-8487,_______,15724.04,,10,5,19,100,"Credit-Builder Loan, Student Loan, Not Specified, Auto Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",19.60904189,,6.6,12,Bad,3431,23.86247828,14 Years and 3 Months,Yes,84.28014673,72.34075313,High_spent_Small_value_payments,212.8127668,0,1.3038,0.3806,-1.6447,1.619,0.6812 -0x16825,CUS_0x3d26,August,26,#F%$D@*&8,Engineer,26939.95,,7,3,10,2,"Personal Loan, and Not Specified",19.27563725,16,19.65,7,Standard,755.1581827,28.81351402,19 Years and 8 Months,Yes,35.4824061,91.35132275,High_spent_Medium_value_payments,379.6384624,0,0.4775,-1.419,-0.5678,-0.2637,0.0209 -0x16831,CUS_0xc1fa,August,45,007-69-4984,Teacher,108064.48,8933.373333,6,6,15,4,"Not Specified, Payday Loan, Not Specified, and Home Equity Loan",18.44576746,14.61367779,3.12,5,_,515.451928,33.46465461,,Yes,272.1046102,292.2965986,High_spent_Medium_value_payments,578.9361246,0,-1.4852,0.3517,0.9706,-0.4084,2.9878 -0x1683d,CUS_0x443e,August,37,010-00-5884,Scientist,60537.18,5182.765,7,4,6,2,"Payday Loan, and Credit-Builder Loan",23.27169696,18,11.93,2,Standard,393.5,32.61946567,31 Years and 3 Months,Yes,99.21125506,332.1686619,Low_spent_Small_value_payments,376.8965831,0,-0.4722,-0.2047,-1.362,0.6889,-1.5516 -0x16849,CUS_0x2cd9,August,80,410-34-6619,Lawyer,8969.265,,7,6,28,8,"Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,20.22079902,2.97,16,Bad,2946.378196,24.3894676,8 Years and 6 Months,Yes,53.17870949,,Low_spent_Large_value_payments,251.8734777,0,0.1963,1.7804,0.297,-0.0992,-0.3686 -0x16855,CUS_0x7bc9,August,28,130-42-0564,Engineer,68900.64,,7,4,10,4,"Mortgage Loan, Student Loan, Mortgage Loan, and Credit-Builder Loan",16.26086248,14,10.8,6,Standard,1420.04,30.04780013,18 Years and 4 Months,No,148.9974949,41.17353358,High_spent_Large_value_payments,633.4009715,0,1.8928,0.5327,1.2658,-0.2123,0.207 -0x16861,CUS_0x1246,August,33,609-30-7406,Entrepreneur,22188.45,,1,5,498,1,Auto Loan,3.159245533,1.142531146,3.87,7,Good,1474.744041,36.34397503,16 Years and 5 Months,No,10.01141758,,Low_spent_Small_value_payments,327.4776685,0,2.0338,-0.992,0.7992,-0.8709,0.5943 -0x1686d,CUS_0xb814,August,21,348-46-6179,Teacher,92519.61,7438.9675,8,3,8.288361749,0,Personal Loan,13.46008095,12,19.74,10,Standard,62.82,24.25134872,12 Years and 2 Months,Yes,13561,1085.346056,!@9#%8,299.1904072,0,1.2683,2.0524,0.4211,1.2083,0.801 -0x16879,CUS_0x22e3,August,21,258-42-8344,Mechanic,41516.64,3368.72,8,8,17,5,"Home Equity Loan, Not Specified, Payday Loan, Auto Loan, and Personal Loan",,,10.35,11,Bad,1834.81771,33.17962901,20 Years and 5 Months,Yes,142.3164832,182.0534172,Low_spent_Medium_value_payments,292.5020995,0,-1.521,-1.0441,-1.2048,1.8387,1.819 -0x16885,CUS_0xb8d3,August,36,122-85-2445,Lawyer,30061.36,2480.113333,5,6,7,2,"Debt Consolidation Loan, and Home Equity Loan",25.64296059,19,13.28,4,Standard,242.47,28.8452584,26 Years and 8 Months,Yes,37.3849372,151.4814232,Low_spent_Medium_value_payments,339.144973,0,1.1558,-1.9728,1.669,-0.1472,-0.744 -0x16891,CUS_0x5375,August,54,103-66-4137,Doctor,29617.7,,4,779,6,2,"Credit-Builder Loan, and Auto Loan",7.031116829,7,10.7,3,_,696.7897421,27.62198171,18 Years and 8 Months,No,27.0411397,91.9493841,Low_spent_Large_value_payments,395.1978354,0,-1.0708,-0.7495,-0.7083,0.4481,-0.4898 -0x1689d,CUS_0x2043,August,29,013-68-1261,Entrepreneur,44614.56,,8,7,2711,4,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Personal Loan",12.37367741,11,12.71,8,Standard,2613.46,37.69690783,19 Years and 0 Months,Yes,134.6629661,,High_spent_Medium_value_payments,373.5879478,0,0.9021,-1.0334,0.0073,-1.054,-0.7566 -0x168a9,CUS_0x2696,August,40,425-82-7919,Manager,14982.63,,10,8,20,285,"Student Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,21.94841371,17.16,7,Standard,2569.962755,23.14549191,,NM,40.62533007,128.1526795,Low_spent_Small_value_payments,221.5772405,0,1.0408,-2.0139,-0.0219,0.3729,-0.905 -0x168b5,CUS_0x3b6e,August,32,224-83-2459,Scientist,7200.035,,8,8,19.06745738,3,"Home Equity Loan, Student Loan, and Payday Loan",38.21532674,18.39797014,3.51,11,Standard,3003.174775,28.21753098,14 Years and 5 Months,Yes,13.72301936,52.82546987,Low_spent_Small_value_payments,250.7315145,0,-0.5425,-0.0409,0.6581,0.7109,-1.6317 -0x168c1,CUS_0x373e,August,22,082-32-0540,Entrepreneur,21039.8,,4,5,9.288361749,0,,12.41134105,13.40420677,1.19,2,_,9.967835739,34.57243269,24 Years and 6 Months,No,0,,Low_spent_Small_value_payments,224.8270203,0,0.3998,0.7845,0.1171,-0.382,0.4173 -0x168cd,CUS_0xaac2,August,24,626-22-6718,Journalist,17223.875,,3,732,16,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Payday Loan",15.39462239,15,11.57,13,Standard,637.5,37.54522131,8 Years and 10 Months,Yes,120.7601921,97.63383912,Low_spent_Small_value_payments,324.8321723,0,-1.4234,-2.4261,0.4961,-0.531,0.3739 -0x168d9,CUS_0x9337,August,36,#F%$D@*&8,Accountant,87502.05,7589.8375,4,3,10,4,"Student Loan, Home Equity Loan, Auto Loan, and Student Loan",19.11912798,12,6.42,4,Good,1187.691035,28.60539569,,No,227.4290786,831.3980955,Low_spent_Medium_value_payments,72.9490744,0,-0.2541,0.1511,-0.7108,-0.8078,-0.2634 -0x168e5,CUS_0xc1b6,August,41,191-90-7135,Teacher,26523.72,,5,3,6,5,"Personal Loan, Personal Loan, Payday Loan, Auto Loan, and Student Loan",22.41500731,17,11.68,8,Standard,368.29,33.28072635,18 Years and 3 Months,Yes,63.98469507,,Low_spent_Large_value_payments,243.6400173,0,-1.1272,0.4806,-1.3299,0.8152,-0.4201 -0x168f1,CUS_0x5222,August,50,837-01-6937,Musician,25757.56,,7,6,14,100,"Student Loan, and Student Loan",22.83299985,16,9.02,,Standard,912.72,37.42935405,,No,41.70585148,,High_spent_Small_value_payments,385.428295,0,1.4025,-0.1544,0.2127,1.2139,0.6687 -0x168fd,CUS_0x553e,August,32,416-28-3139,Scientist,113539.44,9276.62,8,4,13,0,,22.29239798,,16.83,6,Standard,1207.09,42.58211013,16 Years and 4 Months,No,70266,10000,High_spent_Large_value_payments,1023.071206,0,-1.7704,-0.2611,0.8395,-1.1213,0.9641 -0x16909,CUS_0xb770,August,54,437-36-2230,Musician,18672.765,1557.06375,4,4,6,3,"Auto Loan, Debt Consolidation Loan, and Payday Loan",0,1,5.68,2,Good,785.46,26.05760042,21 Years and 9 Months,No,23.98441371,124.6512046,Low_spent_Small_value_payments,297.0707567,0,-0.4062,-0.1257,-0.3794,-2.0269,0.8328 -0x16915,CUS_0x14f4,August,23,870-88-0893,Developer,14274.32,907.5266667,4,4,12,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",10.50081619,9,8.48,4,Standard,1243.37,39.4785509,12 Years and 2 Months,Yes,18.18957977,50.18933666,Low_spent_Medium_value_payments,302.3737502,0,-0.6891,-0.3116,2.1891,0.7578,-1.2393 -0x16921,CUS_0x6f0b,August,22,749-98-9749,Lawyer,31589.06,,8,3,9,4,"Mortgage Loan, Not Specified, Mortgage Loan, and Home Equity Loan",15.17328485,14,8.91,4,_,1428.58,33.93534629,30 Years and 10 Months,Yes,82.49834395,157.0198677,Low_spent_Large_value_payments,319.923955,0,1.6889,-0.3993,-0.9857,0.0899,-0.1159 -0x1692d,CUS_0xc346,August,26,#F%$D@*&8,_______,47050.41,4117.8675,560,7,19,5,"Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",31.5785942,20.91614565,12.77,5,Standard,1789.305719,36.1068387,17 Years and 9 Months,Yes,140.6698414,165.7945671,High_spent_Medium_value_payments,355.3223415,0,0.2866,0.5874,-2.1808,-0.5347,-1.5111 -0x16939,CUS_0x58d6,August,26,941-89-5500,Mechanic,127581,,3,3,7,0,,21.05150961,16.98344581,18.79,11,Standard,221.9934987,31.56665635,17 Years and 4 Months,Yes,0,1049.80234,Low_spent_Medium_value_payments,266.0726599,0,-0.7242,-2.0505,-0.3918,-0.1467,-0.7809 -0x16945,CUS_0xb1a3,August,29,#F%$D@*&8,Media_Manager,16142.49,,9,7,30,6,"Student Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Payday Loan, and Student Loan",41.26748607,19.7026032,8.25,17,Bad,1479.973465,37.41189702,15 Years and 4 Months,Yes,59.69988634,68.37473544,Low_spent_Medium_value_payments,275.8461282,0,0.2377,0.9631,0.5746,0.7931,-0.9385 -0x16951,CUS_0x5ea2,August,36,266-58-4616,Entrepreneur,17869.29,,6,3,19,4,"Payday Loan, Payday Loan, Auto Loan, and Not Specified",16.30352484,10,9.2,6,Standard,276.09,27.60574336,27 Years and 6 Months,Yes,42.04241999,89.93387496,High_spent_Small_value_payments,292.334455,0,0.2441,-1.6449,-1.5339,1.6532,1.3867 -0x1695d,CUS_0x6ee8,August,29,642-77-9287,Writer,69478.76,5902.896667,3,6,10.28836175,1392,"Not Specified, Mortgage Loan, Student Loan, and Auto Loan",15.13986311,,4.34,7,_,599.17,27.59920876,27 Years and 3 Months,No,190.7389764,534.6260802,High_spent_Medium_value_payments,534.8620711,0,-1.9964,-0.3964,-0.5109,0.1952,0.6055 -0x16969,CUS_0x65bf,August,52,359-28-0281,Writer,143552,11956.66667,4,4,7.288361749,0,Auto Loan,0,3,10.38,1,Good,445.2962437,32.62833218,33 Years and 5 Months,No,79.66192635,1309.671559,High_spent_Small_value_payments,598.9221022,0,-0.3326,1.4822,-0.8675,-1.2626,-0.1027 -0x16975,CUS_0x1b56,August,23,043-47-6622,Lawyer,49460.16,4270.68,9,6,18,5,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",34.77282272,15.71899386,17.82,15,Standard,1858.685985,27.35010801,6 Years and 3 Months,Yes,197.6739058,154.4260103,High_spent_Medium_value_payments,324.9680839,0,2.2778,-0.4608,-0.3871,-0.4442,0.9686 -0x16981,CUS_0x9103,August,42,832-61-3573,Mechanic,8917.805,,8,8,17.95700519,7,"Student Loan, Student Loan, Personal Loan, Payday Loan, Personal Loan, Payday Loan, and Student Loan",32.72663854,16,0.87,11,Bad,2054.890954,28.00099666,9 Years and 6 Months,Yes,1353.092539,,High_spent_Small_value_payments,222.0681771,0,0.2645,1.705,0.0231,-1.4609,-0.5736 -0x1698d,CUS_0x7c6,August,42,#F%$D@*&8,Teacher,7284.94,407.0783333,9,10,26,7,"Auto Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Auto Loan, and Not Specified",36.19096049,23,4.2,13,Bad,2308.2,33.71933068,15 Years and 8 Months,Yes,54221,,High_spent_Small_value_payments,236.2033968,0,0.6247,-0.684,0.001,-0.672,-0.7777 -0x16999,CUS_0x3065,August,35,893-23-7442,Media_Manager,35579.68,2864.973333,10,7,31,5,"Home Equity Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Auto Loan",14.87204464,10,11.12,13,_,1646.74,23.37051185,15 Years and 0 Months,Yes,118.39497,,Low_spent_Small_value_payments,174.4881996,0,0.0957,0.2578,-0.8623,-0.08,2.3567 -0x169a5,CUS_0xa095,August,24,419-43-3967,Architect,39511,3248.583333,7,8,24,3,"Payday Loan, Home Equity Loan, and Payday Loan",41.88813043,28.00509816,1.1,8,Bad,1441.639984,26.48168983,6 Years and 3 Months,Yes,81.47834179,204.6085853,Low_spent_Large_value_payments,308.7714062,0,-0.2124,1.1161,-0.1205,0.6769,1.0896 -0x169b1,CUS_0x9bbe,August,40,487-03-4362,Media_Manager,105239.46,8895.955,1480,5,14,2,"Auto Loan, and Mortgage Loan",17.18896777,,15.89,5,_,1369.89,25.78756679,14 Years and 0 Months,NM,171.1656975,,!@9#%8,42.25645842,0,0.2418,-2.0929,-1.256,-0.6752,-1.2687 -0x169bd,CUS_0x438a,August,41,081-12-2607,Architect,34076.32,,9,7,25,5,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Personal Loan, and Not Specified",51.02733964,29.48929022,5.79,8,Bad,1582.980937,37.63493138,20 Years and 2 Months,Yes,134.4033898,67.34744683,High_spent_Medium_value_payments,350.0184967,0,1.0324,-0.1673,-0.3247,1.5538,1.5166 -0x169c9,CUS_0x554b,August,53,776-27-8471,Entrepreneur,15127.05,1482.33921,8,5,15,4,"Payday Loan, Mortgage Loan, Auto Loan, and Not Specified",19.51081517,12,11.16,2,Standard,194.3,35.58290766,26 Years and 3 Months,NM,93.51033731,,Low_spent_Small_value_payments,234.7004748,0,0.6874,-1.3529,-1.6242,0.3843,2.7558 -0x169d5,CUS_0x9bf3,August,43,458-76-0289,_______,34571.53,,5,5,4.288361749,2,"Home Equity Loan, and Student Loan",6.049342641,9,5.37,4,Good,58.37,28.80017728,26 Years and 11 Months,No,41.83633131,723.8069696,Low_spent_Small_value_payments,229.7902435,0,0.7754,-2.1825,-0.4078,-0.8485,-1.0844 -0x169e1,CUS_0x1d56,August,31,200-30-0736,Media_Manager,53127.72,4655.31,7,6,34,3,"Not Specified, Personal Loan, and Mortgage Loan",25.34616135,,7.04,16,Standard,1894.561144,42.4235402,20 Years and 6 Months,Yes,87.57835313,103.178921,High_spent_Medium_value_payments,524.7737259,0,1.2059,1.4136,-0.4601,-2.2831,-1.6581 -0x169ed,CUS_0x1b99,August,37,685-95-4062,Developer,18264.11,,5,5,15,7,"Payday Loan, Credit-Builder Loan, Not Specified, Not Specified, Auto Loan, Credit-Builder Loan, and Home Equity Loan",,18,16.98,9,Standard,2622.13,38.13131352,12 Years and 10 Months,Yes,90.81220498,61.56843929,Low_spent_Large_value_payments,279.7202724,0,-1.3252,-0.1671,0.2587,-0.9728,-0.0976 -0x169f9,CUS_0xc1bf,August,43,668-63-2486,Entrepreneur,16750.82,,6,7,26.06745738,5,"Personal Loan, Student Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",,16,29.46,9,_,2988.500954,31.11475814,10 Years and 3 Months,Yes,36.87650281,,Low_spent_Small_value_payments,207.50633,0,0.0251,-0.7314,-0.9181,1.0078,0.1826 -0x16a05,CUS_0x4cb8,August,30,417-86-8323,Doctor,68299.04,5887.586667,3,5,3.288361749,2,"Not Specified, and Not Specified",0,2,-0.44,5,Good,359.5576935,21.98513521,28 Years and 6 Months,No,81.07807108,892.3755764,Low_spent_Medium_value_payments,381.6001311,0,0.424,-0.2274,-0.961,-1.2281,0.1177 -0x16a11,CUS_0x8ce4,August,42,125-44-2714,Doctor,36439.06,3248.588333,5,6,5,3,"Payday Loan, Student Loan, and Auto Loan",11.31448774,10.24017891,9.12,2,Good,6.293572846,29.39914994,21 Years and 6 Months,No,59.99582246,180.5019407,High_spent_Small_value_payments,344.3610701,0,-1.7197,-1.0751,-0.0444,0.0717,0.7974 -0x16a1d,CUS_0x52c3,August,22,942-61-3792,Mechanic,18763.21,,8,6,31.06745738,5,"Student Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",19.19722208,13,8.22,12,Standard,2510.140954,38.19984634,13 Years and 0 Months,Yes,73.56399934,42.81547867,High_spent_Medium_value_payments,282.1603174,0,1.2544,-0.2916,0.1898,-0.0036,0.4022 -0x16a29,CUS_0xc653,August,41,030-58-1857,Architect,21380.065,,2,2,5,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",0,1,1.79,2,_,764.08,31.02205014,24 Years and 3 Months,No,30.57084865,74.13857405,Low_spent_Medium_value_payments,375.8577856,0,0.6902,-1.9709,-0.8452,0.5566,-1.574 -0x16a35,CUS_0x981,August,48,488-06-3635,Developer,24042.68,,5,3,20,1,Mortgage Loan,,11,10.47,4,Standard,1006.1,38.69248966,30 Years and 6 Months,No,12.66458115,52.03158511,High_spent_Large_value_payments,397.6595004,0,-0.1317,1.944,0.8839,3.1089,-0.2129 -0x16a41,CUS_0x541c,August,44,635-19-9211,Lawyer,17296.485,1680.37375,1,3,11,1,Debt Consolidation Loan,0,0,8.59,2,Good,857.3344298,38.07594583,32 Years and 4 Months,No,11.06281181,34.67517589,High_spent_Large_value_payments,367.4888988,0,-0.5395,-0.2678,-0.6249,-1.332,0.5557 -0x16a4d,CUS_0x297f,August,25,319-43-4786,Scientist,38612.19,2944.6825,5,3,11,2,"Payday Loan, and Auto Loan",0,3.612137259,10.82,4,Good,668.1393026,27.85741213,31 Years and 2 Months,No,52.84094499,201.2375225,Low_spent_Small_value_payments,330.3897825,0,-1.6038,-0.1151,1.279,1.1955,-0.1907 -0x16a59,CUS_0x6f65,August,39,822-04-9375,Teacher,74647.47,,8,4,20,4,"Personal Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",,14,1.61,8,Standard,374.5174572,27.44081231,24 Years and 4 Months,No,498.0708288,221.9130498,High_spent_Medium_value_payments,493.1002314,0,0.2455,1.4222,-0.3355,2.3142,-0.9795 -0x16a65,CUS_0xc072,August,43,115-85-4315,Lawyer,81170.08,6638.173333,7,7,30,5,"Mortgage Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",51.21351035,30.30973074,4.87,,Bad,2942.178352,28.02306596,7 Years and 2 Months,Yes,189.7067238,94.32068883,High_spent_Large_value_payments,619.7899207,0,-0.0465,-0.1395,0.1859,0.2546,0.7877 -0x16a71,CUS_0xbbaa,August,49,432-85-0397,Media_Manager,60595.11,5106.5925,8,4,5,2,"Auto Loan, and Payday Loan",,17,8.23,7,Standard,412.1,37.6123458,15 Years and 11 Months,No,79.49363107,115.465009,High_spent_Large_value_payments,555.70061,0,-0.223,0.4242,-1.2507,-0.361,0.0176 -0x16a7d,CUS_0xa4dc,August,26,501-07-9854,Journalist,43802.1,3468.175,10,5,34.06745738,6,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",24.60432956,,11.52,9,Standard,2682.177742,26.44598751,,Yes,167.9030685,329.8971956,Low_spent_Medium_value_payments,102.296948,0,0.7214,-0.0802,0.0693,0.1125,0.0063 -0x16a89,CUS_0x5b65,August,25,949-81-1864,Doctor,85248.15,,4,7,5,2,"Not Specified, and Mortgage Loan",6.945774207,7,2.24,5,Good,1326.06,34.17849316,24 Years and 9 Months,No,113.4336024,565.5127767,Low_spent_Large_value_payments,280.1548709,0,-0.0347,0.023,2.9203,-1.0499,1.2206 -0x16a95,CUS_0x62a1,August,39,919-64-9669,Writer,17621.48,1401.456667,7,4,19,2,"Credit-Builder Loan, and Debt Consolidation Loan",,11,10.81,5,Standard,167.19,33.13513191,,Yes,23.39428879,23.23599174,High_spent_Large_value_payments,333.5153861,0,-1.6663,-0.0217,0.3148,0.3168,1.1793 -0x16aa1,CUS_0xa91e,August,43,188-52-7396,Developer,15859.47,,8,5,33,100,"Personal Loan, Personal Loan, Not Specified, Auto Loan, and Personal Loan",15.37942852,12,15.92,10,_,2151.1,32.63679465,19 Years and 9 Months,NM,55.39489257,104.8778743,Low_spent_Small_value_payments,237.9894831,0,-0.7511,-2.3189,1.7009,0.4501,0.0896 -0x16aad,CUS_0x4d0,August,33,438-27-8255,Architect,50050.56,,10,11,23.95700519,9,"Home Equity Loan, Personal Loan, Mortgage Loan, Auto Loan, Not Specified, Home Equity Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",24.55703325,,19.62,6,Bad,3136.860954,35.99838109,8 Years and 4 Months,Yes,1658.084682,205.9493824,!@9#%8,145.6035666,0,-1.982,-0.2194,0.5375,1.268,0.8861 -0x16ab9,CUS_0x8f4e,August,24,827-13-9020,Writer,32412.72,,9,6,32,9,"Student Loan, Home Equity Loan, Not Specified, Not Specified, Not Specified, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",46.38443855,27.74533863,7.99,12,Bad,4168.831382,33.69608478,10 Years and 5 Months,Yes,163.0675359,201.0037712,Low_spent_Large_value_payments,194.634693,0,0.6559,-0.1928,-0.9675,0.6454,0.4643 -0x16ac5,CUS_0x706e,August,56,297-12-6892,_______,39206.98,,1,5,3,3,"Credit-Builder Loan, Student Loan, and Home Equity Loan",12.62439577,13,1.15,2,_,719.08351,35.92617771,18 Years and 3 Months,No,55.82968367,,Low_spent_Large_value_payments,255.2085933,0,-0.0623,0.2094,-0.1792,-0.6804,2.0129 -0x16ad1,CUS_0x43a7,August,32,385-07-5752,Engineer,32151.76,,8,10,30.95700519,9,"Payday Loan, Student Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Student Loan, and Mortgage Loan",,21.743021,20.53,15,Bad,3132.854315,22.94727741,7 Years and 3 Months,NM,1505.448517,268.0455647,Low_spent_Small_value_payments,54.58688225,0,1.0022,0.4538,-1.1336,1.1108,-2.6212 -0x16add,CUS_0x21f9,August,38,339-93-8648,Accountant,61648.24,4845.353333,10,8,16.95700519,8,"Student Loan, Not Specified, Auto Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Payday Loan",31.82213713,19,28.28,13,Bad,4353.000954,27.79612013,,Yes,1682.480159,,Low_spent_Large_value_payments,178.5650597,0,-1.1202,-0.0944,2.0665,0.1047,0.1642 -0x16ae9,CUS_0xad18,August,80,#F%$D@*&8,Developer,17946.85,1437.570833,8,10,34.06745738,6,"Auto Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Payday Loan, and Student Loan",,22,22.61,7,_,4571.890954,27.99572407,6 Years and 11 Months,Yes,53.6106233,135.2406585,Low_spent_Small_value_payments,218.1855136,0,0.8504,0.365,0.142,0.177,0.5657 -0x16af5,CUS_0x2c14,August,48,022-42-7781,Entrepreneur,38458.71,,0,3,8,0,,,,9.77,1,_,971.1902396,38.9519556,33 Years and 2 Months,NM,0,167.9002114,Low_spent_Large_value_payments,413.7890386,0,-0.0752,0.7511,1.4202,0.2382,0.1427 -0x16b01,CUS_0xbafa,August,40,769-76-3568,Accountant,60015,5064.25,7,7,24,2,"Home Equity Loan, and Debt Consolidation Loan",17.28733864,,11.41,11,Standard,2461.7,36.83087621,,Yes,75.68353222,89.27643362,High_spent_Medium_value_payments,591.4650342,0,0.3915,0.0521,0.702,-0.8817,-0.2192 -0x16b0d,CUS_0xbd76,August,80,336-61-7010,Architect,17923.435,,7,7,8,1,Mortgage Loan,,13,16.42,1,_,1300.81,35.62987085,24 Years and 11 Months,Yes,7.847698737,,Low_spent_Small_value_payments,242.2750868,0,0.6097,-0.7666,-0.2202,-0.7317,1.4698 -0x16b19,CUS_0x574,August,38,298-39-3391,Entrepreneur,71830,,6,5,25,8,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Auto Loan, and Payday Loan",39.83587128,23,21.91,7,Bad,2952.58,34.60742221,11 Years and 5 Months,Yes,405.068005,152.9937587,High_spent_Medium_value_payments,274.9215696,0,-0.2015,0.9737,0.7388,1.1469,-1.3256 -0x16b25,CUS_0xa4f2,August,45,853-39-8294,Scientist,33531.29,2994.274167,2,5,5,2,"Student Loan, and Credit-Builder Loan",2.020312853,5,5.94,1,Good,1033.9,38.58545362,31 Years and 0 Months,No,35.08763184,144.2886787,Low_spent_Large_value_payments,390.0511061,0,0.9314,-1.1248,0.0973,1.0812,1.3397 -0x16b31,CUS_0x449,August,18,324-08-0373,Manager,46744.62,4111.385,7,9,27,2,"Not Specified, and Credit-Builder Loan",,8.107791068,14.45,9,Standard,2288.125345,39.89403221,19 Years and 11 Months,Yes,77.75856143,,High_spent_Medium_value_payments,530.5859381,0,-0.2449,0.663,-0.6021,-1.6957,0.4656 -0x16b3d,CUS_0x2fec,August,41,151-38-6083,Mechanic,51172.62,4221.385,3,5,22,7,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",,15,13.09,12,Standard,1980.82,31.97114818,15 Years and 3 Months,Yes,159.8717559,121.7703963,High_spent_Medium_value_payments,390.4963478,0,-0.8261,0.1793,0.511,-0.8573,-1.7102 -0x16b49,CUS_0xb662,August,18,414-25-8356,Teacher,86200.8,,7,3,12,5,"Payday Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, and Payday Loan",13.7199765,11,24.07,9,Standard,1441.59,37.38040191,10 Years and 11 Months,Yes,268.6121352,270.1494738,High_spent_Medium_value_payments,458.278391,0,-1.8732,1.3893,-0.8447,0.4272,-0.8018 -0x16b55,CUS_0x278f,August,80,094-63-0433,Lawyer,14646.28,1186.523333,6,3,17,6,"Credit-Builder Loan, Payday Loan, Payday Loan, Not Specified, Auto Loan, and Personal Loan",25.54573028,19,8.96,9,Standard,522.36,29.15822376,,NM,45.64989385,,Low_spent_Medium_value_payments,251.2483004,0,-0.6477,0.8025,-0.2806,-0.0517,-0.3647 -0x16b61,CUS_0x235c,August,24,322-57-2229,Developer,106824.68,,5,6,13,3,"Personal Loan, Auto Loan, and Not Specified",,,12.94,9,Standard,704.23,36.244906,,Yes,263.2803214,164.6112811,High_spent_Small_value_payments,740.9140642,0,-0.6866,-0.6125,0.0077,1.0726,0.1508 -0x16b6d,CUS_0x1890,August,26,765-48-3540,Lawyer,20823.28,1473.273333,7,6,25,7,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,,23.59,12,_,2964.391587,31.43110659,2 Years and 10 Months,Yes,85.86895832,,!@9#%8,252.4080256,0,0.3311,2.5131,1.1927,0.9912,-0.8467 -0x16b79,CUS_0xa18d,August,18,156-02-3992,Teacher,17492.31,,7,9,27,3,"Student Loan, Not Specified, and Auto Loan",30.47416837,14.9727379,15.15,11,Standard,2326.52986,28.44456165,6 Years and 6 Months,Yes,23.28268243,,Low_spent_Large_value_payments,276.3637145,0,-1.7815,0.4183,-0.245,0.4416,0.6341 -0x16b85,CUS_0x2ef1,August,35,398-24-4172,Accountant,146861.12,12514.42667,4,7,9,3,"Payday Loan, Auto Loan, and Personal Loan",28.45027479,21,15.75,8,Standard,1368.79,33.95421779,9 Years and 9 Months,Yes,310.4369289,190.5783865,High_spent_Medium_value_payments,1000.427351,0,2.4556,-0.3399,0.362,0.63,-0.4904 -0x16b91,CUS_0x4389,August,34,433-66-2820,Lawyer,20587.96,1953.663333,8,5,12,2,"Debt Consolidation Loan, and Payday Loan",14.04570548,9,13.87,3,Standard,854.63,32.69150706,18 Years and 5 Months,NM,26.53316472,79.84575178,Low_spent_Small_value_payments,378.9874168,0,-0.3939,0.8534,-0.3555,-0.0724,0.0642 -0x16b9d,CUS_0x4dcd,August,56,833-44-7020,Teacher,72760.04,6085.336667,8,4,15,1,Home Equity Loan,,13,6.58,2,_,792.46,28.37168828,22 Years and 6 Months,Yes,31.28499648,221.6198068,High_spent_Small_value_payments,615.6288634,0,1.114,-0.4792,0.364,1.8306,-0.4046 -0x16ba9,CUS_0x92f8,August,22,229-01-4348,Teacher,34334.9,2999.241667,5,6,8,3,"Debt Consolidation Loan, Auto Loan, and Student Loan",0,1,5.58,3,Good,1094.04,23.94045153,27 Years and 0 Months,No,74.3470994,89.00582033,High_spent_Small_value_payments,396.5712469,0,-1.5645,-1.9614,-0.0761,1.4536,0.4131 -0x16bb5,CUS_0x3f94,August,52,089-12-3246,Entrepreneur,96943.47,8107.6225,0,5,3.288361749,100,"Home Equity Loan, Mortgage Loan, and Debt Consolidation Loan",,12,6.62,4,Good,304.31,35.25130136,27 Years and 6 Months,No,175.8727077,601.5744754,High_spent_Large_value_payments,693.2525279,0,-1.002,-0.5983,-0.4452,-0.4759,-0.9181 -0x16bc1,CUS_0xc203,August,24,#F%$D@*&8,Manager,14143.68,925.64,8,10,26.88954781,100,"Payday Loan, Student Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",,15,29.31,252,Bad,3729.82,31.71361465,3 Years and 6 Months,Yes,1423.10395,,Low_spent_Small_value_payments,210.1148506,0,-1.6917,2.0319,0.1282,-0.4523,0.0774 -0x16bcd,CUS_0x40dc,August,24,079-60-0557,Entrepreneur,19181.19,1351.4325,1,5,4,1,Mortgage Loan,4.462346276,8,5.25,1,Good,757.1842967,29.01845069,18 Years and 10 Months,No,11.51889473,150.0554117,Low_spent_Small_value_payments,283.5909868,0,-1.4051,0.1908,-0.3837,0.1641,0.2667 -0x16bd9,CUS_0x8318,August,18,303-37-5470,Lawyer,10190.065,,8,7,11,5,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Payday Loan",,,10.19,10,_,962.78,31.76684474,8 Years and 2 Months,NM,22.5480028,105.2923555,Low_spent_Small_value_payments,246.67685,0,1.8823,0.3214,0.2945,-0.0464,0.3089 -0x16be5,CUS_0x45d2,August,80,548-90-9826,Engineer,34053.28,,3,6,5,27,"Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",3.06968878,7,5.81,3,_,952.0036063,25.33737272,32 Years and 8 Months,No,72.56396912,241.1677847,Low_spent_Medium_value_payments,275.8891439,0,-0.1439,-0.9008,-0.9815,-0.0047,-2.0039 -0x16bf1,CUS_0xa1ce,August,46,943-83-3622,Scientist,17092.69,,7,3,19,7,"Not Specified, Not Specified, Mortgage Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",,14,16.4,8,Standard,1417.06,37.2793783,12 Years and 5 Months,Yes,62.79425952,79.93115441,High_spent_Small_value_payments,286.8136694,0,-0.0039,-0.6934,-0.0891,0.648,-0.1622 -0x16bfd,CUS_0x72fb,August,45,922-41-1153,Musician,41734.76,3688.896667,8,4,5,1,Student Loan,14.83815447,9,7.1,2,Standard,297.64,33.3895471,20 Years and 3 Months,No,19.35073095,122.4446404,High_spent_Medium_value_payments,477.0942953,0,0.5309,-0.5104,-1.1179,-0.2847,-0.9723 -0x16c09,CUS_0x55e0,August,26,857-03-0726,Writer,16100.17,,9,5,21.06745738,7,"Home Equity Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Payday Loan, and Home Equity Loan",36.35763802,18.75808407,18.09,10,Standard,2821.889599,25.70508412,7 Years and 0 Months,NM,85.48267558,123.6184327,Low_spent_Small_value_payments,172.6466871,0,0.2979,0.3508,-0.5875,0.4969,-1.2797 -0x16c15,CUS_0x368d,August,21,012-42-3003,Developer,104816.56,,3,7,13,3,"Personal Loan, Student Loan, and Not Specified",,22,9.18,3,Standard,1220.07,33.33721699,30 Years and 5 Months,Yes,192.7305999,205.5295374,!@9#%8,738.711196,0,1.303,0.6447,-0.324,-0.7532,1.2983 -0x16c21,CUS_0x622e,August,44,336-84-5929,Mechanic,120333.04,10246.75333,8,4,3,1,Not Specified,,8,8.67,4,Good,1445.54,43.15988785,19 Years and 11 Months,No,67.81900653,185.0221613,High_spent_Small_value_payments,1031.834165,0,-0.3337,-0.9431,-0.4165,-0.8041,0.0211 -0x16c2d,CUS_0x7c12,August,32,477-14-0592,Manager,31417.15,,3,6,18,3,"Home Equity Loan, Payday Loan, and Not Specified",13.99502046,10,17.26,0,Standard,362.31,39.38919125,20 Years and 11 Months,Yes,64.18962322,27.59498085,High_spent_Large_value_payments,414.6249793,0,-1.7965,1.6926,1.3047,0.5499,-0.5893 -0x16c39,CUS_0x6493,August,32,430-26-7042,Doctor,89154.27,7223.5225,3,4,16.28836175,2,"Payday Loan, and Payday Loan",14.25170583,,18.58,10,Standard,102.66,34.26282744,22 Years and 6 Months,Yes,146.0967368,10419.93746,High_spent_Medium_value_payments,673.426796,0,-0.3384,-0.6995,-0.3993,-0.0099,1.2474 -0x16c45,CUS_0x4020,August,33,273-14-6142,Mechanic,14804.08,979.6733333,6,9,19.88954781,7,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Auto Loan, and Auto Loan",19.08786174,15,23.06,12,Bad,2812.787116,28.51565616,7 Years and 10 Months,Yes,1404.750834,41.72186406,High_spent_Medium_value_payments,213.3577735,0,0.6249,-0.2917,0.6248,2.271,-1.1004 -0x16c51,CUS_0x8059,August,25,824-91-5036,Developer,88918.54,7657.878333,4,4,11,2,"Mortgage Loan, and Auto Loan",13.42039283,9.555917645,1.24,6,Good,1306.869045,42.77973292,24 Years and 11 Months,NM,110.4176553,139.0316629,High_spent_Medium_value_payments,766.3385152,0,1.859,1.1479,0.4506,-0.8006,-0.829 -0x16c5d,CUS_0x9a55,August,43,371-02-6134,Scientist,7296.72,,8,6,29,5,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Student Loan",20.6821072,14.63144049,17.65,13,_,2818.731827,39.42911377,6 Years and 6 Months,Yes,30.01460072,96.19545018,Low_spent_Small_value_payments,247.7959491,0,-0.9895,-0.8357,-2.3452,-0.3922,-0.0513 -0x16c69,CUS_0x6e1c,August,53,#F%$D@*&8,Lawyer,82230.76,,1,878,5,0,,,133,6.05,6,Good,1117.273765,30.14907577,31 Years and 0 Months,No,0,,High_spent_Large_value_payments,778.5781305,0,-0.3583,-1.6737,0.4125,0.5426,0.7434 -0x16c75,CUS_0x3e6b,August,22,763-33-5170,_______,16140.325,,4,4,9,3,"Not Specified, Not Specified, and Debt Consolidation Loan",13.51247322,13,8.07,6,_,382.28,22.04532401,21 Years and 10 Months,Yes,38.45894324,107.5778885,Low_spent_Large_value_payments,254.8658766,0,-0.5955,0.1443,-0.4327,0.2508,0.8807 -0x16c81,CUS_0x2cf4,August,28,633-12-4460,Entrepreneur,14817.665,1351.805417,6,5,7,2,"Credit-Builder Loan, and Not Specified",10.61075975,8,1.29,2,Good,1150.18,31.33554121,24 Years and 9 Months,No,13.26910048,80.82678192,Low_spent_Medium_value_payments,321.0846593,0,-0.7196,-0.8372,0.8313,-0.1913,0.443 -0x16c8d,CUS_0x57e,August,80,882-25-3454,_______,70015.36,6128.12099,8,4,7,6,"Personal Loan, Personal Loan, Not Specified, Mortgage Loan, Auto Loan, and Debt Consolidation Loan",19.36671865,,16.68,7,Standard,134.86,26.73761899,11 Years and 8 Months,Yes,351.3214863,68.52961613,High_spent_Medium_value_payments,444.6025743,0,0.6544,0.9797,-0.0009,-1.091,-1.4839 -0x16c99,CUS_0xc420,August,29,233-86-9353,Media_Manager,33312.69,,3,6,5,0,,16.28524136,11,8.23,4,Standard,499.74,30.17922323,22 Years and 3 Months,Yes,0,233.7290146,Low_spent_Large_value_payments,341.0767354,0,-0.7471,0.0586,1.4353,-0.4272,1.4572 -0x16ca5,CUS_0xa4f5,August,29,515-00-5081,Mechanic,45127.38,,9,6,33,9,"Payday Loan, Payday Loan, Personal Loan, Payday Loan, Student Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, and Auto Loan",59.84974789,32.83159416,5.03,8,_,2597.470987,22.55422279,10 Years and 9 Months,Yes,267.10215,100.0114016,High_spent_Medium_value_payments,229.5479483,0,-0.3339,0.1105,1.3037,0.2672,-0.0252 -0x16cb1,CUS_0x6200,August,27,473-54-7971,Journalist,35664.22,2686.018333,9,7,18.06745738,5,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,23.06443943,10.24,11,Bad,5078.583499,30.50221871,2 Years and 8 Months,NM,137.8839913,180.2908669,Low_spent_Medium_value_payments,203.7066872,0,0.9534,0.7897,0.9195,0.8047,0.41 -0x16cbd,CUS_0x25f7,August,28,627-53-3917,Teacher,65668.78,5238.398333,2,6,4,4,"Personal Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",14.3913735,11.79469778,7.36,2,Good,1430.761598,37.96226549,29 Years and 3 Months,NM,135.1487396,,High_spent_Medium_value_payments,471.3597394,0,-0.411,-2.1649,0.3383,-0.0225,-1.6317 -0x16cc9,CUS_0xa8d4,August,42,228-74-4538,Lawyer,8786.87,592.2391667,9,9,21,3,"Personal Loan, Student Loan, and Personal Loan",30.99243099,22.51414939,9.92,1531,Bad,1933.244872,27.6029486,17 Years and 4 Months,Yes,16.80742803,35.25100818,Low_spent_Small_value_payments,297.1654805,0,-0.4033,-0.9153,-0.8031,0.6731,-1.2903 -0x16cd5,CUS_0x6a84,August,45,670-40-8222,_______,69279.38,5836.281667,3,5,8,0,,11.83387952,11.91292707,9.25,3,_,1593.433616,36.51905729,20 Years and 6 Months,No,0,217.5480603,!@9#%8,616.0801064,0,2.3642,0.4507,-1.5214,0.4709,-1.8152 -0x16ce1,CUS_0x9476,August,19,#F%$D@*&8,Accountant,18867.73,1863.310833,8,10,16.95700519,6,"Auto Loan, Auto Loan, Auto Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",40.83213672,23.52224593,3,6,Bad,3215.690968,27.50942416,9 Years and 9 Months,Yes,1412.138608,,Low_spent_Small_value_payments,153.6053927,0,0.247,-0.5423,-0.3739,-0.1869,-0.3125 -0x16ced,CUS_0x457b,August,28,852-68-5281,Teacher,82330.2,6731.85,9,10,20,3,"Debt Consolidation Loan, Student Loan, and Mortgage Loan",41.53191135,24.08170251,19.76,9,Bad,1868.977862,35.45218731,8 Years and 10 Months,Yes,155.619419,,Low_spent_Medium_value_payments,188.3160314,0,-1.7355,-1.529,-0.199,2.1107,-0.5941 -0x16cf9,CUS_0x8026,August,18,821-06-0110,Teacher,30420.88,2545.073333,6,7,18,6,"Payday Loan, Auto Loan, Student Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",47.74271247,29.6450172,1.99,14,_,3130.81975,23.71901221,,NM,137.8789455,,Low_spent_Small_value_payments,131.4308534,0,0.2139,-0.2572,-0.9729,0.0066,-0.4039 -0x16d05,CUS_0xab92,August,27,771-54-0951,Doctor,14562.88,1069.573333,7,4,18,4,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",,11.21231342,11.05,10,Standard,1753.916173,28.72883027,16 Years and 3 Months,Yes,43.28729267,73.45191295,Low_spent_Small_value_payments,280.2181277,0,-0.1872,-0.3527,-1.3871,-0.3183,-0.8606 -0x16d11,CUS_0x7c4a,August,43,193-71-6964,Writer,17633.71,1489.475833,5,4,10.06745738,7,"Payday Loan, Payday Loan, Home Equity Loan, Personal Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",21.06674429,13.53036042,20.8,9,Standard,1852.106195,32.54838262,6 Years and 10 Months,Yes,62.0552962,146.8848933,Low_spent_Small_value_payments,203.2871059,0,0.1204,-0.741,2.0462,2.5862,0.1034 -0x16d1d,CUS_0x94bc,August,22,182-35-0055,Doctor,103345.12,,3,6,14,5,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Student Loan",14.73006564,12,12.52,6,_,89.33908734,23.38788672,6 Years and 9 Months,NM,817.9870257,921.6299045,Low_spent_Medium_value_payments,13.82841516,0,0.4773,0.8422,-0.9212,-1.4161,0.6449 -0x16d29,CUS_0x168d,August,34,305-62-3317,Entrepreneur,94559.73,7712.9775,3,6,11,4,"Payday Loan, Mortgage Loan, Auto Loan, and Auto Loan",16.56832939,,5.83,4,Good,46.09339679,31.190071,28 Years and 5 Months,No,183.7356808,97.39468271,High_spent_Medium_value_payments,754.9052937,0,-1.0305,-0.9421,-0.1589,-0.2489,0.3306 -0x16d35,CUS_0x2240,August,28,617-35-4690,Media_Manager,14089.595,,4,7,12,2,"Debt Consolidation Loan, and Personal Loan",,18,9.68,6,Standard,586.69,39.05413003,,Yes,13.36925382,,Low_spent_Small_value_payments,257.9960577,0,0.9625,-0.3951,-0.5126,-0.0072,1.2325 -0x16d41,CUS_0x8091,August,22,403-00-0161,Developer,79846.48,6576.873333,5,3,1,2,"Credit-Builder Loan, and Credit-Builder Loan",1.715099515,2.317547567,3.93,,Good,1349.677773,33.22182186,,No,132.5088523,405.8347018,Low_spent_Medium_value_payments,399.3437792,0,2.2573,-0.3492,-0.0727,0.1286,-0.4308 -0x16d4d,CUS_0x9fb1,August,51,626-68-2831,Teacher,36372.21,,5,4,5,4,"Auto Loan, Auto Loan, Home Equity Loan, and Student Loan",6.001962886,8,11.78,5,Good,1286.273318,23.01412871,26 Years and 9 Months,No,105.7973738,84.45871442,High_spent_Medium_value_payments,394.4073658,0,0.6961,0.4525,2.0119,0.5453,0.0858 -0x16d59,CUS_0x3941,August,18,782-05-3224,Accountant,59993.32,,5,4,16,6,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",19.27453058,13,10.61,7,Standard,1326.5,33.05661202,9 Years and 10 Months,Yes,205.9893195,,Low_spent_Medium_value_payments,84.50845218,0,-0.2338,-1.0143,1.3934,0.5218,1.073 -0x16d65,CUS_0x7a26,August,46,107-07-0053,Doctor,28817.1,2191.425,5,4,3,2,"Home Equity Loan, and Not Specified",,8,13.08,2,_,778.5878219,39.95807868,25 Years and 0 Months,No,24.25052608,200.4071906,Low_spent_Small_value_payments,311.7871728,0,-1.0978,-1.7409,0.7163,0.1909,0.5328 -0x16d71,CUS_0x624b,August,18,847-17-3721,Accountant,54174.51,,6,6,18,7,"Personal Loan, Personal Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",47.72191282,25.99126406,8.02,12,Bad,2450.674378,27.12633942,6 Years and 6 Months,Yes,226.640384,271.2830462,!@9#%8,185.7308198,0,1.0608,0.9676,0.8354,0.7943,-1.1167 -0x16d7d,CUS_0x1d1f,August,18,085-21-9898,Musician,16774.54,,8,3,15.28836175,2,"Personal Loan, Mortgage Loan, and Payday Loan",8.866273559,10,17.38,10,Standard,156.87,29.89784876,17 Years and 2 Months,Yes,22.19408863,443.8817288,High_spent_Medium_value_payments,369.3494769,0,-0.4315,-0.2054,-0.0977,0.3098,-1.1377 -0x16d89,CUS_0x3155,August,38,743-64-6287,Manager,10152.935,748.0779167,6,3,16,6,"Personal Loan, Mortgage Loan, Mortgage Loan, Not Specified, Auto Loan, and Mortgage Loan",18.84054072,15.72297353,,7,_,2421.183269,36.82274063,6 Years and 9 Months,Yes,30.20465335,29.25220494,Low_spent_Small_value_payments,305.3509334,0,0.4353,0.3572,0.676,0.2757,1.0035 -0x16d95,CUS_0x19b2,August,38,469-26-7362,Developer,34134.78,,8,7,25,7,"Student Loan, Payday Loan, Mortgage Loan, Auto Loan, Not Specified, Not Specified, and Debt Consolidation Loan",,20,19.06,15,Standard,2374.78,24.65338529,14 Years and 2 Months,Yes,195.5160025,161.169957,High_spent_Small_value_payments,174.0705405,0,-2.1834,0.9728,-1.8436,-0.5207,-0.7863 -0x16da1,CUS_0x5817,August,24,995-22-6108,Scientist,46927.68,3725.64,8,215,21,8,"Student Loan, Credit-Builder Loan, Personal Loan, Student Loan, Student Loan, Student Loan, Home Equity Loan, and Not Specified",23.9622645,,5.29,10,Bad,2093.313822,37.01502814,17 Years and 0 Months,Yes,237.2213775,153.8632725,High_spent_Medium_value_payments,231.47935,0,1.2383,0.3769,-0.5745,0.1233,0.6351 -0x16dad,CUS_0x292d,August,37,965-60-0407,Developer,37261.78,,5,4,2,1,Not Specified,0.035812197,1,10.72,5,Good,1106.94,29.08134424,32 Years and 0 Months,No,360.428952,,Low_spent_Medium_value_payments,493.9828726,0,-1.0943,-1.6048,0.0322,0.5149,0.9988 -0x16db9,CUS_0xb602,August,38,876-52-7514,Media_Manager,28488.56,,9,8,27,3,"Auto Loan, Payday Loan, and Mortgage Loan",27.94383453,19,15.16,9,Standard,1305.55,33.87723112,7 Years and 11 Months,Yes,64.24033844,,Low_spent_Large_value_payments,259.2418645,0,-0.9398,-1.198,1.4659,-0.7167,-0.2782 -0x16dc5,CUS_0x1ab9,August,48,915-26-4386,Engineer,15451.115,,4,6,9.288361749,4,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,10,18.3,,Standard,51.69417612,34.87008904,,Yes,32.6768801,489.8298206,High_spent_Medium_value_payments,306.7850497,0,-0.3606,-0.9867,-0.5797,0.7771,-0.832 -0x16dd1,CUS_0x97a0,August,22,065-31-8896,Musician,59978.52,,6,7,13,0,,12.3746092,11,3.54,3,Standard,479.07,34.98702082,,No,0,288.4303379,Low_spent_Small_value_payments,486.2906621,0,0.4721,0.7644,1.5461,-1.3735,0.0624 -0x16ddd,CUS_0x2f68,August,34,#F%$D@*&8,Teacher,93704.19,,3,4,20,2,"Mortgage Loan, and Home Equity Loan",,16,19.21,5,_,1194.35,40.3078497,28 Years and 10 Months,Yes,88.93927103,,High_spent_Large_value_payments,820.494858,0,1.1529,-0.8382,-1.8547,-0.3414,0.2821 -0x16de9,CUS_0x6b5f,August,30,252-01-2387,Writer,50352.39,,10,10,33.95700519,8,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,25.13268699,27.46,11,Bad,5186.559213,30.43925677,3 Years and 8 Months,Yes,1582.199793,53.89058037,High_spent_Large_value_payments,330.8625073,0,0.8101,-0.105,0.6916,0,-0.8251 -0x16df5,CUS_0x7d05,August,32,877-25-6063,Scientist,20986.9,,10,7,17.06745738,7,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Personal Loan",27.55157525,,17.61,15,Standard,2746.750954,33.54364263,16 Years and 3 Months,Yes,109.4967742,,Low_spent_Large_value_payments,224.5987166,0,0.849,0.4484,0.3309,-0.0014,0.4229 -0x16e01,CUS_0x713d,August,33,187-24-2463,Architect,8717.04,,8,3,18,4,"Mortgage Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",19.49153646,15.65021852,10.74,10,_,2482.322156,37.94002335,15 Years and 4 Months,Yes,63.23082678,65.5917044,Low_spent_Small_value_payments,253.9247098,0,0.3148,0.2503,-1.0704,0.5041,-1.4114 -0x16e0d,CUS_0xaf63,August,33,#F%$D@*&8,Media_Manager,33949.42,,5,6,4.288361749,2,"Home Equity Loan, and Credit-Builder Loan",19.42044779,17,3.15,3,Standard,385.92,27.37708872,19 Years and 11 Months,No,44.46127902,476.8800085,High_spent_Small_value_payments,468.8080068,0,2.5575,-0.0028,0.0631,-1.379,-1.4511 -0x16e19,CUS_0x825d,August,52,884-90-7852,Musician,34640.23,2897.685833,6,4,10,1,Credit-Builder Loan,12.98309207,10,13.1,2,Standard,714.2,35.07569806,22 Years and 8 Months,Yes,26.83808377,239.7173173,Low_spent_Medium_value_payments,303.2131823,0,-0.0348,-0.0698,-0.4687,-0.4924,-0.3707 -0x16e25,CUS_0x79a8,August,25,211-96-9068,Lawyer,106674.51,8657.5425,7,4,17,0,,21.77337405,13.12406817,4.24,8,Standard,347.7401732,39.71761925,19 Years and 10 Months,No,0,617.8491266,Low_spent_Small_value_payments,537.9051234,0,1.0994,-0.4925,-1.2355,-0.6196,-0.6866 -0x16e31,CUS_0x41ae,August,49,192-41-5590,Doctor,11526.465,,5,7,8.288361749,4,"Personal Loan, Mortgage Loan, Not Specified, and Mortgage Loan",,14,4.64,7,Good,128.6399209,22.70202264,,No,32.14924926,,Low_spent_Large_value_payments,250.5720337,0,1.7474,1.07,0.0073,-1.2271,-0.3326 -0x16e3d,CUS_0xad1e,August,34,733-90-4431,Engineer,72690.44,,8,5,34,9,"Not Specified, Credit-Builder Loan, Mortgage Loan, Personal Loan, Not Specified, Student Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",,25,2.49,9,Bad,2686.24,25.87947479,20 Years and 6 Months,NM,377.8057201,85.08493186,High_spent_Large_value_payments,376.6630147,0,-0.9717,-0.1046,-0.2389,-0.1108,0.5804 -0x16e49,CUS_0xb2a3,August,39,858-73-0362,Engineer,8707.38,426.5909733,4,4,23,4,"Home Equity Loan, Mortgage Loan, Student Loan, and Debt Consolidation Loan",15.43628222,11.94255457,16.68,8,Standard,1848.033058,35.68748876,11 Years and 4 Months,Yes,48.50746855,29.16876831,High_spent_Small_value_payments,258.0092899,0,-1.4354,0.1786,-0.8515,0.3383,-0.7918 -0x16e55,CUS_0xa9d6,August,25,014-27-9554,Scientist,97612.14,8014.345,8,4,9,4,"Personal Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",,11.91893151,11.72,7,_,1653.274446,36.12500976,10 Years and 10 Months,Yes,261.5834257,286.8577711,!@9#%8,542.9933032,0,-0.7569,0.8539,1.2537,0.8756,0.7665 -0x16e61,CUS_0x6abf,August,33,474-00-9682,Accountant,14021.495,1077.457917,7,5,16,2,"Debt Consolidation Loan, and Payday Loan",24.68624197,16,11.19,11,Standard,263.51,40.38928663,13 Years and 5 Months,Yes,13.54653842,136.6883862,Low_spent_Small_value_payments,247.510867,0,0.7414,-0.1001,0.4435,-0.0922,-0.7115 -0x16e6d,CUS_0x511d,August,39,494-39-0599,Scientist,71112.84,5885.07,6,4,11,1,Credit-Builder Loan,12.6955879,8.302375829,11.07,7,Standard,480.4494225,31.28656547,20 Years and 0 Months,No,53.42699481,228.9643099,Low_spent_Small_value_payments,596.1156953,0,0.3711,0.5479,0.814,0.1834,-0.2296 -0x16e79,CUS_0x22c5,August,55,280-90-5162,Doctor,71878.92,,1712,1,5,2,"Personal Loan, and Student Loan",7.925533035,7,10.24,1,Good,583.2147452,31.19469771,32 Years and 0 Months,No,88.02229277,263.4985497,Low_spent_Medium_value_payments,569.0404159,0,0.6952,-0.0826,-0.7092,-0.4403,1.1637 -0x16e85,CUS_0x3442,August,47,037-66-1131,Scientist,18186.22,,7,4,15,0,,,16,5.49,4,Standard,1.42,30.33582126,19 Years and 2 Months,No,0,44.24651223,High_spent_Medium_value_payments,381.9053211,0,0.7806,-0.165,-0.8338,2.9872,-0.5836 -0x16e91,CUS_0x14de,August,22,656-31-0155,Manager,53709.66,4375.805,10,10,29.88954781,8,"Mortgage Loan, Student Loan, Personal Loan, Not Specified, Credit-Builder Loan, Student Loan, Personal Loan, and Payday Loan",20.08037707,15,21.47,12,Bad,3069.57,38.99290888,,Yes,1644.976599,60.52977871,High_spent_Large_value_payments,277.7440408,0,-0.5627,0.0363,0.5726,0.7394,0.6647 -0x16e9d,CUS_0x1a61,August,19,958-80-8887,Manager,161689.72,13532.14333,0,7,6,0,,2.99376136,4,1.59,5,Good,1050.75,39.72585752,28 Years and 9 Months,No,0,552.6214324,High_spent_Medium_value_payments,1050.592901,0,0.493,0.6395,-1.0488,0.9128,1.4123 -0x16ea9,CUS_0x699,August,26,907-36-5534,Engineer,16465.61,,3,3,3,2,"Not Specified, and Personal Loan",,4,8.3,1,Good,1165.7,30.89265828,30 Years and 3 Months,No,19.67313463,77.18971628,!@9#%8,285.2505658,0,1.0106,0.5762,-0.4715,1.0658,0.1336 -0x16eb5,CUS_0x8ac6,August,41,275-73-6903,_______,95895.72,,0,512,2.288361749,2,"Home Equity Loan, Auto Loan, and Not Specified",,7,1.75,2,_,485.0744075,24.33158969,26 Years and 8 Months,No,164.8155675,728.1003694,Low_spent_Small_value_payments,640.209886,0,0.658,-1.3138,0.0467,0.3172,0.248 -0x16ec1,CUS_0x1c89,August,18,794-52-2242,Writer,8723.565,506.96375,1202,10,33.88954781,9,"Payday Loan, Payday Loan, Payday Loan, Mortgage Loan, Not Specified, Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",25.47114068,,16.6,14,Bad,4200.42,33.51217254,13 Years and 0 Months,Yes,1368.646573,18.58383834,Low_spent_Medium_value_payments,249.1358825,0,0.6984,-0.8213,-0.6655,0.2876,-0.4105 -0x16ecd,CUS_0x939b,August,36,917-93-3502,Manager,38821.54,3187.128333,10,9,18.88954781,9,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",,20,5.74,9,_,1541.26,26.80398221,14 Years and 5 Months,NM,1574.219856,292.3111304,Low_spent_Large_value_payments,27.85176535,0,-1.7849,0.9453,0.4005,-1.7949,-0.8224 -0x16ed9,CUS_0x9529,August,18,878-99-8757,Mechanic,42519.57,3734.2975,10,9,27.95700519,8,"Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Student Loan, Student Loan, and Personal Loan",,24,24.1,8,Bad,2927.340954,38.97892535,7 Years and 8 Months,Yes,1561.810325,61.06713932,High_spent_Medium_value_payments,279.501916,0,0.6404,0.3831,0.9348,-0.7629,0.108 -0x16ee5,CUS_0xb15c,August,33,223-57-2183,Accountant,16465.64,,5,6,5,2,"Auto Loan, and Mortgage Loan",,17.91462039,8.56,0,Standard,981.9946192,35.30780242,15 Years and 9 Months,Yes,26.10407861,142.7354365,Low_spent_Medium_value_payments,278.3741516,0,-0.7485,-0.1045,0.0709,-0.8568,-0.6214 -0x16ef1,CUS_0x1697,August,42,044-06-1094,Musician,69035.64,,8,9,30.88954781,7,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",52.75352532,28.48598442,1.32,9,Bad,2199.129046,40.05274435,10 Years and 3 Months,Yes,1676.464441,,High_spent_Medium_value_payments,250.0108618,0,-1.6305,0.4743,0.4792,-0.5089,-0.6795 -0x16efd,CUS_0xa70f,August,45,338-92-1938,Accountant,18295.61,,7,6,27,7,"Not Specified, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",13.88625593,12.10930936,20.24,11,Standard,2335.522879,33.4469047,,Yes,69.27282416,,Low_spent_Small_value_payments,222.2245664,0,-0.4056,0.0093,-0.4986,1.3817,0.6475 -0x16f09,CUS_0x2d9a,August,18,138-19-7383,Doctor,34620.62,,3,5,25,2,"Auto Loan, and Debt Consolidation Loan",,20.48343219,11.23,9,_,1907.836266,38.19918852,15 Years and 10 Months,Yes,41.96470261,10000,High_spent_Small_value_payments,309.238999,0,2.5472,0.5707,0.5572,-0.2079,-0.7024 -0x16f15,CUS_0xb9c5,August,49,451-16-6332,Media_Manager,19986.36,,7,7,7,1,Credit-Builder Loan,15.13756277,11,1.77,4,Standard,669.47,33.29754956,22 Years and 6 Months,No,13.37928224,70.42125289,High_spent_Medium_value_payments,352.6524649,0,1.7758,-1.3667,-1.9951,0.173,-0.4165 -0x16f21,CUS_0x646e,August,27,142-24-2784,Media_Manager,20487.1,,8,10,21.06745738,3,"Personal Loan, Auto Loan, and Personal Loan",25.35733085,16,8.75,7,Bad,2877.720954,33.26673137,5 Years and 8 Months,Yes,30.62296453,44.03352491,High_spent_Medium_value_payments,310.849056,0,-1.5286,1.5395,1.3077,1.6751,-0.1941 -0x16f2d,CUS_0x3937,August,25,#F%$D@*&8,Media_Manager,16399.77,1114.6475,9,5,29,8,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",,27.1623765,15.04,9,Bad,5209.987619,28.91871157,4 Years and 10 Months,Yes,61.99932742,89.49721647,Low_spent_Small_value_payments,249.9682061,0,1.6459,0.8305,0.8085,-0.2127,-1.5758 -0x16f39,CUS_0x219c,August,46,017-01-5532,_______,30812.96,2422.746667,1,7,3,1,Credit-Builder Loan,5.085715201,5.940020953,8.21,4,Good,1109.448096,36.49722896,29 Years and 8 Months,No,24.06489016,123.8198958,Low_spent_Small_value_payments,384.3898807,0,-0.4105,1.2177,0.8484,-0.4938,0.6813 -0x16f45,CUS_0xc1e7,August,25,475-26-4534,Journalist,38721.44,3340.786667,6,6,19,100,"Mortgage Loan, Home Equity Loan, Payday Loan, Not Specified, and Student Loan",,20,20.87,9,Bad,3467.82,27.17367302,13 Years and 9 Months,Yes,87.26862846,263.9075947,Low_spent_Medium_value_payments,262.9024435,0,0.2035,-0.8772,0.3431,-0.1385,0.0936 -0x16f51,CUS_0x742c,August,21,954-22-2142,Engineer,19562.27,1877.189167,8,6,20,5,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, and Payday Loan",,12,8.3,9,Standard,1517.03,35.61747189,20 Years and 0 Months,Yes,69.700562,,Low_spent_Small_value_payments,190.5086728,0,-1.1131,-1.1677,1.2316,-0.9055,1.207 -0x16f5d,CUS_0x67b0,August,18,136-79-3729,Engineer,19132.66,1583.388333,4,3,32,4,"Student Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",20.60240047,17,7.2,7,_,2404.05,30.58632662,15 Years and 2 Months,Yes,45.17437938,,Low_spent_Small_value_payments,239.8156411,0,0.4174,0.5811,-0.2544,-0.3299,-1.3039 -0x16f69,CUS_0x2f21,August,43,491-19-0912,_______,19833.55,,7,7,24.06745738,4,"Not Specified, Home Equity Loan, Auto Loan, and Credit-Builder Loan",31.19078518,20,2.88,9,Bad,1540.360954,34.06254086,7 Years and 2 Months,Yes,50.84005949,67.39172515,!@9#%8,312.5275108,0,-1.6181,1.2055,0.8838,0.851,1.2978 -0x16f75,CUS_0x8e5a,August,39,718-48-1833,Developer,57818.72,4864.226667,7,7,21,2,"Student Loan, and Credit-Builder Loan",,18.97924992,4.09,12,Bad,2631.890111,37.882655,14 Years and 6 Months,Yes,73.70957048,395.1362218,Low_spent_Small_value_payments,307.5768744,0,0.1513,0.1733,-0.5194,2.6576,-1.4066 -0x16f81,CUS_0x129b,August,24,#F%$D@*&8,Entrepreneur,95933.68,,4,5,15,7,"Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Payday Loan",12.24069995,10,17.87,5,Standard,129.15,34.16585064,8 Years and 2 Months,Yes,361.8671109,167.7180281,High_spent_Large_value_payments,496.4621944,0,0.6888,-0.0827,0.8105,0.4102,0.8821 -0x16f8d,CUS_0x9587,August,20,#F%$D@*&8,Engineer,17902.265,1306.855417,5,4,5,2,"Home Equity Loan, and Debt Consolidation Loan",12.733187,12,3.55,8,Good,398.7399825,28.39449804,32 Years and 3 Months,No,16.2450511,38.00644889,High_spent_Small_value_payments,341.8679828,0,-0.9222,0.1819,-0.4541,2.2738,0.0769 -0x16f99,CUS_0x28ba,August,37,158-26-3247,Entrepreneur,103044.24,,6,7,5,2,"Personal Loan, and Home Equity Loan",26.25966361,17,11.93,1,Standard,1196.09,34.04790027,17 Years and 5 Months,Yes,96.72786455,105.4256695,!@9#%8,868.848466,0,0.8594,-0.2089,-0.2802,-1.8167,-1.8959 -0x16fa5,CUS_0x3720,August,40,781-57-6368,Architect,8770.03,,8,10,24,6,"Student Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Personal Loan",,11.52936906,9.83,11,_,2605.214263,36.94150966,15 Years and 9 Months,Yes,30.31998458,10000,Low_spent_Medium_value_payments,277.1999269,0,-0.0008,-0.532,0.6092,-0.0616,-0.5807 -0x16fb1,CUS_0xcf0,August,22,049-18-2146,Engineer,76019.68,,9,6,29,8,"Personal Loan, Student Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Payday Loan",23.01685994,19,8.44,11,Bad,1743.81,35.06588136,7 Years and 0 Months,Yes,390.5887994,,High_spent_Large_value_payments,351.8660969,0,0.6591,0.8087,-0.2199,0.9951,0.7518 -0x16fbd,CUS_0xaea3,August,53,906-40-5984,Lawyer,31950.94,,3,3,5,1,Credit-Builder Loan,23.96030503,16,9.43,4,_,256.26,30.01888029,16 Years and 2 Months,Yes,18.49667124,70.26657719,High_spent_Medium_value_payments,430.9945849,0,0.1645,0.6829,1.0518,1.3581,-1.7405 -0x16fc9,CUS_0x2db3,August,50,#F%$D@*&8,Manager,107742.32,,3,6,3,0,,24.89594635,20,1.88,9,Good,1158.65,25.47877792,16 Years and 4 Months,No,0,598.8217187,Low_spent_Medium_value_payments,557.3309479,0,0.0259,-0.8082,0.2386,0.5364,0.3581 -0x16fd5,CUS_0x3507,August,20,242-39-1615,Engineer,59459.07,4502.973455,6,10,17,4,"Payday Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",24.90686982,15,11.19,11,Standard,1521.110254,30.09326815,,NM,734.8485131,,Low_spent_Large_value_payments,130.6173757,0,1.3293,-0.2216,-0.429,-0.3401,-0.123 -0x16fe1,CUS_0x4603,August,50,006-33-4198,_______,30912.86,,1,1,10,1,Personal Loan,0,0,5.12,5,_,773.2554279,33.42837923,32 Years and 10 Months,No,25.48899617,11078.16613,Low_spent_Small_value_payments,313.1874477,0,-0.1903,1.6633,-0.904,0.3512,-0.6101 -0x16fed,CUS_0xbf5c,August,37,890-06-6231,Manager,39656.72,3369.726667,8,9,28.88954781,7,"Mortgage Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Payday Loan",,22,26.05,6,_,3256.084324,37.18999946,13 Years and 10 Months,Yes,1449.331113,133.1781769,Low_spent_Large_value_payments,342.2771363,0,0.7421,2.1352,0.1717,0.6825,1.9074 -0x16ff9,CUS_0x28f1,August,28,436-68-6267,Accountant,54262.34,,6,4,17,7,"Student Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,14,11.16,7,Standard,456.99,36.85882059,5 Years and 11 Months,Yes,264.7561035,,Low_spent_Large_value_payments,35.07499571,0,-0.7365,0.2786,-0.4337,0.409,0.1236 -0x17005,CUS_0x8971,August,40,501-64-4874,Entrepreneur,73678.88,,10,9,23.06745738,9,"Home Equity Loan, Auto Loan, Payday Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Not Specified, and Debt Consolidation Loan",45.10767393,25,16.66,8,_,5160.160954,24.30374207,0 Years and 9 Months,Yes,367.5535756,,Low_spent_Medium_value_payments,,0,-0.3032,1.1239,0.9446,0.0089,-1.8781 -0x17011,CUS_0x5b6f,August,21,054-49-7239,Mechanic,32061.94,2373.828333,4,3,6,0,,,6,-2.44,3,Good,1443.42,32.80878739,21 Years and 6 Months,No,0,141.5084828,!@9#%8,375.8743505,0,-1.2185,0.5912,1.6664,-0.1106,-0.1355 -0x1701d,CUS_0x67a3,August,32,#F%$D@*&8,Engineer,60330.12,,6,5,26,3,"Not Specified, Auto Loan, and Home Equity Loan",24.30054619,15.2278415,8.97,14,_,2899.821532,37.07684201,18 Years and 11 Months,Yes,98.34791686,,Low_spent_Small_value_payments,193.4457614,0,-0.4087,-0.399,0.7732,-0.7864,1.4206 -0x17029,CUS_0x14ca,August,29,348-82-9499,Teacher,122028.48,,2,7,8,3,"Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,12.42737169,10.35,9,Good,58.85858469,35.70741541,25 Years and 10 Months,No,290.5185372,79.7724499,High_spent_Large_value_payments,859.6130129,0,0.0475,-1.8506,-0.4359,1.4597,1.3871 -0x17035,CUS_0x9a3c,August,25,156-41-3008,Musician,140770.16,,8,6,11.28836175,0,,3.786121319,6,9.83,4,Standard,1375.36,38.30821949,25 Years and 3 Months,Yes,0,838.1447123,High_spent_Medium_value_payments,994.2774154,0,0.5554,-0.1562,-1.1695,0.0608,0.1388 -0x17041,CUS_0xa5b4,August,55,374-96-8477,Scientist,22425.52,,3,5,12,2,"Payday Loan, and Credit-Builder Loan",0,3,2.93,3,_,923.4771644,25.36738219,27 Years and 10 Months,No,19.36062186,62.82515417,Low_spent_Large_value_payments,396.591696,0,-1.0854,1.491,0.1936,-1.3889,0.9775 -0x1704d,CUS_0x44e9,August,34,482-45-6373,Architect,19656.96,,8,6,33.06745738,9,"Payday Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Student Loan, Student Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",46.64176735,22.2985824,7.88,13,Bad,3090.438558,27.71892812,3 Years and 8 Months,Yes,108.029029,31.91223028,High_spent_Small_value_payments,227.2464528,0,0.3445,-0.9635,-0.6814,-0.434,0.762 -0x17059,CUS_0x66dd,August,19,502-46-7904,Lawyer,52116.66,4364.055,7,7,17,4,"Payday Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",15.88396957,11.67337639,17.7,5,Standard,2322.123545,24.36633738,19 Years and 11 Months,Yes,114.9962102,274.134615,Low_spent_Small_value_payments,337.2746748,0,0.8879,1.7967,1.5917,-0.1189,0.2766 -0x17065,CUS_0x993d,August,47,683-66-7720,Doctor,89057.64,7318.47,5,3,10,2,"Mortgage Loan, and Credit-Builder Loan",28.53544271,23,6.32,3,Standard,600.66,28.07516943,33 Years and 6 Months,No,75.72074705,,High_spent_Large_value_payments,725.3539034,0,2.199,2.6668,-1.5026,1.1277,0.6808 -0x17071,CUS_0xc351,August,24,820-13-9455,Doctor,17366.08,,6,6,14,1,Credit-Builder Loan,,12,15.53,4,_,133.38,36.41099172,19 Years and 4 Months,Yes,12.97454932,86.31646756,High_spent_Small_value_payments,297.2263165,0,-0.7825,1.8577,-0.5439,2.6138,0.7994 -0x1707d,CUS_0x8033,August,26,425-36-6919,Manager,13461.25,1276.770833,7,3,12.06745738,3,"Home Equity Loan, Home Equity Loan, and Student Loan",,,6.16,3,Standard,1584.470954,41.00776506,19 Years and 6 Months,No,20.46242131,,!@9#%8,260.1646534,0,0.1936,-0.9143,-1.3507,-0.1334,0.7295 -0x17089,CUS_0x434d,August,80,169-79-3010,Musician,24675.86,,4,4,9,1,Auto Loan,,9,12.08,4,Good,370.2,38.19024667,29 Years and 3 Months,No,12.43680413,136.4739432,Low_spent_Large_value_payments,333.7214193,0,-0.0581,0.7732,0.2567,0.4195,-1.5677 -0x17095,CUS_0x709b,August,44,211-23-4647,Manager,19418.475,,2,4,11,0,,,0,1.61,4,Good,789.0935553,38.88003097,26 Years and 3 Months,No,0,143.4620797,!@9#%8,287.9175433,0,0.986,0.727,0.1518,0.3756,-0.3028 -0x170a1,CUS_0x48fd,August,22,030-92-1952,Scientist,15991.02,,8,10,28.88954781,8,"Student Loan, Not Specified, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Personal Loan",,21.62640579,28.79,8,Bad,5199.921061,39.49577018,9 Years and 4 Months,Yes,1382.486514,108.305569,Low_spent_Medium_value_payments,232.4363357,0,-1.4292,-0.0745,0.3205,-0.6229,-0.1399 -0x170ad,CUS_0xaf16,August,80,232-28-0722,Media_Manager,30477.2,,8,6,25.06745738,7,"Credit-Builder Loan, Home Equity Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",41.94666399,26.92409273,3.57,12,_,4543.447498,32.51477136,1 Years and 6 Months,Yes,101.6072631,53.78774144,High_spent_Small_value_payments,318.0613742,0,1.767,0.847,-0.5536,-0.5428,1.9759 -0x170b9,CUS_0x3490,August,47,148-97-6437,Journalist,22159.95,1739.6625,8,6,15,0,,20.8793748,17,11.29,7,Standard,271.3,30.83465341,21 Years and 8 Months,Yes,0,44.21358506,High_spent_Large_value_payments,369.7526649,0,0.7184,-1.4179,0.1434,0.8921,0.829 -0x170c5,CUS_0x676c,August,52,440-26-1344,Mechanic,72740.96,6307.746667,5,4,16,4,"Debt Consolidation Loan, Auto Loan, Not Specified, and Home Equity Loan",,20,13.01,3,_,724.81,39.6201408,19 Years and 6 Months,Yes,152.7398937,56.85781019,High_spent_Large_value_payments,661.1769628,0,-0.1735,-0.5929,-0.5218,-0.171,-1.4054 -0x170d1,CUS_0xb11e,August,22,376-26-9388,Writer,47686.05,,7,3,19,7,"Not Specified, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,11,13.2,5,Standard,1176.39,31.01558203,15 Years and 2 Months,Yes,263.0192075,102.0069025,High_spent_Large_value_payments,271.3576399,0,-0.5067,-0.3352,-0.4902,0.947,-0.4505 -0x170dd,CUS_0x8f9a,August,22,998-62-0255,Doctor,95529.28,8151.773333,8,6,11.28836175,6,"Debt Consolidation Loan, Not Specified, Payday Loan, Auto Loan, Personal Loan, and Home Equity Loan",,19,15.4,5,Standard,283.39,24.57570389,16 Years and 9 Months,Yes,330.8571098,907.5373699,High_spent_Small_value_payments,256.7203146,0,-0.5878,-0.7384,0.5371,-0.6739,-0.1642 -0x170e9,CUS_0x477c,August,37,#F%$D@*&8,Teacher,38955.5,3544.291667,6,5,31.06745738,6,"Student Loan, Student Loan, Auto Loan, Payday Loan, Payday Loan, and Personal Loan",,24.99609338,24.72,9,Bad,5339.203821,26.78361306,9 Years and 6 Months,NM,163.7659657,,High_spent_Medium_value_payments,313.0293584,0,-0.3439,-0.0571,0.0397,-1.9296,-1.2823 -0x170f5,CUS_0xa1df,August,47,668-93-9080,_______,135049.84,11162.15333,3,5,11,0,,6.280180328,6,8.07,2,Good,850.02,30.33673843,32 Years and 3 Months,No,0,560.0626416,Low_spent_Small_value_payments,846.1526918,0,-0.541,-0.9621,1.5327,-1.6579,-0.7708 -0x17101,CUS_0x4d4,August,44,577-14-5786,_______,38899.92,3459.66,3,2,1,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Not Specified",6.450423027,6,1.54,4,Good,1311.0232,30.60162294,25 Years and 9 Months,No,104.0491108,146.5601644,!@9#%8,389.5525859,0,1.5709,0.736,-0.3668,0.8235,0.3244 -0x1710d,CUS_0x7b40,August,46,575-33-3200,Doctor,46390.56,3851.88,10,5,22,5,"Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",,19.19825375,29.72,10,Bad,4121.516589,37.86399734,5 Years and 6 Months,NM,102.012922,32.55013347,!@9#%8,490.6249445,0,-0.7863,0.4508,-1.7572,-0.2023,-0.7102 -0x17119,CUS_0x885f,August,29,821-71-4483,Entrepreneur,8006694,,8,9,27,4,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,18,14.25,7,Bad,2399.88,29.91549391,18 Years and 2 Months,Yes,22.55559592,20.23987704,Low_spent_Small_value_payments,285.1648187,0,-2.1034,0.7998,1.3218,0.803,0.3711 -0x17125,CUS_0x230c,August,20,185-59-9590,Scientist,75857.6,6596.466667,6,5,32.06745738,9,"Not Specified, Mortgage Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",,27.46953297,3.24,11,Bad,5432.229161,27.38881184,3 Years and 11 Months,Yes,485.2370234,,High_spent_Large_value_payments,222.7900105,0,0.4867,0.8862,0.8418,-0.4663,1.168 -0x17131,CUS_0x55b,August,56,249-17-6357,Developer,35532.88,,8,6,11,2,"Debt Consolidation Loan, and Personal Loan",19.46016245,15,9.21,1,_,397.0918146,23.77011165,23 Years and 5 Months,No,31.82129944,285.7721349,!@9#%8,281.8869338,0,1.2611,-1.4341,0.9205,-0.4528,-0.0288 -0x1713d,CUS_0x61a5,August,40,590-89-8290,Media_Manager,116184.44,,5,7,5,1,Payday Loan,18.43508473,,11.88,2,Good,879.8784564,41.6450298,15 Years and 9 Months,No,91.25049223,96.70370951,High_spent_Large_value_payments,997.4494649,0,-0.6196,-0.3503,0.0998,-0.7822,0.0845 -0x17149,CUS_0x55ed,August,34,369-30-5610,Accountant,10702.83,1108.9025,3,5,3110,6,"Personal Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Student Loan",18.22832577,11.62400633,17.58,7,Standard,159.275523,31.67247451,14 Years and 2 Months,Yes,52.08856228,57.63041225,!@9#%8,281.1712755,0,0.3282,0.8588,0.3944,0.1828,-0.2397 -0x17155,CUS_0x5fec,August,41,983-11-2831,Media_Manager,97351.8,7912.65,3,5,10.28836175,0,Mortgage Loan,,,8.72,2,Standard,1055.95,28.43264099,33 Years and 0 Months,Yes,44.96413672,554.742534,!@9#%8,851.4957903,0,0.2596,0.5264,-1.7021,-0.2289,1.8611 -0x17161,CUS_0x242b,August,25,019-61-1691,Architect,41754.92,3679.576667,6,9,23,5,"Personal Loan, Debt Consolidation Loan, Not Specified, Not Specified, and Debt Consolidation Loan",30.7604123,16.87138521,2.46,7,Bad,1644.932231,38.59823586,12 Years and 10 Months,Yes,131.1994693,112.7604033,High_spent_Medium_value_payments,373.9977941,0,0.4366,1.0175,0.237,0.0019,-1.3481 -0x1716d,CUS_0x4086,August,40,408-77-8665,Scientist,71746.68,6107.89,3,3,10,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",,18,17.25,7,Standard,2052.59,38.8852125,5 Years and 10 Months,Yes,107.9616648,76.13049585,High_spent_Medium_value_payments,676.6968393,0,0.4076,0.6503,1.0617,1.3035,-0.604 -0x17179,CUS_0x479c,August,48,504-35-2463,Developer,101671.76,8340.646667,8,5,11,4,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",23.69775285,18,-0.79,5,Standard,673.24,33.06282679,19 Years and 8 Months,No,245.3207554,,Low_spent_Medium_value_payments,469.2336482,0,0.0683,-1.323,-0.2829,-0.2692,0.2766 -0x17185,CUS_0x9bfa,August,31,531-98-7848,Scientist,73937.62,5980.468333,2,6,4,4,"Not Specified, Auto Loan, Home Equity Loan, and Personal Loan",,5,7.54,8,Good,1349.16,33.26361633,,No,213.4289409,113.0464227,High_spent_Medium_value_payments,521.5714698,0,1.1388,-1.497,0.4186,0.1181,-1.1754 -0x17191,CUS_0x903e,August,35,624-03-3270,Writer,57107.44,4629.953333,8,7,9,4,"Personal Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",13.92010567,13,10.42,10,Standard,2112.32,38.54251028,8 Years and 10 Months,Yes,175.4294223,578.989752,Low_spent_Small_value_payments,,0,-0.3361,0.1072,0.2181,1.9129,1.6703 -0x1719d,CUS_0x3009,August,32,273-42-1646,Mechanic,7326.605,,10,9,29,4,"Payday Loan, Home Equity Loan, Payday Loan, and Student Loan",,22.58879422,14.38,12,_,2911.342217,28.06940159,6 Years and 6 Months,Yes,15.8194338,49.95966678,Low_spent_Small_value_payments,298.1759411,0,1.1821,0.5706,-1.1229,0.8234,0.5166 -0x171a9,CUS_0x562b,August,56,231-01-4015,Architect,32073.31,2533.775833,5,5,9,2,"Payday Loan, and Payday Loan",11.46033879,8,14.12,2,_,1194.93,30.00334263,22 Years and 11 Months,Yes,34.3950289,141.6073206,Low_spent_Medium_value_payments,357.3752338,0,-0.6738,-0.0254,0.6801,0.051,0.547 -0x171b5,CUS_0xb4cb,August,55,825-59-5740,Scientist,16620.755,,3,3,4.288361749,2,"Mortgage Loan, and Mortgage Loan",9.408588383,11,6.91,5,Good,9.55,23.60883242,21 Years and 0 Months,No,32711,509.2988786,Low_spent_Large_value_payments,306.7591028,0,0.0216,-0.0902,0.9783,0.2379,-0.0614 -0x171c1,CUS_0x880d,August,33,439-57-0904,Doctor,50109.76,4354.813333,6,3,4,1,Personal Loan,25.2079877,19,9.66,,Good,893.62,30.56461276,16 Years and 6 Months,No,22.84743796,50.22034323,High_spent_Medium_value_payments,612.4135521,0,-0.3841,0.6186,0.3034,-1.0106,0.9324 -0x171cd,CUS_0xbb48,August,55,#F%$D@*&8,Lawyer,87078.93,7554.5775,6,6,16,1,Student Loan,18.05638243,14,9.94,3,Standard,635.84,30.14264685,23 Years and 3 Months,Yes,39.06252886,151.1327976,High_spent_Medium_value_payments,815.2624236,0,0.4583,-0.7654,1.2043,-0.1897,0.2023 -0x171d9,CUS_0x691c,August,44,387-54-0443,Engineer,38666.02,3070.168333,3,6,6,1,Not Specified,23.10660817,17,3.59,3,_,1216,24.99033199,31 Years and 6 Months,No,23.63666285,,Low_spent_Small_value_payments,253.3567654,0,-0.2192,0.7429,0.3376,0.6997,0.9069 -0x171e5,CUS_0x917b,August,43,448-74-9798,Engineer,17086.73,,8,5,25,3,"Credit-Builder Loan, Credit-Builder Loan, and Student Loan",10.22736019,9.46658592,17.67,6,Standard,2753.225695,30.34000194,11 Years and 3 Months,Yes,30.47395446,62.02239818,Low_spent_Large_value_payments,293.293064,0,0.2043,-0.1742,0.1441,-0.2638,-1.803 -0x171f1,CUS_0x2e16,August,28,293-57-4895,Journalist,17810.5,,5,7,8,1,Student Loan,16.95864576,16,8.23,9,_,1065.55611,28.75308316,32 Years and 11 Months,No,14.20584915,40.85418101,Low_spent_Medium_value_payments,351.0083181,0,2.4439,-0.1074,0.4958,1.1372,-2.3228 -0x171fd,CUS_0x569a,August,32,182-85-5872,Doctor,33775.16,2800.004795,10,10,29.95700519,6,"Mortgage Loan, Auto Loan, Mortgage Loan, Personal Loan, Home Equity Loan, and Student Loan",,21,17.01,8,_,2841.620954,28.00588825,11 Years and 10 Months,Yes,1644.175455,195.5964458,Low_spent_Large_value_payments,204.3292685,0,0.0028,1.5009,-0.2102,-2.294,1.5787 -0x17209,CUS_0xa8e6,August,31,#F%$D@*&8,Engineer,28562.06,2610.171667,9,5,33.06745738,9,"Credit-Builder Loan, Home Equity Loan, Not Specified, Auto Loan, Student Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Credit-Builder Loan",,16,21.99,13,Bad,3847.380954,24.94840058,10 Years and 2 Months,Yes,200.7056498,,Low_spent_Small_value_payments,179.2406025,0,0.944,0.379,0.9229,1.9467,0.5492 -0x17215,CUS_0x7b23,August,51,534-07-1682,Accountant,36850.65,3266.8875,6,3,19,3,"Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",15.14296806,14,10.77,0,Standard,420.06,28.24328905,26 Years and 2 Months,Yes,52.51752166,,!@9#%8,412.9864339,0,1.0174,-0.2213,0.8498,-0.3802,1.5552 -0x17221,CUS_0xb551,August,20,608-17-2739,Architect,18120.72,,6,4,18,3,"Payday Loan, Payday Loan, and Auto Loan",10.46104882,10,17.3,9,Standard,2434.15,38.12265552,14 Years and 2 Months,Yes,29.48997522,91.3405971,Low_spent_Small_value_payments,301.3754277,0,-0.0007,-0.9489,0.7084,0.4755,0.5942 -0x1722d,CUS_0xab35,August,22,927-09-5332,Engineer,89291.91,,5,7,7,0,,26.46445228,17,16.22,3,Standard,1166.88,38.62557807,27 Years and 4 Months,Yes,0,107.2891876,High_spent_Medium_value_payments,916.8100624,0,-0.2251,-1.3815,0.1162,-0.1861,-1.9899 -0x17239,CUS_0x3ec1,August,41,969-31-8219,Musician,70154.85,5081.452604,330,5,18,2,"Auto Loan, and Personal Loan",19.48789097,,19.23,0,_,450.8345737,29.7816509,21 Years and 3 Months,Yes,707.673166,428.8835553,Low_spent_Small_value_payments,383.3323032,0,-0.1174,-0.7451,-1.5574,1.5017,0.2047 -0x17245,CUS_0x4a24,August,44,318-38-8603,Engineer,15835.495,1107.624583,4,4,5,3,"Auto Loan, Home Equity Loan, and Home Equity Loan",,20,5.92,0,Good,14.2916318,26.81773028,,No,30.70756522,43.12451226,Low_spent_Medium_value_payments,321.9923387,0,-1.1223,-1.2249,0.2564,-1.2282,-0.2703 -0x17251,CUS_0x73aa,August,48,930-70-0066,Teacher,35917.16,,7,5,7,1,Home Equity Loan,9.758492422,8,0.81,3,_,1271.82,25.87908037,24 Years and 0 Months,NM,23.00811989,10000,High_spent_Small_value_payments,479.8861151,0,-0.0312,-0.5864,0.5057,1.0836,-0.4087 -0x1725d,CUS_0x2127,August,56,604-70-4065,Engineer,143239.84,12020.65333,0,1,7.288361749,2,"Personal Loan, and Student Loan",15.26456201,,11.45,1,Good,1029.320108,27.47270167,32 Years and 10 Months,NM,213.2877494,,High_spent_Medium_value_payments,1095.528475,0,1.0159,-0.1731,0.8952,0.3448,0.1772 -0x17269,CUS_0x3e76,August,56,815-17-8622,Engineer,88363.86,,3,3,11,2,"Auto Loan, and Not Specified",0,1,7.88,8,Good,1405.42,37.32831074,29 Years and 3 Months,No,127.4805283,161.2496003,High_spent_Medium_value_payments,673.6353714,0,-0.1392,1.3226,-1.5264,-1.0047,-1.1157 -0x17275,CUS_0x9c14,August,38,339-76-2171,Journalist,28771.76,,7,7,31,8,"Personal Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Personal Loan, and Personal Loan",18.09624769,13,25.37,6,Bad,4044.13,33.77191032,2 Years and 2 Months,Yes,106.7061223,10000,!@9#%8,102.4970402,0,1.842,-1.3893,-0.4136,-0.0069,-0.5275 -0x17281,CUS_0x5292,August,47,013-67-5026,Accountant,88245.74,,1,5,5,1,Payday Loan,8.127519062,9,8.89,3,_,1328.615968,28.29835303,30 Years and 10 Months,No,52.44152846,138.6085363,High_spent_Large_value_payments,804.0731358,0,0.968,-0.683,-2.7217,-1.0307,1.3162 -0x1728d,CUS_0x9884,August,40,135-78-6636,Manager,56313.96,,4,5,8,2,"Mortgage Loan, and Debt Consolidation Loan",8.501803644,9,7.88,1,Good,1333.22,34.32814697,28 Years and 0 Months,No,75.00221722,46.48691604,High_spent_Large_value_payments,604.5938667,0,-1.394,-0.3609,-1.526,0.1219,0.7591 -0x17299,CUS_0x9e09,August,24,298-70-8875,Lawyer,31707.73,,8,7,7,100,"Payday Loan, and Personal Loan",,19,12.51,8,Standard,526.48,33.35478002,20 Years and 6 Months,Yes,28.61210084,171.9457003,Low_spent_Large_value_payments,308.0732822,0,-0.8205,1.0983,-0.5258,0.0514,1.5484 -0x172a5,CUS_0x35cb,August,42,287-13-3802,Teacher,78658.16,6390.846667,5,3,2.288361749,0,Credit-Builder Loan,6.929230547,8,6.86,1,Good,178.0909778,23.24638357,16 Years and 9 Months,No,38.9117822,655.0257073,High_spent_Medium_value_payments,641.0564838,0,2.1037,0.7477,-1.7957,-0.008,-0.4821 -0x172b1,CUS_0x3ad2,August,34,331-26-9664,Engineer,112812.24,9417.02,0,5,1.288361749,0,,14.67812723,,1.19,4,Good,567.3545515,26.67408376,29 Years and 8 Months,No,0,748.2313434,High_spent_Small_value_payments,873.4081176,0,-1.6193,0.5183,1.8495,-0.4942,0.1053 -0x172bd,CUS_0xb13d,August,24,#F%$D@*&8,Scientist,73300.88,6140.406667,7,7,377,2,"Debt Consolidation Loan, and Not Specified",,19,2.59,4,Standard,355.75,26.38907865,31 Years and 0 Months,No,110.5094368,476.6626063,Low_spent_Medium_value_payments,306.8686235,0,0.7257,0.4647,1.0777,1.3352,-0.0494 -0x172c9,CUS_0x88e2,August,32,077-04-5427,Engineer,17434.78,,8,6,33.06745738,7,"Student Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",,21.47762442,21.56,,Bad,3274.415573,34.69200827,14 Years and 6 Months,Yes,73.31214663,79.67488651,Low_spent_Medium_value_payments,221.7825122,0,-0.3948,0.3481,1.7623,1.3498,-0.6894 -0x172d5,CUS_0x8521,August,26,#F%$D@*&8,Engineer,115736.92,,8,3,8,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",,11,19.16,7,_,259.5844871,32.30799623,24 Years and 10 Months,Yes,255.7475648,467.0732552,Low_spent_Medium_value_payments,567.885011,0,1.405,0.9661,-0.6004,-1.5682,0.4068 -0x172e1,CUS_0x7cb5,August,42,200-55-8206,Manager,30984.66,,7,6,18,0,,,18.26727658,6,7,Standard,519.8883936,29.09926394,26 Years and 10 Months,No,0,34.58085586,!@9#%8,460.1246441,0,-0.0286,0.2804,0.0125,1.3408,1.3982 -0x172ed,CUS_0x88c3,August,39,086-50-0935,Lawyer,67791.98,,3,3,5,4,"Personal Loan, Payday Loan, Not Specified, and Credit-Builder Loan",16.20241302,11,11.29,1,Standard,842.3718732,28.14533783,21 Years and 9 Months,No,196.0844313,253.264713,Low_spent_Medium_value_payments,404.6126602,0,-0.9518,-0.055,1.5573,1.4833,-0.4613 -0x172f9,CUS_0x8081,August,32,171-65-5297,Manager,50253,,3,4,18,1,Mortgage Loan,29.25994308,22.1471607,12.84,0,Standard,1111.057774,36.38244118,,Yes,27.96542834,507.1587552,Low_spent_Small_value_payments,190.5508165,0,1.785,-1.1582,0.3454,-0.6255,1.0788 -0x17305,CUS_0x9501,August,34,296-51-4061,Doctor,32753.05,2833.420833,2,7,6,100,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",0.826463909,5,3.55,3,Good,1300.3,38.45244894,30 Years and 6 Months,No,79.18277054,82.92670023,Low_spent_Large_value_payments,391.2326126,0,0.6957,0.0116,0.1895,0.4277,1.0007 -0x17311,CUS_0x8e70,August,25,991-60-0129,Media_Manager,16618.17,,6,9,17,2,"Student Loan, and Student Loan",,21.07695239,9.95,11,_,1683.610294,25.84794456,20 Years and 3 Months,Yes,21.09710051,53.53274282,Low_spent_Medium_value_payments,368.2549067,0,-0.366,-0.9897,0.1289,-0.2697,-1.0864 -0x1731d,CUS_0x37cc,August,43,195-01-3449,Entrepreneur,99664.98,8482.415,5,4,9,1,Auto Loan,19.90360361,15,7.19,6,Good,624.6045993,32.75975602,30 Years and 4 Months,No,71.67330374,215.1579455,High_spent_Large_value_payments,825.5801437,0,-0.8861,-0.8413,0.1482,0.492,-0.7872 -0x17329,CUS_0x40f2,August,39,527-74-9429,Mechanic,18322.56,1796.88,1277,5,30.06745738,9,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,22.90409719,24.26,9,Bad,5561.974671,27.32653276,,Yes,84.03643966,31.89480051,High_spent_Large_value_payments,277.0364719,0,0.7215,-0.4833,0.3671,-0.9312,-1.188 -0x17335,CUS_0x506d,August,47,707-39-5108,Media_Manager,14707.375,,3,1,2,0,,0,0,9.13,6,Good,516.4,28.38306664,16 Years and 4 Months,No,0,82.41954023,Low_spent_Medium_value_payments,317.4419181,0,0.148,0.4284,0.0316,0.028,0.1939 -0x17341,CUS_0x8034,August,45,#F%$D@*&8,Engineer,60226.16,5127.846667,4,4,5,0,,10.70332382,12,2.76,3,Good,873.05,30.7941718,20 Years and 9 Months,No,0,88.70795518,High_spent_Large_value_payments,664.0767115,0,1.0382,-1.7688,1.0969,0.3603,-0.7624 -0x1734d,CUS_0x6cf5,August,46,081-05-3191,Manager,72604.48,,5,4,11,3,"Credit-Builder Loan, Not Specified, and Not Specified",22.60889278,17,19.9,7,Standard,1469.47,36.23508179,15 Years and 4 Months,Yes,172.0958992,161.8779158,High_spent_Medium_value_payments,511.1635183,0,-1.8415,0.6909,-0.1087,-0.1126,1.555 -0x17359,CUS_0x9ed8,August,55,485-62-0659,Writer,21989.265,,5,5,0.288361749,0,,4.716028996,7,9.1,3,Good,128.7,24.09133271,17 Years and 5 Months,No,0,,Low_spent_Small_value_payments,390.7978236,0,-0.5939,0.015,1.131,-0.2049,-0.0649 -0x17365,CUS_0x609c,August,55,297-14-0708,Writer,39244.26,3079.355,3,5,10,4,"Mortgage Loan, Student Loan, Student Loan, and Personal Loan",,5,4.54,9,Good,106.28,35.83709835,31 Years and 5 Months,No,70.28600713,10000,Low_spent_Medium_value_payments,328.1572623,0,-1.3726,0.6012,-0.7029,0.9551,-0.4458 -0x17371,CUS_0x8725,August,50,992-37-2937,Engineer,21905.095,,0,4,5.288361749,0,Student Loan,0.284373788,5,2.73,3,Good,265.5174187,30.2559314,32 Years and 2 Months,No,17.20164104,534.2339734,High_spent_Small_value_payments,320.7951813,0,1.1087,-0.0711,-0.5206,0.5764,-2.4397 -0x1737d,CUS_0x202e,August,25,718-69-3114,Teacher,17337.8,1674.816667,9,5,16,6,"Not Specified, Not Specified, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",32.51315642,18.78875004,4.96,11,Bad,1405.5195,32.30954313,19 Years and 5 Months,Yes,79.63272261,126.2080607,Low_spent_Large_value_payments,231.6408833,0,0.4893,-1.423,1.1539,-0.2644,-0.6847 -0x17389,CUS_0xc007,August,42,713-07-4915,Developer,38643.04,3506.253333,2,3,10,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",,10,7.58,6,_,518.9849192,34.45970395,28 Years and 2 Months,NM,82.85931789,,!@9#%8,143.0402172,0,0.5095,-0.8387,-0.4464,1.8199,0.5012 -0x17395,CUS_0x946d,August,28,446-44-4997,Lawyer,73600.26,,6,7,17,4,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",20.41992998,15.73502829,7.32,6,_,752.0616572,24.5564851,20 Years and 6 Months,No,177.3638262,162.7294103,High_spent_Large_value_payments,538.1422635,0,-2.6822,-1.0944,0.3164,0.6243,0.5395 -0x173a1,CUS_0x6ea4,August,21,594-25-4221,Entrepreneur,28549.94,,6,5,21,6,"Credit-Builder Loan, Student Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, and Student Loan",34.43882252,17,9.64,11,Bad,1374.27,26.9014123,8 Years and 6 Months,Yes,139.0259139,,!@9#%8,122.8588855,0,-0.2328,-0.0211,2.7184,-0.6643,1.0459 -0x173ad,CUS_0x6d94,August,44,832-74-6335,Doctor,9844.975,824.4145833,649,7,19,0,,15.33482107,14,9.75,1,Standard,638.57,27.74466811,32 Years and 5 Months,No,0,38.24884869,Low_spent_Small_value_payments,334.1926096,0,0.906,0.5497,0.3421,-2.0734,-0.8493 -0x173b9,CUS_0xb884,August,45,397-31-7667,Manager,28475.19,2090.9325,5,4,990,4,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",25.37818348,21.55198051,11.96,6,Standard,161.4738978,28.74046268,12 Years and 3 Months,Yes,67.08218314,47.49230743,High_spent_Small_value_payments,354.5187594,0,0.0186,-1.0309,0.8486,0.4759,-0.3509 -0x173c5,CUS_0x22f7,August,42,#F%$D@*&8,Mechanic,10542.045,,7,6,19,4,"Not Specified, Home Equity Loan, Debt Consolidation Loan, and Home Equity Loan",8.185088668,10,1.54,0,Standard,528.87,26.89474439,,No,25.94871238,39.00448084,High_spent_Medium_value_payments,293.2971818,0,-0.1647,0.0877,1.4359,0.1135,0.1413 -0x173d1,CUS_0x277a,August,24,697-92-4285,Engineer,18796.03,,6,8,31.88954781,7,"Mortgage Loan, Not Specified, Student Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Student Loan",,21.17462263,28.03,10,Bad,3358.030079,35.44480787,5 Years and 5 Months,Yes,1392.461866,176.5399061,Low_spent_Small_value_payments,201.7017296,0,0.0846,0.868,-0.887,-0.1668,-0.2661 -0x173dd,CUS_0x9c98,August,35,575-65-4411,Journalist,43960.19,3664.349167,4,6,2,2,"Credit-Builder Loan, and Personal Loan",0,1,9.99,3,Good,1009.92,36.80995657,30 Years and 9 Months,No,49.66141112,44.4793548,High_spent_Medium_value_payments,522.2941507,0,0.5167,0.2954,1.8333,2.1855,1.691 -0x173e9,CUS_0x8cf6,August,30,762-91-1556,Manager,31788.05,2792.004167,2,4,5,0,,8.533655621,10,0.76,4,Good,1418.23,25.60987321,31 Years and 0 Months,No,0,,Low_spent_Small_value_payments,219.5273049,0,1.2889,-0.5894,1.0414,-0.3691,-3.2138 -0x173f5,CUS_0x13ef,August,52,767-08-2746,Media_Manager,18666.56,,3,4,11,4,"Student Loan, Student Loan, Payday Loan, and Credit-Builder Loan",,5,8.67,2,_,770.81,35.32393228,32 Years and 3 Months,No,58.88604405,,Low_spent_Small_value_payments,257.379879,0,-1.0055,0.4507,-1.1905,-0.3037,0.7186 -0x17401,CUS_0xc726,August,80,080-31-4274,Journalist,44986.31,3663.926315,2,6,5,3,"Payday Loan, Credit-Builder Loan, and Student Loan",,14,10.77,,Good,1253.788937,27.07712598,16 Years and 2 Months,No,333.5753639,109.2890132,High_spent_Medium_value_payments,476.4137385,0,-1.0612,-0.5219,-1.8535,-2.0371,-0.8307 -0x1740d,CUS_0xa4bd,August,28,148-92-3005,Media_Manager,16691.32,1201.145719,5,5,7,7,"Not Specified, Home Equity Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,8,7.66,6,Standard,1532.3,38.0577755,11 Years and 8 Months,Yes,160.0223197,,High_spent_Small_value_payments,235.8120376,0,-2.0633,-1.191,-0.2894,-0.5613,-0.1383 -0x17419,CUS_0xc71f,August,27,746-31-3141,Journalist,19768015,5359.811667,4,8,7,1,Personal Loan,,16.07269816,17.67,9,_,1275.339781,38.91759599,6 Years and 8 Months,Yes,50.17057737,108.0583374,High_spent_Medium_value_payments,627.7522519,0,1.623,-0.1158,-0.2787,-0.3315,0.3115 -0x17425,CUS_0x7189,August,20,889-45-9570,Media_Manager,62096.31,5151.6925,3,7,17,4,"Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",22.07154588,15,9.58,4,_,2364.63,24.59571025,10 Years and 8 Months,NM,132.1749133,485.5201566,!@9#%8,187.4741801,0,0.9526,-1.0595,1.1422,0.1701,-0.6474 -0x17431,CUS_0x4811,August,32,373-42-2979,Entrepreneur,60856.6,5282.383333,3,6,9,3,"Payday Loan, Student Loan, and Student Loan",16.30958678,,-2.12,6,Good,1159.43,38.11126573,16 Years and 2 Months,No,124.391296,,High_spent_Large_value_payments,598.3880184,0,0.7523,0.5017,-0.2866,-1.1258,-0.9976 -0x1743d,CUS_0xb912,August,32,297-60-0692,_______,12524.625,,5,3,13,0,,7.576533484,9,14.77,11,_,689.18,29.76275029,5 Years and 11 Months,Yes,0,36.98403572,Low_spent_Medium_value_payments,332.7878393,0,-0.3721,-0.2193,0.2709,0.4211,-0.0499 -0x17449,CUS_0x2825,August,22,521-56-0765,Journalist,21467.56,,4,5,19,0,,26.13468645,19,17.5,5,_,730.35,23.67292903,30 Years and 8 Months,Yes,52264,45.98202062,High_spent_Small_value_payments,406.4143127,0,0.2281,-1.0749,-0.135,1.3154,0.6835 -0x17455,CUS_0xb44d,August,32,278-86-9047,Lawyer,74394.2,6393.516667,9,5,24,5,"Payday Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Personal Loan",32.14287858,19.2167407,23.6,16,Bad,3295.683422,34.75189654,3 Years and 11 Months,NM,270.5891143,193.5105785,Low_spent_Medium_value_payments,455.2519739,0,-0.0881,-0.7669,0.8596,0.4396,-0.3913 -0x17461,CUS_0x9e1a,August,58,513-95-7632,Teacher,16792.325,1292.360417,1,4,4.288361749,2,"Mortgage Loan, Credit-Builder Loan, and Not Specified",0,0,3.33,5,Good,145.0495042,37.48020937,28 Years and 3 Months,No,29.14796236,465.0838848,High_spent_Medium_value_payments,310.371254,0,-1.3871,0.6549,-0.5314,-0.9616,-1.0994 -0x1746d,CUS_0xe3f,August,18,803-04-3619,Engineer,109370.55,,4,6,4.288361749,0,Home Equity Loan,,12,14.43,5,Standard,1272.357342,41.99072613,16 Years and 4 Months,Yes,86.8235855,650.8783907,High_spent_Medium_value_payments,863.1006967,0,0.8904,-0.0912,0.8148,-0.9141,-0.5008 -0x17479,CUS_0x7a39,August,40,649-32-8060,Accountant,57813.39,,4,4,5,5,"Credit-Builder Loan, Personal Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",13.87525181,10.71200403,12.96,10,Standard,327.9052495,33.2808735,12 Years and 4 Months,Yes,216.7954241,613.8777846,Low_spent_Small_value_payments,,0,1.2286,0.7405,-0.1096,-1.6431,0.9704 -0x17485,CUS_0x20b5,August,35,153-31-3249,Teacher,44871.86,3325.063353,3,3,6.288361749,2,"Credit-Builder Loan, and Mortgage Loan",9.376399415,9,7.66,4,Good,43.63429188,28.48354659,20 Years and 5 Months,NM,375.7232519,471.3214892,High_spent_Medium_value_payments,513.8131586,0,0.3955,-1.0562,-0.1699,-1.9244,0.3968 -0x17491,CUS_0xe10,August,28,583-35-0246,Teacher,81126.78,6885.565,0,3,1,2,"Auto Loan, and Personal Loan",5.285614352,7,6.22,5,Good,284.2534158,33.89305599,29 Years and 8 Months,No,127.9998195,,!@9#%8,628.7482846,0,-0.204,0.4576,-0.2921,0.7491,-0.6496 -0x1749d,CUS_0x1f49,August,32,625-16-2020,Doctor,85770.42,,4,6,3,2,"Personal Loan, and Student Loan",8.094151272,9,7.15,2,Good,228.4697321,33.15525015,17 Years and 3 Months,No,75.05142237,409.3839287,!@9#%8,554.6924656,0,-0.0724,0.82,-1.115,-0.1515,-0.5793 -0x174a9,CUS_0x5c90,August,25,112-81-3185,Doctor,125898.32,,6,6,5.288361749,2,"Credit-Builder Loan, and Not Specified",,18,16,11,Standard,663.7879816,36.290032,16 Years and 8 Months,Yes,139.8268794,889.4721837,High_spent_Medium_value_payments,751.5370905,0,0.198,-0.3855,-0.6897,-0.4899,1.0755 -0x174b5,CUS_0x3182,August,35,737-63-3468,Accountant,132082.17,11174.8475,3,4,11.28836175,2,"Auto Loan, Home Equity Loan, and Not Specified",,10,3.59,7,Good,1191.15,26.7124994,19 Years and 0 Months,No,207.0562942,622.8767514,High_spent_Medium_value_payments,957.4891654,0,0.32,0.1238,0.3496,1.3651,-1.1299 -0x174c1,CUS_0xa2dd,August,28,603-21-2338,Manager,23956.27,,3,7,12,1320,"Debt Consolidation Loan, Payday Loan, and Student Loan",21.26911369,18.39545271,10.52,11,Standard,1004.547965,34.62266656,14 Years and 8 Months,Yes,46.97565397,117.3502814,Low_spent_Small_value_payments,303.009648,0,0.0769,0.9972,-0.5699,0.6039,0.0214 -0x174cd,CUS_0x9e11,August,44,655-69-5918,Developer,17535.57,,4,6,30.06745738,100,"Student Loan, and Auto Loan",26.89455356,16.84228801,9.55,11,Standard,2936.990489,26.58720208,15 Years and 0 Months,Yes,28.67883683,44.04432686,Low_spent_Medium_value_payments,343.3862984,0,0.5812,0.0475,-0.7153,-0.9163,0.7937 -0x174d9,CUS_0x4691,August,34,545-29-4548,Teacher,53177.82,,9,5,28.06745738,6,"Not Specified, Student Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",30.85061518,15.68022956,1.37,9,Bad,2971.607222,26.24890555,,Yes,243.35393,,High_spent_Large_value_payments,349.9403088,0,1.5462,1.03,0.3385,1.1446,-2.19 -0x174e5,CUS_0xc5f4,August,22,758-80-1683,Teacher,71846.32,5261.688055,8,10,26.88954781,100,"Student Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",26.29627403,17,,12,Standard,1485.6,34.12436488,6 Years and 8 Months,Yes,2069.274065,553.4495474,Low_spent_Medium_value_payments,56.1709178,0,-0.471,-0.9679,0.0284,-0.6204,-0.7783 -0x174f1,CUS_0xb403,August,23,628-68-3928,Musician,33121.69,3009.140833,3,4,1,1,Payday Loan,3.404909201,5,10.51,9,Good,1229.301732,28.25635642,,No,14.48241282,329.4655995,Low_spent_Small_value_payments,295.5241279,0,-1.7968,-0.737,0.5576,0.289,-0.2161 -0x174fd,CUS_0x873f,August,24,575-00-1454,_______,31115.76,2522.98,6,6,12,3,"Payday Loan, Mortgage Loan, and Mortgage Loan",,11,10.12,7,_,955.8,36.67272347,30 Years and 2 Months,No,46.58934409,36.47308718,High_spent_Large_value_payments,409.2355687,0,0.9062,-0.2016,1.4331,-0.5425,1.5597 -0x17509,CUS_0x854c,August,35,412-53-8508,Manager,32434.64,,7,5,33,2,"Payday Loan, and Student Loan",15.94895652,13,11.78,11,Standard,2620.89,25.31139939,10 Years and 2 Months,Yes,52.36291216,,Low_spent_Large_value_payments,306.5447302,0,-0.1533,1.2444,0.9422,1.5773,0.2518 -0x17515,CUS_0x47a,August,53,614-29-3992,Mechanic,43044.01,,5,2,8,0,,,3,9.47,5,Good,1009.246647,26.79735401,31 Years and 3 Months,NM,0,47.17095199,High_spent_Medium_value_payments,575.1498194,0,-0.1179,0.8345,0.9774,2.0933,0.1915 -0x17521,CUS_0xbf11,August,25,749-12-1540,Architect,106525.29,9040.1075,0,6,5.288361749,0,Mortgage Loan,,0,7.13,4,Good,163.7633129,30.7025454,,NM,78.2711578,755.5004018,Low_spent_Medium_value_payments,770.1766514,0,-2.6346,0.9782,-0.9581,-0.4977,1.2798 -0x1752d,CUS_0x9a9,August,36,754-06-1041,Developer,54352.23,4593.3525,10,8,34.95700519,9,"Not Specified, Not Specified, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Auto Loan, and Auto Loan",32.31658571,,25.55,,Bad,4265.310954,35.93004811,4 Years and 9 Months,Yes,1718.824763,,High_spent_Small_value_payments,0.9961996,0,0.7531,0.6338,-0.1535,0.3774,-1.6927 -0x17539,CUS_0x6e0e,August,46,#F%$D@*&8,Architect,38436.68,2965.056667,2,5,5,1,Not Specified,,6,9.6,2,_,22.61,36.7842796,28 Years and 4 Months,No,28.48255057,91.8262415,High_spent_Medium_value_payments,426.1968746,0,-0.0248,0.5856,-1.6429,-0.2675,1.1612 -0x17545,CUS_0xaeb5,August,19,410-69-9783,Musician,17816.75,1623.729167,5,5,8,1171,Auto Loan,22.64280144,15,3.03,5,_,438.66,33.9591695,15 Years and 11 Months,Yes,12.03182073,114.7594281,Low_spent_Small_value_payments,325.5816678,0,-0.5106,-0.4308,0.0041,-0.2191,-0.6893 -0x17551,CUS_0x37e5,August,22,619-98-6329,Manager,67863.92,5832.326667,10,8,15.88954781,7,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",34.44291424,17,19.66,6,Bad,3011.85,30.91792684,10 Years and 2 Months,Yes,1667.272395,128.3590724,High_spent_Large_value_payments,333.2711178,0,-1.4785,1.6582,0.9439,0.8983,-0.1166 -0x1755d,CUS_0x5c60,August,20,009-05-2901,Teacher,19266.77,,6,7,25,2,"Home Equity Loan, and Auto Loan",16.03226516,12,2.45,17,Standard,2397.32,29.77239123,16 Years and 6 Months,Yes,28.88159553,32.98571844,High_spent_Large_value_payments,367.0891027,0,-0.2568,-1.5309,-0.1346,0.4355,-1.9278 -0x17569,CUS_0x8095,August,38,415-90-3271,Musician,34982.69,2851.224167,5,7,18,2,"Credit-Builder Loan, and Debt Consolidation Loan",18.45587259,17,0.98,3,Standard,1496.77,34.67149516,30 Years and 8 Months,No,44.39325122,312.2567689,!@9#%8,218.4723966,0,-0.0943,-0.0279,-0.5035,-1.6842,-0.822 -0x17575,CUS_0x66c4,August,24,904-42-4633,Accountant,34106.58,,8,9,26,5,"Home Equity Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Payday Loan",27.57637446,19,18.12,9,Standard,1672.04,35.17403163,20 Years and 0 Months,Yes,110.8916278,121.4236448,Low_spent_Medium_value_payments,360.3062273,0,-1.2948,-1.5132,-0.2143,-1.1725,1.8999 -0x17581,CUS_0x9760,August,49,626-33-2977,Lawyer,32710.62,,7,3,13.28836175,0,Debt Consolidation Loan,14.61564986,13,18.35,4,Standard,400.3712602,34.10623593,22 Years and 0 Months,Yes,312.6349917,615.3871598,Low_spent_Small_value_payments,379.6986185,0,0.3206,0.4544,0.5197,-1.4145,0.5242 -0x1758d,CUS_0xb43,August,20,487-34-1786,Entrepreneur,17995.83,1304.6525,8,1246,31.95700519,7,"Debt Consolidation Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",41.56193864,25.50247531,16.64,11,Bad,1960.470123,32.51280492,9 Years and 4 Months,Yes,1423.12098,123.1971289,!@9#%8,153.0967716,0,-0.2644,-0.2729,0.1936,0.3447,0.6836 -0x17599,CUS_0xa505,August,42,959-35-8150,Engineer,34899.22,,10,5,16.06745738,3,"Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",20.55836579,11,12.22,11,_,2327.170954,27.69077813,8 Years and 3 Months,Yes,78.96767712,81.90552658,High_spent_Medium_value_payments,338.8333417,0,0.1674,-0.554,-1.6544,0.5405,0.1175 -0x175a5,CUS_0xc06e,August,30,046-72-5387,Journalist,92114.68,7811.223333,3,4,8,1,Home Equity Loan,18.6217338,14,17.87,7,Standard,820.52,26.57758307,21 Years and 4 Months,Yes,54.21966434,549.3526881,Low_spent_Small_value_payments,467.5499809,0,0.5332,-1.0446,0.5132,-0.8031,-1.8212 -0x175b1,CUS_0x57c2,August,47,045-47-7252,Journalist,30789.41,,5,4,4,0,,14.61691699,,5,4,_,473.5927639,26.07303352,32 Years and 0 Months,NM,209.1550736,189.9476305,Low_spent_Small_value_payments,399.3950453,0,-0.1108,0.4018,0.2896,-0.4874,0.7764 -0x175bd,CUS_0x8c88,August,19,034-83-1351,Accountant,57889.44,,10,10,22.88954781,6,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",,30.39506444,7.78,10,Bad,1430.361217,25.86665888,15 Years and 10 Months,Yes,1552.011966,207.1318551,High_spent_Small_value_payments,265.7380977,0,-0.0876,-0.4013,-0.1362,-1.2552,-0.3572 -0x175c9,CUS_0x74e9,August,41,721-70-0465,Lawyer,38842.5,3136.875,5,7,9,4,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",,11,9.33,12,Standard,1662.17,21.66666958,13 Years and 3 Months,Yes,115.0487715,348.4118611,Low_spent_Small_value_payments,140.2268673,0,-1.3842,-1.1948,-1.6717,0.1216,0.5587 -0x175d5,CUS_0x6f4c,August,33,857-09-2361,Developer,48494.55,4155.2125,10,9,25.88954781,8,"Student Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Auto Loan",,24.77726556,2.93,7,Bad,2117.293647,39.20007374,8 Years and 8 Months,Yes,1634.883453,117.0336489,High_spent_Small_value_payments,229.2740665,0,0.2972,-0.9923,-0.0822,-0.556,0.7038 -0x175e1,CUS_0x14d1,August,28,166-12-0556,Journalist,53770.11,4666.8425,8,8,17,5,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Personal Loan, and Student Loan",,20.45433047,18.75,17,Standard,2245.474708,29.00290147,,Yes,204.4701377,136.495534,High_spent_Medium_value_payments,375.7185783,0,1.3531,-1.2003,-0.1441,-0.8142,-0.5046 -0x175ed,CUS_0x76b8,August,27,156-97-2485,Engineer,112030.92,9368.91,1,4,4,2,"Home Equity Loan, and Credit-Builder Loan",,11,9.15,0,Good,1385.67,43.27523415,30 Years and 0 Months,No,151.1582993,63.83911471,High_spent_Large_value_payments,961.893586,0,-0.738,-0.2075,0.1635,1.4704,1.6873 -0x175f9,CUS_0x63a6,August,39,048-51-9455,Entrepreneur,71756.2,5585.201481,0,5,8,100,,10.47097246,11,0.53,5,Good,1048.708875,36.97499694,24 Years and 10 Months,No,673.4818523,145.9021167,High_spent_Large_value_payments,736.3768851,0,-1.2646,-1.2453,-0.8558,0.9241,-0.5594 -0x17605,CUS_0x9eb9,August,39,#F%$D@*&8,Entrepreneur,36140.12,,7,4,17,100,"Not Specified, Student Loan, Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",,21.66235945,16.76,9,_,1652.113586,35.69613577,13 Years and 2 Months,Yes,113.1884139,27.50941577,High_spent_Large_value_payments,416.069837,0,0.75,-0.14,0.5174,-0.1011,0.0608 -0x17611,CUS_0x5ee0,August,45,931-87-9049,Mechanic,65319.32,5616.276667,4,6,9,2,"Home Equity Loan, and Debt Consolidation Loan",18.21398452,16,10.09,11,_,1081.77,40.3842501,14 Years and 3 Months,Yes,65.17352355,175.8686915,High_spent_Small_value_payments,580.5854516,0,0.3045,-0.5272,1.8865,1.7389,1.4572 -0x1761d,CUS_0xc59e,August,25,#F%$D@*&8,Scientist,73584,,6,8,20.95700519,9,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Student Loan, Auto Loan, Student Loan, Student Loan, and Home Equity Loan",,24,27.67,7,Bad,4869.220954,29.25056755,2 Years and 9 Months,Yes,1747.992213,169.9776771,High_spent_Small_value_payments,241.4797403,0,0.4444,0.8908,-0.5406,1.2626,-2.2693 -0x17629,CUS_0x5c68,August,33,112-40-8747,Scientist,44382.88,,7,7,1,0,,19.48750201,18,11.08,3,Good,115.63,38.67878397,22 Years and 8 Months,No,355.0715995,202.7968596,Low_spent_Large_value_payments,440.3604737,0,0.0537,-1.2292,-0.3552,-1.206,-0.3443 -0x17635,CUS_0xa974,August,39,962-46-0528,Doctor,102432.51,7586.673429,8,4,19,1,Not Specified,,10,3.74,2,_,510.8773762,37.95934964,29 Years and 6 Months,No,1245.569803,931.850055,Low_spent_Small_value_payments,266.2995066,0,0.1235,0.0721,1.5517,0.6812,-1.6537 -0x17641,CUS_0x9c85,August,46,680-59-2006,Accountant,110607.09,,4,4,1.288361749,2,"Home Equity Loan, Debt Consolidation Loan, and Auto Loan",5.855003771,9,4.26,6,Good,1174.05,37.78581265,22 Years and 4 Months,No,154.8241362,774.3957161,High_spent_Small_value_payments,650.4433587,0,0.1353,-1.8125,0.8403,-0.1251,-0.0827 -0x1764d,CUS_0x1011,August,44,793-05-8223,Doctor,58918.47,5208.8725,3,3,17,3,"Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",20.64025011,13,14.42,7,Standard,473.14,27.82995908,15 Years and 10 Months,Yes,123.4349388,383.3508446,Low_spent_Medium_value_payments,294.1014666,0,-0.0009,0.9569,0.566,1.5232,-0.6344 -0x17659,CUS_0xb381,August,53,#F%$D@*&8,Architect,100555.86,8133.655,6,6,4.288361749,0,,,7,7.78,2,_,552.69,33.49757897,,No,0,,High_spent_Large_value_payments,961.3387029,0,0.2983,-0.2354,-0.7015,-0.366,0.1058 -0x17665,CUS_0x148b,August,49,947-71-1861,Architect,144342.8,,7,5,11,0,,12.60982478,12,15.52,3,Standard,334.24,34.88980776,15 Years and 9 Months,Yes,0,149.4103601,High_spent_Large_value_payments,1294.646307,0,1.6828,-1.1303,0.7957,-0.5464,0.0398 -0x17671,CUS_0xc067,August,25,095-77-0243,Lawyer,10004.805,984.73375,10,8,26.95700519,9,"Auto Loan, Payday Loan, Not Specified, Auto Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",45.91648239,24.2914176,16.06,11,Bad,5320.32942,41.65051946,8 Years and 5 Months,Yes,1366.664737,106.105038,Low_spent_Small_value_payments,194.6532309,0,0.3383,-0.2013,-1.5798,-0.1773,1.0835 -0x1767d,CUS_0x991d,August,55,669-84-2094,Musician,115105.56,9684.13,4,5,18,4,"Personal Loan, Home Equity Loan, Payday Loan, and Student Loan",,20,8.26,8,Standard,644.287359,36.97387034,18 Years and 2 Months,Yes,289.628748,386.8769945,High_spent_Medium_value_payments,580.4627839,0,1.8358,0.1435,-1.5616,-0.4156,0.9563 -0x17689,CUS_0xbb43,August,26,051-05-4338,Engineer,57539.96,,8,9,30.06745738,8,"Payday Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,27,20.15,7,Bad,4198.210954,36.97395423,2 Years and 10 Months,Yes,365.0067137,142.6472887,High_spent_Small_value_payments,189.3253764,0,0.2746,1.1456,-0.052,0.3297,0.3843 -0x17695,CUS_0xbccf,August,29,712-06-3868,Media_Manager,73317.72,5823.81,10,9,28.88954781,7,"Not Specified, Not Specified, Debt Consolidation Loan, Not Specified, Not Specified, Student Loan, and Mortgage Loan",,18,31.6,6,Bad,3530.13,38.0403121,7 Years and 8 Months,Yes,1551.330141,220.9884516,High_spent_Medium_value_payments,365.7323258,0,0.7611,0.4232,1.146,-0.9018,-0.3787 -0x176a1,CUS_0x40d,August,43,011-33-6276,_______,17908.15,1748.345833,4,4,16,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",14.94403621,,13.86,8,Standard,755.6,28.7728726,10 Years and 0 Months,Yes,61.58979336,235.1444226,!@9#%8,168.1003674,0,-0.856,1.5643,1.5504,0.0157,-1.5124 -0x176ad,CUS_0x3bd2,August,49,#F%$D@*&8,Lawyer,21752116,,0,7,9.288361749,4,"Payday Loan, Payday Loan, Auto Loan, and Auto Loan",3.042734603,6,5.84,7,Good,78.41,35.11268362,18 Years and 5 Months,No,183.2145001,551.0434064,High_spent_Large_value_payments,690.1683046,0,-0.7604,0.4108,0.9834,1.2039,0.5103 -0x176b9,CUS_0x3a6c,August,32,570-18-4382,Journalist,73340.48,5348.098404,7,6,17,6,"Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",31.98996757,22,27.64,12,Bad,2521.62411,33.41320203,3 Years and 3 Months,Yes,794.2086449,,High_spent_Large_value_payments,583.3023229,0,0.1071,-1.7477,-0.947,-0.2691,-0.0872 -0x176c5,CUS_0x3053,August,19,968-36-4250,Writer,14439.78,,5,4,16,3,"Student Loan, Student Loan, and Mortgage Loan",,20,11.85,5,_,455.46,30.35126708,20 Years and 0 Months,Yes,20.1717016,45.88035353,Low_spent_Medium_value_payments,309.8794449,0,-2.1844,0.0964,-0.4992,-0.1599,0.806 -0x176d1,CUS_0x39cf,August,33,614-64-3223,Engineer,38839.22,3272.601667,8,4,5633,3,"Personal Loan, Auto Loan, and Student Loan",,9,1.83,4,Standard,1203.51,26.66684106,,Yes,64.69525018,,High_spent_Small_value_payments,366.8462283,0,0.4867,1.8468,0.9544,0.7851,0.1052 -0x176dd,CUS_0x5c59,August,39,555-77-9205,Architect,19662.27,,2,3,8,100,Auto Loan,,10.14829932,2.58,6,_,969.1943222,27.73668808,25 Years and 2 Months,No,15.6451559,81.28477235,!@9#%8,318.2223218,0,-0.8577,-0.3831,0.243,-2.3558,1.1151 -0x176e9,CUS_0x4f65,August,34,889-20-8307,Entrepreneur,20653.25,1652.104167,3,7,10,4,"Debt Consolidation Loan, Auto Loan, Payday Loan, and Mortgage Loan",,8,7.96,9,Standard,881.25,31.32782236,29 Years and 5 Months,Yes,67.97467383,48.19017372,High_spent_Small_value_payments,309.0455691,0,-0.4278,-0.8298,0.3307,-1.0304,-0.9215 -0x176f5,CUS_0x9017,August,18,932-54-4401,Developer,32061.52,,3,4,9,7,"Debt Consolidation Loan, Personal Loan, Payday Loan, Auto Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",20.75043517,17,12.67,8,Standard,927.27,29.7900713,6 Years and 8 Months,Yes,152.0612356,,High_spent_Small_value_payments,213.3061761,0,0.0699,-0.2096,0.0072,-1.2928,-0.6564 -0x17701,CUS_0x5f49,August,43,390-47-2531,Media_Manager,16509.01,1412.750833,7,7,23,8,"Mortgage Loan, Student Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Auto Loan",18.36721982,,8.24,9,Bad,1591.92,23.79940453,,Yes,76.17986675,59.53260899,!@9#%8,285.5626076,0,1.6999,-0.6418,0.5257,0.3151,-0.2008 -0x1770d,CUS_0x5235,August,42,458-15-7288,Manager,34666.02,2946.835,8,6,25,4,"Payday Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,,7.06,8,Bad,1479.930318,35.02100786,10 Years and 8 Months,Yes,70.9500766,377.1474203,Low_spent_Small_value_payments,136.5860031,0,0.5759,-0.7722,-0.6734,1.8784,-0.0229 -0x17719,CUS_0x84a9,August,54,282-14-7531,Architect,21553.81,,4,5,12,4,"Student Loan, Auto Loan, Auto Loan, and Payday Loan",11.09497241,11,3.17,5,Good,1051.625711,32.07269658,32 Years and 2 Months,NM,61.66534438,30.32526204,High_spent_Large_value_payments,357.4428128,0,-0.429,-0.1431,1.3099,-0.1099,1.1559 -0x17725,CUS_0x9b9e,August,44,160-38-1753,Scientist,30174.03,2409.296872,3,2,10,2,"Student Loan, and Credit-Builder Loan",,14,11.13,6,_,50.38370795,33.9517649,29 Years and 11 Months,No,282.2728478,120.4029469,High_spent_Small_value_payments,397.1154604,0,-2.0299,-0.9781,-0.8283,-1.9048,-0.3316 -0x17731,CUS_0x4148,August,30,222-51-3725,Media_Manager,49661.1,,4,7,18.06745738,6,"Mortgage Loan, Mortgage Loan, Personal Loan, Auto Loan, Payday Loan, and Not Specified",18.9134054,11.94373652,16.79,7,Standard,2822.343922,36.71566932,11 Years and 5 Months,Yes,167.6417132,88.67863099,High_spent_Small_value_payments,417.8018679,0,-0.0487,1.606,1.3283,-1.0712,-0.2744 -0x1773d,CUS_0x348a,August,24,358-20-1467,Media_Manager,16955.675,1295.972917,0,1,7,2,"Payday Loan, and Student Loan",,1,3.09,7,Good,1035.87,25.72802751,32 Years and 5 Months,No,20.03508748,,Low_spent_Small_value_payments,252.3279646,0,0.6444,1.2267,2.7339,0.8284,-0.0491 -0x17749,CUS_0x6f22,August,29,166-86-5483,Lawyer,117201.39,9712.7825,5,1,4.288361749,0,Personal Loan,0,3,8.33,3,Good,1345.741089,23.37040781,28 Years and 5 Months,No,57.73638047,1204.649507,Low_spent_Medium_value_payments,484.4686847,0,-0.9651,-0.7094,-1.8028,0.9979,1.4382 -0x17755,CUS_0x5bc7,August,38,291-41-7056,Musician,10485.62,633.8016667,8,6,32,3,"Payday Loan, Personal Loan, and Debt Consolidation Loan",21.59213178,17,12.22,10,Bad,2522.06,37.18883299,10 Years and 4 Months,Yes,21.09269989,15.59173041,High_spent_Medium_value_payments,276.6957364,0,-0.6453,-0.2919,-0.427,-1.9529,0.7606 -0x17761,CUS_0x16d0,August,39,570-24-3883,Entrepreneur,18463.93,1795.660833,4,6,20,4,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",18.10319874,14,17.93,6,Standard,760.9180372,36.00422818,,Yes,46.97536142,24.17322084,High_spent_Medium_value_payments,361.8917242,0,0.3034,-1.5204,0.458,0.5411,0.8461 -0x1776d,CUS_0x8bce,August,51,037-36-2156,Mechanic,24778.8,2312.9,5,7,20,0,,,12,15.28,9,Standard,179.1,36.8526661,15 Years and 10 Months,Yes,0,249.2100722,Low_spent_Small_value_payments,272.0799278,0,0.211,-0.7721,2.2014,2.0958,-1.1045 -0x17779,CUS_0x8201,August,51,055-48-9724,Musician,68948.32,,4,2,3.288361749,0,Auto Loan,,10,7.29,6,Good,254.2230007,26.27536285,16 Years and 11 Months,No,57.21828802,1033.594968,Low_spent_Medium_value_payments,242.9157525,0,0.4384,1.6209,0.3404,0.3346,-1.453 -0x17785,CUS_0x5f0f,August,18,988-93-0991,Media_Manager,19183.53,1620.6275,4,6,27,7,"Mortgage Loan, Personal Loan, Mortgage Loan, Not Specified, Not Specified, Home Equity Loan, and Home Equity Loan",15.09748914,10,9.12,9,Standard,2621.47,32.80514484,10 Years and 10 Months,Yes,69.41294009,,Low_spent_Large_value_payments,274.745468,0,-1.2467,-1.0134,-0.9219,-0.0123,2.2221 -0x17791,CUS_0x102e,August,26,#F%$D@*&8,Scientist,50807.44,4197.953333,8,4,11,4,"Mortgage Loan, Not Specified, Home Equity Loan, and Home Equity Loan",12.16973867,10.94098277,2.6,4,_,961.5390134,30.31145401,,NM,88.75991925,65.27556453,High_spent_Medium_value_payments,515.7598496,0,-0.5055,-0.4582,0.8632,-1.1733,1.2238 -0x1779d,CUS_0x52d5,August,30,315-76-5024,Entrepreneur,56784.54,,8,5,17,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Not Specified",17.93998929,15,8.56,3,Standard,234.96,32.43895457,16 Years and 11 Months,No,146.6767287,,High_spent_Small_value_payments,471.8295001,0,-1.069,0.2496,-1.7185,-0.9001,1.0239 -0x177a9,CUS_0x829a,August,29,546-31-9541,Musician,160930.32,13484.86,4,1,1,1,Payday Loan,,12,4.61,8,_,1083.49,38.02763346,30 Years and 5 Months,No,83.04886433,844.5747236,Low_spent_Medium_value_payments,700.8624121,0,0.8863,-0.4509,-0.8722,-0.0612,-0.3794 -0x177b5,CUS_0x9ece,August,44,521-76-9886,Scientist,25703.34,1935.945,3,4,15.28836175,0,Debt Consolidation Loan,,4884.48618,12.64,3,Standard,46.8439085,39.63698636,19 Years and 5 Months,Yes,16.72073889,467.0725035,High_spent_Large_value_payments,369.7387186,0,0.9943,1.4385,-1.6118,0.5313,-0.7901 -0x177c1,CUS_0x6148,August,44,438-39-3090,Accountant,7295.715,,3,5,34,1181,"Auto Loan, Student Loan, Student Loan, Not Specified, Not Specified, Personal Loan, and Personal Loan",20.70141685,16.20612128,10,9,Standard,1535.142557,23.90135363,10 Years and 9 Months,Yes,21.2928961,29.21129362,Low_spent_Small_value_payments,283.9934353,0,1.251,-1.8652,-1.6316,-0.8767,1.2966 -0x177cd,CUS_0x40d1,August,32,344-66-6046,Entrepreneur,151437.08,,0,4,2.288361749,2,"Not Specified, and Payday Loan",0.770600289,5,1.97,5,Good,879.78,32.58797885,22 Years and 2 Months,NM,147.5264605,617.2707296,High_spent_Large_value_payments,1131.315938,0,-0.4154,-0.0371,0.9786,-0.2595,-0.1648 -0x177d9,CUS_0x6b1c,August,37,806-07-5871,Entrepreneur,43790.4,,8,6,32.06745738,8,"Personal Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",41.89106969,25.48814667,27.91,11,_,3397.333421,28.42465354,12 Years and 8 Months,Yes,221.1676466,,Low_spent_Small_value_payments,0.322831043,0,2.2742,-1.388,-1.4016,-0.73,-0.4646 -0x177e5,CUS_0x885d,August,22,149-60-5973,_______,14888.915,,5,5,6,1,Student Loan,17.52266666,,5.5,4,Good,994.083831,24.16526438,32 Years and 0 Months,No,6.706015138,87.34256357,Low_spent_Small_value_payments,330.325713,0,-2.5995,-2.3169,-0.0255,0.3556,0.0591 -0x177f1,CUS_0x1aee,August,26,065-68-6043,Accountant,100465.14,8279.095,4,3,11,0,,11.42563375,13,7.16,2,Good,990.2,31.26731211,32 Years and 10 Months,No,0,409.2422461,Low_spent_Medium_value_payments,698.6672539,0,-0.4624,-0.6145,-1.3124,2.2797,-0.9402 -0x177fd,CUS_0x4192,August,18,589-12-7572,Engineer,16697.83,,10,8,19.88954781,7,"Mortgage Loan, Not Specified, Payday Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",30.94813428,19,14.88,8,Standard,2514.35,34.27510289,11 Years and 9 Months,Yes,1391.084596,31.00065031,High_spent_Large_value_payments,289.8332558,0,0.4062,0.4301,-0.6865,-0.7459,2.3315 -0x17809,CUS_0x40f8,August,25,423-29-2528,Developer,20090.02,,7,9,19,4,"Mortgage Loan, Student Loan, Debt Consolidation Loan, and Personal Loan",47.24980399,24.54570287,12.73,11,_,2577.964561,27.48727009,6 Years and 9 Months,Yes,40.70320696,133.2802931,Low_spent_Small_value_payments,273.0333333,0,0.2657,1.3787,-0.9987,-1.0243,-1.1635 -0x17815,CUS_0xa7db,August,28,946-51-7834,Teacher,94256.48,,6,4,7.288361749,2,"Auto Loan, Not Specified, and Debt Consolidation Loan",24.53102692,20,10.43,7,_,191.78,32.09627255,,Yes,148.7549249,574.9457646,High_spent_Large_value_payments,692.1074381,0,0.0416,0.1637,-0.907,0.7702,-1.3956 -0x17821,CUS_0x6f86,August,23,334-45-9564,Mechanic,13000.735,,7,3,7,4,"Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",,14,18.51,5,Standard,1152.68,27.9935681,18 Years and 5 Months,No,35.51308374,107.7903104,Low_spent_Small_value_payments,274.3360642,0,-0.8196,-0.1835,-0.5888,-0.7925,-1.3756 -0x1782d,CUS_0xbbbb,August,54,398-87-9454,Journalist,18500.54,,2,3,4,3,"Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,7,1.98,5,Good,1016.805379,36.64239959,25 Years and 5 Months,No,41.79325921,151.9760808,Low_spent_Small_value_payments,252.9921428,0,-2.1963,-0.8699,2.451,-0.3985,-0.1977 -0x17839,CUS_0x51e6,August,38,691-73-2861,Entrepreneur,70973.32,,3,6,18,3,"Home Equity Loan, Payday Loan, and Not Specified",12.83536303,12,10.18,8,Standard,2457.36,36.99489265,15 Years and 2 Months,Yes,115.9417327,10000,High_spent_Small_value_payments,525.8809483,0,-0.585,-1.4218,0.4541,0.2448,0.6846 -0x17845,CUS_0x5f25,August,49,851-96-3435,Media_Manager,121233.51,,2,6,7.288361749,100,"Payday Loan, and Credit-Builder Loan",6.498228057,9,11.54,6,Good,990.9736944,33.01254363,23 Years and 10 Months,No,191.01735,1737.769108,!@9#%8,18.17448826,0,0.9425,-0.3182,1.3708,0.4265,3.1588 -0x17851,CUS_0x74bf,August,43,509-05-4819,Doctor,75773.2,6248.433333,8,5,32,9,"Not Specified, Payday Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Payday Loan, Student Loan, Home Equity Loan, and Payday Loan",27.65524286,19,18.74,11,Bad,3659.35,33.9531942,3 Years and 3 Months,Yes,288.1249615,,Low_spent_Medium_value_payments,217.7864402,0,0.718,-0.2219,1.1465,0.0523,0.6883 -0x1785d,CUS_0x9cc3,August,27,287-19-9803,Teacher,48657.42,3979.785,6,6,16.06745738,6,"Personal Loan, Personal Loan, Not Specified, Student Loan, Student Loan, and Mortgage Loan",,24.21282823,5.9,10,Bad,2835.788132,25.55621929,8 Years and 6 Months,NM,132.6126791,114.86055,High_spent_Small_value_payments,383.784983,0,-1.7922,-0.4983,-1.2202,-0.2786,0.2449 -0x17869,CUS_0xab37,August,42,619-06-3124,Lawyer,70956.8,,6,6,32,6,"Personal Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Not Specified",45.83739444,26,22.56,13,_,2503.49,33.68988136,7 Years and 3 Months,Yes,271.6039287,537.2841381,Low_spent_Medium_value_payments,77.51859982,0,-0.7494,-1.895,0.8811,-0.8607,-0.6443 -0x17875,CUS_0x4778,August,30,888-43-4739,Journalist,97590.15,8321.5125,6,6,2648,2,"Credit-Builder Loan, and Auto Loan",35.95815858,22.72129112,12.41,2,Standard,735.7554968,29.51114785,19 Years and 4 Months,Yes,83.02341726,208.5141952,High_spent_Medium_value_payments,790.6136376,0,-0.53,-0.2096,0.2155,0.3255,-1.9483 -0x17881,CUS_0x53f0,August,26,#F%$D@*&8,Manager,44632.44,3419.37,10,6,33,5,"Payday Loan, Personal Loan, Not Specified, Auto Loan, and Auto Loan",22.45840526,18,23.48,10,Bad,3409.13,37.86611375,6 Years and 10 Months,Yes,154.1423109,46.86143791,High_spent_Medium_value_payments,390.9332512,0,-0.1362,-1.539,1.1637,-1.3813,-0.3918 -0x1788d,CUS_0x5f83,August,39,622-54-5012,Writer,35317.81,,4,5,7,4,"Home Equity Loan, Auto Loan, Personal Loan, and Mortgage Loan",16.9119002,,2.74,1,_,1153.101732,25.24759482,30 Years and 3 Months,NM,63.21843364,,Low_spent_Small_value_payments,242.1770632,0,-0.9082,1.4163,0.508,0.8818,-1.4484 -0x17899,CUS_0x836e,August,19,970-91-7807,_______,37353.58,,6,9,34.88954781,8,"Payday Loan, Not Specified, Home Equity Loan, Auto Loan, Payday Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",22.86152756,18,14.51,11,Bad,3459.09,25.01365344,3 Years and 11 Months,Yes,1495.828383,183.2321375,Low_spent_Large_value_payments,189.2892315,0,-1.4736,1.1514,-0.6781,-0.308,1.0931 -0x178a5,CUS_0x2abc,August,19,102-67-0486,Journalist,13864.835,949.4029167,3,3,9,1,Mortgage Loan,15.4020051,14,14.65,1,Standard,554.13,31.09827449,,Yes,10.42039328,59.2251863,Low_spent_Large_value_payments,295.2947121,0,-1.0691,-1.3623,1.1604,1.5604,0.6108 -0x178b1,CUS_0xc180,August,38,430-27-3043,Writer,83552.12,6780.676667,7,7,1780,3,"Home Equity Loan, Payday Loan, and Not Specified",,10,10.82,14,_,1365.36,29.33984485,8 Years and 5 Months,Yes,161.4836907,300.3001944,High_spent_Small_value_payments,476.2837816,0,0.9867,-0.3975,-0.0527,0.6972,-1.0823 -0x178bd,CUS_0x9513,August,43,952-99-9037,_______,43268.79,3351.7325,0,1,10,3,"Not Specified, Student Loan, and Mortgage Loan",2.226327769,5,4.34,5,Good,726.0276213,29.79221444,22 Years and 9 Months,No,60.25966412,130.4367566,!@9#%8,423.4514487,0,0.4481,0.1874,0.5845,0.2695,-0.5668 -0x178c9,CUS_0x44c3,August,80,497-02-1106,Developer,108638.76,,6,3,19.28836175,2,"Credit-Builder Loan, and Auto Loan",,13,11.66,5,Standard,1365.32,41.20883191,6 Years and 9 Months,Yes,75589,,High_spent_Large_value_payments,825.8539426,0,-0.3901,-1.2097,-1.8384,-1.9632,0.0963 -0x178d5,CUS_0x3fce,August,18,946-99-7466,_______,32198.23,,5,5,10,5,"Student Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",18.1857351,11,18.27,11,Standard,857.14,27.4894517,13 Years and 11 Months,Yes,126.4786618,384.0597923,Low_spent_Small_value_payments,65.6801292,0,-0.1135,-0.8437,0.3648,-0.1881,0.5892 -0x178e1,CUS_0x8d33,August,20,793-03-2481,_______,138920.84,,5,3,3,4,"Payday Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",,15,6.45,4,Good,246.87,31.15238151,33 Years and 2 Months,No,235.8554311,457.2614787,High_spent_Medium_value_payments,707.2567568,0,-1.3371,1.9213,1.9932,-1.3914,1.3463 -0x178ed,CUS_0x2adf,August,41,187-90-8599,Lawyer,7577.175,,5,5,22,6,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Auto Loan",,18,8.84,11,Standard,1355.48,33.88960979,17 Years and 0 Months,Yes,25.2386884,23.53447488,Low_spent_Large_value_payments,254.4699617,0,-1.8443,1.3467,-0.7833,2.0165,1.7586 -0x178f9,CUS_0x1abc,August,35,747-88-3394,Journalist,28431.06,2610.255,5,6,14,2,"Mortgage Loan, and Home Equity Loan",17.98808391,15,8.94,4,_,1098.59,27.01269594,23 Years and 0 Months,Yes,31.15049795,,Low_spent_Small_value_payments,363.9110436,0,-0.0101,-1.6759,-2.1117,0.6468,0.0313 -0x17905,CUS_0x61ff,August,35,771-13-1222,Manager,145932.04,,4,757,19.28836175,2,"Student Loan, Auto Loan, and Personal Loan",12.74728601,11.38793879,2.73,6,Standard,1565.029765,26.15025309,20 Years and 4 Months,No,275.9611451,651.7480094,High_spent_Medium_value_payments,940.1286399,0,-0.8356,0.5577,1.0437,-0.7815,-1.0495 -0x17911,CUS_0x4327,August,34,498-86-4830,Journalist,86668.74,,3,5,1,4,"Auto Loan, Student Loan, Debt Consolidation Loan, and Student Loan",,4,3.43,7,Good,1433.89,42.18564391,19 Years and 5 Months,No,249.2407533,10000,!@9#%8,536.4602325,0,0.339,0.2625,-1.1622,-0.696,-0.6739 -0x1791d,CUS_0x5cdc,August,44,784-26-3375,Mechanic,14535.305,,8,6,9,4,"Not Specified, Home Equity Loan, Credit-Builder Loan, and Student Loan",19.07106121,15,5.79,4,Standard,413.84,29.50961549,23 Years and 0 Months,NM,35.42439072,37.21550249,Low_spent_Medium_value_payments,344.9876485,0,0.2458,0.2222,0.7484,-0.4049,0.6993 -0x17929,CUS_0xa0ba,August,47,135-53-1643,Writer,66189.24,5437.77,3,5,12,1,Not Specified,30.79140478,20,12.41,6,Standard,544.21,35.02721717,18 Years and 2 Months,Yes,36.86044024,129.3052017,High_spent_Large_value_payments,617.6113581,0,2.8923,0.286,0.2715,-0.9106,-0.3533 -0x17935,CUS_0x2c06,August,29,395-47-1287,_______,17642.275,,0,7,9,100,"Payday Loan, Not Specified, Student Loan, and Auto Loan",14.88635709,10.63353606,0.64,1,Good,696.7819651,24.04475099,27 Years and 5 Months,No,55.418583,45.19446572,High_spent_Large_value_payments,315.5059096,0,-0.2711,-0.0144,0.2425,0.1369,-1.7163 -0x17941,CUS_0x5ec2,August,53,885-49-8193,Mechanic,20560.13,,6,4,10,4,"Payday Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",16.34264206,11,2.65,3,_,475.64,34.61982638,32 Years and 2 Months,Yes,65.43230629,34.36146307,High_spent_Medium_value_payments,338.3406473,0,-0.0751,-0.6452,-0.9797,0.3445,0.2741 -0x1794d,CUS_0x1d7a,August,23,252-54-7548,Teacher,14226.81,1238.5675,10,10,24.88954781,7,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Payday Loan, Mortgage Loan, and Home Equity Loan",41.28494806,22.41613605,26.73,12,_,3778.016658,33.09162028,12 Years and 2 Months,NM,1367.011952,79.13163744,Low_spent_Medium_value_payments,263.3830797,0,1.663,-1.1116,0.1861,0.387,0.0928 -0x17959,CUS_0x22f4,August,42,116-88-7276,Teacher,20501.07,,7,3,19,3,"Mortgage Loan, Home Equity Loan, and Home Equity Loan",12.45143545,10,18.24,7,Standard,2012.25,31.87763237,7 Years and 8 Months,Yes,41.56981564,227.0396888,Low_spent_Small_value_payments,194.5327456,0,0.4357,2.0935,0.8841,-1.9765,0.2458 -0x17965,CUS_0xbb88,August,30,785-97-3899,Accountant,98544.99,8379.0825,5,3,1.288361749,100,"Credit-Builder Loan, Mortgage Loan, and Student Loan",1.997235053,4,9.63,4,Good,177.6291747,35.3689588,32 Years and 11 Months,No,197.800573,,High_spent_Medium_value_payments,571.8433304,0,1.9137,0.8557,0.4033,-1.7955,-1.1733 -0x17971,CUS_0x3e4a,August,39,612-57-3265,Manager,71518.92,,7,5,34,7,"Personal Loan, Payday Loan, Not Specified, Not Specified, Credit-Builder Loan, Personal Loan, and Payday Loan",17.06501683,8.984048286,8.45,10,Standard,2707.531126,39.14857122,17 Years and 11 Months,Yes,331.2654899,397.1450154,High_spent_Small_value_payments,130.7804946,0,0.4707,-0.4278,-0.2031,0.5015,-0.2913 -0x1797d,CUS_0x47f9,August,44,185-39-2208,Journalist,16196.665,,5,7,17,2,"Mortgage Loan, and Auto Loan",13.9949926,11,2.55,2,Standard,632.93,37.23306343,16 Years and 3 Months,No,24.94959146,89.51384322,Low_spent_Medium_value_payments,322.1087737,0,-0.9874,-0.3106,1.4441,0.7852,-0.8161 -0x17989,CUS_0x3d3d,August,27,898-07-2009,Scientist,18123.675,,7,5,7,2,"Personal Loan, and Mortgage Loan",19.73240139,15,10.37,7,Standard,770.41,32.15759394,17 Years and 11 Months,No,24.50559363,139.5904123,Low_spent_Small_value_payments,258.534619,0,-1.3416,0.105,-1.6587,-1.2777,-0.2072 -0x17995,CUS_0x8773,August,29,640-70-7221,Scientist,90541.71,7607.1425,4,7,4.288361749,0,,0.962543524,3,11.91,4,Good,500.6,25.73628759,31 Years and 6 Months,No,0,560.0962758,High_spent_Large_value_payments,860.5554352,0,-0.5502,-1.3638,-0.7338,-0.1267,0.2766 -0x179a1,CUS_0x3e40,August,18,090-24-7789,Developer,71267.18,6167.931667,7,5,17,4,"Student Loan, Auto Loan, Auto Loan, and Student Loan",14.26922752,11,19.14,9,Standard,158.2,23.18989151,20 Years and 6 Months,Yes,204.6074915,,Low_spent_Medium_value_payments,192.2309208,0,-0.3047,0.1572,-1.2279,-2.0978,-0.3796 -0x179ad,CUS_0xafd1,August,26,492-77-5603,Journalist,17692.26,,5,6,21,6,"Mortgage Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Student Loan, and Mortgage Loan",25.7247909,19.68039113,19.29,12,Standard,1635.282198,31.4906933,15 Years and 4 Months,Yes,73.93817814,49.3630039,Low_spent_Small_value_payments,304.734318,0,2.694,-0.1533,-1.1791,0.4554,1.3216 -0x179b9,CUS_0x675f,August,42,466-58-7914,Manager,82928.04,,7,4,16,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",10.12054817,8,16.97,4,_,601.78,41.4748821,16 Years and 4 Months,Yes,121.5470135,410.5780413,Low_spent_Small_value_payments,469.6419453,0,-0.0523,0.8322,-0.3948,0.6432,-0.6932 -0x179c5,CUS_0x3a96,August,46,416-49-7815,Developer,53579.04,4355.92,9,10,18.06745738,6,"Payday Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Auto Loan",35.03535779,17,20.14,8,Bad,4327.190954,36.80487265,1 Years and 3 Months,Yes,149.6791915,116.3396619,High_spent_Medium_value_payments,392.8528587,0,-0.9746,1.0075,0.4723,1.6902,-1.6023 -0x179d1,CUS_0x66c3,August,36,669-33-0062,Mechanic,36693.66,3144.805,6,6,20.06745738,9,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Mortgage Loan, Payday Loan, Auto Loan, Payday Loan, and Student Loan",49.32265089,25.9160063,28.74,9,Bad,3616.336406,36.78695517,10 Years and 9 Months,Yes,189.9826852,130.2803586,High_spent_Small_value_payments,227.4971683,0,-1.1066,-1.1078,2.6442,-0.1292,0.0847 -0x179dd,CUS_0x7a84,August,39,042-33-9752,Entrepreneur,33189.63,2688.8025,3,3,6,4,"Student Loan, Student Loan, Mortgage Loan, and Personal Loan",,18.1615753,0.84,5,Standard,1262.107807,26.82368766,16 Years and 8 Months,No,59.38753195,199.5799546,Low_spent_Small_value_payments,299.9127635,0,-1.7222,-0.3984,-1.1032,-1.4665,0.4823 -0x179e9,CUS_0xc571,August,29,011-73-0967,Developer,79494.4,6501.533333,4,3,22,5,"Personal Loan, Student Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",10.89778434,10,10.92,12,_,2307.13,37.09115321,18 Years and 0 Months,Yes,268.4594016,10000,!@9#%8,576.4176051,0,0.3507,-0.029,1.8821,-1.0083,-0.1045 -0x179f5,CUS_0x61a1,August,44,461-95-5515,_______,112484.68,9389.723333,4,3,5.288361749,2,"Mortgage Loan, Student Loan, and Personal Loan",,12,,1,_,1459.58,20.63899497,28 Years and 2 Months,Yes,210.2954354,1444.254956,Low_spent_Small_value_payments,,0,-0.9197,-1.5584,-1.7769,-0.0631,0.4957 -0x17a01,CUS_0x3319,August,30,087-36-3454,_______,39870.01,3578.500833,3,3,5,3,"Personal Loan, Mortgage Loan, and Debt Consolidation Loan",0,0,6.72,2,_,735.8731231,33.81265594,,No,61.93618013,58.24987624,High_spent_Medium_value_payments,494.4808168,0,0.2988,-0.5994,-0.0605,-0.5533,-1.1728 -0x17a0d,CUS_0x8132,August,35,352-95-7668,Architect,75455.34,,3,6,11,1,Not Specified,16.5068638,13,9.77,8,_,62.48053278,28.3507735,7 Years and 9 Months,Yes,60.42174273,315.2343492,High_spent_Small_value_payments,533.7035486,0,0.036,-0.4903,-1.6867,2.1261,0.0878 -0x17a19,CUS_0x4fed,August,28,153-53-5786,Musician,61131.36,4880.28,3,5,23,2,"Credit-Builder Loan, and Debt Consolidation Loan",12.49161196,11.52522018,14.51,14,_,2661.669305,33.36450847,16 Years and 8 Months,Yes,88.19366251,501.4949757,Low_spent_Small_value_payments,188.3393618,0,-0.4605,-0.2788,-0.1389,1.1578,-0.4801 -0x17a25,CUS_0x4453,August,22,772-42-1653,Doctor,28045.82,2434.151667,7,7,6,7,"Mortgage Loan, Payday Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",12.45134712,9,21.28,8,Standard,324.35,39.37903755,15 Years and 4 Months,Yes,147.7208369,,Low_spent_Large_value_payments,242.0988647,0,-0.4888,0.0962,0.0595,-2.0092,0.4491 -0x17a31,CUS_0xa61a,August,23,052-73-3081,Teacher,20538.77,1957.564167,8,10,23.88954781,100,"Auto Loan, Home Equity Loan, Auto Loan, Home Equity Loan, Not Specified, and Payday Loan",24.48958466,19,3.42,6,_,2708.55,28.68699711,12 Years and 8 Months,Yes,1400.027599,,High_spent_Small_value_payments,241.0267306,0,1.0016,-0.2105,-0.0808,-0.4938,-0.5129 -0x17a3d,CUS_0xa62f,August,33,053-99-4731,Musician,27324.7,,6,7,20,0,,24.67205977,18,16.49,6,_,1385.73,29.6626139,14 Years and 0 Months,Yes,0,43.71411426,High_spent_Large_value_payments,425.7917191,0,0.6881,0.3207,-1.5466,-1.0206,-0.988 -0x17a49,CUS_0xafb6,August,25,182-48-2589,Developer,35149.1,,4,200,5,4,"Auto Loan, Student Loan, Auto Loan, and Student Loan",10.57294874,8.055932115,6.17,4,Good,582.2903504,33.62054011,,No,97.64015886,153.1015137,Low_spent_Small_value_payments,332.7674941,0,0.8385,-0.1398,-1.7367,1.0168,-0.9062 -0x17a55,CUS_0x8072,August,18,478-04-9369,Mechanic,86171.52,7202.96,4,2,2,4,"Payday Loan, Personal Loan, Personal Loan, and Payday Loan",,9,6.88,1540,Good,727.9396005,36.69706244,17 Years and 6 Months,No,207.9350066,290.2917828,Low_spent_Large_value_payments,525.7066117,0,-0.8029,0.8713,-0.2213,0.0353,-1.6594 -0x17a61,CUS_0xbccc,August,38,631-10-0523,Entrepreneur,9944.365,,6,6,19.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Student Loan, and Not Specified",37.01771479,15.99795343,31.66,9,Bad,4669.169796,33.2326097,5 Years and 5 Months,Yes,43.98745638,24.70576961,Low_spent_Large_value_payments,248.8561944,0,0.0094,0.9004,-0.7258,1.5254,-0.4642 -0x17a6d,CUS_0x60c2,August,18,289-22-3659,Media_Manager,9846.715,,7,5,6,6,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Mortgage Loan",17.83907084,15,10.3,5,Standard,1723.89,32.51099075,17 Years and 8 Months,Yes,38.58543336,,High_spent_Small_value_payments,254.4128228,0,-2.0325,-0.3599,-0.5722,0.4473,-0.2825 -0x17a79,CUS_0x5c3f,August,21,790-28-8312,Journalist,16212.015,1226.00125,6,5,15,0,,13.89575896,13,3.31,5,_,1400.27,23.59214997,26 Years and 6 Months,No,0,75.53966914,Low_spent_Medium_value_payments,327.0604559,0,0.3153,-0.1798,-0.1645,-1.7162,-0.5609 -0x17a85,CUS_0x7fd3,August,26,861-65-6983,Writer,50295.36,3893.28,7,6,20,0,,13.87603879,11,8.12,9,Standard,527.85,30.370874,18 Years and 2 Months,NM,0,389.0718891,Low_spent_Medium_value_payments,280.2561109,0,-0.1822,2.8115,0.2568,1.5115,-0.649 -0x17a91,CUS_0x8d91,August,51,422-97-8090,Teacher,126004.2,,5,3,19,4,"Auto Loan, Payday Loan, Payday Loan, and Auto Loan",21.8560004,13.70652327,7.72,1,Standard,1026.866691,31.63142147,26 Years and 3 Months,Yes,355.6436206,112.0997147,High_spent_Medium_value_payments,817.9916647,0,0.8108,-1.0631,-0.1237,-0.2359,-0.3755 -0x17a9d,CUS_0x55a1,August,52,886-53-5627,Accountant,21412.855,,5,4,6.288361749,2,"Mortgage Loan, and Home Equity Loan",14.55730762,,11.76,,Good,95.39622016,27.58886413,25 Years and 9 Months,No,21.29280688,573.2092105,!@9#%8,282.1313716,0,0.0828,2.6244,-1.1744,-1.0596,1.8794 -0x17aa9,CUS_0x48d2,August,34,251-84-6264,Media_Manager,16580.69,,6,6,16,100,"Debt Consolidation Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Student Loan",,23.82906606,22.04,7,Bad,5052.936885,40.60617537,9 Years and 6 Months,NM,67.19916051,,Low_spent_Small_value_payments,232.1945211,0,1.0829,0.4872,1.3479,-0.2042,-1.203 -0x17ab5,CUS_0x778b,August,36,407-75-5116,Teacher,22413.53,,6,6,16,4,"Payday Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",,12,-1.2,6,_,22.82266615,38.68960061,24 Years and 6 Months,No,40.04614067,320.4851235,Low_spent_Small_value_payments,190.904432,0,-2.3926,-1.0743,0.122,-1.0584,-1.1341 -0x17ac1,CUS_0x4c33,August,18,511-02-6078,Lawyer,74829.56,6521.796667,7,9,25,6,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Not Specified",,22,2.46,14,Bad,2269.63,38.3158174,17 Years and 3 Months,Yes,313.2046469,119.9801252,!@9#%8,458.9948945,0,0.0505,0.5641,0.7441,0.7962,-0.465 -0x17acd,CUS_0x991b,August,23,#F%$D@*&8,_______,108142.14,9280.845,1,2,0.288361749,0,Student Loan,6.373476445,7,7.55,3,Good,236.7701771,30.38038712,24 Years and 10 Months,No,48.51475767,814.1193333,!@9#%8,818.0905525,0,0.5227,0.1478,-0.9096,1.3886,-0.2224 -0x17ad9,CUS_0xc5cc,August,31,453-37-7716,Mechanic,18776.84,,7,10,32,9,"Auto Loan, Credit-Builder Loan, Student Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",35.47798208,25,28.18,8,_,3315.01,36.85305773,,Yes,110.2088851,207.8546951,Low_spent_Small_value_payments,137.0100864,0,-0.294,-0.166,1.1641,-1.0987,-0.8121 -0x17ae5,CUS_0x8c90,August,40,496-69-3617,Media_Manager,21001046,11615.28333,6,3,17.28836175,6,"Not Specified, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Not Specified, and Personal Loan",16.07556927,15,12.74,10,Standard,34.7,38.02515565,17 Years and 0 Months,Yes,389.8371967,1321.807479,Low_spent_Medium_value_payments,149.8211185,0,-0.103,-1.3984,-0.2024,0.331,0.0755 -0x17af1,CUS_0xc4ac,August,39,267-31-8739,Engineer,12399758,10463.97,0,6,6,0,,11.49707433,10,7.7,1,Good,444.3969451,30.25352522,,No,0,310.213815,High_spent_Large_value_payments,1018.969546,0,1.9064,-0.5843,0.332,-1.0968,0.2889 -0x17afd,CUS_0x2b76,August,37,413-67-3802,Developer,25580.34,,5,3,7,2,"Payday Loan, and Auto Loan",,10,15.39,6,_,15.29068294,38.65413189,19 Years and 11 Months,Yes,31.81572834,61.43744618,Low_spent_Large_value_payments,374.0141124,0,-0.2652,-0.1645,-1.3179,1.8276,-1.6403 -0x17b09,CUS_0x2f3d,August,53,591-99-1793,Teacher,134596.35,,57,6,3.288361749,0,Auto Loan,7.679848578,8,3.44,1,Good,1285.14,31.57435311,19 Years and 6 Months,No,1242.722233,740.2829642,Low_spent_Medium_value_payments,1001.846161,0,1.3579,-0.7114,-0.8655,-0.4739,-1.1532 -0x17b15,CUS_0x8a3c,August,48,151-72-5385,Architect,116624.4,9633.7,5,5,6,3,"Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,19,14.67,3,_,394.94,37.03017169,24 Years and 10 Months,Yes,259.7866934,528.2089413,High_spent_Small_value_payments,435.3743654,0,0.8082,1.5951,1.1068,-0.7228,-0.7563 -0x17b21,CUS_0x1537,August,40,540-88-5808,_______,40430.92,3489.243333,6,8,15.88954781,9,"Mortgage Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Not Specified",45.53609765,28.76924613,4.85,14,_,2030.007114,32.76037932,,Yes,1580.325795,27.61395843,High_spent_Large_value_payments,286.6544981,0,-1.5755,-0.4299,0.2037,0.6878,-0.0067 -0x17b2d,CUS_0x857b,August,18,214-24-4375,Writer,121041.21,,3,7,8,3,"Personal Loan, Home Equity Loan, and Student Loan",9.16068528,8,4.59,3,Good,1036.21,30.57553098,32 Years and 5 Months,No,197.0868048,210.0108624,High_spent_Large_value_payments,868.8790828,0,0.4336,-0.3805,2.3392,1.3827,-0.0054 -0x17b39,CUS_0x6819,August,19,631-29-3707,Architect,71936.88,5906.74,5,6,12,7,"Mortgage Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",14.40027621,13,13.04,8,Standard,2644.2,38.37802712,12 Years and 0 Months,Yes,387.7705027,346.9964811,Low_spent_Large_value_payments,125.9070162,0,-0.4741,-0.4833,0.1089,-1.2481,2.2822 -0x17b45,CUS_0x7d42,August,40,597-29-6705,Scientist,18770.3,1514.191667,1,1,5,3,"Not Specified, Debt Consolidation Loan, and Home Equity Loan",0,2,11.32,0,Good,536.68484,36.51581479,29 Years and 0 Months,No,34.8490548,150.9364422,Low_spent_Small_value_payments,272.237154,0,-1.3471,0.5757,-1.1346,-0.0904,2.2937 -0x17b51,CUS_0x1dfd,August,25,926-46-8089,Engineer,7604.185,,10,10,33.95700519,100,"Not Specified, Payday Loan, and Mortgage Loan",28.03902248,16,6.63,10,Standard,2053.330954,29.39657296,6 Years and 0 Months,NM,1340.218553,,Low_spent_Small_value_payments,221.4849101,0,0.1271,-0.7503,0.234,2.2834,-1.8192 -0x17b5d,CUS_0x60d,August,28,994-11-0278,Architect,35511.53,3154.294167,6,4,20,3,"Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,16,14.09,0,Standard,1109.03,39.98258871,24 Years and 9 Months,Yes,69.96656223,64.85774968,High_spent_Medium_value_payments,430.6051048,0,-0.6257,1.1216,-0.5214,0.6835,0.8947 -0x17b69,CUS_0xa0a5,August,35,967-93-4076,Manager,26408.13,2146.6775,4,6,19,6,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",,8,16.42,5,Standard,65.19,28.00128558,6 Years and 4 Months,Yes,73.56097913,10000,High_spent_Small_value_payments,273.5080541,0,0.3846,0.1133,-1.277,-1.3053,-0.2676 -0x17b75,CUS_0x27a4,August,40,#F%$D@*&8,Manager,42731.9,3459.991667,7,5,7,0,,12.22690728,9,7.85,0,_,96.85,36.95366019,30 Years and 0 Months,No,0,136.5110654,Low_spent_Medium_value_payments,489.4881013,0,0.5596,0.5736,0.4897,-0.3769,-0.4199 -0x17b81,CUS_0x388a,August,37,381-61-9626,Manager,33701.99,2584.499167,2,6,11.28836175,0,,5.819617356,6.723907404,9.22,3,Good,381.4262398,35.4993799,20 Years and 8 Months,No,0,624.4757016,Low_spent_Small_value_payments,343.9116761,0,0.9521,-0.2002,0.4759,-0.5331,-2.2457 -0x17b8d,CUS_0xad15,August,39,611-34-7572,Scientist,50608.23,4132.3525,9,10,31,2,"Auto Loan, and Home Equity Loan",49.21658545,31.00852447,3.85,13,Bad,1762.181272,30.65036227,7 Years and 3 Months,Yes,79.83845511,,High_spent_Medium_value_payments,422.665953,0,0.3582,0.3883,-0.3874,-0.1841,-0.4953 -0x17b99,CUS_0x9fe6,August,18,014-76-3423,Lawyer,8675.57,,6,6,18,8,"Not Specified, Home Equity Loan, Personal Loan, Personal Loan, Personal Loan, Auto Loan, Student Loan, and Mortgage Loan",26.54466585,17,19.53,11,Bad,2258.144481,36.58226206,10 Years and 10 Months,Yes,38.19344291,21.39600482,High_spent_Large_value_payments,282.5309575,0,-1.0235,-1.1456,0.0212,0.9928,0.9762 -0x17ba5,CUS_0x8f58,August,20,090-30-0699,_______,99984.48,8626.04,5,3,11,3,"Student Loan, Payday Loan, and Home Equity Loan",17.08272257,13,7.69,7,Standard,443.96,31.99995508,,Yes,171.3610224,303.0100545,High_spent_Medium_value_payments,638.2329231,0,1.2812,-0.8334,1.3772,0.3126,-0.8381 -0x17bb1,CUS_0xf60,August,18,929-19-3979,Lawyer,34413.76,2916.813333,6,5,8,5,"Home Equity Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Mortgage Loan",29.26595776,20,7.66,8,_,113.06,24.50800296,6 Years and 4 Months,Yes,74.32870945,330.7631176,Low_spent_Small_value_payments,176.5895063,0,-0.7249,1.5689,-1.2969,-1.6059,0.055 -0x17bbd,CUS_0xa22a,August,24,505-29-1719,Architect,8356.44,,5,5,19,5,"Home Equity Loan, Not Specified, Student Loan, Auto Loan, and Home Equity Loan",14.64229966,10,13.53,9,Standard,1967.2,24.46531089,19 Years and 9 Months,NM,19.93233156,35.74984498,Low_spent_Small_value_payments,284.6548235,0,2.4296,-0.7933,-0.7314,-1.6006,2.126 -0x17bc9,CUS_0x94e9,August,37,702-55-4878,Accountant,8128.065,467.33875,8,6,15,7,"Payday Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",31.55835524,18.73086689,-2.43,9,Bad,4159.109581,37.12482501,7 Years and 2 Months,Yes,38.20034095,19.51255134,High_spent_Small_value_payments,249.0209827,0,-0.6163,0.1105,0.7622,-1.0883,-1.2508 -0x17bd5,CUS_0x2800,August,45,503-91-9302,Entrepreneur,65522.84,,10,8,18.88954781,9,"Personal Loan, Home Equity Loan, Payday Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",,23,5.38,9,Bad,1382.94,31.16173092,14 Years and 8 Months,Yes,1722.855256,100.5247762,High_spent_Medium_value_payments,269.9135529,0,0.567,0.2593,-0.5758,-0.0473,1.8461 -0x17be1,CUS_0x61b0,August,36,856-46-5970,_______,18125.81,1545.484167,10,9,22.95700519,6,"Mortgage Loan, Not Specified, Payday Loan, Personal Loan, Credit-Builder Loan, and Student Loan",,26.7107639,5.36,1772,Bad,2247.531704,26.30604054,13 Years and 5 Months,Yes,1409.033358,133.9104133,Low_spent_Medium_value_payments,170.5542757,0,-0.3901,0.5598,0.8117,0.3049,0.9014 -0x17bed,CUS_0x7c47,August,24,443-64-5382,Developer,15363.22,1286.268333,7,5,23.06745738,6,"Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Student Loan, and Payday Loan",,21.92139463,11.79,8,_,3041.469665,38.0341555,9 Years and 2 Months,Yes,5442,,High_spent_Small_value_payments,258.4321967,0,2.0848,-0.9364,-0.619,-0.2991,-1.0537 -0x17bf9,CUS_0x1c7e,August,30,972-18-0008,Teacher,13691.91,936.9925,4,5,15,0,,18.66446402,14,2.56,5,_,179.27,35.82599023,23 Years and 2 Months,No,0,50.62332182,Low_spent_Medium_value_payments,323.0759282,0,0.4348,1.157,-0.2385,-0.0194,0.8137 -0x17c05,CUS_0x36c2,August,39,090-08-6722,Accountant,97324.83,7869.4025,3,4,20,6,"Auto Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",19.64551414,,14.7,5,Standard,449.87,25.8710329,14 Years and 11 Months,Yes,275.6631773,,Low_spent_Medium_value_payments,237.2935335,0,0.2485,0.3296,0.6866,0.4832,0.8788 -0x17c11,CUS_0x6f8b,August,18,443-98-1444,Media_Manager,15629.225,,5,7,15,3,"Credit-Builder Loan, Auto Loan, and Home Equity Loan",17.16400021,16,15.21,6,_,36.85513164,26.52456024,,Yes,22.65433648,46.77914307,High_spent_Medium_value_payments,309.6538954,0,-0.5497,0.6378,0.0179,1.9948,-0.2874 -0x17c1d,CUS_0x575d,August,32,910-44-2354,_______,88325.84,,7,3,12,3,"Payday Loan, Debt Consolidation Loan, and Student Loan",10.65186907,9,2.81,3,_,780.59,40.36327711,30 Years and 5 Months,No,186.5986451,10000,Low_spent_Medium_value_payments,302.113359,0,0.831,-0.235,-2.1791,1.7468,2.069 -0x17c29,CUS_0x60ec,August,42,211-05-3339,Musician,41975,,2,7,5,0,,0,1,5.74,0,Good,62.44612747,36.55166291,25 Years and 4 Months,No,0,65.71007767,High_spent_Medium_value_payments,568.2703587,0,-0.3417,0.9313,0.5349,0.0515,-1.2836 -0x17c35,CUS_0x67fd,August,24,994-43-3758,_______,40759.86,3417.655,4,5,18.28836175,2,"Payday Loan, and Home Equity Loan",8.626746235,10,19.66,9,Standard,313.0353798,23.08671533,31 Years and 6 Months,Yes,39.73303869,516.9331798,High_spent_Medium_value_payments,468.3244692,0,0.3951,-1.1939,-1.115,0.4595,-1.2888 -0x17c41,CUS_0x65d9,August,35,978-73-5122,Architect,8291.51,961.9591667,6,9,15.88954781,8,"Auto Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Student Loan, Not Specified, Mortgage Loan, and Payday Loan",,19,0.9,12,Bad,2511.39,27.69966756,12 Years and 0 Months,Yes,1366.712255,0,High_spent_Large_value_payments,266.3078596,0,-1.9546,-0.9526,0.0811,2.8575,-1.5105 -0x17c4d,CUS_0x9a0f,August,20,077-91-3481,Entrepreneur,56101,4655.083333,7,9,24,9,"Mortgage Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,21.68971826,4.77,10,_,5497.106423,37.55068807,9 Years and 9 Months,Yes,420.1993667,48.09382866,High_spent_Large_value_payments,237.2151379,0,-0.1516,-0.7381,-1.3329,-0.5138,0.4398 -0x17c59,CUS_0x65a9,August,32,369-89-6459,_______,74732.96,5917.510962,7,6,33,8,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Personal Loan, Payday Loan, and Debt Consolidation Loan",20.14547824,14,19.45,10,Bad,2477.934509,32.5204035,13 Years and 0 Months,Yes,550.6793937,146.8505198,High_spent_Large_value_payments,441.7475132,0,-0.2251,0.0764,-0.3464,1.2447,1.5007 -0x17c65,CUS_0x61e1,August,30,703-69-2088,Manager,19532.06,,8,8,28.95700519,7,"Payday Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Payday Loan",,8,10.24,12,Standard,2040.410954,36.04710362,15 Years and 6 Months,Yes,1433.295266,,Low_spent_Small_value_payments,209.5106939,0,0.1558,1.8777,-0.3498,-1.4361,-0.9549 -0x17c71,CUS_0x49e4,August,33,218-55-3668,Architect,85455.06,7125.255,4,7,6,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",,16,2.29,5,Good,135.3079497,38.76052984,20 Years and 8 Months,No,161.4055427,605.6056859,Low_spent_Medium_value_payments,302.7349487,0,1.1721,1.3939,1.2359,-1.0487,-1.5385 -0x17c7d,CUS_0x5899,August,29,691-71-6797,Media_Manager,57132.48,,0,7,9,2,"Mortgage Loan, and Student Loan",,2.412642137,4.37,0,Good,1208.712942,40.62186031,15 Years and 8 Months,No,56.62512462,109.7301629,High_spent_Medium_value_payments,531.6487125,0,1.1129,0.0334,-0.6867,-0.4404,0.0376 -0x17c89,CUS_0x91f6,August,56,174-77-8420,Writer,41810.62,3765.218333,4,7,7,2,"Personal Loan, and Personal Loan",14.16879488,14,10.47,3,Standard,1219.91,35.340178,15 Years and 11 Months,No,64.2020639,265.684171,Low_spent_Large_value_payments,316.6355985,0,0.292,0.2297,0.131,-1.3809,-2.3431 -0x17c95,CUS_0x8b5b,August,80,146-59-3037,Teacher,32077.74,2905.145,5,4,4.288361749,1430,,10.69937417,10,8.52,10,Standard,255.82,37.87734484,,NM,0,,Low_spent_Small_value_payments,208.5417535,0,-1.5496,1.2017,0.3267,-0.4116,-0.2096 -0x17ca1,CUS_0xa293,August,26,117-17-5155,_______,32030.69,,4,4,6,4,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Personal Loan",15.48174905,13,5.37,8,_,625.84,37.8083502,27 Years and 0 Months,No,244.3542363,,Low_spent_Small_value_payments,157.9707217,0,0.2267,1.8718,-0.6343,0.3054,-0.5684 -0x17cad,CUS_0x287f,August,33,823-87-2119,Engineer,19338.105,1569.50875,0,1426,8,2,"Debt Consolidation Loan, and Personal Loan",9.454751622,10,9.85,5,Good,921.21,32.22162472,20 Years and 10 Months,No,18.79065811,133.7952628,Low_spent_Small_value_payments,294.3649541,0,0.0633,0.8861,0.1482,1.6956,0.1009 -0x17cb9,CUS_0x4c4a,August,22,018-63-9003,Accountant,12613.92,,4,6,13,3,"Personal Loan, Student Loan, and Home Equity Loan",19.69278515,17,17.51,3,Standard,508.3137111,28.36762491,31 Years and 11 Months,Yes,16.94190267,46.53928892,Low_spent_Large_value_payments,327.7890811,0,0.3265,-1.7643,0.5443,-0.1492,1.1416 -0x17cc5,CUS_0x5392,August,53,154-82-5108,Scientist,100884.81,8631.0675,3,7,18,3,"Auto Loan, Home Equity Loan, and Home Equity Loan",7.134373743,7,17.94,6,_,783.27,34.85966995,30 Years and 4 Months,Yes,248.1318374,1007.056152,Low_spent_Small_value_payments,,0,0.0984,-0.5948,-0.7792,0.5226,-0.2113 -0x17cd1,CUS_0x5a61,August,26,957-33-4427,Musician,34767.12,,3,6,14,6,"Not Specified, Debt Consolidation Loan, Payday Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",25.03137291,18.02099025,8.79,8,Standard,2287.265721,36.42623523,19 Years and 2 Months,Yes,183.1940279,173.2400078,Low_spent_Small_value_payments,243.998605,0,-0.402,0.8376,-1.3536,-0.432,0.8674 -0x17cdd,CUS_0x138d,August,39,568-44-1961,Mechanic,88069.62,7552.135,162,7,5,3,"Payday Loan, Mortgage Loan, and Credit-Builder Loan",4.977850636,8,13.72,7,Good,1096.06,24.55571255,,No,151.489409,,Low_spent_Small_value_payments,200.5150843,0,0.8084,-0.063,-0.1209,1.1134,0.2275 -0x17ce9,CUS_0x4562,August,32,008-06-4996,Doctor,43925.79,3585.4825,8,9,23.88954781,6,"Auto Loan, Auto Loan, Auto Loan, Auto Loan, Student Loan, and Student Loan",35.34802183,25,14.29,10,_,2662.07,27.14502139,8 Years and 8 Months,Yes,1513.393465,71.08280712,High_spent_Large_value_payments,319.7418961,0,0.2546,-1.8042,-0.721,0.0519,-0.5461 -0x17cf5,CUS_0xb65f,August,36,023-22-9697,_______,18630.47,,9,6,33.06745738,3,"Mortgage Loan, Auto Loan, and Payday Loan",,19.04009041,5.42,9,Bad,2881.161488,31.78432649,13 Years and 9 Months,NM,25.62558598,153.8443443,Low_spent_Small_value_payments,238.7636984,0,-0.1955,0.2705,1.8341,0.5286,1.4083 -0x17d01,CUS_0x2d25,August,18,877-32-5574,Entrepreneur,48496.74,,3,7,10,6,"Home Equity Loan, Not Specified, Not Specified, Not Specified, Mortgage Loan, and Credit-Builder Loan",12.25487709,9,17.18,8,_,946.27,41.01773278,11 Years and 9 Months,Yes,168.1035451,61.55660662,High_spent_Large_value_payments,406.8793483,0,0.9687,-0.4322,-1.4295,1.2139,-1.0245 -0x17d0d,CUS_0xbec2,August,45,#F%$D@*&8,Architect,9133.965,,6,10,21.88954781,6,"Personal Loan, Home Equity Loan, Payday Loan, Not Specified, Mortgage Loan, and Personal Loan",10.44349922,9,8.13,9,Standard,2552.06,36.25698441,12 Years and 9 Months,Yes,1365.223207,,Low_spent_Large_value_payments,243.0558564,0,0.2676,1.8808,-0.2058,-1.894,-1.0499 -0x17d19,CUS_0xbd8c,August,56,637-10-9834,Journalist,27987.5,,8,4,3433,2,"Debt Consolidation Loan, and Home Equity Loan",24.48056607,19,10.98,4,_,1046.316859,24.6723223,20 Years and 3 Months,No,39.60099775,,Low_spent_Small_value_payments,221.7053091,0,0.8113,-0.3414,1.6035,-0.5222,-0.6812 -0x17d25,CUS_0x248f,August,30,497-82-1914,Scientist,16380.325,,7,5,12,0,,,8,6.99,0,Standard,1307.87,29.77877065,17 Years and 2 Months,No,0,67.44691497,Low_spent_Small_value_payments,339.5557934,0,0.1314,-0.8876,0.7073,0.288,2.1317 -0x17d31,CUS_0x5dc2,August,35,786-62-1923,Lawyer,14120005,1405.620833,6,6,16,4,"Debt Consolidation Loan, Home Equity Loan, Not Specified, and Payday Loan",15.88595428,12,16.03,8,Standard,2519.74,34.67114477,,Yes,28.06703622,109.7965892,Low_spent_Medium_value_payments,282.6984579,0,0.3499,1.175,-0.4432,0.0592,-0.2493 -0x17d3d,CUS_0x22bf,August,25,682-14-2267,_______,48423.15,4044.2625,8,5,27,9,"Mortgage Loan, Not Specified, Credit-Builder Loan, Payday Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",,29.68650341,7.39,7,Bad,1833.207926,37.35515904,12 Years and 6 Months,Yes,241.6739798,359.1337681,Low_spent_Medium_value_payments,83.61850216,0,-0.6504,1.3132,1.0507,1.1922,-0.4673 -0x17d49,CUS_0x3efb,August,38,564-68-2942,Mechanic,82816.48,6754.373333,8,10,16,6,"Payday Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Not Specified",18.98219604,,23.45,15,Bad,4279,31.79280542,8 Years and 3 Months,Yes,215.8075079,97.56108487,High_spent_Medium_value_payments,612.0687406,0,0.0533,1.0475,0.2245,-0.4118,0.5087 -0x17d55,CUS_0xacbf,August,52,790-29-7012,Scientist,34269.74,2950.811667,4,6,3,4,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Credit-Builder Loan",,10,3.31,6,Good,536.6657525,29.6666129,21 Years and 9 Months,No,108.1668114,11348.4845,High_spent_Small_value_payments,287.6815858,0,1.2705,-0.7258,-0.9733,-0.01,-0.1404 -0x17d61,CUS_0x8363,August,18,523-28-6460,Manager,58564.62,4752.385,5,7,24,3,"Payday Loan, Personal Loan, and Student Loan",23.6717219,18,19.44,12,Standard,2044.39,26.83264476,10 Years and 5 Months,Yes,102.5778042,176.9202023,High_spent_Medium_value_payments,445.7404935,0,-0.7493,-0.6142,0.3365,-0.8764,-1.582 -0x17d6d,CUS_0xb5e9,August,48,868-59-4042,Engineer,23848.02,2234.335,8,3,10,0,,,22,1.36,5,Standard,340.16,37.77429452,,No,0,291.0383757,Low_spent_Small_value_payments,222.3951243,0,-0.407,0.1169,-2.942,0.6457,-0.8011 -0x17d79,CUS_0x2216,August,24,248-06-6300,Mechanic,16559.985,,1,4,2,1,Not Specified,12.32694157,10,9.6,3,Good,680.86,40.41605436,18 Years and 2 Months,No,10.26343839,28.31271358,High_spent_Medium_value_payments,338.323723,0,-0.6802,-0.7567,-0.9105,0.6279,0.2871 -0x17d85,CUS_0x58fb,August,45,343-66-3569,Manager,64915.92,,10,8,24,5,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Student Loan",26.85807291,19,16.34,6,_,1843.38,36.02220782,8 Years and 8 Months,Yes,247.427591,123.2666762,Low_spent_Large_value_payments,423.8717328,0,0.024,1.6053,2.1663,-0.167,0.5989 -0x17d91,CUS_0x5a9e,August,80,080-85-0098,Developer,28647.75,,1076,6,4.288361749,4,"Not Specified, Debt Consolidation Loan, Not Specified, Personal Loan, and Payday Loan",13.04972348,12,17.36,7,_,73.89688646,24.30089131,6 Years and 5 Months,Yes,113.1923154,450.9239477,High_spent_Large_value_payments,315.529524,0,4.6799,-1.4492,-0.431,0.7439,1.7701 -0x17d9d,CUS_0xa2cb,August,44,085-66-0696,Doctor,18355.27,,6,6,33.06745738,6,"Student Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Personal Loan",,18.34515051,3.33,11,Bad,3246.282931,37.50789978,9 Years and 5 Months,Yes,62.56128542,,Low_spent_Small_value_payments,256.5305394,0,0.9489,-0.5908,0.3507,-0.9751,-0.2191 -0x17da9,CUS_0xba1c,August,33,419-82-4747,Lawyer,41757.44,,6,8,27,3,"Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",42.19204253,20.2936336,8.76,9,Bad,1478.529536,37.54236165,17 Years and 11 Months,Yes,100.0696282,117.1090018,High_spent_Small_value_payments,374.6000366,0,0.6029,-0.083,0.1848,-0.2495,0.5301 -0x17db5,CUS_0x86c5,August,32,795-05-5701,Lawyer,79264.86,6863.405,4,7,9,5,"Credit-Builder Loan, Student Loan, Student Loan, Payday Loan, and Student Loan",,17,19.21,5,Standard,440,31.98461414,6 Years and 10 Months,Yes,274.2932042,50.3505256,High_spent_Large_value_payments,601.6967702,0,-1.1673,-2.0656,-2.3926,0.2179,1.0585 -0x17dc1,CUS_0x9a4b,August,40,817-31-4270,Doctor,60379.28,,5,6,18,3,"Personal Loan, Mortgage Loan, and Credit-Builder Loan",,13,6.83,1,Standard,664.4272332,29.42446921,17 Years and 6 Months,No,468.0145984,11768.63569,Low_spent_Small_value_payments,404.0252673,0,0.1521,0.9245,1.4664,-0.1837,0.9631 -0x17dcd,CUS_0x2e9b,August,19,068-74-0168,Engineer,29735.22,2208.935,10,8,26.06745738,4,"Auto Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",35.18633647,18.44369538,-1.23,12,Bad,2158.986249,28.2412868,19 Years and 9 Months,Yes,64.47707649,137.3865194,Low_spent_Small_value_payments,282.3096161,0,0.8388,-0.6168,1.3424,-0.0343,-1.0535 -0x17dd9,CUS_0x4718,August,41,232-98-1128,Doctor,7023.16,,7,3,10,3,"Payday Loan, Payday Loan, and Not Specified",15.78612508,14,12.67,9,Standard,335.3,32.36313882,18 Years and 4 Months,Yes,17.08984254,100.3660282,Low_spent_Small_value_payments,249.2704626,0,0.3588,0.3745,0.9069,-0.6396,0.3469 -0x17de5,CUS_0x70f6,August,34,828-57-7339,Engineer,20374.59,,6,6,25,3,"Debt Consolidation Loan, Personal Loan, and Personal Loan",33.50195022,22.99125468,19.58,9,Standard,1461.566212,27.83126742,12 Years and 10 Months,Yes,46.16207652,58.19957242,!@9#%8,348.1266011,0,-1.1021,0.425,-0.446,0.2877,-0.4723 -0x17df1,CUS_0x4d77,August,46,298-87-8791,Engineer,119875.35,9847.6125,2,2,10.28836175,2,"Student Loan, and Payday Loan",15.61251227,14,3.78,1,Good,1129.179399,28.11413405,33 Years and 6 Months,No,191.5414127,557.7074678,High_spent_Large_value_payments,914.3240417,0,1.399,0.297,-0.3248,-0.0519,-0.765 -0x17dfd,CUS_0x17bb,August,39,691-17-1432,Architect,63115.54,,4,7,2,2,"Credit-Builder Loan, and Auto Loan",17.07396828,9.370277042,,5,Good,1314.190543,28.3471696,,No,54.03375696,275.2009204,Low_spent_Small_value_payments,458.928156,0,1.3324,-0.0497,-0.4457,-0.769,0.2544 -0x17e09,CUS_0x8a44,August,26,740-21-4850,Musician,171572.16,14531.68,2,3,3,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",6.720098128,8,2.1,0,Good,148.1521451,35.06192389,29 Years and 2 Months,NM,369.9356013,,Low_spent_Small_value_payments,654.5117845,0,-0.4438,-0.6966,-0.8986,-0.3451,-0.9337 -0x17e15,CUS_0x1b0f,August,28,726-95-5073,Accountant,33559.26,,6,8,20,3,"Mortgage Loan, Personal Loan, and Personal Loan",33.77426282,25.23823735,,12,Bad,2395.944432,31.41857166,9 Years and 0 Months,Yes,77.7638581,,!@9#%8,260.2703777,0,2.0815,0.3578,0.353,1.2164,-0.4333 -0x17e21,CUS_0x5fc,August,43,322-81-6659,Developer,7309.6,,4,6,4000,3,"Payday Loan, Credit-Builder Loan, and Auto Loan",28.07488465,20,8.39,4,Standard,2111.68,26.10322901,15 Years and 11 Months,Yes,15.23693039,37.05719387,Low_spent_Large_value_payments,275.0192091,0,0.9125,-0.8374,1.2139,2.0696,-0.2006 -0x17e2d,CUS_0x7405,August,18,711-06-5620,Engineer,28681.95,,5,7,6,2,"Auto Loan, and Payday Loan",,15,15.05,6,Standard,1379.62,31.10671824,16 Years and 5 Months,Yes,45.01428541,204.5556052,Low_spent_Small_value_payments,271.2463594,0,0.9738,0.3137,-0.5094,1.0567,-0.6988 -0x17e39,CUS_0x996f,August,49,782-80-0939,Developer,162688.28,13580.35667,0,5,2,2,"Home Equity Loan, and Debt Consolidation Loan",0,0,4.48,2,Good,732.8804257,31.87058977,32 Years and 4 Months,No,178.6439387,115.6412817,High_spent_Large_value_payments,1303.750446,0,-0.8249,0.0735,0.3848,-0.5414,0.3573 -0x17e45,CUS_0x6fd9,August,36,650-15-8388,Journalist,84050.5,7140.208333,3,5,12,3,"Student Loan, Home Equity Loan, and Student Loan",0,0,0.16,199,Good,812.0436905,31.70238932,24 Years and 6 Months,No,175.377781,341.3420148,High_spent_Small_value_payments,493.7550745,0,-0.2461,0.8006,-0.6738,-0.2359,0.634 -0x17e51,CUS_0xc3ce,August,56,767-68-3847,Media_Manager,18995.115,,5,3,6,3,"Student Loan, Debt Consolidation Loan, and Credit-Builder Loan",0,0,7.86,6,_,977.2744199,30.25225938,27 Years and 10 Months,No,44.1793853,168.0557385,Low_spent_Small_value_payments,233.2538311,0,-0.4047,-0.5216,0.8435,0.7702,1.353 -0x17e5d,CUS_0xb121,August,18,225-01-5244,Mechanic,73773.48,,3,6,11,5,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Student Loan",13.01051181,13,16.25,7,Standard,2380.66,27.39311161,10 Years and 0 Months,Yes,256.2255328,140.8020986,High_spent_Large_value_payments,473.7513686,0,-1.4707,-0.2155,0.4141,-0.7775,1.1724 -0x17e69,CUS_0x7414,August,32,913-51-4641,Engineer,48305.18,4314.431667,8,7,7,2,"Payday Loan, and Auto Loan",16.4020746,12,8.19,5,Standard,1410.73,35.56852691,22 Years and 6 Months,Yes,42.22270574,75.35024978,High_spent_Medium_value_payments,563.8702111,0,0.5312,-0.3472,1.1597,-0.0239,0.1674 -0x17e75,CUS_0x80f8,August,36,250-34-7218,Teacher,15668.4,,8,6,22.06745738,9,"Student Loan, Not Specified, Not Specified, Not Specified, Auto Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",28.51494464,16,23.2,10,_,4723.330954,25.37345009,1 Years and 10 Months,Yes,102.9174632,76.85301286,Low_spent_Small_value_payments,241.979236,0,-1.3053,-1.7274,-0.7423,-1.4702,0.7834 -0x17e81,CUS_0x36ac,August,27,454-00-0337,Accountant,10494.44,1048.536667,3,6,7,6,"Student Loan, Mortgage Loan, Mortgage Loan, Student Loan, Payday Loan, and Auto Loan",14.13722914,11,11.07,7,Standard,2579.62,38.53474696,15 Years and 6 Months,Yes,46.16021052,,Low_spent_Small_value_payments,280.7529063,0,0.8984,0.279,-0.4158,0.0543,-0.8331 -0x17e8d,CUS_0xa008,August,80,487-90-7604,Scientist,38047.31,,4,2,12,0,,3.012772244,6,12.53,1,Good,240.3842548,32.19218059,15 Years and 10 Months,No,0,121.7909119,High_spent_Small_value_payments,440.578758,0,-0.5961,-0.1965,-1.2308,-0.1892,-0.8496 -0x17e99,CUS_0x65d3,August,31,193-67-1122,Teacher,7889.11,,7,3,10,4,"Mortgage Loan, Not Specified, Not Specified, and Home Equity Loan",,10,19.88,6,Standard,973.01,33.35966343,11 Years and 9 Months,Yes,15.7463671,23.64178191,High_spent_Medium_value_payments,283.0544343,0,0.3288,-0.8216,-0.2498,1.1341,0.838 -0x17ea5,CUS_0x5446,August,44,264-43-4655,Media_Manager,69895.56,5893.63,3,6,9,4,"Payday Loan, Not Specified, Student Loan, and Home Equity Loan",11.87527156,9.636357367,9.65,3,_,99.43595599,25.47233211,16 Years and 9 Months,No,154.5818868,264.1713493,Low_spent_Large_value_payments,440.6097639,0,-0.3226,-0.5597,0.7559,-0.0141,1.1723 -0x17eb1,CUS_0xf8b,August,40,779-60-0339,Developer,43922.32,,2,6,5.288361749,2,"Student Loan, Not Specified, and Personal Loan",,7,8.67,4,Good,233.83,39.13749585,22 Years and 10 Months,No,66.54092877,747.4550639,Low_spent_Small_value_payments,282.8608017,0,-0.3817,0.2498,0.0243,0.6402,-1.439 -0x17ebd,CUS_0x3f83,August,26,485-35-2240,Media_Manager,36585.12,,7,6,15,1,Home Equity Loan,19.8751863,13.98584979,11.85,0,Standard,1537.658153,24.40083216,30 Years and 8 Months,Yes,21.5645361,,High_spent_Small_value_payments,414.1385952,0,-0.4883,1.3895,-0.8918,-0.7591,-0.4656 -0x17ec9,CUS_0x487a,August,27,795-68-8114,Scientist,58728.06,,8,5,1661,5,"Debt Consolidation Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, and Auto Loan",,21.62882822,,8,_,1392.543461,39.52702965,18 Years and 9 Months,Yes,129.832823,54.69151368,High_spent_Large_value_payments,544.6761634,0,0.5797,-0.1516,2.3989,-1.4016,1.832 -0x17ed5,CUS_0x3f9c,August,18,009-60-0982,Doctor,50657.58,4471.465,8,10,28.88954781,7,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Home Equity Loan",28.30775607,19,17.33,16,Bad,4128.96,34.83027093,,Yes,1601.984681,,Low_spent_Small_value_payments,283.821039,0,1.5,-0.2816,0.5451,-0.9398,-1.031 -0x17ee1,CUS_0x61e4,August,24,864-67-1749,Musician,14013.165,,2,3,4,4,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",1.938631559,5,10.36,6,Good,1404.11,27.82827642,20 Years and 5 Months,No,38.42009022,46.01193396,Low_spent_Small_value_payments,295.6443508,0,-0.829,2.2935,-0.239,1.765,0.0638 -0x17eed,CUS_0x32b8,August,51,456-75-0992,Developer,21960.095,,4,2,7,1,Mortgage Loan,0,3,8.58,4,Good,1092.400884,30.59088976,,No,17.78352045,120.0705443,Low_spent_Small_value_payments,341.1526409,0,1.1072,1.1222,-0.6953,1.8532,0.5108 -0x17ef9,CUS_0xaf56,August,43,808-71-5249,Musician,15081.42,,8,7,33.06745738,9,"Credit-Builder Loan, Not Specified, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Not Specified, Home Equity Loan, and Home Equity Loan",,24.74001599,16.9,12,Bad,4446.138316,25.53643225,,Yes,110.7918354,104.7352598,Low_spent_Large_value_payments,182.2311169,0,0.3479,0.3112,-0.7498,-0.5655,-0.8414 -0x17f05,CUS_0x4c76,August,35,584-57-7987,Scientist,120404.22,10107.685,4,3,10.28836175,4,"Personal Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",7.926530849,10,11.31,2,Good,390.39,35.22363601,27 Years and 8 Months,No,273.2600778,632.7727838,High_spent_Large_value_payments,764.6730994,0,-1.0248,0.6114,-1.6609,-2.164,-0.0404 -0x17f11,CUS_0x3fb,August,34,155-76-2267,Media_Manager,14432.87,1185.739167,3,7,7,1,Home Equity Loan,4.707654455,8,9.47,3,Good,863.5100046,27.33400456,32 Years and 11 Months,No,6.412118995,11317.43155,Low_spent_Small_value_payments,327.7859856,0,-0.0657,-0.7816,-0.0134,0.5348,-0.5463 -0x17f1d,CUS_0x180a,August,45,356-18-9501,Media_Manager,35911.33,3003.610833,3,3,2,2,"Not Specified, and Home Equity Loan",16.98992835,16,5.5,3,Standard,739.82,24.68080569,18 Years and 4 Months,No,39.11288223,250.3737555,!@9#%8,300.8744456,0,0.8414,-0.6736,-1.6302,0.9636,1.8022 -0x17f29,CUS_0x3769,August,47,328-70-5076,Media_Manager,127160.94,10216.88601,4,7,3,2,"Home Equity Loan, and Personal Loan",1.662776201,3,3.55,3,Good,559.07,25.44566865,27 Years and 9 Months,No,759.9857464,325.0578191,High_spent_Medium_value_payments,872.8899195,0,-0.2299,1.508,-1.2636,-0.6014,-1.6411 -0x17f35,CUS_0x9efd,August,28,886-97-0783,Manager,8446.24,909.1866807,8,5,16,3,"Student Loan, Credit-Builder Loan, and Mortgage Loan",,19,4.46,11,Bad,1425.23,38.45733647,19 Years and 3 Months,Yes,80.25169765,120.0935727,Low_spent_Small_value_payments,248.4067156,0,1.4593,-0.6439,-1.1097,-0.7499,0.9167 -0x17f41,CUS_0x93d2,August,23,184-40-6690,Journalist,16931.7,,8,5,24.06745738,3,"Personal Loan, Student Loan, and Debt Consolidation Loan",33.76169952,18.21502473,1.17,15,Bad,2012.611198,27.81444713,16 Years and 10 Months,Yes,25.88400432,107.785152,Low_spent_Small_value_payments,295.3080558,0,-0.3258,0.6571,0.5229,0.9776,0.445 -0x17f4d,CUS_0x66ce,August,46,200-14-2930,Entrepreneur,15685.095,,3,7,7,0,,,18,3.93,5,Standard,350.98,32.76147985,,No,0,,Low_spent_Small_value_payments,349.2374822,0,1.4661,0.2185,-1.8577,0.5081,-0.9069 -0x17f59,CUS_0x15c5,August,39,680-70-8654,Doctor,21585.13,,7,4,17,4,"Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",19.75457998,,15.55,4,_,83.55,34.03123234,17 Years and 6 Months,Yes,67.60250044,,Low_spent_Small_value_payments,221.8276261,0,-0.8624,0.423,1.6342,-2.1361,1.2553 -0x17f65,CUS_0xa03c,August,49,537-32-8667,Scientist,93898.05,,5,2,0.288361749,4,"Payday Loan, Not Specified, Auto Loan, and Auto Loan",,11,3.43,1,Good,31.44,28.96001365,22 Years and 5 Months,No,256.2692048,612.9435315,High_spent_Medium_value_payments,574.7084748,0,1.7088,-0.509,0.0464,0.7317,-1.1704 -0x17f71,CUS_0x8cc8,August,43,646-25-9153,Manager,124564.6,10207.38333,3,4,5.288361749,6,"Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",,19,11.63,5,Standard,849.21,34.93363518,13 Years and 3 Months,Yes,472.5923675,507.1063169,High_spent_Large_value_payments,700.9771099,0,-0.0688,0.8626,-0.0155,-0.9472,-0.3179 -0x17f7d,CUS_0x8526,August,21,327-13-6605,_______,95596.35,8205.3625,0,3,2,3,"Student Loan, Auto Loan, and Student Loan",,1,4.98,6,_,943.5155264,34.76880416,29 Years and 3 Months,No,200.5593655,169.8382235,High_spent_Large_value_payments,711.9652868,0,-0.3378,-1.9497,-0.2601,0.2813,0.2771 -0x17f89,CUS_0x3dfa,August,27,958-06-6120,Manager,82194.02,6799.501667,0,3,1.288361749,2,"Personal Loan, Personal Loan, and Personal Loan",0.93995472,4,8.62,3,Good,824.2179415,23.95375678,29 Years and 3 Months,No,119.4221881,841.8240082,High_spent_Small_value_payments,448.6845896,0,-1.1293,-1.1996,0.8792,-1.7848,1.3625 -0x17f95,CUS_0x1600,August,30,871-12-8955,Media_Manager,130173.93,10703.8275,1,4,6.288361749,4,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",10.07551829,9.731329838,0.85,0,Good,755.1744414,40.58759768,,NM,239.0399586,634.5523312,High_spent_Medium_value_payments,866.7279212,0,-0.9746,1.1665,-1.351,0.27,-0.0508 -0x17fa1,CUS_0xb17e,August,49,180-32-2217,Mechanic,36549.68,,0,1052,12,0,,,10.54366175,4.58,7,Good,1168.927772,39.76350743,23 Years and 0 Months,No,0,318.609879,Low_spent_Small_value_payments,278.8707877,0,-0.0149,-0.0144,0.7299,0.0979,1.1553 -0x17fad,CUS_0x9318,August,45,224-72-0646,Teacher,15381.59,1409.799167,8,10,31.95700519,7,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Personal Loan, and Auto Loan",41.35299668,20.65988672,9.49,11,Bad,2129.582405,26.46160243,7 Years and 3 Months,Yes,1373.018266,115.8815399,Low_spent_Small_value_payments,221.0297417,0,0.8558,-0.4326,-1.3423,1.3367,-1.2528 -0x17fb9,CUS_0x52aa,August,21,414-35-1640,_______,55235.76,4705.98,7,10,33.06745738,6,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",,25.91872678,,12,_,4105.989407,29.55414285,12 Years and 8 Months,Yes,239.7944164,369.0536762,Low_spent_Small_value_payments,125.0296194,0,-1.6967,-0.1917,-0.2924,0.7751,-0.0549 -0x17fc5,CUS_0x7cfb,August,24,836-40-8633,Accountant,69905.36,6090.446667,6,5,14,3,"Student Loan, Student Loan, and Credit-Builder Loan",24.93094797,19,,1,_,1216.15,26.74604323,,No,160.9015739,71.06151994,High_spent_Large_value_payments,617.0815729,0,0.1634,-0.446,0.9537,0.2317,-0.2922 -0x17fd1,CUS_0x40e1,August,49,394-24-7342,Scientist,42235.77,,0,3,8,4,"Home Equity Loan, Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",16.04231956,10.84747984,13.83,1,Good,1498.596595,31.77921724,31 Years and 3 Months,No,82.56287651,80.52405142,High_spent_Medium_value_payments,453.3778221,0,-0.4868,-1.3962,1.0278,1.7258,-0.4277 -0x17fdd,CUS_0x2e43,August,40,965-75-3593,Journalist,10651.65,615.6375,7,6,9,4,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",,20,16.95,5,Standard,1325.65,36.92791554,19 Years and 5 Months,Yes,25.23289645,43.03086106,Low_spent_Large_value_payments,263.2999925,0,-1.0059,-0.7107,0.7308,-1.0637,-1.0367 -0x17fe9,CUS_0x7bc5,August,45,054-18-3107,Doctor,17641.87,,8,6,34.06745738,100,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",,11.74016319,8.29,11,Standard,2085.508263,31.70843919,,Yes,47.24458377,35.92670631,High_spent_Medium_value_payments,270.7240053,0,1.0958,-0.5844,-0.446,0.216,-0.0167 -0x17ff5,CUS_0x2438,August,80,726-17-1913,Mechanic,43183.56,3851.63,5,5,13,4,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",,10,14.2,9,Standard,263.56,27.15315875,19 Years and 10 Months,Yes,106.8676993,93.87100644,High_spent_Medium_value_payments,434.4242943,0,0.3966,0.6709,0.4208,0.7922,2.7203 -0x18001,CUS_0x98ec,August,42,037-19-6890,Architect,19677,1659.144473,9,5,30,5,"Auto Loan, Student Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,,5.52,8,Bad,1749.128573,37.10826048,20 Years and 2 Months,Yes,176.0412845,111.5278792,Low_spent_Large_value_payments,271.1113631,0,0.084,-0.3989,-0.5557,0.0769,1.2273 -0x1800d,CUS_0x6b56,August,34,165-16-8474,Scientist,9667.645,950.6370833,6,5,26,9,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Student Loan, and Student Loan",,19,17.37,11,Bad,2439.00065,36.98989043,13 Years and 5 Months,NM,68.5604039,78.7252632,Low_spent_Medium_value_payments,236.4195411,0,-0.1999,1.2942,0.5409,-0.5468,-1.8515 -0x18019,CUS_0x377b,August,50,#F%$D@*&8,Scientist,116156.1,9448.675,5,5,4.288361749,2,"Home Equity Loan, and Personal Loan",9.345899135,9,1.13,3,Good,1100.049806,29.55665453,20 Years and 11 Months,No,193.1944018,718.2727549,Low_spent_Large_value_payments,766.4549803,0,0.7536,0.624,-0.2145,-0.7453,-0.1992 -0x18025,CUS_0xa7d0,August,36,451-13-9180,_______,70913.4,6126.45,8,4,12,3,"Home Equity Loan, Auto Loan, and Mortgage Loan",,12,3.24,2,Good,841.5170051,33.24878132,22 Years and 8 Months,No,60212,94.76718341,High_spent_Large_value_payments,617.5165602,0,-0.0262,0.3602,0.3942,-1.1874,-0.4866 -0x18031,CUS_0xc144,August,20,015-72-5418,_______,29043.01,,8,7,15,7,"Student Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",24.00256696,18,17.63,9,Standard,1312.143223,23.06834394,17 Years and 10 Months,Yes,153.656041,,Low_spent_Small_value_payments,107.513353,0,-0.4641,0.3839,-0.2063,-3.3197,1.1938 -0x1803d,CUS_0x35bd,August,34,042-56-3090,Media_Manager,16290256,,7,6,26,6,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Payday Loan",35.35360292,18,12.09,8,_,2168.54,29.96471981,11 Years and 3 Months,NM,76.90780862,11.69442175,High_spent_Large_value_payments,299.064103,0,0.1666,-0.9601,1.1672,1.324,1.1843 -0x18049,CUS_0x1ef9,August,49,008-77-4539,Musician,150256.72,12641.39333,1,6,1,0,,,1,2.69,2,Good,1378.476894,38.83133471,16 Years and 8 Months,No,0,1378.892749,Low_spent_Small_value_payments,372.8738225,0,-0.7084,-0.0734,0.43,-0.9364,-1.1062 -0x18055,CUS_0x289b,August,39,543-28-4296,_______,17153.69,1206.474167,6,8,22,3,"Credit-Builder Loan, Home Equity Loan, and Payday Loan",51.79164852,27.67838957,11.78,14,Bad,1900.718991,24.30971311,19 Years and 6 Months,Yes,58051,10000,Low_spent_Small_value_payments,247.4411732,0,0.2939,-0.5626,0.8663,0.5672,-1.3023 -0x18061,CUS_0xbb7c,August,51,226-65-5300,Entrepreneur,32420.82,2605.735,3,4,14,4,"Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Payday Loan",,,5.68,3,Standard,873.63,32.34467716,22 Years and 0 Months,Yes,105.1309762,37.39534463,High_spent_Medium_value_payments,368.0471792,0,-0.6906,-0.3862,-0.9532,-0.6502,-0.8164 -0x1806d,CUS_0xb45a,August,40,451-51-4200,Accountant,145175.4,12016.95,3,1,6,1,Personal Loan,1.45237251,3,5.58,2,Good,1132.06874,33.23961592,,No,67.83706538,484.0461541,High_spent_Small_value_payments,961.4548354,0,0.6968,0.4465,-0.8227,1.5348,0.8079 -0x18079,CUS_0x5cbb,August,44,309-82-5174,Accountant,106882.84,,6,6,18,0,,26.01314094,19,10.88,4,_,332.47,32.74785402,26 Years and 5 Months,Yes,0,64.51111299,High_spent_Large_value_payments,1063.77922,0,-0.1269,1.6339,2.8873,1.0168,0.0343 -0x18085,CUS_0x3393,August,40,061-14-3234,Accountant,99363.88,8222.323333,6,3,15,1,Debt Consolidation Loan,7.614907091,9,18.67,9,Standard,1099.31,27.26144948,31 Years and 3 Months,Yes,57.37360803,291.0521068,High_spent_Medium_value_payments,723.8066185,0,-1.8019,-0.2886,-0.1565,0.1361,-1.1861 -0x18091,CUS_0x6fbb,August,35,638-02-6164,Architect,58176.6,4501.453268,6,4,13,3,"Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",,14,11.38,1213,Standard,1457.8,35.28098676,14 Years and 10 Months,NM,672.6773036,,Low_spent_Small_value_payments,495.4055579,0,-0.2482,-0.2428,0.4435,-0.2353,1.0707 -0x1809d,CUS_0x1698,August,19,622-91-3070,Media_Manager,9221.875,598.4895833,6,5,35.06745738,4,"Auto Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",29.04572013,16,16.48,11,Standard,2597.440954,36.26181663,16 Years and 4 Months,NM,28.98776262,66.92892025,Low_spent_Small_value_payments,227.2119875,0,-0.4581,0.0667,0.766,-2.1305,-0.8435 -0x180a9,CUS_0x66d7,August,49,068-15-0323,Journalist,14528.37,,3,5,10,2,"Payday Loan, and Student Loan",0.064145543,2,5.5,5,Good,228.1923583,34.49113372,29 Years and 8 Months,NM,21.0813893,139.2465458,Low_spent_Medium_value_payments,274.7765044,0,-0.0642,1.1987,0.2415,0.6385,-0.7352 -0x180b5,CUS_0x96b3,August,36,242-10-5844,Lawyer,61181.88,5192.49,7,6,18,9,"Not Specified, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Auto Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",,28.21881462,3.53,11,Bad,2555.147114,26.76165176,15 Years and 3 Months,Yes,241.5704574,198.3827283,High_spent_Medium_value_payments,329.2958143,0,-1.1022,0.6102,0.0367,-0.4734,-0.9624 -0x180c1,CUS_0x5357,August,33,428-88-4219,Journalist,13961.155,1322.429583,6,3,20,4,"Debt Consolidation Loan, Mortgage Loan, Student Loan, and Debt Consolidation Loan",21.1661621,17,3.73,0,Standard,1406.02,23.45845808,28 Years and 2 Months,NM,40.17141519,159.4702309,Low_spent_Small_value_payments,222.6013122,0,-0.4903,-0.3236,-0.2012,0.3821,0.6435 -0x180cd,CUS_0xa2f8,August,50,219-21-7724,Accountant,67691.12,5700.926667,5,3,0.288361749,0,Mortgage Loan,,3,2.23,4,_,176.43,30.14016966,19 Years and 9 Months,No,34.98723717,462.7185105,High_spent_Large_value_payments,732.32438,0,0.3419,-0.2564,0.3978,-0.7466,2.0243 -0x180d9,CUS_0x40c,August,46,092-31-4708,Lawyer,20884.58,,6,6,15,100,Home Equity Loan,15.8817568,12,16.15,4,Standard,22.45,33.20687581,24 Years and 3 Months,Yes,12.48000835,62.09113329,High_spent_Medium_value_payments,360.967025,0,-1.3521,-0.2469,0.0511,1.256,0.406 -0x180e5,CUS_0x407c,August,24,318-25-1020,Writer,29570.45,,0,4,1,4,"Student Loan, Student Loan, Personal Loan, and Auto Loan",0,1,6.2,0,_,194.21,28.58455013,,No,62.25754575,55.21883171,High_spent_Medium_value_payments,371.4440392,0,0.2734,-0.9358,0.1239,0.9612,-0.511 -0x180f1,CUS_0xbe89,August,34,014-76-0876,Lawyer,110138.4,9419.2,4,3,11,3,"Mortgage Loan, Home Equity Loan, and Mortgage Loan",16.63474742,13,1.03,5,Standard,523.1405253,36.81833998,21 Years and 6 Months,No,178.1870634,713.797498,Low_spent_Medium_value_payments,428.2300547,0,-0.671,0.5638,0.3542,-0.7423,-1.8101 -0x180fd,CUS_0xac59,August,18,856-51-9653,Engineer,11169.595,667.7995833,7,4,10,0,,11.19540848,11,14.5,5,_,303.16,22.86731538,17 Years and 10 Months,Yes,0,89.61846593,Low_spent_Small_value_payments,267.1614924,0,-0.387,0.1224,-0.012,0.23,-1.9816 -0x18109,CUS_0x647e,August,44,433-00-3832,Manager,11688.93,,6,7,19,4,"Mortgage Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,10,5.3,7,Standard,950.833801,35.70398662,29 Years and 3 Months,No,31.7821377,,Low_spent_Large_value_payments,256.57493,0,1.4958,1.543,0.0625,-0.7334,0.9432 -0x18115,CUS_0xb36c,August,44,391-87-5581,Media_Manager,67413.2,5824.766667,9,10,16,4,"Mortgage Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",25.21047484,12.38830903,16.18,16,Standard,1847.515152,33.01574231,13 Years and 5 Months,Yes,178.8507621,243.4437481,High_spent_Medium_value_payments,410.1821565,0,-0.5127,-0.1574,-0.1094,-0.4254,0.5807 -0x18121,CUS_0x3b59,August,23,#F%$D@*&8,Lawyer,25659.34,,5,3,15,4,"Mortgage Loan, Personal Loan, Not Specified, and Credit-Builder Loan",22.39161449,16,4.19,2,Standard,1323.93,25.1922449,25 Years and 5 Months,No,54.98197115,163.0402241,Low_spent_Small_value_payments,295.8056381,0,-0.3169,0.4965,-1.372,0.671,1.2028 -0x1812d,CUS_0x8274,August,47,968-42-8366,Journalist,20574.87,,6,6,20,2,"Mortgage Loan, and Payday Loan",24.03272481,19,-1.38,7,Standard,642.59,25.91192394,33 Years and 4 Months,No,27.51493608,66.36018561,Low_spent_Large_value_payments,338.1821283,0,-0.9839,0.5382,1.9515,-0.6333,-0.9828 -0x18139,CUS_0x4052,August,44,302-67-3713,Manager,73366.36,5950.863333,8,9,27,8,"Home Equity Loan, Payday Loan, Personal Loan, Personal Loan, Not Specified, Payday Loan, Credit-Builder Loan, and Mortgage Loan",29.12697572,17,23.68,11,Bad,3697.099943,23.42563603,5 Years and 5 Months,Yes,285.3685403,262.823256,High_spent_Small_value_payments,341.6930701,0,0.4129,-0.3988,-0.24,0.1733,0.9682 -0x18145,CUS_0x7d6c,August,24,424-12-8828,Scientist,17307708,7093.165,5,5,12,2,"Mortgage Loan, and Credit-Builder Loan",,15,1.25,4,Standard,195.535808,39.44869725,28 Years and 0 Months,No,72.63396894,426.4388745,High_spent_Small_value_payments,525.6272305,0,1.5854,-0.3651,0.6278,-0.4535,0.8548 -0x18151,CUS_0x4de0,August,48,939-14-1314,Doctor,30804.39,2448.0325,2,5,3,4,"Personal Loan, Auto Loan, Personal Loan, and Payday Loan",0,4,0.54,5,_,884.38,35.28285824,,No,80.71921301,82.55918513,Low_spent_Medium_value_payments,361.5248519,0,-0.5953,-1.0377,1.3062,-0.4864,-0.4134 -0x1815d,CUS_0xad46,August,43,977-72-9713,Engineer,19148.93,1639.744167,4,7,10,3,"Student Loan, Payday Loan, and Auto Loan",9.226025659,9,2.14,8,Standard,1237.12,35.01046208,23 Years and 8 Months,No,24.95721973,,Low_spent_Medium_value_payments,346.3799879,0,-1.2663,1.2315,-0.5197,-0.8842,-2.6027 -0x18169,CUS_0x50c6,August,35,452-74-8218,Doctor,85583.02,7366.918333,4,1,2,3,"Auto Loan, Payday Loan, and Payday Loan",90,2521,9.51,2,Good,40.30256803,24.10881034,18 Years and 9 Months,No,184.6764784,115.8027992,High_spent_Large_value_payments,688.7910753,0,-0.9221,-0.753,0.8582,0.3482,-1.6947 -0x18175,CUS_0x6569,August,20,038-66-1703,Engineer,121698.48,9892.54,3,3,20,6,"Personal Loan, Auto Loan, Auto Loan, Mortgage Loan, Home Equity Loan, and Not Specified",15.6409645,13,10.67,9,Standard,1203.86,30.38334231,8 Years and 2 Months,Yes,559.5169091,116.369582,High_spent_Large_value_payments,553.3675089,0,0.8556,-1.0601,0.7893,1.6931,0.4558 -0x18181,CUS_0x76fc,August,21,252-29-1918,Mechanic,65735.46,5665.955,7,7,9.288361749,4,"Payday Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",8.339557207,9,18.55,7,_,106.96,31.98223249,33 Years and 5 Months,NM,129.2619426,606.0501497,High_spent_Medium_value_payments,501.2208687,0,0.2065,0.4581,-0.6539,-0.0458,-0.8738 -0x1818d,CUS_0x692a,August,24,870-49-7946,Doctor,20940.64,1874.053333,7,6,19,6,"Auto Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Personal Loan, and Not Specified",,538.147615,26.18,9,Bad,3067.077282,25.26458358,14 Years and 0 Months,Yes,96.08792668,79.22077917,Low_spent_Small_value_payments,302.0966275,0,0.2318,-0.3615,-1.4431,-0.3437,-0.8728 -0x18199,CUS_0x2270,August,35,075-00-2076,Scientist,17732.92,,7,8,24.06745738,8,"Not Specified, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Mortgage Loan, Student Loan, and Not Specified",48.76826289,26.13510402,2.46,9,Bad,5847.001022,25.64110933,9 Years and 4 Months,Yes,77.92988444,166.9441242,Low_spent_Small_value_payments,162.6815695,0,0.479,1.6796,-0.095,-1.1567,0.721 -0x181a5,CUS_0x7ee3,August,44,136-11-5410,Musician,150625.48,12336.12333,4,5,12,2,"Student Loan, and Credit-Builder Loan",5.322669843,6,7.36,7,Good,898.13,35.49048513,25 Years and 9 Months,No,169.0839708,213.086516,High_spent_Large_value_payments,1091.441847,0,-0.0801,0.5775,-0.8151,0.0518,-0.5982 -0x181b1,CUS_0x2fe7,August,34,847-59-5093,_______,18708.73,1373.060833,10,5,21.06745738,8,"Credit-Builder Loan, Payday Loan, Payday Loan, Payday Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",44.12111496,26.64090289,23.19,13,Bad,4602.664049,29.84791853,3 Years and 11 Months,NM,62.41071156,75.60517591,High_spent_Small_value_payments,232.5699079,0,0.7773,-0.8754,-0.4977,0.2558,0.4962 -0x181bd,CUS_0x9448,August,41,369-50-5456,Engineer,79090.74,6676.895,2,3,11.28836175,2,"Personal Loan, Credit-Builder Loan, and Mortgage Loan",14.54047243,,5.66,3,Good,753,27.47767881,27 Years and 0 Months,NM,155.4418675,10419.93746,High_spent_Large_value_payments,664.9998477,0,0.7715,-0.4089,-0.0874,-1.2475,-0.9204 -0x181c9,CUS_0xa7b5,August,41,024-67-5371,Engineer,52754.28,4205.19,9,6,27,6,"Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",39.78487722,22.07682408,8.33,11,Bad,1835.486952,32.50971251,15 Years and 6 Months,Yes,142.9151914,72.01362794,High_spent_Medium_value_payments,455.5901807,0,-0.4491,0.3772,-0.5113,-0.8002,-0.9395 -0x181d5,CUS_0xa79e,August,39,#F%$D@*&8,Musician,35917.34,,6,4,8,3,"Home Equity Loan, Not Specified, and Not Specified",,9,5.57,5,_,1213.82,24.44008968,18 Years and 2 Months,NM,70.33046053,229.3032176,Low_spent_Small_value_payments,306.2774885,0,0.4911,1.7049,1.1638,0.3057,-0.5147 -0x181e1,CUS_0xa774,August,36,948-36-8177,Doctor,11924.59,1156.715833,3,5,9,0,,14.81049147,13,18.46,3,_,347.93,25.04298962,29 Years and 10 Months,Yes,0,,Low_spent_Small_value_payments,303.2455111,0,0.0156,0.965,-0.5631,-0.4456,1.5738 -0x181ed,CUS_0x6277,August,39,177-35-4923,Lawyer,108457.74,9298.145,6,7,13,4,"Home Equity Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",,,8.42,4,Standard,694.5539926,29.81671767,15 Years and 6 Months,Yes,238.8504432,120.5143828,High_spent_Medium_value_payments,820.449674,0,-0.6648,-1.6486,-1.1242,-0.4012,-0.0144 -0x181f9,CUS_0x3b01,August,27,930-26-2816,Doctor,7709.355,845.44625,7,4,32,5,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Student Loan",,,14.92,8,Standard,1675.719121,36.25394404,,Yes,27.68500223,63.02510441,!@9#%8,263.8345184,0,-0.4978,1.2485,1.0803,0.4418,-0.7986 -0x18205,CUS_0x3d6d,August,29,911-25-7637,Doctor,84001.66,6555.609083,1,3,10.28836175,100,"Student Loan, Credit-Builder Loan, and Auto Loan",0,3,5.05,3,Good,173.9593765,38.01656616,22 Years and 5 Months,No,394.2230916,794.9437576,High_spent_Small_value_payments,437.8978771,0,-1.6366,-1.4552,-0.0671,-0.0143,-0.3391 -0x18211,CUS_0x891b,August,42,575-35-1886,Scientist,42121.92,,1364,5,6.288361749,2,"Not Specified, Personal Loan, and Auto Loan",0,1,11.15,5,Good,152.1364012,36.56346315,,No,89.251932,,Low_spent_Medium_value_payments,427.2945422,0,-1.0539,-0.5556,1.3428,-0.2778,-0.46 -0x1821d,CUS_0x99ae,August,45,207-98-9735,_______,19489.28,1388.106667,6,6,21.06745738,9,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",36.62926544,20.48087754,23.6,15,_,4349.633369,23.98088238,13 Years and 0 Months,Yes,138.3883724,127.2387601,!@9#%8,136.4632461,0,0.9888,0.3419,1.4652,-0.1256,-1.5045 -0x18229,CUS_0x7cfa,August,18,311-68-4022,Accountant,18729.06,,10,8,20.95700519,9,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, Home Equity Loan, and Payday Loan",44.09991515,26.30874476,5.99,15,_,3142.498321,28.09685197,15 Years and 10 Months,Yes,1454.724428,177.6501415,Low_spent_Small_value_payments,91.25056087,0,-0.2059,1.3061,0.9746,0.1448,-0.1902 -0x18235,CUS_0xaf5c,August,45,657-15-0070,Entrepreneur,21370.185,,0,6,1,1,Payday Loan,0,1,2.5,7,Good,897.82,33.0352345,17 Years and 3 Months,No,15.56348736,77.67816896,Low_spent_Small_value_payments,404.5432187,0,-1.5509,0.5785,0.1977,0.4593,0.824 -0x18241,CUS_0xc02d,August,58,721-63-9568,Mechanic,115724.4,9868.7,918,6,10,2,"Credit-Builder Loan, and Payday Loan",18.10771896,15,3.54,8,Good,1309.101345,41.34345276,28 Years and 0 Months,No,68278,92.70034184,High_spent_Large_value_payments,997.9428803,0,0.2642,-1.0301,-0.3423,-0.6889,-0.0304 -0x1824d,CUS_0x68cb,August,19,650-66-0190,Developer,28623.51,,8,6,9,3,"Payday Loan, Not Specified, and Auto Loan",31.44483794,23,16.13,4,_,176.43,32.44240926,6 Years and 8 Months,Yes,52.94422187,10000,High_spent_Small_value_payments,314.1291453,0,-0.6523,0.9225,0.3293,0.8489,0.2248 -0x18259,CUS_0x559e,August,29,588-53-0534,Engineer,57872.7,4669.725,1665,5,28,5,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",29.13103153,24.1251091,9.37,9,Standard,1410.558855,36.23096886,,Yes,215.4274566,214.0229506,Low_spent_Medium_value_payments,317.5220928,0,-0.2481,-1.5428,-0.342,0.5772,-0.5585 -0x18265,CUS_0x3aa7,August,26,774-43-5922,Writer,36825.11,,5,3,9,1,Mortgage Loan,21.87007965,15.43892913,4.86,4,Good,594.9565078,31.04495701,18 Years and 10 Months,No,24.31983572,47.86664045,High_spent_Medium_value_payments,477.5894405,0,-0.644,0.4976,0.9099,-0.391,-0.2243 -0x18271,CUS_0xb9ec,August,25,972-15-6195,Developer,28835.68,2373.973333,2,5,8,4,"Student Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",7.149850167,7,1.87,5,Good,1068.87,29.3187981,28 Years and 4 Months,No,76419,10000,Low_spent_Small_value_payments,337.3146216,0,-0.4834,0.1455,-1.3768,-1.5448,-0.6105 -0x1827d,CUS_0xa22b,August,22,207-76-1040,Journalist,88062.28,7411.523333,4,3,0.288361749,0,,0,0,16.35,0,Good,356.3615112,34.35295196,32 Years and 9 Months,NM,0,605.8683198,High_spent_Large_value_payments,821.270748,0,1.3317,-0.6598,0.8767,0.5876,0.2399 -0x18289,CUS_0x2314,August,23,052-13-2800,Writer,17097.565,1461.797083,3,4,10,5,"Not Specified, Student Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",13.25384477,9,7.86,6,_,948.08,26.81683553,18 Years and 4 Months,Yes,49.2796263,10000,Low_spent_Small_value_payments,219.6202769,0,-0.1173,0.5591,-1.4686,0.5203,-0.1028 -0x18295,CUS_0x47d0,August,47,900-40-7972,Journalist,61035.39,4821.2825,4,6,6,2,"Not Specified, and Home Equity Loan",14.30311506,12,2.98,8,_,1338.69,26.75502446,32 Years and 6 Months,Yes,52.823754,53.62589787,!@9#%8,615.6785981,0,-0.317,-0.2765,-1.3429,0.4431,0.641 -0x182a1,CUS_0xb932,August,25,739-85-4956,Doctor,19949.34,1378.445,8,7,21.06745738,6,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",38.46839925,23,17.83,10,Bad,3242.287215,31.0559325,5 Years and 5 Months,Yes,63.14272761,,High_spent_Small_value_payments,216.2699542,0,0.1754,1.0014,-0.5875,-2.6995,0.7417 -0x182ad,CUS_0x7148,August,32,938-65-7628,Engineer,14828.19,,5,5,17,5,"Credit-Builder Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Auto Loan",26.56721648,17,19.21,10,Standard,2646.26,26.57814956,13 Years and 9 Months,Yes,86.73101695,44.8254904,High_spent_Small_value_payments,301.7596515,0,-1.2171,0.3002,-1.0886,0.9055,-0.6678 -0x182b9,CUS_0x7bf2,August,55,216-32-5901,Architect,81583,,1,7,9.288361749,2,"Mortgage Loan, Not Specified, and Not Specified",,7,9.68,6,_,328.19,38.19122418,30 Years and 8 Months,No,139.6310346,564.2961136,!@9#%8,624.7686461,0,0.0604,0.9316,0.1091,-1.8107,-1.1047 -0x182c5,CUS_0xa134,August,30,707-42-6251,Journalist,37605.04,2868.753333,9,7,27.06745738,6,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",30.02731754,20,23.8,11,Bad,3736.590954,32.6372831,10 Years and 9 Months,Yes,140.7913101,,Low_spent_Small_value_payments,208.0907523,0,-0.528,-2.5382,0.5861,1.2064,2.0436 -0x182d1,CUS_0x6273,August,27,213-04-5662,Developer,40739.49,,511,6,9,1,Personal Loan,8.716680545,9,0.59,0,Good,664.3191655,29.86678524,18 Years and 0 Months,No,26.48100994,183.437068,High_spent_Small_value_payments,409.7347144,0,1.6868,0.9944,1.2618,-0.969,-0.6978 -0x182dd,CUS_0x9dbe,August,24,927-39-1272,_______,86255.8,7427.983333,1363,6,19,2,"Credit-Builder Loan, and Payday Loan",19.89628299,,13.53,6,Standard,875.22,28.76955626,13 Years and 9 Months,Yes,10269,179.6385099,High_spent_Large_value_payments,698.625322,0,0.3248,-1.8701,-0.1818,-1.06,-0.3666 -0x182e9,CUS_0x5707,August,36,196-02-2984,_______,15382.875,,1,7,3,3,"Payday Loan, Personal Loan, and Not Specified",10.07361655,10,3.98,8,Good,893.47,32.49765851,20 Years and 5 Months,No,23.90755423,75.07711329,Low_spent_Large_value_payments,323.3059575,0,-0.738,-0.1465,0.5089,-0.1259,-1.9207 -0x182f5,CUS_0x2bec,August,22,306-30-1135,Lawyer,34565.73,,1,1,3,2,"Payday Loan, and Payday Loan",,5,9.67,7,Good,1302.932312,28.77675738,28 Years and 6 Months,NM,33.14214135,82.01608015,High_spent_Large_value_payments,433.9124858,0,-0.156,0.757,0.527,1.9261,-1.2195 -0x18301,CUS_0x5474,August,60,616-36-4039,Engineer,57260.5,4625.708333,1,6,11,1,Home Equity Loan,0,3,6.95,4,_,845.5108162,39.56371937,,No,35.28927825,82.76475555,High_spent_Large_value_payments,593.0306864,0,0.0849,-0.1713,0.1767,1.0285,0.9898 -0x1830d,CUS_0x98f6,August,80,#F%$D@*&8,Scientist,135200.12,11437.67667,3,5,1617,0,,13.60515498,9.306402949,2.78,2,Good,949.5691279,30.78324785,21 Years and 6 Months,No,0,307.9291045,Low_spent_Large_value_payments,1105.838562,0,-0.9025,-2.2941,-0.6987,-0.3194,-0.0802 -0x18319,CUS_0x3195,August,28,238-89-8489,Engineer,177947.28,,2,7,953.2883617,0,,0,1,8.17,3,Good,1284.4,36.22061595,30 Years and 10 Months,No,0,1056.167486,Low_spent_Large_value_payments,1143.963975,0,-0.8985,0.0593,-0.3233,-0.7099,-0.2481 -0x18325,CUS_0x385a,August,43,970-60-9789,Entrepreneur,14667.26,,6,4,18.28836175,0,Personal Loan,,21,,5,Standard,80.61,37.44414088,19 Years and 6 Months,No,11.66951923,516.1444523,Low_spent_Small_value_payments,309.1506562,0,2.0362,1.0381,0.3977,-0.41,-1.8333 -0x18331,CUS_0xaf3,August,52,472-46-7482,Mechanic,33346.92,2696.002504,5,3,1,0,,5.522990093,8,3.82,0,Good,350.1370073,28.50793263,16 Years and 5 Months,No,301.907496,276.174725,Low_spent_Large_value_payments,331.9602312,0,-0.2079,-0.5682,0.8402,0.6595,0.1066 -0x1833d,CUS_0x3a9e,August,30,943-28-6353,Developer,91223.48,,7,4,286,2,"Personal Loan, and Mortgage Loan",14.84114888,12,6.45,8,_,811.71,27.61315662,31 Years and 2 Months,No,101.3886602,10000,!@9#%8,279.1652153,0,0.1661,0.465,0.0877,0.8358,0.7264 -0x18349,CUS_0x7d57,August,20,332-96-1312,Entrepreneur,122434.23,10004.8525,3,2,4.288361749,2,"Home Equity Loan, Payday Loan, and Credit-Builder Loan",14.8692361,,7.33,3,Good,279.7959938,27.38901959,16 Years and 5 Months,No,297.0492441,562.1436705,High_spent_Large_value_payments,822.5595158,0,-0.1606,-1.4871,0.108,-1.2568,-0.835 -0x18355,CUS_0xaf99,August,20,923-19-2422,Writer,44143.08,,6,1103,19,1,Payday Loan,29.3840094,20.0086008,15.66,7,_,624.5963516,33.4250642,17 Years and 2 Months,Yes,29.10560449,192.5714968,Low_spent_Medium_value_payments,449.5818987,0,2.2558,-2.1022,-0.8702,1.538,0.0993 -0x18361,CUS_0x4767,August,39,746-70-7097,Mechanic,33732,2730,8,3,19,2,"Not Specified, and Payday Loan",,16,14.07,8,Standard,398.04,27.15243163,31 Years and 11 Months,NM,49.38931505,83.10281682,!@9#%8,390.5078681,0,0.9543,-0.8871,1.4682,1.0239,0.8084 -0x1836d,CUS_0x3415,August,25,691-10-7068,Manager,7472.54,917.7116667,4,6,27.06745738,2,"Auto Loan, and Student Loan",23.45280166,16,10.5,8,_,2747.580954,41.68832907,20 Years and 5 Months,Yes,36812,,Low_spent_Small_value_payments,244.7489535,0,1.0154,-2.1218,0.0685,-1.6847,1.0614 -0x18379,CUS_0x9352,August,48,606-00-7941,Lawyer,60865.05,5221.0875,5,7,3,3,"Not Specified, Student Loan, and Mortgage Loan",10.66256359,8,3.23,0,Standard,1188.49,33.80584533,25 Years and 2 Months,No,140.2099338,,High_spent_Medium_value_payments,546.5322874,0,0.6495,0.2186,1.3834,1.3323,-0.1971 -0x18385,CUS_0x60ca,August,27,158-17-5520,Mechanic,50794.18,4089.848333,3,5,8,0,,,10,1.94,3,Good,146.9387752,40.82106811,23 Years and 8 Months,No,0,,High_spent_Medium_value_payments,520.3740565,0,-0.7088,-0.4319,-0.5698,-0.7714,-1.249 -0x18391,CUS_0xee6,August,28,743-66-3711,Lawyer,16873.115,,7,3,11,1,Payday Loan,24.09446626,20,8.49,3,_,1143.31,35.04254011,32 Years and 2 Months,No,11.22590147,156.1895065,Low_spent_Small_value_payments,280.7938837,0,-0.9326,2.1031,-0.696,-0.0664,2.8699 -0x1839d,CUS_0x6d43,August,25,221-07-3129,Developer,18538.55,1379.879167,7,8,33,7,"Student Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",47.60652717,26.12121696,1.04,15,Bad,4368.50822,31.75522935,10 Years and 11 Months,Yes,73.27023595,40.68471884,High_spent_Small_value_payments,284.0329619,0,0.7072,-0.9106,-0.3183,-0.8451,-0.6695 -0x183a9,CUS_0x32a9,August,27,708-76-8725,Manager,37679.19,,1,2,12,1,Not Specified,8.368590767,10,1.51,1,_,715.3038534,39.96058564,22 Years and 3 Months,NM,18.55221916,49.17358031,High_spent_Large_value_payments,514.6656725,0,1.6862,-0.0845,-0.3675,-0.8364,-0.3719 -0x183b5,CUS_0x1297,August,46,#F%$D@*&8,Manager,57738.06,4881.505,10,8,30.88954781,9,"Payday Loan, Personal Loan, Payday Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Payday Loan",,28.66866773,14.27,11,Bad,4473.444965,25.74214266,13 Years and 8 Months,Yes,1619.76758,53.82117765,High_spent_Medium_value_payments,370.2316613,0,0.1951,-1.2373,-0.0292,0.9517,-0.4589 -0x183c1,CUS_0x53fa,August,34,894-27-7899,Lawyer,59714.2,5136.183333,4,5,4.288361749,0,Home Equity Loan,,23,12.45,6,Standard,425.17,31.09276094,18 Years and 0 Months,Yes,27.77999485,590.4977147,High_spent_Medium_value_payments,565.2780848,0,-0.8239,0.8379,-0.6867,1.3304,0.1132 -0x183cd,CUS_0x6f0,August,26,614-75-6938,Doctor,19192.14,,10,51,22.95700519,6,"Personal Loan, Student Loan, Student Loan, Student Loan, Student Loan, and Not Specified",,17,23.69,11,Bad,4431.180954,42.31414685,12 Years and 4 Months,Yes,1388.82195,36.9458913,High_spent_Large_value_payments,258.7162891,0,1.3531,-0.0925,0.5763,-0.2091,-0.8861 -0x183d9,CUS_0x945f,August,24,206-49-5885,Writer,34996.86,2886.405,7,7,9.288361749,4,"Home Equity Loan, Home Equity Loan, Not Specified, and Student Loan",7.30661103,8,7.94,7,Standard,143.42,33.91951152,8 Years and 2 Months,Yes,112.4069612,10419.93746,High_spent_Small_value_payments,372.2128239,0,0.8779,0.1214,-0.6882,-0.1375,0.8418 -0x183e5,CUS_0x16a6,August,26,#F%$D@*&8,_______,20833.08,1607.09,4,5,17,5,"Mortgage Loan, Personal Loan, Mortgage Loan, Not Specified, and Student Loan",10.00643621,8,18.73,8,_,1231.29,33.92197133,11 Years and 8 Months,Yes,67.48557378,26.49535852,High_spent_Large_value_payments,306.7280677,0,-1.3482,1.2515,-0.9293,-0.7147,-0.8 -0x183f1,CUS_0x317e,August,23,527-06-4214,Mechanic,62008.35,,10,7,21,3,"Credit-Builder Loan, Credit-Builder Loan, and Not Specified",,18.88166765,11.31,12,Standard,2582.346578,38.83137415,9 Years and 11 Months,Yes,127.3921471,,!@9#%8,327.049833,0,-0.3503,1.0079,0.6197,-0.2075,1.3053 -0x183fd,CUS_0xb46b,August,35,686-19-5711,Entrepreneur,17831.05,,6,5,16,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",,21.74527824,9.4,6,Standard,1929.744476,30.09461303,7 Years and 2 Months,Yes,42.7930036,113.2848025,Low_spent_Small_value_payments,272.2142772,0,0.9503,-0.0453,0.0986,0.1432,0.96 -0x18409,CUS_0xc30f,August,45,152-48-2575,Architect,77565.57,6663.7975,3,5,7.288361749,2,"Credit-Builder Loan, Payday Loan, and Not Specified",14.41220122,,11.8,1,Good,439.7503265,31.19451969,33 Years and 2 Months,No,118.6705985,499.7192435,!@9#%8,716.5504209,0,-0.5521,-2.6307,-1.4385,-1.1948,0.8079 -0x18415,CUS_0x24e7,August,41,479-09-3777,Scientist,29346.17,2368.514167,3,3,1,1,Payday Loan,1.049488525,1.19681451,,,Good,819.3102023,31.78811952,32 Years and 0 Months,NM,18.99723826,24.70254687,High_spent_Large_value_payments,433.1516315,0,-1.2588,-0.131,-1.4196,0.5498,0.548 -0x18421,CUS_0x2ad5,August,23,481-12-3959,Teacher,136726.68,11299.89,0,7,2298.288362,2,"Debt Consolidation Loan, and Not Specified",,12,0.35,6,Good,1299.02,32.08296961,29 Years and 0 Months,NM,174.292375,817.8447984,High_spent_Medium_value_payments,807.7892876,0,1.6515,0.6581,1.6529,-1.721,-0.424 -0x1842d,CUS_0x5fc3,August,31,680-89-3665,Journalist,21884,,8,6,13,4,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",19.23381054,,7.39,0,Standard,372.4111898,38.10466867,33 Years and 3 Months,Yes,54.75375841,38.23583855,High_spent_Medium_value_payments,336.8776327,0,0.3056,-0.5664,1.0895,-0.4936,-1.2866 -0x18439,CUS_0x204a,August,18,206-58-3439,Writer,65410.68,5282.89,9,10,33,6,"Student Loan, Student Loan, Debt Consolidation Loan, Not Specified, Auto Loan, and Auto Loan",26.45374584,19,27.3,8,_,2996.6,34.09697276,6 Years and 5 Months,Yes,299.01112,10000,High_spent_Medium_value_payments,282.8076726,0,0.7178,-1.7782,-1.4263,1.0808,0.8262 -0x18445,CUS_0xabe7,August,26,277-94-8379,Media_Manager,19695.09,1803.2575,8,6,19,2,"Auto Loan, and Not Specified",9.637839379,8,8.42,6,Standard,1450.6,39.52094293,14 Years and 9 Months,NM,23.04177846,50.90953938,High_spent_Medium_value_payments,356.3744322,0,1.7909,-1.2732,1.1059,-0.3975,-0.0723 -0x18451,CUS_0x35c3,August,34,278-60-7972,Musician,36379.24,2838.603333,8,8,15,3,"Home Equity Loan, Personal Loan, and Auto Loan",9.968279953,10.2687021,18.65,9,Standard,2343.95458,25.23424507,20 Years and 0 Months,Yes,81.03830215,,Low_spent_Small_value_payments,257.9663615,0,-0.8034,0.5218,1.1908,0.7034,0.777 -0x1845d,CUS_0xbcbe,August,47,152-41-0084,Lawyer,17228.775,1460.73125,4,3,20,100,,30.20250434,21,16.53,4,Standard,862.64,34.10714251,,Yes,0,,Low_spent_Small_value_payments,281.9864603,0,-0.2586,1.4551,-1.9951,-0.6424,0.3535 -0x18469,CUS_0x3033,August,61,159-13-7415,Teacher,97635.87,6907.982009,3,4,12,3,"Student Loan, Personal Loan, and Auto Loan",12.33850535,11,7.17,4,Good,1139.65934,35.30276377,25 Years and 11 Months,No,1203.206142,921.4031251,Low_spent_Small_value_payments,67.578264,0,-0.9017,-0.5027,0.6105,-0.0152,0.821 -0x18475,CUS_0x7cec,August,20,341-58-6733,Journalist,23265.78,,7,4,16,2,"Home Equity Loan, and Personal Loan",11.59400063,11,11.24,0,_,1092.14,39.41002925,18 Years and 4 Months,Yes,28.83854075,143.6962214,Low_spent_Small_value_payments,327.8467379,0,1.5444,0.2719,0.6475,2.0448,1.2062 -0x18481,CUS_0x727f,August,32,207-69-0724,Teacher,82183.34,,4,1,11,4,"Payday Loan, Not Specified, Credit-Builder Loan, and Personal Loan",6.19442915,7,0.05,5,Good,1421.54,35.33445799,19 Years and 11 Months,No,756.8837434,106.1800667,High_spent_Medium_value_payments,568.8438298,0,1.5889,-0.2284,0.5751,0.35,0.0521 -0x1848d,CUS_0xa06b,August,18,074-05-5968,Architect,14146.59,,3,5,2997,1,Personal Loan,0.953731767,4,8.74,5,Good,1184.974922,33.79316077,32 Years and 11 Months,No,7.904920537,41.61764278,Low_spent_Medium_value_payments,353.7138917,0,-0.397,1.2785,-0.0335,-0.5445,0.3464 -0x18499,CUS_0x5111,August,35,373-26-0824,Writer,10525.355,,4,6,3,0,,8.385215984,8.464515736,5.99,0,_,666.4219204,37.56983291,30 Years and 6 Months,No,0,32.39595342,Low_spent_Large_value_payments,302.1153382,0,1.0734,-0.7997,-0.7563,0.1368,-0.2064 -0x184a5,CUS_0x18e8,August,32,961-57-1916,Lawyer,19633.03,1760.085833,6,8,28.88954781,7,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",28.01953995,19,20.72,11,_,4381.85,32.31899021,5 Years and 8 Months,Yes,1398.251303,111.9242219,High_spent_Small_value_payments,231.5029769,0,-0.4374,-0.1519,-0.8803,-0.2765,-0.035 -0x184b1,CUS_0x48c6,August,48,604-84-9912,Scientist,44895.61,3697.300833,1,6,6,4,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",90,3108.194007,7.37,1,Good,817.3738752,24.98314707,24 Years and 6 Months,No,83.71856411,247.7312372,Low_spent_Medium_value_payments,318.280282,0,0.2256,0.3525,0.1691,0.8395,-0.0273 -0x184bd,CUS_0xc2a1,August,38,940-39-9470,Engineer,20175.44,1782.286667,10,7,24.06745738,3,"Personal Loan, Payday Loan, and Student Loan",34.67940688,21.55107785,16.18,6,Bad,2067.632002,35.26450045,19 Years and 3 Months,Yes,30.59452087,26.06557723,High_spent_Medium_value_payments,344.8482806,0,0.8822,0.2007,1.0134,0.4186,-0.6616 -0x184c9,CUS_0x624c,August,27,591-74-3545,Engineer,15125.64,,3,4,28,2,"Credit-Builder Loan, and Home Equity Loan",29.43304628,23.59961776,17.79,9,Standard,2621.767138,34.30065487,13 Years and 2 Months,Yes,24.44645492,,High_spent_Small_value_payments,332.75557,0,0.8362,2.3765,1.2825,-0.9659,-0.1687 -0x184d5,CUS_0x4b93,August,20,493-05-9842,Lawyer,112924.72,9161.393333,6,5,20,7,"Personal Loan, Payday Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,17,17.6,9,Standard,1307.64,25.60901661,8 Years and 2 Months,Yes,541.8938211,223.6811419,High_spent_Small_value_payments,410.5643703,0,0.2408,0.2246,0.8533,-0.8916,-0.0149 -0x184e1,CUS_0x7a73,August,45,090-60-4528,_______,17075.22,,7,6,23,5,"Credit-Builder Loan, Not Specified, Mortgage Loan, Payday Loan, and Personal Loan",,21.62223463,22.67,11,Bad,3919.402614,31.93514576,11 Years and 9 Months,NM,57.60755549,128.7013655,!@9#%8,257.584579,0,-0.6511,0.9263,-0.162,-0.9526,-0.6792 -0x184ed,CUS_0x633b,August,40,158-88-3834,Entrepreneur,98136.72,,2,1,5,4,"Debt Consolidation Loan, Credit-Builder Loan, Student Loan, and Personal Loan",0,3,5.37,9,_,1063.122519,32.26850984,22 Years and 3 Months,No,200.8820833,492.8491699,High_spent_Small_value_payments,455.7405564,0,-0.0259,0.9226,1.5005,-0.1609,-0.2792 -0x184f9,CUS_0x5c2f,August,38,091-78-1652,Architect,24879.05,2085.254167,3,4,11,3,"Personal Loan, Personal Loan, and Credit-Builder Loan",27.46807095,22.29027121,16.73,6,Standard,547.9357139,27.75198796,9 Years and 6 Months,Yes,49.10550756,152.545593,Low_spent_Small_value_payments,296.8743161,0,-0.3115,-0.2435,-1.4953,1.9485,-0.365 -0x18505,CUS_0x5f21,August,42,879-61-5577,Scientist,95685.21,7864.7675,3,4,9,0,,13.84688414,12.05728684,2.28,8,Good,539.0106299,37.17423615,24 Years and 5 Months,No,0,488.0035021,High_spent_Small_value_payments,558.4732479,0,-1.8945,-2.0669,2.1953,2.3106,-0.5916 -0x18511,CUS_0x7127,August,44,#F%$D@*&8,Writer,89937.72,,2,6,9.288361749,2,"Home Equity Loan, and Debt Consolidation Loan",0.988799084,4,4.72,3,Good,1071.052566,28.75271139,25 Years and 8 Months,No,572.5463475,675.9885575,Low_spent_Medium_value_payments,669.7569096,0,0.7918,1.1969,-0.0112,-1.8167,0.1156 -0x1851d,CUS_0x8525,August,20,931-22-4417,Manager,53451.48,4397.29,8,10,35.95700519,7,"Student Loan, Auto Loan, Payday Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",23.1730727,,6.32,10,Bad,5276.196925,34.3842527,,Yes,1549.098706,371.6592716,Low_spent_Small_value_payments,87.92065285,0,1.3999,1.3576,0.4267,-0.1394,0.2318 -0x18529,CUS_0x33ea,August,20,729-59-5840,Accountant,9566.58,,5,7,14,5,"Home Equity Loan, Mortgage Loan, Payday Loan, Auto Loan, and Payday Loan",15.88399147,14,12.47,11,Standard,1233.05,30.11485276,15 Years and 5 Months,NM,39.51316415,,Low_spent_Large_value_payments,253.279059,0,1.4764,1.3539,-0.3632,1.0341,-0.7621 -0x18535,CUS_0x1b71,August,29,899-16-9688,Architect,16726.62,1204.885,6,10,27.95700519,7,"Auto Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",36.69957606,22,20.38,11,Bad,3105.530954,33.61922887,4 Years and 8 Months,Yes,1396.849465,62.05337179,High_spent_Small_value_payments,200.5352942,0,0.3844,-0.4247,-1.0598,0.5477,0.0537 -0x18541,CUS_0xa610,August,38,548-77-4930,Accountant,62616.99,,7,5,21.06745738,7,"Mortgage Loan, Mortgage Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",24.72563289,14,28.98,7,Bad,4643.660954,33.51011776,,Yes,322.5482114,105.0587327,High_spent_Medium_value_payments,322.781018,0,-0.4909,-0.6656,-1.9764,-0.2393,0.2678 -0x1854d,CUS_0x69f6,August,25,691-36-3623,Developer,7890.515,932.5429167,8,5,28,9,"Not Specified, Credit-Builder Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Student Loan, Payday Loan, and Personal Loan",,22.63867156,8.14,12,Bad,2677.454591,29.77973105,15 Years and 3 Months,Yes,47247,10.31583837,High_spent_Medium_value_payments,302.9225735,0,-0.1937,-0.0816,-0.5502,1.3807,0.2282 -0x18559,CUS_0x648b,August,37,476-22-9217,Lawyer,20946.94,,8,7,34,4,"Mortgage Loan, Payday Loan, Student Loan, and Not Specified",14.8106746,10.13513486,16.52,10,_,2468.741157,30.61836614,16 Years and 11 Months,NM,46.6304954,82.68364547,!@9#%8,344.4436925,0,-0.8221,-0.1983,-0.7806,-0.4284,0.0206 -0x18565,CUS_0x43de,August,26,539-56-3950,Scientist,67218.98,5024.91415,3,5,9.288361749,100,,14.73520595,13,1.88,5,Good,609.0159357,38.59804711,31 Years and 3 Months,No,713.6675164,968.6608314,Low_spent_Medium_value_payments,376.7993706,0,0.2483,-1.2098,-1.2122,-0.9594,-0.7922 -0x18571,CUS_0x786d,August,20,675-63-0499,Engineer,132284.67,10726.7225,4,3,2.288361749,2,"Personal Loan, and Personal Loan",16.24872394,,7.37,7,_,1409.97,28.68414182,25 Years and 3 Months,No,173.6733423,1453.164832,Low_spent_Small_value_payments,155.7715366,0,-0.1017,1.6278,0.3298,-0.0247,0.3095 -0x1857d,CUS_0x9126,August,19,580-64-9646,Entrepreneur,19375.76,,4,3,7.067457376,1,Not Specified,,19,7.81,4,_,1277.130954,27.50162818,27 Years and 8 Months,Yes,10.51161882,128.7939232,Low_spent_Small_value_payments,287.3388367,0,-0.5012,-0.2414,0.8056,0.4847,-0.5938 -0x18589,CUS_0x9c55,August,38,877-77-1295,Musician,8137.58,,6,1276,17,3,"Personal Loan, Mortgage Loan, and Home Equity Loan",,13,7.7,6,Standard,998.45,35.61035997,6 Years and 10 Months,Yes,14.30291411,68.26836013,Low_spent_Small_value_payments,262.8418924,0,0.1315,-0.3459,0.2512,-0.7707,0.3735 -0x18595,CUS_0xbcf,August,44,420-94-4649,Lawyer,179239.6,15204.63333,5,4,0.288361749,2,"Personal Loan, and Personal Loan",,8,4.67,4,Good,1246.12,34.55880658,,No,208.7973776,638.1084119,High_spent_Large_value_payments,1333.495005,0,-0.1761,-0.0683,-0.3844,-2.0925,0.8311 -0x185a1,CUS_0x610a,August,52,572-99-2496,Mechanic,22171.25,1638.604167,4,5,17,100,"Payday Loan, Auto Loan, and Home Equity Loan",24.71430789,20,15.6,5,Standard,1195.92,25.22240737,16 Years and 9 Months,Yes,53.61074078,,High_spent_Medium_value_payments,319.2321568,0,0.9383,-0.0758,0.1457,0.1577,0.2755 -0x185ad,CUS_0xbd2c,August,44,064-72-7992,Scientist,29647.92,,6,4,19,4,"Home Equity Loan, Personal Loan, Auto Loan, and Auto Loan",8.903776873,10,16.9,5,Standard,516.42,35.95065939,18 Years and 0 Months,NM,82.41882696,126.7395076,Low_spent_Small_value_payments,313.8076655,0,0.1914,0.0974,0.6043,0.8881,0.9443 -0x185b9,CUS_0x831c,August,36,585-07-1420,Engineer,30296,,10,8,22.88954781,6,"Student Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Personal Loan",,24.31596918,4.14,10,Bad,3098.120204,34.55612295,3 Years and 6 Months,Yes,1448.057764,,Low_spent_Small_value_payments,189.6757691,0,-0.9162,1.5957,0.6858,0.3393,1.4189 -0x185c5,CUS_0xb3a,August,20,769-19-8784,Mechanic,41391.06,,7,4,10,0,,17.06943277,9.609513225,10.4,8,Standard,833.5065689,25.01698454,11 Years and 8 Months,Yes,0,102.9785388,High_spent_Medium_value_payments,482.8469612,0,2.0018,-1.0167,-0.354,-1.5892,0.5325 -0x185d1,CUS_0xa68e,August,18,089-19-7596,_______,26065.91,,7,5,9,2,"Home Equity Loan, and Credit-Builder Loan",15.78775724,16,14.87,6,Standard,388.24,24.83284517,8 Years and 6 Months,Yes,22.152922,,Low_spent_Small_value_payments,351.640177,0,1.87,-0.4541,-0.3153,1.4605,-0.963 -0x185dd,CUS_0x55fd,August,35,905-14-5788,Scientist,8291.845,946.9870833,8,9,29,5,"Personal Loan, Auto Loan, Student Loan, Payday Loan, and Student Loan",35.74654833,26,23.81,15,Bad,4662.8,29.35028102,4 Years and 9 Months,Yes,28.41658569,12.79079225,High_spent_Large_value_payments,293.4913304,0,-0.7264,-0.5224,-0.0797,-1.34,-1.7185 -0x185e9,CUS_0x1271,August,46,842-43-2499,Architect,99337.28,,5,5,17,6,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",,,13.01,5,Standard,255.82,36.04675771,16 Years and 6 Months,Yes,338.6524239,312.2186551,High_spent_Medium_value_payments,455.4395877,0,-0.4485,-0.6536,0.0638,2.1798,-0.7368 -0x185f5,CUS_0x5981,August,26,816-61-3047,Doctor,10197.525,,6,6,20,100,"Mortgage Loan, Payday Loan, Home Equity Loan, Personal Loan, Personal Loan, and Mortgage Loan",,19.30446996,21.76,9,_,2918.517353,31.71769049,,Yes,31.71253295,43.643754,Low_spent_Small_value_payments,316.2230881,0,-2.13,0.059,-1.0636,-0.4512,-1.371 -0x18601,CUS_0x913e,August,53,859-57-0091,Scientist,109901.58,9423.465,2,4,8.288361749,2,"Debt Consolidation Loan, and Personal Loan",4.081078977,6,1.35,0,Good,820.550322,30.50305635,23 Years and 6 Months,No,132.4904118,515.0081716,High_spent_Large_value_payments,966.2307394,0,0.3743,-1.6873,1.2822,0.2338,-0.4387 -0x1860d,CUS_0x2a08,August,43,#F%$D@*&8,Doctor,20039.58,,6,6,17,6,"Mortgage Loan, Student Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Mortgage Loan",28.754824,20.81773684,2.28,6,Bad,2746.983574,32.90948189,20 Years and 6 Months,Yes,64.03853363,24.95282102,High_spent_Large_value_payments,337.3051454,0,0.3873,0.6881,0.0626,-0.9975,-0.3466 -0x18619,CUS_0x112d,August,26,774-29-5843,Accountant,14728.21,,10,9,32.95700519,100,"Payday Loan, Personal Loan, Not Specified, Not Specified, and Personal Loan",28.82100107,12.35647288,9.27,7,_,2882.353931,32.98932142,16 Years and 11 Months,Yes,1365.069095,,Low_spent_Small_value_payments,266.6634954,0,-0.1285,-0.4323,-0.1317,-0.6678,-1.3738 -0x18625,CUS_0x6bbd,August,27,162-72-0685,Developer,24390.29,,3,6,3,3,"Not Specified, Payday Loan, and Student Loan",22.37837861,16,4.7,7,Good,523.63,33.55843808,33 Years and 0 Months,No,37.76089593,25.18564524,!@9#%8,363.3058755,0,-0.5052,1.4974,0.6439,-0.0522,-0.0039 -0x18631,CUS_0xc72e,August,38,094-54-0952,Lawyer,32125.54,,7,192,23,3,"Mortgage Loan, Auto Loan, and Auto Loan",21.49855592,16.54862842,8.07,10,_,2781.184718,36.71263697,6 Years and 5 Months,Yes,59.33092218,34.88359293,High_spent_Large_value_payments,401.6983182,0,-0.901,0.1389,0.0562,-0.8766,1.3221 -0x1863d,CUS_0x9860,August,43,633-33-7100,Developer,39135,3036.25,6,10,20.88954781,6,"Payday Loan, Student Loan, Not Specified, Auto Loan, Payday Loan, and Auto Loan",,27.69230337,3.34,14,Bad,1397.606809,26.94365228,7 Years and 9 Months,Yes,1469.025425,,High_spent_Medium_value_payments,295.6843182,0,-1.7148,-0.0615,1.4742,2.0145,-0.4402 -0x18649,CUS_0x2ecc,August,24,219-77-3608,Musician,73020.54,6183.045,2,5,6,3,"Auto Loan, Not Specified, and Personal Loan",,3.63830854,2.98,2,Good,1522.745579,36.98494378,27 Years and 5 Months,No,172.8941861,250.8681014,High_spent_Small_value_payments,454.5422125,0,0.8753,0.0795,-0.4443,0.068,0.8519 -0x18655,CUS_0x62c8,August,34,756-60-6274,Journalist,16310.21,,6,6,30.06745738,7,"Not Specified, Student Loan, Personal Loan, Not Specified, Home Equity Loan, Auto Loan, and Not Specified",23.24215872,12.91355246,19.08,1545,Standard,1720.208798,37.58940774,15 Years and 9 Months,Yes,85.5140287,122.9864792,Low_spent_Small_value_payments,211.2976208,0,0.6176,0.9454,-1.454,0.6784,-0.2854 -0x18661,CUS_0xc4a1,August,35,#F%$D@*&8,Teacher,16227.03,,6,8,21,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Payday Loan",19.47284427,13.95258716,19.2,14,Standard,1700.526575,36.03425091,15 Years and 6 Months,Yes,49.99764238,48.15549664,Low_spent_Large_value_payments,336.472111,0,-0.4864,0.5473,-0.3706,1.2645,-1.6245 -0x1866d,CUS_0x4b86,August,22,942-96-5677,Manager,17565.58,,10,8,32.88954781,8,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Payday Loan",24.45735116,18.72700925,19.67,12,Bad,3309.372798,33.55194627,6 Years and 10 Months,Yes,1424.120904,193.9513759,Low_spent_Small_value_payments,136.4774725,0,1.0818,0.5525,0.0433,-2.408,0.577 -0x18679,CUS_0x7494,August,25,260-03-9307,Entrepreneur,58609.64,4763.136667,1,2,2.288361749,2,"Personal Loan, Auto Loan, and Auto Loan",14.55189062,,2.02,3,Good,683.3752988,36.48845198,30 Years and 11 Months,No,140.9765753,630.0735106,High_spent_Small_value_payments,413.9443622,0,0.5649,2.3371,1.3869,1.7906,-1.1743 -0x18685,CUS_0x87b8,August,31,468-89-4698,Scientist,23054.08,,3,3,16,0,,,8,19.85,1,Standard,573.89,25.53356356,26 Years and 4 Months,Yes,0,137.6362123,!@9#%8,347.581121,0,-0.2029,-0.9111,1.8333,-0.1335,-1.1741 -0x18691,CUS_0x5002,August,23,913-93-5303,Developer,63402.2,,5,3,18,4,"Mortgage Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",19.33650708,,14.05,5,Standard,2359.156524,38.90836813,19 Years and 6 Months,Yes,152.1059057,302.2807664,High_spent_Small_value_payments,353.1649946,0,0.6049,0.1026,-1.2977,-0.8965,0.141 -0x1869d,CUS_0x343d,August,42,045-12-6597,Architect,16021.14,,8,6,16,4,"Payday Loan, Auto Loan, Home Equity Loan, and Personal Loan",10.11959952,8,7.85,10,Standard,2136.31,28.71812335,16 Years and 9 Months,Yes,30.63140525,,Low_spent_Small_value_payments,330.0906838,0,1.8083,-1.4546,1.425,1.7519,0.6759 -0x186a9,CUS_0x76ad,August,80,964-38-3338,Mechanic,29704.64,,4,7,13,5,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",21.71276902,17,7.1,7,Standard,1713.04,25.26424573,14 Years and 9 Months,Yes,68.74078854,33.62931649,High_spent_Medium_value_payments,384.1685616,0,-0.0414,0.7694,-0.7471,0.9233,0.7334 -0x186b5,CUS_0x9fab,August,41,#F%$D@*&8,Architect,27738.99,,5,7,20,0,,,9,0.87,0,Standard,425.01,26.24118249,,NM,0,87.36443755,High_spent_Medium_value_payments,374.6938124,0,1.9695,0.1844,-0.5919,-0.3383,-0.5211 -0x186c1,CUS_0x79c5,August,18,#F%$D@*&8,Journalist,132727.92,10954.66,4,7,4.288361749,100,Home Equity Loan,19.47470539,17,17.66,6,Standard,1286.07,32.24475642,15 Years and 10 Months,Yes,79.79339629,863.4026266,High_spent_Medium_value_payments,822.2074381,0,0.3231,-2.8989,0.3214,-0.8913,0.6102 -0x186cd,CUS_0x2c94,August,18,169-58-1270,_______,31816.07,2442.339167,4,5,17.28836175,4,"Mortgage Loan, Auto Loan, Home Equity Loan, and Student Loan",15.63380222,14,13.8,6,Standard,4.82,29.98871391,31 Years and 10 Months,Yes,105.4263916,478.2247721,High_spent_Large_value_payments,320.520214,0,0.0202,-1.1733,1.9568,-1.5088,-0.2514 -0x186d9,CUS_0xb8af,August,44,641-83-1438,Journalist,59893.26,,6,3,9,1,Auto Loan,,19,3.89,2,Good,1330.244943,31.95101883,21 Years and 8 Months,NM,40.78819746,167.3141543,High_spent_Small_value_payments,573.8101549,0,0.6457,-1.2187,-0.6076,-0.9615,0.3104 -0x186e5,CUS_0xa99a,August,55,670-51-6382,Teacher,177846.68,14855.55667,4,6,11.28836175,0,,0,2,8.57,5,Good,166.75,34.13448914,26 Years and 4 Months,No,0,684.5759415,High_spent_Large_value_payments,1460.917186,0,-0.8196,1.289,0.4676,1.1569,1.0381 -0x186f1,CUS_0xae08,August,23,973-35-3846,Accountant,63523.48,,7,7,19,5,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",,20.05527102,8.39,10,Standard,2124.353024,37.0383178,16 Years and 0 Months,NM,237.0730194,83.53382655,!@9#%8,463.2554874,0,-0.8945,-0.3973,-0.1264,0.4109,-0.6791 -0x186fd,CUS_0x4587,August,52,734-40-0202,Accountant,56751.72,4572.31,7,6,19,4,"Auto Loan, Student Loan, Mortgage Loan, and Student Loan",29.90717256,21.33002429,4,1,Standard,873.4868971,27.43213152,31 Years and 10 Months,No,121.4457918,281.9354516,Low_spent_Large_value_payments,323.8497566,0,-0.7933,-1.1128,1.0328,-0.7449,-1.7471 -0x18709,CUS_0x320f,August,28,198-54-4740,Teacher,132324.18,11027.015,5,5,980.2883617,4,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",10.70288672,11,11.79,8,Good,1284.448414,27.47506297,19 Years and 5 Months,No,378.7296617,1068.321684,Low_spent_Large_value_payments,431.3266149,0,-0.386,-0.2468,-2.0046,0.9486,-0.4663 -0x18715,CUS_0x5bf8,August,54,216-78-7750,Doctor,66882.74,5656.561667,4,3,3,3,"Payday Loan, Payday Loan, and Personal Loan",2.67468297,5,5.69,7,Good,1472.91,32.46657944,17 Years and 10 Months,No,108.432262,,Low_spent_Medium_value_payments,217.064607,0,-1.2108,0.0534,-0.2808,-1.1836,0.2517 -0x18721,CUS_0x5a92,August,42,486-47-1751,Doctor,124534.38,10621.865,1,1,8.288361749,2,"Mortgage Loan, Auto Loan, and Home Equity Loan",,14,9.55,4,_,704.0450308,37.66639752,18 Years and 0 Months,NM,174.338527,1094.867942,High_spent_Small_value_payments,546.6809237,0,-1.4571,-0.9054,-0.9097,-0.4625,-0.2367 -0x1872d,CUS_0x19c9,August,31,534-54-1028,Entrepreneur,14542.3,,6,9,22,6,"Auto Loan, Not Specified, Auto Loan, Not Specified, Payday Loan, and Student Loan",27.55995761,18,15.22,8,Bad,4479,34.83054103,1 Years and 2 Months,Yes,63.11198958,131.4092562,Low_spent_Medium_value_payments,233.5645875,0,-1.2042,-0.4983,0.2203,0.1422,-1.7723 -0x18739,CUS_0x22b7,August,41,366-16-4398,Doctor,24446.05,,4,7,20,1,Not Specified,,10,4.64,9,Standard,760.95,27.32804087,19 Years and 6 Months,Yes,142.244785,26.00878826,High_spent_Large_value_payments,379.8097811,0,-2.2137,0.2907,-1.4046,-1.3262,0.7502 -0x18745,CUS_0x1e4d,August,19,669-94-5422,Entrepreneur,146729.64,12495.47,3,4,16.28836175,2,"Personal Loan, Credit-Builder Loan, and Auto Loan",20.3768208,18,6.91,3,Standard,90.89,25.64600443,17 Years and 2 Months,No,343.1160893,1624.343368,Low_spent_Medium_value_payments,,0,0.2752,0.0477,1.0217,-0.8376,-1.5624 -0x18751,CUS_0xb7fa,August,34,936-71-6162,Entrepreneur,30386.2,2650.183333,7,8,22.06745738,9,"Credit-Builder Loan, Payday Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",,22,17.53,,Bad,5126.240954,37.54246319,8 Years and 4 Months,Yes,193.7258522,65.82026373,Low_spent_Large_value_payments,248.7519295,0,-0.0131,0.4331,-1.1785,-1.2177,-0.1281 -0x1875d,CUS_0xa64d,August,42,190-66-0409,Doctor,30117.42,2312.785,7,7,30.06745738,3,"Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",25.91304577,9.529522867,10.69,11,Standard,1942.793876,34.62138911,6 Years and 0 Months,Yes,51.14064749,10000,High_spent_Medium_value_payments,347.6258889,0,0.0951,-1.3445,0.6633,0.3747,0.2611 -0x18769,CUS_0x3a06,August,32,079-88-9608,Journalist,30560.73,,5,4,3,4,"Credit-Builder Loan, Student Loan, Personal Loan, and Personal Loan",,,3.64,2,Good,1219.791712,35.1918129,25 Years and 2 Months,No,73.51315401,275.7479926,Low_spent_Large_value_payments,217.8989136,0,-0.5741,-0.8884,0.2114,-0.4365,1.0951 -0x18775,CUS_0x353a,August,38,018-27-6780,Teacher,15785.04,1369.42,8,10,19.06745738,2,"Payday Loan, and Mortgage Loan",,18.1832904,4.44,,Bad,1815.131054,27.27985538,7 Years and 11 Months,NM,17.37924048,49.82856753,!@9#%8,293.013904,0,0.9992,0.3731,-0.9296,0.8562,-1.4518 -0x18781,CUS_0xab9c,August,39,229-52-6885,_______,132370.2,11263.85,3,4,3.288361749,2,"Auto Loan, Auto Loan, and Mortgage Loan",4.65483667,6,6.34,7,Good,924.8586254,37.57103368,,No,209.7894971,848.9732683,High_spent_Medium_value_payments,777.4548287,0,-0.7764,-0.5791,0.1312,1.3543,2.2839 -0x1878d,CUS_0x8d72,August,32,#F%$D@*&8,Entrepreneur,63371.56,5533.963333,6,6,8,3,"Personal Loan, Student Loan, and Student Loan",28.41513222,18,6.77,7,Standard,756.94,31.53716689,27 Years and 3 Months,No,104.8697437,10000,High_spent_Medium_value_payments,626.8742992,0,1.1817,1.8416,-0.1654,0.8136,-1.1278 -0x18799,CUS_0x9bbc,August,21,456-23-6568,Doctor,18504.72,1757.06,6,5,18,6,"Not Specified, Credit-Builder Loan, Payday Loan, Student Loan, Student Loan, and Mortgage Loan",,19,8.38,10,Bad,2000.01,33.45164206,8 Years and 8 Months,Yes,48.79806633,53.38170255,Low_spent_Medium_value_payments,353.5262311,0,-1.4773,0.2362,-0.0697,1.2349,-1.6333 -0x187a5,CUS_0xa56a,August,48,513-47-2856,Accountant,49652.52,,1530,3,14,2,"Payday Loan, and Auto Loan",23.48413281,16,7.52,5,Standard,1410.01,35.1325873,24 Years and 9 Months,Yes,44.31175856,163.3851306,Low_spent_Large_value_payments,451.2741109,0,0.4783,-1.9285,1.6817,1.272,0.0853 -0x187b1,CUS_0x3191,August,21,571-93-8580,Entrepreneur,89864.28,7538.69,5,5,1,3,"Mortgage Loan, Not Specified, and Home Equity Loan",7.111138493,7,2.12,2,Good,534.5686998,28.4064137,18 Years and 9 Months,No,173.0444201,875.0798818,Low_spent_Medium_value_payments,88.57963368,0,-0.1785,0.3018,-0.4729,1.5632,-0.5765 -0x187bd,CUS_0x99ca,August,35,172-28-1630,Mechanic,131253.81,11068.8175,1,1,7.288361749,0,,12.8991342,,4.14,4,Good,463.9574464,35.66512253,22 Years and 5 Months,No,0,591.8187483,High_spent_Large_value_payments,1200.055663,0,0.1666,1.2994,-1.159,0.3816,1.0181 -0x187c9,CUS_0xc1a2,August,40,342-86-2325,Accountant,73948.04,6025.336667,6,3,13,1,Payday Loan,15.6445637,12,,1,Standard,359.14,24.96653221,26 Years and 5 Months,Yes,58.01678465,45.18432264,High_spent_Large_value_payments,739.3325594,0,-0.7583,1.3731,-0.9637,-0.0707,-0.8791 -0x187d5,CUS_0x66c8,August,46,442-70-7017,Engineer,139631.08,,3,4,12,0,,,0,9.67,7,Good,202.29,45.7839891,21 Years and 0 Months,No,0,234.6786378,High_spent_Small_value_payments,1181.113695,0,0.238,1.387,1.4436,0.8454,-0.2985 -0x187e1,CUS_0x46ce,August,27,436-23-4266,Developer,68474.64,5431.22,7,6,11,3,"Payday Loan, Not Specified, and Personal Loan",8.749862533,8,8.02,7,Standard,66.03,27.64545075,6 Years and 3 Months,Yes,127.4471587,182.789236,Low_spent_Medium_value_payments,512.8856053,0,-0.6845,-1.4191,-0.1952,0.5716,0.2382 -0x187ed,CUS_0x444b,August,49,416-66-6368,Entrepreneur,127708.48,10389.37333,7,3,13,3,"Home Equity Loan, Debt Consolidation Loan, and Home Equity Loan",,20.45340334,19.29,1,_,1288.957854,41.80642689,32 Years and 6 Months,Yes,207.2741096,151.048782,High_spent_Large_value_payments,920.6144418,0,-0.7572,-0.0585,0.4673,0.1639,-0.4365 -0x187f9,CUS_0x40bc,August,28,#F%$D@*&8,Engineer,9737.045,699.4204167,5,6,7.067457376,7,"Personal Loan, Not Specified, Credit-Builder Loan, Not Specified, Payday Loan, Mortgage Loan, and Auto Loan",13.51588117,5.867354576,5.35,9,_,2249.127619,34.99201237,11 Years and 3 Months,Yes,49.64299098,86.62457699,!@9#%8,196.9541857,0,-0.4548,-1.3044,-0.2789,-0.4614,1.2156 -0x18805,CUS_0x6f04,August,25,385-51-0863,Manager,16416.38,,10,9,35.95700519,6,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Payday Loan",,30.44780911,13.88,9,Bad,1692.436613,39.93806321,19 Years and 4 Months,Yes,1403.988795,,Low_spent_Large_value_payments,189.8289139,0,-0.3488,0.7344,1.8485,0.2264,0.1433 -0x18811,CUS_0x65c5,August,49,078-37-0144,Accountant,160057.96,13417.16333,4,4,0.288361749,0,Not Specified,90,1154,1.78,7,Good,322.27,32.96192144,26 Years and 6 Months,No,80.6689071,712.1454021,High_spent_Large_value_payments,1208.839485,0,0.5811,0.4125,-0.509,-0.1857,-0.7774 -0x1881d,CUS_0xc1e8,August,36,501-97-0944,Developer,35255.26,,2,3,2.288361749,4,"Credit-Builder Loan, Auto Loan, Student Loan, and Not Specified",3.546325827,6,7.24,0,Good,88.52,27.08218507,30 Years and 3 Months,No,76.87973425,575.9043924,Low_spent_Small_value_payments,323.9471677,0,0.7809,-0.266,-1.3504,-1.8317,1.2733 -0x18829,CUS_0xb7bb,August,43,797-45-5985,Manager,118717.64,,3,5,10,2,"Debt Consolidation Loan, and Mortgage Loan",24.60123333,17,8.22,12,Standard,718,39.14947669,26 Years and 5 Months,Yes,141.0908002,720.2494062,Low_spent_Large_value_payments,397.1734603,0,1.7284,1.4866,0.1794,0.2579,-0.7136 -0x18835,CUS_0xfea,August,33,731-85-6329,Manager,44264.41,3755.700833,3,3,6,2,"Student Loan, and Student Loan",0,2,9.66,3,Good,1194.295607,33.34873394,18 Years and 8 Months,No,40.48242382,,Low_spent_Small_value_payments,145.4046869,0,-0.0698,-0.3995,-0.024,0.0966,0.6867 -0x18841,CUS_0x3f89,August,21,895-18-0686,Writer,31346.22,,8,5,3605.067457,9,"Student Loan, Home Equity Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Not Specified",42.62179944,22.53836606,3.76,16,Bad,2276.949262,34.31251193,9 Years and 2 Months,Yes,187.425136,,Low_spent_Large_value_payments,93.20695673,0,1.8448,0.5623,0.6824,-0.1166,-1.6175 -0x1884d,CUS_0x9346,August,80,828-89-4293,Doctor,93622.5,7975.875,3,7,2,0,,0,2,6.99,4,Good,142.09,41.29772997,26 Years and 10 Months,NM,0,,!@9#%8,977.1839242,0,-0.5285,0.1914,0.6067,0.3466,1.3276 -0x18859,CUS_0x8704,August,31,497-36-7729,Mechanic,76726.64,6098.886667,6,6,3,3,"Credit-Builder Loan, Student Loan, and Auto Loan",,12,16.61,3,Standard,103.86,30.25620135,29 Years and 6 Months,No,145.2291015,114.6807619,High_spent_Medium_value_payments,599.9788033,0,0.1791,-0.2472,-0.7458,-1.5308,-0.0336 -0x18865,CUS_0xbe1d,August,26,951-33-4234,Musician,74203.38,5891.615,4,3,19,0,,,18,12.88,9,_,1360.21,30.3135802,15 Years and 8 Months,Yes,0,75.92810993,High_spent_Medium_value_payments,763.2333901,0,0.0444,0.6447,-0.8259,-0.736,-0.2875 -0x18871,CUS_0x513a,August,36,020-26-0390,Lawyer,137048.56,11539.71333,3,3,19,4,"Student Loan, Payday Loan, Credit-Builder Loan, and Student Loan",20.02985295,10.48814505,8.54,4,Standard,488.1886851,40.24266451,26 Years and 0 Months,NM,300.9517164,474.7711957,!@9#%8,658.2484213,0,0.5724,0.7674,1.0928,1.3493,0.954 -0x1887d,CUS_0xa235,August,34,549-91-8725,Mechanic,21765.99,1942.8325,3,3,8,1,Payday Loan,8.993140187,8.985761666,6.43,9,Good,952.0800172,25.34911659,32 Years and 4 Months,No,16.54722935,170.5910339,Low_spent_Small_value_payments,297.1449868,0,-1.4078,-1.5852,0.7618,-0.6972,-0.2587 -0x18889,CUS_0x362c,August,44,196-02-8091,Lawyer,7844.045,767.6704167,10,10,23.95700519,6,"Auto Loan, Personal Loan, Not Specified, Personal Loan, Credit-Builder Loan, and Payday Loan",28.2085896,18.53558052,8.25,9,Bad,2800.407456,41.36811542,6 Years and 2 Months,Yes,1344.763927,60.07739686,!@9#%8,240.8753482,0,0.9627,-0.888,-1.9499,0.5922,-0.6755 -0x18895,CUS_0x74ef,August,22,437-79-0896,Scientist,73665.33,6080.7775,8,4,6,1,Personal Loan,20.0444869,,15.69,6,Standard,794.92,35.81226618,19 Years and 3 Months,No,41.34864149,,Low_spent_Medium_value_payments,579.7211667,0,-0.8086,-0.5009,-0.6037,-0.3297,-0.6818 -0x188a1,CUS_0x4241,August,26,606-31-5436,Media_Manager,36178.94,2737.911667,5,7,7,2,"Student Loan, and Student Loan",16.19057641,12,16.9,12,_,1363.843487,24.87227378,15 Years and 11 Months,Yes,44.33900647,106.3808573,Low_spent_Large_value_payments,406.2407988,0,1.1209,-0.9522,1.1976,0.3744,0.7382 -0x188ad,CUS_0xb81c,August,18,112-59-5434,Teacher,62016.76,5228.063333,1604,5,34,100,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",,26.74207483,5.41,13,Bad,1941.74268,28.42532088,14 Years and 5 Months,Yes,353.8950884,290.425595,High_spent_Small_value_payments,138.4856499,0,-0.3873,-1.0964,0.1949,0.3249,0.9561 -0x188b9,CUS_0x2ff6,August,35,060-67-8371,Scientist,12421.12,,7,3,11,4,"Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",,14,1.95,3,Standard,685.18,37.82675646,21 Years and 5 Months,NM,29.37938889,,Low_spent_Small_value_payments,277.4999748,0,0.6433,1.2494,-0.1965,0.251,-0.1284 -0x188c5,CUS_0x1048,August,27,808-81-2470,Accountant,42387.54,,3,7,26,7,"Personal Loan, Not Specified, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",8.7557635,9.396972239,10.34,7,Standard,2056.459594,28.75306001,10 Years and 0 Months,Yes,225.883369,133.5133623,High_spent_Small_value_payments,268.6327687,0,0.7032,1.7677,-0.3792,0.9331,-1.1686 -0x188d1,CUS_0x6bbe,August,24,848-05-5428,Lawyer,87939.04,7343.253333,2,4,10.28836175,2,"Debt Consolidation Loan, and Payday Loan",12.81829125,,,4,Good,278.7195752,37.70596442,25 Years and 11 Months,No,74.00774816,712.9416511,High_spent_Medium_value_payments,648.0923407,0,-0.0642,-0.6586,0.9629,2.8287,-0.452 -0x188dd,CUS_0x1664,August,30,415-68-9816,Developer,29375.68,2728.973333,4,8,27.88954781,6,"Personal Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",13.54159125,12,12.26,15,Standard,1985.59,31.77105108,19 Years and 4 Months,Yes,1414.344397,,High_spent_Small_value_payments,373.9521243,0,1.0906,-0.5271,0.7961,1.5301,0.2131 -0x188e9,CUS_0x4e8f,August,28,555-73-2915,Entrepreneur,40735.3,3202.608333,9,7,26,3,"Student Loan, Home Equity Loan, and Auto Loan",25.55445706,16.80390618,4.35,10,_,1918.304597,40.84127826,11 Years and 8 Months,Yes,98.8651928,103.86548,High_spent_Small_value_payments,377.5301606,0,-0.1467,0.2572,0.1033,-0.0558,0.4246 -0x188f5,CUS_0xe4f,August,55,015-79-4469,Teacher,29709.73,2346.914659,8,7,4614,2,"Credit-Builder Loan, and Auto Loan",,9,5.36,8,Good,1005.711855,33.07643305,32 Years and 3 Months,No,49835,,Low_spent_Small_value_payments,282.9328624,0,-1.525,-0.7101,1.4313,2.1696,1.8024 -0x18901,CUS_0xc515,August,24,652-12-7729,Lawyer,8477.51,648.4591667,8,9,28.06745738,5,"Home Equity Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",24.940381,,1.87,12,Bad,5785.112947,25.41978451,10 Years and 11 Months,NM,31.74688393,,Low_spent_Small_value_payments,236.4055859,0,-0.9728,1.3298,-0.3686,0.0603,-0.7529 -0x1890d,CUS_0xae7d,August,20,651-44-1370,Accountant,38047.79,3344.649167,0,4,11.28836175,2,"Student Loan, and Home Equity Loan",2.348682829,4,11.17,0,Good,186.72,27.12985525,29 Years and 9 Months,No,61.70027376,523.1334331,High_spent_Medium_value_payments,419.5686708,0,0.8751,0.1871,-0.7818,0.9714,1.7008 -0x18919,CUS_0x18d4,August,26,#F%$D@*&8,Teacher,74264.92,6137.743333,4,4,4,4,"Home Equity Loan, Auto Loan, Student Loan, and Auto Loan",3.526457103,7,8.16,2,_,307.82,29.06177872,25 Years and 6 Months,No,54445,10000,High_spent_Small_value_payments,536.1321298,0,-1.3848,0.5424,-0.8617,-0.2417,-0.1822 -0x18925,CUS_0x96b5,August,39,933-15-4753,Lawyer,73937.4,6415.45,5,7,8,1,Mortgage Loan,23.76062326,15,-4.31,5,Standard,405.73,31.75968304,32 Years and 3 Months,Yes,44.47976535,197.1319473,!@9#%8,679.9332873,0,-0.8769,-0.3829,1.2285,1.1002,-0.0768 -0x18931,CUS_0xc37,August,36,391-43-5750,Musician,72307.32,5754.61,8,4,9,3,"Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,15,15.34,7,Standard,1180.91,31.40207309,17 Years and 4 Months,Yes,152.9655306,107.9812064,High_spent_Large_value_payments,554.514263,0,0.9807,0.5128,-0.1267,0.2825,-0.4009 -0x1893d,CUS_0xac3f,August,18,010-72-9113,Doctor,27621.23,2165.769167,5,6,20,4,"Not Specified, Not Specified, Student Loan, and Not Specified",,16,9.35,6,Standard,555.67,36.72768252,17 Years and 4 Months,Yes,62.49392547,53.69275502,High_spent_Large_value_payments,340.3902362,0,0.4318,-0.5219,1.5599,0.0524,-0.1665 -0x18949,CUS_0x60f,August,24,127-21-3412,Doctor,167664.88,14007.07333,2,6,10,4,"Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",14.0335087,12,11.74,3,_,1435.29,27.3609159,16 Years and 5 Months,No,449.0602004,869.0241327,Low_spent_Large_value_payments,352.6230002,0,1.9928,1.16,-0.9517,1.1821,0.4065 -0x18955,CUS_0x1661,August,20,205-56-4253,Doctor,18083.64,,9,8,18,2,"Not Specified, and Debt Consolidation Loan",,16.63697497,7.06,14,Standard,2778.916306,30.73068007,13 Years and 5 Months,Yes,26.88346071,82.64249199,Low_spent_Small_value_payments,314.1710473,0,-0.3043,-0.9523,0.8823,1.7143,-0.8073 -0x18961,CUS_0x9c4b,August,26,823-22-4980,Accountant,60362.88,4916.24,7,6,20.06745738,6,"Personal Loan, Home Equity Loan, Student Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",34.60748676,17.04987899,32.22,13,Bad,5255.339681,35.66663845,9 Years and 11 Months,Yes,278.8071842,332.2284603,High_spent_Small_value_payments,113.8680676,0,-0.692,0.9082,0.2948,1.1686,-0.0447 -0x1896d,CUS_0x9e5e,August,35,023-95-0480,Accountant,14968.48,1001.373333,6,5,33,7,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",,10.56834804,14.19,14,_,2388.203863,33.70912597,15 Years and 5 Months,Yes,62.40567663,,Low_spent_Small_value_payments,223.5806006,0,2.2905,-1.3667,-2.0711,-1.8894,-1.0639 -0x18979,CUS_0x7cf1,August,43,496-02-6838,Entrepreneur,36229.54,,2,6,11,1,Home Equity Loan,,,1.1,3,_,1274.92,25.65074123,16 Years and 3 Months,No,19.9995665,107.2324194,Low_spent_Small_value_payments,463.9808474,0,-0.7836,-0.4153,-0.591,-0.4798,0.3606 -0x18985,CUS_0x37f8,August,25,733-93-6011,Accountant,39910.48,,1,7,2,1,Not Specified,6.246683887,4.569462984,3.9,5,Good,1184.196802,27.74710582,22 Years and 0 Months,No,31.77951264,144.662712,High_spent_Medium_value_payments,426.5451087,0,-1.7067,0.36,-0.8721,0.3794,-1.4875 -0x18991,CUS_0x3d09,August,43,676-69-6112,Media_Manager,33199.8,,8,10,23.95700519,6,"Credit-Builder Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",,20.81336609,12,15,_,2347.208946,31.33964734,13 Years and 6 Months,Yes,1605.772703,83.18633284,Low_spent_Large_value_payments,291.7148308,0,2.9688,0.1201,-1.2703,0.1314,0.9947 -0x1899d,CUS_0x21f2,August,29,959-44-8630,Musician,144686,,8,5,5,7,"Not Specified, Not Specified, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",15.59717106,13,13.07,5,Standard,605.05,36.44725388,11 Years and 2 Months,Yes,818.5290047,229.1437031,High_spent_Large_value_payments,422.9439589,0,-0.6377,-0.4771,-1.5905,1.8304,-0.2053 -0x189a9,CUS_0x872d,August,23,104-21-7383,Architect,47183.94,,7,9,28.06745738,5,"Not Specified, Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",53.78852054,28.68584264,9.71,12,Bad,5240.656799,39.77906002,13 Years and 5 Months,Yes,166.8906545,59.58548672,High_spent_Large_value_payments,367.2030708,0,1.8418,0.5663,0.7354,-0.1421,0.4638 -0x189b5,CUS_0x960b,August,32,815-78-7675,Writer,31589.9,2706.491667,7,6,7,2,"Debt Consolidation Loan, and Not Specified",15.77775648,13,9.13,13,Standard,236.79,25.26405306,13 Years and 10 Months,Yes,44.84904662,192.3173333,Low_spent_Large_value_payments,303.4827867,0,0.8605,0.7926,1.9089,-0.6379,-0.0125 -0x189c1,CUS_0x14d3,August,32,219-57-6916,Teacher,107572.72,9133.393333,4,4,15,2,"Payday Loan, and Auto Loan",90,3951,11.48,2,Standard,302.52,32.85526169,,NM,106.2472556,241.1812409,!@9#%8,815.9108368,0,-0.8846,-2.1596,-0.9888,1.7623,0.4322 -0x189cd,CUS_0xc651,August,18,148-98-6816,Journalist,104428.08,8866.34,3,4,8,4,"Mortgage Loan, Payday Loan, Home Equity Loan, and Not Specified",,21,11.72,13,Standard,230.3816452,35.02494535,20 Years and 4 Months,Yes,179.1275605,691.3344677,High_spent_Small_value_payments,364.7617976,0,0.0857,-1.2602,0.2277,-1.8602,-0.0019 -0x189d9,CUS_0xb538,August,18,760-11-8872,Musician,51211.26,4048.605,6,6,16,6,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Mortgage Loan",13.25686495,12,16.57,4,Standard,2057.4,39.3466437,13 Years and 2 Months,Yes,222.9076774,,High_spent_Medium_value_payments,296.7437498,0,0.3598,0.1066,0.7181,1.1575,-2.551 -0x189e5,CUS_0x1fcb,August,44,448-72-4083,Developer,106694.82,8959.235,6,6,12,0,,21.7658614,14,7.49,7,Good,429.41,35.14818026,20 Years and 9 Months,No,0,403.1131695,High_spent_Small_value_payments,752.8103305,0,-0.1558,-0.8614,0.4652,2.7025,-0.3729 -0x189f1,CUS_0xb967,August,31,914-80-2762,Doctor,33131.6,,2,6,8,0,,8.154592944,10,11.49,0,Good,724.78,28.36578632,27 Years and 9 Months,No,0,108.1033165,Low_spent_Medium_value_payments,448.9933502,0,-1.1571,-0.1391,-0.0448,-2.0993,0.4382 -0x189fd,CUS_0x8731,August,28,518-75-8448,_______,9615.095,610.2579167,8,6,13,2,"Debt Consolidation Loan, and Student Loan",,20,5.78,6,Standard,520.99,23.5366654,23 Years and 0 Months,Yes,45679,23.40495292,High_spent_Small_value_payments,288.0105747,0,-0.08,-0.1911,-0.6014,0.7114,-0.7508 -0x18a09,CUS_0x4569,August,19,086-69-7305,Developer,18184.81,,8,9,30.88954781,8,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",22.1318213,14,28.55,12,Bad,4571.03,35.46218925,4 Years and 11 Months,Yes,1387.225412,,Low_spent_Medium_value_payments,282.6752472,0,-0.7915,-2.2471,-0.4617,0.9434,-0.6612 -0x18a15,CUS_0x14c2,August,31,840-29-3626,Architect,67978.8,5803.9,9,5,28.06745738,9,"Mortgage Loan, Student Loan, Auto Loan, Not Specified, Student Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",29.58208631,18,18.41,15,Bad,4907.360954,32.22974671,9 Years and 2 Months,Yes,301.992156,170.8144888,Low_spent_Medium_value_payments,360.8630673,0,0.2129,0.1998,0.7421,1.1899,1.5701 -0x18a21,CUS_0x71b8,August,54,017-48-9798,Entrepreneur,72301.62,,4,3,18,3,"Student Loan, Student Loan, and Auto Loan",,19,15.87,2,Standard,819.37,27.35132043,27 Years and 10 Months,Yes,98.9802892,248.5449047,High_spent_Medium_value_payments,512.4883061,0,-2.048,0.0315,2.6178,1.0742,-0.2381 -0x18a2d,CUS_0x5280,August,56,863-50-5431,Architect,24755.99,,6,5,7,0,,17.97353537,,3.95,1,Standard,563.0207806,25.98337594,24 Years and 10 Months,No,0,331.5265876,Low_spent_Small_value_payments,227.9165103,0,1.1131,0.4557,1.718,-0.1483,0.935 -0x18a39,CUS_0x770,August,25,029-84-5574,Media_Manager,68926.36,5593.863333,8,9,34,6,"Payday Loan, Home Equity Loan, Payday Loan, Not Specified, Personal Loan, and Mortgage Loan",,31.15320881,24.44,12,Bad,4489.737732,34.3737472,13 Years and 10 Months,Yes,213.8781783,94.82318723,!@9#%8,500.6849678,0,-2.4939,-0.0818,-1.177,0.4611,-0.2772 -0x18a45,CUS_0x181f,August,38,552-71-6305,Media_Manager,58558.86,5123.905,10,9,25,2,"Not Specified, and Credit-Builder Loan",,18.12998609,19.92,16,Standard,1564.212998,36.52909764,14 Years and 10 Months,Yes,58.73135222,94.65427738,High_spent_Medium_value_payments,609.0048704,0,0.3702,0.0659,0.0574,-0.2416,-0.2069 -0x18a51,CUS_0x94d5,August,61,#F%$D@*&8,Entrepreneur,100358.73,,0,4,11.28836175,0,,14.11409864,13,2.74,2,Good,339.2702947,39.40141585,28 Years and 4 Months,No,0,,High_spent_Small_value_payments,533.7619007,0,-0.3346,1.7085,-1.1953,0.9125,1.017 -0x18a5d,CUS_0x2659,August,21,511-59-6589,Journalist,62200.6,5104.383333,10,6,34,2,"Student Loan, and Debt Consolidation Loan",48.55420798,27.62597647,1.54,7,Bad,1485.748739,39.20295328,16 Years and 2 Months,Yes,52.61422135,128.4483536,High_spent_Large_value_payments,569.3757584,0,-0.719,0.4041,-0.2441,0.7271,-1.4048 -0x18a69,CUS_0x6e8d,August,80,220-96-8558,Manager,40341.38,,6,6,4,3,"Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",19.20253318,18,5.79,1,Good,1263.68,36.5406208,21 Years and 10 Months,No,275.7041087,95.67577257,High_spent_Small_value_payments,449.42081,0,-0.7758,-0.3841,-0.4644,1.1137,-0.2714 -0x18a75,CUS_0xb47f,August,21,429-78-0806,Scientist,30773.87,2297.979398,4,4,19,2,"Auto Loan, and Debt Consolidation Loan",24.40727115,16,14.84,5,Standard,1289.886357,34.19912504,16 Years and 0 Months,NM,324.4207428,60.1307913,High_spent_Large_value_payments,416.2904786,0,1.1581,0.1937,0.139,0.4957,1.5687 -0x18a81,CUS_0xc55a,August,32,374-42-2129,Accountant,126253.65,10315.1375,0,2,0.288361749,2,"Student Loan, and Personal Loan",,9,1.08,5,Good,3.5,41.93013604,31 Years and 9 Months,NM,194.2730775,,!@9#%8,875.882236,0,0.985,-1.6482,0.167,-1.4328,0.9987 -0x18a8d,CUS_0x4eab,August,46,111-56-9101,Lawyer,15682.145,,3,4,4,1,Auto Loan,11.71222704,10,2.55,4,Good,1249.34,29.01006378,22 Years and 11 Months,No,8.485266863,,High_spent_Small_value_payments,353.2454007,0,-0.5741,-2.1045,-0.9639,0.346,0.1677 -0x18a99,CUS_0xaa53,August,52,516-01-8545,Teacher,57847.1,4808.591667,1,4,5,1,Payday Loan,,8,6.19,5,Good,958.73,29.08673264,23 Years and 8 Months,No,35141,,Low_spent_Small_value_payments,207.4549507,0,-0.239,-1.085,1.5453,-0.4913,0.1543 -0x18aa5,CUS_0x7749,August,45,999-79-9012,Lawyer,28485.76,2230.813333,6,7,16.06745738,6,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Not Specified, and Mortgage Loan",27.36249293,18,10.96,6,Bad,4993.650954,25.53916123,14 Years and 2 Months,Yes,128.8957991,149.1788836,High_spent_Small_value_payments,178.2863627,0,-0.5262,0.0632,-1.6913,-0.4063,-0.4855 -0x18ab1,CUS_0x5de2,August,37,#F%$D@*&8,Mechanic,21578.575,1499.214583,1,3,4,1,Home Equity Loan,0,1,6.55,6,Good,881.05,34.0549564,29 Years and 2 Months,No,11.61421714,57.51967812,Low_spent_Small_value_payments,370.7875631,0,-0.9107,-0.6776,1.3304,-1.5903,0.5486 -0x18abd,CUS_0x8517,August,40,934-91-6807,Accountant,58372.92,5067.41,7,9,19.06745738,5,"Not Specified, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",40.95601609,23.55639823,26.77,10,Bad,3952.386991,37.31468536,12 Years and 11 Months,Yes,178.0443065,189.8813444,High_spent_Small_value_payments,372.0950612,0,0.2208,0.7207,0.5195,-1.0114,-0.1608 -0x18ac9,CUS_0xb6be,August,35,695-71-7676,Journalist,50010.9,,7,10,17,6,"Debt Consolidation Loan, Student Loan, Auto Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",,22.8279791,8.36,2363,Bad,3738.413418,30.92581339,,Yes,211.962847,237.3598818,Low_spent_Small_value_payments,266.9347712,0,1.1721,-1.3289,0.3349,-0.1726,-0.5908 -0x18ad5,CUS_0x8000,August,26,599-48-6829,Journalist,16970.75,1685.229167,1747,7,8.067457376,2,"Payday Loan, and Debt Consolidation Loan",,18,11.9,10,Standard,2584.080954,38.46579891,10 Years and 9 Months,Yes,26.94751217,145.1398227,Low_spent_Medium_value_payments,249.7152939,0,-0.0581,0.1277,-0.1095,-1.7352,1.2759 -0x18ae1,CUS_0x66d6,August,40,552-62-4814,_______,36446.26,,4,5,8,0,,,9,11.67,0,Good,293.3922318,33.41558756,17 Years and 3 Months,No,0,119.681209,High_spent_Small_value_payments,446.4431385,0,0.3074,-0.4926,-0.8453,-0.1345,-0.4632 -0x18aed,CUS_0x6bff,August,26,545-42-9297,Accountant,8605.54,722.1283333,7,6,30,9,"Payday Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,22.46979558,23.34,12,Bad,5026.004648,37.47792018,13 Years and 2 Months,NM,40.43170253,33.72399893,Low_spent_Medium_value_payments,278.0571319,0,1.427,-0.1067,-1.7267,0.1956,0.2164 -0x18af9,CUS_0x5195,August,38,179-78-8980,Entrepreneur,16678.77,,8,6,21.06745738,9,"Personal Loan, Mortgage Loan, Not Specified, Payday Loan, Personal Loan, Not Specified, Not Specified, Home Equity Loan, and Not Specified",31.9991821,16,8.38,14,Bad,4535.940954,40.78935609,5 Years and 3 Months,Yes,90.74345289,115.092583,!@9#%8,167.6334261,0,-0.3355,0.1561,-0.4193,-1.4536,-0.2766 -0x18b05,CUS_0xe3b,August,19,580-75-3047,Manager,56425.6,4438.133333,6,10,33,3,"Credit-Builder Loan, Student Loan, and Credit-Builder Loan",26.47579166,12.91059731,12.33,12,Standard,2744.745533,34.10138958,11 Years and 10 Months,NM,71.89759982,165.6794103,Low_spent_Large_value_payments,476.2363232,0,-1.0628,0.3366,0.787,-1.1667,0.6581 -0x18b11,CUS_0x6496,August,22,293-53-5614,Journalist,33127.31,,4,4,10,4,"Personal Loan, Student Loan, Mortgage Loan, and Payday Loan",19.58458612,17,9.25,7,_,32.68179575,38.69129336,33 Years and 0 Months,Yes,106.8186864,,High_spent_Small_value_payments,242.8839135,0,1.8032,0.0371,0.4624,-0.2079,-1.0374 -0x18b1d,CUS_0xc712,August,55,623-66-4307,Lawyer,57724.36,,3,5,5,3,"Auto Loan, Payday Loan, and Payday Loan",17.01541263,,4.18,1,Good,526.31,31.95080863,23 Years and 9 Months,NM,121.6561937,10000,High_spent_Small_value_payments,324.9260198,0,1.2633,1.9024,1.2048,-1.776,-2.4143 -0x18b29,CUS_0x2f02,August,23,793-24-4174,Media_Manager,37813.29,2951.1075,1,5,3.288361749,0,,2.666486096,5,1.24,1,Good,76.92112612,29.97343062,17 Years and 10 Months,No,0,,High_spent_Medium_value_payments,428.9671545,0,0.0077,-1.1937,-0.1966,-0.7878,0.5507 -0x18b35,CUS_0x7a1f,August,24,171-91-9087,Accountant,102046.83,,3,48,3,0,,,2.302729541,1.78,6,Good,1428.197024,39.46764447,,NM,0,265.2533005,High_spent_Medium_value_payments,845.7369495,0,0.6624,0.1806,0.1302,-0.5239,0.0851 -0x18b41,CUS_0x8202,August,25,#F%$D@*&8,Entrepreneur,42664.56,3700.38,4,7,7,2,"Debt Consolidation Loan, and Home Equity Loan",6.406798379,6,8.67,1,Good,967.3,30.09905111,23 Years and 6 Months,No,54.42804493,253.6652527,High_spent_Small_value_payments,321.9447024,0,-1.3413,1.4118,0.1816,0.2331,-2.1706 -0x18b4d,CUS_0x12fa,August,46,966-60-1936,Manager,87876.27,,4,5,15,0,,,16,7.6,5,Standard,502.29,36.8195481,22 Years and 11 Months,Yes,0,386.4780095,!@9#%8,606.7242405,0,0.4464,-0.1906,-0.0824,-0.2141,0.2717 -0x18b59,CUS_0x9af6,August,41,372-93-7737,Lawyer,15363.115,,3,5,889,7,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",26.02637866,17,10.56,5,Standard,1364.4,31.53583108,16 Years and 8 Months,Yes,69.68884774,,Low_spent_Medium_value_payments,305.9585186,0,1.1195,-0.4526,0.4638,1.2224,0.4152 -0x18b65,CUS_0xb13c,August,33,528-06-6283,Musician,14613.65,,8,8,22.88954781,6,"Personal Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",20.36925842,16,9.63,9,_,2882.07,36.94062493,2 Years and 4 Months,Yes,1391.459263,88.19734202,Low_spent_Small_value_payments,249.4937303,0,-1.7181,0.8397,-1.4277,-0.3003,0.0951 -0x18b71,CUS_0x45cb,August,43,323-89-9920,Journalist,58170.76,4861.563333,8,5,34,6,"Credit-Builder Loan, Student Loan, Not Specified, Not Specified, Student Loan, and Credit-Builder Loan",33.92176542,20.59790924,11.86,13,Bad,2805.575669,37.41620308,,Yes,168.184988,246.9911337,High_spent_Small_value_payments,330.9802116,0,-2.0945,0.4322,0.4434,-0.1436,0.709 -0x18b7d,CUS_0xa3f5,August,21,781-12-9908,_______,122782.95,10320.9125,1,6,3,3,"Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",7.964215354,8,1.18,7,Good,304.27,32.06423871,32 Years and 9 Months,No,210.2978747,350.8781214,High_spent_Medium_value_payments,720.9152539,0,1.7356,-0.3946,-1.1069,1.3335,0.2356 -0x18b89,CUS_0x9778,August,43,548-90-8373,Developer,35263.09,2808.590833,2,3,8,2,"Payday Loan, and Personal Loan",,4,4.85,6,Good,856.33,37.13591061,28 Years and 11 Months,No,41.67735909,54.53900308,High_spent_Large_value_payments,424.6427212,0,0.6458,-0.6374,-0.2426,0.8596,-0.0758 -0x18b95,CUS_0x2b2a,August,34,682-88-0410,Media_Manager,59226.15,4780.5125,7,4,7,3,"Student Loan, Auto Loan, and Not Specified",17.96116726,13,8.7,3,Good,710.49,37.14052435,25 Years and 9 Months,No,94.8841568,93.28219389,High_spent_Large_value_payments,529.8848993,0,0.8259,0.294,-0.2814,-0.3108,-1.9206 -0x18ba1,CUS_0x4775,August,51,389-91-1194,Teacher,125049.78,10426.815,1,5,6.288361749,100,"Payday Loan, Debt Consolidation Loan, and Auto Loan",14.6505596,,0.7,2,Good,538.9919471,27.91585668,20 Years and 0 Months,No,178.1378858,645.2780788,High_spent_Medium_value_payments,922.5416809,0,-1.917,-0.8861,1.1119,-1.5077,-1.3912 -0x18bad,CUS_0x3e5e,August,44,849-82-2878,Scientist,40575.26,3523.271667,8,5,20,9,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Not Specified, Personal Loan, Not Specified, Home Equity Loan, Mortgage Loan, and Home Equity Loan",39.78432773,20.1597024,18,8,_,2823.881627,40.87888405,5 Years and 6 Months,Yes,177.5561536,193.7861341,Low_spent_Small_value_payments,270.984879,0,-0.361,0.2011,0.091,-1.1472,0.3446 -0x18bb9,CUS_0xb201,August,35,808-53-9641,Doctor,115104.72,9395.06,5,3,17,3,"Home Equity Loan, Home Equity Loan, and Personal Loan",12.58804109,9,15.94,8,Standard,950.44,41.66229976,6 Years and 0 Months,NM,150.3025235,543.6265392,Low_spent_Small_value_payments,535.5769373,0,-0.4762,0.631,-2.1274,0.4108,1.2656 -0x18bc5,CUS_0x9815,August,39,365-53-4721,Lawyer,32167.36,,7,7,20.06745738,5,"Not Specified, Payday Loan, Student Loan, Not Specified, and Debt Consolidation Loan",16.24140379,10.42860421,7.4,12,Standard,2346.181901,31.59715353,12 Years and 11 Months,Yes,89.33903455,10000,Low_spent_Small_value_payments,301.7065439,0,0.712,-0.9089,1.6447,0.3626,0.693 -0x18bd1,CUS_0x632,August,44,#F%$D@*&8,Media_Manager,56414.52,4494.21,6,6,34,6,"Student Loan, Not Specified, Student Loan, Credit-Builder Loan, Personal Loan, and Not Specified",45.04572908,22.34263447,19.74,11,_,2835.919113,25.49745403,10 Years and 11 Months,Yes,183.0453128,128.6916337,Low_spent_Medium_value_payments,417.6840535,0,-0.413,-1.3517,1.5566,0.4359,-2.0128 -0x18bdd,CUS_0xf01,August,35,640-79-5096,Developer,30256.85,,0,5,6.067457376,3,"Home Equity Loan, Payday Loan, and Payday Loan",4.395336776,2.373376249,0.73,7,_,1871.487224,29.18889445,20 Years and 5 Months,No,62.10515619,,Low_spent_Large_value_payments,246.6240037,0,0.4178,-0.6893,-0.0562,-0.2617,0.7178 -0x18be9,CUS_0x8b17,August,80,232-13-9501,Writer,66289.36,,4,5,15,2,"Personal Loan, and Student Loan",15.64524651,14,7.27,11,Standard,713.33,40.1162951,16 Years and 4 Months,NM,61.32521299,302.9868146,High_spent_Small_value_payments,438.9993058,0,0.6921,0.3058,0.1609,-0.1738,0.2586 -0x18bf5,CUS_0x15f2,August,32,708-00-6661,Teacher,15566.55,1202.2125,8,8,29.06745738,5,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",31.57567145,,18.13,8,_,4081.233833,41.28317342,12 Years and 11 Months,NM,45.14911928,101.0512582,Low_spent_Small_value_payments,237.3005846,0,-0.4037,0.9108,-0.246,-0.8601,1.6926 -0x18c01,CUS_0x75ef,August,45,340-31-0387,Developer,65047.53,5550.6275,3,5,15,100,"Not Specified, Payday Loan, Personal Loan, and Auto Loan",18.96336161,15,12.09,2,Standard,1146.519464,24.3079381,28 Years and 11 Months,NM,190.3263109,418.9508738,High_spent_Small_value_payments,268.4353626,0,0.3055,1.5495,0.5298,1.0541,0.201 -0x18c0d,CUS_0x67eb,August,52,241-12-4540,Developer,14709.335,,1,5,8,0,,7.584511544,7.23014943,,4,Good,614.5228026,33.29748334,30 Years and 8 Months,No,0,107.1566146,Low_spent_Small_value_payments,333.9211771,0,-2.041,0.2666,-0.2051,-0.1476,-0.1672 -0x18c19,CUS_0x629,August,45,495-74-9883,Writer,15806.84,1140.236667,6,5,21,3,"Personal Loan, Home Equity Loan, and Payday Loan",13.67665582,12,3.41,12,Bad,2580.63,25.32383544,19 Years and 9 Months,Yes,29.02999324,43.28507338,Low_spent_Medium_value_payments,321.7086,0,0.1678,-0.1615,-1.8586,-0.1325,-1.0765 -0x18c25,CUS_0x9dc1,August,43,334-06-1440,Accountant,19621.94,1851.161667,8,10,31.95700519,6,"Mortgage Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Student Loan, and Personal Loan",32.9662808,,2.39,11,Bad,2033.719474,28.97196736,19 Years and 2 Months,Yes,1375.246935,54.32391208,Low_spent_Medium_value_payments,314.4949502,0,-1.7255,-0.8363,-0.3903,-0.5336,-0.9843 -0x18c31,CUS_0x4472,August,42,#F%$D@*&8,Teacher,70554.22,,4,3,9.288361749,2,"Home Equity Loan, and Credit-Builder Loan",,15,6.29,3,Standard,908.62,32.7653267,24 Years and 4 Months,NM,73.22638529,858.3983808,Low_spent_Medium_value_payments,353.9645282,0,0.3231,-1.2663,-0.5828,-0.4429,-0.9622 -0x18c3d,CUS_0x3cea,August,32,882-80-1112,Developer,127672.24,10668.35333,8,7,19,4,"Home Equity Loan, Payday Loan, Auto Loan, and Auto Loan",18.65951548,13,-1.24,3,Standard,504.03,37.93379412,31 Years and 5 Months,No,289.0291545,,High_spent_Large_value_payments,844.3139439,0,-0.0607,-1.0661,-0.0304,0.5325,-0.1484 -0x18c49,CUS_0x49fe,August,40,898-27-1763,Developer,19617.02,1624.751667,6,6,29.06745738,2,"Credit-Builder Loan, and Payday Loan",,20.23061912,10.28,8,Standard,2079.633219,29.26551937,13 Years and 8 Months,Yes,30.50651716,109.7663802,Low_spent_Small_value_payments,285.4819814,0,-1.2313,0.6696,-0.7809,0.6097,1.0253 -0x18c55,CUS_0x60a2,August,44,#F%$D@*&8,_______,29951.57,2254.964167,8,6,20,0,,,,7.44,7,Standard,704.02,33.14556455,19 Years and 2 Months,Yes,0,193.2679504,Low_spent_Small_value_payments,322.2284662,0,0.091,-0.5416,0.7449,-0.3284,-1.9894 -0x18c61,CUS_0x8c3,August,26,616-62-9532,Journalist,16477.55,,9,7,25.06745738,7,"Mortgage Loan, Personal Loan, Not Specified, Payday Loan, Home Equity Loan, Not Specified, and Student Loan",41.20730513,28.68190248,24.14,9,Bad,4158.128629,26.86139005,3 Years and 9 Months,Yes,104.5079577,,Low_spent_Small_value_payments,201.5488817,0,-0.9967,-0.2629,-0.1351,-0.4194,-0.1655 -0x18c6d,CUS_0x1330,August,33,#F%$D@*&8,Media_Manager,30874.43,,4,5,8,2,"Mortgage Loan, and Credit-Builder Loan",6.970927553,5.982432478,3.82,2,Good,273.8286411,26.63543442,22 Years and 2 Months,NM,48.26786997,67.90948238,High_spent_Small_value_payments,403.4095643,0,0.5623,-0.4121,0.4509,-1.4325,-0.4333 -0x18c79,CUS_0xbaf2,August,28,569-52-7755,Developer,8171.11,,7,6,16,3,"Personal Loan, Student Loan, and Student Loan",,21.30302801,2.64,9,Bad,1968.105256,39.02956607,12 Years and 9 Months,Yes,14.56817965,30.19378291,Low_spent_Small_value_payments,333.9306208,0,0.3016,-1.2569,-1.2476,-0.0777,0.3541 -0x18c85,CUS_0x2abd,August,45,539-11-2283,Entrepreneur,37612.54,3145.378333,5,4,11,4,"Credit-Builder Loan, Not Specified, Payday Loan, and Not Specified",0,0,0.72,1,Good,14.58603421,29.15300503,30 Years and 4 Months,No,124.7343814,86.07126363,High_spent_Large_value_payments,355.6726428,0,-0.0635,1.2002,0.2528,0.9665,-1.4609 -0x18c91,CUS_0x1e51,August,32,887-23-0031,Entrepreneur,17443.94,,10,10,22.06745738,5,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Personal Loan",,22,21.69,7,Bad,3039.980954,35.8701711,11 Years and 6 Months,Yes,55.67362562,50.28013254,High_spent_Small_value_payments,298.7921206,0,-1.3105,2.1443,-0.0261,0.4307,-1.2909 -0x18c9d,CUS_0x5135,August,51,017-34-5974,Scientist,31199.43,,3,5,8,4,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",13.12618443,11.80395755,2.93,5,_,1545.450193,32.45991546,27 Years and 5 Months,No,55.57160667,137.3383495,High_spent_Small_value_payments,347.1852938,0,-1.7008,-0.6722,1.409,-0.5618,1.3395 -0x18ca9,CUS_0x1935,August,44,306-45-4223,Media_Manager,17096.25,1669.6875,10,8,20.95700519,7,"Payday Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",35.12301642,19,29.72,14,Bad,2603.171294,31.33221382,3 Years and 10 Months,Yes,1397.541002,,Low_spent_Small_value_payments,155.1916735,0,0.1003,-0.129,0.2109,1.792,1.0727 -0x18cb5,CUS_0x7d40,August,39,596-94-4140,Writer,56089.95,4875.1625,9,5,15,7,"Payday Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,17,4.31,9,Bad,2561.61,35.01016342,6 Years and 6 Months,Yes,276.5352963,,Low_spent_Small_value_payments,226.1881536,0,0.1219,0.287,0.427,-0.3104,0.3592 -0x18cc1,CUS_0x1a9c,August,41,898-03-0260,Writer,17971,,7,3,8.067457376,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",20.86607791,14,11.09,1,Good,1353.50505,30.42284212,22 Years and 4 Months,No,41.39158346,,High_spent_Small_value_payments,271.3718799,0,0.7438,0.8921,-0.354,-0.7388,-0.2171 -0x18ccd,CUS_0x7007,August,41,819-79-8796,Accountant,19104.75,1669.0625,4,7,7.067457376,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",22.05861217,14.08531209,14.07,5,Standard,1295.594934,33.00866102,30 Years and 3 Months,Yes,43.75145433,63.01754025,Low_spent_Small_value_payments,323.4169675,0,-0.1237,-0.1488,-1.113,-1.2767,0.574 -0x18cd9,CUS_0xb7eb,August,36,856-58-2613,Entrepreneur,125977.6,10426.13333,8,6,13,2,"Not Specified, and Home Equity Loan",25.99848389,17,8.02,3,Standard,581.65,33.80536503,32 Years and 3 Months,Yes,149.9825159,,High_spent_Small_value_payments,725.1387625,0,-0.9419,-0.0826,-0.0997,-0.0873,1.1207 -0x18ce5,CUS_0xbeca,August,80,120-40-0801,Lawyer,134124,10886,0,3,10.28836175,0,Student Loan,,10,7.29,7,Good,787.5,39.01212447,16 Years and 11 Months,NM,106.7920385,1045.29152,Low_spent_Medium_value_payments,636.453903,0,1.4568,-0.8424,0.0215,0.0646,-1.4164 -0x18cf1,CUS_0xb458,August,38,087-39-6979,Scientist,34613.16,,5,4,14,2,"Auto Loan, and Mortgage Loan",16.91389705,10,5.97,6,Standard,213.48,23.30172052,,Yes,33.50993646,151.694875,Low_spent_Small_value_payments,404.9381885,0,-0.0536,0.5241,-0.398,0.1213,0.6863 -0x18cfd,CUS_0x87e6,August,26,239-23-3959,Doctor,122135.12,10125.92667,2,4,1,1,Credit-Builder Loan,24.21461214,15.51485985,11.46,2,Good,1555.681517,38.83059968,18 Years and 2 Months,No,53.47224018,425.7043435,High_spent_Medium_value_payments,783.4160829,0,-1.2232,1.295,0.3937,-0.4512,0.2797 -0x18d09,CUS_0x9ca,August,39,401-46-8317,Mechanic,60530.7,4962.225,3,180,9,1,Auto Loan,,19,9.35,7,Standard,361.83,40.15303785,29 Years and 5 Months,No,40.76317256,59.29216284,High_spent_Medium_value_payments,646.1671646,0,-0.0012,0.7056,-1.6676,2.3191,-0.5512 -0x18d15,CUS_0x9661,August,46,233-06-0115,Doctor,17426.71,,5,4,10,7,"Student Loan, Payday Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Auto Loan",,8,9.18,12,Standard,2025.633787,34.33071177,8 Years and 8 Months,NM,79.4216295,35.01665961,High_spent_Large_value_payments,303.536015,0,0.808,-0.2636,2.0019,-0.5945,-1.036 -0x18d21,CUS_0x4892,August,25,023-32-1539,Lawyer,116098.12,9402.843333,6,4,7.288361749,2,"Payday Loan, Personal Loan, and Credit-Builder Loan",7.106894153,8,19.69,6,Standard,317.72,26.17380933,,Yes,150.7739712,1066.162187,Low_spent_Large_value_payments,413.2856359,0,-0.0777,-0.6401,1.4666,0.7491,-0.3436 -0x18d2d,CUS_0x71eb,August,33,174-53-3135,Scientist,71203.4,6132.616667,7,6,20,5,"Payday Loan, Payday Loan, Auto Loan, Student Loan, and Mortgage Loan",29.70240037,19.88949816,12.26,9,Standard,1419.395504,36.97740789,15 Years and 5 Months,Yes,235.5154686,136.2871547,High_spent_Large_value_payments,481.4590433,0,1.9425,-1.1895,-1.0107,2.0972,0.5255 -0x18d39,CUS_0xabf9,August,25,776-37-1657,Media_Manager,15576.36,,7,3,16,5,"Auto Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, and Payday Loan",16.76939894,12,9.58,8,Standard,1544.49,37.50996159,16 Years and 2 Months,Yes,48.95141778,32.95430778,High_spent_Small_value_payments,313.1972744,0,-0.7238,1.0134,0.4813,0.3202,0.4361 -0x18d45,CUS_0x961d,August,50,727-57-6857,Writer,87438.03,7354.5025,6,3,9.288361749,2,"Auto Loan, Mortgage Loan, and Credit-Builder Loan",,19.98532037,4.15,6,Standard,87.59073988,38.61964495,18 Years and 3 Months,NM,176.1426576,704.2938141,Low_spent_Medium_value_payments,554.9512393,0,-0.0614,1.5871,-1.204,-0.9552,-0.2947 -0x18d51,CUS_0x7960,August,36,910-40-6258,Lawyer,125179.95,10173.6625,4,3,9,0,,18.92599742,,1.74,6,Good,1533.689953,28.56951761,16 Years and 4 Months,No,0,350.0355291,!@9#%8,927.3307209,0,-0.4054,0.6449,-0.7789,-0.7587,1.2495 -0x18d5d,CUS_0x75ba,August,33,676-38-0279,Writer,20723.8,1611.983333,7,9,24.06745738,6,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, and Student Loan",46.94505676,25,18,7,Bad,4617.490954,32.86292688,12 Years and 5 Months,Yes,95.60595821,,High_spent_Small_value_payments,199.8858314,0,-0.8131,0.8934,0.3893,0.24,0.8867 -0x18d69,CUS_0x80ae,August,39,#F%$D@*&8,Mechanic,118151.16,9904.93,4,5,7.288361749,4,"Personal Loan, Student Loan, Home Equity Loan, and Payday Loan",20.68833859,18,4.41,1,Standard,643.56,29.24395045,16 Years and 6 Months,No,205.9680966,1258.36386,Low_spent_Medium_value_payments,226.0985044,0,1.2326,0.4274,-1.1542,0.8464,0.5796 -0x18d75,CUS_0x3b11,August,27,109-50-0031,Accountant,35854.31,,7,4,5264,5,"Personal Loan, Auto Loan, Student Loan, Debt Consolidation Loan, and Personal Loan",22.96275845,17,13.52,8,Standard,162.45,23.16335357,7 Years and 4 Months,Yes,125.87095,,Low_spent_Medium_value_payments,348.426799,0,0.5816,0.0917,-0.1245,-0.2162,0.3253 -0x18d81,CUS_0xb023,August,26,648-96-1414,Media_Manager,81259.36,,7,7,31,6,"Student Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",,23.02737234,5.08,14,_,2438.186458,26.04118026,,Yes,405.1977059,,High_spent_Large_value_payments,549.855639,0,-0.9328,1.0062,1.8993,-1.0199,-1.1867 -0x18d8d,CUS_0xc4ea,August,33,433-68-1467,Developer,13207.76,,7,5,9,4,"Student Loan, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",15.34793494,11,15.15,12,Standard,673.152252,39.0224853,,Yes,37.77977992,53.07234423,Low_spent_Medium_value_payments,277.2028619,0,-0.046,1.8698,-1.3288,0.2706,0.2589 -0x18d99,CUS_0x4eb3,August,80,988-54-9029,Entrepreneur,65544.12,5311.01,3,3,10,2,"Student Loan, and Debt Consolidation Loan",0,0,8.2,1,Good,1357.63,29.43138458,,No,71.71689333,170.7956443,High_spent_Medium_value_payments,538.5884624,0,-0.8787,2.8135,1.0519,1.8615,1.1429 -0x18da5,CUS_0x95c2,August,30,565-74-6364,Developer,33498.8,2567.566667,1,3,10,1,Home Equity Loan,15.68173612,9.565344791,0.63,4,Good,885.2390218,33.42360075,30 Years and 6 Months,No,27.36496513,123.5445607,Low_spent_Small_value_payments,395.8471409,0,-0.7378,1.9361,-1.0367,-0.0745,-1.7913 -0x18db1,CUS_0x7269,August,19,600-08-5407,Lawyer,35389.89,2700.1575,4,7,10,2,"Home Equity Loan, and Debt Consolidation Loan",15.87814709,13,11.79,2,Standard,873.71,33.04354685,31 Years and 3 Months,Yes,45.75135672,82.2839996,High_spent_Medium_value_payments,391.9803937,0,1.0006,-0.5321,0.03,-0.3082,-0.5195 -0x18dbd,CUS_0x269d,August,39,415-10-2620,Media_Manager,57810.68,,7,5,7,4,"Payday Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",26.4239697,16,3.37,8,_,1419.99,39.30218964,,No,131.8714819,393.6311363,Low_spent_Large_value_payments,234.1530485,0,-0.2333,0.6624,-0.3837,-1.4794,-0.7134 -0x18dc9,CUS_0x903a,August,37,702-75-9603,Doctor,17214.01,,8,6,20.06745738,8,"Auto Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Not Specified, Home Equity Loan, and Not Specified",26.06512925,18,3.12,10,Bad,2758.370954,31.61229114,11 Years and 9 Months,Yes,107.0378623,,!@9#%8,129.7608243,0,1.0268,-0.4265,-0.7748,1.2183,0.3362 -0x18dd5,CUS_0xb20f,August,49,139-28-1601,_______,133628.52,,3,1224,3,0,,13.78798154,12,3.88,7,Good,135.75,39.15136121,18 Years and 10 Months,No,0,250.7220586,High_spent_Medium_value_payments,1129.148941,0,-0.3772,1.0629,-0.2186,-0.1277,-1.2666 -0x18de1,CUS_0x73db,August,22,866-14-2424,Entrepreneur,81538.76,,9,7,18,5,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",35.11837085,21,23.77,10,_,3869.25,36.17742791,9 Years and 5 Months,Yes,897.0628499,288.7388427,!@9#%8,333.213454,0,0.4421,-1.0551,0.5854,-1.3669,0.8918 -0x18ded,CUS_0xb3b0,August,20,302-80-4643,Journalist,40626.05,3516.504167,1,4,4,3,"Payday Loan, Mortgage Loan, and Not Specified",9.68808069,9,-1.44,3,Good,68.18644132,33.00142979,17 Years and 9 Months,No,53.88119413,76.15356053,High_spent_Medium_value_payments,479.7273481,0,0.2205,1.0237,0.363,1.8838,-0.8084 -0x18df9,CUS_0x476d,August,40,811-49-0838,Developer,7710.84,927.57,10,6,4792,9,"Credit-Builder Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Home Equity Loan, Personal Loan, and Payday Loan",35.63304852,19,17.18,9,Bad,4179.239783,29.22443152,9 Years and 9 Months,Yes,40.77110514,,High_spent_Medium_value_payments,285.5198207,0,-0.9814,-1.2362,0.6441,2.6104,0.3403 -0x18e05,CUS_0x41f3,August,22,375-73-1499,Developer,73047.96,6253.33,5,7,15,3,"Personal Loan, Home Equity Loan, and Personal Loan",22.08470274,18.02788761,10.86,8,_,1512.417327,40.10237964,18 Years and 9 Months,Yes,117.5062763,,High_spent_Large_value_payments,621.3428464,0,-0.4697,0.9622,-0.3619,-0.281,0.8853 -0x18e11,CUS_0xa058,August,24,607-05-1842,Manager,25773.73,2359.810833,5,6,7.288361749,0,,,,9.01,5,_,33.96689694,31.22543099,16 Years and 5 Months,Yes,0,627.7483519,Low_spent_Medium_value_payments,308.1701924,0,1.4222,-2.0881,-0.2986,0.5712,0.9488 -0x18e1d,CUS_0x9074,August,31,866-84-7018,Manager,17685.73,,2,1,5,4,"Payday Loan, Mortgage Loan, Student Loan, and Auto Loan",10.03297626,12,2.53,3,Good,759.2581475,36.61736958,,No,38.53351101,210.8905844,Low_spent_Small_value_payments,216.6050229,0,-0.6937,-1.6012,-0.0363,-1.8848,-0.2883 -0x18e29,CUS_0x30eb,August,18,705-82-0366,Entrepreneur,31944.72,2417.06,4,4,11,5,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",26.92554046,20,15.91,6,Standard,629.3591015,34.18778914,9 Years and 2 Months,Yes,83.71397479,225.7861374,Low_spent_Large_value_payments,230.3659243,0,-0.9616,-1.1596,-0.1611,-1.5862,0.2891 -0x18e35,CUS_0x9f27,August,40,586-80-6673,Media_Manager,15005.31,,4,4,20,7,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Not Specified, Credit-Builder Loan, Payday Loan, and Not Specified",19.29151545,15.27090007,17.98,9,Standard,1235.811021,33.15717316,11 Years and 0 Months,Yes,66.83655665,,Low_spent_Small_value_payments,253.6001391,0,-0.1956,1.139,-1.9788,-0.1625,-0.4082 -0x18e41,CUS_0x7cb3,August,20,890-81-4409,Accountant,57563.94,4917.995,4,7,18,0,,,18,7.03,7,Standard,1443,26.68303135,17 Years and 8 Months,Yes,0,,Low_spent_Small_value_payments,155.1421301,0,-1.318,0.3815,2.0893,0.9729,0.722 -0x18e4d,CUS_0x8f1b,August,80,#F%$D@*&8,Musician,60323.34,,4,7,6,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",14.71679411,12,-1.93,2,_,600.73,37.22809159,29 Years and 4 Months,No,112.4468549,385.1767537,Low_spent_Small_value_payments,269.3708914,0,-0.6596,0.3238,0.2486,-1.8571,-0.302 -0x18e59,CUS_0x8be2,August,37,377-23-0938,Developer,56052.42,4293.785086,9,8,32,5,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Payday Loan",35.30622922,20,15.23,13,Bad,2466.56,25.52354178,,Yes,588.2399474,,Low_spent_Medium_value_payments,253.4832863,0,-0.5273,-0.945,1.0852,-0.7133,0.1778 -0x18e65,CUS_0xa6c1,August,26,#F%$D@*&8,Doctor,18374.32,,6,6,20,5,"Auto Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Student Loan",25.07908553,20.77374011,10.12,4,Standard,1893.207511,29.85063716,,Yes,50.15887184,90.42508697,!@9#%8,288.5353745,0,0.5999,1.2055,-1.2296,0.519,-0.0239 -0x18e71,CUS_0xc1db,August,28,471-05-7263,Musician,17951.3,1342.941667,3,4,4376,7,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Personal Loan, and Personal Loan",18.96776999,12,18.77,8,Standard,664.65,32.53260785,18 Years and 8 Months,Yes,62.69181676,54.50969368,!@9#%8,307.0926562,0,-0.88,0.3302,1.3865,0.7529,-0.1048 -0x18e7d,CUS_0x3e74,August,36,477-79-0846,Scientist,19047.36,,8,5,23,6,"Payday Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",40.01127997,29.10799228,20.81,15,Bad,3054.095594,32.77002401,12 Years and 0 Months,Yes,68.68685746,,Low_spent_Small_value_payments,247.4668901,0,1.0025,0.1955,0.8517,0.7685,0.6248 -0x18e89,CUS_0xc60a,August,26,451-63-9436,_______,103136.76,8613.73,0,6,12,0,,8.609971072,10,6.32,1,Good,330.98,28.40019221,25 Years and 9 Months,No,0,,High_spent_Small_value_payments,585.6796465,0,-0.1871,0.1655,0.7658,0.0265,-1.1702 -0x18e95,CUS_0x1d51,August,49,782-33-0423,Developer,69563.34,5738.945,1,4,2,3,"Debt Consolidation Loan, Auto Loan, and Mortgage Loan",6.602071772,8,5.94,3,Good,164.52,31.8769253,19 Years and 5 Months,No,137.7780674,89.74145251,High_spent_Medium_value_payments,596.3749801,0,0.511,-0.7249,0.7225,0.3906,-0.0217 -0x18ea1,CUS_0x4df6,August,42,920-71-9716,_______,16176.835,1585.069583,8,3,10,3,"Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",18.07432337,14,0.56,7,Standard,1200.7,39.74972778,20 Years and 4 Months,No,21.96218641,105.55714,Low_spent_Small_value_payments,320.9876319,0,-0.4147,0.5348,-0.869,1.3306,-0.7132 -0x18ead,CUS_0x7edc,August,18,300-94-7083,Engineer,40896.9,,5,3,18,3,"Auto Loan, Mortgage Loan, and Mortgage Loan",,13,10.19,7,Standard,365.97,35.31716284,27 Years and 5 Months,Yes,101.5216676,150.5597456,Low_spent_Large_value_payments,352.6260868,0,0.7294,0.4705,0.2864,0.7387,-0.7792 -0x18eb9,CUS_0x9d6b,August,50,738-56-1440,Accountant,21115.99,1730.665833,3,7,17,0,,26.39176232,18.97281074,14.28,4,_,519.0447793,31.37705619,32 Years and 4 Months,Yes,0,35.3520694,High_spent_Large_value_payments,377.7145139,0,-0.4328,-1.261,-1.296,-0.8939,0.7033 -0x18ec5,CUS_0xa7f3,August,30,821-77-6249,Teacher,83332.88,6667.406667,4,6,20,0,,23.50027387,17,11.6,8,Standard,292.99,28.14252288,20 Years and 3 Months,Yes,0,102.7039194,High_spent_Large_value_payments,804.0367472,0,-0.4076,-0.5574,0.7431,-0.7126,0.021 -0x18ed1,CUS_0x8588,August,35,822-09-0533,Doctor,144446.72,11874.22667,5,3,10,100,"Student Loan, and Auto Loan",17.20285873,13,4.26,3,Standard,1098.96,36.46792223,32 Years and 10 Months,No,176.439612,97.80393067,High_spent_Large_value_payments,1153.179124,0,1.0084,0.2724,-0.0821,0.5371,0.9047 -0x18edd,CUS_0x191f,August,50,072-38-6457,Developer,14957.52,,1275,6,12,1,Student Loan,12.18823181,9,4.64,4,Standard,1015.61,25.30476759,30 Years and 2 Months,No,8.390856356,54.59381576,Low_spent_Large_value_payments,345.7613279,0,-0.3951,-0.729,-0.286,1.2739,0.3317 -0x18ee9,CUS_0x4fd4,August,37,577-23-3211,Accountant,39110.82,,7,7,16.06745738,9,"Not Specified, Personal Loan, Personal Loan, Home Equity Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",,23.17774313,3.31,8,Bad,2989.561394,40.31241373,12 Years and 5 Months,Yes,289.668806,,Low_spent_Large_value_payments,46.49486587,0,1.1939,1.0734,0.3328,-0.6847,0.4317 -0x18ef5,CUS_0x6529,August,27,521-76-1377,Accountant,80595.48,6899.29,7,5,6,0,,,11,17.54,8,Standard,1261,39.50267421,17 Years and 8 Months,Yes,0,290.5680982,High_spent_Small_value_payments,659.3609018,0,-0.5111,-0.4961,0.0645,1.1371,-0.3708 -0x18f01,CUS_0x6a39,August,26,620-09-2390,Developer,87337.08,7441.09,6,7,18,0,,11.84445285,9.617924568,17.86,12,Standard,104.5565821,40.08595958,27 Years and 2 Months,Yes,0,376.3984681,Low_spent_Medium_value_payments,647.7105319,0,-2.0109,0.7766,-2.0862,2.1472,1.0246 -0x18f0d,CUS_0x3c0b,August,29,235-06-0085,Doctor,18331.415,,2,615,3,3,"Credit-Builder Loan, Student Loan, and Student Loan",15.39063258,,2.84,1,_,1012.22,35.71554603,29 Years and 5 Months,No,37.52529099,,Low_spent_Small_value_payments,194.5821695,0,-1.304,-1.844,0.3826,0.9427,1.0496 -0x18f19,CUS_0x32fb,August,52,396-21-7163,Doctor,55877.54,4477.461667,4,5,11,1,Personal Loan,15.0075463,11,10.38,8,Standard,592.24,34.05153095,22 Years and 8 Months,Yes,46.35492673,185.9002312,High_spent_Small_value_payments,475.4910088,0,-0.0427,-1.5135,-0.2577,0.0369,0.6495 -0x18f25,CUS_0xb692,August,42,824-48-9351,Journalist,29663.56,2715.963333,7,5,482,2,"Mortgage Loan, and Home Equity Loan",24.14510801,20,11.91,10,_,1915.89,28.27384379,18 Years and 2 Months,Yes,40.71075935,54.09519762,High_spent_Medium_value_payments,426.7903764,0,0.5996,-0.8535,0.8114,-0.6088,-1.6852 -0x18f31,CUS_0x9fe8,August,52,160-91-1987,Writer,31527.53,2853.294167,6,3,11,1,Student Loan,,10,3.38,3,Standard,1063.18,27.21008432,21 Years and 2 Months,No,16.26007402,147.039444,Low_spent_Large_value_payments,392.0298987,0,0.0527,0.6188,-0.5935,-0.2435,-0.0169 -0x18f3d,CUS_0x6084,August,23,908-30-6309,Teacher,14311.59,,1291,3,33,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Personal Loan, and Auto Loan",30.2226621,23.70438553,17.68,12,Standard,2279.598547,35.68309965,8 Years and 10 Months,Yes,51.5639087,,Low_spent_Small_value_payments,218.452129,0,-0.2498,-0.8318,1.0514,0.048,0.7149 -0x18f49,CUS_0x7a12,August,35,169-13-2683,Writer,75569.1,6458.425,3,7,7,0,,25.33655483,19,8.35,11,Standard,1159.55,34.59770966,16 Years and 9 Months,Yes,0,486.5565519,Low_spent_Large_value_payments,429.2859481,0,0.2913,-0.6285,-0.695,0.9814,0.4422 -0x18f55,CUS_0x7270,August,23,834-23-2429,Journalist,24859.96,,4,7,12,3,"Not Specified, Debt Consolidation Loan, and Auto Loan",11.96251716,11,11.02,2,Standard,407.48,29.26555079,28 Years and 3 Months,No,59.01474299,24.04169242,High_spent_Medium_value_payments,371.5098979,0,0.6686,-0.8504,0.47,1.5064,1.9412 -0x18f61,CUS_0x3606,August,22,162-34-3252,_______,164189.48,13485.45667,5,3,8.288361749,0,Student Loan,14.76602018,13,11.56,1,_,993.17,33.74750948,26 Years and 10 Months,No,37303,689.6457762,High_spent_Medium_value_payments,1256.131486,0,-1.2717,-0.1136,-1.1034,-0.4914,1.0787 -0x18f6d,CUS_0xbf8f,August,46,110-49-2510,Journalist,45848.86,3672.738333,8,5,11,2,"Student Loan, and Auto Loan",14.46479045,10,16.37,4,_,945.68,33.06396838,23 Years and 9 Months,Yes,50.62285479,223.2126265,High_spent_Small_value_payments,353.4383521,0,-1.066,-1.2751,-0.8823,0.6704,-1.0459 -0x18f79,CUS_0x961e,August,44,679-62-7861,Architect,34199.94,2730.995,4,7,19,2,"Student Loan, and Debt Consolidation Loan",,20,4.35,,_,1379.81,24.86641531,33 Years and 5 Months,Yes,50.40297721,166.6300978,Low_spent_Large_value_payments,326.066425,0,0.2984,-1.5086,-1.5731,1.5225,0.0632 -0x18f85,CUS_0x24cc,August,30,574-39-8582,Writer,36186.85,2797.570833,0,4,12,1,Mortgage Loan,10.91352414,8.176843322,7.21,5,_,825.3129358,25.31792213,29 Years and 10 Months,No,18.30934307,98.9845752,High_spent_Medium_value_payments,412.4631651,0,-0.4372,-1.9957,-0.4675,0.1151,-0.374 -0x18f91,CUS_0x1de9,August,26,798-92-6478,Architect,106002.32,8974.526667,4,4,13,4,"Debt Consolidation Loan, Mortgage Loan, Student Loan, and Payday Loan",21.26267947,17,8.64,0,_,332.47,26.07000068,21 Years and 10 Months,No,218.5836408,194.2721029,!@9#%8,724.596923,0,0.6186,-0.3911,0.0367,-1.8772,-0.2596 -0x18f9d,CUS_0xa5c2,August,31,345-77-5573,Musician,37824.96,2837.103753,3,6,3,4,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Mortgage Loan",14.2204199,12,3.09,,_,503.3446487,24.11590561,27 Years and 5 Months,No,382.1898664,54.63111602,High_spent_Medium_value_payments,396.97693,0,-0.4495,1.3517,1.5167,0.4543,0.4275 -0x18fa9,CUS_0x5353,August,32,#F%$D@*&8,Manager,9607.53,,2,2,22,5,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Personal Loan",16.86576196,12.95236408,7.63,8,Standard,2567.356276,28.14684917,17 Years and 6 Months,Yes,22.12554879,39.2225494,High_spent_Small_value_payments,296.9146518,0,-1.335,-0.2898,0.4761,-0.5742,0.0824 -0x18fb5,CUS_0x3bc3,August,45,860-49-3589,Journalist,92459.1,,3,3,9,2,"Not Specified, and Mortgage Loan",16.30806053,13,3.01,7,Standard,1148.084088,42.66875748,16 Years and 2 Months,No,142.7942843,189.0572901,High_spent_Small_value_payments,697.3393397,0,-0.4438,-0.9015,0.9334,-1.0234,-1.3992 -0x18fc1,CUS_0x5cd7,August,18,306-56-6615,Mechanic,68917.94,5498.161667,5,2,11,0,,,10,0.19,4,Good,1103.835944,36.61969644,17 Years and 11 Months,No,0,181.0473448,High_spent_Medium_value_payments,637.6431759,0,2.3373,0.0837,-0.0318,0.3092,-0.8042 -0x18fcd,CUS_0xc272,August,45,404-87-5591,Mechanic,75436.72,,7,9,18,7,"Payday Loan, Student Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Mortgage Loan",36.24366994,26.77459012,2.81,,Bad,2857.323107,31.01313733,13 Years and 9 Months,NM,329.6664584,383.6157325,Low_spent_Medium_value_payments,171.9571424,0,-1.0057,0.2159,-0.0233,-3.0127,0.407 -0x18fd9,CUS_0x33b6,August,80,175-88-4935,Accountant,28690.97,2657.914167,4,4,13,0,,10.58477539,9,12.28,10,Standard,839.77,37.24478192,18 Years and 2 Months,Yes,0,286.3756609,Low_spent_Small_value_payments,269.4157558,0,-1.1338,0.0317,0.0612,0.7969,1.1363 -0x18fe5,CUS_0x2d8c,August,38,316-30-8022,Musician,9464.405,,8,9,20.06745738,9,"Debt Consolidation Loan, Auto Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, and Not Specified",32.19936544,16,27.98,10,Bad,4037.890954,34.19485999,12 Years and 4 Months,Yes,64.82523998,45.36539023,Low_spent_Medium_value_payments,230.6591235,0,0.5317,0.0259,0.8136,-1.2137,0.0606 -0x18ff1,CUS_0x6863,August,29,933-44-8488,Journalist,64416.46,5494.038333,5,3,14,4,"Payday Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",12.91405432,11,9.03,,Standard,758.45,34.97155384,29 Years and 5 Months,NM,130.3821359,640.5453265,Low_spent_Small_value_payments,68.47637089,0,0.2449,-0.2192,-1.1276,-0.8269,-0.2782 -0x18ffd,CUS_0x2747,August,31,131-04-1216,Accountant,7991.33,,8,6,26.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",45.4219061,24,5.59,9,_,3093.500954,33.32279369,4 Years and 6 Months,Yes,43.36129547,,High_spent_Large_value_payments,238.4368947,0,-0.057,0.1803,0.9358,0.633,-0.1919 -0x19009,CUS_0x95a3,August,19,001-06-7616,Writer,7798.79,885.8991667,8,8,32.88954781,7,"Payday Loan, Auto Loan, Personal Loan, Personal Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",30.35667822,21.65571948,8.39,7,Standard,2539.949547,34.12390069,17 Years and 6 Months,Yes,1353.05166,29.51830055,Low_spent_Medium_value_payments,291.6898751,0,0.5319,0.2145,0.2811,-0.4601,0.6948 -0x19015,CUS_0x6b13,August,20,766-63-6764,Scientist,11949.505,774.7920833,6,6,18,2,"Personal Loan, and Debt Consolidation Loan",9.315287809,8,12.32,3,Standard,613.0977493,36.38903421,24 Years and 11 Months,Yes,19.88405276,34.17461276,High_spent_Medium_value_payments,278.2705275,0,0.2983,-1.2698,1.5561,-0.3181,-0.8005 -0x19021,CUS_0xabc1,August,18,963-46-6377,Media_Manager,32300.85,,6,5,12,3,"Student Loan, Student Loan, and Credit-Builder Loan",,,,0,Standard,258.3869256,33.45911725,30 Years and 0 Months,Yes,71.33363565,106.9828192,High_spent_Medium_value_payments,355.7886155,0,0.1957,0.9164,0.1462,1.6215,0.4732 -0x1902d,CUS_0x11c1,August,34,688-99-5258,Engineer,29902.22,2230.851667,6,3,12,3,"Payday Loan, Personal Loan, and Student Loan",13.83244503,13,9.57,0,Standard,533.71,38.32183056,,Yes,66.2103271,44.11332028,!@9#%8,352.7615193,0,-0.4657,0.6927,-0.795,0.3065,0.5227 -0x19039,CUS_0x6138,August,20,245-14-1659,Media_Manager,78096.39,6438.0325,8,5,10,2,"Personal Loan, and Student Loan",21.86193848,15,11.51,9,_,214.94,36.02412188,19 Years and 11 Months,Yes,85.91691569,10000,High_spent_Large_value_payments,647.0857955,0,-0.7589,1.4126,1.0448,0.6191,2.3327 -0x19045,CUS_0xb9e0,August,27,187-20-8020,Lawyer,56580.63,4660.0525,6,5,23,2,"Personal Loan, and Auto Loan",18.8515298,,14.98,12,Standard,1990.940797,28.76208739,6 Years and 8 Months,Yes,92.73864405,84.6524533,High_spent_Small_value_payments,548.6141526,0,-1.6236,-0.9068,-0.4755,1.2124,1.5961 -0x19051,CUS_0x91b2,August,34,779-31-9352,Manager,28472.92,,2,1,5285,4,"Home Equity Loan, Debt Consolidation Loan, Student Loan, and Personal Loan",3.673957889,5,7.69,7,Good,286.622151,35.29142665,24 Years and 11 Months,No,75.55976368,81.81126126,High_spent_Medium_value_payments,324.4374878,0,2.3699,1.4304,-0.288,0.2783,0.4221 -0x1905d,CUS_0x3896,August,21,217-87-3906,Lawyer,11183.865,,8,7,5,4,"Payday Loan, Student Loan, Payday Loan, and Home Equity Loan",9.525867091,8,0.59,3,_,304.5,39.18557126,25 Years and 4 Months,No,31.61086838,140.657677,Low_spent_Small_value_payments,224.4303296,0,-0.8135,-0.9484,-1.347,-0.6181,-0.6614 -0x19069,CUS_0x66fc,August,42,332-96-0334,_______,143829.16,12087.76333,7,7,18,4,"Not Specified, Student Loan, Debt Consolidation Loan, and Not Specified",,11,11.98,10,Standard,106.92,38.94400026,20 Years and 5 Months,NM,372.7950058,585.1756315,Low_spent_Large_value_payments,520.805696,0,0.6461,-1.1887,0.4962,-0.9158,-1.6868 -0x19075,CUS_0x8967,August,30,340-62-7778,Journalist,45827.74,,5,6,6,2,"Not Specified, and Credit-Builder Loan",9.532610861,8,2.33,2,_,978.02,26.97111228,28 Years and 3 Months,No,53.71124128,298.1999591,Low_spent_Small_value_payments,333.4866329,0,0.1043,0.8255,-1.0703,0.8491,0.8832 -0x19081,CUS_0xb0ca,August,33,320-74-7615,_______,20668.71,1993.3925,5,6,16,6,"Not Specified, Student Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",19.95593905,,11.3,8,Standard,2272.74,26.15041154,8 Years and 2 Months,Yes,73.81090347,,High_spent_Large_value_payments,325.6990834,0,-1.374,-0.2123,-1.7425,-0.0338,-0.3396 -0x1908d,CUS_0xa940,August,47,242-85-8189,Journalist,10316.45,811.7041667,7,5,12,3,"Auto Loan, Payday Loan, and Personal Loan",9.8295785,11,1.63,6,_,166.0404664,30.12709357,25 Years and 4 Months,No,17.47116053,73.87068484,!@9#%8,288.6273793,0,0.2991,-1.2352,0.4513,2.0225,0.8862 -0x19099,CUS_0x51c,August,24,196-86-6440,Scientist,20785.41,,5,4,15,3,"Credit-Builder Loan, Personal Loan, and Not Specified",15.92444546,14,12.03,0,_,420.31,26.37920623,22 Years and 10 Months,Yes,37.3632427,117.6834974,Low_spent_Small_value_payments,317.2650099,0,-0.9643,-0.935,0.9714,-0.2275,-0.9396 -0x190a5,CUS_0x8b91,August,32,462-93-2900,Lawyer,16481.715,,7,3,15,6,"Payday Loan, Not Specified, Student Loan, Student Loan, Auto Loan, and Student Loan",6.693087387,8,16.59,8,Standard,145.32,33.80127666,9 Years and 11 Months,Yes,66.68122194,79.50862566,Low_spent_Large_value_payments,277.5577774,0,-0.1829,0.8534,0.4811,-0.1265,-0.0842 -0x190b1,CUS_0x65aa,August,33,990-78-3822,Journalist,16826.495,,5,7,20,100,"Payday Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",24.87610926,18,7.12,8,Standard,464.4,38.28660991,14 Years and 4 Months,Yes,39.6718144,83.99733337,Low_spent_Small_value_payments,321.8516439,0,0.3893,-0.3806,0.6335,-1.6134,0.0791 -0x190bd,CUS_0x5107,August,26,582-10-2127,Teacher,9622.625,,5,5,16,5,"Student Loan, Not Specified, Mortgage Loan, Payday Loan, and Credit-Builder Loan",,10,18.07,5,Standard,1836.2,39.84704114,,Yes,29.79956294,46.70298431,Low_spent_Small_value_payments,304.0859944,0,0.9693,-0.5295,0.4162,2.3865,-0.9949 -0x190c9,CUS_0x22d4,August,46,167-27-4056,Doctor,17059.21,1574.600833,9,5,26,4,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",27.85403085,20.19217419,8.57,16,_,2724.891441,24.74444524,12 Years and 5 Months,Yes,30.96434888,84.70748289,Low_spent_Small_value_payments,331.7882516,0,-0.4664,-0.7109,0.2986,-1.2376,0.9388 -0x190d5,CUS_0x7e8d,August,35,162-25-0998,Media_Manager,39369.68,3044.806667,8,7,33,7,"Student Loan, Mortgage Loan, Not Specified, Personal Loan, Credit-Builder Loan, Student Loan, and Student Loan",22.36795813,17,29.88,15,Bad,3290.93,36.71166785,9 Years and 2 Months,Yes,152.554322,168.4399321,!@9#%8,263.4864126,0,-0.2115,-1.7174,0.2164,-0.2259,0.7286 -0x190e1,CUS_0xbed7,August,19,216-77-4563,Lawyer,18490.14,,6,9,34.95700519,7,"Student Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, and Home Equity Loan",35.89957842,22,21.29,12,Bad,3814.320954,27.74903782,2 Years and 6 Months,Yes,1415.575503,131.7962313,Low_spent_Medium_value_payments,173.162396,0,2.3254,-0.4577,-0.0358,-2.0655,-0.8065 -0x190ed,CUS_0x9444,August,18,293-47-2287,Manager,19556.16,1865.68,7,7,34.06745738,5,"Auto Loan, Auto Loan, Student Loan, Personal Loan, and Auto Loan",30.04417091,18.05231539,21.55,9,_,3381.989732,29.82817767,5 Years and 3 Months,NM,65.79736994,193.0372445,Low_spent_Medium_value_payments,181.0130976,0,-0.0534,0.6515,1.0952,3.3693,-0.0292 -0x190f9,CUS_0x8fe6,August,37,129-64-0240,Media_Manager,19396.5,,9,10,24,5,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",32.53948775,21,,10,Bad,2552.26,25.71202384,7 Years and 11 Months,Yes,64.71187995,81.45645096,Low_spent_Medium_value_payments,277.9691691,0,0.5723,0.6541,-0.2098,1.4177,-0.5782 -0x19105,CUS_0x25f6,August,19,781-55-7343,Mechanic,20417.48,,9,5,35.06745738,8,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",43.39537791,24.74103437,24.53,8,Bad,3392.19556,28.06533211,12 Years and 6 Months,Yes,125.2274308,21.66759793,High_spent_Large_value_payments,264.2060389,0,-1.4321,0.8541,-1.2653,0.5645,0.141 -0x19111,CUS_0x7d2c,August,22,633-08-0119,Manager,76689.8,,3,6,8,6,"Credit-Builder Loan, Not Specified, Personal Loan, Home Equity Loan, Personal Loan, and Personal Loan",13.42388654,14.43484869,19.7,6,Standard,1270.367221,28.57980634,8 Years and 0 Months,NM,217.6130429,140.0048148,High_spent_Medium_value_payments,560.7638089,0,0.1418,0.8771,-0.3527,1.3216,-1.5703 -0x1911d,CUS_0xaab3,August,23,701-00-3430,Doctor,14759.53,,6,6,26,6,"Credit-Builder Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",43.92545832,21.23979088,29.02,8,Bad,5499.851276,27.63245432,12 Years and 9 Months,Yes,67.79318563,64.9745678,Low_spent_Medium_value_payments,286.7283299,0,0.0192,2.2797,1.9596,0.6338,-1.5601 -0x19129,CUS_0x28d0,August,26,104-04-7236,Writer,16293.385,,2,1,6,0,,0,2,5.21,2,Good,1045.066841,37.24869231,20 Years and 4 Months,NM,0,36.2643115,High_spent_Medium_value_payments,333.4766297,0,-0.4198,-0.4896,0.1605,-0.5938,0.1721 -0x19135,CUS_0x3e2c,August,33,518-50-0395,Architect,43995.49,3927.290833,4,5,5,0,,,8.229749637,2.74,7,Good,981.9323693,23.04500876,25 Years and 10 Months,No,0,160.6492423,Low_spent_Large_value_payments,502.079841,0,1.101,-0.586,2.0656,-2.3198,-0.6963 -0x19141,CUS_0x2bb2,August,31,488-59-9418,Musician,57864.6,4559.05,7,7,12.28836175,2,"Debt Consolidation Loan, Mortgage Loan, and Not Specified",13.062879,12,17.16,4,Standard,539.17,27.35006501,31 Years and 5 Months,Yes,75.02216001,751.6456571,Low_spent_Small_value_payments,339.1746439,0,0.6661,-0.0932,-1.0649,1.0418,-0.1792 -0x1914d,CUS_0xbae9,August,31,348-98-9125,Scientist,106520.68,8789.723333,4,4,12.28836175,2,"Mortgage Loan, and Home Equity Loan",20.94026146,19,12.39,8,Standard,653.6,36.92685881,14 Years and 11 Months,Yes,98.33781177,,Low_spent_Small_value_payments,300.5707761,0,0.608,-0.1595,2.0037,-0.5719,0.3897 -0x19159,CUS_0xa2db,August,24,233-22-7758,Engineer,16956.72,1696.06,5,5,14.06745738,6,"Auto Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",,8,18.24,4,_,1992.110639,31.29734122,7 Years and 0 Months,Yes,78.22574077,,!@9#%8,184.2781279,0,-0.7956,0.5021,0.4708,0.122,-0.49 -0x19165,CUS_0x6cc4,August,43,070-13-3774,Mechanic,52830,4506.5,6,5,30,100,"Not Specified, Personal Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Mortgage Loan, and Personal Loan",35.73808939,21.72327091,4.99,10,Bad,1837.069423,40.63641773,14 Years and 9 Months,Yes,369.4844281,,Low_spent_Medium_value_payments,173.7172313,0,1.0373,-0.0256,0.0874,-1.0316,-0.0997 -0x19171,CUS_0x4601,August,28,777-38-8416,Media_Manager,50600.01,3923.6675,8,8,18.88954781,100,"Mortgage Loan, and Credit-Builder Loan",,25.0931925,6.4,15,_,1918.679527,35.68514091,13 Years and 0 Months,Yes,1374.509092,,High_spent_Large_value_payments,507.505613,0,0.8166,0.0853,0.36,-0.4477,0.4927 -0x1917d,CUS_0x3a7e,August,53,350-16-4497,Architect,67818.86,5373.571667,3,3,6,3,"Payday Loan, Student Loan, and Not Specified",5.855003771,9,8.89,9,_,41.14453554,24.49090339,30 Years and 11 Months,No,109.9666214,375.994892,High_spent_Small_value_payments,359.4356342,0,-1.3707,0.1156,0.4721,-0.6635,1.0682 -0x19189,CUS_0xfcb,August,24,765-35-2455,Lawyer,10805.56,627.4633333,5,6,15,2,"Not Specified, and Mortgage Loan",24.12069692,16,4.29,2,_,298.98,38.34901186,18 Years and 0 Months,No,13.16185999,36.9083761,Low_spent_Small_value_payments,302.6760972,0,-0.5976,0.458,0.0111,0.3783,-0.1888 -0x19195,CUS_0x9d0b,August,26,803-50-3658,Engineer,83210.28,,4,7,17,2,"Auto Loan, and Home Equity Loan",9.759009379,11,12.5,8,Standard,1001.02,31.8733604,16 Years and 6 Months,NM,122.0082486,244.7745882,High_spent_Medium_value_payments,588.3361632,0,-0.0698,1.8173,0.0505,-0.5259,-0.8781 -0x191a1,CUS_0x7a2d,August,35,439-03-4945,Journalist,19975.13,,8,6,18,4,"Not Specified, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",16.83019279,15,5.09,8,_,643.23,35.64919744,16 Years and 8 Months,No,36.27877044,32.63934149,High_spent_Small_value_payments,337.7413047,0,1.1736,-0.0046,-0.2435,0.4409,-1.2801 -0x191ad,CUS_0x7bad,August,45,502-87-6974,Writer,77672.34,,3,1,2,3,"Student Loan, Not Specified, and Student Loan",9.512856637,7,,3,Good,813.2,27.29536402,21 Years and 11 Months,No,139.071777,245.0742955,High_spent_Small_value_payments,552.5234275,0,-0.5573,1.2504,-1.155,-0.0538,0.2881 -0x191b9,CUS_0x3101,August,18,731-31-7428,Musician,70097.54,5850.461667,5,5,20,1,Debt Consolidation Loan,16.71456955,9,13.02,7,Standard,229.36,26.38279132,30 Years and 8 Months,Yes,53.38330127,207.4157766,Low_spent_Large_value_payments,594.2470888,0,0.5717,1.5902,-1.7288,-1.3919,-1.2226 -0x191c5,CUS_0x5d0c,August,28,133-75-8141,Lawyer,52639.65,4618.6375,3,6,9,4,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",14.85527019,9.386227936,9,6,Standard,1610.877187,31.76556645,10 Years and 10 Months,Yes,109.9534706,450.0199782,Low_spent_Small_value_payments,191.8903012,0,-0.4224,-1.5593,-0.3423,0.1196,0.2926 -0x191d1,CUS_0x5391,August,29,830-09-1776,Manager,62827.47,5441.6225,4,7,16,1,Credit-Builder Loan,,13,10.77,4,Standard,1031.09,40.74836629,17 Years and 9 Months,No,39.06519725,48.22505362,High_spent_Large_value_payments,696.8719991,0,-0.8568,0.0455,-0.0203,1.2639,1.027 -0x191dd,CUS_0xb8e9,August,44,634-98-9559,Developer,37443.81,2990.3175,5,2,2,100,"Mortgage Loan, Student Loan, and Credit-Builder Loan",,5,4.19,1,Good,1027.709255,39.71654649,22 Years and 9 Months,No,82.76438274,120.2959379,High_spent_Medium_value_payments,364.2505157,0,-1.0453,-0.418,-1.1547,-0.4288,-0.4353 -0x191e9,CUS_0xb132,August,20,363-21-7557,Doctor,15135.96,1300.33,4,3,23.06745738,2,"Auto Loan, and Not Specified",,15.28145626,,9,Standard,2439.102934,28.99116699,6 Years and 2 Months,Yes,23.03452455,155.4165448,Low_spent_Small_value_payments,214.8616427,0,1.1374,-0.3353,-0.3011,-2.3274,0.1319 -0x191f5,CUS_0x8d19,August,55,267-39-6802,Entrepreneur,25990.16,,4,6,14,1,Home Equity Loan,11.2524496,8,3.59,1,Standard,460.78,23.14211424,24 Years and 8 Months,No,16.95400963,198.5606786,Low_spent_Large_value_payments,273.8699785,0,-0.951,0.8864,0.5924,-0.9641,0.6852 -0x19201,CUS_0x5334,August,25,163-32-8176,Manager,80230.68,6501.89,4,5,31,2,"Debt Consolidation Loan, and Payday Loan",8.579997794,10,16.42,7,Standard,2696.61,28.33908726,14 Years and 8 Months,NM,100.0622811,646.3749221,Low_spent_Medium_value_payments,183.7517968,0,-0.0658,-0.8453,-1.1904,-0.1683,-1.6044 -0x1920d,CUS_0x3213,August,40,085-55-1713,Media_Manager,88402.96,7497.913333,4,5,6,0,,,8,15.48,2,Standard,885.12,40.33469492,31 Years and 11 Months,NM,0,145.3583834,High_spent_Large_value_payments,844.4329499,0,-1.6061,0.1902,-0.4841,0.6955,-1.1306 -0x19219,CUS_0xb05b,August,24,232-48-0599,Developer,106529.8,8906.483333,4,3,16,0,,19.08620474,17,,4,Standard,1488.37,30.24836855,24 Years and 11 Months,Yes,0,201.4306689,High_spent_Large_value_payments,929.2176645,0,-0.1869,-0.7903,0.6446,0.8621,0.4926 -0x19225,CUS_0x3ea4,August,50,029-60-8658,Writer,39491.26,3129.938333,7,5,9,0,,,13,1.1,3,Standard,730.89,28.55744157,18 Years and 9 Months,Yes,0,67.00924936,High_spent_Large_value_payments,485.984584,0,0.6474,-1.2868,0.0982,-1.1414,0.491 -0x19231,CUS_0x417b,August,38,771-62-0762,Developer,29777.3,2530.441667,10,10,31,5,"Payday Loan, Mortgage Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",,18.83862788,2.77,16,Bad,2111.111295,34.368244,6 Years and 10 Months,NM,13088,30.08294475,High_spent_Large_value_payments,357.1370895,0,-0.1693,1.8261,-0.2428,-0.9271,1.0268 -0x1923d,CUS_0x57c7,August,23,076-99-9914,Writer,74961.72,6421.81,5,6,16,4,"Credit-Builder Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",4.484635521,8,17.9,11,Standard,2158.3,38.34879305,9 Years and 11 Months,Yes,203.6268603,42.46345782,High_spent_Large_value_payments,636.0906819,0,1.2521,1.2501,-1.1802,0.2449,0.4786 -0x19249,CUS_0x6b8d,August,41,670-82-4845,Media_Manager,39979.96,3101.658457,6,5,13,2,"Student Loan, and Auto Loan",23.7377087,19,5.5,5,_,768.55,34.8728761,22 Years and 6 Months,NM,336.4810053,225.0932589,Low_spent_Large_value_payments,318.8969457,0,0.5788,-0.6351,-0.0218,-1.1704,1.879 -0x19255,CUS_0x8fa0,August,49,#F%$D@*&8,Architect,72412.84,5913.403333,7,4,5,2,"Home Equity Loan, and Mortgage Loan",,10,11.95,3,Standard,1062.1,29.42098073,,Yes,66.74648372,,High_spent_Medium_value_payments,597.1022447,0,0.3763,-0.6369,-1.9497,0.8895,-0.5172 -0x19261,CUS_0x5d50,August,34,560-98-6722,_______,34486.08,2914.84,5,6,10,3,"Personal Loan, Payday Loan, and Debt Consolidation Loan",3.149146126,4,3.39,3,Good,1423.18,25.3359242,,No,67.97279467,,!@9#%8,352.7288018,0,0.3844,0.1262,-0.5465,-0.2214,0.1014 -0x1926d,CUS_0xc459,August,54,352-52-2652,Media_Manager,36966.76,,5,3,13,0,,18.31290043,,11.42,,Standard,1188.75,23.73999243,22 Years and 0 Months,No,0,55.69317867,High_spent_Small_value_payments,491.8631547,0,-1.7793,-0.21,-1.3004,-0.269,0.1168 -0x19279,CUS_0x8698,August,35,488-61-8806,Scientist,12875.73,,6,5,15,4,"Payday Loan, Mortgage Loan, Student Loan, and Auto Loan",,19,0.57,1,Standard,52.94,41.33734851,29 Years and 3 Months,No,39.65818842,21.84801492,!@9#%8,270.3915467,0,1.328,0.1319,1.6835,-0.4345,0.0447 -0x19285,CUS_0x1ac9,August,30,815-80-6961,_______,12860.845,966.7370833,3,7,8,0,,23.87436032,17,10.55,4,Standard,209.28,33.63203605,28 Years and 5 Months,No,0,92.01152678,Low_spent_Small_value_payments,294.6621816,0,-1.2286,1.929,-1.0606,0.5469,-1.2766 -0x19291,CUS_0x6950,August,55,022-35-6033,Architect,22283.07,,4,4,17,3,"Debt Consolidation Loan, Mortgage Loan, and Student Loan",23.6603575,17,11.56,2,Standard,160.38,37.70853949,21 Years and 11 Months,Yes,52.13573637,,Low_spent_Small_value_payments,264.8345417,0,-1.2916,-1.7622,-0.8113,-0.5874,1.8752 -0x1929d,CUS_0x5d43,August,25,891-78-5847,Musician,124296.27,,5,2,10,4,"Auto Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",11.18239648,12,8.44,6,Good,294.6663718,25.76518356,27 Years and 11 Months,No,397.686069,,High_spent_Small_value_payments,277.740051,0,-1.1857,-1.0736,0.5411,-0.6577,-0.2834 -0x192a9,CUS_0xc475,August,18,997-76-8029,Architect,36898.38,3062.865,10,10,25.88954781,9,"Auto Loan, Debt Consolidation Loan, Not Specified, Student Loan, Personal Loan, Student Loan, Auto Loan, Personal Loan, and Student Loan",,20,27.73,10,Bad,3497.36,40.13251824,9 Years and 6 Months,Yes,1582.592059,,Low_spent_Large_value_payments,64.80157931,0,-0.5512,-1.0035,-0.0683,-0.1608,1.4975 -0x192b5,CUS_0xb4ca,August,33,436-70-4761,Writer,34319.66,,10,8,23.95700519,7,"Debt Consolidation Loan, Auto Loan, Student Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",,22.85712622,21.47,10,Bad,4892.944091,33.97771243,2 Years and 5 Months,Yes,1511.959248,,High_spent_Small_value_payments,206.1195093,0,-0.4836,0.4851,-0.7712,-0.4231,-0.2554 -0x192c1,CUS_0x1924,August,36,043-02-7839,Mechanic,17273.83,,4,3,8,1,Payday Loan,1.020907654,4,9.68,5,Good,193.9039436,36.13739524,,No,9.457421887,82.31522978,Low_spent_Medium_value_payments,326.7738373,0,-0.4367,-0.1934,1.3362,0.1479,0.8475 -0x192cd,CUS_0xb9bd,August,42,702-26-0572,Entrepreneur,32265.26,2673.771667,4,4,18,4,"Not Specified, Payday Loan, Credit-Builder Loan, and Payday Loan",,9,10.17,7,Standard,105.11,36.68165209,20 Years and 9 Months,Yes,64.44633574,,Low_spent_Small_value_payments,131.6866244,0,0.1951,-1.6733,0.6577,0.6491,-0.2168 -0x192d9,CUS_0x4d35,August,54,398-10-5759,_______,29988.93,2753.0775,5,5,3,100,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",7.740251998,9,3.28,5,Good,1161.294636,23.12866585,22 Years and 9 Months,No,52.58547444,,Low_spent_Small_value_payments,259.5931272,0,0.9693,-0.2663,0.7599,-0.0061,-0.8932 -0x192e5,CUS_0x2d50,August,39,105-96-2612,Architect,32078.72,2874.226667,6,5,2852.067457,9,"Mortgage Loan, Auto Loan, Not Specified, Payday Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",,20,26.24,10,Bad,2779.530954,32.04014863,13 Years and 6 Months,Yes,146.6823466,10000,High_spent_Small_value_payments,274.9297965,0,0.3664,-0.5686,-1.6336,-0.4091,0.2605 -0x192f1,CUS_0x18b9,August,27,643-82-1615,Engineer,10265.69,1112.474167,9,7,25.06745738,9,"Payday Loan, Home Equity Loan, Not Specified, Personal Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",,26.84453831,0.68,12,Bad,1897.346996,31.04215472,,Yes,48.41163874,52.96553301,Low_spent_Small_value_payments,273.149957,0,-0.7721,1.3947,-0.6472,0.1293,0.4176 -0x192fd,CUS_0x1585,August,22,168-46-0002,Media_Manager,18426.025,,6,6,14,6,"Not Specified, Home Equity Loan, Payday Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",,19,9.67,9,Standard,364.1,38.23391523,12 Years and 9 Months,Yes,78.42828579,55.72311537,!@9#%8,297.1988072,0,0.6331,1.1161,-0.7084,-0.0905,0.4063 -0x19309,CUS_0xa59d,August,38,#F%$D@*&8,Architect,17756.42,,7,3,33.06745738,5,"Auto Loan, Not Specified, Student Loan, Payday Loan, and Student Loan",22.86965951,13.39010675,16.34,8,Standard,3178.110803,35.15637973,15 Years and 11 Months,Yes,71.82655791,190.8982794,Low_spent_Small_value_payments,163.6250414,0,0.1994,-1.3143,0.6387,0.0389,0.6714 -0x19315,CUS_0x7d44,August,50,285-06-1059,Entrepreneur,34689.26,,7,3,18,0,,18.60795098,15,7.55,3,Standard,430.6,29.74212547,27 Years and 5 Months,Yes,0,224.0547195,Low_spent_Small_value_payments,326.8224471,0,0.149,0.6835,-0.6835,-0.0774,-0.5355 -0x19321,CUS_0xaaae,August,46,913-85-7120,Accountant,42735.93,3632.3275,7,7,21,5,"Not Specified, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",23.60635047,20.65581314,10.06,5,_,1589.804126,26.98171638,14 Years and 11 Months,Yes,152.4964376,76.16646857,High_spent_Medium_value_payments,384.5698438,0,0.3701,-2.1096,-0.229,-0.1368,-0.9219 -0x1932d,CUS_0x419a,August,40,589-09-3413,Mechanic,63851.24,,8,4,19,2,"Auto Loan, and Debt Consolidation Loan",21.7315118,18,8.94,7,Standard,2061.5,27.68071643,12 Years and 5 Months,Yes,78.33983614,198.9550524,High_spent_Medium_value_payments,505.5987781,0,1.1029,1.209,0.9763,1.2662,0.2958 -0x19339,CUS_0xbc33,August,45,272-13-8046,Entrepreneur,47400.2,,8,7,5,0,,14.51271964,9,11.88,5,Standard,465.95,23.51396795,27 Years and 5 Months,Yes,0,166.1489222,!@9#%8,533.0527444,0,0.7771,0.2167,-1.1475,0.5146,-0.9051 -0x19345,CUS_0x261d,August,18,897-84-1025,Architect,8400.715,418.0595833,8,10,29,4,"Student Loan, Auto Loan, Payday Loan, and Mortgage Loan",30.05155093,22,8.08,10,Bad,1414.23,26.71346983,17 Years and 4 Months,Yes,19.65840271,10000,Low_spent_Small_value_payments,256.7880286,0,-0.3282,0.8615,-0.8387,-0.6572,0.7679 -0x19351,CUS_0x912e,August,21,319-33-7118,Developer,83164.8,6942.4,4,5,9,4,"Not Specified, Not Specified, Auto Loan, and Student Loan",,14,13.9,11,Standard,544.54,42.10852099,29 Years and 2 Months,Yes,222.7160677,110.6165357,High_spent_Large_value_payments,600.9073967,0,-0.2958,-0.8243,1.8195,-1.4142,-0.101 -0x1935d,CUS_0xa05,August,21,246-60-3653,Media_Manager,18949.07,,10,9,30.06745738,5,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, and Not Specified",32.93401396,18,16.57,8,Bad,4678.170954,30.28268482,9 Years and 0 Months,Yes,55.6778299,80.07832908,High_spent_Small_value_payments,253.7324697,0,0.2748,-0.4805,-2.2703,0.593,-0.1593 -0x19369,CUS_0x9336,August,33,497-64-5099,Teacher,56539.04,4780.586667,7,6,16,6,"Payday Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",44.25583288,27.53330322,8.42,13,Bad,2065.267276,26.93326739,19 Years and 8 Months,Yes,231.308224,,High_spent_Large_value_payments,367.7545599,0,1.0268,-0.314,-1.1022,1.005,-1.3595 -0x19375,CUS_0x6e35,August,31,376-87-7527,Engineer,36104.82,3294.735,6,6,16,5,"Personal Loan, Home Equity Loan, Student Loan, Personal Loan, and Mortgage Loan",25.7224879,20.31922186,16.84,9,Standard,2398.060017,35.62060321,,Yes,103.0447958,126.941968,Low_spent_Small_value_payments,389.4867362,0,-1.1715,0.1644,0.1326,-1.2269,1.0477 -0x19381,CUS_0x18a2,August,25,060-44-9617,Developer,18769.1,,5,3,21,7,"Student Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Student Loan, Personal Loan, and Not Specified",,26.56934298,15.87,10,Standard,2941.127237,36.33292277,14 Years and 4 Months,NM,81.02132581,,High_spent_Large_value_payments,269.0073805,0,-1.3835,-0.5065,-0.7095,-0.444,1.738 -0x1938d,CUS_0xccc,August,25,467-79-3610,Doctor,40193.94,3403.495,4,1,6,4,"Personal Loan, Payday Loan, Personal Loan, and Personal Loan",0,3,7.4,1,Good,967.5,32.54587271,25 Years and 9 Months,No,84.36453065,220.1570869,High_spent_Small_value_payments,295.8278824,0,-0.6154,0.5288,1.0463,-0.6736,-0.576 -0x19399,CUS_0x3fe1,August,18,834-26-5561,Teacher,19685.13,1857.4275,6,8,30,8,"Student Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Personal Loan, and Payday Loan",31.18683171,21.62593628,15.65,14,Bad,4884.213195,25.15754798,11 Years and 8 Months,Yes,80.35282517,174.8200574,Low_spent_Small_value_payments,220.5698675,0,-0.1102,1.1017,-0.1819,0.8998,0.0758 -0x193a5,CUS_0x8ac5,August,21,590-17-9851,Scientist,77104.47,6571.3725,3,7,5.288361749,4,"Personal Loan, Student Loan, Personal Loan, and Mortgage Loan",17.17917861,15,4.29,4,Standard,96.16141667,30.39561263,22 Years and 5 Months,Yes,177.0176169,556.8001724,High_spent_Large_value_payments,601.8752921,0,-0.9084,-0.7806,-0.4754,0.1162,-0.245 -0x193b1,CUS_0x77ff,August,21,062-89-1690,Writer,61211.96,4858.996667,7,9,26.06745738,7,"Payday Loan, Auto Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Not Specified",,20.26829352,20.12,7,Bad,3575.447203,38.027383,9 Years and 4 Months,Yes,200.3202837,154.2914718,Low_spent_Large_value_payments,374.5676232,0,1.2992,0.5091,0.7178,-0.8327,-0.0183 -0x193bd,CUS_0x41a,August,52,397-17-7108,Entrepreneur,27759.32,,8,6,8.288361749,100,Payday Loan,90,4293,8.35,5,Standard,245.3,27.013838,,No,15.54872634,692.5101715,Low_spent_Small_value_payments,243.8062299,0,-0.9553,-2.2815,1.5663,1.6925,-0.3266 -0x193c9,CUS_0xc60e,August,80,654-21-9706,Journalist,31722.09,,7,5,8.288361749,0,Home Equity Loan,15.58404034,15,1.74,5,Good,366.1236896,37.16249845,31 Years and 5 Months,No,25.43561404,479.0806712,High_spent_Large_value_payments,421.782901,0,-0.4776,0.5781,-1.5413,-0.5363,0.0662 -0x193d5,CUS_0x2444,August,22,983-43-5441,Teacher,113384.82,9507.735,2,960,8,3,"Payday Loan, Auto Loan, and Debt Consolidation Loan",20.53718382,,10.41,3,Good,751.7517232,39.34119108,23 Years and 4 Months,No,149.6177184,313.1403394,High_spent_Medium_value_payments,738.0154422,0,-0.1244,-0.4436,1.258,-0.4455,-0.4207 -0x193e1,CUS_0x5395,August,45,041-85-1396,Lawyer,21426.13,,5,3,13,4,"Mortgage Loan, Not Specified, Not Specified, and Student Loan",8.298762771,9,6.71,3,Standard,1128.903118,28.65136327,,No,54.22919306,19.14749757,High_spent_Large_value_payments,325.3563704,0,0.2554,0.6938,0.282,-1.1732,-0.009 -0x193ed,CUS_0x432,August,25,#F%$D@*&8,Writer,14180.48,956.7066667,6,7,21,6,"Personal Loan, Auto Loan, Mortgage Loan, Student Loan, Auto Loan, and Credit-Builder Loan",,20.39429324,27.69,10,Bad,3608.485902,37.08125215,13 Years and 5 Months,Yes,50.05075873,,Low_spent_Small_value_payments,211.438728,0,-0.4269,-0.2975,-1.5159,-0.4576,1.0143 -0x193f9,CUS_0x23dd,August,47,117-06-4475,Manager,29819.42,,7,5,16,4,"Personal Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,9,9.64,8,Standard,1379.69,26.25691277,25 Years and 4 Months,No,89.16341871,48.56431036,!@9#%8,353.6674376,0,0.7572,-0.1542,0.4305,-1.911,1.779 -0x19405,CUS_0xae60,August,31,024-26-9203,Lawyer,71676,5921,5,4,18,2,"Home Equity Loan, and Mortgage Loan",16.44576203,12.91956088,9.27,3,_,1270.208257,23.92388707,22 Years and 11 Months,No,73.45520242,310.7311671,!@9#%8,497.9136305,0,0.1274,0.8891,-0.1424,0.056,0.4493 -0x19411,CUS_0x7ed7,August,54,115-40-4075,Engineer,40067.96,3373.212108,0,4,4,100,,7.627979073,10,3.45,0,_,370.9277984,26.98654188,16 Years and 10 Months,No,246.7845589,517.9302451,Low_spent_Small_value_payments,186.5101297,0,-0.6925,0.9472,-1.9154,0.6607,-1.1494 -0x1941d,CUS_0x1015,August,27,810-97-7024,Journalist,46951.02,3725.585,7,4,16,0,,8.831146443,9,15.83,9,Standard,313.0047111,38.68223175,21 Years and 5 Months,NM,0,486.093397,Low_spent_Small_value_payments,225.1245054,0,1.8359,0.2119,-0.9635,-0.5033,0.1593 -0x19429,CUS_0x682e,August,80,130-71-2530,Teacher,131701.12,10704.09333,6,7,773.2883617,2,"Home Equity Loan, and Not Specified",16.44226588,14,9.97,9,Standard,1263.18,33.7524821,15 Years and 5 Months,Yes,150.6129213,494.0618619,High_spent_Large_value_payments,1085.672011,0,0.6908,0.6527,0.5478,-0.0568,0.6642 -0x19435,CUS_0x49b9,August,41,075-68-1286,Entrepreneur,71617.92,6009.16,8,9,19.88954781,6,"Credit-Builder Loan, Home Equity Loan, Personal Loan, Personal Loan, Student Loan, and Auto Loan",33.91934686,16,25.51,8,Bad,3466.45,39.47536239,8 Years and 5 Months,Yes,1588.222901,,Low_spent_Large_value_payments,248.5820512,0,-1.1404,-0.0125,-0.6545,1.8995,0.9484 -0x19441,CUS_0x6478,August,23,559-08-4955,Manager,17196.44,1438.036667,3,8,19,3,"Auto Loan, Not Specified, and Student Loan",28.45374481,20,16.31,10,Standard,1310.39,34.50213273,7 Years and 0 Months,Yes,29.9863932,41.33199586,High_spent_Small_value_payments,332.4852776,0,-0.1645,1.1839,-0.9913,-0.6026,0.5196 -0x1944d,CUS_0x5816,August,36,255-63-4043,Media_Manager,32473.32,2875.11,7,3,4237,100,"Not Specified, Payday Loan, Payday Loan, Not Specified, Not Specified, and Home Equity Loan",29.82547749,19,19.38,4,Standard,893.83,25.47935198,9 Years and 2 Months,Yes,136.2291008,144.1362639,Low_spent_Small_value_payments,297.1456353,0,-1.9641,0.6106,0.4586,-0.3806,0.6774 -0x19459,CUS_0xc096,August,19,679-42-2704,Media_Manager,136399.96,11510.66333,6,54,19,1,Personal Loan,15.1218,12,12.31,2544,Standard,310.673519,39.23231867,7 Years and 6 Months,Yes,61.00673398,1399.09394,!@9#%8,167.6466792,0,1.0246,1.3665,-1.5731,0.9019,-0.4888 -0x19465,CUS_0xfa7,August,35,703-73-1678,Entrepreneur,123665,10145.41667,2,7,7.288361749,4,"Student Loan, Not Specified, Home Equity Loan, and Not Specified",,6,1.38,1,Good,561.42,35.65168071,23 Years and 11 Months,No,336.2243515,1394.522367,Low_spent_Small_value_payments,,0,0.5594,-0.9527,0.2625,-0.917,2.2163 -0x19471,CUS_0x9138,August,19,079-83-8467,Accountant,28332.51,,4,4,18,3,"Personal Loan, Debt Consolidation Loan, and Home Equity Loan",17.3816355,,9.71,7,Standard,667.39,27.01098811,19 Years and 8 Months,Yes,29855,143.1572031,Low_spent_Medium_value_payments,339.1740109,0,0.4491,-0.9862,-2.7939,-0.6919,-0.0979 -0x1947d,CUS_0xba9d,August,19,350-61-5419,Journalist,7546.68,391.89,8,6,30.06745738,7,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",,17.97861781,18.63,8,Bad,3783.053894,39.15306829,3 Years and 3 Months,Yes,40.13179544,,Low_spent_Small_value_payments,217.8225881,0,-0.5938,0.9926,-0.8305,0.5423,0.2298 -0x19489,CUS_0x1607,August,45,994-40-1980,Architect,85062.63,6988.5525,8,3,16,2,"Credit-Builder Loan, and Personal Loan",29.37717687,19,17.38,448,Standard,321.89,38.16501118,17 Years and 10 Months,Yes,124.1653215,,Low_spent_Medium_value_payments,147.4966342,0,-1.0254,-1.6869,0.3646,0.7775,-0.6356 -0x19495,CUS_0x5e73,August,54,547-44-4805,Teacher,26175.52,,8,6,6,2,"Personal Loan, and Auto Loan",13.22858379,11,4.32,0,_,310.4830658,27.12837112,25 Years and 5 Months,No,26.83928438,111.403209,Low_spent_Small_value_payments,362.0429202,0,-1.1554,3.2343,-1.3816,-0.5849,-1.0382 -0x194a1,CUS_0xc50f,August,23,193-54-3118,Accountant,38655.1,2971.392673,5,7,5,4,"Not Specified, Mortgage Loan, Mortgage Loan, and Mortgage Loan",,0,1.22,4,Good,1295.1,38.25892944,30 Years and 4 Months,No,363.0061865,84.34989201,High_spent_Large_value_payments,416.3354151,0,2.1071,1.7412,-1.4689,-1.5042,0.7996 -0x194ad,CUS_0xa1cc,August,39,#F%$D@*&8,Journalist,79050.88,6676.573333,6,8,21,7,"Mortgage Loan, Payday Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Personal Loan, and Payday Loan",39.94091996,26.74491032,5.15,16,Bad,1734.913448,29.70101366,13 Years and 5 Months,Yes,331.7693105,,Low_spent_Large_value_payments,257.1009041,0,0.4135,0.8285,-1.6393,1.0546,-0.3512 -0x194b9,CUS_0xa585,August,48,645-55-3869,Musician,88668.81,,5,4,1.288361749,1158,"Home Equity Loan, Home Equity Loan, and Mortgage Loan",5.055822939,5.824211366,5.18,0,Good,886.7962245,36.08540401,17 Years and 10 Months,No,220.3688778,10419.93746,!@9#%8,579.2634193,0,2.0558,-1.5777,0.7987,-1.5887,-0.8605 -0x194c5,CUS_0x8590,August,31,#F%$D@*&8,Musician,14878.675,1328.889583,4,5,16,1,Personal Loan,,15,10,0,Standard,677.319945,37.33950891,15 Years and 11 Months,NM,10.21665307,101.5328253,!@9#%8,303.2987168,0,1.4385,-0.9697,0.9136,-0.2272,1.1718 -0x194d1,CUS_0x65fa,August,51,276-33-4104,Architect,123388.83,,1,4,3,100,"Student Loan, and Personal Loan",10.75729117,9,5.24,0,Good,869.62,31.92285609,33 Years and 3 Months,No,114.3056508,213.5751642,High_spent_Large_value_payments,952.659435,0,-0.6163,0.5886,0.2411,1.1028,0.0036 -0x194dd,CUS_0x5c5,August,25,926-30-3234,Musician,9955.465,887.6220833,9,10,28,2,"Payday Loan, and Personal Loan",21.16685316,8,9.65,9,_,2520.04,33.48805837,19 Years and 9 Months,NM,15.46879059,10000,High_spent_Small_value_payments,296.1738826,0,1.411,-0.5154,1.3409,0.8508,0.0409 -0x194e9,CUS_0x4c95,August,27,397-40-3219,Architect,25444.95,2342.4125,8,6,10,2,"Student Loan, and Debt Consolidation Loan",24.80570066,19,11.22,12,Standard,222.7535232,27.3806402,,Yes,30.78169485,56.5819521,High_spent_Large_value_payments,393.4868542,0,0.4486,0.8034,1.3781,-2.1702,-1.0275 -0x194f5,CUS_0xbb1f,August,30,516-54-1681,Entrepreneur,67271.24,5325.936667,6,6,28,7,"Debt Consolidation Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",36.32654385,26.68558375,2.62,10,_,1747.386458,38.42421164,12 Years and 4 Months,Yes,272.4460255,104.6353653,High_spent_Medium_value_payments,405.5122759,0,-1.1851,-0.1395,-0.7561,-0.8181,-0.7148 -0x19501,CUS_0xc299,August,27,347-28-4438,Musician,16720.2,,10,8,32.88954781,9,"Not Specified, Payday Loan, Credit-Builder Loan, Student Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Not Specified",38.99923783,28.95913632,22.62,10,Bad,4520.087086,24.52515011,7 Years and 9 Months,NM,1422.133771,,Low_spent_Small_value_payments,224.3688006,0,0.6957,0.823,-0.2765,-1.7093,-0.3072 -0x1950d,CUS_0x411e,August,51,487-02-9121,Doctor,18369.33,,4,6,6,3,"Not Specified, Debt Consolidation Loan, and Student Loan",0,4,7.09,6,Good,873.4742048,37.50843094,22 Years and 11 Months,No,27.55586581,67.7855966,High_spent_Medium_value_payments,321.7504574,0,0.7795,-1.5674,-0.6014,0.8621,-0.2342 -0x19519,CUS_0x38ca,August,28,197-51-0710,Architect,31897.35,,5,8,6,0,,,9,11.88,9,Standard,1116.03,26.58403615,,No,0,192.2439008,High_spent_Small_value_payments,358.5673492,0,-0.2961,-0.8818,1.5223,-0.2406,-0.0372 -0x19525,CUS_0x19a7,August,34,#F%$D@*&8,Musician,62348.46,4942.705,4,3,16,7,"Credit-Builder Loan, Student Loan, Not Specified, Not Specified, Home Equity Loan, Mortgage Loan, and Payday Loan",35.61521648,25.58966151,7.3,10,Standard,2203.966465,31.39505504,8 Years and 0 Months,Yes,350.455834,93.7590194,High_spent_Medium_value_payments,300.0556465,0,-0.1007,0.1998,0.2436,-0.6195,-0.7775 -0x19531,CUS_0xaf9c,August,36,800-90-9176,Writer,146399.88,12416.99,1,5,10,1,Auto Loan,1.399126345,3.42225805,2.61,2,Good,1406.200206,24.44293741,31 Years and 4 Months,No,69.43273318,1203.866546,Low_spent_Medium_value_payments,248.3997206,0,-1.3293,-0.1443,1.4787,-1.0767,-0.2127 -0x1953d,CUS_0x1758,August,22,322-65-4078,Lawyer,21787.63,,0,3,5,3,"Auto Loan, Personal Loan, and Not Specified",0,2,4.6,3,Good,868.3274992,27.68903722,29 Years and 10 Months,NM,36.90148131,236.0549524,Low_spent_Small_value_payments,233.5267089,0,0.1405,-0.5181,0.1008,-1.6446,0.0908 -0x19549,CUS_0x43d0,August,43,309-30-6070,Scientist,81506.32,,7,4,7,2,"Not Specified, and Mortgage Loan",,22.94758833,11.02,5,Standard,1032.212683,29.66802532,9 Years and 11 Months,Yes,92.5062497,199.612233,Low_spent_Medium_value_payments,689.1008506,0,-0.7135,-0.0685,0.1335,0.6856,-2.2267 -0x19555,CUS_0xdc8,August,51,362-50-3134,Doctor,28169.69,2171.474167,7,3,14.28836175,0,,16.88315585,15,10.95,8,Standard,330.54,27.77181796,29 Years and 4 Months,No,0,475.6428404,High_spent_Large_value_payments,401.4420373,0,0.5858,-0.2622,-0.2866,-0.2948,0.0998 -0x19561,CUS_0xbc03,August,36,939-69-9988,Journalist,16770.91,,7,7,30,6,"Personal Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",14.28612534,9.506593629,10.44,9,Standard,2882.213956,32.39281028,19 Years and 6 Months,Yes,42.36115239,58.79172085,Low_spent_Large_value_payments,330.6047101,0,0.1249,-0.9923,-1.3077,-0.4283,-1.367 -0x1956d,CUS_0x7c25,August,39,956-43-1170,Accountant,23727.45,,7,4,318,0,,15.73825266,,2.35,0,Standard,1068.411506,28.98143022,27 Years and 11 Months,NM,0,236.6669771,Low_spent_Small_value_payments,267.8617729,0,-2.3137,1.1588,-0.5722,-0.7927,0.0168 -0x19579,CUS_0x7227,August,50,338-77-4181,Writer,19519.66,1400.638333,3,3,16,3,"Home Equity Loan, Not Specified, and Not Specified",24.81436574,17,5.84,1,Standard,529.09,31.57553634,32 Years and 3 Months,Yes,45.55741615,,Low_spent_Small_value_payments,276.9507486,0,1.5746,0.8036,-0.1233,-0.738,0.2722 -0x19585,CUS_0x7a29,August,19,371-71-4885,Media_Manager,59843.07,4979.9225,6,6,32,8,"Student Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,17.94863061,16.71,9,Bad,2870.133488,37.32514248,2 Years and 0 Months,Yes,373.6480357,186.6613149,Low_spent_Large_value_payments,207.6828993,0,1.7114,0.1248,0.6725,-0.9566,0.0666 -0x19591,CUS_0x39ae,August,50,267-92-4521,Developer,88203.74,,4,4,12,0,,0,0,10.76,6,Good,1001.051907,25.4404317,22 Years and 3 Months,No,0,730.1876487,Low_spent_Medium_value_payments,379.1710362,0,-0.5049,-1.023,-1.0318,-1.154,-0.4623 -0x1959d,CUS_0xb41b,August,28,881-68-1642,Writer,75992.7,6407.725,3,7,7,1,Debt Consolidation Loan,1.526990242,5,0.31,4,Good,187.01,38.91827808,31 Years and 4 Months,No,54.03972289,364.1835433,!@9#%8,502.5492338,0,0.374,1.964,-1.3198,-0.1812,-0.051 -0x195a9,CUS_0x691,August,21,265-27-9540,Journalist,86015.16,,4,5,3,3,"Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",4.500680108,4.723764683,5.35,2,Good,1399.420519,34.62345878,28 Years and 2 Months,No,119.129004,271.1201883,High_spent_Medium_value_payments,559.5438077,0,0.3035,0.2229,0.9742,-1.0428,-0.8858 -0x195b5,CUS_0x8ca7,August,20,778-05-0735,Lawyer,86093.4,6885.45,5,3,8,2,"Mortgage Loan, and Home Equity Loan",0.246483417,2,15.79,1,Good,1386.36,34.01104361,16 Years and 5 Months,No,120.239341,474.9824465,High_spent_Small_value_payments,353.3232125,0,-0.5683,-0.0511,-0.8971,-0.5937,-0.3065 -0x195c1,CUS_0x7d80,August,56,757-29-1383,Media_Manager,60919.84,5373.653333,0,6,7,3,"Debt Consolidation Loan, Auto Loan, and Home Equity Loan",,5,18.88,1,Good,1338.17,33.62306949,20 Years and 2 Months,No,145.8384924,191.2693175,High_spent_Medium_value_payments,450.2575235,0,-0.0801,-0.9454,0.1192,-1.3226,-0.7748 -0x195cd,CUS_0xa690,August,28,783-15-2382,Accountant,19852.32,,7,8,29,6,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, and Personal Loan",25.65363213,,1.98,8,Bad,2625.27,34.77758255,16 Years and 4 Months,Yes,52.93074343,185.1004309,!@9#%8,193.3048257,0,0.38,-0.6274,-1.7068,0.6852,0.8078 -0x195d9,CUS_0x69b1,August,55,467-20-6340,Mechanic,41481.82,3526.009912,1,3,4,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",0.5857102,4,11.68,2,Good,650.2,32.9096679,20 Years and 2 Months,NM,175.4272328,121.4191532,!@9#%8,415.8438685,0,-0.3001,0.7175,-0.5661,-1.3885,1.6217 -0x195e5,CUS_0x3639,August,18,452-14-9672,Accountant,19297.28,,5,5,19,6,"Personal Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Payday Loan",,9,10.09,8,Standard,2286.82,32.34869513,10 Years and 5 Months,Yes,51.90941949,106.6308499,Low_spent_Medium_value_payments,270.3703973,0,0.3242,0.2043,-0.8646,0.9147,0.3628 -0x195f1,CUS_0x8be0,August,43,019-47-3819,Engineer,53467.47,4461.6225,9,9,17,7,"Not Specified, Not Specified, Home Equity Loan, Student Loan, Not Specified, Auto Loan, and Auto Loan",,20.40759429,7.8,9,Bad,1643.300712,32.75087969,17 Years and 11 Months,Yes,281.5875213,,Low_spent_Large_value_payments,96.6546607,0,-0.3037,1.4983,-0.2143,0.1982,0.1372 -0x195fd,CUS_0x7bda,August,56,640-01-1485,Entrepreneur,17127.3,1407.275,8,7,6,2,"Personal Loan, and Payday Loan",9.357366665,8,8.25,0,Good,845.1071035,38.9748517,29 Years and 3 Months,NM,18.43747906,65.02229761,!@9#%8,346.956327,0,-0.6315,-0.4055,-0.8291,0.1271,0.5963 -0x19609,CUS_0x2d09,August,23,441-65-5011,Accountant,36243.05,,4,5,14,3,"Home Equity Loan, Home Equity Loan, and Not Specified",17.55808523,13,8.2,5,_,1009.33,31.13393198,18 Years and 10 Months,Yes,73.89110879,156.5129807,High_spent_Small_value_payments,353.1213271,0,0.621,-1.0759,1.2321,-0.7569,-0.6158 -0x19615,CUS_0x6ab0,August,21,863-40-1509,Doctor,38007.66,3320.305,6,6,10,100,"Payday Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",12.58695426,8,12.57,12,_,842.4,36.7537386,7 Years and 3 Months,NM,181.4640125,,Low_spent_Medium_value_payments,139.9514403,0,-1.4777,2.7194,1.2138,-0.459,-0.6558 -0x19621,CUS_0xb064,August,33,470-57-4222,Accountant,123523.6,,1,2,2.288361749,4,"Payday Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",6.749194015,9,8.09,7,Good,451.7778546,41.4144637,24 Years and 9 Months,No,342.305517,596.3458285,High_spent_Large_value_payments,754.6212017,0,-1.0533,1.8077,1.6739,1.4405,-0.7912 -0x1962d,CUS_0xb06d,August,26,802-62-7763,Architect,36996.83,,6,5,6,2,"Debt Consolidation Loan, and Home Equity Loan",12.81310911,8.992161912,7.54,4,Good,887.9950527,40.06561794,31 Years and 11 Months,No,31.79565825,326.7081484,Low_spent_Medium_value_payments,236.7031101,0,0.4169,-0.716,0.1515,1.4975,1.725 -0x19639,CUS_0xc4b3,August,28,673-26-9445,Architect,16860.705,,5,1216,1,1,Debt Consolidation Loan,,6,2.78,2,Good,1476.91,27.30475099,33 Years and 5 Months,No,12.60852256,56.19086325,Low_spent_Small_value_payments,339.0064892,0,0.1277,-1.7423,0.7214,-1.4693,0.3095 -0x19645,CUS_0x444c,August,26,804-29-1831,Developer,17174.67,1225.781553,6,7,19,0,,9.537498247,9,6.95,6,_,827.7384597,32.67362963,17 Years and 9 Months,No,123.4409472,,Low_spent_Medium_value_payments,363.1273127,0,-0.7432,-1.2895,-1.4261,0.5026,0.8049 -0x19651,CUS_0x6e81,August,36,462-24-2241,Manager,76324.68,,6,5,34,6,"Personal Loan, Personal Loan, Personal Loan, Personal Loan, Payday Loan, and Auto Loan",,26.16764332,2.24,10,Bad,2558.635102,28.3570387,10 Years and 6 Months,Yes,280.4029271,84.30660092,High_spent_Medium_value_payments,500.829472,0,-0.3428,0.1322,0.5066,0.4421,1.9505 -0x1965d,CUS_0xa6a,August,44,657-94-9439,Lawyer,49657.92,4193.16,8,5,27,5,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",31.15031923,20,19.59,12,Bad,3469.9,37.06531678,2 Years and 8 Months,Yes,187.0251314,108.3166382,High_spent_Medium_value_payments,373.9742305,0,0.9905,-0.3222,-0.9097,1.4697,-1.2062 -0x19669,CUS_0x55fb,August,42,771-10-8942,Media_Manager,60364.08,5045.34,7,6,24,100,"Student Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Payday Loan, Personal Loan, and Auto Loan",10.66592268,8.111858422,19.47,8,Standard,2090.350115,41.83685807,8 Years and 10 Months,Yes,179.0292829,,High_spent_Medium_value_payments,515.5963894,0,-0.6642,-1.0959,-0.7646,-0.413,-0.0872 -0x19675,CUS_0x254e,August,21,926-83-6934,Engineer,35295.07,,1,6,7,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Personal Loan",3.509286768,6,0.57,4,Good,1088.7,31.32874977,30 Years and 6 Months,No,112.6207758,,!@9#%8,176.3675515,0,1.1069,1.2753,-0.4623,0.6547,-0.1154 -0x19681,CUS_0x6324,August,55,342-38-4793,Manager,32933.44,2574.453333,5,3,9,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Home Equity Loan",7.827233759,10,4.96,3,Good,1272.85,31.94900278,29 Years and 0 Months,No,95.11680221,88.21831061,Low_spent_Small_value_payments,364.1102205,0,0.7005,-0.4153,0.3064,-1.6363,-1.4627 -0x1968d,CUS_0x78cd,August,25,214-79-8348,Developer,15476.64,,0,4,1,3,"Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",,12.16740525,11.57,1,Good,1435.725405,34.59354808,24 Years and 0 Months,No,35.68135813,153.2098449,Low_spent_Small_value_payments,218.5807969,0,0.5684,-1.3857,-0.1287,0.2424,-0.9281 -0x19699,CUS_0x98e3,August,50,785-61-7804,Manager,68636.44,5542.483245,7,3,7,4,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,9,21.15,8,Standard,250.6874689,24.18235546,24 Years and 6 Months,Yes,18287,304.2143399,!@9#%8,362.9671572,0,0.1894,0.649,-0.3696,0.0651,1.5151 -0x196a5,CUS_0x5fe0,August,31,#F%$D@*&8,Mechanic,33446.44,3058.203333,6,6,25.06745738,6,"Mortgage Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",27.78507841,19,23.45,13,Bad,3177.090954,25.03428337,9 Years and 10 Months,Yes,133.3559048,,Low_spent_Small_value_payments,187.8638932,0,-0.3577,-1.1826,-0.2778,-0.0648,0.5658 -0x196b1,CUS_0x7cc1,August,22,169-92-6237,Writer,51411.1,,2,4,12,3,"Not Specified, Credit-Builder Loan, and Home Equity Loan",21.29398958,,7.7,4,Standard,367.4857552,37.74882055,19 Years and 3 Months,Yes,113.6719262,,Low_spent_Medium_value_payments,242.5911984,0,0.5827,1.3642,0.7399,0.1776,0.1294 -0x196bd,CUS_0xb482,August,50,417-57-5463,Accountant,125033,10585.41667,5,6,7,1,Debt Consolidation Loan,13.32261777,9,5.95,2,Standard,1369.98,38.37403581,27 Years and 3 Months,Yes,99.42376275,592.0626858,Low_spent_Large_value_payments,637.0552181,0,1.2636,0.6832,1.465,-1.7666,-0.2592 -0x196c9,CUS_0x8433,August,18,#F%$D@*&8,Architect,33890.2,,8,4,12,2,"Mortgage Loan, and Auto Loan",20.4044807,18,11.12,7,Standard,1289.03,33.72411296,28 Years and 0 Months,Yes,394.9849697,196.1127751,!@9#%8,307.6166007,0,-1.7381,-0.5468,0.0794,-1.673,-0.8345 -0x196d5,CUS_0x760a,August,44,726-06-9872,Doctor,53084.07,4525.6725,10,9,24.95700519,8,"Home Equity Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Auto Loan, Student Loan, Auto Loan, and Payday Loan",,23,8.3,9,Bad,3127.570954,35.74396022,2 Years and 8 Months,Yes,1552.170577,,Low_spent_Medium_value_payments,137.9525942,0,2.1113,0.0112,0.7445,-0.2291,1.4068 -0x196e1,CUS_0xbb77,August,21,469-37-9263,Manager,70391.92,,10,8,18,9,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Student Loan, Not Specified, Home Equity Loan, Personal Loan, and Home Equity Loan",27.00965376,21,25.35,9,Bad,3090.499653,27.67531254,14 Years and 2 Months,Yes,735.7145281,253.1238091,High_spent_Medium_value_payments,315.3036256,0,0.9013,0.3889,-0.5378,-1.2603,0.1966 -0x196ed,CUS_0x14ff,August,80,027-71-3979,Writer,14792.57,1181.714167,10,7,21.06745738,8,"Student Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Payday Loan, Payday Loan, and Home Equity Loan",,24.64080023,18.8,13,Bad,5870.853831,30.77054451,9 Years and 8 Months,Yes,54.28779797,64.3522982,High_spent_Small_value_payments,232.8110326,0,-1.5499,1.1907,0.7464,2.424,-1.0854 -0x196f9,CUS_0xafcd,August,33,822-91-2677,_______,66679.56,5522.63,4,3,18,2,"Debt Consolidation Loan, and Auto Loan",5.356078555,5,9.75,2,Standard,467.64,27.60449258,20 Years and 3 Months,Yes,74.06248334,,Low_spent_Large_value_payments,333.7050607,0,0.1364,-0.0857,0.2132,1.8761,0.1431 -0x19705,CUS_0xbb4a,August,38,245-68-4355,Architect,126780.48,10443.04,7,4,18.28836175,0,,,14,7.22,3,Standard,366.0561129,37.36235998,26 Years and 3 Months,Yes,0,572.6646204,High_spent_Large_value_payments,1146.00264,0,-0.271,-0.7255,-0.1633,1.7535,1.3535 -0x19711,CUS_0x9ab9,August,34,214-02-8382,Journalist,40165.72,,6,6,23,4,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",19.40692499,,6.95,8,Standard,1812.84,29.26974206,10 Years and 3 Months,Yes,87.49683501,,Low_spent_Small_value_payments,230.1790232,0,0.7477,0.0603,-0.2704,-0.6808,-0.7707 -0x1971d,CUS_0x2366,August,39,978-77-9217,Mechanic,9126.455,,10,7,34.06745738,5,"Auto Loan, Personal Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",32.66347615,21,28.57,12,_,5220.460954,35.87242644,9 Years and 8 Months,Yes,33.01629307,,Low_spent_Medium_value_payments,219.0337521,0,0.3976,-1.0873,-0.5313,0.6943,-0.8672 -0x19729,CUS_0x28d2,August,26,775-18-7711,Journalist,56687.56,4514.963333,5,4,7,6,"Home Equity Loan, Not Specified, Home Equity Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",19.32260208,15,19.08,484,_,239.33,28.75903862,12 Years and 5 Months,Yes,212.9875888,50.05818263,High_spent_Large_value_payments,428.4505619,0,-0.6297,-2.1798,1.8069,1.4603,-1.4395 -0x19735,CUS_0x9de1,August,42,821-03-7493,Architect,39849.72,3334.81,9,8,26,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",35.25205171,22,9.12,14,_,2533.64,29.49009788,6 Years and 4 Months,Yes,96.60403454,98.50915343,High_spent_Medium_value_payments,388.367812,0,-0.7986,-0.774,0.2848,-0.1567,0.3111 -0x19741,CUS_0x4156,August,38,807-73-5861,Developer,101996.79,,5,6,6,4,"Student Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",,10,6.94,2,_,1260.27,34.22827689,25 Years and 0 Months,No,211.0479856,201.13989,!@9#%8,677.6853744,0,0.484,0.4084,0.9893,1.4388,-0.144 -0x1974d,CUS_0x89e3,August,27,943-71-2069,Teacher,107808,9138,0,7,0.288361749,2,"Student Loan, Mortgage Loan, and Not Specified",0.824985602,4,1.05,7,Good,985.31,36.44311663,24 Years and 5 Months,No,208.8105854,1062.651819,Low_spent_Small_value_payments,352.2750567,0,-0.7603,0.0843,0.1736,-1.8388,-1.5866 -0x19759,CUS_0x831d,August,18,300-65-8240,Teacher,20606.32,,6,6,13,100,Home Equity Loan,10.82381742,8,7.08,11,Standard,160.5,22.33541422,28 Years and 5 Months,Yes,10.09716935,158.8013762,Low_spent_Small_value_payments,310.8207878,0,-0.8268,0.2107,0.4932,-0.4408,0.1206 -0x19765,CUS_0x9567,August,19,933-18-3510,Mechanic,15678.385,,5,4,3,3,"Credit-Builder Loan, Student Loan, and Personal Loan",8.398578488,8,7.54,4,Good,1093.160649,37.37762717,18 Years and 3 Months,No,29.70265363,,Low_spent_Small_value_payments,250.6413244,0,0.1333,-0.4481,0.383,0.6977,-1.5386 -0x19771,CUS_0x5f05,August,34,848-91-6762,Developer,35733.38,,8,7,20,6,"Mortgage Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",43.43438637,28.877026,27.75,8,_,2980.948336,40.68900802,,Yes,163.7890186,34.25034484,High_spent_Medium_value_payments,332.7388032,0,-0.0484,0.8464,-0.7898,-0.6645,-1.1098 -0x1977d,CUS_0x387b,August,18,845-39-5956,Developer,18425.6,,3,3,32,5,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,12,17.8,8,Standard,1773.7,26.18674594,11 Years and 5 Months,Yes,67.23257019,40.42501981,High_spent_Large_value_payments,301.3890767,0,0.5397,-1.7173,-1.7364,-0.3853,-1.332 -0x19789,CUS_0x627b,August,31,217-43-5920,Doctor,77001.36,6561.78,7,4,34,5,"Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Mortgage Loan",22.45599097,18.32633078,23.8,11,Standard,2811.078311,40.51795908,20 Years and 2 Months,Yes,210.5768286,144.8371941,!@9#%8,540.7639773,0,0.7347,1.1918,1.0221,0.4611,-0.836 -0x19795,CUS_0x307e,August,40,425-36-5909,Developer,46485.27,3874.7725,9,6,30.06745738,7,"Payday Loan, Home Equity Loan, Student Loan, Not Specified, Payday Loan, Auto Loan, and Personal Loan",41.2206084,27.72394077,4.69,15,Bad,3897.466918,32.05961645,,Yes,223.0220067,448.4971673,Low_spent_Small_value_payments,0,0,-0.0442,-0.3617,0.276,-0.9882,0.4003 -0x197a1,CUS_0x5db0,August,37,799-61-3504,Writer,37963.16,,8,7,17.06745738,9,"Home Equity Loan, Home Equity Loan, Student Loan, Payday Loan, Not Specified, Student Loan, Mortgage Loan, Student Loan, and Not Specified",32.58338654,21.55093486,9.58,9,Bad,4369.845637,27.89451819,12 Years and 6 Months,Yes,192.0858416,,!@9#%8,266.5623705,0,-1.6171,0.0739,-0.6048,0.7814,-0.1385 -0x197ad,CUS_0x32fa,August,38,848-55-8612,Writer,69209.85,,6,3,9,2,"Credit-Builder Loan, and Auto Loan",22.31971447,,6.9,,Standard,225.58,34.93396871,,No,86.37788509,422.3585465,Low_spent_Medium_value_payments,376.0123185,0,0.2568,1.3724,-2.5627,0.6109,-0.9384 -0x197b9,CUS_0x4083,August,48,619-93-7111,Musician,31318.22,,7,4,14,3,"Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,14,10.16,2,_,1121.05,34.43377578,15 Years and 9 Months,No,65.49831071,164.6977624,Low_spent_Small_value_payments,310.6890936,0,0.0122,-1.1209,-0.4518,-0.058,-1.0387 -0x197c5,CUS_0xc4e2,August,25,690-48-2138,Mechanic,18228.67,1734.055833,5,5,20.06745738,100,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",37.05088209,24.18400047,14.26,7,Standard,2995.098702,26.91798568,14 Years and 6 Months,Yes,40.46085111,,Low_spent_Small_value_payments,213.3939249,0,-1.5746,-1.0258,0.8751,1.3177,0.0561 -0x197d1,CUS_0x2878,August,25,812-39-0469,_______,26838.73,2020.560833,8,5,15,2,"Payday Loan, and Student Loan",,20,13.95,6,Standard,646.98,32.77145976,9 Years and 9 Months,Yes,29.13133496,77.51209712,High_spent_Medium_value_payments,345.4126512,0,-1.1863,-0.7086,-0.3919,0.0746,0.4467 -0x197dd,CUS_0xa049,August,46,859-32-1546,Manager,50545.74,4346.145,8,3,2,4,"Auto Loan, Not Specified, Not Specified, and Mortgage Loan",12.15473535,8,10.2,3,Good,250.99,26.93966577,21 Years and 11 Months,No,132.5935743,267.2355214,High_spent_Small_value_payments,294.7854043,0,1.1419,0.297,-0.5121,0.0092,0.0986 -0x197e9,CUS_0x4edc,August,24,237-56-3090,Architect,66693.51,,8,5,8,4,"Payday Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",15.33513626,11,2.88,3,Good,246.6986603,34.46955755,26 Years and 11 Months,No,132.6492358,162.5051384,High_spent_Small_value_payments,544.2310739,0,0.6705,-1.5707,-0.5685,-1.2059,1.2051 -0x197f5,CUS_0xc143,August,25,#F%$D@*&8,Lawyer,20395.54,,3,3,20,2,"Mortgage Loan, and Home Equity Loan",,10,9.01,4,Standard,416.1577893,31.53699895,24 Years and 5 Months,NM,42872,36.56337073,High_spent_Large_value_payments,378.3184132,0,-0.5315,0.0525,-0.4032,1.2415,-0.1144 -0x19801,CUS_0x294d,August,39,862-89-7529,Teacher,19480.04,,3,4,23,6,"Auto Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",16.39965284,15.07686619,,9,_,2929.348004,22.96319352,6 Years and 10 Months,Yes,96.29274735,46.45839147,Low_spent_Large_value_payments,263.7825278,0,-0.8393,0.8317,-0.8322,0.7841,-2.1128 -0x1980d,CUS_0xb2c0,August,21,023-65-3180,Scientist,111188.04,9318.67,8,5,6,4,"Auto Loan, Personal Loan, Personal Loan, and Student Loan",22.19509119,18,8.99,4,_,440.78,31.60628872,17 Years and 8 Months,Yes,24335,110.071556,High_spent_Large_value_payments,816.3309059,0,-0.0323,0.8919,0.4396,-2.1558,-0.0588 -0x19819,CUS_0x6ccd,August,29,689-97-8754,Mechanic,7477.175,662.2354715,9,5,15,227,"Home Equity Loan, Student Loan, Student Loan, Auto Loan, Payday Loan, Auto Loan, Not Specified, and Home Equity Loan",34.04375165,19,23.52,7,Bad,4335.010693,29.95204783,7 Years and 10 Months,Yes,86.04288815,64.38373627,Low_spent_Large_value_payments,249.0927682,0,0.0148,0.0509,1.1132,-0.8719,-0.9122 -0x19825,CUS_0x9f1f,August,42,127-99-4788,Mechanic,105740.97,8706.7475,3,6,5,3,"Auto Loan, Home Equity Loan, and Personal Loan",10.55720371,9,3.12,1,_,264.1885955,26.87145672,22 Years and 10 Months,No,145.5849938,459.0640507,Low_spent_Large_value_payments,587.4268158,0,0.4935,-0.7639,-0.1699,-1.5476,-0.5154 -0x19831,CUS_0x7136,August,29,489-21-5418,Journalist,172952.32,,5,4,8,1,Student Loan,,,11.5,8,Good,378.6256566,35.54078768,23 Years and 3 Months,No,88.74554331,276.9408466,High_spent_Medium_value_payments,1339.082943,0,-0.7897,0.2894,-0.39,-0.0176,0.837 -0x1983d,CUS_0x2c4f,August,36,552-16-6625,Writer,31941.88,2526.823333,5,6,16,0,,16.52213503,,4.9,6,Standard,1048.97,34.78334481,20 Years and 8 Months,No,0,85.51133154,High_spent_Medium_value_payments,417.1710018,0,-0.6109,1.2957,1.5966,0.0637,-0.5409 -0x19849,CUS_0xac29,August,18,985-65-5941,Doctor,9654.115,,6,7,18,3,"Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,19.51331312,14.3,14,_,2319.692657,34.76747584,9 Years and 4 Months,Yes,20.32773356,30.75540964,Low_spent_Small_value_payments,300.9678151,0,1.6655,-0.7462,-1.6886,-0.0373,0.0388 -0x19855,CUS_0x585b,August,35,104-57-7353,Manager,17312.45,,7,5,21.06745738,9,"Mortgage Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Student Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",,22,23.28,8,Bad,4748.130954,28.82889597,10 Years and 0 Months,Yes,122.8749656,70.84080409,!@9#%8,220.034359,0,-1.3213,0.0959,0.5486,-0.4383,0.6764 -0x19861,CUS_0x5b9b,August,42,822-49-6874,Mechanic,16955.24,,7,5,19,2,"Not Specified, and Debt Consolidation Loan",,20,19.2,4,Standard,714.71,39.18024508,18 Years and 0 Months,Yes,84.64285175,94.79151679,Low_spent_Small_value_payments,339.3725782,0,0.0464,0.949,0.7213,-1.0179,0.0158 -0x1986d,CUS_0xb7c3,August,36,731-11-7245,Musician,108268.23,,4,1,0.288361749,0,Mortgage Loan,4.0175998,7,11.64,1,_,174.7244414,30.0087312,16 Years and 6 Months,No,56.62071282,618.1268714,High_spent_Large_value_payments,927.7990144,0,-0.8808,-0.5107,-0.931,2.1619,0.101 -0x19879,CUS_0xa326,August,40,417-48-4537,_______,16041.33,1281.7775,9,6,24,9,"Auto Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,,27.32,11,Bad,2509.58,39.94835479,6 Years and 6 Months,Yes,76.80901872,139.0622874,Low_spent_Small_value_payments,202.3064439,0,1.0583,-1.6638,0.387,0.114,-0.2866 -0x19885,CUS_0xa918,August,27,195-30-9920,Teacher,71530.8,6197.9,8,5,22,8,"Home Equity Loan, Auto Loan, Mortgage Loan, Auto Loan, Auto Loan, Personal Loan, Auto Loan, and Student Loan",23.45071968,,,8,_,2364.98,31.99990856,5 Years and 10 Months,NM,461.4851584,203.3187781,High_spent_Medium_value_payments,204.9860635,0,1.0721,-0.7962,-0.2266,-0.8349,1.9818 -0x19891,CUS_0x1765,August,32,966-30-5287,Engineer,15186.175,,4,3,6,1,Student Loan,20.70199423,15,15.22,0,Standard,9.7,31.0259299,23 Years and 9 Months,NM,10.91506983,84.2505761,Low_spent_Small_value_payments,347.5858124,0,-0.3308,-0.5777,-0.6228,0.9781,-0.3795 -0x1989d,CUS_0xa8b7,August,56,104-77-4516,Media_Manager,26918.64,2494.22,7,4,8.288361749,0,Not Specified,17.77215029,17,9.24,3,Standard,226.5,33.40954297,28 Years and 3 Months,Yes,11.85483779,561.399154,Low_spent_Small_value_payments,386.1054692,0,-0.9326,-0.8622,-0.6221,-1.7532,0.6018 -0x198a9,CUS_0x4a0b,August,30,089-79-7569,Writer,120629.04,9970.42,2,5,11.28836175,2,"Debt Consolidation Loan, and Debt Consolidation Loan",11.68619084,11,7.53,1,Good,413.86,39.62401093,,No,183.8052497,583.6259812,High_spent_Large_value_payments,889.5482301,0,2.4646,-0.74,0.9177,0.0249,-1.4424 -0x198b5,CUS_0xbb3c,August,32,956-87-6952,Teacher,170008.72,14178.39333,3,6,6.288361749,0,,5.855003771,9,-2.22,1,Good,881.44,31.92899487,29 Years and 3 Months,No,0,1830.616852,Low_spent_Medium_value_payments,287.1599422,0,-0.6045,-0.37,-0.6603,1.5911,0.2293 -0x198c1,CUS_0x924a,August,18,382-11-8649,Journalist,9829.665,,8,10,19.95700519,7,"Not Specified, Home Equity Loan, Not Specified, Personal Loan, Auto Loan, Home Equity Loan, and Auto Loan",38.38971056,21,23.54,9,Bad,3006.700954,29.43096018,6 Years and 0 Months,Yes,1365.02354,,High_spent_Small_value_payments,204.2843046,0,0.4773,-0.8388,-1.1862,2.2368,-0.2357 -0x198cd,CUS_0x44ff,August,35,264-12-4793,_______,57353.16,4738.43,3,7,20,3,"Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",20.70038249,19,10.45,0,_,1095.32,34.76859657,21 Years and 2 Months,No,125.0086855,,!@9#%8,186.8828715,0,0.1818,-0.2774,-0.2409,-0.0006,-3.2407 -0x198d9,CUS_0xa5ac,August,46,495-74-5312,Journalist,83627.12,6843.926667,6,7,9,3,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",23.24871182,20,1.34,1086,Standard,2312.09,36.81216683,8 Years and 11 Months,Yes,189.5636324,315.4936467,Low_spent_Medium_value_payments,459.3353876,0,0.4444,-0.6372,-0.5495,0.0229,1.4464 -0x198e5,CUS_0x19f3,August,32,940-10-6588,Entrepreneur,7361.645,,10,10,20.95700519,9,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",36.89132655,22,5.32,8,Bad,2723.410954,39.71427216,12 Years and 3 Months,Yes,1365.429116,,Low_spent_Small_value_payments,223.7862776,0,-0.1587,-0.0749,-1.3816,0.9669,-0.6126 -0x198f1,CUS_0x899d,August,22,721-76-0335,Developer,14938.01,985.8341667,7,5,18.06745738,8,"Payday Loan, Payday Loan, Payday Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",,24,17.45,13,Bad,3669.850954,37.33409888,14 Years and 5 Months,Yes,89.33792943,,Low_spent_Small_value_payments,202.0690991,0,0.127,0.7782,-0.5343,0.9832,-1.1012 -0x198fd,CUS_0xad1f,August,80,922-54-1284,Lawyer,54670.95,4798.9125,7,6,25.06745738,5,"Mortgage Loan, Payday Loan, Not Specified, Home Equity Loan, and Student Loan",30.748348,16.39252703,3.43,8,Bad,3215.044206,26.06545589,18 Years and 10 Months,NM,172.1712214,63.24525201,High_spent_Large_value_payments,457.7544887,0,1.9392,0.2722,0.3651,-0.0256,0.4017 -0x19909,CUS_0x4427,August,20,701-15-5918,Engineer,67092.51,5767.0425,4,4,16.28836175,0,Payday Loan,,8,5.43,8,Standard,846.08,40.06409644,29 Years and 11 Months,No,53.47969947,465.7007133,High_spent_Large_value_payments,717.4612982,0,-1.0752,0.6353,-0.7529,-0.5056,-1.2084 -0x19915,CUS_0x4688,August,26,827-77-9493,Teacher,15549.06,,6,6,17,2,"Student Loan, and Personal Loan",28.75131496,16,11.2,9,Bad,2063.91,30.92732869,17 Years and 5 Months,Yes,20.16589015,27.42400127,High_spent_Large_value_payments,351.3856086,0,2.3008,0.3035,-0.6407,-0.9197,1.3511 -0x19921,CUS_0xb2d2,August,47,199-93-0552,Developer,53979.12,4792.26,3,6,20,1,Auto Loan,27.99192263,19.55177595,11.87,7,Standard,616.0608976,31.97019408,18 Years and 10 Months,No,39.35303605,518.2219123,Low_spent_Small_value_payments,211.6510516,0,0.9912,-0.8476,-0.9613,-0.6706,-1.181 -0x1992d,CUS_0x87ec,August,25,911-75-7932,Engineer,61056.3,5086.025,3,7,8,2,"Debt Consolidation Loan, and Auto Loan",7.247661267,10,8.87,6,_,566.34,38.77178322,17 Years and 2 Months,Yes,83.57379524,200.2584072,High_spent_Small_value_payments,484.7702975,0,1.2377,0.2267,-0.8685,-0.5935,1.2753 -0x19939,CUS_0x885,August,32,830-83-6678,Journalist,44942.23,3926.185833,1,4,7,1,Personal Loan,,15,2.97,4,Good,1058.03,25.92495516,28 Years and 10 Months,No,26.7784089,129.6118796,!@9#%8,516.2282948,0,0.0569,1.7462,0.6997,-0.0154,-0.637 -0x19945,CUS_0xaa68,August,50,984-93-1916,Musician,83923.24,6723.603333,4,4,9,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",,20,2.54,3,Good,1148.212284,31.33189591,23 Years and 4 Months,No,139.3403924,227.7160603,High_spent_Medium_value_payments,587.4278117,0,-0.1431,-0.2453,-1.2429,1.108,-0.1517 -0x19951,CUS_0x89c7,August,41,232-78-3489,Scientist,16827.15,,8,10,23.88954781,9,"Payday Loan, Home Equity Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Not Specified",28.48074603,21,21.99,15,_,2761.57,32.19738285,5 Years and 10 Months,Yes,1447.97799,10000,Low_spent_Small_value_payments,234.7601691,0,-0.7356,1.8282,1.1156,0.1668,-0.1102 -0x1995d,CUS_0x4afe,August,20,420-12-0466,Teacher,42321.5,3345.791667,4,4,9,0,,,2,8.43,6,Good,688.61,25.63686887,30 Years and 2 Months,No,0,118.2913005,Low_spent_Large_value_payments,486.2878662,0,0.6548,0.5285,0.7136,1.0971,-0.2547 -0x19969,CUS_0x2923,August,23,489-56-6652,Entrepreneur,8637.875,,9,10,21.06745738,5,"Payday Loan, Auto Loan, Personal Loan, Mortgage Loan, and Payday Loan",,27.45406174,9.63,8,Bad,1997.706312,24.11260124,8 Years and 6 Months,Yes,19.94070787,,Low_spent_Medium_value_payments,257.8593602,0,-0.8675,-0.3429,0.852,0.0075,1.6656 -0x19975,CUS_0x2910,August,22,317-09-6933,Architect,58184.67,4579.611397,6,5,9,3,"Student Loan, Mortgage Loan, and Student Loan",20.47491427,,7.36,3,_,309.14,24.77256593,24 Years and 2 Months,Yes,320.1696417,127.7753871,High_spent_Small_value_payments,476.9383243,0,0.4768,-1.0203,-0.9839,-1.2934,0.8389 -0x19981,CUS_0x4190,August,32,245-49-9172,_______,20101.36,1520.113333,10,8,21.88954781,100,"Home Equity Loan, Not Specified, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Auto Loan, and Auto Loan",,29.94834911,5.94,12,Bad,1732.808129,26.56777485,17 Years and 6 Months,Yes,1391.395626,182.8808416,Low_spent_Small_value_payments,173.4047846,0,-1.3763,0.6526,1.2204,-0.3187,-0.2816 -0x1998d,CUS_0xb4cc,August,23,139-76-0236,Musician,48434.66,4201.221667,5,5,4.288361749,0,,9.214929183,9,11.44,1,Standard,23.19,37.91108357,23 Years and 9 Months,Yes,42558,575.7255624,High_spent_Medium_value_payments,514.3340653,0,0.27,2.1517,-1.1085,-1.3085,2.3687 -0x19999,CUS_0x511e,August,40,055-93-3369,Lawyer,19604.35,,5,4,15,5,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Mortgage Loan",13.78144488,12.45982745,10.9,8,Standard,779.3822857,36.95136088,11 Years and 11 Months,Yes,44.2104087,88.09411353,Low_spent_Medium_value_payments,319.2650611,0,1.8204,0.3908,2.3349,-0.3935,0.3547 -0x199a5,CUS_0x450b,August,47,258-48-0314,Mechanic,21112.76,,3,3,16,4,"Not Specified, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,,15.11,9,_,1633.865005,35.89031281,,Yes,42.38339185,193.1727553,Low_spent_Small_value_payments,218.5835195,0,0.6568,1.6609,-0.4285,1.2961,0.5174 -0x199b1,CUS_0xb80e,August,30,446-96-9802,Lawyer,36898.44,2957.87,10,8,23,9,"Payday Loan, Student Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Mortgage Loan",,28.17804563,5.07,9,Bad,1824.148948,28.2008732,13 Years and 0 Months,Yes,266.5040023,,High_spent_Small_value_payments,140.4195961,0,1.3042,-0.9473,-0.1464,-0.9333,0.9776 -0x199bd,CUS_0x959b,August,49,262-60-9767,Architect,67106.79,5858.2325,5,5,5.288361749,2,"Not Specified, Credit-Builder Loan, and Personal Loan",,19,7.22,4,_,836.88,41.26488943,,Yes,89.77285448,481.3951439,High_spent_Large_value_payments,674.5927126,0,-0.0127,0.2316,0.5258,1.1855,-0.6211 -0x199c9,CUS_0x415b,August,44,857-19-8693,Doctor,30710.59,,0,7,8,1,Not Specified,10.52730041,10,0.76,1,Good,1211.61,33.72929823,19 Years and 3 Months,No,325.0667592,242.3779387,Low_spent_Small_value_payments,306.0446427,0,-0.2761,1.3207,0.9458,-0.1776,0.0139 -0x199d5,CUS_0x9a8b,August,19,540-04-0191,Entrepreneur,57921.74,4772.811667,4,3,11,3,"Home Equity Loan, Debt Consolidation Loan, and Auto Loan",5.692409513,7,,3,Good,842.5837207,32.05103306,28 Years and 9 Months,No,94.3673126,165.7798066,High_spent_Small_value_payments,493.7633614,0,-1.6079,0.0004,-0.7347,-1.2775,0.0213 -0x199e1,CUS_0x92d2,August,20,401-08-4236,Musician,99161.82,,3,6,7.288361749,0,,7.004895509,9,1.83,3,Good,1159.42,40.22670382,26 Years and 10 Months,No,0,828.9105586,Low_spent_Large_value_payments,666.5754024,0,0.4231,-0.9293,1.2995,1.0329,-0.1996 -0x199ed,CUS_0xe28,August,23,308-22-2918,Doctor,15298.94,,5,7,5,3,"Personal Loan, Home Equity Loan, and Auto Loan",,,15.43,1,Standard,350.9,31.53378966,18 Years and 5 Months,Yes,35.32320795,33.16868738,Low_spent_Medium_value_payments,319.3992713,0,-1.5443,0.5522,-1.1648,0.7374,-1.5499 -0x199f9,CUS_0x6bcf,August,41,090-00-2258,Architect,35198.01,2864.1675,3,7,9,2,"Mortgage Loan, and Mortgage Loan",10.61077321,11,3.28,3,Good,792.6218219,33.4814455,33 Years and 0 Months,No,72001,210.0925189,Low_spent_Medium_value_payments,332.8616443,0,1.5158,-2.9589,0.88,2.5504,-1.6126 -0x19a05,CUS_0x8a50,August,80,742-72-0073,Developer,68281.18,,4,3,1.288361749,2,"Not Specified, and Payday Loan",,11,9.49,5,Good,417.9354865,31.36061804,,NM,103.3228065,920.7573943,Low_spent_Small_value_payments,352.5602087,0,-1.0769,0.9257,0.5568,-0.0836,0.0222 -0x19a11,CUS_0xc2aa,August,37,465-60-3982,Musician,12761.21,,5,4,13,4,"Not Specified, Personal Loan, Not Specified, and Debt Consolidation Loan",14.20398365,11,3,5,_,662.86,32.14120189,16 Years and 0 Months,No,33.81955603,,Low_spent_Small_value_payments,253.6354631,0,0.9891,-0.736,0.7102,-0.6923,0.0918 -0x19a1d,CUS_0x5a53,August,32,468-16-8245,Journalist,85084.8,6997.4,4,3,12,1,Auto Loan,,6,12.49,1,Standard,100.42,35.75202447,21 Years and 4 Months,NM,69.2017297,186.4672631,High_spent_Medium_value_payments,694.0710072,0,0.7048,-0.5935,-0.0988,-0.9509,-0.5603 -0x19a29,CUS_0x6df1,August,46,831-17-3673,Lawyer,55120.88,4465.406667,5,7,5,4,"Personal Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",,19,8.82,11,Standard,1045.89,24.74776463,16 Years and 11 Months,Yes,103.2811313,219.7415885,!@9#%8,413.5179468,0,-1.9925,0.273,1.3021,0.967,1.8228 -0x19a35,CUS_0x166c,August,41,422-62-7783,_______,43016.7,,7,7,28.06745738,6,"Payday Loan, Personal Loan, Personal Loan, Not Specified, Student Loan, and Home Equity Loan",32.85276907,13.32365457,18.66,10,Standard,2633.49043,32.07163324,12 Years and 0 Months,NM,131.2489537,100.8378171,High_spent_Medium_value_payments,376.5654412,0,-0.127,-0.7144,-1.9965,-1.9514,0.6715 -0x19a41,CUS_0x43dd,August,30,454-20-3018,Journalist,14269.42,,10,6,29.06745738,5,"Auto Loan, Personal Loan, Personal Loan, Home Equity Loan, and Personal Loan",49.58684413,26,14.36,9,Bad,3447.070954,39.46457453,3 Years and 0 Months,NM,35004,36.53228301,High_spent_Small_value_payments,297.711844,0,0.1741,1.1239,1.1888,-1.7727,-0.0266 -0x19a4d,CUS_0xa567,August,31,#F%$D@*&8,Engineer,102339.96,,7,6,20,6,"Mortgage Loan, Payday Loan, Personal Loan, Payday Loan, Student Loan, and Credit-Builder Loan",18.03651108,13,12.57,9,Standard,1015.24,34.74332373,6 Years and 4 Months,Yes,2591,325.4538173,High_spent_Medium_value_payments,374.4336132,0,0.362,-0.4646,0.1347,-1.1375,1.3044 -0x19a59,CUS_0x1bff,August,38,057-88-5600,Accountant,19323.4,,10,831,19.95700519,8,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Not Specified, Home Equity Loan, and Auto Loan",29.32813328,15,17.02,11,Bad,3256.660954,38.08708365,8 Years and 11 Months,Yes,1422.584791,,High_spent_Large_value_payments,257.8341895,0,-0.4752,1.2137,-0.9634,1.2385,-0.2309 -0x19a65,CUS_0x6116,August,46,362-26-8688,Scientist,40807.77,3399.6475,3,2,5,100,"Home Equity Loan, Payday Loan, and Debt Consolidation Loan",6.426677171,8,13.72,3,Good,1133.1,31.0488034,15 Years and 9 Months,No,75.80151284,184.0479701,!@9#%8,370.1152671,0,-1.0526,0.4072,0.8785,0.3639,0.629 -0x19a71,CUS_0x5309,August,45,458-84-3825,Accountant,36338.78,,8,8,31.06745738,5,"Auto Loan, Payday Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,20,3.01,14,Bad,2085.160954,35.95442342,6 Years and 5 Months,Yes,86.67994081,70.59891898,!@9#%8,346.8240189,0,1.253,-2.3689,-0.4726,0.5992,-1.6108 -0x19a7d,CUS_0x2425,August,25,735-48-2138,Developer,67204.1,5333.341667,0,6,12,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,6,0.78,2,Good,1085.23,25.28623885,23 Years and 9 Months,No,86.31030761,182.6285055,Low_spent_Small_value_payments,554.3953536,0,-0.1797,0.0335,0.4998,0.8356,0.5284 -0x19a89,CUS_0x4d3,August,25,336-50-3957,Scientist,16185.63,1355.8025,7,6,30,4,"Personal Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",,20.68393368,7.66,11,Bad,2560.1424,23.47156912,15 Years and 9 Months,Yes,49.29314269,,Low_spent_Large_value_payments,294.7092651,0,1.4831,-0.3535,-0.539,0.2318,-0.3455 -0x19a95,CUS_0x7dc4,August,27,#F%$D@*&8,Architect,33042.48,,4,4,3,2,"Personal Loan, and Student Loan",14.30583478,12,10.9,1,Good,226.72,40.50656243,23 Years and 4 Months,No,54.98819407,265.7226236,Low_spent_Small_value_payments,263.5431823,0,-0.2873,-0.5743,0.718,-0.455,-0.6646 -0x19aa1,CUS_0x8a5f,August,53,843-69-4562,Musician,123800.8,9657.932662,5,3,7,2,"Payday Loan, and Personal Loan",5.629839618,6,7.21,1,Good,765.8695077,35.17410994,24 Years and 10 Months,No,563.4933084,,!@9#%8,904.8315587,0,-2.9628,-0.4517,-1.1812,0.7886,0.5186 -0x19aad,CUS_0x7e6d,August,42,507-12-2981,Writer,79824.64,6705.053333,9,7,26,8,"Auto Loan, Personal Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",,16,17.14,14,Bad,3633.04,39.18931847,4 Years and 2 Months,Yes,351.5689088,130.0832108,High_spent_Large_value_payments,428.8532138,0,0.6503,1.4551,-0.0437,0.9165,0.3959 -0x19ab9,CUS_0xb86b,August,30,827-45-0353,Accountant,14656.68,,6,6,15,4,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",12.32853672,11,13.96,7,Standard,1395.09,22.14388056,25 Years and 6 Months,Yes,32.35706797,55.21320037,High_spent_Small_value_payments,313.4687317,0,-2.1207,0.023,-1.4155,-0.7491,-0.6439 -0x19ac5,CUS_0x8dfa,August,26,156-15-1149,Journalist,61936.88,,4,4,7,5,"Auto Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",36.53222824,26.80103889,10.39,9,Standard,2068.350463,31.6836899,18 Years and 10 Months,Yes,18095,111.8254798,High_spent_Large_value_payments,426.4537265,0,-0.6112,0.7232,0.3823,0.0691,1.1443 -0x19ad1,CUS_0x2599,August,25,118-17-4711,Accountant,33718.86,,3,3,3,4,"Credit-Builder Loan, Student Loan, Student Loan, and Mortgage Loan",3.076887133,5,6.01,4,Good,771.1872321,22.6677344,28 Years and 2 Months,No,96.94493249,212.4838189,Low_spent_Small_value_payments,302.4877427,0,2.0767,-1.0107,1.7057,0.0208,-0.4851 -0x19add,CUS_0x1a4d,August,25,056-47-9727,Accountant,70646.64,,4,8,21.88954781,7,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",12.2225567,8,19.35,9,_,1639.04,35.03039674,16 Years and 5 Months,Yes,1984.292188,76.21226119,High_spent_Medium_value_payments,417.9418494,0,0.1278,-0.0531,0.341,-1.0956,1.5785 -0x19ae9,CUS_0x6e95,August,49,369-09-8718,Mechanic,153147.64,12915.30333,5,4,2.288361749,0,Payday Loan,0,1.18265287,11.24,3,Good,1353.879544,33.716269,25 Years and 9 Months,No,22390,1310.607115,Low_spent_Large_value_payments,588.9417169,0,-2.0074,-1.7629,-1.1054,-0.9558,-0.8066 -0x19af5,CUS_0x55c5,August,27,424-29-8918,Musician,51370.17,4042.8475,7,5,15,2,"Credit-Builder Loan, and Home Equity Loan",,20.70791523,12.03,7,_,2022.122119,41.13266216,8 Years and 9 Months,Yes,67.59260455,248.876589,High_spent_Small_value_payments,347.8155564,0,1.8691,-0.4832,-0.0087,0.3393,0.1619 -0x19b01,CUS_0xb650,August,37,054-37-0669,Manager,62995.92,,10,6,32,9,"Payday Loan, Mortgage Loan, Not Specified, Home Equity Loan, Not Specified, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",27.11250854,18.0449198,2.61,716,Bad,2531.681792,27.58368751,19 Years and 4 Months,Yes,245.2158175,286.7502055,Low_spent_Medium_value_payments,263.399977,0,0.8021,1.0763,-0.1986,0.2601,0.428 -0x19b0d,CUS_0x9127,August,34,908-71-8093,Musician,32808.09,2968.0075,3,7,13,1,Debt Consolidation Loan,16.28544928,13,-5.57,1,Standard,676.54,27.94820081,32 Years and 8 Months,No,15.68867437,85.15362353,!@9#%8,455.9584521,0,0.1965,-0.2924,-0.0948,0.5928,1.4345 -0x19b19,CUS_0x54c7,August,33,397-67-6292,Lawyer,57246.8,,9,5,32,5,"Auto Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",25.47775354,18,29.34,14,Bad,3281.44,26.64923423,9 Years and 5 Months,Yes,227.6599628,234.5217968,Low_spent_Medium_value_payments,267.0749071,0,1.4086,0.3722,-0.4757,0.4276,0.0502 -0x19b25,CUS_0xb3bd,August,42,642-73-7670,Architect,95596.35,8024.3625,5,7,12,3,"Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",1.687981804,4,5.16,2,Good,64.69,36.28824147,15 Years and 8 Months,No,182.2758306,572.8868967,Low_spent_Large_value_payments,317.2735227,0,0.4953,-0.318,-0.5523,-1.1281,0.9011 -0x19b31,CUS_0x6a6f,August,42,898-93-3892,Lawyer,18754.65,,4,7,12,4,"Not Specified, Auto Loan, Personal Loan, and Not Specified",9.471897596,11,2.68,5,Good,863.48,30.140928,22 Years and 6 Months,No,49.39074925,,Low_spent_Medium_value_payments,259.7915689,0,-0.008,0.4221,0.0818,0.441,1.8627 -0x19b3d,CUS_0x76b,August,26,169-27-4976,Engineer,23987.59,2087.965833,6,5,11.06745738,1,Debt Consolidation Loan,90,2950,16.36,10,Standard,1555.850954,30.14109747,23 Years and 10 Months,Yes,19.3007008,252.3607534,Low_spent_Small_value_payments,200.4148411,0,-1.3748,0.0215,-1.1012,-0.3444,-0.2247 -0x19b49,CUS_0xb122,August,37,399-21-8755,Lawyer,106949.49,,3,5,1,0,,12.03157936,9,10.04,0,Good,790.5447052,26.64826067,16 Years and 9 Months,No,0,,High_spent_Large_value_payments,916.9883576,0,0.4109,1.7429,-1.1303,-0.1537,-0.6963 -0x19b55,CUS_0x26e0,August,36,829-99-2590,Lawyer,14528.81,1106.734167,6,4,19.28836175,2,"Mortgage Loan, and Student Loan",19.56793453,18.00828069,10.84,12,Standard,77.42738477,23.67613516,9 Years and 4 Months,Yes,15.89556149,484.591545,High_spent_Small_value_payments,290.1237712,0,0.0464,0.2824,-1.804,-0.5112,0.3464 -0x19b61,CUS_0x3499,August,80,816-30-7776,Architect,15217.59,999.1325,5,6,17,0,,,15.17568682,9.48,3,Standard,321.6335704,35.68072397,25 Years and 3 Months,No,0,116.1442474,Low_spent_Small_value_payments,273.7690026,0,-0.4008,0.5538,-0.0326,0.0596,-1.4228 -0x19b6d,CUS_0x45b,August,28,042-96-0101,_______,16701.96,1599.83,8,10,20.95700519,8,"Not Specified, Payday Loan, Student Loan, Not Specified, Student Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",,23.08886809,28.28,12,_,5116.737328,27.0983437,14 Years and 3 Months,Yes,1380.088874,,Low_spent_Medium_value_payments,190.3249202,0,0.7323,1.1882,-0.4168,-0.3678,1.2317 -0x19b79,CUS_0x7666,August,52,922-59-5950,Entrepreneur,113284.84,9516.403333,5,4,6.288361749,2,"Debt Consolidation Loan, Home Equity Loan, and Payday Loan",,17.9348088,18.59,2,Standard,1045.366138,27.2957143,16 Years and 11 Months,Yes,257.616616,,Low_spent_Large_value_payments,452.760152,0,-1.7109,0.8611,-0.0751,0.0708,-0.1243 -0x19b85,CUS_0x696c,August,32,206-86-2182,Manager,11032.075,,8,3,13,2,"Mortgage Loan, and Payday Loan",13.65983021,,8.86,7,Standard,1043.81,39.84294713,25 Years and 3 Months,Yes,9.308119528,91.35887276,Low_spent_Small_value_payments,268.366966,0,0.4909,-1.1439,1.1099,-0.5819,-0.2733 -0x19b91,CUS_0x5499,August,40,609-92-7645,Media_Manager,56070.92,,5,6,6,1,Payday Loan,14.00214672,10,16.67,7,Standard,835.57,31.99898758,,Yes,23.84257843,78.45105677,High_spent_Medium_value_payments,607.3640315,0,0.163,0.7094,-0.979,-0.1526,0.4194 -0x19b9d,CUS_0x6781,August,48,996-39-6091,Scientist,24460.96,,5,6,9,1,Personal Loan,,15,,2,Standard,796.9,37.7201485,23 Years and 4 Months,No,10.89889716,45.85569606,!@9#%8,402.2867401,0,-0.1981,0.5519,0.1364,-0.498,0.0717 -0x19ba9,CUS_0xb171,August,41,179-19-9208,Journalist,9269.99,598.4991667,3,6,24,2,"Home Equity Loan, and Auto Loan",22.77339965,19,10.24,8,Standard,1963.61,24.39832348,12 Years and 8 Months,Yes,10.51656003,39.48486172,High_spent_Small_value_payments,269.8484949,0,-0.8657,-0.1777,-1.6165,-0.3404,-1.0527 -0x19bb5,CUS_0x8e81,August,39,#F%$D@*&8,Mechanic,67039.6,5869.633333,7,3,10,7,"Mortgage Loan, Home Equity Loan, Payday Loan, Student Loan, Home Equity Loan, Auto Loan, and Not Specified",28.16004104,22.53108833,10.41,8,Standard,952.8956061,36.33795284,8 Years and 3 Months,Yes,303.2917396,323.4872784,Low_spent_Medium_value_payments,240.1843153,0,-0.8511,-1.3599,-0.4296,-0.2951,-0.8836 -0x19bc1,CUS_0x5097,August,20,907-16-4737,Developer,17328.675,,3,6,15,100,"Auto Loan, Home Equity Loan, and Not Specified",,15,7.84,10,Standard,407.3119514,37.15186997,22 Years and 10 Months,Yes,27.61396532,,Low_spent_Medium_value_payments,256.8219394,0,1.7132,1.8866,0.5813,-0.6356,-0.7971 -0x19bcd,CUS_0x57b1,August,36,181-51-6545,Media_Manager,28378.94,2348.911667,3,7,13,3,"Payday Loan, Payday Loan, and Auto Loan",,19.983081,9.45,7,Standard,1822.241062,41.44548425,16 Years and 11 Months,Yes,52.55835478,127.7159016,Low_spent_Large_value_payments,324.6169103,0,1.6644,1.3215,-0.7073,1.8047,0.6004 -0x19bd9,CUS_0x435d,August,80,760-37-2706,Journalist,35342.98,2919.248333,5,5,3,4,"Mortgage Loan, Not Specified, Payday Loan, and Student Loan",5.347735176,7,4.84,2,Good,994.4,31.07762404,23 Years and 11 Months,No,113.7131001,,High_spent_Medium_value_payments,318.9072368,0,-1.412,-1.0095,0.7795,-0.1643,0.3045 -0x19be5,CUS_0x2b39,August,46,034-89-4652,Scientist,45764.14,,6,5,10.28836175,2,"Debt Consolidation Loan, and Credit-Builder Loan",,14,9.31,3,_,146.1,22.71456153,31 Years and 4 Months,No,62.19456894,,Low_spent_Small_value_payments,106.2524959,0,-0.3259,-0.8028,0.0953,0.6219,-0.0601 -0x19bf1,CUS_0x2142,August,36,571-04-7703,Mechanic,10186.26,985.855,4,3,8,3,"Payday Loan, Home Equity Loan, and Mortgage Loan",10.99358918,10,10.16,5,Good,517.0619968,25.33606404,,NM,18.78837739,91.65178306,!@9#%8,286.500719,0,1.0935,1.0725,0.7869,0.935,0.5499 -0x19bfd,CUS_0xba6,August,46,808-86-3684,Engineer,110557.08,9210.09,3,5,5,2,"Not Specified, and Credit-Builder Loan",23.32087719,15,5.51,5,Standard,946.28,25.58974541,18 Years and 0 Months,Yes,181.8557754,510.8236623,Low_spent_Small_value_payments,518.3295623,0,-0.2587,-0.686,1.2724,-0.1097,0.7942 -0x19c09,CUS_0x5a4f,August,29,953-38-0957,Teacher,57303.36,4949.28,10,9,31.88954781,100,"Not Specified, Mortgage Loan, Not Specified, Not Specified, Not Specified, and Payday Loan",35.67267499,21.1186314,,11,Bad,1512.940041,29.06114732,17 Years and 10 Months,Yes,1573.592443,196.1977629,High_spent_Medium_value_payments,280.8077124,0,0.0698,1.0913,-0.1843,1.2603,0.8426 -0x19c15,CUS_0xc60d,August,18,946-55-9837,Architect,15618.52,,216,7,23.06745738,7,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Personal Loan, and Auto Loan",30.01102813,19.58332971,20.03,9,Bad,3393.592545,37.53130294,14 Years and 4 Months,Yes,86.6374151,129.3609538,!@9#%8,175.7356764,0,1.1582,-0.0204,-0.3591,-0.869,-1.0109 -0x19c21,CUS_0x8a3f,August,52,108-22-7256,_______,39477.34,,0,1,10.28836175,0,,,3,2.48,4,_,322.8975533,30.88341855,31 Years and 9 Months,No,0,492.373984,High_spent_Medium_value_payments,485.2917528,0,-0.6518,1.0091,0.1627,0.1413,0.0075 -0x19c2d,CUS_0x5e22,August,21,587-40-4260,Manager,41435.26,3639.938333,7,7,26,6,"Debt Consolidation Loan, Student Loan, Payday Loan, Mortgage Loan, Student Loan, and Debt Consolidation Loan",27.94567959,18,12.99,,Bad,1625.55,30.26949345,18 Years and 8 Months,Yes,175.8051495,10000,Low_spent_Medium_value_payments,363.0349168,0,-0.883,0.2189,-0.9476,-0.5119,-0.655 -0x19c39,CUS_0xaa15,August,52,732-57-4118,Architect,18124.175,,6,5,11,3,"Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",13.87097662,13,11.87,4,Good,303.7698808,33.24476651,25 Years and 2 Months,No,31.98915646,71.0293553,High_spent_Small_value_payments,334.3148326,0,-2.8408,1.6584,-0.6911,-0.4973,3.1565 -0x19c45,CUS_0x1f64,August,41,477-78-7314,Accountant,14417.71,,7,8,35.06745738,7,"Credit-Builder Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,24,28.56,12,_,3300.980954,23.98481663,8 Years and 10 Months,Yes,58.37874486,59.26170852,High_spent_Small_value_payments,258.186842,0,0.8268,-2.0993,-1.4053,-1.0644,-0.1097 -0x19c51,CUS_0x48f,August,25,323-92-8842,Journalist,72629.12,5884.426667,8,9,20.95700519,7,"Personal Loan, Not Specified, Debt Consolidation Loan, Student Loan, Student Loan, Personal Loan, and Payday Loan",49.06793259,31.73932765,21.23,16,Bad,5386.349725,33.63888786,8 Years and 2 Months,Yes,1617.267632,,High_spent_Small_value_payments,255.819686,0,0.7185,-0.0745,-1.1333,-0.6069,0.4497 -0x19c5d,CUS_0x29b4,August,23,041-71-4410,Accountant,14702.05,,5,4,19,4,"Not Specified, Payday Loan, Debt Consolidation Loan, and Payday Loan",25.39800706,18,15,6,Standard,740.4888438,27.2601409,13 Years and 10 Months,Yes,83.39548315,55.99499237,Low_spent_Large_value_payments,300.3936297,0,-0.3295,0.001,-0.536,-0.1965,2.3292 -0x19c69,CUS_0x5ae3,August,51,381-36-5261,Journalist,70968.06,5773.005,8,4,5,2,"Payday Loan, and Not Specified",27.25947496,19,8.95,7,Good,768.2922082,25.74498277,25 Years and 10 Months,No,97.85238037,516.838841,!@9#%8,304.1840974,0,0.2678,1.2673,-2.1677,0.5481,0.3865 -0x19c75,CUS_0xbe9a,August,50,994-73-1178,Manager,34058.47,,1,2,4.288361749,2,"Mortgage Loan, and Debt Consolidation Loan",,4,4.01,3,Good,339.54,28.05341632,24 Years and 8 Months,No,49.18150604,513.0703136,High_spent_Medium_value_payments,395.1062247,0,-0.901,1.955,-0.0042,0.9181,1.509 -0x19c81,CUS_0x4874,August,51,647-44-9598,_______,22914.66,,8,3,10,3,"Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",6.851737504,8,16.66,3,Standard,345.85,34.84098062,33 Years and 5 Months,Yes,49.37587448,46.31754244,High_spent_Medium_value_payments,328.9620831,0,-0.2811,-1.4065,0.911,-1.4099,-0.822 -0x19c8d,CUS_0xc67b,August,42,817-66-1241,Doctor,64175.56,5154.963333,7,8,25,5,"Mortgage Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Mortgage Loan",,23,21.21,6,Bad,3203.71,31.92116214,3 Years and 11 Months,Yes,179.5998609,90.92425752,!@9#%8,504.9722149,0,-0.7889,1.3768,-1.5408,-0.8776,-0.8957 -0x19c99,CUS_0x8a64,August,31,890-19-7542,Accountant,15971.515,1366.959583,4,3,11,0,,15.38534077,,11.25,3,Good,614.4109478,36.89271511,26 Years and 3 Months,No,0,97.94836132,Low_spent_Small_value_payments,328.747597,0,0.3375,1.1241,0.0508,-0.2356,-0.2713 -0x19ca5,CUS_0x35ea,August,40,741-57-0740,Architect,52837.29,4230.1075,6,9,31.88954781,6,"Home Equity Loan, Payday Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,24,15.47,15,Bad,4969.21,25.47884058,12 Years and 9 Months,Yes,1467.779639,113.3892314,High_spent_Medium_value_payments,397.5117978,0,-1.2561,-1.2967,-1.8025,-3.0548,-1.3323 -0x19cb1,CUS_0x5044,August,23,729-31-7906,Lawyer,16406.08,1604.173333,5,5,16,3,"Credit-Builder Loan, Payday Loan, and Student Loan",23.8624914,17,,10,_,1618.94,27.71749978,7 Years and 2 Months,Yes,34.19404285,114.3389782,Low_spent_Large_value_payments,281.8843122,0,0.5235,0.8086,0.8849,-0.3483,-0.9805 -0x19cbd,CUS_0x9dfd,August,46,448-68-0409,Musician,80633.22,6463.435,2,4,6,4,"Payday Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",3.797982988,5,6.27,1,Good,259.0541265,40.46223385,27 Years and 5 Months,No,142.8242214,169.6922286,High_spent_Medium_value_payments,606.8303891,0,-1.0453,0.1128,0.8664,-2.5009,-1.4765 -0x19cc9,CUS_0x513,August,44,063-74-6877,Teacher,8787.9,,8,5,18,100,"Student Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",22.34454981,20,10.13,9,Standard,234.47,34.30790671,14 Years and 3 Months,Yes,23.82537506,22.64836168,High_spent_Small_value_payments,262.6587633,0,-1.3482,0.2443,1.0279,-0.7574,0.7918 -0x19cd5,CUS_0xba0b,August,37,165-76-8590,Accountant,54265.54,4248.128333,3,5,5,2,"Mortgage Loan, and Student Loan",16.18250367,11,-1.22,5,Standard,469.2377979,36.79699935,23 Years and 6 Months,No,82.10549979,111.2962541,High_spent_Small_value_payments,505.2021377,0,0.6164,-1.2769,-0.0301,-0.0433,-0.453 -0x19ce1,CUS_0x9e7e,August,52,126-99-9312,Entrepreneur,88296.18,,4,4,11,3,"Mortgage Loan, Personal Loan, and Debt Consolidation Loan",,6,6.87,,_,1301.98,26.25068107,24 Years and 5 Months,NM,127.2956303,221.449367,Low_spent_Medium_value_payments,669.8565028,0,-0.2392,0.5045,0.8038,-1.3421,0.9379 -0x19ced,CUS_0x37dd,August,34,205-34-4451,Media_Manager,67408.06,5136.791348,5,3,6,3,"Payday Loan, Payday Loan, and Debt Consolidation Loan",,13,9.74,,Good,878.8700338,35.23471829,22 Years and 6 Months,NM,835.8296236,,High_spent_Medium_value_payments,593.5034924,0,1.6025,-0.6365,0.9887,-0.3279,-0.7419 -0x19cf9,CUS_0x8873,August,44,191-16-0751,_______,28274.64,2398.22,5,7,15,3,"Not Specified, Personal Loan, and Student Loan",24.89289453,17,14.35,8,Standard,953.08,26.91413814,18 Years and 2 Months,Yes,62.07787754,148.6761395,Low_spent_Small_value_payments,319.067983,0,-1.7862,-0.6021,1.2179,0.019,-1.2979 -0x19d05,CUS_0x61e0,August,24,561-53-6530,Architect,100697.64,,8,7,15.28836175,0,Not Specified,14.75831752,13,19.19,,Standard,1115,34.30663666,21 Years and 4 Months,NM,81935,994.1647676,Low_spent_Large_value_payments,482.2990056,0,-1.1396,-0.0251,0.2951,1.0524,0.2225 -0x19d11,CUS_0x7eb0,August,49,#F%$D@*&8,Media_Manager,28378.53,,6,3,9,1,Not Specified,22.22769429,17,16.42,5,Standard,316.61,37.3967053,17 Years and 0 Months,Yes,20.85160612,48.64440516,High_spent_Small_value_payments,413.3917387,0,0.5556,0.8647,-0.0721,1.8585,0.0101 -0x19d1d,CUS_0x5fdb,August,18,859-09-6348,Musician,43171.59,,8,9,22.88954781,6,"Not Specified, Not Specified, Home Equity Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",23.0944203,,8.52,7,Bad,2028.14,29.39896788,16 Years and 3 Months,Yes,12850.48344,109.0509836,High_spent_Medium_value_payments,346.2637765,0,1.3279,0.5676,-1.2142,1.8817,0.4657 -0x19d29,CUS_0x8f16,August,40,244-17-9158,Entrepreneur,33717.92,,10,9,17,7,"Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",29.17665383,15,6.03,12,Bad,1298.16,25.23752429,11 Years and 0 Months,Yes,180.740396,,Low_spent_Small_value_payments,213.9915738,0,1.6078,0.2508,0.9496,-0.5298,0.8205 -0x19d35,CUS_0x3ff9,August,19,190-53-4630,Doctor,17055.61,1650.300833,7,3,20,2,"Mortgage Loan, and Payday Loan",,19,11.44,8,Standard,1079.76,35.53344133,19 Years and 5 Months,Yes,28.40229704,222.0196477,Low_spent_Small_value_payments,204.6081386,0,0.6126,-0.591,-2.8547,0.4619,1.5508 -0x19d41,CUS_0x5e43,August,21,480-41-6550,Architect,8392.645,,6,8,27.06745738,5,"Personal Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Not Specified",30.83029876,21,1.49,11,Bad,3170.980954,26.37198294,13 Years and 10 Months,Yes,22.01998214,87.35335115,Low_spent_Small_value_payments,233.5450871,0,-0.8423,0.7075,0.8879,-0.6881,0.7196 -0x19d4d,CUS_0x26e3,August,27,004-13-8448,Architect,64845.8,5574.816667,5,6,12,2,"Credit-Builder Loan, and Student Loan",12.73843201,11,7.13,6,Standard,528.95,26.34095803,6 Years and 4 Months,NM,75.9134721,101.1455925,High_spent_Medium_value_payments,630.4226021,0,-1.891,-0.3452,-1.425,-0.4068,-1.0616 -0x19d59,CUS_0x8d2,August,37,183-30-2570,Entrepreneur,125027.24,8912.983175,4,3,5,1,Auto Loan,,6,8.58,5,Good,774.4957071,43.45851227,20 Years and 8 Months,No,1320.790134,222.3840897,High_spent_Large_value_payments,981.2452099,0,-0.2148,0.913,0.0504,1.0681,1.3115 -0x19d65,CUS_0xb9a2,August,26,979-40-4257,Developer,59375.22,4734.935,3,4,5,4,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",2.730886135,5,7.33,0,Good,833.4528988,34.78026758,25 Years and 3 Months,No,116.8332019,289.6197941,High_spent_Small_value_payments,359.0714724,0,-0.5322,-0.3533,1.2407,-0.7113,-0.4931 -0x19d71,CUS_0x9bf4,August,31,544-05-0223,Manager,26305.91,1946.159167,4,7,9,2,"Payday Loan, and Payday Loan",17.98171354,,7.34,4,_,151.95,38.4879345,29 Years and 11 Months,Yes,23.99050696,80.68360669,Low_spent_Large_value_payments,359.941803,0,-0.864,1.0768,0.0077,-0.2303,0.9 -0x19d7d,CUS_0x12af,August,37,430-21-6270,Manager,33799.36,,5,3,19,4,"Personal Loan, Not Specified, Mortgage Loan, and Personal Loan",18.0326861,,22.35,5,Standard,173.76,28.18336167,6 Years and 11 Months,Yes,75.09807764,235.3823394,Low_spent_Large_value_payments,253.9809163,0,-0.3592,-0.3393,1.2896,-0.293,-1.5746 -0x19d89,CUS_0x9d3,August,39,380-56-6739,_______,20886.73,,5,5,12,4,"Personal Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",,8,4.07,5,Good,769.43,29.0958202,32 Years and 11 Months,No,39.69011607,58.71260366,!@9#%8,344.1533636,0,-1.279,-0.8053,-0.5181,0.2605,0.2015 -0x19d95,CUS_0x6987,August,33,132-81-3981,Lawyer,17640.42,,7,5,31,7,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Home Equity Loan",,,26.55,12,Bad,5126.872228,32.05253196,3 Years and 4 Months,Yes,36469,,Low_spent_Small_value_payments,178.6409791,0,-0.7392,-1.3638,0.4674,-0.4234,-0.2052 -0x19da1,CUS_0x99d9,August,38,248-26-6478,Media_Manager,19850.31,,6,7,16.06745738,5,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",90,2810,6.57,15,_,3754.410954,33.21400897,14 Years and 5 Months,Yes,74.86545483,18.68086392,High_spent_Large_value_payments,288.5526433,0,0.7751,0.4967,0.8597,1.1726,-0.8088 -0x19dad,CUS_0xb4f,August,51,910-76-8436,Journalist,56622.3,,1,4,11,0,,0,0,7.9,1,_,98.74611599,27.75243332,29 Years and 2 Months,No,0,,!@9#%8,542.6338659,0,-0.4974,0.9441,-1.1137,0.0977,-0.8335 -0x19db9,CUS_0x8bd2,August,33,375-03-0117,Mechanic,16540.95,,8,4,9,4,"Auto Loan, Home Equity Loan, Not Specified, and Personal Loan",14.62322874,14,4.3,4,_,794.61,30.19553596,26 Years and 2 Months,No,53.65909569,,Low_spent_Medium_value_payments,225.9532721,0,-1.0129,-0.1513,0.26,0.434,-0.6249 -0x19dc5,CUS_0x5648,August,26,230-00-1329,Architect,43269.35,,2,3,3,3,"Payday Loan, Auto Loan, and Home Equity Loan",0,2,1.39,7,Good,877.6111182,25.36541497,27 Years and 5 Months,No,94.52943747,142.7042533,High_spent_Medium_value_payments,386.6335107,0,0.3232,-1.9498,0.7024,0.1778,-0.6399 -0x19dd1,CUS_0xc0c6,August,35,962-51-8001,Developer,105596.28,,7,7,19,1,Personal Loan,20.38148189,18,7.17,3,Standard,459.52,32.64238622,21 Years and 9 Months,No,46.54925674,10000,High_spent_Large_value_payments,833.9674671,0,1.1792,-2.0242,-1.5523,-0.8101,0.6687 -0x19ddd,CUS_0xc4bb,August,20,084-61-3398,Media_Manager,12928.24,,7,6,11,1074,,23.09790815,20,1.15,0,Good,952.9091293,29.26368571,33 Years and 0 Months,NM,0,,Low_spent_Small_value_payments,253.4728977,0,-1.7445,-0.1352,-2.5428,1.0886,0.9107 -0x19de9,CUS_0x5c72,August,30,039-93-2137,Entrepreneur,111404.52,9473.71,1,1,10.28836175,2,"Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",,0,4.46,0,Good,425.2397229,27.37826689,30 Years and 2 Months,No,155.8799843,,High_spent_Medium_value_payments,861.7723771,0,0.0796,-1.682,-0.1068,-0.2899,-0.7744 -0x19df5,CUS_0x19d1,August,36,149-03-2551,Scientist,7110.93,,7,10,22,4,"Auto Loan, Payday Loan, Personal Loan, and Home Equity Loan",34.92617529,17.99202672,9.03,6,Bad,2496.545477,33.23761065,6 Years and 11 Months,Yes,16.9803565,14.44113688,High_spent_Large_value_payments,292.9362566,0,0.3529,1.9723,-0.4902,0.8283,-0.482 -0x19e01,CUS_0xa5f4,August,30,099-36-7622,Manager,65536.74,5359.395,5,2,6,4,"Student Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",3.958172275,7,7.75,,Good,61.54886146,31.83988738,16 Years and 9 Months,No,163.5357792,119.7657006,High_spent_Large_value_payments,510.7944773,0,-0.5489,-1.2342,-0.1168,0.1315,-0.7478 -0x19e0d,CUS_0xa499,August,39,467-18-2266,Doctor,19200.08,,3,3,15,4,"Credit-Builder Loan, Personal Loan, Payday Loan, and Auto Loan",,22,19.49,9,Standard,1466.57,23.17492751,5 Years and 10 Months,Yes,54.41731056,145.6864409,Low_spent_Small_value_payments,257.6969152,0,-0.324,-1.82,0.11,1.3929,-0.9148 -0x19e19,CUS_0x9c28,August,34,109-17-5486,Doctor,17645.66,,4,9,25,5,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",10.88956893,9.618532318,18.7,9,Standard,2069.732023,26.25041788,20 Years and 4 Months,Yes,49.18230395,40.24777032,High_spent_Medium_value_payments,327.7170924,0,2.5278,0.2249,1.4397,0.3549,0.7485 -0x19e25,CUS_0xc3b8,August,20,370-83-2145,_______,9311.995,1015.999583,9,6,22,7,"Not Specified, Not Specified, Student Loan, Mortgage Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",18.67847223,14.05905449,21.51,8,Standard,2503.124059,39.09280688,10 Years and 9 Months,Yes,44.96331562,,High_spent_Small_value_payments,298.4734851,0,1.3265,-0.6022,-0.5947,-0.7232,-0.7044 -0x19e31,CUS_0xbabc,August,20,953-01-4502,Media_Manager,8139.495,,10,7,17.06745738,9,"Student Loan, Payday Loan, Not Specified, Payday Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, and Student Loan",37.33312746,19,18.87,7,Bad,3299.390954,36.12085192,6 Years and 3 Months,Yes,37.95382531,24.68305746,Low_spent_Small_value_payments,239.7719543,0,0.6099,-0.7566,0.0005,-1.9513,-2.739 -0x19e3d,CUS_0xc648,August,40,545-42-5914,Architect,32757.76,2631.813333,5,6,2874,2,"Mortgage Loan, and Personal Loan",,20,4.28,5,_,504.73,38.34435121,16 Years and 9 Months,No,47.15487891,200.8256407,Low_spent_Small_value_payments,305.2008137,0,0.065,-0.6412,0.0336,-0.1056,-0.3774 -0x19e49,CUS_0x93bc,August,34,482-17-1760,Developer,16596.385,1659.032083,8,5,9.067457376,4,"Student Loan, Credit-Builder Loan, Student Loan, and Credit-Builder Loan",19.51967354,13,9.98,3,Standard,1634.660954,33.59780515,18 Years and 9 Months,Yes,35.64449133,,Low_spent_Small_value_payments,201.8135019,0,0.1276,1.587,-0.5671,-1.661,-0.9211 -0x19e55,CUS_0x764f,August,30,315-17-8163,Teacher,79630.14,6689.845,3,1,3,1,Personal Loan,,10,11.37,0,Good,1133.46,37.41455886,15 Years and 11 Months,No,34.55106016,432.0003782,Low_spent_Small_value_payments,492.4330617,0,1.2414,-0.0593,-1.2598,-1.1684,-1.6402 -0x19e61,CUS_0xbebf,August,23,410-80-9046,Entrepreneur,22222.15,,7,6,20,4,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",13.17372212,9,14.91,8,_,81.68,37.33835716,,Yes,44.47064856,,High_spent_Medium_value_payments,331.0580006,0,1.6796,-1.7234,-0.3641,-1.1496,-1.8271 -0x19e6d,CUS_0x216a,August,26,526-33-0806,Writer,45472.2,3693.35,6,10,23,4,"Not Specified, Mortgage Loan, Personal Loan, and Student Loan",35.42619088,18.84058243,4.44,11,_,1511.740759,32.2896217,,Yes,111.7463466,223.8716285,Low_spent_Medium_value_payments,313.7170249,0,2.2444,-0.0378,0.1725,1.1391,-0.2795 -0x19e79,CUS_0x20ac,August,44,#F%$D@*&8,Doctor,57953.82,4606.485,7,6,17,0,,16.80612587,,9.38,2036,Standard,221.62,36.13576762,18 Years and 4 Months,Yes,0,335.5526319,Low_spent_Medium_value_payments,405.0958681,0,0.1424,-0.4899,-0.0942,-0.3738,0.1177 -0x19e85,CUS_0x3cc2,August,29,327-15-6863,Accountant,40369.07,3186.089167,0,4,10,0,,0,2,,0,Good,570.51,24.07169244,27 Years and 10 Months,NM,81760,363.5884136,Low_spent_Small_value_payments,245.0205031,0,-0.3538,-0.0652,-1.071,0.5756,0.9305 -0x19e91,CUS_0x5c4f,August,42,832-33-3807,Lawyer,33181.3,2739.108333,6,7,33.06745738,6,"Personal Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",,23,28.43,6,Bad,3730.780954,36.3971269,12 Years and 4 Months,Yes,115.0475849,83.45669326,Low_spent_Large_value_payments,318.6862672,0,1.1222,0.3664,0.3042,-0.6673,0.2045 -0x19e9d,CUS_0x924,August,26,409-92-8008,Mechanic,179166.48,14929.54,1,5,5,1,Credit-Builder Loan,,1,10.75,4,Good,181.42,36.73889888,32 Years and 2 Months,No,138.8017482,,Low_spent_Medium_value_payments,859.6584632,0,1.4819,0.7946,-0.7167,0.1848,-1.4167 -0x19ea9,CUS_0x3a3a,August,53,661-86-5423,Lawyer,32972.8,2836.733333,6,3,8,0,,16.73435271,14,11.01,7,Standard,390.41,27.31093714,23 Years and 5 Months,Yes,0,,!@9#%8,458.8964796,0,-0.5752,2.8547,0.7535,0.2908,2.0302 -0x19eb5,CUS_0x5d91,August,18,018-41-6428,Engineer,7632.555,476.04625,8,1206,32.88954781,6,"Payday Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Payday Loan, and Home Equity Loan",,9,15.26,10,Standard,1401.9,30.6091325,12 Years and 8 Months,Yes,1358.412607,15.88517375,Low_spent_Large_value_payments,248.9767625,0,0.6788,0.5039,0.7904,1.4906,0.844 -0x19ec1,CUS_0x6ba7,August,55,190-50-0587,Manager,27223.1,2363.591667,8,6,7,0,,23.59427831,18,3.81,6,Good,1241.503618,33.70433844,16 Years and 8 Months,No,0,26.29820557,High_spent_Large_value_payments,453.6447586,0,-0.7929,-0.583,0.4315,0.8364,2.217 -0x19ecd,CUS_0x1764,August,26,807-84-4440,Engineer,33574.44,2864.87,7,7,15.28836175,520,"Mortgage Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",20.64678776,18,10.05,0,Standard,79.95,36.43342785,24 Years and 10 Months,No,109.6811715,614.1517342,Low_spent_Medium_value_payments,262.5915552,0,0.1686,0.4684,0.9528,1.1973,-1.9335 -0x19ed9,CUS_0x1971,August,34,359-13-5762,Manager,34798.82,3019.901667,7,10,20,100,"Home Equity Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",28.95826531,17,19.74,16,Bad,2801.86,37.82009896,12 Years and 4 Months,Yes,257.245832,123.1173139,High_spent_Medium_value_payments,171.6270207,0,-1.0151,1.3995,-1.0224,-0.4165,-1.504 -0x19ee5,CUS_0x4f07,August,20,435-68-3780,Lawyer,26460.7,2295.058333,6,6,10,4,"Student Loan, Payday Loan, Personal Loan, and Home Equity Loan",26.0010001,19,16.21,5,Standard,1378.46,29.04432356,31 Years and 0 Months,Yes,49.03625747,,Low_spent_Small_value_payments,171.1708254,0,0.763,-0.3415,-1.7149,1.3187,0.7219 -0x19ef1,CUS_0x6acc,August,49,492-06-5392,Journalist,28975.42,2391.618333,4,5,13,1,Debt Consolidation Loan,,11,2.86,2,Standard,675.8,36.03605536,23 Years and 8 Months,No,19.30059125,109.2575305,Low_spent_Small_value_payments,400.6037115,0,-0.3357,-1.4298,0.0612,1.6282,-0.5388 -0x19efd,CUS_0x5f02,August,31,284-27-3237,Teacher,49405.92,4019.16,7,6,2617,100,,15.0702938,9,10.51,7,Standard,1123.87,39.13733734,25 Years and 5 Months,Yes,0,140.3223107,High_spent_Medium_value_payments,511.5936893,0,-0.4777,-0.6795,-0.1677,-0.4814,-0.1216 -0x19f09,CUS_0xbab8,August,48,624-51-5781,Musician,175972,14771.33333,3,4,2.288361749,2,"Personal Loan, and Payday Loan",2.023768491,4.622727003,8.01,3,Good,192.898394,31.83256279,24 Years and 4 Months,NM,285.6316023,522.8285921,High_spent_Large_value_payments,1328.6106,0,0.8465,0.1312,-2.1471,-0.3868,0.4037 -0x19f15,CUS_0x2fb1,August,24,620-09-6549,Journalist,105151.32,8861.61,6,3,11,0,,,15,8.78,9,Standard,689.43,31.13752208,31 Years and 5 Months,Yes,0,582.7565775,Low_spent_Small_value_payments,593.4044225,0,-0.1091,-1.2861,-2.8277,0.628,-1.3045 -0x19f21,CUS_0x9d09,August,34,976-59-9978,Architect,29902.72,2676.893333,4,7,8,2,"Not Specified, and Not Specified",16.10012461,12,17.84,5,_,1044.88,31.48008897,,Yes,43.67250296,86.88630491,Low_spent_Large_value_payments,407.1305255,0,-0.2974,-1.0718,-0.6009,0.3766,0.8598 -0x19f2d,CUS_0x905,August,42,491-80-3802,Scientist,99573.12,8240.76,5,4,13,3,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",16.67923994,14,8.94,0,Standard,327.22,24.52433385,26 Years and 5 Months,No,196.2160307,,High_spent_Large_value_payments,688.0523552,0,0.9564,1.6353,0.4621,0.7845,-0.5121 -0x19f39,CUS_0x716c,August,27,612-66-0281,Writer,39453.74,3254.811667,5,1,6,1,Personal Loan,0,2,1.8,6,Good,1432.03,28.35972591,29 Years and 5 Months,No,26.00876254,,Low_spent_Small_value_payments,196.9746232,0,0.1785,-1.6169,0.0637,1.1822,-0.0823 -0x19f45,CUS_0x4ee5,August,80,009-33-0735,Lawyer,75988.68,6419.39,0,3,9,4,"Personal Loan, Auto Loan, Personal Loan, and Student Loan",3.227001112,3,11.26,1,Good,1241.25,33.51784458,33 Years and 4 Months,No,162.1990831,94.80818244,High_spent_Large_value_payments,624.9317345,0,-2.1376,0.2605,0.8899,0.3717,0.3192 -0x19f51,CUS_0x3797,August,42,683-12-2435,Musician,46256.34,4048.695,7,5,30,6,"Not Specified, Personal Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Personal Loan",24.4998361,18.67652772,17.92,9,Bad,4697.871679,31.76937495,,Yes,133.9629711,172.2987699,Low_spent_Small_value_payments,388.607759,0,0.6765,0.606,1.2552,-1.2311,0.6638 -0x19f5d,CUS_0x7015,August,39,795-31-5311,Musician,8057.43,561.4525,4,9,18.06745738,6,"Mortgage Loan, Not Specified, Auto Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",23.02620788,15.58065743,13.12,11,Standard,1833.480533,35.38096062,19 Years and 4 Months,Yes,37.00205503,54.14228998,Low_spent_Small_value_payments,228.280617,0,2.1096,0.5233,-1.1687,0.1498,-0.0985 -0x19f69,CUS_0x7443,August,22,120-25-8979,Musician,22815,2071.25,3,4,17,3,"Not Specified, Home Equity Loan, and Home Equity Loan",,10.30007399,11.18,7,_,206.8116247,30.78190238,18 Years and 2 Months,Yes,22898,197.0454675,Low_spent_Small_value_payments,258.5462127,0,-0.356,-1.2655,1.2775,-1.2854,-0.1078 -0x19f75,CUS_0x76a9,August,18,830-79-0818,Developer,61350.48,4998.54,6,9,29.06745738,7,"Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Auto Loan",28.58876256,19,17.48,14,Bad,4188.820954,35.00840655,,Yes,322.5293333,283.0701979,Low_spent_Large_value_payments,137.5341809,0,1.635,-0.4245,1.5295,0.212,-1.0812 -0x19f81,CUS_0x2218,August,35,984-57-8939,Architect,34700.16,,7,6,30,5,"Student Loan, Auto Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,23,8.55,10,Bad,1900.43,34.07548271,9 Years and 5 Months,Yes,109.5029976,51.64173071,High_spent_Medium_value_payments,396.4232717,0,0.5018,-0.5548,-0.4073,0.7457,-0.0229 -0x19f8d,CUS_0xa405,August,24,456-97-3772,Journalist,7788.985,622.0820833,4,6,18,2,"Auto Loan, and Home Equity Loan",,13,10.82,7,Standard,1796.83,34.57400998,15 Years and 10 Months,Yes,10.98772588,63.32637573,Low_spent_Small_value_payments,277.8941067,0,-0.9565,-0.414,-0.2259,-0.4233,1.0013 -0x19f99,CUS_0x9ba5,August,49,257-72-0519,Accountant,88165.12,7547.093333,5,4,2.288361749,2,"Auto Loan, and Payday Loan",4.029113622,6,4.48,1,Good,60.15725158,27.53620275,21 Years and 0 Months,No,85.91595826,524.2168482,High_spent_Large_value_payments,820.0240732,0,0.0174,0.2075,-3.073,-3.3929,1.8512 -0x19fa5,CUS_0x54d6,August,24,881-78-4378,Media_Manager,107591.79,,5,4,4.288361749,4,"Personal Loan, Personal Loan, Mortgage Loan, and Not Specified",,,6.84,2,Good,9.297022819,26.98780237,26 Years and 0 Months,No,263.093366,495.2300332,High_spent_Large_value_payments,788.7684859,0,0.1383,-0.1536,-1.3159,3.0323,-0.4008 -0x19fb1,CUS_0x13fa,August,25,158-05-0970,Manager,32394.38,2631.531667,8,10,25.88954781,100,"Student Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Personal Loan, and Student Loan",29.14818824,18.53381924,8.41,13,Bad,2111.802788,23.90392036,19 Years and 2 Months,Yes,1466.517643,10000,Low_spent_Small_value_payments,47.55386904,0,-0.5347,-0.7184,-0.3639,0.6133,0.6953 -0x19fbd,CUS_0xb2f6,August,25,187-25-6255,Scientist,67082.16,,8,8,18.88954781,6,"Mortgage Loan, Payday Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",32.11964126,21.32734625,4.96,11,Bad,1926.116133,29.71529713,7 Years and 8 Months,Yes,1575.775102,80.65698192,High_spent_Medium_value_payments,461.4558347,0,1.4354,0.0459,-0.7969,-0.8898,-0.1284 -0x19fc9,CUS_0x6998,August,28,199-62-5801,Accountant,68367.8,,6,4,1.288361749,0,,20.85811613,18,9.13,5,Good,359.85,34.9930462,27 Years and 2 Months,No,289.2456995,549.5895785,High_spent_Medium_value_payments,663.9795492,0,-1.0055,-0.5252,0.7434,0.6722,0.8196 -0x19fd5,CUS_0x2e72,August,22,756-40-7758,Scientist,17670.52,1529.543333,10,7,21,8,"Credit-Builder Loan, Home Equity Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Student Loan",,,7.15,9,Bad,5571.25681,26.22866826,5 Years and 6 Months,Yes,71.85825675,101.7832398,Low_spent_Small_value_payments,269.3128368,0,1.0781,0.5144,-0.5259,0.3021,0.4202 -0x19fe1,CUS_0x61c8,August,38,018-82-2114,Accountant,42337.39,3545.115833,2,4,3.288361749,2,"Auto Loan, and Credit-Builder Loan",12.23054295,12,2.29,2,Good,521.916489,32.69785995,32 Years and 4 Months,No,39.43438132,467.3919258,High_spent_Medium_value_payments,524.4805972,0,-1.1246,0.71,-1.325,0.2805,-0.3442 -0x19fed,CUS_0x9e0,August,18,759-32-1111,Developer,73530.48,6301.54,7,4,6,6,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",15.34457935,12,11.62,10,Standard,2420.44,38.97578979,10 Years and 10 Months,Yes,231.9740548,577.4116634,Low_spent_Medium_value_payments,100.7682818,0,0.0163,1.3366,-0.6331,-0.5143,-0.1005 -0x19ff9,CUS_0x238c,August,28,789-29-5186,Media_Manager,38269.83,3010.1525,3,1,9,1,Payday Loan,,,7.6,3,Good,990.6985459,39.13706885,20 Years and 5 Months,No,26.53225597,82.10320943,High_spent_Large_value_payments,443.9577506,0,-0.1133,-0.0148,-0.5174,0.1756,0.4559 -0x1a005,CUS_0x3c63,August,47,284-68-0301,Writer,27240.07,,5,3,18,4,"Mortgage Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",24.65758796,18,4.22,3,Standard,1301.08,30.96242827,,NM,88.41278203,,!@9#%8,285.4733536,0,1.61,0.3186,0.6334,-0.3768,0.2089 -0x1a011,CUS_0x77b7,August,80,001-96-4399,Mechanic,15120,1447,7,7,33.06745738,7,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",,4570.984746,5.61,13,Bad,3496.028919,37.97508629,2 Years and 4 Months,NM,58.56632827,98.73275307,Low_spent_Large_value_payments,230.6806307,0,0.4518,-0.0861,-0.1096,0.0482,0.4057 -0x1a01d,CUS_0x9ce7,August,18,874-82-0096,Teacher,32377.38,2571.115,3,5,12,7,"Payday Loan, Not Specified, Payday Loan, Auto Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",22.92046489,17,24.14,4,Standard,114.94,27.20570087,11 Years and 8 Months,Yes,112.174744,,High_spent_Small_value_payments,340.8576368,0,-1.3984,1.2313,0.4843,-0.09,0.8486 -0x1a029,CUS_0x79f7,August,39,#F%$D@*&8,Scientist,49880.68,3936.723333,5,5,14,0,,15.7608949,14,6.24,4,_,499.95,33.20652324,27 Years and 3 Months,No,0,,Low_spent_Large_value_payments,559.2021376,0,0.2311,-0.1494,-2.3741,-0.482,1.2839 -0x1a035,CUS_0x2eb7,August,19,292-20-5574,Doctor,19963.97,,5,10,31,5,"Auto Loan, Payday Loan, Not Specified, Student Loan, and Home Equity Loan",11.33432716,10.65297356,15.32,12,Standard,2258.699281,32.42765113,10 Years and 0 Months,Yes,52.60022674,85.31992215,Low_spent_Large_value_payments,279.8462678,0,-0.5585,-0.4921,-0.6403,-0.1864,-0.1476 -0x1a041,CUS_0x6d63,August,29,609-98-6953,Lawyer,8393.96,,5,5,32,2,"Debt Consolidation Loan, and Debt Consolidation Loan",23.74264072,19.56783213,18.84,12,_,1590.244492,38.58575013,14 Years and 5 Months,Yes,8.025107607,86.94612281,Low_spent_Small_value_payments,273.0784362,0,0.6034,-0.0675,1.0091,0.3963,-0.446 -0x1a04d,CUS_0x4812,August,31,#F%$D@*&8,Accountant,106790.32,8961.193333,3,3,6,3,"Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",24.15701927,15,7.17,4,Standard,678.54,31.73219955,26 Years and 6 Months,Yes,147.4804402,588.3617147,High_spent_Small_value_payments,420.2771784,0,0.352,0.3228,-0.3857,-0.5601,-0.8164 -0x1a059,CUS_0x981d,August,35,569-61-4012,Developer,20063.56,1832.963333,6,9,30.88954781,6,"Personal Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",,24.9798531,13.15,11,_,3007.70914,39.24616418,19 Years and 3 Months,Yes,1418.486055,85.05638486,High_spent_Small_value_payments,245.4238123,0,-0.5994,-0.2944,-0.3988,0.4566,2.2555 -0x1a065,CUS_0x5d36,August,39,372-03-0075,Scientist,29410.64,,8,10,35.06745738,5,"Credit-Builder Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Student Loan",38.00093816,20,0.85,12,_,2053.420954,37.20646547,,Yes,110.9428667,99.7686888,High_spent_Medium_value_payments,283.8568232,0,-0.926,-0.6351,0.2274,-0.9059,-0.2543 -0x1a071,CUS_0x3e1a,August,27,939-10-6883,Accountant,29416.81,2742.400833,8,4,13.28836175,2,"Not Specified, Home Equity Loan, and Student Loan",16.96353489,15,9.97,3,Standard,133.18,28.08880145,,No,37.72392587,438.8568691,High_spent_Large_value_payments,457.5967494,0,-1.3078,-0.9904,0.6018,0.2563,0.0053 -0x1a07d,CUS_0x67e2,August,21,438-69-8340,Entrepreneur,30195.47,,5,3,14,0,,,20,5.04,7,_,771.5929101,40.38770828,27 Years and 0 Months,Yes,145.0999337,208.390265,High_spent_Small_value_payments,359.7194489,0,-0.079,-1.9744,-0.062,-1.1915,0.3815 -0x1a089,CUS_0xa6dc,August,28,#F%$D@*&8,Architect,8983.515,,6,5,25.06745738,3,"Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",,,1.84,12,Bad,2664.516039,24.90950731,,Yes,19.51986383,,High_spent_Small_value_payments,271.1491559,0,-0.766,-0.206,-0.4909,-1.1527,0.4232 -0x1a095,CUS_0x91d4,August,51,014-02-9472,Media_Manager,110437.2,,4,7,17,4,"Student Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",,8,19.98,4,_,1370.337622,36.32705045,,Yes,235.5610793,934.5048081,Low_spent_Large_value_payments,170.6377848,0,0.6819,1.029,1.2376,-1.3131,0.8046 -0x1a0a1,CUS_0x2b05,August,34,554-77-6020,Entrepreneur,39928.5,3375.375,3,5,8,4,"Auto Loan, Debt Consolidation Loan, Not Specified, and Student Loan",19.69000015,16,9.17,3,_,425.518081,23.36068591,28 Years and 8 Months,NM,76.00051095,,Low_spent_Small_value_payments,113.2339941,0,2.3103,-0.5803,-0.9006,-0.4906,0.4448 -0x1a0ad,CUS_0x44dc,August,21,318-73-7635,Mechanic,18282.34,1769.528333,5,10,34,6,"Mortgage Loan, Credit-Builder Loan, Not Specified, Not Specified, Student Loan, and Credit-Builder Loan",24.30175898,19.44700403,24,12,Standard,1462.627571,29.08616769,8 Years and 9 Months,NM,85.69683656,,Low_spent_Small_value_payments,202.2064154,0,-0.0978,-0.5487,-0.1832,1.4069,0.3566 -0x1a0b9,CUS_0xb115,August,29,680-87-7919,_______,27138.97,,6,4,8,4,"Personal Loan, Mortgage Loan, Payday Loan, and Auto Loan",21.91371296,20,8.01,5,Standard,1054.499103,27.10932293,7 Years and 11 Months,Yes,70.78180788,37.07963031,High_spent_Medium_value_payments,391.1658596,0,0.9537,1.8265,-1.2892,0.2845,0.282 -0x1a0c5,CUS_0x9a30,August,31,761-57-6010,Scientist,9081.535,842.7945833,3,5,26,3,"Home Equity Loan, Student Loan, and Credit-Builder Loan",,13.35914212,11.85,12,_,1652.710089,35.46314462,5 Years and 11 Months,Yes,16.64312353,,High_spent_Small_value_payments,292.4556348,0,0.3356,-0.1927,-1.2058,-0.9268,-0.9102 -0x1a0d1,CUS_0x435c,August,45,458-40-2217,Teacher,83132.28,6549.914939,6,7,32,3,"Mortgage Loan, Personal Loan, and Payday Loan",32.35867993,18.82411484,13.95,,Standard,1833.813519,32.17169746,12 Years and 0 Months,NM,615.3509122,120.002462,High_spent_Large_value_payments,679.6906868,0,-0.802,0.5671,1.5072,-0.1807,0.5107 -0x1a0dd,CUS_0x61fb,August,23,739-69-5014,Entrepreneur,36270.25,,2,3,10,0,,10.90565021,6,10.59,0,Good,220.62,40.0638903,23 Years and 5 Months,No,0,38.02143651,High_spent_Large_value_payments,486.6306468,0,0.01,1.1849,0.8076,1.1237,-1.0702 -0x1a0e9,CUS_0xbc2b,August,47,329-37-6326,Writer,20867.67,1489.9725,1,3,11,1,Debt Consolidation Loan,13.1919848,11,1.1,4,_,786.6379576,23.03451215,31 Years and 10 Months,NM,16.83718938,,!@9#%8,229.8126768,0,1.9152,0.975,0.8052,0.824,-0.2524 -0x1a0f5,CUS_0xbaa0,August,24,622-60-1700,Manager,37361.02,,10,6,20.06745738,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Home Equity Loan",43.0058106,22.51447976,22.41,12,Bad,3548.645121,29.69904627,4 Years and 6 Months,Yes,129.8718905,32.86336227,High_spent_Large_value_payments,378.5862926,0,0.845,-0.6051,-0.1993,-0.4433,0.2689 -0x1a101,CUS_0x4863,August,80,458-70-1304,Lawyer,41709.64,,3,2,8,0,,17.15339762,,8.08,3,_,1183.255581,36.17811568,23 Years and 0 Months,No,0,289.6227022,Low_spent_Large_value_payments,395.8074501,0,-2.1933,0.2188,0.3547,0.2051,-0.0021 -0x1a10d,CUS_0xba6c,August,45,106-05-3603,Teacher,9967.82,,6,9,18.88954781,6,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",23.85675129,,8.66,6,_,2021.579594,39.96078246,19 Years and 8 Months,Yes,1360.662312,,Low_spent_Small_value_payments,218.7959849,0,1.8387,0.2179,-0.9857,-1.6574,0.0877 -0x1a119,CUS_0xb658,August,54,397-49-5846,Lawyer,44083.28,3703.606667,1,4,9,100,"Mortgage Loan, Payday Loan, and Credit-Builder Loan",0.654585078,4,3.45,1,Good,616.74,30.28141456,21 Years and 0 Months,No,76.00983288,65.8093845,High_spent_Medium_value_payments,478.5414493,0,0.0753,-0.6683,-0.9569,-1.3553,-0.4039 -0x1a125,CUS_0xe03,August,34,836-09-5090,Doctor,82565.52,6917.46,3,7,6,3,"Payday Loan, Not Specified, and Credit-Builder Loan",12.66884221,10,19.37,5,Standard,445.9,30.46417196,17 Years and 3 Months,Yes,164.1610445,115.8141236,High_spent_Large_value_payments,651.7708318,0,0.57,0.6518,-0.7912,-1.7055,-0.9829 -0x1a131,CUS_0xbba,August,51,554-23-4706,Journalist,39561.48,3455.79,2,4,12,3,"Home Equity Loan, Mortgage Loan, and Personal Loan",,4,1.04,0,Good,839.41,25.78048075,23 Years and 8 Months,No,87.46300574,42.69986203,!@9#%8,465.4161322,0,-0.3858,-0.1743,1.0266,-1.5043,1.1795 -0x1a13d,CUS_0x995,August,26,277-81-3212,Musician,18122.59,,7,5,24,100,"Not Specified, Auto Loan, Credit-Builder Loan, Student Loan, Not Specified, Auto Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",30.12164153,21,,12,Bad,3296.19,28.02091437,10 Years and 9 Months,Yes,122.9246799,86.11023069,Low_spent_Small_value_payments,204.2866728,0,-0.082,-0.1185,-0.717,-0.0129,0.2312 -0x1a149,CUS_0x98e4,August,28,586-61-1895,Lawyer,83453.72,,4,4,27,100,"Not Specified, Auto Loan, Mortgage Loan, and Personal Loan",12.18798533,13.11391728,11.83,7,Standard,1593.121414,26.90069184,19 Years and 4 Months,Yes,237.8146467,372.8721068,Low_spent_Medium_value_payments,341.1609131,0,-1.5087,-1.0031,0.6251,1.2314,0.3222 -0x1a155,CUS_0x10ac,August,34,780-50-4730,Developer,16718.645,1270.220417,7,3,15,4,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",15.81182556,11,18.45,1,_,736.8048045,31.39733884,16 Years and 3 Months,No,50.9619359,42.62916345,!@9#%8,319.6470137,0,-0.3606,1.6298,0.6412,0.2605,2.637 -0x1a161,CUS_0x1690,August,44,#F%$D@*&8,Architect,51266.34,,6,6,24,7,"Mortgage Loan, Student Loan, Mortgage Loan, Student Loan, Payday Loan, Not Specified, and Mortgage Loan",34.28081963,24.10222308,26.79,10,_,5371.443173,35.49557628,4 Years and 0 Months,Yes,176.4702055,97.10077273,High_spent_Medium_value_payments,385.3485217,0,-0.287,-1.7718,0.5851,-0.4744,-0.1943 -0x1a16d,CUS_0x5df9,August,51,633-59-3264,Lawyer,100188.84,7960.981897,1756,3,12,2,"Debt Consolidation Loan, and Not Specified",26.26487281,19,19.73,6,Standard,282.08,32.94643677,17 Years and 8 Months,Yes,617.2919556,583.8348942,Low_spent_Medium_value_payments,422.8682535,0,0.8379,1.4899,-1.1549,-3.1397,0.5208 -0x1a179,CUS_0x1f3d,August,23,744-22-1964,Teacher,104849.82,8744.485,4,6,18,0,,26.36562363,17,18.28,6,Standard,1439.21,37.40075549,21 Years and 9 Months,Yes,0,150.8192494,High_spent_Medium_value_payments,973.6292506,0,0.9128,-1.7571,-0.6858,0.9282,1.6068 -0x1a185,CUS_0x4e24,August,50,692-00-1087,_______,151373.04,,1,7,6,2,"Debt Consolidation Loan, and Personal Loan",0,0,11.81,8,_,1068.999043,37.45219775,18 Years and 8 Months,NM,199.6630543,247.9516635,High_spent_Large_value_payments,1082.527282,0,-0.6255,-0.9272,-0.8138,-1.1402,0.3181 -0x1a191,CUS_0x3a15,August,52,191-78-3233,Mechanic,141262.48,10439.49248,3,6,4.288361749,2,"Auto Loan, and Student Loan",0,2,1.02,2,Good,761.9882666,33.82700425,29 Years and 0 Months,No,1614.855968,609.8726882,High_spent_Medium_value_payments,1049.540684,0,-0.4016,-0.0402,0.1938,-1.79,1.6746 -0x1a19d,CUS_0x1be8,August,80,441-92-5827,Scientist,63528.7,5132.058333,4,6,9,3,"Auto Loan, Student Loan, and Not Specified",20.99221282,13.25101445,7.09,3,Good,694.3952616,31.04859746,27 Years and 2 Months,No,128.2778338,108.4326822,High_spent_Medium_value_payments,526.4953173,0,-0.8388,1.9659,0.6991,1.1043,0.2642 -0x1a1a9,CUS_0xa328,August,38,783-16-3895,Accountant,29948.76,,4,3,4044.067457,2,"Payday Loan, and Payday Loan",31.11853661,21.27763958,19.96,11,Standard,2951.946246,33.41690761,16 Years and 4 Months,Yes,49.10638793,197.6379449,Low_spent_Large_value_payments,236.4083792,0,-0.6308,1.5416,-0.2198,-0.2052,0.4668 -0x1a1b5,CUS_0xc574,August,41,571-68-8241,Teacher,35848.82,,3,4,12,3,"Not Specified, Credit-Builder Loan, and Student Loan",21.53232409,16,0.69,5,Standard,1309.04,32.507246,24 Years and 2 Months,No,53.63901215,25.04468129,High_spent_Large_value_payments,483.2564732,0,0.6129,0.8951,-0.818,0.4875,-0.6638 -0x1a1c1,CUS_0x56f9,August,37,502-99-8860,Doctor,34733.44,,3,7,13,1,Student Loan,,10,5.27,3,Standard,1497.2,36.17372331,26 Years and 2 Months,No,16.22620002,243.3140478,Low_spent_Large_value_payments,326.8050855,0,0.139,-1.1132,-0.679,0.1211,-1.1904 -0x1a1cd,CUS_0x364f,August,26,688-35-2854,Accountant,20843.43,1774.9525,7,10,16.06745738,5,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Not Specified",,26.16136475,21.32,15,Bad,5444.741317,36.4866973,14 Years and 3 Months,Yes,56.350245,,Low_spent_Small_value_payments,175.2565859,0,0.5539,-0.227,-1.0636,-0.4341,-0.0157 -0x1a1d9,CUS_0xb0f5,August,46,#F%$D@*&8,Mechanic,20730.55,,8,6,27,7,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",17.3842027,13.62389799,15.37,14,Standard,1522.504922,37.26399618,9 Years and 10 Months,NM,106.9975942,14.34893441,High_spent_Large_value_payments,278.5080547,0,-1.0898,0.5995,0.7795,0.0257,0.7624 -0x1a1e5,CUS_0x32dc,August,41,432-90-3782,Teacher,14619.585,1005.29875,7,858,19,1,Personal Loan,23.41741768,18,3.82,5,Standard,125.33,38.88318905,18 Years and 6 Months,Yes,11.62088913,89.18442106,Low_spent_Medium_value_payments,279.7245648,0,1.619,0.1274,0.4798,-1.1838,1.116 -0x1a1f1,CUS_0x370c,August,29,009-86-5924,Media_Manager,65085.76,5702.813333,6,5,20,7,"Personal Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Student Loan, Home Equity Loan, and Home Equity Loan",25.79543294,20,3.06,7,_,1413.88,36.82080327,12 Years and 11 Months,Yes,288.1212238,185.6116814,High_spent_Medium_value_payments,346.5484281,0,0.2765,-1.1293,-1.0012,1.2761,-0.4553 -0x1a1fd,CUS_0x683d,August,32,490-79-6991,Journalist,90370.96,,3,4,10.28836175,4,"Auto Loan, Student Loan, Student Loan, and Payday Loan",19.23873944,16,12.24,6,Standard,1023.49,33.12014876,16 Years and 5 Months,NM,209.1439733,536.5269387,High_spent_Medium_value_payments,676.0578824,0,3.2696,1.7155,-0.3548,-0.1817,-0.8774 -0x1a209,CUS_0xaadf,August,34,387-17-9828,_______,111117.6,,7,6,7,0,,26.22260659,17,1.07,3,Standard,1440.03,41.78880858,23 Years and 5 Months,No,0,,High_spent_Medium_value_payments,844.512557,0,-1.5523,-1.6097,0.8578,-0.0355,0.1011 -0x1a215,CUS_0x7a91,August,43,404-52-9514,Architect,22502.24,,6,7,12,5,"Not Specified, Not Specified, Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",,10,14.97,7,Standard,1202.86,35.76662594,,Yes,56.20728485,109.2727463,Low_spent_Small_value_payments,336.5386355,0,0.9143,-0.0425,-0.0351,0.2404,-0.5773 -0x1a221,CUS_0x4122,August,35,882-56-0038,_______,33836.13,,3,4,6,1,Home Equity Loan,16.76329325,11.63305225,9.97,3,Good,813.3612956,24.82917344,22 Years and 10 Months,NM,21.12913971,,High_spent_Small_value_payments,379.1302522,0,-0.7675,0.1752,-0.8866,1.5756,-0.9073 -0x1a22d,CUS_0x717e,August,29,#F%$D@*&8,Doctor,18965.08,1602.423333,7,7,16.06745738,7,"Not Specified, Student Loan, Not Specified, Mortgage Loan, Home Equity Loan, Auto Loan, and Student Loan",,20,1.14,12,Bad,2901.560954,28.27328986,8 Years and 4 Months,Yes,93.64338765,35.47600733,High_spent_Medium_value_payments,254.4026504,0,1.1508,-1.3251,-3.0185,-0.8155,0.6792 -0x1a239,CUS_0xba27,August,32,#F%$D@*&8,Teacher,29768.44,,1,6,4,1,Credit-Builder Loan,1.78949804,1,7.2,3,Good,118.58,27.64323443,25 Years and 11 Months,No,19.08906005,29.36508525,High_spent_Medium_value_payments,446.416188,0,1.4882,0.6506,-1.5552,0.9432,-0.8545 -0x1a245,CUS_0x8cd0,August,28,805-07-4518,Musician,44928.27,,8,8,25.95700519,100,"Credit-Builder Loan, Auto Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Not Specified, Student Loan, and Auto Loan",,22.73950347,2.96,12,Bad,2668.152459,31.2013483,10 Years and 0 Months,Yes,1565.258502,142.7724683,High_spent_Medium_value_payments,190.9209104,0,-1.4376,-2.3068,-0.1017,-0.1089,-0.9576 -0x1a251,CUS_0x2fe0,August,24,899-52-1176,Developer,8357.98,,6,10,16.06745738,6,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",31.33583515,15,1.1,2262,_,2654.870954,39.63809376,20 Years and 0 Months,Yes,29.01797971,22.97786408,Low_spent_Medium_value_payments,270.6337016,0,-0.3158,0.3246,0.3805,1.0257,-1.4982 -0x1a25d,CUS_0x98cc,August,21,140-36-0945,_______,9771.77,,6,6,8,4,"Personal Loan, Mortgage Loan, Personal Loan, and Not Specified",10.27201573,9,6.76,7,Standard,292.6307911,24.91124362,,Yes,105.3107736,62.19059738,Low_spent_Small_value_payments,271.8190075,0,-0.497,0.319,0.2461,0.5106,0.0572 -0x1a269,CUS_0xb6cd,August,38,606-87-4648,Mechanic,43825.16,3852.096667,2,5,9,0,,,11,5.37,2,Good,393.464618,37.53855763,30 Years and 4 Months,No,0,195.4255353,Low_spent_Large_value_payments,485.5091902,0,-0.5214,0.3531,-1.3945,-0.7181,0.7347 -0x1a275,CUS_0xc54a,August,21,648-12-9928,Scientist,10340.695,,3,4,8,7,"Debt Consolidation Loan, Payday Loan, Payday Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",14.56887544,,17.78,4,_,812.34,33.78735107,14 Years and 5 Months,NM,57.4025171,28.23463687,High_spent_Small_value_payments,243.8353044,0,0.1903,0.3785,1.8942,-0.3757,0.7585 -0x1a281,CUS_0x2ea8,August,20,214-84-1251,Doctor,116780.6,9854.716667,5,6,19,100,"Not Specified, Home Equity Loan, and Personal Loan",11.72282128,10,17.93,1,_,550.61,33.67486046,32 Years and 10 Months,Yes,280.9791687,587.9850765,Low_spent_Large_value_payments,386.5074215,0,2.4997,0.7977,-0.5889,-1.3392,-0.1781 -0x1a28d,CUS_0x9e6a,August,56,203-00-3994,Writer,79300.22,,1,4,11.28836175,4,"Mortgage Loan, Payday Loan, Credit-Builder Loan, and Mortgage Loan",14.26080885,,2.07,,Good,257.8815977,38.96431821,23 Years and 5 Months,No,179.304812,688.9321892,Low_spent_Medium_value_payments,500.4172066,0,-1.949,-0.7441,1.5293,0.7793,1.2774 -0x1a299,CUS_0xd25,August,37,989-97-7012,Lawyer,139291.92,11560.66,0,7,7,3,"Payday Loan, Student Loan, and Debt Consolidation Loan",1.401976601,4,5.47,3,Good,258.423651,26.68102877,18 Years and 3 Months,No,230.4698098,321.7134697,!@9#%8,885.209203,0,0.1412,-0.7804,0.8786,-0.7132,0.9613 -0x1a2a5,CUS_0x20fa,August,31,882-01-5970,Engineer,25696.65,,7,7,2875,0,,26.29921558,17.49054099,5.99,9,_,950.1440848,29.97198558,25 Years and 9 Months,Yes,0,249.2576499,Low_spent_Small_value_payments,228.6811001,0,0.5933,0.2581,-0.2278,-0.0566,0.6084 -0x1a2b1,CUS_0x46c,August,48,366-28-4901,Musician,38650.73,2983.894167,1,1,11,0,,,7,-3.09,,Good,1044.490108,23.69233383,16 Years and 11 Months,No,0,100.2595299,High_spent_Medium_value_payments,461.2597856,0,0.2723,-0.2162,-0.6042,0.574,1.133 -0x1a2bd,CUS_0x66d1,August,20,950-67-5720,Scientist,124020.44,,8,5,18,2,"Auto Loan, and Debt Consolidation Loan",11.1914702,10,19.07,3,Standard,529.18,35.39943009,,Yes,127.9417646,286.8374483,High_spent_Medium_value_payments,851.5244538,0,-0.7904,1.2514,-1.2729,0.4453,-0.5062 -0x1a2c9,CUS_0x4372,August,27,998-72-1919,Architect,33740.62,,10,696,34.06745738,5,"Home Equity Loan, Not Specified, Not Specified, Mortgage Loan, and Auto Loan",45.74760694,24,25.77,11,Bad,4121.790954,25.72916531,10 Years and 6 Months,Yes,70.56471441,237.0446274,Low_spent_Small_value_payments,251.1422036,0,-1.449,-0.6945,-0.6355,1.5546,0.3972 -0x1a2d5,CUS_0xa696,August,18,281-26-7560,Doctor,9848.32,,356,7,9,6,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Student Loan, Debt Consolidation Loan, and Credit-Builder Loan",8.204244243,10,11.94,,Standard,227.88,37.48298636,9 Years and 3 Months,Yes,32.11702372,,Low_spent_Small_value_payments,239.5063881,0,0.0832,-1.0074,1.4405,3.9633,1.1189 -0x1a2e1,CUS_0x1c31,August,25,737-71-8641,Musician,29669.28,2534.44,8,9,23.95700519,7,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Personal Loan, and Payday Loan",37.86915888,20.91111281,27.41,13,Bad,3667.926471,34.56899287,11 Years and 3 Months,Yes,1434.77165,,Low_spent_Small_value_payments,279.6113405,0,1.6325,-1.3472,-1.1678,-1.2194,-0.6392 -0x1a2ed,CUS_0x15f7,August,22,#F%$D@*&8,Engineer,60314.22,5004.185,10,7,16,7,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, and Not Specified",,14.95936043,9.32,14,Standard,2182.338982,26.78270535,17 Years and 5 Months,Yes,219.9813242,142.2551703,High_spent_Medium_value_payments,388.1820056,0,0.3356,-0.1188,0.5456,-1.1225,0.6586 -0x1a2f9,CUS_0x44bb,August,41,017-64-6143,Mechanic,80132.13,6829.6775,4,1129,8,0,,13.05449426,10,6.81,3,Good,1007.284997,44.04255053,27 Years and 6 Months,No,0,103.107584,!@9#%8,832.9876812,0,0.2747,-0.4517,-0.9939,-1.8868,0.0292 -0x1a305,CUS_0xc2a6,August,29,926-62-5300,Journalist,9869.175,536.43125,7,7,19,0,,21.75779493,17,10.66,4,Standard,274.65,27.46940317,32 Years and 9 Months,NM,0,63.7916124,Low_spent_Small_value_payments,279.8515126,0,0.6287,-1.6971,0.1247,-1.4696,0.9273 -0x1a311,CUS_0x2ccc,August,30,634-04-8743,Scientist,63675.12,5352.26,3,4,13.28836175,0,,20.78679953,18,1.02,2,Standard,598.1370457,31.98895375,17 Years and 10 Months,Yes,0,875.9270566,Low_spent_Small_value_payments,422.7677595,0,0.1831,-1.7961,1.4137,1.3298,-1.5644 -0x1a31d,CUS_0x2dd8,August,41,916-34-1696,Lawyer,90292.28,,4,4,7,0,,22.54109731,13.85113741,10.66,1,Standard,1085.325242,30.16650259,33 Years and 5 Months,No,0,145.2561675,High_spent_Small_value_payments,840.5794992,0,0.5441,-0.3106,0.462,0.2646,0.024 -0x1a329,CUS_0x4fc4,August,28,142-05-3521,Musician,21454.79,,0,6,12,4,"Auto Loan, Student Loan, Home Equity Loan, and Home Equity Loan",14.3336089,,1.56,3,Good,1020.248231,26.75154312,31 Years and 0 Months,No,46.47327354,11295.93896,Low_spent_Large_value_payments,301.2893129,0,-0.2061,-0.1818,0.5636,-0.5102,0.7889 -0x1a335,CUS_0x5875,August,41,789-70-0408,Engineer,23621.48,2158.456667,5,4,18,0,,17.47537958,16,17.96,2,Standard,1451.24,30.46320334,17 Years and 2 Months,Yes,0,80.64909427,Low_spent_Medium_value_payments,415.1965724,0,-0.8603,-0.5515,-1.4913,0.0729,1.6942 -0x1a341,CUS_0x7ae1,August,22,416-76-5161,Teacher,23939.93,,6,3,6,1,Not Specified,22.19778115,15,6.39,2,Standard,457.78,28.06089826,22 Years and 0 Months,No,39675,52.54463812,Low_spent_Large_value_payments,419.3680786,0,-0.098,-0.0401,0.1215,-0.0294,-0.0489 -0x1a34d,CUS_0x6bb5,August,31,261-94-4500,Architect,141477.56,12012.79667,2,1,2.288361749,0,Credit-Builder Loan,,8,1.39,2,Good,183.2889428,40.18808082,15 Years and 8 Months,No,66.2591189,1387.716031,Low_spent_Medium_value_payments,590.5076253,0,0.1484,-0.5579,1.5187,0.5684,0.8442 -0x1a359,CUS_0x5fd5,August,52,605-85-1239,Accountant,21338.55,,8,4,16,0,,,,5.4,5,Standard,974.4577028,38.68005489,25 Years and 8 Months,No,0,75.35531981,!@9#%8,365.2659302,0,1.1436,-0.2072,-0.0349,-2.4327,0.1379 -0x1a365,CUS_0xcc2,August,40,632-81-0014,Manager,17532.55,1675.045833,4,9,31,3,"Payday Loan, Payday Loan, and Home Equity Loan",12.45758791,12.71922808,15.25,12,Standard,1510.16582,23.94401102,8 Years and 10 Months,Yes,22.87077833,170.8606124,Low_spent_Small_value_payments,263.7731926,0,-0.8324,-0.3588,1.0494,2.2466,-1.1209 -0x1a371,CUS_0x4953,August,25,181-95-5782,Mechanic,9807.79,1071.315833,10,9,17.95700519,9,"Auto Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Student Loan, Credit-Builder Loan, and Personal Loan",39.64862047,27.65262593,4.94,10,Bad,2586.33011,38.26135237,16 Years and 3 Months,Yes,1388.600797,75.60241272,Low_spent_Medium_value_payments,201.8780039,0,2.0224,0.8987,-2.007,-1.1277,0.1802 -0x1a37d,CUS_0x645e,August,25,325-99-3118,Developer,66252,5261,8,10,23.88954781,7,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",,23.61164308,7,7,Bad,2763.900553,35.97117402,11 Years and 10 Months,Yes,1626.51038,306.9930329,Low_spent_Large_value_payments,168.2665053,0,0.4744,-0.4405,0.0944,0.9418,-0.5189 -0x1a389,CUS_0x8ac7,August,21,915-52-6575,Doctor,35075.33,,7,5,8.288361749,0,Student Loan,13.14236444,14,5.31,3,_,441.46,29.55573569,15 Years and 9 Months,No,28.5730306,510.6156382,High_spent_Small_value_payments,462.1432089,0,-0.4778,0.1083,-0.5823,0.1916,-0.1986 -0x1a395,CUS_0x7324,August,41,#F%$D@*&8,Writer,24326.28,,4,249,6.288361749,2,"Home Equity Loan, and Not Specified",,8,4.46,4,Good,78.91997821,37.0616143,18 Years and 0 Months,No,29.01451943,494.1145906,High_spent_Medium_value_payments,370.6745948,0,-0.564,1.4041,-0.6618,-0.3802,0.0722 -0x1a3a1,CUS_0x6c2d,August,25,706-39-9115,Lawyer,74248.72,,6,6,26,6,"Auto Loan, Personal Loan, Not Specified, Payday Loan, Student Loan, and Personal Loan",26.50681281,18.56539268,13.69,12,_,2177.831046,31.74761515,10 Years and 8 Months,Yes,411.9626093,105.8379544,High_spent_Large_value_payments,449.6467507,0,0.5765,-0.8269,1.1778,-1.3275,1.063 -0x1a3ad,CUS_0x4ef9,August,49,925-98-4955,Teacher,17039.415,,2,5,4,0,,1.44600418,4,0.07,5,Good,1373.74,38.30201546,16 Years and 5 Months,No,0,59.6946293,Low_spent_Medium_value_payments,382.0004957,0,1.2009,-0.6638,0.4204,-0.7773,0.9486 -0x1a3b9,CUS_0x2168,August,29,113-94-0469,Mechanic,21523.025,,5,7,1,1,Personal Loan,0,2,3.2,2,Good,439.35,27.75748157,30 Years and 10 Months,No,16.19648987,169.302003,Low_spent_Medium_value_payments,291.9600488,0,2.2472,-0.477,-0.748,-0.5942,0.2912 -0x1a3c5,CUS_0x33ce,August,43,442-25-8016,Architect,22803.84,1845.32,7,4,18,3,"Mortgage Loan, Personal Loan, and Auto Loan",9.009061193,8,7.47,8,Standard,535.11,27.59602168,15 Years and 6 Months,Yes,43.66408009,10000,High_spent_Medium_value_payments,347.3476416,0,-0.6152,-2.4217,0.9023,2.0519,-0.1448 -0x1a3d1,CUS_0x9e24,August,44,837-84-2006,Developer,9555.665,,701,5,14,2,"Mortgage Loan, and Not Specified",8.373533885,10,1.18,,Standard,1383.88,26.23920659,16 Years and 10 Months,Yes,8.03660962,14.87010716,High_spent_Medium_value_payments,322.8238249,0,0.7873,-0.5989,-0.9168,-0.0882,-0.425 -0x1a3dd,CUS_0xc150,August,48,154-13-2333,Lawyer,31016.6,,8,4,5,1,Personal Loan,21.70421289,15,2.29,4,_,143.75,33.07535094,20 Years and 0 Months,No,15.44940664,103.821516,Low_spent_Small_value_payments,436.100744,0,-0.2838,0.7941,-2.4138,1.3277,-0.9671 -0x1a3e9,CUS_0x1f7d,August,20,697-78-8723,Architect,20357.29,,3,5,16,2,"Not Specified, and Auto Loan",31.03090941,22.88817871,9.81,,Standard,2902.784639,27.49509804,7 Years and 11 Months,Yes,33.78252854,72.84393602,High_spent_Medium_value_payments,315.4176188,0,1.4149,-0.9554,1.1497,-1.7965,-1.6593 -0x1a3f5,CUS_0x32a7,August,44,181-41-3727,Journalist,10460.245,,8,5,25,6,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",7.936913951,8,19.09,8,Standard,2625.88,35.42960489,17 Years and 0 Months,Yes,38.27622888,67.54199151,Low_spent_Small_value_payments,283.750488,0,0.1237,-2.1058,-0.0707,0.5514,0.3327 -0x1a401,CUS_0x8e45,August,41,#F%$D@*&8,Media_Manager,152796.76,,2,5,0.288361749,0,,0,3,3.74,5,Good,1265.86,22.8960765,18 Years and 8 Months,No,0,,Low_spent_Medium_value_payments,235.4515849,0,-1.3494,1.1346,1.2236,-0.0744,0.7476 -0x1a40d,CUS_0x11fc,August,33,092-20-3138,Lawyer,38735.57,,2,4,3,2,"Payday Loan, and Debt Consolidation Loan",11.94914993,11,8.06,2,Good,729.4207907,36.78575375,17 Years and 5 Months,No,43.9437508,144.8635639,Low_spent_Large_value_payments,419.4867636,0,-0.5227,0.6733,0.7688,-0.9779,0.4865 -0x1a419,CUS_0x32b7,August,38,459-28-8012,Accountant,79524.64,6193.009839,5,5,15,100,"Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",13.72792774,9,10.88,7,Standard,357.1553592,41.40715712,16 Years and 5 Months,Yes,600.5303335,192.3815315,High_spent_Large_value_payments,569.9897963,0,1.5313,-1.2361,-1.6083,-0.7249,-0.3393 -0x1a425,CUS_0x9b38,August,18,478-80-8755,Architect,35358.15,,7,3,16,3,"Not Specified, Student Loan, and Mortgage Loan",,11,18.62,4,_,444.88,26.7835554,15 Years and 9 Months,Yes,76.58167535,59.52525122,High_spent_Medium_value_payments,420.1443234,0,1.0977,0.4935,-1.8034,0.2369,0.2713 -0x1a431,CUS_0x17fb,August,40,700-02-0618,Teacher,87078.48,7535.54,4,2,11,4,"Payday Loan, Not Specified, Mortgage Loan, and Mortgage Loan",3.905917793,6,16.33,0,Good,1049.745606,42.22213872,18 Years and 6 Months,No,283.9590378,66.26461904,High_spent_Large_value_payments,653.3464927,0,0.6002,0.8768,0.4817,1.341,-0.5914 -0x1a43d,CUS_0x1e9e,August,19,257-02-5840,Doctor,35812.37,,5,4,6,100,"Home Equity Loan, and Student Loan",26.41662398,19.67128618,13.99,10,Standard,349.596421,27.05165201,,Yes,32.0123958,356.9523931,Low_spent_Small_value_payments,180.4716278,0,0.705,0.9062,1.4817,-0.7441,1.5024 -0x1a449,CUS_0x84dd,August,45,392-43-1088,Engineer,18702.5,1736.541667,4,4,10,3,"Personal Loan, Mortgage Loan, and Mortgage Loan",17.25697034,,14.21,7,_,2576.87,38.72029837,,Yes,42.11387029,92.30243557,Low_spent_Small_value_payments,329.2378608,0,-0.6045,-0.8029,0.9216,-1.6844,-0.6069 -0x1a455,CUS_0x70af,August,42,224-59-2197,Writer,14220.28,1404.023333,8,5,27.06745738,3,"Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",23.96193939,12.11483524,16.96,15,Standard,1942.592635,27.22551143,13 Years and 4 Months,Yes,31.68246707,84.78190138,Low_spent_Small_value_payments,287.2176769,0,0.7966,-1.6876,0.1498,0.9294,-0.8326 -0x1a461,CUS_0x73e4,August,80,147-91-6333,Lawyer,69712.46,6075.371667,2,3,11.28836175,0,Credit-Builder Loan,10.75051734,10,2.28,4,Good,68.25483155,37.97708366,18 Years and 8 Months,No,46.74589561,11510.46435,High_spent_Large_value_payments,677.0344585,0,1.9282,-0.8876,0.781,0.3895,-1.0335 -0x1a46d,CUS_0xae25,August,28,398-59-0914,Architect,98227.08,8441.59,6,4,17,3,"Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",8.608681487,10,2.92,2,Standard,1472.89,28.65626689,29 Years and 10 Months,No,154.8009425,326.9218583,High_spent_Medium_value_payments,612.4361992,0,-0.2217,-0.1278,1.6873,-1.3515,-1.2734 -0x1a479,CUS_0x751c,August,19,220-63-1416,Accountant,177696.92,15090.07667,5,5,9,1,Mortgage Loan,7.664984511,8,11.5,7,Good,1032.029508,30.29266351,26 Years and 0 Months,No,74.7325903,1045.654928,High_spent_Small_value_payments,788.5421203,0,1.3215,-1.1767,1.2135,-1.7535,0.4473 -0x1a485,CUS_0x6ae5,August,45,084-73-9482,Developer,18048.88,,10,5,15,6,"Home Equity Loan, Credit-Builder Loan, Not Specified, Student Loan, Student Loan, and Credit-Builder Loan",31.71501534,22.99928126,18.56,6,_,1402.711981,22.97150604,13 Years and 10 Months,Yes,86.76835623,88.36201625,High_spent_Small_value_payments,251.7769608,0,0.2372,1.2767,0.2538,-0.3692,-0.3657 -0x1a491,CUS_0x89a,August,55,087-32-8543,Doctor,49217.68,,7,3,5,0,,13.36355345,11,9.88,5,_,1140.58,25.48379841,18 Years and 2 Months,No,0,64.28021188,High_spent_Medium_value_payments,601.1671215,0,-0.0796,1.4473,1.2653,0.6352,-0.9923 -0x1a49d,CUS_0x669c,August,22,276-33-9286,Entrepreneur,99934.89,8261.9075,3,4,7.288361749,4,"Not Specified, Debt Consolidation Loan, Mortgage Loan, and Not Specified",12.81829125,,9.2,4,Good,97.07763753,33.53828058,16 Years and 10 Months,No,176.2803697,1027.411015,Low_spent_Small_value_payments,424.1171576,0,-0.2669,1.4596,0.5331,0.3455,0.8221 -0x1a4a9,CUS_0x779,August,30,886-94-8971,Musician,69332.9,5695.741667,7,4,13.28836175,0,,4.865565687,8,16.49,0,Standard,622.41,31.01291235,24 Years and 6 Months,Yes,0,562.175979,High_spent_Large_value_payments,667.3356487,0,0.3605,0.1126,-0.605,0.0368,-0.7135 -0x1a4b5,CUS_0x8647,August,21,692-38-8769,Teacher,21825.32,2006.665832,4,5,12,4,"Student Loan, Personal Loan, Mortgage Loan, and Student Loan",,10,5.73,4,_,428.44,37.16963517,31 Years and 6 Months,No,144.7712465,,High_spent_Large_value_payments,336.4865281,0,-0.8198,0.5274,0.2786,-0.7155,-0.1652 -0x1a4c1,CUS_0x8e5b,August,38,145-16-7811,Mechanic,14884.29,,9,9,20.06745738,4,"Not Specified, Credit-Builder Loan, Student Loan, and Mortgage Loan",,23.15843348,8.49,14,Bad,1720.413469,33.68718133,18 Years and 11 Months,Yes,77.06391486,,Low_spent_Small_value_payments,199.2976763,0,-0.536,0.0994,1.723,-0.1769,-0.5318 -0x1a4cd,CUS_0x5cf1,August,45,790-92-7422,_______,20828.2,,9,9,28.06745738,9,"Payday Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Home Equity Loan, and Student Loan",33.38992994,15,2.21,11,Bad,4961.460954,41.41468076,11 Years and 10 Months,Yes,139.6861897,36.08088035,!@9#%8,244.5809753,0,-1.1345,-0.5958,0.7457,0.6191,-0.6636 -0x1a4d9,CUS_0x9268,August,29,074-45-3630,Lawyer,76924.38,6587.365,5,4,20,1,Home Equity Loan,24.22942691,15,20.93,5,_,1080.88,26.49767456,21 Years and 9 Months,NM,45.74044181,116.1881101,High_spent_Medium_value_payments,746.8079481,0,-0.6442,0.3266,-0.5795,-0.5887,-0.6456 -0x1a4e5,CUS_0x6540,August,58,884-14-0880,Writer,89177.01,7517.4175,6,6,8,4,"Payday Loan, Personal Loan, Credit-Builder Loan, and Personal Loan",21.59889363,19,5.82,3,Standard,300.8245821,33.03586891,17 Years and 9 Months,No,293.044646,11170.89805,High_spent_Medium_value_payments,391.8949668,0,0.2019,-1.4043,0.1129,-1.2971,-0.9703 -0x1a4f1,CUS_0x188f,August,55,#F%$D@*&8,Writer,14311.415,,2,7,9,0,,5.156780637,8,9.31,7,_,486.3204047,32.38957792,,No,0,89.68375196,Low_spent_Small_value_payments,361.1897799,0,-0.0622,-0.4536,0.5528,-1.9929,-0.096 -0x1a4fd,CUS_0x7eed,August,21,488-25-4904,Scientist,34975.73,,5,7,17,7,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Payday Loan, and Payday Loan",22.83063797,19,8.59,6,_,51.5,32.77211708,8 Years and 6 Months,Yes,155.002511,52.36102795,High_spent_Medium_value_payments,320.6008777,0,-1.0891,0.0097,1.2223,1.1333,-0.691 -0x1a509,CUS_0x6407,August,40,613-11-1190,Architect,33355.81,,6,5,12,2,"Personal Loan, and Auto Loan",,20.20195113,11.52,4,Standard,509.9779085,35.70500583,18 Years and 3 Months,Yes,31.72184718,10000,High_spent_Large_value_payments,463.3163528,0,0.1114,-0.151,-0.8743,0.5317,1.0047 -0x1a515,CUS_0x9190,August,27,901-17-8728,Musician,8501.93,745.4941667,10,5,33.06745738,5,"Personal Loan, Student Loan, Mortgage Loan, Not Specified, and Auto Loan",40.80897583,25,17.14,11,_,4149.900954,39.03092606,6 Years and 0 Months,Yes,18.29494792,42.04495682,Low_spent_Small_value_payments,277.489224,0,0.1669,0.3551,-0.4858,1.1303,-0.7722 -0x1a521,CUS_0x28e1,August,23,676-90-6132,Media_Manager,34526.09,,5,4,19,3,"Not Specified, Personal Loan, and Home Equity Loan",17.06108046,14,14.74,10,Standard,938.23,27.1425368,18 Years and 5 Months,Yes,70.15698258,190.6549597,Low_spent_Large_value_payments,300.0054743,0,-0.5068,0.5378,-0.0595,-0.7119,-0.8712 -0x1a52d,CUS_0x5bfc,August,22,456-24-4809,Engineer,9141.63,,8,10,24.06745738,8,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Not Specified",22.95701432,15,17.51,7,Bad,4993.260954,37.62870256,7 Years and 6 Months,Yes,47.07388306,67.78202132,Low_spent_Medium_value_payments,244.1040577,0,-0.0222,-0.6954,0.5857,0.1301,-1.7885 -0x1a539,CUS_0x9764,August,39,137-39-7489,Writer,22143.31,2110.275833,5,6,18.06745738,3,"Payday Loan, Personal Loan, and Not Specified",,20.4399094,12.18,3,Standard,1858.452886,37.51568063,30 Years and 8 Months,Yes,54.3649756,267.2893865,Low_spent_Small_value_payments,152.6529333,0,0.1609,-0.2793,-0.307,-0.0947,-1.081 -0x1a545,CUS_0xaccf,August,27,093-57-7186,Developer,32701.56,,2,3,8,2,"Credit-Builder Loan, and Mortgage Loan",4.77938838,4,6.91,6,_,1070.74,38.52732107,29 Years and 10 Months,No,45.40276459,123.8025826,Low_spent_Small_value_payments,413.8076528,0,-1.077,-1.8493,-1.7341,-0.0419,-0.8615 -0x1a551,CUS_0x757,August,32,658-55-0822,Accountant,48276.66,4036.380342,6,7,9,4,"Not Specified, Home Equity Loan, Mortgage Loan, and Not Specified",27.56016642,20,7.91,3,Standard,945.79,29.74862017,29 Years and 3 Months,NM,252.7986966,211.316117,Low_spent_Small_value_payments,350.1653445,0,-1.6331,0.1474,-0.6165,-0.1669,-2.1639 -0x1a55d,CUS_0x7c2a,August,34,#F%$D@*&8,Writer,14634.1,,10,7,21.06745738,6,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",,14.98881942,3.2,12,Bad,3178.091787,26.87389397,7 Years and 0 Months,Yes,47.83549587,29.40758167,High_spent_Medium_value_payments,286.6874678,0,-0.7149,1.1995,0.6661,1.7021,-0.5686 -0x1a569,CUS_0x2170,August,25,#F%$D@*&8,Media_Manager,59134,4669.833333,3,7,6,3,"Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",0,0,9.86,4,Good,776.03,26.39083623,19 Years and 10 Months,No,79.12661299,248.4635545,Low_spent_Small_value_payments,429.3931658,0,0.5364,-0.7349,0.096,-0.4601,-0.2669 -0x1a575,CUS_0x1563,August,19,303-54-9202,Developer,147620.68,12059.72333,5,7,4.288361749,0,,14.34837368,,11.9,9,Standard,989.5688478,28.30505384,23 Years and 5 Months,Yes,0,944.8685966,High_spent_Small_value_payments,1003.561343,0,-0.6824,-0.5928,0.1774,1.4847,-1.3646 -0x1a581,CUS_0x125c,August,35,298-95-1359,Manager,32129,,3,7,11.06745738,2,"Personal Loan, and Student Loan",,22.10194886,16.84,8,Standard,3152.201933,31.30524877,13 Years and 8 Months,Yes,34.99648116,93.27286749,Low_spent_Medium_value_payments,376.4520301,0,0.2904,0.2948,3.0211,-0.4739,0.1275 -0x1a58d,CUS_0x9ea6,August,26,611-12-6793,Teacher,49650.36,,8,11,26.88954781,6,"Not Specified, Personal Loan, Credit-Builder Loan, Student Loan, Not Specified, and Home Equity Loan",,10,14.53,,Standard,1826.54,30.59735718,14 Years and 3 Months,Yes,1517.795885,324.0450546,Low_spent_Medium_value_payments,143.3819793,0,-0.4661,-1.2521,-1.0905,-1.558,-0.0886 -0x1a599,CUS_0xc31c,August,25,554-57-7984,_______,41403.34,3730.278333,4,6,2,2,"Home Equity Loan, and Mortgage Loan",16.35225434,13,4.23,1,Good,188.6914525,35.53586123,21 Years and 8 Months,No,62.65239033,128.8103466,High_spent_Medium_value_payments,445.9695705,0,0.7396,0.6357,-0.0433,0.3466,-0.3737 -0x1a5a5,CUS_0x9dbc,August,33,578-88-3585,Scientist,42514.56,,7,9,31,7,"Personal Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",17.33000695,,23.96,11,Bad,4029.48392,30.09403683,11 Years and 0 Months,Yes,143.179286,135.8269247,High_spent_Medium_value_payments,349.0817893,0,0.0057,0.1996,1.0753,-1.0331,-1.4964 -0x1a5b1,CUS_0x82b3,August,53,#F%$D@*&8,Accountant,78435.64,6794.303333,5,3,12,1,Personal Loan,,9,9.52,4,Standard,1310.92,35.15874124,19 Years and 9 Months,No,57.67440521,94.04473627,High_spent_Large_value_payments,767.7111919,0,0.6747,0.1837,1.2895,-1.0425,0.1049 -0x1a5bd,CUS_0x86b0,August,40,315-54-4372,Journalist,31439.74,,9,9,25,5,"Auto Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",26.57946086,19,13.25,9,_,4207.63,27.34737238,6 Years and 9 Months,Yes,318.6843904,10000,Low_spent_Small_value_payments,272.9324373,0,-0.5763,-0.3633,-0.2851,1.9967,-0.1637 -0x1a5c9,CUS_0xaa9e,August,58,929-30-2303,Architect,24629.46,,5,3,15,0,,,9,7.85,5,Standard,1066.662651,27.95126756,16 Years and 11 Months,NM,260.5894789,83.39709138,High_spent_Small_value_payments,385.4072391,0,-1.331,0.0608,0.503,-0.2505,-0.1321 -0x1a5d5,CUS_0xc11e,August,35,797-25-8389,Entrepreneur,16511.455,1554.954583,8,5,15,4,"Student Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",17.07168622,,8.46,6,Standard,84.74,32.07306717,21 Years and 8 Months,No,40.60756944,,!@9#%8,224.9466978,0,-0.1112,-0.4416,-0.0204,-0.0268,0.5519 -0x1a5e1,CUS_0x300b,August,37,862-78-8936,Mechanic,8394.57,,7,7,28,5,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Auto Loan",5.876841781,6.906191102,22.03,9,Standard,2010.883385,21.8048219,8 Years and 0 Months,Yes,29.90770942,32.7401903,High_spent_Medium_value_payments,269.2068503,0,0.3821,-0.8324,1.0954,0.37,-2.3312 -0x1a5ed,CUS_0x4e89,August,35,493-21-3126,Accountant,34087.65,,5,3,8,3,"Payday Loan, Mortgage Loan, and Personal Loan",18.14896551,12,17.7,9,_,720.66,35.61381093,19 Years and 5 Months,Yes,83.61486442,81.63514434,High_spent_Small_value_payments,384.8137412,0,-1.2876,0.3305,-0.357,0.7922,-0.048 -0x1a5f9,CUS_0x3ae1,August,42,247-21-0508,Scientist,64270.12,5500.843333,6,6,18,2,"Student Loan, and Credit-Builder Loan",38.54916333,20.96615921,4.11,10,Bad,1466.072966,27.90701764,9 Years and 6 Months,Yes,69.246684,317.1104378,Low_spent_Small_value_payments,453.7272115,0,-0.1829,1.3195,0.492,0.8601,-1.107 -0x1a605,CUS_0x2a70,August,45,777-80-3212,Journalist,9759.375,813.28125,8,9,24.88954781,8,"Personal Loan, Student Loan, Not Specified, Mortgage Loan, Auto Loan, Student Loan, Student Loan, and Payday Loan",,23.95981785,1.85,10,_,4984.336467,33.30267099,9 Years and 0 Months,Yes,1379.422633,38.50490358,Low_spent_Medium_value_payments,249.0705069,0,1.069,0.2484,-0.873,-1.1309,-0.656 -0x1a611,CUS_0x9041,August,34,176-81-9555,Developer,38726.47,3467.205833,0,4,9.288361749,0,,,11,1.59,5,Good,224.2746254,30.77387103,22 Years and 8 Months,No,0,537.4195197,High_spent_Small_value_payments,503.0053136,0,-1.1827,0.8102,-1.7,0.9383,-0.8798 -0x1a61d,CUS_0x8340,August,25,688-08-9892,Media_Manager,59102.91,,8,8,35.95700519,7,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Personal Loan",,30.20979184,18.48,11,Bad,4455.018019,39.71104565,6 Years and 11 Months,NM,1607.887914,36.27109592,High_spent_Large_value_payments,372.314871,0,0.3823,-0.4014,-1.9478,1.4829,-0.7117 -0x1a629,CUS_0xb858,August,50,154-48-6016,Developer,34981.59,,6,6,15,3,"Auto Loan, Not Specified, and Home Equity Loan",,14,7.2,5,_,301.1977663,28.97622512,19 Years and 9 Months,No,291.5500111,232.6377816,Low_spent_Small_value_payments,295.1213083,0,0.7845,-0.5778,-1.5669,-0.6977,0.3563 -0x1a635,CUS_0xa93f,August,45,#F%$D@*&8,Teacher,10324.26,,8,9,30.95700519,9,"Mortgage Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Not Specified, Not Specified, Home Equity Loan, and Credit-Builder Loan",28.10354174,19,21.52,11,Bad,3499.940954,33.28860788,3 Years and 3 Months,Yes,1367.607002,,Low_spent_Medium_value_payments,212.4173062,0,0.4628,-1.6681,0.2268,1.1515,-1.6807 -0x1a641,CUS_0xa420,August,26,504-06-3335,Accountant,36661.93,,6,3,10,4,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",25.5549185,20,1.16,1,Standard,314.26,28.31115429,29 Years and 10 Months,No,73.22127882,160.3636809,High_spent_Small_value_payments,317.9311236,0,0.4376,0.1496,-0.1043,-0.3501,0.1667 -0x1a64d,CUS_0x9b8c,August,44,784-25-4120,Musician,31980.14,2924.011667,7,3,16,6,"Personal Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",,21.01674893,20.21,10,Standard,2112.898636,35.56709083,8 Years and 0 Months,Yes,142.7969652,113.6831248,Low_spent_Large_value_payments,305.9210767,0,0.077,0.7825,-1.0947,-0.0126,0.5821 -0x1a659,CUS_0x1e3e,August,33,474-45-9244,Musician,22918.52,,6,5,18,5,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",13.89935624,10,21.94,4,Standard,454.45,26.53227659,8 Years and 8 Months,Yes,199.3936026,73.46666207,!@9#%8,291.9331145,0,-0.7278,-0.6109,1.0755,-1.8825,0.8049 -0x1a665,CUS_0x398f,August,29,892-82-1043,Accountant,45379.77,3995.6475,8,9,21,6,"Payday Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",28.84759142,20,19.24,10,_,2630.87,35.68469634,13 Years and 5 Months,Yes,160.8776217,47.27190237,High_spent_Large_value_payments,431.415226,0,1.096,-2.6635,0.5594,2.1375,-0.7421 -0x1a671,CUS_0xab7b,August,21,530-16-2887,Developer,7724.425,,10,7,27.06745738,3,"Not Specified, Home Equity Loan, and Credit-Builder Loan",30.85562869,18,5.06,12,Bad,2271.540954,29.60869397,,Yes,14.11887643,,Low_spent_Medium_value_payments,265.445296,0,1.4601,0.1136,-1.6949,-1.1247,1.3971 -0x1a67d,CUS_0x698,August,23,736-37-2371,Manager,46301.96,3680.496667,8,6,1,2,"Student Loan, and Credit-Builder Loan",11.9815001,9,1.86,5,Standard,1288.02,24.32596413,,No,70.97368001,415.0872866,Low_spent_Small_value_payments,171.9887001,0,-0.9964,-0.1137,-1.6621,0.6804,-1.2122 -0x1a689,CUS_0x8b1,August,80,592-55-6092,Doctor,17767.86,,0,1,4,1,Auto Loan,,,3.11,2,_,482.903163,38.77090746,23 Years and 10 Months,No,14.28860727,,Low_spent_Small_value_payments,277.8135353,0,0.1768,1.1153,-0.8865,0.9117,-0.012 -0x1a695,CUS_0x946f,August,50,056-03-2352,Lawyer,121831,,5,1,11,3,"Payday Loan, Student Loan, and Not Specified",2.482257273,5,-5.43,5,Good,977.8009391,25.32430021,18 Years and 8 Months,No,276.7105392,776.0383352,Low_spent_Small_value_payments,346.7267497,0,-1.2577,0.7808,0.5482,-0.3744,0.9207 -0x1a6a1,CUS_0x930c,August,20,683-00-6454,Writer,10355.675,901.9729167,7,8,17.06745738,5,"Debt Consolidation Loan, Student Loan, Student Loan, Credit-Builder Loan, and Personal Loan",,24,9.18,12,_,2018.070954,26.49947091,,Yes,25.70280854,63.4460656,Low_spent_Small_value_payments,264.3281296,0,-0.0888,0.7148,0.8976,0.2053,-0.258 -0x1a6ad,CUS_0x9425,August,26,700-43-3169,Teacher,20314.65,,8,4,5,6,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, and Personal Loan",23.14836874,16,13.61,5,_,1483.15,30.21608615,7 Years and 9 Months,Yes,104.307262,17.41828084,High_spent_Large_value_payments,334.6152446,0,1.8226,-0.4713,-1.0016,0.9922,0.1474 -0x1a6b9,CUS_0x977,August,18,351-31-3210,Lawyer,62295.76,5302.313333,10,5,22,100,"Not Specified, Personal Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Personal Loan, and Auto Loan",23.31523208,,25.67,8,Bad,2907.14,31.46217267,11 Years and 2 Months,NM,303.8472586,,High_spent_Medium_value_payments,252.7896816,0,-0.241,1.391,1.5774,1.0083,-0.4696 -0x1a6c5,CUS_0x7387,August,44,554-37-0679,Teacher,59119.74,4846.645,10,7,16,100,"Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Auto Loan, Payday Loan, and Payday Loan",24.50113656,10.19254247,7.02,11,Standard,1675.582103,32.17596307,6 Years and 9 Months,Yes,312.4433517,10000,Low_spent_Small_value_payments,200.1304751,0,-1.7421,0.8514,0.0318,-1.1566,0.1855 -0x1a6d1,CUS_0x9226,August,18,409-57-6877,Entrepreneur,37573.92,,8,6,24,4,"Credit-Builder Loan, Not Specified, Not Specified, and Personal Loan",14.8284779,13.88370334,12.25,5,_,2305.351299,32.58401269,13 Years and 9 Months,Yes,109.9269068,69.96695912,High_spent_Large_value_payments,379.2221341,0,-0.8174,0.3107,-0.671,1.3535,-0.4054 -0x1a6dd,CUS_0xa849,August,27,639-16-1766,Media_Manager,21468.16,,8,4,13,2,"Payday Loan, and Personal Loan",11.70066953,11,3.5,5,_,1119.42,23.79876865,28 Years and 8 Months,No,19.66346146,31.87785535,High_spent_Large_value_payments,395.0600165,0,1.8852,-1.1145,-2.5615,-0.2416,-0.0906 -0x1a6e9,CUS_0x7c58,August,29,531-98-6283,Architect,54060.45,4302.0375,8,7,29,6,"Not Specified, Credit-Builder Loan, Student Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",27.5019025,22,6.67,11,Bad,2132.13,34.09771284,6 Years and 8 Months,Yes,16040,,High_spent_Medium_value_payments,381.6582189,0,2.0168,0.7771,-0.2468,-1.1983,1.3003 -0x1a6f5,CUS_0x1135,August,22,897-95-1425,Journalist,83358.3,6896.525,5,3,4.288361749,2,"Auto Loan, Not Specified, and Auto Loan",4.35460729,6,2.66,7,_,635.0431447,23.28328675,30 Years and 10 Months,No,169.9360048,690.3957003,High_spent_Medium_value_payments,526.6799675,0,-2.0409,0.884,0.3285,0.404,0.3211 -0x1a701,CUS_0x91e5,August,22,#F%$D@*&8,Journalist,12246.215,1181.517917,8,6,18,2,"Auto Loan, and Credit-Builder Loan",,11,9.32,3,Standard,641.98,31.86869213,23 Years and 9 Months,Yes,13.7835627,126.5466948,Low_spent_Small_value_payments,267.8215342,0,0.269,0.6936,1.4172,0.0792,-0.3087 -0x1a70d,CUS_0x67f0,August,19,257-49-6669,Engineer,49619.7,,9,8,31,8,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",44.51392702,25.9523052,0.56,13,Bad,1620.500589,35.3478429,9 Years and 2 Months,Yes,203.6631817,,High_spent_Medium_value_payments,389.2021781,0,-0.5205,-0.0892,-1.8956,0.012,-0.2414 -0x1a719,CUS_0x8d42,August,50,433-44-8577,_______,30984.3,2385.025,0,6,12,2,"Auto Loan, and Auto Loan",,2.430143785,2.14,4,Good,1249.102862,28.6715329,30 Years and 11 Months,No,35.04854975,79.63687419,Low_spent_Large_value_payments,393.8170761,0,-0.3115,-0.3946,0.8874,1.198,-1.0099 -0x1a725,CUS_0x8b29,August,55,752-20-2242,_______,73490.5,6231.208333,6,7,17.28836175,2,"Personal Loan, and Debt Consolidation Loan",,16,11.71,6,Standard,33.14,39.25551372,32 Years and 6 Months,No,104.083707,751.0393654,Low_spent_Medium_value_payments,467.9352219,0,2.3214,-0.672,-0.7224,-0.4743,0.6961 -0x1a731,CUS_0xa20d,August,24,455-15-5401,Accountant,58211.85,4727.9875,8,6,5,4,"Not Specified, Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",20.97578445,17,3.65,3,Good,775.3160209,31.10894417,32 Years and 5 Months,No,152.7274982,294.5483472,High_spent_Small_value_payments,323.1827389,0,1.824,0.2771,-1.1301,-0.1497,0.7048 -0x1a73d,CUS_0xb13e,August,28,#F%$D@*&8,Accountant,87477.45,,3,5,6.288361749,0,,6.089141108,8,2.17,8,Good,18.31,30.70764609,16 Years and 11 Months,No,0,481.0752746,High_spent_Large_value_payments,921.6409364,0,-0.167,0.0875,-0.1583,-0.1707,-1.8215 -0x1a749,CUS_0x2bf7,August,45,700-96-0564,Accountant,118884,9665,5,6,8,0,,2.360560788,3,8.29,5,Good,830.63,25.51627341,21 Years and 4 Months,No,0,639.8314334,Low_spent_Medium_value_payments,606.6685666,0,0.7012,-1.2735,-0.4811,0.5477,-0.9112 -0x1a755,CUS_0x5e40,August,37,355-34-7507,Entrepreneur,15217.1,1448.091667,8,5,28.06745738,3,"Debt Consolidation Loan, Personal Loan, and Personal Loan",,19.07746283,3.62,14,_,2241.633063,27.42620406,,Yes,35.04243178,17.39963021,High_spent_Medium_value_payments,315.6468167,0,-0.2172,0.2242,-0.9051,0.2468,-0.2884 -0x1a761,CUS_0x495e,August,18,792-95-8742,Teacher,75476.72,6492.726667,10,10,30,5,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",32.10651555,25,8.41,8,Bad,1401.04,27.36706399,18 Years and 3 Months,Yes,301.5576793,332.4289203,High_spent_Small_value_payments,275.2860671,0,-0.0653,-0.7613,1.5656,1.8683,-1.0103 -0x1a76d,CUS_0x2e8a,August,52,807-46-9616,Lawyer,23012.43,,7,6,10,1,Mortgage Loan,17.99999137,14,0.81,2,Standard,351.41,29.46290454,15 Years and 8 Months,No,13.81522681,154.2659863,Low_spent_Large_value_payments,280.0890369,0,-0.288,-0.8471,0.5696,-0.4447,-0.9173 -0x1a779,CUS_0x7e67,August,26,850-03-7375,Mechanic,82394.16,6776.18,6,3,19,2,"Mortgage Loan, and Student Loan",13.28784383,9,7.09,9,Standard,676.2,25.74727042,11 Years and 10 Months,Yes,85.56758939,457.4799334,Low_spent_Medium_value_payments,414.5704772,0,-0.1555,0.8044,-0.6603,0.7232,-0.8794 -0x1a785,CUS_0x2beb,August,32,#F%$D@*&8,Media_Manager,8165.37,,7,8,18,100,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",38.18187919,26.31569047,14.72,9,Bad,4289.220337,25.91510172,7 Years and 9 Months,Yes,26.21310604,63.7609165,!@9#%8,247.1707275,0,1.0351,-0.3955,0.7829,-0.2262,0.3334 -0x1a791,CUS_0x162f,August,35,170-70-1371,Engineer,9743.96,889.9966667,8,7,4,4,"Payday Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",,12,9.98,5,Good,625.73,21.99770366,16 Years and 11 Months,No,18.85845156,,Low_spent_Small_value_payments,289.3027296,0,1.3179,-0.6098,1.0428,-2.0001,-0.4814 -0x1a79d,CUS_0x578b,August,32,995-68-3472,Journalist,8002.575,644.88125,6,9,29,2,"Not Specified, and Mortgage Loan",,25.0503925,3.51,7,Bad,1846.211124,30.00835374,17 Years and 5 Months,Yes,8.056869188,11.19000242,High_spent_Medium_value_payments,295.2412534,0,0.7721,0.3922,-1.1875,-1.2123,0.0376 -0x1a7a9,CUS_0xc57e,August,37,265-31-1959,Writer,146999.24,12110.93667,5,6,10,0,,25.09088284,20,6.53,5,Good,1148.91,24.22481831,22 Years and 11 Months,No,0,841.8572973,Low_spent_Large_value_payments,639.2363694,0,2.2331,0.9969,-0.2356,-0.3794,1.7107 -0x1a7b5,CUS_0x5131,August,34,455-55-9517,Entrepreneur,127253.4,10686.45,1,5,7,1,Mortgage Loan,,0,11.4,7,Good,1181.44,36.10297309,29 Years and 4 Months,No,78.54689323,409.1716119,High_spent_Medium_value_payments,830.9264949,0,-0.6007,1.1531,-0.0272,1.9231,-0.6386 -0x1a7c1,CUS_0x575b,August,20,#F%$D@*&8,Engineer,77108.98,6528.748333,5,2,7.288361749,2,"Auto Loan, Not Specified, and Payday Loan",6.602346766,9,8.6,1,Good,423.2094629,30.31826272,17 Years and 11 Months,No,68825,,High_spent_Large_value_payments,745.8422072,0,-1.5589,-0.4566,2.5502,2.621,-0.755 -0x1a7cd,CUS_0x6dde,August,22,424-80-0379,Journalist,18623.07,1746.9225,10,7,33,7,"Home Equity Loan, Personal Loan, Auto Loan, Auto Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",29.35618397,21,-2.72,12,_,1354.83,28.74916107,19 Years and 11 Months,Yes,60.55603489,118.7563219,Low_spent_Large_value_payments,265.3798932,0,0.3598,2.9516,-1.0682,-0.1666,0.7221 -0x1a7d9,CUS_0xb647,August,30,702-88-1853,Doctor,16562.55,,3,5,19.06745738,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",18.1291097,12,10.47,7,Standard,2573.570954,42.52084197,12 Years and 6 Months,Yes,25.0064794,56.93662589,High_spent_Medium_value_payments,309.1578568,0,0.5634,-0.7895,0.9758,0.7097,0.3797 -0x1a7e5,CUS_0xb6f8,August,39,745-72-0120,Manager,37045.78,3267.148333,10,9,34.95700519,8,"Auto Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Not Specified, Home Equity Loan, Payday Loan, and Student Loan",34.06059901,17,22.35,13,Bad,3685.690954,40.49275495,,Yes,33289.48344,63.49071003,High_spent_Large_value_payments,215.2611123,0,-0.2864,-1.3286,0.8562,0.4639,0.1215 -0x1a7f1,CUS_0x404c,August,33,064-29-9793,Entrepreneur,30652.38,,3,7,7,4,"Mortgage Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",,15,11.83,186,Good,243.4038498,24.66074177,30 Years and 10 Months,No,55.08366558,140.2185435,High_spent_Small_value_payments,362.2202242,0,1.3663,0.9579,-0.2557,0.6906,0.3473 -0x1a7fd,CUS_0x6d5c,August,26,981-04-9699,Teacher,31429.81,2723.150833,0,7,9,0,,5.895677975,6,2.44,0,Good,117.3,34.41591867,25 Years and 0 Months,No,0,,High_spent_Small_value_payments,382.8279793,0,0.0338,0.6813,-0.956,1.3657,-0.4234 -0x1a809,CUS_0xc632,August,25,645-54-6745,Journalist,33376.81,,2,5,0.288361749,2,"Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",12.10722625,11,9.16,3,_,252.34,30.02046873,31 Years and 0 Months,No,82.41644185,532.260733,High_spent_Medium_value_payments,344.3003695,0,-1.0831,-1.7574,1.4908,0.3146,1.2018 -0x1a815,CUS_0x21cd,August,25,988-34-7804,Journalist,34570.08,,3,7,6.288361749,0,Debt Consolidation Loan,,0,7.63,3,_,200.32,26.85265778,19 Years and 9 Months,No,17.0780066,539.7383779,Low_spent_Large_value_payments,443.4050765,0,0.2755,-1.8387,0.479,-0.4616,0.9979 -0x1a821,CUS_0x3757,August,42,610-13-4952,Mechanic,32176.68,,10,8,27.88954781,100,"Debt Consolidation Loan, Student Loan, Mortgage Loan, and Personal Loan",45.6176299,22.80228281,10.06,16,Standard,2779.244321,39.52246298,,Yes,1382.556235,63.10485615,Low_spent_Large_value_payments,369.9478276,0,0.3001,-0.0619,-1.5445,-0.5682,-0.6444 -0x1a82d,CUS_0x2b11,August,27,419-48-6173,Media_Manager,112270.59,,4,3,5,3,"Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",9.697427213,9,1.6,5,Good,409.62,33.51489996,,No,219.1042111,10000,Low_spent_Medium_value_payments,317.9125976,0,-0.1703,-0.94,-0.1872,0.226,1.3404 -0x1a839,CUS_0x2858,August,38,#F%$D@*&8,Developer,123936.16,10558.01333,4,3,18,0,,18.90462185,15,8.46,3,Standard,666.5477949,39.53823408,30 Years and 0 Months,NM,0,1172.970237,!@9#%8,275.3673297,0,-1.923,-0.3143,-0.0131,-0.7578,-0.7887 -0x1a845,CUS_0x63ec,August,19,#F%$D@*&8,Media_Manager,38992.57,3144.380833,3,3,3,0,,,6,4.23,6,Good,980.027049,24.4369178,25 Years and 5 Months,No,0,52.22491161,High_spent_Large_value_payments,507.8003933,0,0.3002,0.4492,0.7859,0.0916,-0.3775 -0x1a851,CUS_0x8e65,August,45,901-71-9550,Manager,17324.7,,9,8,27.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Payday Loan",35.58540784,23,7.91,8,_,1879.690954,25.2999134,9 Years and 9 Months,Yes,47.30995959,169.696725,Low_spent_Small_value_payments,173.6455275,0,0.4097,-2.1216,0.8202,-0.556,-0.1761 -0x1a85d,CUS_0x8ed5,August,21,817-16-2848,Lawyer,103190.84,8400.236667,7,5,14,1,Home Equity Loan,,11,0.57,5,Standard,780.16,37.38629077,24 Years and 0 Months,No,46.75902119,683.6753545,Low_spent_Medium_value_payments,389.5892909,0,-0.1595,-0.683,-2.6949,1.2316,-0.9266 -0x1a869,CUS_0x99c2,August,80,257-17-1748,Manager,15878.09,,5,3,18,3,"Debt Consolidation Loan, Mortgage Loan, and Payday Loan",11.34472776,10.62254055,11.31,8,Standard,1836.285898,25.33229063,6 Years and 8 Months,Yes,37.15545093,39.1872576,Low_spent_Large_value_payments,300.4747081,0,-0.3175,1.088,-0.5198,0.214,-0.113 -0x1a875,CUS_0x3fef,August,53,634-71-6210,Lawyer,54426.18,4546.515,4,6,12,4,"Credit-Builder Loan, Auto Loan, Personal Loan, and Home Equity Loan",13.11737659,13,2.74,6,Standard,865.04,29.60786285,30 Years and 6 Months,No,137.7674613,121.0071191,High_spent_Medium_value_payments,445.8769196,0,1.478,0.5795,-0.1283,0.0873,-0.5457 -0x1a881,CUS_0xa1a8,August,38,070-04-3134,Accountant,35033.11,3041.425833,3,5,16.28836175,4,"Home Equity Loan, Not Specified, Payday Loan, and Auto Loan",23.29266349,19,19.48,0,Standard,44.59,31.75395999,24 Years and 0 Months,Yes,86.86376875,,High_spent_Medium_value_payments,402.5478351,0,-0.715,0.2473,0.4573,-0.1566,-0.0349 -0x1a88d,CUS_0x8bba,August,80,417-78-1654,Scientist,9429.325,909.7770833,5,5,29.06745738,2,"Credit-Builder Loan, and Home Equity Loan",26.77836857,17.61101019,9.27,12,Standard,2523.713719,37.19113206,15 Years and 3 Months,Yes,12.85152071,,High_spent_Medium_value_payments,276.5661854,0,-1.183,-1.133,-0.4808,-0.4201,0.9123 -0x1a899,CUS_0xae9e,August,19,345-91-4839,_______,19540.67,1891.389167,8,9,27.95700519,6,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Not Specified, Not Specified, and Debt Consolidation Loan",,24.21431658,,9,_,1953.078235,33.27295797,10 Years and 4 Months,Yes,1392.769025,,!@9#%8,116.5447929,0,-0.3507,-0.8874,-0.0779,1.1872,1.8939 -0x1a8a5,CUS_0x1fa5,August,18,826-82-7232,_______,53643.9,4696.325,9,5,16.06745738,5,"Home Equity Loan, Not Specified, Auto Loan, Student Loan, and Mortgage Loan",43.39855325,26,6.31,16,Bad,3159.260954,31.02467823,13 Years and 9 Months,Yes,113.8484145,196.0132984,High_spent_Medium_value_payments,383.0504991,0,0.6946,0.1509,0.3721,0.3908,0.64 -0x1a8b1,CUS_0x90ca,August,25,766-08-4582,_______,32613.98,,4,4,17,4,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",24.40914086,20,0.7,5,Standard,954.65,29.0227128,29 Years and 5 Months,No,75.40541208,72.90900003,High_spent_Medium_value_payments,370.5687546,0,-1.6631,0.1436,0.8302,-1.9349,-0.8763 -0x1a8bd,CUS_0x24ae,August,51,959-48-9170,Entrepreneur,94070.2,,5,5,8,1,Auto Loan,23.73207683,17,4.88,2,Standard,1420.86,28.80003292,20 Years and 0 Months,No,64.132217,164.9912941,High_spent_Medium_value_payments,805.4948222,0,0.604,0.3674,-0.7444,-0.4459,-0.5888 -0x1a8c9,CUS_0x5205,August,46,894-45-0461,Accountant,103316.76,,4,4,4,3,"Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,5.635651649,11.58,1,_,678.2373049,25.23194239,20 Years and 3 Months,No,198.9395665,506.0544851,Low_spent_Large_value_payments,412.3789485,0,0.5822,1.2143,-1.0687,0.1499,-0.719 -0x1a8d5,CUS_0xae4,August,27,414-56-3481,Writer,69289.4,5817.116667,8,4,15,2,"Mortgage Loan, and Mortgage Loan",16.89069508,13.63889551,9.79,9,Standard,2694.298126,34.63233398,18 Years and 10 Months,Yes,59.36513754,240.920585,High_spent_Medium_value_payments,531.4259441,0,-1.322,0.3126,0.518,2.283,-0.8354 -0x1a8e1,CUS_0x26eb,August,40,070-52-7651,Mechanic,13999.185,932.59875,8,5,6,100,Personal Loan,18.298201,15,-0.45,6,Standard,16.3,35.94399956,20 Years and 4 Months,Yes,10.9625847,47.85500458,Low_spent_Medium_value_payments,314.4422857,0,0.5363,0.5619,-0.7717,1.1881,-0.8796 -0x1a8ed,CUS_0x2e53,August,29,598-59-0908,Accountant,70883.44,5663.953333,4,4,9.288361749,2,"Personal Loan, Personal Loan, and Payday Loan",12.93481061,12,10.23,2,Standard,604.77,31.19971901,30 Years and 3 Months,No,97.13399701,864.0472019,Low_spent_Large_value_payments,295.1515954,0,-0.1463,-0.9745,0.0471,-0.9169,-0.3501 -0x1a8f9,CUS_0x817d,August,41,973-95-7025,Scientist,47521.56,4128.13,3,4,10,5,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",,15.98579819,6.08,11,Standard,1208.754894,37.47525657,13 Years and 2 Months,Yes,163.7637057,257.4439388,Low_spent_Medium_value_payments,271.6053555,0,0.2711,0.4459,0.1341,1.1587,-1.6188 -0x1a905,CUS_0x2c7d,August,30,677-10-1495,Mechanic,130293.36,10618.78,2,4,1,4,"Debt Consolidation Loan, Student Loan, Student Loan, and Credit-Builder Loan",,8,11.32,6,_,1243.13,28.89776202,19 Years and 10 Months,No,392.8971262,,Low_spent_Medium_value_payments,106.6920227,0,-0.9023,0.6255,2.2392,-1.3814,-0.176 -0x1a911,CUS_0x5053,August,21,136-08-1655,Entrepreneur,97735.08,,3,6,4.288361749,4,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",0,3,-0.13,2,Good,358.24,30.47207418,32 Years and 3 Months,No,233.4359352,1355.069369,Low_spent_Small_value_payments,,0,0.74,-0.7985,-0.8808,0.6906,-0.2373 -0x1a91d,CUS_0xa122,August,27,573-55-1351,Doctor,33906.16,2668.513333,5,3,9,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",12.78241908,9,4.17,0,Standard,625.99,35.81614673,,No,79.78613032,71.19937855,High_spent_Small_value_payments,375.8658245,0,-1.6505,-1.4381,0.078,-1.1677,0.2953 -0x1a929,CUS_0x804d,August,23,#F%$D@*&8,Architect,21897.505,1986.792083,1,1,1,1,Mortgage Loan,,7,9.83,1,Good,630.68,38.2314685,28 Years and 4 Months,No,15.48746379,139.8981648,Low_spent_Large_value_payments,313.2935798,0,0.806,-0.5006,0.3165,1.7843,1.3305 -0x1a935,CUS_0x98d4,August,33,784-94-1164,Manager,157814.32,,4,5,5.288361749,0,Student Loan,6.386039366,8,8.99,4,Good,411.89,38.93233116,,No,113.493214,784.6141262,High_spent_Small_value_payments,1090.549454,0,0.1725,-1.4092,-1.1369,-1.6052,0.2263 -0x1a941,CUS_0x4aeb,August,23,225-20-9809,Architect,33635.72,,10,5,24.06745738,7,"Auto Loan, Personal Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",46.12976102,26.52999625,4.8,15,Bad,4163.037338,32.03807938,13 Years and 3 Months,NM,163.2131414,,Low_spent_Small_value_payments,43.60683956,0,-1.9071,1.2891,-0.4519,0.3852,0.6768 -0x1a94d,CUS_0x2f0b,August,50,146-00-0705,_______,12165.52,,8,7,11.06745738,3,"Payday Loan, Personal Loan, and Credit-Builder Loan",27.71908351,18.22529292,9.16,3,Good,1719.131731,35.4018133,19 Years and 11 Months,No,19.50053211,,Low_spent_Small_value_payments,246.4436109,0,-1.0516,1.337,0.6541,3.296,-0.355 -0x1a959,CUS_0xb030,August,28,415-02-1996,Journalist,33133.71,,6,5,6,2,"Auto Loan, and Credit-Builder Loan",,20,12.79,6,Standard,1406.81,34.10257433,12 Years and 2 Months,Yes,28.145581,99.177198,Low_spent_Large_value_payments,410.591471,0,-1.1897,0.6428,0.5121,1.561,-1.0259 -0x1a965,CUS_0x5fe3,August,18,591-58-3798,Teacher,81475.28,6865.606667,6,3,17,0,,23.49945687,18,12.33,10,Standard,1271.12,37.58435376,22 Years and 10 Months,Yes,47610,357.0876227,Low_spent_Small_value_payments,619.473044,0,-0.4207,1.8404,-0.2072,-0.2058,0.7105 -0x1a971,CUS_0x3b37,August,21,#F%$D@*&8,Accountant,19307.9,,848,4,12,2,"Student Loan, and Auto Loan",21.32843556,19,2.37,2,Standard,1024.47,32.6168202,26 Years and 11 Months,No,16.45977229,,High_spent_Medium_value_payments,369.6115566,0,0.7088,0.0648,0.3627,1.092,-1.8348 -0x1a97d,CUS_0x8aea,August,55,637-17-1146,Media_Manager,26861.89,,3,7,11,0,,8.893007776,8,2.32,2,Good,372.21,32.44815805,30 Years and 2 Months,No,0,75.61846428,Low_spent_Small_value_payments,421.8306191,0,2.013,-0.7901,0.6123,0.0075,0.3787 -0x1a989,CUS_0xb4a1,August,46,039-75-8071,Developer,14834.445,1082.20375,0,7,2,2,"Student Loan, and Credit-Builder Loan",0,1,6.51,3,_,1442.35,27.17379362,33 Years and 4 Months,No,20.12944555,61.71169584,High_spent_Small_value_payments,286.3792336,0,1.2603,-1.3207,-1.6277,0.1057,1.6344 -0x1a995,CUS_0x8d21,August,18,473-47-6936,Entrepreneur,58518,4792.5,10,10,33,4,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,25.43492464,15.56,9,_,2242.757859,25.22307744,8 Years and 10 Months,Yes,188.4010771,105.0389493,High_spent_Large_value_payments,425.8099736,0,-0.1462,0.1715,1.4397,1.1659,2.2628 -0x1a9a1,CUS_0x75d8,August,22,281-84-3517,Scientist,115832.24,,8,5,3.288361749,0,Home Equity Loan,14.70669431,14,,0,Good,186.8477129,27.50575821,32 Years and 10 Months,No,94.18678551,1562.558127,Low_spent_Medium_value_payments,162.1950853,0,-0.3363,-1.2686,-1.779,1.1988,-1.0614 -0x1a9ad,CUS_0x32df,August,54,520-87-0094,_______,82969.92,6694.16,4,5,19.28836175,0,Debt Consolidation Loan,19.35178239,18,,4,Standard,822.11,32.59469457,15 Years and 10 Months,No,42.32757483,865.5435079,Low_spent_Small_value_payments,471.4823783,0,-0.5349,1.3488,-0.067,-0.9323,0.6931 -0x1a9b9,CUS_0x87d8,August,53,537-76-1274,Engineer,88818.56,,2,1,10.28836175,0,Home Equity Loan,5.534752549,7,10.09,5,Good,388.0328069,31.83755114,27 Years and 10 Months,No,68.04044883,12005.45038,High_spent_Medium_value_payments,634.5065877,0,-0.4214,1.3332,-0.0022,0.4058,-0.5898 -0x1a9c5,CUS_0x282a,August,19,818-67-2718,Developer,7360.56,,6,4,14,2,"Home Equity Loan, and Home Equity Loan",,,12.49,2083,_,2822.936109,31.20842085,9 Years and 4 Months,NM,6.442169892,,Low_spent_Small_value_payments,291.1358705,0,-0.9346,-1.0384,-0.9401,0.0777,-0.6953 -0x1a9d1,CUS_0x8a84,August,28,880-61-7472,Accountant,20397.51,,5,2,9,4,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",11.28749186,10,,3,_,417.8724347,27.55785636,23 Years and 3 Months,No,52.94486524,120.1808597,Low_spent_Medium_value_payments,263.3381657,0,-0.1964,-0.1821,1.3061,0.8274,0.2297 -0x1a9dd,CUS_0x43fc,August,30,001-98-8608,Architect,134951.25,,1,4,4.288361749,4,"Not Specified, Mortgage Loan, Student Loan, and Mortgage Loan",15.90645395,,1.96,9,Good,451.7463021,37.61522112,29 Years and 8 Months,No,1070.973924,,High_spent_Medium_value_payments,670.8835457,0,1.2266,0.4926,1.3956,1.4118,-0.1448 -0x1a9e9,CUS_0x6870,August,23,612-68-0152,Doctor,9381.05,,10,10,16,7,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Student Loan, and Home Equity Loan",,24.85191598,7.29,8,Bad,1793.591006,27.82065198,19 Years and 10 Months,Yes,27.91818864,,Low_spent_Medium_value_payments,250.0612619,0,0.4214,-1.2286,-1.305,-2.0535,-0.126 -0x1a9f5,CUS_0x2e65,August,21,236-72-3822,Architect,40167.84,3532.32,7,5,4.288361749,0,Debt Consolidation Loan,18.11160634,17,11.59,4,Standard,277.38,33.68595472,17 Years and 4 Months,Yes,19.02528025,482.5433891,High_spent_Large_value_payments,511.6007916,0,-1.0776,-0.0468,-0.7528,-1.0707,0.0024 -0x1aa01,CUS_0x95f4,August,32,687-97-9650,Manager,19863.68,,8,8,19.88954781,7,"Student Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Student Loan",33.32588027,24,25.05,12,Bad,2333.985368,36.85175455,2 Years and 2 Months,Yes,1412.019289,22.19143736,High_spent_Large_value_payments,285.0370471,0,-0.9412,0.7336,0.8679,0.2185,-1.0163 -0x1aa0d,CUS_0x6176,August,21,776-12-0174,Musician,19608.98,,6,6,34,5,"Credit-Builder Loan, Auto Loan, Auto Loan, Mortgage Loan, and Payday Loan",41.46935523,18.39793029,15.5,16,Bad,3788.904566,40.41386229,14 Years and 8 Months,Yes,55.84262566,,Low_spent_Small_value_payments,260.4751715,0,0.6935,-0.7378,-0.1846,-0.077,-0.3778 -0x1aa19,CUS_0x9d2f,August,47,618-73-2642,Manager,131091.12,10855.26,0,5,12,0,,,1,9.41,3,Good,328.8028605,36.03283769,21 Years and 3 Months,No,0,588.9254515,Low_spent_Small_value_payments,857.885111,0,0.7511,0.8079,-1.6476,-1.5335,-0.4726 -0x1aa25,CUS_0x5338,August,38,109-33-6582,Teacher,17288.425,,4,3,2,1,Home Equity Loan,11.16682311,12,5.83,,_,1076.281193,39.13136332,32 Years and 0 Months,No,8.647233303,77.79471497,Low_spent_Small_value_payments,364.9689006,0,0.1799,0.0906,-1.1295,0.4069,0.5035 -0x1aa31,CUS_0x2ddc,August,43,831-46-3722,_______,38392.87,3343.405833,3,5,9,100,"Payday Loan, and Credit-Builder Loan",,9,11.8,1,Good,883.37,39.74308193,27 Years and 6 Months,No,52.65696427,87.3904867,High_spent_Medium_value_payments,444.2931324,0,-0.3448,-1.2019,0.2443,1.0376,-0.0161 -0x1aa3d,CUS_0x3e14,August,55,681-52-1334,Writer,17651.515,,0,2,3.288361749,0,,5.205419996,6,-4.49,1,Good,58.59955853,30.81769028,24 Years and 9 Months,No,0,12037.71705,Low_spent_Small_value_payments,275.7999433,0,-1.2911,-0.5863,0.5979,0.0067,0.5087 -0x1aa49,CUS_0x62b5,August,50,303-12-8448,Doctor,14585.47,,3,6,6,3,"Auto Loan, Personal Loan, and Student Loan",,14,7.32,5,Standard,1104.42,30.79647284,,No,27.25326202,,!@9#%8,244.9071118,0,1.1384,0.1457,-1.3087,-0.1109,0.6853 -0x1aa55,CUS_0xbca1,August,45,349-04-9863,Scientist,31968.28,,8,10,23.88954781,100,"Personal Loan, Not Specified, Mortgage Loan, Payday Loan, and Payday Loan",29.4846072,21,4.87,13,Bad,3899.38,30.63996219,11 Years and 3 Months,Yes,1407.312555,,High_spent_Small_value_payments,294.267159,0,-0.0333,0.2679,-0.0804,-0.7736,-2.5072 -0x1aa61,CUS_0x6c88,August,39,821-50-1894,Accountant,103495.68,8611.64,7,6,8,7,"Student Loan, Not Specified, Auto Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Student Loan",9.084578462,7,19.79,5,Standard,482.64,24.00911561,7 Years and 6 Months,Yes,427.1441829,,Low_spent_Medium_value_payments,63.02488861,0,0.1998,-2.7894,-1.0413,0.9751,1.2444 -0x1aa6d,CUS_0x199b,August,42,445-42-3539,Architect,16048.76,,8,10,18,7,"Debt Consolidation Loan, Not Specified, Not Specified, Payday Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,24.88229335,11.29,14,Standard,1746.582615,40.44191884,,Yes,72.00561251,,Low_spent_Small_value_payments,259.6831378,0,-0.471,0.4833,1.0919,0.3034,-1.149 -0x1aa79,CUS_0x4eae,August,41,#F%$D@*&8,_______,44968.15,,1,5,2,0,,15.23086917,,1.22,6,Good,770.5030066,34.45166104,,No,0,98.17756704,High_spent_Large_value_payments,506.5211229,0,-0.6496,-1.0306,-0.6682,-0.3888,0.8057 -0x1aa85,CUS_0x56ad,August,19,891-82-4879,Scientist,61352.64,5014.72,3,210,19,5,"Personal Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",12.92189751,7,19.32,7,Standard,497.13,30.59382721,17 Years and 3 Months,Yes,225.7974537,372.6135524,Low_spent_Medium_value_payments,183.0609939,0,-0.2127,-0.8671,-0.2029,-0.5413,0.3288 -0x1aa91,CUS_0x4298,August,46,850-03-7662,Teacher,2716542,,8,9,19,3,"Credit-Builder Loan, Credit-Builder Loan, and Student Loan",,28.9198151,,11,Bad,1786.002702,41.67899225,6 Years and 8 Months,Yes,99.88706369,193.3481428,Low_spent_Large_value_payments,422.4285435,0,0.9068,0.262,-0.2402,-0.3229,-0.9371 -0x1aa9d,CUS_0x9741,August,39,508-79-5577,Writer,14067.58,,9,6,20,8,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Personal Loan",28.2760998,21.29778774,1.57,9,Bad,3429.156745,25.58438023,9 Years and 4 Months,Yes,71.63048027,,Low_spent_Large_value_payments,207.548852,0,-0.6754,-0.2611,0.2521,-0.6044,0.9373 -0x1aaa9,CUS_0x9a7a,August,40,352-84-7006,Writer,81438.56,,3,4,20,2,"Debt Consolidation Loan, and Mortgage Loan",,,8.21,8,Standard,509.44,30.45292314,7 Years and 10 Months,Yes,721.5350254,,High_spent_Small_value_payments,493.7072278,0,1.79,0.4879,-0.1739,1.5829,-0.1729 -0x1aab5,CUS_0x8d0b,August,43,347-54-2557,Engineer,35251.49,,0,4,1.288361749,2,"Home Equity Loan, Payday Loan, and Credit-Builder Loan",0,3.468543199,1.87,7,Good,162.2564283,24.17897536,26 Years and 4 Months,No,78.04706428,516.4964508,Low_spent_Small_value_payments,398.5563626,0,-1.1141,0.8045,0.307,-0.9891,-0.1587 -0x1aac1,CUS_0x72b0,August,35,504-61-6763,Teacher,66949.68,,5,1,9.288361749,2,"Auto Loan, and Home Equity Loan",,6,4.72,9,Good,382.9019915,33.42261266,26 Years and 6 Months,No,59.37214724,538.1232318,High_spent_Large_value_payments,655.8553293,0,-0.0866,0.8325,0.2223,1.0776,0.1474 -0x1aacd,CUS_0x883e,August,41,744-84-2263,Writer,29715.16,,4,6,16,5,"Student Loan, Personal Loan, Personal Loan, Personal Loan, and Debt Consolidation Loan",11.38349096,9,14.19,8,Standard,1036.03,22.46028706,20 Years and 0 Months,Yes,349.4553897,211.7963184,Low_spent_Small_value_payments,220.3065327,0,2.0242,1.1411,0.9435,-0.1183,-0.6257 -0x1aad9,CUS_0xb820,August,21,642-28-5878,_______,15645.89,,5,3,12,7,"Personal Loan, Student Loan, Payday Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",26.38645395,19,7.17,9,Standard,1327.96,36.07987227,14 Years and 4 Months,Yes,74.25891186,,Low_spent_Large_value_payments,212.1433623,0,0.2258,1.2866,-2.0876,0.0897,1.16 -0x1aae5,CUS_0x98f1,August,39,508-24-8627,Doctor,15301.71,,5,7,20,4,"Credit-Builder Loan, Student Loan, Student Loan, and Student Loan",21.73408417,15.74814922,10.21,9,Standard,2246.331581,33.01429492,18 Years and 2 Months,Yes,47.54402803,0,High_spent_Large_value_payments,292.1736014,0,-0.0136,2.2453,0.6149,-1.9925,1.9846 -0x1aaf1,CUS_0xa798,August,18,#F%$D@*&8,Journalist,7871.81,,7,10,34.06745738,3,"Student Loan, Student Loan, and Student Loan",90,2276,7.22,7,Standard,2177.040954,31.93358895,20 Years and 2 Months,Yes,10.13245255,31.00677615,Low_spent_Medium_value_payments,288.5389,0,1.5359,0.279,-0.8983,-1.7224,0.6812 -0x1aafd,CUS_0x33e1,August,18,846-15-6654,Musician,40181.48,,5,4,13,4,"Credit-Builder Loan, Not Specified, Student Loan, and Credit-Builder Loan",17.38706466,12,15.52,8,Standard,854.72,33.94155482,18 Years and 4 Months,NM,31512,163.751905,Low_spent_Large_value_payments,310.2199717,0,0.8077,-0.5815,0.3577,0.2227,1.2861 -0x1ab09,CUS_0xa024,August,47,#F%$D@*&8,Lawyer,84358.5,6730.875,2,4,7,2,"Personal Loan, and Auto Loan",2.695173874,4,11.94,6,Good,1460.18,26.13061749,21 Years and 5 Months,No,86.72041697,136.9166195,High_spent_Large_value_payments,689.4504635,0,0.8956,0.7505,-0.11,1.8085,-0.3804 -0x1ab15,CUS_0xaecd,August,40,267-20-3596,Mechanic,171462.56,,4,7,9.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Student Loan",,,13.01,6,Good,490.4904512,28.05342239,18 Years and 2 Months,No,364.8227607,784.6495095,High_spent_Large_value_payments,977.7240767,0,-0.2398,-0.6325,-1.3269,-1.6964,1.2652 -0x1ab21,CUS_0xb01b,August,53,743-79-8938,Scientist,64752.4,5652.033333,3,3,5,3,"Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",,,9.56,0,Good,1022.8,38.15970627,27 Years and 5 Months,No,115.3412869,280.8212517,!@9#%8,429.0407947,0,-0.5779,-0.9584,-0.2384,-1.1761,0.5795 -0x1ab2d,CUS_0x189e,August,28,129-46-1641,Teacher,137625.04,,4,4,5.288361749,0,,15.58919715,14,10.24,7,Good,605.6793348,39.50297671,20 Years and 10 Months,No,0,923.1374243,Low_spent_Large_value_payments,1013.505949,0,0.0727,-0.0886,2.7685,-0.8893,1.5688 -0x1ab39,CUS_0xb89,August,24,123-28-4825,Engineer,16956.9,1480.075,10,10,23.88954781,7,"Auto Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",,23.74101119,12.87,11,_,4493.687881,40.43008177,14 Years and 3 Months,Yes,1381.033533,191.9185223,Low_spent_Small_value_payments,170.725363,0,0.995,-0.4792,-0.2536,-0.4866,-0.2897 -0x1ab45,CUS_0x115c,August,20,956-28-3067,Engineer,41695.76,,6,7,15,9,"Not Specified, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",28.7625233,20,31.99,8,Bad,4453.51,26.69776846,8 Years and 6 Months,NM,302.8057257,85.68416843,Low_spent_Large_value_payments,221.6747725,0,1.1989,-0.5253,0.5331,-1.5526,0.6144 -0x1ab51,CUS_0x4a91,August,80,280-31-3787,Lawyer,16106.84,,4,1226,8,1,Credit-Builder Loan,,12.16265413,2.62,3,Good,1327.299742,36.97015396,25 Years and 11 Months,No,12.36727907,76.38198559,Low_spent_Small_value_payments,338.074402,0,-0.2582,0.9236,-0.8151,2.1395,-0.5316 -0x1ab5d,CUS_0x6eb2,August,25,693-12-5054,Journalist,89995.59,7546.6325,5,7,5,3,"Student Loan, Student Loan, and Home Equity Loan",,17,9.25,7,Standard,458.81,40.11180013,17 Years and 11 Months,Yes,122.2046148,149.8334681,High_spent_Large_value_payments,722.6251671,0,0.2794,-0.0433,-0.5355,0.2331,0.4396 -0x1ab69,CUS_0x495f,August,27,602-14-6009,Lawyer,20012.87,,7,8,17,5,"Personal Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Auto Loan",24.66387287,17.56013905,5.81,11,Bad,4023.801192,32.07213907,1 Years and 2 Months,Yes,59.45838794,130.7563024,Low_spent_Large_value_payments,262.8592263,0,1.4613,-0.5109,0.443,0.1335,0.074 -0x1ab75,CUS_0x7430,August,20,623-69-0437,Journalist,16380.17,,4,5,9.067457376,0,,14.98052043,9,13.58,2,Standard,1219.590954,29.9954007,19 Years and 9 Months,No,0,133.9683811,Low_spent_Small_value_payments,273.4127476,0,0.1018,0.5298,-0.9204,0.2607,-0.4324 -0x1ab81,CUS_0xb066,August,20,664-33-5906,Engineer,40702.96,,6,6,33.06745738,5,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",34.84490946,23,25.82,13,Bad,2891.280954,38.04902781,6 Years and 11 Months,NM,110.1978583,52.39891084,High_spent_Medium_value_payments,414.3742763,0,1.5002,0.8083,0.0633,0.1869,-1.3709 -0x1ab8d,CUS_0x758f,August,18,212-86-0554,Doctor,64355.72,,5,5,15,2,"Debt Consolidation Loan, and Home Equity Loan",14.84304381,15,12.72,6,Standard,1979.39,34.8269995,15 Years and 5 Months,Yes,82.55655087,,Low_spent_Small_value_payments,242.6452337,0,0.5688,1.5368,1.9426,-0.7166,-0.1919 -0x1ab99,CUS_0x243a,August,43,#F%$D@*&8,Media_Manager,38456.2,,6,4,9,2,"Not Specified, and Mortgage Loan",25.61622503,18,5.7,3,Standard,288.815718,40.81772147,24 Years and 10 Months,No,328.9018257,93.44344826,High_spent_Medium_value_payments,438.0163552,0,0.3676,-0.3202,-0.5606,-0.1218,1.3765 -0x1aba5,CUS_0x13e3,August,55,437-66-3296,Musician,143829.56,11755.79667,3,3,12,0,,14.21564647,11,10.32,2,Standard,269.26,43.25048443,,No,0,301.4665329,High_spent_Large_value_payments,1114.113134,0,0.8352,0.9752,-0.8033,0.5463,2.1934 -0x1abb1,CUS_0x81ff,August,54,376-19-8597,Journalist,31467.58,,0,5,1,2,"Personal Loan, and Credit-Builder Loan",7.440769167,7,3.2,4,Good,680.89,39.49199884,26 Years and 3 Months,No,36875,131.2954131,Low_spent_Small_value_payments,387.2829979,0,-0.9796,1.1575,-1.4504,-1.3016,-2.4558 -0x1abbd,CUS_0x2c75,August,27,#F%$D@*&8,Accountant,168682.56,14118.88,4,3,3,4,"Mortgage Loan, Mortgage Loan, Auto Loan, and Auto Loan",9.545588813,9,11.64,4,_,463.57,29.17589024,29 Years and 4 Months,No,305.7537414,290.0053472,High_spent_Large_value_payments,1056.128911,0,0.0772,-1.1277,-0.3172,-0.4022,0.3099 -0x1abc9,CUS_0x8237,August,45,151-67-7572,Mechanic,84504.51,7135.0425,6,3,10,1,Personal Loan,23.70656716,19,2.29,0,Good,1177.578366,41.66007089,18 Years and 2 Months,No,36.82293945,,High_spent_Large_value_payments,862.8963696,0,0.1293,1.1389,-1.1612,-0.3569,0.6612 -0x1abd5,CUS_0xc44a,August,49,855-76-7431,Lawyer,169710.52,14181.54333,2,3,3,2,"Mortgage Loan, and Debt Consolidation Loan",,9,10.41,3,Good,1334.35,31.8754162,17 Years and 11 Months,NM,45299,262.9737172,High_spent_Medium_value_payments,1123.17549,0,-0.8808,0.6502,-1.8393,-0.678,1.1461 -0x1abe1,CUS_0x36f7,August,26,518-03-9260,Media_Manager,14616.91,1206.075833,8,6,27,8,"Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Mortgage Loan",,27.94520428,6.06,8,Bad,2956.055903,35.101275,14 Years and 0 Months,Yes,86.23562289,74.61000127,Low_spent_Small_value_payments,249.7619592,0,0.7673,1.3817,-0.4489,1.7448,-1.2753 -0x1abed,CUS_0x6a6c,August,51,355-25-8296,Entrepreneur,22336.27,1669.274057,4,4,6,4,"Personal Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",3.191377958,4,8.43,3,Good,506.06,37.19696263,29 Years and 4 Months,No,177.5528657,19.56010689,High_spent_Medium_value_payments,337.6043867,0,-0.8332,-0.5836,-2.0876,1.8182,0.7926 -0x1abf9,CUS_0x2ae8,August,21,498-74-4915,Engineer,132273.75,10800.8125,5,4,3.288361749,2,"Debt Consolidation Loan, and Mortgage Loan",,5,6.46,4,Good,827.64,24.25384149,25 Years and 8 Months,No,144.7013122,,Low_spent_Medium_value_payments,129.1494146,0,1.5779,0.4257,0.8111,-0.026,0.6906 -0x1ac05,CUS_0xa91f,August,44,816-49-1841,Teacher,134327.56,11411.96333,4,6,12.28836175,2,"Personal Loan, and Personal Loan",,21.32921515,11.11,1,_,1193.613439,39.12118442,27 Years and 6 Months,No,187.6768127,1087.41752,Low_spent_Small_value_payments,576.0394621,0,-0.4074,1.1088,-0.5609,0.6633,1.5794 -0x1ac11,CUS_0x9273,August,52,770-10-4834,Accountant,41009.96,3671.496667,0,3,2.288361749,0,Not Specified,,6,6.19,2,Good,432.6458679,39.11820485,18 Years and 0 Months,No,28.79226071,647.1404822,Low_spent_Small_value_payments,431.481457,0,-0.5786,1.8299,0.4826,0.8982,-0.6559 -0x1ac1d,CUS_0x25ca,August,40,#F%$D@*&8,Doctor,18694.99,,9,5,22.06745738,7,"Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",29.79711156,,7.97,12,Bad,2182.900954,29.93287134,10 Years and 8 Months,NM,100.2224655,,High_spent_Small_value_payments,212.726891,0,1.3059,-0.8861,-1.0437,1.062,1.1162 -0x1ac29,CUS_0x7ff5,August,44,514-10-3763,Mechanic,95933.64,,7,4,13,4,"Auto Loan, Payday Loan, Personal Loan, and Student Loan",14.61293384,9,9.7,2,Standard,1387.35,33.17420802,19 Years and 2 Months,No,218.133955,271.9873782,High_spent_Medium_value_payments,576.6256668,0,0.7932,-0.6519,-0.2426,1.8127,0.2988 -0x1ac35,CUS_0xa03a,August,38,#F%$D@*&8,Accountant,19204.93,1391.297836,6,3,6,4,"Student Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",11.43876326,9,8.82,7,Standard,178.0479029,30.38525048,21 Years and 10 Months,No,175.7932553,83.23711352,Low_spent_Small_value_payments,315.8054498,0,-2.3875,1.3332,0.7668,-0.6126,0.3998 -0x1ac41,CUS_0x83a0,August,42,640-44-9921,Doctor,69712.2,5841.35,8,7,5,5,"Auto Loan, Not Specified, Personal Loan, Personal Loan, and Auto Loan",27.66477238,18,16.86,8,Standard,1638.94,37.6769924,14 Years and 8 Months,Yes,275.1258592,459.8733701,!@9#%8,119.1357706,0,-0.548,1.0573,-1.4861,0.7213,0.4096 -0x1ac4d,CUS_0x3e9a,August,27,902-99-8509,Architect,43704.55,,4,5,10,3,"Credit-Builder Loan, Auto Loan, and Personal Loan",14.99684228,,6.39,0,_,737.37,27.24883056,27 Years and 8 Months,No,81.4839773,10000,Low_spent_Small_value_payments,299.0234373,0,-0.2642,-1.7592,1.2842,0.1575,0.7646 -0x1ac59,CUS_0x6235,August,38,293-99-9694,_______,35142.57,,3,7,18,4,"Student Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",19.64361976,15.88552139,8.64,5,Standard,1084.000852,28.64151963,16 Years and 2 Months,NM,90.90178477,,High_spent_Medium_value_payments,413.5144649,0,-1.2795,0.0697,-1.2264,-1.5241,-0.6397 -0x1ac65,CUS_0xa2ac,August,36,766-58-6507,Writer,69240.72,5670.06,8,9,24.88954781,9,"Home Equity Loan, Payday Loan, Mortgage Loan, Payday Loan, Payday Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, and Payday Loan",37.72615508,26.81109826,9.86,13,Bad,3874.636063,32.8457908,,Yes,1739.932862,359.0819942,Low_spent_Small_value_payments,63.66106254,0,0.2461,-0.0566,-0.5614,0.4501,-0.0768 -0x1ac71,CUS_0x431,August,32,836-21-1965,Teacher,20804.74,,3,3,10,0,,0,1,5.06,8,_,1378.31,38.49956934,32 Years and 9 Months,NM,0,,High_spent_Medium_value_payments,383.8461858,0,-2.0543,0.2149,-0.6105,1.2031,-1.1902 -0x1ac7d,CUS_0xae58,August,25,767-67-1123,Musician,18946.07,,9,10,29.06745738,5,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,25.11765706,9.07,8,_,2989.013912,40.20703427,14 Years and 5 Months,Yes,75.92936419,131.4255909,!@9#%8,205.2086736,0,-1.5706,1.9916,1.1394,-0.0049,-0.2578 -0x1ac89,CUS_0x6719,August,26,624-00-3778,Scientist,20759.32,1528.943333,888,3,7,7,"Personal Loan, Auto Loan, Student Loan, Personal Loan, Auto Loan, Payday Loan, and Payday Loan",19.4981071,,19.49,9,Standard,2071.05,34.3926753,17 Years and 6 Months,Yes,64.04873946,72.51943215,!@9#%8,296.3261617,0,-1.6291,-0.0619,-0.0701,-2.0002,0.0972 -0x1ac95,CUS_0x65dc,August,33,192-63-5749,Musician,15725.7,1165.475,6,9,31.06745738,4,"Home Equity Loan, Personal Loan, Payday Loan, and Personal Loan",23.65601845,9.239793441,15.54,7,Standard,1817.925141,36.82083887,,Yes,38.84287531,112.066477,Low_spent_Medium_value_payments,218.9178597,0,-0.394,1.9656,-0.489,-2.6012,-0.3231 -0x1aca1,CUS_0x1916,August,32,017-14-5611,Developer,38035.76,3052.646667,5,4,3,3,"Payday Loan, Not Specified, and Debt Consolidation Loan",17.27418667,,16.41,8,_,193.26,25.09958407,,No,93.45511054,55.64167938,High_spent_Small_value_payments,416.1678768,0,0.3825,-0.937,0.3452,0.2586,0.8992 -0x1acad,CUS_0x275c,August,44,525-44-6888,Media_Manager,14535.49,,8,10,23.95700519,8,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",41.65132754,20.49766174,20.4,13,_,4292.667135,25.17030558,4 Years and 3 Months,Yes,1376.52253,,Low_spent_Small_value_payments,250.4844453,0,-0.6619,0.5078,-1.6101,-0.9318,1.496 -0x1acb9,CUS_0x1c76,August,18,756-17-9286,Entrepreneur,35075,3032.916667,6,3,9,5,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",5.104405198,7,11.63,7,Standard,1435.83,28.48511951,10 Years and 2 Months,Yes,144.3830352,139.3142476,!@9#%8,289.5943838,0,0.6843,-1.063,0.6487,-1.3481,0.6568 -0x1acc5,CUS_0x6aca,August,30,487-73-9996,Mechanic,35613.25,3016.770833,8,5,11,1,Personal Loan,,10,7.35,3,Standard,1076.77,28.02858679,28 Years and 9 Months,No,22.05645254,339.5648714,Low_spent_Small_value_payments,230.0557594,0,-0.5873,-0.5072,-0.7685,0.6614,0.9793 -0x1acd1,CUS_0x2cae,August,28,#F%$D@*&8,Journalist,115614.27,9443.5225,3,4,4.288361749,0,,1.078527774,4,11.46,2,Good,1234.338867,26.93099118,23 Years and 4 Months,No,0,609.1395939,High_spent_Large_value_payments,1019.760382,0,0.3985,0.6328,-0.7951,-1.9761,0.8601 -0x1acdd,CUS_0x9e5b,August,26,173-43-7218,Manager,92652.09,,7,7,4,1,Home Equity Loan,20.80649305,16,7.17,4,Standard,156.76,33.93559917,19 Years and 3 Months,No,41.36481718,309.6536241,High_spent_Small_value_payments,672.4823087,0,-2.1217,0.0797,-0.0133,-0.5191,-1.9518 -0x1ace9,CUS_0x6c9b,August,39,590-27-4725,Lawyer,17135.68,,8,5,18,2,"Student Loan, and Auto Loan",11.63706105,9,18.15,13,Standard,1055.36,25.97817772,12 Years and 5 Months,Yes,27.65691337,,Low_spent_Large_value_payments,266.5454927,0,0.9846,2.5598,-0.4644,-0.1862,-0.4846 -0x1acf5,CUS_0x8fbb,August,35,792-39-3438,Developer,36984.76,3073.063333,6,7,16.06745738,8,"Not Specified, Student Loan, Auto Loan, Payday Loan, Mortgage Loan, Student Loan, Auto Loan, and Debt Consolidation Loan",,25,24.78,10,Bad,3951.150954,37.0260604,7 Years and 0 Months,Yes,207.1042243,,Low_spent_Large_value_payments,149.1781716,0,0.7295,0.0258,-1.4721,-0.1913,0.7829 -0x1ad01,CUS_0x743f,August,33,400-26-8241,Lawyer,28901.07,,4,2,3139,0,,2.849470495,6,13.06,2,Good,860.9615623,30.96704382,21 Years and 9 Months,No,257.6697971,62.51741393,High_spent_Medium_value_payments,408.6434502,0,-0.8305,-0.5493,-0.9087,0.7393,-0.2062 -0x1ad0d,CUS_0x4279,August,41,590-25-4528,Architect,17151.19,1625.265833,10,9,32.88954781,7,"Debt Consolidation Loan, Not Specified, Not Specified, Auto Loan, Payday Loan, Auto Loan, and Student Loan",,21,19.02,8,_,2672.12,26.81552916,,Yes,1384.713454,89.06878112,Low_spent_Small_value_payments,284.4142665,0,0.5178,-1.0583,0.367,1.2056,-0.3827 -0x1ad19,CUS_0x4712,August,25,#F%$D@*&8,Manager,178283.68,,4,3,3.288361749,2,"Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,3.579426589,,0,Good,151.0675201,44.18826156,19 Years and 3 Months,No,328.2384485,557.3599778,High_spent_Large_value_payments,1257.936368,0,-0.5645,-0.5389,0.9002,0.1466,-1.4558 -0x1ad25,CUS_0x26f2,August,39,893-10-4881,Media_Manager,9221.745,,9,8,34,7,"Payday Loan, Auto Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Payday Loan",,20.63657939,2.26,12,_,2827.053503,38.71630327,7 Years and 9 Months,Yes,51.10622348,40.3924301,!@9#%8,264.3492214,0,0.4205,1.424,-0.8307,-0.1995,1.1949 -0x1ad31,CUS_0xbd4b,August,36,266-63-8069,Musician,140124.8,11870.06667,3,4,9,0,,,12,14.16,6,Standard,857.74,34.75753426,,Yes,0,141.5580701,High_spent_Large_value_payments,1285.448597,0,1.2633,0.8726,-0.0329,-0.1501,0.1568 -0x1ad3d,CUS_0x38cf,August,55,151-48-0792,Media_Manager,136542.08,11242.50667,3,7,14,2,"Credit-Builder Loan, and Home Equity Loan",21.69465949,15,5.74,2,_,3.31,29.63326719,26 Years and 2 Months,No,178.5746011,205.8991678,High_spent_Large_value_payments,979.7768977,0,-1.4059,0.9453,-0.676,0.1246,-0.7737 -0x1ad49,CUS_0xc39,August,35,805-52-5109,Accountant,14471.785,1086.982083,3,7,19,0,,13.08825346,10,4.78,1,Standard,802.0452635,27.52010183,17 Years and 8 Months,No,0,75.11026832,Low_spent_Small_value_payments,332.3301673,0,-1.1594,-0.2389,-0.8943,-1.2587,-0.5668 -0x1ad55,CUS_0xbdfe,August,36,210-38-6296,Architect,16698.08,,8,6,25,6,"Not Specified, Debt Consolidation Loan, Not Specified, Payday Loan, Home Equity Loan, and Payday Loan",25.07530331,18,8.41,17,Standard,1382.71,26.02661589,13 Years and 0 Months,Yes,118.6834574,,High_spent_Small_value_payments,266.7729274,0,-1.5516,0.8822,0.2988,1.5809,-1.7319 -0x1ad61,CUS_0x9972,August,22,429-32-6803,Entrepreneur,28191.89,,8,6,18,100,"Credit-Builder Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,15,8.62,4,Standard,628.61,37.88518064,19 Years and 0 Months,Yes,109.8401065,73.23899691,Low_spent_Large_value_payments,340.9533132,0,0.2728,-0.5626,1.1589,0.3436,0.9018 -0x1ad6d,CUS_0x6f93,August,32,859-12-7933,Doctor,38324.72,,2,4,7,0,,2.355268263,5,0.6,4,_,364.6478988,40.68214878,28 Years and 5 Months,No,0,62.94308337,High_spent_Medium_value_payments,511.4759457,0,0.8953,0.1441,0.8332,0.5096,0.6927 -0x1ad79,CUS_0xe2f,August,30,196-99-0419,Developer,64404.16,4861.144816,6,8,21.88954781,6,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Personal Loan, Home Equity Loan, and Not Specified",32.93659673,19,9.05,15,_,2075.58,32.07116402,20 Years and 4 Months,Yes,2030.103534,482.3331631,Low_spent_Medium_value_payments,119.1030721,0,-2.5199,0.3672,-1.2347,0.3386,-0.1652 -0x1ad85,CUS_0x1be2,August,20,241-28-1551,Architect,104509.53,8791.1275,8,7,5,3,"Home Equity Loan, Not Specified, and Credit-Builder Loan",21.73822149,15,17.31,7,Standard,700.1927028,27.09092141,27 Years and 11 Months,Yes,176.243487,350.0672966,!@9#%8,673.5261865,0,0.4092,0.9301,1.9452,-0.6847,1.0343 -0x1ad91,CUS_0x6030,August,22,780-19-3604,Mechanic,50212.71,,7,5,16,6,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Home Equity Loan",,21.59751572,13.95,7,Standard,2042.25631,30.52547692,,Yes,132.4315932,70.43677084,High_spent_Large_value_payments,471.270886,0,-0.291,0.1839,-0.3297,-0.0254,-0.3152 -0x1ad9d,CUS_0x6f78,August,55,845-98-6688,Manager,75490.22,,1,2,2,1,Debt Consolidation Loan,7.159887768,7,2.02,6,_,214.5766509,32.43824076,33 Years and 4 Months,No,42.19111811,430.0179952,Low_spent_Medium_value_payments,497.4395166,0,-0.7852,-0.168,2.5318,0.6656,-1.129 -0x1ada9,CUS_0xa987,August,43,145-29-9794,Media_Manager,78626.49,6682.2075,5,4,8.288361749,4,"Credit-Builder Loan, Auto Loan, Not Specified, and Not Specified",23.41731523,19,6.73,5,Standard,550.1,23.84703938,17 Years and 9 Months,No,140.7322198,583.9358696,High_spent_Large_value_payments,603.4901216,0,0.4425,1.4528,-1.1432,-0.4166,-0.3106 -0x1adb5,CUS_0x7ff9,August,46,766-27-1126,Musician,15219.08,1505.256667,6,10,34.06745738,5,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",27.75060801,,24.2,14,Bad,4735.260954,35.68270715,3 Years and 5 Months,Yes,54.06183187,90.60202236,Low_spent_Small_value_payments,269.1415245,0,-1.0737,-0.6432,-1.3025,0.6456,2.2171 -0x1adc1,CUS_0xb085,August,35,111-12-1263,Musician,42177.9,3780.825,8,7,25,7,"Auto Loan, Home Equity Loan, Home Equity Loan, Not Specified, Student Loan, Credit-Builder Loan, and Student Loan",32.35481412,13.78888304,8.74,9,Bad,2060.062492,29.10058403,15 Years and 3 Months,Yes,240.5703937,66.63784736,High_spent_Small_value_payments,330.8742589,0,-0.6621,1.7777,0.7716,-1.8422,1.0656 -0x1adcd,CUS_0x4b17,August,37,162-49-4391,Writer,74169.76,6174.813333,9,7,27,100,"Student Loan, and Auto Loan",40.12791015,25.20767144,7.79,15,Bad,2829.848207,39.21996801,15 Years and 2 Months,Yes,87.82539137,128.9899825,!@9#%8,650.6659594,0,0.6211,-1.1275,-0.8885,0.1824,-0.2374 -0x1add9,CUS_0x4188,August,22,750-43-5393,Manager,26454.21,2200.5175,7,4,8,65,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Student Loan",,13,16.66,11,Standard,29.49699479,38.19642603,17 Years and 5 Months,Yes,86.98732856,57.69156684,!@9#%8,322.5899327,0,0.7887,-0.0098,0.5371,-1.0586,0.6037 -0x1ade5,CUS_0x8464,August,45,909-43-8498,Architect,36403.98,,6,5,17,6,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",14.05351018,10,16.89,7,Standard,524.79,28.34228019,15 Years and 11 Months,Yes,133.1854954,97.78746524,High_spent_Small_value_payments,330.2935393,0,0.8698,0.4386,-0.9282,-0.0344,-3.0749 -0x1adf1,CUS_0x96c8,August,24,945-50-6965,Entrepreneur,66482.2,,7,5,29,6,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",34.90515048,21.22046128,16.91,11,Bad,2955.789527,28.76678539,6 Years and 11 Months,Yes,222.1670049,164.9286452,High_spent_Small_value_payments,406.9226832,0,-0.7211,-1.1709,0.5931,-1.1115,-1.159 -0x1adfd,CUS_0xbf01,August,31,102-29-2206,Doctor,62804.55,5022.7125,6,9,33,7,"Auto Loan, Personal Loan, Payday Loan, Mortgage Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",21.96726417,9,16.85,8,Standard,1299.59,31.06679593,19 Years and 8 Months,Yes,347.5692966,131.6282793,Low_spent_Medium_value_payments,303.0736741,0,1.1367,1.3241,-0.8227,-0.3069,-0.0718 -0x1ae09,CUS_0x49a4,August,20,427-06-8075,Writer,14739.96,,6,5,16,4,"Auto Loan, Payday Loan, Mortgage Loan, and Payday Loan",,20.50198243,14.38,9,Standard,1481.749118,32.50436071,13 Years and 6 Months,Yes,47.73187713,24.42449496,High_spent_Small_value_payments,303.7766279,0,-0.0139,-0.0204,-2.0719,1.1786,0.1738 -0x1ae15,CUS_0x17e5,August,27,175-33-5803,Scientist,28027.52,2046.626667,6,6,19,5,"Mortgage Loan, Not Specified, Not Specified, Home Equity Loan, and Payday Loan",,20.71847568,9.18,9,Bad,1590.911216,29.15784511,14 Years and 9 Months,Yes,58.8824746,101.7190075,Low_spent_Small_value_payments,334.0611846,0,0.152,-0.7798,0.5504,-0.1806,-0.9246 -0x1ae21,CUS_0x3422,August,56,425-99-3813,Journalist,17510.865,1277.23875,7,4,10,4,"Personal Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",,16,1,3,_,1053.65,24.18387184,28 Years and 11 Months,No,38.06957541,142.8853403,Low_spent_Small_value_payments,236.7689593,0,0.5142,-0.2381,0.8809,-0.7248,1.8951 -0x1ae2d,CUS_0x1f9b,August,23,#F%$D@*&8,Entrepreneur,84384.96,6862.08,6,6,9.288361749,4,"Mortgage Loan, Credit-Builder Loan, Personal Loan, and Student Loan",14.97751925,14,14.54,2,Standard,1004.8,38.90563012,20 Years and 10 Months,Yes,247.3432804,661.510443,High_spent_Medium_value_payments,447.2917376,0,-0.2922,0.6457,-2.4445,0.0117,-0.3036 -0x1ae39,CUS_0x5aa9,August,24,322-16-2958,Journalist,64269.24,5112.77,6,7,6,6,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",22.32938678,16,19.51,8,Standard,187.22,30.52374092,14 Years and 4 Months,Yes,268.3139962,455.4462526,!@9#%8,77.51675117,0,1.1303,1.9715,-0.1589,0.8578,0.0728 -0x1ae45,CUS_0x3c23,August,44,257-46-1070,Developer,14705.9,,7,5,19,6,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",18.46606896,17,17.91,4,Standard,1190.8,24.62717323,15 Years and 11 Months,Yes,57.89304716,113.6492157,Low_spent_Small_value_payments,266.4069038,0,0.1375,0.4862,-0.1622,0.349,-0.0894 -0x1ae51,CUS_0x366b,August,40,012-91-5006,Doctor,71558.72,6058.226667,10,10,16.88954781,8,"Payday Loan, Credit-Builder Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",33.41123641,19,28.35,8,Bad,4519.22,41.08805364,,Yes,1618.126784,266.4895516,High_spent_Small_value_payments,286.8762495,0,-0.639,0.7503,-1.1009,-0.0838,-1.2079 -0x1ae5d,CUS_0xb0a3,August,46,065-92-0111,Teacher,29627.53,2179.960833,3,6,12,0,,,20,,2,Standard,337.2020717,26.86760676,16 Years and 4 Months,Yes,0,41.3258492,High_spent_Medium_value_payments,432.3545342,0,0.7829,-0.1923,-0.2725,1.681,-0.1225 -0x1ae69,CUS_0x3dc3,August,29,153-94-2470,Architect,45144.8,3980.066667,4,3,13,1,Personal Loan,25.96228203,19,6.06,6,Standard,1112.58,30.11756596,22 Years and 6 Months,No,36.15142324,,Low_spent_Small_value_payments,251.8841785,0,0.6267,1.3378,-0.2643,0.2747,-0.1233 -0x1ae75,CUS_0x3df0,August,38,095-52-8522,Accountant,31021.08,,2,4,9.288361749,0,Not Specified,2.975517123,5,2.33,7,Good,366.86,33.8889863,24 Years and 8 Months,No,16.96884099,10419.93746,!@9#%8,424.16634,0,0.3206,-1.6188,-0.5547,-0.2793,0.2976 -0x1ae81,CUS_0xa4ad,August,27,028-73-8575,Manager,125079.04,,6,7,17,1,Student Loan,28.86744917,22.60487086,10.14,6,Standard,1163.406276,34.34742718,18 Years and 9 Months,No,88.81097798,142.7462138,High_spent_Large_value_payments,1028.168142,0,-0.4745,-0.2605,-1.0947,0.0228,-0.5121 -0x1ae8d,CUS_0x7350,August,18,322-13-5307,Scientist,14173.65,1283.1375,5,5,31.06745738,4,"Personal Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",24.94209092,16,16.98,10,_,2520.930954,38.01063023,,Yes,43.97081473,45.46253619,!@9#%8,302.1601111,0,1.0183,0.2925,0.905,1.1946,1.1448 -0x1ae99,CUS_0x41a1,August,43,030-95-2286,Teacher,14225.96,1422.496667,1067,9,15,8,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Personal Loan",26.20776257,16,29,16,_,3934.02,25.4838852,1 Years and 5 Months,Yes,82.74819119,93.66667363,Low_spent_Medium_value_payments,245.8348018,0,1.3752,-0.7027,2.5825,-0.9562,0.3025 -0x1aea5,CUS_0x858b,August,24,270-22-4400,Media_Manager,58233.58,4702.798333,7,3,9,3,"Debt Consolidation Loan, Student Loan, and Auto Loan",14.46367633,10,10.55,4,Standard,544.6,38.00846658,31 Years and 5 Months,Yes,97.87318374,10000,High_spent_Small_value_payments,499.6213399,0,-0.7653,-0.5109,0.0783,0.9189,0.5358 -0x1aeb1,CUS_0x2a9a,August,31,286-58-6752,Architect,100791.57,8436.2975,2,5,11,1,Personal Loan,0.895419327,4,11.33,0,Good,1336.44,37.47330537,33 Years and 4 Months,No,53.08360101,578.2748267,Low_spent_Large_value_payments,482.2713223,0,-1.6867,0.3573,0.0575,-0.9968,0.2096 -0x1aebd,CUS_0x4e47,August,23,242-52-1703,Musician,40305.02,3545.751667,5,6,16,6,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Student Loan",19.3348252,14,2.44,12,Standard,1955.11,36.47309178,11 Years and 2 Months,NM,196.3016563,,Low_spent_Small_value_payments,240.9055355,0,0.3193,-0.67,-1.139,-0.1106,0.7408 -0x1aec9,CUS_0x47ed,August,23,157-48-1855,Writer,127524.81,10918.0675,0,3,8.288361749,0,,2.820368354,5,7.12,2,Good,59.58,36.69981769,24 Years and 4 Months,No,0,1224.804565,Low_spent_Medium_value_payments,566.9396464,0,1.0269,-0.0498,0.1998,0.5681,0.7084 -0x1aed5,CUS_0x8cd,August,20,212-18-7234,Musician,7367.11,616.9258333,10,6,29,7,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Student Loan, Auto Loan, and Mortgage Loan",,22,29.92,12,_,3898.81,24.18440432,,Yes,28.27088597,30.66959175,Low_spent_Small_value_payments,292.7521056,0,-0.4433,-0.1042,-0.337,0.6766,-0.3828 -0x1aee1,CUS_0x77fa,August,34,426-00-7283,Architect,16009.6,1532.133333,10,9,16,5,"Personal Loan, Not Specified, Home Equity Loan, Payday Loan, and Auto Loan",32.4503121,23.92274279,7.12,10,Bad,5288.814119,24.7600443,7 Years and 8 Months,Yes,46.41599323,70.67905887,High_spent_Small_value_payments,296.1182812,0,1.3675,0.1804,-1.6207,-1.8856,2.1924 -0x1aeed,CUS_0x1534,August,26,764-41-7508,Scientist,24482.38,2242.198333,6,4,9,1,Student Loan,,23.79310043,8.31,8,_,814.1579944,24.20256891,25 Years and 8 Months,Yes,15.62574774,119.7995485,High_spent_Small_value_payments,348.7945371,0,0.074,-0.5692,0.3864,0.2019,-2.746 -0x1aef9,CUS_0x3f6a,August,33,722-97-6435,Accountant,18426.65,1516.127065,3,7,18,100,"Mortgage Loan, Student Loan, and Debt Consolidation Loan",,,14.94,7,Standard,2552.978074,30.78260661,15 Years and 6 Months,Yes,214.5133397,52.07755315,Low_spent_Large_value_payments,349.0916259,0,0.9573,0.6575,0.1822,-1.1143,1.5312 -0x1af05,CUS_0x5284,August,41,627-77-6984,Developer,21652.195,1510.349583,3,2,9.288361749,4,"Home Equity Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",12.81829125,,2.35,4,Good,168.4025637,30.02119459,29 Years and 10 Months,No,40.43567652,542.1468724,!@9#%8,280.2073615,0,0.8821,-0.0973,-0.3626,1.0464,1.8868 -0x1af11,CUS_0x59b5,August,37,906-67-2716,Doctor,42877.62,3446.135,9,9,29.06745738,2,"Not Specified, and Debt Consolidation Loan",39.85711149,20.71708392,6.87,15,Bad,2773.011801,32.88256717,19 Years and 6 Months,Yes,61.87496509,130.2581882,High_spent_Medium_value_payments,375.7600588,0,0.4459,0.2929,-0.9988,0.5543,-0.5416 -0x1af1d,CUS_0xb6bb,August,44,415-94-8307,Mechanic,10077.135,,7,7,28.06745738,3,"Personal Loan, Mortgage Loan, and Payday Loan",38.47561837,23.94544316,13.61,11,Standard,3100.872184,39.63518423,9 Years and 9 Months,NM,17.58540922,25.19218556,High_spent_Small_value_payments,253.1782423,0,0.4043,0.3082,-1.7753,0.796,-0.546 -0x1af29,CUS_0xe57,August,39,863-54-4919,Journalist,17698.23,,6,9,19.95700519,7,"Payday Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,26.3691971,3.78,14,Bad,5339.335295,36.83440262,5 Years and 6 Months,Yes,1397.149838,,Low_spent_Medium_value_payments,251.3763828,0,-0.6924,0.5245,-0.0338,-1.0333,-0.8098 -0x1af35,CUS_0x96c7,August,45,102-66-8421,Engineer,32507.89,2784.990833,7,6,10,4,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Not Specified",18.08710072,11.30097403,8.22,1,Standard,1439.966939,27.17740474,22 Years and 0 Months,Yes,97.43370539,82.55614709,!@9#%8,348.5092309,0,0.3479,2.4266,-0.7454,-0.3398,-0.0099 -0x1af41,CUS_0x58cd,August,35,951-55-4902,Teacher,108205,9019.083333,3,7,7,6,"Mortgage Loan, Personal Loan, Payday Loan, Home Equity Loan, Not Specified, and Student Loan",11.38119431,6,13.44,485,Standard,872.45,39.91039636,15 Years and 8 Months,Yes,298.9391027,117.0699296,!@9#%8,725.899301,0,0.6186,-0.3343,0.3664,-0.3119,2.1371 -0x1af4d,CUS_0x496e,August,21,847-75-6199,Mechanic,15051.065,,5,7,20,2,"Credit-Builder Loan, and Auto Loan",14.61899475,10,10.85,9,Standard,1455.55,33.02424863,31 Years and 4 Months,Yes,24.26990425,,!@9#%8,300.0932247,0,-0.3975,0.6196,-1.0991,-0.3825,-0.8407 -0x1af59,CUS_0x4e97,August,49,215-67-2608,Media_Manager,82929.96,,1,7,5.288361749,0,Personal Loan,8.691088269,10.81593098,7.35,2,Good,827.7600039,33.05848333,,No,68.51686858,600.2824873,Low_spent_Medium_value_payments,718.4211052,0,0.2637,-0.0414,-0.3628,1.4018,0.1263 -0x1af65,CUS_0x4638,August,25,938-85-6447,Musician,48706.59,4170.8825,10,7,35.06745738,4,"Home Equity Loan, Not Specified, Mortgage Loan, and Auto Loan",24.83596707,17,18.63,13,Standard,2853.490954,28.53984162,16 Years and 9 Months,Yes,120.8252949,60.16161345,High_spent_Large_value_payments,449.3810537,0,-0.3266,-0.3734,0.288,0.7546,-1.0088 -0x1af71,CUS_0x3d3f,August,58,034-14-6103,Architect,147519.72,12393.31,4,6,8,3,"Mortgage Loan, Personal Loan, and Not Specified",15.37358318,9,9.5,8,Standard,562.405679,35.58950202,32 Years and 11 Months,No,228.4565931,1083.135783,!@9#%8,350.1815522,0,-0.4671,-0.2181,1.1478,0.8072,-0.5624 -0x1af7d,CUS_0x1fb0,August,46,746-29-2596,Engineer,122710.12,10368.84333,0,6,3,100,"Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",,13,-4.26,3,Good,1025.92,35.67351946,27 Years and 6 Months,No,154.9755045,125.0866355,High_spent_Medium_value_payments,1006.822193,0,0.7056,1.0303,-0.3973,0.4295,1.9247 -0x1af89,CUS_0x1425,August,34,502-31-6140,Teacher,34758.2,,1,2,1169,3,"Not Specified, Student Loan, and Debt Consolidation Loan",3.25338254,7,8.81,1,_,1005.29,30.6895286,21 Years and 0 Months,No,79.56813193,167.219621,Low_spent_Small_value_payments,341.1639137,0,0.1611,-0.4855,0.1754,-0.4353,0.2268 -0x1af95,CUS_0x1ce1,August,27,245-22-1682,Engineer,83521.24,7162.103333,4,4,13.28836175,2,"Payday Loan, and Auto Loan",11.77269419,11.94341149,15.16,13,Standard,632.2196597,31.59047571,21 Years and 6 Months,Yes,121.2725275,672.6777234,Low_spent_Large_value_payments,612.1975434,0,-0.237,1.4246,0.152,0.4036,-0.3819 -0x1afa1,CUS_0x2ff7,August,38,796-41-0821,Accountant,26405.15,,5,7,8,4,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",,21,10.08,4,Standard,873.11,27.94291546,,Yes,59.72156372,109.7270826,Low_spent_Small_value_payments,311.6942704,0,1.4969,0.1812,-0.484,1.3903,0.3994 -0x1afad,CUS_0x2b29,August,34,866-60-6396,Writer,17346.16,,8,9,25,5,"Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, and Personal Loan",26.95074865,11.69502275,10.45,7,Standard,2763.896608,35.25776982,,NM,58.23146578,,Low_spent_Small_value_payments,199.8448889,0,-0.1154,0.2625,1.5338,0.9974,0.3958 -0x1afb9,CUS_0x8964,August,34,439-93-4818,Developer,16113.89,,8,8,17.88954781,9,"Payday Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Auto Loan",24.71051528,17.4548413,22.15,14,Bad,4830.665999,35.24933221,1 Years and 10 Months,Yes,1426.615301,,Low_spent_Small_value_payments,140.4678014,0,-1.3466,-0.8547,0.9077,0.1622,0.3759 -0x1afc5,CUS_0x5be5,August,58,906-42-3281,Mechanic,150339.96,12614.33,1,2,3029.288362,2,"Home Equity Loan, Student Loan, and Debt Consolidation Loan",,2239,5.61,3,Good,590.8087745,39.8936982,22 Years and 11 Months,No,219.481295,1623.933263,!@9#%8,301.6108666,0,1.8183,1.5975,-0.5004,-0.3623,1.0374 -0x1afd1,CUS_0x76bc,August,38,145-46-9635,Writer,42355.28,3512.606667,2,4,12,2,"Home Equity Loan, and Personal Loan",0,0,4.8,2,Good,778.49,23.5148577,32 Years and 2 Months,No,52.21671112,242.4141134,High_spent_Small_value_payments,316.6298422,0,1.7718,1.0324,0.6357,-0.3789,0.882 -0x1afdd,CUS_0x8908,August,18,479-88-3019,Lawyer,8375.46,531.955,7,5,10,4,"Home Equity Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",9.104871477,8,17.66,5,_,1885.89,40.75505664,5 Years and 9 Months,Yes,16.29125232,16.27135764,High_spent_Medium_value_payments,270.63289,0,-1.0849,-1.0787,0.0706,1.429,-0.9022 -0x1afe9,CUS_0x2b59,August,26,708-52-5954,Accountant,28146.26,,6,8,21,5,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",35.70080252,24,13.91,13,_,4841.16,35.3473906,6 Years and 0 Months,Yes,71.08314697,236.8711267,Low_spent_Medium_value_payments,231.997893,0,1.4959,0.287,-1.5925,-0.1285,-2.0164 -0x1aff5,CUS_0xc07c,August,19,#F%$D@*&8,Mechanic,76887.92,6445.326667,8,7,25,2,"Payday Loan, and Payday Loan",,19,3.64,8,Bad,2485.99,40.7079631,9 Years and 5 Months,Yes,78.62692677,110.9182074,High_spent_Large_value_payments,694.9875325,0,0.2924,-1.0978,0.3906,1.1943,-0.3213 -0x1b001,CUS_0x8fd9,August,27,547-86-0816,Doctor,7531.855,573.6545833,6,5,19.06745738,9,"Student Loan, Personal Loan, Not Specified, Home Equity Loan, Mortgage Loan, Personal Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",,26.56812462,24.1,6,Bad,5242.387422,32.53987328,2 Years and 11 Months,Yes,55.03451568,11.1226776,High_spent_Medium_value_payments,214.4879771,0,1.6216,0.5131,-0.9684,0.1872,-0.4548 -0x1b00d,CUS_0x767f,August,31,306-61-2861,Architect,29986.48,,10,7,19.06745738,7,"Home Equity Loan, Payday Loan, Not Specified, Auto Loan, Auto Loan, Payday Loan, and Not Specified",35.43220866,18.14751293,15.86,16,Bad,4485.347542,31.88571149,1 Years and 5 Months,Yes,120.7657569,105.1397025,High_spent_Medium_value_payments,262.961586,0,0.3176,1.0194,-0.5328,0.6985,-0.804 -0x1b019,CUS_0x796a,August,51,722-62-6463,Musician,15318.095,,4,4,5,0,,19.24541863,15,4.22,1,Good,1182.5,24.62043405,27 Years and 8 Months,No,0,126.2653436,Low_spent_Small_value_payments,283.785448,0,1.6095,0.7032,0.0507,-0.8359,-0.871 -0x1b025,CUS_0x2b7e,August,28,683-88-7105,Accountant,28849.66,2142.138333,4,5,26,2,"Student Loan, and Student Loan",25.64513998,20,24.63,9,Standard,2496.14,38.7486229,12 Years and 11 Months,NM,39.1735678,14.81857427,High_spent_Large_value_payments,400.2216913,0,-0.4546,-0.0631,0.9792,0.1168,-0.4566 -0x1b031,CUS_0x1d1b,August,22,566-75-8198,Manager,152574.76,12547.56333,2,5,3,3,"Payday Loan, Not Specified, and Personal Loan",,1.180280278,5.62,4,Good,822.8945883,36.50972823,20 Years and 8 Months,No,205.4848429,807.0135652,Low_spent_Large_value_payments,512.2579253,0,1.0846,0.3884,1.9734,-0.105,0.6841 -0x1b03d,CUS_0x7198,August,25,745-79-3142,Writer,30912.38,,3,1,7,1,Payday Loan,0,2,10.49,0,_,912.63,32.27822073,21 Years and 10 Months,No,14.28583455,,High_spent_Medium_value_payments,398.8838865,0,-1.6394,-0.4383,0.5837,-0.3214,-0.1074 -0x1b049,CUS_0x404d,August,28,417-58-6844,Scientist,58132.12,4944.343333,10,10,31.95700519,8,"Personal Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Not Specified, Home Equity Loan, Personal Loan, and Payday Loan",45.74940295,23,23.23,15,_,4676.920954,33.23506939,14 Years and 2 Months,Yes,1578.241115,,Low_spent_Large_value_payments,101.048116,0,-0.0216,1.8992,1.5892,0.997,-0.4251 -0x1b055,CUS_0xab78,August,34,624-52-1764,Manager,69061,,8,6,17,7,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Student Loan, Mortgage Loan, and Auto Loan",19.00126117,,6.19,7,_,233.54,32.90156161,19 Years and 10 Months,NM,275.7414564,68.9706883,High_spent_Large_value_payments,447.0961886,0,0.8489,0.6019,-0.687,-0.6079,-0.2101 -0x1b061,CUS_0x372e,August,33,914-17-7131,Developer,32908.26,,7,10,33,4,"Mortgage Loan, Payday Loan, Mortgage Loan, and Personal Loan",30.91039282,18,19.13,9,Bad,1775.04,38.77383943,14 Years and 0 Months,Yes,70.60525924,72.9670365,High_spent_Small_value_payments,366.8632043,0,-0.9185,0.3766,-1.2288,1.6748,0.455 -0x1b06d,CUS_0xaa83,August,35,331-60-0907,Lawyer,61634.54,,3,2,9,2,"Mortgage Loan, and Student Loan",0,3,4.53,5,Good,793.77,23.75029315,,NM,68.85671806,506.3120498,Low_spent_Small_value_payments,210.5523988,0,-1.2674,0.3219,0.5304,0.3127,1.024 -0x1b079,CUS_0x4318,August,37,381-45-4862,Accountant,33445.01,2663.084167,6,4,9,0,,,12,4.82,1,_,1064.752534,26.11317494,32 Years and 8 Months,No,0,122.3816562,Low_spent_Large_value_payments,429.7537111,0,0.0974,1.7185,-0.1361,-1.5409,0.2315 -0x1b085,CUS_0x29ac,August,27,708-00-9497,Musician,93131.94,,2,6,7.288361749,4,"Not Specified, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",5.870666214,8,3.51,6,Good,1097.18,29.34433822,29 Years and 5 Months,No,269.5041892,,High_spent_Large_value_payments,692.2963142,0,-0.1593,0.0846,-0.0202,-1.7405,-1.571 -0x1b091,CUS_0x1169,August,34,352-87-0792,Lawyer,115324.62,9772.385,2,5,7.288361749,4,"Credit-Builder Loan, Payday Loan, Student Loan, and Student Loan",3.784329233,6,5.5,3,Good,1316.45,39.58542213,23 Years and 11 Months,No,199.2512598,800.1860682,High_spent_Small_value_payments,657.738633,0,-0.9014,-0.6428,-0.4139,-0.2108,0.6857 -0x1b09d,CUS_0x9b63,August,39,756-41-1144,_______,41802.42,3731.535,10,8,21.88954781,8,"Debt Consolidation Loan, Payday Loan, Not Specified, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",41.25812914,23.9590407,9.05,13,_,5066.228311,34.72914765,4 Years and 8 Months,NM,1584.473884,10000,High_spent_Large_value_payments,267.0138817,0,-1.1064,0.1928,-1.0058,0.8159,-1.9981 -0x1b0a9,CUS_0x2748,August,36,497-31-1000,Accountant,35771.08,,4,4,10,4,"Personal Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",12.03876252,12,1.23,5,Standard,1081.2,22.55980397,,NM,60.84621615,261.3159557,Low_spent_Small_value_payments,270.3301615,0,0.7832,0.0554,1.3772,-0.2828,-0.0708 -0x1b0b5,CUS_0x612b,August,24,118-73-3764,Writer,118041.39,9709.7825,3,1,3,1,Payday Loan,12.9039151,10,14.02,3,_,836.67,40.49554565,31 Years and 10 Months,No,87.71540671,410.9649584,High_spent_Medium_value_payments,722.2978849,0,1.2839,-0.6483,1.6097,0.9642,-0.8649 -0x1b0c1,CUS_0x7df9,August,38,546-95-1373,Musician,65630.66,,4,3,7,3,"Auto Loan, Payday Loan, and Auto Loan",,8,4.84,4,_,1450.15,29.6368151,33 Years and 5 Months,Yes,84.12598079,45.56917631,High_spent_Large_value_payments,644.4270096,0,-0.0861,-0.0475,0.7478,-0.6704,0.1431 -0x1b0cd,CUS_0x21fa,August,37,050-87-4671,Media_Manager,29357.85,2665.4875,5,4,17,3,"Not Specified, Debt Consolidation Loan, and Not Specified",15.46440704,11,12.09,4,_,848.04,29.46832719,7 Years and 6 Months,Yes,45.65052113,76.34640456,High_spent_Medium_value_payments,394.5518243,0,0.1269,1.086,-1.3581,-1.6988,0.7637 -0x1b0d9,CUS_0x7f50,August,47,917-63-6589,Engineer,21177.51,,6,4,8,4,"Not Specified, Auto Loan, Not Specified, and Mortgage Loan",,9,4.62,3,Standard,915.11,38.89895698,22 Years and 6 Months,No,61.32687002,57.19864333,Low_spent_Small_value_payments,324.2537367,0,-1.7641,1.5495,1.0171,-2.5207,-0.4475 -0x1b0e5,CUS_0x850b,August,43,162-89-5076,_______,40881.38,3323.781667,8,10,33.88954781,100,"Auto Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",21.17168735,16,13.24,10,Standard,1693.51,39.80912686,5 Years and 10 Months,Yes,1418.316523,105.1089156,High_spent_Medium_value_payments,364.6226465,0,-0.0457,0.6646,1.4019,1.5,-1.7612 -0x1b0f1,CUS_0x795c,August,26,891-13-2675,Lawyer,18670.22,,10,10,25.88954781,7,"Home Equity Loan, Mortgage Loan, Auto Loan, Not Specified, Not Specified, Auto Loan, and Debt Consolidation Loan",,17,23.68,12,Bad,4748.43,23.97380631,0 Years and 9 Months,Yes,1425.104057,,High_spent_Medium_value_payments,220.7811087,0,0.2529,0.1187,-1.6606,-0.8915,0.0624 -0x1b0fd,CUS_0xb86e,August,26,875-74-4976,Developer,9283.17,,10,8,29.95700519,8,"Student Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Auto Loan, Student Loan, Not Specified, and Credit-Builder Loan",40.36276728,24.29123029,3.95,12,Bad,1972.591773,36.22521155,18 Years and 6 Months,Yes,1383.281309,106.5174824,Low_spent_Small_value_payments,159.9105895,0,0.0994,-0.4922,2.3251,0.3499,0.335 -0x1b109,CUS_0x99be,August,23,139-01-8203,Lawyer,115247.16,9744.93,2,5,10,0,,1.651560848,3,0.92,3,Good,687.87,41.46692024,18 Years and 6 Months,No,0,452.0402232,High_spent_Small_value_payments,782.4527768,0,-1.1631,0.9396,1.4179,-0.0953,-1.1152 -0x1b115,CUS_0x1915,August,45,970-73-1799,Writer,36080.59,,5,3,20,4,"Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Personal Loan",20.67487046,18,8.95,4,Standard,1445.97,30.71201561,21 Years and 2 Months,Yes,103.0401093,116.4838579,High_spent_Small_value_payments,326.3476162,0,0.2556,-0.3359,0.4137,0.6225,-0.2342 -0x1b121,CUS_0x183e,August,41,269-19-5115,Scientist,19191.52,1872.293333,8,5,20.06745738,8,"Credit-Builder Loan, Personal Loan, Not Specified, Student Loan, Auto Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,,17.9,13,_,2794.970954,26.1230194,1 Years and 5 Months,Yes,105.2776836,,Low_spent_Large_value_payments,171.7699349,0,0.8513,1.0319,-0.3017,1.0691,-0.778 -0x1b12d,CUS_0x275a,August,47,762-80-4374,Engineer,79016.06,6561.671667,1,5,5,2,"Mortgage Loan, and Student Loan",4.857141003,3.481515182,3.15,6,_,637.104452,31.25824297,21 Years and 10 Months,No,85.11063208,471.4222715,Low_spent_Small_value_payments,389.6342631,0,0.3573,0.1933,1.6031,0.3739,-0.7041 -0x1b139,CUS_0x9772,August,30,073-04-0918,Doctor,51582.54,4016.545,3,6,16,1,Home Equity Loan,32.49323596,21.41877827,18.84,3,Standard,1481.831372,26.76544354,25 Years and 2 Months,Yes,35.85751961,231.7404884,Low_spent_Small_value_payments,424.056492,0,0.0896,-0.2622,1.2028,0.4054,-1.3183 -0x1b145,CUS_0x461,August,18,169-09-6595,Scientist,32543.41,,7,7,15,0,,10.69515074,8,7.56,1,Standard,1415.01,27.6444948,27 Years and 0 Months,No,0,361.987158,Low_spent_Small_value_payments,224.3079253,0,0.1117,3.0331,-1.1709,0.2638,0.2918 -0x1b151,CUS_0xbaa1,August,45,279-87-6544,Doctor,84687.54,,0,3,0.288361749,0,Auto Loan,9.077340686,10,8.75,4,Good,69.41,30.29905227,,No,64.18217565,570.2446738,High_spent_Medium_value_payments,719.4401116,0,-0.1427,-2.2245,-0.7192,-0.1145,0.863 -0x1b15d,CUS_0x55f6,August,37,566-71-2113,Writer,31748.67,,5,4,12,1,Credit-Builder Loan,0,0,7.57,4,Good,180.68,31.85154034,21 Years and 5 Months,No,8874,20.0460439,High_spent_Large_value_payments,444.4945017,0,1.0265,-0.613,-1.3279,0.8123,0.5572 -0x1b169,CUS_0x81d7,August,27,413-90-4760,Accountant,18323.175,,1,201,4,0,,11.93977993,12,2.08,6,_,879.33,38.31302052,19 Years and 6 Months,No,0,42.16525606,Low_spent_Medium_value_payments,388.3278689,0,-0.8507,-0.255,0.2792,1.3872,-1.0936 -0x1b175,CUS_0x7200,August,34,180-24-0139,Accountant,20607.78,1453.315,3,6,16.06745738,7,"Payday Loan, Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,21.86925293,7.18,14,Standard,1833.657174,35.92655376,,NM,98.82095878,,Low_spent_Large_value_payments,230.9736432,0,-0.5157,-0.6094,-1.2689,-0.1795,-0.146 -0x1b181,CUS_0x2ed0,August,26,#F%$D@*&8,Lawyer,70446.63,5900.5525,4,3,11,0,,26.50075749,21,17.61,6,_,1322.25,35.17096773,17 Years and 3 Months,No,0,178.8514786,High_spent_Medium_value_payments,661.2037714,0,-0.9736,-0.5872,0.3786,-0.6356,0.7094 -0x1b18d,CUS_0xa306,August,31,554-14-8437,Journalist,174226.68,14396.89,3,5,7,2,"Personal Loan, and Personal Loan",2.542386734,6,6.01,1,Good,1297.57,31.30711081,,No,201.3567452,293.7018731,High_spent_Small_value_payments,1204.630382,0,0.548,1.1107,0.1501,-2.3879,0.7301 -0x1b199,CUS_0xe64,August,39,801-49-9318,Mechanic,106605.6,,7,7,12,1,Personal Loan,,21,9.01,3,_,492.9167628,33.17869536,30 Years and 3 Months,Yes,54.98477302,379.9147079,High_spent_Medium_value_payments,735.5281988,0,0.3236,-0.4506,0.8203,1.2203,-0.7517 -0x1b1a5,CUS_0x9423,August,43,094-27-2927,Scientist,36573.8,2577.987998,10,9,32.95700519,8,"Mortgage Loan, Credit-Builder Loan, Payday Loan, Payday Loan, Student Loan, Auto Loan, Home Equity Loan, and Auto Loan",,20,24.37,9,Bad,4701.378347,25.58987287,13 Years and 8 Months,Yes,19520.48344,222.4330868,Low_spent_Small_value_payments,161.1840132,0,-0.3138,0.6984,-0.7329,1.5312,-0.3617 -0x1b1b1,CUS_0xb385,August,18,043-78-7271,Mechanic,57575.04,4948.92,9,10,21.06745738,8,"Credit-Builder Loan, Payday Loan, Auto Loan, Mortgage Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",,23.17106889,18.65,10,Bad,3240.945435,32.73762235,10 Years and 4 Months,NM,264.9682766,97.04500699,High_spent_Medium_value_payments,356.1584284,0,-0.5798,-0.883,0.7086,1.4675,-0.7072 -0x1b1bd,CUS_0x763a,August,36,334-76-8557,Scientist,106615.44,9016.62,4,4,14,1,Not Specified,21.35195955,17,3.87,3,Standard,516.45,33.10509819,19 Years and 8 Months,No,56.26853495,102.3123969,!@9#%8,983.0810681,0,0.385,0.6386,0.0357,0.4669,0.6646 -0x1b1c9,CUS_0x6d3c,August,20,331-88-3157,_______,29167.68,,8,9,22.06745738,3,"Auto Loan, Credit-Builder Loan, and Payday Loan",38.49539169,24,17.6,8,_,2315.390954,35.54776054,12 Years and 4 Months,NM,225.8277173,124.737069,High_spent_Small_value_payments,272.7871759,0,0.1303,-1.2234,0.6821,-0.9256,1.2051 -0x1b1d5,CUS_0xb6d,August,18,499-52-8888,Writer,30171.86,,6,7,31.06745738,9,"Personal Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",,23,22.49,10,_,3629.920954,30.75659432,10 Years and 5 Months,Yes,205.4039259,180.4445635,High_spent_Small_value_payments,124.6633894,0,-0.1952,0.0886,-1.1605,1.2728,-1.519 -0x1b1e1,CUS_0x7545,August,43,423-96-9115,Accountant,30366.04,,5,3,10,1,Not Specified,0,0,5.74,1,_,607.5299944,32.43147646,,No,16.29635558,279.2749321,Low_spent_Small_value_payments,275.6039315,0,-0.365,-2.8104,-0.6693,-0.2862,-0.2131 -0x1b1ed,CUS_0x48e9,August,34,190-00-1658,Teacher,35822.34,,0,2,2.288361749,2,"Auto Loan, Not Specified, and Auto Loan",0,1,10.26,0,Good,419.31,30.37148685,21 Years and 11 Months,No,76.38448958,571.4400958,Low_spent_Large_value_payments,341.6323757,0,0.1081,0.4348,-0.9997,-0.13,-0.2334 -0x1b1f9,CUS_0x90a2,August,44,983-41-6007,Musician,16578.29,,8,10,21,8,"Personal Loan, Auto Loan, Payday Loan, Not Specified, Payday Loan, Student Loan, Not Specified, and Student Loan",,28,28.55,8,Bad,3566.19,22.27251318,12 Years and 4 Months,Yes,77.75940629,,Low_spent_Small_value_payments,295.0340556,0,-0.5376,0.837,-0.129,-0.6353,-0.0848 -0x1b205,CUS_0x832f,August,54,881-72-4685,Writer,17329.075,,0,4,5,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",6.107754566,8,9.2,,Good,111.6736019,33.0307431,26 Years and 5 Months,No,24.09639413,102.5814955,!@9#%8,273.270531,0,-0.3367,2.3403,0.7767,-0.9052,1.9653 -0x1b211,CUS_0x3f85,August,49,541-08-0830,_______,90875.56,7538.963333,5,3,15,1,Auto Loan,27.45825866,19,7.83,8,_,1009.2,22.75507348,18 Years and 3 Months,No,53.38830576,1000.930805,Low_spent_Small_value_payments,,0,-0.3781,1.4195,1.308,0.673,-1.5493 -0x1b21d,CUS_0x480f,August,54,557-78-3651,Doctor,22431.61,,5,6,5,0,,0,1,4.86,3,Good,1251.915095,26.16652579,17 Years and 6 Months,No,0,175.2186329,Low_spent_Large_value_payments,288.7190092,0,-1.1986,-0.5736,0.2976,1.1846,-1.2109 -0x1b229,CUS_0x8711,August,30,855-80-6839,Writer,18333.79,1576.815833,10,10,28.95700519,6,"Not Specified, Personal Loan, Auto Loan, Not Specified, Personal Loan, and Mortgage Loan",30.04819586,18,6.14,10,Bad,3372.990954,29.07926062,7 Years and 5 Months,Yes,1393.958485,108.797104,Low_spent_Small_value_payments,223.8756247,0,1.1588,-1.0901,0.711,-0.0707,0.3592 -0x1b235,CUS_0x34c9,August,35,678-98-2699,Entrepreneur,7200.005,,6,9,18.95700519,8,"Payday Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",47.46608816,24.79676624,-2.46,9,Bad,3401.848892,37.51587703,3 Years and 8 Months,Yes,1366.269623,31.36119976,Low_spent_Small_value_payments,219.51885,0,0.9674,-1.1642,0.2459,0.0933,-0.0956 -0x1b241,CUS_0x1e3f,August,26,683-10-1309,Architect,107854.84,,5,5,16,5,"Student Loan, Mortgage Loan, Student Loan, Personal Loan, and Home Equity Loan",17.65489895,15,7.35,6,Standard,876.3821514,30.56779741,16 Years and 2 Months,Yes,338.8412818,439.9659412,High_spent_Medium_value_payments,446.8339314,0,0.2927,-0.4004,1.3355,0.2282,0.4813 -0x1b24d,CUS_0xaa85,August,55,923-89-5318,Accountant,100097.19,8455.4325,5,4,0.288361749,4,"Not Specified, Student Loan, Payday Loan, and Home Equity Loan",,7,8.62,1,Good,717.0026022,28.17092839,22 Years and 4 Months,No,177.2771118,,Low_spent_Small_value_payments,,0,-1.122,-0.4979,-0.6368,-0.6124,0.6656 -0x1b259,CUS_0x63c1,August,46,790-66-8595,Scientist,93233.73,,6,7,17,7,"Mortgage Loan, Personal Loan, Student Loan, Home Equity Loan, Personal Loan, Student Loan, and Auto Loan",16.42676411,14,16.51,7,Standard,783.92,33.21905381,13 Years and 5 Months,Yes,302.9528091,91.67445477,High_spent_Large_value_payments,621.6204861,0,-0.6027,0.6834,1.8948,-0.9932,-0.4405 -0x1b265,CUS_0x4185,August,30,784-40-4293,Journalist,10439.97,,9,5,15,9,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Auto Loan, Payday Loan, Personal Loan, Mortgage Loan, and Payday Loan",19.1290578,,18.21,8,_,4473.82,23.95832745,9 Years and 9 Months,Yes,65.67432346,111.598419,Low_spent_Small_value_payments,223.1270076,0,1.4536,1.8751,0.0988,-0.6164,-1.6578 -0x1b271,CUS_0x3fcb,August,25,176-28-0406,Writer,54667.1,4804.591667,6,5,13,4,"Not Specified, Mortgage Loan, Payday Loan, and Payday Loan",10.71080868,11,23.01,,Standard,401.07,37.21076857,23 Years and 5 Months,NM,129.1771214,,!@9#%8,316.0204274,0,-0.7397,-0.4199,-0.0749,-0.7454,-1.253 -0x1b27d,CUS_0x271b,August,23,564-58-0056,Journalist,69324.2,5896.016667,2,3,6.288361749,0,Debt Consolidation Loan,,1,5.02,6,_,141.0157275,35.95303193,27 Years and 10 Months,No,53.88124181,817.4415621,Low_spent_Medium_value_payments,467.2897502,0,-0.467,0.0364,0.9362,1.7955,1.358 -0x1b289,CUS_0x3379,August,26,824-04-2434,Teacher,8884.17,874.3475,10,6,16,6,"Home Equity Loan, Student Loan, Not Specified, Payday Loan, Home Equity Loan, and Home Equity Loan",46.20052109,23.86955262,8.5,10,Bad,2430.098319,31.96737959,,Yes,29.38971439,51.2873587,Low_spent_Small_value_payments,296.7576769,0,0.2602,0.4609,2.1899,-1.7084,-0.6806 -0x1b295,CUS_0x15d9,August,34,595-11-4463,Doctor,9643.265,829.6054167,9,6,18.06745738,8,"Auto Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Student Loan, and Mortgage Loan",,16.46402136,16.95,14,Bad,3431.742632,38.75759445,5 Years and 5 Months,Yes,43.11790279,,Low_spent_Small_value_payments,247.4954483,0,1.0618,0.8701,0.2724,0.6846,-2.3878 -0x1b2a1,CUS_0x89ba,August,48,199-40-3891,Scientist,58210.38,4283.006425,2,5,2.288361749,4,"Personal Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",9.819887956,11,9.47,5,Good,285.0184755,24.11480042,21 Years and 8 Months,No,534.085787,541.9235738,High_spent_Medium_value_payments,476.0683929,0,-0.1639,-2.3267,0.5827,-1.0024,-0.6792 -0x1b2ad,CUS_0x8bfe,August,25,025-77-6599,Engineer,19016.29,1648.951576,5,5,5,1,Personal Loan,1.707385628,1.207093544,11.42,5,Good,797.6982801,30.69530931,21 Years and 9 Months,No,133.4318971,45.61695764,High_spent_Medium_value_payments,370.8594859,0,0.1685,-1.3783,-1.7239,-1.5066,-1.447 -0x1b2b9,CUS_0xae30,August,37,422-31-6038,Architect,98198.07,8079.1725,1,3,10,3,"Not Specified, Student Loan, and Student Loan",,1.13579406,2.23,2,Good,475.5440791,40.42202562,30 Years and 6 Months,NM,150.1432622,144.3705164,High_spent_Large_value_payments,753.4034714,0,0.4417,-1.0333,1.454,1.0011,0.7742 -0x1b2c5,CUS_0xad2c,August,44,416-04-4760,Lawyer,40667.32,3398.943333,8,6,35.06745738,5,"Debt Consolidation Loan, Personal Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",,20,17.58,13,Bad,4806.090954,38.17381109,3 Years and 10 Months,Yes,126.6683949,427.4799472,Low_spent_Small_value_payments,49.02570331,0,0.3608,-0.7849,-0.5472,-1.0183,1.2435 -0x1b2d1,CUS_0xa9fc,August,36,790-50-8208,Architect,66095.88,,7,4,10,4,"Home Equity Loan, Payday Loan, Student Loan, and Student Loan",21.11387766,17,16.49,1572,_,1122.143576,24.22690458,8 Years and 5 Months,Yes,822.9967544,,Low_spent_Medium_value_payments,56.50022479,0,-1.3977,0.7294,-0.3747,0.9109,-0.6499 -0x1b2dd,CUS_0xedb,August,37,099-33-6440,Architect,46469.28,4038.44,9,5,25.06745738,2,"Auto Loan, and Personal Loan",19.66314593,10.39793915,14.07,12,Standard,3247.644602,29.78931001,8 Years and 6 Months,Yes,59.31112358,,Low_spent_Small_value_payments,280.6665923,0,1.6322,-1.1245,-0.609,0.1856,-0.2477 -0x1b2e9,CUS_0x6d7e,August,23,905-20-7810,Musician,42577.86,3782.155,6,8,20,9,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",38.88665837,23,26.86,14,Bad,4122.31,26.43837454,5 Years and 10 Months,Yes,171.5763383,,Low_spent_Small_value_payments,6.241509617,0,0.5286,-0.9708,-2.0839,0.0059,0.0365 -0x1b2f5,CUS_0x8f20,August,50,099-46-3811,Developer,60390.8,,3,5,9,2,"Personal Loan, and Mortgage Loan",10.17229284,12,2.11,1,Good,973.97,34.72550422,26 Years and 0 Months,No,64.6336995,201.3270006,Low_spent_Small_value_payments,537.6959666,0,-0.5078,2.0423,-0.0721,0.222,-0.6285 -0x1b301,CUS_0xa6db,August,29,782-40-0373,Doctor,14618.9,,8,4,20,6,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",18.63686285,15,9.23,10,Standard,378.6911813,26.19472219,18 Years and 5 Months,Yes,11674,,Low_spent_Small_value_payments,326.233045,0,-2.1409,-0.9131,1.743,0.4576,-2.3497 -0x1b30d,CUS_0x2159,August,53,902-71-6676,Doctor,115380.18,,0,4,12,2,"Auto Loan, and Debt Consolidation Loan",10.16273096,9,,7,Good,101.29,34.09222798,25 Years and 10 Months,No,133.2604608,,High_spent_Medium_value_payments,721.4745983,0,-1.1364,0.5899,-0.0923,0.4569,-1.0701 -0x1b319,CUS_0x1375,August,19,841-27-0645,Lawyer,72524.2,,6,5,17,3,"Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",46.25939551,26.53727345,8.74,9,Bad,3055.960732,23.07038842,15 Years and 4 Months,Yes,153.0334569,,Low_spent_Medium_value_payments,111.3783504,0,-0.6643,0.7678,-0.3254,-0.0476,-0.7042 -0x1b325,CUS_0x9ebf,August,26,770-43-4626,Manager,131723.24,,4,3,5,4,"Mortgage Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",22.00028614,17.86204152,9.66,0,Good,702.2973793,34.78727855,30 Years and 9 Months,No,385.9717515,234.5173632,High_spent_Large_value_payments,703.704552,0,-1.7847,-1.0696,0.1781,1.1604,-0.3665 -0x1b331,CUS_0x4fd8,August,41,892-27-9488,Manager,49224.84,4225.07,8,6,26,7,"Student Loan, Auto Loan, Auto Loan, Payday Loan, Auto Loan, Personal Loan, and Personal Loan",42.30534591,23.71544858,7.94,11,Bad,2800.758273,28.21417961,14 Years and 0 Months,Yes,166.2795555,64.35568862,High_spent_Large_value_payments,431.8717559,0,-1.4211,-1.1669,-0.7441,1.2579,0.6174 -0x1b33d,CUS_0x2b8a,August,45,964-65-9541,_______,75291.12,6221.26,8,6,21,5,"Credit-Builder Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, and Mortgage Loan",47.70975666,29.96029929,4.56,12,Bad,2731.470749,36.37779344,10 Years and 0 Months,Yes,260.468081,,Low_spent_Medium_value_payments,72.82392393,0,-1.0498,-0.5971,0.7506,1.6061,-0.449 -0x1b349,CUS_0x294b,August,41,738-96-2913,Entrepreneur,16496.82,,10,9,17,9,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Auto Loan",36.92147378,25,17.65,11,Bad,3698.45,24.22740949,1 Years and 4 Months,Yes,65.88958759,79.77533866,Low_spent_Medium_value_payments,242.0085737,0,-0.685,0.3195,0.0046,-0.5997,0.1578 -0x1b355,CUS_0x3813,August,30,859-43-6338,Architect,44616.7,4008.058333,4,6,6,3,"Credit-Builder Loan, Credit-Builder Loan, and Not Specified",28.11518759,20,5.53,1,Standard,252.07,32.79356627,,Yes,109.9205478,198.6458928,Low_spent_Large_value_payments,362.2393927,0,-0.5367,0.8356,1.4012,-1.8266,1.5142 -0x1b361,CUS_0x8440,August,54,815-07-0908,_______,22978.67,1954.889167,3,7,9,0,,,,11.87,2,Standard,822.7572553,36.91085742,21 Years and 8 Months,No,0,69.41517893,High_spent_Medium_value_payments,383.7465604,0,0.0844,-0.8868,-0.9699,-0.5718,0.4013 -0x1b36d,CUS_0x2a67,August,44,579-50-1181,Doctor,78769.32,6277.11,8,5,20,0,,24.04117687,20,11.66,3,Standard,45.87,30.54298921,25 Years and 2 Months,No,0,478.3407116,Low_spent_Large_value_payments,419.3702884,0,0.7353,0.8286,-1.3839,-1.5686,-1.0716 -0x1b379,CUS_0x4387,August,29,201-98-1734,_______,20900.51,1879.709167,9,5,35.06745738,7,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Mortgage Loan, Not Specified, and Student Loan",40.32373723,27.57544002,4.62,14,Bad,1689.113052,27.67879806,,Yes,75.14225223,96.74212413,Low_spent_Small_value_payments,279.3662524,0,-1.0201,1.6606,1.0748,1.4158,-0.0305 -0x1b385,CUS_0xb824,August,48,#F%$D@*&8,Mechanic,40021.11,3233.0925,3,5,5.288361749,0,Debt Consolidation Loan,9.190366827,10.71065539,3.44,2,Good,160.6757869,33.07306016,,No,19.37656742,481.1140154,High_spent_Medium_value_payments,492.7561282,0,0.9093,-1.5913,0.0619,-0.9466,-1.4947 -0x1b391,CUS_0x79c8,August,47,498-09-8022,Manager,85724.7,,5,5,18,0,,25.17963374,18,7.95,6,_,1162.96229,27.70869763,30 Years and 3 Months,NM,0,704.1674279,Low_spent_Medium_value_payments,370.2624555,0,-0.7883,-2.0322,-0.3136,-1.2262,0.0399 -0x1b39d,CUS_0x138f,August,30,569-14-9292,Entrepreneur,20483.84,,7,7,33.06745738,8,"Student Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",44.69168612,25.45584662,4.75,6,Bad,2949.964772,32.29319424,9 Years and 5 Months,Yes,106.1300323,,!@9#%8,124.5039142,0,2.9257,-0.855,-0.596,-0.0014,1.1581 -0x1b3a9,CUS_0x8f63,August,44,#F%$D@*&8,Doctor,10426.84,,6,10,20.95700519,6,"Credit-Builder Loan, Student Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, and Personal Loan",21.63348529,14,24.71,6,Bad,3368.800954,35.22611173,12 Years and 2 Months,Yes,1373.366385,,Low_spent_Medium_value_payments,220.3634887,0,1.2968,-0.1458,1.0069,-3.4051,-0.074 -0x1b3b5,CUS_0x8ff5,August,29,538-49-5240,Teacher,14174.36,924.1966667,7,8,17,8,"Payday Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",28.10893663,19,19.43,10,Bad,2870.48,24.31673165,6 Years and 8 Months,Yes,73.77186771,60.52515628,Low_spent_Medium_value_payments,238.1226427,0,0.4673,2.086,-1.7305,-0.0349,-0.6428 -0x1b3c1,CUS_0x6282,August,54,405-49-6814,Entrepreneur,12859.76,,4,7,20,4,"Not Specified, Home Equity Loan, Personal Loan, and Home Equity Loan",21.88722262,14,11.09,3,Standard,531.26,38.66702305,29 Years and 8 Months,No,30.99969078,124.6539205,Low_spent_Small_value_payments,247.7110554,0,2.9269,-0.5183,-0.904,1.0711,-2.698 -0x1b3cd,CUS_0x61f8,August,19,705-61-0374,Developer,19397.6,,10,6,20.06745738,9,"Personal Loan, Home Equity Loan, Payday Loan, Student Loan, Personal Loan, Credit-Builder Loan, Student Loan, Not Specified, and Mortgage Loan",,23,1.08,9,Bad,1508.920954,23.61617451,19 Years and 5 Months,NM,136.3574568,88.28955674,Low_spent_Small_value_payments,192.5793652,0,2.0901,1.3214,-0.2526,1.5567,0.1667 -0x1b3d9,CUS_0x7d17,August,27,797-53-8850,Doctor,12525.745,1004.812083,8,7,11,4,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",90,2334,19.18,7,Standard,845.79,34.32831033,17 Years and 2 Months,Yes,28.08067411,80.43314008,Low_spent_Small_value_payments,281.9673941,0,0.2755,-1.8842,-0.6531,-1.5818,-0.6925 -0x1b3e5,CUS_0xa9b,August,39,570-01-4106,_______,123941.64,10499.47,858,7,12,1,Credit-Builder Loan,25.42505241,16.02701363,0.4,4,Standard,1592.293242,33.65339572,30 Years and 8 Months,Yes,54.35523551,403.4499123,High_spent_Small_value_payments,852.1418522,0,-0.7365,-1.1857,0.3345,0.7964,0.0769 -0x1b3f1,CUS_0x3b7d,August,41,293-93-9501,Musician,19164.19,,6,3,8.288361749,2,"Personal Loan, Not Specified, and Not Specified",11.6371416,12,11.21,5,Standard,183.1,28.63418175,31 Years and 6 Months,Yes,80311,446.1874156,High_spent_Small_value_payments,333.6319623,0,0.1334,-0.3693,-0.5516,1.8312,0.0554 -0x1b3fd,CUS_0x21ce,August,51,#F%$D@*&8,Developer,34593.98,,4,4,12,2,"Mortgage Loan, and Mortgage Loan",17.66466547,12,10.47,4,Standard,1453.07,28.72088799,30 Years and 2 Months,No,43.33549073,94.62118374,Low_spent_Large_value_payments,438.1264922,0,0.3009,0.6556,0.4182,-1.5736,2.1781 -0x1b409,CUS_0x17f0,August,26,097-85-1090,Scientist,71460.32,6038.026667,4,543,4.288361749,2,"Credit-Builder Loan, and Credit-Builder Loan",1.732564775,4,7.95,4,_,240.64,35.31231948,17 Years and 0 Months,No,109.8958619,543.4155411,High_spent_Large_value_payments,610.4287247,0,-0.9816,1.2438,-0.8132,0.8398,0.3447 -0x1b415,CUS_0x335a,August,45,807-68-7569,Musician,15599.88,1324.99,6,8,22.95700519,6,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",52.93217453,27.93415257,20.27,8,Bad,5089.095502,40.3884287,8 Years and 10 Months,Yes,1390.21573,,High_spent_Small_value_payments,207.0904422,0,0.7633,1.2233,-0.8234,0.3384,0.0979 -0x1b421,CUS_0x95b6,August,53,301-02-1316,Developer,30635.16,,3,7,4,0,,6.23231155,9,11.42,3,Good,588.7535619,36.81854619,17 Years and 5 Months,No,0,81.56462732,Low_spent_Large_value_payments,463.1471189,0,2.9179,1.2154,0.0826,0.2616,1.0191 -0x1b42d,CUS_0x22e5,August,50,253-38-4576,Mechanic,95267.49,7974.9575,6,5,13,2,"Student Loan, and Payday Loan",17.82327904,13,4.98,5,Standard,586.28,33.64859621,24 Years and 9 Months,No,113.3195274,,High_spent_Large_value_payments,831.0292414,0,2.0219,0.9874,0.8858,0.3625,-1.2755 -0x1b439,CUS_0x7ec9,August,26,678-29-7359,Musician,171126.04,14431.50333,1,3,6,2,"Mortgage Loan, and Not Specified",16.0426937,13,5.8,3,Good,1093.043516,33.49684416,17 Years and 10 Months,No,192.6871932,1394.260432,Low_spent_Medium_value_payments,319.8008236,0,0.6827,-0.1987,0.3927,1.8549,-0.612 -0x1b445,CUS_0x234a,August,40,#F%$D@*&8,Doctor,16108.46,1262.753448,10,7,26.06745738,6,"Not Specified, Student Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Payday Loan",32.64594647,19,7.91,7,Bad,1670.160954,30.27507846,8 Years and 4 Months,NM,146.2260264,,!@9#%8,179.1103737,0,-1.005,-0.7332,0.7042,0.6673,-0.9239 -0x1b451,CUS_0xb2c4,August,40,794-12-0039,Journalist,15046.85,,9,5,19.06745738,8,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",38.37670767,21.95773265,30.13,12,Bad,3937.925244,36.2026468,12 Years and 2 Months,Yes,100.482112,91.39908631,Low_spent_Medium_value_payments,201.7725233,0,0.1828,-1.3141,-0.2309,1.1056,-0.2473 -0x1b45d,CUS_0x41e5,August,45,127-49-4016,Lawyer,79241.12,,7,5,29,8,"Student Loan, Personal Loan, Student Loan, Not Specified, Mortgage Loan, Auto Loan, Mortgage Loan, and Not Specified",,16,19.32,10,Bad,2978.35,25.84039136,14 Years and 6 Months,NM,282.6396182,282.6644988,Low_spent_Medium_value_payments,373.4385496,0,0.4002,0.7711,1.3874,0.6798,0.1334 -0x1b469,CUS_0x4401,August,39,025-25-9650,_______,101230.32,7667.020573,4,6,6,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",19.40249285,15,15.34,5,_,322.5446293,31.90293483,29 Years and 5 Months,Yes,904.3644876,11276.09568,Low_spent_Small_value_payments,397.6970526,0,-0.8416,0.0794,-1.7475,-0.7603,0.378 -0x1b475,CUS_0x28e2,August,26,474-82-5027,Journalist,17887.47,,7,7,30.06745738,9,"Payday Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Auto Loan",,19,26.46,,Bad,5028.170954,32.7785424,,Yes,125.3738459,57.96430755,High_spent_Medium_value_payments,194.2038086,0,-0.2314,1.9594,-0.4069,1.787,0.2132 -0x1b481,CUS_0x2a64,August,22,684-77-9715,_______,49949.84,4002.486667,5,6,18,3,"Payday Loan, Debt Consolidation Loan, and Personal Loan",25.21184449,16,1.24,4,_,1465.06,38.76408433,16 Years and 2 Months,Yes,122.5376287,137.7832223,Low_spent_Large_value_payments,409.9278156,0,-0.981,-0.9911,0.7957,-1.2975,1.1305 -0x1b48d,CUS_0x39f8,August,25,090-26-7091,Writer,14388.79,,6,4,2417,1,Credit-Builder Loan,,10,4.6,7,Good,632.09,36.49570065,15 Years and 11 Months,No,8.862377139,168.6793167,Low_spent_Small_value_payments,248.0648895,0,0.1265,0.2125,1.1057,-0.5634,2.0025 -0x1b499,CUS_0x9dd,August,40,614-63-9684,Entrepreneur,27356.1,,3,4,10,4,"Not Specified, Auto Loan, Auto Loan, and Student Loan",27.96612331,19,4.94,1,Standard,685.14,32.91940396,20 Years and 8 Months,Yes,60.66011126,,High_spent_Large_value_payments,358.4380172,0,-0.6516,-0.934,0.3915,1.5401,-1.0156 -0x1b4a5,CUS_0x2c22,August,33,758-25-2296,Entrepreneur,23625.55,,3,3,19,1,Personal Loan,16.67087761,16,12.37,,Standard,39.76621886,28.10542757,16 Years and 2 Months,NM,13.17120058,29.78475595,High_spent_Medium_value_payments,425.2547731,0,0.3601,-0.0837,-0.8075,1.245,-0.0439 -0x1b4b1,CUS_0x18cb,August,41,171-38-6810,Media_Manager,47093.32,3873.481655,3,6,18,6,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",11.83505029,7.917862907,10.67,10,Standard,1153.610283,35.97668863,8 Years and 10 Months,Yes,281.1022332,219.1161553,Low_spent_Medium_value_payments,251.7876229,0,0.1356,0.0616,-1.2298,-1.9952,0.4209 -0x1b4bd,CUS_0xd9a,August,53,297-58-2164,Scientist,86372.43,6986.7025,2,3,1,0,,11.1795279,11,7.46,7,_,1018.92,39.77766871,22 Years and 4 Months,No,0,529.1994596,Low_spent_Large_value_payments,439.4707904,0,-0.5191,-0.4799,-0.1512,0.5763,0.4186 -0x1b4c9,CUS_0x7e90,August,19,#F%$D@*&8,Mechanic,18128.18,,8,6,26,3,"Auto Loan, Auto Loan, and Not Specified",,10.69926013,8.44,13,_,1501.098489,38.24713203,13 Years and 6 Months,Yes,45.17646007,231.0022784,Low_spent_Small_value_payments,194.8894282,0,1.3127,-0.4467,0.0152,-0.5378,-2.2191 -0x1b4d5,CUS_0x2416,August,32,651-23-3051,Manager,93957.36,8044.78,3,6,13,0,,21.03339964,18,19.03,5,_,1344.71,38.40085619,16 Years and 2 Months,Yes,0,300.179494,High_spent_Medium_value_payments,754.298506,0,1.3854,1.7624,-0.0722,1.8778,1.6591 -0x1b4e1,CUS_0x885c,August,39,314-74-0834,Teacher,31122.32,,0,498,6,3,"Mortgage Loan, Student Loan, and Debt Consolidation Loan",4.19504404,6,8.72,4,Good,701.97,25.57984197,31 Years and 8 Months,No,56.10548709,40.0444104,High_spent_Medium_value_payments,383.8027692,0,-0.3205,1.0608,-0.3238,-1.1167,0.2586 -0x1b4ed,CUS_0x7b8a,August,28,#F%$D@*&8,Architect,16232.14,,5,7,25,2,"Personal Loan, and Auto Loan",31.89832093,22.54002254,19.15,12,Standard,2800.120517,36.34559231,6 Years and 2 Months,Yes,14.97768345,,Low_spent_Small_value_payments,229.0321174,0,0.2118,1.3247,-1.1755,-0.1348,-1.7203 -0x1b4f9,CUS_0x1af1,August,43,650-81-9563,Lawyer,98208.78,8313.065,4,7,3,1,Personal Loan,5.685031612,8.042561518,6.01,3,_,1512.724913,33.76687862,25 Years and 8 Months,No,66.95254182,141.8999438,High_spent_Large_value_payments,862.4540144,0,0.5717,0.4697,0.4167,-0.308,-2.996 -0x1b505,CUS_0x3d64,August,45,038-92-0094,Engineer,19493.51,,6,10,27.95700519,100,"Not Specified, and Mortgage Loan",,4732.008538,16.19,8,Bad,2268.68002,37.04939158,14 Years and 9 Months,Yes,1345.337852,27.86208088,High_spent_Medium_value_payments,321.9956149,0,0.8806,0.1019,0.0718,0.343,-1.1211 -0x1b511,CUS_0xc533,August,43,693-67-8876,Scientist,101785.08,8402.09,6,7,5,100,,17.08756783,12,0.88,7,Standard,700.2,31.17696877,17 Years and 6 Months,Yes,0,760.1183392,Low_spent_Medium_value_payments,360.0906608,0,0.3672,1.4627,-0.0453,-0.4878,0.9952 -0x1b51d,CUS_0x65bd,August,29,616-13-0619,Accountant,14395.83,,8,1110,29.95700519,7,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, and Home Equity Loan",28.57767352,19.00402209,24.17,14,Bad,3379.01304,26.42016802,2 Years and 8 Months,Yes,1398.278826,37.62121017,Low_spent_Small_value_payments,235.8148443,0,-0.6357,0.578,0.0379,0.077,-0.5182 -0x1b529,CUS_0x1b0b,August,28,001-67-3534,Manager,9709.325,670.1104167,10,8,19,5,"Mortgage Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, and Personal Loan",,29.40626326,9.88,11,Bad,3558.159855,30.49603771,,Yes,25.76739386,0,High_spent_Medium_value_payments,281.5703948,0,-1.2861,0.9861,0.4532,0.8978,-2.0408 -0x1b535,CUS_0x1b55,August,41,468-81-7192,Lawyer,67672.4,,8,1029,27,5,"Auto Loan, Payday Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",36.76628632,24,0.5,10,Bad,1826.19,34.69234172,16 Years and 4 Months,Yes,233.3006243,,!@9#%8,181.9820095,0,-0.5672,0.1674,-2.1862,-0.3037,1.3174 -0x1b541,CUS_0x7d62,August,22,#F%$D@*&8,Doctor,19193.42,,5,6,9,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Mortgage Loan",29.23852752,20,16.83,8,Standard,211.4,30.35157122,29 Years and 5 Months,Yes,37947,79.12078248,Low_spent_Medium_value_payments,299.7077181,0,0.5018,-1.1836,-1.0928,-1.2506,-0.6049 -0x1b54d,CUS_0x975d,August,47,602-97-7518,Doctor,143883.28,12131.27333,4,3,4,4,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",15.47595395,9.355737564,3.56,4,Good,382.9071519,24.63251402,24 Years and 8 Months,No,398.4961967,,High_spent_Small_value_payments,459.093586,0,0.2219,-2.1566,1.2372,0.6755,-0.841 -0x1b559,CUS_0x248e,August,50,154-09-5858,Media_Manager,38551.09,,0,7,3,3,"Auto Loan, Home Equity Loan, and Personal Loan",,4,11.96,4,Good,298.046537,33.83140547,28 Years and 10 Months,No,78.03882884,91.57745712,High_spent_Medium_value_payments,428.0079402,0,1.1786,0.8995,-0.2464,-1.2657,-0.8355 -0x1b565,CUS_0x7eec,August,32,614-46-1339,_______,32635.06,2954.588333,8,6,31,6,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Not Specified, and Home Equity Loan",,28.17811727,3.89,10,Bad,3050.458159,25.03925296,3 Years and 9 Months,Yes,140.4593036,,Low_spent_Large_value_payments,215.0730547,0,0.3409,-1.0117,-0.6375,-1.5618,-0.6316 -0x1b571,CUS_0x3e1f,August,28,764-52-4960,Writer,36320.13,3271.6775,7,6,5,4,"Debt Consolidation Loan, Personal Loan, Auto Loan, and Mortgage Loan",18.93373481,15.16031494,6.71,2,Standard,868.4718899,34.48007285,16 Years and 3 Months,No,106.8130705,194.9384143,Low_spent_Large_value_payments,295.4162652,0,-1.3908,0.1126,0.2305,0.151,-1.9134 -0x1b57d,CUS_0x8430,August,34,459-80-5416,Media_Manager,57744.68,,4,6,8.288361749,4,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",9.248610232,10,3.29,6,Good,674.36,24.81909501,23 Years and 5 Months,No,189.7556356,623.1981556,Low_spent_Small_value_payments,379.3893365,0,1.3418,-0.911,0.5737,0.99,-0.714 -0x1b589,CUS_0xbe12,August,30,244-74-3349,Lawyer,28308.78,,9,6,22,7,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",,14,9.9,8,_,2139.23,26.40175906,9 Years and 11 Months,Yes,139.5164432,,Low_spent_Large_value_payments,154.8951736,0,0.1609,1.3629,1.1491,0.6036,0.1794 -0x1b595,CUS_0x6850,August,28,646-89-4326,_______,46174.58,3652.881667,8,3,4,3,"Personal Loan, Not Specified, and Student Loan",8.152300679,8,1.97,6,Good,1150.435751,40.9786247,21 Years and 8 Months,No,99.83624426,152.2472435,Low_spent_Small_value_payments,424.6967238,0,0.0566,-0.3376,-0.6234,-0.3236,1.3082 -0x1b5a1,CUS_0x9e04,August,28,526-03-5099,Doctor,32889.64,,5,6,6,2,"Not Specified, and Auto Loan",,11.7179504,19.69,9,Standard,202.3222753,32.11148554,12 Years and 10 Months,Yes,47.12580761,71.53528314,Low_spent_Large_value_payments,420.1192426,0,-1.0415,0.3388,-0.507,-0.5679,0.6393 -0x1b5ad,CUS_0xacd,August,43,874-19-0721,Engineer,130091.08,,0,6,4.288361749,4,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",2.641434517,4.606490927,2.89,3,Good,487.3068751,34.93855104,26 Years and 2 Months,No,383.7174522,1410.731577,Low_spent_Large_value_payments,,0,-0.2225,-2.1205,0.3461,0.5949,-1.7538 -0x1b5b9,CUS_0x7a4c,August,38,487-16-7862,Accountant,67101.52,5318.793333,10,7,26.06745738,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Student Loan",22.13572583,12,25.71,7,Bad,4591.260954,30.5571196,11 Years and 10 Months,Yes,320.5388326,68.55106725,High_spent_Large_value_payments,356.0691456,0,-0.1626,-1.6517,0.1066,-1.1013,1.5005 -0x1b5c5,CUS_0x8898,August,27,304-61-2436,Scientist,19551.36,,4,3,19,5,"Student Loan, Not Specified, Auto Loan, Payday Loan, and Student Loan",4.127393579,6,11.51,6,Standard,807.64,23.9340756,12 Years and 8 Months,Yes,67.55643797,114.1800938,Low_spent_Small_value_payments,257.1914683,0,2.5223,1.1589,0.6749,-1.3637,0.2421 -0x1b5d1,CUS_0x4deb,August,46,036-54-9362,Musician,16254.6,,7,7,24.06745738,5,"Not Specified, Personal Loan, Not Specified, Personal Loan, and Credit-Builder Loan",,21.32028965,17.65,7,Bad,3437.910316,39.17365162,8 Years and 4 Months,Yes,59.96225408,,Low_spent_Small_value_payments,261.918588,0,-0.8713,1.4848,0.179,0.7005,-1.6297 -0x1b5dd,CUS_0x4adb,August,21,546-26-9226,Developer,58367.36,4921.946667,5,4,5,2,"Personal Loan, and Personal Loan",7.777698526,9,11.89,5,Standard,1339.95,32.51552661,17 Years and 3 Months,NM,55.5815032,,Low_spent_Small_value_payments,276.3417697,0,-0.0996,-1.1448,0.8901,-0.3942,2.1245 -0x1b5e9,CUS_0xb25e,August,42,561-32-2714,Lawyer,74614.64,6205.886667,5,6,3.288361749,0,Student Loan,0,3,4.6,5,Good,879.62,26.06633702,25 Years and 6 Months,NM,40.21589667,,High_spent_Large_value_payments,773.3441489,0,0.3141,1.7815,-0.373,-0.0793,-0.1073 -0x1b5f5,CUS_0x1613,August,36,572-19-1320,Accountant,43340.44,,3,5,9,1,Mortgage Loan,,11,8.76,4,Good,491.3427905,37.72972487,29 Years and 0 Months,No,35.76445769,,Low_spent_Large_value_payments,484.1870251,0,-0.6478,-1.4856,0.781,-0.8762,-0.823 -0x1b601,CUS_0xbad2,August,49,205-18-4460,Doctor,25376.73,,5,7,3921,2,"Payday Loan, and Personal Loan",,10,4.83,2,Standard,360.0420937,33.0323986,20 Years and 2 Months,Yes,25.91546458,38.21815531,High_spent_Medium_value_payments,429.8113854,0,0.6605,-0.555,-0.3499,-0.1755,-0.1354 -0x1b60d,CUS_0x7f6b,August,31,969-80-4739,Manager,117566.96,9813.246667,1377,291,12,1,Debt Consolidation Loan,,,19.54,3,_,1104.254666,30.87071279,27 Years and 10 Months,Yes,90.96895823,757.2398431,!@9#%8,493.5154334,0,-2.2368,-0.1247,-0.4431,0.8268,-0.6457 -0x1b619,CUS_0x5753,August,24,445-28-8317,Developer,133538.68,,3,7,11.28836175,0,,,,2.07,2406,Standard,1389.91,39.11090365,24 Years and 5 Months,No,0,652.9883083,!@9#%8,1112.471486,0,-0.4771,-1.2069,-0.1733,0.3051,-1.1924 -0x1b625,CUS_0xa2fe,August,49,572-46-1158,Teacher,69605,,3,4,5,2,"Personal Loan, and Credit-Builder Loan",19.3774978,13.8291012,10.97,0,Good,1303.960067,38.74493594,17 Years and 4 Months,No,104.4225431,58.91995886,High_spent_Large_value_payments,630.9991647,0,-0.5947,-1.7495,0.3277,-0.4749,1.136 -0x1b631,CUS_0xc06a,August,32,162-49-4073,Writer,95389.71,,6,7,16,1,Not Specified,8.703288434,5.719233302,11.92,1,Standard,600.2440221,26.15474966,29 Years and 11 Months,Yes,42.20224927,96.48762546,High_spent_Medium_value_payments,877.1243753,0,-0.721,-0.6818,-1.3219,-1.5516,1.437 -0x1b63d,CUS_0x151b,August,80,224-45-3294,Journalist,47165.44,,8,4,7,0,,23.78585142,16,7.76,5,Standard,248.98,37.339742,27 Years and 10 Months,NM,0,254.0774777,Low_spent_Small_value_payments,414.1678556,0,0.2295,-0.872,-0.2437,0.8396,-0.8045 -0x1b649,CUS_0x8653,August,38,489-06-6512,Accountant,14958.54,1090.911474,6,10,19.95700519,7,"Debt Consolidation Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Auto Loan",32.74974876,19,17.88,8,Standard,1969.470954,25.21508429,18 Years and 11 Months,Yes,1496.29015,,Low_spent_Small_value_payments,155.3647156,0,0.9123,-1.2183,-0.5597,2.0485,-0.3647 -0x1b655,CUS_0x4b9f,August,50,097-74-3478,Media_Manager,81365.07,6899.4225,3,3,6,4,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",,16,11.73,5,Standard,1188.76,35.32660679,22 Years and 10 Months,Yes,250.3763595,428.3227113,Low_spent_Medium_value_payments,291.2431791,0,-2.2302,1.3898,-1.1712,-0.2745,-0.6007 -0x1b661,CUS_0x72b4,August,22,001-64-0430,Accountant,8934.615,,8,9,18.88954781,7,"Credit-Builder Loan, Auto Loan, Payday Loan, Auto Loan, Personal Loan, Not Specified, and Mortgage Loan",,20.50574769,22.52,12,_,4399.581006,23.19673071,11 Years and 4 Months,Yes,1359.91337,24.68904178,Low_spent_Small_value_payments,272.8226316,0,-0.1286,-1.2944,1.294,1.8117,0.571 -0x1b66d,CUS_0x86ec,August,24,293-88-4924,Writer,19358.37,,7,10,16.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",39.38711852,25.5302718,8.41,13,_,1891.32976,25.76710881,8 Years and 5 Months,Yes,50.9854327,76.00337595,High_spent_Small_value_payments,272.1106534,0,0.1309,-0.031,-0.8794,-0.57,-0.3408 -0x1b679,CUS_0x8bd6,August,45,035-25-8627,Scientist,18964.73,,7,7,34.06745738,3,"Not Specified, Not Specified, and Auto Loan",32.37371787,22.48858989,9.04,9,_,1895.836483,35.97342503,9 Years and 2 Months,Yes,28.22842539,93.60892435,!@9#%8,298.581779,0,0.6756,0.3948,2.4763,0.3295,-0.9969 -0x1b685,CUS_0x2fd8,August,54,360-83-0076,Musician,116742.54,9924.545,5,3,9.288361749,2,"Payday Loan, and Credit-Builder Loan",0.284373788,5,4.14,6,Good,257.905376,30.66520888,28 Years and 6 Months,NM,186.726035,,High_spent_Medium_value_payments,648.0361846,0,-0.789,-0.4672,0.4299,1.4127,1.563 -0x1b691,CUS_0x4f83,August,44,329-87-7684,Journalist,24127.22,1765.601667,8,5,7,0,,23.05508645,17,7.5,5,Standard,1158.96,31.82960252,30 Years and 9 Months,No,0,50.52411558,High_spent_Medium_value_payments,376.0360511,0,-0.6071,0.2817,-0.7933,0.4929,-0.5951 -0x1b69d,CUS_0xb8ea,August,19,#F%$D@*&8,Journalist,9260.58,1018.715,6,6,31,7,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",19.74446749,,21.94,12,Bad,3726.34,25.41916887,8 Years and 11 Months,NM,53.75560283,62.35111434,Low_spent_Small_value_payments,275.7647828,0,-0.151,-0.048,-0.2203,1.0676,1.1882 -0x1b6a9,CUS_0x7177,August,19,726-84-7401,Developer,69348.7,5512.058333,8,7,11,0,,13.05647121,10,3.53,1,Standard,973.83,25.99558996,30 Years and 10 Months,No,0,114.1190097,High_spent_Medium_value_payments,687.0868236,0,-0.111,0.7131,-2.0905,-0.0346,-0.3212 -0x1b6b5,CUS_0x37e9,August,52,504-96-4851,Architect,31647.02,2725.251667,2,6,5,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",13.63542883,10.34532191,2.49,3,Good,536.3689973,37.49604422,16 Years and 9 Months,No,64.82182516,149.6965474,High_spent_Small_value_payments,318.0067941,0,0.1149,1.5976,1.7681,0.2048,1.5402 -0x1b6c1,CUS_0x57c5,August,28,929-59-4297,Engineer,17296.94,,6,7,11.06745738,3,"Payday Loan, Home Equity Loan, and Auto Loan",,22.83183978,8.58,10,Standard,2291.477409,27.5304373,13 Years and 0 Months,Yes,23.13838956,,Low_spent_Small_value_payments,292.8398898,0,0.0785,-1.0583,1.2284,-0.3875,-0.1387 -0x1b6cd,CUS_0x4d3d,August,80,830-19-3730,_______,78244.68,,4,6,23,5,"Payday Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",32.75597998,22.68859437,14.78,1196,Standard,1951.832152,25.26842271,12 Years and 3 Months,Yes,319.0577322,214.2055501,High_spent_Medium_value_payments,365.0757177,0,-0.4487,-1.7029,2.0495,0.1882,0.3907 -0x1b6d9,CUS_0x446b,August,30,074-04-9417,Media_Manager,11944.675,,5,7,6,3,"Auto Loan, Auto Loan, and Auto Loan",24.73411545,17,6.82,6,Standard,886.94,25.38354671,32 Years and 4 Months,NM,19.87406676,132.3198573,Low_spent_Small_value_payments,238.8450343,0,-0.9928,1.3801,0.5715,-0.8744,1.0534 -0x1b6e5,CUS_0xb25a,August,41,027-13-2378,Architect,30617.62,,5,3,8,3,"Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",14.10669964,10.74264167,7.9,5,Good,1063.398717,33.42126186,32 Years and 0 Months,No,74.01131688,154.6672903,Low_spent_Small_value_payments,314.6682262,0,0.8882,-1.0067,-1.2676,1.0038,-1.0901 -0x1b6f1,CUS_0x7b31,August,37,762-63-6766,Musician,47195.19,3749.9325,9,5,15,7,"Student Loan, Auto Loan, Payday Loan, Personal Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",,25,25.86,9,_,2729.04,37.65748708,3 Years and 10 Months,Yes,178.7482328,47.56053837,High_spent_Medium_value_payments,398.6844789,0,-0.9009,-0.2888,0.7378,0.6297,1.7193 -0x1b6fd,CUS_0xa411,August,46,303-75-5660,Architect,8744.865,,10,5,16.06745738,5,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, and Student Loan",36.87872362,18,15.31,13,_,3816.160954,25.39186071,,Yes,27.76584096,,Low_spent_Medium_value_payments,253.8809892,0,0.9458,0.8957,-1.0084,1.2587,-0.3699 -0x1b709,CUS_0x748d,August,19,928-66-6213,Engineer,136359.64,10083.15676,5,3,2,2,"Not Specified, and Payday Loan",16.20072905,12,9.7,7,_,1329.835295,29.79727055,31 Years and 9 Months,No,1536.725925,,Low_spent_Large_value_payments,406.1668774,0,-0.8189,-0.3366,-0.722,-0.1559,-1.6545 -0x1b715,CUS_0x87f6,August,24,708-31-6386,Engineer,21404.24,,4,6,2173,2,"Not Specified, and Auto Loan",,21,15.44,5,Standard,132.26,35.22327606,14 Years and 5 Months,Yes,21.31059941,102.5613207,High_spent_Small_value_payments,324.8967466,0,1.5083,1.7208,1.4864,-0.9592,-0.924 -0x1b721,CUS_0x2472,August,51,530-80-8025,Teacher,78113.56,,0,4,5663,2,"Payday Loan, and Home Equity Loan",,11.74324814,10.28,7,Good,1114.447844,42.66486379,24 Years and 11 Months,No,103.3982068,122.8394291,High_spent_Medium_value_payments,672.4086974,0,1.1576,0.3161,-0.1588,0.1805,-0.6833 -0x1b72d,CUS_0x2a9f,August,33,019-67-3375,Lawyer,31049.54,,10,10,32.88954781,6,"Student Loan, Auto Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Mortgage Loan",,10.82096211,16.91,10,Standard,2173.624939,38.82633386,15 Years and 10 Months,Yes,1468.622932,,Low_spent_Small_value_payments,246.4226935,0,-0.8135,-0.1545,-0.3996,-0.1814,-0.2391 -0x1b739,CUS_0x147c,August,32,504-71-5417,Teacher,39357.45,,3,4,6,3,"Payday Loan, Payday Loan, and Home Equity Loan",4.048105752,4.775617747,8.16,2,_,1344.106242,35.48153732,25 Years and 4 Months,No,85.72237199,83.45784436,Low_spent_Large_value_payments,413.3985336,0,-0.2376,1.5967,-0.2884,-0.1806,-1.4371 -0x1b745,CUS_0x5f30,August,80,293-52-8798,Journalist,119024.04,,4,7,18,5,"Auto Loan, Mortgage Loan, Student Loan, Personal Loan, and Student Loan",21.65093817,14,18.31,8,_,774.89,30.85453095,16 Years and 4 Months,Yes,282.0350689,,High_spent_Medium_value_payments,707.6502437,0,-2.69,0.6863,-0.7281,-0.4102,-2.7395 -0x1b751,CUS_0x1914,August,26,885-45-5921,Lawyer,66149.48,5230.456667,8,10,30,2,"Student Loan, and Home Equity Loan",42.05530402,22.75680501,2.8,12,Bad,2931.985265,29.47284899,13 Years and 8 Months,Yes,101.0284879,63.1422291,High_spent_Large_value_payments,598.8749497,0,-0.2884,0.4768,-1.7516,-0.3263,-1.2461 -0x1b75d,CUS_0x5d0f,August,42,540-27-6174,Doctor,16287.14,1097.261667,8,5,26,2,"Not Specified, and Personal Loan",18.07008789,17,17.39,6,Standard,1802.72,33.21938428,20 Years and 5 Months,NM,20.4904723,45.26796097,High_spent_Medium_value_payments,293.9677334,0,0.2287,0.1306,0.894,0.4417,0.2401 -0x1b769,CUS_0x8888,August,50,821-29-2322,Journalist,30199.19,,2,2,4,4,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, and Credit-Builder Loan",6.04001846,8,3.65,4,Good,1421.82,37.31617772,27 Years and 3 Months,No,51.40716591,203.5432503,Low_spent_Large_value_payments,289.2095004,0,1.231,-0.8036,0.4505,0.3337,0.6926 -0x1b775,CUS_0x36c4,August,28,642-35-7509,Teacher,20817.92,,4,3,1,3,"Home Equity Loan, Personal Loan, and Auto Loan",0,1,5.2,,Good,822.51,26.24980611,,No,28.04896359,148.9006463,Low_spent_Small_value_payments,277.8330568,0,-0.9234,-0.3722,0.0208,-0.4693,-0.5089 -0x1b781,CUS_0xb039,August,42,396-73-6429,Media_Manager,33461.24,2695.436667,5,6,17,2,"Credit-Builder Loan, and Payday Loan",,20,5.84,1,Standard,1048.02,27.43802648,20 Years and 9 Months,Yes,54.23729636,,Low_spent_Small_value_payments,193.6317605,0,-1.0465,0.6118,0.5265,0.8473,-1.0484 -0x1b78d,CUS_0x1616,August,33,232-16-0697,Architect,34357.96,2632.163333,7,4,30,5,"Personal Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",,9,17.88,5,Standard,1751.09,37.6812563,6 Years and 3 Months,Yes,108.8664956,33.64521164,High_spent_Medium_value_payments,370.7046261,0,-0.2392,-1.7576,-0.2441,1.8881,-0.454 -0x1b799,CUS_0x6f3b,August,52,594-88-0270,Writer,30936.76,,0,5,3,100,"Debt Consolidation Loan, and Personal Loan",0,1,2.44,2,Good,761.34,31.35626569,18 Years and 8 Months,No,33.79669338,279.5836036,Low_spent_Small_value_payments,207.7260364,0,0.674,-0.2078,0.6978,1.0972,-0.3807 -0x1b7a5,CUS_0x583c,August,38,836-54-2857,Accountant,31696.73,2363.394167,3,6,15,0,,16.41415757,12,10.4,7,Standard,942.3439643,26.95242102,21 Years and 8 Months,No,0,53.17858212,High_spent_Medium_value_payments,438.5181957,0,-1.2387,-1.519,-0.853,-0.8825,0.9076 -0x1b7b1,CUS_0xb741,August,38,689-14-0832,Developer,97549.92,8275.16,4,6,11,4,"Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",,,19.24,6,_,1213.26,39.6598479,16 Years and 0 Months,Yes,184.2706384,,Low_spent_Medium_value_payments,166.9479832,0,0.5999,-0.3957,-0.075,-1.5817,0.7722 -0x1b7bd,CUS_0x9e68,August,26,366-23-3329,Manager,53315.28,,6,10,18,7,"Personal Loan, Credit-Builder Loan, Not Specified, Personal Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",17.02152896,,14.12,11,_,1605.239475,36.08373931,7 Years and 2 Months,Yes,229.3937847,72.94728074,High_spent_Medium_value_payments,371.9529346,0,-0.2871,1.1773,0.0466,-0.0523,0.7034 -0x1b7c9,CUS_0x5430,August,46,195-78-8098,Developer,71367.5,,5,4,750,0,,,9,0.81,3,Standard,363.59,27.0529359,24 Years and 5 Months,Yes,0,587.7828717,Low_spent_Small_value_payments,288.246295,0,-0.0338,0.7507,-0.5589,-0.5626,0.0652 -0x1b7d5,CUS_0x3ad0,August,50,630-81-4444,Musician,28630.01,,1,100,3,1,Personal Loan,0.874298053,3,7.81,3,Good,1455.62,30.40489451,28 Years and 6 Months,No,16.39547854,65.53983044,High_spent_Medium_value_payments,431.8481077,0,0.1424,0.3408,0.2389,-1.1286,0.0508 -0x1b7e1,CUS_0x586c,August,45,935-19-6848,Lawyer,34534.82,,3,6,7.288361749,100,Credit-Builder Loan,,5,1.16,8,_,132.98,36.82717347,31 Years and 11 Months,No,23.39463468,,Low_spent_Medium_value_payments,360.0249001,0,0.1869,-1.719,0.3302,-0.9086,0.0611 -0x1b7ed,CUS_0x8638,August,33,529-04-6046,Developer,117827.22,9684.935,1,1,4.288361749,2,"Student Loan, and Student Loan",15.78142943,,17.37,5,Good,1285.701182,28.8119552,19 Years and 8 Months,No,120.2385043,1229.13306,Low_spent_Small_value_payments,431.6160347,0,-0.8206,-1.1215,0.1461,-0.2312,-0.5055 -0x1b7f9,CUS_0x65fe,August,23,#F%$D@*&8,Scientist,7423.97,881.6641667,5,8,22.06745738,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,19.42670418,16.95,14,Standard,2547.055094,30.21411355,9 Years and 8 Months,Yes,17.33751299,45.5923107,High_spent_Small_value_payments,258.516305,0,-0.8117,0.3111,0.3903,-0.2424,0.305 -0x1b805,CUS_0x31ce,August,36,854-78-1111,Developer,16864.18,,5,4,18,4,"Credit-Builder Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",8.495904197,5.663350997,15.3,6,Standard,293.461749,38.04253929,24 Years and 9 Months,Yes,44.27184155,,Low_spent_Small_value_payments,244.6509998,0,0.4688,-0.6288,-0.1563,-0.6849,0.9326 -0x1b811,CUS_0x8336,August,40,#F%$D@*&8,Manager,26738.26,2058.188333,7,6,20,6,"Home Equity Loan, Not Specified, Student Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",18.79766775,15.00733023,22.85,,_,943.5152777,27.24985989,6 Years and 8 Months,Yes,86.26335629,234.5820813,Low_spent_Small_value_payments,174.9733958,0,1.8408,0.8165,-0.3034,-0.1806,0.0811 -0x1b81d,CUS_0x4218,August,31,242-43-4434,Journalist,17150.52,1191.21,8,10,32,5,"Debt Consolidation Loan, Student Loan, Payday Loan, Not Specified, and Auto Loan",20.26198216,16,17.04,9,Standard,2515.23,39.26415015,11 Years and 2 Months,Yes,69.9560558,159.026925,Low_spent_Small_value_payments,180.1380192,0,-1.1586,0.5938,0.1802,0.6989,-0.1888 -0x1b829,CUS_0x7dee,August,44,874-66-5717,Developer,69571.3,,340,7,2,0,,0,3,0.98,5,Good,31.8852288,35.23530866,,NM,0,185.4478209,Low_spent_Medium_value_payments,693.589704,0,1.1616,-0.5897,-0.8073,0.1721,0.1554 -0x1b835,CUS_0xc62a,August,37,320-50-8109,Entrepreneur,70088.36,6090.696667,6,7,22.06745738,9,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",,20.08946333,23.6,7,Bad,5576.358802,39.53338806,14 Years and 5 Months,Yes,413.3316484,71.61745397,High_spent_Medium_value_payments,347.4002763,0,-0.4068,0.0468,-0.7073,1.1072,-0.0771 -0x1b841,CUS_0x2e9e,August,50,450-66-5479,Developer,29745.08,2434.756667,1,4,3,0,,12.86147202,11,7.69,2,Good,438.28,41.25240583,27 Years and 9 Months,No,0,85.5636557,Low_spent_Large_value_payments,427.912011,0,0.403,-0.0978,0.431,0.5364,-0.8619 -0x1b84d,CUS_0x38ad,August,34,790-82-5635,Media_Manager,8108.77,535.7308333,6,3,34,6,"Home Equity Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",,19.23081506,10.62,2207,_,2258.320457,25.76904711,6 Years and 0 Months,Yes,29.75018095,21.72914463,Low_spent_Small_value_payments,292.0937578,0,-0.7582,-0.6324,-0.6453,0.5457,-0.5513 -0x1b859,CUS_0xb6bc,August,31,623-00-8384,Architect,58992.92,,4,6,30,6,"Auto Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Student Loan",,16.48663408,8.39,10,Standard,2318.46729,37.03030752,7 Years and 9 Months,NM,162.0301653,188.6061481,High_spent_Medium_value_payments,397.9713532,0,1.5451,0.1125,0.1306,-0.1151,0.6687 -0x1b865,CUS_0x7e9a,August,22,712-34-6888,Lawyer,14249.04,,7,7,26.06745738,7,"Personal Loan, Student Loan, Auto Loan, Mortgage Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",30.69895607,16,6.86,8,Bad,1803.380954,32.82845461,12 Years and 9 Months,Yes,80.08231052,,Low_spent_Small_value_payments,205.3938246,0,1.3993,-0.6633,-0.8795,-0.0679,0.7163 -0x1b871,CUS_0xc6e,August,20,860-37-4299,Engineer,60489.88,4996.823333,4,5,4.288361749,2,"Auto Loan, and Debt Consolidation Loan",15.98826968,15,9.48,4,Standard,465.98,30.74081832,25 Years and 4 Months,No,88.90734464,676.2849008,Low_spent_Small_value_payments,444.4275489,0,0.2927,-0.6957,-0.655,-1.1398,-0.0517 -0x1b87d,CUS_0x887c,August,29,872-72-0456,Engineer,15709.22,,9,7,17.06745738,9,"Personal Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Auto Loan, Not Specified, and Student Loan",,21.91408944,2.15,10,Bad,2446.170764,24.13669969,9 Years and 2 Months,Yes,60.27511459,,Low_spent_Small_value_payments,212.6557433,0,-0.9915,1.1595,-1.1362,1.0618,0.8575 -0x1b889,CUS_0x4f70,August,47,021-30-1756,Musician,106770.21,,5,5,10,1,Auto Loan,0.035432665,1,1.28,1,Good,1286.15,31.36357095,,NM,56.01355898,484.0497531,High_spent_Small_value_payments,633.1884379,0,-0.6829,0.2302,0.2814,-0.8068,0.8868 -0x1b895,CUS_0x6410,August,26,876-38-2936,Writer,59390.4,4948.2,9,5,30.06745738,5,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",,27.96461346,7.04,14,_,5177.25585,38.67165787,9 Years and 11 Months,Yes,204.80544,124.9641344,High_spent_Large_value_payments,378.3301376,0,0.2064,0.1436,-0.8848,0.3738,-1.4426 -0x1b8a1,CUS_0x544a,August,37,331-09-2203,Scientist,14007.82,,9,6,19,5,"Home Equity Loan, Payday Loan, Home Equity Loan, Home Equity Loan, and Not Specified",27.24325656,15,18.9,12,_,3279.57,38.00333935,13 Years and 0 Months,Yes,37.35498229,65.49571845,Low_spent_Medium_value_payments,297.7811326,0,-0.7938,0.0407,-0.7039,0.4548,-0.2722 -0x1b8ad,CUS_0x8a29,August,34,429-57-1086,Mechanic,123085.89,10334.1575,5,7,4.288361749,4,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Auto Loan",9.179791253,10,8.8,3,Good,387.39,39.38411781,,No,379.1967169,799.2766342,High_spent_Medium_value_payments,524.87986,0,-1.5933,0.4944,-1.0757,0.318,-0.9774 -0x1b8b9,CUS_0x24b2,August,45,944-04-5625,Architect,33226.58,,271,4,12,7,"Not Specified, Payday Loan, Personal Loan, Not Specified, Personal Loan, Mortgage Loan, and Not Specified",11.4844791,12,17.26,9,Standard,2090.35,35.6841676,6 Years and 3 Months,Yes,168.4221393,195.4723615,High_spent_Small_value_payments,188.9936659,0,0.7545,1.7813,1.2942,-1.5888,-1.0947 -0x1b8c5,CUS_0xa080,August,80,474-20-1816,Engineer,18802.31,,7,8,19.06745738,8,"Debt Consolidation Loan, Mortgage Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",34.69361794,21,19.7,11,Bad,4639.730954,30.45334325,5 Years and 11 Months,Yes,66.31256649,53.06428489,Low_spent_Small_value_payments,273.1887773,0,-0.1002,-1.1294,0.2971,-0.5609,-0.2914 -0x1b8d1,CUS_0xaf78,August,25,037-62-3280,Journalist,17414.72,,7,6,15,6,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",11.59377769,10.1776306,12.74,11,Standard,2054.370874,34.80404341,17 Years and 8 Months,Yes,65.37437805,,Low_spent_Small_value_payments,197.5399106,0,-0.2996,-0.8554,-1.8735,2.5551,0.5471 -0x1b8dd,CUS_0xad2,August,21,704-82-7933,Developer,26223.67,,5,6,14,3,"Personal Loan, Mortgage Loan, and Personal Loan",10.53760385,8,8.06,9,Standard,462.91,25.19230099,29 Years and 9 Months,Yes,54.76313024,124.1642447,Low_spent_Small_value_payments,349.8032084,0,2.1479,0.1777,0.6581,-1.16,-0.2065 -0x1b8e9,CUS_0x6f0f,August,36,071-03-6872,Mechanic,35076.16,,2,5,7,1,Personal Loan,5.338613822,6,5.97,3,_,487.26,32.74456328,,No,17.80680769,36.14149344,!@9#%8,502.6530322,0,0.9626,0.0778,0.7896,-0.0617,0.0919 -0x1b8f5,CUS_0xb948,August,29,341-45-1822,Writer,129758.24,10865.18667,4,5,17,6,"Payday Loan, Personal Loan, Not Specified, Personal Loan, Debt Consolidation Loan, and Payday Loan",17.6144881,13,7.81,9,Standard,476.91,29.52608447,7 Years and 10 Months,Yes,643.9488879,131.4298264,High_spent_Large_value_payments,551.1399524,0,-0.0879,-0.6216,1.2106,0.5024,0.9354 -0x1b901,CUS_0x3092,August,52,511-20-0282,Mechanic,125415.96,10271.33,2,3,3,3,"Auto Loan, Personal Loan, and Personal Loan",,12,8.04,1,Good,1145.71,39.13903149,33 Years and 5 Months,No,285.4413434,135.8390618,High_spent_Large_value_payments,845.8525948,0,-0.1824,0.9932,0.0966,0.3872,1.9379 -0x1b90d,CUS_0x6829,August,30,659-94-9530,Architect,52977.54,4711.795,8,7,11.28836175,0,Student Loan,,8,12.27,3,Standard,174.2,39.50459487,28 Years and 4 Months,Yes,42.30739172,599.2070315,High_spent_Small_value_payments,509.6025378,0,0.3847,0.0369,-0.4481,-0.0769,-0.0304 -0x1b919,CUS_0x6f71,August,34,445-60-2482,Lawyer,65076,5160,3,5,4,4,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",12.53379484,12,,4,Good,451.78,33.70537752,22 Years and 10 Months,NM,216.2894216,10000,Low_spent_Medium_value_payments,408.6566784,0,-0.6005,0.4841,0.4364,0.8201,0.7398 -0x1b925,CUS_0x788b,August,23,276-42-6585,Musician,146880.84,,1,6,2,1,Auto Loan,9.015168272,7,9.04,1,Good,346.5562284,46.92057454,24 Years and 5 Months,No,765.9721579,151.2089718,High_spent_Large_value_payments,1248.247886,0,1.1937,-0.459,-0.4691,-2.0464,-0.5048 -0x1b931,CUS_0xa071,August,43,441-89-2484,Scientist,54259.42,,8,6,15,7,"Auto Loan, Payday Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Payday Loan",20.57157082,13,18.95,8,_,847.46,27.08837341,12 Years and 8 Months,Yes,181.3110008,,High_spent_Medium_value_payments,429.6945863,0,0.7953,1.3089,0.021,1.0856,1.4854 -0x1b93d,CUS_0x66eb,August,80,652-88-2122,Lawyer,114364.52,9692.376667,2,3,2.288361749,4,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0,1,3.83,4,Good,382.57,30.27214779,32 Years and 5 Months,No,249.3689573,1350.449506,Low_spent_Small_value_payments,79.35666443,0,-0.8765,-0.5538,1.0084,1.2924,0.5765 -0x1b949,CUS_0xbd57,August,37,227-66-2411,Accountant,108223.71,,1,7,2,1,Home Equity Loan,,10,10.54,1,_,940.7666603,33.49981782,30 Years and 5 Months,NM,1095.265876,238.7477864,High_spent_Large_value_payments,856.9693325,0,1.2993,0.4319,-0.9732,1.0292,-0.9355 -0x1b955,CUS_0x6e3b,August,18,188-95-6418,Doctor,89512.38,7460.365,5,5,9,4,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Student Loan",,3750,4.99,11,_,1257.44,28.89212008,8 Years and 8 Months,Yes,232.2340784,228.4993154,!@9#%8,565.3031062,0,1.1195,-1.6581,-2.2858,-0.5403,-0.2797 -0x1b961,CUS_0x9eef,August,43,640-76-5288,Engineer,16574.41,,272,5,11,7,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",20.89970705,16,7.35,10,Standard,307.19,40.40052422,10 Years and 8 Months,Yes,56.12305995,48.73320724,Low_spent_Small_value_payments,303.4638161,0,0.0568,0.6218,-0.1181,-0.0945,0.4541 -0x1b96d,CUS_0x3f37,August,45,966-71-9349,Architect,44620.44,,0,5,11.28836175,2,"Not Specified, and Not Specified",9.304760998,11,4.57,5,Good,253.0473154,34.14700559,26 Years and 8 Months,No,50.78830523,481.4616561,High_spent_Medium_value_payments,493.2418974,0,0.5171,0.9139,-0.3558,-1.4139,-0.0212 -0x1b979,CUS_0x337b,August,44,160-18-8543,Developer,47506.8,,7,7,28,6,"Student Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",28.95691617,19,,9,Bad,1902.31,36.65239235,10 Years and 5 Months,Yes,132.9955385,136.057792,High_spent_Medium_value_payments,386.3366695,0,0.3593,1.4607,-0.5116,-0.2724,-0.4518 -0x1b985,CUS_0x778a,August,47,737-34-8629,Developer,42193.03,3375.085833,3,5,3257,1,Not Specified,6.392970971,8,1.48,2,Good,1218.38,36.0493732,27 Years and 0 Months,No,28.53257496,324.5317111,Low_spent_Medium_value_payments,264.4442973,0,2.2237,1.5566,-1.0447,0.0557,1.9186 -0x1b991,CUS_0xb861,August,41,151-40-2923,Mechanic,77457.32,,8,313,18,3,"Student Loan, Payday Loan, and Payday Loan",38.16905713,17.72030476,15.42,7,Bad,2469.268089,33.92887695,18 Years and 9 Months,Yes,176.5694801,90.36125436,High_spent_Medium_value_payments,599.2469322,0,1.1099,0.7068,1.3837,0.8994,-0.3456 -0x1b99d,CUS_0x3df4,August,80,171-01-9686,Lawyer,32283.05,2845.254167,8,6,16.28836175,0,,8.055303203,8,6.09,6,Standard,291.29,30.01637383,25 Years and 9 Months,Yes,0,498.536684,High_spent_Medium_value_payments,455.9261936,0,-2.046,0.0926,0.0383,1.93,-0.6855 -0x1b9a9,CUS_0x3a43,August,45,414-10-3877,Engineer,38834.79,3045.2325,0,5,10,3,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",9.679529489,11,13.77,1,_,530.62,36.74463767,,NM,74.28977714,172.1958812,Low_spent_Small_value_payments,348.0375916,0,1.4583,1.4914,0.4563,0.0914,-0.5729 -0x1b9b5,CUS_0xbef8,August,53,566-97-9992,_______,105488.68,8848.723333,3,7,12,1,Student Loan,16.62019049,14,10.83,0,_,921.89,28.28186861,18 Years and 10 Months,No,67028,352.5214085,Low_spent_Small_value_payments,738.3439649,0,-0.0564,-2.0916,-1.7508,-0.8394,0.2652 -0x1b9c1,CUS_0x1ebf,August,50,803-57-9764,_______,17830.415,,4,5,4,2,"Not Specified, and Payday Loan",,,14.45,2,_,1281.41,23.3275921,32 Years and 4 Months,No,17.6137367,34.99230159,High_spent_Medium_value_payments,320.3807534,0,-0.6778,2.5207,-0.2206,-0.0179,-1.0061 -0x1b9cd,CUS_0x3fd9,August,50,856-12-9184,Engineer,76325.67,6644.4725,5,4,17,4,"Mortgage Loan, Home Equity Loan, Auto Loan, and Personal Loan",8.869070246,9,8.37,8,Standard,1392.95,39.08930525,23 Years and 8 Months,Yes,148.6160436,48.51059203,High_spent_Large_value_payments,707.3206143,0,0.4924,1.4754,0.531,0.5354,1.4281 -0x1b9d9,CUS_0x83b5,August,56,963-95-5087,_______,99166.77,,1,7,7,0,,,7,7.92,3,Good,1018.027577,35.62294166,27 Years and 6 Months,No,0,,Low_spent_Medium_value_payments,540.9569857,0,1.2259,0.8098,2.4848,-0.2115,1.5208 -0x1b9e5,CUS_0x83a1,August,55,963-21-5491,Lawyer,134328.9,,2,4,7.288361749,0,,,7,3.76,3,Good,579.41,33.10357239,18 Years and 5 Months,NM,0,619.8424336,High_spent_Large_value_payments,1173.102527,0,0.6977,0.5772,1.265,-1.1527,0.0624 -0x1b9f1,CUS_0x97aa,August,27,#F%$D@*&8,Writer,43831.6,3506.633333,6,7,15,2,"Credit-Builder Loan, and Payday Loan",17.88010142,13,11.08,2,_,1231.16,36.47900681,28 Years and 0 Months,No,66.33023759,112.9342797,High_spent_Medium_value_payments,421.3988161,0,-0.2602,-0.6462,1.8376,-2.1624,1.292 -0x1b9fd,CUS_0x9c2e,August,22,342-20-6397,Accountant,19013.31,1571.4425,979,7,27.06745738,5,"Personal Loan, Auto Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",29.42683855,,23.55,10,Bad,3061.470954,28.82625319,5 Years and 5 Months,Yes,48.73686785,82.25921761,Low_spent_Small_value_payments,289.4278766,0,1.1402,2.2309,-0.6264,-1.7169,0.286 -0x1ba09,CUS_0x50b9,August,44,098-51-0027,_______,28805.89,,2,6,10,0,,,3,11.61,4,_,1124.97,33.20253405,18 Years and 4 Months,No,0,29.70545473,High_spent_Medium_value_payments,471.0436286,0,-0.5382,0.4276,-0.8416,-0.7044,-0.689 -0x1ba15,CUS_0x5dd6,August,24,266-63-0560,Mechanic,48302.48,4325.206667,4,4,10,1,Payday Loan,18.59440572,16,7.55,1,_,843.74,30.98035851,24 Years and 4 Months,Yes,35.74867531,150.8132404,High_spent_Medium_value_payments,495.9587509,0,0.6124,-1.011,0.8915,-0.7155,0.3309 -0x1ba21,CUS_0x1255,August,47,#F%$D@*&8,Scientist,38670.08,,4,5,3,100,Credit-Builder Loan,0,2,3.78,2,Good,632.29,38.66287048,22 Years and 8 Months,No,23.92376088,238.1088704,High_spent_Small_value_payments,343.9180354,0,-1.396,-0.3424,0.0872,0.6018,0.0599 -0x1ba2d,CUS_0x9db5,August,43,573-08-7905,Lawyer,18726.61,1840.550833,6,9,34.06745738,5,"Student Loan, Not Specified, Debt Consolidation Loan, Auto Loan, and Auto Loan",42.92283021,19.84660573,6.72,13,Bad,1924.497251,26.28974559,17 Years and 10 Months,Yes,60.88875602,,Low_spent_Large_value_payments,255.443094,0,-0.5012,1.9102,0.7472,0.2056,-0.1061 -0x1ba39,CUS_0x693a,August,32,623-83-1382,Engineer,32194.56,2663.88,7,5,31.06745738,6,"Student Loan, Auto Loan, Auto Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",36.10888304,19.16318634,5.68,14,Bad,2815.196515,33.49268767,12 Years and 2 Months,Yes,156.0748321,213.4715367,Low_spent_Small_value_payments,160.1213432,0,-0.0002,0.109,-0.7875,1.0484,0.9945 -0x1ba45,CUS_0xaf8f,August,25,715-96-0590,Scientist,38073.2,3367.766667,2,4,5,1,Payday Loan,1.556756611,3,1.05,2,Good,196.95,36.82060323,19 Years and 11 Months,No,28.55143269,10000,Low_spent_Large_value_payments,483.1400302,0,0.0442,-0.1158,0.9131,-0.5208,-1.1157 -0x1ba51,CUS_0x3909,August,33,833-13-6967,Entrepreneur,17423.69,1707.974167,6,5,15,0,,19.88673266,14,16.74,7,Standard,1158.96,31.00819057,31 Years and 9 Months,Yes,0,136.01786,Low_spent_Large_value_payments,304.7795567,0,1.0611,1.6199,0.6407,-0.2707,0.1652 -0x1ba5d,CUS_0x4ed5,August,22,643-76-6748,Doctor,29180.37,,4,4,4,2,"Personal Loan, and Mortgage Loan",25.11670713,18,4.14,6,Good,363.07,35.74364843,31 Years and 3 Months,No,43.76933694,,Low_spent_Small_value_payments,216.2657193,0,0.1545,-0.8028,-1.0222,-0.4454,0.8517 -0x1ba69,CUS_0xba5f,August,28,593-19-5532,Writer,50818.83,,6,5,20,6,"Payday Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Payday Loan, and Mortgage Loan",,30.16305744,18.57,6,Bad,1739.574842,38.91854691,18 Years and 10 Months,Yes,192.1088095,84.83190059,High_spent_Medium_value_payments,384.5495399,0,-2.4005,1.4729,-0.0127,0.9268,0.2154 -0x1ba75,CUS_0x3570,August,80,224-76-2218,Mechanic,10458.16,,6,3,1106,2,"Student Loan, and Mortgage Loan",17.96100457,15,9.77,6,Standard,622.4898833,35.71703027,32 Years and 9 Months,No,9.52183701,44.66395422,!@9#%8,311.8171261,0,-0.6458,-1.0126,-0.9483,1.1137,0.1528 -0x1ba81,CUS_0xa86,August,40,965-66-6963,Scientist,40793.33,3174.444167,5,1,8,2,"Mortgage Loan, and Not Specified",1.342462217,4,3.59,,_,1039.62,26.64005375,25 Years and 10 Months,No,57.34345,116.568968,Low_spent_Large_value_payments,413.5319987,0,-0.8132,-0.0494,-0.5397,-0.0684,-2.7157 -0x1ba8d,CUS_0x5171,August,43,686-96-5490,Engineer,8733.57,,8,10,16.95700519,7,"Payday Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Auto Loan, Auto Loan, and Student Loan",37.34479704,22,22.86,,_,2869.760954,39.24283624,12 Years and 5 Months,Yes,1360.507954,18.75739543,Low_spent_Medium_value_payments,246.9640313,0,0.7682,-0.2339,1.8118,-0.2146,0.722 -0x1ba99,CUS_0x947b,August,26,421-90-5640,Teacher,15781.52,1105.126667,10,5,15,9,"Not Specified, Home Equity Loan, Personal Loan, Not Specified, Not Specified, Auto Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",,19,20.83,11,Bad,3779.95,33.43019483,13 Years and 0 Months,Yes,117.1562033,,High_spent_Small_value_payments,196.3823823,0,-1.437,0.0055,-0.6464,1.18,-0.7206 -0x1baa5,CUS_0x58ad,August,48,504-91-2909,Mechanic,129575.12,,3,3,7.288361749,2,"Not Specified, Payday Loan, and Payday Loan",0,1,7.47,5,Good,1119.28,39.10077685,32 Years and 0 Months,No,306.3300203,10419.93746,High_spent_Large_value_payments,755.594942,0,-0.5804,0.2813,-2.4832,0.4072,0.022 -0x1bab1,CUS_0x5470,August,37,374-45-8189,Doctor,21505.64,1548.136667,2,4,2.288361749,0,Not Specified,0,2,1.2,8,Good,188.3998293,23.63499955,15 Years and 11 Months,No,11.6205015,554.5115698,Low_spent_Large_value_payments,294.9520517,0,-0.2878,0.1161,-0.4641,0.4096,0.2811 -0x1babd,CUS_0x1746,August,27,064-20-9607,Media_Manager,36886.06,,4,5,8,7,"Personal Loan, Mortgage Loan, Auto Loan, Personal Loan, Student Loan, Personal Loan, and Mortgage Loan",,21.79534593,17.73,8,Standard,1462.348121,34.41041435,19 Years and 10 Months,Yes,133.1288213,,High_spent_Small_value_payments,343.5579838,0,-0.1382,-0.132,0.6199,-0.4137,0.1812 -0x1bac9,CUS_0x1278,August,20,144-54-2861,Teacher,12416.06,,7,5,20,0,,,15,7.1,7,Standard,899.73,36.51507978,8 Years and 2 Months,Yes,0,10000,Low_spent_Large_value_payments,340.3128538,0,0.5728,-1.388,-0.054,0.4516,0.5621 -0x1bad5,CUS_0xb27a,August,27,744-49-1403,Mechanic,30320.06,,9,524,20,5,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",46.11563359,26.43370046,7.23,16,Bad,2238.748897,24.68755441,18 Years and 6 Months,Yes,110.291282,,Low_spent_Small_value_payments,130.8510032,0,0.563,-0.197,-1.5386,-0.4716,-1.2485 -0x1bae1,CUS_0x84a8,August,43,819-24-5756,Mechanic,87745.92,7166.16,0,1,1.288361749,0,,0,1,11.08,1,Good,207,37.69998893,20 Years and 11 Months,No,0,889.6273414,High_spent_Small_value_payments,506.9261196,0,0.8159,-0.1776,-1.0657,1.0902,0.4503 -0x1baed,CUS_0x59a5,August,28,621-30-0642,Engineer,78056.04,6384.67,7,5,17,1,Not Specified,17.68462045,14,17.6,10,Standard,248.71,33.97884976,19 Years and 0 Months,Yes,44.08837407,223.5949091,Low_spent_Small_value_payments,660.7837169,0,-0.7028,-0.0783,1.3985,0.3584,0.625 -0x1baf9,CUS_0x6f9,August,28,824-83-8952,Scientist,15201,,10,5,17.06745738,6,"Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Not Specified, and Personal Loan",28.59341533,18.0783617,19.25,12,Standard,2321.19556,36.12156205,16 Years and 0 Months,Yes,47.55214793,51.73832909,Low_spent_Small_value_payments,261.664235,0,-1.68,1.0282,1.0374,-0.206,1.1665 -0x1bb05,CUS_0x4884,August,38,436-81-3133,Lawyer,91390.92,7710.91,4,3,9,4,"Home Equity Loan, Auto Loan, Not Specified, and Credit-Builder Loan",15.49884286,15,17.29,5,_,1436.54,34.55812528,24 Years and 9 Months,Yes,190.2343164,541.0492874,Low_spent_Medium_value_payments,319.8073962,0,0.209,-0.3489,0.5495,0.1146,-2.1054 -0x1bb11,CUS_0x127d,August,43,829-08-2773,Doctor,15096.85,,8,6,20,4,"Home Equity Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",,22.80946723,8.76,6,_,2198.80015,32.51655851,17 Years and 3 Months,Yes,35.31355867,63.66859961,High_spent_Small_value_payments,264.3249251,0,0.4107,-0.1977,-0.7863,0.2577,1.2373 -0x1bb1d,CUS_0xe60,August,24,993-46-9445,Journalist,17340.775,1468.064583,6,212,10,2,"Credit-Builder Loan, and Auto Loan",15.16759488,,18.07,1,Standard,252.17,33.87267648,17 Years and 11 Months,Yes,20.39717672,,Low_spent_Small_value_payments,239.8053217,0,1.3419,-1.6647,-0.0171,0.4863,1.5322 -0x1bb29,CUS_0x37bd,August,33,849-09-5390,Lawyer,61796,,3,5,11,3,"Home Equity Loan, Home Equity Loan, and Personal Loan",22.2643298,15,7.64,7,Standard,2472.48,36.92864764,5 Years and 8 Months,NM,117.4625493,129.50139,High_spent_Large_value_payments,495.6027274,0,1.9981,0.2226,-0.1485,0.6502,0.1709 -0x1bb35,CUS_0x6a56,August,19,258-84-8230,_______,33280.98,,8,5,33,5,"Student Loan, Auto Loan, Not Specified, Personal Loan, and Auto Loan",40.10180856,22.84055878,5.97,10,Bad,1839.870467,25.34863469,16 Years and 0 Months,Yes,116.8375646,75.16725643,High_spent_Small_value_payments,361.6366789,0,1.9989,-0.4615,0.289,-1.2759,0.3737 -0x1bb41,CUS_0x8bbd,August,48,216-36-8255,Media_Manager,17880.045,,8,5,1.288361749,4,"Personal Loan, Student Loan, Payday Loan, and Home Equity Loan",14.95187777,15,-0.39,,_,144.7393126,35.2807333,20 Years and 0 Months,NM,35.33935835,512.253095,Low_spent_Small_value_payments,333.0146598,0,-0.5201,-0.4314,0.2542,-0.7454,0.8418 -0x1bb4d,CUS_0x8977,August,80,900-74-3660,Scientist,58051.53,4819.6275,10,7,32,8,"Payday Loan, Auto Loan, Student Loan, Student Loan, Payday Loan, Not Specified, Auto Loan, and Not Specified",21.86279201,,2.48,12,Bad,2410.535687,34.03902734,16 Years and 2 Months,Yes,312.6446573,,High_spent_Medium_value_payments,250.7907569,0,-0.4406,-0.2707,-0.6982,0.1104,-1.6222 -0x1bb59,CUS_0x9148,August,33,805-29-0745,Entrepreneur,17685.03,1358.7525,8,7,2,100,"Debt Consolidation Loan, and Credit-Builder Loan",23.76745314,19,15.63,0,Good,207.1,31.33847123,17 Years and 8 Months,No,27.20744289,91.91568397,Low_spent_Small_value_payments,306.7521231,0,-0.4456,-0.4598,0.2356,-0.0201,-0.318 -0x1bb65,CUS_0xbf8b,August,35,448-71-2454,Writer,9706.79,,4,7,29,6,"Payday Loan, Mortgage Loan, Payday Loan, Payday Loan, Auto Loan, and Auto Loan",,22.89704627,15.4,10,Standard,2375.997195,34.56231283,16 Years and 5 Months,Yes,27.17656384,,Low_spent_Small_value_payments,283.0434903,0,-0.1141,-0.5174,-0.2118,1.0819,-0.5151 -0x1bb71,CUS_0x1efa,August,44,644-35-1776,Accountant,18598.17,,8,7,16,2,"Student Loan, and Auto Loan",18.87481554,15,12.21,8,_,667.98,29.04753522,20 Years and 5 Months,Yes,18.89639633,,Low_spent_Small_value_payments,354.8958292,0,-0.6784,-1.5922,-0.471,-0.4308,0.8966 -0x1bb7d,CUS_0x66b8,August,49,966-15-7988,Musician,87659.42,,3,5,7,100,"Not Specified, Credit-Builder Loan, Home Equity Loan, and Payday Loan",,1,11.36,1,Good,170.5151911,27.7971635,17 Years and 9 Months,No,238.3084578,,Low_spent_Medium_value_payments,245.1693915,0,0.4335,0.8287,0.0572,1.3234,-0.854 -0x1bb89,CUS_0x3afb,August,52,612-21-7903,Engineer,124782.2,10123.51667,5,3,1,1,Home Equity Loan,11.59526598,9,11.49,2,_,1218.72,44.84646314,,No,61.04176845,116.038939,High_spent_Large_value_payments,1075.270959,0,1.1574,-0.4175,0.939,0.1438,0.9661 -0x1bb95,CUS_0x5f3f,August,44,659-25-1819,Doctor,18192.4,1473.033333,9,7,29,7,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",39.79404305,26.29522342,-0.74,11,_,2823.666049,37.39551803,,Yes,94.49669455,,Low_spent_Large_value_payments,202.0713689,0,-2.0585,-0.6233,1.7926,-0.0368,0.7248 -0x1bba1,CUS_0xa05a,August,36,676-39-7887,Musician,7166.995,,10,1453,31.95700519,6,"Auto Loan, Not Specified, Home Equity Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",55.48953855,30.7110869,26.23,12,Bad,3325.745884,30.15154619,2 Years and 2 Months,Yes,1354.23339,31.32169906,Low_spent_Medium_value_payments,241.9195002,0,0.6654,0.5035,-0.6568,-1.3066,0.0157 -0x1bbad,CUS_0xab07,August,18,551-02-6087,Accountant,61651.29,5140.6075,10,9,32.88954781,6,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",32.55719784,24.15806488,3.11,16,Bad,2034.110949,26.88428095,20 Years and 2 Months,NM,1562.679291,367.4961694,Low_spent_Small_value_payments,179.5552083,0,-1.0919,-1.5005,1.6667,0.6523,-0.4089 -0x1bbb9,CUS_0x5873,August,26,608-02-2079,Developer,40782.69,3157.5575,2,6,7,2,"Payday Loan, and Student Loan",12.1034891,9.11491179,7.68,3,Good,1398.020618,25.70835069,,No,39.54899575,,High_spent_Large_value_payments,470.7394511,0,-0.2213,1.6325,-1.652,0.7227,-1.6652 -0x1bbc5,CUS_0x55f5,August,42,897-29-6692,Journalist,27581.59,,3,7,13,7,"Not Specified, Home Equity Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",,14,10.34,6,Standard,1005.37,35.9620826,12 Years and 10 Months,Yes,103.3174419,71.53277784,High_spent_Medium_value_payments,277.2963636,0,0.8527,1.9646,-1.948,-0.1403,-0.0374 -0x1bbd1,CUS_0x9b20,August,36,746-63-3604,Entrepreneur,28033.88,,8,10,32.88954781,100,"Personal Loan, Payday Loan, Personal Loan, Student Loan, Mortgage Loan, Auto Loan, Not Specified, and Payday Loan",49.36690415,28.02484529,16.46,7,Bad,4018.191413,23.06035363,2 Years and 10 Months,Yes,1424.191506,,Low_spent_Large_value_payments,205.5453698,0,0.4536,-0.5065,-0.8527,0.3186,0.6324 -0x1bbdd,CUS_0x5344,August,55,566-56-7727,Engineer,22330.07,,1,6,12,1,Debt Consolidation Loan,,3,11.93,4,Good,436.5345254,24.08430399,19 Years and 9 Months,No,11.70956163,181.5877077,Low_spent_Large_value_payments,269.5339949,0,-0.1044,0.5573,1.0781,-1.1705,-0.4279 -0x1bbe9,CUS_0x2863,August,50,150-77-6507,Architect,80011.64,6824.636667,7,6,17.28836175,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",17.93640316,16,17.8,12,Standard,689.7341696,30.13334381,5 Years and 10 Months,NM,154.5616136,600.9805742,High_spent_Large_value_payments,612.279899,0,-2.3601,0.5963,1.2775,-2.0605,0.9778 -0x1bbf5,CUS_0xc4b6,August,32,#F%$D@*&8,Musician,119491.24,9782.603333,1,5,10,2,"Mortgage Loan, and Payday Loan",0,1,10.34,3,Good,735.75,41.22553384,17 Years and 6 Months,No,118.0607845,337.5098549,High_spent_Medium_value_payments,772.6896939,0,1.9728,1.9687,-1.1432,-0.1495,-1.3377 -0x1bc01,CUS_0x56a4,August,21,263-81-4607,Entrepreneur,9762.175,,8,8,20.06745738,3,"Payday Loan, Debt Consolidation Loan, and Payday Loan",37.33834613,20,4.06,7,Bad,1960.750954,24.88747552,7 Years and 5 Months,Yes,17.99136472,,Low_spent_Large_value_payments,257.2240279,0,0.4006,-0.4889,0.495,0.8576,-2.0248 -0x1bc0d,CUS_0x36ee,August,47,427-11-3112,Teacher,14842.65,947.0099095,8,5,8,2,"Not Specified, and Mortgage Loan",15.58989313,11,11.22,6,_,1086.11,27.63727808,,Yes,122.2240003,106.7798061,Low_spent_Small_value_payments,273.2625342,0,0.4669,-0.0048,1.9893,0.2016,-1.2068 -0x1bc19,CUS_0x4a78,August,34,383-45-6241,Architect,17785.93,,3,7,1,2,"Debt Consolidation Loan, and Auto Loan",7.91907969,8.535430547,1.74,6,Good,973.7385317,28.52417621,26 Years and 4 Months,No,14.92184685,91.97880178,Low_spent_Large_value_payments,331.5154347,0,-0.5581,0.2271,-0.9842,1.2796,-1.1388 -0x1bc25,CUS_0xbd33,August,38,801-12-1492,Accountant,75503.88,5935.242676,3,5,15,2,"Student Loan, and Home Equity Loan",22.33168206,15,17.02,5,Standard,1427.65,24.96291302,,Yes,704.4693128,405.3923327,High_spent_Small_value_payments,380.2846785,0,0.314,0.9608,0.576,-0.1873,1.4215 -0x1bc31,CUS_0x6247,August,30,589-90-4487,Teacher,100505.49,8538.4575,7,6,17,404,"Student Loan, Personal Loan, and Mortgage Loan",21.71265033,,6.85,2,Standard,1309,28.38064795,31 Years and 10 Months,NM,165.5100008,332.3438327,High_spent_Medium_value_payments,605.9919166,0,-0.3167,-1.3168,0.5585,0.0663,-0.5938 -0x1bc3d,CUS_0x8ebd,August,34,029-29-7952,Musician,8906.93,780.2441667,6,5,21,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Auto Loan, and Auto Loan",34.00238965,22,4.26,8,Bad,2123.11,33.32416102,15 Years and 4 Months,NM,29.121219,49.21596647,High_spent_Small_value_payments,259.6872312,0,-0.0961,0.0201,-1.1506,-0.3218,-0.3849 -0x1bc49,CUS_0xac05,August,44,531-58-6732,Lawyer,91825.8,7836.15,850,6,19,1,Student Loan,21.39921443,16,11.52,8,Standard,785.7085267,42.34104718,24 Years and 2 Months,Yes,48.17164182,11150.9315,High_spent_Small_value_payments,819.3194359,0,-1.5699,-0.8071,-1.5602,-0.5852,1.2118 -0x1bc55,CUS_0x9192,August,80,634-41-0914,Media_Manager,61238.94,,8,3,7,3,"Not Specified, Payday Loan, and Student Loan",12.34604959,9,13.29,5,Standard,864.0528913,36.8810066,17 Years and 3 Months,Yes,606.9522218,129.901953,High_spent_Medium_value_payments,524.5846307,0,1.3066,1.0028,0.8604,-0.7226,0.7092 -0x1bc61,CUS_0xae75,August,26,931-83-8333,Media_Manager,10222.15,899.8458333,6,5,18,9,"Debt Consolidation Loan, Personal Loan, Not Specified, Credit-Builder Loan, Auto Loan, Not Specified, Mortgage Loan, Not Specified, and Student Loan",,22,27.34,9,Bad,4473.83,29.8182628,12 Years and 0 Months,Yes,54.12125838,19.65920238,High_spent_Medium_value_payments,266.2041226,0,-0.3992,1.1018,-1.1129,0.9411,-0.8401 -0x1bc6d,CUS_0x82c2,August,49,044-29-7570,Entrepreneur,31151.46,2479.955,0,3,9,3,"Payday Loan, Personal Loan, and Payday Loan",,7.251787933,10.47,5,Good,70.04183209,34.16413733,16 Years and 2 Months,No,42.49485264,90.69369116,High_spent_Medium_value_payments,364.8069562,0,-1.1331,1.2651,-1.1334,-0.0957,-0.5633 -0x1bc79,CUS_0x7672,August,34,030-11-8911,Accountant,122332.04,9219.325793,1,1,647.2883617,0,,,8,4.41,2,Good,605.35,40.35180677,18 Years and 4 Months,No,1091.010873,,High_spent_Medium_value_payments,953.5512218,0,-0.4674,-1.0625,0.5853,0.1685,0.177 -0x1bc85,CUS_0x1499,August,55,440-22-8350,Engineer,100887.72,8271.31,5,7,19,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Payday Loan",16.67440153,14,11.92,1,_,432.9252437,27.53617371,20 Years and 5 Months,No,257.3363561,618.2200917,High_spent_Small_value_payments,282.7332242,0,0.2274,-0.0957,1.5141,-0.2672,-0.4702 -0x1bc91,CUS_0x8239,August,49,276-58-8741,Developer,84402.42,7044.535,3,3,4,3,"Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",1.03864709,2.320996333,1.17,0,Good,1054.656014,38.08989752,33 Years and 0 Months,NM,176.0584658,265.2071339,Low_spent_Medium_value_payments,543.1879003,0,0.199,0.9278,-0.1604,-1.936,-0.1408 -0x1bc9d,CUS_0xb987,August,18,738-03-2141,Scientist,10186.535,,8,7,30.06745738,5,"Personal Loan, Student Loan, Personal Loan, Mortgage Loan, and Student Loan",,14.44922306,7.18,11,Standard,2989.224717,27.14519559,15 Years and 8 Months,Yes,28.82494915,35.6316277,Low_spent_Small_value_payments,254.1109269,0,0.0052,1.0415,0.9269,1.7784,-0.4635 -0x1bca9,CUS_0x927e,August,54,445-77-0108,Writer,31306.48,2431.873333,9,7,7,0,,21.07796693,16,9.38,2213,Standard,1026.13,38.23464887,20 Years and 2 Months,Yes,0,266.2620486,Low_spent_Small_value_payments,266.9252847,0,-0.2351,0.0392,0.9132,-0.2289,0.5004 -0x1bcb5,CUS_0x1c98,August,19,390-87-7592,Entrepreneur,44297.43,3701.4525,9,7,16.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, Payday Loan, Home Equity Loan, Student Loan, and Mortgage Loan",36.28215768,24,19.28,12,Bad,4302.120954,28.67583987,7 Years and 9 Months,Yes,217.1968675,41.6560272,High_spent_Medium_value_payments,334.5720674,0,-0.2391,1.8074,0.4458,0.1976,2.4217 -0x1bcc1,CUS_0xa9d3,August,26,877-43-1063,Lawyer,26978.17,2419.847723,6,3,8,1,Mortgage Loan,,16.21065707,8.37,7,Standard,1387.08888,36.90678951,17 Years and 10 Months,No,141.2505507,157.0866205,Low_spent_Small_value_payments,366.0140226,0,0.0786,2.249,-0.8489,-1.1331,-0.6534 -0x1bccd,CUS_0x2317,August,18,996-30-8982,Mechanic,47765.76,3830.48,5,3,12,0,,10.46561312,6,13.97,5,Standard,1447.09,25.41949234,19 Years and 5 Months,Yes,0,129.9147331,High_spent_Medium_value_payments,503.1332669,0,1.4501,2.2999,0.4379,0.1681,-2.111 -0x1bcd9,CUS_0xb12,August,39,940-14-8700,Media_Manager,37002.58,,6,7,17.06745738,5,"Auto Loan, Personal Loan, Not Specified, Personal Loan, and Personal Loan",,15,28.3,7,Bad,3445.520954,27.63332939,12 Years and 5 Months,Yes,139.5095619,,Low_spent_Large_value_payments,126.593421,0,-0.5746,-0.345,0.0198,0.4795,0.6148 -0x1bce5,CUS_0xbaa8,August,54,850-41-4179,Accountant,77963.9,,4,4,8,3,"Home Equity Loan, Mortgage Loan, and Student Loan",,10,2.34,1,Good,1301.986095,36.72304629,27 Years and 2 Months,No,136.825947,67.07269487,!@9#%8,716.2030921,0,0.7265,0.6866,0.6629,1.2209,0.5393 -0x1bcf1,CUS_0x3371,August,22,581-39-0550,Architect,61632.99,4856.0825,10,9,27.88954781,7,"Auto Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, and Mortgage Loan",40.78855739,26.24096152,14.88,12,Bad,1853.500851,27.15153007,9 Years and 10 Months,Yes,1635.048405,,High_spent_Small_value_payments,151.490516,0,-0.6604,-1.7867,-0.8948,1.1214,-0.8105 -0x1bcfd,CUS_0x7ba5,August,21,257-56-3896,Writer,53266.23,4310.8525,4,6,16,4,"Student Loan, Student Loan, Not Specified, and Payday Loan",,23.17454919,9.62,6,Standard,2252.905873,41.54680783,9 Years and 11 Months,Yes,176.3947606,74.64124472,High_spent_Medium_value_payments,430.0492447,0,-0.1966,0.1885,0.6134,0.5716,0.0017 -0x1bd09,CUS_0x7ace,August,46,279-65-4803,Media_Manager,124847.49,,4,5,0.288361749,0,,10.8246538,10,11.09,2,Good,67.76686893,31.80314767,19 Years and 11 Months,No,0,,Low_spent_Large_value_payments,737.7580111,0,-0.6547,0.2279,-2.0679,1.2128,0.4802 -0x1bd15,CUS_0xb3e,August,40,615-28-5029,Musician,16451.96,,8,5,28.06745738,6,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",,19.39675237,19.9,8,Bad,3789.084659,35.33919206,3 Years and 10 Months,NM,34647,53.21918571,Low_spent_Small_value_payments,262.8483324,0,-0.477,1.012,-0.7808,0.8775,-0.5452 -0x1bd21,CUS_0x5aac,August,26,818-36-4343,Journalist,30385.56,2374.13,0,6,9,3,"Not Specified, Home Equity Loan, and Auto Loan",10.84659495,11,11.09,0,Good,1444.1,31.93644163,31 Years and 2 Months,No,71.2615631,78.96447461,High_spent_Medium_value_payments,337.1869623,0,0.178,-1.2762,0.8956,-0.3945,-1.7825 -0x1bd2d,CUS_0x7c97,August,45,115-44-9898,Developer,44328.93,3452.0775,8,8,781.8895478,9,"Personal Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Auto Loan, Student Loan, and Personal Loan",,21.83879227,18.04,7,Bad,5281.982774,33.8002259,5 Years and 11 Months,Yes,1611.601017,226.6506991,Low_spent_Small_value_payments,102.6259523,0,0.8319,0.8218,-0.1831,-0.4952,-0.4854 -0x1bd39,CUS_0xd8e,August,29,773-23-5820,Scientist,14638.38,1295.865,7,5,8,3,"Debt Consolidation Loan, Home Equity Loan, and Not Specified",23.89032832,16,8.4,7,Good,392.5888214,39.45916385,29 Years and 0 Months,NM,27.78318655,49.616704,High_spent_Medium_value_payments,308.9882391,0,-0.4671,-0.59,1.3969,-1.0554,0.3375 -0x1bd45,CUS_0x940d,August,32,804-37-1515,Lawyer,25415.42,2339.951667,7,6,11,1,Auto Loan,18.28843686,,8.45,5,Standard,1272.08,29.81174855,20 Years and 9 Months,No,12.23210317,32.58734934,High_spent_Medium_value_payments,439.1757142,0,0.0036,0.5638,-1.1762,0.101,0.9259 -0x1bd51,CUS_0x94aa,August,34,607-98-0542,Media_Manager,15277.06,1225.088333,8,8,28.88954781,6,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Home Equity Loan",,,25.22,13,Bad,4861.83,35.75208303,8 Years and 0 Months,NM,1393.995032,15.00928033,High_spent_Large_value_payments,259.1744392,0,1.044,1.6057,0.0935,-0.4241,1.3944 -0x1bd5d,CUS_0x667d,August,26,446-93-1487,Developer,18413.13,,7,9,19.06745738,2,"Auto Loan, and Personal Loan",,18.02979974,10.09,12,Bad,2461.906222,30.74571875,13 Years and 11 Months,Yes,16.31620166,91.96234438,Low_spent_Medium_value_payments,273.343916,0,1.4502,-0.404,-0.2099,1.2385,0.844 -0x1bd69,CUS_0x41f5,August,33,749-34-5405,Doctor,10701.525,651.79375,3,5,19,3,"Auto Loan, Payday Loan, and Personal Loan",9.112809345,10,5.95,3,Standard,158.95,35.99043877,,No,13.791205,37.48846862,Low_spent_Large_value_payments,283.8997014,0,-0.2561,1.114,1.4292,-1.2742,0.4786 -0x1bd75,CUS_0x95a1,August,33,098-86-1902,Scientist,16218.32,1098.526667,6,6,21,5,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",,21,8.98,10,Bad,4466.33,32.97764197,8 Years and 8 Months,Yes,64.53311371,52.07777713,Low_spent_Small_value_payments,283.2417758,0,-1.0267,-0.1539,-0.6926,0.3067,-0.7473 -0x1bd81,CUS_0x8aa3,August,35,588-36-4233,Engineer,64977.54,5189.795,5,6,3,3,"Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",5.024745465,8,8.26,1,_,1248.25,37.57590654,30 Years and 8 Months,No,159.7070424,389.0600853,Low_spent_Small_value_payments,260.2123723,0,0.2205,-0.5558,-0.2338,0.1286,-1.0891 -0x1bd8d,CUS_0x2141,August,38,148-28-8279,Entrepreneur,14235.22,975.2683333,10,8,25,2,"Mortgage Loan, and Not Specified",,27.06383431,-0.16,11,Bad,2373.379577,23.80607549,13 Years and 0 Months,Yes,18.49661877,63.98417752,High_spent_Small_value_payments,275.046037,0,-0.7281,-0.2986,-0.2757,-1.7173,-0.9476 -0x1bd99,CUS_0x2fb9,August,25,421-61-6452,Writer,41048.83,3379.735833,4,6,11,4,"Payday Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",7.515895147,7,5.23,4,_,1082.8,25.9321477,23 Years and 4 Months,No,110.698801,137.7597332,High_spent_Medium_value_payments,339.5150491,0,2.2624,0.011,0.3258,0.2403,-0.5235 -0x1bda5,CUS_0x5efc,August,34,485-85-8283,Writer,37029.04,,6,7,27.06745738,5,"Payday Loan, Student Loan, Payday Loan, Student Loan, and Student Loan",48.93675399,30.19631998,13.22,10,Bad,2632.995111,24.12207548,12 Years and 0 Months,Yes,117.1392503,136.9577421,High_spent_Medium_value_payments,300.0580529,0,0.6147,-0.1588,0.9962,0.3236,0.6796 -0x1bdb1,CUS_0x4430,August,41,478-10-0136,Writer,47422.23,4077.8525,8,8,19,4,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",35.15644505,26.56680937,3.19,10,Bad,1423.519331,30.83099948,16 Years and 3 Months,Yes,130.4577524,63.43049123,!@9#%8,453.8970063,0,-0.2767,0.1963,0.9972,-0.4707,-0.8767 -0x1bdbd,CUS_0x527f,August,54,657-38-9851,Journalist,114300.32,9644.026667,7,6,5,1,Debt Consolidation Loan,,10,10.09,8,_,518.86,36.96624283,16 Years and 9 Months,Yes,61.8252353,477.2156033,Low_spent_Medium_value_payments,705.3618281,0,-1.1859,-0.6363,-1.8769,0.96,0.3019 -0x1bdc9,CUS_0x530c,August,45,273-49-2019,Scientist,42785.88,,3,4,16,100,Not Specified,15.69887439,16,2.46,2,Standard,1240.45,25.55271871,25 Years and 3 Months,No,25.51917687,202.8769231,Low_spent_Medium_value_payments,418.7529001,0,-0.4364,-0.6044,0.5328,0.8196,0.2099 -0x1bdd5,CUS_0x260b,August,19,858-17-9511,Doctor,81066.76,7043.563333,8,8,24,2,"Not Specified, and Home Equity Loan",35.66306006,18.1122524,12.53,11,_,2619.105013,25.82514988,8 Years and 2 Months,Yes,108.4467376,193.1447698,Low_spent_Medium_value_payments,682.764826,0,-1.4709,0.7791,0.4845,-0.9877,0.7074 -0x1bde1,CUS_0xad31,August,25,769-35-0460,_______,16043.16,1224.93,4,8,31.95700519,6,"Credit-Builder Loan, Payday Loan, Payday Loan, Student Loan, Payday Loan, and Auto Loan",34.05998236,23.52743263,12.12,7,_,2829.776363,32.66659197,11 Years and 2 Months,Yes,1380.021562,,High_spent_Small_value_payments,244.7061558,0,0.3372,0.7293,-1.3953,-0.4454,0.4813 -0x1bded,CUS_0x8ee2,August,36,391-59-4407,Teacher,44599.14,,0,7,4,3,"Payday Loan, Not Specified, and Student Loan",14.03535612,,9.99,4,Good,694.02,36.52311977,,No,83.75037958,,Low_spent_Small_value_payments,217.8249729,0,1.2265,0.8755,-1.1961,0.2204,0.0129 -0x1bdf9,CUS_0x5637,August,30,466-32-4777,Entrepreneur,10196.61,574.7175,8,7,20,6,"Student Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",,17.04059169,14.88,9,Standard,800.6262873,36.76688096,15 Years and 3 Months,Yes,39.5522547,28.22405177,Low_spent_Small_value_payments,279.6954435,0,-0.2044,-0.3243,0.6673,-0.4338,-2.9521 -0x1be05,CUS_0xba4c,August,21,507-44-8168,Lawyer,81418.74,7065.895,1,4,10,100,"Home Equity Loan, and Not Specified",0,3,8.46,1,Good,1207.078005,22.77474216,21 Years and 2 Months,No,121.3785047,621.9227006,Low_spent_Medium_value_payments,300.2673895,0,-0.1789,-0.3224,-2.2545,-0.9256,0.6609 -0x1be11,CUS_0x2fd6,August,80,825-63-0662,Musician,41933.1,,8,10,24,3,"Personal Loan, Home Equity Loan, and Not Specified",44.1521379,27,0.64,17,_,2034.22,24.98999629,12 Years and 6 Months,Yes,64.59604055,38.37515481,High_spent_Large_value_payments,509.6713046,0,0.0898,-0.2496,0.9246,1.5364,1.4572 -0x1be1d,CUS_0xa250,August,31,910-69-7452,Engineer,114987.15,9517.2625,5,4,4,0,,2.335690795,3,9.99,6,Good,1353.495471,33.96410397,19 Years and 9 Months,No,0,168.3521315,High_spent_Large_value_payments,1047.997481,0,0.3527,-1.6407,-0.3469,0.7184,0.2494 -0x1be29,CUS_0x161b,August,38,451-95-0188,Manager,44732.58,3433.242498,6,3,28,3,"Student Loan, Debt Consolidation Loan, and Not Specified",20.31925026,12,19.48,8,Standard,2298.88,35.95997814,9 Years and 0 Months,NM,240.3357268,,High_spent_Medium_value_payments,393.0054945,0,0.1684,-1.3235,0.9631,-0.3957,-0.1358 -0x1be35,CUS_0x80df,August,39,421-37-9507,Developer,17692.555,1711.379583,5,4,9,1,Student Loan,26.03191144,20,,6,_,743.7441135,32.12928344,25 Years and 2 Months,Yes,11.82683948,60.91053304,High_spent_Medium_value_payments,356.0678455,0,-1.1108,-1.6848,-0.6408,-1.1716,-0.3018 -0x1be41,CUS_0x9e45,August,19,879-58-0155,Doctor,16252.485,,1,4,2,1,Personal Loan,5.855003771,9,16.09,1,Good,1216.31,38.58019132,25 Years and 3 Months,NM,11.69835833,,Low_spent_Small_value_payments,310.889841,0,0.6025,-2.3143,-0.1288,1.8109,-1.4099 -0x1be4d,CUS_0x730d,August,53,410-59-8935,Accountant,16243.105,1111.592083,3,3,12,2,"Payday Loan, and Auto Loan",10.57117288,11,7.43,2,Good,877.04,35.4634365,15 Years and 8 Months,No,20.86533767,10000,High_spent_Small_value_payments,300.00944,0,-0.4503,0.4652,-1.8513,-1.0945,-0.5413 -0x1be59,CUS_0x4322,August,18,583-35-1776,Manager,56103.09,4948.2575,8,7,16.06745738,6,"Mortgage Loan, Student Loan, Mortgage Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",,24,20.7,11,Bad,5030.370954,36.4120068,5 Years and 6 Months,Yes,268.8240526,,High_spent_Medium_value_payments,336.1158207,0,-0.0231,0.9203,-0.3696,1.3929,-0.6497 -0x1be65,CUS_0x3d56,August,39,313-51-0955,Media_Manager,14977.93,1293.160833,8,6,32.06745738,8,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Personal Loan, Mortgage Loan, and Payday Loan",27.45090568,18,18.63,10,_,5080.950954,39.21360482,13 Years and 3 Months,Yes,72.66347359,,Low_spent_Medium_value_payments,250.3302299,0,-1.2585,0.7402,-0.3624,0.3953,0.966 -0x1be71,CUS_0x6487,August,27,585-55-8857,Developer,129200.12,10841.67667,7,3,11,3,"Payday Loan, Payday Loan, and Not Specified",,21.94351411,15.71,11,Standard,1605.351236,30.19165468,12 Years and 5 Months,Yes,205.7729199,208.0796713,High_spent_Large_value_payments,910.3150755,0,-1.618,0.0983,-0.8543,0.7407,-0.1608 -0x1be7d,CUS_0x5e2d,August,20,194-13-4239,Mechanic,20969.505,,5,1407,12,4,"Home Equity Loan, Not Specified, Mortgage Loan, and Not Specified",11.66953407,10,7.27,3,_,868.99,26.10619281,15 Years and 11 Months,No,57.70929347,,Low_spent_Small_value_payments,288.8981951,0,-2.431,0.2809,0.1618,0.8551,-1.4596 -0x1be89,CUS_0xbcf0,August,41,150-50-6398,Journalist,49465.98,4256.165,4,4,16,7,"Mortgage Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Auto Loan",16.99502825,12.19666169,12.69,9,Standard,1885.272616,36.04073386,15 Years and 11 Months,Yes,252.956095,100.5033929,High_spent_Large_value_payments,312.1570121,0,0.0794,0.0182,0.3966,-0.3351,-1.4907 -0x1be95,CUS_0xa4c3,August,22,790-26-8070,_______,32179.72,,8,10,34,4,"Debt Consolidation Loan, Auto Loan, Auto Loan, and Not Specified",19.9396549,,15.3,13,Standard,2957.43718,39.41487633,11 Years and 0 Months,NM,87.66662097,51.86563255,!@9#%8,403.3320798,0,-1.2179,1.8114,-0.3206,-0.1912,-0.6056 -0x1bea1,CUS_0x956b,August,40,775-64-4038,Teacher,14482.5,1363.875,7,7,20.06745738,4,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Auto Loan",23.3473032,15.29988466,9.27,12,Standard,2314.854675,37.13991854,,NM,27.21913289,,High_spent_Small_value_payments,249.8769711,0,0.3146,-1.5457,-0.4186,-0.7177,1.9188 -0x1bead,CUS_0x9e80,August,39,209-05-4739,Journalist,104455.02,8892.585,4,4,7.288361749,2,"Debt Consolidation Loan, Auto Loan, and Payday Loan",,,3.94,9,Good,1090.600597,34.23633743,28 Years and 8 Months,No,215.1103231,982.8765961,High_spent_Small_value_payments,446.4925719,0,-0.6213,1.0382,-1.0396,0.0873,-0.0362 -0x1beb9,CUS_0xc356,August,24,030-69-1962,Mechanic,83619.16,7268.263333,10,6,26,9,"Credit-Builder Loan, Mortgage Loan, Payday Loan, Auto Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",50.59960744,27.00461179,28.26,11,Bad,3388.094277,34.6340161,10 Years and 10 Months,Yes,584.3944456,573.0888076,Low_spent_Medium_value_payments,,0,2.7512,0.7034,-0.3394,0.0064,-0.732 -0x1bec5,CUS_0x2e8d,August,32,026-76-5731,Manager,57396.72,5074.06,3,3,12.28836175,2,"Personal Loan, and Mortgage Loan",8.987878038,9,11.8,4,_,351.72,27.22488908,23 Years and 0 Months,NM,61.01002645,,Low_spent_Small_value_payments,183.1788883,0,0.6324,0.8649,0.8638,0.1262,0.876 -0x1bed1,CUS_0x720f,August,37,689-78-3889,Mechanic,58979.34,,7,7,16.06745738,5,"Credit-Builder Loan, Auto Loan, Student Loan, Not Specified, and Mortgage Loan",32.40803109,21,24.51,12,Bad,3643.130954,39.21894899,,Yes,172.247456,120.6917168,Low_spent_Large_value_payments,442.2350393,0,0.2611,-0.7301,1.1394,0.6595,-1.4046 -0x1bedd,CUS_0x5a7d,August,41,352-85-9103,Entrepreneur,33694.79,,8,3,20,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",90,3099,4.82,1,Standard,472.42,32.3463857,16 Years and 0 Months,No,65.81273941,241.3439457,Low_spent_Large_value_payments,262.8332316,0,0.2328,1.5758,-1.5988,0.2987,-0.8708 -0x1bee9,CUS_0x5190,August,51,916-40-9751,Doctor,29042.27,,5,662,7,3,"Auto Loan, Mortgage Loan, and Student Loan",14.63763118,12,7.64,5,Good,94.5,30.16638074,25 Years and 10 Months,No,48.80143974,,Low_spent_Small_value_payments,214.0898316,0,0.7802,-1.6169,0.7831,1.1065,0.3268 -0x1bef5,CUS_0x9bd6,August,18,617-54-3571,Teacher,19531.18,1679.598333,7,10,26.06745738,5,"Auto Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",19.13422717,13,20.74,6,Bad,3270.830954,35.24656454,1 Years and 4 Months,Yes,68.09035731,,Low_spent_Small_value_payments,178.3187073,0,0.0914,3.1727,0.2704,1.0046,0.5181 -0x1bf01,CUS_0x4384,August,35,689-32-7865,Accountant,14985.46,1049.788333,7,4,10.06745738,7,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Auto Loan, Payday Loan, and Mortgage Loan",,11,17.67,8,Standard,2100.890954,40.84504001,6 Years and 2 Months,Yes,76.60426039,25.17531105,High_spent_Large_value_payments,216.4789739,0,-0.5022,0.6451,-0.6518,-0.3318,-0.8634 -0x1bf0d,CUS_0x962f,August,48,545-49-4921,Mechanic,97838.31,8150.1925,0,3,3.288361749,0,Auto Loan,,5,7.77,3,Good,56.47,38.95987385,16 Years and 0 Months,No,74.84749497,729.9188304,High_spent_Medium_value_payments,680.1903856,0,-1.2687,-1.3432,-1.8634,0.9621,1.0902 -0x1bf19,CUS_0x6c9e,August,30,769-05-9517,Journalist,60882.9,,6,6,23,3,"Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",49.23015173,24.10745687,2.41,16,Bad,1976.858468,24.67565751,15 Years and 3 Months,Yes,133.800726,304.1443742,Low_spent_Large_value_payments,347.8123998,0,-1.2833,1.3029,-0.1472,0.0519,0.9248 -0x1bf25,CUS_0x86d9,August,54,828-32-1568,Accountant,20868.005,,2,5,826,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",3.06968878,7,6.13,2,Good,811.2612322,24.25634882,,NM,48.64700916,11169.87221,Low_spent_Small_value_payments,329.6348294,0,2.4902,0.2,1.002,0.272,1.1561 -0x1bf31,CUS_0x5d3f,August,41,160-35-8583,Architect,100127.82,8277.985,4,7,20,2,"Personal Loan, and Debt Consolidation Loan",10.83148926,9,0.51,4,Standard,520.84,31.36644506,,No,85.09912018,598.4047453,Low_spent_Small_value_payments,434.2946345,0,0.003,1.8896,-0.343,-1.4333,1.2147 -0x1bf3d,CUS_0x380f,August,37,420-92-2201,Mechanic,32154.28,2523.523333,3,6,32,3,"Home Equity Loan, Not Specified, and Debt Consolidation Loan",16.11807454,,16.54,6,Standard,2967.604575,31.22376895,6 Years and 6 Months,Yes,74.06279105,29.76690368,High_spent_Medium_value_payments,398.5226386,0,-0.994,-0.2283,-1.1719,0.4438,0.7791 -0x1bf49,CUS_0xb428,August,27,780-95-9814,Writer,18771.54,,10,6,25.06745738,5,"Student Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Personal Loan",40.85977249,26.01796154,17.17,16,Bad,4446.242232,32.71368416,10 Years and 3 Months,NM,46.59855012,39.25928017,High_spent_Medium_value_payments,304.4513818,0,-0.3178,-1.0309,-0.8065,0.9875,0.6021 -0x1bf55,CUS_0x48c0,August,48,272-75-4382,Manager,41898.87,3669.5725,5,194,12,0,,6.12072968,8,1.35,5,Good,850.9801572,33.15525403,29 Years and 8 Months,No,0,260.3030978,High_spent_Small_value_payments,403.2586618,0,0.0441,0.9987,-1.4026,-1.1676,0.4152 -0x1bf61,CUS_0x87b6,August,45,987-86-9689,Lawyer,10024.955,,4,4,11,7,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, and Personal Loan",27.48848109,20,15.03,7,Standard,1157.35,30.28067927,19 Years and 6 Months,Yes,47.27915849,94.01621174,Low_spent_Small_value_payments,242.8459214,0,-0.1762,-0.0028,-1.0752,0.963,-0.5253 -0x1bf6d,CUS_0x5505,August,45,783-68-9980,Doctor,101607.27,8655.2725,4,5,10,4,"Student Loan, Personal Loan, Student Loan, and Mortgage Loan",0,2,0.63,7,Good,1042.82,38.52251351,31 Years and 8 Months,No,228.3827106,209.8403729,High_spent_Medium_value_payments,677.3041665,0,-2.5996,-1.1131,-1.7137,-0.7505,-0.841 -0x1bf79,CUS_0x272c,August,23,972-89-0621,Accountant,12585.205,,8,6,18,3,"Payday Loan, Debt Consolidation Loan, and Personal Loan",26.01463044,18,12.33,13,Standard,1259.3,35.11590602,14 Years and 3 Months,Yes,24.40861897,,Low_spent_Medium_value_payments,309.3302261,0,-1.3537,-0.5168,0.5834,-0.5516,0.4674 -0x1bf85,CUS_0x227e,August,21,529-79-5221,Teacher,58729.36,5114.113333,4,3,15,5,"Payday Loan, Auto Loan, Not Specified, Auto Loan, and Not Specified",90,2080,19.48,5,Standard,1568.33,35.44940673,10 Years and 3 Months,Yes,166.190155,102.1722806,!@9#%8,503.0488977,0,0.8945,-0.5268,3.0581,0.7478,-1.4602 -0x1bf91,CUS_0x3e5c,August,51,466-86-1830,Scientist,70175.78,,3,2,0.288361749,0,,0,2,4.49,3,Good,91.52547264,29.33173036,22 Years and 4 Months,No,821.414481,961.1665454,Low_spent_Medium_value_payments,352.6131878,0,1.0125,-0.9912,-0.2798,-0.6002,-0.019 -0x1bf9d,CUS_0x33cd,August,45,865-29-4760,Engineer,52110.56,4521.546667,6,5,19,1,Auto Loan,22.54696274,19,13.2,1,Standard,1251.99,40.65242862,32 Years and 11 Months,Yes,23.74091217,10000,High_spent_Large_value_payments,577.1755423,0,0.4721,0.5802,1.7065,-0.1859,0.9872 -0x1bfa9,CUS_0x96bc,August,35,936-79-7779,Musician,64721.58,5129.465,3,6,5,1,Auto Loan,,14,10.15,3,Standard,559.19,29.91467319,30 Years and 8 Months,Yes,33.16452453,,Low_spent_Small_value_payments,203.6843242,0,0.8465,-1.6449,-1.667,0.6599,-1.8463 -0x1bfb5,CUS_0xa1bc,August,26,718-92-6793,Developer,45455.94,,7,9,22.06745738,7,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Personal Loan, and Payday Loan",,29.45021909,3.15,15,Bad,4787.458796,25.70450365,3 Years and 4 Months,Yes,224.9823829,,!@9#%8,213.3222367,0,1.015,1.6344,0.8499,1.7827,-0.8142 -0x1bfc1,CUS_0xbc4,August,18,736-62-5736,Developer,60558.63,4948.5525,3,3,13,3,"Not Specified, Student Loan, and Debt Consolidation Loan",,14,19.44,12,_,1018.340861,23.67156135,15 Years and 3 Months,Yes,114.9105605,230.5027746,High_spent_Medium_value_payments,424.595721,0,-0.3924,-1.577,-0.43,0.8256,-1.5985 -0x1bfcd,CUS_0x8138,August,21,346-55-0187,Entrepreneur,33012.39,,5,4,11,0,,,11,12,6,Good,917.25,40.54390028,29 Years and 2 Months,No,0,,Low_spent_Small_value_payments,472.5142266,0,-0.8874,0.8577,-0.7305,-0.1567,1.1785 -0x1bfd9,CUS_0x70c9,August,37,813-21-1686,Scientist,60783.45,,6,7,13,0,,21.0010163,16,15.69,0,Standard,46.28,27.30562318,31 Years and 8 Months,Yes,0,76.12959589,High_spent_Large_value_payments,674.2991541,0,-0.21,1.417,0.9891,-0.4823,0.0407 -0x1bfe5,CUS_0x5fcd,August,45,824-25-3641,Lawyer,83477.58,6718.465,4,7,12,1,Personal Loan,10.08201361,12,1.64,6,_,715.49,34.51071501,,No,42.14395491,146.6281142,High_spent_Small_value_payments,743.0744309,0,1.2675,-0.8015,1.7246,-0.2164,0.5794 -0x1bff1,CUS_0x8382,August,32,853-68-8996,Engineer,54378.51,4369.5425,6,10,15,5,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",,25,1.61,10,Bad,1482.64,26.87710932,16 Years and 11 Months,Yes,153.5068612,10000,High_spent_Small_value_payments,300.8319671,0,-0.1592,0.4438,0.8977,-1.933,-1.2411 -0x1bffd,CUS_0xc61e,August,37,#F%$D@*&8,Manager,35648.94,2742.745,7,3,7,2,"Home Equity Loan, and Not Specified",15.5098742,13,9.34,3,Standard,1053.3,37.27990592,20 Years and 11 Months,No,53.92626247,152.5801717,Low_spent_Small_value_payments,357.7680658,0,-0.7609,1.6344,-0.4643,0.6851,-0.0152 -0x1c009,CUS_0x6e0d,August,18,705-31-6855,Scientist,38883.92,3163.326667,6,3,10.28836175,2,"Debt Consolidation Loan, and Payday Loan",10.59057184,10,16.8,11,Standard,23.58,31.56280028,27 Years and 6 Months,NM,53.58513706,,High_spent_Small_value_payments,426.5371214,0,-0.2086,1.6912,-0.3271,-0.5129,-1.1403 -0x1c015,CUS_0x7541,August,19,224-61-7149,Manager,19821.65,,8,8,32,3,"Personal Loan, Student Loan, and Personal Loan",18.88961048,15,7.07,14,Standard,2609.26,25.4785583,11 Years and 11 Months,Yes,228.9095155,78.82350822,Low_spent_Medium_value_payments,294.0235384,0,2.7677,0.0493,0.5104,-0.2511,-0.261 -0x1c021,CUS_0x3b3b,August,45,947-32-6305,Scientist,19595.95,,8,8,17.95700519,9,"Student Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Personal Loan",49.79512149,28.83196757,6.44,8,Bad,1672.70206,25.69606884,12 Years and 10 Months,NM,1454.646557,,High_spent_Medium_value_payments,207.6069074,0,-0.246,-0.7906,-0.5261,-0.805,0.4779 -0x1c02d,CUS_0x7319,August,50,847-33-7456,Scientist,63362.6,5036.216667,4,6,15,1,Student Loan,21.55931794,16,16.57,6,_,302.87,35.11842035,21 Years and 6 Months,Yes,30.17383525,608.8605159,Low_spent_Small_value_payments,154.5873156,0,0.3439,-1.1339,0.6988,0.938,-0.8479 -0x1c039,CUS_0x3533,August,36,873-30-9565,_______,50155.74,4312.645,4,7,18,6,"Not Specified, Personal Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",17.72329722,13,17.14,9,Standard,2358.09,26.74229148,13 Years and 9 Months,Yes,187.5774228,62.14919925,High_spent_Medium_value_payments,431.5378779,0,-0.0137,0.4177,-0.5898,-0.5823,-0.53 -0x1c045,CUS_0x7fc7,August,60,827-76-1265,Musician,64193.97,5530.4975,6,7,1,1,Credit-Builder Loan,12.07805428,9,4.61,6,Good,24.80802189,36.59572729,24 Years and 0 Months,No,44.99029379,142.9187834,High_spent_Medium_value_payments,630.3257552,0,-1.347,1.8709,-0.4454,0.459,-1.585 -0x1c051,CUS_0x4b67,August,35,912-84-1903,Mechanic,19303.21,1437.600833,6,5,28,7,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",29.94752609,21.53062186,9.44,14,Standard,2941.63225,24.73559741,16 Years and 4 Months,Yes,107.5469258,,Low_spent_Small_value_payments,135.9894603,0,1.3848,-0.5958,0.582,-0.9056,0.7189 -0x1c05d,CUS_0x6312,August,35,524-43-3739,Media_Manager,31780.12,2473.343333,10,6,25.06745738,100,"Auto Loan, Credit-Builder Loan, Student Loan, and Auto Loan",,19,6.9,10,Bad,2186.620954,25.75631328,9 Years and 0 Months,Yes,71.60048004,170.5033051,High_spent_Small_value_payments,238.5102603,0,-0.3034,1.7703,-0.1301,-1.6313,-2.1668 -0x1c069,CUS_0x95d2,August,36,058-15-1906,Mechanic,103221.21,8699.7675,5,5,7,2,"Home Equity Loan, and Home Equity Loan",25.60292958,17,8.51,5,Standard,1256.48,30.06288373,27 Years and 3 Months,Yes,136.709553,172.9550479,High_spent_Large_value_payments,800.3121492,0,0.1969,0.2924,1.2522,-0.2805,-0.3142 -0x1c075,CUS_0x4b1c,August,49,579-85-2474,Architect,20455.28,1407.606667,4,4,2,4,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",9.232077213,8.989916302,6.92,5,Good,478.1186412,26.64798578,22 Years and 11 Months,No,46.74449377,,Low_spent_Small_value_payments,234.7180786,0,-0.5094,-1.1911,0.7624,-0.2145,0.6841 -0x1c081,CUS_0x242d,August,31,#F%$D@*&8,Doctor,15440.42,,7,6,13,0,,14.53804974,14,7.48,4,Standard,1277.85,39.15343994,19 Years and 5 Months,NM,0,10000,Low_spent_Small_value_payments,289.8232258,0,0.174,1.1613,-1.3431,0.3877,0.2982 -0x1c08d,CUS_0x1930,August,25,990-90-4400,Teacher,40197.28,3415.773333,6,5,16.28836175,4,"Mortgage Loan, Credit-Builder Loan, Auto Loan, and Not Specified",9.067345392,9,16.94,7,_,124.52,24.68781017,19 Years and 11 Months,Yes,100.0914446,526.4134566,Low_spent_Large_value_payments,405.0098931,0,1.4863,0.9594,1.423,1.7434,-0.0936 -0x1c099,CUS_0x5803,August,50,132-89-9622,Entrepreneur,123526.8,10241.9,1,6,8.288361749,4,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Not Specified",0.775341728,4,2.25,3,Good,848.4577333,28.88275671,20 Years and 8 Months,No,291.0185936,1072.888313,High_spent_Small_value_payments,432.4718297,0,-1.1046,-1.0561,-0.2107,1.1147,0.099 -0x1c0a5,CUS_0x86c7,August,35,232-33-5704,Entrepreneur,55563.4,4550.283333,9,8,5,0,,,2666,4.81,0,_,1276.302043,37.35116711,26 Years and 4 Months,No,0,447.8101121,Low_spent_Medium_value_payments,344.7167268,0,-1.1646,0.9807,1.6126,0.2068,-0.2687 -0x1c0b1,CUS_0x3910,August,41,400-19-4065,Mechanic,63661.6,5598.133333,3,5,16,2,"Student Loan, and Personal Loan",8.11513705,7,1.03,1,Standard,1167.2,30.28263453,28 Years and 3 Months,No,69.43553038,482.9356931,Low_spent_Small_value_payments,297.4421098,0,1.1646,0.1295,-0.1493,0.2131,1.3736 -0x1c0bd,CUS_0xa630,August,28,072-69-5509,Writer,12498.945,1173.57875,5,3,18,4,"Credit-Builder Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",17.35454284,,5.1,0,Standard,605.3771347,28.84934208,31 Years and 3 Months,No,30.87149111,80.07971266,High_spent_Small_value_payments,275.8404505,0,-0.1344,-1.8512,0.4466,-0.722,0.4039 -0x1c0c9,CUS_0x91b,August,38,128-22-7100,Developer,69073.65,5560.763864,6,7,7,6,"Mortgage Loan, Not Specified, Debt Consolidation Loan, Not Specified, Personal Loan, and Mortgage Loan",13.04884286,10,16.31,10,Standard,447.6568111,26.85372696,12 Years and 2 Months,Yes,473.9121331,,High_spent_Medium_value_payments,324.627689,0,0.0566,0.034,-0.9693,-0.7755,-0.0495 -0x1c0d5,CUS_0x394a,August,37,438-68-7121,Media_Manager,108073.04,9117.086667,3,7,12.28836175,2,"Not Specified, and Mortgage Loan",,19,6.42,5,Standard,547.9765433,36.53210065,29 Years and 6 Months,No,161.7532348,1145.938046,Low_spent_Medium_value_payments,411.2733716,0,-0.0848,-0.6918,1.1369,1.3039,0.5272 -0x1c0e1,CUS_0x535a,August,56,359-11-2781,Manager,32297.67,2924.4725,6,5,2,4,"Mortgage Loan, Credit-Builder Loan, Student Loan, and Not Specified",15.66408097,13,5.64,4,Good,1153.488172,37.91889568,17 Years and 10 Months,No,73.1894397,151.9939671,!@9#%8,348.3718765,0,0.9568,-0.3123,0.6247,-0.5786,0.2342 -0x1c0ed,CUS_0x5959,August,30,700-76-6380,Developer,57857.1,,4,8,30,3,"Auto Loan, Student Loan, and Auto Loan",23.59553754,14.99598288,13.8,8,Standard,2217.859173,32.15296159,,Yes,85.77311384,,High_spent_Large_value_payments,520.0279959,0,0.1188,-0.7502,-0.2423,2.345,-0.7065 -0x1c0f9,CUS_0x184c,August,23,330-09-7564,_______,14666.23,,6,9,27,100,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Not Specified, Home Equity Loan, Student Loan, and Debt Consolidation Loan",37.56359256,22.20749548,5.61,13,_,5333.266817,39.29934519,11 Years and 10 Months,Yes,73.15470853,34.46132163,High_spent_Small_value_payments,266.9025532,0,-1.758,-0.2202,0.409,1.3084,-0.9936 -0x1c105,CUS_0xb143,August,28,985-00-2568,Entrepreneur,36631.98,,8,10,27.88954781,6,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Credit-Builder Loan",,20.72126589,,12,Bad,2519.244804,30.97198501,18 Years and 2 Months,Yes,1465.825411,228.3690842,!@9#%8,215.1419233,0,0.1224,-0.1522,0.8614,-2.6602,-0.6126 -0x1c111,CUS_0x9f80,August,44,387-40-1446,Musician,44749.97,3452.164167,1,7,1,0,,6.851982993,6.760350251,6.72,0,Good,384.6948524,27.59274122,22 Years and 2 Months,No,0,59.14749045,High_spent_Large_value_payments,526.0689262,0,-1.2684,-0.0057,-0.3942,0.327,-1.6639 -0x1c11d,CUS_0x15b7,August,37,#F%$D@*&8,Engineer,54201.99,4535.8325,6,9,30,3,"Debt Consolidation Loan, Student Loan, and Home Equity Loan",,28.47734261,0.66,8,Bad,2637.177423,29.57612881,9 Years and 2 Months,Yes,108.1096743,576.8115891,Low_spent_Small_value_payments,58.66198658,0,-1.7095,-0.4637,0.8876,1.4556,-1.2472 -0x1c129,CUS_0x2b60,August,27,386-57-0586,Writer,60400.17,,6,8,30.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Payday Loan, Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",,29.27660711,30.02,15,Bad,4728.468227,36.40022248,5 Years and 3 Months,Yes,211.6558316,133.1747816,Low_spent_Medium_value_payments,409.4838489,0,1.6765,-2.1219,1.4778,-1.9541,-1.99 -0x1c135,CUS_0xf55,August,39,025-54-8593,Entrepreneur,78443.48,6358.956667,7,5,23,4,"Personal Loan, Home Equity Loan, Mortgage Loan, and Student Loan",35.72061823,21.30889857,6.37,6,Bad,1682.307439,24.70442855,15 Years and 10 Months,NM,177.3875626,528.7469053,Low_spent_Medium_value_payments,209.7611988,0,1.0372,-0.4272,0.0151,-0.6757,0.8852 -0x1c141,CUS_0x24af,August,37,282-99-3136,Mechanic,89122.38,,3,4,14,5,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Auto Loan",5.242278,7.841455019,19.64,8,_,315.7641408,39.81212495,8 Years and 9 Months,Yes,266.0838269,295.151154,High_spent_Small_value_payments,422.9515191,0,1.5249,-0.8035,-1.2643,-0.6838,-0.1014 -0x1c14d,CUS_0xba96,August,38,850-35-4831,Entrepreneur,20378.795,,3,5,2,4,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Payday Loan",0,3,0.85,3,Good,1438.9,30.84066289,16 Years and 2 Months,No,50.09585548,18.06814674,High_spent_Medium_value_payments,324.6592894,0,0.1313,1.2367,-1.9138,-0.0507,-3.3972 -0x1c159,CUS_0x56f6,August,54,763-69-8653,Scientist,22205.61,2037.4675,6,5,11,3,"Home Equity Loan, Mortgage Loan, and Payday Loan",10.74776424,11,8.1,3,Standard,207.04,24.18470377,26 Years and 6 Months,No,46.07909857,167.0893596,Low_spent_Small_value_payments,280.5782918,0,-1.5428,0.2339,1.8381,-0.7179,-1.4743 -0x1c165,CUS_0xa403,August,18,814-00-0664,Media_Manager,15344.79,1311.7325,5,6,7,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Home Equity Loan",,10,12.63,10,Standard,976.94,32.32451049,12 Years and 9 Months,Yes,33.05543447,134.5094251,Low_spent_Medium_value_payments,243.6083904,0,0.3733,0.5069,0.8378,-0.4961,1.6096 -0x1c171,CUS_0xaa0d,August,40,423-37-0253,Doctor,17267.895,,0,5,6,1,Not Specified,4.061479788,7,2.97,3,_,1292.69,30.32151059,22 Years and 3 Months,No,12.08243605,34.37001281,High_spent_Small_value_payments,377.5466761,0,-0.6905,-0.7343,1.4558,-1.0917,-0.9787 -0x1c17d,CUS_0x8e7f,August,31,562-19-0606,Lawyer,47119.29,3637.6075,7,5,24,6,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, Personal Loan, Personal Loan, and Debt Consolidation Loan",34.70781976,26,4.06,15,Bad,2773.96,38.65279114,13 Years and 11 Months,Yes,29519,150.2914275,High_spent_Medium_value_payments,282.0657987,0,-0.8107,1.4448,-0.6198,1.3972,0.7674 -0x1c189,CUS_0x5c65,August,42,743-12-2665,_______,94110.06,7920.505,4,7,9,4,"Mortgage Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",,12,8.59,0,Good,1088.364425,41.34365998,18 Years and 2 Months,No,307.4500461,277.7806191,!@9#%8,495.334506,0,0.6162,-0.3539,-0.5708,-0.7952,0.0483 -0x1c195,CUS_0x8e00,August,33,001-96-3136,_______,18849.55,1795.795833,7,10,33.06745738,5,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",27.3575939,15,5.23,12,_,2910.500954,29.7437841,16 Years and 0 Months,Yes,64.24406439,,Low_spent_Large_value_payments,294.1676376,0,-0.1483,-0.0112,-0.172,0.9002,-1.1397 -0x1c1a1,CUS_0x108a,August,38,394-00-8142,Journalist,36982.36,,8,9,21.88954781,9,"Student Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Student Loan, and Personal Loan",18.36883507,15,24.61,15,_,4882.12,32.00299359,7 Years and 9 Months,Yes,1777.902996,275.8074536,Low_spent_Medium_value_payments,66.89531234,0,-1.0516,-1.0696,0.1834,1.0611,0.2914 -0x1c1ad,CUS_0xb23c,August,25,051-18-4651,Musician,142106.96,11621.24667,6,3,19,0,,24.11649225,17,6.46,,_,506.3464416,29.8561875,22 Years and 10 Months,No,0,,Low_spent_Large_value_payments,365.3927061,0,0.453,-0.5043,1.5596,-1.9985,0.9392 -0x1c1b9,CUS_0xb77f,August,27,047-56-2054,Engineer,20355.43,,8,436,26.88954781,100,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Student Loan, Personal Loan, and Payday Loan",,18.38704123,3.47,14,Bad,2179.351453,38.71157701,13 Years and 3 Months,Yes,1386.190982,105.3548585,Low_spent_Small_value_payments,266.2526611,0,-0.3746,0.1642,-1.1148,0.7331,-0.4813 -0x1c1c5,CUS_0x40b1,August,21,774-77-2188,Developer,25191.69,,5,3,19,4,"Personal Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",15.6637227,,16.2,10,_,805.57,38.41044235,20 Years and 4 Months,Yes,79.85401928,206.3263064,Low_spent_Medium_value_payments,212.8504244,0,-1.1959,0.4794,-1.1799,0.064,-2.0073 -0x1c1d1,CUS_0x7fe,August,25,001-92-5338,Doctor,14444.875,,1,4,11,4,"Personal Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",13.50180729,,9.56,6,Good,1103.389729,38.6834029,29 Years and 5 Months,NM,31.79486769,53.09172233,High_spent_Small_value_payments,322.656994,0,-0.6001,1.3782,-0.3251,-0.243,0.3896 -0x1c1dd,CUS_0x4fa6,August,22,085-81-0307,Lawyer,33884.76,2626.198629,7,5,17,3,"Mortgage Loan, Auto Loan, and Student Loan",56.47831579,30.14701491,10.01,12,_,1562.817228,25.05203648,20 Years and 4 Months,Yes,341.8414952,226.8041248,!@9#%8,270.4587507,0,-0.0141,-0.2544,-1.1317,-0.2344,0.596 -0x1c1e9,CUS_0xb9c7,August,22,708-66-1961,Manager,57544.23,,9,5,3888.067457,6,"Auto Loan, Mortgage Loan, Student Loan, Not Specified, Personal Loan, and Auto Loan",41.10129709,25.14378517,23.63,10,Bad,5230.656239,28.4070921,12 Years and 11 Months,Yes,175.3425542,,High_spent_Medium_value_payments,382.6540388,0,0.6287,0.1405,0.8474,0.1385,0.8967 -0x1c1f5,CUS_0x8b2c,August,26,183-84-8459,Entrepreneur,71479.6,6184.633333,1,3,7.288361749,4,"Home Equity Loan, Credit-Builder Loan, Payday Loan, and Student Loan",15.69632423,14.61238278,10.3,2,Good,580.9750949,35.25580236,28 Years and 10 Months,No,184.0252903,589.0485205,High_spent_Medium_value_payments,515.3269835,0,1.333,-0.4312,0.6408,-0.2728,1.8656 -0x1c201,CUS_0x8b74,August,21,086-87-0866,Engineer,59986,,2,2,0.288361749,0,Debt Consolidation Loan,0,0,8.54,6,Good,242.9487266,32.77461928,21 Years and 0 Months,No,22071,948.1273433,Low_spent_Small_value_payments,265.2833478,0,0.1439,-1.5566,0.8402,0.3958,0.2538 -0x1c20d,CUS_0x434a,August,40,169-51-0038,_______,19296.63,1820.0525,8,10,23.95700519,9,"Auto Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",,28.23221121,5.96,15,Bad,2972.186868,28.17465637,9 Years and 11 Months,Yes,1455.159676,,Low_spent_Small_value_payments,97.00941303,0,0.3594,-0.4627,0.517,-0.6914,1.5113 -0x1c219,CUS_0x4c45,August,25,851-05-3167,Writer,69078.64,,9,5,30,2,"Not Specified, and Payday Loan",39.58991062,19.11456948,19.9,12,_,2584.685036,28.76035603,,Yes,98.40358588,405.1507727,Low_spent_Medium_value_payments,347.7009747,0,-0.7574,-0.48,-0.4992,0.3283,1.3108 -0x1c225,CUS_0x3433,August,55,213-25-2133,_______,14726.775,,7,6,1,0,,,9,6.64,5,Good,408.956228,36.2111146,15 Years and 11 Months,No,7354,174.616079,Low_spent_Small_value_payments,276.8352028,0,0.1992,0.594,1.5384,0.0784,0.8144 -0x1c231,CUS_0xa9e7,August,28,947-18-7133,Architect,15843.23,,8,6,17,6,"Payday Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Auto Loan, and Home Equity Loan",,18,16.46,8,Standard,1506.54,37.48447315,14 Years and 3 Months,Yes,100.018008,48.76902718,High_spent_Medium_value_payments,295.3462142,0,0.6043,-0.3462,0.1944,-0.5727,-0.6304 -0x1c23d,CUS_0xbab1,August,44,499-69-3389,Lawyer,28300.37,,5,5,9,3,"Debt Consolidation Loan, Student Loan, and Mortgage Loan",13.96872525,12,2.69,4,Good,1283.555157,31.59656532,17 Years and 5 Months,No,52.01255991,,Low_spent_Large_value_payments,241.555901,0,-0.7526,-0.7986,-0.364,0.5811,-0.0188 -0x1c249,CUS_0x3722,August,30,766-48-2560,Journalist,25347.26,,5,4,20,1,Not Specified,,16,10.37,5,Standard,1032.75,27.0129988,19 Years and 11 Months,NM,11.63744919,110.7504663,Low_spent_Small_value_payments,374.8392512,0,-1.4113,-0.4177,1.2008,-0.9469,-0.0761 -0x1c255,CUS_0x71f1,August,36,114-05-0805,Lawyer,56952.63,,9,9,27,8,"Student Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Student Loan, Auto Loan, and Auto Loan",,20,28.88,10,_,2637.08,29.25534186,11 Years and 0 Months,Yes,323.2734511,134.3804867,High_spent_Small_value_payments,304.2513122,0,0.5736,0.3472,-0.7851,0.0361,-0.226 -0x1c261,CUS_0x2d98,August,42,927-78-1000,Engineer,52266.76,3844.909876,8,6,10.28836175,2,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",25.59850463,21,10.8,8,Standard,123.0929847,34.31110348,,Yes,567.0397827,494.7026855,High_spent_Large_value_payments,511.8100774,0,-0.0862,1.2203,0.0643,-1.467,-0.4837 -0x1c26d,CUS_0x2bce,August,28,362-84-5105,Entrepreneur,38957.34,3038.445,9,7,31,3,"Auto Loan, Not Specified, and Mortgage Loan",18.96594464,,15.37,9,_,2490.383686,29.94267322,16 Years and 11 Months,Yes,52.07530566,,Low_spent_Large_value_payments,251.5778452,0,0.4897,2.1104,-2.6396,0.4134,0.2844 -0x1c279,CUS_0x711e,August,43,579-88-7586,Writer,26848.21,2022.350833,4,7,9,1,Credit-Builder Loan,22.87271428,19,1.68,1,Standard,1321.159179,30.13780455,18 Years and 11 Months,No,22.0825603,117.6210928,High_spent_Small_value_payments,336.6182572,0,-0.5306,0.1427,0.6065,0.0105,0.5101 -0x1c285,CUS_0xa2a2,August,53,340-05-0113,Developer,116058.44,9503.536667,7,3,18,100,"Credit-Builder Loan, and Home Equity Loan",18.59170122,15,11.2,8,Standard,227.0276093,26.18899183,17 Years and 4 Months,NM,100.3082606,220.1022892,High_spent_Large_value_payments,899.108786,0,-0.9996,0.4441,0.7665,1.4091,-0.3975 -0x1c291,CUS_0x9c96,August,21,980-77-1350,Teacher,17291.27,,10,9,21.95700519,100,"Mortgage Loan, Payday Loan, Personal Loan, Payday Loan, Not Specified, Not Specified, Not Specified, and Personal Loan",28.51018148,18.2236231,3.86,8,Bad,5083.614943,33.52201069,8 Years and 3 Months,Yes,1456.272361,86.94624175,Low_spent_Small_value_payments,176.0620694,0,-1.539,-0.4268,0.0574,-0.0793,-0.324 -0x1c29d,CUS_0x838c,August,80,522-50-5723,Journalist,10392.095,1127.007917,4,10,29.06745738,3,"Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",17.31965911,10.54915492,15.31,8,Standard,3124.056452,30.25980147,15 Years and 10 Months,Yes,17.65130727,91.60554429,Low_spent_Medium_value_payments,256.7236522,0,0.3238,-2.5145,1.5574,0.1426,-0.9211 -0x1c2a9,CUS_0xa137,August,28,012-08-7560,Engineer,101066.4,8547.2,4,4,12,2,"Personal Loan, and Home Equity Loan",12.07877794,7,19.35,6,Standard,1461.27,32.13686779,27 Years and 10 Months,NM,95.70676486,10000,High_spent_Large_value_payments,906.4235643,0,0.2401,0.4949,-1.2265,1.7663,-1.5033 -0x1c2b5,CUS_0xfe5,August,38,138-97-1797,Doctor,96960.21,7934.0175,6,4,8,0,,,12,6.52,6,Standard,1144.73,37.01042778,22 Years and 5 Months,No,0,180.7197022,High_spent_Large_value_payments,852.6820478,0,0.1378,1.2931,0.6862,0.1019,-0.0612 -0x1c2c1,CUS_0x3bfb,August,37,110-79-6188,Architect,19718.92,,10,9,19.88954781,6,"Student Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,13.1396144,18.92,13,Standard,2294.301975,34.57056868,16 Years and 9 Months,Yes,1553.058429,,Low_spent_Large_value_payments,210.9879187,0,-0.2409,1.5496,-1.5521,0.4736,0.0982 -0x1c2cd,CUS_0x6827,August,28,267-65-1367,Writer,9547.825,,7,7,29.06745738,5,"Personal Loan, Payday Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",39.63841018,25.77280445,15.19,13,Bad,3202.255189,31.18718948,14 Years and 9 Months,Yes,26.82664364,53.42742636,Low_spent_Small_value_payments,266.9908504,0,-0.5309,-0.1605,-0.0158,1.2246,0.0961 -0x1c2d9,CUS_0x9283,August,31,982-61-5067,Lawyer,19334.83,,8,6,31,5,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",23.71336105,18.93404234,24.35,8,Bad,3638.233872,38.41132145,5 Years and 4 Months,Yes,69.53188677,,Low_spent_Medium_value_payments,322.1395527,0,1.0595,-0.8351,-0.8154,0.3551,-1.0412 -0x1c2e5,CUS_0x65d2,August,22,659-77-0885,Entrepreneur,16844.13,1156.6775,2,7,6,0,,12.81829125,,9.34,5,Good,1269.39,36.73761104,33 Years and 8 Months,No,0,119.207685,Low_spent_Small_value_payments,286.460065,0,2.5847,1.871,-0.7412,-0.4444,-1.2985 -0x1c2f1,CUS_0x5fc5,August,45,609-69-3346,Developer,122161.96,10153.16333,7,5,14.28836175,4,"Student Loan, Payday Loan, Mortgage Loan, and Mortgage Loan",22.79772401,20,14.15,7,Standard,1316.32,27.63967897,14 Years and 8 Months,Yes,278.8521712,820.6423695,Low_spent_Large_value_payments,605.7592536,0,0.4769,0.2888,-1.7922,0.3505,-1.1741 -0x1c2fd,CUS_0xc6c2,August,34,516-17-7112,Doctor,49056.09,4037.299792,7,8,19,3,"Payday Loan, Student Loan, and Payday Loan",30.20583176,20,6.29,17,Bad,1336.77,31.45450188,6 Years and 11 Months,Yes,333.4027771,196.6077231,Low_spent_Medium_value_payments,392.0979578,0,-1.497,-0.1505,-0.798,-0.4934,0.7999 -0x1c309,CUS_0x39c5,August,44,908-64-8885,Mechanic,16117.63,,6,9,27.06745738,2,"Personal Loan, and Student Loan",43.03323729,28.81082278,5.83,9,Bad,1886.156392,31.28485425,17 Years and 4 Months,Yes,23.31680754,146.1424774,Low_spent_Small_value_payments,226.0340105,0,-0.4063,-0.8023,-0.7502,0.8901,-1.0887 -0x1c315,CUS_0x95a9,August,55,080-54-9503,Teacher,72579.72,5916.31,6,6,20,0,,19.41721752,,4.97,3,Standard,314.2,36.46131812,19 Years and 8 Months,Yes,0,351.1835653,High_spent_Small_value_payments,500.4474347,0,0.273,1.0518,0.0545,1.032,-1.0137 -0x1c321,CUS_0x632c,August,22,695-04-7340,Media_Manager,101978.19,,5,7,1.288361749,4,"Home Equity Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",0,2,9.42,3,Good,1193.385948,28.87208906,30 Years and 4 Months,No,210.1496117,1355.185974,Low_spent_Medium_value_payments,68.56358092,0,1.1343,1.2139,-0.0652,0.5652,-0.9703 -0x1c32d,CUS_0xadee,August,53,748-31-3173,Lawyer,60180.09,5218.0075,7,7,17,3,"Payday Loan, Not Specified, and Home Equity Loan",,15,8.34,1,Standard,1293.89,37.73195488,27 Years and 8 Months,No,108.6311311,382.8747817,Low_spent_Small_value_payments,320.2948372,0,0.5224,-1.0414,-1.3527,1.7595,-0.3624 -0x1c339,CUS_0x3e5d,August,35,982-27-6787,_______,11938.1,,6,4,20,4,"Debt Consolidation Loan, Not Specified, Payday Loan, and Payday Loan",14.5648301,15,9.54,3,Standard,593.33,30.24991641,24 Years and 8 Months,Yes,20.18395628,58.09627963,Low_spent_Small_value_payments,331.5039308,0,1.0368,-0.1737,0.5452,-2.226,-1.1314 -0x1c345,CUS_0xbc5b,August,24,898-73-7249,Teacher,109323.4,,5,3,9.288361749,4,"Not Specified, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",16.04186519,15,10.02,7,Standard,365.39,39.35465199,27 Years and 9 Months,Yes,241.9924954,742.8483356,High_spent_Medium_value_payments,603.1249633,0,-1.2031,-1.2496,0.1663,-0.1139,0.4975 -0x1c351,CUS_0x9ef9,August,30,749-61-3662,Musician,67188.58,5758.048333,805,7,9,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",,2,-3.16,4,Good,1370.98,26.27984276,19 Years and 4 Months,No,145.9295972,186.7531542,High_spent_Medium_value_payments,493.122082,0,-0.4163,0.5388,-1.0324,-0.587,-0.6014 -0x1c35d,CUS_0x6194,August,47,258-48-2078,_______,28227.45,,3,6,1.288361749,2,"Auto Loan, and Auto Loan",,8.378901865,9.66,1,Good,285.9783246,31.02948403,30 Years and 11 Months,No,48248,448.9895832,High_spent_Medium_value_payments,418.29367,0,-0.6132,1.5985,0.6427,-0.3592,1.2187 -0x1c369,CUS_0x454f,August,41,255-20-4167,Musician,129299,10765.91667,1,2,5.288361749,0,,0.370062797,3,1.24,6,Good,669.7956242,36.09873149,,No,0,655.6961386,High_spent_Small_value_payments,1130.930667,0,-0.0567,-0.4592,0.7722,0.2158,-0.7748 -0x1c375,CUS_0x4b4,August,29,334-73-3962,Engineer,7112.665,,10,8,16.88954781,6,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Payday Loan, and Home Equity Loan",,24,27.68,12,_,4649.87,39.61555631,7 Years and 3 Months,Yes,1349.449013,26.62311831,High_spent_Medium_value_payments,254.9699957,0,1.6728,0.4567,-1.6719,-0.07,0.014 -0x1c381,CUS_0x96e7,August,25,523-66-3202,Lawyer,81287.66,6550.971667,0,3,11,4,"Payday Loan, Student Loan, Not Specified, and Personal Loan",4.310309051,7,6.52,1,_,1191.883432,39.10135098,26 Years and 11 Months,No,150.8210257,201.0967925,Low_spent_Medium_value_payments,605.6566701,0,1.1686,1.3901,0.3886,-0.5099,-1.5183 -0x1c38d,CUS_0x7312,August,19,454-10-7481,Musician,32989.45,,5,3,2,4,"Mortgage Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",0,3,1.47,0,Good,40.48,36.61645609,16 Years and 6 Months,No,80.95539403,,Low_spent_Small_value_payments,162.7906288,0,0.9678,-0.8213,0.6493,1.5393,0.0437 -0x1c399,CUS_0x618c,August,30,489-60-8692,Writer,107392.95,,6,3,20,1,Debt Consolidation Loan,,18,11.88,6,Standard,210.01,20.83248709,,Yes,51.95982461,1143.595342,Low_spent_Small_value_payments,,0,0.1866,-0.3773,0.8409,0.5011,-1.2015 -0x1c3a5,CUS_0xb772,August,30,942-59-1928,Entrepreneur,41296.81,,3,6,11,1,Student Loan,1.760250618,1,6.94,1,Good,761.2,36.59194413,19 Years and 11 Months,No,33.74732675,10000,High_spent_Large_value_payments,521.7607812,0,-0.6158,-1.7268,0.4872,0.0979,0.6154 -0x1c3b1,CUS_0x224f,August,29,855-61-7132,_______,34176.53,2584.044167,6,4,8,1,Mortgage Loan,11.17974036,10,4.95,4,_,828.874479,40.30316772,,No,15.14449094,93.81955525,High_spent_Medium_value_payments,408.1208784,0,0.3158,1.8907,0.915,0.2102,-0.9611 -0x1c3bd,CUS_0x9fca,August,50,261-83-6127,Mechanic,26326.96,2114.913333,4,5,13,3,"Personal Loan, Debt Consolidation Loan, and Student Loan",23.15456107,18,5.25,4,_,640.91,29.62496903,15 Years and 10 Months,No,57.69707067,100.9629707,Low_spent_Small_value_payments,342.831292,0,0.0511,-1.0188,0.0143,-2.3715,0.2329 -0x1c3c9,CUS_0x4fac,August,44,339-46-1689,Scientist,126559.52,10248.62667,5,5,9,4,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Student Loan",,14.13357623,11.02,6,_,288.7585198,38.32102806,18 Years and 3 Months,Yes,400.386423,199.3109959,!@9#%8,665.1652478,0,-1.2482,-1.9233,0.0935,-1.1139,-1.5776 -0x1c3d5,CUS_0x2346,August,32,918-83-4696,Accountant,58892.86,5106.738333,3,4,17,3,"Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",18.53165336,,14.65,7,Standard,666,27.7527795,33 Years and 4 Months,NM,118.3482317,,Low_spent_Medium_value_payments,428.6400705,0,-0.7291,-0.0006,-0.3233,-0.3705,0.0958 -0x1c3e1,CUS_0x9123,August,40,852-62-5449,Mechanic,61614.58,5325.548333,5,5,10,2,"Payday Loan, and Mortgage Loan",25.37428217,21,19.41,6,Standard,944.195057,34.27198824,20 Years and 2 Months,Yes,85.88604716,207.1698917,High_spent_Medium_value_payments,510.7670085,0,1.2857,-1.0926,-1.4896,-0.6017,-0.6989 -0x1c3ed,CUS_0x9e39,August,41,303-14-4721,Manager,7919.535,875.96125,4,10,24.95700519,6,"Student Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Auto Loan",26.49140461,17.35741246,17.49,8,Standard,2985.538677,34.25771207,16 Years and 3 Months,Yes,1353.839511,,Low_spent_Small_value_payments,259.7851505,0,-0.0706,0.2049,-1.6691,-0.0744,0.1802 -0x1c3f9,CUS_0x193e,August,24,842-61-0519,Lawyer,107864.34,8852.695,4,5,19.28836175,6,"Payday Loan, Not Specified, Mortgage Loan, Mortgage Loan, Personal Loan, Auto Loan, and Not Specified",9.373808286,10.44492163,18.32,9,_,26.4970994,32.1314125,6 Years and 10 Months,Yes,380.0299522,,High_spent_Medium_value_payments,589.2988349,0,0.1284,0.8392,-0.7387,0.008,-0.8925 -0x1c405,CUS_0x9169,August,80,#F%$D@*&8,Mechanic,102085.2,,8,3,1,3,"Personal Loan, Auto Loan, and Not Specified",20.76189615,16,-6.49,3,_,244.4280216,27.57363382,,No,164.9599679,227.7471784,High_spent_Large_value_payments,750.3448114,0,-1.4351,0.5882,-1.3874,-0.707,-0.0046 -0x1c411,CUS_0x2683,August,39,#F%$D@*&8,Developer,58380.6,4891.05,7,5,27,4,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",44.31886687,23.45627959,9.94,12,_,1631.601027,28.6290723,9 Years and 9 Months,Yes,160.0519667,,Low_spent_Small_value_payments,146.2991568,0,0.5885,0.0552,-0.9321,-0.4051,-0.4924 -0x1c41d,CUS_0x2568,August,27,550-12-0825,Musician,20707.77,,8,5,34,7,"Auto Loan, Mortgage Loan, Not Specified, Student Loan, Payday Loan, Payday Loan, and Payday Loan",,,14.3,10,Standard,1711.998459,27.7400167,16 Years and 4 Months,Yes,78.62908712,,Low_spent_Medium_value_payments,292.0049046,0,-1.175,0.2761,0.1185,0.5022,-3.1388 -0x1c429,CUS_0xa31b,August,30,167-32-9860,Architect,106879.71,8676.6425,1,4,10.28836175,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",5.107062831,7,2.31,7,Good,1057.95,22.81887997,31 Years and 11 Months,NM,182.6546747,869.2936166,High_spent_Small_value_payments,495.6534197,0,0.5322,-0.9115,-0.5185,-0.6821,-1.4384 -0x1c435,CUS_0x6a4d,August,31,843-53-4733,Doctor,20501.72,1619.476667,7,9,17.06745738,8,"Payday Loan, Student Loan, Auto Loan, Auto Loan, Mortgage Loan, Not Specified, Student Loan, and Personal Loan",29.34177278,15,5.97,8,Bad,2247.770954,36.49648622,15 Years and 10 Months,Yes,72.73705942,118.2623416,Low_spent_Large_value_payments,214.2279777,0,-1.0828,-0.8494,2.5937,0.4067,0.2196 -0x1c441,CUS_0x32e6,August,35,137-57-7256,Developer,59125.84,,587,6,1.288361749,0,Mortgage Loan,6.943316494,9,1.18,5,_,49.94758585,32.82786181,28 Years and 6 Months,NM,33.3298417,,Low_spent_Medium_value_payments,604.8894406,0,2.4188,0.324,-0.0255,0.9691,-0.074 -0x1c44d,CUS_0x99ec,August,22,809-25-3671,Scientist,131844.32,10874.02667,6,3,9.288361749,0,Auto Loan,20.20212987,18,14.31,9,Standard,350.7470154,26.75285411,8 Years and 0 Months,Yes,106.7796091,12110.72346,Low_spent_Small_value_payments,17.71970184,0,0.4892,0.3177,1.8851,0.7102,-0.3802 -0x1c459,CUS_0x233d,August,30,739-90-6281,Entrepreneur,32488.7,,7,7,26.06745738,100,"Home Equity Loan, Not Specified, Student Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",22.53643961,10,8.34,16,_,2784.450954,37.19033099,8 Years and 0 Months,Yes,82.23268722,60.48816454,High_spent_Medium_value_payments,326.198027,0,-0.2705,-0.5066,-0.2944,-0.7438,-0.4035 -0x1c465,CUS_0x67e5,August,21,439-53-2707,_______,14733.99,1462.8325,10,8,28.88954781,100,"Student Loan, Not Specified, Not Specified, Payday Loan, and Credit-Builder Loan",,14.6975755,19.97,17,Standard,2863.022582,38.31516388,18 Years and 2 Months,Yes,1375.612866,123.129193,Low_spent_Small_value_payments,243.2111094,0,0.0351,-0.0344,-0.993,1.1488,-0.7038 -0x1c471,CUS_0xbfd0,August,38,084-50-9297,_______,22311.99,1577.3325,4,5,3.288361749,2,"Home Equity Loan, Mortgage Loan, and Home Equity Loan",0,1,8.27,6,Good,93.98467113,37.59144707,,NM,38.23526993,653.3554347,Low_spent_Small_value_payments,208.2182994,0,-0.5104,0.3279,-1.4398,-0.1806,0.2546 -0x1c47d,CUS_0x71ba,August,42,906-54-5924,Engineer,20204.27,,4,5,19,100,"Personal Loan, and Debt Consolidation Loan",,10.59915404,16.5,9,Standard,376.8391986,37.68542985,20 Years and 2 Months,Yes,27.5786716,,Low_spent_Small_value_payments,307.5715124,0,1.3718,0.7136,1.306,-1.0673,1.8519 -0x1c489,CUS_0x6a9d,August,25,841-18-0250,Engineer,74576.76,,9,8,31,4,"Payday Loan, Home Equity Loan, Payday Loan, and Auto Loan",,23.73976645,0.56,11,Bad,2192.373247,30.52223911,,NM,155.6248827,584.4759023,Low_spent_Medium_value_payments,159.572215,0,-0.3302,-0.5407,-0.2498,0.571,-0.5952 -0x1c495,CUS_0x492c,August,41,672-34-5802,Entrepreneur,17625.23,1542.769167,6,8,29.95700519,9,"Student Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, and Student Loan",30.1388195,,25.27,12,_,5051.400954,28.65545954,7 Years and 9 Months,Yes,1451.784718,145.2197617,Low_spent_Medium_value_payments,116.2220675,0,1.1234,-0.9804,0.676,-0.0668,-1.9375 -0x1c4a1,CUS_0x9cf7,August,53,915-77-3583,Musician,134282.84,11126.23667,8,7,19,2,"Not Specified, and Mortgage Loan",16.2072304,12,11.58,3,Standard,551.46,35.63623066,,No,131.5840554,,High_spent_Large_value_payments,978.0578739,0,-1.4065,-0.0514,-0.6364,-0.3936,1.297 -0x1c4ad,CUS_0x75ce,August,45,880-74-8342,Mechanic,23882.98,,4,3,11,1,Payday Loan,,19.18934616,10.91,6,Standard,349.0345094,28.9464902,16 Years and 6 Months,NM,16.00940815,115.6563572,Low_spent_Small_value_payments,385.459068,0,-0.2021,-2.5575,-0.1362,0.0544,-0.1503 -0x1c4b9,CUS_0x5628,August,35,208-75-0668,Media_Manager,8858.405,,6,8,26.88954781,100,"Not Specified, and Payday Loan",10.94761232,8,9.99,11,Standard,2431.08,24.46930826,14 Years and 6 Months,Yes,1332.045689,51.96517773,High_spent_Small_value_payments,283.8790939,0,1.6288,0.767,-1.4836,0.7154,-0.014 -0x1c4c5,CUS_0x20e4,August,20,936-93-4382,Journalist,34500.97,,5,1,3,4,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",,11,4.4,3,Good,1157.570544,32.74056104,20 Years and 9 Months,No,71.80862965,132.1849774,High_spent_Medium_value_payments,369.2215022,0,0.7307,-0.0496,-0.7371,0.3135,0.0529 -0x1c4d1,CUS_0x44c5,August,43,444-02-4059,Doctor,7136.905,,7,8,34,3,"Mortgage Loan, Personal Loan, and Credit-Builder Loan",37.24075805,19.42039059,9.79,12,_,2098.817141,24.29941263,9 Years and 11 Months,Yes,16.50138403,,Low_spent_Small_value_payments,265.4595664,0,1.1718,-1.1432,-1.7045,2.402,0.0041 -0x1c4dd,CUS_0xb8c2,August,80,475-00-7698,Doctor,14185.66,,1,7,2,4,"Auto Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",9.842969014,10,10.56,1,Good,209.002742,22.37429876,30 Years and 5 Months,No,42.52992173,49.34549077,High_spent_Medium_value_payments,285.0004058,0,-0.6206,0.8894,-1.3144,0.4499,0.2507 -0x1c4e9,CUS_0x2fc9,August,52,276-80-1606,Doctor,107438.88,9233.24,6,4,6,2,"Credit-Builder Loan, and Mortgage Loan",29.92153389,19,7.01,4,Standard,1342.37,40.01315419,33 Years and 2 Months,No,169.8641225,374.6725577,High_spent_Small_value_payments,638.7873199,0,-0.1938,1.1275,-1.3173,-0.9753,0.115 -0x1c4f5,CUS_0xe42,August,31,514-11-6434,Mechanic,80541.51,,4,1238,20,0,,25.22157529,18.73112858,10.81,1,Standard,377.1938263,40.61147838,26 Years and 11 Months,Yes,0,,High_spent_Large_value_payments,818.8312521,0,-0.061,0.0017,-0.5279,-1.6834,-0.3071 -0x1c501,CUS_0x4448,August,35,857-20-3946,Journalist,74524.88,6195.406667,9,10,33,8,"Auto Loan, Home Equity Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Student Loan, Student Loan, and Home Equity Loan",43.81574493,21.45101671,0.14,9,Bad,1946.598381,38.81641113,18 Years and 10 Months,Yes,385.2550456,,Low_spent_Medium_value_payments,139.5054682,0,-0.7814,-0.7296,1.1504,-0.7382,0.0426 -0x1c50d,CUS_0x8957,August,25,514-65-5201,Doctor,14154.255,1467.52125,5,7,14,4,"Not Specified, Mortgage Loan, Personal Loan, and Mortgage Loan",12.85854553,9,3.9,5,_,700.09,33.35787422,30 Years and 4 Months,Yes,31.19606825,83.18689947,High_spent_Small_value_payments,292.3691573,0,-0.8717,0.4271,-0.2739,-0.7436,-0.0406 -0x1c519,CUS_0x88e3,August,20,988-56-5012,Architect,60829.8,5207.15,4,5,3064.288362,2,"Mortgage Loan, Payday Loan, and Debt Consolidation Loan",1.863025532,5,0.64,2,Good,445.39,26.03341249,32 Years and 8 Months,No,106.318502,553.8017253,High_spent_Large_value_payments,520.5322337,0,0.6166,0.3731,0.1698,0.7808,-1.6455 -0x1c525,CUS_0x8b85,August,47,927-54-7427,Entrepreneur,56615.1,4908.925,5,6,5789,1,Not Specified,9.380376228,11,0.77,5,Good,1170.66,37.19361764,20 Years and 2 Months,No,45.61889463,135.9170123,High_spent_Small_value_payments,569.3565931,0,0.2843,1.1846,-0.6146,0.1028,0.96 -0x1c531,CUS_0x6d82,August,51,323-17-1676,Teacher,11513.045,864.4204167,6,6,13,4,"Not Specified, Not Specified, Personal Loan, and Not Specified",21.85184095,16,14.9,1,Standard,1418.26,26.64945682,32 Years and 6 Months,Yes,32.19335182,68.24597201,Low_spent_Small_value_payments,276.0027178,0,-0.7617,0.1157,-1.5429,0.9907,0.9435 -0x1c53d,CUS_0x2db5,August,18,929-60-6423,Writer,101853.6,,4,6,16,3,"Payday Loan, Student Loan, and Mortgage Loan",18.86945006,12,9.36,11,Standard,833.5487642,29.45153702,17 Years and 5 Months,Yes,203.8112978,1034.652022,Low_spent_Small_value_payments,,0,-0.6781,1.9331,0.2882,2.6156,-0.9864 -0x1c549,CUS_0xbefe,August,23,544-36-0883,Manager,117283.35,9669.6125,1300,7,6.288361749,2,"Not Specified, Payday Loan, and Payday Loan",16.19125025,14.50396597,10.27,3,Good,1381.960361,40.65603506,19 Years and 3 Months,No,173.4809305,,Low_spent_Medium_value_payments,501.1010296,0,-0.2648,0.2888,-1.8616,0.8507,0.5727 -0x1c555,CUS_0x8275,August,39,035-94-7779,Accountant,40925.46,3152.455,1650,5,31,2,"Personal Loan, and Mortgage Loan",22.27074519,12.92471687,14.12,12,_,1654.66269,31.72663649,16 Years and 6 Months,Yes,63.99511936,267.1490105,Low_spent_Medium_value_payments,264.1013702,0,0.7567,-1.1584,1.2349,1.1685,-0.7132 -0x1c561,CUS_0xaf14,August,21,039-64-8322,Mechanic,38840.78,3431.731667,4,7,21,2,"Home Equity Loan, and Personal Loan",8.506792677,9,16.72,9,Standard,1442.28,35.06967134,5 Years and 10 Months,Yes,42.32511917,83.9195084,High_spent_Medium_value_payments,466.9285391,0,1.1405,-0.9507,0.4487,0.7678,0.9202 -0x1c56d,CUS_0xb53d,August,40,729-06-8587,Media_Manager,69955.56,4858.617659,8,6,6,0,,22.81039536,19,6.93,10,_,498.4520393,36.64042086,24 Years and 11 Months,Yes,817.0123409,195.3648386,High_spent_Small_value_payments,654.3445054,0,0.0333,1.0593,0.8566,0.1302,0.2135 -0x1c579,CUS_0x58e5,August,30,207-46-1927,Mechanic,20511.16,,8,8,35.95700519,7,"Not Specified, Credit-Builder Loan, Home Equity Loan, Student Loan, Personal Loan, Payday Loan, and Home Equity Loan",36.22390435,23,6.63,8,Bad,2662.090954,31.94914595,18 Years and 4 Months,Yes,1430.436911,101.5359744,Low_spent_Large_value_payments,209.2030786,0,-1.1427,-2.4745,-0.9473,0.7107,2.2408 -0x1c585,CUS_0x3b1f,August,24,736-65-7068,Doctor,44103.18,,3,7,13,4,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",,18.26404257,11.62,7,Standard,2802.047904,23.84245844,13 Years and 11 Months,Yes,107.4631288,,Low_spent_Small_value_payments,167.153962,0,-0.152,-1.2597,-1.9064,-0.0655,-0.2376 -0x1c591,CUS_0xb742,August,19,630-69-4858,Media_Manager,40846.36,,3,2,7,1,Student Loan,,7,6.53,1,Good,1167.608454,40.46340513,19 Years and 5 Months,NM,28.16283872,65.33771249,High_spent_Medium_value_payments,526.8090443,0,1.3674,-1.5669,0.4775,-0.157,1.1161 -0x1c59d,CUS_0xdcd,August,18,055-56-8402,Engineer,39277.22,,7,7,28.06745738,5,"Auto Loan, Mortgage Loan, Student Loan, Payday Loan, and Mortgage Loan",25.68183572,14,23.59,10,Bad,3024.730954,29.29314172,5 Years and 6 Months,Yes,88.28071514,,High_spent_Large_value_payments,403.3449538,0,0.0975,-0.6258,-0.8741,1.4746,0.0061 -0x1c5a9,CUS_0x793,August,45,477-79-4286,Architect,28824.3,2673.025,10,10,20.88954781,9,"Not Specified, Home Equity Loan, Auto Loan, Student Loan, Auto Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,24,0.62,12,Bad,2421.89,26.15734037,9 Years and 0 Months,Yes,1504.742556,30.9011947,High_spent_Medium_value_payments,287.3286685,0,-1.0107,-1.3219,0.2139,1.9557,-0.0826 -0x1c5b5,CUS_0xa3bd,August,30,125-04-9134,Lawyer,176956.6,14880.38333,3,5,3.288361749,0,Debt Consolidation Loan,7.657917903,10,6.77,1,_,116.94,34.18914093,30 Years and 6 Months,No,82.56196565,1103.77224,High_spent_Small_value_payments,981.6415892,0,1.7554,0.3153,-1.1596,-1.2355,0.573 -0x1c5c1,CUS_0x44a4,August,38,364-60-4810,_______,56545.44,4619.12,8,8,5277.889548,7,"Payday Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",,24,3.04,10,_,2493.18,31.84578119,13 Years and 8 Months,Yes,1508.15909,38.04339098,High_spent_Large_value_payments,461.3794374,0,-0.865,-1.066,-1.4246,-0.505,-1.0329 -0x1c5cd,CUS_0xc78,August,39,906-90-3717,Teacher,33960.07,3080.005833,1,5,11,1,Not Specified,3.839591495,6,4.23,2,Good,436.0490891,35.95798651,26 Years and 0 Months,No,23.1725825,,Low_spent_Small_value_payments,256.2637608,0,-1.3291,-0.6976,-0.3706,-0.4608,-0.0274 -0x1c5d9,CUS_0x1e50,August,29,812-89-6100,Lawyer,31500.55,2665.045833,1,4,6,0,,,11,4.79,4,Good,861.13,39.85644023,,No,0,134.7814977,Low_spent_Large_value_payments,401.7230856,0,0.5893,-1.8655,-0.4217,0.6451,0.9547 -0x1c5e5,CUS_0x206c,August,36,983-60-4571,Engineer,108472.35,,5,7,2,4,"Mortgage Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",,14,0.57,3,_,1351.42,40.48686167,23 Years and 10 Months,No,241.6056743,475.0859951,Low_spent_Medium_value_payments,486.6445806,0,0.9759,-1.455,1.9325,0.0724,-0.0959 -0x1c5f1,CUS_0x787f,August,22,401-83-7671,Scientist,25208.64,2146.344593,3,5,3184,4,"Student Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",18.29502045,17,4.15,5,Standard,173.09,37.07573448,30 Years and 0 Months,No,276.4513296,,Low_spent_Small_value_payments,188.1768822,0,1.0037,0.4406,-0.9413,-0.936,0.6796 -0x1c5fd,CUS_0x4f3,August,18,273-47-7879,Doctor,58477.59,5005.1325,10,8,20.95700519,6,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Student Loan, Not Specified, and Debt Consolidation Loan",25.70336186,15,26.44,8,Bad,5120.180954,28.52991773,2 Years and 5 Months,Yes,1552.299549,263.0291173,Low_spent_Medium_value_payments,244.1342145,0,-0.4109,2.407,-0.8789,-0.2915,0.5724 -0x1c609,CUS_0x3561,August,30,169-22-4626,Developer,42032.76,3569.73,0,4,6,1,Not Specified,12.15140586,7.943574764,5.11,7,Good,720.0731273,24.63112313,23 Years and 4 Months,No,22.45599512,83.13504756,High_spent_Medium_value_payments,501.3819573,0,0.4833,0.1365,-2.9706,-0.4878,0.5861 -0x1c615,CUS_0xb6ae,August,34,587-82-9256,Journalist,57047.52,,4,5,8,3,"Mortgage Loan, Personal Loan, and Payday Loan",,11,6.24,4,Standard,2201.14,26.39229592,17 Years and 2 Months,Yes,129.1617581,248.030636,High_spent_Small_value_payments,335.503606,0,-2.1275,0.5064,2.0132,-1.7067,-1.1399 -0x1c621,CUS_0xb634,August,42,399-60-8339,Entrepreneur,67500.54,5642.045,7,5,15,5,"Debt Consolidation Loan, Student Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,9.712395081,10.47,12,_,1192.173767,37.60251671,8 Years and 0 Months,Yes,40222,148.6783835,Low_spent_Large_value_payments,411.5737441,0,-1.098,-0.251,0.6605,-0.0937,-0.0144 -0x1c62d,CUS_0x5323,August,43,371-42-2940,Manager,15599.95,1024.995833,10,9,22.06745738,9,"Credit-Builder Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",35.4214872,21,26.24,12,Bad,4620.650954,23.50139251,10 Years and 10 Months,Yes,111.6369997,126.8393084,Low_spent_Small_value_payments,127.3029872,0,0.7654,2.2123,0.6786,0.9908,0.4115 -0x1c639,CUS_0x99cc,August,44,424-82-3402,Scientist,44046.21,3466.5175,7,7,21,7,"Not Specified, Auto Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, and Student Loan",20.10477159,16,15.88,9,Bad,2444.951871,36.77322761,13 Years and 2 Months,Yes,161.292233,195.0308503,High_spent_Small_value_payments,278.4298389,0,-0.6011,0.3108,0.0426,0.2575,-0.3349 -0x1c645,CUS_0x6e05,August,45,957-54-6785,Musician,168502.68,,5,6,8,4,"Auto Loan, Not Specified, Auto Loan, and Payday Loan",,1,0.59,4,Good,692.009385,29.05365252,29 Years and 8 Months,No,79633,377.2286618,High_spent_Large_value_payments,805.0619929,0,-0.5474,-0.5223,0.5586,1.0692,-1.4162 -0x1c651,CUS_0xa9a8,August,37,310-21-8167,Musician,31795.48,,8,9,15.88954781,9,"Student Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Not Specified, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",19.1134691,,5.47,12,_,5179.838957,28.58979725,7 Years and 9 Months,Yes,1529.505559,300.3411987,Low_spent_Small_value_payments,55.38549456,0,-0.0766,-0.4595,0.8366,-0.3574,1.5648 -0x1c65d,CUS_0x36eb,August,18,#F%$D@*&8,Scientist,9834.755,565.5629167,8,10,30.95700519,7,"Payday Loan, Auto Loan, Payday Loan, Auto Loan, Home Equity Loan, Auto Loan, and Student Loan",,18.09425198,4.85,15,_,4396.570284,36.80779676,8 Years and 2 Months,Yes,1354.411608,73.97407992,Low_spent_Small_value_payments,197.1202344,0,-0.1202,-0.0086,-0.4492,0.402,-0.1996 -0x1c669,CUS_0x2f24,August,25,499-88-6136,Lawyer,58782.24,,8,9,25.95700519,6,"Home Equity Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",46.56531264,27.26628657,29.09,13,Bad,3263.873507,32.35158614,11 Years and 11 Months,Yes,1553.034227,,Low_spent_Large_value_payments,202.1461469,0,-0.2633,-0.1832,1.3245,1.1624,0.4746 -0x1c675,CUS_0x3240,August,34,924-63-6370,Developer,136765.92,11577.16,3,2,4,4,"Debt Consolidation Loan, Not Specified, Student Loan, and Home Equity Loan",15.05813046,15,1.82,1,Good,357.3388769,41.43065451,22 Years and 10 Months,No,300.4755553,731.3436477,Low_spent_Medium_value_payments,499.2024922,0,-0.8682,0.3684,-0.2141,0.9392,0.5305 -0x1c681,CUS_0x796e,August,53,271-02-5603,Lawyer,42359.24,3756.936667,7,5,11,0,,33.11015768,23,8.82,4,Standard,164.09,25.06689578,25 Years and 4 Months,No,0,235.6009896,!@9#%8,430.0926771,0,1.2566,0.2544,0.042,0.4449,-0.4396 -0x1c68d,CUS_0x4aa5,August,43,090-87-8841,Mechanic,84261.3,6772.775,5,7,5,6,"Debt Consolidation Loan, Student Loan, Payday Loan, Personal Loan, Auto Loan, and Auto Loan",28.41914573,23.49038114,9.9,5,Standard,1101.470089,30.94824376,11 Years and 6 Months,Yes,214.1273741,152.2290603,High_spent_Small_value_payments,570.9210656,0,-0.8055,-0.1181,0.4969,1.5187,-0.9766 -0x1c699,CUS_0x4046,August,19,610-47-5862,Mechanic,41191.6,,0,3,4,1,Debt Consolidation Loan,5.471030144,8,4.55,3,Good,801.66,36.72400887,18 Years and 5 Months,No,21.40349214,80.01520291,Low_spent_Large_value_payments,507.0446383,0,0.9914,0.3346,1.3041,0.4456,-0.4523 -0x1c6a5,CUS_0x1be4,August,23,226-81-3945,Mechanic,28491.46,2273.288333,9,7,26.06745738,7,"Personal Loan, Auto Loan, Mortgage Loan, Student Loan, Personal Loan, Student Loan, and Auto Loan",,21,16.6,14,Bad,3827.150954,32.76358993,6 Years and 11 Months,Yes,127.8849708,200.1301852,Low_spent_Small_value_payments,162.5933894,0,0.7897,0.1481,0.5545,1.1207,0.9556 -0x1c6b1,CUS_0xbe54,August,54,736-33-6781,_______,41675.64,3451.97,4,3,4253,2,"Not Specified, and Personal Loan",,12,4.9,6,Good,1072.176205,24.8423462,25 Years and 10 Months,No,53.79680682,,High_spent_Medium_value_payments,427.6494856,0,-1.2131,-1.267,-1.648,0.3252,-0.0245 -0x1c6bd,CUS_0xb397,August,33,164-65-8859,Media_Manager,171399.84,,4,3,6,1,Mortgage Loan,,1,8.61,3,_,1306.63,23.14358898,15 Years and 9 Months,No,101.8671466,1181.683122,Low_spent_Medium_value_payments,406.2817315,0,1.086,0.37,1.1194,1.4302,-0.0065 -0x1c6c9,CUS_0x3ee4,August,32,097-94-1781,Doctor,19982.93,1651.244167,3,4,11,0,,5.165979642,6,13.11,2,_,443.8129764,34.52019744,33 Years and 6 Months,No,0,49.54250039,!@9#%8,372.5175262,0,-0.1342,-1.0487,-1.3051,1.4584,-0.184 -0x1c6d5,CUS_0x82a7,August,45,552-36-8989,Scientist,9766.965,800.91375,8,10,21.95700519,6,"Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",,26.8976047,4.86,8,Bad,2748.414704,27.12380316,8 Years and 3 Months,Yes,1348.835151,82.98061857,Low_spent_Small_value_payments,217.2252361,0,0.9381,-0.4488,-1.2051,-0.9482,-0.412 -0x1c6e1,CUS_0x1dc2,August,46,358-95-7684,Engineer,9925.3,761.1083333,9,7,32,7,"Payday Loan, Not Specified, Payday Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,17.50647179,0.7,11,Bad,3478.334112,34.44979011,14 Years and 3 Months,Yes,41.63819597,30.05528749,Low_spent_Small_value_payments,294.4173499,0,1.0666,0.2598,0.1473,2.3994,-0.9482 -0x1c6ed,CUS_0x1630,August,35,638-52-4307,Writer,17706148,6943.133333,4,6,9.288361749,6,"Not Specified, Student Loan, Personal Loan, Not Specified, Not Specified, and Debt Consolidation Loan",13.49128783,11.87633518,16.55,5,Standard,416.2958554,31.16565,11 Years and 2 Months,Yes,340.28773,816.1856354,Low_spent_Medium_value_payments,237.777429,0,0.7265,-1.6814,-1.4335,-1.8117,-0.0413 -0x1c6f9,CUS_0x9c65,August,23,#F%$D@*&8,Entrepreneur,7152.2,,8,5,30,7,"Not Specified, Personal Loan, Auto Loan, Payday Loan, Not Specified, Student Loan, and Mortgage Loan",6.984322726,9,8.67,12,Standard,2004.55,35.66882394,10 Years and 9 Months,Yes,29.84649357,38.06396853,Low_spent_Large_value_payments,268.5912046,0,-0.0065,-0.1988,-1.1813,0.0453,0.9656 -0x1c705,CUS_0x706d,August,39,607-61-8221,Developer,62030.64,4883.22,3,9,25,3,"Home Equity Loan, Credit-Builder Loan, and Payday Loan",,16.8804483,18.48,15,Standard,1947.62542,28.71517752,19 Years and 10 Months,Yes,107.0285509,102.0015366,High_spent_Small_value_payments,539.2919125,0,0.151,0.4857,2.1706,-0.6699,-0.2245 -0x1c711,CUS_0x8c52,August,48,974-33-1106,_______,41715.11,,0,4,4,0,,12.61110378,11,10.09,4,Good,1494.8,24.48492338,33 Years and 4 Months,No,0,70.76603587,High_spent_Small_value_payments,528.7598808,0,-0.6707,-1.3434,0.1903,0.0913,-0.5426 -0x1c71d,CUS_0x1735,August,20,897-04-2508,Scientist,84621.39,7171.7825,0,4,1.288361749,0,,2.40500876,6,7.7,9,Good,57.48392821,25.99347613,20 Years and 11 Months,No,0,536.8516331,High_spent_Large_value_payments,855.7221093,0,-0.9822,0.7806,-0.6341,-0.3644,1.4815 -0x1c729,CUS_0xa255,August,80,918-14-5157,Entrepreneur,13309.51,,3,7,13,4,"Mortgage Loan, Student Loan, Personal Loan, and Student Loan",23.88949387,19,19.56,4,_,662.6935325,39.89677574,27 Years and 10 Months,Yes,37.52753109,52.47033243,Low_spent_Medium_value_payments,279.3797173,0,-0.016,0.695,0.9464,0.5189,-0.4233 -0x1c735,CUS_0x2761,August,50,341-59-0640,Manager,21129.93,,3,4,3,4,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",20.67579852,17,9.82,9,Standard,563.6327304,26.60924773,16 Years and 2 Months,No,39.59495091,113.1083193,Low_spent_Large_value_payments,316.073112,0,-0.4599,-0.1399,-1.0497,0.8854,-1.7098 -0x1c741,CUS_0xae54,August,29,078-25-0166,Musician,11372.9,1174.741667,6,6,7.067457376,0,,14.91877812,9,11.91,5,_,940.0809543,29.90820354,16 Years and 10 Months,NM,0,74.12684024,High_spent_Small_value_payments,276.6270385,0,-0.3496,-0.2126,-0.1478,-0.1077,-1.6136 -0x1c74d,CUS_0x748,August,42,#F%$D@*&8,Doctor,71536.52,5715.376667,7,7,5548,100,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Student Loan, and Home Equity Loan",34.40386469,24,0.81,11,_,1390.09,31.39369428,,Yes,339.7479714,47.67672979,High_spent_Large_value_payments,424.1129655,0,-0.0419,0.7496,0.8083,-1.7194,-0.5328 -0x1c759,CUS_0xb7e2,August,37,778-42-7488,Media_Manager,21509.645,,4,1,3.288361749,0,Payday Loan,0,4,5.77,8,Good,66.43679309,31.95340004,29 Years and 10 Months,No,9.168931262,448.7956322,High_spent_Medium_value_payments,379.4660228,0,0.2698,-1.9384,-1.1403,1.4293,-2.7605 -0x1c765,CUS_0x49fd,August,33,570-71-1885,Lawyer,158848.76,,1,7,9,2,"Credit-Builder Loan, and Home Equity Loan",0,0,9.32,3,_,378.408224,41.51241792,32 Years and 2 Months,No,145.5136394,309.1357446,High_spent_Large_value_payments,1085.990283,0,-0.4885,0.8847,2.4445,0.1633,0.1191 -0x1c771,CUS_0x5a82,August,26,896-84-7984,Writer,33467.15,,7,5,7,0,,,19,3.76,6,Good,1201.734108,27.76988381,30 Years and 10 Months,No,0,86.85111605,High_spent_Medium_value_payments,476.3603923,0,0.6065,0.261,1.0941,-0.5417,0.6155 -0x1c77d,CUS_0xa39e,August,36,822-96-9212,Lawyer,15364.1,,8,10,21.06745738,5,"Personal Loan, Not Specified, Home Equity Loan, Payday Loan, and Payday Loan",31.10531644,18.27296586,1.57,14,Bad,3165.914492,30.81501221,18 Years and 2 Months,Yes,58.03431777,141.4991866,Low_spent_Medium_value_payments,206.7803743,0,-1.1233,1.3759,0.1321,0.4756,-0.4529 -0x1c789,CUS_0x75e3,August,26,143-28-6216,Scientist,14147.38,1091.948333,8,1242,31.95700519,100,"Personal Loan, Payday Loan, and Student Loan",39.03615689,19.55710694,7.54,12,_,3252.909736,26.56464842,19 Years and 11 Months,Yes,1349.271017,146.4674643,Low_spent_Small_value_payments,182.4059823,0,-0.9841,-0.4596,-1.1,-0.457,0.2886 -0x1c795,CUS_0x1c1a,August,38,049-65-5834,Accountant,34144.14,,4,3,15,7,"Not Specified, Personal Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Not Specified, and Home Equity Loan",15.99304334,11,16.5,12,_,203.04,31.99745437,,Yes,134.8139223,57.8976173,High_spent_Small_value_payments,370.2229604,0,0.9775,0.1712,-0.6764,0.4694,0.2766 -0x1c7a1,CUS_0x4f29,August,37,332-04-0058,Journalist,18431.8,1543.983333,7,5,5.067457376,4,"Student Loan, Not Specified, Not Specified, and Personal Loan",21.25712803,13.3149419,4.59,5,Good,1808.794083,29.35848916,29 Years and 6 Months,No,52.69003966,137.9109202,!@9#%8,227.0770855,0,-0.2918,-0.9456,1.0967,0.2471,0.6538 -0x1c7ad,CUS_0x1c7a,August,32,324-22-8733,Mechanic,19568.09,1765.674167,6,9,35.95700519,9,"Mortgage Loan, Student Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Not Specified",,19.61324791,16.48,17,_,4101.145776,36.59261393,3 Years and 8 Months,Yes,1448.977421,,High_spent_Large_value_payments,228.7639439,0,0.0418,2.0362,2.0933,-0.9805,-0.2826 -0x1c7b9,CUS_0x1dab,August,30,#F%$D@*&8,Writer,10622.485,,6,4,8,4,"Personal Loan, Home Equity Loan, Personal Loan, and Personal Loan",20.88318477,15.51877241,9.31,1,_,1533.032686,30.19150046,15 Years and 11 Months,Yes,20.0837238,27.02597514,High_spent_Small_value_payments,285.1110094,0,1.0774,1.0142,-0.6824,1.1378,-0.7738 -0x1c7c5,CUS_0x9274,August,54,199-85-2971,Media_Manager,19797.895,1816.824583,4,4,6,1,Auto Loan,,4,9.28,3,_,607.67,24.32927415,15 Years and 11 Months,No,13.04719432,179.7857256,Low_spent_Small_value_payments,278.8495384,0,-1.5613,-0.1506,-0.762,-1.1049,0.3284 -0x1c7d1,CUS_0x7aad,August,80,679-12-3204,Musician,30696.33,2617.0275,2,3,8,2,"Home Equity Loan, and Student Loan",8.057215118,10,7.75,4,Good,1263.159726,25.49180216,17 Years and 9 Months,No,27.44815385,113.5775756,Low_spent_Small_value_payments,422.1995924,0,1.0545,-1.1728,-0.8356,-0.1363,-0.7938 -0x1c7dd,CUS_0xebe,August,38,927-90-3768,Journalist,28286.24,2273.186667,4,7,7,1,Mortgage Loan,,13,11.99,4,Standard,1406.94,28.70036596,,No,17.43167231,47.31416389,High_spent_Medium_value_payments,412.5728305,0,-0.7126,0.3245,-0.0654,-1.3326,-0.5895 -0x1c7e9,CUS_0x4ac2,August,43,142-75-5225,Developer,10100.48,1129.706667,10,10,29.88954781,7,"Not Specified, Payday Loan, Auto Loan, Not Specified, Not Specified, Not Specified, and Home Equity Loan",,19,9.89,11,Bad,4336.68,34.09941375,13 Years and 0 Months,Yes,1356.392661,32.01526524,High_spent_Small_value_payments,290.2326593,0,1.804,-0.6426,0.7305,-1.1638,-0.5432 -0x1c7f5,CUS_0x2031,August,49,999-28-9483,Musician,20675.475,1899.95625,3,1,10.28836175,2,"Student Loan, and Payday Loan",6.293673828,7,5.76,3,Good,67.58996759,26.43781739,21 Years and 9 Months,No,21.99594319,480.2831415,High_spent_Small_value_payments,375.5233445,0,0.6645,0.997,-0.0265,0.518,-1.7728 -0x1c801,CUS_0x919b,August,32,613-58-8505,Entrepreneur,52862.85,4575.2375,7,9,22.06745738,5,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Auto Loan, and Auto Loan",44.67118092,28.53461268,29.77,13,_,3388.101962,26.20035529,6 Years and 3 Months,Yes,136.662413,,Low_spent_Small_value_payments,37.72016997,0,1.3806,-1.0385,-0.2162,-1.5045,0.1742 -0x1c80d,CUS_0x2d81,August,46,168-27-5955,Developer,151854.56,12446.54667,3,4,9,3,"Not Specified, Auto Loan, and Auto Loan",0,1,12.42,2,_,1205.6,34.54694947,16 Years and 3 Months,No,316.4817264,686.5914427,High_spent_Small_value_payments,501.5814976,0,-0.9798,-0.6968,0.0589,-0.2963,-0.3513 -0x1c819,CUS_0x92ca,August,20,724-38-6924,Teacher,67867.24,5389.603333,7,3,14,4,"Student Loan, Mortgage Loan, Auto Loan, and Auto Loan",18.17105022,16,11.6,9,Standard,706.85,28.27749285,16 Years and 10 Months,Yes,135.0092806,115.3725988,!@9#%8,538.5784539,0,0.3114,-0.3258,1.1145,-0.7048,-0.0746 -0x1c825,CUS_0xc5f8,August,22,697-34-9092,Musician,19998.33,1810.5275,8,6,12,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",23.53826629,18,12.44,6,Standard,1035.7,23.70931909,16 Years and 0 Months,Yes,42.94652502,171.9716029,Low_spent_Small_value_payments,256.1346221,0,-0.3543,-0.2674,-1.8024,0.5558,0.541 -0x1c831,CUS_0x2010,August,37,357-13-2811,Writer,109563.36,9271.28,4,3,8.288361749,0,Home Equity Loan,10.03297626,12,8.74,6,Good,214.57,34.29935083,25 Years and 0 Months,No,84.18834626,912.0624099,Low_spent_Large_value_payments,620.8147048,0,-0.3313,2.0162,-0.3878,0.0846,0.328 -0x1c83d,CUS_0x2982,August,36,325-12-7594,Journalist,33580.53,,8,7,19,1,Mortgage Loan,20.73826606,17,7.78,7,_,517.32,27.61716242,20 Years and 3 Months,NM,26.01741948,309.4388911,Low_spent_Small_value_payments,221.2814395,0,-0.721,1.3012,-0.1935,-0.8473,-1.0313 -0x1c849,CUS_0x8b7c,August,39,315-96-1253,Scientist,73826.31,5929.1925,3,7,15,3,"Auto Loan, Personal Loan, and Payday Loan",15.31026368,13,11.46,3,_,442.03,36.41225044,30 Years and 8 Months,Yes,170.6532581,81.33519371,High_spent_Large_value_payments,580.9307982,0,1.034,-0.2151,1.0109,-0.2677,0.186 -0x1c855,CUS_0x1bbb,August,26,571-52-6747,Musician,13164.265,,6,4,9.067457376,7,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",,15,15.24,6,Standard,920.6909543,27.6022341,12 Years and 0 Months,Yes,64.61912692,,Low_spent_Small_value_payments,232.3974606,0,0.6085,1.2629,-0.3883,-0.0976,1.3021 -0x1c861,CUS_0x9657,August,26,582-20-3144,Teacher,7123.915,,4,6,19,4,"Auto Loan, Home Equity Loan, Not Specified, and Student Loan",9.244707635,10.74359051,17.24,9,_,1538.725274,30.07596203,,Yes,19.53036923,90.11766479,Low_spent_Small_value_payments,256.0179243,0,0.2705,1.105,1.3818,-0.6289,-0.6353 -0x1c86d,CUS_0x73fb,August,26,293-05-3056,Engineer,44872.3,,1,2,3,0,,,,1.35,4,Good,298.1895056,27.33368085,29 Years and 11 Months,No,0,69.00229759,High_spent_Medium_value_payments,584.2340529,0,0.329,1.7651,0.1006,0.677,-0.3648 -0x1c879,CUS_0xbe22,August,38,648-20-4009,Scientist,38631.06,3046.255,5,3,9,0,,,16,11.75,4,Standard,1061.556033,35.59556859,18 Years and 11 Months,No,0,82.61170347,High_spent_Small_value_payments,489.7600088,0,1.6027,-0.431,0.8879,0.767,0.0274 -0x1c885,CUS_0x2c54,August,52,772-19-9969,_______,49497.34,,8,4,7.288361749,4,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",,14,1.29,5,Standard,129.5,22.20895237,24 Years and 10 Months,No,151.7434212,682.79986,Low_spent_Large_value_payments,275.5720132,0,0.0623,0.4776,1.0446,0.193,0.5623 -0x1c891,CUS_0x68e1,August,34,841-44-8928,Developer,10732.78,,6,6,15,2,"Auto Loan, and Mortgage Loan",19.39987041,15,,7,_,915.78,27.26066172,16 Years and 4 Months,Yes,11.43827586,81.63679421,Low_spent_Medium_value_payments,298.6647633,0,0.1641,0.0574,0.2285,-0.516,-0.573 -0x1c89d,CUS_0x2206,August,80,176-45-5890,Architect,36047.13,,1,7,9,4,"Not Specified, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",,3.451430265,6.3,2,Good,1425.437127,36.98952848,24 Years and 2 Months,No,84.43033957,,Low_spent_Large_value_payments,295.1119701,0,1.2741,-1.426,-1.3317,1.4457,0.7401 -0x1c8a9,CUS_0x5856,August,80,046-86-7274,Teacher,61630.4,5075.866667,5,7,3,3,"Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",0.707515992,2.345098999,2.26,3,_,1388.141525,31.69043224,,NM,128.6215792,111.6565407,High_spent_Medium_value_payments,517.3085468,0,0.0082,0.5141,1.2876,-0.6985,-0.9518 -0x1c8b5,CUS_0xb13b,August,36,992-69-2664,Architect,11840.105,,7,4,20,2,"Credit-Builder Loan, and Credit-Builder Loan",14.52783283,13,19.25,2,Standard,1259.92,38.37367411,21 Years and 10 Months,Yes,10.13524643,45.63714826,Low_spent_Small_value_payments,310.595147,0,-0.2751,0.5533,1.5712,-1.3338,-1.8191 -0x1c8c1,CUS_0x6991,August,43,065-68-3281,Teacher,18922.23,1801.8525,7,7,33,4,"Not Specified, Student Loan, Home Equity Loan, and Mortgage Loan",33.91215438,14.8731818,17.07,10,Standard,1523.525185,27.30432815,10 Years and 0 Months,Yes,39.59802557,224.1293555,Low_spent_Small_value_payments,206.4578689,0,-0.8161,1.2868,0.0564,0.6518,1.3553 -0x1c8cd,CUS_0x7450,August,51,952-17-6304,Scientist,85023.9,7109.325,2,7,7,2,"Mortgage Loan, and Credit-Builder Loan",17.747963,10.09364699,4.38,8,Good,1508.690931,35.41826364,33 Years and 5 Months,NM,130.9801389,138.6460099,High_spent_Medium_value_payments,691.3063512,0,0.414,-0.187,0.7462,-2.9086,0.7168 -0x1c8d9,CUS_0x8793,August,26,198-37-2258,Accountant,42062.81,3372.234167,1,5,4.288361749,2,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",4.911753501,7,10.88,6,Good,93.73,36.09700913,18 Years and 4 Months,No,78.47564896,,High_spent_Medium_value_payments,407.9841532,0,0.1927,-0.8293,-0.685,-1.7327,-0.2373 -0x1c8e5,CUS_0xbc57,August,43,549-76-1283,Media_Manager,31236.78,2335.065,4,4,24,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",3.729611513,5,7.22,6,Standard,2250.42,29.85380064,6 Years and 3 Months,Yes,80.33364378,57.38949964,High_spent_Large_value_payments,335.7833566,0,-1.4045,0.3105,1.4091,0.3381,-0.8239 -0x1c8f1,CUS_0x45aa,August,23,143-47-1477,Entrepreneur,39909.36,,3,7,29,5,"Payday Loan, Not Specified, Not Specified, Payday Loan, and Auto Loan",16.66303015,14,,10,Standard,2094.03,33.82704903,17 Years and 3 Months,Yes,141.0831536,,High_spent_Medium_value_payments,409.7713987,0,0.4338,0.8472,0.206,-0.6159,0.1957 -0x1c8fd,CUS_0xb229,August,39,067-87-5834,Media_Manager,115012.4,9838.366667,2,2,8,2,"Home Equity Loan, and Debt Consolidation Loan",,7,1.13,1,_,306.9,34.1814818,32 Years and 10 Months,No,173.2189366,287.91664,Low_spent_Medium_value_payments,802.7010901,0,-0.0413,-0.2915,-0.2222,0.9818,1.6363 -0x1c909,CUS_0x5af5,August,25,226-74-3581,Manager,10482.305,1114.525417,9,8,21.06745738,4,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",,27.085901,8.31,1103,Bad,2564.269167,36.54341873,17 Years and 9 Months,Yes,29.37904738,134.2146423,Low_spent_Small_value_payments,211.1385641,0,-0.6092,0.7451,-1.4989,-1.3133,1.6495 -0x1c915,CUS_0x8749,August,22,185-23-0205,Journalist,81617.68,6601.473333,6,7,27,5,"Personal Loan, Payday Loan, Student Loan, Mortgage Loan, and Not Specified",,16,18.46,13,Bad,4156.6,34.89394812,3 Years and 5 Months,Yes,239.5279578,109.3391717,High_spent_Large_value_payments,551.2802039,0,-0.3185,1.4672,1.8895,0.4877,1.496 -0x1c921,CUS_0x8f6b,August,18,345-95-7729,Journalist,28730.26,,7,6,10,3,"Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",21.95834943,16,16.83,7,_,37.2,33.23312969,32 Years and 6 Months,Yes,54.03705813,56.98347929,High_spent_Medium_value_payments,372.2982959,0,0.115,0.5792,0.8831,-0.1948,0.1618 -0x1c92d,CUS_0x88f9,August,43,435-05-8261,Media_Manager,10242.055,1100.504583,8,5,18.06745738,2,"Personal Loan, and Home Equity Loan",22.9608879,14.43477005,13.6,11,Standard,2168.997969,40.12042148,17 Years and 2 Months,Yes,14.92855128,53.40068956,Low_spent_Small_value_payments,305.0009295,0,1.6592,1.1487,0.1446,-2.3408,-0.2799 -0x1c939,CUS_0xc5c9,August,44,792-51-6409,Accountant,114007.88,,8,4,13,4,"Auto Loan, Student Loan, Not Specified, and Not Specified",27.29100155,18,4.86,5,Standard,457.54,31.58697875,20 Years and 3 Months,NM,253.0152869,,Low_spent_Small_value_payments,132.3255098,0,-0.0586,0.1723,1.1452,0.8505,1.2029 -0x1c945,CUS_0x851c,August,18,535-59-9704,Musician,46679.76,,5,4,8,3,"Auto Loan, Auto Loan, and Home Equity Loan",,19,6.19,6,Standard,629.26,38.89417214,6 Years and 0 Months,Yes,74.41370182,10000,High_spent_Medium_value_payments,463.9159986,0,-0.6736,-0.0582,0.0379,0.2773,-1.1844 -0x1c951,CUS_0x1338,August,40,250-62-9181,_______,20078.47,1447.205833,10,10,32.95700519,8,"Student Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",35.56561585,22,25.27,13,_,4768.760954,32.79882786,13 Years and 10 Months,NM,1443.817454,78.19652149,Low_spent_Small_value_payments,191.6562385,0,0.7582,-0.1952,1.2203,0.6488,0.1057 -0x1c95d,CUS_0x1ed2,August,25,443-20-1399,Journalist,20132.77,1690.730833,9,8,18,2,"Credit-Builder Loan, and Not Specified",29.88070731,21.6847703,17.34,11,Standard,1904.595088,40.88289218,16 Years and 3 Months,Yes,22.53535624,22.71885359,High_spent_Large_value_payments,363.8188735,0,-0.0046,-0.9467,0.9821,1.0102,-1.0308 -0x1c969,CUS_0xac1,August,51,081-26-8313,Architect,12221.185,,3,5,19.06745738,1,Credit-Builder Loan,13.96821197,9,19.2,5,Standard,1378.740954,27.61814991,32 Years and 8 Months,Yes,6.298573217,,Low_spent_Small_value_payments,293.5926934,0,-0.6848,-0.6011,-0.1573,0.4551,-0.0354 -0x1c975,CUS_0x5e7a,August,30,671-32-4609,Teacher,47404.02,3883.335,7,9,25.06745738,6,"Payday Loan, Auto Loan, Payday Loan, Mortgage Loan, Student Loan, and Student Loan",30.63721535,17,11.61,9,_,2844.910954,33.79787849,12 Years and 0 Months,Yes,156.4680009,183.8020649,Low_spent_Medium_value_payments,301.3431462,0,-1.2379,-0.0755,0.8469,0.3562,-0.3316 -0x1c981,CUS_0xc715,August,39,287-52-6059,Teacher,32291.88,,7,10,35.06745738,5,"Home Equity Loan, Student Loan, Payday Loan, Not Specified, and Student Loan",21.19993231,,26.55,7,Bad,3653.489619,36.99338402,1 Years and 11 Months,Yes,119.7953272,,High_spent_Small_value_payments,225.8037282,0,0.6259,0.753,0.7482,-0.9549,-0.4062 -0x1c98d,CUS_0x7327,August,19,156-82-3458,Manager,32128.47,2386.3725,3,4,11,4,"Credit-Builder Loan, Auto Loan, Personal Loan, and Payday Loan",19.43755626,16,3.13,4,Good,1054.2581,26.03114429,17 Years and 0 Months,NM,93.41266531,120.0818735,Low_spent_Medium_value_payments,318.2211279,0,1.1577,-1.9347,-1.8109,0.7764,0.5627 -0x1c999,CUS_0xc2ee,August,38,175-81-5968,Accountant,42588.14,3368.011667,7,3,6,100,,,19,0.89,4,Standard,751.44,25.32569418,,No,0,,Low_spent_Small_value_payments,250.484469,0,-1.2718,-0.5161,-0.4897,0.7086,-0.0484 -0x1c9a5,CUS_0x7830,August,39,752-12-4966,Manager,29343.05,,3,4,10,4,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",,10,17.55,4,Standard,590.65,38.26466882,12 Years and 11 Months,Yes,79.49435361,158.3140422,High_spent_Small_value_payments,292.3170209,0,-0.4178,0.9065,0.784,-0.021,-2.3736 -0x1c9b1,CUS_0xced,August,41,112-22-9951,Architect,36311.46,,8,5,13.06745738,4,"Payday Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",,10.08232048,16.75,8,Standard,2237.244535,36.5052751,20 Years and 8 Months,Yes,68.12821011,143.297673,Low_spent_Small_value_payments,326.649329,0,-0.3691,2.1205,-0.045,-0.2094,-1.0813 -0x1c9bd,CUS_0x9e42,August,39,686-51-6231,Media_Manager,126603.51,10711.2925,1,5,1.288361749,2,"Personal Loan, and Student Loan",0,3,6.04,,_,545.67,37.97480356,30 Years and 5 Months,No,163.9444818,517.3461051,High_spent_Large_value_payments,1049.776124,0,-0.3724,0.2018,0.738,0.7604,0.2617 -0x1c9c9,CUS_0x7029,August,21,212-62-9956,Entrepreneur,16944.54,1689.045,8,5,16,0,,,20,18.04,4,Standard,919.7365502,38.90865644,32 Years and 4 Months,Yes,0,104.8625636,Low_spent_Large_value_payments,349.1416104,0,0.2412,1.0442,0.3056,1.4634,0.5812 -0x1c9d5,CUS_0x4f2f,August,24,642-18-2647,Engineer,49596.42,4334.035,6,9,24.88954781,7,"Payday Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",17.89816317,,,14,Bad,2838.24941,26.97288728,8 Years and 6 Months,Yes,1517.322109,63.26197892,High_spent_Medium_value_payments,416.0423891,0,0.7214,-0.5452,-0.4751,0.6402,-0.0326 -0x1c9e1,CUS_0x32c7,August,30,224-30-1995,Journalist,18873.52,1625.793333,8,5,17.06745738,2,"Payday Loan, and Mortgage Loan",,31.13349851,4.01,6,Bad,3198.248474,40.3058615,6 Years and 4 Months,Yes,23.83856035,66.49170485,Low_spent_Small_value_payments,335.5287802,0,-0.2252,-0.4796,0.023,-1.3252,-0.9379 -0x1c9ed,CUS_0x6525,August,28,734-19-2330,Manager,28431.46,2378.288333,7,5,18,5,"Not Specified, Home Equity Loan, Mortgage Loan, Student Loan, and Mortgage Loan",39.51677819,26.88430466,2.64,13,Bad,2457.346351,34.93423046,9 Years and 0 Months,Yes,111.2270292,,Low_spent_Small_value_payments,141.894589,0,-0.8737,1.4714,-2.1661,1.3908,-1.1279 -0x1c9f9,CUS_0x5418,August,41,256-23-6467,Manager,144390.2,12080.51667,5,5,2,0,,0.538074155,4,7.86,1,Good,405.4417669,27.34412232,27 Years and 4 Months,No,0,1865.512904,Low_spent_Small_value_payments,,0,1.4904,-0.2875,-1.1252,0.1383,0.1211 -0x1ca05,CUS_0x6818,August,27,817-44-1544,Journalist,34341.62,,6,6,2,3,"Student Loan, Credit-Builder Loan, and Student Loan",19.11644752,,11.4,6,Standard,557.48,38.74256093,30 Years and 3 Months,No,57.17550717,88.5768448,High_spent_Medium_value_payments,419.3278147,0,-1.1595,0.9057,1.2687,-1.1334,-0.671 -0x1ca11,CUS_0x5a1e,August,80,692-48-2658,Writer,10456.235,,4,8,25,2,"Auto Loan, and Student Loan",23.50758023,16.59359431,16.4,11,Standard,1656.278266,30.0376824,10 Years and 4 Months,Yes,9.822821936,42.94908657,High_spent_Medium_value_payments,306.2633832,0,-0.5083,0.9295,-1.9846,-1.1969,-0.0844 -0x1ca1d,CUS_0x711b,August,48,805-81-7847,Accountant,136179.04,,7,6,16,1,Debt Consolidation Loan,19.11264048,,4.28,8,Standard,556.85,40.85452,26 Years and 6 Months,No,69.41153845,354.0667465,!@9#%8,958.9470484,0,-0.9656,-0.8155,1.3603,1.4091,-1.2103 -0x1ca29,CUS_0x453d,August,25,376-01-8404,Journalist,159327.84,13543.32,3,6,11.28836175,4,"Auto Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,6,8.34,1,Good,803.43,39.46368391,17 Years and 9 Months,No,443.6757809,618.2656379,High_spent_Large_value_payments,952.3280422,0,-0.408,0.6474,-0.5325,-0.4113,0.1195 -0x1ca35,CUS_0xa9cc,August,35,301-84-1162,Media_Manager,38087,2898.916667,8,7,21,7,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",19.44294604,13,13.57,12,_,2002.39,32.41099982,6 Years and 10 Months,Yes,166.8627714,10000,High_spent_Small_value_payments,292.2836813,0,-1.1326,-1.8946,1.0262,2.0228,0.1593 -0x1ca41,CUS_0x6c4e,August,33,467-01-4929,Architect,15784.29,,5,5,9,7,"Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",15.91438445,14,,7,Standard,485.24,29.80498299,17 Years and 9 Months,Yes,91.89197618,111.5019795,Low_spent_Small_value_payments,201.3417943,0,1.7719,-0.3971,-1.9687,0.0578,-0.9359 -0x1ca4d,CUS_0xbeef,August,20,351-04-3643,Mechanic,14531.07,,4,5,9,4,"Auto Loan, Personal Loan, Home Equity Loan, and Not Specified",15.52866851,10,9.77,4,_,268.56,27.4279632,,No,34.46263075,85.06858384,Low_spent_Small_value_payments,273.2610354,0,-0.2224,-1.9506,-0.1222,0.2023,1.3251 -0x1ca59,CUS_0xbc40,August,26,507-87-3579,Musician,77856.36,,10,6,22,8,"Mortgage Loan, Payday Loan, Home Equity Loan, Student Loan, Personal Loan, Auto Loan, Not Specified, and Not Specified",42.97603054,22.75634791,17.78,10,_,4118.105774,37.33982484,4 Years and 5 Months,Yes,755.420518,183.6246413,Low_spent_Large_value_payments,356.1239111,0,-1.3075,-0.2701,-0.2754,-0.8396,-0.7736 -0x1ca65,CUS_0x241d,August,26,642-46-2233,Teacher,19896.89,1434.074167,5,4,20,4,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",27.07879847,21.80686219,12.08,7,_,2452.679779,24.45103609,14 Years and 4 Months,Yes,35.26800169,60.76411085,High_spent_Small_value_payments,307.3753041,0,-1.2521,-0.4311,-0.0417,-0.3382,0.9992 -0x1ca71,CUS_0x93b2,August,50,191-48-4647,Developer,12741.58,1234.798333,5,7,9,3,"Auto Loan, Mortgage Loan, and Personal Loan",,20.7063687,9.4,2,Good,581.4711009,34.9824198,28 Years and 10 Months,No,28.73182913,36.04357025,High_spent_Small_value_payments,318.704434,0,0.7598,1.4384,1.2152,-0.2249,1.3501 -0x1ca7d,CUS_0xb14c,August,42,362-65-9472,Developer,37057.58,,6,3,18,4,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",13.81806872,12,18.94,4,Standard,1970.031261,32.63254892,9 Years and 5 Months,Yes,106.6425283,89.66773025,High_spent_Medium_value_payments,370.1917909,0,-0.4059,1.1537,-1.0505,-0.1369,0.7228 -0x1ca89,CUS_0x8420,August,18,743-41-9460,Media_Manager,19930.93,1708.910833,7,6,17.06745738,5,"Not Specified, Credit-Builder Loan, Auto Loan, Personal Loan, and Payday Loan",34.42662951,18.22448179,9,11,_,5218.810523,37.67848522,14 Years and 4 Months,Yes,56.85617568,216.6205799,Low_spent_Small_value_payments,160.6940398,0,-0.0693,-0.8657,0.1319,-1.4587,-0.7627 -0x1ca95,CUS_0x1041,August,18,675-80-2033,Teacher,8978.11,894.1758333,8,8,30.88954781,9,"Payday Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Student Loan",32.44083347,17,18.48,10,Bad,4913.15,37.74656726,10 Years and 5 Months,Yes,1381.163102,43.56585815,High_spent_Small_value_payments,230.358542,0,0.0813,-1.7703,0.5763,0.5447,1.4148 -0x1caa1,CUS_0x1c2f,August,55,252-59-7720,Manager,54054.18,,6,6,10,100,,,19,7.07,4,Good,583.79,34.3974472,,No,0,505.822141,!@9#%8,213.829359,0,0.5596,-0.1276,0.4781,-1.3825,-1.176 -0x1caad,CUS_0x8f70,August,53,499-88-0422,_______,29536.93,2329.410833,4,7,7,2,"Mortgage Loan, and Home Equity Loan",18.31037098,,10.92,3,Standard,607.5,37.95209946,21 Years and 11 Months,Yes,38.73726434,140.3621452,Low_spent_Small_value_payments,343.8416738,0,0.8125,0.0513,1.235,0.0911,1.7733 -0x1cab9,CUS_0x614f,August,46,622-65-0067,Manager,44624.66,,1,7,3.288361749,0,,0,0,3.46,2,Good,211.4672231,25.70254033,33 Years and 2 Months,No,0,479.7144083,High_spent_Large_value_payments,549.8952193,0,-0.7451,0.0422,1.1197,-1.0126,1.0017 -0x1cac5,CUS_0x1e9c,August,18,810-61-0368,Engineer,9379.93,622.9371981,10,7,16,8,"Mortgage Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Payday Loan, and Credit-Builder Loan",36.9241679,24,3.4,11,Bad,4280.56,32.70217596,5 Years and 6 Months,Yes,73.38721343,86.30978193,Low_spent_Small_value_payments,237.3927232,0,0.0666,1.204,-0.5402,0.3809,-0.1905 -0x1cad1,CUS_0xb012,August,36,409-16-9752,Accountant,41310.18,,3,3,10,0,,16.14809172,14,8.33,4,Good,297.6494651,33.83125973,17 Years and 0 Months,No,39954,278.9740097,Low_spent_Large_value_payments,351.5574095,0,-2.3192,-0.8752,0.8172,1.9643,-0.4337 -0x1cadd,CUS_0xc62c,August,26,866-55-6427,_______,130940.76,10918.73,3,4,11.28836175,0,,0,2,,8,Good,1026.268894,33.00935265,31 Years and 6 Months,NM,0,595.4725905,High_spent_Large_value_payments,1181.860511,0,-0.2397,-0.2372,0.2398,-0.4638,0.6521 -0x1cae9,CUS_0x8f65,August,22,493-46-3498,Musician,80678.55,7017.2125,5,5,8,100,"Student Loan, and Mortgage Loan",12.49516026,13,11.01,5,Standard,345.47,31.8042526,29 Years and 8 Months,Yes,105.4494666,173.5275599,High_spent_Large_value_payments,662.7442235,0,-0.1372,-0.9742,-0.2849,-0.0647,-1.3732 -0x1caf5,CUS_0x27ae,August,38,641-84-8745,Doctor,120061.95,,3,5,9,2,"Debt Consolidation Loan, and Personal Loan",,7,5.39,6,Good,696.3345988,32.20067459,24 Years and 2 Months,No,592.2976884,943.297444,Low_spent_Medium_value_payments,283.3095576,0,-0.2497,-1.2754,-1.9674,-0.3785,-0.5242 -0x1cb01,CUS_0x4e60,August,41,448-66-2016,_______,17379.88,,7,7,23.06745738,9,"Student Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Mortgage Loan, Student Loan, Not Specified, Auto Loan, and Credit-Builder Loan",,20.42300852,6.85,6,Bad,2854.3979,35.77849824,17 Years and 11 Months,Yes,78.26611994,,High_spent_Medium_value_payments,240.4916101,0,0.5675,-1.2913,-0.9076,0.881,0.5981 -0x1cb0d,CUS_0x465c,August,28,312-92-8664,Media_Manager,138079.96,,2,4,7.288361749,0,,11.59573687,11.98509578,9.87,4,Good,717.5039106,28.25250796,29 Years and 11 Months,No,0,967.2484933,Low_spent_Medium_value_payments,867.6553011,0,0.554,-0.2756,0.2864,1.7581,0.5202 -0x1cb19,CUS_0x6ccb,August,41,095-39-2430,Writer,24312.94,2040.078333,4,6,20,6,"Auto Loan, Auto Loan, Auto Loan, Personal Loan, Student Loan, and Not Specified",,15,19.83,4,Standard,636.21,31.84253474,10 Years and 3 Months,Yes,120.6661971,65.39262908,!@9#%8,297.9490072,0,-1.1583,1.0308,-0.9444,-0.1186,0.3358 -0x1cb25,CUS_0x5da2,August,30,977-34-2256,Lawyer,17924.07,1303.6725,6,10,31.88954781,1137,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",27.71187144,19,5.46,17,_,1680.63,32.70158097,14 Years and 2 Months,Yes,1380.513129,,High_spent_Small_value_payments,290.7296266,0,0.8004,-0.6863,-0.3114,0.7948,2.8983 -0x1cb31,CUS_0x638d,August,42,#F%$D@*&8,Engineer,10629.93,,6,7,15,1,Debt Consolidation Loan,16.17590029,11,11.15,3,_,582.83,33.80679612,15 Years and 10 Months,Yes,56.76369805,99.20583794,Low_spent_Medium_value_payments,282.5750656,0,1.1748,-0.4525,0.3108,1.4899,0.7265 -0x1cb3d,CUS_0x777b,August,27,121-84-4174,Lawyer,90661.35,7346.1125,8,3,11,2,"Credit-Builder Loan, and Debt Consolidation Loan",,6,14.76,9,Standard,1375.13,29.96409279,16 Years and 3 Months,Yes,113.126298,484.1270732,!@9#%8,417.3578788,0,-1.6127,-0.7183,-0.7367,-0.849,0.1683 -0x1cb49,CUS_0x34fb,August,35,113-11-1345,Developer,14360.31,973.6925,6,6,25,2,"Payday Loan, and Mortgage Loan",15.13747044,11,4.65,12,Standard,1920.74,37.8281169,8 Years and 5 Months,Yes,17.46798498,74.2346349,Low_spent_Medium_value_payments,285.6666301,0,-1.9255,-1.1221,-0.8735,0.0303,0.1659 -0x1cb55,CUS_0x7e2f,August,55,637-77-9119,Entrepreneur,33280.45,,1,7,9,0,,1.677031284,6,2.58,7,Good,401.98,30.85635567,27 Years and 11 Months,No,0,208.5305882,Low_spent_Medium_value_payments,324.0064951,0,0.1316,1.7138,-0.4558,-0.0639,0.3783 -0x1cb61,CUS_0x3ce1,August,39,542-01-5108,Musician,64551.12,5393.26,6,9,29.88954781,6,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,14,,11,Bad,3462.33,34.44098336,1 Years and 6 Months,Yes,1614.278392,217.636277,High_spent_Medium_value_payments,263.0812494,0,-0.6203,-0.7413,-0.8853,1.4459,-0.0039 -0x1cb6d,CUS_0x15f4,August,18,858-25-8047,Developer,93712.29,,6,4,9.288361749,0,,,20,15.44,5,Standard,17.54914313,36.20907813,30 Years and 11 Months,Yes,33406,1144.044736,Low_spent_Medium_value_payments,439.8986815,0,-0.6908,0.9078,-0.3808,-1.4067,0.2308 -0x1cb79,CUS_0x8bda,August,48,091-73-4515,Scientist,35217.02,,3,7,13,4,"Debt Consolidation Loan, Not Specified, Home Equity Loan, and Mortgage Loan",9.56572206,10,11.58,4,Standard,1290.83,25.49302163,19 Years and 10 Months,Yes,94.18574692,104.47326,High_spent_Medium_value_payments,339.6161598,0,0.2388,-0.6722,-2.1235,0.4303,1.354 -0x1cb85,CUS_0x1cce,August,32,573-65-2004,Entrepreneur,20618.07,1434.1725,9,7,28.06745738,100,"Payday Loan, Debt Consolidation Loan, Student Loan, Student Loan, and Debt Consolidation Loan",29.58477312,17.64692776,9.76,,Bad,1814.252546,35.7796814,,Yes,48.45412971,103.9961869,Low_spent_Small_value_payments,254.2466454,0,0.2589,0.8613,2.3843,1.378,-0.447 -0x1cb91,CUS_0x6144,August,26,#F%$D@*&8,Manager,7091.66,,10,7,16.06745738,2,"Credit-Builder Loan, and Student Loan",,,4.23,12,Bad,2083.86553,36.31389882,19 Years and 10 Months,Yes,11.63268966,26.13088785,High_spent_Small_value_payments,279.1133012,0,0.2207,0.2845,-0.3479,1.0447,0.662 -0x1cb9d,CUS_0x7f56,August,41,309-09-9287,Architect,17646.92,,6,5,30.06745738,5,"Mortgage Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",46.12039183,27.65026305,9.31,8,Bad,3170.136479,23.51677446,12 Years and 6 Months,Yes,47.38352539,,Low_spent_Medium_value_payments,295.754824,0,0.2674,-0.7449,1.6465,-0.2311,0.2889 -0x1cba9,CUS_0x746,August,25,351-34-4180,Journalist,71172.68,5685.056667,4,5,11,2,"Personal Loan, and Auto Loan",,20,,6,Good,173.1025883,38.21399359,26 Years and 9 Months,No,94.0352206,137.5352498,High_spent_Medium_value_payments,603.3205754,0,-1.5491,0.3292,1.3321,0.0995,-1.3482 -0x1cbb5,CUS_0x5a0c,August,80,309-33-8401,Developer,82892.52,6786.71,9,7,32,4,"Personal Loan, Personal Loan, Payday Loan, and Payday Loan",22.22626739,12.38037291,7.31,7,Standard,1388.965172,31.63679886,19 Years and 6 Months,Yes,223.4693786,10000,High_spent_Medium_value_payments,592.6709207,0,-1.5265,0.6183,-1.0743,0.6261,0.7737 -0x1cbc1,CUS_0x95b1,August,56,065-68-4018,Manager,161710.32,,0,7,4.288361749,0,Not Specified,11.58566921,12,1.76,4,_,387.63,40.54256473,20 Years and 3 Months,No,102.9653937,,High_spent_Large_value_payments,1155.126558,0,-0.5933,1.2748,-0.4941,-0.3773,-1.4733 -0x1cbcd,CUS_0x3bc6,August,27,037-16-8686,Manager,14414.25,,10,9,17.95700519,9,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Payday Loan, Not Specified, Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, and Student Loan",54.03767947,33.98530554,6.74,10,Bad,2989.590488,35.59372832,9 Years and 10 Months,Yes,1405.679137,,Low_spent_Small_value_payments,250.5229826,0,0.6283,0.2282,-0.1644,0.864,-0.3633 -0x1cbd9,CUS_0x2b84,August,39,867-04-9641,Musician,21275.22,1665.935,5,3,5,3,"Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",27.04317015,21.32590375,8.83,8,_,685.3731055,29.587493,6 Years and 0 Months,Yes,39.00516686,116.4093534,!@9#%8,301.1789797,0,-1.1143,0.3723,0.2986,-0.4648,-0.0613 -0x1cbe5,CUS_0x2b57,August,37,475-16-8677,Manager,29337.5,2321.791667,9,7,21.06745738,7,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",,24,1.41,15,Bad,2008.020954,33.38137018,15 Years and 4 Months,Yes,164.3135007,,Low_spent_Small_value_payments,24.99696937,0,-0.2099,0.6579,-1.1525,1.4994,-0.3126 -0x1cbf1,CUS_0x4f01,August,29,729-37-0827,Lawyer,31241.2,,6,8,18.06745738,5,"Mortgage Loan, Not Specified, Auto Loan, Student Loan, and Student Loan",,30.14535258,15.91,6,_,2688.2135,25.28944881,9 Years and 5 Months,Yes,122.0673593,112.5697825,Low_spent_Medium_value_payments,290.5859036,0,1.9544,-0.8181,-0.0414,0.4335,-1.2578 -0x1cbfd,CUS_0x4f85,August,30,#F%$D@*&8,Writer,17282.84,,6,4,23,7,"Personal Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",23.79027805,18.97446504,13.27,7,Standard,2236.875678,27.81442389,7 Years and 6 Months,Yes,86.00863649,74.09906718,!@9#%8,262.515963,0,-0.3992,-0.9527,-0.5702,-0.0795,0.8274 -0x1cc09,CUS_0x7c84,August,27,899-41-0548,Architect,31615,,7,4,4.288361749,4,"Home Equity Loan, Payday Loan, Payday Loan, and Personal Loan",10.21355766,10,15.31,7,Standard,330.21,30.66257429,19 Years and 9 Months,Yes,66.6348867,,Low_spent_Small_value_payments,236.2175492,0,1.5123,1.3132,0.4966,1.829,-0.2688 -0x1cc15,CUS_0xc8c,August,23,103-20-7616,Journalist,14821.995,1064.16625,7,7,14,3,"Not Specified, Auto Loan, and Payday Loan",,19,6.76,0,Standard,267.04,25.6203799,25 Years and 0 Months,No,25.61979071,66.26810373,Low_spent_Medium_value_payments,294.5287306,0,0.785,0.7063,-0.8846,-1.3989,1.174 -0x1cc21,CUS_0x8fc8,August,48,809-75-3628,Doctor,34766.91,,8,5,3,3,"Debt Consolidation Loan, Auto Loan, and Mortgage Loan",23.03646633,18,3.95,2,Standard,217.5,31.63712681,19 Years and 2 Months,No,76.90821916,349.4205269,Low_spent_Small_value_payments,142.695504,0,-1.6161,-0.0514,0.5223,-0.9062,0.7594 -0x1cc2d,CUS_0x279f,August,44,231-40-8875,Accountant,88968.9,7176.075,4,3,15,4,"Student Loan, Not Specified, Mortgage Loan, and Auto Loan",23.61910448,15.69929389,21.93,8,Standard,414.5619648,26.70772476,19 Years and 8 Months,Yes,290.5684102,250.8671037,Low_spent_Small_value_payments,466.1719861,0,-0.7128,1.0291,-0.3838,0.129,0.6398 -0x1cc39,CUS_0x786e,August,31,984-79-1344,Entrepreneur,178053.4,15066.78333,0,3,12,100,"Auto Loan, Personal Loan, Not Specified, and Home Equity Loan",10.03297626,12,3.36,4,Good,198.6219051,33.57558594,20 Years and 3 Months,No,304.9903278,11633.0784,High_spent_Medium_value_payments,1016.005814,0,-2.8656,-1.1172,1.5503,0.5622,0.5875 -0x1cc45,CUS_0x18ea,August,33,411-59-6345,Musician,38083.18,2924.598333,3,3,7,4,"Personal Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,9,8.81,5,Good,656.5598328,34.0064567,28 Years and 8 Months,No,91.92566918,,Low_spent_Small_value_payments,145.7781005,0,-2.0248,0.3813,0.9465,-0.2806,0.0292 -0x1cc51,CUS_0x365b,August,43,836-54-5001,Scientist,9328.895,,7,7,15,7,"Not Specified, Payday Loan, Payday Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",36.19068236,15.21531429,2.03,14,Bad,2273.853636,28.36077564,17 Years and 6 Months,Yes,47.94186402,,High_spent_Large_value_payments,250.0304791,0,0.4186,-1.7102,-0.8109,-0.1878,-0.4883 -0x1cc5d,CUS_0x15a7,August,25,755-77-1230,Mechanic,120368.32,10210.69333,1,7,12,3,"Mortgage Loan, Payday Loan, and Not Specified",9.17303802,10.25076382,8.87,1,Good,886.0151377,39.0021205,21 Years and 10 Months,No,288.949692,338.3023791,High_spent_Medium_value_payments,643.8172622,0,0.1367,-0.7653,-0.1807,0.5508,0.6362 -0x1cc69,CUS_0x1912,August,31,380-60-3352,Teacher,157577,12912.41667,5,1,6,1,Not Specified,,5,10.46,4,Good,527.54,37.04668562,24 Years and 2 Months,No,73.21934851,,High_spent_Large_value_payments,1133.076086,0,0.6154,0.2179,-0.3892,-0.587,-0.418 -0x1cc75,CUS_0x44d2,August,23,264-15-7342,Journalist,43493.93,,4,2,4,0,,0,2,6.93,4,Good,551.198335,26.73437544,32 Years and 5 Months,No,0,90.41169482,High_spent_Medium_value_payments,523.8642058,0,-0.3835,-2.3073,-0.0034,-0.4921,0.7268 -0x1cc81,CUS_0x7409,August,38,562-04-5412,Developer,29510.87,2560.239167,4,7,12,3,"Personal Loan, Not Specified, and Debt Consolidation Loan",0,2,8.71,6,Good,1147.62,32.86022778,17 Years and 0 Months,No,49.70734658,105.4701896,Low_spent_Medium_value_payments,380.8463805,0,0.1402,-0.664,-0.8897,0.3198,-0.8876 -0x1cc8d,CUS_0x37d5,August,45,065-99-4728,_______,30207.15,2272.2625,3,3,13,4,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",,18.58358091,8.66,10,Standard,1541.946949,30.55702955,19 Years and 3 Months,Yes,61.07748787,81.8833429,High_spent_Medium_value_payments,334.2654192,0,1.0394,-1.1926,0.1972,0.6497,0.9781 -0x1cc99,CUS_0x1c34,August,26,184-30-9439,Teacher,29987.16,,4,4,3,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",0,3,2.36,1,_,30.53,31.30274471,32 Years and 2 Months,No,60.30053563,137.6637107,High_spent_Small_value_payments,317.8287537,0,0.5533,0.0497,-0.2948,-1.5671,0.7722 -0x1cca5,CUS_0x8fcd,August,31,435-45-6780,_______,14773.3,1432.108333,4,6,15,3,"Credit-Builder Loan, Mortgage Loan, and Payday Loan",25.58706119,20,7.79,9,_,746.8805237,37.80807521,24 Years and 8 Months,Yes,31.57129044,41.7253786,High_spent_Large_value_payments,315.0216571,0,0.6668,0.3861,-1.034,0.637,0.0551 -0x1ccb1,CUS_0x340b,August,39,#F%$D@*&8,_______,64790.24,,9,9,21,7,"Home Equity Loan, Student Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",,25.04823887,7.26,10,Bad,1860.495367,36.42705768,7 Years and 9 Months,Yes,322.9971759,177.2231277,High_spent_Medium_value_payments,273.2983631,0,0.9013,1.9642,-0.1216,0.6125,-0.9992 -0x1ccbd,CUS_0xa631,August,45,791-69-8926,Teacher,15428.39,1405.699167,8,8,30,2,"Debt Consolidation Loan, and Student Loan",30.91023766,23,13.92,13,Bad,2664.61,28.84909966,17 Years and 3 Months,Yes,14.29598921,17.29814093,High_spent_Medium_value_payments,358.9757865,0,-1.5455,-0.8173,1.762,-1.4971,1.1737 -0x1ccc9,CUS_0x566f,August,22,718-85-5500,Accountant,8412.555,853.04625,8,3,10,4,"Mortgage Loan, Auto Loan, Payday Loan, and Mortgage Loan",14.38994191,11,13.65,8,_,1664.89,37.89827697,13 Years and 4 Months,NM,27.26153505,10000,Low_spent_Small_value_payments,241.900587,0,1.1224,0.3261,0.4125,-1.603,1.6365 -0x1ccd5,CUS_0x51d4,August,56,545-52-0205,Doctor,102131.04,,5,5,10,0,,17.00584181,11,8.81,6,Standard,27.19,33.68838125,30 Years and 5 Months,No,0,118.8387907,!@9#%8,994.3532093,0,0.3327,-1.3468,0.5328,0.1092,-0.1136 -0x1cce1,CUS_0x205c,August,39,658-64-9433,Lawyer,28836.83,,7,4,16,0,,17.22552008,13,12.71,8,_,608.2540836,28.24764424,17 Years and 5 Months,NM,0,240.7932928,Low_spent_Small_value_payments,302.9709903,0,0.6183,0.3537,1.2147,1.5907,0.1467 -0x1cced,CUS_0x9b0f,August,56,356-37-5102,Musician,14337.56,,3,4,8,4,"Mortgage Loan, Auto Loan, Personal Loan, and Mortgage Loan",21.16715279,16,8.45,7,_,771.35,37.30529069,27 Years and 2 Months,No,28.02146475,108.6446306,!@9#%8,295.6135713,0,1.1747,0.2125,0.8417,-2.1052,-0.5417 -0x1ccf9,CUS_0x7562,August,26,984-41-8281,Writer,110675.88,8922.99,8,5,15.28836175,0,Payday Loan,8.806179936,9.613285774,8.04,2,Standard,1334.511867,37.92149999,22 Years and 2 Months,No,79.67610716,636.0022278,High_spent_Large_value_payments,836.558126,0,-0.4463,-0.2642,0.3134,-0.4945,1.484 -0x1cd05,CUS_0x1c7d,August,38,792-37-0645,Accountant,19704.16,1740.013333,9,9,34.06745738,5,"Home Equity Loan, Mortgage Loan, Personal Loan, Mortgage Loan, and Student Loan",37.75149709,24,19.55,11,Bad,5089.980954,34.55783918,5 Years and 10 Months,Yes,73.40603533,19.41423878,High_spent_Medium_value_payments,304.4607713,0,-1.257,1.0872,0.9319,0.5921,0.104 -0x1cd11,CUS_0xbc49,August,26,100-44-7800,Developer,72674.76,6099.23,6,10,31,7,"Debt Consolidation Loan, Payday Loan, Not Specified, Mortgage Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",39.30174723,21.61789942,4.7,9,_,2742.649031,24.99302862,13 Years and 11 Months,Yes,416.7980512,66.4111768,High_spent_Large_value_payments,366.713772,0,1.5478,0.3314,1.4521,-1.2061,-0.0988 -0x1cd1d,CUS_0x4da6,August,18,#F%$D@*&8,Musician,20621.72,1849.476667,7,8,30,2,"Student Loan, and Mortgage Loan",30.48693286,22.80257593,7.35,13,Standard,2562.307633,37.54660641,18 Years and 9 Months,Yes,29.60233077,33.78933668,High_spent_Small_value_payments,381.5559992,0,0.1065,0.0549,0.0377,0.2331,-0.4972 -0x1cd29,CUS_0x1154,August,41,848-35-0776,Developer,7645.095,,9,9,19,5,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",30.00623619,18,21.14,10,Bad,2869.83,24.63934638,12 Years and 2 Months,Yes,17.48785105,48.62391276,Low_spent_Small_value_payments,287.0973612,0,0.8336,-1.2803,0.9239,1.5157,0.9144 -0x1cd35,CUS_0xbe82,August,24,824-74-0001,Media_Manager,117502.8,,3,5,15.28836175,0,Not Specified,,19,11.14,2,Standard,953.87,33.63688591,19 Years and 8 Months,NM,96.48132015,651.5209868,High_spent_Large_value_payments,905.5251541,0,-1.2021,-0.5808,0.5429,-0.2482,-0.6934 -0x1cd41,CUS_0x123a,August,18,669-29-3700,Media_Manager,36228.2,,8,7,34,2,"Personal Loan, and Not Specified",,18.13775393,18.07,9,_,1789.862935,37.11248259,18 Years and 9 Months,Yes,47.25240768,,Low_spent_Medium_value_payments,366.9782289,0,-1.3816,-0.7701,0.5205,-0.5502,-0.1131 -0x1cd4d,CUS_0x738c,August,18,002-82-0303,Manager,46340.67,3969.7225,8,7,13,5,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",24.55658414,17,17.42,11,_,791.45,25.7887781,11 Years and 11 Months,Yes,111.9609275,28.77702887,High_spent_Large_value_payments,496.2342936,0,0.0835,-0.7018,-0.6225,-1.5596,1.1023 -0x1cd59,CUS_0x6010,August,46,489-16-3177,Mechanic,146101.28,12012.10667,3,4,9,5,"Auto Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, and Student Loan",9.011257204,7,19.13,7,Standard,1311.47,32.54864448,17 Years and 9 Months,Yes,307.1447979,1511.712436,Low_spent_Small_value_payments,,0,-1.3382,-0.0445,0.6212,-1.0418,-0.0597 -0x1cd65,CUS_0x7693,August,40,860-60-0602,Developer,52958.43,4313.2025,8,467,32,8,"Student Loan, Student Loan, Student Loan, Personal Loan, Personal Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",38.19214092,16.94666297,5.78,6,Bad,1861.18623,33.98853692,12 Years and 9 Months,Yes,282.58813,84.16748317,High_spent_Large_value_payments,304.5646368,0,-0.3354,0.7975,0.3337,0.0384,-1.2401 -0x1cd71,CUS_0xbaeb,August,41,729-50-5370,Developer,110758.68,9389.89,3,5,18,0,,20.7239494,15,10.48,7,_,432.4889018,28.30228812,16 Years and 10 Months,Yes,0,11592.31963,!@9#%8,1113.959693,0,0.292,-1.7764,1.2428,1.5766,-1.9857 -0x1cd7d,CUS_0x3a85,August,29,058-58-1144,Musician,12731.78,,6,1456,8.177909563,438,,17.69174695,15,12,2,Standard,80.09,32.35238142,16 Years and 5 Months,No,1323.483444,463.9234571,Low_spent_Small_value_payments,352.8986453,0,1.3717,-0.7508,-0.1889,1.9787,0.5529 -0x1cd89,CUS_0x55da,August,21,694-46-4281,Entrepreneur,20535.05,,7,6,29.06745738,5,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",25.47393024,16,7.47,13,Bad,2389.080954,31.17455762,18 Years and 10 Months,Yes,53.21442386,42.22639463,High_spent_Large_value_payments,308.3643102,0,-0.7399,-1.9789,0.3149,-1.2371,0.6004 -0x1cd95,CUS_0x778e,August,29,943-65-1465,Lawyer,40317.5,3140.791667,7,6,28,8,"Personal Loan, Mortgage Loan, Not Specified, Personal Loan, Not Specified, Mortgage Loan, Not Specified, and Personal Loan",,20,24.82,15,Bad,4073.71,38.45028047,5 Years and 2 Months,Yes,187.1464087,133.475792,High_spent_Medium_value_payments,243.456966,0,0.7067,0.8218,0.1443,-0.192,-0.686 -0x1cda1,CUS_0xa8ce,August,37,373-96-7382,Engineer,52643.34,,10,7,25,7,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",30.15960304,,24.09,12,Bad,2802.88,32.16993417,10 Years and 8 Months,Yes,248.1395477,301.6105288,High_spent_Small_value_payments,169.8444235,0,2.0535,-0.2259,-0.1042,-1.5171,0.4749 -0x1cdad,CUS_0x8bc6,August,21,788-76-2462,Lawyer,18888.46,,8,9,18.88954781,7,"Not Specified, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",,21.46493062,15.41,10,Bad,1764.742398,29.31095959,14 Years and 10 Months,Yes,1392.526784,95.18179778,Low_spent_Medium_value_payments,234.7651707,0,-1.4705,2.1688,-0.9808,-0.9493,1.0939 -0x1cdb9,CUS_0x6484,August,45,242-85-1671,Accountant,95210.2,7743.183333,6,3,18,1,Home Equity Loan,28.74262555,19,17.02,,Standard,864.35,36.08805362,21 Years and 8 Months,Yes,42.53731759,517.9214112,High_spent_Small_value_payments,473.8596045,0,-0.4245,0.2974,-0.9233,1.1436,-0.6194 -0x1cdc5,CUS_0x76e2,August,43,758-23-1095,Engineer,73365.72,,6,7,100,5,"Mortgage Loan, Student Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",27.60686582,20.17870696,19.94,4,_,2682.46904,32.69320454,7 Years and 2 Months,Yes,278.9142407,230.8213041,Low_spent_Medium_value_payments,389.7454552,0,0.2296,0.8604,0.7027,2.4342,0.9423 -0x1cdd1,CUS_0xc3e4,August,34,505-53-7023,Engineer,29409.66,2579.805,5,1,6,2,"Credit-Builder Loan, and Debt Consolidation Loan",,5,2.42,0,Good,276.2950006,32.68784036,31 Years and 11 Months,NM,35.00184261,237.787036,!@9#%8,287.1626959,0,1.3044,-1.2819,1.298,1.0795,-1.2465 -0x1cddd,CUS_0xa68a,August,30,722-25-5541,Doctor,76593.92,6402.826667,6,9,27,3,"Home Equity Loan, Payday Loan, and Auto Loan",27.5166882,,0.71,13,Bad,1864.11,27.55201357,17 Years and 9 Months,NM,96.71243805,174.8082808,High_spent_Small_value_payments,628.7619478,0,0.4107,0.6072,-0.3102,-1.6027,-1.5221 -0x1cde9,CUS_0xb2d3,August,30,867-10-9609,Developer,7756.465,516.3720833,10,7,19,2,"Payday Loan, and Student Loan",,24.33148421,4.45,16,Bad,2527.118679,31.83150836,,Yes,9.682064527,33.54570876,Low_spent_Large_value_payments,278.409435,0,-0.5079,2.0001,0.1732,0.2987,0.6797 -0x1cdf5,CUS_0x9f2f,August,33,851-17-8042,Engineer,80968.04,6894.336667,6,7,29.06745738,6,"Personal Loan, Auto Loan, Student Loan, Payday Loan, Home Equity Loan, and Student Loan",39.66811758,25.47655151,2.71,15,Bad,5067.884423,24.93224204,13 Years and 9 Months,NM,356.979543,274.5522526,Low_spent_Small_value_payments,321.1815831,0,0.4129,-2.0308,-0.3468,1.7488,-0.2879 -0x1ce01,CUS_0x6e49,August,29,414-26-7985,Doctor,15855.34,1198.278333,7,7,15,7,"Home Equity Loan, Student Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",33.66785889,26.53795623,10.31,6,_,1489.69288,29.79372865,10 Years and 8 Months,Yes,60.21398983,,Low_spent_Small_value_payments,237.5958118,0,-1.0421,-0.3614,-1.1983,-0.5848,0.5402 -0x1ce0d,CUS_0xb490,August,38,542-78-0787,Accountant,91771.29,7547.6075,4,2,5,3,"Student Loan, Not Specified, and Personal Loan",19.80670348,11.4527643,17.13,11,Standard,1444.701364,39.37093,11 Years and 11 Months,Yes,176.5793519,10000,Low_spent_Large_value_payments,476.3828875,0,0.5565,-1.19,0.4321,1.828,-0.5846 -0x1ce19,CUS_0x5ffc,August,38,756-51-8878,Doctor,66554.31,5744.1925,4,6,15,3,"Payday Loan, Credit-Builder Loan, and Auto Loan",17.03739046,,10.12,5,Standard,485.7,32.52890388,19 Years and 2 Months,No,101.9231149,217.7984673,High_spent_Medium_value_payments,504.6976678,0,-0.7443,-0.1614,1.3453,1.1392,0.3402 -0x1ce25,CUS_0x85d5,August,54,174-26-1457,Scientist,114128.44,,7,4,10,2,"Student Loan, and Credit-Builder Loan",,12,1.37,2,Standard,951.72,29.81698369,17 Years and 6 Months,Yes,164.9586181,178.7107584,High_spent_Medium_value_payments,880.7009568,0,-0.479,-1.3005,-0.1038,1.3264,0.5701 -0x1ce31,CUS_0x4d1,August,36,545-55-3554,Developer,123802.52,,4,3,20,2,"Mortgage Loan, and Payday Loan",,16,6.82,7,Standard,954.71,32.80374283,,No,124.1380723,201.6982055,!@9#%8,964.0513889,0,-1.0307,-1.7886,0.9999,1.363,-0.8822 -0x1ce3d,CUS_0xab9e,August,23,228-35-6058,_______,50513.12,4239.426667,7,6,10,2,"Payday Loan, and Debt Consolidation Loan",12.79388637,10,4.55,4,Good,422.5954765,28.14943799,,No,72.74505702,441.7495663,Low_spent_Medium_value_payments,256.3710739,0,1.2196,0.8136,0.9468,1.2143,1.206 -0x1ce49,CUS_0x7e61,August,54,823-07-3351,Media_Manager,116428.12,9740.343333,5,4,8,1,Student Loan,0,1,1.69,1,Good,463.59,42.49140562,23 Years and 5 Months,No,61.13204845,68.28037024,High_spent_Large_value_payments,1084.621915,0,-1.1557,1.2968,0.1461,-0.2004,0.0912 -0x1ce55,CUS_0x6ddb,August,18,827-28-7539,Teacher,15433.33,1421.110833,8,3,5,2,"Credit-Builder Loan, and Student Loan",30.94955436,22.54998941,17.86,12,Standard,2418.433222,33.06622749,18 Years and 11 Months,Yes,18.25010305,10000,Low_spent_Small_value_payments,362.0398805,0,0.1661,0.2802,0.2451,-0.5705,-0.7332 -0x1ce61,CUS_0xa679,August,21,496-94-9136,Accountant,102665.07,,5,3,15,6,"Debt Consolidation Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",,18,19.64,8,Standard,969.83,36.5195957,8 Years and 6 Months,NM,473.1944774,,Low_spent_Medium_value_payments,227.8988336,0,1.1476,0.2619,-1.3408,-0.2288,-1.7309 -0x1ce6d,CUS_0x3463,August,27,782-87-8295,Scientist,59110.84,5210.903333,4,6,10,3,"Credit-Builder Loan, Payday Loan, and Student Loan",,17,9.72,4,Standard,2685.23,38.36274465,13 Years and 0 Months,Yes,106.6624542,214.0804792,High_spent_Medium_value_payments,450.3473999,0,-0.6763,1.0531,-1.9324,0.9708,1.0403 -0x1ce79,CUS_0x2296,August,33,#F%$D@*&8,_______,75175.46,,4,1,6.288361749,2,"Student Loan, and Payday Loan",3.869679445,6,10.13,4,Good,155.1296265,29.90992565,20 Years and 4 Months,NM,100.3792065,659.4099153,High_spent_Medium_value_payments,589.307242,0,0.0653,0.7981,-1.5406,1.2237,-0.2073 -0x1ce85,CUS_0xc16d,August,21,821-70-0182,Writer,17515.75,,7,9,28.06745738,6,"Personal Loan, Student Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Not Specified",33.07642341,17,9.09,6,Bad,4065.630954,38.18121205,7 Years and 11 Months,Yes,79.93579618,,!@9#%8,204.9941952,0,0.1923,0.898,0.4013,-0.6882,-0.3805 -0x1ce91,CUS_0x2080,August,21,792-37-9189,Entrepreneur,16047.01,,7,3,18.28836175,0,Credit-Builder Loan,,12,12.89,8,Standard,183.15,31.93958212,23 Years and 9 Months,Yes,8.245353566,,Low_spent_Small_value_payments,235.2515162,0,0.8066,1.064,1.4969,0.6109,0.2846 -0x1ce9d,CUS_0x5a81,August,45,023-47-5429,Entrepreneur,32520.18,,9,1325,28.06745738,6,"Student Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",42.84117922,22.28889468,1.6,7,_,2602.100357,41.43792725,,Yes,126.4102748,109.0300253,Low_spent_Small_value_payments,320.640912,0,-0.4634,1.0805,-1.0268,0.8811,-1.3964 -0x1cea9,CUS_0x1bbf,August,24,889-53-4520,Media_Manager,14749.06,,8,10,29.06745738,5,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",31.74516155,17.01212289,27.54,12,Bad,3243.295807,36.46518567,2 Years and 3 Months,Yes,47.85880178,84.23318094,!@9#%8,221.9965627,0,0.8813,0.8867,0.8084,-0.2925,1.0497 -0x1ceb5,CUS_0x9a1c,August,37,930-67-1725,Lawyer,113561.2,9580.433333,8,4,9,1,Auto Loan,29.6146793,21.33770996,11.99,0,Standard,86.83321327,35.83117742,27 Years and 11 Months,No,53.77838853,10000,Low_spent_Small_value_payments,670.1251035,0,0.3156,0.1745,0.5986,-0.4484,-0.566 -0x1cec1,CUS_0x475f,August,21,782-04-7216,Journalist,101399.13,8535.9275,1,3,2,2,"Mortgage Loan, and Personal Loan",5.927842264,4,3.97,4,Good,1061.06,43.57789209,25 Years and 0 Months,No,132.6748965,103.6005929,High_spent_Large_value_payments,857.3172606,0,1.9562,-0.3991,0.223,0.4504,0.9087 -0x1cecd,CUS_0xc12b,August,25,142-51-9683,Mechanic,71208.16,6029.013333,6,7,16,7,"Auto Loan, Mortgage Loan, Not Specified, Not Specified, Mortgage Loan, Personal Loan, and Personal Loan",38.60690247,27.59189563,1.73,7,_,1489.482972,31.54229707,15 Years and 11 Months,Yes,285.2713044,114.7889338,High_spent_Large_value_payments,442.8410952,0,-0.2874,0.4832,-1.2628,0.9897,-1.1187 -0x1ced9,CUS_0x8a03,August,31,115-90-3148,_______,110209.68,,4,7,6.288361749,4,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",2.461042716,5,1.02,4,Good,482.73,40.29282091,,No,298.1968551,594.5752696,High_spent_Medium_value_payments,678.2793363,0,1.6291,1.7303,1.2364,-0.2549,0.5402 -0x1cee5,CUS_0xbb26,August,33,384-21-7085,Architect,17131.345,,7,5,14,5,"Home Equity Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",22.83173399,16,15.48,,Standard,429.69,40.5727303,17 Years and 6 Months,Yes,36954,26.03000924,High_spent_Large_value_payments,309.5564972,0,-0.3762,-0.1616,-0.1759,-0.1047,0.1542 -0x1cef1,CUS_0x57f3,August,30,577-85-0830,Mechanic,60904.59,5080.3825,3,4,12,2,"Mortgage Loan, and Home Equity Loan",15.43258988,11,12.37,8,Standard,2441.47,31.31094184,13 Years and 3 Months,NM,61.52513971,68.51497617,High_spent_Medium_value_payments,627.9981341,0,-0.5771,-0.8685,-1.1072,2.55,0.088 -0x1cefd,CUS_0xbf1e,August,39,666-79-5524,Journalist,151623.56,12461.29667,4,4,0.288361749,2,"Home Equity Loan, Mortgage Loan, and Home Equity Loan",3.444132283,7,8.11,1,Good,413.28,24.30563362,23 Years and 2 Months,No,216.069745,1212.328315,Low_spent_Medium_value_payments,517.6690675,0,3.1161,-0.1516,-1.2618,-0.0878,-1.4686 -0x1cf09,CUS_0x2824,August,23,501-69-4060,_______,16334.61,,10,625,23.95700519,7,"Personal Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",28.12615576,14.50958985,9.03,17,_,1762.409453,33.27955021,11 Years and 5 Months,NM,1412.360402,10000,Low_spent_Large_value_payments,215.1066123,0,0.4166,-0.2146,2.1778,0.2398,0.4607 -0x1cf15,CUS_0x23b5,August,32,423-92-9444,Mechanic,9491.02,,10,9,25.95700519,6,"Payday Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",45.26046966,29.22506234,7.91,7,Bad,5529.420605,33.17561401,3 Years and 10 Months,Yes,1349.753961,,Low_spent_Small_value_payments,252.7967589,0,0.4287,1.3099,1.1316,-0.039,-0.1037 -0x1cf21,CUS_0x8a45,August,28,296-65-4508,Developer,41467.22,3174.601667,6,10,18.88954781,9,"Debt Consolidation Loan, Personal Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Student Loan",52.03402477,26.94731817,2.29,15,Bad,1621.190446,25.59599899,13 Years and 8 Months,Yes,1521.85546,237.5195017,Low_spent_Large_value_payments,133.7551233,0,0.9344,0.833,0.1148,0.6243,-1.0795 -0x1cf2d,CUS_0x7a79,August,31,475-79-0112,Manager,104367.21,8486.2675,6,5,19,1,Mortgage Loan,,14,11.24,6,_,399.6211918,38.08585668,16 Years and 0 Months,No,83.34945904,619.7011812,High_spent_Small_value_payments,486.0098347,0,-2.7749,-1.4051,0.1384,-1.7017,0.7544 -0x1cf39,CUS_0x4eca,August,21,572-29-0912,Scientist,93143.58,7584.965,4,4,10,5,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",,20,14.67,7,_,1354.48,33.56499416,7 Years and 10 Months,NM,261.9895007,177.1034335,High_spent_Large_value_payments,559.4035658,0,0.613,0.5633,-0.0354,0.7814,2.1666 -0x1cf45,CUS_0x902b,August,52,121-75-2548,Developer,66571.1,5511.591667,2,1,2,3,"Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",10.03297626,12,10.62,0,Good,1218.421369,31.25465791,16 Years and 3 Months,No,86.95203201,378.6001592,Low_spent_Large_value_payments,398.0467846,0,-0.3821,1.6317,-1.0559,-0.5981,-0.6427 -0x1cf51,CUS_0x430b,August,32,383-39-3291,Doctor,53260.38,4342.365,3,3,6,7,"Mortgage Loan, Home Equity Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",26.72901274,18,18.34,4,Standard,2587.43,35.07203654,6 Years and 6 Months,Yes,198.1940612,45.04664418,High_spent_Large_value_payments,430.9957946,0,0.7735,-0.669,-0.3123,1.018,-1.0426 -0x1cf5d,CUS_0x1750,August,37,270-38-6663,Teacher,10021.72,,7,8,32,7,"Home Equity Loan, Payday Loan, Personal Loan, Mortgage Loan, Auto Loan, Not Specified, and Auto Loan",20.4782438,,8.97,16,Bad,2456.755332,26.90727487,5 Years and 10 Months,Yes,93.16776703,22.28213613,Low_spent_Medium_value_payments,265.5456522,0,-0.2672,-1.2094,-1.2286,-0.0739,-0.8924 -0x1cf69,CUS_0x76b0,August,41,540-91-2964,Lawyer,8103.425,,10,10,32.88954781,8,"Home Equity Loan, Credit-Builder Loan, Payday Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Not Specified",,24.86737431,31.92,11,Bad,3241.160751,27.01735072,10 Years and 6 Months,Yes,1362.637344,10000,Low_spent_Medium_value_payments,249.3438479,0,-1.1245,-0.739,2.3971,-2.3279,0.0967 -0x1cf75,CUS_0x9caf,August,40,058-40-2184,Engineer,122309.67,,0,6,2.288361749,4,"Home Equity Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",,1,6.68,2,Good,1044.167154,36.63085643,20 Years and 5 Months,NM,401.573016,524.2628253,High_spent_Large_value_payments,744.4934599,0,-1.3152,1.5842,0.8999,0.1249,-0.2472 -0x1cf81,CUS_0x648a,August,24,016-90-7822,Media_Manager,47733.06,3789.755,7,5,31,6,"Not Specified, Debt Consolidation Loan, Auto Loan, Auto Loan, Personal Loan, and Debt Consolidation Loan",47.8671689,23.80836475,5.1,12,Bad,1900.0097,38.89672222,19 Years and 2 Months,Yes,207.5197165,85.05672253,High_spent_Medium_value_payments,336.399061,0,0.8336,0.325,1.0578,-0.159,0.1042 -0x1cf8d,CUS_0xad1d,August,31,296-71-4680,Developer,20022.29,1607.524167,7,6,22.06745738,7,"Payday Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Home Equity Loan",29.97014169,19,19.4,7,Bad,4920.470954,31.87532057,4 Years and 5 Months,Yes,100.8440041,59.5839876,Low_spent_Small_value_payments,263.604137,0,-0.4963,-0.3879,0.4421,2.1075,-0.1285 -0x1cf99,CUS_0xc35c,August,47,#F%$D@*&8,Architect,105750.3,9037.525,5,5,17,0,,19.51732068,14,10.41,5,Standard,901.52,36.50772108,31 Years and 5 Months,Yes,0,188.8879198,High_spent_Large_value_payments,954.8645802,0,-0.6469,-1.6821,-0.201,0.1538,0.5217 -0x1cfa5,CUS_0x41fc,August,19,273-81-5890,Teacher,27323.11,,4,6,10,100,"Credit-Builder Loan, and Home Equity Loan",10.74971611,12,7.17,5,Standard,1202.4,23.40416463,,Yes,28.3576247,280.3798506,Low_spent_Small_value_payments,192.455108,0,0.8394,-1.5794,-0.9286,0.234,-0.807 -0x1cfb1,CUS_0x7dc6,August,80,995-81-3178,Lawyer,127760.4,,2,7,11,4,"Payday Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",,1,,3,Good,387.1635787,36.15452401,16 Years and 5 Months,NM,373.9219562,169.4615122,High_spent_Medium_value_payments,798.356277,0,-1.6851,1.3443,-0.7609,-1.4276,-0.6126 -0x1cfbd,CUS_0x753f,August,56,359-26-2390,Entrepreneur,25793.11,,4,7,20,3,"Auto Loan, Credit-Builder Loan, and Home Equity Loan",11.59070031,12,8.78,9,Standard,413.08,24.80642706,29 Years and 8 Months,NM,47.57935791,91.47645961,High_spent_Medium_value_payments,343.1867658,0,1.009,-0.5304,1.6485,1.435,0.529 -0x1cfc9,CUS_0x5578,August,32,585-25-3212,Mechanic,14318.26,1043.188333,8,8,18.06745738,5,"Home Equity Loan, Mortgage Loan, Auto Loan, Not Specified, and Auto Loan",33.33235544,21,21.1,12,Bad,2821.790954,27.01375175,4 Years and 11 Months,Yes,50.2926554,46.24391745,Low_spent_Large_value_payments,251.0619725,0,-0.0447,0.5478,-0.2756,0.3525,-0.8864 -0x1cfd5,CUS_0xa2f4,August,36,564-46-1659,Journalist,15836.57,,7,8,19.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",,20,17.85,6,Bad,4519.796702,27.41135693,10 Years and 2 Months,Yes,50.42557277,103.9252058,High_spent_Small_value_payments,247.4967261,0,-0.1628,-0.003,-1.1066,0.7175,-1.0346 -0x1cfe1,CUS_0x233e,August,54,007-39-8307,Media_Manager,125873.84,,0,6,11.28836175,2,"Auto Loan, and Not Specified",5.998512775,7,6.15,8,Good,446.36,43.05328723,26 Years and 8 Months,No,183.0815422,495.6586731,High_spent_Large_value_payments,1048.145912,0,0.4544,0.0974,3.5025,-0.6924,0.6814 -0x1cfed,CUS_0x6492,August,25,120-75-9977,Doctor,72219.48,5544.377502,9,6,18,9,"Payday Loan, Mortgage Loan, Not Specified, Auto Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",19.93493333,,24.77,,Bad,3456.15,35.71946952,9 Years and 2 Months,Yes,734.5989922,466.2489962,Low_spent_Large_value_payments,,0,-1.2075,0.0538,0.736,-0.723,0.9162 -0x1cff9,CUS_0x1a3a,August,43,273-60-9876,Accountant,48948.57,,5,7,9,6,"Auto Loan, Auto Loan, Student Loan, Payday Loan, Personal Loan, and Student Loan",13.70610502,10,14.14,9,Standard,2414.79,37.31253711,15 Years and 3 Months,Yes,157.7818125,135.321982,High_spent_Medium_value_payments,341.4009555,0,-0.0497,-1.6112,-0.5313,1.4644,0.2405 -0x1d005,CUS_0x9a26,August,34,265-46-1313,Teacher,61204.77,5057.3975,8,8,33.95700519,6,"Not Specified, Home Equity Loan, Not Specified, Student Loan, Student Loan, and Auto Loan",,26,18.42,16,_,4975.370954,32.28348056,,Yes,1559.914644,158.3699831,High_spent_Medium_value_payments,316.4047538,0,-0.7897,-1.1811,-0.9769,0.0927,-0.5655 -0x1d011,CUS_0x18fd,August,43,885-14-1406,_______,19711.14,1490.595,1,4,11,1,Debt Consolidation Loan,9.43284122,10.93335722,-2.77,7,Good,378.8064419,23.91174216,21 Years and 3 Months,No,14.42456576,162.4285572,Low_spent_Small_value_payments,262.2063771,0,-0.4645,-0.2433,0.8014,0.9537,-1.127 -0x1d01d,CUS_0x698b,August,44,623-15-9564,Entrepreneur,144624.92,,0,2,9,0,,0,1,11.77,4,Good,969.94,32.23554061,29 Years and 6 Months,No,0,812.6955639,Low_spent_Medium_value_payments,665.9121027,0,-0.1945,-0.6379,0.6126,0.6989,-0.05 -0x1d029,CUS_0xf21,August,39,040-81-5039,Media_Manager,13543.805,,6,2,18,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",21.58724339,19,13.14,4,Standard,929.03,40.94037202,27 Years and 11 Months,Yes,30.68793184,28.69128767,Low_spent_Medium_value_payments,324.1858222,0,0.7549,-0.9064,0.0397,-0.5236,-0.7215 -0x1d035,CUS_0xb481,August,26,214-50-8529,Engineer,20014.91,,8,7,19.06745738,5,"Personal Loan, Auto Loan, Auto Loan, Personal Loan, and Student Loan",,25,21.56,7,Bad,2736.930954,33.46229189,2 Years and 8 Months,Yes,59.24475279,96.66970023,Low_spent_Medium_value_payments,235.0561757,0,0.0246,-1.1442,-1.5726,-0.4449,-1.5771 -0x1d041,CUS_0xb37c,August,35,357-58-5507,Developer,76249.74,,3,3,6,6,"Auto Loan, Credit-Builder Loan, Auto Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",6.366194729,8,17.03,10,Standard,632.88,26.94205603,13 Years and 3 Months,Yes,334.5889798,297.4428958,High_spent_Small_value_payments,257.8826244,0,0.9494,0.3761,-0.5883,-0.8808,-1.214 -0x1d04d,CUS_0x61d5,August,32,407-26-8327,Architect,66979.76,5398.646667,6,10,21.88954781,100,"Mortgage Loan, and Not Specified",,19.23143679,0.78,12,Bad,2229.224764,36.93330545,11 Years and 5 Months,Yes,1419.749016,10000,High_spent_Medium_value_payments,540.3596398,0,1.0491,0.1478,-0.3937,-0.3058,-0.6644 -0x1d059,CUS_0x3190,August,22,277-05-6095,Doctor,61017.93,5054.8275,4,3,7,3,"Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",28.30509211,22,11.13,4,Standard,1286.466477,35.90489594,19 Years and 10 Months,NM,132.8863833,176.8208614,Low_spent_Large_value_payments,486.3908831,0,0.1488,0.9265,0.9737,-0.4863,0.419 -0x1d065,CUS_0x2f04,August,80,093-02-0917,Doctor,38239.44,,0,3,2,1,Student Loan,10.39830171,11,7.95,5,Good,1156.81,33.7521951,23 Years and 0 Months,NM,20.20344768,156.7096278,Low_spent_Large_value_payments,441.6489245,0,-1.8486,-0.3423,2.241,-1.1179,0.0218 -0x1d071,CUS_0xfd1,August,32,389-55-6408,Architect,78666.57,6485.5475,3,4,17,4,"Not Specified, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",16.43739326,10,-5.37,3,Standard,1498.7,37.83176162,22 Years and 5 Months,No,247.8511447,252.3461368,High_spent_Small_value_payments,408.3574685,0,-0.9304,-0.1329,-0.2071,-0.5776,1.3994 -0x1d07d,CUS_0x4fad,August,31,699-91-8597,Architect,31517.47,,7,3,5,4,"Not Specified, Auto Loan, Payday Loan, and Student Loan",,6,8.97,8,Standard,39.28,27.83712329,,Yes,85.35692954,,Low_spent_Small_value_payments,199.9080993,0,-0.5751,1.6902,-0.7872,0.7934,0.631 -0x1d089,CUS_0x79cb,August,41,639-72-7206,Developer,15907.91,,8,6,35.06745738,5,"Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",28.9351355,11.82411177,9.43,12,Standard,1761.540069,25.31138631,7 Years and 2 Months,Yes,55.89436241,,Low_spent_Medium_value_payments,260.656787,0,0.3788,1.5711,1.05,-0.3693,-1.0911 -0x1d095,CUS_0x1835,August,18,013-26-5726,Doctor,34888.64,,5,5,20,3,"Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",24.12762699,16,17.08,6,_,817.6,24.77015162,8 Years and 11 Months,Yes,46.09169698,96.82983022,High_spent_Small_value_payments,394.2171395,0,-0.6254,1.1117,0.7646,-1.872,-1.8366 -0x1d0a1,CUS_0x9df7,August,41,177-05-4513,Writer,128919.96,,0,3,10,3,"Personal Loan, Personal Loan, and Home Equity Loan",11.84684305,12,5.9,3,_,579.15,28.15053462,27 Years and 11 Months,No,211.6633663,76.47568856,High_spent_Large_value_payments,1002.993945,0,0.2641,-0.6347,1.5144,-0.4362,0.2874 -0x1d0ad,CUS_0x4a79,August,30,786-89-9032,Engineer,17180.82,,4,4,17,3,"Credit-Builder Loan, Home Equity Loan, and Not Specified",18.98303465,,11.28,4,_,1586.094761,30.75620978,19 Years and 2 Months,Yes,21.83553826,59.91310267,High_spent_Medium_value_payments,343.1522148,0,-0.1552,-2.0964,-1.0815,0.887,-0.5375 -0x1d0b9,CUS_0x16d9,August,41,931-50-1049,Writer,18485.235,,8,4,3,4,"Student Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",17.15349429,14,6.33,6,_,395.45,24.75672187,22 Years and 10 Months,No,52.90096407,118.5206382,Low_spent_Small_value_payments,265.5220228,0,0.2974,0.1082,-1.038,-0.5795,2.4852 -0x1d0c5,CUS_0x522c,August,50,989-63-4213,_______,16204.64,1596.386667,4,5,7,1,Not Specified,31.94573252,23.81564108,8.97,5,Good,96.18091987,33.96016265,,No,8.897017223,,!@9#%8,285.1118356,0,-1.8527,-1.1944,1.333,-0.6861,0.7923 -0x1d0d1,CUS_0xf50,August,20,026-23-7011,Journalist,132398.13,,1,3,8,4,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0,1,-0.49,3,Good,1359.45,38.41992813,29 Years and 4 Months,No,281.835528,135.4808207,High_spent_Large_value_payments,935.7014013,0,-1.2533,-1.1895,-0.7463,0.2447,-1.051 -0x1d0dd,CUS_0x6398,August,44,572-95-7256,Journalist,36354.02,3062.501667,10,9,33.95700519,7,"Personal Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",,18.19521917,16.86,11,Standard,3113.445693,37.91665286,12 Years and 0 Months,Yes,1448.391275,87.86691696,High_spent_Small_value_payments,308.9416059,0,0.2688,-0.7632,-0.3167,0.9248,2.062 -0x1d0e9,CUS_0x62f8,August,32,#F%$D@*&8,Architect,16895.24,1509.936667,0,7,10.06745738,3,"Payday Loan, Payday Loan, and Debt Consolidation Loan",11.81705206,7.235305878,3.69,0,Good,1407.118026,31.57722426,18 Years and 10 Months,No,29.26888574,93.86142549,Low_spent_Small_value_payments,291.1430675,0,0.4503,0.402,1.483,2.6182,-0.3639 -0x1d0f5,CUS_0xfae,August,18,869-01-8056,Architect,34589.72,2982.476667,6,9,26.06745738,5,"Personal Loan, Student Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",31.09182543,20.76489222,2.5,8,_,4570.975812,40.10832009,6 Years and 0 Months,Yes,111.6890443,,Low_spent_Small_value_payments,207.9602697,0,0.7236,-0.1066,1.4566,0.4123,-0.1709 -0x1d101,CUS_0xa46,August,42,414-97-4872,Scientist,9559.285,789.6070833,8,7,6,6,"Payday Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Not Specified",20.19649425,17,8.46,7,Standard,1234.79,36.0353399,16 Years and 8 Months,Yes,37.73284388,,Low_spent_Medium_value_payments,255.2100223,0,1.7717,-0.2327,0.9801,-0.3188,0.7615 -0x1d10d,CUS_0x82a5,August,21,462-17-4966,Engineer,34365.96,,8,9,26,2,"Payday Loan, and Student Loan",,18,7.57,9,_,2011.12,30.6860284,7 Years and 3 Months,NM,52.20331141,143.1609136,!@9#%8,374.018775,0,0.8195,-0.304,-0.9339,-1.9479,-0.3612 -0x1d119,CUS_0xbb07,August,45,636-78-3287,Mechanic,8790.85,986.5708333,9,5,23.06745738,8,"Payday Loan, Student Loan, Auto Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Student Loan, and Student Loan",30.36880007,21.00931981,12.31,7,Bad,4117.897271,35.30816127,2 Years and 5 Months,Yes,42.51434578,,Low_spent_Small_value_payments,255.9127531,0,-1.6787,0.475,1.2678,-0.2144,-0.9289 -0x1d125,CUS_0x71b6,August,27,916-03-3027,Architect,10667.73,1027.9775,7,6,18,2,"Personal Loan, and Not Specified",10.72320651,9,21.32,2,_,556.11,35.45012001,,Yes,16.30580974,51.61895401,!@9#%8,324.8729863,0,2.0544,1.1747,0.414,1.4653,-0.3903 -0x1d131,CUS_0x411,August,44,299-93-5267,Engineer,112287.51,9097.2925,3,5,4.288361749,2,"Credit-Builder Loan, Not Specified, and Auto Loan",5.328833904,7.141691036,,5,_,317.7756694,38.60746536,19 Years and 6 Months,No,167.0641236,597.8838755,!@9#%8,804.7187119,0,0.7668,0.0408,0.4954,1.6174,2.4156 -0x1d13d,CUS_0x5c3c,August,40,506-31-5199,Mechanic,43516.38,3635.365,8,5,17.28836175,2,"Not Specified, Auto Loan, and Debt Consolidation Loan",11.5225407,11,-2.02,7,_,217.57,37.52843446,,No,102.9166074,10419.93746,High_spent_Medium_value_payments,463.5191104,0,0.8332,0.8566,0.6689,-0.7187,-0.8926 -0x1d149,CUS_0x9f23,August,25,655-42-1269,Mechanic,118831.62,9625.635,0,6,6,2,"Auto Loan, and Payday Loan",2.198032195,5,2.37,6,Good,1267.954504,37.04020114,31 Years and 3 Months,No,138.4381307,1028.009886,Low_spent_Medium_value_payments,229.3895297,0,1.6432,-0.864,-0.0032,2.898,-1.138 -0x1d155,CUS_0x178b,August,49,543-67-7876,Developer,43456.5,3437.375,2,680,7.288361749,0,,4.523059431,8,0.62,3,_,339.0192637,23.37740479,31 Years and 5 Months,NM,0,875.1367949,Low_spent_Small_value_payments,234.9900595,0,0.544,1.3064,-0.0847,0.8878,0.8832 -0x1d161,CUS_0x6ed0,August,48,621-86-5012,Journalist,138206.04,11568.17,1,2,7.288361749,2,"Auto Loan, Credit-Builder Loan, and Student Loan",3.825584346,5,4.76,7,_,1240.145063,25.67212256,21 Years and 8 Months,No,173.234755,2029.655487,Low_spent_Small_value_payments,,0,-1.5443,2.6376,0.2432,0.0497,-0.3703 -0x1d16d,CUS_0x6c8b,August,22,382-46-3314,Mechanic,18254.505,1605.20875,3,729,8.288361749,0,,5.241197762,6,2.86,6,_,211.41,32.17520114,19 Years and 6 Months,No,0,584.1338267,Low_spent_Medium_value_payments,276.3245093,0,-0.1711,1.186,-0.3825,-0.9044,0.8489 -0x1d179,CUS_0x691b,August,47,113-64-4918,Scientist,58464.06,,5,6,5750.288362,4,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,11,10.14,0,Good,51.47614131,25.2749491,23 Years and 3 Months,No,181.7388942,943.0596736,Low_spent_Small_value_payments,121.2247865,0,-0.3497,0.3681,-0.074,-1.5035,0.6042 -0x1d185,CUS_0x3dfc,August,41,486-78-4954,Entrepreneur,55100.76,4763.73,6,6,20,2,"Mortgage Loan, and Debt Consolidation Loan",,9,17.14,9,Standard,916.34,35.45599945,9 Years and 2 Months,NM,60.01375335,84.77062384,High_spent_Medium_value_payments,581.5886228,0,-0.4929,-1.2155,-0.1772,-1.0147,-0.8849 -0x1d191,CUS_0x34a2,August,49,132-28-3450,_______,36603.85,3204.320833,4,5,7,4,"Home Equity Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",20.28372344,17,15.75,6,Standard,1127.32,26.38547633,28 Years and 6 Months,Yes,106.3666061,136.0232778,High_spent_Medium_value_payments,328.0421995,0,0.7348,0.9757,0.7232,-0.7267,-0.6305 -0x1d19d,CUS_0xaf49,August,29,023-15-3883,Teacher,65804.04,5189.73517,0,1,8,2,"Auto Loan, and Credit-Builder Loan",,8,8.23,8,Good,1256.535042,30.39030896,20 Years and 11 Months,No,486.2633922,399.9294214,Low_spent_Large_value_payments,402.7249691,0,-2.1083,-0.5343,0.4203,1.309,-0.6037 -0x1d1a9,CUS_0x27d8,August,25,543-78-0671,Scientist,13371054,2994.471667,5,3,2,1,Payday Loan,3.331934049,6,4.28,4,_,193.3620304,31.49466439,30 Years and 2 Months,No,19.42813321,71.29492417,High_spent_Large_value_payments,456.8544153,0,-0.3521,0.0077,1.3355,-2.1041,-0.4337 -0x1d1b5,CUS_0x3539,August,35,995-31-4669,Manager,43391.96,,1,5,10,0,,3.920836389,6,10.72,5,Good,1365.47211,38.176459,24 Years and 2 Months,No,0,416.8004222,Low_spent_Medium_value_payments,286.0892678,0,-0.2311,0.3294,2.032,1.5712,0.7777 -0x1d1c1,CUS_0xbb04,August,42,580-11-8949,Doctor,171547.24,14241.60333,2,3,7,4,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Student Loan",0,2.268985322,3.16,4,Good,1184.05962,21.35905054,25 Years and 8 Months,No,533.8391838,10000,Low_spent_Small_value_payments,,0,1.2781,0.769,0.3272,-1.0318,-0.8631 -0x1d1cd,CUS_0x1ea5,August,31,799-33-1118,Lawyer,14145.77,,791,10,18.06745738,6,"Not Specified, Not Specified, Not Specified, Payday Loan, Payday Loan, and Personal Loan",29.84618387,17,17.47,8,Bad,4832.440954,28.28424426,10 Years and 0 Months,Yes,48.70845496,49.88500462,!@9#%8,262.1676691,0,1.0765,1.2148,-0.1824,-1.3477,-1.5108 -0x1d1d9,CUS_0xa424,August,19,257-88-0889,Doctor,21480.965,,3,2,4,100,"Auto Loan, and Home Equity Loan",0,3,11.02,4,Good,702.6251833,27.76485708,33 Years and 5 Months,NM,31.65421725,15.45882012,High_spent_Large_value_payments,369.7681631,0,-1.8798,-0.3397,2.0397,-0.6713,-0.6636 -0x1d1e5,CUS_0x6ed8,August,31,987-64-0393,_______,16501.39,1101.115833,0,5,3,2,"Student Loan, and Mortgage Loan",11.08572819,11,6.63,3,_,589.87,36.11958715,23 Years and 10 Months,No,24.18573263,114.4487501,Low_spent_Small_value_payments,261.4771006,0,-0.3091,-1.8565,0.2384,-0.2141,-0.6716 -0x1d1f1,CUS_0xb8a2,August,29,722-89-2405,Architect,87232.86,,4,4,20,3,"Mortgage Loan, Mortgage Loan, and Auto Loan",,9,12.84,8,Standard,1169.61,38.9034922,28 Years and 4 Months,Yes,177.5291587,,High_spent_Medium_value_payments,694.2964456,0,0.0508,-1.2436,0.2463,2.335,-1.5703 -0x1d1fd,CUS_0x9153,August,29,582-13-9967,Accountant,33444.19,2868.015833,4,6,5.288361749,0,,12.24746131,12,22.83,2,Standard,109.26,32.93240066,26 Years and 10 Months,Yes,0,442.2869005,High_spent_Large_value_payments,504.4521439,0,1.6893,0.4862,-0.0852,0.4938,2.7868 -0x1d209,CUS_0x597c,August,19,732-97-4296,Media_Manager,56069.64,4416.47,10,7,24.06745738,5,"Auto Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",32.77968257,17.59310355,25.96,10,Bad,4201.048322,35.17517844,2 Years and 2 Months,Yes,151.2985193,518.2163484,Low_spent_Small_value_payments,35.41184439,0,-0.3644,-0.58,1.712,-0.6849,2.7143 -0x1d215,CUS_0xd22,August,27,979-91-3445,Engineer,33208.95,,7,6,17,5,"Auto Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,14,18.98,,Standard,559.23,34.63921884,,Yes,98.05708993,73.91764425,!@9#%8,371.4665158,0,-0.8346,0.223,-2.0526,-0.621,-0.4784 -0x1d221,CUS_0x5a42,August,33,040-17-5715,Writer,122452.65,10140.3875,2,7,5.288361749,0,,7.267450182,9.194237558,11.81,7,Good,436.8880588,29.31421851,31 Years and 10 Months,No,0,,High_spent_Large_value_payments,1042.282422,0,1.6904,0.0216,0.5263,-0.8337,-1.6162 -0x1d22d,CUS_0x58aa,August,41,097-10-2324,Lawyer,7664.315,918.6929167,6,5,16.06745738,5,"Debt Consolidation Loan, Student Loan, Not Specified, Credit-Builder Loan, and Not Specified",,12,12.6,7,_,1517.860954,40.22588234,12 Years and 3 Months,Yes,24.23610413,,Low_spent_Small_value_payments,246.8129603,0,0.3819,0.4629,-0.0655,0.437,1.7518 -0x1d239,CUS_0x363d,August,22,387-97-9961,Architect,20655.07,,7,5,9,2,"Not Specified, and Auto Loan",,10,9.88,10,Standard,928.4612469,28.04995072,19 Years and 10 Months,Yes,13405,63.91698678,High_spent_Small_value_payments,348.4448925,0,-0.6981,1.0776,1.1904,0.8052,-1.7229 -0x1d245,CUS_0xf20,August,41,#F%$D@*&8,Musician,58063.48,,8,9,24,5,"Home Equity Loan, Student Loan, Student Loan, Payday Loan, and Student Loan",,24.58303024,18.93,8,Bad,4761.477945,31.94138173,2 Years and 2 Months,Yes,136.1584339,256.3118876,High_spent_Small_value_payments,343.4920119,0,-1.1527,2.0851,-0.9374,0.6407,-0.5421 -0x1d251,CUS_0x28de,August,31,#F%$D@*&8,Entrepreneur,156608.6,13319.71667,4,4,10,0,,5.172544995,4.521299698,9.09,2,Good,1265.344131,39.94777823,18 Years and 5 Months,No,0,816.2281111,Low_spent_Medium_value_payments,795.7435555,0,2.6159,-0.5321,-1.292,-0.1925,-0.3787 -0x1d25d,CUS_0xa607,August,34,643-79-3907,Manager,40924.81,3469.400833,3,5,4,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",0,1,8.68,0,Good,1204.84,35.03764662,,No,68.38487777,369.0136931,Low_spent_Small_value_payments,199.5415124,0,-0.8747,-2.1171,-1.1487,-2.3219,-0.9638 -0x1d269,CUS_0x3482,August,32,072-10-9669,Teacher,8107.295,,8,8,16.88954781,6,"Debt Consolidation Loan, Personal Loan, Payday Loan, Home Equity Loan, Auto Loan, and Payday Loan",25.47685871,19,26.6,8,Bad,3838.2,27.64708974,5 Years and 5 Months,Yes,1347.833837,104.9823829,Low_spent_Small_value_payments,223.8144906,0,0.9589,-0.7769,-0.4023,0.8042,-0.7463 -0x1d275,CUS_0x8ff4,August,18,#F%$D@*&8,Developer,33515.8,,8,9,31.06745738,6,"Not Specified, Credit-Builder Loan, Home Equity Loan, Not Specified, Student Loan, and Payday Loan",,23.60361827,6.6,14,_,2364.845183,32.39592103,8 Years and 3 Months,NM,91.66449551,,Low_spent_Small_value_payments,260.0410311,0,-0.5361,-0.8933,0.6504,0.045,1.6743 -0x1d281,CUS_0x20f3,August,35,898-99-9373,Architect,20344.02,,3,3,33,2,"Not Specified, and Mortgage Loan",,24.35775486,13.29,11,Standard,1527.534098,37.39807494,17 Years and 6 Months,NM,19.01810842,10000,Low_spent_Small_value_payments,373.1189478,0,1.4668,-0.8553,0.8954,1.4123,-1.242 -0x1d28d,CUS_0x7a14,August,25,576-97-5253,Manager,17896.2,,4,5,16,1,Mortgage Loan,15.99015475,15,8.74,2,Standard,1154.906579,37.57037654,18 Years and 11 Months,Yes,10.57835908,,Low_spent_Large_value_payments,295.21218,0,-2.0548,1.7407,2.6901,-0.6717,0.1205 -0x1d299,CUS_0xb7d8,August,36,706-04-8206,Writer,134569.35,,0,4,8,2,"Personal Loan, and Debt Consolidation Loan",7.565502254,7,7.39,9,Good,384.01,26.73027965,18 Years and 5 Months,NM,61771,107.3341286,High_spent_Large_value_payments,1030.694869,0,-1.1191,-0.4289,-0.0007,-0.1324,1.824 -0x1d2a5,CUS_0xb969,August,22,321-26-6733,Doctor,8628.61,530.0508333,9,5,19.06745738,4,"Personal Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",36.73159118,19.0102585,9.3,10,Bad,1917.998561,38.24888705,,Yes,27.04224652,,Low_spent_Small_value_payments,218.418451,0,0.146,0.3252,-0.3253,-0.4307,1.8433 -0x1d2b1,CUS_0xbace,August,18,974-09-5386,Media_Manager,11755.91,,7,7,12.06745738,0,,15.75486152,10,7.22,7,Standard,1689.970954,33.0576191,32 Years and 11 Months,Yes,0,,Low_spent_Small_value_payments,239.6503758,0,-0.3785,-0.2064,0.6402,-0.597,-1.1773 -0x1d2bd,CUS_0xb85c,August,39,236-77-8820,Journalist,17373.39,,5,7,20,5,"Auto Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Student Loan",20.66454921,16.18502034,15.57,10,Standard,2767.716493,34.76223415,17 Years and 6 Months,Yes,54.03211206,62.33642749,Low_spent_Small_value_payments,328.7097105,0,0.8823,-2.0076,-0.4388,-0.4485,-0.0983 -0x1d2c9,CUS_0x47af,August,23,270-88-8789,Journalist,16614.765,1424.56375,4,7,20,1,Home Equity Loan,,15,6.55,8,Standard,931.36,31.41077449,32 Years and 3 Months,No,7.403524777,116.7261186,Low_spent_Small_value_payments,308.3267316,0,-1.3274,1.6387,0.9584,0.3247,-0.8212 -0x1d2d5,CUS_0xc416,August,38,070-24-6926,Accountant,23026.48,,6,6,7,4,"Personal Loan, Payday Loan, Home Equity Loan, and Auto Loan",19.40528563,18,9.66,2,Good,294.5427147,33.32600462,32 Years and 2 Months,No,68.50246987,68.20929511,High_spent_Medium_value_payments,299.9918094,0,0.6014,0.1628,1.2925,-0.4305,-0.5781 -0x1d2e1,CUS_0xcc3,August,38,920-34-9069,Architect,127206.66,,1,7,9.288361749,0,Not Specified,0,0,-0.56,5,_,61.05,27.75997035,16 Years and 2 Months,No,57.74193102,1219.783436,!@9#%8,485.567594,0,1.0863,0.83,-0.0094,-1.1266,1.5317 -0x1d2ed,CUS_0x3d50,August,19,479-19-5462,Journalist,146724.36,12276.03,1,4,3,1053,Not Specified,0,3,2.61,9,Good,1319.64,35.11615045,28 Years and 5 Months,No,94.2131512,,High_spent_Large_value_payments,1260.354167,0,0.5463,0.349,0.01,-0.4984,-0.3043 -0x1d2f9,CUS_0x43e7,August,54,200-09-2850,Mechanic,34963.82,3195.651667,6,5,10,4,"Not Specified, Personal Loan, Debt Consolidation Loan, and Not Specified",,15,9.56,3,Standard,879.49,21.79611192,23 Years and 5 Months,Yes,108.7960829,386.9405901,Low_spent_Small_value_payments,113.8284937,0,0.8164,1.2334,0.0014,0.0457,-0.0694 -0x1d305,CUS_0x761f,August,51,498-34-2763,Teacher,120404.72,10145.72667,3,6,10.28836175,2,"Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0,2.403458595,2.53,6,Good,1480.898134,31.21018452,20 Years and 5 Months,NM,228.8485105,901.7118947,High_spent_Small_value_payments,563.9497225,0,-0.3492,1.1361,-1.0044,-0.7329,-0.2133 -0x1d311,CUS_0x3468,August,30,300-98-3036,Writer,32506.42,,7,7,7,0,,19.48842875,16,1.35,3,Standard,683.6,32.85433335,19 Years and 4 Months,Yes,0,118.1616868,High_spent_Medium_value_payments,426.7251465,0,1.197,-0.7547,-1.5254,0.0347,0.6892 -0x1d31d,CUS_0x5d35,August,32,831-63-9052,Developer,107449.74,9022.145,7,5,8,4,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",,20,17.03,10,_,1218.49,26.88912527,29 Years and 2 Months,Yes,358.0405652,107.6344349,High_spent_Large_value_payments,676.5394999,0,-0.365,2.3748,-0.3743,1.5805,-1.0123 -0x1d329,CUS_0x41d4,August,41,577-41-6573,Developer,21120.835,1790.069583,3,5,2,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",0.919980158,1,11.73,1,Good,655.39,38.68756803,24 Years and 8 Months,NM,35.01873175,,High_spent_Large_value_payments,348.5109555,0,-0.0073,0.1504,-0.4691,1.6279,-2.6394 -0x1d335,CUS_0x9d73,August,21,285-66-0194,Manager,17738.32,,10,5,24,4,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",39.81583656,24,6.63,9,_,2496.93,23.70132334,,Yes,48.05405408,68.54915342,High_spent_Small_value_payments,314.9161258,0,-0.043,0.6668,1.0072,0.0646,-0.223 -0x1d341,CUS_0x6985,August,25,106-84-1067,Media_Manager,15905.25,,5,4,34,7,"Not Specified, Student Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Payday Loan",34.24967854,24.0566185,17.51,10,Standard,2444.455053,24.89282465,19 Years and 6 Months,Yes,49.58611442,54.690574,Low_spent_Small_value_payments,293.2670616,0,2.8468,-2.2461,-0.5877,-1.022,-1.1388 -0x1d34d,CUS_0x63b0,August,41,951-45-7111,Architect,89705.92,,6,4,16,4,"Mortgage Loan, Mortgage Loan, Student Loan, and Home Equity Loan",13.34215398,10,8.34,4,Standard,434.95,36.90799037,27 Years and 2 Months,No,269.3675385,129.1272184,High_spent_Large_value_payments,609.3545764,0,-0.3913,1.9669,0.7838,0.8908,-0.2772 -0x1d359,CUS_0x35e9,August,22,022-78-9607,_______,17805.21,1600.7675,3,3,8,5,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",17.20868838,14,17.62,5,Standard,1879.94,36.34194381,17 Years and 4 Months,Yes,57.75393199,102.7778914,Low_spent_Small_value_payments,289.5449266,0,-1.1495,-1.4712,-0.1916,-2.4124,1.7026 -0x1d365,CUS_0x7fa0,August,45,513-95-4989,Lawyer,13139.855,,5,5,15,1,Debt Consolidation Loan,6.316679839,7,8.54,3,Standard,361.58,33.50714153,23 Years and 10 Months,No,7.183338098,37.08149421,High_spent_Small_value_payments,317.3339594,0,-0.921,1.3294,-1.2378,-0.2087,-0.8692 -0x1d371,CUS_0x4c36,August,26,744-46-6342,Teacher,22419.74,,4,7,9,5,"Personal Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",,14,11.47,11,Standard,346.91,27.5226895,14 Years and 6 Months,Yes,69.49404802,114.6944215,High_spent_Small_value_payments,251.8426972,0,-1.0302,-0.6575,0.0184,-0.2043,-0.4762 -0x1d37d,CUS_0xb387,August,55,963-72-7646,Scientist,73562.46,5888.205,5,3,14.28836175,2,"Credit-Builder Loan, and Debt Consolidation Loan",16.83728017,16,16.6,4,Standard,190.7113182,28.19400927,28 Years and 4 Months,Yes,100.6502509,692.5894844,!@9#%8,490.4942047,0,-0.1437,0.1777,0.9051,-0.7663,-1.2434 -0x1d389,CUS_0x6619,August,42,876-05-1384,Architect,41131.36,3589.613333,4,6,1,4,"Personal Loan, Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",11.3233906,11,7.75,5,Good,434.980326,26.32579301,20 Years and 10 Months,No,105.0551975,143.0158214,High_spent_Medium_value_payments,380.0825955,0,-1.3651,0.26,-0.8902,-0.2844,0.1426 -0x1d395,CUS_0x958a,August,36,933-41-6144,Accountant,39843.14,3401.261667,6,3,10,3,"Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",17.72920159,12,1.59,2,Standard,461.36,26.32632479,17 Years and 10 Months,No,83.78711316,29.44818495,High_spent_Large_value_payments,466.8908686,0,-0.7211,2.1907,0.2858,0.4409,-0.0605 -0x1d3a1,CUS_0x30a3,August,58,602-29-9502,Doctor,146746.12,12277.84333,2,4,6,100,"Payday Loan, Payday Loan, and Not Specified",,2,3.56,6,Good,1003.255853,39.0422229,19 Years and 5 Months,No,332.2500146,,Low_spent_Large_value_payments,502.78348,0,0.0937,0.1734,0.0595,-0.9809,-1.4483 -0x1d3ad,CUS_0x7bf0,August,36,770-38-6359,Mechanic,20503.21,1430.600833,8,9,22.06745738,9,"Not Specified, Payday Loan, Payday Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Auto Loan",30.30470834,17.35938048,9.24,11,Bad,5494.923691,22.47117158,12 Years and 8 Months,Yes,125.2782237,,Low_spent_Small_value_payments,163.2133652,0,0.9251,-0.8459,0.4837,-0.2948,-2.4894 -0x1d3b9,CUS_0x801,August,29,478-45-7247,Accountant,37182.62,,7,6,19,6,"Personal Loan, Student Loan, Student Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",,23.08176093,20,12,Bad,3003.516892,35.62042948,15 Years and 8 Months,Yes,132.3058495,247.9925477,Low_spent_Medium_value_payments,219.7567694,0,-1.0347,-0.1019,0.4875,2.0198,-0.7662 -0x1d3c5,CUS_0x5513,August,45,319-84-0979,_______,28828.86,,7,7,20.06745738,8,"Personal Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",21.4795344,,19.11,11,_,3525.009474,28.45718556,6 Years and 6 Months,NM,144.0386891,,!@9#%8,57.99187798,0,0.7472,1.8826,1.0042,0.6462,-0.0439 -0x1d3d1,CUS_0x60af,August,27,010-29-7035,Media_Manager,21873.68,,4,1262,2.288361749,4,"Home Equity Loan, Auto Loan, Mortgage Loan, and Personal Loan",7.654063136,9,6.65,5,Good,280.4422397,38.13416314,17 Years and 8 Months,No,54.34360941,525.1604537,Low_spent_Small_value_payments,350.9517886,0,-1.2169,-0.3636,0.4915,-2.061,0.7802 -0x1d3dd,CUS_0x1453,August,48,580-73-5233,Scientist,10682.245,,7,6,6,4,"Personal Loan, Student Loan, Personal Loan, and Mortgage Loan",24.14646137,18,,0,_,1269.6,27.88450632,27 Years and 6 Months,No,17.93363425,21.97550857,Low_spent_Medium_value_payments,309.0095655,0,-0.592,-1.2277,2.1309,0.9989,-0.3556 -0x1d3e9,CUS_0xc428,August,43,863-37-8497,Mechanic,38266.44,3282.87,10,8,30.95700519,9,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",33.59990041,17,8.93,13,Bad,2542.170954,25.84050984,13 Years and 3 Months,Yes,1582.291143,225.3957537,Low_spent_Medium_value_payments,79.5497342,0,-1.8335,-0.3842,-1.56,-0.3088,-0.7944 -0x1d3f5,CUS_0xb035,August,32,298-25-8844,Doctor,34217.66,2794.471667,4,3,11,1,Personal Loan,,9,5.39,4,_,418.6921224,33.08981051,24 Years and 8 Months,No,15.08141104,,High_spent_Small_value_payments,410.7416334,0,-0.1447,-0.0253,-0.1572,-0.5103,1.3592 -0x1d401,CUS_0x880,August,22,874-41-1891,Entrepreneur,82684.62,6603.385,4,5,4490.288362,0,Payday Loan,,7.086865123,5.8,6,Good,1060.224351,37.2737627,26 Years and 8 Months,No,45.949631,689.7584988,High_spent_Medium_value_payments,594.5678312,0,0.4177,1.1601,1.1335,0.6204,0.5274 -0x1d40d,CUS_0xc38a,August,50,488-34-3335,Teacher,35774.38,2777.198333,1,6,10,3,"Auto Loan, Personal Loan, and Payday Loan",0,3,11.53,0,Good,489.73,25.96827038,26 Years and 11 Months,No,52.33145894,245.7901238,Low_spent_Small_value_payments,269.5982505,0,0.3254,-0.6197,-0.318,0.7891,-2.2405 -0x1d419,CUS_0xb152,August,18,847-92-5921,Journalist,16886.79,,8,6,32,9,"Mortgage Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",,25,-2.25,9,Bad,2039.51,29.92346732,19 Years and 10 Months,Yes,68.84958846,136.2413972,Low_spent_Small_value_payments,198.6322643,0,0.2553,1.426,0.6841,0.3016,0.6308 -0x1d425,CUS_0x52e5,August,27,485-23-9890,Doctor,62313.54,,6,2,18,4,"Auto Loan, Payday Loan, Student Loan, and Credit-Builder Loan",15.68998497,9,12.82,9,Standard,817.64,27.68222093,10 Years and 6 Months,Yes,196.6796424,,Low_spent_Small_value_payments,81.69472098,0,-0.3069,0.5967,0.3575,0.3066,-1.3058 -0x1d431,CUS_0xa287,August,29,778-40-1332,Lawyer,147378.96,12131.58,1,4,10.28836175,2,"Payday Loan, and Home Equity Loan",7.729454959,10,8.12,1,_,1180.37,31.04576475,16 Years and 11 Months,No,129.9925499,1103.373395,Low_spent_Large_value_payments,669.7295161,0,0.1118,1.8311,-0.7118,-0.089,-0.2061 -0x1d43d,CUS_0x84d0,August,32,278-75-1218,Journalist,60371.84,5006.986667,7,9,22.06745738,8,"Personal Loan, Auto Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Payday Loan",,27.27086496,27.97,12,Bad,4702.024062,26.85073709,3 Years and 2 Months,Yes,393.0398937,,High_spent_Medium_value_payments,260.185205,0,0.3063,0.0472,1.7593,-0.0786,0.0901 -0x1d449,CUS_0x29b1,August,38,329-69-3115,Musician,12821.555,932.4629167,4,7,17.06745738,4,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",,25.92989962,9.71,10,Standard,1633.731847,28.24356856,17 Years and 0 Months,Yes,22.64408433,,Low_spent_Small_value_payments,245.7654058,0,0.1753,-0.5795,0.5363,0.0374,1.3249 -0x1d455,CUS_0xa80c,August,52,995-60-8424,Journalist,89607.24,7256.27,0,5,12,2,"Student Loan, and Credit-Builder Loan",,3,4.54,7,Good,645.1097593,38.36157996,30 Years and 2 Months,NM,147.8470095,67.56393884,High_spent_Large_value_payments,760.4121729,0,-0.2418,-0.0254,-1.0193,-0.6647,-0.6313 -0x1d461,CUS_0x4f28,August,80,015-78-1852,Developer,57293.49,,8,1122,34,7,"Student Loan, Personal Loan, Auto Loan, Auto Loan, Student Loan, Auto Loan, and Not Specified",33.37675276,21.96583588,10.83,8,Bad,2149.680744,28.33814315,,Yes,309.6118553,581.5749382,Low_spent_Small_value_payments,,0,-0.0485,1.5463,0.3665,0.4764,-0.6431 -0x1d46d,CUS_0x63b4,August,32,674-76-4745,Teacher,117355.48,9757.623333,4,7,1.288361749,100,Credit-Builder Loan,0,1,0.72,3,_,1484.67,42.20657392,26 Years and 8 Months,No,67.67342475,551.8305278,High_spent_Medium_value_payments,1026.195842,0,0.3063,-1.0119,-1.1445,-1.6455,-0.3375 -0x1d479,CUS_0x40e5,August,39,444-67-4226,Media_Manager,115645.65,9434.1375,5,8,9.288361749,0,Auto Loan,90,2324,10.25,5,Good,60.99851392,34.50307972,23 Years and 5 Months,No,70.9580552,1080.338091,Low_spent_Medium_value_payments,587.8076331,0,-0.0251,2.4192,-0.3623,-0.1647,1.733 -0x1d485,CUS_0x68d9,August,80,580-48-2588,Writer,68561.31,,6,5,12,2,"Mortgage Loan, and Credit-Builder Loan",22.88890692,15,8.72,8,Standard,93.67,39.17958967,30 Years and 6 Months,Yes,58.02127367,144.2252563,!@9#%8,607.19772,0,0.2128,-0.4105,-0.428,-1.2138,-0.5671 -0x1d491,CUS_0x2c1c,August,50,373-14-1116,Developer,15651712,1704.626667,5,6,7,0,,,8,12.41,0,Standard,798.8737855,37.40659068,19 Years and 3 Months,Yes,0,59.76295263,High_spent_Medium_value_payments,369.3269908,0,1.2651,0.1965,-1.9615,-1.2543,-0.2545 -0x1d49d,CUS_0xb033,August,18,425-35-6996,Scientist,35412.02,,5,3,19,6,"Mortgage Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",26.67575166,20,10.01,12,Standard,495.51,32.17706395,17 Years and 10 Months,NM,130.7251904,266.2283813,Low_spent_Medium_value_payments,154.546595,0,0.2548,1.7182,-1.2133,-1.5093,-0.269 -0x1d4a9,CUS_0x677f,August,45,255-92-9474,Engineer,40985.48,3329.456667,8,7,28.06745738,4,"Auto Loan, Not Specified, Payday Loan, and Not Specified",37.46143717,20.28889139,9.74,11,Bad,2414.521139,32.40954826,11 Years and 8 Months,Yes,87.04652375,100.2657154,Low_spent_Large_value_payments,388.9131396,0,2.1704,0.9628,0.9764,0.3323,0.1312 -0x1d4b5,CUS_0x7b39,August,36,#F%$D@*&8,Entrepreneur,94739.7,6765.093234,3,7,3,1,Personal Loan,3.564364001,4,6.14,1,Good,1244.26925,36.838307,,No,1146.770586,75.92835412,High_spent_Large_value_payments,882.8004489,0,1.2631,2.6214,-1.6964,-1.6184,1.3561 -0x1d4c1,CUS_0xbe25,August,31,530-34-0553,Scientist,16162.13,1208.844167,8,5,22,6,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Not Specified, Auto Loan, and Home Equity Loan",17.34440669,15,25.07,16,Bad,4449.15,25.54331513,13 Years and 11 Months,Yes,77.05169811,,Low_spent_Medium_value_payments,199.3575716,0,0.6099,0.6617,-0.9171,-0.8312,-0.4056 -0x1d4cd,CUS_0x933f,August,41,056-36-2414,Writer,135478.36,11380.86333,4,6,3,1,Mortgage Loan,16.35627541,,3.91,3,Standard,845.47,30.29327102,16 Years and 8 Months,No,71.20199449,775.138633,High_spent_Small_value_payments,551.7457059,0,-0.6476,0.9109,-1.1858,-0.1661,-0.7734 -0x1d4d9,CUS_0xc5f9,August,36,980-94-4458,Writer,32152.97,,4,884,6,2,"Credit-Builder Loan, and Mortgage Loan",19.9168318,17,13.06,6,_,612.91,26.70732834,,Yes,33.40830422,,Low_spent_Large_value_payments,261.081978,0,0.0586,1.1516,0.5824,2.4023,0.7448 -0x1d4e5,CUS_0xa865,August,24,720-01-6332,Writer,12833.68,1300.473333,3,4,6,4,"Auto Loan, Not Specified, Student Loan, and Auto Loan",33.92589222,23,9.1,2,Good,89.31128424,26.40551911,18 Years and 2 Months,No,35.74976923,138.900378,Low_spent_Small_value_payments,263.0605437,0,1.4479,1.9164,2.6362,1.9782,-0.1617 -0x1d4f1,CUS_0x3a5b,August,26,863-41-5713,Mechanic,14117.27,,5,7,5,3,"Personal Loan, Auto Loan, and Student Loan",17.20399232,14,18.08,10,Standard,672.27,31.99430165,13 Years and 6 Months,Yes,32.4946026,178.7382169,Low_spent_Small_value_payments,218.8110971,0,1.1538,1.3953,-0.0465,0.0958,-1.1927 -0x1d4fd,CUS_0xbe59,August,18,103-15-0584,Entrepreneur,64324.36,5421.363333,10,7,19,7,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",,18,6.94,9,Bad,2633.79,25.39670745,12 Years and 8 Months,Yes,202.9685114,45.62292708,High_spent_Large_value_payments,533.5448948,0,-0.0243,-0.8681,-0.7834,-0.3469,-0.3374 -0x1d509,CUS_0x4cef,August,36,833-84-7188,Media_Manager,104527.6,8900.633333,4,4,12.28836175,0,,,20,7.84,2,Standard,1123.01,35.33109667,23 Years and 6 Months,NM,0,872.1254576,Low_spent_Large_value_payments,707.8753367,0,1.8075,-0.0663,-0.2674,-1.1756,1.1136 -0x1d515,CUS_0x2dd6,August,47,622-34-5202,Developer,29778.94,,1,7,3,4,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",1.689286324,6,9.45,9,Good,1095.43531,40.93683626,22 Years and 5 Months,No,82.65711212,315.7647417,Low_spent_Small_value_payments,181.5777799,0,0.0197,1.331,-0.1402,-0.691,0.4426 -0x1d521,CUS_0x98b3,August,80,587-14-3010,Mechanic,58508.76,4722.73,6,5,17,4,"Mortgage Loan, Credit-Builder Loan, Not Specified, and Personal Loan",20.53268111,15,18.72,7,_,1048.25,26.96197583,,Yes,164.1990219,174.1608428,High_spent_Medium_value_payments,383.9131353,0,0.6007,1.0744,0.3675,-1.4522,-1.0945 -0x1d52d,CUS_0x9189,August,39,#F%$D@*&8,Entrepreneur,65050.32,5626.86,8,5,15,6,"Payday Loan, Personal Loan, Auto Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",,14.62094109,2.19,7,Standard,1722.96962,27.04104828,10 Years and 5 Months,Yes,173.0415281,129.6604967,High_spent_Medium_value_payments,509.9839752,0,-1.3269,1.8416,-1.1713,-1.9265,-0.3218 -0x1d539,CUS_0xa2ca,August,43,225-27-1573,Developer,37475.07,,3,4,6.288361749,0,,9.47465989,9,9.77,7,_,396.4834069,25.14323714,24 Years and 2 Months,No,0,,Low_spent_Large_value_payments,462.2658511,0,-1.3024,-0.5947,2.4511,0.1795,1.3061 -0x1d545,CUS_0xb1f5,August,51,405-57-7202,Developer,17217.28,,7,6,13,0,,,19,18.12,4,Standard,395.46,31.39453494,32 Years and 4 Months,Yes,129.8100931,50.14559869,High_spent_Medium_value_payments,362.8317346,0,0.7167,0.9844,-0.1118,1.7848,-0.3055 -0x1d551,CUS_0x6ba9,August,44,#F%$D@*&8,Lawyer,20272.23,,4,3,12,1,Payday Loan,0.284373788,5,4.83,6,Good,828.97,33.87400181,27 Years and 8 Months,No,11.48015041,74.53506603,High_spent_Medium_value_payments,341.6200336,0,0.4153,0.1578,0.4969,0.9281,0.1637 -0x1d55d,CUS_0x34e1,August,40,128-25-2178,Mechanic,15605.73,1505.4775,10,7,30,6,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Not Specified",41.03131811,24.55991763,7.66,11,Bad,2175.48679,22.54528864,13 Years and 6 Months,Yes,59.17488902,70.9226807,Low_spent_Medium_value_payments,300.4501803,0,-1.2853,-1.9189,-1.4956,0.4524,0.9532 -0x1d569,CUS_0x673b,August,45,773-48-5826,Lawyer,31672.76,2854.396667,5,958,10,2,"Not Specified, and Home Equity Loan",,19,12.12,9,Standard,1151.35,37.96624908,17 Years and 6 Months,Yes,33.47799631,248.8409235,!@9#%8,293.1207469,0,0.905,-1.0477,-0.5058,0.1899,-0.2158 -0x1d575,CUS_0x6bc3,August,23,266-04-7936,Engineer,88905,,6,7,10.28836175,2,"Debt Consolidation Loan, and Mortgage Loan",11.439237,12,0.58,3,Standard,971.83,22.34376386,,Yes,132.5525783,1300.503805,Low_spent_Small_value_payments,,0,0.4742,-2.7074,-0.1248,-0.0778,-0.1704 -0x1d581,CUS_0x4410,August,37,087-88-4254,Media_Manager,14620.51,1176.375833,9,7,29,7,"Personal Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,15.42352861,9.4,12,Standard,2718.697818,28.30118723,14 Years and 2 Months,Yes,82.51268341,102.6326732,Low_spent_Small_value_payments,222.4922267,0,0.1292,0.8956,1.267,-0.059,0.1149 -0x1d58d,CUS_0x6c95,August,39,643-36-3270,Developer,32273.01,2800.4175,1,4,2,3,"Mortgage Loan, Mortgage Loan, and Student Loan",0,1,0.06,3,Good,1362.01,34.76758335,,NM,65.04265706,330.1884228,Low_spent_Small_value_payments,174.8106701,0,1.937,0.1329,3.0502,-0.0783,0.2041 -0x1d599,CUS_0x676b,August,31,580-25-6454,Manager,19995.55,1644.237908,6,6,29,5,"Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",28.71285701,20.30400682,19.26,732,Standard,1558.333963,32.13353211,6 Years and 3 Months,NM,114.4479019,72.84683747,High_spent_Small_value_payments,293.2927698,0,0.3412,-0.3599,-0.8146,2.19,0.4854 -0x1d5a5,CUS_0x927d,August,37,387-28-6212,Media_Manager,35719.4,,4,3,11,2,"Payday Loan, and Home Equity Loan",11.23377301,10,8.54,7,_,1305.932998,31.46812484,,No,48.00661005,,!@9#%8,153.075493,0,-2.3281,1.2376,1.1505,0.1829,1.0322 -0x1d5b1,CUS_0xc586,August,35,921-75-7089,Teacher,15093.63,,10,10,27.95700519,7,"Home Equity Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, and Debt Consolidation Loan",,,17.41,12,Bad,3282.190059,30.83637044,10 Years and 5 Months,Yes,1378.157321,124.7643504,Low_spent_Small_value_payments,214.0082098,0,0.0637,-0.8737,0.888,-0.6807,0.0505 -0x1d5bd,CUS_0x5d46,August,37,#F%$D@*&8,Entrepreneur,36898.49,,6,3,20,4,"Not Specified, Student Loan, Credit-Builder Loan, and Auto Loan",17.40641087,11,11.27,6,Standard,328.45,25.45421123,31 Years and 11 Months,No,109.9101442,10000,Low_spent_Small_value_payments,186.3533493,0,1.6359,0.5462,0.7038,1.2772,1.4881 -0x1d5c9,CUS_0x4459,August,40,435-07-2997,Journalist,31775.41,,4,6,16,2,"Personal Loan, and Not Specified",19.05593794,17,8.04,5,Standard,146.92,33.66016323,15 Years and 8 Months,No,285.3449877,10000,Low_spent_Large_value_payments,387.7181147,0,-0.706,0.8352,-0.2493,1.3013,-0.4068 -0x1d5d5,CUS_0x5aaa,August,51,951-89-5363,Architect,133236.36,11042.03,3,3,0.288361749,2,"Debt Consolidation Loan, Home Equity Loan, and Student Loan",11.08540131,12,2.7,5,_,826.77,37.75944507,29 Years and 3 Months,No,251.0225204,492.9476867,High_spent_Large_value_payments,1020.170254,0,0.3404,0.7001,-2.0067,0.5408,1.1481 -0x1d5e1,CUS_0x500d,August,42,872-67-0804,Teacher,44998.71,,10,5,32.06745738,3,"Student Loan, Home Equity Loan, and Auto Loan",26.81231568,10.32715799,16.65,8,Standard,3110.639121,36.48948257,19 Years and 4 Months,NM,56.83945041,74.1835243,High_spent_Large_value_payments,473.9459873,0,-0.2719,1.077,-0.9373,-1.3252,-0.4341 -0x1d5ed,CUS_0x6cd1,August,22,659-11-2212,Mechanic,81338.16,6642.18,12,10,33.88954781,8,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",39.22680501,18.25889195,19.26,12,_,5117.715826,28.26113394,14 Years and 5 Months,Yes,1680.249977,,Low_spent_Large_value_payments,118.1117007,0,-0.1811,-0.5217,-1.838,-0.7543,0.2567 -0x1d5f9,CUS_0x8543,August,80,756-77-9650,Musician,36637.1,,7,6,15,2,"Mortgage Loan, and Student Loan",90,1177,11.39,5,Standard,68.98,31.63738945,27 Years and 11 Months,NM,50.96763021,10000,!@9#%8,160.6486394,0,-0.3436,0.7274,-0.4572,-1.2217,1.4743 -0x1d605,CUS_0xb8b,August,21,115-10-2398,Teacher,19491.84,1858.32,6,4,17,1,Student Loan,22.77639414,16,6.63,7,Standard,1158.75,38.79208729,33 Years and 5 Months,Yes,12.53361318,,High_spent_Small_value_payments,323.6005304,0,-0.5816,0.8629,-0.4694,-1.6844,0.798 -0x1d611,CUS_0x3e52,August,18,788-42-1694,Writer,11253.46,,3,6,6,4,"Not Specified, Credit-Builder Loan, Auto Loan, and Payday Loan",,11,16.52,6,Standard,1381.81,30.70591142,16 Years and 4 Months,Yes,32.59108154,,Low_spent_Large_value_payments,257.3272534,0,-1.1587,1.096,1.1963,0.7404,-0.0999 -0x1d61d,CUS_0xadb8,August,21,511-50-4936,Doctor,17227.16,,8,6,23.06745738,6,"Payday Loan, Not Specified, Mortgage Loan, Personal Loan, Personal Loan, and Student Loan",35.06546564,18.18075338,7.52,11,Bad,2493.779258,32.50622424,8 Years and 9 Months,Yes,69.89030851,68.18986452,Low_spent_Small_value_payments,265.0592057,0,-0.5257,-0.8044,-1.0532,1.0485,-0.2838 -0x1d629,CUS_0x960e,August,20,087-18-7812,Engineer,9822.095,785.5079167,10,8,20.06745738,5,"Personal Loan, Student Loan, Not Specified, Payday Loan, and Not Specified",29.46060983,17.14363589,26.11,8,_,3405.967466,25.54482078,3 Years and 8 Months,Yes,22.50769753,105.1169078,Low_spent_Small_value_payments,214.2058983,0,1.6067,1.041,-0.686,0.9653,2.0754 -0x1d635,CUS_0x3404,August,34,973-77-6619,Architect,17738.305,,7,4,13,1,Not Specified,16.75523458,12,11.9,11,Standard,661.03,38.93726259,21 Years and 11 Months,Yes,11.73773833,100.9817636,Low_spent_Medium_value_payments,309.1997064,0,-0.5309,-0.0736,0.6092,1.8227,-0.1237 -0x1d641,CUS_0x2b15,August,37,307-21-8840,_______,54315.46,4473.288333,8,4,5,4,"Debt Consolidation Loan, Personal Loan, Auto Loan, and Personal Loan",28.50878628,20,10.39,5,Standard,286.69,30.27547508,,Yes,109.0753456,158.768893,High_spent_Medium_value_payments,429.4845948,0,-0.6438,1.7863,1.4055,-1.4703,0.6023 -0x1d64d,CUS_0xc1f0,August,31,653-55-5390,Manager,68130.21,,7,5,19,2,"Personal Loan, and Home Equity Loan",,17,14,5,_,1069.66,22.95268219,17 Years and 5 Months,Yes,58.25312159,530.1397097,Low_spent_Large_value_payments,271.9589187,0,1.4107,-0.2994,-0.8719,-1.4478,-0.6554 -0x1d659,CUS_0xa037,August,22,318-64-2372,Manager,151649.36,12823.44667,3,7,10.28836175,2,"Personal Loan, Not Specified, and Payday Loan",11.38939029,12,4.48,3,_,358.17,45.43997131,30 Years and 5 Months,No,224.7031328,539.7234269,High_spent_Large_value_payments,1177.855568,0,1.4554,1.3836,-0.8371,-0.3591,-0.8839 -0x1d665,CUS_0x9b6b,August,29,717-52-8463,Accountant,93226.5,7755.875,5,3,5.288361749,4,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",3.192997625,6,-1.86,8,Good,121.02,32.86256216,,No,244.4259083,949.5224622,!@9#%8,281.5765905,0,1.1025,1.0768,0.5945,-0.1663,1.3187 -0x1d671,CUS_0x5c31,August,29,846-74-3288,Accountant,71498.38,6100.198333,4,6,8,0,,7.554732099,7,7.29,3,Good,972.14,25.90480231,,NM,0,148.8002619,High_spent_Medium_value_payments,711.2195714,0,1.2277,-1.8055,-1.2309,1.0887,0.4956 -0x1d67d,CUS_0x2784,August,33,477-65-5868,Architect,78399.12,6568.26,8,9,29.88954781,6,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, Mortgage Loan, and Not Specified",35.34912487,17.14839924,22.27,12,Bad,1825.440253,37.10149262,17 Years and 0 Months,Yes,1560.772694,99.31518157,High_spent_Medium_value_payments,552.4080434,0,1.5977,-0.2047,-0.9167,0.2243,-0.0822 -0x1d689,CUS_0x9102,August,43,977-79-5989,Mechanic,57030.99,,7,3,15,2,"Home Equity Loan, and Not Specified",27.66694612,20.40931682,9.88,6,Standard,2893.059892,28.40292245,17 Years and 5 Months,Yes,69.85828956,197.7040096,!@9#%8,501.0959508,0,0.6871,-0.6305,-0.8328,-1.3666,0.8725 -0x1d695,CUS_0xc0c7,August,39,364-35-5243,Architect,119047.52,9924.626667,8,7,7.288361749,2,"Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",7.206648143,9,9.22,6,_,897.72,43.39440514,28 Years and 9 Months,Yes,199.6579354,621.2655408,High_spent_Large_value_payments,831.4766515,0,-1.1527,-0.3291,-1.1163,-1.3501,1.239 -0x1d6a1,CUS_0x2102,August,51,418-67-9689,Scientist,125883.99,10508.3325,4,6,7,4,"Payday Loan, Not Specified, Not Specified, and Credit-Builder Loan",1.493911149,2,11.14,7,Good,575.48,29.95122271,29 Years and 10 Months,No,299.9074888,147.8025083,High_spent_Large_value_payments,843.1232528,0,-0.9004,0.9487,-0.0402,0.8359,-0.0277 -0x1d6ad,CUS_0x5ed4,August,32,211-83-4029,Lawyer,78937.47,6308.1225,6,3,8,2,"Mortgage Loan, and Home Equity Loan",21.18948902,15,1.63,5,Good,233.5645229,25.10594352,,No,126.566464,70.84191342,High_spent_Large_value_payments,680.9058118,0,-0.0867,0.2251,-2.2083,0.0847,0.4579 -0x1d6b9,CUS_0x8da9,August,29,175-51-1525,Developer,50787.69,4209.3075,6,7,19.06745738,9,"Mortgage Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Payday Loan, and Payday Loan",38.02979145,21,23.44,,Bad,3484.540954,30.38581473,6 Years and 0 Months,Yes,314.22053,46.05224661,High_spent_Large_value_payments,273.9376854,0,1.7311,-0.3491,0.2723,1.6608,-0.7151 -0x1d6c5,CUS_0x8d40,August,24,476-67-1228,Journalist,82135.84,6699.653333,10,10,30.95700519,6,"Personal Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Payday Loan",,23,,11,Bad,4830.220954,39.06645641,4 Years and 6 Months,Yes,1538.320143,503.8433256,Low_spent_Small_value_payments,196.7514959,0,0.7414,0.0488,-0.2012,-1.3661,-0.0023 -0x1d6d1,CUS_0x3a30,August,57,408-73-8461,Developer,29368.56,,5,4,3,2,"Credit-Builder Loan, and Auto Loan",,14,6.92,4,Good,151.6258351,29.95805607,17 Years and 4 Months,No,39.97962277,52.29282946,High_spent_Medium_value_payments,411.0627364,0,0.5646,0.5661,-0.1006,-0.3395,-0.388 -0x1d6dd,CUS_0x4f73,August,30,702-91-3353,Mechanic,130393.96,10618.16333,4,6,8.288361749,0,Mortgage Loan,13.56838395,13,7.39,1,Standard,719.76,34.3635202,18 Years and 2 Months,No,72.34575053,1341.692078,Low_spent_Large_value_payments,337.7159657,0,1.3876,1.335,-0.1081,-0.473,1.1364 -0x1d6e9,CUS_0x7c76,August,43,331-37-9623,Mechanic,15302.74,1408.228333,10,10,25.06745738,5,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",39.11029087,24.88822021,22.23,6,Bad,5520.901683,28.02761136,13 Years and 3 Months,Yes,28197,,Low_spent_Small_value_payments,170.0665854,0,0.7632,0.0739,0.6984,-1.3465,1.3048 -0x1d6f5,CUS_0x4889,August,46,352-25-2221,Accountant,61540.56,5352.38,7,8,17,4,"Not Specified, Debt Consolidation Loan, Personal Loan, and Personal Loan",33.07809871,15.62709775,17.15,7,Standard,1818.478367,29.71107522,19 Years and 0 Months,Yes,146.1982193,203.6081546,High_spent_Small_value_payments,445.4316261,0,0.3666,0.2228,-0.2241,-0.6329,0.6383 -0x1d701,CUS_0x74c,August,44,458-80-6295,Mechanic,131573.6,11159.46667,3,5,7,4,"Home Equity Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",19.87283393,15,4.91,8,_,1384.27,36.80833722,32 Years and 8 Months,Yes,399.7501825,,Low_spent_Medium_value_payments,587.6432153,0,-1.3308,1.9851,-0.1001,-1.2562,0.8779 -0x1d70d,CUS_0x57b2,August,44,784-12-8086,Developer,10381.565,,8,3,7,4,"Not Specified, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",12.19642548,12,10.53,5,Standard,645.3885398,22.67816715,25 Years and 4 Months,No,22.41371975,79.96965545,!@9#%8,279.221233,0,0.3154,0.3594,0.8157,-0.8938,1.2457 -0x1d719,CUS_0x9a13,August,41,145-70-6462,Entrepreneur,131199.12,,1,7,11,1,Mortgage Loan,14.3633114,,1.02,2,Good,1148.341678,30.53677621,19 Years and 3 Months,NM,106.3411905,10000,High_spent_Small_value_payments,828.9664309,0,0.0967,-0.7477,0.1076,-2.0904,-0.9568 -0x1d725,CUS_0xc3cc,August,40,508-87-2538,Mechanic,16997.715,1201.47625,2,2,7,2,"Personal Loan, and Not Specified",,12,0.73,1,Good,1204.59,33.71031214,22 Years and 3 Months,No,26.56462545,129.7780482,Low_spent_Small_value_payments,253.8049514,0,-2.0254,1.5287,-1.5897,2.3825,1.3543 -0x1d731,CUS_0xaa7c,August,31,650-13-8818,Doctor,22434.16,2166.513333,7,7,8,3,"Not Specified, Mortgage Loan, and Mortgage Loan",32.10505453,21.42413525,18.67,7,Standard,303.3605227,27.89317311,23 Years and 6 Months,Yes,30.06803815,139.7145737,High_spent_Small_value_payments,306.8687215,0,0.5684,-0.5992,1.5388,0.6085,-0.434 -0x1d73d,CUS_0x741,August,22,232-53-6053,Media_Manager,122566.59,,0,7,1,0,,12.89861627,10,1.14,3,_,889.69,36.7402961,,No,0,484.3634144,Low_spent_Medium_value_payments,828.0248356,0,-0.2132,-0.5237,0.368,1.9916,0.8082 -0x1d749,CUS_0xa146,August,23,146-83-0280,_______,22934.45,,5,6,17,3,"Not Specified, Not Specified, and Student Loan",23.18343937,19,7.45,13,Standard,829.3,28.42726402,10 Years and 6 Months,Yes,30.9246059,34.50109938,High_spent_Small_value_payments,356.4947114,0,-0.4602,-0.4988,-0.1286,-1.0468,1.0118 -0x1d755,CUS_0x6a14,August,33,510-71-6161,_______,28603.64,2539.636667,1,1,2,0,,0,2,4.23,4,Good,1428.43,32.85659783,31 Years and 10 Months,No,0,129.4288744,Low_spent_Small_value_payments,414.5347923,0,-1.4855,-0.6198,2.2756,-0.3368,-0.8099 -0x1d761,CUS_0x1498,August,40,335-78-1643,Manager,53869.44,4359.12,10,9,24.88954781,9,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Personal Loan, and Home Equity Loan",29.29051598,21.33298022,24.05,12,Bad,4817.922945,26.43925977,9 Years and 10 Months,Yes,1576.696007,10000,High_spent_Medium_value_payments,274.2029006,0,-0.9577,1.4091,0.0949,-0.7655,-0.8589 -0x1d76d,CUS_0x32d3,August,35,204-78-6176,Manager,20107.21,1631.600833,6,6,32,2,"Credit-Builder Loan, and Home Equity Loan",17.31910372,13,10.4,11,Standard,2544.6,28.18717161,19 Years and 8 Months,Yes,27.1063949,110.1370014,Low_spent_Medium_value_payments,305.9166871,0,3.0418,1.4533,-1.3648,0.8255,1.8423 -0x1d779,CUS_0x569d,August,20,163-54-9984,Accountant,8741.32,450.4433333,6,10,28,5,"Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,24,15.77,17,_,3427.899062,36.03490194,5 Years and 2 Months,NM,23.50629756,22.17450661,Low_spent_Medium_value_payments,281.8671501,0,0.3112,0.4328,-1.2083,-1.2053,-1.2765 -0x1d785,CUS_0x68cd,August,22,120-76-9716,Architect,9336.935,887.0779167,6,6,26.06745738,7,"Credit-Builder Loan, Student Loan, Payday Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Not Specified",,24,15.72,14,Bad,3795.450954,34.00329091,14 Years and 5 Months,Yes,40.17751406,54.32276859,Low_spent_Small_value_payments,257.4872211,0,1.6967,0.9658,-1.7295,-0.242,-0.5024 -0x1d791,CUS_0x63fe,August,35,685-81-8221,Mechanic,35062.63,,0,5,7,0,,,,7.43,3,Good,1072.971016,34.69595049,,NM,0,10000,Low_spent_Small_value_payments,261.7512306,0,-1.1239,-0.644,0.9547,0.1733,0.6297 -0x1d79d,CUS_0x7c60,August,46,898-22-2622,Teacher,56135.76,,3,6,19.28836175,2,"Home Equity Loan, and Debt Consolidation Loan",19.4898437,18,-2.6,7,Standard,366.46,23.3353443,15 Years and 11 Months,No,78.06849718,508.2881835,High_spent_Large_value_payments,571.0787804,0,0.467,-1.3059,-0.7993,-0.6066,0.6721 -0x1d7a9,CUS_0x3cf1,August,37,#F%$D@*&8,Lawyer,19749.04,1544.753333,7,7,18.06745738,8,"Payday Loan, Not Specified, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",47.01962643,28.41849842,8.96,8,Bad,4295.740959,32.93867775,5 Years and 10 Months,Yes,128.3315287,56.99684547,High_spent_Medium_value_payments,192.4266712,0,-0.3636,0.4213,0.289,-0.2432,1.0236 -0x1d7b5,CUS_0x91df,August,55,654-29-2159,Accountant,129695.72,10589.97667,1,4,0.288361749,2,"Home Equity Loan, and Credit-Builder Loan",7.392472119,8,4.34,3,_,1272.225668,32.29028828,17 Years and 0 Months,No,192.3260983,1188.139963,Low_spent_Medium_value_payments,478.7305348,0,0.3167,0.2575,0.3687,-1.2481,-0.0854 -0x1d7c1,CUS_0x6ce0,August,28,#F%$D@*&8,Mechanic,37889.06,,9,7,15,5,"Payday Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,25.4673623,16.72,14,Bad,2346.805392,40.14900516,19 Years and 2 Months,Yes,94.78799565,,Low_spent_Large_value_payments,285.0244795,0,0.4447,0.5463,-0.8017,1.1085,-0.0214 -0x1d7cd,CUS_0x7d41,August,26,085-13-4572,Doctor,80673.3,6822.775,7,4,7,4,"Home Equity Loan, Not Specified, Auto Loan, and Credit-Builder Loan",,12,13.17,5,_,326.98,32.17751594,12 Years and 5 Months,Yes,176.2789099,116.9043375,!@9#%8,629.0942525,0,0.4425,-0.3245,-1.6802,0.7151,0.0868 -0x1d7d9,CUS_0x58bf,August,18,540-53-7215,Lawyer,15039.8,,6,7,13,6,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Personal Loan",,18,12.56,8,_,1641.56,33.65948491,5 Years and 11 Months,Yes,44.38166983,115.5281997,Low_spent_Medium_value_payments,265.9217972,0,0.8001,0.6037,-0.091,3.6238,-0.7823 -0x1d7e5,CUS_0x157d,August,24,901-97-7993,Teacher,16311.665,1184.305417,5,6,6,4,"Auto Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",15.80595124,14,8.9,6,Standard,598.76,24.52559403,19 Years and 6 Months,No,35.26657981,,Low_spent_Large_value_payments,265.543627,0,-0.38,1.3391,0.1818,0.1246,-1.0404 -0x1d7f1,CUS_0xb218,August,32,879-94-1803,_______,41905.36,3299.113333,10,10,20,100,"Home Equity Loan, Personal Loan, and Auto Loan",39.60762421,19.8723421,19.24,10,Standard,1746.007237,35.34354993,17 Years and 10 Months,Yes,60.20972308,,Low_spent_Large_value_payments,299.4499695,0,1.0405,0.6581,-0.248,0.2669,-0.7641 -0x1d7fd,CUS_0xadf7,August,28,988-12-9596,Engineer,77142.69,6617.5575,3,5,5.288361749,6,"Auto Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",15.04845422,13,13.21,10,Standard,523.92,30.4213203,15 Years and 9 Months,Yes,196.8139814,693.7453944,High_spent_Small_value_payments,451.1338353,0,0.6604,-0.035,-1.5694,0.2322,-0.3351 -0x1d809,CUS_0x62d,August,44,245-17-7550,Developer,7388.705,,3,6,30,7,"Credit-Builder Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",,19,10.32,11,Standard,1911.25,21.74390581,6 Years and 8 Months,Yes,35.27263426,,Low_spent_Large_value_payments,257.0521127,0,-0.4178,-1.0677,0.6717,0.6143,0.1169 -0x1d815,CUS_0x2dd2,August,35,816-48-2631,_______,73542.28,,0,3,5,0,,,2,10.15,3,Good,834.87,39.51359619,18 Years and 2 Months,No,0,81.04482081,High_spent_Medium_value_payments,759.7075125,0,1.9943,3.3223,-0.5263,0.7287,0.2874 -0x1d821,CUS_0x1cf3,August,38,229-46-4057,Manager,66858.27,5770.5225,3,541,19.28836175,4,"Student Loan, Home Equity Loan, Payday Loan, and Student Loan",9.779869572,10,4.16,9,Standard,601.58,25.9329824,28 Years and 4 Months,No,175.0151817,549.1607314,High_spent_Small_value_payments,532.8137979,0,1.5758,-0.9166,-0.185,-0.004,1.5088 -0x1d82d,CUS_0x2ee4,August,39,896-59-5635,Manager,20818.74,,8,768,15,3,"Auto Loan, Personal Loan, and Mortgage Loan",23.06526361,15.50879356,16.18,8,Standard,2077.674192,24.08075478,,Yes,44.88416188,31.57963518,High_spent_Medium_value_payments,349.8257029,0,0.1023,0.1015,0.2326,-1.5225,-1.3794 -0x1d839,CUS_0xb183,August,23,394-91-1606,Developer,34113.61,,0,6,5,0,,0,2,3.44,6,Good,560.1099744,29.11050561,19 Years and 0 Months,NM,45324,49.6951142,High_spent_Medium_value_payments,460.5359575,0,0.9659,0.5796,1.3354,-0.3585,1.0558 -0x1d845,CUS_0x9da2,August,33,366-00-4263,Media_Manager,14629.52,1309.126667,1,4,4,1,Debt Consolidation Loan,8.561569107,9.133395521,5.69,514,Good,557.9073845,25.24095723,22 Years and 2 Months,No,10.15954776,40.43461762,High_spent_Medium_value_payments,330.3185013,0,-1.5763,-0.7866,-0.7986,-0.38,-2.4589 -0x1d851,CUS_0x2f59,August,30,372-34-8477,Accountant,44667.5,3545.291667,5,6,18,4,"Mortgage Loan, Mortgage Loan, Auto Loan, and Student Loan",9.259147735,8,19.79,10,Standard,1148.67,23.61836863,19 Years and 2 Months,NM,148.4525443,77.44245685,High_spent_Medium_value_payments,378.6341655,0,-1.4847,-1.4129,0.7811,-0.2828,-0.2947 -0x1d85d,CUS_0x2f52,August,31,124-08-3108,Entrepreneur,141347.32,11676.94333,8,6,1,0,,,20,2.13,8,Good,1029.44,43.76738781,28 Years and 5 Months,No,0,183.6899958,High_spent_Large_value_payments,1224.004338,0,0.2971,0.9645,-1.5874,0.0247,1.4772 -0x1d869,CUS_0x4211,August,37,335-18-8653,Manager,32100.8,,8,6,34.06745738,7,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",24.66659576,17,2.78,14,Bad,4536.240954,40.05707694,0 Years and 10 Months,Yes,119.6514758,92.02079085,Low_spent_Medium_value_payments,337.8141121,0,0.497,0.647,-0.9943,0.6025,0.5176 -0x1d875,CUS_0x7a96,August,30,255-67-1198,Manager,24424.7,,8,5,7,0,,14.48237572,11,6.01,3,Standard,626.57,41.62192531,22 Years and 9 Months,Yes,0,,!@9#%8,364.5183371,0,-1.564,0.0845,0.2675,-0.8139,-0.2773 -0x1d881,CUS_0xa0a6,August,54,823-73-2567,Writer,32495.66,,3,7,18,1,Not Specified,23.04054228,18,10.39,1,_,1099.57,34.70099559,17 Years and 9 Months,Yes,23.96570416,,Low_spent_Medium_value_payments,254.7646972,0,-1.2521,0.4303,0.6832,-0.3945,0.2429 -0x1d88d,CUS_0x7b79,August,49,355-01-4043,Lawyer,73180.2,,4,5,20,1,Debt Consolidation Loan,14.95241496,10,9.98,3,Standard,59.55,35.7612525,28 Years and 0 Months,No,38.52937704,112.8588653,High_spent_Medium_value_payments,713.2467577,0,0.3586,-1.1335,0.5479,-1.7731,-1.7051 -0x1d899,CUS_0xa40b,August,43,411-75-9732,Accountant,31530.76,,1,3,1,4,"Credit-Builder Loan, Payday Loan, Mortgage Loan, and Auto Loan",9.434230229,10,8.54,2,_,634.356697,24.14557131,25 Years and 4 Months,No,74.25363171,63.3290268,High_spent_Small_value_payments,398.7899774,0,2.054,-0.4642,0.0666,0.9105,-0.5682 -0x1d8a5,CUS_0xa4c6,August,32,544-30-5434,Writer,28703.71,,6,3,8,2,"Debt Consolidation Loan, and Student Loan",17.60825488,13,14.83,6,Standard,807.3440283,26.05077597,28 Years and 6 Months,Yes,37.84251488,,Low_spent_Medium_value_payments,234.8769142,0,1.0656,-0.3158,1.3254,1.0166,-0.3251 -0x1d8b1,CUS_0xaeda,August,37,745-72-3624,Media_Manager,55444.56,,10,7,17,6,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",33.29856838,19.05582106,2.73,12,Bad,1501.563434,29.45589107,15 Years and 10 Months,Yes,171.9082677,10000,High_spent_Medium_value_payments,367.3137298,0,-2.269,-0.8894,-2.1222,-0.5987,0.2249 -0x1d8bd,CUS_0x5e06,August,34,401-16-8805,Accountant,19810.745,1506.895417,1,4,11,3,"Auto Loan, Payday Loan, and Personal Loan",9.702016598,11,2.47,4,_,227.12,39.06084799,22 Years and 3 Months,No,40.60045754,37.97604278,High_spent_Large_value_payments,312.1130413,0,0.1826,-0.0574,0.823,-0.1433,0.0961 -0x1d8c9,CUS_0x5254,August,47,533-73-9335,Teacher,30961.62,2283.135,5,7,11,100,,5.975409835,6.779702675,6.52,6,_,1482.327538,28.66770506,26 Years and 2 Months,No,0,106.1207241,High_spent_Small_value_payments,382.1927759,0,-0.0849,-0.7953,0.9221,1.4064,0.1011 -0x1d8d5,CUS_0x2418,August,23,458-08-6224,Writer,77253.54,,2,7,11.28836175,2,"Mortgage Loan, and Debt Consolidation Loan",0,2,4.28,6,Good,565.23,32.7030304,21 Years and 0 Months,No,85.98323033,879.5878866,Low_spent_Large_value_payments,354.5458441,0,-0.4614,0.1899,-0.022,0.8333,-0.0135 -0x1d8e1,CUS_0x24bf,August,45,374-80-5615,Engineer,41541.8,3199.816667,3,4,12,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Student Loan",,8,11.49,4,Good,1052.87,27.96426465,16 Years and 5 Months,No,87.35179471,257.9674947,Low_spent_Small_value_payments,264.6623773,0,1.2505,-2.2817,-1.2627,-0.8481,-0.3006 -0x1d8ed,CUS_0xb61c,August,37,092-95-9665,Scientist,28518.76,,6,10,16.06745738,5,"Mortgage Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",35.3496113,24,26.97,7,Bad,4513.190954,25.53957848,,Yes,88.12057456,,!@9#%8,238.4056977,0,-1.3588,0.4862,0.9089,-0.7518,0.8018 -0x1d8f9,CUS_0x74e8,August,39,296-90-6071,Doctor,87727.05,,5,3,9,3,"Credit-Builder Loan, Not Specified, and Home Equity Loan",0.05394798,1.214505895,11.86,4,Good,288.1840588,33.57680061,25 Years and 5 Months,No,217.7052928,311.9794306,Low_spent_Large_value_payments,445.9740266,0,-1.9639,1.6744,-2.5954,-0.432,-0.5792 -0x1d905,CUS_0x2c60,August,47,501-39-0517,_______,59039.52,4840.96,5,6,12,3,"Auto Loan, Not Specified, and Mortgage Loan",20.52123661,16,7.06,0,Good,977.5681295,37.05566884,30 Years and 8 Months,No,130.5134987,121.9410589,High_spent_Large_value_payments,484.1061247,0,1.0252,1.9165,-0.972,-0.6661,-0.4486 -0x1d911,CUS_0x4ed2,August,23,442-26-8125,Lawyer,88290.45,7323.5375,4,7,12,1,Payday Loan,21.62811241,16,1.88,1,Standard,375.3168989,42.07807257,,No,56.61538323,223.4589605,High_spent_Medium_value_payments,734.7090656,0,-1.5602,0.6614,-0.277,-0.7911,-0.5353 -0x1d91d,CUS_0xb04e,August,28,730-60-0289,_______,57107.12,,8,5,30,3,"Home Equity Loan, Auto Loan, and Mortgage Loan",,,9.71,12,Standard,2116.439008,41.0021151,16 Years and 4 Months,NM,136.0402893,108.2975844,!@9#%8,461.954793,0,-0.0665,-1.5491,2.062,-0.9738,-0.9612 -0x1d929,CUS_0x9cdb,August,30,278-40-5330,Teacher,117801.12,,5,4,6,6,"Payday Loan, Personal Loan, Auto Loan, Not Specified, Personal Loan, and Personal Loan",15.6675843,13,11.4,7,_,1280.57,41.80571375,15 Years and 4 Months,Yes,326.2066811,10000,High_spent_Medium_value_payments,787.6542733,0,0.4218,0.4983,0.573,0.1923,-0.269 -0x1d935,CUS_0xa2df,August,29,#F%$D@*&8,Media_Manager,8905.45,,9,10,24.06745738,6,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",,15.69935706,16.15,11,_,2175.678212,31.19288023,14 Years and 10 Months,Yes,34.9418212,16.21361854,High_spent_Medium_value_payments,220.8363556,0,-1.0053,-0.4416,0.2787,1.755,-1.0287 -0x1d941,CUS_0x2801,August,26,438-53-8698,_______,30196.64,,7,5,23,3,"Student Loan, Auto Loan, and Payday Loan",29.70398224,22.5151169,2.36,9,Bad,2455.551759,35.04681365,6 Years and 11 Months,Yes,61.80919228,58.84338257,!@9#%8,398.3860918,0,-0.0975,0.0414,0.4757,0.4876,1.5352 -0x1d94d,CUS_0xbbf7,August,26,436-24-2178,Engineer,171379.8,14351.65,1,5,4.288361749,2,"Credit-Builder Loan, Student Loan, and Payday Loan",1.56416882,4,6.08,7,Good,488.4126837,40.32686578,31 Years and 6 Months,No,296.3755716,1227.547564,Low_spent_Small_value_payments,714.5454499,0,-0.0094,-0.4441,-0.5457,0.2216,-1.0487 -0x1d959,CUS_0x6504,August,52,488-11-2449,Developer,77019.08,6138.256667,3,6,10,100,"Not Specified, Not Specified, and Not Specified",3.224525285,7.111180606,9.42,4,Good,1499.901281,29.87646208,,No,168.6095849,150.2974273,High_spent_Large_value_payments,534.9186545,0,0.1702,-0.2251,-1.5403,0.1257,0.5929 -0x1d965,CUS_0x9334,August,40,928-48-2913,Engineer,43903.54,3377.628333,3,5,17,100,Payday Loan,,19.62507401,5.03,4,Standard,410.0399383,32.02757787,31 Years and 4 Months,Yes,20.86016032,,High_spent_Large_value_payments,482.0069346,0,-0.3859,0.2412,-0.4092,-1.2978,0.0089 -0x1d971,CUS_0x7f86,August,18,776-30-5677,Mechanic,43359.36,3597.28,4,7,13,4,"Home Equity Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,20,18.95,7,Standard,1254.45,31.16418359,31 Years and 4 Months,Yes,87.58850995,98.76708762,Low_spent_Large_value_payments,443.3724024,0,-0.0527,-0.1618,0.8292,-1.1294,1.1942 -0x1d97d,CUS_0x337f,August,40,693-20-1404,Architect,67712.26,5480.688333,5,2,10.28836175,0,Credit-Builder Loan,10.24879141,10,7.35,6,Good,625.53,31.09704022,16 Years and 5 Months,No,30.70522605,654.2579043,Low_spent_Large_value_payments,553.043164,0,0.4549,-1.4532,-1.5059,1.2679,-0.8347 -0x1d989,CUS_0x81fe,August,21,577-99-8043,Writer,9760.495,,7,6,29,6,"Payday Loan, Auto Loan, Home Equity Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",32.93733897,25,6.02,11,Bad,1291.36,36.45348623,7 Years and 3 Months,Yes,47.85242619,30.19486744,High_spent_Medium_value_payments,283.0901647,0,-0.3788,0.132,1.4103,-1.0833,-0.2478 -0x1d995,CUS_0xad90,August,23,918-30-9013,Writer,15820.755,1606.39625,7,4,9,2,"Student Loan, and Credit-Builder Loan",15.96472219,12,16.7,5,Standard,590.29,31.51547439,28 Years and 4 Months,NM,17.78030935,10000,Low_spent_Large_value_payments,298.2362713,0,-1.4887,-1.5242,0.1525,0.3931,-0.199 -0x1d9a1,CUS_0x5f9a,August,36,365-58-8646,Teacher,139702.24,11866.85333,4,1,6.288361749,0,,0,4,9.96,838,_,342.6,37.81515761,,No,0,937.3184324,Low_spent_Medium_value_payments,949.304362,0,2.0012,0.556,1.6978,-2.013,-0.8592 -0x1d9ad,CUS_0x4d90,August,31,977-54-9640,_______,99617.76,8095.48,0,6,2.288361749,0,,,4,7.41,4,Good,851.22,28.20159278,15 Years and 10 Months,No,0,542.6631971,High_spent_Large_value_payments,926.8222639,0,1.6201,-0.4096,0.2877,-0.0098,-0.8139 -0x1d9b9,CUS_0x99c5,August,28,120-06-8395,Lawyer,54815.73,4866.9775,8,8,20,5,"Mortgage Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",26.78453221,12.08606505,11.13,11,_,1644.79979,32.12784994,14 Years and 10 Months,Yes,117.5742564,207.2246708,Low_spent_Small_value_payments,451.8988228,0,-0.5226,-0.2511,-0.5215,-0.799,-0.1993 -0x1d9c5,CUS_0x3f63,August,37,972-00-4814,Media_Manager,35701.42,,7,4,11,1,Payday Loan,9.517902391,9,7.69,1,Standard,1462.79,38.99321271,,Yes,18.43133666,261.9177228,Low_spent_Small_value_payments,284.8627739,0,-0.8276,0.237,1.9965,-0.9684,-0.7654 -0x1d9d1,CUS_0x81c3,August,45,023-38-6280,Accountant,66429.24,,4,3,12,3,"Debt Consolidation Loan, Home Equity Loan, and Auto Loan",16.35786955,12,8.86,2,Good,1169.57,30.24653845,32 Years and 5 Months,No,160.1765255,,High_spent_Medium_value_payments,405.2627428,0,-1.4558,-0.9547,-0.2513,0.3501,-0.5226 -0x1d9dd,CUS_0x2224,August,44,855-02-9559,Entrepreneur,79178.76,6302.23,5,1178,20,100,"Student Loan, and Personal Loan",9.986095184,9,15.01,5,_,949.13,28.43214854,22 Years and 6 Months,NM,78.83461508,372.9002673,!@9#%8,438.4881176,0,-0.2485,0.2751,-1.8665,0.6773,-1.1385 -0x1d9e9,CUS_0x9b9,August,45,998-30-4976,Mechanic,58468.08,,10,9,28,5,"Home Equity Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",12.39259925,8,11.93,15,Standard,1447.46,35.57639268,8 Years and 0 Months,Yes,169.4651565,51.99520697,High_spent_Medium_value_payments,487.7736366,0,1.3503,1.8224,0.3287,0.4409,-0.3368 -0x1d9f5,CUS_0xb82,August,23,594-57-5012,Lawyer,11874543,1077.187917,10,8,23,100,"Personal Loan, Payday Loan, Auto Loan, Home Equity Loan, Student Loan, Personal Loan, and Payday Loan",,24.06045145,17.71,14,Bad,3486.577841,32.61958945,5 Years and 0 Months,Yes,76779,83.14021403,Low_spent_Medium_value_payments,257.1469394,0,-0.1283,0.0909,1.1058,0.9592,-0.0699 -0x1da01,CUS_0xb788,August,23,020-56-0464,Lawyer,88326.72,7109.918848,7,7,18,6,"Auto Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Not Specified",9.300048089,8,11.2,8,Standard,1458.57,24.57999272,7 Years and 5 Months,NM,632.4400065,157.7915988,High_spent_Medium_value_payments,411.2655471,0,0.7391,1.2184,-0.2714,-0.0578,0.6074 -0x1da0d,CUS_0x72c1,August,40,516-35-5100,Accountant,19240.3,,6,3,9,3,"Home Equity Loan, Student Loan, and Student Loan",,11,18.88,13,Standard,660.1576569,35.9640193,19 Years and 10 Months,Yes,42.96236227,78.44731257,High_spent_Small_value_payments,333.8268397,0,-0.8652,0.5797,-0.8443,1.3687,-1.0332 -0x1da19,CUS_0x27d5,August,44,524-83-1898,Developer,34872.34,,5,4,6,2,"Student Loan, and Payday Loan",22.36788762,15,4.7,3,_,1375.96,26.65141243,30 Years and 10 Months,No,32.5639982,354.9705041,Low_spent_Small_value_payments,177.568331,0,2.5579,-1.236,-1.5088,-0.9965,1.1094 -0x1da25,CUS_0xc3ae,August,43,218-10-0201,Developer,35435.81,,3,1,10,4,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",12.45562884,11,4.5,6,Good,1308.155673,26.85925178,20 Years and 4 Months,NM,265.3379078,,Low_spent_Small_value_payments,120.5900725,0,-2.083,0.3059,0.789,2.0816,-0.5062 -0x1da31,CUS_0x416a,August,25,694-97-7075,Manager,14330.89,950.2408333,670,7,26.06745738,6,"Auto Loan, Student Loan, Mortgage Loan, Not Specified, Auto Loan, and Student Loan",43.80322731,24.22478872,5.34,11,_,3667.090922,34.76172427,1 Years and 5 Months,Yes,51.66121906,,Low_spent_Medium_value_payments,218.5188536,0,0.8277,1.0672,-0.2541,0.4284,1.079 -0x1da3d,CUS_0x8ddb,August,25,255-39-8777,Media_Manager,55762.11,4583.8425,6,9,23.88954781,7,"Credit-Builder Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",,15.60579183,9.24,10,Standard,2529.510675,32.67074793,7 Years and 0 Months,Yes,1516.710112,615.9863634,Low_spent_Small_value_payments,,0,-0.8388,0.9369,0.2849,0.5386,0.276 -0x1da49,CUS_0x693b,August,47,791-19-2569,Lawyer,88088.07,7248.6725,6,6,19,1,Debt Consolidation Loan,6.799417561,8,8.27,4,Standard,195.23,32.56432697,23 Years and 3 Months,Yes,51.15846737,63.90341635,High_spent_Large_value_payments,849.8053663,0,-0.1309,1.402,-0.1347,0.3391,0.4724 -0x1da55,CUS_0x9a51,August,54,738-23-1446,Developer,32910.92,,1,4,1,1,Credit-Builder Loan,3.550641572,7,4.55,6,Good,956.0111642,30.31592847,25 Years and 3 Months,NM,25.59089997,,Low_spent_Small_value_payments,163.7002927,0,-1.5328,-0.1382,0.0955,0.017,-0.8244 -0x1da61,CUS_0x2238,August,24,318-30-9160,Teacher,39704.19,3295.6825,5,4,3,4,"Mortgage Loan, Student Loan, Home Equity Loan, and Auto Loan",11.83428295,13,8.28,3,Good,1236.723416,31.74682051,20 Years and 3 Months,No,124.262431,,Low_spent_Small_value_payments,110.0466425,0,0.377,-0.0831,-1.9643,1.5931,1.2213 -0x1da6d,CUS_0xb006,August,46,080-73-5838,Media_Manager,132606.69,11291.5575,1654,6,6.288361749,0,Credit-Builder Loan,12.7246334,12,6.52,4,Good,934.3080694,23.63073659,33 Years and 6 Months,No,66841,,Low_spent_Small_value_payments,112.7595792,0,0.0759,-1.0259,-1.3927,1.26,0.5709 -0x1da79,CUS_0xc5a4,August,46,924-06-3877,Accountant,18771.66,1844.305,9,5,32.06745738,8,"Student Loan, Student Loan, Not Specified, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",31.40550527,,9.1,13,Bad,5603.331421,26.47334058,2 Years and 4 Months,Yes,73.81973639,80.74521431,Low_spent_Small_value_payments,293.1452614,0,-0.4986,2.3653,0.518,-0.5124,-0.1578 -0x1da85,CUS_0x2714,August,18,129-56-9147,Journalist,30668.9,,4,7,16,100,"Home Equity Loan, Payday Loan, Payday Loan, and Personal Loan",,27.74066562,15.89,9,Standard,2629.980968,34.87282604,8 Years and 6 Months,Yes,60.22543684,78.7166288,High_spent_Medium_value_payments,364.132101,0,-0.3821,-0.0868,0.8881,0.4638,1.4652 -0x1da91,CUS_0x84b8,August,22,143-97-1898,Teacher,16500.96,1528.08,3,6,11.28836175,0,Not Specified,9.701393009,9.458780724,8.81,2,Good,208.3782357,24.41270697,25 Years and 2 Months,NM,6.957605184,587.615816,Low_spent_Small_value_payments,268.1720398,0,1.629,-0.0111,-0.0527,-0.8322,0.8221 -0x1da9d,CUS_0x3ec8,August,38,477-64-2087,Media_Manager,62046.96,5103.58,6,6,613,2,"Mortgage Loan, and Mortgage Loan",5.995294446,8,15.42,6,Standard,1289.69,33.32349466,19 Years and 6 Months,Yes,94.57925252,10000,High_spent_Large_value_payments,589.5536635,0,0.5665,-0.0145,-1.4587,-0.2079,1.0714 -0x1daa9,CUS_0xb091,August,52,805-31-0884,Mechanic,39327.92,3233.326667,1,6,11,1,Not Specified,,3.638084977,1.51,6,_,142.3038145,38.63206026,31 Years and 5 Months,No,19.80976191,89.9349868,Low_spent_Large_value_payments,483.587918,0,1.5402,0.7333,-0.7212,-1.5619,-0.0735 -0x1dab5,CUS_0x6428,August,36,007-98-3418,Musician,69942.5,,3,5,20,1,Mortgage Loan,11.05606756,8,0.62,1,_,10.29,29.03553887,17 Years and 8 Months,Yes,53.82239521,294.6978235,Low_spent_Large_value_payments,523.033948,0,-0.9222,-0.0919,-1.1346,-0.5542,-0.3951 -0x1dac1,CUS_0x5ff9,August,20,455-98-9966,Doctor,85481.48,7128.456667,6,5,15,0,,,13,3.09,6,Standard,889.35,37.16921281,18 Years and 5 Months,No,0,200.1436295,High_spent_Small_value_payments,772.7020371,0,-0.9459,1.3915,-0.6574,-1.7217,1.055 -0x1dacd,CUS_0x9216,August,40,764-56-9857,Developer,14304.01,,4,4,1275,2,"Auto Loan, and Payday Loan",5.597160741,7,11.95,1429,Good,736.76,38.241287,33 Years and 6 Months,No,14.97256167,112.2349192,Low_spent_Small_value_payments,302.1926024,0,1.2872,0.4762,-0.1404,-0.1999,-1.0768 -0x1dad9,CUS_0xb00e,August,38,773-55-5934,Musician,14544.03,,6,6,15,3,"Debt Consolidation Loan, Auto Loan, and Not Specified",12.65018144,9,8.58,4,Standard,2210.601565,26.55776227,16 Years and 0 Months,Yes,27.40979088,155.0595547,Low_spent_Small_value_payments,253.7056659,0,0,-0.0942,1.4975,0.7944,-0.6349 -0x1dae5,CUS_0x788a,August,48,168-85-5169,Teacher,36564.35,3294.029167,4,5,16,1,Mortgage Loan,20.256446,13.81774495,2.19,3,Standard,117.3477655,30.81075352,19 Years and 11 Months,No,15.45972301,,Low_spent_Medium_value_payments,398.9772167,0,0.2948,-0.5808,0.5758,1.0546,0.0413 -0x1daf1,CUS_0x1f88,August,43,#F%$D@*&8,Manager,30617.5,,9,7,20,6,"Student Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, and Not Specified",36.29760039,19,9.16,16,Standard,2058.93,32.08429158,14 Years and 5 Months,NM,108.9321986,19.88933326,High_spent_Large_value_payments,346.0243015,0,-0.3368,1.4487,-0.6252,-0.6992,-0.8064 -0x1dafd,CUS_0x5386,August,18,516-86-5041,Teacher,9149.5,835.4583333,10,5,15,6,"Auto Loan, Personal Loan, Not Specified, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",,19,3.2,13,Bad,1457.21,31.89801862,8 Years and 10 Months,Yes,45.24387352,46.38893374,Low_spent_Medium_value_payments,271.9130261,0,-0.8742,-0.0189,0.7187,2.1998,1.3646 -0x1db09,CUS_0x1b7e,August,36,780-20-7356,Writer,9477.76,,6,9,32.88954781,100,"Not Specified, Credit-Builder Loan, Mortgage Loan, Not Specified, Mortgage Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",22.83505598,,22.71,13,_,3646.671577,36.55112785,,Yes,1360.778603,94.0949473,Low_spent_Medium_value_payments,221.9777015,0,0.1944,-0.6497,0.2217,0.1931,-3.6606 -0x1db15,CUS_0x2771,August,23,226-27-9498,Accountant,70674.6,,7,6,28,6,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",,21.10540572,12.67,7,Standard,2376.289471,23.85275375,18 Years and 6 Months,Yes,204.2296587,716.7091555,Low_spent_Small_value_payments,,0,0.8111,-0.3666,0.6218,0.6379,0.8581 -0x1db21,CUS_0x6da9,August,33,#F%$D@*&8,Manager,85426.68,7024.89,3,6,5,0,,8.840473228,9,1.91,3,_,1187.02,27.73530619,30 Years and 6 Months,NM,0,856.9792955,Low_spent_Small_value_payments,135.5097045,0,-2.1271,-1.124,0.4596,0.1547,0.4372 -0x1db2d,CUS_0x6d4e,August,45,#F%$D@*&8,Engineer,27318.32,2158.526667,6,4,7,3,"Personal Loan, Home Equity Loan, and Debt Consolidation Loan",11.84863846,11,12.45,11,_,1370.22,36.72049059,,Yes,60.32390942,164.2685287,Low_spent_Small_value_payments,281.2602286,0,-1.7457,-1.0666,0.5155,-0.0441,1.054 -0x1db39,CUS_0xa897,August,49,322-69-7846,Accountant,87017.92,7397.493333,2,4,5,2,"Home Equity Loan, and Debt Consolidation Loan",,10.73110592,11.5,6,Good,70.13794039,33.45754821,20 Years and 8 Months,No,107.8911468,276.0856229,High_spent_Medium_value_payments,605.7725636,0,0.4721,-0.8346,-1.1037,0.917,0.2065 -0x1db45,CUS_0x5e70,August,56,084-91-0481,Engineer,95849.16,7822.43,4,3,10.28836175,0,,20.11475892,18,4.74,3,Standard,596.66,29.40224321,18 Years and 5 Months,No,0,489.8296139,High_spent_Large_value_payments,952.3508471,0,1.4115,1.641,0.2609,-0.7755,-0.6111 -0x1db51,CUS_0x9fbc,August,39,543-69-6648,Architect,58528.3,4661.358333,4,5,6,2,"Personal Loan, and Mortgage Loan",15.97455553,13.88054568,18.13,3,_,1617.589153,26.53725281,25 Years and 3 Months,Yes,65.45196538,225.6431982,Low_spent_Small_value_payments,465.0406698,0,0.6376,-0.3137,0.1003,-1.1424,-0.7448 -0x1db5d,CUS_0xc049,August,28,973-86-2552,Media_Manager,22418.63,,5,4,6,2,"Home Equity Loan, and Mortgage Loan",15.46363614,,1.65,3,Good,403.443346,36.95584083,22 Years and 5 Months,NM,25.05304684,167.1169728,Low_spent_Small_value_payments,335.231388,0,-0.6987,-0.0073,1.6122,0.5493,-0.9524 -0x1db69,CUS_0x32ac,August,36,796-99-2464,Engineer,34204.39,,8,4,19,4,"Debt Consolidation Loan, Payday Loan, Personal Loan, and Not Specified",17.69261952,13,15.31,0,_,1131.43,23.79010402,26 Years and 6 Months,Yes,108.5821628,307.6189299,Low_spent_Small_value_payments,153.0354907,0,0.5184,-0.3726,-0.4022,-1.0173,0.2938 -0x1db75,CUS_0x219a,August,24,034-67-1193,Engineer,17868.11,,9,6,16.06745738,7,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",22.12339213,,2.06,13,_,2666.550954,28.05015678,9 Years and 0 Months,NM,63.86719415,54.76696077,!@9#%8,255.6464738,0,1.2728,0.6578,1.2467,0.5061,-0.453 -0x1db81,CUS_0x87db,August,18,207-07-2861,Lawyer,16279.715,,4,126,2,2,"Student Loan, and Not Specified",0.754056482,1,9.34,8,Good,501.96,25.56785798,27 Years and 9 Months,No,26.79098728,,Low_spent_Small_value_payments,227.1428508,0,-1.1386,-0.6274,-0.3998,-0.0223,-0.6238 -0x1db8d,CUS_0x971f,August,80,841-77-4084,Mechanic,55128.27,,7,7,17.06745738,8,"Not Specified, Auto Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Home Equity Loan",20.79242387,,16.32,8,Bad,3167.513591,28.69335647,5 Years and 8 Months,Yes,328.3188359,45.25523174,High_spent_Large_value_payments,325.1078944,0,0.2139,-0.2381,2.1243,-0.4472,-0.8876 -0x1db99,CUS_0x316e,August,33,036-55-7901,Engineer,79504.56,,7,5,20,7,"Personal Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",25.94830323,18.97742876,10.71,12,Bad,2784.75214,28.35904356,8 Years and 6 Months,Yes,269.4365973,97.13586011,High_spent_Large_value_payments,527.6655426,0,-0.1749,0.1171,-0.2914,-1.107,-0.253 -0x1dba5,CUS_0x3263,August,36,157-73-6953,Manager,132643.71,11028.6425,0,5,11.28836175,0,Debt Consolidation Loan,7.250672685,8,10.79,7,Good,1439.7,33.12390002,20 Years and 8 Months,No,58.62784172,500.9160423,High_spent_Large_value_payments,1203.257827,0,1.4255,-0.0903,-0.4649,-0.715,1.0538 -0x1dbb1,CUS_0x511f,August,38,830-35-3509,Entrepreneur,89446.38,7278.865,4,5,3.288361749,2,"Personal Loan, Credit-Builder Loan, and Student Loan",2.700031697,5,11.76,7,Good,123.7,32.02629308,33 Years and 4 Months,No,198.4713662,508.2493354,High_spent_Large_value_payments,681.1032594,0,1.3348,1.2776,-1.4044,-0.5873,0.3717 -0x1dbbd,CUS_0x60c0,August,33,720-48-8048,Mechanic,19741.36,,4,5,15,6,"Debt Consolidation Loan, Auto Loan, Personal Loan, Auto Loan, Student Loan, and Student Loan",10.20787909,8,11.46,10,Standard,1250.19,33.7437045,11 Years and 6 Months,Yes,87.43157794,133.1442144,Low_spent_Large_value_payments,203.735541,0,-0.4302,-0.9928,-0.0788,0.9572,1.3215 -0x1dbc9,CUS_0x143a,August,32,782-10-3214,Teacher,165798.2,,2,5,5,1,Payday Loan,13.79247631,12,3.71,5,Good,1022.71,48.19982398,18 Years and 4 Months,No,117.1762554,293.6238144,High_spent_Medium_value_payments,1249.651597,0,-1.7879,-0.1866,0.5974,-0.7875,-1.1458 -0x1dbd5,CUS_0x6ec8,August,80,950-08-5194,Mechanic,32283.52,,1,7,8,4,"Not Specified, Mortgage Loan, Debt Consolidation Loan, and Payday Loan",,11,1.17,3,_,557.8,36.99430135,30 Years and 5 Months,No,60.40249583,179.7373169,Low_spent_Large_value_payments,313.8895206,0,-1.5099,0.844,-0.5546,1.3275,1.2265 -0x1dbe1,CUS_0x8e8a,August,36,#F%$D@*&8,_______,21863.8,,7,3,14,2,"Payday Loan, and Personal Loan",15.8776525,15,10.68,2,Standard,1268.599863,31.89533245,30 Years and 6 Months,Yes,26.05413693,25.81445665,High_spent_Medium_value_payments,391.2188526,0,1.1004,-0.0595,-1.2629,0.5336,0.4629 -0x1dbed,CUS_0x6980,August,27,985-56-8311,Doctor,41037.94,3129.828333,10,8,23.88954781,7,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",,29.73003388,8.62,6,Bad,1939.102201,27.91014559,7 Years and 3 Months,Yes,1478.891714,36.51928727,High_spent_Large_value_payments,343.2417511,0,-1.7038,0.5119,1.0149,0.6289,-1.1729 -0x1dbf9,CUS_0xac18,August,25,#F%$D@*&8,Architect,24497.42,,4,3,14,1,Credit-Builder Loan,16.85132821,15,15.41,8,Standard,946.84,24.10495587,16 Years and 11 Months,Yes,15.44818348,40.56456233,High_spent_Medium_value_payments,378.0324209,0,-0.4428,0.7196,-1.319,0.4147,1.6287 -0x1dc05,CUS_0x30f0,August,28,305-57-0647,_______,28942.36,2670.863333,5,4,3,4,"Payday Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",,1.20584584,13.41,4,_,708.9044069,26.97655349,27 Years and 6 Months,No,87.16980917,211.7682754,Low_spent_Medium_value_payments,248.1482488,0,-0.5815,0.7892,-1.0518,0.8218,-1.1397 -0x1dc11,CUS_0x27a9,August,18,795-61-2352,Developer,77264.92,,7,5,30.06745738,7,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Payday Loan, and Not Specified",,23,19.84,7,_,5024.430954,31.7551921,3 Years and 8 Months,Yes,318.6724876,,Low_spent_Medium_value_payments,0,0,0.8487,-0.2195,-0.5455,1.0319,0.1996 -0x1dc1d,CUS_0x3f6b,August,80,178-14-1700,Manager,28559.25,,4,3,9,1,Not Specified,,18.20347749,1.64,0,Standard,620.2722268,40.69714035,,No,15.04861726,10000,High_spent_Small_value_payments,412.3596757,0,0.5893,-1.9725,1.355,-0.1819,-0.5642 -0x1dc29,CUS_0xb460,August,29,237-33-7346,Doctor,30063.42,,10,9,4544,4,"Student Loan, Personal Loan, Not Specified, and Personal Loan",27.5253253,12,16.65,11,Standard,2627.81,39.6197473,14 Years and 9 Months,Yes,86.62870492,10000,High_spent_Medium_value_payments,356.0220513,0,-0.2407,-0.5085,-0.8105,0.5297,-0.7436 -0x1dc35,CUS_0x8c9e,August,40,015-80-5855,_______,29367.88,,4,6,6,2,"Payday Loan, and Payday Loan",,8,17.15,4,Standard,1392.93,31.35154931,19 Years and 3 Months,Yes,55092,50.21496085,High_spent_Medium_value_payments,400.0719349,0,-0.2138,0.2414,0.6264,0.6192,1.2919 -0x1dc41,CUS_0x2d1c,August,18,319-08-1291,Accountant,7596.06,,6,6,18.06745738,4,"Debt Consolidation Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",,18,16.19,7,_,1581.320954,25.79845495,8 Years and 3 Months,Yes,80975,57.06421462,High_spent_Small_value_payments,250.6793949,0,0.6615,0.3119,0.6534,0.2672,-0.074 -0x1dc4d,CUS_0x2823,August,44,744-09-8974,Musician,88165.8,7271.15,4,4,4,1,Personal Loan,11.16441128,11,6.04,4,Good,326.6,35.1858784,24 Years and 10 Months,No,57.7073804,,High_spent_Large_value_payments,842.3840446,0,-1.201,-0.2772,0.7888,0.5819,-1.6467 -0x1dc59,CUS_0x5ac4,August,36,813-42-3226,Scientist,19129.26,,4,3,11,0,,18.58754905,11.44817757,2.76,7,Standard,460.2823669,25.6021768,16 Years and 0 Months,No,0,,Low_spent_Medium_value_payments,399.8364434,0,1.5693,0.1835,-0.9116,-0.8685,1.1428 -0x1dc65,CUS_0x85d,August,45,722-14-8267,Architect,41771.02,3293.918333,6,10,18.95700519,7,"Home Equity Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",,20,24.16,13,Bad,3748.140954,27.69633115,8 Years and 9 Months,Yes,1451.101053,225.5170961,High_spent_Small_value_payments,191.7233151,0,0.8763,0.0207,0.0494,1.5556,-0.3565 -0x1dc71,CUS_0x4505,August,55,814-20-6857,Developer,20257.28,1916.106667,4,5,16,1,Mortgage Loan,11.08916905,9,14.39,6,Standard,966.07,24.22224827,,Yes,10.77650129,,Low_spent_Small_value_payments,238.0754727,0,-0.7777,1.4015,-0.1589,-0.9289,1.2374 -0x1dc7d,CUS_0x9c3a,August,39,061-69-5164,Lawyer,18221.965,1171.566907,3,7,17,3,"Student Loan, Debt Consolidation Loan, and Personal Loan",,12,12.25,0,_,1218.29,30.86753982,19 Years and 2 Months,Yes,101.6454685,95.07073167,Low_spent_Medium_value_payments,283.9636847,0,1.4609,-0.2256,1.5084,0.1328,0.4418 -0x1dc89,CUS_0xb6d2,August,26,219-50-6624,Accountant,8927.89,461.9908333,9,9,30,5,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Not Specified",26.41750754,19.57612961,5.7,17,Bad,5271.861434,32.47109885,4 Years and 6 Months,Yes,30.61297278,18.06150118,Low_spent_Small_value_payments,287.5246094,0,-0.6792,0.8496,-0.6719,-1.4177,1.5871 -0x1dc95,CUS_0x6257,August,49,#F%$D@*&8,Accountant,143351.28,12014.94,8,6,3,2,"Auto Loan, and Debt Consolidation Loan",,21.8946487,8.3,4,Good,1084.039145,44.80551192,27 Years and 8 Months,No,225.725571,118.4950363,High_spent_Large_value_payments,1097.273393,0,0.614,-1.1848,0.3435,0.9472,-1.0413 -0x1dca1,CUS_0xb380,August,29,696-55-8105,Engineer,17723.52,1329.96,10,9,22.88954781,8,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Student Loan, and Personal Loan",26.23828087,18.19330137,33.48,12,_,2965.66877,23.29818853,13 Years and 8 Months,Yes,1433.922036,74.90738224,Low_spent_Small_value_payments,219.8365006,0,-1.2114,-1.7958,-0.6522,1.0261,-0.5225 -0x1dcad,CUS_0xb59a,August,30,081-75-4820,Media_Manager,36309.76,3097.813333,7,8,16,8,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",34.68770202,18,8.74,10,_,1904.87,29.18413439,13 Years and 8 Months,Yes,14037,43.35439572,High_spent_Medium_value_payments,358.7668875,0,1.937,-0.7533,-0.4339,1.6469,-1.0012 -0x1dcb9,CUS_0x12ef,August,43,912-09-9755,Mechanic,68898,5588.5,7,4,11,0,,21.16666514,16,5.8,5,Standard,312.14,29.86160695,28 Years and 2 Months,No,0,195.7889798,!@9#%8,613.0610202,0,-1.0468,1.481,0.8689,0.6757,-0.1601 -0x1dcc5,CUS_0x4d64,August,48,957-74-9921,Entrepreneur,18170.075,1785.172917,3,2,5,3,"Credit-Builder Loan, Student Loan, and Not Specified",3.593715969,7,2.16,4,Good,739.4477336,33.4323125,20 Years and 0 Months,No,43.72846186,30.4784167,High_spent_Medium_value_payments,357.150523,0,1.6603,-1.5811,0.6925,0.6207,0.4005 -0x1dcd1,CUS_0x45ca,August,21,178-46-8544,Lawyer,10409.755,,9,7,17.06745738,5,"Payday Loan, Home Equity Loan, Auto Loan, Personal Loan, and Not Specified",33.80721275,17,9.22,13,_,2838.330954,24.98698326,,Yes,40.66343585,,High_spent_Small_value_payments,248.6310193,0,0.949,1.3725,-0.2369,0.4951,0.8914 -0x1dcdd,CUS_0x3947,August,39,543-95-4931,Manager,61141.24,,6,8,1292.889548,8,"Student Loan, Home Equity Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",25.91827242,17,19.99,9,_,2667.09,36.59912122,6 Years and 5 Months,NM,1608.864234,210.4553775,!@9#%8,261.6606407,0,1.152,-2.1402,0.4684,-1.3489,-2.0557 -0x1dce9,CUS_0x748e,August,26,418-53-1393,Doctor,10120.28,645.3566667,6,5,34.06745738,5,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",33.97459174,23.67899146,9.97,12,Bad,2068.131726,35.66678656,16 Years and 6 Months,Yes,21.9038555,19.18725573,High_spent_Small_value_payments,256.7242675,0,-0.2461,-1.0291,1.5297,-1.1733,-0.3477 -0x1dcf5,CUS_0x9381,August,34,609-67-9303,Engineer,32296.78,,7,9,18.06745738,7,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",29.38836083,17.95312775,16.16,12,_,2696.944604,32.39979165,13 Years and 9 Months,Yes,118.4394645,104.0028756,High_spent_Medium_value_payments,266.3772053,0,-0.5222,0.9039,-1.085,-1.6738,1.1328 -0x1dd01,CUS_0x7225,August,43,974-78-0059,Writer,21719.56,,6,6,9,1,Mortgage Loan,17.63813169,15,15.96,9,Standard,717.44,27.84540572,29 Years and 2 Months,NM,9.247225472,,Low_spent_Small_value_payments,260.795085,0,-1.9565,0.2262,-0.9654,-0.935,-0.3249 -0x1dd0d,CUS_0x793f,August,43,037-96-1958,Teacher,51182.85,3983.2375,6,9,21.88954781,7,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Student Loan, Payday Loan, and Student Loan",,29.21764755,17.43,6,Bad,5450.868547,23.01389525,10 Years and 10 Months,Yes,1591.680948,494.1963175,Low_spent_Small_value_payments,,0,1.4846,-1.1083,-0.8638,-2.8582,-0.4356 -0x1dd19,CUS_0xb638,August,22,492-03-1612,Doctor,30623.61,2599.067862,3,6,5,4,"Mortgage Loan, Not Specified, Personal Loan, and Personal Loan",,0,11.07,1,Good,1009.98861,29.04183102,21 Years and 9 Months,No,299.9121492,197.5924753,!@9#%8,318.2118869,0,1.3016,0.3143,0.3926,-0.0969,0.54 -0x1dd25,CUS_0x7c6a,August,22,021-53-1156,_______,109472.91,9180.7425,3,5,7,3,"Student Loan, Mortgage Loan, and Not Specified",22.72464617,15,3.93,7,Standard,1338.46,34.46068257,22 Years and 11 Months,No,263.2062527,305.8687393,High_spent_Medium_value_payments,598.999258,0,1.1305,1.8474,1.5027,-2.0625,0.4378 -0x1dd31,CUS_0x9f40,August,50,588-98-4510,Musician,60744.86,,4,4,5,4,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",,11,3.4,3,Good,1437.95,35.68549862,26 Years and 3 Months,No,128.6266793,184.4086232,High_spent_Medium_value_payments,463.0718642,0,-2.9741,0.641,1.8698,2.4891,-0.7395 -0x1dd3d,CUS_0x8b6c,August,41,299-98-9190,Journalist,17561.27,,5,4,20,6,"Home Equity Loan, Personal Loan, Personal Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",,19,14.87,10,Standard,2622.44,36.95579151,11 Years and 6 Months,Yes,83.40978684,,Low_spent_Large_value_payments,200.7404078,0,0.526,-0.8576,0.0505,0.3742,0.4497 -0x1dd49,CUS_0x5872,August,23,525-66-8666,Musician,54025.95,4426.1625,6,3,29,4,"Mortgage Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",20.25339261,15.5563419,15.19,14,_,2611.239792,35.53078869,20 Years and 3 Months,NM,114.6320341,167.1162141,!@9#%8,410.8680018,0,0.1692,0.2877,0.3766,0.313,-1.1763 -0x1dd55,CUS_0x25c4,August,40,967-73-5542,Accountant,14717.28,1069.44,5,1498,10.28836175,2,"Student Loan, Home Equity Loan, and Home Equity Loan",6.611747191,9,5.89,3,_,130.6597295,28.85156589,21 Years and 6 Months,No,31.08371913,468.152434,Low_spent_Small_value_payments,322.1181969,0,-0.2462,-1.6322,-0.2166,1.2089,-0.4169 -0x1dd61,CUS_0x3066,August,36,813-02-4659,Musician,102333.28,,6,21,6,4,"Not Specified, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",9.953127925,8,15.01,10,_,913.0915797,40.8275438,17 Years and 8 Months,Yes,223.9686288,144.185903,High_spent_Large_value_payments,720.0546359,0,-0.0968,0.698,-0.1544,0.3108,-1.1381 -0x1dd6d,CUS_0xa12,August,38,399-16-3100,Teacher,17172.14,,5,6,5134.067457,3,"Mortgage Loan, Mortgage Loan, and Personal Loan",,19.39323839,24.21,7,Standard,2769.402161,26.38746599,10 Years and 3 Months,Yes,24.95699192,106.8975455,Low_spent_Small_value_payments,269.5263413,0,-0.3368,-1.6713,0.4424,1.358,-0.022 -0x1dd79,CUS_0x1a8d,August,31,222-99-8137,Mechanic,9970.16,620.8539087,7,6,23,8,"Payday Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Payday Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",39.164421,25,19.84,10,Bad,2366.28321,30.97460006,8 Years and 9 Months,Yes,46.99372168,53.33161157,Low_spent_Small_value_payments,264.3080103,0,1.4672,0.593,0.4823,-1.4473,-0.5405 -0x1dd85,CUS_0x9f77,August,20,807-63-6460,Developer,39448.67,3400.389167,1,5,9,1,Student Loan,,3,10.82,8,Good,544.19,35.18458694,23 Years and 0 Months,No,22.76445742,262.806698,Low_spent_Medium_value_payments,334.4677612,0,0.3869,1.0383,-1.7722,-1.1411,-0.5894 -0x1dd91,CUS_0xadf1,August,18,393-85-2534,Teacher,20756.69,,8,10,16,7,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",,27.23891638,27.93,13,Bad,4689.951432,30.67618371,1 Years and 6 Months,Yes,62.38847206,86.08758152,Low_spent_Medium_value_payments,313.3963631,0,1.7928,-0.0498,1.702,-0.8755,1.0018 -0x1dd9d,CUS_0x4ffd,August,55,288-84-3775,Architect,14230.995,1381.91625,3,3,10,4,"Home Equity Loan, Student Loan, Mortgage Loan, and Personal Loan",5.896472441,8,7.64,3,Good,626.64,33.592907,33 Years and 3 Months,No,44.91308007,,Low_spent_Small_value_payments,198.1153262,0,-0.331,-0.7384,0.7647,-0.3366,0.3402 -0x1dda9,CUS_0x7e50,August,80,882-21-7332,Writer,170986.72,,0,5,3008.288362,4,"Auto Loan, Personal Loan, Credit-Builder Loan, and Student Loan",0,0,3.37,3,_,366.254063,26.95496086,32 Years and 8 Months,No,460.204587,758.9443743,High_spent_Medium_value_payments,901.0455052,0,-2.3542,1.3126,1.9431,-0.114,0.8009 -0x1ddb5,CUS_0x2ea1,August,46,473-84-4527,Musician,77923,6306.583333,1,6,6,3,"Not Specified, Debt Consolidation Loan, and Auto Loan",9.873294405,8,9.68,1,Good,1101.45,25.69282432,19 Years and 9 Months,No,112.7311418,497.9771248,Low_spent_Medium_value_payments,299.9500667,0,-2.1788,-0.9959,0.055,-2.1191,0.4118 -0x1ddc1,CUS_0x925c,August,48,896-52-5250,Mechanic,103838.72,,7,3,8,1,Not Specified,,12,10.07,3,Standard,494.31,42.35396738,20 Years and 6 Months,Yes,49.28518984,74.20409901,!@9#%8,977.0333778,0,0.3843,0.1641,-0.5205,-0.2684,-1.8957 -0x1ddcd,CUS_0x5ec,August,43,934-88-2337,Media_Manager,16054.06,,8,5,8.067457376,3,"Payday Loan, Personal Loan, and Not Specified",20.17889509,13.65464006,12.87,9,Standard,2907.331677,38.06193252,,Yes,25.82604129,179.9433214,Low_spent_Small_value_payments,199.1941827,0,-0.1513,0.3629,0.2747,1.1588,0.7887 -0x1ddd9,CUS_0x6b89,August,39,702-92-3642,Media_Manager,20382.97,,6,9,28,6,"Student Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",23.82159314,,15.03,11,_,2536.84,28.36479968,19 Years and 3 Months,Yes,56.85068878,45.0381949,Low_spent_Large_value_payments,313.2691997,0,0.8135,0.5186,-0.6493,0.3541,-0.813 -0x1dde5,CUS_0x817c,August,25,256-84-4307,Entrepreneur,18014.3,,8,8,17.95700519,6,"Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Personal Loan",,17.5623443,3.43,9,Bad,2696.174897,35.01277793,13 Years and 10 Months,Yes,1382.294042,86.5068246,Low_spent_Small_value_payments,273.5679309,0,0.2094,-1.0872,0.3726,-0.8741,-0.324 -0x1ddf1,CUS_0x1cd5,August,33,506-15-9619,Developer,80182.28,6684.856667,4,4,8.288361749,0,Home Equity Loan,7.496692505,8,3.9,4,Standard,645.51,40.9343481,32 Years and 3 Months,No,36.0389546,591.1130372,High_spent_Medium_value_payments,711.2711359,0,-1.355,-0.6153,0.0172,-1.0476,0.0838 -0x1ddfd,CUS_0x5396,August,22,505-14-0899,Teacher,36568.05,,4,7,835,4,"Personal Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",16.5651269,15,2.83,0,Standard,1417.22,31.59215111,30 Years and 5 Months,NM,72.58745422,,High_spent_Medium_value_payments,417.884439,0,-0.0895,0.5506,-0.5408,0.6533,-0.1202 -0x1de09,CUS_0x81e4,August,28,274-13-7459,Teacher,17709.31,,9,8,21.06745738,2,"Home Equity Loan, and Not Specified",36.28867175,23.0975273,14.09,11,_,2005.557418,31.34019044,17 Years and 11 Months,Yes,18.09016279,96.64291285,Low_spent_Medium_value_payments,311.8242197,0,-0.1279,-0.8806,-1.3951,0.1278,0.4104 -0x1de15,CUS_0x2f97,August,18,366-30-2864,Writer,140042.28,11399.19,2,5,7.288361749,4,"Not Specified, Home Equity Loan, Student Loan, and Payday Loan",0,0,5.26,7,_,1316.839845,34.49036361,16 Years and 10 Months,NM,256.5946453,1105.930929,Low_spent_Small_value_payments,574.9297641,0,0.8475,-1.0871,-0.1911,-0.3381,-0.4502 -0x1de21,CUS_0x9df8,August,45,466-43-2520,Manager,94330.83,,3,4,8.288361749,6,"Not Specified, Mortgage Loan, Payday Loan, Auto Loan, Payday Loan, and Not Specified",14.45627789,14,18.93,7,Standard,185.98,29.32214502,18 Years and 3 Months,NM,60919,809.1876104,High_spent_Small_value_payments,434.4943449,0,0.2113,2.1629,-0.0599,-0.5307,0.5233 -0x1de2d,CUS_0x1673,August,28,002-93-9888,Doctor,16805.54,,6,5,20,3,"Debt Consolidation Loan, Home Equity Loan, and Not Specified",20.50374908,16,16.22,9,Standard,438.74,24.87198108,27 Years and 2 Months,Yes,24.43092421,154.140852,Low_spent_Small_value_payments,256.5743905,0,1.3513,-1.6794,0.0557,-0.4887,-1.1064 -0x1de39,CUS_0x72f3,August,35,054-62-4543,Media_Manager,95111.1,7724.925,5,2,11.28836175,0,Mortgage Loan,0,3,11.65,5,Good,409.1876302,42.84900784,21 Years and 0 Months,No,75.39015602,565.8690695,!@9#%8,811.0394308,0,-0.3814,1.6501,-0.9045,-0.3256,-1.1499 -0x1de45,CUS_0x3f8b,August,43,591-31-9513,_______,19249.61,,8,5,20,4,"Home Equity Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",34.08007796,26.46872284,6.7,12,Standard,2831.270193,33.05619602,,Yes,45.64719161,50.36036549,Low_spent_Medium_value_payments,321.7058596,0,0.0602,-0.4216,-0.1973,-1.1994,0.1896 -0x1de51,CUS_0xc2f5,August,40,196-51-0603,Engineer,71297.02,6028.418333,3,4,3.288361749,4,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",0.284373788,5,11.5,7,Good,383.01,29.5265892,31 Years and 2 Months,No,168.1209258,473.75135,High_spent_Large_value_payments,620.9070186,0,-0.239,2.0384,-0.1655,1.522,-0.4415 -0x1de5d,CUS_0xae15,August,43,181-18-0854,Lawyer,30564.96,,7,6,9,1,Debt Consolidation Loan,,,0.62,0,Standard,1142.05,37.84391152,24 Years and 3 Months,No,77033,36.95348085,High_spent_Large_value_payments,415.7472996,0,0.5111,0.0835,0.4946,-0.0266,-2.03 -0x1de69,CUS_0x2eff,August,21,087-44-8837,Doctor,36933.77,,4,6,8,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",13.3857831,11.91606833,5.65,3,Good,200.8180645,33.48187128,,NM,62.86437392,190.4496218,!@9#%8,339.1674209,0,0.2043,0.6599,0.0281,0.6588,-0.2823 -0x1de75,CUS_0x251e,August,50,744-90-4909,Media_Manager,32504.22,,4,7,3,100,Debt Consolidation Loan,,10.09865424,7.1,5,Good,357.1634437,40.50961425,26 Years and 6 Months,No,19.04221812,51.45935915,High_spent_Medium_value_payments,443.8669227,0,-1.7822,-0.4155,0.5024,0.1441,-0.3482 -0x1de81,CUS_0xa3ff,August,19,403-78-1540,Teacher,16888.405,,6,6,16,1,Debt Consolidation Loan,,14,11.17,0,Standard,724.57,37.26374187,25 Years and 10 Months,No,8.157936039,23.56615839,High_spent_Medium_value_payments,374.7126139,0,0.1288,-0.4112,-0.5081,1.0369,0.2666 -0x1de8d,CUS_0xa95a,August,37,945-13-1693,_______,14061.55,,8,9,17.95700519,8,"Mortgage Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",,2278,5.43,13,Bad,4284.280954,39.85763522,10 Years and 11 Months,Yes,1380.351547,,Low_spent_Small_value_payments,247.9051913,0,-0.2374,0.7922,-2.5954,1.5922,0.0203 -0x1de99,CUS_0x7cac,August,30,268-85-1527,Mechanic,36456.72,,8,10,32.06745738,2,"Personal Loan, and Payday Loan",20.54378711,9.609849018,10.91,10,Standard,2134.496266,28.46531484,17 Years and 4 Months,Yes,51.64656119,81.75296048,High_spent_Large_value_payments,396.1861904,0,1.7945,0.363,-0.4922,1.5554,1.21 -0x1dea5,CUS_0x77de,August,52,251-33-5052,Scientist,24376.73,,7,4,9,1,Mortgage Loan,11.90656596,8,8.9,6,Standard,1125.3,33.3473035,16 Years and 10 Months,Yes,18.30518957,134.4213907,Low_spent_Large_value_payments,309.9128364,0,0.1793,-1.4735,-1.0256,-1.0234,0.2306 -0x1deb1,CUS_0x6714,August,22,460-92-1394,Musician,128503.64,10803.63667,0,4,0.288361749,2,"Debt Consolidation Loan, Auto Loan, and Personal Loan",3.67736579,5,5.42,5,Good,345.9336444,39.88942793,18 Years and 11 Months,NM,274.992395,559.4660671,High_spent_Large_value_payments,925.5268501,0,-0.0024,-0.4955,-0.8525,-0.3299,0.2532 -0x1debd,CUS_0x4b78,August,53,722-42-6898,Lawyer,131080.8,11015.4,5,7,9.288361749,2,"Payday Loan, and Debt Consolidation Loan",20.5638989,18,7.28,4,Standard,145.9994173,24.14569353,23 Years and 3 Months,No,136.0498222,,Low_spent_Small_value_payments,435.7051327,0,-1.3089,0.6403,0.6212,0.2686,0.2883 -0x1dec9,CUS_0x62cf,August,43,619-24-8737,Mechanic,19399.32,1680.61,10,7,28.06745738,7,"Debt Consolidation Loan, Personal Loan, Personal Loan, Payday Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",32.18670106,18.07191373,6.04,13,_,2896.11224,25.64107991,11 Years and 9 Months,Yes,98.04771701,79.82714111,Low_spent_Large_value_payments,233.4658539,0,0.1881,-0.5459,0.6892,-1.1428,0.8089 -0x1ded5,CUS_0x7cc4,August,29,081-91-6835,Doctor,33999.48,2730.29,8,3,20,0,,19.57715563,13,17.08,6,Standard,1373.82,32.96315122,21 Years and 5 Months,Yes,0,101.8328087,High_spent_Medium_value_payments,421.1961913,0,-0.9739,0.2781,0.267,-0.2256,1.9612 -0x1dee1,CUS_0x1026,August,52,500-62-9044,Manager,170614.28,,2,6,8.288361749,2,"Payday Loan, and Auto Loan",,5,0.73,3,Good,849.69,30.83654731,20 Years and 8 Months,No,208.9074794,604.2153325,High_spent_Medium_value_payments,1303.200316,0,0.3858,0.2459,-0.8878,0.8141,0.5856 -0x1deed,CUS_0x2408,August,30,041-71-2745,Mechanic,8753.205,919.43375,7,6,21,8,"Auto Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",47.04923924,29.1349697,6.87,12,Bad,2666.255291,31.83829639,14 Years and 4 Months,Yes,41.75898472,38.4352864,Low_spent_Medium_value_payments,291.7491039,0,0.2727,1.2959,0.789,1.6044,-0.6137 -0x1def9,CUS_0x8936,August,40,649-90-8048,Accountant,18979.35,1712.6125,8,10,30.06745738,7,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",17.9374765,10.62675263,16.12,13,Standard,1892.650944,32.80519386,13 Years and 8 Months,Yes,95.00727385,85.9437457,Low_spent_Large_value_payments,233.5899425,0,-1.2838,1.104,0.9835,0.6249,-0.2228 -0x1df05,CUS_0x786,August,35,052-06-5984,Lawyer,7957.91,563.1591667,2,2,17,5,"Personal Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Not Specified",23.64413255,17,11.13,8,Standard,818.5,27.51701493,10 Years and 3 Months,Yes,31.46144839,32.40778867,Low_spent_Small_value_payments,282.4466796,0,1.2818,-0.5704,-1.0362,0.3498,-0.5341 -0x1df11,CUS_0x81c7,August,24,088-68-4129,Manager,17143.76,1451.646667,8,8,15,100,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",36.68702232,20.73223984,23.39,15,Bad,3582.958177,32.31402135,3 Years and 0 Months,Yes,75.58541391,65.23975405,Low_spent_Small_value_payments,294.3394987,0,0.4593,0.5451,-0.465,-0.1621,-0.4996 -0x1df1d,CUS_0x58d7,August,32,480-45-2864,Teacher,68538.88,5562.573333,3,3,12,0,,22.39285042,18,5.32,3,_,152.38,37.34688183,,No,0,76.69826814,High_spent_Medium_value_payments,729.5590652,0,0.9181,0.8475,2.3574,0.5082,0.3274 -0x1df29,CUS_0xaca7,August,33,588-25-9381,Journalist,60694.74,,7,7,30,4,"Student Loan, Personal Loan, Student Loan, and Personal Loan",22.4233544,17.00340877,11.59,10,Standard,1854.114773,40.32046168,11 Years and 0 Months,Yes,179.5820579,81.29265866,!@9#%8,486.8147834,0,0.0635,0.4544,1.0097,-1.3596,0.8472 -0x1df35,CUS_0x6a73,August,52,790-24-1252,Musician,22209,,4,5,18,4,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",24.1496876,15.30391222,15.25,4,Standard,315.5941213,22.82357945,20 Years and 11 Months,Yes,48.68604727,88.1884243,Low_spent_Large_value_payments,344.9005284,0,-0.1817,0.0761,-1.2535,1.3863,-2.0019 -0x1df41,CUS_0x3912,August,53,#F%$D@*&8,Engineer,32013.46,2595.788333,3,5,7,3,"Student Loan, Auto Loan, and Personal Loan",,,-5.85,0,Standard,1068.81,35.02514198,20 Years and 4 Months,No,70.30439973,132.7293119,Low_spent_Medium_value_payments,336.5451217,0,0.9976,0.6768,-0.0868,-1.0397,-1.6656 -0x1df4d,CUS_0x9200,August,44,612-18-3692,Architect,12683.275,,8,3,6,1,Personal Loan,33.04641719,24.27656357,7.73,1,Standard,1338.631641,31.15670812,30 Years and 4 Months,Yes,7.067810341,,!@9#%8,317.5150568,0,-0.1807,0.2225,-0.1281,-0.5777,-1.1792 -0x1df59,CUS_0x441e,August,35,194-02-3427,Media_Manager,67422.8,5435.566667,4,7,12,100,"Student Loan, and Debt Consolidation Loan",12.67926857,13,16.16,1,_,1082.56,27.46753752,29 Years and 9 Months,Yes,85.74783602,406.5115418,!@9#%8,321.2972888,0,1.6521,0.7327,0.0822,-0.499,0.4157 -0x1df65,CUS_0x6e6a,August,52,#F%$D@*&8,Architect,32455.1,2973.591667,7,6,13,0,,21.87217681,19.55200561,12.33,1,Standard,929.5498191,30.75568415,28 Years and 9 Months,Yes,0,10000,High_spent_Medium_value_payments,506.5916168,0,-1.4703,0.8957,0.9812,-1.7748,1.1462 -0x1df71,CUS_0x7968,August,80,293-25-3124,Media_Manager,142725.8,11867.81667,5,2,11.28836175,0,,,11,3.22,3,_,409.2878547,39.83368117,20 Years and 10 Months,No,0,679.4353744,High_spent_Large_value_payments,1203.675968,0,-1.2013,-1.8558,-1.117,-0.6989,0.7233 -0x1df7d,CUS_0x3cc3,August,53,759-88-5604,Engineer,44330.2,3744.183333,4,3,9,1,Mortgage Loan,15.10569675,,15.02,5,Good,1286.330077,26.67055519,21 Years and 0 Months,NM,20.27273486,88.70852412,High_spent_Medium_value_payments,525.0439957,0,-1.0487,-1.5156,-1.3752,-0.0343,-0.2203 -0x1df89,CUS_0x4f6c,August,29,774-32-4152,Doctor,31969.22,,6,5,8,6,"Payday Loan, Not Specified, Mortgage Loan, Payday Loan, Not Specified, and Personal Loan",26.56555494,22.48399327,15.98,6,Standard,1493.209727,33.25851206,6 Years and 9 Months,Yes,142.9652748,181.3433651,!@9#%8,230.3015267,0,-0.2335,0.604,1.0105,1.64,0.3629 -0x1df95,CUS_0xa110,August,31,572-11-6331,Scientist,67151.6,5497.966667,5,4,11,7,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Personal Loan, and Auto Loan",19.63085106,13,16.56,6,Standard,41.67,31.04852632,5 Years and 9 Months,Yes,369.9293787,10000,Low_spent_Small_value_payments,18.53441685,0,0.145,-1.0429,-0.7932,-0.1402,0.335 -0x1dfa1,CUS_0x517c,August,54,627-29-9827,Lawyer,57524.56,,4,7,9,2,"Student Loan, and Not Specified",9.368179588,10,1.59,8,Good,938.6267572,36.85771591,19 Years and 0 Months,No,67.02733725,422.0423555,Low_spent_Small_value_payments,350.3201936,0,0.8586,-0.9841,-1.4444,-0.5815,0.4884 -0x1dfad,CUS_0x2991,August,45,472-08-0007,Journalist,10427.44,629.9533333,9,5,21,7,"Mortgage Loan, Not Specified, Personal Loan, Payday Loan, Home Equity Loan, Student Loan, and Student Loan",,17.01088903,11.62,12,Standard,1527.928732,27.95067425,10 Years and 0 Months,NM,4363,22.43826176,Low_spent_Small_value_payments,273.7033284,0,0.5442,-2.2217,1.1112,0.2633,0.1296 -0x1dfb9,CUS_0xb0f6,August,33,124-49-2598,Doctor,69026.56,5970.213333,3,4,6.288361749,6,"Not Specified, Mortgage Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",13.69082722,14,8.13,9,Standard,365.38,31.06027753,18 Years and 3 Months,Yes,289.2175206,667.3595987,High_spent_Medium_value_payments,310.3816751,0,-0.915,-0.6467,-0.1216,-0.6265,-2.8403 -0x1dfc5,CUS_0x59a2,August,42,938-66-9299,Scientist,35350.24,,4,7,20,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Credit-Builder Loan, and Not Specified",10.57840414,9,14.26,7,Standard,543.54,33.55509806,6 Years and 5 Months,Yes,139.6974502,10000,Low_spent_Small_value_payments,110.7977846,0,1.2073,-1.7718,-1.4269,0.9545,-0.3717 -0x1dfd1,CUS_0x4577,August,29,709-02-4843,Writer,8504.55,,8,6,23,7,"Mortgage Loan, Mortgage Loan, Student Loan, Student Loan, Payday Loan, Personal Loan, and Home Equity Loan",35.53260873,26.06896989,5.58,9,Bad,3239.102197,25.70522724,2 Years and 3 Months,Yes,26.61087677,29.05276222,Low_spent_Medium_value_payments,317.807611,0,1.0125,-1.4885,0.6325,0.7138,-0.6056 -0x1dfdd,CUS_0x2267,August,43,322-94-2134,_______,17556.41,,8,10,35.06745738,4,"Auto Loan, Student Loan, Mortgage Loan, and Personal Loan",,11.22015598,15.09,9,Standard,2678.284545,36.88096475,15 Years and 2 Months,Yes,57130,,Low_spent_Medium_value_payments,259.4879067,0,0.3964,-0.2056,0.2936,0.2242,-0.3047 -0x1dfe9,CUS_0x8acd,August,36,307-29-0236,Engineer,45608.14,3912.678333,4,3,17,0,,5.069585165,6,8.41,8,Standard,1195.85,39.979964,5 Years and 11 Months,Yes,0,136.6775674,High_spent_Medium_value_payments,504.5902659,0,-0.11,0.0619,0.5383,-0.1654,0.5646 -0x1dff5,CUS_0x5a2d,August,28,279-97-1576,Manager,16490.75,,8,10,22.88954781,9,"Payday Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",45.37373637,27.38494364,4.83,13,Bad,2619.577792,39.14369009,8 Years and 6 Months,Yes,1411.27355,51.59521472,High_spent_Small_value_payments,264.424071,0,1.0248,0.0636,0.8723,2.0343,0.1891 -0x1e001,CUS_0x850f,August,38,932-37-1770,Scientist,14829.17,,4,4,12,2,"Auto Loan, and Credit-Builder Loan",20.9919855,17,7.07,7,Standard,300.47,33.91872301,18 Years and 9 Months,Yes,17.93499962,116.5483329,Low_spent_Small_value_payments,258.8930841,0,-1.1321,-0.2934,-1.207,-1.1396,-0.2826 -0x1e00d,CUS_0x44b8,August,54,948-64-0040,Media_Manager,46346.68,3907.223333,3,3,10,0,,19.39821175,12,6.07,0,Standard,183.3,26.77023178,19 Years and 5 Months,No,0,74.3631695,High_spent_Large_value_payments,556.3591638,0,-0.2251,2.1658,0.7209,0.9009,1.1475 -0x1e019,CUS_0x24fc,August,24,585-38-2127,Entrepreneur,22320.325,,0,7,9,3,"Student Loan, Auto Loan, and Mortgage Loan",0.034005536,1.142623474,4.63,4,Good,1122.139686,33.72403044,19 Years and 3 Months,No,40.92697968,123.7750176,Low_spent_Small_value_payments,321.9007111,0,-1.1163,-0.0556,0.6589,-0.7993,-0.8258 -0x1e025,CUS_0x1ba2,August,24,#F%$D@*&8,Scientist,86470.84,7060.903333,3,4,20,0,,,17,10.13,5,_,211.56,35.27262153,29 Years and 5 Months,Yes,0,267.9088693,High_spent_Medium_value_payments,688.181464,0,-0.1861,1.5086,-0.5765,-0.4612,0.2302 -0x1e031,CUS_0x303b,August,50,482-28-5175,Journalist,170824.68,,0,3,3.288361749,4,"Personal Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",7.646716701,8.516647213,1.25,7,Good,1305.935243,37.72539321,25 Years and 9 Months,No,566.1347697,1132.849103,High_spent_Small_value_payments,429.8925882,0,-1.0068,0.8331,-0.9343,-1.4007,-1.8284 -0x1e03d,CUS_0x9ccf,August,35,#F%$D@*&8,Media_Manager,31820.56,2520.713333,8,7,8,1,Personal Loan,17.97536194,14,8.44,2,_,1394.06,25.56176718,25 Years and 11 Months,Yes,17.29983196,127.4742745,High_spent_Small_value_payments,367.2972269,0,-0.628,1.2189,-0.4915,0.2234,0.2509 -0x1e049,CUS_0x1ba9,August,29,391-18-9705,Media_Manager,78066.48,,8,9,20,100,"Home Equity Loan, Auto Loan, Payday Loan, and Personal Loan",,13.14417832,18.2,9,Standard,1888.30874,24.19259556,17 Years and 3 Months,Yes,132.911175,166.7915547,High_spent_Medium_value_payments,617.6512702,0,-1.6284,0.5736,0.2718,0.918,0.9059 -0x1e055,CUS_0xc5a3,August,19,512-47-9593,Doctor,31204.74,,8,4,8,4,"Personal Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",30.08368235,20,10.75,5,Standard,611.99,28.33920724,6 Years and 9 Months,Yes,96.22099548,134.180362,Low_spent_Small_value_payments,348.4381425,0,-0.2268,-1.3127,0.3655,-0.9081,0.0242 -0x1e061,CUS_0x2fd7,August,37,469-10-8700,Mechanic,14599.89,1464.6575,7,8,22.06745738,5,"Personal Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",23.50966064,16,27.64,13,_,2883.960954,36.18563627,9 Years and 10 Months,Yes,39.08622974,82.23705384,Low_spent_Small_value_payments,288.4221785,0,0.75,-2.0507,0.0468,-1.1281,-0.2662 -0x1e06d,CUS_0x9cd3,August,18,311-70-2527,Mechanic,89394.78,7710.565,8,3,6,2,"Mortgage Loan, and Credit-Builder Loan",19.265577,16,11.18,7,Standard,1255.14,31.90100403,26 Years and 10 Months,Yes,134.729084,310.3835049,High_spent_Medium_value_payments,575.9439111,0,0.4929,0.6078,0.5785,-0.5185,0.9921 -0x1e079,CUS_0x5158,August,42,093-72-9364,Developer,36806.84,,6,5,18,6,"Student Loan, Personal Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, and Student Loan",16.75653338,12,18.22,7,_,1933.58,32.36948258,15 Years and 0 Months,Yes,174.8931166,,Low_spent_Small_value_payments,192.9551963,0,1.5499,0.1642,0.2263,0.1589,1.3399 -0x1e085,CUS_0x165f,August,37,962-16-3321,Writer,28443.42,2314.285,7,4,9,2,"Not Specified, and Not Specified",15.90148951,12,7.23,4,_,1286.011271,28.67616,24 Years and 2 Months,No,39.80748156,26.95702242,High_spent_Large_value_payments,408.0677014,0,1.4193,1.0326,1.8849,0.1563,-0.5266 -0x1e091,CUS_0x9819,August,47,284-59-0994,Journalist,24363.78,,3,3,18.28836175,2,"Not Specified, and Home Equity Loan",,,15.79,4,Standard,242.11,26.40285613,32 Years and 5 Months,Yes,32.81755487,492.3667932,High_spent_Medium_value_payments,323.9846129,0,0.766,-0.1166,0.2572,1.9854,1.4078 -0x1e09d,CUS_0x9a42,August,34,093-30-0257,Architect,40295.72,3627.976667,2,4,5,3,"Home Equity Loan, Home Equity Loan, and Mortgage Loan",0.841066373,1.174590682,4.04,5,Good,508.6300942,38.52439156,18 Years and 0 Months,No,77.09602411,364.2681354,Low_spent_Medium_value_payments,201.4335072,0,0.1608,1.0178,-1.1317,1.7818,0.6884 -0x1e0a9,CUS_0x1156,August,25,877-50-9125,Entrepreneur,10060.015,1103.334583,4,9,17.88954781,6,"Student Loan, Student Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Payday Loan",14.2556984,12,9.29,15,Standard,1971.81,26.65609994,10 Years and 10 Months,Yes,1355.767767,72.275562,High_spent_Small_value_payments,247.9600483,0,-1.7265,-1.2091,-0.157,0.1772,-0.0104 -0x1e0b5,CUS_0x956f,August,30,388-03-9983,Doctor,32943.66,2811.305,5,6,14,6,"Payday Loan, Student Loan, Personal Loan, Auto Loan, Payday Loan, and Not Specified",,,14.52,10,_,226.74,30.15365775,10 Years and 8 Months,Yes,162.9339639,283.1319237,Low_spent_Medium_value_payments,115.0646125,0,-0.1254,-1.6758,1.0978,0.6249,1.5099 -0x1e0c1,CUS_0x52d2,August,18,386-88-8824,Media_Manager,46271.32,4105.943333,3,5,7,6,"Payday Loan, Mortgage Loan, Home Equity Loan, Student Loan, Auto Loan, and Not Specified",15.38661023,15,17.54,5,Standard,640.52,29.06101791,16 Years and 10 Months,Yes,175.4212438,158.7964449,!@9#%8,326.3766447,0,-0.8459,-0.6329,1.575,0.1294,0.6066 -0x1e0cd,CUS_0xc044,August,33,599-31-9121,_______,88957.38,7433.115,4,4,5,1,Student Loan,,18,7.52,0,Standard,878.8583163,34.96114968,22 Years and 11 Months,No,45.86939842,189.4141228,High_spent_Medium_value_payments,785.479839,0,-0.3446,-0.0277,0.1394,0.9016,1.3656 -0x1e0d9,CUS_0x2087,August,54,902-09-8828,Media_Manager,65869.24,5702.103333,1,7,10,3,"Student Loan, Home Equity Loan, and Not Specified",2.584020121,6,5.2,2,Good,470.6634971,33.31689446,18 Years and 6 Months,No,154.1622312,369.9278476,High_spent_Small_value_payments,342.8673765,0,0.8296,0.6238,2.3161,-0.5086,0.6582 -0x1e0e5,CUS_0xa75c,August,39,981-43-7537,Manager,56483.64,4900.97,8,3,443,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",32.09676609,21.83651362,5.72,4,_,235.0252964,22.96927942,23 Years and 0 Months,No,87.74219338,243.1470507,High_spent_Small_value_payments,419.2077559,0,0.6887,0.8297,0.5091,3.0556,-0.222 -0x1e0f1,CUS_0x68af,August,20,326-39-1205,Lawyer,81769.35,6995.1125,7,5,13,4,"Mortgage Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",15.99427896,14,2.27,0,Standard,535.75,32.7302429,17 Years and 2 Months,No,183.2770971,75.86811372,High_spent_Large_value_payments,680.3660392,0,1.2156,-1.2261,0.0586,-1.155,0.7633 -0x1e0fd,CUS_0x1f19,August,21,734-45-8783,_______,109480.98,9031.415,5,4,9,0,,,8,14.04,1668,Standard,372.34,25.86006215,28 Years and 2 Months,Yes,0,471.2432268,Low_spent_Large_value_payments,701.8982732,0,-2.9769,0.4468,0.5068,-0.254,-2.7433 -0x1e109,CUS_0x4fa3,August,55,773-79-4897,Mechanic,166741.48,14131.12333,4,5,12,3,"Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",15.07735189,12,2.83,0,Good,117.12,39.62608507,32 Years and 0 Months,No,337.255643,,High_spent_Large_value_payments,1034.436932,0,0.5053,-0.7418,0.0468,1.4389,-0.995 -0x1e115,CUS_0x58b5,August,27,166-72-8708,Mechanic,8246.71,539.0720062,6,3,34,7,"Home Equity Loan, Student Loan, Personal Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",13.39474087,13,7.58,10,Standard,2006.97,30.91266376,11 Years and 10 Months,Yes,57.26847415,,Low_spent_Small_value_payments,250.5206979,0,-0.528,-0.5431,2.5565,-1.4664,0.9041 -0x1e121,CUS_0x7fb3,August,29,810-95-8044,Engineer,19557.1,,5,5,1478,4,"Student Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",28.72772709,22.42816235,12.86,7,Standard,2245.904507,30.36758328,12 Years and 6 Months,Yes,53.65460693,10000,Low_spent_Small_value_payments,251.3877015,0,1.4169,-0.2189,0.8463,-1.2554,1.0477 -0x1e12d,CUS_0x6336,August,40,754-23-4169,_______,19227.17,1371.264167,9,9,24.06745738,4,"Student Loan, Payday Loan, Home Equity Loan, and Personal Loan",,,15.61,7,Bad,1900.637588,39.87406143,17 Years and 0 Months,Yes,36.95983375,115.1774475,Low_spent_Medium_value_payments,238.2688475,0,0.1376,0.111,-0.4878,-0.955,1.81 -0x1e139,CUS_0x60f9,August,39,314-67-0732,Entrepreneur,43981.4,3431.116667,3,6,7,5,"Not Specified, Student Loan, Payday Loan, Auto Loan, and Home Equity Loan",30.80568654,23.12609841,13.77,10,Standard,582.1140095,31.04888831,6 Years and 0 Months,Yes,113.8791951,143.1658389,!@9#%8,366.0666327,0,1.0559,1.3433,-1.0125,1.2805,-2.9271 -0x1e145,CUS_0x7698,August,25,971-09-3563,Musician,34202.45,2627.204167,3,4,14,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Student Loan",25.70208305,15.50598029,3.39,2,Standard,964.3608701,32.49814001,26 Years and 9 Months,Yes,85.27708285,135.4470604,Low_spent_Small_value_payments,331.9962734,0,0.3836,-0.0126,0.8473,1.4252,0.1746 -0x1e151,CUS_0x9c3b,August,26,#F%$D@*&8,Manager,17891.16,1589.55156,10,9,28.95700519,8,"Mortgage Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",,20.54653218,2.62,8,Bad,2727.905694,34.96429739,8 Years and 6 Months,Yes,1400.406478,69.81047999,Low_spent_Small_value_payments,251.504113,0,-1.2381,0.1304,-0.0512,1.7563,-2.4548 -0x1e15d,CUS_0xa47c,August,34,379-65-6305,Developer,58248.33,4722.0275,8,6,33,5,"Not Specified, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",39.6546503,27.95911317,18.38,12,Bad,1711.27519,25.79876961,,Yes,213.876538,62.98153389,High_spent_Medium_value_payments,445.3446782,0,-0.5585,0.7161,-0.842,2.0164,-1.1798 -0x1e169,CUS_0x2a69,August,53,#F%$D@*&8,Entrepreneur,96604.14,8223.345,3,512,8.288361749,0,,3.642322525,5,5.88,4,Good,411.28,27.51104648,23 Years and 3 Months,No,59835,699.2416423,High_spent_Medium_value_payments,793.0303187,0,-0.5666,-1.0312,1.8761,0.5247,-0.2295 -0x1e175,CUS_0x99e9,August,44,912-98-1836,Doctor,22530.97,1684.580833,3,3,4,1,Personal Loan,18.33425978,16,8.89,4,Good,328.0031998,30.12418152,21 Years and 4 Months,No,11.3815999,117.8258082,Low_spent_Large_value_payments,320.9454199,0,-0.5166,-1.1753,-0.6783,0.7523,-0.933 -0x1e181,CUS_0xbd75,August,53,367-04-5630,Engineer,23338.83,2105.9025,7,5,11,0,,23.76318775,18,2.01,3,_,404.12,25.51362805,16 Years and 5 Months,No,0,139.406501,Low_spent_Small_value_payments,361.183749,0,0.508,0.8642,-2.0688,0.0165,0.4563 -0x1e18d,CUS_0x4ee1,August,18,529-25-9023,Entrepreneur,62679.87,,8,8,17,2,"Not Specified, and Mortgage Loan",30.09154368,19,3.1,6,_,2172.76,29.95792162,16 Years and 0 Months,Yes,100.1026009,257.4977354,High_spent_Small_value_payments,439.9319137,0,1.0867,-0.6664,1.3159,-0.2723,-0.0078 -0x1e199,CUS_0x30fd,August,80,198-74-1257,Developer,43074.48,,7,5,10,4,"Not Specified, Student Loan, Not Specified, and Mortgage Loan",13.31819673,9.648229643,11.31,6,Standard,2832.017567,30.82970836,16 Years and 6 Months,Yes,121.3352524,,Low_spent_Small_value_payments,208.6207296,0,-1.0346,-0.7085,0.9025,-1.796,0.8039 -0x1e1a5,CUS_0x3352,August,23,882-89-4787,Scientist,32612.36,,5,5,12,4,"Debt Consolidation Loan, Auto Loan, Not Specified, and Auto Loan",9.31525704,10,14.44,0,Good,734.6814798,22.1675301,32 Years and 11 Months,No,91.57898727,93.49380088,High_spent_Small_value_payments,351.7445432,0,-0.5818,0.459,0.2294,0.6805,-0.9494 -0x1e1b1,CUS_0xa422,August,40,692-10-4434,Scientist,92067.99,7455.3325,4,4,18,2,"Credit-Builder Loan, and Personal Loan",18.81137171,13,7.81,6,Standard,1398.94,34.18417269,26 Years and 8 Months,Yes,152.6516375,613.4823616,Low_spent_Medium_value_payments,259.3992509,0,-1.3535,-0.0119,1.6073,1.4406,2.4478 -0x1e1bd,CUS_0x142f,August,50,158-89-2902,Mechanic,17250.52,1682.543333,1,6,10,3,"Personal Loan, Payday Loan, and Mortgage Loan",7.080515593,5.887552363,4.86,1,_,1496.299852,24.91900237,,No,24.3258823,132.8071785,Low_spent_Large_value_payments,281.1212726,0,1.0544,-1.2406,-0.2214,-0.0863,0.9891 -0x1e1c9,CUS_0x7e7c,August,21,172-68-0059,Writer,63861.36,5487.78,4,6,12,4,"Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,2,3.91,1,Good,1071.97,37.68975372,22 Years and 11 Months,No,150.2591054,102.8224088,High_spent_Large_value_payments,535.6964858,0,-0.2987,-0.1279,-1.0074,0.3233,-1.2287 -0x1e1d5,CUS_0x2562,August,48,880-88-5689,Doctor,19641.665,1795.805417,0,6,10,0,,19.90604628,16.55261549,6.89,1,Good,1335.376593,30.09425387,30 Years and 2 Months,No,0,13.87465871,High_spent_Large_value_payments,405.705883,0,-0.4454,1.4716,-0.8943,2.302,-0.3842 -0x1e1e1,CUS_0xc34a,August,18,633-88-2115,Developer,53646,,7,5,19,8,"Home Equity Loan, Mortgage Loan, Payday Loan, Personal Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",39.15813157,20,16.04,9,Bad,4597.44,29.55400414,,Yes,308.9807217,10000,Low_spent_Small_value_payments,,0,0.4268,0.1967,0.4463,-0.0587,0.0139 -0x1e1ed,CUS_0xbeec,August,28,204-07-8662,Doctor,10436.12,,7,6,20.06745738,5,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,9,8.66,11,Standard,1558.560954,39.03752161,8 Years and 10 Months,Yes,26.2338473,75.08039785,Low_spent_Small_value_payments,227.6331336,0,0.7677,1.4735,-1.017,-1.2697,0.492 -0x1e1f9,CUS_0x2e82,August,35,630-98-0469,_______,37233.5,,10,5,30,7,"Not Specified, Credit-Builder Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",28.25598523,18,27.27,11,Bad,3410.45,29.06403055,,Yes,183.9387737,43.68956775,High_spent_Medium_value_payments,304.6508252,0,0.85,-0.0965,0.6901,2.5819,1.4866 -0x1e205,CUS_0x4e73,August,47,493-46-7198,Developer,113192.68,9376.723333,3,7,2.288361749,0,,0,2.355377938,6.15,2,Good,1354.412916,39.28320044,19 Years and 0 Months,No,0,911.6902381,Low_spent_Small_value_payments,735.9195562,0,-1.4377,0.9149,-1.3755,0.0574,0.4512 -0x1e211,CUS_0x1f00,August,22,192-14-0956,Developer,25428.7,2016.058333,5,4,15,6,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,18,4.78,8,Standard,1167.79,36.02812555,,Yes,85.08819787,,Low_spent_Small_value_payments,169.8280268,0,0.914,0.431,-2.0716,-0.0731,0.7881 -0x1e21d,CUS_0x6534,August,18,#F%$D@*&8,Scientist,79697.48,6080.96593,7,7,26,9,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, Payday Loan, and Payday Loan",41.52476759,25,22.03,26,_,2984.04,30.90358942,5 Years and 6 Months,Yes,841.8403869,123.1771445,High_spent_Small_value_payments,301.8188723,0,1.7723,-1.43,1.4206,0.3368,-0.7363 -0x1e229,CUS_0xc6ba,August,41,219-23-5757,Developer,9615.485,607.2904167,7,6,2696,6,"Home Equity Loan, Student Loan, Student Loan, Personal Loan, Not Specified, and Not Specified",18.11321043,14.98324049,12.31,12,_,2412.041819,32.41534491,15 Years and 11 Months,Yes,40.69487717,25.42847439,Low_spent_Small_value_payments,284.6056901,0,0.3851,1.2871,0.4577,0.0291,-1.0618 -0x1e235,CUS_0xc2cc,August,45,952-37-1540,Teacher,9400.2,719.35,7,5,34.06745738,7,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Mortgage Loan",,,3.52,10,Bad,2171.15713,33.60318538,,Yes,45.88919371,55.93035651,Low_spent_Medium_value_payments,223.3951618,0,0.3105,-0.8866,0.322,0.8594,-0.1547 -0x1e241,CUS_0xbfcb,August,26,054-86-7625,Developer,35023.49,2651.624167,3,4,18,3,"Home Equity Loan, Personal Loan, and Not Specified",,9,14.86,6,Standard,305.79,36.37127779,32 Years and 0 Months,Yes,52.66554536,65.10311351,High_spent_Large_value_payments,387.3937578,0,0.0324,0.7146,1.4407,0.5025,1.185 -0x1e24d,CUS_0xb515,August,24,534-57-1077,Accountant,14233.31,,7,6,21.06745738,9,"Debt Consolidation Loan, Student Loan, Personal Loan, Personal Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Student Loan, and Personal Loan",,21.88314538,8.22,6,Bad,4353.380105,38.60698175,11 Years and 4 Months,Yes,77.31063981,78.06147134,Low_spent_Medium_value_payments,202.3185176,0,-0.8864,0.8128,-0.3538,-0.1801,0.3593 -0x1e259,CUS_0x1dd3,August,24,936-83-6588,Manager,68484.44,5684.036667,5,7,5,5,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Home Equity Loan",25.83806921,20,12.52,8,_,105.41,37.66204647,12 Years and 8 Months,Yes,225.5356673,,Low_spent_Medium_value_payments,314.3336535,0,0.1868,-0.2618,0.7138,1.703,0.1585 -0x1e265,CUS_0x92aa,August,26,218-80-2572,Entrepreneur,98703.99,8350.3325,2,6,8,3,"Auto Loan, Student Loan, and Debt Consolidation Loan",1.537474708,3.422467611,8.72,7,Good,1576.257261,32.59824615,29 Years and 2 Months,No,142.6663747,147.1631032,High_spent_Large_value_payments,785.2037721,0,-0.921,-0.4816,0.3215,1.2967,0.0104 -0x1e271,CUS_0x7e8a,August,18,668-06-0629,Doctor,40944.82,,1426,7,17,3,"Personal Loan, Student Loan, and Student Loan",18.98867132,16,13.4,7,_,948.81,39.43435094,25 Years and 6 Months,Yes,93.98416719,10000,High_spent_Large_value_payments,453.0521859,0,1.4951,0.5177,0.2607,1.2134,0.0276 -0x1e27d,CUS_0x14cf,August,29,195-25-5475,Musician,13618.87,,4,3,11,0,,21.80391107,18,8.18,0,Good,1480.87,31.49544304,31 Years and 10 Months,No,0,55.29881119,High_spent_Small_value_payments,337.9917721,0,0.8342,0.3724,0.1009,-0.9096,-0.0967 -0x1e289,CUS_0xaff6,August,56,406-69-4655,Mechanic,32876.7,,7,4,20,1,Not Specified,15.76865349,,14.28,3,Standard,807.3,34.80667125,17 Years and 5 Months,Yes,23.79430355,,High_spent_Small_value_payments,409.0252515,0,1.1062,0.6621,0.5224,0.0919,0.3681 -0x1e295,CUS_0xc03a,August,44,932-28-9901,Manager,33401.1,2701.425,1,7,1,2,"Not Specified, and Not Specified",5.855003771,9,11.39,8,Good,857.99,25.86031013,18 Years and 11 Months,No,54.21282396,63.36692237,High_spent_Medium_value_payments,402.5627537,0,2.2478,-1.8564,0.9312,-0.2984,0.6761 -0x1e2a1,CUS_0x6960,August,23,830-83-0350,Scientist,43788.75,,3,7,10,1,Not Specified,3.815863658,6,4.43,4,Good,1427.84,25.99129532,29 Years and 0 Months,No,23.44304387,366.8347376,Low_spent_Small_value_payments,239.1284686,0,0.0868,1.8156,0.1885,0.2382,-1.8351 -0x1e2ad,CUS_0x688e,August,18,860-92-2220,Media_Manager,42447.54,3583.295,5,5,13,4,"Mortgage Loan, Payday Loan, Mortgage Loan, and Auto Loan",,16,12.04,7,_,2103.16,36.48528898,18 Years and 0 Months,Yes,95.24041675,94.84421375,High_spent_Medium_value_payments,418.2448695,0,-0.6241,-0.9439,-0.4171,0.7032,0.41 -0x1e2b9,CUS_0xa736,August,21,120-08-5254,Entrepreneur,147058.64,12319.88667,2,3,11,2,"Home Equity Loan, and Not Specified",0,0,10.92,3,_,1377.33,24.81560854,28 Years and 8 Months,No,193.3529607,691.403924,Low_spent_Medium_value_payments,627.231782,0,-1.4052,0.8557,2.0179,0.1065,-2.1677 -0x1e2c5,CUS_0x13ce,August,52,396-50-4794,Manager,18710.74,,2,6,8,4,"Payday Loan, Credit-Builder Loan, Payday Loan, and Student Loan",4.462346276,8,5.13,5,Good,830.7,22.73838014,,No,50.32093195,63.22151612,Low_spent_Large_value_payments,292.7803853,0,0.583,0.116,1.4954,-0.1857,0.6088 -0x1e2d1,CUS_0x8b8b,August,40,978-16-1554,Accountant,80402.72,,9,8,25,5,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Payday Loan",41.4259269,29.33945541,25.25,16,Bad,3628.668466,35.87668496,6 Years and 0 Months,Yes,178.6006603,10000,High_spent_Large_value_payments,582.7471413,0,-0.8768,-0.8884,-0.6733,0.1646,-0.5178 -0x1e2dd,CUS_0x4866,August,18,167-26-7699,Journalist,95025.4,,6,6,14,0,,18.13403742,15,10.13,7,Standard,746.5,38.50015329,9 Years and 0 Months,Yes,0,161.3724496,High_spent_Large_value_payments,847.0058838,0,-1.2926,0.2461,1.378,0.1109,-0.314 -0x1e2e9,CUS_0xb319,August,43,290-47-1324,Scientist,15361.32,1362.11,10,10,18.06745738,9,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",24.85468156,17,22.95,11,Bad,3123.400954,33.77448474,9 Years and 5 Months,Yes,111.9039843,,Low_spent_Medium_value_payments,154.2700733,0,-0.6985,-0.7226,0.0974,0.2333,-0.5616 -0x1e2f5,CUS_0x7ae4,August,41,209-28-8999,Scientist,54072.94,4700.078333,6,6,12,3,"Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",15.37204048,12,7.33,,Standard,1388.27,28.71618203,33 Years and 0 Months,No,72.89893779,187.8990427,Low_spent_Medium_value_payments,489.2098529,0,1.6046,1.8661,-0.7683,-1.1195,-0.1358 -0x1e301,CUS_0x264b,August,55,214-29-8583,Manager,109349.31,7895.012322,2,3,5,0,,,0,3.93,4,Good,1199.389373,41.05494407,29 Years and 9 Months,No,1296.430178,87.80806042,High_spent_Large_value_payments,1080.1029,0,-0.4493,-1.7163,0.7635,0.3904,-0.816 -0x1e30d,CUS_0xe51,August,42,192-48-3506,Architect,96583.71,7998.6425,5,6,1.288361749,0,Debt Consolidation Loan,0,2,3.28,3,Good,777.88,32.88552165,30 Years and 3 Months,No,49572,484.2346109,High_spent_Large_value_payments,907.3376772,0,0.6101,-0.4539,-1.7663,-0.505,2.2009 -0x1e319,CUS_0xb8a8,August,33,788-37-2569,Engineer,45705.04,3722.753333,8,6,6,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",15.33282131,13,16.69,7,_,378.16,35.43191083,16 Years and 9 Months,Yes,69.04495021,74.49803168,High_spent_Large_value_payments,468.7323514,0,-0.7575,0.1298,-0.0595,-0.9454,1.9189 -0x1e325,CUS_0x6fb4,August,18,271-80-1213,Mechanic,31273.54,,5,5,20,2,"Debt Consolidation Loan, and Credit-Builder Loan",,15,12.63,8,Standard,2382.3,25.00412274,,Yes,49.9397122,64.50937655,High_spent_Large_value_payments,400.7637446,0,0.6966,-0.3799,1.0859,0.0996,1.1494 -0x1e331,CUS_0x9793,August,42,631-08-6588,_______,19006.52,,1733,6,15,5,"Not Specified, Home Equity Loan, Student Loan, Credit-Builder Loan, and Personal Loan",41.18609247,22.79218317,5.69,,_,3310.249483,36.39979288,1 Years and 11 Months,Yes,48.95753866,10000,Low_spent_Small_value_payments,299.9220897,0,0.1442,1.2436,-0.0415,1.1255,1.2574 -0x1e33d,CUS_0x4807,August,40,001-96-0566,Musician,70825.76,5814.146667,10,7,22,3,"Personal Loan, Payday Loan, and Mortgage Loan",35.26937577,17,9.77,12,Standard,1629.99,32.87962365,5 Years and 11 Months,Yes,166.6415955,525.7761691,Low_spent_Small_value_payments,178.996902,0,-0.5794,1.0396,0.7139,0.4549,1.547 -0x1e349,CUS_0xcea,August,31,#F%$D@*&8,Entrepreneur,13815.325,1133.277083,4,4,4,0,,,12,0.52,5,Standard,565.72,40.74181603,30 Years and 3 Months,No,0,41.07846214,Low_spent_Medium_value_payments,352.2492462,0,-0.6338,-0.601,1.0247,-1.2292,1.1467 -0x1e355,CUS_0xb8f7,August,61,125-22-4888,Journalist,21702.87,1794.5725,0,2,8,0,,1.100313746,3,3.25,1,Good,440.8436422,36.6391156,30 Years and 2 Months,No,0,64.84264676,High_spent_Medium_value_payments,370.5983936,0,0.2311,-0.4809,0.6394,1.0645,0.6763 -0x1e361,CUS_0x6821,August,26,159-13-1368,Architect,34105.84,3093.153333,10,5,19,7,"Student Loan, Not Specified, Student Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Not Specified",,29.62306029,3.22,13,_,3518.448763,23.63121971,14 Years and 8 Months,Yes,143.1277115,,Low_spent_Large_value_payments,213.6652797,0,0.0684,0.7961,-0.8394,0.5032,-0.899 -0x1e36d,CUS_0x7ab6,August,37,039-48-4190,Developer,42252.7,3007.490624,6,6,13,4,"Mortgage Loan, Student Loan, Personal Loan, and Personal Loan",23.225269,20,7.69,9,Standard,631.2703702,36.45090069,,NM,492.6175913,119.2164704,High_spent_Medium_value_payments,367.6919242,0,0.4461,1.3967,-0.42,-0.009,-0.3638 -0x1e379,CUS_0x4464,August,27,#F%$D@*&8,Teacher,97363.36,8059.613333,6,6,16,3,"Payday Loan, Mortgage Loan, and Student Loan",13.32102571,10.18652825,15.5,6,Standard,225.2423056,42.69825695,14 Years and 2 Months,NM,152.3969132,,High_spent_Large_value_payments,718.2804166,0,-0.4428,0.4801,0.7308,1.1705,0.6047 -0x1e385,CUS_0xc2cb,August,80,523-96-3939,Doctor,22387.125,1677.59375,4,3,12,0,,0,0,3.93,1,Good,1222.790599,22.22875249,27 Years and 0 Months,No,0,182.3017558,Low_spent_Medium_value_payments,290.6840024,0,0.9745,0.9566,-1.7742,0.264,-0.1044 -0x1e391,CUS_0xa8e2,August,33,025-92-7349,Doctor,21903.85,,3,5,6.067457376,1,Credit-Builder Loan,27.75241267,19,10.96,1,Standard,1649.710954,39.25780706,29 Years and 4 Months,Yes,13.2736255,90.33428392,Low_spent_Small_value_payments,353.703886,0,2.1255,-1.8525,0.2042,-1.2706,-0.0944 -0x1e39d,CUS_0xc2eb,August,49,476-80-8128,Musician,93068.88,7497.74,5,8,16,4,"Personal Loan, Mortgage Loan, Payday Loan, and Personal Loan",24.40477847,,1.36,4,Standard,151.6,37.63420795,24 Years and 9 Months,No,221.0215,797.4188038,Low_spent_Small_value_payments,21.33369625,0,0.6384,0.8224,-0.8872,-0.9856,1.3292 -0x1e3a9,CUS_0x81ce,August,41,548-14-5750,Accountant,20579.45,,5,6,4,0,,7.931826527,2.4028504,8.18,4,Good,1670.890939,35.09693193,25 Years and 9 Months,NM,0,188.7543095,Low_spent_Small_value_payments,282.7411071,0,-0.9659,-0.0418,-0.8939,-1.561,-1.1295 -0x1e3b5,CUS_0xf45,August,28,952-99-0474,Mechanic,32057.3,,9,8,16,7,"Student Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,29.61755806,1.4,14,Bad,1481.175181,38.59879487,10 Years and 4 Months,Yes,164.8594262,207.5770839,Low_spent_Small_value_payments,178.2076565,0,-0.1144,0.9679,0.1746,-1.9011,-0.6605 -0x1e3c1,CUS_0x9ea,August,24,531-34-8176,Scientist,70851.84,5947.32,8,6,11,2,"Home Equity Loan, and Not Specified",9.195606863,11,13.86,9,Standard,972.89,27.91215026,33 Years and 5 Months,Yes,97.02789989,,High_spent_Large_value_payments,648.8412504,0,-0.5157,-0.0055,0.2803,0.9045,0.682 -0x1e3cd,CUS_0x5161,August,18,566-41-9357,Writer,83403.2,6825.266667,10,8,25.88954781,6,"Home Equity Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Student Loan",,20,11.03,6,Bad,1668.73,26.73445714,19 Years and 10 Months,Yes,1610.676973,,High_spent_Medium_value_payments,365.3264273,0,0.2901,-0.7453,-0.8419,0.4792,-1.1961 -0x1e3d9,CUS_0x78f0,August,36,654-33-1232,Teacher,11780.935,,8,5,10,0,,,12,5.8,6,Standard,526.12,39.31931804,32 Years and 11 Months,No,0,,Low_spent_Small_value_payments,358.3155503,0,2.3993,-0.5051,1.5266,-1.106,-0.7081 -0x1e3e5,CUS_0x44c0,August,27,087-44-2520,Engineer,48854.85,3957.2375,9,5,16,6,"Debt Consolidation Loan, Student Loan, Not Specified, Not Specified, Home Equity Loan, and Home Equity Loan",39.74251746,28.30441119,14.82,13,Bad,3428.70894,26.19195333,13 Years and 8 Months,Yes,208.9850256,76.72995367,High_spent_Large_value_payments,350.0087707,0,2.3035,0.4239,-0.2304,1.6476,-0.0233 -0x1e3f1,CUS_0x6057,August,36,778-35-7926,Musician,28810.71,2367.8925,7,3,10,1,Auto Loan,9.822072946,9,14.03,7,Standard,454.58,30.01283074,,Yes,20.76803282,253.7739842,Low_spent_Small_value_payments,252.247233,0,1.5409,-0.9369,-0.4264,-0.2535,-0.2171 -0x1e3fd,CUS_0x1463,August,50,239-41-8144,Media_Manager,95534.61,,6,911,11,0,,21.67232207,14,3.92,0,Standard,1273.05,34.82754464,33 Years and 0 Months,NM,0,229.3164718,High_spent_Small_value_payments,832.2052782,0,0.5306,-0.3094,-0.0837,-0.7976,0.4151 -0x1e409,CUS_0x4cc2,August,19,349-26-0674,Manager,7290.88,406.5733333,3,4,27,7,"Personal Loan, Not Specified, Personal Loan, Home Equity Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",,16,13.53,17,Standard,2580.29,25.63694979,15 Years and 4 Months,Yes,41.70317224,,Low_spent_Small_value_payments,257.9978494,0,0.7399,0.6194,-0.2093,-0.2768,-0.4224 -0x1e415,CUS_0x9771,August,27,702-39-1597,Entrepreneur,29038.58,,8,4,12,7,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",32.59992203,22.92857838,15.24,6,Standard,1752.632913,23.71268249,20 Years and 5 Months,Yes,110.9417046,81.86015563,Low_spent_Large_value_payments,315.4863065,0,-0.2216,-1.2472,-0.0664,-0.3131,-0.7125 -0x1e421,CUS_0x8568,August,19,721-47-0286,_______,164027.12,13711.92667,5,5,5.288361749,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",0,2,3.62,5,Good,47.78865648,30.20103585,17 Years and 5 Months,No,428.2717621,,High_spent_Small_value_payments,520.764774,0,2.0839,-0.8898,-1.0289,0.8893,-1.3433 -0x1e42d,CUS_0x20ff,August,37,816-89-5174,Doctor,16862.88,,8,8,23.06745738,7,"Personal Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Auto Loan",43.3022683,22.57789158,19.07,12,Standard,1770.59683,35.19447892,17 Years and 8 Months,Yes,81.80403665,,Low_spent_Small_value_payments,151.1784697,0,0.346,-0.431,-0.33,-1.2411,-0.6586 -0x1e439,CUS_0x255b,August,30,006-88-2847,Musician,9555.94,,7,6,28.06745738,7,"Payday Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",27.19817894,17.75877495,5.72,11,_,3704.647604,25.86907115,3 Years and 10 Months,NM,44.9810863,73.21774397,Low_spent_Small_value_payments,224.3137151,0,-1.1933,-2.0553,-1.3171,0.3159,-2.0608 -0x1e445,CUS_0x2a06,August,41,263-17-4432,Mechanic,35917.12,,9,6,34,4,"Mortgage Loan, Payday Loan, Payday Loan, and Home Equity Loan",39.09790873,21.888869,5.39,6,Bad,1693.876542,28.79751953,18 Years and 6 Months,Yes,164.9535656,174.2337317,Low_spent_Large_value_payments,265.7428958,0,-0.0668,0.1411,-0.3932,1.0034,-0.669 -0x1e451,CUS_0x8065,August,21,#F%$D@*&8,Media_Manager,14516.4,1134.7,8,5,24.06745738,9,"Mortgage Loan, Credit-Builder Loan, Personal Loan, Student Loan, Payday Loan, Student Loan, Mortgage Loan, Not Specified, and Debt Consolidation Loan",39.58687501,18.25294865,16.39,6,Bad,4726.481882,39.30661871,6 Years and 10 Months,Yes,77.70588981,,Low_spent_Medium_value_payments,217.8179232,0,-0.4816,1.6352,0.6382,-1.1219,-1.2882 -0x1e45d,CUS_0x8216,August,19,888-44-5992,Architect,7225.02,415.2278897,10,10,30,7,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Home Equity Loan, and Payday Loan",,15.8281475,1.2,13,Bad,5181.85996,36.89132668,1 Years and 2 Months,Yes,67.94083918,10000,Low_spent_Small_value_payments,248.2583889,0,-0.3281,-0.5862,1.0567,0.0652,-0.0802 -0x1e469,CUS_0x1250,August,28,#F%$D@*&8,Developer,72503.56,5974.963333,6,8,32.95700519,9,"Credit-Builder Loan, Not Specified, Student Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Student Loan, Not Specified, and Mortgage Loan",,18,22.41,15,Bad,4429.010954,36.88179885,13 Years and 8 Months,Yes,1686.329545,107.3564851,High_spent_Medium_value_payments,332.7599335,0,1.2535,-1.6477,1.6244,-0.0433,1.468 -0x1e475,CUS_0xbb4e,August,80,618-14-8027,Manager,58214.12,4710.176667,7,9,30,7,"Mortgage Loan, Payday Loan, Auto Loan, Auto Loan, Not Specified, Personal Loan, and Personal Loan",33.05645729,17,2.69,11,Bad,2215.84,25.51854421,6 Years and 5 Months,Yes,183.2792584,318.832989,High_spent_Small_value_payments,228.9054193,0,-1.4218,-1.4556,0.1357,0.1646,-0.2987 -0x1e481,CUS_0xb329,August,53,892-70-8758,Writer,16965.3,1247.775,1,5,3,0,,,5,-1.98,6,Good,63.04011391,30.98911241,15 Years and 10 Months,No,0,126.3875246,Low_spent_Small_value_payments,300.228834,0,-0.2775,1.6808,-0.2226,1.7943,1.0249 -0x1e48d,CUS_0xb0f3,August,32,335-15-2362,Accountant,65454.36,5400.53,4,5,13.28836175,2,"Home Equity Loan, Debt Consolidation Loan, and Not Specified",19.15448813,17,7.17,8,Standard,449.97,25.6656429,25 Years and 0 Months,Yes,130.9284792,1016.147976,Low_spent_Small_value_payments,102.9140056,0,-0.6275,-1.1824,0.7684,0.2047,0.7209 -0x1e499,CUS_0xce1,August,40,035-74-7118,Scientist,31256.02,2841.668333,3,4,19,7,"Credit-Builder Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",,17.54101332,14.76,6,Standard,2726.925986,33.78696276,5 Years and 11 Months,Yes,122.8524265,132.2169195,High_spent_Small_value_payments,289.0974873,0,-1.3796,-0.4999,0.7607,1.1769,0.853 -0x1e4a5,CUS_0x992c,August,36,755-10-0575,Architect,18261.36,,5,3,9,3,"Debt Consolidation Loan, Not Specified, and Personal Loan",,12,17.43,9,Standard,2305.16,29.80928489,18 Years and 4 Months,Yes,26.02407181,70.04237304,High_spent_Small_value_payments,312.5115552,0,0.2627,-1.0612,0.7408,1.7637,1.2321 -0x1e4b1,CUS_0x67f9,August,38,226-71-9521,Engineer,34433.18,,5,4,19,2,"Personal Loan, and Debt Consolidation Loan",11.10460183,9.402478136,10.99,14,Standard,1873.066533,25.86752152,19 Years and 10 Months,Yes,36.28557408,345.2352189,Low_spent_Small_value_payments,175.6223737,0,1.4671,0.0975,-0.4469,1.0056,-1.0826 -0x1e4bd,CUS_0x614d,August,30,868-50-4952,Engineer,9302.125,835.1770833,8,8,17.88954781,7,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Payday Loan",16.57556348,,28.32,,_,4418.180242,26.35402772,5 Years and 2 Months,Yes,1357.85224,36.15884428,Low_spent_Small_value_payments,285.1765423,0,-2.0185,-0.0647,1.4938,0.4393,-0.9913 -0x1e4c9,CUS_0x5b9d,August,45,192-16-9048,Mechanic,87966.96,7564.58,5,2,15,1,Student Loan,28.37807353,23,10.24,4,_,166.72,35.40901136,19 Years and 8 Months,Yes,64.35019527,10000,Low_spent_Medium_value_payments,237.4441787,0,-0.1527,1.4527,0.5163,1.95,0.0094 -0x1e4d5,CUS_0x8b5f,August,48,711-39-1531,Developer,22323.28,,0,5,9,4,"Credit-Builder Loan, Not Specified, Not Specified, and Personal Loan",12.04175173,11,7.2,7,Good,467.0590381,25.82502554,27 Years and 3 Months,No,53.86123911,262.0695988,Low_spent_Small_value_payments,202.3271388,0,-0.6902,-1.6466,0.8823,2.9767,1.5908 -0x1e4e1,CUS_0xb4ee,August,24,703-46-2158,Manager,19989.65,1563.804167,10,5,21,9,"Student Loan, Not Specified, Auto Loan, Mortgage Loan, Auto Loan, Auto Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",29.71240226,,0.24,14,Bad,2313.514116,39.18374968,9 Years and 8 Months,Yes,94.21551872,204.5073298,Low_spent_Small_value_payments,147.6575681,0,-1.0019,-0.2916,0.8889,-0.5565,-0.1988 -0x1e4ed,CUS_0x8bcc,August,55,771-16-3153,_______,123485.04,10299.42,4,4,6,3,"Auto Loan, Mortgage Loan, and Auto Loan",17.84677183,,8.17,5,Good,929.4787615,27.33981939,19 Years and 9 Months,No,290.0200002,474.9033197,High_spent_Medium_value_payments,563.6530069,0,0.6062,-1.7082,0.4428,0.4398,-0.1517 -0x1e4f9,CUS_0x7a68,August,19,210-95-0465,Developer,30638.28,,3,5,13,3,"Personal Loan, Home Equity Loan, and Credit-Builder Loan",21.36269063,17,12.41,8,Standard,670.13,35.94846822,20 Years and 9 Months,Yes,57.35981371,162.2277745,Low_spent_Small_value_payments,296.1314118,0,0.7873,1.5273,-0.4328,0.0387,1.0605 -0x1e505,CUS_0x9998,August,30,325-40-2210,Architect,21639.39,,3,4,7,1,Mortgage Loan,23.55947484,17.54342507,9.71,7,Standard,1216.748542,28.90575004,23 Years and 8 Months,Yes,12.13186647,,Low_spent_Medium_value_payments,291.3859528,0,-1.436,-0.7742,-1.097,1.0233,1.5753 -0x1e511,CUS_0x1204,August,46,741-78-3585,Writer,18829.82,1578.151667,8,8,25.06745738,4,"Mortgage Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",11.7709413,7.05364064,12.36,,Standard,2204.47464,29.95950476,9 Years and 0 Months,Yes,34.9070076,,Low_spent_Large_value_payments,256.2299328,0,-0.8253,2.0844,-0.6444,-2.3921,1.2205 -0x1e51d,CUS_0xa823,August,43,687-30-3436,_______,16481.42,1514.451667,9,5,24.06745738,8,"Auto Loan, Auto Loan, Home Equity Loan, Student Loan, Home Equity Loan, Auto Loan, Mortgage Loan, and Home Equity Loan",,25,28.12,12,Bad,4641.670954,40.58971726,,NM,58.81112683,10000,Low_spent_Medium_value_payments,283.4137609,0,1.0813,-0.3376,0.8132,-0.3418,-0.8467 -0x1e529,CUS_0xb1cc,August,26,283-60-8539,_______,93550.95,,3,5,11,0,,12.42073458,9,7.03,8,_,1272.54,37.62974443,18 Years and 2 Months,Yes,0,126.8970318,High_spent_Large_value_payments,897.8942182,0,-0.492,0.0927,0.4639,-1.2478,0.9511 -0x1e535,CUS_0xf9f,August,80,060-48-7120,Manager,18587.64,,6,8,18.95700519,7,"Student Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Payday Loan",,26,12.1,12,_,2593.420954,27.07891256,8 Years and 4 Months,Yes,1384.582775,93.92088297,Low_spent_Small_value_payments,248.342973,0,0.6192,0.1406,1.5116,0.218,0.6053 -0x1e541,CUS_0x8f2d,August,27,426-36-5407,Accountant,36190.17,,5,3,10,0,,17.04447682,,2.96,5,Good,1406.85,32.96584415,16 Years and 0 Months,No,0,35.36904347,High_spent_Medium_value_payments,540.6157065,0,0.3924,-1.2916,-0.9294,0.7189,0.6602 -0x1e54d,CUS_0x8b44,August,27,849-19-8337,Developer,15503.02,,6,7,30,6,"Mortgage Loan, Payday Loan, Personal Loan, Not Specified, Auto Loan, and Student Loan",45.57267713,27.6728459,6.22,8,Bad,4082.060816,23.3137864,4 Years and 8 Months,Yes,164.9674921,,Low_spent_Small_value_payments,271.8087612,0,-2.4951,0.5133,-0.742,1.241,0.532 -0x1e559,CUS_0x542f,August,49,904-67-1928,Lawyer,12763.795,,8,6,20,4,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,6,8.76,0,_,1294.02575,40.45529962,29 Years and 0 Months,No,31.04307058,,Low_spent_Medium_value_payments,293.4144708,0,-1.4642,0.772,-0.0417,-1.0656,-0.0563 -0x1e565,CUS_0xbc17,August,23,270-15-4049,Scientist,53057.64,,10,10,20.88954781,6,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",21.39913476,14.74245371,19.2,11,Standard,1698.979795,35.50645179,15 Years and 8 Months,Yes,1474.269458,94.32738367,High_spent_Medium_value_payments,456.6200768,0,-0.3201,0.3027,-0.0316,-0.4203,-0.1787 -0x1e571,CUS_0x9365,August,21,452-11-1523,Teacher,16868.34,1570.695,10,7,22,8,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Payday Loan, Auto Loan, Mortgage Loan, Personal Loan, and Personal Loan",31.81388297,21.39882438,5.36,8,_,2340.62308,24.14085796,12 Years and 8 Months,Yes,101.5057159,,Low_spent_Medium_value_payments,222.9934174,0,1.0237,0.9984,0.1932,-1.8549,-0.5831 -0x1e57d,CUS_0x7efc,August,42,194-66-9977,_______,60218.28,5293.19,7,6,32,7,"Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Not Specified",36.85719225,23,28.2,9,Bad,4982.57,26.542659,1 Years and 6 Months,NM,230.6266047,73.94423746,High_spent_Medium_value_payments,474.7481578,0,0.3561,1.4865,-1.1936,0.575,0.0148 -0x1e589,CUS_0x26da,August,44,957-74-9111,Doctor,16833.105,,5,5,4,100,"Payday Loan, Personal Loan, Auto Loan, and Home Equity Loan",16.83127597,14,7.99,6,Good,30.97116522,32.24959266,19 Years and 9 Months,No,51.70293826,108.9441262,Low_spent_Small_value_payments,299.9801891,0,1.3932,0.975,0.2449,0.3664,-1.0434 -0x1e595,CUS_0x3e38,August,47,232-31-3900,Scientist,54936.2,4420.016667,4,3,6,4,"Auto Loan, Auto Loan, Auto Loan, and Student Loan",,12,0.9,2,Standard,1142.13,33.2154897,28 Years and 3 Months,No,131.6163786,382.5556157,Low_spent_Small_value_payments,217.8296724,0,-0.4368,1.2849,0.8231,0.191,-0.0923 -0x1e5a1,CUS_0x987b,August,29,208-69-9004,Scientist,7186.5,,6,10,24.95700519,7,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Student Loan, Payday Loan, Personal Loan, and Mortgage Loan",,25.93399444,5.89,12,Bad,2695.486511,30.44528393,19 Years and 5 Months,Yes,1347.117253,83.91905911,Low_spent_Small_value_payments,223.0008188,0,-1.8489,0.3907,1.3026,-0.7613,-1.3882 -0x1e5ad,CUS_0x5572,August,39,972-53-4211,Scientist,10068.97,,8,4,8.067457376,3,"Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",24.36774049,16,10.8,4,Standard,2416.340954,27.9225221,,Yes,23.22225147,38.51749864,Low_spent_Small_value_payments,285.5480453,0,1.4214,-0.5754,-0.0035,0.2962,-1.2651 -0x1e5b9,CUS_0x4e6a,August,53,200-08-4652,Media_Manager,21963.845,,2,5,12,4,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",,6,10.35,6,_,902.69,37.33312272,23 Years and 2 Months,No,38.07342701,27.11812498,High_spent_Medium_value_payments,351.0404897,0,0.5548,-0.3149,1.4434,-1.0171,0.708 -0x1e5c5,CUS_0x3f68,August,21,380-00-1423,Engineer,121277,9884.416667,4,1,7,4,"Mortgage Loan, Not Specified, Credit-Builder Loan, and Student Loan",14.12645941,12,7.69,8,Good,754.3483184,37.87314499,26 Years and 11 Months,No,375.3982364,564.4369775,High_spent_Small_value_payments,371.5645725,0,0.812,-1.1711,-0.9854,0.8773,0.4505 -0x1e5d1,CUS_0x82c1,August,80,635-40-2158,Manager,30883.32,2311.61,6,5,8,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",6.712758376,7,11.24,9,Standard,1891.76,24.81665864,15 Years and 9 Months,Yes,50.14969839,10000,High_spent_Small_value_payments,367.1285087,0,-0.0524,-0.0654,0.2539,0.4286,-0.7746 -0x1e5dd,CUS_0x94e3,August,22,135-67-9301,Developer,53075.22,,7,8,21.06745738,7,"Payday Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, and Not Specified",,22,17.23,9,_,3829.350954,25.91475474,14 Years and 5 Months,Yes,301.2769511,502.7217344,Low_spent_Small_value_payments,,0,-1.4127,0.0682,0.4127,-1.0267,1.7531 -0x1e5e9,CUS_0x73b1,August,24,929-57-3185,Musician,34150.84,2946.903333,10,10,29,4,"Personal Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",25.93822062,,8.93,12,Bad,2089.71,24.58535053,9 Years and 9 Months,Yes,67.97113361,125.5315771,High_spent_Small_value_payments,361.1876226,0,1.1264,-0.4501,-0.8736,1.3547,0.5865 -0x1e5f5,CUS_0x9d3e,August,47,527-86-3924,Accountant,33856.86,,1,6,2,0,,4.31185505,5,8.62,1,Good,368.9159656,32.03172507,17 Years and 11 Months,NM,0,113.6386567,Low_spent_Small_value_payments,465.5460912,0,0.0636,0.6518,1.0664,0.6343,0.4875 -0x1e601,CUS_0x4bda,August,60,826-37-6944,Doctor,69886.64,4873.622246,4,6,2.288361749,0,Home Equity Loan,,1,7.52,2,_,596.9045309,41.41838618,17 Years and 10 Months,No,857.3991843,602.8152625,High_spent_Medium_value_payments,604.1611456,0,0.7679,0.8599,1.1048,0.2635,-1.3859 -0x1e60d,CUS_0x74b2,August,42,145-70-3714,Scientist,86415.56,,5,4,15.28836175,4,"Not Specified, Mortgage Loan, Mortgage Loan, and Student Loan",19.75733506,18,13.3,11,Standard,97.94305606,36.77137008,8 Years and 4 Months,Yes,177.5912022,725.2346368,Low_spent_Medium_value_payments,546.8180589,0,-1.6105,-1.4344,-0.8673,2.6581,-0.1845 -0x1e619,CUS_0xbac3,August,49,489-21-2179,Manager,93817.62,,1,6,4,1,Personal Loan,3.088531829,6,8.99,5,Good,952.1838416,26.92616989,32 Years and 8 Months,No,46.97136627,1157.563003,Low_spent_Small_value_payments,,0,-1.5221,-0.1703,0.5469,-1.2043,-1.6335 -0x1e625,CUS_0xa7ae,August,53,932-88-7756,_______,20292.46,1974.038333,7,5,4,0,,18.75968123,13,3.11,2342,Good,371.8194689,33.23738198,22 Years and 0 Months,No,0,51.15738654,High_spent_Large_value_payments,393.1865975,0,-0.8773,1.0298,-0.5561,0.2572,-2.6218 -0x1e631,CUS_0x5f61,August,18,126-44-7194,Doctor,25454.67,,4,3,7,0,,,15,1.61,5,Standard,256.91,38.95571603,31 Years and 2 Months,No,0,108.745718,Low_spent_Medium_value_payments,377.076532,0,2.0632,0.1149,0.1705,1.6248,2.2713 -0x1e63d,CUS_0x14ec,August,27,931-56-3569,Media_Manager,35180.42,2695.701667,5,7,12,2,"Mortgage Loan, and Mortgage Loan",0,0,7.2,2,Good,37.60694321,32.76956004,25 Years and 8 Months,No,44.60716115,,Low_spent_Large_value_payments,285.7629034,0,0.3462,1.0816,-0.0057,-0.4085,-0.5239 -0x1e649,CUS_0xb648,August,53,535-53-6129,Accountant,24041.97,2276.4975,6,7,17,1,Credit-Builder Loan,,18,13.03,5,Standard,655.52,36.12293473,26 Years and 9 Months,Yes,18.43773655,158.9485949,Low_spent_Small_value_payments,340.2634186,0,-0.1421,-1.0629,1.5269,-1.7559,-0.2704 -0x1e655,CUS_0x717d,August,26,913-82-0485,Lawyer,33940,,3,5,3,2,"Student Loan, and Student Loan",1.388568824,2,10.82,0,Good,947.25,34.47268577,27 Years and 4 Months,No,56.50278961,207.2377207,Low_spent_Large_value_payments,294.592823,0,-0.857,0.2745,-1.1758,-0.9516,0.0801 -0x1e661,CUS_0x25e0,August,39,861-61-4315,Architect,11073.6,,3,3,13,4,"Personal Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",12.74246122,12,8.78,2,Standard,1097.02,24.92419652,32 Years and 8 Months,No,2017,10000,Low_spent_Small_value_payments,248.2509508,0,-0.3321,0.6464,-1.085,-0.2846,1.0643 -0x1e66d,CUS_0x3f87,August,80,228-71-4728,Lawyer,9299.105,1068.925417,6,7,35.06745738,7,"Credit-Builder Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Student Loan",35.17339381,17.3155105,19.15,11,Standard,1972.117638,25.3116687,9 Years and 10 Months,Yes,41.63114673,,Low_spent_Small_value_payments,189.3178924,0,-2.0293,-0.7087,-1.2755,-0.0452,0.5051 -0x1e679,CUS_0x79cf,August,29,743-75-2466,_______,27685.04,2595.086667,7,6,7,3,"Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",17.20599219,15,7.46,4,Standard,1055.94,30.40164508,28 Years and 3 Months,No,66.64654085,130.8476368,!@9#%8,342.014489,0,0.1638,0.4578,0.1863,-0.3133,1.053 -0x1e685,CUS_0x6f09,August,39,#F%$D@*&8,Journalist,9026.645,599.2204167,8,8,18.06745738,6,"Personal Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Personal Loan, and Student Loan",26.16687657,17.39274874,8.22,9,Bad,2509.231451,28.06049433,12 Years and 11 Months,NM,31.38186539,52.95933522,Low_spent_Small_value_payments,238.8605531,0,0.6994,0.7711,0.86,-0.3462,-0.0593 -0x1e691,CUS_0x36fd,August,21,090-60-7501,Doctor,20864.93,,5,4,25,7,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",15.42278385,13.38400209,16.04,10,Standard,1614.667024,34.35133628,,NM,66.28873782,56.64547612,High_spent_Small_value_payments,285.5402027,0,0.5697,0.8381,0.0388,-1.7165,-1.1406 -0x1e69d,CUS_0xc12e,August,41,734-01-9522,Engineer,33828.19,2917.015833,3,7,5,0,,26.05556229,17,,3,Standard,1123.09,39.95955991,25 Years and 9 Months,NM,0,273.8160138,Low_spent_Small_value_payments,307.8855695,0,1.242,-0.3789,0.1547,-0.6814,-0.6213 -0x1e6a9,CUS_0x51e9,August,28,581-30-4988,Lawyer,40633.86,3572.155,5,7,13,1,Home Equity Loan,9.837150332,9,7.68,4,Standard,628.11,34.37267646,23 Years and 5 Months,No,19.13269618,237.0932137,Low_spent_Small_value_payments,390.9895901,0,-0.4132,-0.0303,-0.7032,0.1216,0.0865 -0x1e6b5,CUS_0x97f8,August,55,615-81-3842,Lawyer,131254.8,11039.9,3,6,7.288361749,2,"Payday Loan, and Home Equity Loan",4.462346276,8,10.52,4,Good,493.3323226,30.75153027,18 Years and 6 Months,No,216.773941,1611.91932,Low_spent_Medium_value_payments,131.6271462,0,1.1204,-0.6791,-0.5267,0.6646,0.3699 -0x1e6c1,CUS_0x99b8,August,31,549-24-4637,Manager,95854.5,8126.875,3,4,9,1,Debt Consolidation Loan,6.603569508,6,10.19,4,Standard,989.09,42.36796341,33 Years and 5 Months,Yes,41.20437832,110.3664465,High_spent_Medium_value_payments,911.1166752,0,1.0841,-1.3537,1.0088,0.6713,1.2799 -0x1e6cd,CUS_0x9ec2,August,43,168-10-7856,Lawyer,173126.12,,3,147,1.288361749,2,"Home Equity Loan, and Home Equity Loan",,5,9.92,1,Good,269.7219387,39.51723481,29 Years and 11 Months,No,250.6650665,1132.510879,Low_spent_Medium_value_payments,830.4597992,0,0.4703,-0.9002,0.3171,0.4417,-0.8976 -0x1e6d9,CUS_0x7925,August,37,228-11-9667,Teacher,30951.64,2291.303333,9,5,26,100,"Credit-Builder Loan, Student Loan, Home Equity Loan, Mortgage Loan, Personal Loan, Student Loan, and Credit-Builder Loan",32.88868691,21,6.34,10,Bad,4972.87,29.87402678,9 Years and 8 Months,Yes,103.0300412,169.9164363,Low_spent_Small_value_payments,246.1838558,0,0.8118,-0.3864,-0.3454,0.1225,0.3396 -0x1e6e5,CUS_0xadf5,August,37,587-48-4616,Mechanic,29473.28,2163.106667,3,3,10,6,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",3.515325493,6,12.93,11,Standard,1163.33,31.7251713,20 Years and 5 Months,Yes,114.7851908,15.78070727,High_spent_Large_value_payments,325.7447686,0,-0.1495,-0.4789,-0.4386,-1.1983,-0.3521 -0x1e6f1,CUS_0xad13,August,24,563-54-2045,Manager,36755.36,,7,6,19.06745738,6,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",39.47596332,23,12.19,14,Bad,2917.990954,33.3000211,7 Years and 3 Months,Yes,94.38394849,,Low_spent_Large_value_payments,176.2251642,0,0.0197,-0.3816,-0.3171,0.8852,-1.826 -0x1e6fd,CUS_0x566d,August,26,859-86-6339,Manager,121755.92,10157.32667,0,6,4.288361749,0,Credit-Builder Loan,13.7983843,13.20333724,1.87,4,Good,44.78242062,26.64647715,28 Years and 3 Months,No,66.61933591,548.8580702,High_spent_Large_value_payments,1060.192722,0,0.8332,1.5116,1.1063,-0.6272,-1.0855 -0x1e709,CUS_0x6e2b,August,19,100-19-6332,Accountant,10302.59,888.5491667,9,6,35.06745738,9,"Not Specified, Home Equity Loan, Auto Loan, Payday Loan, Student Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",42.88628723,24,26.62,15,Bad,3068.690954,34.21109097,10 Years and 0 Months,Yes,47.10193922,,Low_spent_Large_value_payments,239.5524188,0,0.4437,1.2266,-1.9653,-0.425,1.8391 -0x1e715,CUS_0xa6cb,August,38,052-49-2191,Manager,9958.505,,10,10,28,3,"Auto Loan, Not Specified, and Payday Loan",43.47760357,25.14343957,12.76,14,Bad,2135.474462,23.06368002,8 Years and 11 Months,Yes,15.11845167,,Low_spent_Small_value_payments,296.9252775,0,0.5561,-0.3788,-1.3108,0.7689,0.2364 -0x1e721,CUS_0x2b2b,August,24,216-65-5815,Scientist,16069.92,,8,7,22.06745738,7,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Not Specified, Not Specified, Personal Loan, and Home Equity Loan",,23,28.59,7,Bad,4778.900954,26.66787542,13 Years and 10 Months,NM,72.92485993,114.0949787,Low_spent_Small_value_payments,187.7758734,0,0.9718,-1.8713,0.4977,-0.7976,0.0416 -0x1e72d,CUS_0x3bd6,August,19,820-00-0531,Media_Manager,28151.81,,5,5,6,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",24.26462806,20,12.07,6,Standard,1327.69,24.82538812,7 Years and 8 Months,Yes,64.50670414,281.1067724,Low_spent_Small_value_payments,159.6849401,0,2.0284,-0.5629,-0.7192,-0.8203,-0.5138 -0x1e739,CUS_0x1941,August,41,652-07-7900,Media_Manager,18397.87,,10,9,15,7,"Mortgage Loan, Credit-Builder Loan, Personal Loan, Student Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",,22.54307355,3.84,6,Bad,4552.887706,29.76703352,0 Years and 11 Months,Yes,92.29290341,,Low_spent_Small_value_payments,230.5475287,0,-2.6357,-1.9455,1.4098,0.877,0.2598 -0x1e745,CUS_0x8cfe,August,27,523-90-6933,_______,44934.45,,9,10,20.06745738,8,"Mortgage Loan, Personal Loan, Student Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, and Home Equity Loan",,20,27.58,13,Bad,3285.140954,31.10036201,1 Years and 11 Months,Yes,167.8022404,162.9582498,High_spent_Medium_value_payments,282.3729719,0,0.6935,0.7153,-1.6316,-1.0134,0.6686 -0x1e751,CUS_0xe16,August,18,490-40-5564,Writer,37976.68,2997.723333,9,9,18,7,"Auto Loan, Personal Loan, Student Loan, Personal Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",,24,23.07,12,Bad,4505.1,26.22120685,8 Years and 10 Months,Yes,148.7656992,40.58711373,High_spent_Large_value_payments,350.4195204,0,1.7607,-0.4263,0.354,-1.0223,0.5254 -0x1e75d,CUS_0xa261,August,44,142-05-0523,_______,16431.535,1431.294583,3,3,19.06745738,4,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",22.17685624,15,18.3,6,Standard,1685.050954,31.59240236,23 Years and 0 Months,Yes,49.67926121,,!@9#%8,175.8058556,0,-1.1591,-0.1853,0.8773,0.0393,-0.9878 -0x1e769,CUS_0x9dd5,August,39,802-37-0612,Entrepreneur,61732.23,5031.3525,8,3,5,100,,21.16666773,17,8.9,6,_,1408.55,35.73412071,18 Years and 3 Months,Yes,0,144.3086634,High_spent_Medium_value_payments,608.8265866,0,0.5731,-1.9878,-1.5255,0.0617,1.4949 -0x1e775,CUS_0x3716,August,52,979-93-9286,Musician,78937.1,6605.091667,3,7,7,4,"Payday Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",,8.234450233,6.05,7,Good,593.0737879,36.60583414,32 Years and 2 Months,NM,174.4163438,105.0306674,High_spent_Large_value_payments,621.0621555,0,1.6024,0.2851,1.456,-0.3622,-0.3687 -0x1e781,CUS_0x5f59,August,46,223-44-0038,Writer,90285.33,7342.7775,1,4,10.28836175,2,"Payday Loan, Student Loan, and Payday Loan",3.810247574,6,2.88,4,Good,527.5288419,29.57371529,20 Years and 8 Months,No,121.8490187,1101.659905,Low_spent_Medium_value_payments,299.0495321,0,-0.4441,-0.9553,0.6003,1.3825,1.4836 -0x1e78d,CUS_0x9803,August,41,934-23-1393,Mechanic,18163.26,1787.605,4,8,26,2,"Credit-Builder Loan, and Student Loan",19.74573094,13.46368853,7.52,12,Standard,1798.385982,35.00457365,,Yes,21.97885938,142.1750056,Low_spent_Medium_value_payments,294.606635,0,-0.2189,-0.1019,-0.1989,0.4509,-0.0411 -0x1e799,CUS_0x5342,August,39,407-46-5571,Media_Manager,142395.12,12049.26,7,5,18,3,"Mortgage Loan, Home Equity Loan, and Personal Loan",20.01946175,14.86611732,11.89,6,Standard,548.4854881,28.01563705,,NM,199.9046913,157.2900938,!@9#%8,1087.731215,0,1.0229,1.2277,-2.1921,-0.7148,0.546 -0x1e7a5,CUS_0xc70b,August,38,941-16-2592,Musician,19631.51,1790.959167,6,8,25.06745738,7,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",,21.02765313,6.69,9,_,2090.769122,28.97566397,6 Years and 9 Months,Yes,21660,68.23034057,High_spent_Medium_value_payments,220.7103663,0,-0.6757,-0.4797,0.6876,0.0992,-0.8381 -0x1e7b1,CUS_0x9d4c,August,29,548-47-7441,_______,37551.78,,10,10,22,7,"Auto Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Payday Loan",34.79745262,18,7.32,16,Bad,1577.79,37.2849794,10 Years and 4 Months,Yes,182.2156422,,Low_spent_Medium_value_payments,101.861794,0,0.1701,-0.5469,-0.3101,-1.4654,-1.6511 -0x1e7bd,CUS_0x6df7,August,39,993-37-4187,Entrepreneur,22655.88,1972.99,7,4,8,4,"Student Loan, Mortgage Loan, Not Specified, and Personal Loan",14.22918333,14,19.16,5,_,1268.55,28.50660532,14 Years and 4 Months,Yes,57.0162067,147.1883257,Low_spent_Medium_value_payments,273.0944676,0,0.3719,0.2886,0.5718,0.5981,-0.4387 -0x1e7c9,CUS_0x35f3,August,27,956-45-6497,_______,92939.49,,0,5,5,2,"Student Loan, and Mortgage Loan",5.875575612,7,7.8,4,Good,683.9884471,29.18019206,,No,148.2960781,741.4034437,Low_spent_Small_value_payments,274.4035597,0,0.5578,-0.3997,0.2108,0.3571,0.3546 -0x1e7d5,CUS_0x5269,August,34,643-26-5458,Engineer,18302.33,,8,10,32.06745738,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Payday Loan",39.42189218,20.38812568,4.38,11,Bad,4042.182438,38.94649983,4 Years and 8 Months,Yes,41.79581408,,Low_spent_Small_value_payments,193.8239592,0,0.9241,0.1636,-0.2622,-1.0706,-1.5233 -0x1e7e1,CUS_0xbff1,August,49,809-15-9648,Developer,20817.455,,5,3,10,4,"Not Specified, Home Equity Loan, Mortgage Loan, and Auto Loan",,0,1.52,3,Good,691.9,36.21919039,29 Years and 0 Months,No,44.94859543,,Low_spent_Large_value_payments,258.8188742,0,-1.3328,-0.972,-0.1969,-0.5752,-0.7473 -0x1e7ed,CUS_0x5d5c,August,50,754-88-1234,Engineer,43995.95,3432.329167,4,3,11,0,,,10.44001629,0.83,5,Good,1361.332799,38.91022269,27 Years and 11 Months,No,0,150.4979274,Low_spent_Large_value_payments,462.7349892,0,-0.5092,-1.4751,-0.6971,1.5657,-0.3526 -0x1e7f9,CUS_0xbb1b,August,18,883-52-1446,Doctor,60546.72,4968.56,5,3,11,5,"Student Loan, Mortgage Loan, Payday Loan, Not Specified, and Payday Loan",18.14416368,15,8.37,10,Standard,220.02,32.75475084,7 Years and 8 Months,Yes,240.7641625,181.20575,High_spent_Medium_value_payments,324.8860875,0,-0.445,-0.5278,0.7437,-0.2641,0.1102 -0x1e805,CUS_0xb76e,August,19,064-07-9323,Media_Manager,84479.67,,0,5,7.288361749,4,"Student Loan, Payday Loan, Student Loan, and Student Loan",4.563030141,7,11.46,0,Good,477.02,40.17933268,20 Years and 3 Months,No,149.7350312,513.7838289,High_spent_Large_value_payments,676.415851,0,1.0173,-0.5975,0.2579,-0.9829,-1.996 -0x1e811,CUS_0x1f91,August,45,376-15-3251,Entrepreneur,37986.18,3046.515,7,6,26.06745738,8,"Auto Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Student Loan, and Student Loan",29.38619656,17,25.21,10,Bad,3831.050954,27.03102969,8 Years and 0 Months,Yes,134.5815336,52.92054348,High_spent_Large_value_payments,330.429135,0,-0.5653,-1.3766,0.1664,-0.3874,1.761 -0x1e81d,CUS_0x13d5,August,54,604-47-5660,Musician,124183.56,10156.63,7,5,4.288361749,2,"Payday Loan, and Student Loan",19.59699147,17,11.19,6,Good,219.4775843,36.92214493,,NM,156.3049517,509.9275332,High_spent_Large_value_payments,1021.322429,0,-0.3964,1.6663,-0.9642,-1.7978,0.0266 -0x1e829,CUS_0xa46f,August,41,590-91-6751,Manager,14335.46,,4,3,8,1,Mortgage Loan,,15,8.6,8,Standard,726.59,38.98985464,23 Years and 3 Months,Yes,9.987632453,16.62051347,High_spent_Large_value_payments,322.1540207,0,-0.9955,-0.6267,-0.2844,0.298,0.2986 -0x1e835,CUS_0xad12,August,45,#F%$D@*&8,Scientist,80377.68,6807.14,10,7,28,5,"Student Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",,22.73153866,2.84,12,Bad,1579.667009,28.23965081,7 Years and 11 Months,Yes,186.662212,89.09412158,High_spent_Large_value_payments,644.9576664,0,1.1548,0.6796,0.779,0.023,0.4935 -0x1e841,CUS_0x4f32,August,51,916-10-7140,Musician,32469.29,2738.774167,1102,4,8.288361749,0,,,2,1.39,6,Good,118.1469022,37.91984917,18 Years and 11 Months,NM,0,477.7423421,High_spent_Medium_value_payments,473.9340415,0,0.9754,-0.1626,-0.6535,-0.6513,-0.3962 -0x1e84d,CUS_0x65eb,August,38,095-98-7132,Journalist,28194.8,,2,3,11,100,"Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",13.82713585,12,9.78,2,_,139.84,30.31254489,,No,55.46728813,98.22724803,Low_spent_Small_value_payments,379.0621305,0,-0.2708,-1.0057,0.7426,-0.0966,1.7782 -0x1e859,CUS_0x3377,August,20,532-58-6827,Accountant,34230,2902.5,10,9,29.88954781,8,"Home Equity Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",19.30361928,15,18.49,11,_,3362.1,24.44571635,6 Years and 5 Months,Yes,1474.554309,342.0563752,Low_spent_Small_value_payments,69.3092348,0,1.3506,0.2598,0.1054,-0.0677,1.5717 -0x1e865,CUS_0x7594,August,18,755-53-3944,Engineer,21642.16,,8,7,16,3,"Student Loan, Payday Loan, and Payday Loan",27.63826262,20,11.29,7,Standard,1058.31,32.96516755,13 Years and 11 Months,NM,33.05879163,145.6838183,Low_spent_Small_value_payments,316.1087234,0,1.5268,-1.1472,2.3874,-0.761,-1.4688 -0x1e871,CUS_0x1075,August,39,225-94-8383,Manager,24709.33,,5,5,6,3,"Student Loan, Debt Consolidation Loan, and Personal Loan",20.2866912,13.19109923,7,1497,_,462.8739999,32.76125199,17 Years and 10 Months,No,196.0271616,120.5587399,Low_spent_Small_value_payments,334.6672974,0,-0.2541,0.8683,-0.8436,0.2354,1.771 -0x1e87d,CUS_0x9686,August,35,689-08-8033,_______,38742.26,3029.521667,4,4,10,2,"Personal Loan, and Payday Loan",,1,2.01,2,Good,1313,24.93305301,31 Years and 11 Months,No,40.71626839,58.52176922,High_spent_Large_value_payments,443.7141291,0,0.4919,-1.0292,-1.5274,-1.6068,-0.5291 -0x1e889,CUS_0x9066,August,51,958-05-0966,Musician,21761.49,,5,4,4,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",11.55453952,11,8.77,2,_,830.29,33.0023428,15 Years and 8 Months,No,38.78561893,111.404851,!@9#%8,301.3552801,0,0.9801,1.1224,-0.1983,1.7404,-0.5126 -0x1e895,CUS_0x5d29,August,33,620-31-2223,Writer,75742.32,6361.86,9,6,30,5,"Debt Consolidation Loan, Mortgage Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",,28.33669876,-3.18,12,Bad,1669.330637,36.6000851,11 Years and 6 Months,Yes,279.3879078,65.87682341,High_spent_Large_value_payments,530.9212688,0,0.1561,-0.1462,0.7602,0.0535,-0.9939 -0x1e8a1,CUS_0xaa0b,August,26,160-86-7194,Accountant,72159.9,,4,6,11,100,Auto Loan,,14,9.88,9,_,1443.02,38.89228842,16 Years and 8 Months,NM,33.977334,,High_spent_Medium_value_payments,582.2572808,0,-0.1958,-0.6361,-0.9103,-1.185,1.9534 -0x1e8ad,CUS_0x6b76,August,35,741-40-2032,Musician,8956.355,812.3629167,9,6,31.06745738,9,"Auto Loan, Mortgage Loan, Payday Loan, Student Loan, Credit-Builder Loan, Auto Loan, Personal Loan, Payday Loan, and Home Equity Loan",30.95832649,18,18.14,12,Bad,2874.020127,30.21491191,13 Years and 9 Months,Yes,50.79462591,,Low_spent_Small_value_payments,184.1625503,0,0.5688,-1.7072,0.6303,0.2223,-1.7084 -0x1e8b9,CUS_0x80d,August,36,317-79-2635,Entrepreneur,23957.75,,7,3,17,100,"Auto Loan, Not Specified, Auto Loan, and Not Specified",6.413288562,8,7.97,6,Standard,890.77,37.58019495,22 Years and 9 Months,Yes,56625,96.75558234,High_spent_Small_value_payments,274.3862625,0,-1.0682,0.9331,0.6467,0.3778,-0.201 -0x1e8c5,CUS_0xb6b7,August,23,554-66-6492,Manager,32543.38,2417.948333,8,5,15,2,"Debt Consolidation Loan, and Debt Consolidation Loan",19.18549212,15,7.68,3,Standard,639.97,40.70682315,,Yes,53.37586915,67.34168458,High_spent_Medium_value_payments,371.0772796,0,0.0625,0.76,-0.1651,-1.7116,-0.0592 -0x1e8d1,CUS_0x847e,August,50,506-37-2691,Teacher,12997.515,1211.12625,3,5,15,3,"Home Equity Loan, Not Specified, and Student Loan",,23.66881368,12.57,4,Standard,318.5480049,33.55580104,27 Years and 6 Months,No,18.92140053,130.1769241,Low_spent_Small_value_payments,262.0143003,0,1.1235,1.217,-0.8952,-2.0555,-0.5462 -0x1e8dd,CUS_0x2311,August,24,983-35-3664,Lawyer,23035.15,,6,7,17,5,"Not Specified, Payday Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",,16,19.39,4,Standard,954.44,35.26247576,8 Years and 5 Months,Yes,91.77461107,,Low_spent_Large_value_payments,222.7959146,0,1.2444,1.2988,0.1098,-0.4236,1.8262 -0x1e8e9,CUS_0x6eca,August,44,229-06-8015,Engineer,55604.31,4372.6925,8,5,21,6,"Personal Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Auto Loan",40.13543647,21.44474095,13.17,11,Bad,2029.912242,33.95338487,7 Years and 0 Months,Yes,44160,10000,High_spent_Medium_value_payments,311.1156088,0,0.0536,-0.0102,-0.0347,0.0959,-0.6123 -0x1e8f5,CUS_0x2c51,August,19,880-55-1300,Entrepreneur,81094.96,,9,4,18,0,,,13,4.03,793,Standard,2.13,33.47100818,27 Years and 6 Months,No,0,168.4232291,High_spent_Medium_value_payments,741.0681043,0,-0.2956,-0.2241,1.3214,-0.8039,-1.9502 -0x1e901,CUS_0x1f61,August,27,183-78-9102,Lawyer,69014.48,5467.206667,10,6,25,7,"Mortgage Loan, Student Loan, Student Loan, Home Equity Loan, Personal Loan, Auto Loan, and Mortgage Loan",,1875.157167,14.28,12,Bad,2519.740322,37.57878531,15 Years and 8 Months,Yes,310.1403458,173.8578889,Low_spent_Large_value_payments,332.722432,0,2.4843,1.4576,0.5037,2.02,-0.2206 -0x1e90d,CUS_0x4e71,August,19,147-57-4171,Architect,120539.8,8702.902235,6,4,10,0,,,10,2.95,1,Standard,277.2959793,26.46371919,21 Years and 5 Months,No,1349.081098,1049.702229,Low_spent_Small_value_payments,342.616724,0,0.7015,0.3097,-0.0388,1.8733,-0.3907 -0x1e919,CUS_0x4c4f,August,20,041-06-0696,Teacher,39269.97,3102.778454,1,7,1,4,"Not Specified, Home Equity Loan, Auto Loan, and Credit-Builder Loan",1.285700998,5,6.32,4,Good,785.78,29.09111158,24 Years and 8 Months,NM,449.2693513,111.8765099,Low_spent_Large_value_payments,397.2229351,0,0.697,-0.8154,-0.7608,1.4084,0.0916 -0x1e925,CUS_0x620b,August,35,990-04-4138,Lawyer,9732.57,810.0475,9,5,19,5,"Payday Loan, Payday Loan, Student Loan, Not Specified, and Home Equity Loan",15.54066508,14,16.4,11,Bad,3350.278146,29.46304998,,Yes,33.53646126,41.67528646,Low_spent_Small_value_payments,302.0498293,0,-1.0453,1.3925,-0.6635,1.0338,0.6378 -0x1e931,CUS_0xc1d9,August,42,940-72-2892,Media_Manager,78860.2,6332.683333,8,4,6,0,,20.24384703,,12.19,3,Standard,762.5293349,38.05107251,19 Years and 2 Months,NM,0,274.3637426,High_spent_Medium_value_payments,635.7146589,0,-0.4004,-0.4664,-0.0191,1.5967,0.9479 -0x1e93d,CUS_0xdd8,August,36,798-80-7921,Teacher,84292.18,,3,1,7.288361749,2,"Credit-Builder Loan, and Not Specified",3.442837548,6,0.5,4,Good,397.9647829,31.60850999,33 Years and 8 Months,No,77.70732093,974.6831721,Low_spent_Medium_value_payments,412.3817342,0,0.3899,0.7042,0.6068,1.5972,-2.0961 -0x1e949,CUS_0xba68,August,32,739-32-5333,Developer,65278.92,5402.91,10,7,19,3,"Student Loan, Debt Consolidation Loan, and Mortgage Loan",,28.12727948,2.18,16,Bad,1527.956194,25.36192388,18 Years and 3 Months,NM,145.6007,180.7300873,High_spent_Medium_value_payments,463.9602127,0,0.413,-0.6092,0.6802,-1.3996,0.688 -0x1e955,CUS_0xa9f,August,20,601-74-3826,Teacher,72690.14,5833.479734,4,5,18,4,"Home Equity Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",20.04508063,13,14.91,4,_,34.15337709,30.14321692,,NM,531.2616088,321.4002027,Low_spent_Medium_value_payments,374.7146614,0,0.3564,0.3415,0.366,0.8914,-0.4558 -0x1e961,CUS_0x4815,August,32,981-51-2801,_______,73849.54,6250.128333,2,1,7,2,"Not Specified, and Home Equity Loan",17.14996676,14,5.02,4,Good,1484.51,30.64818381,27 Years and 11 Months,No,120.844173,434.0784501,Low_spent_Medium_value_payments,350.0902103,0,0.2834,0.2898,0.7316,0.5337,-0.0897 -0x1e96d,CUS_0xc301,August,37,169-93-9953,Musician,21212.42,1910.701667,1,4,12,4,"Auto Loan, Personal Loan, Student Loan, and Personal Loan",3.794861944,5,3.08,4,_,413.8196638,37.66429023,23 Years and 2 Months,No,50.30503588,78.74552202,High_spent_Medium_value_payments,322.3370184,0,-0.2922,-2.5652,1.0267,-0.6941,0.9803 -0x1e979,CUS_0x5e16,August,30,913-71-9006,_______,34531.8,,1,5,4,1,Auto Loan,0,1,7.72,4,Good,411.02,29.91203492,33 Years and 2 Months,No,26.87331755,144.9576212,Low_spent_Medium_value_payments,415.9340613,0,-0.6048,-0.3095,0.6639,1.4507,-0.0742 -0x1e985,CUS_0x54a4,August,51,367-69-8099,Mechanic,29750.77,,3,7,15,2,"Payday Loan, and Home Equity Loan",22.39023616,16,5.41,3,_,706.22,36.94979161,23 Years and 11 Months,Yes,43.18330713,39.6415836,High_spent_Medium_value_payments,418.9981926,0,0.8114,0.7742,0.8619,-1.9937,-1.072 -0x1e991,CUS_0x87c1,August,34,099-04-7928,Manager,89992.98,7659.415,8,4,15,0,,,10,7.16,6,Standard,739.86,36.51282622,30 Years and 5 Months,Yes,0,70.72876723,!@9#%8,935.2127328,0,-2.4181,-0.0246,-0.5079,-0.2031,-1.6301 -0x1e99d,CUS_0x9891,August,80,429-24-8661,Developer,62896.78,5323.398333,3,5,5,100,Debt Consolidation Loan,,6,4.41,3,_,1132.768002,33.19864553,29 Years and 9 Months,No,48.44718865,372.9328967,High_spent_Small_value_payments,413.4561157,0,-0.4375,-1.3701,1.3293,0.7131,0.0318 -0x1e9a9,CUS_0x1f04,August,38,387-02-5364,Manager,60770.22,4924.185,8,4,15,4,"Mortgage Loan, Personal Loan, Not Specified, and Not Specified",18.98636498,15,1.36,6,_,176.02,35.03958244,,No,190.2745738,209.9463908,Low_spent_Large_value_payments,362.1975354,0,0.5891,-0.2551,0.9477,1.3365,1.8536 -0x1e9b5,CUS_0x6207,August,50,572-95-8549,Manager,41370.82,3656.568333,4,7,7,2,"Auto Loan, and Student Loan",,9,0.62,3,Good,884.2114568,39.66027651,22 Years and 11 Months,No,37.50718461,106.4139179,Low_spent_Large_value_payments,502.2943268,0,0.7132,0.1841,0.0991,0.1552,0.092 -0x1e9c1,CUS_0x199a,August,31,047-50-4290,Musician,73446.68,6101.556667,3,7,9.288361749,0,Payday Loan,,0,10.01,3,Good,633.806961,28.35099718,30 Years and 5 Months,No,32.02358981,,High_spent_Medium_value_payments,573.4696779,0,0.1147,-0.6808,-0.7558,0.4445,-1.2063 -0x1e9cd,CUS_0x95aa,August,31,999-07-3430,Journalist,19215.26,1353.271667,4,6,7,2,"Home Equity Loan, and Credit-Builder Loan",15.73569388,16.09484575,12.15,8,_,2095.2126,27.13994979,13 Years and 11 Months,NM,20.05386145,21.13364983,High_spent_Large_value_payments,334.1396554,0,-1.3076,0.393,-0.1146,-0.3641,1.183 -0x1e9d9,CUS_0x950,August,45,296-43-7203,Engineer,102261.27,,3,5,12.28836175,0,Debt Consolidation Loan,6.939417661,8,6.77,2,_,1164.89,28.98955962,20 Years and 10 Months,No,79.77979644,,High_spent_Small_value_payments,643.8137504,0,-0.6228,-0.9788,0.6046,1.954,0.6874 -0x1e9e5,CUS_0x1948,August,80,914-66-3208,Accountant,82489.92,,9,9,25,3,"Student Loan, Student Loan, and Student Loan",,15,11.33,11,Standard,1816.7,38.71449356,10 Years and 9 Months,Yes,199.5546872,176.1109687,!@9#%8,579.8503441,0,-1.1278,2.7701,-1.7902,-0.4273,-0.7428 -0x1e9f1,CUS_0x25a5,August,39,139-55-0544,_______,28941.24,2474.77,3,5,11,4,"Credit-Builder Loan, Not Specified, Student Loan, and Mortgage Loan",,9,8.59,6,Good,496.5984743,25.76622706,19 Years and 11 Months,No,74.82176803,86.3638022,High_spent_Medium_value_payments,344.7362525,0,-1.3426,1.388,-1.0247,1.2586,-2.0038 -0x1e9fd,CUS_0x41e3,August,18,705-56-7312,Doctor,62203.08,5375.59,9,5,21,2,"Home Equity Loan, and Student Loan",26.19024798,16,9.57,10,Standard,2375.42,28.12452412,14 Years and 8 Months,Yes,61.16764899,301.4447116,Low_spent_Large_value_payments,444.9466394,0,-0.1767,0.5785,-0.0029,0.4994,0.3454 -0x1ea09,CUS_0x8099,August,51,767-19-9517,Writer,112400.24,,7,7,19,4,"Personal Loan, Mortgage Loan, Personal Loan, and Personal Loan",27.39592577,19,18.63,4,Standard,57.91,32.60940275,32 Years and 8 Months,Yes,203.5175635,361.4644669,!@9#%8,670.7866362,0,0.7847,1.1005,0.1462,-0.2207,0.9396 -0x1ea15,CUS_0x7580,August,25,674-77-2504,Manager,18122.8,1608.233333,4,6,19,6,"Mortgage Loan, Mortgage Loan, Personal Loan, Student Loan, Auto Loan, and Payday Loan",15.80818754,11.7642299,7.77,13,Standard,2493.601397,38.37406585,,Yes,68.73199221,54.70990175,High_spent_Small_value_payments,297.3814394,0,0.4801,0.3367,-0.63,-1.6314,-0.0672 -0x1ea21,CUS_0x5035,August,53,560-30-9828,Entrepreneur,34053.4,,1,2,3749,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",0.284373788,5,4.95,7,_,1160.535526,23.07449445,26 Years and 2 Months,No,55.24566736,92.05648388,High_spent_Small_value_payments,393.2933174,0,-0.2157,0.7281,-1.053,-0.8235,2.3052 -0x1ea2d,CUS_0x999f,August,27,516-43-0947,Teacher,86765.12,7492.426667,3,3,10,2,"Credit-Builder Loan, and Student Loan",,4158.742267,6.84,1,Good,1065.333998,28.22733428,20 Years and 5 Months,No,110.9561396,297.4403355,!@9#%8,590.8461915,0,-0.6108,-1.157,1.2756,-0.4619,0.4483 -0x1ea39,CUS_0x9bf9,August,37,258-44-7121,Architect,78953.92,,10,10,22,5,"Mortgage Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",26.23819632,15,21.14,13,Bad,3832.119245,31.45445042,12 Years and 8 Months,Yes,26761,11606.65772,High_spent_Small_value_payments,503.0120728,0,-1.1495,0.6146,-0.6962,0.7873,1.4579 -0x1ea45,CUS_0x4931,August,46,064-39-8963,Engineer,71734.24,5906.853333,8,10,34,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Not Specified",,28.036662,2.54,9,Bad,2613.749444,37.50837354,5 Years and 10 Months,Yes,219.4354269,125.103439,High_spent_Medium_value_payments,496.1464675,0,0.8671,0.8829,-1.7867,0.194,0.4753 -0x1ea51,CUS_0xc205,August,42,198-86-8137,Mechanic,106550.19,8804.1825,4,7,16,3,"Payday Loan, Auto Loan, and Auto Loan",18.45779373,14,16.74,1,Standard,368.481148,24.90257027,25 Years and 4 Months,NM,185.4912111,726.9303685,Low_spent_Large_value_payments,335.019188,0,0.5195,0.0558,0.7588,-1.3946,0.7864 -0x1ea5d,CUS_0x790d,August,44,431-56-0286,Journalist,92807.49,,1,6,9,2,"Auto Loan, and Payday Loan",12.73843766,10,4.78,4,Good,1226.787393,31.09802827,17 Years and 9 Months,NM,141.3666065,845.6131747,Low_spent_Medium_value_payments,189.8562199,0,-0.6244,1.0305,0.3342,-1.1315,0.5002 -0x1ea69,CUS_0x71bf,August,80,583-65-2893,Scientist,8169.385,,8,5,18.06745738,5,"Mortgage Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",35.24807195,18,6.11,9,_,1583.860954,40.36477206,7 Years and 2 Months,Yes,20.3643344,40.63348663,High_spent_Small_value_payments,261.0600994,0,-0.1165,1.0069,1.5577,0.8347,1.1438 -0x1ea75,CUS_0x866d,August,42,320-20-9388,Manager,144962.44,11940.20333,7,6,8,3,"Not Specified, Payday Loan, and Student Loan",16.49745114,13,8.22,5,_,1264.61,35.72028411,31 Years and 8 Months,Yes,229.0478454,,Low_spent_Large_value_payments,268.794708,0,0.1202,-0.7676,1.4935,-0.6411,0.9015 -0x1ea81,CUS_0xb6d0,August,28,883-18-0954,Mechanic,107633.88,9121.49,7,6,17.28836175,0,Debt Consolidation Loan,21.79003058,19,18.11,1370,_,15.58,34.85261744,,Yes,46.46856767,,Low_spent_Medium_value_payments,228.4656395,0,-0.0252,-1.3065,0.1088,1.6811,0.9691 -0x1ea8d,CUS_0x27ad,August,37,577-43-0809,Engineer,60255.9,5024.325,5,3,16,1,Debt Consolidation Loan,11.82507361,11,4.38,7,Standard,1364.56,38.31360426,20 Years and 6 Months,Yes,27.48482459,158.6354417,High_spent_Medium_value_payments,566.3122337,0,1.2883,0.4939,-0.5627,-0.4575,0.1914 -0x1ea99,CUS_0x7168,August,41,#F%$D@*&8,Writer,32639.9,2457.991667,7,5,15,2,"Not Specified, and Mortgage Loan",,19,11.23,6,Standard,1406.91,36.0640488,15 Years and 2 Months,NM,41.78045006,227.0110038,Low_spent_Small_value_payments,267.0077128,0,0.4702,-0.2609,0.7001,-0.0425,0.023 -0x1eaa5,CUS_0xae4f,August,31,373-92-0837,_______,7369.03,,8,5,24,2,"Payday Loan, and Personal Loan",,,2.72,10,Bad,1858.255706,39.97951666,17 Years and 9 Months,Yes,10.73241122,16.20933242,Low_spent_Small_value_payments,305.1668397,0,0.2861,-0.4791,-0.5568,-1.1013,1.4341 -0x1eab1,CUS_0x900,August,26,173-70-3432,Journalist,16159.51,1363.625833,4,3,6,2,"Credit-Builder Loan, and Auto Loan",25.6472159,18,6.27,4,Standard,233.56,26.66571331,28 Years and 6 Months,Yes,19.37164515,169.9384172,Low_spent_Small_value_payments,237.0525209,0,-0.1902,-1.066,0.8231,0.5229,0.3824 -0x1eabd,CUS_0x7753,August,52,517-82-1083,Writer,93589.48,7895.123333,6,7,16,3,"Credit-Builder Loan, Not Specified, and Not Specified",25.10491568,17,9.92,6,Standard,425.51,35.10214617,31 Years and 0 Months,No,22102,941.0905931,!@9#%8,,0,3.0007,0.8148,-0.4246,1.3064,0.0328 -0x1eac9,CUS_0x9df0,August,42,846-31-4164,Entrepreneur,36115.92,,0,7,9,3,"Student Loan, Not Specified, and Personal Loan",0.664007413,3,4.02,3,Good,822.7562288,36.159135,23 Years and 4 Months,No,78.05225497,204.101069,High_spent_Small_value_payments,277.2719757,0,-0.4545,-0.7608,-0.4146,-1.1024,-0.343 -0x1ead5,CUS_0x7d5e,August,20,063-39-1383,Journalist,26862.64,,6,6,9,6,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",10.51832345,8,8.52,8,Standard,733.5094522,28.48978097,18 Years and 5 Months,Yes,94.46190789,,Low_spent_Large_value_payments,193.7914965,0,0.3876,0.5298,1.3796,0.1208,0.8034 -0x1eae1,CUS_0x1d58,August,20,832-91-7166,Mechanic,10037.5,,10,9,24,9,"Student Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Not Specified, Student Loan, Personal Loan, and Auto Loan",43.05850423,25,15.43,8,Bad,3982.899465,31.37738998,10 Years and 5 Months,NM,66.99295823,,!@9#%8,218.3969315,0,-0.8687,0.2758,0.2127,-0.3809,-0.6527 -0x1eaed,CUS_0x7d4b,August,43,975-45-7784,Doctor,7006.035,,9,5,25.06745738,9,"Personal Loan, Personal Loan, Student Loan, Not Specified, Student Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",34.65971347,24.1403445,19.8,7,Bad,3217.038795,40.87528553,7 Years and 10 Months,Yes,38.17036613,,Low_spent_Small_value_payments,228.7919472,0,0.4626,0.8178,-0.8662,-0.3018,2.2228 -0x1eaf9,CUS_0x4032,August,33,836-72-3680,Doctor,15126.8,,6,10,21.06745738,2,"Payday Loan, and Not Specified",40.46075692,22.89559446,-1.57,7,Bad,1770.758433,27.25907726,18 Years and 6 Months,NM,17.72419068,,Low_spent_Medium_value_payments,256.8552932,0,1.6801,-1.6187,-0.4592,-0.0579,0.8728 -0x1eb05,CUS_0x131f,August,46,006-11-7238,Developer,68105.6,5636.466667,8,8,19,5,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,30.9823803,26.05,13,Bad,3098.292558,24.14590247,,Yes,279.0820691,62.66470697,High_spent_Medium_value_payments,471.8998906,0,-0.8502,0.7563,-0.1351,0.2732,0.9477 -0x1eb11,CUS_0x2671,August,23,354-60-4314,Doctor,90794.28,,5,4,5,3,"Student Loan, Mortgage Loan, and Not Specified",,17,10.34,9,_,622.21,28.28602008,17 Years and 11 Months,Yes,166.918982,53.61777036,High_spent_Large_value_payments,793.1822476,0,0.4899,0.2543,-1.3485,-0.5123,-1.882 -0x1eb1d,CUS_0x5d09,August,35,553-83-1565,_______,33946.77,,4,3,11,1,Auto Loan,16.98714967,12,13.9,3,Standard,869.96,32.54958163,16 Years and 9 Months,No,20.88906886,62.69832059,High_spent_Large_value_payments,428.8023605,0,0.2734,0.5527,-1.9264,-0.0378,0.1598 -0x1eb29,CUS_0x4cd8,August,24,934-58-9958,Manager,16230.82,,6,4,14,2,"Personal Loan, and Mortgage Loan",21.94108301,18,8.81,6,Standard,1806.26,33.31806814,19 Years and 10 Months,Yes,22.22010376,99.3036349,Low_spent_Medium_value_payments,300.8330947,0,0.885,-0.1703,-0.6744,0.7472,0.9208 -0x1eb35,CUS_0xbd72,August,42,#F%$D@*&8,Journalist,14850.16,,7,3,5,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",26.10244586,19,9.51,11,_,485.4452854,26.96180295,6 Years and 6 Months,NM,34.17909352,,Low_spent_Medium_value_payments,265.3960575,0,-1.4074,-0.363,-0.837,-0.6426,-0.1422 -0x1eb41,CUS_0x5d1,August,21,403-10-3773,Writer,81998.84,6900.236667,7,6,28,6,"Payday Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",27.15348883,17,26.08,17,_,3520.62,30.9872572,1 Years and 11 Months,Yes,260.5708369,119.7517324,High_spent_Large_value_payments,549.7010973,0,-0.2831,0.0815,-0.0437,1.5803,-0.3637 -0x1eb4d,CUS_0xa801,August,46,643-91-3716,Manager,83595.72,7214.31,8,5,7,0,,19.63303806,16,-4.32,3,_,282.4278705,33.0890588,19 Years and 5 Months,No,0,336.4436237,High_spent_Small_value_payments,686.1603446,0,-0.2035,0.5549,-1.0789,-0.4444,1.4952 -0x1eb59,CUS_0x39bf,August,34,945-83-2116,Scientist,17823.25,1638.270833,8,10,31.95700519,6,"Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, Home Equity Loan, and Home Equity Loan",25.75956349,17.50935177,26.45,11,Bad,3728.754263,39.08069215,2 Years and 9 Months,Yes,1403.877715,51.66608957,Low_spent_Large_value_payments,257.2329098,0,0.4468,-0.4623,-0.4754,0.3305,0.0555 -0x1eb65,CUS_0x25cc,August,51,421-97-8890,Musician,36016.78,,1,4,2.288361749,0,Student Loan,0.822379031,3,10.85,0,Good,183.5375912,36.6017463,29 Years and 8 Months,No,18.47810543,11994.78584,Low_spent_Large_value_payments,356.1894359,0,-1.5438,-0.8573,-0.1081,0.501,0.3954 -0x1eb71,CUS_0x1057,August,46,741-07-3912,Writer,86617.16,7250.096667,8,4,6,3,"Auto Loan, Student Loan, and Payday Loan",27.34888071,21,7.26,4,Standard,640.626096,35.55554011,24 Years and 11 Months,No,141.3820546,1147.278604,!@9#%8,,0,1.344,-1.5814,-1.0534,-1.1643,-1.1916 -0x1eb7d,CUS_0xbe00,August,30,806-23-1708,Engineer,35320.99,2867.415833,0,2,2,0,,6.916997172,8,12.88,3,Good,812.1726147,34.86289292,26 Years and 6 Months,No,0,58.74384614,High_spent_Medium_value_payments,485.4583717,0,0.8693,-0.2584,0.8837,-0.1567,0.1721 -0x1eb89,CUS_0x542c,August,40,717-41-5370,Manager,106789.36,8673.113333,3,3,20,100,"Home Equity Loan, Payday Loan, and Debt Consolidation Loan",27.23156606,19,11.32,2,Standard,155.69,29.79105484,,No,137.8283483,134.3106352,High_spent_Large_value_payments,835.1723499,0,-1.4567,-0.242,0.0272,-0.6662,2.6923 -0x1eb95,CUS_0xa0ff,August,21,783-46-9722,Engineer,60014.04,5107.17,9,10,18,6,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, Payday Loan, and Mortgage Loan",,23.82655819,,9,Bad,5435.217117,27.79946337,13 Years and 2 Months,Yes,222.0394152,,High_spent_Medium_value_payments,484.1114258,0,-0.9522,-0.7544,-0.6966,-0.2335,0.0687 -0x1eba1,CUS_0x92a3,August,42,754-00-4261,Engineer,33816.41,2772.034167,4,4,7.288361749,0,,0.838677275,4,10.36,7,Good,285.1370637,31.82916971,18 Years and 4 Months,No,0,473.087576,High_spent_Medium_value_payments,480.6699154,0,-0.7041,-1.7771,-0.8612,0.2242,-1.7552 -0x1ebad,CUS_0x6578,August,22,944-84-0145,Mechanic,48776.85,4077.7375,10,5,31.06745738,4,"Mortgage Loan, Not Specified, Personal Loan, and Auto Loan",33.06451604,,0.56,13,Bad,3060.351657,40.157642,7 Years and 0 Months,Yes,135.329769,,Low_spent_Small_value_payments,0,0,-1.0571,0.2878,-0.3899,0.4273,-0.5902 -0x1ebb9,CUS_0x2ba9,August,31,147-93-7804,Journalist,35746.07,,2,5,10,4,"Student Loan, Payday Loan, Payday Loan, and Student Loan",20.00636482,12,3.04,8,Good,553.5,32.92724054,17 Years and 11 Months,No,59.88078007,199.4425157,High_spent_Small_value_payments,298.6606209,0,0.2835,0.3873,-1.4084,1.4193,-1.4024 -0x1ebc5,CUS_0x9adc,August,40,965-03-7962,Teacher,56404.84,4134.714745,7,9,27,5,"Mortgage Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",25.76887313,19,17.89,12,Bad,2642.457992,39.71950496,5 Years and 11 Months,Yes,656.4909455,,Low_spent_Large_value_payments,416.4084807,0,0.0335,1.4152,-1.5688,0.6495,1.0767 -0x1ebd1,CUS_0xc331,August,45,456-51-6856,Doctor,16372.05,,10,7,23.06745738,5,"Payday Loan, Not Specified, Student Loan, Mortgage Loan, and Payday Loan",37.38142728,19.79755168,28.5,10,Bad,4306.347986,25.80994698,7 Years and 4 Months,Yes,65.64577381,,Low_spent_Medium_value_payments,183.8253721,0,0.2376,-0.1282,0.8963,-0.3594,-0.2814 -0x1ebdd,CUS_0x8716,August,22,185-99-8068,Scientist,14351.21,,8,7,18,6,"Mortgage Loan, Personal Loan, Not Specified, Student Loan, Personal Loan, and Student Loan",21.89385324,16.79943423,21.91,9,Bad,5440.912028,32.60477041,8 Years and 8 Months,Yes,61.09871814,116.8376579,Low_spent_Small_value_payments,239.5570406,0,0.05,-0.3599,1.3136,0.4578,0.4047 -0x1ebe9,CUS_0x6be3,August,47,037-33-2929,Doctor,147848.64,12274.72,0,4,2.288361749,2,"Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",,2,2.16,1,_,731.37,35.97659359,29 Years and 11 Months,No,363.866397,1325.110325,Low_spent_Medium_value_payments,238.4327385,0,1.7039,0.7178,-0.4892,-1.1174,0.6125 -0x1ebf5,CUS_0x8bf3,August,40,#F%$D@*&8,Engineer,18836.23,1280.685833,6,8,17.95700519,6,"Personal Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",29.87015575,19,14.26,14,Bad,1533.970954,26.74269647,8 Years and 3 Months,Yes,1373.041281,106.8298682,Low_spent_Small_value_payments,217.1470649,0,0.1496,0.6774,-0.8415,0.3527,-0.4235 -0x1ec01,CUS_0x9368,August,40,740-20-9338,_______,9024.455,713.0379167,8,7,15,2,"Payday Loan, and Credit-Builder Loan",,14,,4,_,1491.08,34.27517399,6 Years and 8 Months,Yes,14.35751826,87.86573107,Low_spent_Small_value_payments,259.0805423,0,0.7332,2.0708,0.7719,1.2822,0.7562 -0x1ec0d,CUS_0x9737,August,54,103-47-1109,Scientist,22453.67,1637.139167,8,6,19,2,"Not Specified, and Auto Loan",14.54627505,9,6.39,0,_,819.81,25.35927375,24 Years and 2 Months,No,35.20802722,57.65474451,High_spent_Medium_value_payments,320.8511449,0,0.3234,0.1875,0.2179,0.1825,-0.26 -0x1ec19,CUS_0x149e,August,35,760-87-5470,Media_Manager,78156.39,6526.0325,5,259,7.288361749,4,"Home Equity Loan, Student Loan, Credit-Builder Loan, and Personal Loan",21.72540539,18,6.34,4,_,884.79,28.8867901,24 Years and 6 Months,No,154.7981384,,Low_spent_Medium_value_payments,126.6947166,0,-0.8051,-1.6557,-0.176,1.5779,-0.2052 -0x1ec25,CUS_0x8a8b,August,24,475-74-0431,Media_Manager,40246.16,3340.846667,4,10,18.88954781,7,"Payday Loan, Student Loan, Auto Loan, Payday Loan, Auto Loan, Student Loan, and Payday Loan",13.13048854,8,14.17,16,Standard,1896.09,32.61637109,,NM,1486.00416,37.75872704,!@9#%8,355.9916979,0,-0.2014,0.2732,1.0228,1.4744,-2.0811 -0x1ec31,CUS_0x2a5c,August,22,589-67-9900,Doctor,160838.32,13290.19333,5,4,11.28836175,0,Debt Consolidation Loan,3.870456915,6,8.37,7,Good,140.6321943,34.93885062,30 Years and 10 Months,No,98.02164488,2134.47905,Low_spent_Small_value_payments,,0,1.0516,-1.4364,-0.2254,0.0688,1.9736 -0x1ec3d,CUS_0x9ff3,August,44,666-38-6886,Teacher,40403.35,,1,5,3,2,"Auto Loan, and Not Specified",16.52598284,13.75765827,0.94,3,_,340.136167,25.87952731,16 Years and 2 Months,No,55.22566879,,Low_spent_Small_value_payments,126.4017158,0,-0.4531,-1.252,-0.2522,-0.2666,-0.2802 -0x1ec49,CUS_0x2bcb,August,34,626-62-1606,Journalist,38542.22,3351.851667,3,4,3043,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",18.77149295,14,7.94,7,Standard,674.21,27.2377244,31 Years and 10 Months,Yes,85.62579658,64.33253688,High_spent_Large_value_payments,425.2268332,0,-1.2535,1.7788,-0.4736,-0.0683,-0.1227 -0x1ec55,CUS_0x79ee,August,50,313-89-3788,Manager,57462.92,4531.576667,3,1,9,1,Home Equity Loan,10.29695937,12,2.08,0,Good,854.2528097,40.41708274,18 Years and 10 Months,No,40.83772104,118.5133107,High_spent_Medium_value_payments,558.8112055,0,0.7171,-2.5231,-0.6833,-1.2899,0.8663 -0x1ec61,CUS_0xef7,August,36,983-42-6958,Mechanic,22539.91,2100.325833,3,5,17,1,Student Loan,20.31921462,15,6.46,6,Standard,1041.79,25.79999304,20 Years and 0 Months,No,17.42634983,37.65364664,High_spent_Medium_value_payments,404.9525869,0,-0.6088,-0.3134,0.0491,-0.3253,0.0886 -0x1ec6d,CUS_0xc599,August,20,407-33-2562,Media_Manager,14639.215,1209.934583,4,7,18,4,"Mortgage Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",21.04263835,16,9.32,7,_,879.98,33.67101128,13 Years and 8 Months,Yes,40.1886273,,Low_spent_Medium_value_payments,242.4342121,0,0.0364,-1.0403,-0.8834,1.5884,-0.9484 -0x1ec79,CUS_0x40dd,August,20,457-78-8903,Entrepreneur,42236.79,,10,5,24,7,"Not Specified, Personal Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",39.96938543,28.19894116,4.72,7,Bad,2357.330609,27.92668543,8 Years and 9 Months,Yes,211.6264561,,High_spent_Medium_value_payments,337.13501,0,-0.3491,-0.0147,0.5912,0.1831,-0.2895 -0x1ec85,CUS_0xc21e,August,50,573-81-5193,Entrepreneur,29470.76,,0,4,9,4,"Payday Loan, Personal Loan, Auto Loan, and Not Specified",8.885277682,8,5.79,,Good,557.5,36.81668745,22 Years and 8 Months,No,79.50204791,300.492978,Low_spent_Small_value_payments,135.1946408,0,0.388,0.801,-0.6235,-0.4973,-1.2236 -0x1ec91,CUS_0xa1d9,August,27,332-01-5454,Manager,15441.2,,9,9,29.06745738,2,"Auto Loan, and Home Equity Loan",,21.91140592,1.11,6,_,1947.909194,38.45110056,19 Years and 0 Months,NM,149.348394,112.2125432,Low_spent_Small_value_payments,254.626353,0,0.9907,0.9959,-1.009,-0.5704,2.5333 -0x1ec9d,CUS_0xac1a,August,39,922-25-7734,Mechanic,10389.19,833.7658333,3,4,18,5,"Home Equity Loan, Home Equity Loan, Student Loan, Payday Loan, and Auto Loan",19.65379205,13,17.71,9,Standard,356.69,23.50882198,12 Years and 2 Months,NM,37.47834423,22.31220919,Low_spent_Medium_value_payments,303.5860299,0,0.3591,0.2127,1.4962,-0.6553,1.2695 -0x1eca9,CUS_0x7baa,August,56,439-74-3252,Mechanic,21028.91,1823.409167,5,6,8,3,"Mortgage Loan, Auto Loan, and Debt Consolidation Loan",13.20656803,11,14.3,3,Standard,658.48,30.8777013,24 Years and 8 Months,No,27.30214569,183.2400972,Low_spent_Small_value_payments,261.7986738,0,-1.1357,0.2947,-0.3365,0.6238,-1.045 -0x1ecb5,CUS_0x38e1,August,29,000-95-4380,Manager,19526.92,,2,6,11.28836175,2,"Home Equity Loan, and Personal Loan",,2,10.97,7,Good,41.85,33.76468508,27 Years and 9 Months,No,23.58359186,,Low_spent_Small_value_payments,250.4398943,0,-0.4274,0.2772,-1.4022,-2.8902,-0.195 -0x1ecc1,CUS_0x5217,August,80,100-50-1817,Lawyer,14337.64,1405.803333,0,4,1,2,"Personal Loan, and Not Specified",,,7.64,4,Good,187.9144756,37.72115136,17 Years and 2 Months,No,19.50373189,114.6354798,Low_spent_Large_value_payments,288.3625348,0,0.7966,0.6726,-1.0748,-1.1629,0.6587 -0x1eccd,CUS_0x447f,August,21,425-00-6072,Journalist,91545.15,7344.7625,5,4,5,0,,31.17194965,21.73791424,,1,Good,1526.87136,39.41591771,28 Years and 3 Months,NM,0,,Low_spent_Medium_value_payments,805.996527,0,1.7076,2.8974,2.6883,0.1255,-1.2972 -0x1ecd9,CUS_0x386b,August,36,008-61-0141,Developer,14914.01,,10,9,18.95700519,8,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Payday Loan, and Personal Loan",21.40679407,,7.75,13,_,1580.630954,23.13989569,12 Years and 4 Months,NM,1403.478635,,Low_spent_Small_value_payments,137.2428753,0,0.5099,-1.5838,-1.1826,0.7392,1.3788 -0x1ece5,CUS_0x8c11,August,38,732-73-6522,Lawyer,120017.12,9763.426667,3,4,9.288361749,0,Student Loan,20.2197709,17,6.94,0,Standard,845.5529748,24.84775199,27 Years and 8 Months,Yes,67.08162193,919.0212918,Low_spent_Small_value_payments,750.4130729,0,-0.9819,0.2603,-1.8526,1.0387,-0.8652 -0x1ecf1,CUS_0xac4f,August,31,797-10-7050,Developer,19720.36,,6,5,21,9,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Student Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",33.53143443,21,4.93,14,Bad,2326.72,26.44664293,19 Years and 11 Months,Yes,114.7402335,,Low_spent_Large_value_payments,220.5351683,0,0.4561,0.036,0.7761,-0.4186,0.6111 -0x1ecfd,CUS_0x59eb,August,38,213-03-0117,Manager,69788.08,5969.673333,4,8,22,5,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",25.54419091,17.35420009,8.77,11,Standard,2256.051435,28.97947748,16 Years and 11 Months,Yes,211.7543727,479.475147,Low_spent_Small_value_payments,195.7378137,0,2.0986,1.2915,0.3964,0.4448,-0.0388 -0x1ed09,CUS_0x61ab,August,33,670-22-4819,Doctor,19124.4,,5,8,7,1,Home Equity Loan,10.55252338,10,2.99,7,Standard,984.4057078,26.2730562,32 Years and 2 Months,No,15.52258728,58.13825882,High_spent_Medium_value_payments,368.4248494,0,1.0804,-1.1198,-2.8122,0.5673,0.4556 -0x1ed15,CUS_0x77a2,August,24,909-33-5727,Teacher,25173.4,,6,6,12,1,Not Specified,10.52751784,11,0.56,4,Standard,1154.86,35.1520158,28 Years and 9 Months,No,12.70549281,41.56655449,High_spent_Medium_value_payments,378.706286,0,-0.7721,-0.1718,-0.2133,0.3802,0.3146 -0x1ed21,CUS_0x88cb,August,19,800-06-7430,_______,58178.92,4670.243333,4,9,17,3,"Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",26.908007,18.43458947,18.83,16,Standard,1965.89627,40.29486729,8 Years and 10 Months,NM,80.9660649,186.0440209,High_spent_Medium_value_payments,450.0142475,0,-0.2321,-1.1659,0.9529,-0.8439,1.2057 -0x1ed2d,CUS_0x9b58,August,24,485-67-3010,Doctor,9831.865,,8,10,22.88954781,7,"Credit-Builder Loan, Auto Loan, Personal Loan, Student Loan, Not Specified, Student Loan, and Home Equity Loan",,23.0323826,10.72,9,Bad,2011.903234,33.80299558,20 Years and 4 Months,Yes,1378.901298,56.83920146,Low_spent_Small_value_payments,215.6616273,0,-0.4379,0.24,-0.3054,0.9303,-1.1688 -0x1ed39,CUS_0xa479,August,42,152-83-6973,Manager,39191.16,3238.93,8,3,8,4,"Debt Consolidation Loan, Mortgage Loan, Not Specified, and Home Equity Loan",15.47004563,11,2.09,0,_,1146.38,28.68661676,20 Years and 6 Months,No,119.9264904,404.9541388,Low_spent_Small_value_payments,89.01237085,0,-0.711,0.3491,-0.6058,-1.7771,1.4168 -0x1ed45,CUS_0x4c75,August,21,105-62-9020,Developer,81822.8,6808.566667,7,10,26,8,"Payday Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, Mortgage Loan, Student Loan, Personal Loan, and Payday Loan",,15,19.05,15,Bad,4609.45,34.10336688,1 Years and 5 Months,Yes,338.851334,278.5534142,High_spent_Medium_value_payments,313.4519185,0,-0.4275,-0.7379,1.1875,0.7593,-0.0392 -0x1ed51,CUS_0x7900,August,39,156-58-9665,_______,38873.38,2895.235338,9,9,21,5,"Home Equity Loan, Student Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,21.09774758,24.97,12,Bad,4027.810644,35.91751306,12 Years and 10 Months,Yes,371.6544308,57.26013396,High_spent_Medium_value_payments,362.743264,0,-0.9686,0.1238,-1.499,0.1164,1.5204 -0x1ed5d,CUS_0x535b,August,39,679-70-4322,Developer,167922.52,14257.54333,4,3,3.288361749,0,,4.286925435,6,7.06,4,Good,366.9186397,30.41546428,26 Years and 4 Months,NM,0,863.8681635,High_spent_Medium_value_payments,1284.034975,0,0.913,0.115,0.1532,1.4732,-0.5439 -0x1ed69,CUS_0xaf88,August,52,291-33-2707,_______,43008.33,,5,4,4,3,"Personal Loan, Home Equity Loan, and Personal Loan",,3.451081815,6.9,2,Good,105.2083838,27.94344997,23 Years and 5 Months,NM,14852,53.49725098,High_spent_Large_value_payments,447.5839985,0,-0.5451,1.0498,0.175,-0.5184,0.0083 -0x1ed75,CUS_0x4a93,August,36,#F%$D@*&8,Musician,16645.16,,8,5,9,799,Credit-Builder Loan,27.81329426,20,5.83,6,Standard,896.57,40.76865091,27 Years and 4 Months,Yes,134.0588598,177.8981273,Low_spent_Small_value_payments,263.409347,0,-1.0818,0.7284,0.9468,-0.623,-2.2237 -0x1ed81,CUS_0x79a9,August,39,364-54-1405,_______,126308.43,,2,4,4,2,"Home Equity Loan, and Mortgage Loan",27.90204741,18.22038927,2.37,2,_,1443.532822,37.94283878,28 Years and 3 Months,No,129.4052435,412.4832501,High_spent_Medium_value_payments,760.4817563,0,0.3113,0.146,0.3123,-0.8479,-0.5613 -0x1ed8d,CUS_0xb959,August,57,228-70-9629,Journalist,30958.06,2758.838333,4,5,2,3,"Not Specified, Auto Loan, and Auto Loan",4.368037962,6,3.27,1,Good,595.3006679,32.98056648,29 Years and 9 Months,No,53.96351381,36.22820522,High_spent_Medium_value_payments,439.3954561,0,2.0833,-1.212,-0.5107,0.8001,-0.2634 -0x1ed99,CUS_0x71fa,August,26,640-88-5940,Developer,66755.64,,6,9,21,2,"Auto Loan, and Mortgage Loan",36.48999335,20.36416835,7.7,10,Bad,1537.933359,28.79076854,11 Years and 4 Months,Yes,73.23991176,420.6105541,Low_spent_Medium_value_payments,341.8465341,0,1.4138,-0.2509,-0.258,1.3582,1.0739 -0x1eda5,CUS_0x9435,August,37,500-06-3724,Accountant,96027.16,7723.263333,7,3,15,0,,25.52426971,19,3.42,3,_,726.75,38.95666326,17 Years and 2 Months,NM,0,67.14260729,High_spent_Large_value_payments,945.183726,0,-0.763,-0.9753,-1.6544,0.3714,0.8917 -0x1edb1,CUS_0xc5f6,August,34,899-93-7581,Developer,125285.32,10508.44333,8,3,19,2,"Payday Loan, and Credit-Builder Loan",14.88840026,12,2.85,4,Standard,1209.643886,28.28681362,11 Years and 6 Months,Yes,135.3339925,616.6607696,Low_spent_Small_value_payments,658.8178233,0,-1.5372,1.36,-0.6069,1.0434,-0.659 -0x1edbd,CUS_0x5597,August,48,418-38-2559,Musician,17950.55,1646.879167,7,3,10,31,"Student Loan, Not Specified, and Debt Consolidation Loan",19.77658768,15,3.23,3,Standard,453.73,38.43500756,16 Years and 4 Months,No,27.41569307,,Low_spent_Small_value_payments,273.3540219,0,-1.1631,1.7937,-0.032,0.7426,-0.4161 -0x1edc9,CUS_0xa729,August,34,904-50-0399,Journalist,31302.34,,6,9,33,5,"Personal Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Mortgage Loan",,31.31729288,,11,Bad,1385.272299,23.36173941,7 Years and 0 Months,Yes,77.32601844,171.3840381,High_spent_Small_value_payments,296.8427768,0,-0.5571,-0.107,-0.2677,-0.4248,0.0983 -0x1edd5,CUS_0x8af4,August,26,467-59-3037,_______,37754.78,,2,6,8,1,Home Equity Loan,10.17241521,7.304541348,4.13,3,Good,1259.202589,30.68741813,29 Years and 2 Months,No,26.56233121,149.2575313,Low_spent_Large_value_payments,433.7033042,0,-1.6381,-2.1067,0.7946,0.8729,0.2329 -0x1ede1,CUS_0x3a38,August,40,660-83-7858,Doctor,28698.06,2326.505,8,5,21.06745738,7,"Home Equity Loan, Personal Loan, Auto Loan, Mortgage Loan, Auto Loan, Personal Loan, and Not Specified",,13.09339889,15.43,6,Standard,1707.393221,39.30915241,6 Years and 6 Months,Yes,96.95794012,26.27964658,High_spent_Large_value_payments,322.6926254,0,0.7247,1.25,-1.177,-1.4068,1.0575 -0x1eded,CUS_0x7cf,August,34,738-68-4188,_______,69956.92,5530.743333,6,6,23,5,"Payday Loan, Payday Loan, Auto Loan, Personal Loan, and Mortgage Loan",,28.927143,16.89,11,Bad,2677.680902,37.71345363,17 Years and 2 Months,Yes,152.8880163,340.2569685,Low_spent_Large_value_payments,329.9293486,0,0.5961,0.6488,1.0204,1.3124,0.7092 -0x1edf9,CUS_0x298f,August,53,069-50-9238,Accountant,30365.13,,4,1,7,100,"Payday Loan, Not Specified, and Home Equity Loan",,3,7.68,4,Good,1066.716405,21.76146039,28 Years and 4 Months,No,44.32074352,,Low_spent_Medium_value_payments,256.2954707,0,0.0468,0.7803,-0.4702,1.2241,-1.8477 -0x1ee05,CUS_0x85a0,August,39,980-03-3367,Entrepreneur,86571.09,7370.2575,0,6,2,0,,,4,4.56,0,_,1178.517642,26.64085726,19 Years and 5 Months,No,0,352.2972891,High_spent_Small_value_payments,688.5194043,0,0.7677,0.3844,-0.4489,1.6957,-0.0443 -0x1ee11,CUS_0x5554,August,52,225-64-6391,Lawyer,19261.21,1883.100833,6,6,11,4,"Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",,15.99898242,12.99,1,Standard,204.0351372,35.77196828,18 Years and 2 Months,Yes,56.88836734,,Low_spent_Small_value_payments,186.1489342,0,-0.9515,0.7473,-1.3197,0.8766,-0.3846 -0x1ee1d,CUS_0x3a99,August,47,767-68-2793,_______,83192.64,7106.72,3,6,7,2,"Payday Loan, and Student Loan",23.26580056,17,0.61,0,Good,256.8004859,38.15358313,23 Years and 0 Months,No,80.37773215,399.6115755,Low_spent_Large_value_payments,560.8685469,0,1.0464,0.6855,-1.0691,1.7274,-0.1431 -0x1ee29,CUS_0x8f02,August,50,465-41-7749,Lawyer,40330.08,3271.84,5,6,3,4,"Personal Loan, Home Equity Loan, Not Specified, and Mortgage Loan",3.993520589,5,7.79,5,Good,613.91,36.26904492,20 Years and 11 Months,No,108.8026255,,High_spent_Medium_value_payments,417.110406,0,0.4641,1.1729,-2.0931,0.1576,-1.7099 -0x1ee35,CUS_0x5cc0,August,20,686-28-4038,Architect,34343.96,2897.996667,10,8,29.06745738,3,"Payday Loan, Debt Consolidation Loan, and Auto Loan",,19.38929871,19.09,12,Bad,2136.201171,41.65720789,11 Years and 9 Months,Yes,66.35346014,47.1650208,High_spent_Large_value_payments,389.5608978,0,0.3206,0.3147,-1.8983,-0.4602,-0.0369 -0x1ee41,CUS_0x869,August,37,477-10-7170,Architect,121256.4,9022.691765,4,4,19,2,"Personal Loan, and Debt Consolidation Loan",24.71767658,19,4.92,7,Standard,926.1599579,23.27401666,31 Years and 3 Months,NM,1060.774723,756.6935883,Low_spent_Large_value_payments,369.8831759,0,-0.9291,-0.9474,0.914,-0.2133,1.6573 -0x1ee4d,CUS_0xbd54,August,18,295-50-7660,_______,59348.64,4685.72,6,6,16,4,"Mortgage Loan, Mortgage Loan, Student Loan, and Not Specified",,21,8.17,14,_,2051.19,38.99262464,,Yes,152.5309661,186.398752,High_spent_Medium_value_payments,379.642282,0,1.7939,0.3599,-0.1357,0.4624,-0.1176 -0x1ee59,CUS_0x305e,August,19,224-36-7347,Accountant,34849.62,,3,5,2,2,"Mortgage Loan, and Credit-Builder Loan",1.890897713,4,10.76,8,Good,1181,25.97394884,28 Years and 2 Months,No,53.74358656,59.64475164,High_spent_Large_value_payments,446.8251618,0,-0.8947,-2.0454,1.0271,0.5426,0.8444 -0x1ee65,CUS_0x6e06,August,39,155-63-7897,Entrepreneur,20139.19,,10,10,19,6,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",31.17282837,22,18.19,11,Bad,2209.17,35.90477934,17 Years and 10 Months,Yes,51.16717022,,High_spent_Large_value_payments,320.7877134,0,2.2373,1.1862,1.0985,0.6528,-0.4709 -0x1ee71,CUS_0xc718,August,39,870-81-1433,Engineer,18105.32,,5,6,7,1,Personal Loan,6.851880118,7,5.69,2,Good,211.46,29.15400062,32 Years and 0 Months,No,13.31133533,171.9503706,Low_spent_Small_value_payments,274.0159607,0,0.3671,1.5259,-0.1595,-0.3538,-0.266 -0x1ee7d,CUS_0xa8e1,August,21,730-04-4483,Engineer,60381.32,5154.776667,4,1164,15,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Payday Loan",,13,10.72,4,Standard,1311.32,40.23504001,,Yes,170.2637835,200.2163847,High_spent_Medium_value_payments,394.9974985,0,-0.1252,1.1372,0.9419,1.721,-1.5385 -0x1ee89,CUS_0xecc,August,25,#F%$D@*&8,Lawyer,9413.305,1072.442083,8,5,20.06745738,5,"Credit-Builder Loan, Personal Loan, Payday Loan, Credit-Builder Loan, and Not Specified",,,13.75,11,Standard,1970.030954,39.0614176,,Yes,32.74209641,18.58662178,!@9#%8,269.1952022,0,0.368,1.5196,-1.9012,0.9482,-1.1301 -0x1ee95,CUS_0x57ef,August,36,205-36-8507,Journalist,172441.08,,2,1,10.28836175,4,"Not Specified, Student Loan, Not Specified, and Auto Loan",,12,2.28,6,Good,264.899817,28.74307548,21 Years and 3 Months,No,490.9929608,1384.884673,High_spent_Small_value_payments,378.4552395,0,-0.6425,-2.1008,-1.1398,-1.4566,-1.8739 -0x1eea1,CUS_0xc636,August,44,071-12-0829,Scientist,33199.13,,1,4,3,2,"Personal Loan, and Student Loan",,10,4.88,0,Good,1103.665032,31.17802379,22 Years and 4 Months,No,35.39775361,75.60535911,High_spent_Large_value_payments,406.964146,0,1.512,-2.2176,-0.7599,-1.2326,-1.1268 -0x1eead,CUS_0x9e26,August,24,500-94-0282,Teacher,9173.61,,8,6,23.06745738,7,"Payday Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Not Specified, and Student Loan",,11.33748332,19.11,7,Standard,2011.896328,34.67666731,5 Years and 11 Months,NM,47.16196424,65.41806485,Low_spent_Large_value_payments,229.346433,0,-1.597,-0.4205,1.5913,1.1238,0.8177 -0x1eeb9,CUS_0xc0d7,August,80,095-59-3660,Mechanic,44983.95,3958.6625,10,9,26.88954781,7,"Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, Auto Loan, and Payday Loan",22.76336455,16.84268047,2.22,11,Bad,3334.142279,26.85500417,10 Years and 6 Months,Yes,1478.226873,,Low_spent_Medium_value_payments,105.7638361,0,0.0347,0.5524,-1.1155,0.1282,-0.017 -0x1eec5,CUS_0x8380,August,20,565-13-2667,Lawyer,17271.6,1496.3,9,6,24.06745738,6,"Student Loan, Credit-Builder Loan, Student Loan, Not Specified, Credit-Builder Loan, and Auto Loan",57.63368913,32.1506735,9.2,13,Bad,3095.89536,35.38287223,16 Years and 0 Months,Yes,56.6832109,92.69259769,Low_spent_Medium_value_payments,253.5339035,0,0.4724,-0.3486,-1.5268,-0.9845,1.4915 -0x1eed1,CUS_0x6df3,August,29,466-03-4446,Engineer,71290.06,6199.838333,8,3,17,0,,17.02209113,15,7.26,8,Standard,1314.99,36.08104036,18 Years and 5 Months,Yes,0,78.04659895,High_spent_Medium_value_payments,791.9372344,0,0.0789,0.9482,0.7064,-1.4201,-0.2779 -0x1eedd,CUS_0x7694,August,38,567-09-4004,Doctor,9299.05,,9,6,21.06745738,2,"Credit-Builder Loan, and Home Equity Loan",,28.01123663,7.81,15,_,2706.503298,34.19570339,11 Years and 8 Months,Yes,14.65126123,,Low_spent_Medium_value_payments,247.7649405,0,-0.4024,-0.6281,0.8825,-0.9502,-0.901 -0x1eee9,CUS_0x8b4f,August,36,948-26-2105,Scientist,117116.32,8748.792402,1,2,11.28836175,2,"Mortgage Loan, Student Loan, and Student Loan",6.067110151,9,4.63,5,Good,860.5971638,26.29178411,20 Years and 2 Months,NM,1299.816938,,Low_spent_Large_value_payments,254.1371739,0,-0.3018,1.4216,-2.2671,1.3636,-0.5575 -0x1eef5,CUS_0x64e5,August,34,692-52-3599,Teacher,21803.94,1782.995,5,6,20,4,"Student Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",24.06246945,15,4.21,3,Standard,29.16,33.79975619,31 Years and 2 Months,No,41.61953909,10000,High_spent_Small_value_payments,296.9853849,0,-1.7499,-0.3011,1.2829,-1.7421,1.6202 -0x1ef01,CUS_0xc319,August,32,516-25-5953,Musician,28826.14,2167.178333,7,7,28,2,"Debt Consolidation Loan, and Not Specified",34.15432917,19.46018993,19.45,10,Bad,2065.643011,35.36195192,8 Years and 8 Months,NM,45.14385896,10000,Low_spent_Medium_value_payments,263.3991356,0,-0.774,0.2335,-0.5252,1.1388,-0.0659 -0x1ef0d,CUS_0x7879,August,58,489-98-2589,Doctor,91965.39,7877.7825,4,2,7,3,"Home Equity Loan, Auto Loan, and Auto Loan",0,0,2.11,5,Good,167.6639264,31.31584044,27 Years and 4 Months,No,210.9546515,198.0003341,High_spent_Medium_value_payments,657.6981422,0,1.6853,0.0296,-1.3921,-1.3042,-0.07 -0x1ef19,CUS_0x8bb3,August,51,343-60-7122,_______,136738.56,,0,6,11,0,,11.61956933,10,3.14,4,Good,482.99,37.36777204,25 Years and 6 Months,No,0,1007.143714,Low_spent_Medium_value_payments,405.344286,0,-0.0469,-0.7783,0.5192,-0.2857,0.5837 -0x1ef25,CUS_0x5a0f,August,26,915-49-9833,Musician,15434.1,,8,10,31.88954781,9,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Student Loan, Auto Loan, Home Equity Loan, Not Specified, Not Specified, and Payday Loan",25.68969259,17,18.57,8,Bad,4378.25,35.49546733,3 Years and 9 Months,Yes,1431.534949,45.84655055,Low_spent_Small_value_payments,247.1059188,0,0.8814,-1.4779,-0.2836,-1.9597,-0.95 -0x1ef31,CUS_0x34d6,August,50,#F%$D@*&8,Engineer,129308.52,10979.71,5,3,0.288361749,100,"Credit-Builder Loan, Not Specified, Not Specified, and Auto Loan",,7,3.19,2,Good,1297.951411,32.47148303,27 Years and 6 Months,No,428.7820695,,Low_spent_Large_value_payments,78.37770514,0,0.7123,-1.2393,0.4801,-0.9258,-0.9498 -0x1ef3d,CUS_0x41e7,August,34,670-93-4185,Architect,60574.48,5338.873333,6,10,24,2,"Auto Loan, and Mortgage Loan",17.94797863,12,7.41,11,Standard,1304.08,32.29850641,7 Years and 9 Months,Yes,94.2730442,404.2744906,Low_spent_Small_value_payments,325.3397986,0,1.2254,0.356,0.6473,-0.6582,0.2948 -0x1ef49,CUS_0xbb93,August,33,052-57-7067,Writer,20975.39,1572.949167,0,1,6,3,"Credit-Builder Loan, Home Equity Loan, and Personal Loan",8.238637764,8,0.64,3,Good,668.162752,41.13921019,27 Years and 2 Months,No,47.11509981,,Low_spent_Small_value_payments,221.1893506,0,-0.2204,0.5344,-0.0769,0.2608,-0.4741 -0x1ef55,CUS_0x4a9c,August,39,109-17-4044,Manager,33498.79,2995.565833,2,4,9,2,"Student Loan, and Home Equity Loan",10.55892468,10,3.05,3,_,646.04,28.9181963,31 Years and 5 Months,No,32.30101331,88.65861769,!@9#%8,438.5969523,0,-1.4581,-1.2584,1.6636,0.9405,0.6679 -0x1ef61,CUS_0x81bb,August,55,189-25-1398,Engineer,13738.735,,7,6,11,4,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",18.25383461,13,5.92,5,_,317.9221992,36.28182351,23 Years and 10 Months,No,44.64666113,0,High_spent_Large_value_payments,318.283774,0,-1.0208,-0.3697,1.6053,0.3597,-1.2872 -0x1ef6d,CUS_0x396d,August,32,931-05-8291,Manager,33032.46,,8,7,20,100,"Payday Loan, and Debt Consolidation Loan",,9,8.68,8,Standard,891.29,38.4671545,15 Years and 9 Months,Yes,35.27523437,32.2178759,High_spent_Large_value_payments,456.7773897,0,-0.0719,0.2846,-0.1583,0.942,-1.5612 -0x1ef79,CUS_0x8cc1,August,43,331-24-3360,Accountant,31700.12,2635.676667,5,5,12,3,"Credit-Builder Loan, Home Equity Loan, and Payday Loan",,4.685832857,11.02,3,_,1462.10084,39.07834451,33 Years and 3 Months,No,45.66368583,106.957153,Low_spent_Large_value_payments,380.9468279,0,0.1731,-0.7132,1.2522,-0.4716,1.1922 -0x1ef85,CUS_0xb2a4,August,24,420-33-9865,Teacher,32755.49,2765.624167,4,5,2,3,"Student Loan, Personal Loan, and Personal Loan",14.6484725,12,5.99,8,Good,1265.91,31.36168136,23 Years and 5 Months,No,54.53842411,101.3268935,Low_spent_Small_value_payments,410.6970991,0,-0.5062,-0.0588,-0.5935,0.1006,-0.9892 -0x1ef91,CUS_0x8442,August,48,897-16-4242,Lawyer,28199.86,2090.988333,3,3,3,4,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Auto Loan",,9,3.07,4,Good,500.84,27.35416197,16 Years and 11 Months,No,85.02935949,,!@9#%8,176.7523436,0,1.1643,1.1723,-1.7189,-0.2067,0.4107 -0x1ef9d,CUS_0x7233,August,18,511-46-2018,Teacher,15219.03,,9,5,18,7,"Personal Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Mortgage Loan, Not Specified, and Mortgage Loan",19.1924885,16,4.78,7,Bad,2213.1,37.9802444,9 Years and 9 Months,NM,76.13084676,102.9843216,Low_spent_Small_value_payments,243.9100817,0,0.682,1.6494,0.939,0.3149,-0.0144 -0x1efa9,CUS_0xc065,August,48,#F%$D@*&8,Accountant,35341.99,2935.165833,5,7,8,1,Payday Loan,,16,17.36,5,Good,1228.602896,40.72235565,30 Years and 4 Months,No,18.16049389,96.61627713,High_spent_Medium_value_payments,440.2124764,0,0.2454,-0.1024,0.1383,0.2003,1.1774 -0x1efb5,CUS_0x5909,August,37,796-80-1142,Media_Manager,48234.04,4288.503333,6,387,17.88954781,100,"Personal Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",7.294235543,6,3.06,5,Standard,447.94,25.50018199,20 Years and 10 Months,No,1477.043133,93.18662096,!@9#%8,404.2904976,0,2.442,-0.3631,0.3107,2.1956,-0.7937 -0x1efc1,CUS_0x48ab,August,26,274-03-2463,Doctor,28337.76,2000.170269,0,5,1,1,Not Specified,3.06968878,7,2.23,4,Good,680.16,38.52329609,30 Years and 0 Months,No,152.137555,,High_spent_Medium_value_payments,377.2833117,0,1.2193,0.077,-0.7145,0.7448,0.3299 -0x1efcd,CUS_0x1dd4,August,54,692-38-9743,Doctor,140606.8,,6,961,6.288361749,0,Payday Loan,,13,7.39,0,Standard,451.5313931,31.15713291,,NM,90.91752953,654.6844239,High_spent_Large_value_payments,1135.20085,0,0.5783,0.0724,1.3425,-1.0561,-0.6226 -0x1efd9,CUS_0x26ea,August,30,303-83-2504,Mechanic,28550.84,,7,3,12,2,"Mortgage Loan, and Home Equity Loan",,21,1.86,2,Standard,57.85,39.1244856,26 Years and 3 Months,Yes,44.4201537,173.5027152,High_spent_Small_value_payments,307.5007978,0,0.841,-1.1104,1.187,-0.892,-0.3321 -0x1efe5,CUS_0x612e,August,26,867-32-0827,Architect,81609.78,,5,4,4025.288362,2,"Auto Loan, Home Equity Loan, and Student Loan",,2,6.94,2,_,92.93638673,28.08704388,20 Years and 10 Months,No,134.2601034,959.8233162,Low_spent_Small_value_payments,396.3621865,0,-0.5461,-0.5563,0.3579,1.6806,-0.5607 -0x1eff1,CUS_0x4462,August,33,771-79-9880,Musician,63563.88,5272.99,8,7,17,7,"Not Specified, Credit-Builder Loan, Personal Loan, Payday Loan, Auto Loan, Payday Loan, and Not Specified",19.90334353,18.8609664,18.45,8,_,2858.432122,28.09663216,14 Years and 2 Months,NM,312.579424,,High_spent_Small_value_payments,217.1132182,0,-0.9364,-0.0186,-1.7874,-0.8467,1.3752 -0x1effd,CUS_0x354b,August,25,864-92-1050,Media_Manager,55263.82,4881.318333,4,3,7,1,Debt Consolidation Loan,9.139442471,10,13.76,6,Standard,1051.33,36.66469814,,NM,28.17752349,399.2892058,Low_spent_Small_value_payments,350.665104,0,0.5445,-0.1934,0.0921,1.1802,-0.5925 -0x1f009,CUS_0x527c,August,21,#F%$D@*&8,Manager,86584.74,7228.395,5,5,8.288361749,2,"Payday Loan, Personal Loan, and Credit-Builder Loan",10.02348975,11,2.93,2,Good,17.36471378,26.89930814,18 Years and 3 Months,No,203.6098233,601.7916078,High_spent_Large_value_payments,602.586928,0,2.1561,-1.6509,0.2326,-1.1433,0.691 -0x1f015,CUS_0xab80,August,43,448-19-2628,Scientist,37760.22,,3,4,3,3,"Home Equity Loan, Not Specified, and Debt Consolidation Loan",7.247661267,10,11.6,3,Good,821.1,32.60578734,16 Years and 9 Months,No,88.48566313,135.9406182,Low_spent_Large_value_payments,384.9422187,0,0.573,-0.8347,1.2551,-0.3649,-0.3202 -0x1f021,CUS_0x1ed8,August,24,819-43-0968,Media_Manager,135178.44,,0,6,6,100,,16.24079447,11.71244917,6.27,8,Good,1172.466995,46.21769845,25 Years and 9 Months,No,0,286.8637716,High_spent_Large_value_payments,1107.423228,0,1.324,-0.0925,1.5184,-0.8852,-0.2951 -0x1f02d,CUS_0xaba3,August,32,494-59-0888,Lawyer,20558.68,,10,7,25,5,"Student Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",21.6692603,15,10.25,12,Bad,2079.91,27.14851877,,Yes,85.0865172,49.69472882,High_spent_Medium_value_payments,305.1410873,0,-0.7518,0.464,1.1158,0.6641,0.4074 -0x1f039,CUS_0x7741,August,35,351-97-8678,Musician,10329.855,1121.82125,4,8,24,2,"Auto Loan, and Home Equity Loan",14.47210245,10.51352387,17.08,14,Standard,2882.328031,36.88847694,8 Years and 6 Months,NM,14.66343455,67.16112023,!@9#%8,310.3575702,0,0.5278,-0.2076,-0.6582,1.4256,0.7906 -0x1f045,CUS_0x77b5,August,39,008-70-2637,Media_Manager,107991.54,,1,3,1,1,Debt Consolidation Loan,6.57893648,8,2.4,4,Good,1163.93,42.43479326,32 Years and 3 Months,No,68.64103884,65.4851541,High_spent_Large_value_payments,982.2033071,0,-0.8143,0.5103,-0.856,-0.5127,-0.5495 -0x1f051,CUS_0xb031,August,36,433-04-2393,Entrepreneur,15279.43,,8,9,2062.067457,5,"Auto Loan, Personal Loan, Auto Loan, Home Equity Loan, and Payday Loan",,17,1.26,10,_,2531.660954,41.36543203,14 Years and 2 Months,Yes,32.96347401,65.45909226,High_spent_Small_value_payments,260.2857291,0,0.4649,0.5465,0.7815,-1.7752,1.7713 -0x1f05d,CUS_0xa04c,August,33,714-99-9322,Media_Manager,38299.84,3461.653333,8,520,29.88954781,7,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",29.68665415,11.58559319,13.58,10,_,1643.000838,31.40318272,13 Years and 9 Months,Yes,1448.251136,79.04346465,High_spent_Large_value_payments,364.5406518,0,1.7181,-2.4392,-0.9373,0.2437,-1.6849 -0x1f069,CUS_0x6a0b,August,31,389-82-7177,Developer,73052.94,5909.745,4,4,14,2,"Debt Consolidation Loan, and Debt Consolidation Loan",27.00290793,15.84988701,1.93,3,Standard,635.1194101,33.26672873,26 Years and 8 Months,Yes,64.60393729,292.5420267,Low_spent_Small_value_payments,523.828536,0,1.4609,0.5592,0.4227,-0.4564,-0.7229 -0x1f075,CUS_0x7bb3,August,46,156-43-2282,Journalist,42331.14,,6,5,9,2,"Student Loan, and Credit-Builder Loan",17.03244407,13,16.48,11,Standard,1288.78,36.42939635,15 Years and 4 Months,NM,48.32052041,78.15163027,High_spent_Medium_value_payments,451.5873493,0,0.4256,0.1731,-0.7901,0.2983,0.0798 -0x1f081,CUS_0x324b,August,24,376-98-8873,Entrepreneur,14773.91,1423.159167,6,10,25,4,"Home Equity Loan, Payday Loan, Personal Loan, and Student Loan",,10.86282363,16.91,,Standard,2574.950096,34.08131006,10 Years and 0 Months,Yes,29.4799699,143.3592634,!@9#%8,259.4766833,0,-1.0194,0.9608,1.3367,-0.3725,1.4478 -0x1f08d,CUS_0x9237,August,49,292-60-7633,Developer,132387.52,10844.29333,3,5,4.288361749,2,"Payday Loan, and Credit-Builder Loan",8.31661335,10,11.95,2,Good,319.5706666,28.1108701,29 Years and 10 Months,NM,145.6507581,1290.66145,!@9#%8,432.473495,0,1.0743,0.5585,-0.8773,0.8699,0.83 -0x1f099,CUS_0x29e1,August,37,612-08-5420,_______,62683.59,5047.6325,8,8,32.88954781,9,"Not Specified, Student Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",,29.06992823,6.44,8,Bad,2404.180521,36.48693489,20 Years and 2 Months,Yes,1669.545685,417.8163918,Low_spent_Large_value_payments,0,0,1.1902,-0.0547,1.3786,-0.4837,0.2225 -0x1f0a5,CUS_0x8fa,August,34,463-08-2979,Doctor,53671.92,4588.66,6,8,33.88954781,6,"Mortgage Loan, Mortgage Loan, Not Specified, Not Specified, Payday Loan, and Not Specified",41.91394386,21,17.75,9,Bad,3420.99,29.3206877,,Yes,1476.79969,52.96018271,High_spent_Large_value_payments,474.7760459,0,-0.151,0.5392,0.5089,0.4136,0.5169 -0x1f0b1,CUS_0xc6cc,August,21,815-43-7420,Engineer,16599.58,,7,10,17.06745738,3,"Payday Loan, Debt Consolidation Loan, and Not Specified",20.62167244,8.995517151,13.43,,Standard,2974.601823,28.5811349,18 Years and 4 Months,Yes,39.2078551,70.73101764,Low_spent_Medium_value_payments,285.7706726,0,1.5008,-0.4893,0.1808,0.5132,1.2067 -0x1f0bd,CUS_0x9f8e,August,27,627-39-8653,Architect,19504.32,,7,8,16,2,"Credit-Builder Loan, and Student Loan",21.62994049,12.39377024,12.64,11,Standard,2085.497217,31.67322104,15 Years and 10 Months,Yes,17.31043694,119.6344822,Low_spent_Small_value_payments,308.4910809,0,0.567,0.8942,0.5314,-0.614,-0.6698 -0x1f0c9,CUS_0xb5af,August,38,889-47-5164,Architect,76769.58,6203.465,3,5,7,3,"Not Specified, Not Specified, and Auto Loan",,8,11.49,7,Good,17.96844657,29.59263484,22 Years and 9 Months,No,190.5538525,278.3262165,Low_spent_Large_value_payments,451.5028817,0,0.4731,0.0615,0.347,0.2332,1.6522 -0x1f0d5,CUS_0x302d,August,23,749-89-9756,Developer,14258.85,,6,9,28,7,"Mortgage Loan, Personal Loan, Personal Loan, Student Loan, Payday Loan, Not Specified, and Home Equity Loan",,28.13579235,1.01,10,_,4843.961714,25.22961018,2 Years and 6 Months,Yes,54.79394527,,Low_spent_Small_value_payments,215.7141519,0,-1.1234,0.1658,0.0661,0.0034,-0.1448 -0x1f0e1,CUS_0x1d13,August,23,132-53-5164,Musician,73314.6,6180.55,10,8,20.88954781,8,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Payday Loan, Not Specified, Not Specified, and Not Specified",30.10816414,23,18.61,12,Bad,4709.8,30.81175576,12 Years and 2 Months,Yes,1789.311772,41.0040319,High_spent_Large_value_payments,333.4091148,0,-0.1159,-0.5295,-1.5851,1.196,2.0291 -0x1f0ed,CUS_0x3b06,August,45,455-63-7887,Architect,15028.515,1417.37625,8,7,8,0,,19.66698208,14,7.65,2,Good,583.74,41.02774594,23 Years and 6 Months,NM,0,15.9350007,High_spent_Medium_value_payments,375.8026243,0,0.5482,0.7701,-0.1283,-0.1067,-0.7775 -0x1f0f9,CUS_0x9d38,August,56,101-88-1001,Lawyer,27061.84,2148.153333,4,5,11,3,"Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",,14,2.01,2,Standard,936.1,29.7462961,19 Years and 6 Months,Yes,44.00129216,41.4778983,High_spent_Small_value_payments,389.3361429,0,0.3742,0.3306,0.4835,-0.0477,1.3335 -0x1f105,CUS_0x63d4,August,55,#F%$D@*&8,Developer,23455.12,,8,7,18,2,"Mortgage Loan, and Auto Loan",16.14590182,15,9.96,2,_,317.45,25.65637446,,Yes,26.97640611,,Low_spent_Small_value_payments,216.5890086,0,0.497,-1.0347,1.2084,0.6445,-0.3616 -0x1f111,CUS_0xa910,August,40,635-44-8558,Scientist,17689.64,,7,6,26.06745738,7,"Mortgage Loan, Personal Loan, Auto Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,19,18.25,8,Bad,4006.550954,38.18014808,6 Years and 0 Months,Yes,96.06048106,56.95389747,Low_spent_Large_value_payments,218.8790002,0,0.4459,0.727,0.0803,0.4408,0.2728 -0x1f11d,CUS_0x7ba0,August,32,654-22-3082,Teacher,39284.17,,4,1,3,100,Not Specified,0,2,10.29,4,Good,1135.923584,25.89106142,16 Years and 0 Months,No,21.46038347,448.5478499,Low_spent_Small_value_payments,183.5697554,0,-0.9752,-0.6789,0.5281,-1.2089,0.4661 -0x1f129,CUS_0x8536,August,35,#F%$D@*&8,Architect,144497.44,,5,5,15.28836175,2,"Not Specified, Home Equity Loan, and Student Loan",23.01218346,20,3.67,4,Standard,50.13,27.2294122,25 Years and 11 Months,No,921.6865326,521.5509838,High_spent_Large_value_payments,1127.103304,0,0.7061,0.0075,0.0003,-1.0948,0.0209 -0x1f135,CUS_0xfe3,August,53,868-17-6573,Media_Manager,40380.18,3607.015,7,5,18,4,"Personal Loan, Personal Loan, Not Specified, and Payday Loan",20.77983832,14,7.98,8,_,1042.93,32.65074535,24 Years and 11 Months,NM,79.98627456,295.5283254,Low_spent_Small_value_payments,275.1869,0,-0.8001,0.1726,0.9784,-0.5689,-3.869 -0x1f141,CUS_0xb75b,August,25,948-39-0892,Media_Manager,18194.8,1695.233333,10,9,23.88954781,7,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",,28.97338853,26.52,11,_,3112.117001,36.54539881,4 Years and 2 Months,Yes,1397.315349,66.45558464,High_spent_Medium_value_payments,261.4223187,0,-0.0531,1.1342,0.3405,-0.1676,-0.789 -0x1f14d,CUS_0xadcd,August,40,034-21-3041,_______,14592.03,947.0025,8,9,23.88954781,6,"Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, Payday Loan, and Not Specified",28.00221915,19.06554772,8.65,10,_,1902.204254,25.98147117,11 Years and 11 Months,Yes,1378.773719,,Low_spent_Small_value_payments,252.0222558,0,0.483,0.1188,0.1875,-1.8534,1.7318 -0x1f159,CUS_0x7767,August,18,768-01-1143,Musician,16559.75,1589.979167,4,5,19,4,"Auto Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",16.25573991,11.54866555,10.5,9,Standard,1905.875189,29.77836036,10 Years and 8 Months,NM,31.92458954,135.9549594,!@9#%8,271.1183677,0,-0.9782,0.4689,0.1636,0.6509,-0.0538 -0x1f165,CUS_0x990,August,21,655-92-9108,Developer,18937.61,,8,8,29.95700519,6,"Not Specified, Credit-Builder Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",,24.30799413,1.76,14,Bad,1660.111398,34.43505912,15 Years and 5 Months,Yes,1403.691809,81.14388866,Low_spent_Large_value_payments,217.7273502,0,0.3963,-1.2929,1.3178,0.2906,0.404 -0x1f171,CUS_0x5cc5,August,46,940-86-3772,Media_Manager,72034.86,5780.905,5,6,13,0,,24.13819453,18,13.76,4,_,1030.69,39.12159984,30 Years and 5 Months,Yes,0,203.566731,Low_spent_Small_value_payments,664.523769,0,2.527,0.4586,1.5321,-1.0162,-1.4274 -0x1f17d,CUS_0x9522,August,29,500-24-7871,Architect,91561.26,7708.105,4,5,7,0,,26.30870085,18,6.6,7,Standard,130.3,42.32163894,,Yes,0,181.9346434,High_spent_Large_value_payments,828.8758566,0,1.1207,-0.2548,0.2417,-1.3737,0.3019 -0x1f189,CUS_0xc18b,August,26,090-19-8485,Musician,29228.18,2695.681667,7,5,9,0,,19.87688001,17,12.92,5,_,1478.07,23.37373239,26 Years and 6 Months,Yes,0,208.6650967,Low_spent_Large_value_payments,330.90307,0,-0.6881,1.0961,0.6079,-0.1349,0.7027 -0x1f195,CUS_0x1f4b,August,18,399-63-5016,Doctor,50757.15,4162.7625,10,7,21.06745738,5,"Debt Consolidation Loan, Mortgage Loan, Not Specified, Not Specified, and Not Specified",27.98773815,19,20.78,12,_,3905.490954,26.83472819,7 Years and 8 Months,Yes,149.0388825,,High_spent_Large_value_payments,427.5481742,0,-1.1851,0.9936,-1.087,-1.3276,0.119 -0x1f1a1,CUS_0x72bc,August,33,829-40-8404,Teacher,59032.8,4601.724308,9,10,23,4,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",25.1089648,19,8.04,8,Standard,1629.170539,24.70333212,,Yes,604.1849691,736.7882097,Low_spent_Small_value_payments,28.04414244,0,0.3679,0.3234,1.023,0.3091,0.6009 -0x1f1ad,CUS_0x4e5c,August,40,725-33-0579,Musician,104273.04,8980.42,1,7,6,2,"Auto Loan, and Student Loan",0,1,3.74,4,Good,581.2984083,35.77519925,22 Years and 10 Months,NM,100.6289163,145.5443444,High_spent_Large_value_payments,906.131441,0,-0.5411,0.2096,-0.4886,0.3013,-0.9941 -0x1f1b9,CUS_0xb38a,August,29,206-35-5405,Accountant,31392.94,,1,1,5,3,"Student Loan, Auto Loan, and Personal Loan",7.139108462,8,8.02,0,Good,1380.719273,23.57396828,26 Years and 0 Months,No,47.69812767,160.4718664,High_spent_Small_value_payments,352.5468424,0,-0.106,0.3825,0.4098,-0.6132,1.0251 -0x1f1c5,CUS_0xc662,August,30,010-45-6073,Lawyer,70976.46,6061.705,4,5,16.28836175,6,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",11.15553356,12,12.99,7,Standard,689.88,34.03997687,7 Years and 4 Months,NM,234.1872557,491.4954376,High_spent_Large_value_payments,540.4252677,0,0.7349,0.5412,2.4882,-0.7735,1.5363 -0x1f1d1,CUS_0x915a,August,35,526-07-1321,Doctor,107545.2,,3,7,9,4,"Student Loan, Not Specified, Credit-Builder Loan, and Personal Loan",17.34171669,,7.88,4,Standard,375.5259578,28.65378482,20 Years and 11 Months,Yes,349.0832064,161.6342377,High_spent_Large_value_payments,665.0807583,0,0.2766,1.5299,-0.3945,1.4007,0.6304 -0x1f1dd,CUS_0x804b,August,48,799-49-2272,Accountant,11274.515,,2,4,6,4,"Payday Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",17.74448273,16,2.25,5,_,771.99,25.42217394,,No,32.03365344,,High_spent_Small_value_payments,254.9540895,0,0.0178,0.6807,0.4724,1.6191,0.1244 -0x1f1e9,CUS_0x2bba,August,18,755-99-6164,Doctor,74502.36,6000.53,7,6,11,3,"Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",19.66488806,14,8.45,6,Standard,1437.07,33.49359466,,NM,169.6576199,104.6705985,High_spent_Large_value_payments,565.7247816,0,-0.2222,-0.6303,-0.2162,-0.2911,1.1312 -0x1f1f5,CUS_0x795b,August,26,884-45-3366,Journalist,19841.34,1680.445,10,8,22,5,"Debt Consolidation Loan, Mortgage Loan, Student Loan, Not Specified, and Mortgage Loan",,21,28.44,12,_,4355.7,31.57084442,1 Years and 10 Months,Yes,52.75412228,25.12230509,High_spent_Large_value_payments,330.1680726,0,0.8399,0.8988,-0.8177,0.2847,-0.1423 -0x1f201,CUS_0x790a,August,36,115-90-2610,Writer,88147.53,7477.6275,2,3,8,3,"Home Equity Loan, Home Equity Loan, and Personal Loan",,3,11.78,4,Good,1416.48,37.75071271,29 Years and 3 Months,No,167.8680509,,Low_spent_Medium_value_payments,424.2940619,0,0.3599,-1.5928,0.1507,1.3273,-0.7196 -0x1f20d,CUS_0x2579,August,29,276-60-8172,Architect,101453.49,8620.4575,3,7,19.28836175,4,"Debt Consolidation Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",15.43228364,15,-0.82,3,Standard,769.18,28.24323666,30 Years and 8 Months,Yes,232.5875128,688.8146184,High_spent_Medium_value_payments,610.5810798,0,-0.6586,-1.5819,0.9113,1.3362,0.4183 -0x1f219,CUS_0x86fa,August,27,720-82-4374,Entrepreneur,47013.78,3678.815,3,5,10,7,"Not Specified, Not Specified, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",,11,14.09,13,Standard,23.64,26.2560254,9 Years and 3 Months,Yes,255.607521,51.45842224,High_spent_Medium_value_payments,310.8155567,0,-0.3597,-1.2631,1.5592,-1.2255,0.7025 -0x1f225,CUS_0x88f4,August,29,454-81-6894,Mechanic,7905.96,,8,8,17.95700519,7,"Not Specified, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Auto Loan",24.65076473,15,9.36,11,_,2234.940954,26.7022881,8 Years and 8 Months,Yes,1356.803883,40.30237228,Low_spent_Small_value_payments,240.2263759,0,1.6666,0.9382,-1.3887,-0.1682,-0.1898 -0x1f231,CUS_0xb685,August,21,412-81-9069,Mechanic,47898.39,,6,8,18.06745738,6,"Personal Loan, Personal Loan, Auto Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",41.43952298,27.16152903,28.45,8,Bad,5603.800305,32.52295204,14 Years and 8 Months,Yes,239.1716626,10000,Low_spent_Small_value_payments,213.7123781,0,1.5957,0.7396,1.1303,-0.4328,-0.1419 -0x1f23d,CUS_0xbca3,August,46,977-71-5685,Entrepreneur,15335.38,,8,6,18.06745738,2,"Personal Loan, and Not Specified",22.91856769,11,8.22,11,Standard,2212.240954,33.1422634,15 Years and 0 Months,Yes,24.63926901,,Low_spent_Large_value_payments,237.777,0,-1.2877,-0.9167,0.3709,-0.4062,1.9208 -0x1f249,CUS_0x691a,August,52,188-25-4731,Musician,27131.46,,6,7,9.288361749,4,"Personal Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",21.51322357,18,2.47,3,Standard,90.91348933,38.00491644,23 Years and 8 Months,No,67.4294642,485.3514753,High_spent_Medium_value_payments,351.7064665,0,-0.749,0.3582,-2.9527,-0.0153,0.4326 -0x1f255,CUS_0x87f9,August,45,472-75-9857,Teacher,20397.855,,1,3,8,1,Payday Loan,,3.634748931,5.04,6,Good,1072.257102,38.31692155,22 Years and 4 Months,No,9.81643378,97.59242382,Low_spent_Medium_value_payments,341.6732674,0,0.3372,-1.2948,0.2228,-0.0288,0.2363 -0x1f261,CUS_0xbed,August,52,712-52-3134,Media_Manager,42074.42,3587.201667,4,1,5240.288362,0,Personal Loan,10.03297626,12,2.29,4,_,188.7907146,34.32296152,31 Years and 11 Months,No,22.65287288,516.6978113,High_spent_Large_value_payments,492.8511861,0,-1.2528,0.4271,0.6115,-2.6107,-0.3427 -0x1f26d,CUS_0x36ad,August,24,372-50-6035,Lawyer,70142.36,,10,8,19.88954781,7,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Payday Loan",31.25727834,18.47316649,7.12,10,_,2547.85787,26.61642402,12 Years and 5 Months,Yes,1705.857997,353.1126458,Low_spent_Small_value_payments,118.4189422,0,-0.3278,-2.4015,0.2095,-1.8523,-1.0057 -0x1f279,CUS_0xaf0a,August,36,457-86-1277,Media_Manager,141164.6,11545.71667,4,5,9,2,"Student Loan, and Mortgage Loan",18.73459972,12,10.74,5,Standard,285.59,37.23915765,31 Years and 10 Months,Yes,138.8302776,1095.343744,Low_spent_Medium_value_payments,200.3976453,0,1.5808,-0.2236,-2.1561,0.6344,-0.3626 -0x1f285,CUS_0x83d7,August,35,677-56-4737,Architect,21709.07,,3,4,8,0,,0,0,13.52,7,Good,932.582463,29.56705762,24 Years and 8 Months,No,0,33.74135811,High_spent_Medium_value_payments,427.6508468,0,0.43,0.4151,-1.5776,1.4636,-0.9281 -0x1f291,CUS_0x320d,August,30,740-82-5152,Entrepreneur,122725.48,10059.12333,0,5,4586,1,Personal Loan,5.86168158,6,5.93,0,Good,932.2346353,40.34914616,33 Years and 5 Months,No,79.27435075,800.2698892,Low_spent_Medium_value_payments,485.423899,0,-0.3707,-0.0708,-0.8469,-0.5281,-2.1216 -0x1f29d,CUS_0x9e18,August,23,403-95-3770,Teacher,31206.11,,8,5,15,7,"Personal Loan, Payday Loan, Personal Loan, Not Specified, Payday Loan, Mortgage Loan, and Payday Loan",21.08773006,14,17.74,8,_,252.11,32.83756088,14 Years and 10 Months,Yes,102.28426,290.3513404,Low_spent_Small_value_payments,183.6153162,0,1.403,1.3889,0.6418,-1.9597,0.2556 -0x1f2a9,CUS_0x4029,August,45,608-72-7122,Architect,17077.4,,9,10,30.06745738,5,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Student Loan",54.25666849,28.02748302,9.6,14,_,3117.350549,26.26799409,15 Years and 4 Months,NM,64.17188713,,Low_spent_Small_value_payments,260.0006224,0,0.215,-0.9536,0.4332,0.5836,-1.6683 -0x1f2b5,CUS_0x99a,August,26,323-97-0374,Doctor,76650.12,6558.51,8,7,8,4,"Auto Loan, Payday Loan, Home Equity Loan, and Student Loan",,11.54190689,13.37,5,Standard,1825.199112,28.75802523,18 Years and 10 Months,Yes,129.6209235,325.6817057,Low_spent_Medium_value_payments,480.5483709,0,-1.6783,0.2951,1.3897,0.8397,0.1147 -0x1f2c1,CUS_0x90f8,August,44,476-75-1739,Teacher,39594.66,3534.555,4,5,8,4,"Not Specified, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",3.154319063,4,9.25,5,Good,980.4525732,27.1941519,16 Years and 8 Months,No,87.05875181,148.1899733,High_spent_Medium_value_payments,383.1516636,0,1.605,1.0978,-0.8424,0.6025,1.2847 -0x1f2cd,CUS_0xa5d1,August,38,734-18-4220,Media_Manager,20269.93,1617.160833,7,6,30.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Student Loan, Not Specified, and Credit-Builder Loan",42.67752263,24,15.07,11,Bad,4682.910954,33.35526434,3 Years and 5 Months,Yes,45049,78.48491008,High_spent_Small_value_payments,224.6423289,0,0.873,1.5014,-0.8625,0.3024,-0.1237 -0x1f2d9,CUS_0x2390,August,21,020-36-4985,Musician,7314.55,794.5458333,10,6,32.06745738,4,"Student Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",42.96574836,24,,6,Bad,2320.240954,28.22495185,19 Years and 8 Months,Yes,18.36394527,69.0508767,Low_spent_Large_value_payments,235.3194734,0,-0.9756,-1.3737,0.8682,0.3543,-0.9885 -0x1f2e5,CUS_0x4bc0,August,30,339-47-9573,Manager,71534.68,6009.223333,7,7,34,2,"Personal Loan, and Debt Consolidation Loan",19.21990661,13,12.82,16,Standard,2094.49,31.64177066,14 Years and 10 Months,Yes,41080,801.418843,Low_spent_Small_value_payments,,0,-0.0142,0.3446,-0.501,-1.1834,-0.7892 -0x1f2f1,CUS_0x21ac,August,27,333-78-2654,Developer,55593.99,,7,6,30,6,"Home Equity Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",27.14060682,20.16288341,11.09,1709,Standard,1494.027364,26.50989094,18 Years and 6 Months,Yes,269.0332338,97.67819675,High_spent_Medium_value_payments,370.7718194,0,0.7677,0.0183,0.9006,0.1766,-0.1862 -0x1f2fd,CUS_0x2d14,August,36,086-99-1836,Writer,18995.89,,2,3,6,0,,0,2,8.42,5,Good,953.75,27.29122565,,No,60579,97.5068268,Low_spent_Medium_value_payments,342.2922565,0,-0.038,-0.3714,-2.3131,0.5531,0.5141 -0x1f309,CUS_0x29bf,August,22,600-61-7210,Writer,42870.09,3782.5075,512,4,12,4,"Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,20,20.02,13,_,840.82,32.43190198,18 Years and 6 Months,Yes,106.6230067,81.79727359,High_spent_Medium_value_payments,439.8304697,0,1.5249,0.4202,-0.7679,-1.385,-0.1054 -0x1f315,CUS_0xb0c4,August,18,810-15-1395,Entrepreneur,9001.345,,9,6,17,5,"Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",,27.7024342,15.37,16,Bad,1666.421128,39.3746811,20 Years and 0 Months,NM,22.87519143,10.4183582,High_spent_Medium_value_payments,297.8176587,0,2.0821,1.5175,0.3857,-0.2949,-1.0649 -0x1f321,CUS_0x7dd,August,47,507-09-1349,Lawyer,27589.12,2343.093333,4,5,15,1,Debt Consolidation Loan,28.42147352,20,6.89,3,Standard,99.33,30.08053558,19 Years and 6 Months,No,22.08793389,164.4043994,Low_spent_Large_value_payments,317.817,0,0.4707,0.4252,0.1498,-0.2192,-0.4266 -0x1f32d,CUS_0x8752,August,33,175-52-9172,_______,12050.595,,6,4,20,1,Not Specified,17.20908655,13,2.59,5,Standard,144.29,28.87024871,29 Years and 10 Months,No,7.167790768,25.59884678,High_spent_Medium_value_payments,333.1549875,0,-0.591,-0.5315,0.0873,-1.8722,0.0696 -0x1f339,CUS_0x5563,August,43,589-80-1768,Manager,14791.06,,7,8,16.06745738,3,"Auto Loan, Home Equity Loan, and Home Equity Loan",35.86270956,20,9.92,10,Bad,2515.450954,39.2905317,13 Years and 11 Months,Yes,22.19464048,36.13258539,High_spent_Large_value_payments,304.9113195,0,-0.9864,-0.3189,-0.8885,-0.3298,1.4333 -0x1f345,CUS_0x3340,August,24,665-08-8202,Teacher,96040.56,,2,5,3,4,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",17.32197068,13.47899567,9.75,1,_,121.5578702,37.20617648,29 Years and 2 Months,No,182.1919094,95.38317503,!@9#%8,753.8629156,0,-0.5993,0.2745,1.0639,-0.5018,-0.5719 -0x1f351,CUS_0x6630,August,32,501-84-0465,Musician,61607.34,,10,9,28.88954781,7,"Personal Loan, Not Specified, Mortgage Loan, Student Loan, Not Specified, Not Specified, and Auto Loan",,23,20.67,11,Bad,3146.2,33.88122388,9 Years and 9 Months,NM,1653.634139,146.5968117,High_spent_Medium_value_payments,274.7334683,0,0.2034,0.0621,0.755,0.3407,-0.5005 -0x1f35d,CUS_0x172d,August,39,587-57-4370,Musician,57242.61,,9,7,19,100,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",45.78263453,27.15394342,26.33,12,_,5498.575281,30.55223594,7 Years and 10 Months,Yes,144.3908794,162.4163499,High_spent_Medium_value_payments,405.7145206,0,-0.2395,-0.3004,2.2896,0.84,-1.0473 -0x1f369,CUS_0x843e,August,59,654-01-6120,Writer,15617.35,1579.445833,0,2,1,3,"Debt Consolidation Loan, Auto Loan, and Personal Loan",0,3,0.57,2,Good,224.2364031,39.31302278,24 Years and 8 Months,No,26.45046765,,Low_spent_Medium_value_payments,257.1580106,0,-0.3106,-0.0081,0.4616,-1.3288,1.0317 -0x1f375,CUS_0x228c,August,26,927-99-0920,Teacher,23977.89,1834.1575,3,5,16,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",24.62268461,18,6.75,3,Standard,423.36,36.20678185,30 Years and 2 Months,No,72.00967242,123.7779157,Low_spent_Small_value_payments,277.6281618,0,-0.8436,-0.2112,-1.1382,0.5552,-1.9467 -0x1f381,CUS_0x6a9a,August,31,#F%$D@*&8,Media_Manager,10484.96,,10,6,23,9,"Home Equity Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",33.8795743,17.84594363,22.64,13,Bad,3617.626574,31.92776972,5 Years and 11 Months,Yes,59.77990402,53.16103385,Low_spent_Small_value_payments,286.2337288,0,-0.5397,0.572,-1.171,1.8537,-1.1653 -0x1f38d,CUS_0x415,August,28,710-72-5711,Lawyer,7534.185,,8,7,25,5,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",19.35628147,15,7.65,15,Bad,2391.27,30.52375134,19 Years and 10 Months,Yes,17.49247694,,High_spent_Small_value_payments,269.8532373,0,-0.0187,-0.4725,-0.9889,0.1766,-1.4093 -0x1f399,CUS_0x6cfa,August,46,493-03-2477,Doctor,21809.35,,5,7,10,1,Personal Loan,0,2,,5,Good,739.01,31.50783349,25 Years and 2 Months,No,16.39235759,46.82990193,High_spent_Medium_value_payments,354.0223238,0,-1.1941,1.3295,-0.2352,-0.376,-0.8277 -0x1f3a5,CUS_0xba92,August,39,847-80-5900,Writer,145114.16,12010.84667,1,7,9,0,,10.97303656,11,11.72,9,_,690.8079621,41.98522117,24 Years and 5 Months,No,0,658.6129773,High_spent_Small_value_payments,887.5764025,0,0.7257,-1.2636,-0.7164,-0.9994,-0.7887 -0x1f3b1,CUS_0x90ef,August,53,096-71-6003,_______,17411.26,,1,2,9,2,"Credit-Builder Loan, and Credit-Builder Loan",0,0,7.41,2,Good,734.4958113,29.95238103,26 Years and 2 Months,No,24.1031426,39.04610757,Low_spent_Medium_value_payments,349.4327532,0,0.7163,-1.4527,-0.3824,0.5298,-1.0343 -0x1f3bd,CUS_0x6736,August,27,025-90-1066,Musician,39593.77,3308.480833,2,1,5,4,"Auto Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",6.403133854,9,10.27,8,Good,1333.040654,31.7786622,28 Years and 11 Months,NM,78.73686094,415.7758815,Low_spent_Small_value_payments,172.8295955,0,0.7004,-0.0754,0.4538,-1.3414,0.4927 -0x1f3c9,CUS_0x84c9,August,55,779-66-2573,Lawyer,88044.6,7073.05,5,4,5,0,,,1,10.57,7,Good,344.46,36.81238889,33 Years and 5 Months,No,0,,Low_spent_Small_value_payments,244.9514558,0,1.5351,-0.5904,-0.5041,0.3011,0.3999 -0x1f3d5,CUS_0x6a11,August,35,#F%$D@*&8,Media_Manager,33352.41,2671.207498,6,4,10,2,"Auto Loan, and Auto Loan",28.2028869,22,17.68,5,Standard,1422.2,32.42260515,18 Years and 10 Months,No,175.7010568,,High_spent_Medium_value_payments,449.925185,0,0.0174,0.733,-0.9373,-0.8772,0.5169 -0x1f3e1,CUS_0xbcc8,August,30,420-90-0566,_______,14000.59,1383.715833,3,3,4,2,"Not Specified, and Home Equity Loan",,10,13.68,5,Good,1062.47,33.204599,27 Years and 11 Months,No,20.25217484,107.9378392,Low_spent_Small_value_payments,300.1815693,0,-0.4016,0.3109,0.8257,0.3417,0.6351 -0x1f3ed,CUS_0x17e8,August,41,092-76-3178,Mechanic,102885.75,8543.8125,1,6,1,2,"Personal Loan, and Student Loan",6.432870313,9,4.96,6,_,577.0024973,31.04964433,25 Years and 3 Months,No,38367,,Low_spent_Medium_value_payments,254.8716073,0,0.1124,2.2193,-0.1468,0.5054,-0.5362 -0x1f3f9,CUS_0x1ec9,August,46,503-13-4318,Entrepreneur,18756.78,1400.065,10,6,22,7,"Personal Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",,28.2130614,3.71,10,_,3822.323098,28.64878241,6 Years and 2 Months,NM,77.47870599,127.1587332,Low_spent_Small_value_payments,225.3690608,0,-0.0539,0.2574,-0.7999,-0.9437,-0.2484 -0x1f405,CUS_0x5721,August,29,633-49-9564,Journalist,20488.29,1811.3575,8,5,34.06745738,9,"Auto Loan, Home Equity Loan, Home Equity Loan, Auto Loan, Payday Loan, Auto Loan, Payday Loan, Payday Loan, and Student Loan",37.18221387,18,20.57,8,Bad,3441.480954,24.8521648,8 Years and 3 Months,Yes,131.4652937,,High_spent_Medium_value_payments,220.6898887,0,0.5263,0.8784,-1.524,-0.3504,-0.1456 -0x1f411,CUS_0xacf7,August,57,918-95-7408,Mechanic,142544.36,,0,4,2.288361749,0,,0,3,4.45,4,_,786.1520411,36.55285966,19 Years and 0 Months,NM,726.0883564,563.4498594,High_spent_Large_value_payments,1325.767686,0,-2.0928,0.4416,-0.3649,-0.2531,1.0117 -0x1f41d,CUS_0xa5ee,August,56,872-11-6292,Manager,22158.995,,2,5,5,1,Home Equity Loan,0,0,8.53,4,_,642.6285509,26.21302176,26 Years and 9 Months,No,18.40798088,121.6033639,Low_spent_Small_value_payments,322.80122,0,-0.7485,-1.2312,0.7204,-0.6844,-0.7358 -0x1f429,CUS_0x5a83,August,49,862-76-9527,Engineer,81049.77,6817.1475,7,6,7,2,"Auto Loan, and Payday Loan",24.60310775,16,7.86,5,Good,378.4480715,28.93851695,16 Years and 2 Months,No,72.01693628,,Low_spent_Medium_value_payments,547.6880843,0,0.1815,1.2719,0.0337,2.9169,-1.2991 -0x1f435,CUS_0x2443,August,44,502-72-1663,Writer,8776.715,,6,6,24,5,"Student Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",,21.36596891,5.37,12,Bad,4754.340212,28.46685821,8 Years and 10 Months,Yes,26.25183367,,Low_spent_Small_value_payments,284.8111115,0,-0.4922,-1.0557,-0.4621,0.8194,-0.4555 -0x1f441,CUS_0xbb6c,August,26,181-72-5400,Teacher,62855.32,5115.943333,10,5,31,9,"Personal Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Not Specified, Payday Loan, Student Loan, Payday Loan, and Student Loan",48.34874884,23.69359797,7.34,10,_,1490.461023,34.23648315,6 Years and 3 Months,Yes,396.6898173,494.2323327,Low_spent_Medium_value_payments,,0,-0.2004,0.6148,0.2092,1.2505,0.6042 -0x1f44d,CUS_0x9a2c,August,26,485-92-4277,Writer,29280.44,2237.716498,2,5,3,0,,8.71160928,3.643839628,11.93,5,_,106.3520687,25.86246082,21 Years and 3 Months,NM,220.3201688,93.96088403,!@9#%8,401.8427826,0,1.3648,0.2797,-1.1051,-0.2929,-0.8902 -0x1f459,CUS_0xab65,August,18,514-55-7653,Accountant,36368.77,3229.730833,7,3,12,4,"Mortgage Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",20.27952705,,5.76,6,Standard,347.66,32.11665475,19 Years and 6 Months,No,83.04488447,75.68767249,High_spent_Large_value_payments,404.2405264,0,-2.3235,-0.2889,0.1353,-0.6808,-0.5658 -0x1f465,CUS_0x716,August,44,356-20-4069,Lawyer,18897.13,,9,7,33.06745738,8,"Student Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Payday Loan, and Mortgage Loan",35.54420361,23,28.39,13,Bad,3575.220954,28.16528263,10 Years and 6 Months,Yes,87.47634548,,Low_spent_Large_value_payments,192.4112456,0,-0.0693,0.0784,-0.9358,0.3021,1.6289 -0x1f471,CUS_0x708f,August,27,084-46-9177,Journalist,38378.18,,7,10,34,5,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Student Loan, and Not Specified",41.35713572,25.41728537,,14,Bad,2233.695565,30.15768228,20 Years and 6 Months,NM,99.13710904,,High_spent_Medium_value_payments,381.6080724,0,-1.688,-1.1216,0.467,-0.8544,0.3966 -0x1f47d,CUS_0x97d1,August,32,280-76-3810,Media_Manager,37885.46,,4,7,22,6,"Credit-Builder Loan, Auto Loan, Auto Loan, Student Loan, Auto Loan, and Debt Consolidation Loan",,9.05769611,9.61,11,Standard,2861.425165,24.412646,14 Years and 9 Months,NM,122.5557919,,Low_spent_Small_value_payments,220.7014754,0,1.2871,-0.1444,0.1841,1.2737,-0.0669 -0x1f489,CUS_0x859a,August,29,526-81-2313,Musician,37968.01,3190.000833,2,5,5,3,"Personal Loan, Auto Loan, and Credit-Builder Loan",,5,4.61,1,_,664.5630235,38.3134113,18 Years and 9 Months,No,65.01749124,218.2034773,High_spent_Small_value_payments,318.7555269,0,0.6247,1.4567,-0.0514,1.1844,-0.6634 -0x1f495,CUS_0x9a18,August,43,401-98-9699,Musician,40517.81,3215.484167,1,2,2,1,Credit-Builder Loan,8.610881464,10,5.47,0,Good,1305.741663,38.36030465,30 Years and 11 Months,No,25.05956173,194.0151914,High_spent_Small_value_payments,381.5039877,0,-0.535,-0.992,0.9708,0.4351,-1.0764 -0x1f4a1,CUS_0x9730,August,32,637-99-8103,Teacher,55246.77,,4,4,20,2,"Debt Consolidation Loan, and Debt Consolidation Loan",17.2992778,8.969390422,11.19,6,Standard,2037.957425,38.02403226,5 Years and 11 Months,Yes,71.20560633,531.6041252,Low_spent_Small_value_payments,126.2800185,0,0.4709,0.5133,-1.19,-2.0851,-0.6462 -0x1f4ad,CUS_0x30df,August,38,087-14-9721,Manager,122579.04,10510.92,1,3,0.288361749,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,7,9.98,7,Good,1292.184824,37.57250188,24 Years and 5 Months,No,207.0040735,847.7828309,High_spent_Small_value_payments,737.9823452,0,-0.1702,-0.2327,-0.5881,-1.4838,1.4055 -0x1f4b9,CUS_0xb024,August,20,145-30-4355,Scientist,14176.215,1016.35125,7,4,7,2,"Debt Consolidation Loan, and Student Loan",29.42790541,20,19.81,7,Standard,399.68,25.04382617,13 Years and 0 Months,Yes,19.21565199,39.47784536,Low_spent_Small_value_payments,332.9416276,0,-0.462,-0.425,1.4509,-1.331,2.3497 -0x1f4c5,CUS_0xbe5c,August,30,861-80-8543,_______,8820.825,,8,7,3017,6,"Mortgage Loan, Home Equity Loan, Not Specified, Payday Loan, Not Specified, and Personal Loan",,30.29939703,21.44,12,Bad,5039.002217,35.82548879,1 Years and 2 Months,Yes,43.69797941,32.57475205,Low_spent_Medium_value_payments,305.0341435,0,1.1361,1.604,-0.0906,-0.4054,-0.3719 -0x1f4d1,CUS_0x9c49,August,34,506-39-1870,Developer,66092.25,5563.6875,4,3,16,4,"Personal Loan, Mortgage Loan, Auto Loan, and Auto Loan",15.23822475,11,8.93,5,Standard,1209.6,37.54047747,9 Years and 10 Months,Yes,150.0105462,62.12339103,High_spent_Medium_value_payments,594.2348128,0,-0.4817,-0.5154,0.1337,-0.3958,1.5421 -0x1f4dd,CUS_0xb675,August,39,579-70-0511,Teacher,9436.415,,8,9,28.88954781,8,"Credit-Builder Loan, Mortgage Loan, Student Loan, Student Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",19.93037784,16,18.59,8,Bad,3073.02,29.62322399,3 Years and 10 Months,Yes,1364.80621,28.82167164,High_spent_Small_value_payments,227.078829,0,0.3674,1.2637,-0.613,1.1467,0.0118 -0x1f4e9,CUS_0xb2a1,August,22,#F%$D@*&8,Developer,14006.745,1017.22875,6,4,7,7,"Not Specified, Credit-Builder Loan, Home Equity Loan, Not Specified, Not Specified, Not Specified, and Mortgage Loan",12.25470886,11,17.06,4,Standard,1347.31,35.90813282,17 Years and 10 Months,Yes,64.23667898,97.2674424,Low_spent_Small_value_payments,230.2187536,0,-2.0605,-0.5857,0.4708,-1.9812,-0.3999 -0x1f4f5,CUS_0x61a7,August,35,859-61-0650,Accountant,33785.2,,4,6,14,3,"Debt Consolidation Loan, Not Specified, and Payday Loan",33.53871258,23.67509386,18.18,7,Standard,1803.877229,36.57869706,7 Years and 0 Months,Yes,59.13881949,,Low_spent_Small_value_payments,136.1490819,0,-0.4999,0.4091,0.8519,0.2438,-0.7129 -0x1f501,CUS_0xb745,August,40,230-68-7913,Developer,60515.32,5148.943333,7,6,5,1,Credit-Builder Loan,,8,3.35,7,Good,1170.909937,29.84404442,29 Years and 11 Months,NM,34.48954469,749.6463875,Low_spent_Small_value_payments,107.511512,0,0.0192,-0.8991,-2.1039,-0.6741,0.6544 -0x1f50d,CUS_0x1d64,August,27,589-05-3779,Teacher,73627.68,6280.64,6,6,19,2,"Debt Consolidation Loan, and Personal Loan",15.26943286,13,16.71,6,Standard,946.92,25.83028497,26 Years and 2 Months,Yes,67.09929401,168.4992473,Low_spent_Medium_value_payments,672.4654586,0,-1.3583,0.2271,1.662,-0.9927,-0.2565 -0x1f519,CUS_0x803c,August,18,941-91-2197,Entrepreneur,24883.01,,4,71,7,3,"Mortgage Loan, Student Loan, and Mortgage Loan",25.72170457,20,10.87,3,Standard,646.05,29.54322784,15 Years and 10 Months,NM,37.38055367,19.64710118,High_spent_Medium_value_payments,375.8307618,0,-0.4008,1.0139,1.2703,0.6331,-0.7188 -0x1f525,CUS_0x3ce7,August,25,110-85-1519,Architect,7269.655,,6,9,22.06745738,9,"Not Specified, Credit-Builder Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",26.70397296,17.29432111,21.72,8,Bad,5053.870848,37.36691288,1 Years and 5 Months,Yes,33.84909039,,Low_spent_Small_value_payments,259.9341902,0,2.8415,0.9839,0.5013,-0.4736,1.4663 -0x1f531,CUS_0x6951,August,40,811-90-5713,Writer,35462.52,,8,9,32.06745738,4,"Auto Loan, Student Loan, Payday Loan, and Credit-Builder Loan",35.29091407,17,19.14,12,Bad,2595.280954,34.84551569,8 Years and 8 Months,Yes,75.22703205,181.3313397,Low_spent_Large_value_payments,258.5423403,0,1.4552,-0.6899,0.9428,-0.5397,-0.6382 -0x1f53d,CUS_0xc4f,August,34,955-02-8112,Media_Manager,16609.08,1524.09,5,6,20,1,Auto Loan,26.32211756,20,0.99,4,Standard,606.57,36.00119762,30 Years and 10 Months,No,13.54457298,69.51170778,Low_spent_Medium_value_payments,349.3527192,0,1.8778,-0.364,1.3256,-2.2719,0.2793 -0x1f549,CUS_0x8a36,August,37,509-64-1439,Entrepreneur,34102.64,2742.886667,7,5,26,5,"Mortgage Loan, Personal Loan, Student Loan, Not Specified, and Auto Loan",,14.81386448,6.25,6,_,4401.898509,29.80910575,10 Years and 0 Months,Yes,140.119803,51.88278016,High_spent_Large_value_payments,322.2860835,0,-0.5289,0.8043,0.6258,-0.6598,0.7483 -0x1f555,CUS_0x54b,August,31,468-64-0497,Architect,55209.81,4303.8175,5,3,23,7,"Payday Loan, Credit-Builder Loan, Payday Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",25.98878114,16.45353103,10.41,6,Standard,2165.483337,33.10628553,14 Years and 6 Months,Yes,231.9278112,,Low_spent_Large_value_payments,134.4146816,0,0.5663,0.6896,-1.7934,-0.3708,-1.2549 -0x1f561,CUS_0x2038,August,33,563-29-1145,_______,29818.78,,4,4,7,2,"Credit-Builder Loan, and Student Loan",,3,5.99,6,Good,702.2,32.05173167,31 Years and 10 Months,No,45.97729869,53.10730365,High_spent_Small_value_payments,386.705231,0,-0.538,-0.2078,-1.2982,0.3085,-0.5415 -0x1f56d,CUS_0x58ef,August,34,259-60-9040,Doctor,57776.52,,4,4,11,0,,8.461801663,8,10.57,5,Standard,165.6993874,24.77136269,31 Years and 10 Months,No,0,114.7716528,High_spent_Small_value_payments,670.1003756,0,1.1325,-1.5524,1.6701,-1.02,-0.9288 -0x1f579,CUS_0xbebc,August,44,961-21-1989,Musician,18968.18,,7,7,8,3,"Credit-Builder Loan, Personal Loan, and Personal Loan",,8,10.55,7,Standard,1795.52,28.22843392,20 Years and 2 Months,Yes,39.5250989,55.2920896,Low_spent_Medium_value_payments,340.9509782,0,0.1523,0.3629,1.1404,0.799,0.7895 -0x1f585,CUS_0xaf6f,August,52,#F%$D@*&8,Journalist,60733.7,5189.141667,7,3,4.288361749,2,"Debt Consolidation Loan, and Auto Loan",4.583552454,6,5.36,5,Standard,491.5215796,28.02272217,29 Years and 5 Months,Yes,93.18162,504.6122268,High_spent_Large_value_payments,592.5424877,0,-2.3914,-1.9178,0.5212,1.8585,-1.2606 -0x1f591,CUS_0x8916,August,42,272-25-4840,Architect,54908.22,4440.685,4,3,6,0,,23.87406473,20,18.65,6,Standard,1282.04,35.16052438,16 Years and 0 Months,Yes,0,112.1012843,High_spent_Large_value_payments,571.9672157,0,-0.4305,0.4597,0.4751,-0.8715,-1.0082 -0x1f59d,CUS_0x6159,August,40,893-00-5940,Scientist,133670.48,,3,3,20,4,"Student Loan, Not Specified, Student Loan, and Debt Consolidation Loan",15.39832649,,18.11,7,Standard,1160.13,31.12743501,16 Years and 10 Months,Yes,263.5778484,790.8609837,Low_spent_Medium_value_payments,333.1818345,0,-0.3546,1.171,-0.0721,-0.4697,1.118 -0x1f5a9,CUS_0xbe0a,August,50,410-95-7076,Doctor,173721.16,,5,5,3,1,Student Loan,0,0,11.75,5,_,905.23,43.28912086,22 Years and 2 Months,No,124.8676348,188.2823478,High_spent_Medium_value_payments,1400.426351,0,1.1783,-0.5016,-0.1498,-0.144,-0.146 -0x1f5b5,CUS_0xafeb,August,26,053-68-3074,Manager,15910.33,1111.860833,8,8,21.88954781,9,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",,16,15.26,8,_,4193.048129,30.94303213,14 Years and 2 Months,Yes,1440.784495,34.51492294,High_spent_Medium_value_payments,194.9303704,0,0.446,0.5476,0.2993,-0.4247,0.0445 -0x1f5c1,CUS_0x958f,August,19,194-93-5515,Scientist,97907.04,7897.92,8,7,7.288361749,4,"Debt Consolidation Loan, Auto Loan, Personal Loan, Not Specified, and Mortgage Loan",16.04800335,15.39031601,19.48,6,Standard,735.7279966,29.85362625,8 Years and 0 Months,Yes,353.6825178,594.2762675,High_spent_Medium_value_payments,511.7706758,0,1.0114,0.5732,0.5651,1.5196,-0.099 -0x1f5cd,CUS_0x5dd0,August,34,236-43-2661,Journalist,20058.555,,5,3,4,100,"Not Specified, Not Specified, and Mortgage Loan",1.848209221,4,6.69,3,Good,357.5905441,34.43253669,16 Years and 2 Months,No,35.39825995,136.2622813,Low_spent_Small_value_payments,315.1521196,0,1.2684,-2.4235,1.0598,0.287,0.2297 -0x1f5d9,CUS_0x24e8,August,41,418-89-9094,Media_Manager,17725.57,1691.130833,6,9,20.88954781,6,"Payday Loan, Home Equity Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,15.75939205,22.71,,_,2246.494943,32.98018798,8 Years and 2 Months,Yes,1407.061864,226.9944717,Low_spent_Small_value_payments,130.7266662,0,-0.7244,-1.7158,-0.0057,-0.2922,-0.139 -0x1f5e5,CUS_0x6081,August,46,424-83-6470,Mechanic,156470,,1,3,7.288361749,2,"Mortgage Loan, Home Equity Loan, and Auto Loan",6.051284601,8,2.58,3,_,1212.896432,30.95662628,33 Years and 3 Months,No,261.8310155,11877.34183,Low_spent_Large_value_payments,577.685846,0,0.2034,-1.0929,0.5785,-1.2045,-0.2642 -0x1f5f1,CUS_0x556e,August,31,194-83-8692,Accountant,11889.26,,5,4,14,3,"Payday Loan, Personal Loan, and Credit-Builder Loan",,16,17,2,_,321.5440651,39.93166318,26 Years and 5 Months,Yes,23.45559539,51.38556862,High_spent_Small_value_payments,266.3072311,0,-0.3583,1.5644,-1.6928,1.0197,0.4281 -0x1f5fd,CUS_0x6eee,August,55,215-69-1291,Engineer,73579.8,,4,5,7,2,"Auto Loan, and Credit-Builder Loan",0,1,4.94,7,Good,1068.63678,24.33164508,25 Years and 5 Months,No,100.2986946,,High_spent_Medium_value_payments,671.2404976,0,0.185,1.3279,0.8196,-0.124,-1.3495 -0x1f609,CUS_0xa791,August,26,582-81-5952,Architect,35970.54,,310,6,3,2,"Credit-Builder Loan, and Mortgage Loan",4.521348531,7,11.49,0,Good,1180.347576,35.03686094,16 Years and 10 Months,No,29946,189.0414315,Low_spent_Large_value_payments,326.2723565,0,-0.8386,0.6881,0.5553,-2.5172,1.9757 -0x1f615,CUS_0xd78,August,26,884-85-6493,Engineer,83642.91,6148.311617,3,57,6,0,,15.62396691,12,11.57,9,_,793.04,28.05492769,20 Years and 0 Months,Yes,882.9308834,,Low_spent_Large_value_payments,455.1362046,0,0.1814,0.7693,0.3114,-0.3516,-0.8616 -0x1f621,CUS_0x2b58,August,33,571-37-0616,Doctor,35479.47,2927.6225,5,3,7,4,"Not Specified, Credit-Builder Loan, Not Specified, and Auto Loan",,13,8.37,3,Standard,1381.1,36.93766829,19 Years and 9 Months,Yes,64.23063203,86.70366512,High_spent_Medium_value_payments,391.8279528,0,0.4182,-0.0043,0.5024,1.0963,0.9411 -0x1f62d,CUS_0x4829,August,49,070-79-0780,Media_Manager,14180.935,,4,6,8,0,,8.959300643,11,10.55,,Good,920.4347637,30.8210222,30 Years and 9 Months,No,0,48.85795226,Low_spent_Small_value_payments,364.195634,0,0.9856,0.345,-0.6847,0.076,0.0072 -0x1f639,CUS_0xbb82,August,33,847-83-6051,Architect,51886.18,4454.848333,8,7,7,4,"Debt Consolidation Loan, Not Specified, Mortgage Loan, and Home Equity Loan",20.47143791,,15.76,8,Standard,1390.84,41.21423831,17 Years and 0 Months,NM,155.6567124,186.2834996,Low_spent_Medium_value_payments,383.5446213,0,-0.1814,-0.0673,0.824,0.1933,-1.8915 -0x1f645,CUS_0xb517,August,42,789-03-7943,Musician,75605.82,5820.748743,0,3,4,0,,,1,2.06,7,Good,115.9727139,32.2607526,25 Years and 3 Months,No,686.736257,247.9679235,Low_spent_Medium_value_payments,714.7805837,0,0.2035,-0.5652,1.6886,-2.468,-0.9679 -0x1f651,CUS_0x929a,August,39,108-81-3545,Lawyer,10263.79,590.3158333,5,3,12,1,Credit-Builder Loan,20.03905202,14,2.73,,Good,666.4735625,36.00242615,20 Years and 10 Months,No,6.81461121,53.34155648,Low_spent_Medium_value_payments,285.0088247,0,1.1959,-1.6325,-1.843,1.0951,-0.7816 -0x1f65d,CUS_0x8e30,August,20,080-35-3013,_______,36938.82,,8,6,13,5,"Credit-Builder Loan, Student Loan, Home Equity Loan, Personal Loan, and Auto Loan",16.12295942,12,10.06,12,Standard,771.6,33.67213963,12 Years and 2 Months,Yes,112.2727657,80.39848396,High_spent_Small_value_payments,345.5522504,0,1.8265,-0.4635,-0.2578,0.6053,-0.6013 -0x1f669,CUS_0x7cdc,August,55,303-66-3456,Developer,40038.58,,4,3,2.288361749,0,,5.907677306,8,7.25,8,_,15.09747084,40.91882589,21 Years and 5 Months,No,0,665.3312468,High_spent_Small_value_payments,381.655598,0,-2.3046,-1.1418,-0.2542,-0.9584,-0.4189 -0x1f675,CUS_0xb982,August,52,688-83-9384,Accountant,59494.14,,0,4,1.288361749,0,Credit-Builder Loan,0,3,6.6,1,Good,662.71,30.28557665,29 Years and 4 Months,No,31.13410074,610.1482106,Low_spent_Small_value_payments,584.9396497,0,0.1111,-0.1303,0.6157,0.2061,-1.4857 -0x1f681,CUS_0x7080,August,40,026-31-3577,Teacher,58774.86,,7,6,17,7,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Student Loan",,18.09687744,2.46,14,Bad,2329.124687,34.48374411,15 Years and 2 Months,Yes,290.9449617,256.7349314,Low_spent_Small_value_payments,222.0106069,0,-1.9036,0.54,0.1688,-1.0433,0.4082 -0x1f68d,CUS_0x744f,August,27,528-53-4876,Doctor,9527.09,604.9241667,8,8,32.88954781,8,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",,19,29.09,10,Bad,4208.66,38.45178901,14 Years and 6 Months,Yes,1385.21297,,Low_spent_Small_value_payments,214.1544075,0,0.3677,-0.5941,0.1219,0.7896,1.2836 -0x1f699,CUS_0x7899,August,19,606-93-6926,Entrepreneur,20813.06,,8,5,25.06745738,5,"Not Specified, Not Specified, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",,27.87935893,3.44,,_,1762.071813,25.90771349,15 Years and 2 Months,Yes,70.48717033,58.06109454,Low_spent_Small_value_payments,280.7736138,0,-0.2061,1.3176,1.2932,-0.0872,-1.04 -0x1f6a5,CUS_0x99d4,August,38,617-22-3560,Teacher,20592.97,1843.080833,637,4,12,7,"Auto Loan, Not Specified, Auto Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Credit-Builder Loan",13.14058108,11.77111402,,5,_,1775.47737,30.93489243,11 Years and 10 Months,Yes,85.2835788,147.4263137,Low_spent_Large_value_payments,221.5981909,0,-1.0963,-0.0225,0.2017,1.0933,-0.1217 -0x1f6b1,CUS_0xb1cd,August,51,350-77-3663,_______,72783.06,6241.255,6,5,17,1,Debt Consolidation Loan,,17,3.52,3,Standard,752.52,22.86129886,26 Years and 4 Months,No,31.75168841,783.6120624,Low_spent_Small_value_payments,98.76174922,0,-0.8853,-0.227,-0.076,0.0931,-0.0441 -0x1f6bd,CUS_0x4a05,August,24,100-32-8737,Entrepreneur,50051.28,3934.94,6,9,34,3,"Payday Loan, Student Loan, and Auto Loan",34.31624237,23,9,13,Bad,1936.41,28.67903769,9 Years and 5 Months,Yes,102.9564408,147.7509413,High_spent_Small_value_payments,402.7866179,0,0.0177,-0.4613,1.1399,1.3872,1.3446 -0x1f6c9,CUS_0x893f,August,44,437-40-9812,_______,53956.32,4514.36,4,6,12,4,"Credit-Builder Loan, Not Specified, Student Loan, and Personal Loan",12.56528892,11,19.13,0,Standard,432.92,41.18616792,22 Years and 5 Months,Yes,158.8455779,68.11602205,High_spent_Large_value_payments,464.4744,0,0.6354,1.0219,-0.4759,0.805,0.4451 -0x1f6d5,CUS_0x9428,August,30,637-66-0198,Engineer,49099.68,4075.967589,8,8,25.88954781,9,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Not Specified",48.91390258,27.44966099,7.98,14,Bad,2442.186032,36.32714537,16 Years and 6 Months,Yes,1562.881547,47.31188721,High_spent_Large_value_payments,275.6128955,0,-0.6135,-1.1022,1.1278,0.5233,1.0406 -0x1f6e1,CUS_0x1018,August,18,731-19-8119,Accountant,61194.81,5014.5675,7,7,24.06745738,8,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",37.0960898,25.51209609,28.63,8,Bad,3382.421822,28.29176143,14 Years and 3 Months,Yes,225.3686914,166.5306299,High_spent_Medium_value_payments,332.8371408,0,1.187,0.5488,-0.9144,1.3295,-0.8714 -0x1f6ed,CUS_0x29d5,August,33,325-05-9932,Scientist,133547.25,11322.9375,0,4,6.288361749,0,Debt Consolidation Loan,,3,8.36,1,Good,323.83,37.76209186,33 Years and 5 Months,No,104.0162763,,Low_spent_Large_value_payments,276.5555357,0,-0.2181,-0.402,-1.622,-2.7538,0.5806 -0x1f6f9,CUS_0x2208,August,37,322-64-6039,Entrepreneur,78956.73,,7,3,14,2,"Payday Loan, and Debt Consolidation Loan",27.26435554,19,10.87,515,_,436.82,25.85655843,22 Years and 2 Months,Yes,128.5586536,313.7803203,Low_spent_Medium_value_payments,490.0337761,0,-1.1265,1.2148,0.5952,1.8606,-0.8661 -0x1f705,CUS_0x69a8,August,39,737-04-1982,Developer,62536.32,5174.36,7,8,25.06745738,100,"Personal Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Payday Loan",,22,33.85,11,Bad,3819.450954,36.64685472,9 Years and 10 Months,Yes,210.4690357,34.74883267,High_spent_Large_value_payments,485.4978437,0,-1.2524,-1.5473,-0.5802,0.4287,1.3108 -0x1f711,CUS_0x8e94,August,56,055-08-1093,Architect,87621.78,7385.815,4,4,1.288361749,4,"Home Equity Loan, Student Loan, Auto Loan, and Mortgage Loan",7.230553249,9,-3.76,4,_,945.593955,34.13873245,32 Years and 4 Months,No,282.7994831,1136.953192,Low_spent_Small_value_payments,116.1661287,0,0.4173,-1.0687,0.8881,-0.4778,0.0157 -0x1f71d,CUS_0x824c,August,22,707-76-1701,Engineer,91610.4,,7,6,5,1,Personal Loan,,20,3.99,1,Standard,938.3791745,29.78842461,22 Years and 2 Months,No,18419,,Low_spent_Medium_value_payments,234.6820609,0,-0.9527,1.4004,1.928,1.5675,-0.0259 -0x1f729,CUS_0xadc4,August,34,640-99-9965,Lawyer,31506.9,,6,10,35.06745738,7,"Credit-Builder Loan, Personal Loan, Not Specified, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",32.77022514,16,16.75,8,Standard,1836.110954,34.19839745,13 Years and 3 Months,Yes,115.7238399,57.46975948,High_spent_Large_value_payments,284.9436126,0,-1.1695,-0.6824,-0.7674,-2.1516,0.7929 -0x1f735,CUS_0x3060,August,23,657-71-7552,Developer,40923.34,3429.278333,6,6,24,8,"Student Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Auto Loan, Home Equity Loan, and Personal Loan",41.44632407,25,20.37,7,Bad,4654.92,30.43975199,6 Years and 0 Months,Yes,244.1355914,56.09001573,High_spent_Large_value_payments,282.7022262,0,0.0409,-1.0465,0.316,-0.746,0.7479 -0x1f741,CUS_0xb915,August,31,647-84-4933,_______,37896.71,,5,5,3,3,"Debt Consolidation Loan, Auto Loan, and Personal Loan",,2.402042555,11.78,8,_,711.7022887,38.55690114,30 Years and 3 Months,No,86.02948649,40.89386256,!@9#%8,411.5825676,0,-0.5212,-0.3358,-1.2204,2.1881,-2.3604 -0x1f74d,CUS_0x8d2e,August,18,771-32-9762,_______,35940.36,,6,7,32,6,"Personal Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Not Specified, and Not Specified",29.55278311,15,1.29,13,Bad,2694.55,28.06595759,18 Years and 8 Months,Yes,107.4893654,,High_spent_Small_value_payments,316.2845956,0,-0.2974,-1.8181,0.9359,1.5052,-0.6975 -0x1f759,CUS_0x22ac,August,18,217-36-2323,Accountant,57786.12,,6,6,32,6,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",28.83724939,19,18.69,7,Standard,1730.05,25.45930449,,Yes,271.749031,296.3164767,High_spent_Small_value_payments,160.5854923,0,-1.0275,-0.4414,-2.6961,-1.3733,0.5556 -0x1f765,CUS_0x39a0,August,33,365-78-5880,Scientist,74005.12,5941.093333,6,8,19.88954781,6,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",31.5566799,22.87593658,12.69,9,_,2456.390911,34.19536372,13 Years and 3 Months,Yes,1514.394534,442.7465557,Low_spent_Small_value_payments,232.6381627,0,-0.5767,0.024,0.3985,0.6895,1.6705 -0x1f771,CUS_0x5ebc,August,41,685-29-3104,Writer,19026.7,1869.558333,8,6,32.06745738,6,"Student Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Personal Loan",24.27136841,16,29.75,13,Bad,3456.160954,28.76266104,9 Years and 10 Months,Yes,54.39768772,51.59536337,Low_spent_Large_value_payments,324.2424943,0,-1.0552,1.047,-0.6814,-0.4682,-1.6584 -0x1f77d,CUS_0x2aed,August,44,650-64-2134,Engineer,79794.6,,8,4,7,4,"Auto Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",15.87149801,13,13.46,5,Standard,830.5,34.39931544,17 Years and 8 Months,Yes,224.7246763,597.0883737,Low_spent_Large_value_payments,140.94195,0,0.456,1.541,-1.2579,-0.4568,0.5538 -0x1f789,CUS_0xc063,August,33,987-95-1111,Entrepreneur,14403.39,922.2825,5,4,8,3,"Mortgage Loan, Mortgage Loan, and Mortgage Loan",12.82610882,12,15.98,4,Standard,2410.015908,29.7457886,14 Years and 8 Months,Yes,23.30431521,131.2196333,Low_spent_Small_value_payments,244.8269764,0,-0.1556,-0.7213,0.0679,-0.8486,0.4136 -0x1f795,CUS_0x5e6a,August,38,253-27-5552,Engineer,31762.34,,3,6,7,2,"Personal Loan, and Auto Loan",16.03683373,12,0.51,4,Standard,175.33,39.51285361,31 Years and 9 Months,No,325.3988707,151.5193137,!@9#%8,344.2868928,0,1.5628,0.6923,0.6455,-0.8074,-1.3324 -0x1f7a1,CUS_0x9f20,August,53,347-03-5379,Engineer,29491.67,2178.639167,5,3,3,1,Payday Loan,,8,2.63,5,Good,757.9680153,37.69186825,30 Years and 8 Months,No,14.67432172,54.94341192,High_spent_Medium_value_payments,404.6454789,0,-0.4108,0.2044,0.0841,1.2091,-0.4241 -0x1f7ad,CUS_0x922,August,32,278-74-1400,Architect,33599.08,2749.923333,5,5,13,4,"Personal Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",9.998931714,10,7.18,5,Standard,743.6,32.85332538,27 Years and 3 Months,Yes,95.59666049,306.6105355,Low_spent_Small_value_payments,162.7851374,0,2.7571,0.1335,-0.194,-0.2497,0.3996 -0x1f7b9,CUS_0x9937,August,46,429-15-7646,Musician,20501034,7257.226667,9,6,22,5,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, and Home Equity Loan",,21.6925676,6.13,11,Bad,1647.348769,28.48837046,9 Years and 10 Months,Yes,220.1984405,179.9678715,High_spent_Medium_value_payments,575.5563547,0,1.1616,0.3791,0.2207,-1.3833,0.3928 -0x1f7c5,CUS_0x5929,August,38,788-65-1538,Teacher,8906.395,,10,5,26.06745738,7,"Student Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Not Specified, Student Loan, and Credit-Builder Loan",24.05965427,15,16.74,9,_,3260.690954,32.99126227,8 Years and 0 Months,Yes,34.32047259,80.61289725,Low_spent_Medium_value_payments,226.1663005,0,0.3338,-0.6748,0.2647,2.0613,-0.5779 -0x1f7d1,CUS_0xb518,August,50,067-00-6687,Accountant,127855.83,10298.40341,5,7,1,4,"Payday Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",17.97003945,13.87562095,9.2,5,_,579.7503076,30.95693478,,No,22375,105.919138,High_spent_Large_value_payments,818.733498,0,0.775,0.1261,-0.4286,1.8715,-0.2116 -0x1f7dd,CUS_0xbc0c,August,50,157-90-1957,Scientist,32637.88,,5,5,10,3,"Not Specified, Personal Loan, and Payday Loan",,11,10.46,3,Standard,1061.77,33.37823361,17 Years and 10 Months,Yes,69.57405666,30.99629501,High_spent_Medium_value_payments,400.9119817,0,0.7034,-1.4825,0.3038,0.2924,0.6597 -0x1f7e9,CUS_0x446c,August,44,289-16-4830,Media_Manager,8177.41,803.4508333,1574,10,22.88954781,7,"Credit-Builder Loan, Student Loan, Not Specified, Not Specified, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",29.0978071,21.61762431,17.02,7,Standard,1538.127466,36.52849501,17 Years and 10 Months,NM,1371.044936,0,High_spent_Large_value_payments,246.3634921,0,-0.9194,-0.5884,0.9135,0.3562,-0.1429 -0x1f7f5,CUS_0xaa81,August,48,#F%$D@*&8,Engineer,58853.46,,5,4,7.288361749,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Mortgage Loan",22.85507877,19,10.91,4,Good,131.0208665,34.24169903,18 Years and 11 Months,No,7857,1137.020816,Low_spent_Small_value_payments,30.7611989,0,-0.0324,-0.42,0.3065,-1.488,-1.1194 -0x1f801,CUS_0x7411,August,21,987-04-1406,Engineer,55473.22,,5,6,7,4,"Debt Consolidation Loan, Payday Loan, Personal Loan, and Personal Loan",31.19302959,20,1.51,4,_,160.87,27.00681586,22 Years and 4 Months,No,180.3434079,173.6166779,Low_spent_Small_value_payments,395.9167476,0,-0.14,-0.1574,0.2253,-0.695,1.0207 -0x1f80d,CUS_0x7b9d,August,25,411-37-9487,Mechanic,16229.86,1216.488333,7,5,29.06745738,6,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Personal Loan",51.62383746,29.60948228,19.58,9,_,3687.896271,27.88712092,11 Years and 2 Months,NM,64.06840948,,Low_spent_Small_value_payments,172.046382,0,1.0772,-0.5509,0.1263,0.0303,-0.472 -0x1f819,CUS_0x50fe,August,43,721-27-1795,Architect,20597.09,,5,5,18,4,"Home Equity Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",15.12015109,15,10.84,7,Standard,519.5514194,31.12006646,15 Years and 11 Months,Yes,18423,22.80958587,High_spent_Medium_value_payments,372.4157569,0,-1.432,1.3392,1.4584,-0.6811,1.5861 -0x1f825,CUS_0xa009,August,27,534-99-4357,_______,39089.09,,2,4,1,3,"Credit-Builder Loan, Not Specified, and Personal Loan",11.16500476,11,5.1,3,Good,474.96,32.5704863,19 Years and 3 Months,No,53.515554,203.2268781,High_spent_Small_value_payments,312.1999846,0,-0.1502,-0.9138,-1.2657,0.2452,-1.0011 -0x1f831,CUS_0x9680,August,27,049-07-6085,Teacher,12148578,2723.325833,7,6,8,3,"Personal Loan, Home Equity Loan, and Credit-Builder Loan",21.52710749,19,24.86,9,Standard,876.74,31.44455381,28 Years and 3 Months,NM,61.26719603,113.9648826,Low_spent_Small_value_payments,387.1005047,0,-1.0429,0.1342,-1.3306,0.4913,0.9384 -0x1f83d,CUS_0xc491,August,36,878-88-0534,Developer,36787.05,3351.5875,7,7,10,0,,,10.93227055,10.17,5,Good,616.9242193,27.23038165,16 Years and 3 Months,No,0,132.6385733,Low_spent_Small_value_payments,492.5201767,0,-0.7326,0.3071,-0.0651,-1.6714,0.0954 -0x1f849,CUS_0xb646,August,27,565-33-6888,Developer,36685.74,2807.145,6,7,25.06745738,9,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",,20.37110007,14.9,14,Bad,4084.975797,37.9308087,11 Years and 5 Months,Yes,18869,100.4013887,Low_spent_Small_value_payments,173.1800298,0,-0.1001,1.0183,0.0939,0.6206,0.6998 -0x1f855,CUS_0x4bf4,August,41,761-39-6887,Manager,17150.815,,1,5,3,0,,6.454240753,9,11.52,,Good,525.3179438,30.20540902,21 Years and 2 Months,No,78575,61.07251697,High_spent_Medium_value_payments,331.5400273,0,-2.5209,-0.7949,-0.7487,1.1749,1.0774 -0x1f861,CUS_0xa4fd,August,35,360-74-8260,Accountant,64930.47,5286.8725,4,7,20,2,"Payday Loan, and Personal Loan",22.94364125,19,,4,Standard,1239.09,23.96618654,22 Years and 3 Months,Yes,91.12971164,127.1295454,High_spent_Large_value_payments,550.427993,0,1.1484,-0.4438,-0.5343,1.9728,-1.5224 -0x1f86d,CUS_0x997,August,80,914-87-9289,Mechanic,23681.87,,3,5,15,3,"Payday Loan, Mortgage Loan, and Credit-Builder Loan",,11,4.51,0,Standard,1433.17,31.88297719,21 Years and 0 Months,No,41.64279282,48.42444835,High_spent_Small_value_payments,352.5816755,0,-0.4044,0.1821,-0.9951,1.5914,1.9459 -0x1f879,CUS_0xbe70,August,41,071-52-3069,Mechanic,7243.44,614.62,7,10,34.06745738,5,"Auto Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",42.49370888,20.1937484,3.79,12,Standard,3097.363947,41.3331763,16 Years and 2 Months,Yes,18.97308424,33.45100727,Low_spent_Small_value_payments,272.3176205,0,-1.839,-0.7821,0.2948,0.5976,-1.5455 -0x1f885,CUS_0x91ca,August,44,#F%$D@*&8,Scientist,32361.61,,4,3,19,2,"Home Equity Loan, and Debt Consolidation Loan",17.96387928,13,17.07,12,Standard,1171.75,38.09157897,15 Years and 3 Months,Yes,34.35693326,214.2296542,Low_spent_Small_value_payments,301.8934959,0,-0.2775,-0.0486,2.0598,0.9429,0.1635 -0x1f891,CUS_0xb32a,August,38,504-09-5317,Doctor,75069.09,,7,6,5,3,"Student Loan, Debt Consolidation Loan, and Payday Loan",21.3561747,17.48278981,0.9,7,Good,1178.764749,26.62328568,16 Years and 5 Months,NM,124.6506548,445.0462719,Low_spent_Medium_value_payments,348.5788233,0,1.7384,-1.8114,0.9045,1.8198,-0.8944 -0x1f89d,CUS_0x41c9,August,52,274-12-3426,Musician,78261.62,6373.801667,1,1,5.288361749,2,"Personal Loan, Mortgage Loan, and Payday Loan",2.267219214,5,7.66,,Good,385.0444735,35.48572929,26 Years and 8 Months,No,111.1558844,1040.126574,Low_spent_Medium_value_payments,248.436499,0,0.8995,-0.7983,-0.074,0.235,-2.216 -0x1f8a9,CUS_0x6993,August,51,231-37-0491,Developer,34146.86,,4,7,1,2,"Credit-Builder Loan, and Credit-Builder Loan",10.38130709,10,2.07,6,Good,142.3379131,37.47041576,,No,56.3343453,230.3690064,Low_spent_Large_value_payments,305.1513077,0,0.4905,1.763,-0.7531,2.3809,-0.0292 -0x1f8b5,CUS_0x9230,August,24,049-60-8430,Journalist,94498.95,7950.9125,8,6,15,0,,,19,9.09,1339,Standard,1432.94,37.5629003,,No,0,125.845993,High_spent_Medium_value_payments,919.245257,0,-1.5095,0.8879,0.4082,-0.7203,0.6311 -0x1f8c1,CUS_0x93e,August,43,061-94-6784,Accountant,20799.59,,2,5,3815.288362,0,,,3243,5.16,2,_,33.25,37.3559508,20 Years and 9 Months,No,0,473.9315919,High_spent_Medium_value_payments,339.5357857,0,0.1775,-1.1546,-1.5411,0.3026,-0.1644 -0x1f8cd,CUS_0xc56c,August,42,897-95-5360,Doctor,59703.03,,6,6,13,7,"Not Specified, Home Equity Loan, Auto Loan, Student Loan, Mortgage Loan, Home Equity Loan, and Not Specified",,20,18.05,5,Standard,1795.28,37.08686096,12 Years and 11 Months,Yes,295.1676601,,Low_spent_Medium_value_payments,150.9815536,0,-1.9907,1.0726,-0.2494,1.7257,0.6684 -0x1f8d9,CUS_0x70a0,August,46,689-54-9230,Mechanic,50298.42,4391.535,9,5,23.06745738,5,"Payday Loan, Home Equity Loan, Not Specified, Payday Loan, and Home Equity Loan",29.64786498,18.60340315,1.47,7,Bad,3813.531573,36.70316701,2 Years and 0 Months,Yes,195.2648376,131.0543755,High_spent_Small_value_payments,346.113999,0,1.1201,-0.0443,0.2091,0.34,0.5702 -0x1f8e5,CUS_0x119e,August,38,498-27-0676,Mechanic,63601.48,,3,7,15,6,"Auto Loan, Mortgage Loan, Student Loan, Home Equity Loan, Auto Loan, and Not Specified",20.27970528,13,19.49,6,Standard,1191.91,25.704062,,Yes,184.6916346,121.5170424,High_spent_Large_value_payments,473.8036564,0,0.3119,1.3135,-1.5527,-1.5372,1.1862 -0x1f8f1,CUS_0x7b52,August,35,015-91-6589,_______,14387.47,,7,7,17,8,"Debt Consolidation Loan, Personal Loan, Payday Loan, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, and Home Equity Loan",39.55513519,25.39577258,20.13,8,Bad,4905.845765,26.14211219,14 Years and 3 Months,Yes,80.33755406,,Low_spent_Medium_value_payments,250.7810419,0,0.8194,-1.9001,-1.0147,0.1279,0.0083 -0x1f8fd,CUS_0x85bb,August,50,549-77-8639,Writer,20203.625,1722.635417,0,5,5,0,,11.50698617,6,4.07,4,Good,318.06,37.63278264,29 Years and 5 Months,No,0,34.82558181,!@9#%8,397.4379599,0,-0.8847,-0.0937,-0.8972,-0.2748,-0.2381 -0x1f909,CUS_0x3091,August,34,571-59-9270,Developer,76992.72,6558.06,6,7,33,5,"Home Equity Loan, Student Loan, Auto Loan, Auto Loan, and Not Specified",21.39269736,18,12.48,9,Standard,1594.5,28.94007004,11 Years and 3 Months,Yes,284.942804,,Low_spent_Large_value_payments,189.916709,0,0.6761,1.9018,-0.3507,-0.0257,1.1919 -0x1f915,CUS_0x5e99,August,44,446-38-0435,Mechanic,56001.15,4662.7625,3,6,8,3,"Not Specified, Personal Loan, and Not Specified",17.29970152,,8.33,8,Standard,1347.83,38.56829958,15 Years and 9 Months,Yes,88.30262559,303.5454772,High_spent_Small_value_payments,334.4281472,0,0.2663,-1.1542,0.2571,0.5206,-0.3862 -0x1f921,CUS_0x74d2,August,32,152-76-6067,Writer,21205.82,,3,3,3,0,,,6.079278135,10.72,3,Good,922.0715298,39.51519016,23 Years and 11 Months,No,0,80.63337455,Low_spent_Small_value_payments,397.3817921,0,0.0728,-1.017,0.2338,1.4271,-0.3171 -0x1f92d,CUS_0x74a6,August,49,702-84-4647,Engineer,16199.955,1140.99625,3,7,7,4,"Mortgage Loan, Student Loan, Credit-Builder Loan, and Auto Loan",9.289323406,11,4.88,0,Good,446.66,34.03887469,29 Years and 5 Months,No,39.7823257,75.14501655,Low_spent_Medium_value_payments,279.1722827,0,-1.0179,-0.3781,1.5372,2.094,-0.1675 -0x1f939,CUS_0x2a79,August,34,888-64-2878,Doctor,88606.92,,5,5,9,100,Auto Loan,,12,11.66,0,Standard,518.87,39.13413828,27 Years and 8 Months,No,61.24107455,318.9465696,Low_spent_Medium_value_payments,651.6033558,0,-1.2819,-1.0517,-0.2369,1.9092,0.0539 -0x1f945,CUS_0xb6e3,August,18,#F%$D@*&8,Mechanic,61533.36,5186.78,821,3,9,5,"Not Specified, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Payday Loan",24.46933078,18,11.28,6,Standard,1029.35,30.40402608,15 Years and 0 Months,Yes,251.5226785,72.73006134,High_spent_Medium_value_payments,444.4252602,0,0.2115,-0.192,0.1974,0.0672,0.061 -0x1f951,CUS_0x4696,August,24,#F%$D@*&8,Accountant,46783.08,,3,7,20,7,"Personal Loan, Personal Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",14.72493776,10,8.04,9,Standard,1558.33,33.36331583,13 Years and 10 Months,Yes,236.3197006,497.1177699,Low_spent_Small_value_payments,,0,1.1445,-0.6187,-2.2582,0.6603,-0.3429 -0x1f95d,CUS_0x6ad0,August,19,405-70-6631,Writer,8027.195,,10,5,21.06745738,2,"Personal Loan, and Student Loan",47.12868974,31.50172861,1.48,14,Bad,2196.822058,29.92768816,10 Years and 0 Months,Yes,8.961406106,,Low_spent_Small_value_payments,278.1196755,0,0.4855,-0.2046,0.1939,0.0969,-0.7064 -0x1f969,CUS_0x747a,August,32,491-04-3523,Manager,88072.59,7511.3825,3,5,5,4,"Not Specified, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",33.49345056,22,-4.04,4,Standard,1060.69,27.81704915,18 Years and 10 Months,Yes,259.4323933,318.9000244,High_spent_Medium_value_payments,422.8058323,0,-0.6254,-0.855,0.0896,0.0987,-1.2564 -0x1f975,CUS_0x5376,August,41,025-25-1011,_______,145545.36,11984.78,1,4,8.288361749,100,Payday Loan,,3,9.73,1,Good,168.33,28.68701196,21 Years and 8 Months,No,114.5184505,861.7544297,High_spent_Medium_value_payments,892.1425808,0,-0.9274,0.3857,1.6122,-0.2956,0.6319 -0x1f981,CUS_0x351d,August,41,474-20-5541,Musician,146771.72,12197.97667,5,4,19,2,"Credit-Builder Loan, and Payday Loan",9.892044543,10.79837057,4.72,1,Standard,54.24915295,39.45294048,29 Years and 10 Months,No,194.9600336,420.9908376,High_spent_Medium_value_payments,853.8467955,0,-2.5954,0.091,0.6409,0.0892,0.9822 -0x1f98d,CUS_0x12cc,August,30,761-36-5969,Developer,20521.36,1721.113333,10,8,17,3,"Personal Loan, Payday Loan, and Mortgage Loan",21.38828807,14.5270232,14.94,10,Standard,2143.122481,22.72443389,,Yes,42.15204181,,!@9#%8,244.4192926,0,-1.1765,-0.59,-0.6731,-1.6152,-2.0246 -0x1f999,CUS_0x9664,August,22,#F%$D@*&8,Manager,15197.25,979.4375,6,5,20,8,"Mortgage Loan, Student Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",32.95695997,23.80099883,25.4,10,Bad,3634.100568,24.38158063,5 Years and 2 Months,Yes,89.07717529,65.91063582,Low_spent_Medium_value_payments,222.9559389,0,0.8381,-0.0382,1.585,-0.1477,-0.6123 -0x1f9a5,CUS_0x8e89,August,32,059-84-1813,Accountant,32763.42,,4,3,1,3,"Auto Loan, Personal Loan, and Student Loan",,11,3.52,3,Good,284.34,24.58037257,21 Years and 11 Months,No,53.77655109,266.3665784,Low_spent_Small_value_payments,251.7853705,0,-0.1109,1.1917,-0.0401,2.1887,-0.5601 -0x1f9b1,CUS_0xafa8,August,21,690-70-6950,Teacher,16832.68,,5,4,11,1,Home Equity Loan,,8,8.21,5,Good,516.43,22.49476851,26 Years and 4 Months,No,10.59272189,154.9026778,!@9#%8,266.1769337,0,-1.0183,0.3232,-1.8643,0.14,0.0744 -0x1f9bd,CUS_0x2665,August,36,366-98-6938,Accountant,65000.73,,7,4,18,3,"Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",14.45898215,14,7.08,0,Standard,1346.77,35.88113751,,Yes,151.8025374,145.9182031,High_spent_Medium_value_payments,511.1520095,0,-1.9234,-1.3371,1.2892,0.7846,-1.8476 -0x1f9c9,CUS_0x84d,August,46,538-78-5821,Media_Manager,33929.89,2649.490833,3,5,17,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Student Loan",10.83543934,10,5.4,4,Standard,1219.04,37.6636533,24 Years and 10 Months,No,89.77963302,224.2898038,Low_spent_Large_value_payments,220.8796465,0,-0.2126,-0.5117,-0.649,0.7693,1.1398 -0x1f9d5,CUS_0x5f2f,August,18,649-29-0292,Scientist,18083.015,,0,5,6,1,Mortgage Loan,4.789642223,7,4.78,3,Good,796.31,28.3262696,28 Years and 0 Months,No,8.350875465,,!@9#%8,375.8806823,0,0.7603,0.2877,-1.2558,-0.0555,0.959 -0x1f9e1,CUS_0x64c9,August,28,717-48-4776,Architect,68487.03,,8,4,11,7,"Not Specified, Payday Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",22.27233138,17,18.95,8,_,371.1778243,24.16369493,19 Years and 4 Months,NM,208.0922881,161.0803264,High_spent_Large_value_payments,479.9754087,0,0.4424,0.2329,-0.2593,0.1986,-1.0139 -0x1f9ed,CUS_0x18ca,August,46,#F%$D@*&8,Engineer,79716.94,,0,4,6,1,Payday Loan,,,8.63,4,Good,1388.116345,42.27670921,20 Years and 0 Months,No,57.20732166,152.2231162,High_spent_Small_value_payments,687.7773954,0,0.3395,0.0036,0.7321,0.2397,1.1048 -0x1f9f9,CUS_0x705d,August,24,168-38-5634,Manager,44438.41,3974.200833,3,2,10,1,Home Equity Loan,1.565305059,4,2.37,9,Good,729.0371985,23.07840389,30 Years and 10 Months,NM,32.45898449,143.9509189,High_spent_Medium_value_payments,490.2559882,0,-0.4647,-1.2443,-1.3959,-0.4044,0.6968 -0x1fa05,CUS_0x80fd,August,36,203-81-2427,Developer,41509.62,3282.36832,8,8,23.88954781,6,"Personal Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Not Specified, and Payday Loan",22.73434203,,13.98,10,Standard,2657.535113,28.22051575,16 Years and 8 Months,Yes,1610.315772,,Low_spent_Medium_value_payments,233.4300478,0,-0.6917,0.7577,-0.9481,0.4798,0.756 -0x1fa11,CUS_0x752b,August,25,863-32-1538,Accountant,114919.56,9619.63,3,5,9,0,,0,1,3.45,7,Good,141.69,26.20705459,28 Years and 8 Months,No,0,10000,!@9#%8,375.9228495,0,0.5795,-0.2384,-0.9333,-0.2177,0.9646 -0x1fa1d,CUS_0x8c2c,August,21,955-06-8786,Developer,91532.61,,4,3,5,3,"Personal Loan, Auto Loan, and Mortgage Loan",3.987684981,7,6.36,8,_,1063.087085,35.4591245,28 Years and 11 Months,No,201.6985163,130.4847148,High_spent_Large_value_payments,679.600943,0,0.2392,-0.1599,-1.386,-1.109,0.512 -0x1fa29,CUS_0x3439,August,51,223-23-5210,Doctor,29112.32,2333.026667,2,1,6,2,"Not Specified, and Auto Loan",1.191116774,4,2.87,4,Good,1128.503421,41.19118008,21 Years and 3 Months,No,28.03740948,148.2075773,High_spent_Small_value_payments,335.1085816,0,-0.9097,-2.0674,0.7559,-0.7862,-1.13 -0x1fa35,CUS_0x8fb8,August,34,430-79-5000,Journalist,9916.865,,8,7,34,4,"Personal Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",40.94198912,28.77580939,2.98,8,Bad,2186.990574,25.07923611,6 Years and 5 Months,Yes,18.53067555,58.81478509,Low_spent_Small_value_payments,319.995081,0,1.1955,-0.2658,-1.1315,0.068,1.4358 -0x1fa41,CUS_0x9e56,August,24,773-16-8211,Musician,28195.29,,3,4,11,3,"Auto Loan, Auto Loan, and Student Loan",6.798286136,7,2.04,8,Good,1102.123227,28.87771213,24 Years and 8 Months,No,148.3172679,182.7284694,Low_spent_Small_value_payments,302.2989306,0,0.3035,0.9452,-1.2721,1.34,0.5833 -0x1fa4d,CUS_0x3595,August,44,578-52-7354,Musician,33276.28,,4,4,10.28836175,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",12.81829125,14,3.9,,Good,339.3200564,27.4341371,28 Years and 4 Months,No,68.75598033,632.2738477,!@9#%8,282.4385659,0,-0.5913,-1.3717,-1.3507,-0.8458,-1.6705 -0x1fa59,CUS_0x4630,August,43,654-75-2504,Scientist,29086.41,,4,7,13,1,Payday Loan,,7,16.4,6,Standard,1394.56,24.90117833,26 Years and 8 Months,Yes,15.51965992,218.1958103,Low_spent_Small_value_payments,279.9712798,0,-0.1355,-0.9023,1.2012,-1.1332,0.4541 -0x1fa65,CUS_0x1bf1,August,55,#F%$D@*&8,Lawyer,18320277,3938.193333,5,7,6.288361749,0,Credit-Builder Loan,,8,7.55,2,Good,515.73,37.17568546,20 Years and 3 Months,No,35.37456946,685.4295672,Low_spent_Small_value_payments,382.9526577,0,1.4255,0.6096,-0.0081,0.941,-1.0061 -0x1fa71,CUS_0xacab,August,49,489-93-0775,Engineer,84114.6,6873.55,8,7,16,3,"Personal Loan, Personal Loan, and Mortgage Loan",27.56300824,20,2.99,3,Standard,779.09,29.13511108,16 Years and 10 Months,NM,156.531442,117.6763537,High_spent_Large_value_payments,653.1472043,0,0.609,-0.1001,-0.0965,1.1065,1.2439 -0x1fa7d,CUS_0x86ab,August,55,498-78-4795,Mechanic,107677.98,,3,4,12,2,"Not Specified, and Personal Loan",7.699939565,9,3.27,7,Standard,877.65,40.30525621,25 Years and 9 Months,No,99.79079421,191.698177,High_spent_Large_value_payments,834.1275288,0,0.6387,0.7096,0.8098,2.3081,-1.5556 -0x1fa89,CUS_0xa509,August,27,501-02-4055,Engineer,130210.2,10971.85,7,4,5,1,Home Equity Loan,6.229890495,6,18.32,4,Standard,61.98,29.0150292,,Yes,68.89613597,,!@9#%8,234.0504715,0,-0.0753,0.2566,0.2859,-1.0935,1.1992 -0x1fa95,CUS_0x6acd,August,20,438-43-4986,Accountant,80692.28,,7,6,15,5,"Student Loan, Credit-Builder Loan, Student Loan, Student Loan, and Not Specified",41.46936328,23.8540073,,13,Bad,3021.612426,31.60001317,10 Years and 5 Months,Yes,285.0286814,259.418228,Low_spent_Small_value_payments,431.1887573,0,2.3665,0.1277,0.1491,-1.8313,-1.8755 -0x1faa1,CUS_0x687f,August,46,877-31-3897,Accountant,10482.625,,3,4,12,7,"Payday Loan, Not Specified, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",17.58302004,14.61743366,13.47,7,Standard,161.5460082,23.0241302,14 Years and 3 Months,Yes,61.00202533,33.27498738,Low_spent_Medium_value_payments,276.9781956,0,-0.3824,-0.4325,-0.5855,-1.0923,0.5292 -0x1faad,CUS_0x640a,August,32,446-54-8731,Architect,10344.865,,10,516,23.06745738,3,"Home Equity Loan, Payday Loan, and Personal Loan",,19.76796214,8.46,12,Bad,3013.397034,27.98153193,10 Years and 9 Months,Yes,14.49380677,,Low_spent_Small_value_payments,217.2649654,0,-0.2646,-0.8357,1.2184,-1.1511,-0.5389 -0x1fab9,CUS_0xc140,August,21,982-14-9347,Entrepreneur,17844.19,,4,6,14,4,"Home Equity Loan, Not Specified, Personal Loan, and Auto Loan",30.23220295,20,5.59,4,_,84.95,27.96652149,22 Years and 11 Months,Yes,53.39852233,114.2016736,High_spent_Small_value_payments,264.7013874,0,-1.8137,-1.3578,1.5315,0.0031,-0.5391 -0x1fac5,CUS_0x2ce6,August,30,140-24-8696,Mechanic,143570.8,12000.23333,1,4,5,2,"Credit-Builder Loan, and Not Specified",,2,9.34,2,Good,1331.5,29.29630461,32 Years and 6 Months,No,123.3110561,797.7538321,High_spent_Small_value_payments,538.9584451,0,-0.8655,0.3133,1.4827,-0.7408,1.5058 -0x1fad1,CUS_0x5984,August,28,401-11-2941,Engineer,59992.12,,6,9,22.88954781,8,"Personal Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Not Specified",26.63292765,18.95644743,18.41,13,Bad,2951.823303,29.35704347,6 Years and 9 Months,Yes,1672.814167,116.7870733,High_spent_Medium_value_payments,292.6030116,0,0.3787,0.5265,-0.4627,-0.085,0.5924 -0x1fadd,CUS_0x3e09,August,33,110-68-4678,Journalist,7184.235,848.68625,6,8,32.95700519,7,"Payday Loan, Not Specified, Home Equity Loan, Home Equity Loan, Auto Loan, Not Specified, and Personal Loan",43.50081135,24.6518522,-4.46,13,Bad,2783.984199,31.69589934,17 Years and 6 Months,Yes,1356.66157,24.83481974,Low_spent_Medium_value_payments,262.3218656,0,0.9713,-0.8373,-1.6529,1.1136,-0.4944 -0x1fae9,CUS_0x3f62,August,37,273-95-4723,_______,77594.48,,10,10,29,4,"Personal Loan, Not Specified, Mortgage Loan, and Home Equity Loan",23.06283171,15.39821437,19.04,11,Standard,1504.887669,36.42529479,13 Years and 4 Months,Yes,138.8344021,68.44290314,High_spent_Large_value_payments,696.4433614,0,-0.9174,1.9264,-0.1963,-1.2578,1.2213 -0x1faf5,CUS_0x7fe2,August,36,517-05-0352,Developer,84604.8,6899.4,4,896,13.28836175,2,"Credit-Builder Loan, and Not Specified",5.883392994,8,1.71,3,Standard,756.43,25.23795402,25 Years and 4 Months,Yes,80.24070813,860.966122,Low_spent_Medium_value_payments,448.6706309,0,-0.0719,-1.5406,0.1686,0.1413,0.1912 -0x1fb01,CUS_0x7f2c,August,54,866-34-6909,Developer,26596.91,,6,7,13,3,"Payday Loan, Credit-Builder Loan, and Payday Loan",16.55725626,12,10.83,3,_,758.679146,32.12749078,20 Years and 4 Months,Yes,303.2298303,263.0932101,Low_spent_Small_value_payments,252.2272432,0,-0.2216,0.747,2.0067,-1.7485,0.1229 -0x1fb0d,CUS_0x9cb8,August,21,551-17-7639,Media_Manager,73675.65,6073.6375,5,4,20,1,Debt Consolidation Loan,15.20422496,15,6,7,Standard,56.92,25.76853198,31 Years and 11 Months,Yes,31.60653482,85.53612396,High_spent_Large_value_payments,730.2210912,0,-1.2387,2.2275,-0.0989,-1.1894,-0.2906 -0x1fb19,CUS_0x20bf,August,27,624-83-4933,Developer,22380.18,,5,6,14,3,"Payday Loan, Payday Loan, and Auto Loan",20.11889288,16,0.58,6,Standard,831.7733857,32.90732291,22 Years and 11 Months,Yes,272.6659275,191.0594437,!@9#%8,249.5774786,0,0.6861,-0.3376,-1.4166,-1.5659,-0.1594 -0x1fb25,CUS_0x6bad,August,43,415-46-9238,Scientist,12144.58,1006.048333,4,5,8.067457376,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",,9,17.63,2,_,1516.170954,24.36391847,27 Years and 0 Months,Yes,23.11978447,40.48786229,High_spent_Small_value_payments,270.2768986,0,-0.1267,0.4925,-0.0797,-0.3401,0.6771 -0x1fb31,CUS_0xa414,August,22,545-94-2096,Journalist,19627.93,1339.660833,0,7,11.28836175,4,"Payday Loan, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,12,1.32,7,Good,141.58,25.14705079,17 Years and 10 Months,No,51.00037096,461.9242088,Low_spent_Large_value_payments,310.9789646,0,-0.1211,-2.4164,1.3695,0.3827,0.1782 -0x1fb3d,CUS_0x4bdc,August,28,399-73-2521,Teacher,35007.33,3158.2775,5,2,2,0,,3.954438247,7,2.12,6,_,681.0277998,29.00628127,,No,0,,High_spent_Medium_value_payments,459.308621,0,2.156,1.6335,-1.28,-1.0959,-1.6688 -0x1fb49,CUS_0x15c4,August,38,267-54-6899,Journalist,21093.41,,1,5,10,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",9.368677997,9,6.07,7,Good,634.7530266,30.47809078,27 Years and 4 Months,NM,29.95903657,210.9866895,Low_spent_Small_value_payments,246.8345692,0,0.2442,-0.805,0.5192,0.2196,0.3088 -0x1fb55,CUS_0x471f,August,25,220-69-1489,Manager,31977.44,,10,9,23.88954781,7,"Credit-Builder Loan, Not Specified, Mortgage Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Home Equity Loan",29.97697954,22,1.33,11,_,2256.77,23.54423982,11 Years and 10 Months,Yes,1508.974487,,Low_spent_Small_value_payments,230.6835654,0,0.5212,1.0186,-0.7179,0.1282,-0.043 -0x1fb61,CUS_0xc288,August,39,470-59-7781,Manager,25876.18,2293.348333,4,6,6.288361749,2,"Student Loan, Credit-Builder Loan, and Personal Loan",15.48472988,15,10.29,4,Standard,71.54,39.48991448,21 Years and 9 Months,No,37.3743497,539.1346668,Low_spent_Small_value_payments,362.7632779,0,0.6755,1.1979,-0.5594,0.7855,0.4094 -0x1fb6d,CUS_0x4f34,August,32,735-06-5723,Teacher,43442.97,3748.2475,8,8,27.06745738,7,"Debt Consolidation Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Student Loan",45.6967507,24.88473556,-0.9,14,_,4866.128789,31.55492259,1 Years and 11 Months,Yes,249.9641639,,!@9#%8,255.1333887,0,-1.5857,-0.9117,1.4004,-0.9699,-0.586 -0x1fb79,CUS_0x8327,August,40,590-97-4255,Engineer,28079.86,2103.988333,3,3,20,3,"Home Equity Loan, Auto Loan, and Debt Consolidation Loan",,19,4.51,7,Standard,577.91,26.19295191,,No,58.48892993,,High_spent_Small_value_payments,353.586923,0,1.2632,0.1845,0.728,0.2577,0.5188 -0x1fb85,CUS_0x1c1f,August,22,547-35-1825,Writer,24922.12,,8,4,5,0,,,20.50039455,8.37,2,Standard,467.7499524,30.311732,28 Years and 5 Months,No,0,173.6184935,Low_spent_Medium_value_payments,323.9658398,0,-0.2299,-1.2389,0.9906,-1.2758,0.4465 -0x1fb91,CUS_0x82a3,August,28,467-13-7563,Manager,44332.62,3691.385,9,8,28,3,"Debt Consolidation Loan, Student Loan, and Student Loan",35.15192042,25.82766066,15.94,8,Bad,2575.328841,34.75406329,8 Years and 8 Months,Yes,75.71692856,185.6750018,Low_spent_Medium_value_payments,387.7465697,0,0.9626,2.8297,-0.8618,1.2011,-0.2263 -0x1fb9d,CUS_0x2ac8,August,32,489-33-3435,Engineer,26053.36,,8,6,11,2,"Personal Loan, and Home Equity Loan",,14,13.13,0,_,1339.71,39.70313332,24 Years and 2 Months,Yes,67726,148.4768968,Low_spent_Medium_value_payments,297.7044536,0,-1.8233,0.3805,-1.8725,-0.0848,1.1532 -0x1fba9,CUS_0xc07f,August,19,416-52-9051,Architect,42491.46,,6,10,15,3,"Payday Loan, Payday Loan, and Not Specified",26.79585043,19,9.74,13,Standard,1780.79,33.55216979,10 Years and 5 Months,Yes,105.4130358,327.8140733,Low_spent_Large_value_payments,213.868391,0,-1.0079,0.4474,-0.1482,-0.1359,0.6391 -0x1fbb5,CUS_0x2e20,August,25,774-07-1152,Media_Manager,63847.8,,8,3,32,7,"Auto Loan, Student Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Not Specified",,14,,6,Standard,2440.4,31.98365959,6 Years and 6 Months,Yes,257.2212679,156.2912203,High_spent_Medium_value_payments,352.1525118,0,1.0489,-0.5621,-0.0924,-0.6378,0.3045 -0x1fbc1,CUS_0xc51c,August,45,519-73-2600,Engineer,62475.66,5214.305,6,8,30,2,"Home Equity Loan, and Not Specified",,21,3.12,7,Bad,2496.64,32.03059725,18 Years and 8 Months,NM,68.05002537,,Low_spent_Small_value_payments,40.02230514,0,0.2885,0.262,-0.7841,-0.8777,-0.9849 -0x1fbcd,CUS_0x9fd0,August,39,974-82-7446,Developer,140254.92,11929.91,5,1,12,0,,,10,1.24,3,Good,663.25,40.69049922,19 Years and 4 Months,No,0,173.581237,High_spent_Medium_value_payments,1269.409763,0,1.1265,0.2445,0.416,-0.793,-0.0215 -0x1fbd9,CUS_0x41bf,August,44,693-64-7611,Journalist,61990.52,,10,10,25.88954781,9,"Auto Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, and Student Loan",,24.38059463,19.32,9,Bad,4036.308054,27.97370335,13 Years and 9 Months,Yes,1678.62684,10000,Low_spent_Small_value_payments,31.87991453,0,-1.4826,-0.5084,-0.4459,1.7093,-0.3274 -0x1fbe5,CUS_0x5bce,August,35,695-62-7237,Writer,18949.48,1569.123333,0,3,9,2,"Debt Consolidation Loan, and Debt Consolidation Loan",4.045411904,5,3.72,4,Good,875.0464937,36.93469208,27 Years and 3 Months,No,27.25736666,122.5697829,Low_spent_Small_value_payments,308.7078702,0,2.5448,-1.4716,-0.0206,-0.4534,0.3652 -0x1fbf1,CUS_0x3bbf,August,80,753-82-5553,Developer,23304.3,2000.025,4,7,15,0,,14.05431517,10,10.14,8,Standard,366.22,37.21147708,15 Years and 10 Months,Yes,0,,Low_spent_Small_value_payments,384.827748,0,-1.4433,-0.2298,-0.4692,-0.1521,0.1374 -0x1fbfd,CUS_0x7651,August,40,300-72-2019,Manager,57321.36,4666.78,10,10,22,9,"Payday Loan, Payday Loan, Payday Loan, Personal Loan, Student Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Not Specified",,19.42571896,5.68,7,Bad,2455.006928,37.24166855,19 Years and 4 Months,Yes,420.8886784,116.0632627,High_spent_Medium_value_payments,179.7260589,0,-1.1937,0.3291,0.2188,-0.3782,-0.2173 -0x1fc09,CUS_0x259d,August,25,130-17-0626,Doctor,22433.46,1493.442041,4,3,2674,1,Payday Loan,0,4,4.73,4,Good,995.9422359,33.17687551,28 Years and 6 Months,No,101.543103,52.11562559,High_spent_Small_value_payments,363.9083761,0,0.2407,0.7315,-1.2035,-0.3197,-0.1854 -0x1fc15,CUS_0x3e10,August,35,980-19-8289,Entrepreneur,55938.51,4904.5425,9,6,28,5,"Payday Loan, Student Loan, Not Specified, Home Equity Loan, and Personal Loan",29.74306476,21.51840003,16.27,12,Standard,2899.714859,30.85496338,20 Years and 0 Months,Yes,178.1731736,10000,!@9#%8,436.517077,0,-1.3612,0.666,-1.3851,1.4222,0.7107 -0x1fc21,CUS_0x43a6,August,33,331-17-1290,Manager,41998.55,3435.879167,5,2,12,3,"Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",0,4,6.48,3,Good,62.77752949,37.14694409,16 Years and 5 Months,No,60.31338378,117.3931575,High_spent_Medium_value_payments,431.6668657,0,-1.8873,-0.8123,-1.4089,0.4989,0.2372 -0x1fc2d,CUS_0x112e,August,32,981-03-7949,Mechanic,20162.26,,8,4,11,4,"Home Equity Loan, Home Equity Loan, Personal Loan, and Auto Loan",16.7259775,,1.71,2,Standard,660.26,34.4970261,19 Years and 9 Months,No,66.24488172,209.3396867,Low_spent_Small_value_payments,201.6342649,0,1.2014,-0.4115,0.8908,1.6594,-0.1598 -0x1fc39,CUS_0x867f,August,27,834-62-2160,Musician,18525.13,,10,9,35.06745738,2,"Mortgage Loan, and Debt Consolidation Loan",27.34403511,17.94692569,19.47,7,Standard,2079.42159,27.06744406,11 Years and 0 Months,Yes,18.40803231,10000,Low_spent_Medium_value_payments,295.4509843,0,-2.4322,0.5338,-1.1018,0.1889,-0.1263 -0x1fc45,CUS_0x91ed,August,43,466-76-1644,Doctor,18008.65,1601.720833,3,4,8,3,"Auto Loan, Not Specified, and Not Specified",18.66332064,,3.71,6,Standard,794.29,38.11572373,25 Years and 11 Months,No,39.19348048,143.3316025,Low_spent_Small_value_payments,267.6470003,0,-0.9152,-0.5671,0.3836,-1.0937,-0.4033 -0x1fc51,CUS_0x6a8f,August,46,088-45-9859,Lawyer,162687.32,13421.27667,1,5,9.288361749,2,"Mortgage Loan, and Personal Loan",6.25406963,8,4.52,4,_,1071.648112,24.81241725,26 Years and 3 Months,No,258.4795862,1356.447648,Low_spent_Medium_value_payments,545.5457327,0,0.7807,-0.3202,-0.2465,-0.2358,-0.6579 -0x1fc5d,CUS_0x6735,August,36,032-19-7586,Teacher,50473.8,,3,7,32,6,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,13,12.7,15,Standard,1316.91,30.26686384,19 Years and 5 Months,Yes,199.6057215,68.58930891,High_spent_Large_value_payments,386.2199696,0,-0.8798,0.6916,-0.472,-1.0642,0.0087 -0x1fc69,CUS_0x73d,August,27,990-18-5375,Mechanic,106108.53,8686.3775,4,3,14,3,"Home Equity Loan, Mortgage Loan, and Personal Loan",29.39088281,20,6.98,9,Standard,514.34,30.11486665,18 Years and 9 Months,No,157.74104,871.9373912,Low_spent_Medium_value_payments,118.9593189,0,0.0934,-0.1876,0.1878,0.8033,-1.6685 -0x1fc75,CUS_0x6cc3,August,29,513-63-4014,Manager,16090.31,1079.859167,7,5,24.06745738,2,"Mortgage Loan, and Student Loan",43.73017484,22.5918089,0.61,8,_,2081.014263,37.47015351,14 Years and 4 Months,Yes,17.39779271,45.82642523,Low_spent_Small_value_payments,308.0414108,0,-0.3921,-0.5574,-0.6486,-1.5811,0.3677 -0x1fc81,CUS_0x5cde,August,38,073-10-1268,Writer,47032.8,3906.4,8,3,16,3,"Not Specified, Credit-Builder Loan, and Mortgage Loan",8.423819755,7,11.64,623,Standard,1901.62,38.82868127,17 Years and 8 Months,Yes,103.3793064,52.6493192,!@9#%8,484.6113744,0,0.8934,-0.0945,0.2626,1.7431,-1.5332 -0x1fc8d,CUS_0xa30f,August,27,823-14-6544,Architect,9817.065,,8,10,24,3,"Not Specified, Auto Loan, and Mortgage Loan",,20.31323763,0.5,9,Bad,2296.942327,37.42015067,11 Years and 6 Months,Yes,14.98948574,,Low_spent_Small_value_payments,253.7608055,0,0.9407,-1.195,0.3319,-1.0915,-0.534 -0x1fc99,CUS_0xaa0c,August,31,913-52-1751,Engineer,79691.7,6704.975,3,5,9.288361749,0,,,2,0.78,5,Good,472.29,29.17327251,25 Years and 9 Months,No,0,826.5226018,High_spent_Small_value_payments,523.9123592,0,-0.9578,-0.018,-0.8382,2.4109,0.3838 -0x1fca5,CUS_0xa3d5,August,45,947-09-1973,Mechanic,8215.87,598.7241189,6,5,26.06745738,3,"Auto Loan, Payday Loan, and Mortgage Loan",,22.5611352,6.94,6,Bad,1963.492876,32.15396512,7 Years and 6 Months,Yes,49.51603157,,Low_spent_Small_value_payments,243.8002618,0,0.4249,-0.523,-0.5546,-0.7316,-1.3673 -0x1fcb1,CUS_0x6400,August,22,510-10-9927,Lawyer,125734.16,10388.84667,3,5,10,7,"Home Equity Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",17.31563619,16,9.34,5,Standard,449.04,34.39439756,8 Years and 10 Months,Yes,401.4081724,249.2724264,High_spent_Large_value_payments,628.2040679,0,-0.9146,-0.2728,-0.7552,-1.5015,0.8997 -0x1fcbd,CUS_0x5abc,August,31,559-20-5247,_______,59519.79,4966.9825,10,10,31.88954781,6,"Home Equity Loan, Not Specified, Debt Consolidation Loan, Student Loan, Student Loan, and Personal Loan",,19,19.84,7,_,2979.78,37.62744516,2 Years and 6 Months,Yes,1498.302292,139.6643561,High_spent_Medium_value_payments,414.4015201,0,-0.2473,-0.4039,-0.3405,0.4316,-0.5153 -0x1fcc9,CUS_0x4132,August,34,284-00-2393,Entrepreneur,51323.52,4227.96,9,7,21.06745738,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",,24.6764085,4.23,14,Bad,2953.150331,33.19111873,18 Years and 0 Months,Yes,112.478757,78.22794433,High_spent_Medium_value_payments,455.3690107,0,0.218,1.1864,-0.2224,0.4437,0.5161 -0x1fcd5,CUS_0x5240,August,39,218-26-5179,Musician,14623.83,1302.6525,9,695,19.06745738,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Student Loan",44.27333362,25.40610918,17.49,11,_,3598.981876,26.38937084,13 Years and 8 Months,Yes,32.29405361,,Low_spent_Medium_value_payments,219.9321236,0,-0.3817,1.3495,1.3421,0.3977,1.3245 -0x1fce1,CUS_0x658f,August,28,763-08-1500,Journalist,144396.68,,5,6,4,0,,0,0,4.25,2,Good,923.5,37.15059295,26 Years and 6 Months,No,28677,508.1350549,Low_spent_Medium_value_payments,950.9706118,0,1.0293,-0.7977,0.4956,-1.0249,-0.2584 -0x1fced,CUS_0x200a,August,24,965-49-0710,Manager,81288.36,,10,6,17,6,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Payday Loan",20.61611344,18,24.92,10,Bad,3238.58,23.07629025,4 Years and 11 Months,Yes,383.4599804,,High_spent_Large_value_payments,380.1562133,0,-0.4999,0.1602,0.0746,-1.2098,-0.1263 -0x1fcf9,CUS_0xd61,August,18,372-56-7935,Engineer,82941.6,6625.8,6,6,20,7,"Payday Loan, Auto Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",45.52716081,25,7.96,10,Bad,2598.17,26.29731063,10 Years and 11 Months,Yes,347.2282234,266.9780132,High_spent_Medium_value_payments,298.3737634,0,0.1529,-1.5101,-0.6594,-0.0153,0.0689 -0x1fd05,CUS_0xaa8e,August,28,145-74-7622,_______,9510.225,,10,8,21.95700519,8,"Not Specified, Credit-Builder Loan, Not Specified, Auto Loan, Student Loan, Not Specified, Payday Loan, and Auto Loan",33.45436673,18.88297534,7.9,12,_,4631.739009,35.04684483,7 Years and 8 Months,Yes,1381.39889,54.83166242,Low_spent_Medium_value_payments,216.0709533,0,0.8385,-0.6521,2.0908,0.6576,-1.7815 -0x1fd11,CUS_0x2eb0,August,44,376-24-1944,Entrepreneur,26980.83,2363.4025,7,3,5.288361749,2,"Payday Loan, and Debt Consolidation Loan",,13,3.41,5,_,156.14,36.51274397,17 Years and 3 Months,NM,38.55262711,637.4871129,Low_spent_Large_value_payments,250.237971,0,0.1128,1.1768,0.7437,-0.4218,0.876 -0x1fd1d,CUS_0xb8e,August,40,155-58-5665,Accountant,33049.87,2955.155833,5,5,11,0,,,12.52164932,1.3,5,_,767.2942555,26.36711125,20 Years and 11 Months,No,0,164.8139604,High_spent_Small_value_payments,390.701623,0,-0.258,0.042,1.7334,-0.8949,-1.0853 -0x1fd29,CUS_0xb62c,August,34,#F%$D@*&8,Doctor,27880.82,2145.401667,4,5,20,4,"Student Loan, Debt Consolidation Loan, Not Specified, and Student Loan",,11,8.01,10,_,1307.859722,28.84587444,16 Years and 2 Months,NM,51.06157153,132.6230162,Low_spent_Small_value_payments,338.2692663,0,-0.3277,-0.3466,-0.2087,-0.0875,-0.4744 -0x1fd35,CUS_0x9dc6,August,18,850-48-2308,Media_Manager,20111.74,,10,9,30,9,"Auto Loan, Payday Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",,23,19.37,7,Bad,3470.89,30.66721447,12 Years and 6 Months,NM,150.1277785,,Low_spent_Small_value_payments,140.6443461,0,0.649,-1.4488,-0.071,1.3202,0.5359 -0x1fd41,CUS_0x1d79,August,30,172-70-6021,Teacher,29661.88,2435.823333,4,7,7.288361749,0,,0,1,6.39,2,Good,80.25,38.88229828,25 Years and 3 Months,No,0,590.7933728,Low_spent_Large_value_payments,342.7264216,0,-1.4349,-1.0871,-0.8129,-3.6233,1.6052 -0x1fd4d,CUS_0x8188,August,19,205-17-8116,Mechanic,63730.08,5606.84,3,660,7,2,"Personal Loan, and Student Loan",,19,13.43,7,Standard,1760.01,30.26965536,18 Years and 0 Months,Yes,54.74701501,109.2738308,High_spent_Large_value_payments,636.6631541,0,1.1645,0.0157,-0.2999,-1.1765,1.3264 -0x1fd59,CUS_0xfbd,August,39,208-16-6908,Manager,64110.51,5217.5425,8,4,6,1,Mortgage Loan,,23.89673517,25.62,7,_,192.5390493,28.49155052,6 Years and 4 Months,Yes,28.61177628,409.921932,Low_spent_Small_value_payments,373.2205417,0,-1.0773,0.1933,1.1087,1.1362,-0.545 -0x1fd65,CUS_0xb73,August,37,888-32-1754,Teacher,51433.89,4374.1575,7,9,31.06745738,5,"Mortgage Loan, Payday Loan, Student Loan, Auto Loan, and Not Specified",37.62512805,18.50593452,31.15,11,Bad,5156.957392,37.28492415,3 Years and 2 Months,Yes,137.9828744,162.782033,High_spent_Medium_value_payments,359.9305547,0,-0.1475,-0.1393,0.4973,-1.027,-0.7549 -0x1fd71,CUS_0x4916,August,35,270-26-6300,Engineer,19603.315,,1,5,6,1,Home Equity Loan,13.56146447,11,7.74,0,_,1048.56,31.73524362,21 Years and 11 Months,No,10.64003253,,Low_spent_Large_value_payments,374.7904225,0,-0.3427,-1.0498,-0.01,-0.0711,-0.5153 -0x1fd7d,CUS_0x1de3,August,80,541-79-1548,Lawyer,16234.66,1084.888333,10,5,21,7,"Personal Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,21.28762219,3.06,15,Bad,2789.748784,27.98525562,9 Years and 8 Months,Yes,77.07021575,108.8496996,Low_spent_Small_value_payments,212.568918,0,0.4503,0.2875,-2.4997,0.6826,2.8955 -0x1fd89,CUS_0x8d3f,August,25,925-73-5530,Entrepreneur,24995.92,,5,3,8,3,"Auto Loan, Auto Loan, and Home Equity Loan",9.197488233,6,8.07,3,Standard,968.32,38.52895294,,Yes,45.91062371,47.6526948,High_spent_Medium_value_payments,366.4360148,0,2.0363,-0.6737,-1.9335,-0.2739,1.3261 -0x1fd95,CUS_0x3811,August,44,305-88-2648,Lawyer,82668.78,6930.065,3,6,20,100,Mortgage Loan,17.95742689,12,16.27,0,Standard,540.04,36.10039623,24 Years and 8 Months,Yes,55.69966513,739.1062317,Low_spent_Small_value_payments,188.2006032,0,1.0659,0.137,-0.9068,-0.83,0.4238 -0x1fda1,CUS_0x26a1,August,18,897-14-8536,Doctor,36533.3,3307.441667,4,5,18,1,Student Loan,15.47313974,15,17.14,12,_,446.9274481,32.89793663,19 Years and 6 Months,Yes,22.01536,261.4054986,Low_spent_Small_value_payments,362.0303624,0,-1.6209,-0.3216,-0.2941,-0.8454,-0.9223 -0x1fdad,CUS_0x15ec,August,30,#F%$D@*&8,Manager,21487.835,,1,2,6,3,"Home Equity Loan, Student Loan, and Not Specified",12.21587864,13,2.93,3,_,373.7784892,30.09980224,25 Years and 6 Months,NM,41.00638371,11019.11542,Low_spent_Medium_value_payments,326.7711143,0,-0.6273,-1.403,0.5101,0.9052,-1.8941 -0x1fdb9,CUS_0x6322,August,41,843-12-3405,Lawyer,7451.97,463.9975,10,6,30.06745738,5,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",33.25753314,18,7.41,9,Bad,1652.160954,29.83053151,11 Years and 10 Months,Yes,24.08719126,19.31910779,Low_spent_Small_value_payments,266.273163,0,-0.7006,-1.0055,-0.3598,-0.0271,-0.5882 -0x1fdc5,CUS_0x14d0,August,22,271-41-2506,Musician,48089.16,,10,8,19.06745738,5,"Auto Loan, Auto Loan, Auto Loan, Not Specified, and Home Equity Loan",37.20693172,19,18.09,9,Bad,2878.010954,39.39271595,7 Years and 11 Months,Yes,192.7401971,61.60207027,High_spent_Large_value_payments,349.1804446,0,0.7812,-1.1759,0.7567,-0.8479,0.815 -0x1fdd1,CUS_0x2f7e,August,31,109-48-2095,Doctor,126353.04,10635.42,4,7,19,2,"Credit-Builder Loan, and Mortgage Loan",15.67876553,13.19565513,9.43,3,_,957.9186697,28.44286675,31 Years and 9 Months,No,167.0439102,549.7661393,Low_spent_Medium_value_payments,3.33E+26,0,-0.184,-1.2779,-0.6502,-0.03,1.8107 -0x1fddd,CUS_0x13fb,August,22,995-80-1416,Doctor,23537.54,,7,4,8,3,"Mortgage Loan, Mortgage Loan, and Auto Loan",,22,7.13,6,Standard,174.06,25.39130848,9 Years and 8 Months,Yes,53.55830614,60.69782011,High_spent_Small_value_payments,336.3900404,0,-0.0363,-1.5658,-1.4779,1.9107,0.9605 -0x1fde9,CUS_0x9e9b,August,28,945-31-6025,Journalist,16833.86,,10,8,20.88954781,8,"Credit-Builder Loan, Not Specified, Home Equity Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",30.60175796,24,27.11,11,Bad,4224.062128,33.40280314,2 Years and 3 Months,Yes,1396.980145,,High_spent_Medium_value_payments,251.2017609,0,0.0106,1.4101,-1.4832,-1.1987,0.3712 -0x1fdf5,CUS_0x374c,August,50,881-30-4578,Engineer,33413.88,,5,7,10,3,"Debt Consolidation Loan, Auto Loan, and Auto Loan",14.29061561,10.55383333,19.75,,Standard,1374.221959,29.96013216,22 Years and 4 Months,Yes,46.39958673,124.1193456,Low_spent_Small_value_payments,396.5300677,0,0.9008,0.086,0.8371,-0.1681,-1.7089 -0x1fe01,CUS_0x7a4a,August,19,012-49-4059,Architect,58832.19,4827.6825,8,3,10,3,"Student Loan, Debt Consolidation Loan, and Student Loan",,,8.02,0,Standard,809.32,37.85392671,22 Years and 11 Months,No,121.4189947,59.20452947,High_spent_Large_value_payments,542.1447258,0,2.4513,-0.353,-0.1274,-2.0295,1.4121 -0x1fe0d,CUS_0x5b64,August,39,941-63-3418,Lawyer,14982,1137.5,6,3,17,2,"Debt Consolidation Loan, and Home Equity Loan",,21,14.66,7,Standard,693.77,26.19015118,,Yes,24.56916091,125.8508206,Low_spent_Small_value_payments,253.3300185,0,-1.2088,0.7202,-0.5833,0.6181,1.224 -0x1fe19,CUS_0x2a47,August,52,334-68-0617,Engineer,97694.32,8153.193333,5,5,10,4,"Payday Loan, Personal Loan, Payday Loan, and Personal Loan",,9,1.46,5,Standard,915.32,30.72479698,22 Years and 4 Months,Yes,247.8332518,176.0691544,High_spent_Large_value_payments,631.4169271,0,0.8933,-0.0212,0.9331,0.5493,1.7187 -0x1fe25,CUS_0xd97,August,39,113-67-9836,Doctor,10774.095,1075.84125,3,6,19,2,"Debt Consolidation Loan, and Home Equity Loan",23.43463322,20,15.65,7,Standard,563.69,26.81615857,17 Years and 2 Months,Yes,16.73832373,104.7671669,Low_spent_Medium_value_payments,266.0786343,0,-0.0832,0.0513,0.3084,-2.3205,1.3166 -0x1fe31,CUS_0x3cfc,August,44,571-14-9541,Musician,20348.57,,9,8,17.06745738,8,"Student Loan, Mortgage Loan, Not Specified, Personal Loan, Mortgage Loan, Home Equity Loan, Student Loan, and Auto Loan",41.9530544,25.68466459,5.78,6,Bad,3895.033738,26.69652887,7 Years and 0 Months,Yes,110.5005816,45.76339439,Low_spent_Medium_value_payments,245.6871527,0,-0.449,-1.5191,-0.3032,-1.084,-1.3535 -0x1fe3d,CUS_0x56a5,August,54,791-07-4874,Entrepreneur,38933.58,3432.465,4,7,9,3,"Mortgage Loan, Mortgage Loan, and Mortgage Loan",13.98307304,12,4.84,3,Good,149,23.7792951,31 Years and 9 Months,NM,78.40985093,436.213937,Low_spent_Small_value_payments,118.6227121,0,0.8015,-0.643,0.2165,-0.7329,1.872 -0x1fe49,CUS_0xae89,August,20,525-27-7908,Engineer,56141.26,4137.240857,8,4,11,1,Auto Loan,,16,19.38,10,Standard,845.2865877,37.77274567,20 Years and 8 Months,NM,501.7442123,145.9012359,High_spent_Medium_value_payments,557.7104407,0,-1.1512,-0.15,0.5909,-1.2198,1.2056 -0x1fe55,CUS_0x436d,August,49,605-53-6907,Manager,13016.955,805.74625,5,5,14,1,Auto Loan,9.255259133,8,9.81,4,Standard,519.51,25.00863349,24 Years and 9 Months,No,7.327678461,29.46681119,Low_spent_Medium_value_payments,323.7801354,0,-1.9103,-1.1967,-1.7958,-0.269,0.8344 -0x1fe61,CUS_0xb5a,August,32,363-61-5055,Architect,54239.94,4341.995,9,7,30.06745738,7,"Home Equity Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Personal Loan",,20,18.52,16,Bad,4384.200954,35.41009329,7 Years and 11 Months,NM,275.8968755,,High_spent_Medium_value_payments,207.2676857,0,-0.1345,0.8218,-1.6619,-0.1891,0.2455 -0x1fe6d,CUS_0x75f,August,31,992-15-8442,Musician,78188.84,6296.736667,3,6,17,3,"Debt Consolidation Loan, Personal Loan, and Not Specified",23.72708718,19,13.56,8,Standard,605.86,38.73256083,15 Years and 6 Months,Yes,195.1023462,336.4045914,Low_spent_Large_value_payments,368.1667291,0,2.3868,0.9588,-1.035,0.7996,-0.0457 -0x1fe79,CUS_0xcf8,August,38,039-13-0256,Musician,44768.73,3911.7275,6,10,30.06745738,4,"Home Equity Loan, Auto Loan, Auto Loan, and Home Equity Loan",36.941499,19.1226829,11.51,8,Bad,2801.283574,37.49006661,16 Years and 11 Months,Yes,96.16674057,87.27552532,High_spent_Small_value_payments,441.0101962,0,0.3968,0.4279,1.1844,0.2952,-0.4784 -0x1fe85,CUS_0x4b5d,August,25,457-76-4147,Media_Manager,134499.84,11019.32,0,4,4,3,"Payday Loan, Credit-Builder Loan, and Mortgage Loan",11.87320371,10,11.09,4,Good,99.03568061,29.01730874,31 Years and 8 Months,No,63845,482.0735655,High_spent_Medium_value_payments,690.9854629,0,-1.3903,0.0001,0.1662,1.467,-1.2175 -0x1fe91,CUS_0x1a85,August,30,294-75-4552,Engineer,71616.36,5971.03,5,5,16,5,"Personal Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",26.90433379,16.89647125,2.04,4,Standard,2056.547169,40.4740604,7 Years and 10 Months,Yes,168.7622523,406.4304155,Low_spent_Large_value_payments,291.9103323,0,0.2801,-1.7721,0.8051,-0.1124,1.1451 -0x1fe9d,CUS_0x8533,August,80,747-81-0975,Architect,40287.78,3280.315,4,3,11,2,"Mortgage Loan, and Debt Consolidation Loan",0.74348367,5,1.95,0,_,1298.6,35.34585307,30 Years and 5 Months,No,39.38754027,28.59628946,High_spent_Large_value_payments,500.0476703,0,0.8644,-0.0054,0.4198,-1.1763,1.1127 -0x1fea9,CUS_0x97ec,August,39,#F%$D@*&8,Engineer,17212.35,1271.3625,8,9,26,2,"Home Equity Loan, and Not Specified",45.79815969,21.76739191,13.44,15,Bad,2687.794892,27.05693908,11 Years and 11 Months,Yes,15.95352417,95.17470183,Low_spent_Large_value_payments,286.008024,0,-0.3645,0.1331,1.2612,-2.0787,-1.3186 -0x1feb5,CUS_0xaaff,August,80,269-27-4859,Musician,89122.8,7141.9,7,3,12,1,Home Equity Loan,,14,8.06,1,Standard,290.0411104,35.68682889,26 Years and 4 Months,No,57.75937541,,High_spent_Large_value_payments,715.0170586,0,1.2937,-0.0322,0.2417,0.2105,-0.3846 -0x1fec1,CUS_0xfdf,August,56,099-84-4997,_______,70114.38,,0,4,12,100,"Home Equity Loan, Auto Loan, and Home Equity Loan",0,0,9.9,3,Good,918.89,40.43452864,,No,131.4721728,146.8600024,High_spent_Large_value_payments,529.6543249,0,-0.9651,-0.2884,-0.2233,2.4103,-0.8124 -0x1fecd,CUS_0x2306,August,54,260-24-2546,Teacher,73455.03,6367.2525,8,4,6.288361749,2,"Credit-Builder Loan, and Not Specified",7.308840141,8,8.83,7,_,833.37,31.03023131,30 Years and 0 Months,NM,86.49480091,737.3218822,Low_spent_Medium_value_payments,512.8460279,0,-0.3938,1.1822,-0.129,0.6853,0.9563 -0x1fed9,CUS_0x4cf6,August,47,708-56-6525,Musician,39280.52,,5,1,9,2,"Home Equity Loan, and Not Specified",,2,7.15,4,_,544.5459365,36.32891562,23 Years and 2 Months,No,38.30417245,,Low_spent_Small_value_payments,189.4430771,0,-1.1633,0.7775,-1.469,-0.9761,1.0732 -0x1fee5,CUS_0x30de,August,22,#F%$D@*&8,Writer,15475.27,1264.605833,6,6,28,6,"Student Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",24.31728518,,21.33,,Bad,4683.73,31.35834879,14 Years and 3 Months,Yes,42.08797369,83.29089572,Low_spent_Small_value_payments,291.0817139,0,-0.968,1.0369,-1.1969,0.5077,0.498 -0x1fef1,CUS_0x864c,August,52,151-85-2282,Musician,43075.97,,3,5,11.28836175,100,Payday Loan,90,969,7.81,2,Good,202.3400872,37.68955363,17 Years and 4 Months,No,30.30666049,,High_spent_Large_value_payments,529.2956093,0,1.2828,0.8863,0.521,-0.0172,1.8901 -0x1fefd,CUS_0x2526,August,18,504-86-6575,Teacher,15286.16,,6,9,21.95700519,7,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, Home Equity Loan, and Personal Loan",29.22244438,17,25.58,10,Bad,2849.060954,29.71070182,,Yes,21152.48344,,Low_spent_Small_value_payments,233.9761039,0,1.5025,1.0211,1.6083,1.6171,-0.4461 -0x1ff09,CUS_0xaff2,August,25,402-57-1018,Lawyer,31174.8,,6,3,14,1,Personal Loan,10.41259993,9,10.85,,Standard,1286.96,27.13261593,27 Years and 5 Months,Yes,19.65186289,,High_spent_Small_value_payments,390.6976268,0,-0.6711,0.9339,-1.1005,-0.0662,0.6707 -0x1ff15,CUS_0x8f3f,August,22,295-44-1174,Lawyer,20566.56,,8,10,31.95700519,8,"Home Equity Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, Payday Loan, and Auto Loan",50.08003914,25.41002341,7.59,15,Bad,5759.759017,27.19910621,6 Years and 8 Months,Yes,1422.005595,99.88163289,Low_spent_Medium_value_payments,208.2504025,0,-1.0003,0.4426,-0.5784,-0.4463,-0.3184 -0x1ff21,CUS_0xaef2,August,32,167-27-1604,Media_Manager,15049.89,971.1575,6,4,17,5,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",20.21760258,17.27710589,15.21,12,Standard,2057.133432,22.51273637,18 Years and 11 Months,Yes,46.60328791,,Low_spent_Small_value_payments,222.456141,0,-0.6158,1.3166,0.592,-1.0517,-0.5796 -0x1ff2d,CUS_0x9515,August,28,563-62-5444,Media_Manager,56985.9,4700.825,10,8,20.88954781,7,"Student Loan, Payday Loan, Auto Loan, Payday Loan, Not Specified, Home Equity Loan, and Home Equity Loan",40.34099543,21.51379021,18.74,,Standard,2056.877037,23.94651124,6 Years and 8 Months,Yes,1518.980956,118.0965537,High_spent_Large_value_payments,378.6749088,0,0.1207,0.563,-0.3108,-0.1707,-1.2463 -0x1ff39,CUS_0x9d10,August,48,320-15-5280,Entrepreneur,132641.34,11051.445,1,3,5.288361749,0,Credit-Builder Loan,8.640318763,11,7.6,3,Good,760.4659314,27.90467177,21 Years and 2 Months,No,70.10041865,1517.268485,Low_spent_Large_value_payments,320.6583455,0,0.4304,1.0226,-0.909,0.3205,0.9949 -0x1ff45,CUS_0xa439,August,38,955-94-0714,Media_Manager,109607.43,9308.9525,7,180,18,4,"Home Equity Loan, Not Specified, Auto Loan, and Not Specified",20.91280548,14,14.76,9,Standard,852.74,31.55156996,22 Years and 5 Months,Yes,230.1992433,649.185792,Low_spent_Small_value_payments,341.5102147,0,-0.7003,-0.8137,0.6448,0.9091,-0.2276 -0x1ff51,CUS_0x5edc,August,24,190-51-3193,Accountant,45488.94,,6,5,18,7,"Auto Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Student Loan",28.38117172,12,7.77,10,_,2241.07,38.20436708,8 Years and 11 Months,NM,185.7968833,251.280732,High_spent_Small_value_payments,209.0968847,0,0.1172,-1.4348,0.0812,0.4887,-1.4016 -0x1ff5d,CUS_0x9b3f,August,36,397-76-3527,Teacher,15615.3,1185.275,6,7,20.06745738,6,"Debt Consolidation Loan, Payday Loan, Payday Loan, Not Specified, Not Specified, and Mortgage Loan",,14,5.71,11,Bad,2889.470954,34.3927685,2 Years and 5 Months,Yes,45.45311166,32.61748254,Low_spent_Medium_value_payments,293.7366179,0,-0.7185,-1.859,-0.0377,-0.1079,1.0057 -0x1ff69,CUS_0x4e42,August,38,473-82-4532,Scientist,42829.15,3535.095833,0,5,2.288361749,0,Debt Consolidation Loan,0,4,11.21,3,Good,532.9264859,25.0452541,32 Years and 9 Months,No,25.30603245,11620.1631,!@9#%8,494.0100247,0,0.151,-1.7093,1.7985,1.3509,-0.5264 -0x1ff75,CUS_0xb426,August,28,059-95-1359,Developer,18140.94,,8,10,17.88954781,7,"Home Equity Loan, Personal Loan, Mortgage Loan, Not Specified, Student Loan, Not Specified, and Student Loan",21.548968,10.26190067,16.45,11,Standard,2533.304191,28.2562476,,Yes,1388.737823,69.23209317,!@9#%8,285.7745029,0,0.5395,0.9982,0.6315,-0.4301,-1.0569 -0x1ff81,CUS_0x970b,August,23,883-30-5284,Architect,25417.33,,7,7,19,7,"Payday Loan, Student Loan, Payday Loan, Personal Loan, Mortgage Loan, Payday Loan, and Auto Loan",25.56207042,19,12.58,6,Standard,399.2138082,31.82736723,14 Years and 11 Months,Yes,15586,53.20093907,High_spent_Medium_value_payments,305.5340143,0,0.7812,-0.0083,-0.2348,0.6633,0.0151 -0x1ff8d,CUS_0x2dc0,August,37,610-55-7038,Accountant,34378.42,,6,9,18,2,"Not Specified, and Debt Consolidation Loan",28.80866706,15.22360957,26.28,17,Standard,1644.193501,27.90816175,11 Years and 5 Months,Yes,37.65096728,110.822409,Low_spent_Small_value_payments,404.413457,0,1.1589,0.5046,-0.2677,-0.2507,1.3809 -0x1ff99,CUS_0x3f35,August,45,120-70-0061,Accountant,26683.75,2224.645833,7,5,16,1,Payday Loan,16.27280779,10,10.85,,Standard,1186.43,27.43790622,,No,21.99380359,102.3784403,Low_spent_Small_value_payments,388.0923395,0,-0.9536,-1.704,0.7064,0.6586,2.415 -0x1ffa5,CUS_0x86ed,August,36,093-35-5868,_______,61117.29,4756.724606,8,8,17.88954781,7,"Student Loan, Auto Loan, Payday Loan, Student Loan, Not Specified, Home Equity Loan, and Personal Loan",,15.23027838,7.24,6,_,2435.090311,31.58207352,8 Years and 5 Months,Yes,1721.768212,187.0026053,Low_spent_Medium_value_payments,279.4927454,0,1.5884,1.0467,-0.411,0.4185,1.0173 -0x1ffb1,CUS_0x4187,August,36,292-38-7700,Journalist,41544.52,,4,3,7.067457376,2,"Personal Loan, and Debt Consolidation Loan",30.3025839,18.91602532,9.75,11,Standard,2957.630049,34.19617226,6 Years and 4 Months,Yes,65.99020551,,Low_spent_Small_value_payments,195.9533754,0,0.3439,0.9769,2.4195,0.7293,0.3873 -0x1ffbd,CUS_0xc1b3,August,56,454-72-8750,Media_Manager,15466.055,,7,7,17,2,"Credit-Builder Loan, and Not Specified",18.03729074,,9.94,,Standard,883.26,24.65473376,16 Years and 3 Months,Yes,25.50623656,,High_spent_Small_value_payments,327.3406852,0,1.7558,-0.8127,1.7641,0.6207,-0.299 -0x1ffc9,CUS_0x8802,August,25,962-23-5656,Doctor,122469.16,,7,6,17.28836175,0,Auto Loan,24.16418648,20,9.94,0,Standard,1154.21,33.55126861,21 Years and 3 Months,No,83.01740061,516.2917381,High_spent_Large_value_payments,1067.904656,0,-0.6824,-1.5295,-0.5518,-0.7342,-0.9846 -0x1ffd5,CUS_0xae6c,August,30,218-87-4473,Accountant,8576.98,665.7483333,8,9,17.88954781,7,"Personal Loan, Auto Loan, Not Specified, Home Equity Loan, Payday Loan, Auto Loan, and Not Specified",29.23225145,16,3.15,12,Bad,3650.06,39.36650951,4 Years and 5 Months,Yes,1363.151448,,Low_spent_Medium_value_payments,236.8991907,0,-0.4696,-0.4275,0.6199,0.7697,-2.1634 -0x1ffe1,CUS_0x4b12,August,29,535-48-2237,Media_Manager,57654.4,4590.533333,4,6,10,2,"Mortgage Loan, and Auto Loan",23.56680655,19,12.71,9,Standard,573.53,25.84369355,10 Years and 9 Months,Yes,53.03604649,97.9971106,High_spent_Medium_value_payments,558.0201762,0,-1.7189,-0.682,0.9569,1.1241,-0.1165 -0x1ffed,CUS_0x36d4,August,48,894-71-1096,Architect,137097.8,,4,7,4.288361749,2,"Auto Loan, Student Loan, and Auto Loan",6.925922596,8,9.76,3,_,1045.06,33.28804407,29 Years and 3 Months,No,213.741869,718.6155056,High_spent_Medium_value_payments,873.261753,0,-0.6279,0.2273,-1.4542,0.6649,-0.4767 -0x1fff9,CUS_0xc11f,August,29,672-97-2497,Journalist,16517.73,,6,8,30.95700519,7,"Not Specified, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Student Loan",34.61080188,20,33.54,8,Bad,5176.700954,40.24854175,1 Years and 6 Months,Yes,1381.551508,51.19008466,!@9#%8,268.5557881,0,0.7453,-1.6398,1.1161,-1.1996,0.5216 -0x20005,CUS_0x649e,August,23,815-38-6088,Musician,69324.4,5509.033333,4,7,12,3,"Mortgage Loan, Payday Loan, and Mortgage Loan",3.279686205,5,10.89,8,Standard,1075.73,31.54069436,17 Years and 8 Months,Yes,115.0087063,172.0991015,!@9#%8,523.7955255,0,-0.0477,-0.5086,-0.4973,-0.3365,-1.106 -0x20011,CUS_0x80dd,August,33,558-26-7068,Media_Manager,72712.2,6169.35,8,5,16,0,,19.03622358,14,6.93,1,Standard,1431.1,30.58509843,29 Years and 2 Months,No,0,289.9230407,Low_spent_Large_value_payments,597.0119593,0,-0.1272,-0.8973,0.2843,-0.9364,0.1559 -0x2001d,CUS_0x8c6f,August,20,369-74-7693,Engineer,7039.745,,9,5,20,9,"Payday Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",36.54630099,20,16.92,16,Bad,3703.08,38.34529713,6 Years and 3 Months,Yes,43.64275583,,!@9#%8,249.1732885,0,0.4911,-0.7801,0.9473,0.0526,1.4017 -0x20029,CUS_0xacfc,August,44,823-40-2759,Teacher,37424.16,3045.68,7,5,18,100,"Student Loan, Home Equity Loan, and Debt Consolidation Loan",18.96312483,16,14.64,10,Standard,1445.81,33.77178696,18 Years and 10 Months,NM,90.94863059,311.874506,Low_spent_Small_value_payments,191.7448634,0,-0.3588,2.1232,-0.2392,0.4785,-1.1099 -0x20035,CUS_0x20d0,August,22,232-22-8119,Musician,40692.4,3686.033333,10,8,19.95700519,6,"Student Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",27.2428861,16.22733457,1.32,12,Bad,4751.772826,35.83616095,5 Years and 11 Months,Yes,1524.110057,10000,High_spent_Small_value_payments,160.7380461,0,1.3906,0.7705,0.3299,-1.1067,2.806 -0x20041,CUS_0x144c,August,53,317-80-3283,Mechanic,15948.285,,4,4,5,3,"Auto Loan, Student Loan, and Payday Loan",9.045925963,9,3.42,6,Good,1068.42,38.74936588,25 Years and 2 Months,No,23.81321132,29.66795636,High_spent_Medium_value_payments,359.0212073,0,0.5197,-0.0059,1.3746,1.3303,-0.301 -0x2004d,CUS_0x3fc2,August,32,474-40-2831,Lawyer,71983.5,5966.625,5,6,18,4,"Not Specified, Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",8.757100859,8,25.41,0,Standard,519.33,27.99661761,32 Years and 6 Months,Yes,230.106816,133.007498,High_spent_Large_value_payments,473.548186,0,0.1591,-0.0448,0.6656,-0.0141,-0.1076 -0x20059,CUS_0xa39,August,34,230-70-3549,_______,42585.4,,0,7,6,0,,3.06968878,7,0.92,3,Good,1076.7,32.13765692,25 Years and 10 Months,No,0,409.4923442,Low_spent_Small_value_payments,208.5859891,0,-1.1591,-1.7556,1.8324,0.1469,0.3579 -0x20065,CUS_0x86e7,August,25,037-87-7530,Doctor,18600.88,,5,6,5,6,"Home Equity Loan, Not Specified, Personal Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",25.01186803,19.50848876,19.71,9,Standard,2765.751294,25.5035062,,Yes,73.88978185,49.82465236,Low_spent_Large_value_payments,284.8928991,0,-0.2676,-0.255,-0.7792,-0.1655,0.6969 -0x20071,CUS_0x5eda,August,35,091-75-1836,Engineer,31024.77,,4,5,8,2,"Credit-Builder Loan, and Not Specified",11.15946226,10,9.31,1,Good,1245.617479,36.6816267,,No,35.81827976,50.97485399,High_spent_Medium_value_payments,410.3850185,0,-0.622,0.4132,0.5923,-1.1367,-0.8911 -0x2007d,CUS_0xae96,August,43,414-33-7358,Mechanic,8800037,,3,4,24,4,"Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",26.05022232,20,19.27,10,Standard,1854.48,23.85020703,11 Years and 8 Months,Yes,54.40859291,50.0228376,High_spent_Small_value_payments,306.5497362,0,-1.6232,2.7397,-0.4083,-1.7537,-0.8272 -0x20089,CUS_0x7dea,August,45,335-20-3827,Musician,28805.34,2309.445,8,3,5,2,"Payday Loan, and Credit-Builder Loan",23.16008928,19,7.02,0,Standard,796.45,36.87521358,32 Years and 5 Months,No,47.19512293,140.1421381,Low_spent_Small_value_payments,333.607239,0,-1.3349,-0.1939,-2.3557,2.3112,0.9564 -0x20095,CUS_0x9a3d,August,36,168-25-2355,Accountant,19724.81,,3,6,12,4,"Mortgage Loan, Payday Loan, Mortgage Loan, and Personal Loan",10.05872603,10,3.68,0,Good,1179.074655,34.68452565,29 Years and 8 Months,No,49.93791871,160.7193019,Low_spent_Small_value_payments,241.1463521,0,1.0635,-0.1845,0.252,0.0148,0.5796 -0x200a1,CUS_0x1ccf,August,28,450-49-4774,Teacher,8381.025,852.41875,6,769,23.06745738,2,"Home Equity Loan, and Home Equity Loan",,22.55439046,0.51,8,Bad,1817.217482,40.46428034,6 Years and 6 Months,Yes,7.348140838,,Low_spent_Small_value_payments,284.0636232,0,2.5055,-2.1093,-0.3103,-0.0933,-1.6368 -0x200ad,CUS_0x81e9,August,37,541-82-8577,Mechanic,51045.9,4037.825,10,5,23.06745738,9,"Auto Loan, Personal Loan, Not Specified, Not Specified, Mortgage Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Student Loan",,23,15.17,11,_,3101.860954,34.5533917,2 Years and 9 Months,Yes,205.4151315,79.88715507,High_spent_Large_value_payments,331.7599255,0,-1.1093,0.5949,0.512,1.1196,-0.689 -0x200b9,CUS_0x1a16,August,34,316-83-4105,_______,1127430,,10,9,17.88954781,6,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Personal Loan, Home Equity Loan, and Personal Loan",35.01494237,25,20.95,13,Bad,3881.11,36.32649524,8 Years and 10 Months,Yes,1566.754315,162.6063513,High_spent_Medium_value_payments,305.4352524,0,-0.4951,0.2162,1.4758,0.5447,0.2402 -0x200c5,CUS_0x5c66,August,33,864-80-9668,Lawyer,98035.14,,6,5,8,1,Not Specified,,12,2.99,2,Standard,143.3660103,36.10305309,17 Years and 8 Months,No,692.5280397,340.6530142,High_spent_Small_value_payments,723.0381977,0,1.0706,0.2193,-0.1422,0.3324,0.0373 -0x200d1,CUS_0x7f40,August,47,799-90-8464,Doctor,120834.03,9094.413001,3,6,10.28836175,2,"Mortgage Loan, and Mortgage Loan",,,1.13,2,Good,1152.002384,29.28815736,23 Years and 10 Months,No,955.4113605,783.8300175,Low_spent_Large_value_payments,756.9735228,0,0.6767,-1.1325,0.9807,-0.5808,0.5134 -0x200dd,CUS_0x331a,August,80,708-93-5779,Developer,17767.41,,6,10,29.06745738,5,"Not Specified, Not Specified, Credit-Builder Loan, Student Loan, and Student Loan",38.76091352,23.69293391,8.73,9,_,3166.339927,40.89468812,10 Years and 5 Months,Yes,65.4899947,66.86909317,Low_spent_Small_value_payments,271.6823742,0,0.9086,0.689,-0.6945,0.9514,-2.2344 -0x200e9,CUS_0xb5c0,August,46,556-58-1200,_______,79929.76,6917.813333,8,6,10.28836175,0,,21.22539155,19,6.28,0,Standard,662.2434429,32.68990474,30 Years and 0 Months,No,0,733.5643463,Low_spent_Medium_value_payments,689.7542007,0,-0.6436,-0.089,0.1455,0.6452,-0.0301 -0x200f5,CUS_0xb4c9,August,26,431-25-9243,Media_Manager,20906.89,1620.240833,6,5,29,5,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",28.32874382,17,23.48,15,Bad,3714.72,23.83685274,5 Years and 6 Months,Yes,80.48726431,215.115098,Low_spent_Small_value_payments,156.4217211,0,1.6004,0.9935,1.4996,0.0523,-1.3158 -0x20101,CUS_0x2a85,August,40,886-14-0756,_______,16041.85,1479.820833,9,6,30,7,"Mortgage Loan, Home Equity Loan, Auto Loan, Auto Loan, Home Equity Loan, Not Specified, and Personal Loan",35.98707684,20.05242757,2.17,11,Bad,5500.595193,39.71137432,7 Years and 11 Months,Yes,59.99621236,24.12775159,High_spent_Large_value_payments,303.8581194,0,0.1655,-0.4237,-1.0509,0.592,1.0677 -0x2010d,CUS_0x9070,August,31,117-73-0212,Scientist,120522.88,9816.573333,7,4,5.288361749,100,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",22.74702062,19,14.01,2015,Standard,1302.14441,22.22498153,9 Years and 10 Months,Yes,408.5619301,,Low_spent_Medium_value_payments,,0,-0.6361,-0.7888,1.0654,-0.6574,-0.7413 -0x20119,CUS_0x5b9c,August,37,212-61-0276,Manager,35862.37,3172.530833,4,2,7,2,"Personal Loan, and Personal Loan",0,1,0.74,4,Good,492.4163272,25.04338348,16 Years and 11 Months,No,51.64576548,,Low_spent_Medium_value_payments,415.1927711,0,-0.3468,0.2853,-0.9189,-0.3317,-1.6615 -0x20125,CUS_0x6611,August,21,332-42-7951,Engineer,19020.63,,10,5,27,7,"Not Specified, Auto Loan, Home Equity Loan, Payday Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",30.86350505,22,16.25,6,Bad,3217.69,27.84307754,14 Years and 0 Months,Yes,104.900075,,Low_spent_Medium_value_payments,227.852277,0,-0.1422,0.9897,0.3288,-0.5711,0.2894 -0x20131,CUS_0xb367,August,18,301-31-7681,Mechanic,103395.24,8424.27,5,7,6,3,"Home Equity Loan, Student Loan, and Home Equity Loan",20.34004313,17,14.37,12,Standard,1103.47,38.04889777,6 Years and 6 Months,Yes,146.6218839,,Low_spent_Medium_value_payments,219.1180499,0,1.0634,0.1613,-1.3571,0.6017,-0.0582 -0x2013d,CUS_0x5c09,August,18,758-97-8399,Architect,62153.44,,4,3,6,5,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Payday Loan",17.33036957,,8.98,6,Standard,1853.35,31.85301631,8 Years and 3 Months,Yes,169.0567129,143.6240361,Low_spent_Medium_value_payments,472.9645843,0,0.7712,-1.9368,0.9206,1.0848,-0.1755 -0x20149,CUS_0x39d4,August,45,034-42-6069,Accountant,73507.4,6146.616667,8,7,18,7,"Mortgage Loan, Student Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Auto Loan, and Auto Loan",32.42930257,18.70067213,-0.54,10,Bad,1821.778127,30.36496498,16 Years and 2 Months,Yes,412.0513671,,Low_spent_Medium_value_payments,65.3111617,0,1.9051,0.1125,-0.8651,-1.2807,2.5571 -0x20155,CUS_0x8141,August,24,117-80-3557,Mechanic,79147.2,,8,8,31.88954781,9,"Not Specified, Auto Loan, Personal Loan, Not Specified, Not Specified, Not Specified, Credit-Builder Loan, Auto Loan, and Payday Loan",47.2346919,28.01754814,2.28,9,Bad,2792.505956,24.72862208,20 Years and 0 Months,Yes,1776.172895,667.8715076,Low_spent_Medium_value_payments,,0,-0.2498,2.067,-1.2998,-0.4442,0.1677 -0x20161,CUS_0xa4ac,August,20,898-28-1569,Doctor,112939.47,,4,5,12,0,,0.915837593,2,11.03,6,Good,800.06,29.39135373,23 Years and 2 Months,No,12342,120.6934568,High_spent_Large_value_payments,1085.768793,0,-0.9539,-1.1627,-0.4946,0.2507,-0.8462 -0x2016d,CUS_0x657f,August,41,674-46-3199,Accountant,18817.94,,6,6,5,3,"Personal Loan, Mortgage Loan, and Personal Loan",29.53079323,19,15.62,10,_,649.26,34.87987034,7 Years and 0 Months,Yes,43.23669512,110.1457981,!@9#%8,292.6336734,0,0.133,-0.0862,-1.4995,1.3196,1.5425 -0x20179,CUS_0x5d0b,August,21,541-85-9649,Lawyer,57846.48,4962.54,8,7,18,6,"Credit-Builder Loan, Student Loan, Payday Loan, Not Specified, Not Specified, and Student Loan",39.91649414,19.15126257,10.74,12,Bad,2160.468637,38.78178895,14 Years and 4 Months,Yes,268.6574878,,High_spent_Large_value_payments,429.1447083,0,0.3016,-0.1352,-0.5518,-0.6358,3.0922 -0x20185,CUS_0x3489,August,47,779-55-8375,Mechanic,106520.64,8919.72,2,5,12,4,"Mortgage Loan, Not Specified, Credit-Builder Loan, and Student Loan",,3,6.03,2,_,353.01,37.28074122,16 Years and 5 Months,NM,192.8874869,402.2916328,Low_spent_Small_value_payments,586.7928802,0,0.1759,1.0574,-1.4044,0.8822,-0.2823 -0x20191,CUS_0x432a,August,19,626-35-9737,Media_Manager,103769.88,8421.817159,5,6,14,4,"Mortgage Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",9.120001561,10,14.15,8,Standard,436.69,37.06393603,16 Years and 11 Months,Yes,596.3370135,351.3971116,Low_spent_Medium_value_payments,538.1877162,0,-1.1388,1.4285,0.9055,-1.8979,-0.8676 -0x2019d,CUS_0x4ad7,August,45,246-22-8674,Teacher,93305.76,7837.48,3,6,15,1,Student Loan,31.93883586,24.08144671,4.55,3,Standard,1423.937026,36.47811171,30 Years and 2 Months,Yes,39.38564367,96.81027024,High_spent_Medium_value_payments,897.5520861,0,0.0006,2.4629,0.1941,0.6969,0.9937 -0x201a9,CUS_0x45c0,August,34,000-60-0688,Manager,27954.68,,3,3,12,100,"Not Specified, Auto Loan, and Auto Loan",,11,0.95,3,Good,1269.914031,26.5929647,21 Years and 10 Months,No,50.37342112,238.1437042,Low_spent_Large_value_payments,240.3435918,0,-0.7513,-1.5899,2.2147,0.5697,-1.4922 -0x201b5,CUS_0x4b91,August,20,352-38-8467,Entrepreneur,41819.64,,5,5,16,6,"Payday Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Student Loan",17.08093277,,13.95,5,Standard,2491.485332,26.36637086,6 Years and 11 Months,Yes,129.4549397,,Low_spent_Small_value_payments,190.0945358,0,0.375,-0.7866,1.6323,-1.7846,-0.961 -0x201c1,CUS_0x460d,August,24,#F%$D@*&8,Journalist,42346.98,,3,2,11.28836175,0,,1.677031284,6,11.89,7,Good,338.7464974,38.22919367,30 Years and 0 Months,No,0,765.131224,!@9#%8,348.5362937,0,-0.2207,0.693,1.3116,-0.9991,0.2377 -0x201cd,CUS_0x86a7,August,80,009-03-6050,Accountant,73926.36,6117.53,8,6,22.06745738,6,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Auto Loan",29.34567391,16,26.28,7,Bad,4202.310954,32.01436935,3 Years and 8 Months,Yes,329.2437294,130.495451,High_spent_Large_value_payments,365.2935317,0,1.2819,-1.289,0.5655,0.2428,-1.3745 -0x201d9,CUS_0x4d12,August,37,176-95-2803,_______,129762.48,10974.54,0,2,5,0,,2.836259066,5,11.97,0,Good,926.902782,33.48384222,,No,0,628.8323274,Low_spent_Medium_value_payments,829.611948,0,-0.9501,-0.6017,0.4652,1.2257,-0.5353 -0x201e5,CUS_0x43d,August,42,240-16-7049,Entrepreneur,14012.51,,10,7,32.06745738,5,"Personal Loan, Personal Loan, Personal Loan, Student Loan, and Mortgage Loan",35.18109191,19,24.73,10,_,4620.460954,32.28585813,10 Years and 6 Months,Yes,102.9737985,35.09889209,Low_spent_Medium_value_payments,269.2961872,0,1.1357,-1.0151,0.3907,-1.2856,1.1667 -0x201f1,CUS_0x6620,August,18,771-23-4071,Manager,61922.24,5418.186667,6,9,4842.889548,9,"Payday Loan, Auto Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",31.7326726,22.44476445,23.28,15,Bad,5121.24546,33.64505309,3 Years and 11 Months,Yes,1659.498307,392.8253541,Low_spent_Small_value_payments,85.16492478,0,-0.6973,2.365,-0.8683,-2.3834,0.4609 -0x201fd,CUS_0x4d94,August,37,106-40-8801,Engineer,31067.03,,5,3,5,4,"Not Specified, Not Specified, Not Specified, and Auto Loan",,14.36538634,8.2,5,Standard,882.5158709,23.15011797,16 Years and 10 Months,Yes,79.25048947,,Low_spent_Small_value_payments,146.8230035,0,-1.2023,0.2849,0.7489,-1.3231,0.5779 -0x20209,CUS_0x6cdd,August,31,276-81-8864,_______,40069.45,,3,5,2.288361749,2,"Not Specified, and Credit-Builder Loan",7.827366251,10,5.42,6,_,21.99732407,26.2306231,25 Years and 2 Months,No,63.06480596,654.7229897,Low_spent_Small_value_payments,386.1845076,0,-1.8036,-1.4909,2.9836,-0.5053,-2.0157 -0x20215,CUS_0xb5a8,August,26,232-92-9825,Entrepreneur,11138.425,,3,7,20,2,"Credit-Builder Loan, and Mortgage Loan",,11.79750604,7.95,2,Standard,960.1111828,35.37931187,26 Years and 0 Months,Yes,11.12529943,49.6250768,High_spent_Small_value_payments,290.3698321,0,1.3555,1.6895,-0.4468,0.5833,0.561 -0x20221,CUS_0xaea7,August,18,899-86-9384,Entrepreneur,80669.44,6502.453333,8,8,816,5,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",50.56342884,29.23619301,24.55,12,_,3975.250192,26.26259485,14 Years and 2 Months,Yes,190.429435,190.7136629,High_spent_Small_value_payments,529.1022355,0,-0.9746,-0.6747,0.7291,0.1334,-0.3735 -0x2022d,CUS_0xb8a7,August,29,630-52-9597,Lawyer,143544.96,12156.08,5,7,14,0,,24.17690525,15,8.26,4,Standard,1434.18,31.06105624,15 Years and 10 Months,Yes,0,10000,High_spent_Large_value_payments,1339.859744,0,-0.003,0.141,1.9622,0.4095,0.4557 -0x20239,CUS_0xb38f,August,34,076-83-7903,_______,56500.7,,2,3,4,2,"Student Loan, and Not Specified",,3,7.86,5,_,991.98,23.67401592,32 Years and 10 Months,NM,396.3407625,295.8169107,Low_spent_Large_value_payments,371.7108369,0,-0.7104,-0.2045,0.9724,0.5403,1.3136 -0x20245,CUS_0xac7d,August,22,111-11-3343,Teacher,38882.52,3186.21,7,3,19,3,"Not Specified, Payday Loan, and Student Loan",,22,12.83,8,_,1191.5,39.8200554,24 Years and 0 Months,Yes,61.05508493,,High_spent_Medium_value_payments,394.7207202,0,0.5321,0.4533,1.0695,-0.0386,0.7385 -0x20251,CUS_0xbf38,August,35,448-31-1022,Scientist,25306.37,2154.445766,4,3,18,0,,26.74172234,19,17.14,8,Standard,33.59885002,39.21165852,14 Years and 8 Months,Yes,244.4184003,11158.18324,High_spent_Large_value_payments,444.2895194,0,-0.3526,-0.5872,-1.1315,-0.6787,-1.2954 -0x2025d,CUS_0x9d36,August,34,938-29-5431,Teacher,91490.6,7526.216667,5,4,12,4,"Payday Loan, Home Equity Loan, Payday Loan, and Auto Loan",23.77671804,16,12.76,5,Standard,1082.08,28.16751889,9 Years and 0 Months,Yes,179.6745611,314.3340482,High_spent_Medium_value_payments,508.6130574,0,0.3705,-0.4805,-0.6751,0.3581,0.83 -0x20269,CUS_0x344e,August,49,975-76-9175,Developer,27587.1,,5,3,17,0,,30.89166667,20,10.99,6,Standard,268.83,36.99687508,,Yes,0,93.10988508,High_spent_Medium_value_payments,381.7826149,0,-0.8317,1.4388,1.1444,-1.2096,-1.7284 -0x20275,CUS_0x70dc,August,34,772-28-6345,Architect,73327,6090.583333,10,8,19.06745738,5,"Auto Loan, Student Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",,25.43163674,22.31,7,_,3969.921766,35.79032468,2 Years and 0 Months,Yes,260.2658114,291.3172579,Low_spent_Large_value_payments,300.7549761,0,-0.9465,1.3656,0.8843,0.6378,-0.0728 -0x20281,CUS_0x2a25,August,35,234-67-7737,Media_Manager,9834.33,626.5275,10,8,31.95700519,6,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,,22.71,11,Bad,3650.820954,38.05147046,11 Years and 5 Months,Yes,1370.991076,81.62322168,Low_spent_Small_value_payments,178.9880835,0,-0.5918,0.1071,-0.9825,-0.5696,-0.3656 -0x2028d,CUS_0x6f1b,August,39,155-11-7973,Scientist,29441.38,,7,4,10,4,"Home Equity Loan, Personal Loan, Payday Loan, and Home Equity Loan",9.392096824,9,,0,Standard,1276.05,25.77793318,18 Years and 0 Months,Yes,76493,34.87673019,High_spent_Large_value_payments,386.5687123,0,1.6807,0.1306,-0.0965,-0.533,1.0281 -0x20299,CUS_0x86dd,August,25,160-52-9463,Doctor,117342.92,9996.576667,6,6,16.28836175,0,Credit-Builder Loan,,21.38657022,12.27,6,Standard,863.8721727,33.77315993,25 Years and 11 Months,Yes,74.13468473,996.1954367,Low_spent_Large_value_payments,619.2650062,0,0.5187,-1.5783,-0.0004,-0.2945,0.083 -0x202a5,CUS_0x6975,August,37,947-51-5706,Engineer,46929.57,4099.7975,6,9,27.88954781,100,"Personal Loan, Home Equity Loan, Auto Loan, Payday Loan, and Not Specified",20.78090286,14.02724844,12.29,12,Standard,1499.387642,36.68635916,8 Years and 2 Months,NM,1488.194281,,!@9#%8,186.0393761,0,-1.0766,0.747,-1.4213,0.1256,-0.6851 -0x202b1,CUS_0x828f,August,28,922-74-5425,Entrepreneur,128847,,5,4,8,2,"Auto Loan, and Home Equity Loan",15.75771326,10.45381267,5.95,3,Good,728.9485326,36.76767578,21 Years and 3 Months,No,197.0399432,121.7192477,High_spent_Medium_value_payments,1029.265809,0,1.5302,-1.6601,0.6364,-0.1365,-0.7829 -0x202bd,CUS_0x4d01,August,45,934-29-7409,Engineer,10455.585,727.29875,10,9,31.06745738,3,"Debt Consolidation Loan, Personal Loan, and Payday Loan",,20,6.52,9,_,2050.760954,26.1368951,8 Years and 10 Months,Yes,20.14781346,10000,Low_spent_Small_value_payments,265.6530976,0,-1.5061,-0.9346,0.2231,0.937,0.4052 -0x202c9,CUS_0x4d7a,August,34,370-25-4413,Media_Manager,94312.05,,5,6,5,1,Payday Loan,15.59679026,12.59858865,0.53,3,Good,131.2350125,37.56113846,32 Years and 11 Months,NM,61.36791209,616.8889093,Low_spent_Large_value_payments,361.9769286,0,-0.2566,-0.0844,-0.1093,0.413,-0.0366 -0x202d5,CUS_0x3fcd,August,19,820-68-6580,Doctor,19135.06,,6,6,30.06745738,8,"Debt Consolidation Loan, Personal Loan, Auto Loan, Home Equity Loan, Auto Loan, Student Loan, Payday Loan, and Payday Loan",,21,20.43,14,Bad,4412.290954,34.81509951,8 Years and 5 Months,Yes,95.2872903,54.28968643,High_spent_Small_value_payments,249.9615687,0,0.4924,-0.0647,-0.6195,0.797,-0.3062 -0x202e1,CUS_0x7b8c,August,21,321-02-4040,Musician,116623.44,9836.62,5,4,9,0,,8.954380432,10,3.67,6,Good,1198.03,27.42433355,,No,0,538.7147175,Low_spent_Small_value_payments,734.9472825,0,-0.7484,0.4249,-2.0471,0.3999,1.3978 -0x202ed,CUS_0x3fc3,August,22,477-00-9604,_______,48783.44,4187.286667,3,7,18,3,"Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",,16,10.96,2,_,146.68,26.30157537,20 Years and 3 Months,No,79.61675439,332.4608574,Low_spent_Small_value_payments,296.6510549,0,-1.3007,0.6875,-0.426,0.9554,0.9868 -0x202f9,CUS_0xa78f,August,24,907-10-9336,Entrepreneur,65844.86,,7,4,10,7,"Home Equity Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Not Specified",,,8.23,8,Standard,1460.73,31.65349005,19 Years and 6 Months,Yes,199.6357631,226.1512074,High_spent_Medium_value_payments,360.5201961,0,1.3138,-1.0455,-0.1513,0.3658,-0.5424 -0x20305,CUS_0x305c,August,30,979-78-2250,Teacher,14239.41,1255.6175,5,3,6.288361749,2,"Student Loan, and Personal Loan",19.23964606,16,17.01,10,Standard,55.46,36.12106473,13 Years and 9 Months,Yes,18.46749417,533.6015239,Low_spent_Small_value_payments,283.4301929,0,-0.5354,-0.5192,-0.8516,-2.3378,1.0019 -0x20311,CUS_0x21c8,August,45,074-08-0931,Engineer,71554.68,,3,6,12,2,"Payday Loan, and Payday Loan",15.21508315,13,16.49,1,Standard,90.14,24.60942295,31 Years and 4 Months,Yes,103.3976742,534.5403539,Low_spent_Medium_value_payments,217.9509719,0,0.8631,0.9482,-0.1051,0.0234,-0.0086 -0x2031d,CUS_0x7c71,August,33,232-13-7134,Teacher,16743.345,,2,4,5,0,,3.806856276,6,4.21,3,Good,1175.04919,29.03636228,26 Years and 10 Months,NM,97.91207982,62.03438322,High_spent_Medium_value_payments,325.9363767,0,1.215,0.9824,0.1806,-1.1477,0.5943 -0x20329,CUS_0xa40e,August,18,180-10-7504,Developer,33749.34,2536.552441,10,9,21.88954781,7,"Auto Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",39.52832792,25,1.13,11,Bad,2393.46,28.63299803,9 Years and 4 Months,Yes,1559.084274,,High_spent_Medium_value_payments,243.1698456,0,-0.35,-2.0661,0.0063,1.2422,-0.0585 -0x20335,CUS_0x5654,August,47,561-85-6550,_______,31933.89,2685.1575,4,3,11,1,Student Loan,16.90374287,14.46785334,7.18,1,Good,224.7423122,29.09254011,19 Years and 2 Months,No,67059,,Low_spent_Small_value_payments,393.945268,0,-0.052,0.1518,-0.8435,-1.2701,-0.9268 -0x20341,CUS_0x6f4a,August,19,433-63-5299,Architect,88602,7167.5,6,4,15,2,"Not Specified, and Payday Loan",15.16042136,12,6.43,4,Standard,74.12,23.85088501,,No,94.56080896,930.084411,Low_spent_Small_value_payments,,0,0.8982,0.6298,0.052,-0.2906,-0.772 -0x2034d,CUS_0x58a3,August,30,806-40-7521,Developer,21526.91,1540.909167,6,6,19,2,"Auto Loan, and Credit-Builder Loan",25.9795328,20,19.28,10,Standard,261.14,33.23192152,,Yes,20.92322689,175.1118133,Low_spent_Small_value_payments,248.0558765,0,0.5362,0.8161,-1.3854,-0.0945,0.2984 -0x20359,CUS_0x6728,August,52,568-05-5440,Journalist,19127.06,,5,7,6,3,"Debt Consolidation Loan, Student Loan, and Auto Loan",21.71673436,14,7.26,9,Standard,89.19,27.49143025,24 Years and 10 Months,Yes,41.96108418,149.3151548,Low_spent_Small_value_payments,250.5159277,0,-0.0924,1.6218,-0.4213,-0.2971,2.0703 -0x20365,CUS_0x9d60,August,36,904-49-7781,Teacher,37743.72,3341.31,10,399,15.88954781,9,"Payday Loan, Mortgage Loan, Personal Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Home Equity Loan",52.34264211,27.715812,5.64,12,Bad,2632.219384,27.41487497,8 Years and 8 Months,Yes,1499.748953,80.4625227,High_spent_Small_value_payments,319.5894427,0,-0.7665,-0.2244,1.1083,2.9285,0.4441 -0x20371,CUS_0x2717,August,31,617-86-7354,_______,14836.74,1151.395,5,5,2,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",0.588096074,1,8.99,2,Good,832.06,31.6109214,26 Years and 4 Months,No,36.91088386,,Low_spent_Small_value_payments,216.2045984,0,-1.0611,-0.0719,1.6232,1.0429,-1.9508 -0x2037d,CUS_0xee1,August,34,376-41-3395,Writer,17116.55,1722.379167,8,8,18.95700519,7,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Home Equity Loan, and Personal Loan",35.20825164,24.22435623,3.9,14,Bad,1689.939043,37.61176125,20 Years and 4 Months,Yes,1380.199406,112.2783197,Low_spent_Small_value_payments,248.7098216,0,-0.2338,0.2129,0.6239,0.3505,1.3142 -0x20389,CUS_0x4e3b,August,36,794-37-5918,Musician,16193.87,1287.489167,9,1268,16.06745738,2,"Mortgage Loan, and Personal Loan",25.41400701,,7.53,6,Bad,2444.620954,39.54345336,18 Years and 3 Months,Yes,21.04417249,91.62130783,Low_spent_Medium_value_payments,269.3631484,0,-0.3036,-0.2644,-1.4554,0.5252,-0.7268 -0x20395,CUS_0x56bb,August,27,055-66-2809,Teacher,18202.79,1390.899167,4,4,5,1,Mortgage Loan,14.62210831,13.35652101,9.7,8,Standard,1036.032951,30.95931028,17 Years and 6 Months,Yes,11.84600516,178.5775511,!@9#%8,238.6663604,0,0.4644,-0.7505,0.8729,0.2039,-0.1023 -0x203a1,CUS_0x1def,August,28,922-25-6106,Accountant,14411.9,,6,8,24.88954781,7,"Mortgage Loan, Not Specified, Not Specified, Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",22.6146924,18,25.8,7,Bad,3640.4,39.07075713,9 Years and 10 Months,Yes,1423.301753,,Low_spent_Small_value_payments,194.307435,0,0.3433,0.4452,1.1913,-1.1755,0.0696 -0x203ad,CUS_0x29a3,August,40,943-64-5028,Accountant,15734.68,1017.156888,8,7,1923.067457,7,"Not Specified, Debt Consolidation Loan, Student Loan, Payday Loan, Personal Loan, Mortgage Loan, and Personal Loan",,21,23.82,12,Bad,4284.140954,23.77213686,3 Years and 9 Months,Yes,104.4900879,57.66250867,High_spent_Small_value_payments,188.3158945,0,-0.6544,2.36,-0.8035,-0.471,-0.2314 -0x203b9,CUS_0x7e5b,August,50,176-51-3094,Architect,29894.7,,4,3,19,100,"Auto Loan, Mortgage Loan, Student Loan, Payday Loan, Payday Loan, Auto Loan, and Not Specified",,15,10.33,6,Standard,944.2858628,25.28157268,13 Years and 5 Months,Yes,95.87008851,34.83039317,High_spent_Large_value_payments,371.2990728,0,-0.1763,0.423,-2.3737,-1.1187,0.9063 -0x203c5,CUS_0x1edc,August,20,468-63-2688,_______,62152.59,5188.3825,8,4,12,2,"Credit-Builder Loan, and Credit-Builder Loan",23.07327461,20,2.75,8,Standard,874.6,34.93889142,29 Years and 0 Months,Yes,99.34693588,321.5274248,Low_spent_Small_value_payments,387.9638894,0,0.8528,1.7791,-0.2788,-0.6984,-0.785 -0x203d1,CUS_0x5082,August,26,045-69-2378,Architect,11586.36,,5,5,17,2,"Mortgage Loan, and Credit-Builder Loan",14.65813542,11,16.03,6,Standard,1269.23,34.24547554,18 Years and 3 Months,Yes,38904,114.2251361,Low_spent_Small_value_payments,279.0696586,0,-1.6638,-1.5047,-0.5674,-0.4966,-1.8761 -0x203dd,CUS_0x2516,August,20,203-37-6938,Engineer,18811.58,1782.631667,5,3,7.288361749,4,"Personal Loan, Mortgage Loan, Not Specified, and Credit-Builder Loan",0,3,9.79,0,_,18.49171133,26.82373536,27 Years and 0 Months,NM,50.85624504,,!@9#%8,263.1701762,0,0.8092,0.1162,-0.6439,-1.773,-1.051 -0x203e9,CUS_0x46d2,August,36,161-34-0528,Engineer,7718.76,900.23,8,6,26.06745738,8,"Student Loan, Student Loan, Payday Loan, Student Loan, Payday Loan, Personal Loan, Personal Loan, and Mortgage Loan",,27.37014063,29.53,13,Bad,5518.101371,33.20504643,6 Years and 9 Months,Yes,36.76416182,,Low_spent_Small_value_payments,207.5336028,0,0.4665,0.2252,1.2202,1.3168,-0.1696 -0x203f5,CUS_0x2c48,August,43,434-93-5925,Architect,87883.92,,8,5,17,4,"Debt Consolidation Loan, Student Loan, Mortgage Loan, and Mortgage Loan",15.65348235,11,9.91,0,Standard,1294.9,29.35523181,16 Years and 3 Months,Yes,205.5998584,241.6062589,High_spent_Medium_value_payments,527.8598827,0,0.8713,-2.286,0.6578,-0.289,0.8065 -0x20401,CUS_0xb2a9,August,38,171-89-1108,Doctor,37486.02,,3,5,7.288361749,2,"Auto Loan, Debt Consolidation Loan, and Payday Loan",2.894205711,6.873994095,5.65,2,Good,393.2247528,32.9328464,21 Years and 3 Months,No,66.53922204,527.8411243,High_spent_Medium_value_payments,405.5406147,0,1.0876,-0.2416,0.8109,-0.6222,-0.2123 -0x2040d,CUS_0xa488,August,28,#F%$D@*&8,Journalist,6755739,1167.429167,8,3,19.28836175,2,"Payday Loan, and Credit-Builder Loan",11.67986313,11,22.16,6,Standard,1151.22,24.78116055,15 Years and 4 Months,Yes,19.61933384,,Low_spent_Small_value_payments,254.8799649,0,-0.064,-0.7367,-0.3505,0.7598,1.4726 -0x20419,CUS_0x36e1,August,35,132-77-4921,Journalist,20364.57,,6,8,32,3,"Personal Loan, Student Loan, and Mortgage Loan",13.38108609,9,10.3,11,Standard,2500.04,27.57647762,9 Years and 8 Months,Yes,26.16810893,92.51897592,High_spent_Small_value_payments,303.9176652,0,-1.4028,0.1995,0.1752,-1.7698,-1.2905 -0x20425,CUS_0x3d63,August,42,275-19-2331,Engineer,63901.05,5409.0875,4,6,19,0,,,20,14.49,5,Standard,1253.04,25.05339532,26 Years and 3 Months,NM,0,10000,High_spent_Medium_value_payments,672.1394258,0,-0.4444,-0.0913,-0.3079,1.4947,0.3269 -0x20431,CUS_0x91c8,August,23,616-81-8118,Mechanic,15710.555,,4,5,19,4,"Payday Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",90,2956,2.58,1,Standard,442.17,27.64039663,24 Years and 8 Months,No,26.49212301,48.46324026,Low_spent_Large_value_payments,324.0659284,0,-0.1925,-0.0105,-0.8191,-1.2526,0.5687 -0x2043d,CUS_0x7351,August,35,090-19-3561,Writer,14735.48,,9,10,33,5,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, and Debt Consolidation Loan",32.01571679,24,20.56,6,Bad,3952.93,29.90742601,11 Years and 3 Months,Yes,37.47347446,170.5314758,Low_spent_Small_value_payments,210.4907164,0,-0.7126,0.778,0.003,-0.2087,-0.7853 -0x20449,CUS_0x7e6f,August,44,178-13-2681,Developer,14431.49,,0,6,6,0,,7.358474636,7,7.46,3,Good,214.25,24.5708035,,No,0,112.82074,Low_spent_Medium_value_payments,297.9416767,0,-2.2083,0.7843,1.0502,-0.1161,-0.4737 -0x20455,CUS_0x3abe,August,29,594-35-1178,Developer,71689.68,,7,8,16,6,"Payday Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",,18.08307211,9.71,9,Standard,1992.685326,38.58337582,15 Years and 4 Months,Yes,286.9285326,120.6552127,High_spent_Large_value_payments,403.0302547,0,-0.3412,-0.4428,-0.3506,0.3579,-1.1941 -0x20461,CUS_0x2da9,August,24,894-47-5302,Developer,54000.9,4661.075,4,5,14,2,"Payday Loan, and Personal Loan",21.81130227,13,3.28,8,Standard,1105.99,35.59328834,25 Years and 0 Months,No,78.81201699,181.080137,High_spent_Small_value_payments,466.215346,0,-0.0453,-0.8363,0.673,0.6315,-1.2161 -0x2046d,CUS_0x717a,August,47,417-48-6289,Doctor,75408.44,,0,1,6,3,"Home Equity Loan, Student Loan, and Home Equity Loan",,5,3.43,9,Good,1304.89748,39.37648487,22 Years and 5 Months,No,102.5661777,87.64473041,High_spent_Large_value_payments,700.4339459,0,-0.746,-0.6639,1.457,0.736,0.0335 -0x20479,CUS_0x9e31,August,80,581-58-9802,_______,9095.29,853.9408333,7,5,16,6,"Debt Consolidation Loan, Not Specified, Personal Loan, Payday Loan, Student Loan, and Payday Loan",20.8586884,17,14.58,439,Standard,2016.31,35.97282242,,Yes,42.47212402,63.80700816,Low_spent_Small_value_payments,269.1149512,0,0.5747,2.2435,-0.4627,-0.6043,1.128 -0x20485,CUS_0x85f4,August,31,771-28-2450,Developer,76714.08,6401.84,0,7,11,3,"Not Specified, Not Specified, and Payday Loan",,2.30658623,6.78,3,Good,1257.117316,38.09324769,21 Years and 9 Months,No,101.2837249,359.4033903,Low_spent_Medium_value_payments,459.4968848,0,-0.098,-0.2492,-0.0622,0.4346,1.3013 -0x20491,CUS_0x1098,August,27,466-10-5742,_______,20652.98,,7,5,22.06745738,2,"Auto Loan, and Payday Loan",,11.2683294,8.58,8,Standard,2347.532066,38.46440463,18 Years and 11 Months,NM,33.23835624,54.60338563,Low_spent_Small_value_payments,322.2461368,0,-0.4548,1.1046,-0.5982,0.4516,-1.3731 -0x2049d,CUS_0x93ba,August,23,159-90-4552,Lawyer,110603.94,9463.995,5,7,12,1,Student Loan,20.78444794,13,5.75,1,Standard,805.01,36.42984396,,No,68.79160162,794.8654559,Low_spent_Medium_value_payments,362.7424425,0,-1.0933,1.0721,-0.605,-0.4764,-0.9294 -0x204a9,CUS_0x42e4,August,29,108-73-7805,Developer,28204.79,,2,6,5,2,"Student Loan, and Home Equity Loan",,10.77326204,4.64,1,Good,509.4118179,40.24078134,24 Years and 5 Months,No,27.45012616,,High_spent_Medium_value_payments,398.150354,0,-1.28,-1.7075,1.391,-0.3268,2.1414 -0x204b5,CUS_0xb4b3,August,29,#F%$D@*&8,Journalist,68399.64,5899.97,6,5,23,5,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Payday Loan",36.96231725,18,22.68,14,Bad,2781.7,26.94663565,4 Years and 5 Months,Yes,241.107701,167.2761287,High_spent_Medium_value_payments,431.6131703,0,-0.3795,-0.2924,-0.7387,-0.2577,-2.1879 -0x204c1,CUS_0xac33,August,50,#F%$D@*&8,Engineer,34956.22,,10,6,25.06745738,100,"Payday Loan, Credit-Builder Loan, Payday Loan, Student Loan, Not Specified, and Debt Consolidation Loan",30.32735861,18,18.54,8,Bad,3602.080898,30.70734606,,Yes,95.23067109,112.4384637,High_spent_Small_value_payments,323.7229078,0,-1.1273,-0.0315,-0.1005,-1.3558,-0.8241 -0x204cd,CUS_0xb96c,August,80,930-28-6972,Engineer,49215.72,3904.31,10,6,29,5,"Auto Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",,23,25.04,11,Bad,3197.22,34.13537566,6 Years and 9 Months,Yes,119.7055536,123.4189461,High_spent_Medium_value_payments,397.3065003,0,-2.2809,-0.0475,0.2089,0.1682,-0.7494 -0x204d9,CUS_0x65a0,August,23,#F%$D@*&8,Scientist,14957.97,,10,5,19.06745738,5,"Mortgage Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",,24.67499246,6.4,9,Bad,2166.368584,38.64792432,19 Years and 10 Months,Yes,53.28419215,107.7257492,Low_spent_Small_value_payments,200.9195207,0,-0.0325,0.9241,0.0669,0.1196,-1.0447 -0x204e5,CUS_0x1c59,August,42,277-13-7658,Doctor,19188.055,,5,4,2,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",5.242373043,8,4.5,7,_,417.2741782,29.11543279,22 Years and 9 Months,No,44.60237014,109.5623943,Low_spent_Small_value_payments,281.745223,0,0.9965,0.5889,-1.0245,0.0729,-0.8475 -0x204f1,CUS_0x80b8,August,44,309-74-1982,Developer,15928.75,,9,9,24,4,"Auto Loan, Personal Loan, Student Loan, and Payday Loan",40.63864277,29.12323588,6.26,15,Bad,2537.564481,31.96098113,12 Years and 8 Months,Yes,20491,158.5201436,Low_spent_Small_value_payments,229.7727611,0,1.2001,-0.4858,-0.138,-0.8423,-0.9671 -0x204fd,CUS_0x7dd8,August,49,294-22-7448,_______,17451.235,,5,3,5,4,"Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",12.04167713,10.56214747,,8,Good,998.051284,31.77589463,20 Years and 9 Months,No,40.60167158,44.60156656,Low_spent_Medium_value_payments,322.4237202,0,1.1073,0.0921,1.5115,-1.0473,-0.384 -0x20509,CUS_0xbb0c,August,31,358-45-0878,Writer,106546.08,8951.84,8,3,12.28836175,0,Personal Loan,12.24335211,12,11.21,3,Standard,206.52,39.36232989,17 Years and 0 Months,No,86.16494277,10419.93746,High_spent_Large_value_payments,930.0872395,0,-1.6746,0.4547,2.0931,-0.0047,-1.5221 -0x20515,CUS_0x9442,August,25,850-53-3186,Mechanic,18225.38,,8,9,20.06745738,8,"Student Loan, Payday Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",,21,17.2,16,Bad,2875.600954,40.42043273,12 Years and 10 Months,Yes,71.82555873,93.63120449,Low_spent_Medium_value_payments,236.6011155,0,-0.2099,1.0361,0.5784,-1.5669,-0.7978 -0x20521,CUS_0x7483,August,57,263-53-9416,Writer,89221.26,7226.105,4,4,3.288361749,4,"Mortgage Loan, Payday Loan, Not Specified, and Payday Loan",0,1,11.94,5,Good,126.4515221,38.45832848,18 Years and 4 Months,NM,226.0499522,623.4356213,High_spent_Small_value_payments,572.6425778,0,2.2602,1.0419,0.3722,-2.6016,-0.4534 -0x2052d,CUS_0x9bb3,August,21,851-98-7626,Teacher,24127.79,2097.649167,5,7,15,5,"Credit-Builder Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Auto Loan",22.2415967,16,13.47,7,Standard,899.21,30.34363681,19 Years and 11 Months,Yes,61723,126.8616511,High_spent_Small_value_payments,245.9836178,0,0.5173,0.5485,0.5854,0.7686,0.364 -0x20539,CUS_0xaff7,August,29,341-35-0902,Journalist,56007.82,4517.417671,6,4,11,4,"Not Specified, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,12,3.05,3,Good,182.37,34.81489793,22 Years and 3 Months,No,385.050339,,!@9#%8,297.0918619,0,-0.3519,-1.4253,0.5192,1.6611,0.0535 -0x20545,CUS_0x9893,August,18,569-29-1543,_______,17471.63,,6,4,8,6,"Payday Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Auto Loan, and Personal Loan",20.19344793,15,11.51,8,Standard,1050.26,28.47905471,17 Years and 8 Months,Yes,58.90504147,86.87380679,Low_spent_Large_value_payments,242.5180684,0,-1.4758,0.0536,2.3772,0.7558,-1.3877 -0x20551,CUS_0x4e95,August,42,921-95-7248,Developer,127928.68,,2,6,12,4,"Mortgage Loan, Auto Loan, Not Specified, and Not Specified",12.10093995,8,8,3,Good,1361.41,26.87619034,16 Years and 10 Months,NM,240.7719327,1341.1492,Low_spent_Small_value_payments,,0,-0.6622,0.1094,0.0115,1.2467,-0.3558 -0x2055d,CUS_0x3e67,August,48,483-97-0045,Doctor,35802.82,,2,4,10,3,"Credit-Builder Loan, Not Specified, and Credit-Builder Loan",4.836014822,8,7.11,4,_,609.8441401,29.83474729,16 Years and 0 Months,NM,82.48648431,142.2352804,Low_spent_Large_value_payments,371.3138724,0,0.1723,0.7546,0.0755,0.6219,1.1017 -0x20569,CUS_0x758e,August,48,582-72-2067,Mechanic,47202.12,3823.373564,3,3,12,0,,24.83346043,20,1.39,7,Standard,1333.49,30.01457326,28 Years and 5 Months,No,341.1364362,155.7712507,!@9#%8,510.6797493,0,-0.8234,-0.7498,1.7134,0.6841,-0.1307 -0x20575,CUS_0x471c,August,24,757-62-8379,Lawyer,17805.15,1711.7625,7,7,24.06745738,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",28.46303744,19,19.59,8,Standard,2502.770954,40.84078535,9 Years and 10 Months,Yes,81.85038191,10000,!@9#%8,283.2219638,0,-1.4929,-1.2721,0.5887,-0.7401,0.4421 -0x20581,CUS_0x856b,August,47,653-14-2514,Developer,4175074,,2,3,8.288361749,4,"Home Equity Loan, Home Equity Loan, Not Specified, and Not Specified",1.001422309,4,11.56,3,Good,758.4443773,34.8430968,32 Years and 2 Months,No,159.8096372,602.164708,High_spent_Medium_value_payments,614.7629792,0,1.1721,0.5708,2.0274,0.2061,-0.7456 -0x2058d,CUS_0x2c04,August,23,#F%$D@*&8,Teacher,33479.22,2765.935,5,4,12,0,,0,2.349803885,11.7,2,Good,1352.479015,24.46333843,30 Years and 10 Months,No,0,117.8860589,Low_spent_Small_value_payments,448.7074411,0,-0.296,0.3536,0.3926,0.3414,0.0775 -0x20599,CUS_0x288b,August,37,595-50-4347,_______,109655.25,9313.9375,1,4,6,0,,0,1,8.27,4,Good,1234.63,38.5335678,25 Years and 10 Months,No,1775,681.8660391,Low_spent_Small_value_payments,539.5277109,0,-1.1687,0.7023,-0.2626,0.495,0.556 -0x205a5,CUS_0x3ad4,August,41,383-19-8762,Accountant,80743.8,6886.65,4,3,11,3,"Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",,9,-3.81,5,_,186.0068173,40.89968857,,No,191.4871338,,High_spent_Large_value_payments,609.3353682,0,0.373,-0.2389,-0.903,-0.9275,0.5667 -0x205b1,CUS_0x9fdc,August,56,417-61-0153,Journalist,34388,,0,5,5,0,,,5,9.53,5,Good,874.17,26.55680341,22 Years and 3 Months,No,0,,Low_spent_Small_value_payments,293.341912,0,0.7399,0.4257,-1.0404,-0.017,-0.7381 -0x205bd,CUS_0x4182,August,41,392-40-4433,Journalist,28131.62,,8,4,6,2,"Debt Consolidation Loan, and Debt Consolidation Loan",10.27404004,8,2.27,0,Standard,888.82,28.48906916,31 Years and 8 Months,NM,35.00668532,68.59522463,High_spent_Medium_value_payments,397.4282567,0,0.7809,-0.7596,-0.4081,0.0009,-0.0612 -0x205c9,CUS_0x83ea,August,34,869-20-6910,Media_Manager,14461.52,1010.126667,10,8,33,6,"Home Equity Loan, Student Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Home Equity Loan",,14,18.75,11,Bad,2566.1,31.16823475,8 Years and 8 Months,Yes,41.82171883,121.6932967,Low_spent_Small_value_payments,227.4976511,0,0.3653,0.6217,-0.3335,-0.3564,1.5056 -0x205d5,CUS_0xb614,August,29,#F%$D@*&8,Musician,81623.13,6887.9275,4,4,8,2,"Mortgage Loan, and Payday Loan",26.43172104,19,9.01,6,Standard,1160.88,40.63528913,15 Years and 10 Months,Yes,91.19030018,123.3984446,High_spent_Large_value_payments,714.2040052,0,0.3352,1.3743,-1.7748,0.8662,-1.0387 -0x205e1,CUS_0x4ee6,August,41,663-89-8509,Engineer,50649.6,4431.8,3,5,23,6,"Home Equity Loan, Auto Loan, Student Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",17.46692314,11.85418573,8.33,8,Standard,2283.386767,37.91506844,18 Years and 6 Months,Yes,184.6611657,,Low_spent_Small_value_payments,385.0991957,0,-1.058,0.4791,3.1879,-0.2388,-0.2242 -0x205ed,CUS_0x9d0a,August,42,757-20-7915,Entrepreneur,88045.8,7108.15,5,4,19,4,"Home Equity Loan, Not Specified, Not Specified, and Student Loan",15.56950847,13,9.57,6,Standard,262.3,41.24347693,22 Years and 5 Months,Yes,268.5819061,88.94773638,High_spent_Large_value_payments,593.2853576,0,0.1627,0.4794,0.2217,1.3538,-0.8309 -0x205f9,CUS_0x28ef,August,25,694-69-4113,Doctor,34406.64,,3,6,20,6,"Debt Consolidation Loan, Personal Loan, Payday Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",,14,23.29,8,Standard,1598.71,25.58803944,,Yes,426.8808125,176.9871938,Low_spent_Large_value_payments,250.398428,0,1.6122,-1.366,-0.4961,2.1164,-0.2974 -0x20605,CUS_0x5f7e,August,18,272-09-8561,_______,14677.92,,10,8,22.06745738,4,"Not Specified, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,21,18.08,12,Bad,2351.140954,33.04752184,16 Years and 9 Months,Yes,36.69339441,,Low_spent_Medium_value_payments,223.7419183,0,-0.8102,0.5396,-0.144,0.3707,1.0869 -0x20611,CUS_0x89bd,August,27,899-69-8713,Mechanic,14841.17,,7,6,34.06745738,2,"Debt Consolidation Loan, and Payday Loan",30.72166855,13.66682673,10.2,13,Standard,1752.713948,35.16030646,14 Years and 3 Months,Yes,23.32235161,53.33727097,!@9#%8,255.5965061,0,-0.759,-0.7384,0.2181,0.6001,0.8605 -0x2061d,CUS_0xa781,August,22,447-70-8247,Scientist,21677.905,1859.492083,1,4,11,1,Payday Loan,,1,4.71,5,Good,585.36,40.11700202,33 Years and 4 Months,No,11.503369,79.18608012,High_spent_Small_value_payments,355.2597592,0,-1.4545,-0.7516,-1.2373,-0.3752,-0.5037 -0x20629,CUS_0x2413,August,27,133-83-2285,Manager,14623.51,,9,5,15,7,"Home Equity Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",18.51181265,16,19.11,8,_,3607.96,23.38749887,14 Years and 3 Months,Yes,61.68378453,,High_spent_Small_value_payments,243.5827485,0,1.9437,0.4388,-0.0664,-0.3573,-0.2144 -0x20635,CUS_0x4f15,August,46,419-97-7180,Manager,110375.04,,5,3,11,1,Not Specified,12.81829125,,10.12,4,Good,1449.78,32.77634103,33 Years and 0 Months,No,83.07440213,101.1347479,High_spent_Medium_value_payments,1000.38285,0,-1.014,0.6261,-0.0727,-0.3489,-0.6048 -0x20641,CUS_0x7cae,August,37,427-66-0468,_______,14996.235,,3,6,17.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, and Home Equity Loan",,18,13.83,,Standard,1324.050954,37.1520939,14 Years and 0 Months,Yes,61.64740219,,Low_spent_Small_value_payments,165.0458197,0,0.8444,0.0576,-0.2225,-0.3217,-1.2536 -0x2064d,CUS_0x4c6b,August,51,361-89-0620,Journalist,26779.9,1986.658333,7,4,12,4,"Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Personal Loan",,14,7.36,6,_,589.7291494,36.15203182,33 Years and 4 Months,No,56.0355398,,Low_spent_Large_value_payments,241.3509184,0,0.1989,-0.1841,-0.7962,-0.8337,1.3106 -0x20659,CUS_0xa014,August,37,622-88-2476,Journalist,168491.44,,4,4,12,0,,5.267207742,7,1.35,7,Good,296.3988337,47.08748272,27 Years and 10 Months,NM,0,,High_spent_Large_value_payments,1344.984861,0,0.4308,-0.0364,-2.1313,0.9527,0.4039 -0x20665,CUS_0x12e7,August,43,603-76-3049,Architect,46874.85,,9,5,15,100,"Payday Loan, and Personal Loan",,23.54802569,8,9,Bad,2178.903899,34.61525703,17 Years and 10 Months,Yes,70.54051854,146.9862281,Low_spent_Large_value_payments,460.6970034,0,-0.7262,1.1983,2.2861,-0.8784,0.7836 -0x20671,CUS_0x8a73,August,48,521-31-1008,Media_Manager,74437.44,6184.12,5,7,3.288361749,2,"Home Equity Loan, and Auto Loan",,2,7.45,3,_,400.0902172,38.24959242,32 Years and 3 Months,NM,104.4110353,807.9541173,Low_spent_Small_value_payments,452.5444746,0,0.5456,0.4062,0.1651,-0.7425,-0.1493 -0x2067d,CUS_0x4e5e,August,28,269-02-3845,_______,14293.345,,8,5,10,5,"Auto Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Auto Loan",12.31412815,10,19.34,4,_,310.51,29.39927074,7 Years and 0 Months,Yes,59.42466288,,!@9#%8,234.5127033,0,0.2008,0.7265,-1.1515,-0.4082,1.1106 -0x20689,CUS_0x1443,August,31,557-52-9177,Lawyer,88120.12,,5,6,14.28836175,4,"Student Loan, Personal Loan, Auto Loan, and Student Loan",14.22614229,14,7.48,2,Standard,534.85,25.90798032,33 Years and 8 Months,No,164.9787768,519.1834064,High_spent_Large_value_payments,713.5096112,0,0.9663,-0.5879,-1.091,0.8002,0.8483 -0x20695,CUS_0x658e,August,26,#F%$D@*&8,Doctor,46880.49,,6,7,23,5,"Personal Loan, Home Equity Loan, Payday Loan, Payday Loan, and Not Specified",,20.34713582,6.37,11,Bad,2419.754646,38.71133287,19 Years and 9 Months,Yes,106.7284616,,High_spent_Medium_value_payments,378.5685573,0,-1.1976,0.938,-0.0791,-0.7452,0.0872 -0x206a1,CUS_0xb627,August,34,696-92-2622,_______,71551.18,5936.598333,8,3,8,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Personal Loan",9.318784774,9,18.44,7,_,697.67,30.09036412,18 Years and 6 Months,Yes,160.2000365,181.8365258,High_spent_Small_value_payments,511.623271,0,-1.1385,-0.6986,-0.4453,0.9288,-0.9828 -0x206ad,CUS_0x5f9,August,42,970-14-1165,Developer,7427.29,,10,10,30.95700519,7,"Home Equity Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",36.03003876,20.42729846,20.06,17,Bad,4518.268366,28.29436559,8 Years and 8 Months,Yes,1352.121796,,Low_spent_Small_value_payments,192.4254804,0,0.9887,-0.2184,0.8147,1.148,0.1708 -0x206b9,CUS_0x6549,August,22,905-95-5824,Mechanic,39558.23,,4,3,3.288361749,0,Auto Loan,11.17419573,12,5.69,0,Good,306.8088579,37.53944877,30 Years and 8 Months,No,20.62640229,818.8310078,Low_spent_Small_value_payments,265.6081833,0,-0.1898,0.5863,-1.6908,-1.7374,1.3893 -0x206c5,CUS_0x7a21,August,40,319-02-6236,Accountant,19338.48,1633.54,4,7,31.06745738,6,"Mortgage Loan, Student Loan, Not Specified, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",19.73253901,11.55189545,11.84,7,Standard,2132.390537,24.78696006,19 Years and 11 Months,Yes,50.40677633,32.47545224,!@9#%8,303.7514835,0,0.5716,-1.1543,0.2278,0.2563,-0.3009 -0x206d1,CUS_0xb424,August,44,331-28-1921,Media_Manager,42208.74,3355.395,7,9,32,5,"Home Equity Loan, Student Loan, Not Specified, Auto Loan, and Mortgage Loan",31.25147538,19,19.66,2072,Bad,4154.32,34.82678745,,Yes,160.6317757,132.4844944,Low_spent_Small_value_payments,332.4232299,0,0.487,-0.1857,0.0493,-0.1956,0.1889 -0x206dd,CUS_0x3bfd,August,35,433-96-5472,Journalist,16791.21,,6,5,27,7,"Mortgage Loan, Mortgage Loan, Student Loan, Student Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",33.49606846,18,19.14,11,Bad,3321.22,26.63253306,1 Years and 11 Months,Yes,95.77995937,42.89475296,High_spent_Small_value_payments,235.6520377,0,-3.8194,-0.4996,-0.075,-0.1945,0.0628 -0x206e9,CUS_0x1447,August,22,836-93-7211,Doctor,9989.21,653.4341667,5,4,20,2,"Auto Loan, and Credit-Builder Loan",16.42258667,14,5.81,6,_,731.05,22.60078222,19 Years and 5 Months,No,10.50617336,49.7376064,Low_spent_Small_value_payments,295.0996369,0,-0.8608,0.3669,1.8623,0.572,0.0111 -0x206f5,CUS_0xa579,August,21,978-17-0096,Scientist,68498.72,5715.226667,6,9,23,5,"Student Loan, Auto Loan, Student Loan, Mortgage Loan, and Mortgage Loan",30.0026001,16,8.99,15,Bad,1825.94,26.91292831,15 Years and 11 Months,NM,156.1937298,387.8993207,High_spent_Small_value_payments,287.4296161,0,0.5801,-0.4193,0.1235,0.5396,-0.9263 -0x20701,CUS_0x2d03,August,46,404-88-9976,Scientist,15516.87,,5,3,10,0,,8.467810361,8,1.57,1,Good,40.08079955,31.46170623,18 Years and 4 Months,No,0,58.04819666,Low_spent_Medium_value_payments,367.1602412,0,-1.5556,0.895,-0.433,0.5295,2.3245 -0x2070d,CUS_0x5148,August,18,234-90-5943,Mechanic,41498.3,,3,4,20.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Student Loan, Credit-Builder Loan, Not Specified, and Payday Loan",16.18945219,10,10.2,5,Standard,2498.670954,40.63746379,14 Years and 0 Months,Yes,187.5186423,140.863277,!@9#%8,231.4169594,0,-0.9772,-0.8417,-1.1866,-1.328,1.4607 -0x20719,CUS_0x83bd,August,38,860-78-5003,Journalist,17610.81,,9,9,17.06745738,9,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Home Equity Loan",49.98160273,29.82686388,8.45,8,Bad,2217.310977,38.37230755,20 Years and 5 Months,Yes,66.06274348,,Low_spent_Small_value_payments,239.7830219,0,0.3448,-0.2172,0.2369,1.3483,-1.3919 -0x20725,CUS_0x533c,August,39,510-89-3050,Scientist,36871.28,3141.606667,3,3,13,3,"Student Loan, Auto Loan, and Not Specified",11.6697558,10,19.05,13,Standard,331.5,27.41624918,18 Years and 5 Months,Yes,61.93073608,,High_spent_Large_value_payments,448.4813273,0,0.461,-1.0638,0.7089,-0.0548,1.4385 -0x20731,CUS_0xa5ba,August,22,792-40-3442,Accountant,73732.4,6048.366667,10,10,30.88954781,9,"Home Equity Loan, Personal Loan, Home Equity Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Not Specified",27.56117788,16.25310753,1.14,12,_,2421.746812,32.70105732,7 Years and 11 Months,Yes,1849.484667,100.9878044,High_spent_Medium_value_payments,210.0341135,0,1.5796,-0.2474,-1.144,1.2227,-0.0026 -0x2073d,CUS_0x18fa,August,55,177-06-9070,Journalist,18524.52,,2,3,8,0,,4.468077814,5,11.58,3,Good,799.8683654,34.13014638,28 Years and 0 Months,No,0,,High_spent_Medium_value_payments,368.9509878,0,2.2998,0.0057,-1.2051,0.2097,-0.8069 -0x20749,CUS_0x9c71,August,35,788-74-3739,Developer,43285.2,3327.1,8,4,17,1,Mortgage Loan,21.33484221,16,11.55,1,Standard,890.54,32.02761153,17 Years and 8 Months,No,19.9394158,390.2159262,Low_spent_Small_value_payments,212.554658,0,0.7616,-0.1121,-0.8969,0.0357,-0.3949 -0x20755,CUS_0x9f3,August,34,081-10-2427,Teacher,28276.43,2146.369167,2,5,7.288361749,0,Not Specified,0,0,4.99,5,Good,324.6080117,24.44147368,23 Years and 3 Months,No,14.01666241,477.1739554,High_spent_Large_value_payments,390.7827331,0,0.3866,-0.5284,0.0735,0.4056,0.86 -0x20761,CUS_0xa4db,August,26,948-70-9566,Writer,15219276,7774.305,8,3,14,2,"Credit-Builder Loan, and Home Equity Loan",17.24860131,12.32750015,1.83,0,Standard,1312.361168,28.19437831,21 Years and 2 Months,No,80.76999047,248.7322807,High_spent_Small_value_payments,707.9282289,0,-0.3745,0.124,0.6173,1.5801,0.1868 -0x2076d,CUS_0x6bf5,August,26,761-78-5044,Teacher,70902.06,,4,3,5,2,"Personal Loan, and Payday Loan",3.897570938,6,4.88,7,_,720.71,34.47018277,24 Years and 11 Months,No,29215,102.4275932,!@9#%8,667.7132432,0,-0.6135,-0.0701,-1.687,1.2208,1.0073 -0x20779,CUS_0x7202,August,42,437-84-3976,Lawyer,8089.415,889.1179167,6,10,18,7,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",27.97548501,17.93060856,24.45,7,Bad,3217.553882,27.86187233,14 Years and 4 Months,Yes,41.95300256,64.70838426,Low_spent_Medium_value_payments,262.2504048,0,0.6138,0.1196,-1.5233,1.0976,0.7198 -0x20785,CUS_0x1c71,August,28,829-66-3146,_______,43280.82,3648.735,7,5,18.06745738,4,"Auto Loan, Auto Loan, Payday Loan, and Mortgage Loan",43.78111043,26,7.7,999,Bad,2799.850954,37.29337798,12 Years and 0 Months,NM,74.29013507,168.4516352,Low_spent_Large_value_payments,365.4114418,0,-0.4977,1.7603,-0.1938,1.025,-1.2958 -0x20791,CUS_0xac83,August,29,552-58-3128,Teacher,50276.79,,7,6,23,7,"Not Specified, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",30.11627067,,15.12,11,Standard,2855.059265,32.5658671,17 Years and 2 Months,Yes,198.7360927,160.8667472,High_spent_Medium_value_payments,331.4704101,0,-1.6105,0.3152,-0.3673,-2.3213,-0.9309 -0x2079d,CUS_0x9509,August,18,337-89-7502,Architect,67281.84,5486.82,7,7,17,3,"Debt Consolidation Loan, Payday Loan, and Mortgage Loan",41.99836663,23.94279382,5.18,11,Bad,2713.058879,35.70581239,13 Years and 8 Months,Yes,109.1144459,406.5004542,Low_spent_Medium_value_payments,313.0670999,0,-0.0889,-0.5638,-0.3354,-0.3983,-0.0996 -0x207a9,CUS_0x707d,August,55,#F%$D@*&8,Lawyer,16188.16,1396.013333,7,4,1,4,"Student Loan, Auto Loan, Personal Loan, and Personal Loan",22.51640357,20,9.52,5,Standard,1029.46,28.71844168,24 Years and 5 Months,No,41.57225987,67.77415698,Low_spent_Small_value_payments,320.2549165,0,0.2778,0.2167,1.0226,1.7917,1.9711 -0x207b5,CUS_0x1abe,August,45,744-16-3832,Lawyer,14909.4,,6,7,24,2,"Not Specified, and Credit-Builder Loan",19.13735062,13.9615443,16.49,8,Standard,2152.742595,23.21863897,11 Years and 6 Months,Yes,13.06930851,101.3700237,Low_spent_Small_value_payments,293.3056678,0,-0.5946,2.0497,0.3216,1.1556,1.1299 -0x207c1,CUS_0x21a1,August,22,452-67-4543,Mechanic,20326.87,,10,10,29.95700519,100,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",46.94136291,24.41645528,18.71,11,Bad,3037.665316,25.21613833,7 Years and 11 Months,Yes,44359.48344,80.77299734,Low_spent_Small_value_payments,250.4714141,0,-0.2288,0.5509,1.7109,-1.4408,0.747 -0x207cd,CUS_0x1cd7,August,25,112-26-4626,_______,22265.03,,6,5,18,3,"Personal Loan, Mortgage Loan, and Not Specified",18.75328674,16,19.48,4,Standard,1186.05614,26.34012276,12 Years and 2 Months,Yes,50549,53.18865441,High_spent_Medium_value_payments,339.5798277,0,-0.6898,0.395,0.7549,0.2429,-0.3912 -0x207d9,CUS_0x530b,August,51,993-95-2241,_______,20782.66,1886.888333,1,6,11,4,"Home Equity Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",,615,5.85,9,Good,872.9154692,31.76977527,31 Years and 9 Months,No,68.07779286,110.018349,Low_spent_Medium_value_payments,302.6270021,0,-0.3699,0.7555,1.7203,-1.674,-0.674 -0x207e5,CUS_0x282b,August,36,#F%$D@*&8,Accountant,63839.24,,7,6,14,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",26.27895471,16,14.01,11,Standard,2695.33,29.66368738,16 Years and 10 Months,Yes,144.7096257,,High_spent_Medium_value_payments,425.5721587,0,-1.0256,-0.0846,0.6276,0.4368,0.4721 -0x207f1,CUS_0x4f49,August,29,145-21-0380,Engineer,13675.83,1282.6525,4,5,16,0,,28.17296275,19,7.07,4,Standard,568.81,26.47588759,22 Years and 4 Months,Yes,0,38.29706623,High_spent_Small_value_payments,349.9681838,0,1.7494,-0.4543,1.3006,-0.1816,0.1702 -0x207fd,CUS_0xa4e9,August,27,168-74-9556,Journalist,25626.88,,8,5,20,3,"Home Equity Loan, Not Specified, and Debt Consolidation Loan",10.35018727,8,15.11,,_,157.69,36.4747762,23 Years and 8 Months,Yes,145.7722275,53.23367295,High_spent_Medium_value_payments,376.6336566,0,0.6961,0.9121,-0.8901,-1.8555,-0.5938 -0x20809,CUS_0x5287,August,21,050-08-6245,Architect,19428.03,1809.0025,7,6,7,1,Credit-Builder Loan,9.985854965,10,13.1,9,Standard,798.1,37.94274033,29 Years and 8 Months,Yes,9.076122705,16.87001583,High_spent_Large_value_payments,394.9541115,0,-0.6683,1.0261,-0.924,0.1639,-0.7452 -0x20815,CUS_0x4969,August,40,684-52-7523,_______,97714.47,8103.8725,1,6,8.288361749,0,,,1,4.74,9,Good,613.07,41.57624321,32 Years and 10 Months,No,0,546.542237,High_spent_Medium_value_payments,933.782474,0,0.3936,-0.0125,-0.8716,-0.5221,0.2106 -0x20821,CUS_0xc33e,August,19,577-83-3843,Lawyer,38694.74,,6,5,32,7,"Student Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Personal Loan",30.63961356,16,8.8,9,Bad,1647.69,30.94877442,18 Years and 5 Months,Yes,148.0598297,,High_spent_Small_value_payments,217.1679563,0,0.292,-0.037,-0.5948,1.4646,-0.5274 -0x2082d,CUS_0x9d3d,August,43,011-04-1828,Teacher,15400.19,1140.285286,6,10,18.06745738,2,"Auto Loan, and Not Specified",24.53036678,9.404449555,14.71,,Standard,3102.261958,37.26974493,6 Years and 10 Months,NM,105.6513667,42.78297073,Low_spent_Small_value_payments,324.6441722,0,-0.475,-0.7627,-0.6964,0.5289,-0.2378 -0x20839,CUS_0x9b0e,August,48,850-93-7960,Doctor,92699.31,7927.9425,3,3,8.288361749,4,"Payday Loan, Student Loan, Payday Loan, and Personal Loan",,0,6.33,3,_,40.54994723,39.21460174,18 Years and 3 Months,No,217.7580639,605.6565388,High_spent_Large_value_payments,656.7919413,0,-0.1316,1.0931,-1.2288,-1.0285,-0.3323 -0x20845,CUS_0xc4e,August,39,109-27-0987,Writer,17213.61,,9,8,29.06745738,5,"Mortgage Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Not Specified",35.01737513,24,17.25,7,Bad,3041.960954,37.28620467,1 Years and 5 Months,Yes,70.42879204,,Low_spent_Small_value_payments,184.1785534,0,-1.9071,-1.0726,-0.4188,-0.562,0.8764 -0x20851,CUS_0x4280,August,53,638-36-4083,Teacher,30269.71,2387.775996,6,5,7,3,"Payday Loan, Personal Loan, and Credit-Builder Loan",24.95065221,20,8.9,0,_,838.05,36.17024174,16 Years and 0 Months,Yes,306.756131,122.1652529,!@9#%8,378.8260368,0,-0.1875,2.8108,-0.4036,1.7477,1.2907 -0x2085d,CUS_0x3c97,August,45,#F%$D@*&8,Journalist,9741.195,,7,4,14,2,"Personal Loan, and Student Loan",21.28038472,15,19.67,11,Standard,582.95,33.85583581,26 Years and 10 Months,Yes,13.37654599,,Low_spent_Small_value_payments,305.98704,0,0.1399,1.1905,-0.0688,0.4362,0.1692 -0x20869,CUS_0xabd5,August,45,403-75-4569,Architect,54346.35,,229,7,19,8,"Payday Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Debt Consolidation Loan",54.69064696,30.4647257,25.97,14,_,5318.760277,39.18728689,12 Years and 8 Months,Yes,332.5636713,33.51003702,!@9#%8,320.3125417,0,0.3457,-1.3329,-0.6162,-0.3343,-0.2559 -0x20875,CUS_0x9b46,August,21,072-49-5596,Musician,109547.1,9086.925,6,4,11,0,,,10,9.92,3,Standard,171.64,30.8733615,21 Years and 6 Months,Yes,0,138.0026958,High_spent_Large_value_payments,1010.689804,0,-1.5326,-1.2051,-0.0535,0.622,-0.6261 -0x20881,CUS_0x5bf0,August,25,329-26-6592,Scientist,66919.4,5700.616667,6,5,13,4,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",12.29913902,9,16.37,5,_,417.94,26.2205005,6 Years and 10 Months,Yes,208.2887509,445.3580507,Low_spent_Large_value_payments,186.414865,0,-1.0998,1.5372,-1.4798,1.0385,1.0739 -0x2088d,CUS_0x6752,August,22,142-19-7320,Scientist,16313.03,,8,6,12,3,"Not Specified, Payday Loan, and Home Equity Loan",33.10077414,24.73437731,9.03,5,Standard,844.539266,33.76945426,18 Years and 5 Months,NM,35.97149246,126.9159361,Low_spent_Small_value_payments,239.4544881,0,1.8899,-0.3007,-0.4938,-2.474,0.716 -0x20899,CUS_0xa7c7,August,42,319-61-2316,Architect,65523.04,,7,5,7,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",9.949779446,10,2.95,8,Standard,422.57,33.84668425,6 Years and 0 Months,Yes,154.5758425,159.8450831,High_spent_Small_value_payments,508.5044077,0,-1.9582,-0.8623,-2.2069,-2.4352,-0.9035 -0x208a5,CUS_0x2eb1,August,52,#F%$D@*&8,Teacher,143853.08,11775.75667,8,5,6,0,,10.76964324,10,8.76,1,Standard,782.93,41.93125916,18 Years and 0 Months,NM,0,,High_spent_Large_value_payments,1249.731282,0,-1.5304,-1.0746,-0.6124,-0.314,-1.3939 -0x208b1,CUS_0x46dc,August,44,073-85-4368,Teacher,89398.64,7342.886667,1,4,6,4,"Credit-Builder Loan, Not Specified, Mortgage Loan, and Not Specified",3.960732407,5,,3,_,1020.39434,27.46586143,19 Years and 10 Months,No,240.7401468,791.2543564,Low_spent_Small_value_payments,86.92196528,0,0.5206,0.1903,-0.9841,-0.4427,0.3047 -0x208bd,CUS_0x5b60,August,43,433-01-0917,Writer,45902.25,3974.1875,10,8,25.95700519,7,"Credit-Builder Loan, Personal Loan, Student Loan, Home Equity Loan, Personal Loan, Personal Loan, and Debt Consolidation Loan",37.3677989,19,17.56,9,Bad,3544.850954,41.30052196,11 Years and 3 Months,Yes,1488.251832,,High_spent_Medium_value_payments,274.5023037,0,0.6083,1.7775,0.1516,-0.8547,-0.49 -0x208c9,CUS_0xb079,August,45,413-68-2214,_______,78570.64,6425.553333,6,7,22,9,"Student Loan, Not Specified, Student Loan, Personal Loan, Debt Consolidation Loan, Student Loan, Student Loan, Home Equity Loan, and Personal Loan",,21.95447011,17.65,13,Bad,2870.46992,37.59265635,1 Years and 11 Months,NM,449.8887307,102.4768291,High_spent_Medium_value_payments,340.1897736,0,-0.0485,1.0271,-0.7219,0.0684,-0.6846 -0x208d5,CUS_0x4a3c,August,34,886-78-4089,Engineer,95768.85,,8,7,16,100,"Auto Loan, Mortgage Loan, Auto Loan, Payday Loan, and Personal Loan",,,17.23,9,Standard,1382.52,29.2994675,15 Years and 11 Months,Yes,268.7903299,,Low_spent_Small_value_payments,6.316892728,0,-0.5207,-1.023,0.4085,0.7611,-1.7957 -0x208e1,CUS_0x4dfe,August,29,938-76-4079,Scientist,97377.87,8135.8225,4,3,6.288361749,0,Student Loan,,2,4.65,3,Good,1223.22,30.65116037,24 Years and 0 Months,No,70.90187325,,!@9#%8,404.5055413,0,-1.6395,0.6894,-0.18,0.1383,0.3954 -0x208ed,CUS_0x2a66,August,29,783-15-6029,Media_Manager,31276.27,,6,3,14,1,Credit-Builder Loan,,5,7.68,3,Standard,1275.06,24.32349205,24 Years and 4 Months,NM,16.32746629,95.89324644,High_spent_Small_value_payments,401.8148706,0,-0.1267,-0.0303,-0.4634,-0.8523,2.4345 -0x208f9,CUS_0x9150,August,20,836-03-9472,Teacher,131698.96,11196.91333,4,3,1.288361749,0,,,8,10.9,1146,Good,874.6006357,35.48375243,29 Years and 8 Months,No,0,,Low_spent_Medium_value_payments,438.7871705,0,0.961,0.4477,2.7787,0.8598,2.2505 -0x20905,CUS_0xa5e7,August,18,035-85-2354,Lawyer,68533.84,5665.153333,5,3,12,5,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",16.54987001,15,20.74,10,_,817.66,39.19606052,8 Years and 11 Months,Yes,256.4018268,124.0726571,High_spent_Small_value_payments,446.0408495,0,0.2361,-0.7125,-0.1539,0.1171,-0.3581 -0x20911,CUS_0x86b8,August,30,035-49-7581,Media_Manager,28274.17,,0,7,1,1,Credit-Builder Loan,13.31967428,9,5.77,7,Good,1486.2,25.64030741,30 Years and 5 Months,No,12.21134283,,High_spent_Medium_value_payments,393.8004341,0,0.2459,-0.2948,1.8328,-1.6097,-0.7467 -0x2091d,CUS_0x2da4,August,56,#F%$D@*&8,Mechanic,66674.38,5356.198333,1320,3,17,2,"Home Equity Loan, and Credit-Builder Loan",,10,13.02,2,_,577.97,36.58147406,19 Years and 10 Months,No,102.3135503,10000,High_spent_Small_value_payments,464.6849894,0,-1.8136,-2.2007,0.5954,0.7374,-0.1951 -0x20929,CUS_0x8ea5,August,23,907-63-1866,Teacher,124085.91,10104.4925,5,4,11.28836175,0,Student Loan,8.074009072,10,6.76,2,Good,196.8634639,25.8349637,27 Years and 5 Months,No,92.61396573,575.6655132,High_spent_Large_value_payments,1024.774755,0,0.2585,1.145,1.2934,-1.7879,0.8482 -0x20935,CUS_0x4c2b,August,45,594-38-6492,Doctor,20945.38,1619.448333,3,5,11,3,"Credit-Builder Loan, Home Equity Loan, and Student Loan",,21.21486936,24.25,8,Standard,1592.561331,31.81685384,15 Years and 4 Months,Yes,50.42425162,137.9476008,Low_spent_Small_value_payments,263.5729809,0,-0.6106,0.8825,0.4365,0.8858,0.7194 -0x20941,CUS_0x79c0,August,46,274-96-0067,Teacher,50690.91,3945.2425,8,7,25.06745738,8,"Auto Loan, Auto Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",41.30169288,21.73419254,9.93,11,Bad,3298.367442,34.29434228,10 Years and 2 Months,NM,326.5958742,,Low_spent_Medium_value_payments,179.8962495,0,-0.2801,0.5024,0.9689,-1.3236,0.7065 -0x2094d,CUS_0xbc4c,August,38,951-79-8878,Architect,15503.65,,3,5,12,0,,14.97211274,,9.43,0,Standard,466.65,38.68162782,19 Years and 9 Months,Yes,11360,19.27673217,High_spent_Medium_value_payments,388.9203512,0,-0.951,-0.6159,-1.2522,-0.0413,-1.6343 -0x20959,CUS_0xb575,August,23,509-35-9475,Teacher,95099.8,7851.983333,5,5,7,4,"Home Equity Loan, Not Specified, Payday Loan, and Credit-Builder Loan",,16.62227891,18.54,12,Standard,694.6863418,37.86361643,,NM,236.8334819,84.37809811,High_spent_Medium_value_payments,713.9867533,0,-0.3862,0.9155,1.4112,0.1898,-0.5183 -0x20965,CUS_0x24b9,August,36,#F%$D@*&8,Writer,49228.35,4210.3625,9,7,16.06745738,7,"Personal Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Not Specified",48.50851733,24.74034579,9.72,12,Bad,3167.129235,28.88446106,14 Years and 3 Months,Yes,199.4342647,173.8255224,!@9#%8,281.0561749,0,-0.1424,-0.0842,0.4585,0.8675,-1.368 -0x20971,CUS_0x7bb,August,26,292-41-5261,Musician,86502.12,6429.633584,1,3,11,0,,0,1,4.21,2,Good,1212.137261,32.53851182,24 Years and 2 Months,No,744.8764159,615.4735453,Low_spent_Large_value_payments,440.6426541,0,0.4015,-0.3482,2.417,1.4457,-0.8075 -0x2097d,CUS_0x284f,August,25,413-63-3434,Teacher,9620.965,,10,7,25.06745738,2,"Auto Loan, and Mortgage Loan",,17,3.7,7,Bad,1578.690954,37.48971342,12 Years and 2 Months,Yes,9.675865767,10.60216374,High_spent_Large_value_payments,271.2763909,0,-1.2275,1.3982,0.7418,1.2582,1.3357 -0x20989,CUS_0x5bb8,August,50,064-97-5428,Lawyer,126344.72,10643.72667,3,4,0.288361749,0,Personal Loan,4.862292713,7,8.08,1,Good,1198.35,36.4360722,30 Years and 8 Months,No,95.467877,756.2951996,High_spent_Medium_value_payments,882.5470511,0,1.0202,-0.3666,-1.0932,-0.0847,1.6153 -0x20995,CUS_0x6e38,August,28,574-92-0412,Musician,63572.76,5566.73,3,3,7,1,Credit-Builder Loan,26.07705298,16.31241084,7.77,4,_,452.7775105,30.18247432,18 Years and 11 Months,No,37.59040176,74.7706045,High_spent_Medium_value_payments,694.3119937,0,1.1638,-1.1984,-0.0694,1.5017,-1.4434 -0x209a1,CUS_0x7d25,August,26,532-41-9248,Entrepreneur,41922.4,,8,6,19,7,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",20.7185423,17.42777252,12.75,12,_,2965.503562,32.71142195,17 Years and 6 Months,Yes,197.1956179,200.2386343,Low_spent_Small_value_payments,249.0190811,0,-0.4932,0.1715,-1.3118,-0.3563,-0.7419 -0x209ad,CUS_0x1eae,August,47,403-63-5439,Mechanic,21421.73,,5,3,17,4,"Mortgage Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",15.34588881,13,9.11,1776,Standard,1378.89,32.19606265,22 Years and 2 Months,No,47.62902008,30.0443377,High_spent_Small_value_payments,351.2410589,0,-0.2242,1.7167,0.7667,-0.2713,-1.7889 -0x209b9,CUS_0x7d87,August,38,779-20-4718,Mechanic,21039.26,,5,4,3033.067457,2,"Home Equity Loan, and Mortgage Loan",,10,9.21,6,Standard,1624.950954,38.52659785,21 Years and 0 Months,Yes,20.21434137,109.6853372,!@9#%8,286.2072001,0,1.3355,0.2782,1.3653,1.698,-0.3145 -0x209c5,CUS_0xc465,August,24,301-71-9115,Lawyer,19924.14,,10,7,33,9,"Personal Loan, Not Specified, Personal Loan, Mortgage Loan, Student Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,22,20.14,9,Bad,4980.31,40.17265031,0 Years and 11 Months,NM,118.7258469,39.14136687,High_spent_Large_value_payments,273.2672862,0,0.7581,0.3698,-1.2305,1.6976,-0.9243 -0x209d1,CUS_0x8807,August,22,509-43-8502,Journalist,48729.87,3812.8225,6,10,24,2,"Student Loan, and Personal Loan",,20.64215889,3.24,12,_,2935.056271,23.69543505,9 Years and 11 Months,Yes,63.59763134,239.0069901,Low_spent_Large_value_payments,348.6776285,0,1.4099,-1.0797,0.9497,0.6743,-0.8221 -0x209dd,CUS_0x2e0c,August,31,#F%$D@*&8,Musician,62028.36,5048.03,8,10,21.95700519,8,"Payday Loan, Payday Loan, Personal Loan, Student Loan, Credit-Builder Loan, Student Loan, Student Loan, and Home Equity Loan",38.73564342,23,29.55,12,Bad,4065.780954,27.61053079,1 Years and 3 Months,Yes,1604.223204,59.17255694,High_spent_Medium_value_payments,370.3568701,0,-1.2157,0.185,-1.3465,0.1351,0.2261 -0x209e9,CUS_0x3aa9,August,23,104-05-3078,Journalist,75010.52,,10,8,21.88954781,7,"Payday Loan, Mortgage Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",,22.47651732,,11,Bad,4624.387137,23.84231608,10 Years and 11 Months,Yes,1725.345131,126.466225,High_spent_Large_value_payments,310.6462293,0,1.0745,-0.9007,-0.6826,0.0354,1.5355 -0x209f5,CUS_0x2126,August,21,345-38-9104,Mechanic,19395.73,,5,4,17,6,"Payday Loan, Personal Loan, Payday Loan, Not Specified, Not Specified, and Auto Loan",25.32716976,19,9.33,8,Standard,2694.8,27.16117889,11 Years and 8 Months,Yes,60.38789858,174.51128,Low_spent_Small_value_payments,210.1319048,0,0.7018,-0.938,-0.0628,-0.8448,-0.9598 -0x20a01,CUS_0xb607,August,40,486-31-0352,Entrepreneur,16758.14,1545.989423,8,6,24,5,"Payday Loan, Student Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",20.22064608,12,9.15,10,Standard,2392.91,35.77982693,7 Years and 0 Months,Yes,112.3072612,180.7543283,Low_spent_Small_value_payments,225.8118213,0,1.615,1.0064,0.4671,0.3672,-1.2167 -0x20a0d,CUS_0x3aeb,August,28,158-59-5725,Mechanic,28207.03,,8,7,10,0,,,9,15.48,10,Standard,1288.976616,38.66398268,,Yes,0,,High_spent_Small_value_payments,355.3801084,0,2.0055,0.2103,-0.7231,-1.6179,-0.0158 -0x20a19,CUS_0x692c,August,56,979-11-8821,Lawyer,70797.84,5778.82,7,6,4,1,Mortgage Loan,10.33739484,9,0.78,6,Good,488.9527256,25.12528094,,No,45.10565737,197.3907713,High_spent_Medium_value_payments,606.0484209,0,1.4937,0.5119,0.0855,1.2447,0.9489 -0x20a25,CUS_0x65d6,August,36,209-72-0384,Developer,79500.44,6244.387274,7,4,9,5,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",,10,19.86,8,Standard,987.2156514,36.12777244,18 Years and 6 Months,NM,552.0928307,199.8642334,Low_spent_Medium_value_payments,512.8986563,0,0.3858,0.7922,1.4777,-0.1211,0.4052 -0x20a31,CUS_0x7480,August,55,389-24-0840,Lawyer,49715.68,,3,5,17,0,,9.11552497,8,6.93,4,Standard,1350.08,34.8463635,29 Years and 11 Months,No,0,77.65412754,High_spent_Small_value_payments,619.5432058,0,-0.5764,-0.6111,0.6567,-1.6754,0.2377 -0x20a3d,CUS_0x978b,August,18,462-86-9472,Accountant,20211.78,1571.315,10,10,17.88954781,7,"Home Equity Loan, Home Equity Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",,,27.19,8,Bad,3158.9,38.50065863,3 Years and 5 Months,Yes,1432.061946,,High_spent_Small_value_payments,182.4929473,0,-2.6317,0.2625,1.9183,0.8283,-0.0262 -0x20a49,CUS_0x1f70,August,55,976-79-4462,Scientist,90074.64,7233.22,0,7,9,3,"Mortgage Loan, Student Loan, and Student Loan",8.640318763,11,11.12,7,Good,1279.471475,32.79436824,20 Years and 2 Months,No,132.1107032,,High_spent_Medium_value_payments,621.1310134,0,0.7484,1.8596,-2.129,1.0655,0.6137 -0x20a55,CUS_0x141d,August,26,989-82-3003,Journalist,44323.29,3909.6075,10,5,22,100,"Mortgage Loan, Payday Loan, Mortgage Loan, Payday Loan, and Auto Loan",28.7387167,20,19.8,9,Bad,3089.47,39.91087515,12 Years and 6 Months,NM,184.40581,76.57873781,High_spent_Large_value_payments,369.9762022,0,0.4617,0.3903,-0.1062,1.1856,-0.7101 -0x20a61,CUS_0xfc9,August,34,264-17-8777,Architect,17290.42,,6,4,31,7,"Payday Loan, Student Loan, Student Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Personal Loan",13.90937537,,16.86,12,Standard,1731.895357,25.85870816,14 Years and 2 Months,Yes,65.01782898,124.7647063,Low_spent_Small_value_payments,242.9042981,0,-0.8376,-1.5395,0.7068,-2.3786,-0.6354 -0x20a6d,CUS_0x5ee1,August,25,#F%$D@*&8,Developer,11892.72,976.06,1645,4,5,1,Home Equity Loan,26.85629158,17,15.73,11,Standard,736.01,28.58857531,32 Years and 0 Months,Yes,56630,81.77369241,Low_spent_Large_value_payments,278.3211253,0,-0.2544,-0.2418,-0.0944,-1.5857,-1.2688 -0x20a79,CUS_0x2f29,August,18,237-54-4265,Teacher,58306.26,4750.855,6,5,25,3,"Credit-Builder Loan, Auto Loan, and Mortgage Loan",18.64536471,13,5.49,11,Standard,1628.95,23.70819752,15 Years and 6 Months,Yes,101.069475,,Low_spent_Small_value_payments,38.59170262,0,-1.2136,-0.601,1.2026,0.4326,0.1995 -0x20a85,CUS_0x4cb4,August,37,215-09-4344,Teacher,34829.92,,4,5,8.288361749,0,Mortgage Loan,0,0,2.26,3,_,182.9174273,32.90779553,,No,26.93085411,590.5730172,Low_spent_Small_value_payments,411.6443083,0,0.7057,-2.132,0.3559,-0.9683,-1.2585 -0x20a91,CUS_0xc1a6,August,32,008-57-6946,Manager,12805.5,,4,7,20,2,"Mortgage Loan, and Auto Loan",26.81113846,19,1.92,4,Standard,1376.62,32.22527183,29 Years and 11 Months,NM,16.09533869,112.7915153,Low_spent_Small_value_payments,279.925646,0,-1.724,-0.6752,0.1403,-1.0488,0.4157 -0x20a9d,CUS_0xb66e,August,30,450-16-3479,Writer,36640.7,,3,5,1.288361749,4,"Personal Loan, Auto Loan, Home Equity Loan, and Auto Loan",,3,8.9,2,Good,138.5637345,29.10609726,30 Years and 4 Months,No,106.1746689,575.3310997,Low_spent_Small_value_payments,353.7261485,0,-0.8221,2.1107,-0.7549,-2.2022,0.6788 -0x20aa9,CUS_0xae98,August,45,021-36-7746,Musician,61127.37,5337.9475,8,5,16,2,"Personal Loan, and Not Specified",,21,8.23,4,Standard,1232.42,36.94584837,,Yes,92.47615944,329.2082196,High_spent_Small_value_payments,372.110371,0,0.5763,1.9528,-0.2441,-0.4375,1.3163 -0x20ab5,CUS_0xb5bb,August,22,605-18-0222,Architect,30352.72,2573.393333,8,8,24.06745738,7,"Home Equity Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, and Mortgage Loan",46.06325622,26.83148959,2.55,10,_,2895.33549,25.99829754,,Yes,154.4573427,22.06763532,High_spent_Large_value_payments,294.0940673,0,0.0707,-1.9822,-1.7497,0.1355,0.5209 -0x20ac1,CUS_0x77f8,August,48,893-81-8271,Engineer,80942.22,6630.185,5,1,10.28836175,0,,,2,7.13,,_,351.2852023,26.36237382,31 Years and 6 Months,No,0,1067.590621,Low_spent_Small_value_payments,386.3991726,0,0.9688,0.3301,1.5736,-0.7411,-0.5361 -0x20acd,CUS_0x20fe,August,37,820-01-3614,Developer,21085.67,,5,7,11,1,Payday Loan,,15,4.78,6,Good,1384.38,30.18124725,30 Years and 9 Months,No,10.65335359,250.1205753,Low_spent_Small_value_payments,221.1399878,0,0.5781,-0.4337,0.2085,0.879,-0.784 -0x20ad9,CUS_0xbc7f,August,39,111-47-2435,Teacher,30178.34,2557.861667,0,4,5,0,,0.626657415,4,0.33,6,Good,283.84,36.19567054,32 Years and 3 Months,No,0,120.9554288,High_spent_Small_value_payments,394.8307378,0,0.7268,0.1869,-1.0652,0.7398,-0.0818 -0x20ae5,CUS_0x396c,August,40,583-74-0623,Media_Manager,46360.47,,10,5,35.06745738,1384,"Home Equity Loan, Credit-Builder Loan, Not Specified, Not Specified, and Credit-Builder Loan",33.84877591,18,19.71,11,Bad,5078.560954,28.52903585,5 Years and 8 Months,Yes,156.2421017,142.0384127,High_spent_Medium_value_payments,305.1364477,0,0.6369,-0.9242,-0.5866,0.5105,-0.2351 -0x20af1,CUS_0x9769,August,53,997-89-3734,_______,14331.65,1392.304167,8,6,10.06745738,2,"Credit-Builder Loan, and Personal Loan",33.5446042,22,9.01,0,Standard,1645.600954,22.9110902,27 Years and 2 Months,Yes,20.05559566,158.8203753,Low_spent_Small_value_payments,223.6341578,0,0.4671,-1.0502,0.4962,-1.4517,-0.3817 -0x20afd,CUS_0x1628,August,33,340-56-9506,Musician,17446.07,,6,7,15,7,"Personal Loan, Not Specified, Personal Loan, Home Equity Loan, Mortgage Loan, Auto Loan, and Payday Loan",,23.68571907,7.23,8,Standard,2526.339733,23.45963148,15 Years and 3 Months,Yes,73.09941738,,Low_spent_Small_value_payments,227.8233551,0,0.7668,-1.0293,1.0664,-0.6711,0.4374 -0x20b09,CUS_0xab2f,August,22,703-72-4069,Manager,26760.95,2254.079167,4,4,9,2,"Mortgage Loan, and Home Equity Loan",8.159682355,10,16.31,3,Standard,244.29,26.53732174,19 Years and 5 Months,Yes,34.26639595,43.15144803,!@9#%8,397.9900727,0,-0.1513,1.0038,-0.4794,0.7646,-0.7925 -0x20b15,CUS_0x5d95,August,26,809-31-4571,Scientist,71034.88,5743.573333,7,7,26,9,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Payday Loan",22.71014242,,4.82,8,Bad,3020.889577,26.42708249,10 Years and 0 Months,Yes,335.7367503,265.8101188,Low_spent_Large_value_payments,242.8104642,0,0.6218,0.4798,0.1515,0.4611,0.5882 -0x20b21,CUS_0x4822,August,23,133-67-4826,Scientist,70732.4,5874.366667,8,10,26,5,"Personal Loan, Not Specified, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",18.91776076,,7.18,7,Bad,1650.246505,33.5168458,20 Years and 0 Months,Yes,165.0510754,151.3846198,High_spent_Large_value_payments,511.0009715,0,3.1238,-0.1119,-1.3508,0.4684,-1.6275 -0x20b2d,CUS_0xbc3a,August,34,092-73-3773,Scientist,7363.13,695.5941667,10,9,17.06745738,8,"Student Loan, Payday Loan, Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Payday Loan",,25.42117686,0.71,13,Bad,4297.990103,29.03231635,13 Years and 3 Months,Yes,42.20297003,,!@9#%8,232.3540845,0,1.7948,0.1913,-1.5453,-0.9941,1.2229 -0x20b39,CUS_0xbdb4,August,36,997-19-1168,Scientist,9447.12,,10,10,35.95700519,7,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Auto Loan, and Mortgage Loan",38.59878859,18.45084219,19.61,9,Standard,1954.255633,31.60699672,11 Years and 5 Months,Yes,1357.587772,42.18801927,High_spent_Small_value_payments,221.4998391,0,0.5089,-0.0613,0.073,0.1578,-1.2871 -0x20b45,CUS_0x1123,August,18,917-49-8240,Writer,15264.98,,6,5,34,3,"Home Equity Loan, Credit-Builder Loan, and Auto Loan",,,9.68,14,Bad,2635.121161,24.09434406,8 Years and 10 Months,Yes,50563,136.9520227,Low_spent_Small_value_payments,242.8660473,0,0.2703,-0.4796,-1.7251,0.4076,1.612 -0x20b51,CUS_0x5bba,August,25,210-99-3963,Architect,23713472,512.0033333,10,9,24.88954781,9,"Payday Loan, Not Specified, Mortgage Loan, Home Equity Loan, Student Loan, Personal Loan, Auto Loan, Auto Loan, and Not Specified",,29.08290861,21.69,11,Bad,3317.966531,36.63377084,9 Years and 2 Months,NM,1358.979064,22.94755195,Low_spent_Small_value_payments,264.9436365,0,-0.1011,0.4292,0.7347,1.7161,-1.203 -0x20b5d,CUS_0xa7ce,August,35,039-05-1274,Musician,14835.22,,10,10,28.06745738,2,"Not Specified, and Personal Loan",31.81060491,17,9.4,11,Bad,2664.010954,32.46746642,20 Years and 6 Months,Yes,20.53959002,55.26837412,High_spent_Small_value_payments,258.2985812,0,1.25,-0.1234,-0.4706,-1.4521,1.0586 -0x20b69,CUS_0x4f2e,August,32,682-80-2933,Developer,62031.06,5295.255,4,4,5469,4,"Home Equity Loan, Personal Loan, Not Specified, and Not Specified",,20,1.35,2,Standard,46.37,27.26072813,18 Years and 3 Months,No,160.2079409,,High_spent_Large_value_payments,479.3684931,0,1.1583,-0.7562,-1.8186,-0.8597,-0.1957 -0x20b75,CUS_0x365f,August,41,#F%$D@*&8,_______,19250.71,1610.225833,8,5,19,2,"Payday Loan, and Mortgage Loan",,13,19.3,17,Standard,2323.93,32.08489293,10 Years and 0 Months,Yes,18.39206882,100.3690715,Low_spent_Large_value_payments,312.261443,0,1.0294,-0.4955,-1.6759,-0.7388,-0.4897 -0x20b81,CUS_0x75e8,August,37,351-02-9110,Lawyer,28058.38,,3,1,11.28836175,2,"Mortgage Loan, and Not Specified",1.855289446,5,10.49,2,_,208.731406,24.85880814,23 Years and 6 Months,NM,23.54287935,560.327475,!@9#%8,401.4143819,0,1.2619,1.0849,-0.9433,-0.9245,-0.9328 -0x20b8d,CUS_0xbf6e,August,42,872-51-1342,_______,40343.42,3485.951667,0,7,5,3,"Student Loan, Auto Loan, and Mortgage Loan",14.53652097,,4.63,4,Good,670.4648154,33.90457483,15 Years and 8 Months,No,54.47344351,104.5470386,High_spent_Medium_value_payments,454.1579995,0,0.1058,0.1451,-0.9137,1.1155,-1.3535 -0x20b99,CUS_0x510b,August,39,908-02-5123,Media_Manager,35474.91,3203.2425,7,7,10,100,"Debt Consolidation Loan, Home Equity Loan, and Not Specified",17.95816475,14,13.02,5,_,1049.102039,31.70664531,20 Years and 10 Months,Yes,59.87139781,147.907396,High_spent_Medium_value_payments,380.6143869,0,0.6202,-1.3671,0.2022,1.5442,0.0009 -0x20ba5,CUS_0x1848,August,38,766-42-5182,_______,33834.47,2630.539167,3,4,7.288361749,0,,4.322404373,5.918600127,1.63,5,Good,241.3209752,24.99177798,31 Years and 10 Months,NM,0,10419.93746,High_spent_Small_value_payments,351.2420109,0,1.2886,-2.2883,-0.226,-0.5959,-0.34 -0x20bb1,CUS_0x67c4,August,42,937-00-7683,Writer,109978.17,9139.8475,4,3,7,1,Not Specified,30.70628478,20,10.84,0,Standard,1155.21,36.08562995,18 Years and 6 Months,No,78.74971305,270.3028276,High_spent_Medium_value_payments,814.9322094,0,2.0179,-0.0827,-0.575,0.8382,0.2832 -0x20bbd,CUS_0x8816,August,28,063-33-1680,Developer,24070.5,2090.875,7,3,18,0,,15.45891261,15,,,Standard,1058.02,38.31329094,20 Years and 8 Months,No,0,163.5110028,Low_spent_Large_value_payments,315.5764972,0,-0.5908,0.7944,0.0763,0.6525,-0.6309 -0x20bc9,CUS_0x4943,August,35,455-66-3671,Architect,89772.84,7636.07,8,3,9,2,"Not Specified, and Student Loan",,16,3.15,3,Standard,1177.54,27.4588528,22 Years and 8 Months,No,77.06309667,,Low_spent_Medium_value_payments,712.351271,0,-0.0693,-0.1038,0.5442,0.6172,0.5805 -0x20bd5,CUS_0x542d,August,50,826-04-5929,Architect,14540.485,,2,4,3,2,"Not Specified, and Auto Loan",,9.729825846,15.9,5,Good,1597.618078,26.4173594,25 Years and 6 Months,NM,18.26703221,,!@9#%8,237.8947616,0,-0.8771,0.6367,-0.4475,-0.333,-0.5623 -0x20be1,CUS_0x8d7b,August,43,448-73-2560,Mechanic,33990.85,2569.570833,5,1092,2,0,,,12,7.59,0,Good,1439.4,39.67330628,30 Years and 10 Months,NM,0,10000,Low_spent_Small_value_payments,301.006408,0,0.7704,-0.3234,-0.3279,0.2578,-0.0201 -0x20bed,CUS_0x4482,August,30,099-19-1105,Mechanic,42185.25,,4,5,9,1,Payday Loan,,8,10.14,2,_,720.43,34.70576267,33 Years and 3 Months,No,32.71539026,237.2819512,Low_spent_Small_value_payments,369.5464085,0,0.4447,-0.1745,2.0748,1.5323,-0.6816 -0x20bf9,CUS_0x5b61,August,49,095-93-4022,_______,33061.2,,3,6,12,0,,,5,11.95,8,Good,790.5905072,33.96697411,33 Years and 2 Months,No,0,183.2944239,Low_spent_Small_value_payments,388.9761966,0,-0.2919,0.3515,0.5137,-0.4795,1.5469 -0x20c05,CUS_0xb037,August,44,769-23-7954,Musician,12287.43,,4,3,19,2,"Home Equity Loan, and Student Loan",13.65381929,13,12.21,7,Standard,1271.65,34.47906575,6 Years and 6 Months,NM,14.30802796,98.98821738,Low_spent_Small_value_payments,288.6990047,0,1.681,-0.9399,1.4465,-0.0351,0.4941 -0x20c11,CUS_0x3b2a,August,23,#F%$D@*&8,Scientist,33624.4,2869.033333,4,5,20,4,"Home Equity Loan, Personal Loan, Mortgage Loan, and Auto Loan",14.95543516,9,12.8,7,_,987.27,26.90247214,29 Years and 5 Months,Yes,72.25713758,70.00207331,High_spent_Medium_value_payments,394.6441224,0,0.0428,-0.1309,1.8817,2.5487,0.6618 -0x20c1d,CUS_0xbcf7,August,30,973-42-1657,Lawyer,41414.58,3476.215,9,6,23,2,"Student Loan, and Mortgage Loan",32.45839069,23.54887488,2.39,14,Bad,2094.231775,22.90395191,7 Years and 2 Months,Yes,44.06196499,208.668845,Low_spent_Medium_value_payments,374.89069,0,1.1633,0.6592,-1.5508,0.8378,-0.4634 -0x20c29,CUS_0xf64,August,32,478-73-8323,Doctor,56125.5,4875.125,8,3,18,2,"Credit-Builder Loan, and Mortgage Loan",22.46287899,14,17.89,4,_,370.22,26.88811208,29 Years and 0 Months,Yes,81.82285658,83.09070109,High_spent_Medium_value_payments,572.5989423,0,-1.7578,0.072,-0.0233,-0.5076,-0.185 -0x20c35,CUS_0x7459,August,25,319-19-8982,Musician,9886.53,,8,3,3,4,"Home Equity Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",12.49979599,10,1.84,5,_,102.46,23.60407388,20 Years and 11 Months,No,30.06462553,38.46753964,Low_spent_Medium_value_payments,269.0555848,0,0.4123,-0.0003,-0.3046,2.0345,-1.5692 -0x20c41,CUS_0x7e84,August,20,775-79-8522,Media_Manager,121522.52,,6,6,15.28836175,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Auto Loan",10.03297626,12,7.15,6,Standard,969.8551958,39.92824953,18 Years and 0 Months,No,367.056926,,!@9#%8,219.8217846,0,1.4764,0.9479,1.5391,0.0925,0.6686 -0x20c4d,CUS_0x7d04,August,18,#F%$D@*&8,Journalist,58164.12,5046.01,6,7,5,0,,21.77929496,18,8.2,5,Standard,1075.84,34.65518189,33 Years and 8 Months,No,0,350.5305805,Low_spent_Small_value_payments,444.0704195,0,-0.4254,-1.5773,-1.1349,0.4589,0.7909 -0x20c59,CUS_0x77fc,August,18,641-81-0687,Journalist,21172.98,1887.415,4,3,5,3,"Personal Loan, Credit-Builder Loan, and Not Specified",27.42668841,20,14.66,8,_,409.58,29.43801729,30 Years and 5 Months,Yes,32.6354018,45.70524411,High_spent_Medium_value_payments,360.4008541,0,-0.5744,2.1947,-0.7821,0.1163,1.1201 -0x20c65,CUS_0x2c7f,August,36,702-92-8891,Entrepreneur,13701.675,1232.80625,8,6,19,1,Not Specified,,10,11.9,9,Standard,1060.4,29.14700779,24 Years and 0 Months,Yes,30748,110.4609268,Low_spent_Medium_value_payments,284.8510436,0,1.2901,1.1435,-0.2782,-0.5914,0.1368 -0x20c71,CUS_0x4a8a,August,51,#F%$D@*&8,Accountant,20351.965,,3,4,2,3,"Personal Loan, Student Loan, and Auto Loan",4.677690082,7,8.98,5,_,1245.348844,37.50780635,20 Years and 11 Months,No,46.28268798,173.2633379,Low_spent_Small_value_payments,270.7030603,0,0.9398,0.2528,2.1207,1.875,0.9539 -0x20c7d,CUS_0x719,August,42,519-38-5557,Entrepreneur,29256.86,,6,4,9,2,"Not Specified, and Credit-Builder Loan",,17,1.93,3,Good,450.74,35.20445645,32 Years and 6 Months,NM,223.458878,46.0262154,High_spent_Medium_value_payments,420.1774641,0,0.3743,-1.0168,-0.2781,1.3194,1.0338 -0x20c89,CUS_0x1dc4,August,42,809-45-0364,Journalist,20170.75,1930.895833,10,5,26.06745738,2,"Payday Loan, and Credit-Builder Loan",25.39452997,11.33437989,10.14,8,Standard,2322.604353,27.69262285,6 Years and 3 Months,Yes,20.94916241,151.5951221,Low_spent_Small_value_payments,283.8250109,0,-1.0382,0.6815,0.2984,-1.273,0.1936 -0x20c95,CUS_0x1326,August,23,994-98-1405,Mechanic,8658.18,637.515,10,7,22,100,"Payday Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Not Specified, Debt Consolidation Loan, and Student Loan",33.00156013,24.13451909,8.68,14,Bad,2815.430545,37.50408407,7 Years and 5 Months,Yes,36.69578385,,Low_spent_Small_value_payments,236.6945926,0,-0.9134,-1.2389,-0.3838,0.4854,-0.2709 -0x20ca1,CUS_0x1773,August,40,682-53-7501,Architect,17663.535,1767.96125,0,3,3,1,Auto Loan,6.411914359,9,4.39,1,Good,1232.690641,32.73516487,18 Years and 5 Months,No,10.62923,80.05124868,Low_spent_Large_value_payments,365.6431511,0,0.4385,2.1883,-0.1644,-0.3011,1.2418 -0x20cad,CUS_0xb40d,August,19,886-87-2102,Architect,15509.99,,6,9,18,5,"Auto Loan, Not Specified, Student Loan, Not Specified, and Payday Loan",33.03403914,19,23.58,10,Bad,2820.81,33.82546871,1 Years and 8 Months,Yes,68466,,Low_spent_Small_value_payments,213.1670069,0,-1.0838,1.6918,-0.1444,-1.801,-0.0542 -0x20cb9,CUS_0x1add,August,23,917-37-8257,Doctor,57452.43,4802.7025,6,10,27.88954781,9,"Not Specified, Personal Loan, Student Loan, Not Specified, Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Debt Consolidation Loan",45.11996995,25,7.77,13,Bad,1567.24,26.01791229,20 Years and 3 Months,Yes,1612.943243,,High_spent_Small_value_payments,223.355962,0,-0.2394,0.7568,0.1035,0.5558,-0.8774 -0x20cc5,CUS_0x8985,August,80,544-93-0937,Developer,7299.77,674.3141667,7,7,25,2,"Student Loan, and Payday Loan",,25.22747478,12.75,8,Bad,1922.831181,36.3906168,5 Years and 10 Months,Yes,10.17628917,45.74296148,Low_spent_Small_value_payments,301.512166,0,-0.465,1.8256,0.4692,-1.15,1.4221 -0x20cd1,CUS_0xa6d1,August,80,121-79-9310,Mechanic,60159.45,,4,7,14.28836175,0,,22.22981951,19,15.62,4,Standard,686.05,24.99103491,25 Years and 3 Months,Yes,0,,Low_spent_Small_value_payments,416.1620834,0,0.9554,-0.8922,0.2635,-0.7093,0.1966 -0x20cdd,CUS_0xeb9,August,44,612-56-0876,Doctor,9637.635,,7,7,28,6,"Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, Payday Loan, and Auto Loan",37.79398279,21.33895185,1.32,11,Bad,2915.363962,29.17950005,9 Years and 8 Months,Yes,42.46995945,62.95142194,Low_spent_Small_value_payments,250.8922436,0,0.5585,-0.3282,0.6181,-1.3558,1.2061 -0x20ce9,CUS_0x3b81,August,24,644-75-8764,Musician,116360.56,,3,7,19.28836175,4,"Not Specified, Payday Loan, Payday Loan, and Home Equity Loan",,21,3.1,2,Standard,412.9908439,35.70198319,20 Years and 2 Months,No,312.9826274,509.5682442,High_spent_Large_value_payments,819.577435,0,0.4208,1.0068,-0.4238,-1.9673,0.1221 -0x20cf5,CUS_0x1d70,August,24,655-19-8273,Media_Manager,19563.14,,8,7,30.06745738,6,"Student Loan, Payday Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Payday Loan",,28.20802117,2.32,11,Bad,2845.815583,39.34827756,6 Years and 5 Months,Yes,64.79136581,108.9945145,Low_spent_Large_value_payments,259.7199984,0,0.5711,0.7641,-0.8596,1.4781,1.0302 -0x20d01,CUS_0xb24c,August,31,098-71-9240,Doctor,20338.48,,7,6,16,6,"Not Specified, Credit-Builder Loan, Payday Loan, Personal Loan, Payday Loan, and Student Loan",,30.18335735,2.93,14,_,1534.021217,24.16303633,6 Years and 6 Months,Yes,95.54931496,41.38615364,High_spent_Medium_value_payments,287.6518647,0,-0.4709,0.8932,-0.7248,0.3596,-0.4261 -0x20d0d,CUS_0x57ea,August,56,895-47-6403,Accountant,41563.69,3691.640833,5,4,6,3,"Home Equity Loan, Not Specified, and Student Loan",,8,3.47,9,Good,1126.73466,37.28686062,32 Years and 2 Months,No,72.67212752,141.0363651,High_spent_Medium_value_payments,421.7487863,0,0.6121,-0.206,0.1907,1.0257,-0.6664 -0x20d19,CUS_0x6a61,August,59,712-78-0892,Architect,72902.7,6251.225,5,6,4,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Auto Loan",,19,9.65,2,Good,1006.84549,39.4753583,18 Years and 10 Months,No,180.5608195,,!@9#%8,327.9670759,0,0.6025,1.1532,1.1224,-0.0956,-0.0065 -0x20d25,CUS_0x881e,August,24,813-67-6950,Media_Manager,16603.995,,2,224,9,1,Home Equity Loan,11.16033841,11.5943961,0.7,1,Good,1609.027115,26.29003045,,No,11.01073447,87.30871048,Low_spent_Small_value_payments,335.54718,0,1.6996,-0.0736,-0.5511,-1.1646,1.0031 -0x20d31,CUS_0xc362,August,30,279-14-9750,Engineer,56286.51,,7,5,15,5,"Personal Loan, Mortgage Loan, Auto Loan, Student Loan, and Credit-Builder Loan",27.73194725,18.08483186,21.59,12,Standard,2912.183271,26.34837929,18 Years and 2 Months,Yes,201.4981615,370.9008961,Low_spent_Small_value_payments,177.7551924,0,0.6634,-0.01,0.8015,-0.5415,1.0076 -0x20d3d,CUS_0x1e45,August,41,#F%$D@*&8,Manager,166837.64,,4,3,8,0,,8.11491859,7.847430376,11.61,1,Good,1540.051367,36.91309695,16 Years and 0 Months,No,0,256.2779694,High_spent_Large_value_payments,1351.735697,0,0.8962,-1.287,-0.0164,1.1839,0.0462 -0x20d49,CUS_0x3e4b,August,27,937-26-6424,Mechanic,18228.535,,0,3,1.288361749,4,"Debt Consolidation Loan, Auto Loan, Not Specified, and Auto Loan",0,0,8.35,2554,_,145.5508442,30.520618,,No,54.00702617,,High_spent_Medium_value_payments,285.1796989,0,1.82,-0.1522,-0.0571,-0.7096,-0.3453 -0x20d55,CUS_0x3582,August,26,346-20-0951,Media_Manager,126464.01,10420.6675,5,5,6,2,"Credit-Builder Loan, and Debt Consolidation Loan",8.951234158,8,7.1,4,Good,595.4435463,44.59866844,24 Years and 2 Months,No,170.3003847,118.7244218,!@9#%8,1007.960746,0,0.6009,1.7077,2.5124,0.1187,-0.4256 -0x20d61,CUS_0x2488,August,26,593-49-8824,Lawyer,98455.26,8420.605,4,4,12,3,"Student Loan, Personal Loan, and Not Specified",,20,4.24,2,Standard,424.3,34.51585254,22 Years and 11 Months,No,238.3582389,,Low_spent_Small_value_payments,588.7896348,0,0.5145,2.133,-0.3231,-0.7924,0.2099 -0x20d6d,CUS_0x972f,August,23,789-04-4761,Scientist,66387.42,5545.285,4,5,12,6,"Mortgage Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",30.35282216,22,10.46,11,Standard,1175.18,38.58887171,17 Years and 5 Months,Yes,194.7962289,,Low_spent_Large_value_payments,338.1867316,0,0.6423,-1.552,0.9877,-1.1164,0.4705 -0x20d79,CUS_0x77c,August,41,074-98-8131,Mechanic,82383.04,6661.253333,3,5,8,4,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",16.34592615,14,1.71,4,_,1129.481193,34.23002053,33 Years and 3 Months,No,162.1089556,307.602067,Low_spent_Large_value_payments,495.9924263,0,-0.7367,1.3754,-1.0648,-0.238,-0.4616 -0x20d85,CUS_0x9ce8,August,31,943-79-6953,Mechanic,29182.34,2479.861667,8,10,29.06745738,5,"Debt Consolidation Loan, Not Specified, Auto Loan, Not Specified, and Credit-Builder Loan",26.68745608,,,12,Bad,5663.595706,25.81913999,7 Years and 3 Months,Yes,121.4995467,,Low_spent_Small_value_payments,229.2466884,0,-0.9819,1.6806,-0.4605,0.692,-0.6998 -0x20d91,CUS_0x3ccd,August,18,973-14-4888,Engineer,15586.65,,4,7,9,3,"Not Specified, Not Specified, and Debt Consolidation Loan",6.328978118,8,17.53,4,Good,207.81,31.52210241,16 Years and 9 Months,No,27.69331395,145.7045303,Low_spent_Small_value_payments,229.2909057,0,-0.761,-0.0022,1.0765,0.9746,0.8242 -0x20d9d,CUS_0x8df0,August,19,268-76-4008,_______,54593.73,4456.4775,6,9,31,2,"Home Equity Loan, and Home Equity Loan",,18.27544897,16.24,12,Standard,2688.546362,24.74565585,9 Years and 6 Months,NM,53.30572815,69.93571944,High_spent_Large_value_payments,562.4063024,0,0.7568,-1.5518,-0.7303,-0.396,-0.5078 -0x20da9,CUS_0x81c5,August,80,817-22-9418,Teacher,55554.69,,12,9,35.95700519,7,"Personal Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Student Loan, Student Loan, and Personal Loan",28.62366427,17,21.76,14,Bad,5197.720954,39.17327367,1 Years and 5 Months,Yes,1551.600202,10000,High_spent_Medium_value_payments,313.9846067,0,0.9155,0.6555,-0.7662,-0.0592,0.5133 -0x20db5,CUS_0x318c,August,42,025-48-2841,Doctor,61807.41,5418.6175,4,5,18,4,"Home Equity Loan, Personal Loan, Student Loan, and Payday Loan",22.53909898,15,12.62,5,Standard,668.14,29.99995745,16 Years and 5 Months,Yes,157.2174257,89.20782511,High_spent_Medium_value_payments,545.4364992,0,-0.097,0.7267,0.273,1.5595,0.2514 -0x20dc1,CUS_0xbd1e,August,44,645-70-2918,Writer,16200.25,,0,7,3909,3,"Payday Loan, Student Loan, and Debt Consolidation Loan",,1,10.9,0,Good,560.52,37.2444103,,No,30.75051907,86.46534477,Low_spent_Small_value_payments,328.1862195,0,0.5846,0.0337,1.0828,0.0555,0.3281 -0x20dcd,CUS_0x2913,August,54,212-82-4042,Teacher,43924.04,3811.336667,0,6,6,2,"Payday Loan, and Student Loan",3.034246741,5,0.6,5,Good,780.26,27.41346059,20 Years and 5 Months,No,63.31342078,152.2179402,High_spent_Medium_value_payments,415.6023057,0,-0.1154,0.6876,-1.6545,0.461,-0.364 -0x20dd9,CUS_0xae01,August,37,691-44-6094,Accountant,39522.28,,8,8,30.88954781,7,"Mortgage Loan, Not Specified, Personal Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Student Loan",,24,8.65,10,Bad,2024.37,28.87418906,,Yes,1483.804878,10000,High_spent_Medium_value_payments,275.342797,0,-1.4029,0.816,0.8209,1.0471,-0.2436 -0x20de5,CUS_0xb6ef,August,44,874-21-6811,Architect,35618.39,,4,4,3223,7,"Personal Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, and Mortgage Loan",19.14896067,17,9.89,7,Standard,1320.37,31.82570099,11 Years and 2 Months,Yes,163.202427,,!@9#%8,139.1789822,0,-1.1755,-0.037,0.7577,-0.1791,0.157 -0x20df1,CUS_0xa4e2,August,42,513-42-9327,Musician,125905.84,10306.15333,6,4,18,1,Not Specified,10.56182552,8,20.72,3,_,1416.79,35.01915771,18 Years and 6 Months,Yes,81.12026028,593.1075341,Low_spent_Small_value_payments,646.387539,0,1.486,-1.1109,-2.7068,-0.0905,-0.1764 -0x20dfd,CUS_0xac19,August,18,820-54-9717,Writer,42216.93,,10,5,15,7,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Payday Loan, and Not Specified",29.09110204,16,19.95,10,Standard,1890.92,36.78495776,14 Years and 8 Months,NM,206.0735038,,Low_spent_Medium_value_payments,185.4013257,0,-2.1775,1.1995,-1.2244,0.1634,-2.3639 -0x20e09,CUS_0xbc71,August,44,792-12-2499,Musician,119242.68,9849.89,8,3,7,1,Debt Consolidation Loan,15.297173,12.3800121,1.54,1,Standard,855.4549457,42.55598036,20 Years and 9 Months,NM,85.65308709,264.0465751,High_spent_Medium_value_payments,885.2893378,0,0.0309,-0.0124,0.2066,1.7622,-0.4902 -0x20e15,CUS_0x4681,August,24,473-15-3361,Architect,29175.03,,0,1166,1,0,,5.184335795,7,11.95,5,Good,1274.942744,26.39861576,19 Years and 8 Months,No,0,111.7163239,Low_spent_Small_value_payments,404.1210163,0,0.7435,-0.6926,-0.3284,0.7299,-1.1514 -0x20e21,CUS_0x5ba4,August,22,814-56-6314,Scientist,78810.64,6448.553333,6,5,16,2,"Student Loan, and Debt Consolidation Loan",24.21313966,20,12.03,6,Standard,54.46,30.65178783,20 Years and 8 Months,Yes,98.47957095,265.313413,High_spent_Small_value_payments,541.0623494,0,-0.4196,-1.0795,-0.2334,-1.1181,-0.1792 -0x20e2d,CUS_0x7cce,August,19,943-72-7708,Teacher,29094.06,2303.505,9,10,25,4,"Not Specified, Home Equity Loan, Student Loan, and Student Loan",,20.12266118,9.45,13,Standard,1739.258994,32.45452478,14 Years and 4 Months,Yes,49.73700006,,High_spent_Small_value_payments,373.3086286,0,-1.6656,0.1854,-1.9823,0.6293,-0.4462 -0x20e39,CUS_0x33eb,August,35,584-17-2854,_______,20674.5,1447.875,7,8,31,5,"Debt Consolidation Loan, Not Specified, Auto Loan, Auto Loan, and Home Equity Loan",,21,23.05,9,Bad,2827.23,23.82753824,14 Years and 0 Months,Yes,52.39284992,43.70781321,Low_spent_Large_value_payments,318.6868369,0,0.1998,-0.2829,0.8286,-0.968,0.1198 -0x20e45,CUS_0x783b,August,49,024-41-2966,Teacher,21537.99,1530.8325,5,5,15,0,,8.952612782,9,11.85,4,Standard,535.8649106,24.99821073,17 Years and 2 Months,No,0,58.40202441,High_spent_Medium_value_payments,350.4551769,0,-0.735,0.785,1.2378,0.3969,-0.7233 -0x20e51,CUS_0x85da,August,42,839-44-4102,_______,77751.8,6515.316667,10,10,19,5,"Personal Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",43.1370413,25.1757908,10.12,8,Bad,2771.334397,36.25093952,20 Years and 5 Months,Yes,320.6438681,226.7796537,High_spent_Medium_value_payments,354.1081449,0,-0.122,-0.5144,-0.2248,-0.4934,0.2652 -0x20e5d,CUS_0x7a56,August,45,882-19-9462,Manager,38430.94,,7,6,25.06745738,7,"Student Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Personal Loan, and Auto Loan",37.13676462,25.52333352,27.7,13,Bad,5780.003711,31.48709473,,Yes,142.8111524,244.1970778,Low_spent_Small_value_payments,204.2293152,0,-0.945,0.0688,-0.3742,-1.312,1.8292 -0x20e69,CUS_0xa772,August,38,127-02-2110,Entrepreneur,56451.8,4813.316667,4,6,7,463,"Student Loan, Student Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Student Loan, and Not Specified",,18,12.47,7,Standard,1210.96,35.20410984,,Yes,190.6457617,,Low_spent_Small_value_payments,221.6267562,0,0.3268,0.4286,-0.5679,1.3268,0.5554 -0x20e75,CUS_0x2596,August,19,174-34-6415,Lawyer,19886.07,,8,6,5,2,"Debt Consolidation Loan, and Student Loan",19.55889529,12.80161852,14.65,5,Standard,1253.3018,30.31765297,17 Years and 0 Months,Yes,29.60531841,50.83236077,High_spent_Small_value_payments,365.9795708,0,-0.1288,-1.9902,0.9277,0.5476,-1.1411 -0x20e81,CUS_0x56f5,August,27,300-96-8465,Lawyer,41848.26,3578.355,8,7,11,1,Personal Loan,21.68790173,17,5.61,2,Standard,616.98,23.21187746,32 Years and 11 Months,No,31.72574557,,High_spent_Small_value_payments,431.9859727,0,-1.183,-0.6964,-0.8234,0.9976,-0.864 -0x20e8d,CUS_0x61f7,August,54,478-96-2156,Architect,36920.36,,0,6,3,0,,0,1,11.94,5,Good,881,26.24767701,27 Years and 4 Months,No,0,73.44758723,High_spent_Large_value_payments,478.5220794,0,-1.3818,-0.3829,-0.8619,-0.637,0.3484 -0x20e99,CUS_0x3141,August,36,884-06-5529,_______,39912.86,3498.071667,3,4,17,6,"Auto Loan, Auto Loan, Mortgage Loan, Payday Loan, Home Equity Loan, and Not Specified",13.62685808,12,15.72,8,Standard,1734.43,38.30933465,17 Years and 0 Months,Yes,197.956347,360.0056359,Low_spent_Medium_value_payments,71.84518378,0,0.1552,-0.6398,0.2167,-0.3016,-0.9157 -0x20ea5,CUS_0x1aa4,August,46,404-72-1681,Doctor,100192.32,8171.36,8,4,4.288361749,4,"Home Equity Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",8.044658132,9,7.98,3,Standard,1111.055346,38.21335384,25 Years and 5 Months,Yes,167.4736554,559.4272652,High_spent_Large_value_payments,767.1721905,0,-0.7088,0.2806,0.6483,-0.0079,1.7828 -0x20eb1,CUS_0x3ce2,August,30,776-82-8001,Engineer,14095.93,1310.660833,10,8,34.88954781,6,"Payday Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",37.25235382,27.80938879,27.43,7,_,3205.202415,37.1288267,2 Years and 0 Months,Yes,1361.228585,23.09102034,High_spent_Medium_value_payments,302.4163964,0,0.507,0.4151,-1.0688,-1.1088,0.3101 -0x20ebd,CUS_0x1193,August,46,239-12-4495,Developer,31877.72,,2,5,20,1,Credit-Builder Loan,21.57727428,,4.46,4,Standard,886.59,28.72954071,25 Years and 3 Months,NM,21.79437525,,High_spent_Medium_value_payments,403.0142972,0,-0.8311,-1.9685,0.4015,-0.6207,0.6344 -0x20ec9,CUS_0x3d7b,August,36,601-37-2077,Entrepreneur,42756.72,3653.06,4,3,2,3,"Not Specified, Debt Consolidation Loan, and Home Equity Loan",0,1,7.67,6,Good,793.1495406,33.75606093,25 Years and 10 Months,No,72.87631764,294.9163954,Low_spent_Small_value_payments,330.9306608,0,-0.4711,-1.5213,0.3941,0.7552,-0.3267 -0x20ed5,CUS_0x557,August,20,767-97-7844,Musician,24293.22,,4,7,13.28836175,2,"Not Specified, Mortgage Loan, and Auto Loan",,16,11.66,2,Standard,62.26,33.63084912,21 Years and 9 Months,No,156.653146,526.7452627,Low_spent_Small_value_payments,318.3964172,0,-0.6017,-0.6079,0.0289,0.3159,-0.0775 -0x20ee1,CUS_0x319d,August,35,309-93-6346,Lawyer,50520.75,4407.0625,6,5,33,5,"Not Specified, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",33.39819416,17,3.53,12,Bad,1535.02,29.35278787,8 Years and 9 Months,Yes,127.537569,157.2903606,High_spent_Medium_value_payments,405.8783204,0,0.5422,-0.3207,-0.0829,-1.0813,0.7363 -0x20eed,CUS_0x37b2,August,51,274-15-9496,Architect,20961.365,,4,1,0.288361749,2,"Student Loan, and Not Specified",8.640318763,11,12.41,3,Good,90.29765527,31.12052773,31 Years and 6 Months,No,17.52462853,485.7787567,High_spent_Medium_value_payments,362.7505441,0,-1.3603,-0.686,-0.3073,-1.1073,-2.8414 -0x20ef9,CUS_0x84c3,August,23,631-17-2729,Scientist,52797.3,,10,6,33,5,"Debt Consolidation Loan, Student Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",,20.90412723,19.9,8,Bad,2860.935597,38.49326185,6 Years and 11 Months,Yes,209.9328876,207.2264543,High_spent_Small_value_payments,278.1181581,0,-0.2567,-0.9493,-0.5472,0.4902,1.6646 -0x20f05,CUS_0x9c0d,August,18,464-44-4511,_______,144444.64,11929.05333,4,4,5.288361749,6,"Auto Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,19,17.91,5,Standard,1262.620157,38.51033098,,Yes,720.1557662,728.3251859,High_spent_Large_value_payments,437.9081506,0,1.3955,-0.26,0.5601,-0.2931,1.076 -0x20f11,CUS_0x4672,August,34,886-85-1961,Journalist,27947.05,2331.920833,8,6,9,7,"Home Equity Loan, Auto Loan, Not Specified, Payday Loan, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,16,8.84,7,Standard,172.39,40.70016712,14 Years and 6 Months,Yes,148.799066,134.499254,Low_spent_Medium_value_payments,229.8937633,0,1.6194,1.2595,0.8526,-0.3391,-0.1459 -0x20f1d,CUS_0x3c7d,August,38,469-05-2428,Engineer,135671.32,11395.94333,4,5,9.288361749,4,"Credit-Builder Loan, Mortgage Loan, Payday Loan, and Not Specified",13.62989706,,4.82,3,Good,924.3281461,29.88027154,20 Years and 10 Months,NM,305.4040662,1267.606638,High_spent_Small_value_payments,359.2595698,0,-1.8012,-0.8123,1.7464,0.8613,-1.92 -0x20f29,CUS_0x3108,August,35,788-31-6965,Engineer,98983.17,8178.323856,4,4,5,3,"Auto Loan, Student Loan, and Student Loan",21.88143733,19,18.95,7,Standard,261.5086824,33.50681971,23 Years and 10 Months,Yes,481.2425786,,High_spent_Medium_value_payments,681.4314143,0,0.2051,-1.1008,1.1872,-0.2893,0.5591 -0x20f35,CUS_0x34a8,August,30,344-78-5892,Developer,81566.25,7036.1875,7,6,12,3,"Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",12.68352688,11,6.27,2,Good,204.6219473,32.84563428,30 Years and 3 Months,No,136.2266373,196.1867972,High_spent_Large_value_payments,639.2144127,0,1.2072,-0.76,0.762,-0.41,0.8853 -0x20f41,CUS_0xb4e2,August,33,234-00-2959,_______,36029.25,,3,6,12,3,"Credit-Builder Loan, Mortgage Loan, and Not Specified",,11.49640021,10.99,1,_,1035.94345,27.10085135,31 Years and 11 Months,No,83.18282267,84.27812882,High_spent_Medium_value_payments,393.6827985,0,0.2118,0.1057,0.5941,1.8875,-1.14 -0x20f4d,CUS_0x7081,August,23,653-91-2313,Doctor,58290.64,4602.553333,7,9,19,8,"Mortgage Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Not Specified, Payday Loan, and Home Equity Loan",34.06477848,23,24.39,12,Bad,2818.43,27.19270752,11 Years and 5 Months,Yes,304.7445754,,Low_spent_Small_value_payments,81.95723906,0,-0.3406,-0.3975,-0.2811,1.1488,-1.1992 -0x20f59,CUS_0x8f37,August,23,779-74-6107,Architect,18014.97,,8,4,4,1,Mortgage Loan,,18,8.34,6,Standard,360.96,31.78982669,20 Years and 8 Months,No,52709,,Low_spent_Medium_value_payments,264.5119845,0,-0.017,-2.0522,-1.0634,-0.5275,-0.1345 -0x20f65,CUS_0x5426,August,26,862-45-6731,Entrepreneur,128163.36,10648.28,5,7,7,4,"Not Specified, Student Loan, Auto Loan, and Home Equity Loan",,3.439959651,8.79,5,Good,1645.767474,36.95741324,18 Years and 9 Months,No,281.7923011,276.7106928,High_spent_Medium_value_payments,756.3250061,0,1.3972,0.3519,-0.5181,0.1745,-0.5367 -0x20f71,CUS_0x5b70,August,61,433-49-2426,Journalist,83378.2,,4,5,642,0,,,8,2.86,1,Standard,371.6968142,29.96399943,26 Years and 5 Months,No,978.3884127,104.9090814,High_spent_Large_value_payments,814.432899,0,-0.291,-1.0385,0.9191,1.0656,-1.2521 -0x20f7d,CUS_0xa848,August,29,287-46-9447,Manager,33212.27,,6,6,7,6,"Student Loan, Student Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, and Student Loan",,17,15.02,9,_,45.65,27.7622975,20 Years and 2 Months,Yes,130.8157578,10000,!@9#%8,352.5212264,0,-1.4001,0.2816,1.3629,-0.8783,-0.4291 -0x20f89,CUS_0x28a6,August,49,695-78-8170,Writer,35207.73,3081.9775,4,7,5,2,"Auto Loan, and Debt Consolidation Loan",9.640662719,9.602287691,11.85,2,Good,947.5361171,27.45891072,25 Years and 0 Months,No,38.98416654,294.2215308,Low_spent_Small_value_payments,264.9920527,0,1.612,-0.3679,1.5057,0.7021,0.9917 -0x20f95,CUS_0xfb8,August,44,989-30-9881,Architect,34636.64,,3,1,9,4,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",8.508620273,10,18.8,4,_,580.4504371,26.50211007,24 Years and 0 Months,No,347.1647146,68.30643764,High_spent_Large_value_payments,389.7322135,0,0.1311,0.9279,-1.2269,-0.9122,1.0804 -0x20fa1,CUS_0x85fa,August,23,967-66-5763,Musician,83126.24,6679.483925,9,8,34,4,"Student Loan, Student Loan, Home Equity Loan, and Not Specified",,,10.56,7,Bad,2331.17,33.63713033,9 Years and 9 Months,Yes,487.1262121,180.1303629,High_spent_Medium_value_payments,556.1648332,0,-0.8424,2.5016,-0.1899,-1.2022,2.3988 -0x20fad,CUS_0x2509,August,18,026-87-1097,Entrepreneur,37777.92,3055.16,3,4,20,5,"Home Equity Loan, Personal Loan, Mortgage Loan, Student Loan, and Payday Loan",38.39871417,22.84948141,18.37,9,_,1449.237055,24.20114507,9 Years and 0 Months,Yes,100.4279498,102.7563353,High_spent_Medium_value_payments,352.3317149,0,1.8101,0.5079,0.2991,0.4647,-0.2128 -0x20fb9,CUS_0x4d66,August,45,178-31-0860,Developer,27292.5,2254.375,5,6,9.067457376,4,"Home Equity Loan, Not Specified, Personal Loan, and Home Equity Loan",,16,18.56,4,Standard,1657.590954,37.89477441,6 Years and 3 Months,Yes,85.04387659,178.5258638,Low_spent_Small_value_payments,225.1474717,0,0.6927,-0.5094,-0.513,1.2017,0.8547 -0x20fc5,CUS_0xa1b1,August,41,081-44-2748,Architect,84373.32,7035.11,2,5,2,2,"Mortgage Loan, and Student Loan",0,0,3.82,0,Good,1390.19,37.80333342,23 Years and 2 Months,No,93.23117811,448.1127055,High_spent_Small_value_payments,422.1671164,0,0.5719,0.5128,-0.6714,0.9345,0.525 -0x20fd1,CUS_0x8ee1,August,53,640-09-8819,Journalist,59999.02,5065.918333,4,4,11,497,"Personal Loan, and Home Equity Loan",,12,4.9,0,Good,543.44,39.75559842,32 Years and 5 Months,No,84.24989669,149.6855836,Low_spent_Medium_value_payments,552.656353,0,-0.5446,0.4358,-1.0655,0.2607,-1.2582 -0x20fdd,CUS_0x2ad6,August,18,271-93-4540,Scientist,7127.455,,10,5,34,6,"Payday Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Personal Loan, and Mortgage Loan",33.28954421,25,26.31,9,Bad,2698.32,33.33360884,8 Years and 5 Months,Yes,35.09429836,67.38867264,!@9#%8,266.0124873,0,0.5099,-0.1923,-0.3287,0.2544,0.1195 -0x20fe9,CUS_0xa223,August,29,330-17-7373,_______,28253.33,,1,6,5,4,"Student Loan, Auto Loan, Payday Loan, and Home Equity Loan",7.55481553,9,9,6,_,964.2729575,25.35127876,25 Years and 11 Months,No,93.60803133,139.4557781,Low_spent_Small_value_payments,297.6058824,0,-0.3233,1.7192,0.8171,-0.4523,1.1616 -0x20ff5,CUS_0xaee8,August,24,836-22-0493,Mechanic,19268.3,1652.691667,4,5,16,4,"Mortgage Loan, Not Specified, Auto Loan, and Credit-Builder Loan",,22.00644316,17,6,_,2456.786947,38.64647189,17 Years and 10 Months,Yes,49.43098075,,Low_spent_Small_value_payments,208.2459673,0,-0.9088,-0.6701,-1.4219,1.854,0.2388 -0x21001,CUS_0x53cc,August,26,773-37-9475,Accountant,147327.8,12351.31667,5,5,7,1,Not Specified,,18,8.47,11,Standard,738.15,36.89767186,18 Years and 9 Months,NM,73.57466389,,High_spent_Medium_value_payments,1038.464822,0,-1.4557,0.723,1.3382,0.7282,0.2994 -0x2100d,CUS_0x8c79,August,34,246-50-5176,Scientist,47732.88,3821.74,6,7,26,2,"Payday Loan, and Personal Loan",11.32473739,11.37502445,10.25,9,Standard,1712.618737,31.964098,13 Years and 8 Months,Yes,46.47119698,82.91873004,High_spent_Large_value_payments,492.784073,0,0.9392,0.4063,1.3431,-0.0552,1.1458 -0x21019,CUS_0x75fd,August,28,359-56-5225,Doctor,13180.99,936.4158333,5,4,12,4,"Not Specified, Payday Loan, Auto Loan, and Personal Loan",16.52165625,15,9.94,6,_,1271.805051,25.39538198,23 Years and 11 Months,No,37.42957476,40.33188813,High_spent_Medium_value_payments,270.7952364,0,1.2781,-1.3714,-1.6904,-1.128,-0.4279 -0x21025,CUS_0x8f19,August,33,870-86-3555,Architect,69981.32,,6,10,27.88954781,6,"Not Specified, Home Equity Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",36.70141495,17.71757315,29.04,13,_,3308.365698,24.35279513,6 Years and 2 Months,Yes,1579.720115,459.9986147,Low_spent_Medium_value_payments,143.1288552,0,-0.3984,-0.3978,2.1215,-0.3211,0.3709 -0x21031,CUS_0x25ce,August,39,990-90-7626,Teacher,31253.18,,1,3,4.288361749,2,"Home Equity Loan, Personal Loan, and Payday Loan",,10,5.83,1,Good,311.0262558,35.45267377,17 Years and 4 Months,No,64.54532912,,High_spent_Small_value_payments,351.3279759,0,-1.3293,-0.2864,-0.456,0.71,-1.9613 -0x2103d,CUS_0xb6a6,August,18,127-94-0685,Manager,33735.42,,7,5,25.06745738,7,"Debt Consolidation Loan, Payday Loan, Payday Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",40.17651087,25,19.18,6,Bad,2940.610954,33.21526182,9 Years and 6 Months,NM,175.4377534,27.00413258,High_spent_Large_value_payments,264.7663261,0,0.4829,-0.1892,2.7473,0.3165,0.8098 -0x21049,CUS_0x3b21,August,35,435-98-9435,Entrepreneur,8312.085,,8,5,18,2,"Not Specified, and Not Specified",,11,18.07,14,Standard,1945.67,27.65670245,6 Years and 10 Months,Yes,10.73435757,35.69166049,Low_spent_Large_value_payments,280.4413569,0,-1.0364,-0.1011,-0.5175,-0.5106,1.8858 -0x21055,CUS_0x4242,August,52,820-53-8739,Writer,18458.05,,7,7,6,3,"Auto Loan, Debt Consolidation Loan, and Payday Loan",,11,16.58,4,_,705.4,39.25786315,27 Years and 8 Months,No,42.43928512,89.30505229,Low_spent_Large_value_payments,267.0727459,0,-1.3163,-0.531,0.7405,1.564,0.1785 -0x21061,CUS_0x799e,August,53,890-44-4311,Lawyer,22385.16,,8,7,17,1,Student Loan,16.04305943,10,0.74,,Standard,234.62,36.39996902,16 Years and 3 Months,No,16.41417281,250.9129197,Low_spent_Small_value_payments,230.4159075,0,0.0888,0.5229,1.8658,0.9651,0.1693 -0x2106d,CUS_0x1810,August,36,759-35-3427,Developer,57651.98,4702.979023,4,5,6.288361749,2,"Mortgage Loan, Mortgage Loan, and Not Specified",0,3,6.17,3,Good,526.9393425,25.0022198,,No,500.1088093,729.9280163,!@9#%8,366.4140925,0,-2.4742,-0.9954,0.6801,0.7324,1.5287 -0x21079,CUS_0x3bf5,August,24,606-08-6851,Journalist,96815.91,,2,5,0.288361749,0,,4.657845314,6,15.4,3,Good,1257.64,31.86073072,,No,0,1090.716471,Low_spent_Small_value_payments,425.0202398,0,-0.828,1.6604,-1.6849,-0.0093,-1.6664 -0x21085,CUS_0x89b9,August,27,398-68-5126,Journalist,37085.98,,7,5,9,6,"Not Specified, Payday Loan, Home Equity Loan, Auto Loan, Auto Loan, and Payday Loan",17.87755192,16,17.97,6,Standard,1224.04,34.73750546,8 Years and 5 Months,Yes,109.8017497,131.0722983,Low_spent_Small_value_payments,371.1757853,0,0.3495,-0.6528,0.2865,0.2864,1.0574 -0x21091,CUS_0x526d,August,18,#F%$D@*&8,Doctor,131737.72,11196.14333,4,5,8,0,,7.915993759,9,16.82,5,_,1299.86,37.09889642,26 Years and 8 Months,Yes,0,392.5209166,Low_spent_Medium_value_payments,1007.093417,0,1.4144,0.8544,-0.0725,0.1895,0.4063 -0x2109d,CUS_0x2ec6,August,27,610-32-8187,Mechanic,57582.42,4508.535,6,10,25.88954781,9,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",31.42531783,18,29.52,8,Bad,3805.38,31.14283999,12 Years and 2 Months,Yes,1754.762187,,High_spent_Large_value_payments,138.2448492,0,-0.1571,1.3046,-0.0102,0.332,0.6469 -0x210a9,CUS_0xa525,August,53,589-22-6942,Musician,63407.82,5052.985,1,3,3.288361749,4,"Debt Consolidation Loan, Auto Loan, Auto Loan, and Student Loan",0,2,6.32,4,Good,768.25,28.41427232,19 Years and 8 Months,No,181.6393924,618.4812761,Low_spent_Small_value_payments,415.1152925,0,0.8406,1.1146,-0.6835,1.1198,-0.6687 -0x210b5,CUS_0x2611,August,37,976-05-5978,Architect,17919.005,1464.250417,1,5,7.288361749,0,,0,2,2.44,4,Good,69.03,29.18898086,19 Years and 10 Months,No,0,617.4914491,!@9#%8,238.8710536,0,-0.8663,-0.3899,0.1241,0.7375,-0.5013 -0x210c1,CUS_0xa352,August,27,017-80-4174,Mechanic,10437.765,,10,6,17.06745738,5,"Debt Consolidation Loan, Not Specified, Mortgage Loan, Payday Loan, and Credit-Builder Loan",,22.63362273,3.67,8,Bad,2319.510845,26.0218821,18 Years and 5 Months,Yes,31.38654772,63.12602293,Low_spent_Medium_value_payments,231.7485164,0,0.7506,0.2743,-0.3066,-0.417,0.0191 -0x210cd,CUS_0x1aeb,August,19,256-19-0938,Teacher,38253.64,2997.712061,1,3,2,3,"Debt Consolidation Loan, Student Loan, and Personal Loan",,0,9.29,1,_,738.2343972,28.54922084,21 Years and 6 Months,No,395.7820368,53.74075077,High_spent_Large_value_payments,470.4955363,0,0.9603,0.6123,0.7835,-0.4838,0.548 -0x210d9,CUS_0x8681,August,28,539-50-5278,Lawyer,38791.68,3265.64,6,9,30.88954781,9,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",32.45431061,23,3.44,13,Bad,3772.55,33.76539791,,Yes,1521.144747,73.12318739,!@9#%8,277.9659839,0,0.1909,0.1303,-0.5502,0.0836,0.4074 -0x210e5,CUS_0x4f16,August,41,978-05-7107,Accountant,23692.52,,5,3,948,0,,18.94879148,13,10.69,5,_,915.87,36.70712911,31 Years and 3 Months,Yes,0,276.8482626,Low_spent_Small_value_payments,223.5894041,0,-2.6004,-0.2548,2.1805,-1.2232,2.5762 -0x210f1,CUS_0x87b5,August,36,935-27-0277,Media_Manager,9648.82,1092.068333,4,7,5469,6,"Student Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Payday Loan",18.50133849,,8.94,5,Standard,1067.95,28.66741253,17 Years and 4 Months,Yes,29.06014322,53.67405012,Low_spent_Large_value_payments,296.47264,0,-0.9775,1.4855,-1.3583,0.9634,1.7526 -0x210fd,CUS_0x1999,August,32,447-57-2543,Engineer,39020.72,3180.726667,3,3,19,1,Home Equity Loan,19.38780806,15,1.75,3,Standard,1213.43,31.00501964,20 Years and 10 Months,Yes,8392,,Low_spent_Small_value_payments,172.756628,0,-1.5771,1.3485,-0.4079,1.238,0.3387 -0x21109,CUS_0x65b1,August,25,798-29-5581,Musician,20623.16,,6,8,20.88954781,9,"Mortgage Loan, Student Loan, Student Loan, Mortgage Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",,27.11946489,2.41,11,Bad,5421.416421,26.28779388,13 Years and 0 Months,Yes,1432.464107,117.8408246,Low_spent_Medium_value_payments,194.6246532,0,-1.4299,0.9753,0.0171,0.3715,-0.5095 -0x21115,CUS_0x878,August,24,467-94-0696,Engineer,39130.84,3421.903333,0,4,5,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",,2,0.77,2,Good,203.4266676,36.67284336,25 Years and 10 Months,No,88.32887502,219.5023003,High_spent_Small_value_payments,325.6990738,0,-0.2555,-0.0269,-0.9155,-0.6092,-1.9151 -0x21121,CUS_0x107c,August,18,712-17-7369,Journalist,49718.55,4179.2125,7,10,27,6,"Payday Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Auto Loan, and Auto Loan",24.55398877,17,10.5,7,Bad,1920.25,30.10963834,14 Years and 0 Months,Yes,231.9567806,430.8839387,Low_spent_Small_value_payments,45.08053062,0,-0.3071,0.3238,1.0385,0.0991,-1.6634 -0x2112d,CUS_0x442f,August,28,438-91-3759,Musician,16702.25,1640.854167,10,8,23,5,"Mortgage Loan, Auto Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",35.94528152,18,1.61,9,Bad,4536.64,24.67865034,7 Years and 4 Months,Yes,57.47093311,89.11271568,High_spent_Small_value_payments,277.5017679,0,-0.2601,1.9359,0.7183,0.3986,0.431 -0x21139,CUS_0x589a,August,45,248-22-7032,Teacher,28435.76,,4,10,15.88954781,7,"Personal Loan, Auto Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",,17,11.5,10,_,1962.25,26.29133747,8 Years and 2 Months,Yes,1440.203637,,High_spent_Medium_value_payments,273.0522136,0,1.2164,-1.9018,1.0646,-2.2153,-0.9029 -0x21145,CUS_0xaf0d,August,19,370-40-4991,Manager,87204.48,,6,6,14.28836175,2,"Auto Loan, Home Equity Loan, and Personal Loan",,12,18.08,5,Standard,681.4630291,32.13798549,31 Years and 8 Months,Yes,208.8985776,541.0309606,High_spent_Large_value_payments,673.7998938,0,0.3627,-0.3947,-0.1258,1.7352,-0.6771 -0x21151,CUS_0x24d4,August,23,258-43-9524,_______,41797.94,,1,191,3,3,"Not Specified, Payday Loan, and Payday Loan",0,2,5.36,9,Good,1119.021052,25.49100896,30 Years and 9 Months,No,73.43045136,252.9329839,Low_spent_Small_value_payments,360.7241265,0,0.7181,0.0461,0.2912,-2.2031,-1.8337 -0x2115d,CUS_0x4937,August,42,706-41-2399,Architect,112308.39,9642.0325,2,5,9,2,"Payday Loan, and Auto Loan",3.601958761,6,3.04,1,Good,666.31,30.71564098,16 Years and 11 Months,No,128.6947907,179.9097616,High_spent_Large_value_payments,895.5986977,0,0.23,-0.6161,-1.2872,-0.6346,1.3014 -0x21169,CUS_0xe75,August,48,630-86-9475,Manager,35820.62,,0,6,8,4,"Student Loan, Not Specified, Student Loan, and Personal Loan",,7,5.95,7,Good,731.26,25.43850786,20 Years and 4 Months,No,150.0090203,241.0456565,Low_spent_Large_value_payments,216.778419,0,1.0168,-2.0378,0.6394,0.0501,0.5863 -0x21175,CUS_0x1852,August,39,350-44-7688,Architect,35846.52,3014.21,4,3,19,3,"Student Loan, Mortgage Loan, and Not Specified",33.98581053,22.76029987,17.92,8,Standard,363.6102568,26.20718566,20 Years and 3 Months,Yes,84.34603364,86.73583605,High_spent_Small_value_payments,390.3391303,0,0.0313,-1.442,-0.0458,-0.2105,-1.1833 -0x21181,CUS_0x6bd,August,80,679-22-8597,Engineer,20981.46,,854,5,6,4,"Not Specified, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",,6,15.02,2,_,730.8767036,26.0188332,18 Years and 0 Months,Yes,56745,,Low_spent_Large_value_payments,276.3279665,0,1.7305,-0.7511,0.5165,1.1641,-0.2825 -0x2118d,CUS_0xb2b6,August,30,718-97-6164,Engineer,84687.48,7284.29,1,6,7,2,"Home Equity Loan, and Not Specified",2.13305017,5.883009307,3.18,2,Good,350.4143702,37.65981654,21 Years and 3 Months,No,86.47793019,172.2081469,Low_spent_Large_value_payments,739.7429229,0,-0.0516,0.5,-0.4444,1.1331,0.053 -0x21199,CUS_0x988c,August,31,083-64-0011,Writer,29101.85,,6,3,5,0,,12.33837059,9,4.77,9,Standard,1465.87,24.15034752,24 Years and 0 Months,No,0,45.26586083,High_spent_Medium_value_payments,453.2495558,0,-1.2101,-0.0153,-0.2207,-0.7807,0.1449 -0x211a5,CUS_0x9f8d,August,35,363-98-4300,Writer,20120.38,1410.698333,8,6,27.06745738,7,"Auto Loan, Payday Loan, Student Loan, Credit-Builder Loan, Personal Loan, Personal Loan, and Not Specified",23.52956322,16,8.87,9,Bad,2958.320954,25.64253509,2 Years and 10 Months,Yes,62.49858275,39.05202978,!@9#%8,292.7989328,0,1.7099,0.3638,-1.0056,0.8189,1.062 -0x211b1,CUS_0x1136,August,26,894-06-9872,Entrepreneur,37360.94,,10,5,33,5,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",28.34065311,14.54080714,,11,Standard,1388.032472,36.19634556,11 Years and 10 Months,Yes,93.34174657,254.4781039,Low_spent_Small_value_payments,228.6213162,0,1.6112,-0.2183,-0.2312,-0.8527,-0.9751 -0x211bd,CUS_0x5b25,August,30,356-13-9836,Manager,19280.89,,6,4,12,6,"Payday Loan, Personal Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Auto Loan",19.57622906,,9.69,6,Standard,967.9706005,26.41402672,11 Years and 0 Months,Yes,52.18972873,,!@9#%8,242.4207922,0,0.0486,-0.8178,0.7008,2.4123,0.8095 -0x211c9,CUS_0x2c98,August,30,532-22-6497,Teacher,19936.4,1404.366667,4,6,6,0,,21.75650034,17,7.62,5,Standard,1342.68,30.16057614,32 Years and 8 Months,No,0,56.327598,!@9#%8,374.1090687,0,-0.0481,0.6345,-0.5864,-1.2455,-0.4877 -0x211d5,CUS_0x1ed6,August,25,073-04-2832,Musician,127706.55,10785.2125,2,5,5.288361749,0,,0.284373788,5,9.92,2,_,709.9720483,31.9867788,20 Years and 8 Months,No,0,1375.303825,Low_spent_Large_value_payments,502.7517509,0,0.6213,0.0056,0.283,0.1302,-0.867 -0x211e1,CUS_0x9fd7,August,37,364-99-7073,Developer,18507.35,1653.776976,10,6,34.06745738,8,"Payday Loan, Mortgage Loan, Student Loan, Auto Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",,,21.65,13,_,4418.280954,38.70203051,11 Years and 4 Months,Yes,181.9361894,,High_spent_Medium_value_payments,315.0752212,0,-0.2112,1.6967,-0.5557,1.1931,0.3449 -0x211ed,CUS_0xa85d,August,20,647-63-8564,Media_Manager,34243.28,,8,10,18.88954781,7,"Not Specified, Student Loan, Auto Loan, Payday Loan, Payday Loan, Student Loan, and Credit-Builder Loan",,26.5436555,16.92,11,Bad,1568.186695,30.36987675,5 Years and 9 Months,NM,1518.583234,340.844453,Low_spent_Small_value_payments,0,0,0.1614,0.6394,0.0705,0.7884,0.2004 -0x211f9,CUS_0x7547,August,41,777-07-9801,Teacher,15931.72,,6,8,32.88954781,9,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, Not Specified, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",,14.88886911,6.28,10,Bad,1851.577407,39.03956245,,Yes,1416.88509,,Low_spent_Small_value_payments,254.7889787,0,-0.3343,-0.7629,0.1544,0.2344,-0.588 -0x21205,CUS_0x50dd,August,32,#F%$D@*&8,Lawyer,41293.1,,5,4,13,2,"Payday Loan, and Personal Loan",,21,8.78,9,_,1242.031977,30.95370855,19 Years and 0 Months,Yes,47.71436507,109.5039182,High_spent_Medium_value_payments,478.1060436,0,0.9302,-0.599,-0.6455,1.5251,0.4546 -0x21211,CUS_0x771d,August,18,323-10-7447,Engineer,36849.5,,8,6,26.06745738,9,"Payday Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Not Specified, Mortgage Loan, and Personal Loan",,22,3.88,10,Bad,2550.520954,40.08897722,19 Years and 10 Months,NM,174.5290824,267.9409078,Low_spent_Large_value_payments,103.7888885,0,0.251,0.3374,0.2909,-0.3883,-1.0785 -0x2121d,CUS_0x44cb,August,51,427-62-5278,Musician,53543.38,4622.948333,5,7,15,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Student Loan",8.349382408,5,6.18,3,Standard,112.36,31.5032486,19 Years and 0 Months,No,127.7907003,,!@9#%8,202.502221,0,-0.9548,1.8851,-0.9119,-0.9152,-1.1866 -0x21229,CUS_0x8c27,August,18,422-31-2327,Accountant,63965.84,5394.486667,8,7,19.06745738,7,"Auto Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",44.93521921,21.8125258,27.97,14,_,4057.078991,34.33994275,0 Years and 11 Months,Yes,299.6086222,498.7544904,Low_spent_Large_value_payments,0,0,1.1464,1.1038,0.5076,1.254,0.0563 -0x21235,CUS_0x4057,August,53,761-54-1901,Architect,39242.1,3229.175,4,2,4,100,,15.1067968,,1.01,3,Good,709.7093307,35.46236453,22 Years and 9 Months,No,0,309.8823735,Low_spent_Small_value_payments,337.3671802,0,-2.6469,-0.3882,-1.3385,0.2746,-1.5174 -0x21241,CUS_0x7c2,August,45,460-71-7774,_______,36217.7,,5,7,18,0,,17.91550406,15,10.27,11,Standard,793.26,38.95419472,31 Years and 3 Months,Yes,0,108.3143467,High_spent_Small_value_payments,475.39982,0,2.9519,0.2304,-1.2717,0.3225,-1.3069 -0x2124d,CUS_0x45ef,August,28,687-19-9885,Journalist,34798.03,,0,5,12,1,Debt Consolidation Loan,8.864157878,10,8.72,1,Good,1214.29,29.51121704,31 Years and 8 Months,No,24.33806067,169.0174663,Low_spent_Medium_value_payments,405.7280564,0,1.3384,1.3966,-1.3655,0.1509,-0.4082 -0x21259,CUS_0xad3d,August,41,160-01-3561,_______,35824.65,3271.3875,7,4,15,3,"Student Loan, Debt Consolidation Loan, and Mortgage Loan",,19,10.68,1136,Standard,754.02,28.9672244,27 Years and 8 Months,No,58.7977139,76.87342428,High_spent_Small_value_payments,451.4676118,0,0.1805,0.5823,-0.7836,0.7978,0.2601 -0x21265,CUS_0xc1f,August,23,161-09-0372,Architect,9000.425,703.0354167,7,4,32.06745738,3,"Debt Consolidation Loan, Auto Loan, and Personal Loan",,9.656991835,18.78,7,Standard,2123.92444,38.40103446,14 Years and 11 Months,Yes,11.68217794,55.99459156,Low_spent_Small_value_payments,265.9064842,0,-0.9702,0.5495,-0.4038,0.909,-0.1391 -0x21271,CUS_0x8ca,August,29,450-99-9426,Musician,35349.2,,6,7,20,3,"Home Equity Loan, Student Loan, and Home Equity Loan",14.73766689,11,10.57,2,Standard,551.36,30.10026059,16 Years and 5 Months,No,78.79827419,305.9842567,Low_spent_Small_value_payments,199.2941357,0,0.8002,1.5059,-1.1868,0.0713,0.8597 -0x2127d,CUS_0x2998,August,41,586-59-6353,Lawyer,20889.65,1710.804167,6,10,19,5,"Auto Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",36.98144237,21,28.05,13,Bad,4323.55,33.41328591,5 Years and 3 Months,Yes,43.67646306,146.5479587,Low_spent_Small_value_payments,270.8559949,0,0.3664,1.2718,0.0184,-0.4936,-0.5133 -0x21289,CUS_0xb8b9,August,28,369-60-3838,Doctor,28896.84,2151.07,7,7,30,100,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Auto Loan, and Student Loan",38.75425596,20.52348174,12.25,10,Standard,2384.886235,23.99862308,14 Years and 6 Months,NM,93.79526934,77.5867077,Low_spent_Medium_value_payments,323.725023,0,0.1299,-0.5659,0.4279,2.0648,0.93 -0x21295,CUS_0xa6b,August,33,318-22-9971,Entrepreneur,86274.99,6929.5825,6,7,11.28836175,2,"Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",13.53413406,12,17.33,0,Standard,138.25,38.48870279,20 Years and 6 Months,Yes,167.0843957,619.8296305,Low_spent_Medium_value_payments,605.9816848,0,0.5212,-0.6833,-0.0111,0.2536,1.1102 -0x212a1,CUS_0x8376,August,43,509-93-1354,Musician,32446.8,2722.9,8,6,11,1,Mortgage Loan,15.55155422,11,5.11,3,Standard,343.6596372,38.73464816,33 Years and 4 Months,No,18.11580499,176.8703657,High_spent_Small_value_payments,360.6989413,0,-0.4784,2.0956,-0.5939,2.1212,-0.1655 -0x212ad,CUS_0x2a86,August,36,154-26-2987,Accountant,50817.9,,3,6,5774,2,"Home Equity Loan, and Student Loan",21.89443959,17.43758293,17.05,12,Standard,2585.189313,39.86771535,8 Years and 9 Months,NM,47.53723211,79.41901901,High_spent_Medium_value_payments,576.2262489,0,0.9275,0.72,-0.6098,0.2344,-0.2399 -0x212b9,CUS_0x2bd2,August,49,629-39-0007,Manager,38155.64,2933.636667,3,4,4.288361749,0,Home Equity Loan,0,1.219458425,1.63,6,Good,147.8454092,33.5789938,33 Years and 8 Months,No,23.21341948,690.7161932,Low_spent_Small_value_payments,289.371515,0,-0.26,0.9326,-0.1076,0.5162,-1.0928 -0x212c5,CUS_0x3a4d,August,18,075-17-7733,_______,37006.6,3378.883333,7,10,3049.067457,9,"Home Equity Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Auto Loan, Student Loan, and Payday Loan",27.50627583,16,20.11,12,Bad,3609.660954,40.44243697,8 Years and 4 Months,Yes,245.8399552,,Low_spent_Medium_value_payments,137.8573444,0,0.5129,0.5641,-0.7647,-1.1784,-0.061 -0x212d1,CUS_0x3276,August,42,016-61-1825,Doctor,47370.64,,5,6,14,1,Not Specified,27.33854244,20,6.44,0,Standard,1397.52,27.27253097,32 Years and 0 Months,No,21.7163967,254.9034934,Low_spent_Medium_value_payments,371.0354432,0,0.0293,1.5289,0.58,1.2688,-1.5591 -0x212dd,CUS_0x88b8,August,54,#F%$D@*&8,Teacher,72363.72,6124.31,5,3,8,3,"Credit-Builder Loan, Mortgage Loan, and Payday Loan",0,3,12.85,7,Good,364.45,35.98073379,20 Years and 5 Months,No,137.6729658,10000,!@9#%8,499.9408951,0,0.5059,1.0948,-2.0076,0.2888,1.3306 -0x212e9,CUS_0x1a59,August,19,531-57-4050,Journalist,69224.94,,4,4,2,4,"Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",3.628908392,4,4.21,0,_,317.74,27.37806604,26 Years and 0 Months,No,227.9825334,271.2855387,Low_spent_Large_value_payments,318.906428,0,0.4978,-2.1753,0.2888,0.3748,-0.8902 -0x212f5,CUS_0x4922,August,37,523-78-6733,Teacher,132552.16,11094.01333,3,180,10.28836175,0,Debt Consolidation Loan,2.569933673,6,5.32,6,Good,706.5407546,34.74602141,20 Years and 10 Months,No,77.07980746,609.7138316,High_spent_Medium_value_payments,1111.879,0,-0.5514,0.3732,1.8919,-0.4543,0.5753 -0x21301,CUS_0x7eb6,August,22,533-78-8189,Teacher,16627.15,,9,6,4760.067457,8,"Credit-Builder Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",23.7681408,15,4.39,14,_,2831.120954,31.84488436,16 Years and 9 Months,Yes,92.23669596,,Low_spent_Medium_value_payments,213.6314159,0,-1.3303,-0.8748,-0.6239,0.8755,-0.3769 -0x2130d,CUS_0x3eab,August,36,212-10-2855,Media_Manager,165799.4,,0,3,1.288361749,0,Home Equity Loan,9.063734765,9,7.08,1,Good,422.8447682,39.02115841,23 Years and 2 Months,No,81.55242269,11443.96613,High_spent_Large_value_payments,1239.562122,0,0.1401,-1.2319,-0.9488,-0.5517,0.8077 -0x21319,CUS_0x9ce2,August,40,578-60-2730,Doctor,83491.35,,8,7,16,0,,,9,13.33,6,Standard,921.4207131,38.84182617,12 Years and 3 Months,Yes,0,635.9264823,Low_spent_Large_value_payments,424.9816451,0,-0.0823,0.5891,-0.3882,0.7496,-0.997 -0x21325,CUS_0x7cf0,August,42,439-65-0122,Lawyer,41468.9,3173.741667,1596,8,27.95700519,8,"Auto Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Home Equity Loan, Payday Loan, Not Specified, and Payday Loan",,28.40255962,22.08,16,Bad,4240.665469,33.6048947,1 Years and 4 Months,NM,1596.706712,37.24523414,High_spent_Medium_value_payments,212.3718515,0,1.595,-0.3505,1.215,-0.3806,-0.6969 -0x21331,CUS_0x3660,August,39,396-24-2492,_______,77326.84,,4,4,9,1,Not Specified,0,0,0.69,3,Good,435.6394633,24.62893025,23 Years and 9 Months,No,37.30993517,,High_spent_Small_value_payments,573.9806805,0,-0.0793,0.9903,0.5012,1.4965,0.3833 -0x2133d,CUS_0x6a29,August,50,224-33-4622,Mechanic,67551.57,5887.2975,5,3,20,4,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Student Loan",22.80750907,17,9.61,8,Standard,268.08,29.85910507,25 Years and 8 Months,Yes,143.4185524,127.2424201,!@9#%8,578.0687776,0,0.8631,0.7256,0.7433,0.7112,-0.8513 -0x21349,CUS_0x13d1,August,26,689-84-3896,Musician,22020.37,,5,6,6,3,"Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",17.37174978,,5.14,9,Good,1502.270016,30.78916771,26 Years and 4 Months,No,36.59863069,208.749374,Low_spent_Small_value_payments,205.1550786,0,0.157,-1.0274,-0.9431,-1.3055,1.2885 -0x21355,CUS_0x3ace,August,30,409-44-5696,Engineer,19938.73,,7,5,19,8,"Personal Loan, Not Specified, Not Specified, Student Loan, Auto Loan, Home Equity Loan, Student Loan, and Student Loan",41.62953594,21.70776294,30.26,10,Bad,4618.128144,31.91985048,13 Years and 0 Months,Yes,111.966283,,High_spent_Small_value_payments,222.004045,0,-0.1083,-1.2171,-0.7969,0.3568,1.2463 -0x21361,CUS_0xa861,August,45,598-53-8603,Engineer,62578.92,4986.91,6,6,6,4,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",10.37209151,11,10.97,4,Standard,1045.77,28.96888867,19 Years and 6 Months,Yes,208.225952,,High_spent_Small_value_payments,241.0002037,0,-1.127,0.5159,-0.4295,0.5168,0.9627 -0x2136d,CUS_0x95f0,August,18,798-66-0089,Teacher,33662.51,,4,4,9,3,"Student Loan, Mortgage Loan, and Credit-Builder Loan",,15,8.53,12,Standard,1448.3,31.74556842,31 Years and 3 Months,Yes,76.80771063,23.150405,High_spent_Large_value_payments,440.462801,0,-1.2469,2.7834,-0.012,-0.5409,-0.6914 -0x21379,CUS_0xa3f,August,24,547-70-0531,Architect,38840.66,3442.721667,8,5,30,4,"Mortgage Loan, Student Loan, Auto Loan, and Credit-Builder Loan",53.1737592,27.11414695,3.17,10,Bad,2869.01723,35.60396046,17 Years and 2 Months,Yes,125.9916497,93.99727503,Low_spent_Large_value_payments,394.2832419,0,0.7492,-0.1852,-0.904,-0.3932,-0.5335 -0x21385,CUS_0x6692,August,22,470-06-0305,Developer,21419.85,,3,3,12,2,"Not Specified, and Debt Consolidation Loan",0,1,0.67,3,Good,307.94,22.9302197,27 Years and 11 Months,No,25.34735195,135.3865407,Low_spent_Small_value_payments,280.2648574,0,-1.5317,0.3288,0.7019,1.515,-1.505 -0x21391,CUS_0xa4d0,August,28,#F%$D@*&8,Teacher,33535.89,,4,5,7,1,Not Specified,,3,10.43,1,_,970.22,28.52072801,22 Years and 5 Months,No,18.09362441,,Low_spent_Medium_value_payments,413.7129289,0,-0.7177,-1.4277,0.1356,-0.8308,1.0077 -0x2139d,CUS_0x3d6e,August,19,#F%$D@*&8,Accountant,52591.26,4359.605,6,10,31.88954781,6,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Auto Loan",30.91574975,23.3596883,17.61,9,_,4413.133803,31.1996112,12 Years and 5 Months,Yes,1535.804258,130.4389378,High_spent_Medium_value_payments,325.3872231,0,1.3682,0.4201,-0.2876,0.4978,0.9171 -0x213a9,CUS_0x33f9,August,46,397-14-6010,Musician,8052.79,,8,7,25.06745738,8,"Student Loan, Not Specified, Debt Consolidation Loan, Not Specified, Auto Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",40.22084278,23,20.28,12,_,4161.270954,25.8290712,6 Years and 10 Months,Yes,29.24052455,54.74977174,Low_spent_Small_value_payments,275.3959991,0,1.4906,0.8404,-0.0467,-1.2764,-0.5132 -0x213b5,CUS_0x8a38,August,20,767-52-7945,Engineer,37045.6,,5,7,9,1,Debt Consolidation Loan,0,1,1.18,8,Good,1411.95,31.07055804,21 Years and 6 Months,No,23.98957507,126.1993056,Low_spent_Small_value_payments,421.8244526,0,1.6802,-0.5311,-0.2994,0.0606,-0.3108 -0x213c1,CUS_0xb49d,August,19,375-65-0842,Manager,40848.13,,3,3,2,2,"Debt Consolidation Loan, and Credit-Builder Loan",2.894247461,5,10.54,4,_,931.9,26.783534,19 Years and 3 Months,No,59.76031819,40.61135821,!@9#%8,474.1294069,0,-0.6407,0.4108,0.5146,-0.4892,-0.2626 -0x213cd,CUS_0x1993,August,19,225-64-5116,Teacher,87795.78,7325.315,0,6,7.288361749,0,,10.92936696,11,2.59,2,Good,448.95,33.57777159,29 Years and 11 Months,No,0,542.1990213,High_spent_Medium_value_payments,860.2699397,0,2.7072,0.5105,-1.0662,0.5797,-0.5478 -0x213d9,CUS_0x2a3a,August,26,497-15-6884,_______,15704,,6,8,34.06745738,8,"Not Specified, Payday Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Student Loan, Auto Loan, and Credit-Builder Loan",45.23680672,24.55170297,1.33,6,_,3185.666381,24.31212234,13 Years and 5 Months,Yes,68.9537584,59.51540603,High_spent_Small_value_payments,256.8243175,0,-0.8162,0.3367,0.2931,0.8383,1.4902 -0x213e5,CUS_0x6cb9,August,54,054-55-2967,Scientist,11244.63,578.6241533,3,3,20,4,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",20.75507765,,18.34,4,Standard,94.17,23.72964773,20 Years and 8 Months,Yes,123.0646385,20.43965566,Low_spent_Medium_value_payments,291.6293026,0,0.6003,-0.2674,1.1474,1.3826,-0.4645 -0x213f1,CUS_0xc41,August,20,233-95-6448,Mechanic,38831.83,3328.985833,3,119,9,2,"Debt Consolidation Loan, and Mortgage Loan",2.106508099,1,7.74,4,Good,807.04,30.82068822,16 Years and 6 Months,No,63.9387265,,High_spent_Medium_value_payments,422.7619641,0,1.5551,-0.4883,0.6463,1.9753,-0.3993 -0x213fd,CUS_0x808,August,41,172-62-6839,Engineer,11330.965,1115.247083,3,7,7,1,Credit-Builder Loan,,20,8.01,4,Standard,1061.373055,33.53533528,28 Years and 8 Months,No,5.994046459,91.06948372,Low_spent_Small_value_payments,316.4658141,0,0.4368,-0.5121,1.1222,1.4374,0.2782 -0x21409,CUS_0x9967,August,51,279-53-1053,Musician,52410.5,4650.541667,7,5,2,100,,6.022086735,8,14.59,4,_,1023.044815,29.16524509,16 Years and 3 Months,No,0,318.2126424,High_spent_Small_value_payments,441.4129075,0,0.5214,0.4355,0.4618,-1.3938,-0.6817 -0x21415,CUS_0xa212,August,30,068-21-0328,Manager,20760.75,,5,4,17,7,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",25.0969019,15,7.91,5,Standard,738.06,31.32184155,,NM,115.1074744,166.4799973,Low_spent_Small_value_payments,151.4187783,0,1.0715,0.8597,-0.4305,-0.7646,-0.2559 -0x21421,CUS_0x411a,August,47,123-15-3150,Writer,18444.925,1497.077083,1,3,7,0,,,2.248296873,12.96,4,Good,1377.860806,23.98339625,31 Years and 0 Months,No,0,95.36436945,Low_spent_Small_value_payments,344.3433389,0,0.5474,-0.5981,1.9665,1.414,-1.1476 -0x2142d,CUS_0xc222,August,44,937-98-4347,Architect,57507.24,4859.556312,6,6,9,6,"Auto Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Not Specified",25.85341269,19,13.24,,Standard,1278.15,30.11991607,19 Years and 0 Months,Yes,451.1472085,151.6121722,High_spent_Medium_value_payments,338.581307,0,-1.8348,-0.6095,-0.6583,0.6485,-0.4251 -0x21439,CUS_0x995b,August,46,029-29-4933,_______,85515.94,7246.328333,5,3,11,3,"Payday Loan, Not Specified, and Not Specified",3.141777771,2,11.5,1,Good,141.5837723,36.82367286,24 Years and 4 Months,No,156.0468672,237.9838644,High_spent_Small_value_payments,617.960968,0,-1.0256,1.691,-1.0625,1.4813,-0.0848 -0x21445,CUS_0x6b7f,August,35,715-18-9613,Writer,29823.91,2256.325833,1,1,2,1,Not Specified,,1,9.52,7,Good,1120.660972,26.51191901,,No,18.6047796,11482.19835,High_spent_Medium_value_payments,415.3727836,0,1.9653,-1.1155,-1.2202,-0.3031,0.3092 -0x21451,CUS_0x2c6f,August,39,684-94-8105,Architect,17983.29,,6,7,17,6,"Credit-Builder Loan, Not Specified, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",20.66643855,16,24.71,9,_,3978.66,28.38314457,7 Years and 11 Months,Yes,81.25036554,,Low_spent_Small_value_payments,228.100697,0,0.1403,-1.1709,0.8541,-0.7274,-0.0102 -0x2145d,CUS_0x4e05,August,46,500-31-7991,Manager,60593.8,,3,4,12,2,"Student Loan, and Student Loan",,11,16.69,8,_,798.77,35.73520677,10 Years and 11 Months,Yes,96.7119736,173.1810124,High_spent_Small_value_payments,493.4553473,0,0.3232,0.0276,-0.1019,-1.6796,0.2051 -0x21469,CUS_0x7faf,August,26,035-49-9856,_______,36589.09,2829.090833,8,4,11,0,,,11,11.49,8,Standard,83.53,39.02800879,28 Years and 10 Months,Yes,0,88.06955973,High_spent_Medium_value_payments,444.8395236,0,0.4889,0.5629,-2.0591,0.2473,-0.3041 -0x21475,CUS_0xabb4,August,42,897-62-1625,Lawyer,18037.47,,0,6,9.288361749,4,"Not Specified, Student Loan, Auto Loan, and Auto Loan",3.350360064,5,9.41,3,Good,173.84,23.24642596,30 Years and 2 Months,NM,134.7485227,,Low_spent_Small_value_payments,270.1546818,0,-0.6067,1.7972,-0.4741,0.652,-0.1836 -0x21481,CUS_0xba52,August,39,348-19-7727,Doctor,68471.16,,4,3,10.28836175,2,"Credit-Builder Loan, Student Loan, and Payday Loan",,21.61318479,-3.41,6,Standard,448.088008,40.08326318,32 Years and 10 Months,Yes,157.536268,794.2560265,High_spent_Small_value_payments,324.9381666,0,0.3274,0.6926,1.0201,-0.1276,0.4258 -0x2148d,CUS_0x76c2,August,50,768-36-3850,Musician,59555.68,,3,5,6,2,"Home Equity Loan, and Payday Loan",9.484194578,8,15.81,2,_,1384.55,41.21608178,30 Years and 8 Months,Yes,75.00154721,,High_spent_Medium_value_payments,506.5135698,0,-0.6611,-0.3057,-0.3371,-2.0246,0.2551 -0x21499,CUS_0x400a,August,28,042-99-0678,Media_Manager,112671.27,,2,4,11.28836175,0,,3.366013005,6,7.58,8,Good,1221.91,42.23441472,27 Years and 9 Months,No,16050,621.1105341,High_spent_Large_value_payments,984.2541769,0,0.0202,-0.1795,1.3594,0.7006,-0.3885 -0x214a5,CUS_0x2916,August,43,794-99-9113,Mechanic,99100.29,8025.3575,3,3,8,1,Student Loan,16.21932144,10,8.19,5,Standard,696.74,34.28575155,32 Years and 11 Months,Yes,50.08104501,136.165473,High_spent_Large_value_payments,856.289232,0,-1.8805,-0.715,0.9936,-1.1638,-1.0811 -0x214b1,CUS_0xa219,August,38,814-08-0159,Engineer,14698.595,1505.882917,8,3,8,7,"Payday Loan, Home Equity Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",10.9462135,9,18.14,6,_,469.46,25.65164564,12 Years and 5 Months,Yes,84.87318656,,Low_spent_Small_value_payments,258.3408389,0,-0.1784,1.7482,-0.3904,-1.1453,0.6189 -0x214bd,CUS_0x929d,August,42,728-75-7830,Entrepreneur,43426.9,3497.908333,1,6,1.288361749,4,"Payday Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",13.22597045,,8.35,6,_,0.95,31.92457797,32 Years and 3 Months,No,98.63146393,,High_spent_Medium_value_payments,435.0094296,0,0.7718,-2.4532,0.6361,1.4823,1.0436 -0x214c9,CUS_0x792d,August,41,257-23-8497,Architect,147583.4,12224.61667,6,7,8.288361749,0,,,18,17.22,10,Standard,194.4,40.15964961,24 Years and 4 Months,Yes,0,532.993815,High_spent_Large_value_payments,1349.405313,0,0.3407,-0.4187,1.3744,0.2473,-1.36 -0x214d5,CUS_0x9906,August,43,885-30-7122,Entrepreneur,38367.08,3199.256667,5,3,14,7,"Not Specified, Auto Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",23.62130509,17,18.88,9,_,1336.02,28.71451591,16 Years and 11 Months,Yes,43102,48.17798025,High_spent_Large_value_payments,302.078531,0,-0.1421,-0.7824,-0.7963,-0.7668,-0.0318 -0x214e1,CUS_0x2e0e,August,53,215-57-4977,Mechanic,61085.5,4842.458333,8,5,7.288361749,2,"Not Specified, Home Equity Loan, and Payday Loan",15.58530204,,11.95,4,Good,259.5401841,35.96893639,23 Years and 11 Months,No,98.8079265,467.2391407,High_spent_Large_value_payments,585.0301483,0,1.3979,-0.3446,-0.8765,-0.4779,0.951 -0x214ed,CUS_0xa1ab,August,35,399-75-1500,Lawyer,40561.2,3616.1,9,6,29.06745738,8,"Auto Loan, Student Loan, Mortgage Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,20,16.76,17,Bad,3381.860954,35.98162841,11 Years and 4 Months,NM,189.3974599,,High_spent_Medium_value_payments,254.1220671,0,-0.6794,0.7117,0.7473,-0.08,0.2585 -0x214f9,CUS_0x448a,August,38,#F%$D@*&8,Lawyer,1241683,8399.233333,7,5,13,4,"Personal Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",9.767128703,9,18.45,3,Standard,1050.52,40.39782646,23 Years and 5 Months,Yes,209.7738217,447.2995359,Low_spent_Small_value_payments,472.8499758,0,-1.6427,-0.69,0.6289,-0.1627,-0.4691 -0x21505,CUS_0x3b66,August,23,551-02-1303,Musician,80511.84,,4,7,1.288361749,0,,,20,11.11,5,_,958.7348025,26.51234062,20 Years and 4 Months,No,0,582.4392037,!@9#%8,749.4936345,0,-0.0281,0.5807,0.6931,1.6127,1.1525 -0x21511,CUS_0x9979,August,45,920-04-2870,Scientist,33071.56,,239,4,17,6,"Personal Loan, Not Specified, Not Specified, Personal Loan, Debt Consolidation Loan, and Student Loan",13.30348316,13,18.88,8,Standard,1021.88,40.52432236,13 Years and 3 Months,Yes,161.3407042,287.2151705,Low_spent_Small_value_payments,132.5404586,0,-0.1752,1.1757,0.9086,-0.8898,1.1191 -0x2151d,CUS_0x924e,August,41,153-33-1546,Developer,134270.12,11318.17667,8,7,10.28836175,2,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",22.85529936,19,18.68,8,Standard,503.23,35.78258158,13 Years and 2 Months,Yes,282.5548889,1186.410426,High_spent_Small_value_payments,342.7898124,0,-0.7513,-1.3864,-0.6091,-0.639,0.3042 -0x21529,CUS_0x9903,August,20,015-52-4404,Manager,109981.6,9239.133333,4,4,11,4,"Auto Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",,19,5.67,4,Standard,873.07,25.4659881,26 Years and 5 Months,No,351.9905141,,Low_spent_Small_value_payments,,0,1.6951,-0.8151,-0.4005,1.0959,0.1184 -0x21535,CUS_0x9e8c,August,22,715-55-8872,Teacher,32089.33,,4,6,2,4,"Personal Loan, Home Equity Loan, Home Equity Loan, and Not Specified",28.68828432,24.58593739,-4.67,0,_,496.6288422,27.51047779,25 Years and 6 Months,No,71.30685119,190.2163124,High_spent_Small_value_payments,286.6879198,0,1.5532,-0.2334,0.3191,1.2918,0.7814 -0x21541,CUS_0x537e,August,43,001-50-2460,Musician,68088.15,5842.0125,7,7,10,1,Personal Loan,24.40665311,21,4.25,2,Standard,1429.03,30.93612708,21 Years and 10 Months,No,42.39376922,472.2829177,Low_spent_Large_value_payments,339.524563,0,-0.1994,-1.5712,-1.4717,0.4099,0.6986 -0x2154d,CUS_0x5e0e,August,37,206-60-5869,Teacher,107304.42,8936.035,1,4,6.288361749,0,,4.462346276,8,1.45,4,_,1050.854287,35.13861583,19 Years and 2 Months,NM,0,,Low_spent_Medium_value_payments,696.1296093,0,0.895,-0.1353,0.6002,0.7837,-0.6241 -0x21559,CUS_0xbcfe,August,52,660-58-6561,Lawyer,41911.84,3321.653333,3,5,12.28836175,0,Credit-Builder Loan,16.32625887,14,-0.36,4,Standard,332.23,23.18916752,18 Years and 10 Months,No,29.34884565,494.0446334,High_spent_Medium_value_payments,478.7093152,0,-0.5459,0.2458,0.7486,0.1393,0.5084 -0x21565,CUS_0x87be,August,46,268-75-5454,Doctor,75868.8,,6,10,32.88954781,7,"Not Specified, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",26.14762678,,3.6,6,Bad,1610.00245,34.3448505,14 Years and 11 Months,Yes,1621.03089,193.2376979,Low_spent_Large_value_payments,368.8413309,0,0.0704,-0.1392,0.9145,0.0786,-1.4037 -0x21571,CUS_0x4e94,August,47,936-14-9340,Engineer,38533.76,3412.146667,4,3,1,0,,12.29528876,9,-0.81,8,Good,431.41,23.39641274,30 Years and 6 Months,No,0,86.35000018,High_spent_Large_value_payments,494.8646665,0,-1.3902,0.822,-1.8725,0.7449,0.7314 -0x2157d,CUS_0xbaea,August,40,611-50-5098,Engineer,148387.92,12327.66,1,3,5,100,"Debt Consolidation Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",0,2,2.98,8,Good,8.07,32.39980709,25 Years and 6 Months,NM,470.228918,471.7530067,High_spent_Medium_value_payments,540.7840753,0,0.9712,-0.1249,-1.8123,-0.3227,-0.8986 -0x21589,CUS_0x3d22,August,38,142-92-6578,Engineer,17889.32,,9,6,19,7,"Not Specified, Auto Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",26.91565327,17.260714,4.22,10,Bad,4079.36162,40.14476615,9 Years and 5 Months,Yes,100.7346565,67.63406661,High_spent_Small_value_payments,242.1089435,0,1.4138,-0.2746,-0.6921,0.7117,-0.5572 -0x21595,CUS_0x65df,August,18,276-55-3567,Scientist,56570.22,4156.588619,4,7,16,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",17.73055951,,7.24,8,Standard,806.5,29.12685122,15 Years and 11 Months,Yes,403.8211061,472.3051729,Low_spent_Small_value_payments,167.8886024,0,-1.279,0.0146,0.1577,1.881,1.7351 -0x215a1,CUS_0x857f,August,34,589-60-7084,Developer,31019.6,2427.966667,6,1267,7,4,"Personal Loan, Auto Loan, Auto Loan, and Personal Loan",,20,13.74,6,Standard,727.64,36.08370319,6 Years and 10 Months,Yes,72.48842264,,Low_spent_Medium_value_payments,311.7497784,0,1.1378,0.5445,0.8497,-0.2793,-1.6103 -0x215ad,CUS_0x412a,August,47,985-27-4444,Accountant,63433.7,5253.141667,1,4,4.288361749,2,"Auto Loan, and Payday Loan",8.325903847,10,5.82,2,Good,347.01,38.45025459,16 Years and 8 Months,No,61.3519375,584.7517274,High_spent_Medium_value_payments,549.1479628,0,-1.4897,-0.7017,-0.1497,1.5115,-1.2685 -0x215b9,CUS_0x562a,August,25,837-50-1650,Doctor,139391.8,11526.98333,5,4,9,3,"Not Specified, Credit-Builder Loan, and Home Equity Loan",,5.627316621,4.05,2,Good,666.5530301,40.84380505,33 Years and 4 Months,No,175.7450802,405.6733324,Low_spent_Medium_value_payments,851.2799207,0,0.2633,-2.0158,-1.8841,-0.6507,0.6904 -0x215c5,CUS_0x14ce,August,44,318-82-4117,Musician,17776.2,1727.35,955,6,35.06745738,5,"Student Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Payday Loan",24.5146645,12,16.99,14,Standard,2444.540954,27.05255256,18 Years and 11 Months,Yes,57.27595932,10000,Low_spent_Small_value_payments,320.0835786,0,0.4348,-0.9777,1.9498,0.3642,-0.4881 -0x215d1,CUS_0x7dfc,August,30,720-13-2807,Developer,68790.22,5872.518333,3,5,6,3,"Debt Consolidation Loan, Mortgage Loan, and Auto Loan",11.60201481,12,8.38,3,Good,359.0103732,33.47356565,,No,163.4102565,158.1098169,High_spent_Medium_value_payments,534.5614169,0,0.5963,-1.4482,-0.9735,-0.419,0.9426 -0x215dd,CUS_0x406d,August,44,370-97-3042,Developer,45432.51,,10,8,21.88954781,6,"Home Equity Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",,26.88090669,3.35,14,Bad,2331.024414,33.54090122,12 Years and 9 Months,Yes,49644.48344,,Low_spent_Large_value_payments,217.276948,0,1.7308,0.5385,0.7433,-1.1923,-0.7674 -0x215e9,CUS_0x4f43,August,34,282-99-1365,Doctor,7908,,8,10,18.06745738,7,"Personal Loan, Not Specified, Mortgage Loan, Student Loan, Student Loan, Mortgage Loan, and Personal Loan",31.1318782,16.68823017,17.4,13,_,4415.618833,36.59028838,,Yes,30.30645981,,Low_spent_Small_value_payments,240.4215814,0,0.7565,0.2667,0.638,0.1145,1.5128 -0x215f5,CUS_0x7874,August,27,942-35-0590,Accountant,9716.27,743.6891667,9,10,34.06745738,3,"Mortgage Loan, Student Loan, and Debt Consolidation Loan",21.37946158,10.36504395,9.55,14,Standard,2723.131707,28.49531971,12 Years and 11 Months,Yes,24.04132758,27.33684095,Low_spent_Small_value_payments,286.2704602,0,-0.2675,-0.0096,-1.1016,-0.8403,0.7739 -0x21601,CUS_0x1063,August,20,883-38-8680,Architect,128698.76,10628.89667,7,5,10,4,"Personal Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",15.40255463,,10.67,12,_,583.11,28.44037043,16 Years and 11 Months,Yes,251.6127821,136.3149548,High_spent_Large_value_payments,914.9619298,0,0.3937,0.6277,-2.1424,0.3787,-0.6369 -0x2160d,CUS_0x632e,August,53,608-49-5090,Architect,21733.845,1320.70801,4,2,5.288361749,2,"Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0.986786297,5,8.69,6,Good,42.70167284,27.3728891,23 Years and 8 Months,No,256.6138717,,Low_spent_Small_value_payments,339.8741776,0,-1.2502,-1.7914,0.2077,0.6267,0.2227 -0x21619,CUS_0x308d,August,46,754-40-2219,Lawyer,116794.11,9483.8425,3,6,11.28836175,0,,,11,3.5,7,Good,226.98,35.54915941,19 Years and 10 Months,No,0,1088.531573,Low_spent_Medium_value_payments,559.7901385,0,0.9077,-0.1395,-1.5466,0.3881,0.7074 -0x21625,CUS_0x2eed,August,38,578-81-4278,Manager,122760.66,10422.055,0,4,4,3,"Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,12.34799221,11.66,3,Good,781.922734,42.00715299,17 Years and 10 Months,No,243.7745527,,High_spent_Large_value_payments,915.0375305,0,-0.6939,-1.2307,0.3342,0.9786,0.8468 -0x21631,CUS_0x270e,August,22,223-18-9322,Journalist,15165.14,,10,7,26.06745738,9,"Home Equity Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Not Specified, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",36.42018411,17.37271693,23.91,7,Bad,3564.081114,27.63345887,1 Years and 5 Months,Yes,67.76528288,189.7470241,Low_spent_Small_value_payments,156.3435717,0,0.3246,0.3373,0.2506,0.1173,1.066 -0x2163d,CUS_0x6f81,August,18,075-05-3919,Doctor,17452.155,,3,3,1680,100,"Home Equity Loan, Personal Loan, Mortgage Loan, and Student Loan",30.51254587,20,9.73,10,Standard,420.61,35.4931277,5 Years and 9 Months,Yes,40.98482156,80.40857436,Low_spent_Medium_value_payments,289.3412291,0,0.9742,0.5017,-1.5682,0.4959,-0.6585 -0x21649,CUS_0x1efd,August,18,966-55-9007,Teacher,17933.84,1393.486667,9,6,17,100,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Student Loan",34.66357238,18,15.02,9,Standard,1660.5,33.97214038,13 Years and 4 Months,NM,48.00605102,30.95045385,High_spent_Medium_value_payments,310.3921618,0,0.6818,-2.2746,-0.2545,-0.7115,-1.4442 -0x21655,CUS_0x3bba,August,40,625-83-8662,Musician,75655.48,6016.623333,1,3,11,3,"Auto Loan, Not Specified, and Not Specified",,11.65523293,11,1,_,1349.900448,38.00645604,32 Years and 10 Months,No,111.0230267,326.0448452,Low_spent_Medium_value_payments,444.5944614,0,-0.8875,-1.4327,0.9057,-0.9113,-0.0086 -0x21661,CUS_0xbc1f,August,44,902-27-0943,Musician,69083.08,5451.379028,6,4,19,1,Home Equity Loan,19.49747915,,8.7,2,Standard,411.0365656,41.48415623,21 Years and 4 Months,NM,457.0265846,143.6590903,High_spent_Large_value_payments,673.1403416,0,-0.2706,1.1143,0.8502,-0.6342,1.7935 -0x2166d,CUS_0xc5ae,August,22,945-49-0362,Developer,100666.59,8203.8825,4,1101,15.17790956,652,"Credit-Builder Loan, Auto Loan, Student Loan, and Payday Loan",16.27185685,14,14.61,4,_,1138.472165,23.07221189,19 Years and 4 Months,Yes,1521.275472,1345.679562,Low_spent_Medium_value_payments,54.45504252,0,-0.0662,-0.8045,2.0314,-0.0455,-1.928 -0x21679,CUS_0x30ab,August,41,#F%$D@*&8,Media_Manager,42079.65,,4,7,6,2,"Credit-Builder Loan, and Student Loan",,14,18.34,5,Standard,1460.57,31.90828429,18 Years and 5 Months,Yes,53.36083741,82.49240641,High_spent_Medium_value_payments,470.3105062,0,-1.7577,1.7108,1.6198,0.8761,0.3046 -0x21685,CUS_0x3608,August,46,070-52-8558,Teacher,17737.6,,4,7,8,0,,0,1,6.2,7,Good,1420.93,26.61232063,26 Years and 5 Months,No,0,32.8717012,High_spent_Medium_value_payments,343.1416321,0,0.22,-0.7934,1.3859,-1.315,-0.3799 -0x21691,CUS_0x3eb6,August,18,#F%$D@*&8,Accountant,120015.52,10208.29333,7,7,14,2,"Auto Loan, and Mortgage Loan",16.94461898,13,11.88,10,Standard,1236.14,26.92424895,21 Years and 10 Months,NM,155.5010233,132.5937658,High_spent_Large_value_payments,972.7345442,0,0.3,0.0672,-2.0673,-1.3226,-1.0705 -0x2169d,CUS_0xae17,August,39,555-86-2423,Manager,42619.92,3630.66,5,3,20,1,Mortgage Loan,25.96210502,21,3.03,2,Standard,124.55,31.28965914,,Yes,30.69875565,72.02560726,High_spent_Medium_value_payments,510.3416371,0,-0.2023,-1.8286,0.8841,1.4947,1.4004 -0x216a9,CUS_0x2ded,August,53,985-21-8683,Engineer,160591.24,,3,5,11.28836175,4,"Personal Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",0,2,2.33,3,Good,65.66247076,25.23673125,33 Years and 4 Months,No,78278,2486.84834,!@9#%8,,0,0.9897,1.5211,-2.1253,-0.5841,-0.4081 -0x216b5,CUS_0x28c4,August,31,798-58-3894,Media_Manager,14066.03,1358.169167,8,9,18.88954781,7,"Personal Loan, Auto Loan, Not Specified, Personal Loan, Student Loan, Student Loan, and Personal Loan",37.38735825,19,16.42,12,Bad,4965.47,30.73687948,9 Years and 0 Months,Yes,1381.711841,,Low_spent_Small_value_payments,228.6398466,0,2.3492,0.2713,0.0525,-1.0815,-1.8845 -0x216c1,CUS_0xafc3,August,24,270-73-7020,Developer,14901.88,,7,7,13,1,Personal Loan,19.49212036,17,10.38,3,Standard,932.33,38.73478074,19 Years and 9 Months,No,7.293280162,60.49436476,Low_spent_Small_value_payments,358.4946884,0,-1.0188,-0.1677,-0.3071,1.1233,-0.5629 -0x216cd,CUS_0x5510,August,46,996-65-7108,Developer,20921.76,,4,7,11,2,"Not Specified, and Home Equity Loan",,20,12.62,7,Standard,453.11,30.27120364,24 Years and 0 Months,Yes,33.09944815,,!@9#%8,271.1695121,0,-1.1374,0.1103,0.0492,-0.6147,-0.344 -0x216d9,CUS_0xc31a,August,54,221-54-2409,Musician,74288.46,6284.705,7,7,1655,0,,22.21384688,19,2.31,7,Standard,1277.729894,34.97835859,31 Years and 2 Months,Yes,0,,High_spent_Large_value_payments,750.4260459,0,0.0039,-0.1649,1.1778,-0.8982,0.6978 -0x216e5,CUS_0xacf,August,27,458-25-2966,Writer,152104.68,11526.08679,2,3,11,1,Credit-Builder Loan,1.462974126,3,0.76,7,_,324.7738996,40.43082028,23 Years and 11 Months,No,1192.006303,183.4620811,High_spent_Large_value_payments,1223.267496,0,0.0301,-1.6363,0.2568,0.4561,0.4154 -0x216f1,CUS_0xa8c0,August,44,805-85-0973,Doctor,60148.65,,7,7,19,6,"Personal Loan, Student Loan, Not Specified, Payday Loan, Home Equity Loan, and Payday Loan",13.42048344,14,18.52,8,Standard,903.86,34.62929214,19 Years and 10 Months,Yes,216.3672734,254.7078519,Low_spent_Small_value_payments,315.9636247,0,-0.2221,1.1751,-0.0533,-0.1218,0.8973 -0x216fd,CUS_0x4c29,August,48,621-62-2926,Writer,30403.95,2545.6625,8,7,16,0,,,15,9.02,6,_,1306.93,29.68738378,25 Years and 0 Months,NM,0,,Low_spent_Small_value_payments,247.2232132,0,-0.0055,-0.9973,0.6197,0.0951,-1.4105 -0x21709,CUS_0xa4a9,August,22,#F%$D@*&8,Journalist,14137.39,,7,5,31.06745738,7,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",30.52440473,20.18140158,18.51,8,_,5519.792876,23.41333186,7 Years and 0 Months,Yes,68.15685723,96.54484246,Low_spent_Small_value_payments,207.6895957,0,1.7605,-0.2638,0.8243,1.3498,1.1166 -0x21715,CUS_0x6c83,August,33,710-75-5170,Media_Manager,31938.39,,4,7,19,2,"Auto Loan, and Auto Loan",,8,4.73,2,Standard,1351.51,28.8286911,,No,389.3598805,100.0655149,High_spent_Small_value_payments,365.2145383,0,0.1465,-1.4127,0.0216,1.2947,1.1216 -0x21721,CUS_0x5704,August,42,283-47-5415,Scientist,69212,5536.666667,4,7,2330,4,"Home Equity Loan, Payday Loan, Not Specified, and Home Equity Loan",18.73465928,17,4.83,3,Standard,1094.93,26.49468178,18 Years and 10 Months,No,152.1934977,212.9165263,High_spent_Medium_value_payments,438.5566426,0,0.4011,-0.4917,-1.3036,0.7389,-0.1468 -0x2172d,CUS_0x6aa1,August,41,077-42-6964,Doctor,79760.4,,5,6,9,2,"Debt Consolidation Loan, and Not Specified",,20.59587625,12.29,9,Standard,2634.877008,33.80595752,19 Years and 6 Months,Yes,115.1934055,126.5954214,High_spent_Medium_value_payments,700.9811732,0,0.4764,0.4501,-1.7572,-1.2945,-1.1533 -0x21739,CUS_0x50c9,August,42,279-90-9237,Scientist,60396.26,,6,3,3,2,"Home Equity Loan, and Debt Consolidation Loan",,19,0.81,3,Good,565.5537808,40.9337389,18 Years and 11 Months,No,81.37961603,247.8238729,Low_spent_Large_value_payments,446.7072003,0,0.8067,-1.1548,0.98,0.1979,0.4729 -0x21745,CUS_0x1bde,August,36,027-51-8010,Manager,170730.6,,4,7,3,0,,5.126525132,4,4.54,4,Good,327.43,28.62152204,,No,0,766.3857646,Low_spent_Large_value_payments,938.9692354,0,0.771,-0.3604,-1.6246,0.2246,-1.1982 -0x21751,CUS_0x4662,August,25,824-09-8654,_______,112282.4,9102.866667,4,219,16,0,,17.91858452,14,9.63,3,Standard,1033.890832,39.45000688,28 Years and 3 Months,NM,0,619.14299,Low_spent_Medium_value_payments,630.2525221,0,-0.2361,0.3691,-0.466,0.239,-0.7488 -0x2175d,CUS_0x20b2,August,33,#F%$D@*&8,Accountant,124190.8,,8,3,16.28836175,4,"Auto Loan, Personal Loan, Home Equity Loan, and Not Specified",5.649983854,8,3.7,0,Standard,834.52,34.9656062,19 Years and 0 Months,Yes,408.6529141,635.8188069,High_spent_Large_value_payments,679.4890734,0,-0.1357,0.9628,-1.0565,-0.4365,-0.3796 -0x21769,CUS_0xa9d9,August,25,095-27-6753,Entrepreneur,40857.12,,10,7,33,6,"Home Equity Loan, Student Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",42.22432454,30.31188936,12.53,6,Bad,1788.943991,25.2162062,10 Years and 10 Months,Yes,106.1506966,321.323665,Low_spent_Medium_value_payments,197.2016383,0,0.5965,-1.708,-1.4038,0.5754,-1.5333 -0x21775,CUS_0x5da7,August,21,947-73-8082,Architect,40363.74,3147.645,7,5,5,4,"Personal Loan, Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",17.79082708,16,1.14,3,_,1141.15,40.19433332,20 Years and 6 Months,No,111.5819159,26.68778842,!@9#%8,416.4947957,0,-0.5446,1.4665,0.4456,-1.3283,-0.1562 -0x21781,CUS_0xa648,August,21,313-83-6853,Teacher,18063.71,,4,3,15,5,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",,21,9.89,9,Standard,1095.268385,31.81108592,18 Years and 2 Months,Yes,43.34317731,70.51894486,Low_spent_Small_value_payments,324.6567845,0,-2.7847,0.6094,-0.076,-1.2104,-0.9433 -0x2178d,CUS_0x9bda,August,31,957-88-8642,Entrepreneur,15628.59,,1,5,11,2,"Not Specified, and Debt Consolidation Loan",,6,4.38,4,_,883.38,22.96556481,22 Years and 3 Months,No,21.27102853,89.92505178,Low_spent_Small_value_payments,300.1421697,0,-0.684,-1.3066,-0.1339,0.5384,-0.3373 -0x21799,CUS_0x1dad,August,22,021-69-2391,Architect,17807.935,,6,5,8,3,"Student Loan, Home Equity Loan, and Personal Loan",20.57725537,16,7.02,1,Standard,378.11,26.90238662,16 Years and 10 Months,No,31.32606172,171.1250078,Low_spent_Small_value_payments,242.1483889,0,-0.4399,0.6721,0.3213,-0.3074,-1.2667 -0x217a5,CUS_0x489d,August,28,145-04-2105,_______,22116.855,2104.07125,3,8,9.288361749,4,"Mortgage Loan, Personal Loan, Not Specified, and Payday Loan",14.57601715,,,1,Good,90.16381378,25.02833153,25 Years and 3 Months,NM,57.8142605,,High_spent_Medium_value_payments,369.5831558,0,0.6974,-0.7974,0.9906,-1.0401,0.1643 -0x217b1,CUS_0x23d8,August,35,008-94-6001,Entrepreneur,16245.125,,3,5,6,0,,0,2,3.79,7,Good,690.268811,37.70254307,28 Years and 8 Months,No,0,101.5015542,Low_spent_Small_value_payments,306.0644602,0,0.9961,-0.3665,1.284,1.1821,0.5904 -0x217bd,CUS_0x9a14,August,35,461-14-8465,Developer,35325.29,2764.774167,5,3,10,3,"Home Equity Loan, Student Loan, and Credit-Builder Loan",20.3423354,15.69920251,1.63,6,Standard,1159.29088,36.97070646,30 Years and 9 Months,No,66.84292038,122.4592456,Low_spent_Large_value_payments,357.1752507,0,-0.7531,0.8608,-1.5759,1.0081,1.1496 -0x217c9,CUS_0xb7be,August,18,634-21-6305,Teacher,81908.34,6902.695,3,5,13,5,"Personal Loan, Mortgage Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",90,1879,12.29,7,_,1069.99,24.92885118,6 Years and 8 Months,NM,266.6734271,78.98160663,High_spent_Medium_value_payments,594.6144663,0,0.3277,-0.2472,-0.0671,-1.0944,-0.2929 -0x217d5,CUS_0x1666,August,50,834-78-2099,Engineer,9603.845,510.3204167,4,3,14,1,Auto Loan,,12,0.3,9,Standard,1451.72,23.21563866,33 Years and 5 Months,Yes,5.262291048,36.97395846,Low_spent_Small_value_payments,298.7957922,0,0.4771,2.1732,-0.4913,-0.7967,0.7231 -0x217e1,CUS_0x368f,August,18,586-18-1041,Mechanic,10302.89,,8,5,17.06745738,8,"Auto Loan, Auto Loan, Personal Loan, Auto Loan, Student Loan, Not Specified, Auto Loan, and Not Specified",,21,23.6,17,Bad,3296.340954,41.91885116,11 Years and 11 Months,Yes,65.55971086,48.05235461,!@9#%8,264.3250632,0,0.4396,-0.359,0.3334,0.7183,1.0991 -0x217ed,CUS_0x9593,August,18,449-11-5861,Manager,35916.15,3195.0125,7,6,11,2,"Home Equity Loan, and Student Loan",16.4752964,12,17.59,12,Standard,1426.14,35.03952154,,Yes,49.89813367,87.68369738,High_spent_Medium_value_payments,431.919419,0,-0.2879,-0.3614,0.457,-1.0408,0.2383 -0x217f9,CUS_0xb322,August,39,301-09-1879,Accountant,22144.945,1752.412083,3,2,7,4,"Payday Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",,2,6.65,4,_,586.19,35.55993345,22 Years and 9 Months,No,42.56764123,,Low_spent_Small_value_payments,281.1591173,0,0.3214,0.544,0.3322,0.7283,0.27 -0x21805,CUS_0x4bef,August,21,783-63-1238,Journalist,38505.32,,7,4,10,4,"Debt Consolidation Loan, Student Loan, Mortgage Loan, and Credit-Builder Loan",21.55774521,17.37247631,17.09,5,Standard,2390.379501,23.33484883,10 Years and 6 Months,NM,214.6586972,130.9742264,Low_spent_Large_value_payments,374.5738893,0,2.0211,0.6295,-1.1245,-0.5746,0.6575 -0x21811,CUS_0xa120,August,38,103-17-3783,Doctor,81096.44,6604.036667,8,1226,15,5,"Not Specified, Debt Consolidation Loan, Payday Loan, Not Specified, and Payday Loan",13.13544834,14,14.05,9,Standard,1056.01,27.2068049,11 Years and 9 Months,NM,207.8570678,10000,High_spent_Medium_value_payments,452.5333286,0,1.6652,0.3506,-0.7413,0.4198,0.7086 -0x2181d,CUS_0x52dd,August,25,406-74-7448,Musician,22181.4,2010.45,3,3,4,3,"Credit-Builder Loan, Student Loan, and Not Specified",9.417611493,8,11.61,3,Good,1479.62,37.65151478,31 Years and 6 Months,No,42.81266615,204.2132933,!@9#%8,244.0190406,0,1.7666,-0.3253,-1.0542,-1.5459,1.8077 -0x21829,CUS_0x1ecf,August,80,512-45-2310,Doctor,19922.11,,7,6,27,9,"Mortgage Loan, Student Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Not Specified, Student Loan, Auto Loan, and Credit-Builder Loan",,20,23.54,7,_,4671.11,30.81009269,2 Years and 2 Months,Yes,111.9099294,,Low_spent_Large_value_payments,181.6753595,0,-0.621,-1.0961,-0.4158,0.8856,1.123 -0x21835,CUS_0x1aa0,August,26,079-45-2582,_______,62848.83,5006.4025,7,6,10,0,,,16,17.7,1127,Standard,1242.93,29.66259249,16 Years and 6 Months,Yes,0,152.6633449,High_spent_Small_value_payments,607.9769051,0,-0.3569,-0.0706,-2.6198,-0.0841,0.4035 -0x21841,CUS_0x1f2f,August,30,926-54-3940,Teacher,24821.36,,5,5,6.288361749,0,,23.6942438,20,,6,Standard,298.88,23.13397045,,No,0,617.6145886,Low_spent_Small_value_payments,302.9675391,0,0.8209,-0.6998,-1.2861,-1.396,0.7314 -0x2184d,CUS_0x7c51,August,27,994-42-0564,Teacher,28824.58,,0,3,5,4,"Payday Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",16.41445992,,8.89,0,Good,944.3349194,36.98517673,23 Years and 9 Months,NM,152.5571661,128.0904116,High_spent_Small_value_payments,345.0013653,0,0.0206,-0.4019,0.4297,-1.994,0.6496 -0x21859,CUS_0x4a23,August,36,335-47-9894,Accountant,19029.31,,4,4,13,2,"Student Loan, and Auto Loan",28.66351505,23,17.36,7,Standard,544.97,33.73467717,7 Years and 5 Months,Yes,36418,68.27125502,Low_spent_Small_value_payments,328.3477459,0,1.1895,-0.6586,1.0044,-0.2098,1.6013 -0x21865,CUS_0x4f0d,August,31,462-09-7916,Manager,30616.07,,1,2,3,0,,0,2,9.61,3,Good,1118.291183,39.15785429,29 Years and 2 Months,No,0,132.8607766,Low_spent_Medium_value_payments,445.3719121,0,-1.8822,-0.9824,-1.0315,-0.2052,-0.1167 -0x21871,CUS_0x32d2,August,80,851-07-8207,Manager,86992.68,,6,6,15,3,"Student Loan, Payday Loan, and Mortgage Loan",,20,15.83,4,_,982.81,35.62706356,25 Years and 0 Months,Yes,143.6716075,444.7687797,Low_spent_Medium_value_payments,413.0986128,0,0.4345,-1.1121,1.3895,2.0715,-1.3269 -0x2187d,CUS_0x575a,August,44,#F%$D@*&8,Writer,34774.65,2925.8875,6,492,17,5,"Auto Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, and Personal Loan",15.1462539,13,15.02,4,_,887.48,27.14381067,15 Years and 8 Months,Yes,78.40872555,79.68099088,High_spent_Medium_value_payments,384.4990336,0,0.447,0.2854,0.5482,0.7646,1.4218 -0x21889,CUS_0x4aa7,August,44,743-52-7188,Scientist,17147.215,,2,3,3.288361749,0,,0,1,9.99,4,Good,5.323258818,33.81023013,20 Years and 5 Months,No,0,11467.08588,Low_spent_Large_value_payments,290.3763487,0,-0.8775,-0.3067,-0.3539,0.0662,0.0366 -0x21895,CUS_0x3af9,August,25,433-89-9955,Writer,31655.9,2298.212567,2,4,4,2,"Student Loan, and Student Loan",,3,3.99,0,Good,1183.137049,37.35132545,16 Years and 2 Months,No,250.4689723,85.4438395,High_spent_Medium_value_payments,393.8016209,0,0.7166,-0.1089,1.2181,-0.571,1.9586 -0x218a1,CUS_0x7284,August,44,411-70-7311,Accountant,16242.68,1539.556667,10,10,28,2,"Mortgage Loan, and Not Specified",39.93639884,16.79411327,9.52,12,Standard,1519.679315,34.3208354,6 Years and 8 Months,Yes,24.68268466,62.92813677,High_spent_Small_value_payments,326.3448452,0,-1.2581,0.164,0.4494,-0.4312,-0.3185 -0x218ad,CUS_0x691e,August,58,521-46-3587,Media_Manager,111346.92,8251.844775,2,4,7.288361749,0,Not Specified,,2,8.48,2,Good,919.5417825,41.04623028,30 Years and 8 Months,NM,35222,502.3406665,High_spent_Large_value_payments,1020.180509,0,1.6981,0.7591,0.0795,1.7719,1.3241 -0x218b9,CUS_0x14f1,August,30,#F%$D@*&8,Engineer,40701.88,3309.823333,8,9,26,3,"Not Specified, Home Equity Loan, and Home Equity Loan",29.67796826,18.7721334,10.86,13,Standard,2346.40036,32.78586749,6 Years and 6 Months,Yes,72.23857851,115.7563198,High_spent_Small_value_payments,402.987435,0,-0.1648,-0.0416,0.1814,0.9266,0.2792 -0x218c5,CUS_0xab83,August,35,876-95-6250,Media_Manager,15333.865,1057.822083,6,3,7,2,"Not Specified, and Payday Loan",26.57239588,19,16.55,2,Standard,630.24,32.96514916,28 Years and 10 Months,Yes,14.56655931,37.60788756,Low_spent_Small_value_payments,343.6077615,0,0.0112,1.8481,-0.7791,0.4696,-0.1615 -0x218d1,CUS_0x5b90,August,42,341-11-8430,Architect,98992.92,,5,7,12.28836175,2,"Not Specified, Not Specified, and Debt Consolidation Loan",,12,9.72,4,_,441.72,31.58235159,19 Years and 6 Months,Yes,240.811904,531.084553,High_spent_Medium_value_payments,718.782004,0,-0.9308,-0.2044,-0.39,1.2084,0.5938 -0x218dd,CUS_0xa66a,August,35,797-13-4387,_______,42951.62,3580.301667,0,3,5,4,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",5.464944918,7,11.7,4,_,987.6716146,33.97686122,,No,80.51438344,99.42757335,High_spent_Medium_value_payments,438.8945012,0,1.4823,-0.6444,-2.3112,0.3497,-2.0949 -0x218e9,CUS_0xb89f,August,38,#F%$D@*&8,Accountant,12768.94,1079.078333,8,5,15,1,Student Loan,,8,10.37,4,Standard,429.2742461,39.57916731,33 Years and 5 Months,Yes,5.351086151,,Low_spent_Medium_value_payments,298.6600223,0,1.0715,0.7768,-0.9087,0.3103,-0.5514 -0x218f5,CUS_0xbb30,August,20,716-63-9191,Writer,71535.38,5886.281667,4,7,14,2,"Personal Loan, and Payday Loan",22.28488103,18,5.26,5,Standard,1349.87,25.66598974,23 Years and 9 Months,Yes,118.7256737,608.2007629,Low_spent_Small_value_payments,151.7017301,0,0.0228,0.2176,0.2488,0.5158,-1.3106 -0x21901,CUS_0xacec,August,18,661-67-1317,Writer,73436.07,6191.6725,8,5,12,1,Payday Loan,,6,9.51,2,Standard,45.5,36.20190355,24 Years and 6 Months,Yes,45.19759108,243.3088893,High_spent_Medium_value_payments,580.6607697,0,-1.2099,2.945,0.2232,0.5888,-0.221 -0x2190d,CUS_0x2fd5,August,41,059-18-4896,Writer,10078.315,1047.859583,8,3,1,3,"Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",22.55573193,17,1.17,6,_,642.57,22.47925213,19 Years and 10 Months,No,20.94488075,107.8659199,Low_spent_Medium_value_payments,255.9751577,0,0.9148,1.1053,0.8911,0.1656,-0.6815 -0x21919,CUS_0x9a6,August,51,410-04-4991,Doctor,40608.96,3103.08,2,1,5,3,"Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",0,2,10.19,6,Good,1294.249385,33.4422572,18 Years and 8 Months,No,93.00903004,333.4216027,Low_spent_Large_value_payments,197.5198382,0,-0.3921,0.5122,-0.7461,0.5046,-1.7571 -0x21925,CUS_0xbcde,August,39,596-06-1954,Doctor,32875.17,,4,1,8,2,"Personal Loan, and Mortgage Loan",0,0,11.55,4,Good,122.69,25.64746895,17 Years and 3 Months,No,30.86801479,,Low_spent_Small_value_payments,193.6442255,0,2.7794,-0.3285,1.5843,1.2036,0.7422 -0x21931,CUS_0xa09c,August,37,259-94-5869,_______,38192.94,3146.745,1,1,6,2,"Credit-Builder Loan, and Personal Loan",10.28145491,11,4.3,3,_,870.0908967,26.75615849,29 Years and 3 Months,No,36.37614031,50.4276953,High_spent_Large_value_payments,474.3488378,0,-0.3833,-1.4177,-0.0616,-2.1755,1.1103 -0x2193d,CUS_0xc192,August,20,697-74-4378,Scientist,30012.83,2239.069167,5,5,2,1,Student Loan,10.04166253,8,6.44,0,Good,1324.242207,30.68965117,26 Years and 6 Months,No,15.02910169,,High_spent_Small_value_payments,337.8754718,0,-0.4922,-1.8617,-1.1089,-0.2288,-0.2462 -0x21949,CUS_0x25f1,August,52,141-56-0639,Scientist,163083.08,13607.25667,3,2,8,1,Credit-Builder Loan,0,1,9.38,1,Good,725.2036631,39.88621562,31 Years and 5 Months,No,93.24891022,346.1045675,High_spent_Large_value_payments,1209.08522,0,1.4873,-0.4312,2.4458,-1.6522,-0.5217 -0x21955,CUS_0x61e3,August,48,101-45-1608,_______,86776.59,7154.3825,8,7,16,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",10.84823662,10,11.95,,Standard,638.99,33.10599405,24 Years and 0 Months,No,128.3078438,421.5706152,Low_spent_Medium_value_payments,445.559791,0,0.5751,-1.1624,-2.3288,-1.2206,1.9828 -0x21961,CUS_0x7145,August,30,640-19-4763,Media_Manager,86282.67,,5,7,10,4,"Not Specified, Personal Loan, Home Equity Loan, and Credit-Builder Loan",15.75853833,12,0.98,1,Good,129.3061712,33.74332686,18 Years and 2 Months,No,228.4230513,509.3732793,High_spent_Small_value_payments,312.2402945,0,-2.6403,-0.4186,0.494,-0.3542,0.9647 -0x2196d,CUS_0x225e,August,18,693-40-9693,Architect,22077.27,,3,7,8,2,"Payday Loan, and Payday Loan",8.798264366,10,17.84,8,Standard,918.22,30.2009877,10 Years and 4 Months,Yes,30.07970669,130.7884076,Low_spent_Large_value_payments,300.2091357,0,-1.0149,2.1429,-1.5192,1.7023,-2.6358 -0x21979,CUS_0xa187,August,45,487-99-3229,Writer,66287.28,5074.302311,4,3,8,0,,12.52907256,11,8.99,8,Standard,748.48,31.07787515,30 Years and 8 Months,Yes,439.637689,640.2134063,Low_spent_Small_value_payments,201.1805937,0,0.0291,-0.2425,-0.0557,-0.8854,-0.1952 -0x21985,CUS_0x2499,August,55,672-40-8326,Mechanic,28276.72,,5,4,10,4,"Not Specified, Not Specified, Payday Loan, and Debt Consolidation Loan",10.54198756,9,10.51,4,Standard,123.73,37.1243531,30 Years and 5 Months,No,50.01787354,26.60670401,High_spent_Large_value_payments,408.3147558,0,-0.6417,-0.4434,-1.0909,-0.6282,-0.1783 -0x21991,CUS_0x21bb,August,50,814-86-7307,Teacher,89531.13,7216.9275,3,4,10,3,"Auto Loan, Auto Loan, and Home Equity Loan",16.45677359,,-2.96,4,_,931.94,40.87238191,32 Years and 5 Months,No,223.2765485,194.0429778,Low_spent_Medium_value_payments,584.3732238,0,-0.4531,-1.5908,1.4919,0.175,1.1395 -0x2199d,CUS_0x6211,August,25,650-38-1015,Scientist,33643.76,,10,8,18.06745738,2,"Payday Loan, and Debt Consolidation Loan",33.99129557,16.58448904,13.69,13,Standard,2880.943364,38.01781405,13 Years and 11 Months,Yes,36.68171542,73.54318436,High_spent_Small_value_payments,406.6194789,0,0.6619,-1.2449,-0.3807,-0.7636,1.0792 -0x219a9,CUS_0x89b4,August,27,581-11-9310,Accountant,11465.92,744.4933333,7,5,11,0,,,7.214181051,7.35,7,Standard,1613.680351,37.02909534,15 Years and 0 Months,Yes,0,47.22858486,Low_spent_Medium_value_payments,307.2207485,0,0.2508,0.6678,-1.8495,2.7938,0.5602 -0x219b5,CUS_0xb04,August,21,053-21-8266,Accountant,60174.93,4912.5775,9,8,26,5,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",33.52945643,21.99601401,9.18,11,Bad,3305.157546,26.08052527,0 Years and 11 Months,Yes,135.8944402,,High_spent_Large_value_payments,507.4702482,0,1.4473,0.8246,-0.886,-0.6227,1.844 -0x219c1,CUS_0x77b3,August,18,083-43-3671,_______,30393.47,,3,7,8,1,Payday Loan,19.69834111,13,13.66,7,Standard,648.66,37.13731599,14 Years and 2 Months,Yes,13.59024554,,Low_spent_Large_value_payments,365.6236028,0,1.4656,0.7865,2.5104,0.4064,2.9583 -0x219cd,CUS_0xbe71,August,40,552-03-6969,Writer,110018.94,,4,2,9,0,,,1,9.42,4,Good,396.5925226,38.17224716,23 Years and 3 Months,No,0,,Low_spent_Medium_value_payments,477.0507783,0,0.0783,-0.0147,0.237,-1.1886,-0.8423 -0x219d9,CUS_0x6d1e,August,43,549-54-6864,Mechanic,16144.57,,6,6,28.06745738,5,"Personal Loan, Personal Loan, Payday Loan, Student Loan, and Payday Loan",22.16850852,,8.65,12,Bad,1939.048201,24.81484477,18 Years and 3 Months,Yes,34.30780765,61.73762241,Low_spent_Medium_value_payments,285.2723653,0,0.6975,-0.5587,1.0416,-0.4031,0.6556 -0x219e5,CUS_0x9c66,August,54,141-75-5743,Manager,11967.245,,8,6,15,3,"Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",5.179723107,7,16.54,4,Standard,1164.794455,27.44930994,20 Years and 2 Months,Yes,18.48098792,32.53979093,Low_spent_Small_value_payments,314.953615,0,-0.7742,0.9124,0.674,-1.1667,0.0939 -0x219f1,CUS_0x6068,August,51,898-33-6098,Entrepreneur,27577.45,2222.120833,7,4,12,3,"Not Specified, Auto Loan, and Mortgage Loan",11.77430461,12,11.28,7,Standard,1465.9,28.52415875,19 Years and 5 Months,No,40.68645861,70.80504793,Low_spent_Large_value_payments,380.7205768,0,-1.2954,0.2947,-2.035,-0.7895,-0.7579 -0x219fd,CUS_0x3b7e,August,54,041-26-5078,Entrepreneur,15904.85,1085.404167,3,5,1,4,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Not Specified",12.91664941,,6.34,2,Good,1377.16,36.85027487,20 Years and 4 Months,NM,47.59790092,76.78067721,Low_spent_Medium_value_payments,264.1618385,0,-1.6772,-0.7883,-0.3699,-0.5828,1.8401 -0x21a09,CUS_0xec8,August,18,115-56-7254,Entrepreneur,19457.5,1904.458333,5,7,15,1,Home Equity Loan,20.12286881,17,17.11,6,_,198.06,39.87447101,25 Years and 8 Months,Yes,9.012222642,46.29205162,High_spent_Small_value_payments,395.1415591,0,0.468,-1.2316,-0.4808,1.0148,-0.3509 -0x21a15,CUS_0xbc5e,August,37,498-64-3731,_______,95011.64,,3,6,11,4,"Auto Loan, Personal Loan, Home Equity Loan, and Credit-Builder Loan",20.08694924,14,11.02,6,Standard,1166.08,41.14964765,21 Years and 5 Months,Yes,291.8079567,113.385705,High_spent_Large_value_payments,628.470005,0,-1.165,-0.2589,-0.2345,0.1592,0.1374 -0x21a21,CUS_0x489b,August,31,769-46-3750,Manager,177560.68,,0,3,5,0,,6.268256114,5,4.19,1,Good,376.64,37.35965309,24 Years and 4 Months,NM,0,671.0594905,High_spent_Small_value_payments,1040.212843,0,0.423,-0.1234,-1.673,-0.195,0.5505 -0x21a2d,CUS_0xb907,August,80,193-12-4981,Journalist,36039.18,,466,9,24.88954781,7,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",25.70817977,19,5.16,10,_,2397,34.97822466,,Yes,1432.197261,280.6706479,Low_spent_Small_value_payments,199.7285101,0,-0.5917,-1.3478,1.017,1.4858,0.08 -0x21a39,CUS_0x612d,August,31,597-77-6079,Accountant,20497.26,1897.105,3,4,18,2,"Payday Loan, and Auto Loan",21.97092976,14,8.03,6,_,963.25,32.25195421,29 Years and 3 Months,Yes,27.14755195,79.90460795,High_spent_Small_value_payments,342.6583401,0,0.3071,-0.6338,1.6959,0.1863,0.9469 -0x21a45,CUS_0xaebc,August,29,792-56-4701,Accountant,40646.19,,3,7,6,0,,17.49022284,,6.77,8,_,534.4,26.28416454,22 Years and 4 Months,No,0,285.2595798,Low_spent_Large_value_payments,312.3586702,0,1.393,0.358,-2.9465,-0.856,-0.0957 -0x21a51,CUS_0x6683,August,20,368-69-9911,Developer,32653.78,,5,7,7,5,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",19.06971482,,17.59,12,Standard,1029.97,40.08784877,15 Years and 6 Months,NM,114.8511177,46.61459228,High_spent_Medium_value_payments,339.1491234,0,1.2845,1.1014,-0.546,2.1767,1.3721 -0x21a5d,CUS_0x2a8e,August,23,137-38-5121,Mechanic,17433.615,,1,4,2,2,"Credit-Builder Loan, and Mortgage Loan",16.74176116,,6.87,0,Good,955.2227928,27.11760723,29 Years and 8 Months,No,28.5796444,34.69874679,High_spent_Medium_value_payments,358.2013189,0,0.8154,-1.0071,0.5039,-1.471,0.4281 -0x21a69,CUS_0x7ed9,August,52,687-32-4056,Engineer,112383.56,9542.296667,4,6,3.288361749,0,,9.088500212,11,9.29,1,_,1271.36,33.67872897,22 Years and 2 Months,NM,0,962.0560693,High_spent_Small_value_payments,672.1110584,0,0.2861,0.9244,-0.573,-0.3381,-0.302 -0x21a75,CUS_0xb173,August,42,275-33-2317,Developer,18263.99,,8,5,20.06745738,100,"Payday Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",,25.21513294,16.34,10,Bad,3770.419535,36.42594952,2 Years and 2 Months,NM,76.67337711,56.71566615,!@9#%8,262.1905855,0,1.1275,-1.0306,-1.2886,-0.5805,-0.7014 -0x21a81,CUS_0x6e91,August,22,373-83-4458,Teacher,19852.64,,5,4,19.06745738,2,"Student Loan, and Personal Loan",20.58837792,12.69042447,18.92,8,Standard,1700.434303,26.67184211,16 Years and 10 Months,Yes,141.6591023,68.8056393,Low_spent_Small_value_payments,354.8478919,0,-0.6183,-0.4953,-0.2135,-1.0659,0.9725 -0x21a8d,CUS_0x2ba1,August,31,332-45-0857,Mechanic,10277.19,920.4325,4,6,5,5,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",6.384921308,8,16.66,13,Standard,1333.97,37.32641499,20 Years and 4 Months,Yes,1689,46.98225291,!@9#%8,310.0311561,0,-0.7654,0.3591,-1.0993,0.8228,1.0384 -0x21a99,CUS_0x4a70,August,38,953-01-9783,Media_Manager,94034.8,,8,4,11,1,Not Specified,6.02064432,6.84129287,10.98,4,Good,852.5132155,28.67709634,22 Years and 2 Months,NM,61.90277479,570.0224357,Low_spent_Large_value_payments,407.3981229,0,-0.6229,-0.066,-0.8395,0.22,-1.2467 -0x21aa5,CUS_0x66f2,August,32,091-01-4447,Lawyer,83618.96,,10,5,29,6,"Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",40.83079745,23,19.92,15,Bad,2624.85,23.33942323,11 Years and 6 Months,Yes,326.1671897,,Low_spent_Large_value_payments,210.8548629,0,0.0658,0.6368,1.1328,0.3383,-0.4994 -0x21ab1,CUS_0x4cce,August,45,356-75-7852,Engineer,31237.94,,5,5,2,3,"Mortgage Loan, Credit-Builder Loan, and Payday Loan",,10.9168451,7.02,64,Good,1317.999177,36.75709927,26 Years and 9 Months,No,191.5280294,,Low_spent_Small_value_payments,297.613111,0,-1.7331,1.1439,-1.3358,-1.6844,-0.2462 -0x21abd,CUS_0xa18f,August,25,732-05-7211,Mechanic,7517.97,447.4975,6,9,31.88954781,6,"Personal Loan, Personal Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",23.49831567,18.98085998,11.31,13,Standard,1676.427047,27.17303978,18 Years and 3 Months,Yes,1360.278952,,Low_spent_Large_value_payments,233.6852638,0,-0.0271,0.8054,-1.1534,0.5119,-0.2463 -0x21ac9,CUS_0xa442,August,22,518-48-0138,Lawyer,77945.08,6319.423333,8,5,24,5,"Personal Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",41.82593124,24,29.06,7,_,3854.704095,35.19866799,14 Years and 4 Months,NM,267.0404776,,Low_spent_Large_value_payments,74.16186423,0,-0.3205,0.6769,1.2879,-0.29,0.6383 -0x21ad5,CUS_0xdb9,August,29,802-68-9774,Mechanic,19134169,6072.14,4,6,17,3,"Personal Loan, Mortgage Loan, and Personal Loan",,10.48251553,16.24,6,_,2359.196446,26.66871485,7 Years and 8 Months,Yes,149.2021466,204.0656039,!@9#%8,533.9462495,0,-0.8797,0.3503,-0.5705,-0.758,1.7812 -0x21ae1,CUS_0x55f,August,36,650-81-9177,Journalist,18124.54,1588.378333,8,8,32.88954781,9,"Student Loan, Auto Loan, Personal Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Auto Loan",28.83659686,17,21.71,10,Bad,2854.37,28.09075397,9 Years and 8 Months,Yes,1442.827176,,Low_spent_Medium_value_payments,190.237486,0,0.3729,-0.7375,1.6315,0.5896,0.629 -0x21aed,CUS_0x383a,August,41,940-15-1743,Accountant,61876.14,,8,7,13,4,"Payday Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",29.89468532,23,17.37,5,Standard,1282.29,28.57993272,11 Years and 0 Months,Yes,169.9803218,109.3578605,High_spent_Large_value_payments,499.3963177,0,-1.2204,-0.9998,-0.3889,-1.4168,2.3097 -0x21af9,CUS_0x8b25,August,30,993-03-6036,Mechanic,38361.54,3351.795,8,7,16,5,"Auto Loan, Student Loan, Student Loan, Credit-Builder Loan, and Personal Loan",22.12908047,16,18.72,9,Bad,3546.25,37.40128991,8 Years and 9 Months,Yes,97.88789787,188.9489919,Low_spent_Small_value_payments,338.3426102,0,0.663,-0.1036,1.0765,-0.0623,-1.1066 -0x21b05,CUS_0x1274,August,80,298-61-0480,Scientist,49070.94,4128.245,8,4,4041,3,"Student Loan, Payday Loan, and Payday Loan",,20.63782943,12.81,8,Standard,1982.463095,28.69571405,5 Years and 11 Months,NM,72.73879852,330.0513875,Low_spent_Small_value_payments,300.034314,0,0.9044,0.465,0.8238,-0.9816,-0.7983 -0x21b11,CUS_0x43ee,August,26,721-71-9089,Accountant,78506.64,,10,5,20,7,"Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Auto Loan, Student Loan, and Student Loan",28.88574518,22,23.25,11,Bad,4127.37,26.53750486,9 Years and 10 Months,Yes,380.6242327,224.644283,Low_spent_Medium_value_payments,324.6534843,0,0.8747,-0.5546,-0.7389,1.1131,-0.6652 -0x21b1d,CUS_0x6443,August,45,846-27-0367,Developer,147781.64,,0,4,4,0,,6.075797996,8,4.83,3,_,433.748945,34.82754001,19 Years and 4 Months,NM,0,,High_spent_Small_value_payments,686.3056526,0,-0.7607,-0.1594,-1.4385,-1.0752,0.4962 -0x21b29,CUS_0x553d,August,36,957-32-9386,_______,17177.52,,7,6,17,7,"Payday Loan, Payday Loan, Home Equity Loan, Personal Loan, Auto Loan, Personal Loan, and Home Equity Loan",9.110002518,11,10.81,12,Standard,2072.12,38.1410518,13 Years and 4 Months,Yes,84.85024246,59.47514966,High_spent_Small_value_payments,269.2206079,0,-0.868,-0.2238,0.2172,-1.8414,0.0425 -0x21b35,CUS_0x15ad,August,27,357-70-0085,Mechanic,82316.18,6625.681667,0,5,4,3,"Not Specified, Debt Consolidation Loan, and Payday Loan",19.39884088,14.03327893,11,2,Good,47.01553729,31.7886923,18 Years and 4 Months,No,133.8937587,161.2076553,High_spent_Large_value_payments,607.4667527,0,-0.1477,-0.5078,-0.3326,0.2966,0.3871 -0x21b41,CUS_0xa57,August,18,276-37-2086,Manager,51461.4,4305.45,3,4,16,7,"Auto Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",,10,7.54,8,Standard,949.81,22.15994406,6 Years and 8 Months,Yes,298.8968995,,Low_spent_Small_value_payments,3.998674636,0,1.0914,-0.0804,-0.7777,0.1524,0.0607 -0x21b4d,CUS_0x9902,August,31,568-59-0290,Manager,141474.2,11536.51667,3,3,17.28836175,0,,16.10708215,,15.62,5,Standard,364.38,29.2535201,24 Years and 0 Months,NM,0,1146.681342,Low_spent_Medium_value_payments,706.9077856,0,0.5976,1.7342,1.5966,-0.3727,-0.6274 -0x21b59,CUS_0x7c33,August,61,481-99-3123,Journalist,134630.91,,5,1,4.288361749,0,,,1975,7.65,8,_,566.4159136,35.78273553,20 Years and 2 Months,No,0,1509.194459,Low_spent_Large_value_payments,441.8869206,0,0.2583,0.3157,1.6343,1.3222,-0.2027 -0x21b65,CUS_0xe05,August,28,683-96-9072,Accountant,47682.36,4059.53,10,6,32.06745738,2,"Personal Loan, and Student Loan",,21.48673109,17.64,6,_,3026.882311,31.99430983,13 Years and 4 Months,Yes,59.98467519,144.6703023,High_spent_Medium_value_payments,424.5777346,0,1.2697,-0.6425,-1.2317,-1.1509,0.1664 -0x21b71,CUS_0x7595,August,52,#F%$D@*&8,Architect,43967.59,,4,4,12,4,"Payday Loan, Not Specified, Home Equity Loan, and Payday Loan",,,5.39,3,Good,64.14303727,28.04024344,26 Years and 8 Months,No,138.9375134,,Low_spent_Medium_value_payments,163.1121169,0,1.1051,-0.2283,-0.0212,0.6444,-1.9817 -0x21b7d,CUS_0x445,August,23,667-88-2872,Media_Manager,36971.44,,9,7,32,5,"Student Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,20.28914579,9.78,10,Bad,1858.533934,38.74864763,15 Years and 5 Months,Yes,100.2303566,116.7272658,Low_spent_Small_value_payments,410.1377109,0,0.3562,0.292,-0.1477,-0.7574,-0.2675 -0x21b89,CUS_0x72e3,August,23,698-36-9588,Engineer,136566.4,11633.53333,6,4,18,2,"Payday Loan, and Student Loan",15.30836075,10,11.2,0,Standard,40.19,33.94447316,19 Years and 5 Months,No,206.2879191,910.2015864,Low_spent_Medium_value_payments,326.8638278,0,1.8094,1.5258,-0.3818,-1.143,-1.3609 -0x21b95,CUS_0x8e48,August,52,574-16-6279,Scientist,108968.85,8843.7375,1,5,7.288361749,0,,0,1,1.51,1,Good,367.7271744,21.77834158,,No,0,1481.37265,Low_spent_Small_value_payments,266.9427842,0,-2.411,0.7094,0.8642,0.9637,-0.7495 -0x21ba1,CUS_0xc4ad,August,26,212-17-4981,Accountant,9618.3,549.525,8,9,22,9,"Home Equity Loan, Home Equity Loan, Auto Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",20.07304321,17.48425628,15.27,,Bad,4970.724704,33.54178646,12 Years and 3 Months,Yes,38.43296552,14.79150548,Low_spent_Large_value_payments,271.728029,0,-1.5121,-1.0545,1.4615,-0.1035,0.5779 -0x21bad,CUS_0x6318,August,25,199-90-4095,Accountant,55732.68,4903.39,8,8,27,5,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Not Specified",16.51795624,13.23861378,8.35,14,_,2832.247553,28.0117928,11 Years and 5 Months,Yes,208.2720118,128.8695983,Low_spent_Medium_value_payments,433.1973899,0,1.1749,-1.0084,-0.8218,-0.362,1.1667 -0x21bb9,CUS_0x9dd7,August,24,194-04-6883,Engineer,106666.2,8873.85,6,6,11.28836175,4,"Not Specified, Payday Loan, Home Equity Loan, Student Loan, and Personal Loan",17.65271504,15,15.09,6,Standard,1288.06,37.65237568,15 Years and 9 Months,NM,317.9494433,,High_spent_Medium_value_payments,686.2871965,0,-0.0999,-0.4955,0.1879,-0.3359,0.6888 -0x21bc5,CUS_0x49c4,August,29,861-41-5971,_______,39831.1,,1,2,6,1,Home Equity Loan,13.32572265,11,9.08,6,Good,1.089926177,28.3319745,27 Years and 10 Months,No,25.7980241,,Low_spent_Large_value_payments,309.7137078,0,1.0297,1.1582,0.7794,-1.1982,-0.2629 -0x21bd1,CUS_0x9962,August,46,378-95-8519,_______,126689,10543.41667,3,1,5,3,"Mortgage Loan, Personal Loan, and Debt Consolidation Loan",0.070623537,1,6.73,3,_,597.81,34.41870201,19 Years and 10 Months,No,272.2814364,403.3503981,High_spent_Medium_value_payments,628.7098321,0,-1.0204,-0.6663,2.8896,1.4568,1.2056 -0x21bdd,CUS_0x795e,August,19,623-42-5526,Engineer,103668.45,8557.0375,7,3,4,3,"Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",,8,11.37,5,Standard,1320.03,38.43066823,33 Years and 6 Months,No,210.2046131,,Low_spent_Small_value_payments,326.0184534,0,-1.6774,-0.766,1.1129,0.7737,0.874 -0x21be9,CUS_0x30b9,August,52,857-73-0569,Lawyer,14696.765,,4,4,6,3,"Student Loan, Auto Loan, and Debt Consolidation Loan",14.12298277,,3.96,3,Good,531.86,33.42524425,20 Years and 0 Months,No,21.48880171,33.92390486,Low_spent_Medium_value_payments,351.9603351,0,0.1203,0.8281,-0.3486,-1.7452,0.9181 -0x21bf5,CUS_0x3fa7,August,44,110-46-6075,Scientist,7854.735,,8,8,21.95700519,7,"Credit-Builder Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",45.08652435,24.79911616,13.31,15,Bad,1905.682396,39.34195286,15 Years and 0 Months,Yes,1352.119945,65.52475804,Low_spent_Medium_value_payments,211.1610523,0,0.7325,-0.0532,-1.0563,-0.9805,0.2785 -0x21c01,CUS_0x983b,August,24,618-79-9712,Accountant,12349.37,,4,7,17,1,Debt Consolidation Loan,15.84371911,15,0.89,0,Standard,789.8708387,37.87658981,23 Years and 8 Months,Yes,8.022342591,57.18778893,High_spent_Medium_value_payments,320.3146103,0,-0.2154,0.2428,1.4912,-0.3376,-2.3755 -0x21c0d,CUS_0x5c45,August,29,497-87-3044,Teacher,12044.89,1055.740833,3,6,15,0,,15.72915623,,19.92,8,Standard,747.26,28.18077755,19 Years and 8 Months,Yes,0,31.98946751,!@9#%8,353.5846158,0,-0.8126,0.1054,-1.0004,-1.1337,-0.8165 -0x21c19,CUS_0xa8cb,August,42,330-38-0880,Engineer,16364.65,,9,10,32,4,"Payday Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",22.14425928,16,-0.53,14,Bad,2234.81,37.35324023,8 Years and 4 Months,Yes,39.55481364,66.5453539,High_spent_Medium_value_payments,307.3719158,0,-0.2573,1.6671,0.2277,1.1627,0.0836 -0x21c25,CUS_0x6543,August,52,092-21-0873,Musician,104088.51,8847.0425,1,7,6.288361749,2,"Mortgage Loan, Payday Loan, and Auto Loan",11.48560672,11,10.54,6,Good,449.559953,28.69391313,23 Years and 11 Months,NM,196.5044835,980.6148608,!@9#%8,450.9767433,0,-0.8638,-0.8791,-0.0483,-1.1063,-0.4447 -0x21c31,CUS_0xa6e7,August,44,#F%$D@*&8,Architect,37424.09,3182.674167,4,5,4.288361749,2,"Home Equity Loan, and Auto Loan",90,3827,3.55,1,_,464.9450617,35.15551155,28 Years and 8 Months,No,62.10742942,11847.68308,High_spent_Medium_value_payments,468.6484851,0,1.982,1.9518,0.5896,-0.5359,-1.8913 -0x21c3d,CUS_0x391a,August,29,020-38-9385,Lawyer,20737.17,1868.0975,5,4,9,0,,,6,7.37,0,Good,1268.609488,40.36992138,27 Years and 0 Months,No,0,130.053037,High_spent_Small_value_payments,336.3432526,0,-0.6409,0.3688,-1.3967,-1.991,-0.7476 -0x21c49,CUS_0x9616,August,33,324-37-0157,Journalist,32967.94,,8,4,18,1,Personal Loan,19.58701256,,,4,_,197.92,26.48211479,20 Years and 0 Months,Yes,24.83480447,,Low_spent_Small_value_payments,351.4387166,0,0.932,0.4364,1.5146,1.2468,-0.1644 -0x21c55,CUS_0x8ac4,August,24,511-55-3689,Entrepreneur,16203.89,1440.324167,6,10,34.06745738,7,"Not Specified, Home Equity Loan, Auto Loan, Personal Loan, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",35.38606927,18.81768165,7.97,11,Bad,2621.607799,38.73835754,7 Years and 0 Months,Yes,48.67048795,,Low_spent_Small_value_payments,177.3471507,0,-1.1392,1.0551,-1.7233,-0.641,0.3394 -0x21c61,CUS_0x6341,August,35,919-05-0020,Engineer,49329.78,,6,5,20,1,Student Loan,16.91437026,14,7.4,3,Standard,1022.77,24.91878243,31 Years and 4 Months,NM,25.74207195,,!@9#%8,599.2253929,0,-0.5176,-0.122,-0.7914,1.7821,1.4105 -0x21c6d,CUS_0x3f71,August,26,624-03-0844,_______,58048.82,4780.401667,3,3,1,2,"Personal Loan, and Student Loan",1.130324917,3,7.15,3,Good,1020.94,42.24972644,26 Years and 3 Months,NM,93.47780407,74.50234007,High_spent_Medium_value_payments,560.0600225,0,1.7416,1.6021,1.4212,3.1181,-0.6703 -0x21c79,CUS_0x97b5,August,80,329-30-0742,Teacher,161066.88,,1,3,1,4,"Credit-Builder Loan, Payday Loan, Auto Loan, and Auto Loan",15.00345892,10,1.12,3,Good,40.77,35.20285152,31 Years and 0 Months,No,523.1438367,156.6959596,High_spent_Large_value_payments,899.5842036,0,-0.2086,-2.1062,-0.1005,-0.5756,1.2078 -0x21c85,CUS_0x9f5e,August,18,231-84-6947,Accountant,72458.44,5826.203333,10,10,24.88954781,7,"Home Equity Loan, Not Specified, Home Equity Loan, Student Loan, Not Specified, Auto Loan, and Personal Loan",,23.09776451,4.86,14,Bad,2373.044443,27.21150111,10 Years and 4 Months,Yes,1547.980641,215.7182924,!@9#%8,384.591319,0,-2.2675,0.3602,-1.0548,1.0129,-0.7619 -0x21c91,CUS_0x638b,August,53,#F%$D@*&8,Doctor,139294.4,11380.86667,3,3,9,0,,,3,4.45,3,Good,499.06,44.2470233,21 Years and 6 Months,No,0,,High_spent_Medium_value_payments,1126.868163,0,0.2038,-0.4131,-1.448,-1.6564,0.6474 -0x21c9d,CUS_0x19a8,August,80,738-50-7769,Musician,30683.42,2222.806019,4,6,15,2,"Debt Consolidation Loan, and Not Specified",13.75182526,9,10.62,4,_,7.24,35.92430922,26 Years and 5 Months,No,222.0301038,,High_spent_Small_value_payments,375.9347305,0,-0.481,-0.3261,0.9103,2.0059,-0.0481 -0x21ca9,CUS_0x77f6,August,19,118-67-1893,Developer,7782.32,,8,10,27.95700519,7,"Personal Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Not Specified",27.56125669,14,17.48,7,Standard,1872.690954,26.43174227,14 Years and 4 Months,Yes,1367.734183,,Low_spent_Small_value_payments,231.7848232,0,-1.0778,0.8746,0.9853,0.6489,-2.4312 -0x21cb5,CUS_0x246d,August,23,680-78-0701,Media_Manager,45253.14,,8,7,33.06745738,6,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",25.25753249,16,22.98,6,Bad,4193.450954,35.15960576,5 Years and 2 Months,Yes,55894,159.6505003,High_spent_Small_value_payments,245.3273992,0,0.7459,-1.4184,-0.0441,0.908,0.0251 -0x21cc1,CUS_0x4aba,August,21,624-19-0017,Doctor,41351.46,3543.955,5,5,14,0,,19.01037384,13,6.99,3,Standard,727.13,37.49553612,30 Years and 4 Months,NM,0,34.71013822,High_spent_Large_value_payments,559.6853618,0,0.7672,-0.3419,-0.2322,0.5844,2.1134 -0x21ccd,CUS_0x246a,August,41,300-96-4100,Mechanic,8283.985,,8,4,17,5,"Student Loan, Mortgage Loan, Auto Loan, Auto Loan, and Auto Loan",,10.82135587,15.47,6,Standard,1388.430694,40.41066659,12 Years and 8 Months,Yes,27.71766992,63.19736279,Low_spent_Small_value_payments,275.5181756,0,-0.2976,0.819,-0.5787,-1.2803,0.6596 -0x21cd9,CUS_0x4722,August,38,231-21-5025,Lawyer,18040.67,1270.389167,5,5,27,5,"Student Loan, Credit-Builder Loan, Student Loan, Student Loan, and Credit-Builder Loan",22.035927,18,7.44,6,Standard,1874.52,26.57751943,12 Years and 3 Months,Yes,53.73438354,,Low_spent_Small_value_payments,281.1506565,0,0.8603,-1.0968,1.7051,0.39,0.8697 -0x21ce5,CUS_0x8aa6,August,52,347-13-4537,Lawyer,30635.83,,3,5,13,4,"Auto Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",17.6536762,14,5.29,0,Standard,349.58,38.65095562,27 Years and 8 Months,No,88.41637294,187.6883323,Low_spent_Small_value_payments,285.3938781,0,0.4084,0.9074,-0.2713,-0.1397,-0.2781 -0x21cf1,CUS_0xa8a,August,26,920-05-6695,Accountant,8829.965,,8,9,22.06745738,3,"Personal Loan, Payday Loan, and Student Loan",,26.04512702,5.62,8,_,2234.359283,29.41654738,18 Years and 6 Months,Yes,15.96058606,36.85021922,High_spent_Medium_value_payments,262.9519484,0,-0.7394,0.5268,0.3989,0.5251,-0.9543 -0x21cfd,CUS_0x2e10,August,19,002-26-1417,Lawyer,15301.19,1484.099167,8,6,30,3,"Not Specified, Home Equity Loan, and Auto Loan",,16.76110127,9.26,14,Standard,2879.621169,26.61967493,8 Years and 8 Months,Yes,30.48886331,68.56571735,Low_spent_Small_value_payments,339.355336,0,0.8568,0.2491,-1.1929,0.2343,-0.2919 -0x21d09,CUS_0x5672,August,51,059-66-4363,Scientist,173994.28,14596.52333,0,4,4.288361749,2,"Credit-Builder Loan, Not Specified, and Not Specified",,10,11.04,7,Good,714.69,37.20613117,15 Years and 9 Months,No,242.1055825,,High_spent_Medium_value_payments,893.4004115,0,-0.7645,-0.8685,0.2933,-1.1909,-0.1923 -0x21d15,CUS_0x7c88,August,46,#F%$D@*&8,Entrepreneur,60035.34,5182.945,6,5,31,6,"Home Equity Loan, Auto Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",28.49216133,20,27.51,11,Bad,2985.89,25.83211899,4 Years and 11 Months,Yes,150.7903243,151.1382191,Low_spent_Large_value_payments,486.3659567,0,0.978,0.5238,0.5591,-0.618,0.1598 -0x21d21,CUS_0x4b8b,August,18,842-07-2442,Accountant,160346.44,13611.20333,2,5,8,4,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",,,-1.59,1230,Good,577.2505521,45.98179642,21 Years and 11 Months,No,297.8933626,293.896697,High_spent_Medium_value_payments,1059.408167,0,-0.5622,-0.3595,1.1444,-0.9406,1.9086 -0x21d2d,CUS_0x3b10,August,26,746-44-0537,Manager,50155.56,3562.14239,8,3,6,2,"Home Equity Loan, and Home Equity Loan",22.46835462,19,12.93,1,Standard,109.7505967,33.15788004,,NM,544.070021,11429.93936,High_spent_Medium_value_payments,565.2340521,0,-1.1239,-1.2131,0.3237,-0.6084,-0.6411 -0x21d39,CUS_0x48cb,August,32,091-85-5634,Mechanic,9934.62,897.885,10,5,16.06745738,5,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",27.49082932,19,29.98,14,Bad,2966.740954,40.48248992,2 Years and 9 Months,Yes,35.26774617,,High_spent_Small_value_payments,239.6195524,0,0.5062,-0.0986,-1.8745,0.4354,0.3381 -0x21d45,CUS_0xb5f6,August,37,738-32-5720,Engineer,17421.64,1645.803333,3,3,100.0674574,4,"Student Loan, Not Specified, Mortgage Loan, and Personal Loan",18.8152342,12,12.61,7,Standard,1665.510954,33.37974112,6 Years and 2 Months,Yes,31.20461332,64.48288634,Low_spent_Large_value_payments,312.1725457,0,-0.7632,-0.3353,-1.7821,0.0501,1.39 -0x21d51,CUS_0x8af1,August,52,240-13-9967,Scientist,37262.12,3355.176667,0,1,2.288361749,2,"Auto Loan, Credit-Builder Loan, and Home Equity Loan",13.15260737,12,9.94,4,Good,286.4746456,34.22552072,16 Years and 3 Months,No,89.88133214,,High_spent_Medium_value_payments,372.0570499,0,0.0095,-0.4377,-1.5319,-1.0952,1.4088 -0x21d5d,CUS_0x7659,August,56,630-95-1303,Lawyer,20817.395,,5,5,4,3,"Auto Loan, Payday Loan, and Credit-Builder Loan",9.730691724,11,11.17,5,Good,955.2642735,31.27628676,19 Years and 6 Months,No,51.2615669,85.31198936,Low_spent_Large_value_payments,321.6450442,0,1.7975,-1.0924,0.2779,1.1903,-1.5756 -0x21d69,CUS_0xb4d8,August,45,508-83-0349,Lawyer,24954.36,,6,7,16,0,,,14,9.58,5,Standard,1410.8,26.58479175,16 Years and 2 Months,Yes,0,92.36790843,Low_spent_Large_value_payments,394.9850916,0,1.8773,1.0541,-1.4061,0.924,-0.3134 -0x21d75,CUS_0x138e,August,52,388-88-9221,Lawyer,85918.76,,3,4,2,4,"Credit-Builder Loan, Home Equity Loan, Personal Loan, and Home Equity Loan",17.67184443,,3.46,2,Good,312.4777289,25.23464557,26 Years and 0 Months,No,276.1133391,52.46171755,High_spent_Large_value_payments,637.6619003,0,-2.0608,-0.1719,-1.6799,-0.703,1.7392 -0x21d81,CUS_0x4976,August,26,888-09-4640,_______,31113.52,2377.793333,10,10,16.88954781,6,"Personal Loan, Credit-Builder Loan, Not Specified, Payday Loan, Credit-Builder Loan, and Student Loan",,21,3.67,12,Bad,2489.95,36.68440282,8 Years and 11 Months,NM,1431.198068,58.75301465,High_spent_Medium_value_payments,303.4981696,0,-0.1509,-0.4788,0.2185,-0.4313,0.0279 -0x21d8d,CUS_0x1038,August,33,355-00-7832,Architect,129473.16,,3,4,10,3,"Payday Loan, Payday Loan, and Home Equity Loan",,13,8.61,10,Standard,527.9709509,34.08931802,20 Years and 0 Months,Yes,255.327905,,Low_spent_Medium_value_payments,32.34364545,0,0.7826,-0.9296,-1.0307,-0.7827,-1.0685 -0x21d99,CUS_0xa685,August,45,956-20-0403,Doctor,62538.3,5371.525,2,5,8,3,"Not Specified, Debt Consolidation Loan, and Mortgage Loan",7.061525078,8,8.8,5,_,1375.7,30.45438944,22 Years and 6 Months,NM,87.79120054,62.99010842,High_spent_Medium_value_payments,636.371191,0,0.1448,-0.2455,-0.0267,0.4646,-0.615 -0x21da5,CUS_0xa663,August,23,743-80-2245,Media_Manager,102287.79,7821.986249,6,6,7.288361749,0,Payday Loan,,23,10.8,0,Standard,1006.178823,43.11384886,28 Years and 2 Months,Yes,762.8051708,649.1564861,High_spent_Medium_value_payments,841.7194444,0,-1.3211,1.4754,-1.0638,0.0764,0.8715 -0x21db1,CUS_0x8cf9,August,50,937-30-9943,Writer,10311.095,,8,5,17,0,,21.10634565,12.52783498,12.02,8,Standard,1154.515668,29.67292425,,Yes,0,129.0477897,Low_spent_Small_value_payments,257.2780019,0,0.2639,0.2519,0.5472,-1.1955,-0.7964 -0x21dbd,CUS_0x563b,August,50,895-16-5219,Media_Manager,43138.55,3671.879167,3,7,2,1,Payday Loan,,7,5.99,,Good,553.12,36.03955079,22 Years and 5 Months,No,27.08617216,107.5503491,High_spent_Small_value_payments,492.5513954,0,0.6592,-0.0114,-0.0096,2.1721,-0.6811 -0x21dc9,CUS_0x81ca,August,18,984-68-3106,Scientist,69907.3,,5,2,8,2,"Personal Loan, and Credit-Builder Loan",0,1,8.98,4,Good,761.7474641,36.82629054,31 Years and 9 Months,No,61.61329562,261.5260699,High_spent_Small_value_payments,551.1013185,0,1.1372,2.0273,0.0462,2.5678,1.714 -0x21dd5,CUS_0xb26,August,42,644-23-8314,Engineer,8898.785,973.5654167,9,5,31.06745738,100,"Student Loan, Personal Loan, Personal Loan, Payday Loan, Auto Loan, Home Equity Loan, Not Specified, and Student Loan",25.96189514,17,9.36,14,Bad,1515.550954,35.66339061,8 Years and 10 Months,Yes,54.34008368,,Low_spent_Small_value_payments,255.5680629,0,-0.0061,0.1235,-0.6877,-0.9874,-1.1557 -0x21de1,CUS_0x84f3,August,41,274-83-2210,Architect,17573.035,,3,2,4321,4,"Payday Loan, Payday Loan, Payday Loan, and Not Specified",16.19490747,,7.6,6,Good,382.921805,22.80437211,32 Years and 11 Months,No,38.78825382,,Low_spent_Medium_value_payments,301.9290112,0,1.1768,0.1475,-0.0426,0.6245,-0.8851 -0x21ded,CUS_0x209a,August,20,472-99-1273,Architect,34977.92,,6,4,3,4,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Personal Loan",,14,-2.71,4,Good,992.64,33.70747733,18 Years and 0 Months,No,95.27460136,97.54784004,Low_spent_Small_value_payments,364.2602253,0,0.6669,0.082,-1.1634,-1.6837,-1.3457 -0x21df9,CUS_0x4dac,August,42,221-32-4172,Manager,8495.375,439.9479167,7,6,19,7,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Student Loan, and Debt Consolidation Loan",42.31328751,24.29193003,25.31,10,Bad,4165.252924,33.18443555,5 Years and 8 Months,Yes,35.62920706,32.04250373,Low_spent_Small_value_payments,266.3230809,0,-1.9469,0.6074,0.2606,-0.3635,-0.4685 -0x21e05,CUS_0x9c63,August,23,102-18-5045,Teacher,19493.65,1809.470833,7,6,25.06745738,4,"Not Specified, Student Loan, Mortgage Loan, and Mortgage Loan",34.12278776,22,5.78,14,Bad,2101.440954,23.53329443,20 Years and 6 Months,Yes,56.39704749,71.53737122,High_spent_Small_value_payments,286.2923767,0,0.7051,0.9723,-0.8258,-0.7903,-0.0179 -0x21e11,CUS_0x64ed,August,55,689-21-2670,Musician,28741.71,,5,5,9,2,"Not Specified, and Debt Consolidation Loan",0.617574177,3,2.86,7,_,993.17,33.98666951,27 Years and 8 Months,No,28.02880168,,Low_spent_Small_value_payments,258.0340273,0,0.1818,0.2711,-1.3817,0.6987,0.8911 -0x21e1d,CUS_0x88c7,August,34,596-86-5684,_______,32303.73,2927.9775,4,1,5,3,"Payday Loan, Not Specified, and Mortgage Loan",0.041514867,2,7.8,1,Good,1074.399555,30.61465064,21 Years and 9 Months,No,43.44926577,,Low_spent_Small_value_payments,202.6795139,0,0.1369,1.2069,-0.6834,0.5532,0.0966 -0x21e29,CUS_0xb1ca,August,41,749-18-3715,Entrepreneur,20415.41,1648.847665,7,4,14,3,"Debt Consolidation Loan, Mortgage Loan, and Not Specified",19.94966339,13.78516987,5.4,6,Standard,282.1645487,29.59019762,29 Years and 0 Months,Yes,163.1724842,104.0864191,!@9#%8,294.6060149,0,1.0561,0.5003,-0.2497,-0.9823,0.7223 -0x21e35,CUS_0x18e5,August,34,958-83-8767,Architect,16408.77,,4,6,23,3,"Debt Consolidation Loan, Auto Loan, and Personal Loan",,13.54521842,14.11,9,_,1988.041937,35.42563787,17 Years and 3 Months,Yes,37.97203587,64.3466925,High_spent_Medium_value_payments,312.1210216,0,-1.0629,-0.2714,-0.2398,0.3622,0.0445 -0x21e41,CUS_0x550b,August,26,044-88-9323,Teacher,14830.48,,7,9,20,2,"Payday Loan, and Credit-Builder Loan",,23.06488088,7.05,13,_,2721.308203,35.84570503,17 Years and 3 Months,Yes,19.62810139,122.4708458,Low_spent_Small_value_payments,289.3883861,0,-0.124,-0.0262,1.3279,1.0438,0.5512 -0x21e4d,CUS_0x5afe,August,47,470-69-8284,Architect,45013.44,3889.12,3,4,13,0,,23.11333045,15,7.84,2,Standard,1378.25,34.61809293,,No,0,87.44285179,High_spent_Small_value_payments,561.4691482,0,0.8041,-1.0387,1.6941,-0.7152,0.6537 -0x21e59,CUS_0x26a9,August,27,073-62-9451,Media_Manager,15155.01,,8,9,21.88954781,7,"Student Loan, Auto Loan, Auto Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Not Specified",29.52480425,22,7.7,11,Bad,2525.42,37.14303746,16 Years and 6 Months,Yes,1395.128929,109.4635817,Low_spent_Large_value_payments,227.2235235,0,1.4887,1.2505,2.3607,0.0904,0.3237 -0x21e65,CUS_0x6eb9,August,39,282-62-0950,Manager,16533.7,,7,6,34.06745738,7,"Student Loan, Payday Loan, Payday Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Home Equity Loan",37.18705174,21.92247619,28.15,11,_,4422.312519,34.22704701,7 Years and 10 Months,Yes,78.55521573,46.763062,Low_spent_Small_value_payments,247.5422677,0,-0.4798,-0.7451,-0.1577,-1.3318,2.3265 -0x21e71,CUS_0x68da,August,48,691-11-9777,_______,132427.86,10877.655,1,5,4.288361749,2,"Debt Consolidation Loan, and Home Equity Loan",0,1,2.85,2,_,1191.539537,38.98649425,31 Years and 4 Months,No,164.6105099,806.5607105,!@9#%8,833.4815761,0,1.4571,-1.3346,0.202,-1.683,1.8504 -0x21e7d,CUS_0x5ac7,August,33,037-16-8008,Manager,35491.29,,3,3,12,3,"Mortgage Loan, Payday Loan, and Mortgage Loan",16.32011414,12,5.51,3,Standard,359.63,26.8368046,28 Years and 8 Months,No,63.72664458,84.46756148,High_spent_Small_value_payments,400.1665439,0,-0.2321,0.8804,1.3991,-0.1465,-2.2246 -0x21e89,CUS_0xcfd,August,32,631-39-4024,Lawyer,16905.13,1467.760833,10,7,17.06745738,6,"Auto Loan, Personal Loan, Not Specified, Mortgage Loan, Auto Loan, and Auto Loan",,21.23498335,17.22,14,Bad,5217.50874,39.62653596,5 Years and 3 Months,Yes,49.61401916,122.0820827,Low_spent_Small_value_payments,238.3596935,0,3.2113,-0.9883,-0.1608,-0.8619,-0.9183 -0x21e95,CUS_0x2834,August,80,533-04-5976,Scientist,12249.125,870.7604167,3,5,12,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,17,9.4,2,Good,1266.187683,34.89055533,19 Years and 3 Months,No,23.06263798,46.90798869,!@9#%8,312.6565263,0,0.4019,-0.353,-1.5937,-1.0108,0.1155 -0x21ea1,CUS_0x141c,August,43,862-01-8685,Manager,20202.22,1480.518333,7,723,17.28836175,2,"Student Loan, Home Equity Loan, and Mortgage Loan",,17,,4,_,197.54,37.94464931,18 Years and 5 Months,Yes,43.32669047,558.2575591,Low_spent_Small_value_payments,256.4050448,0,-2.6249,0.4954,0.2574,0.1707,-0.2 -0x21ead,CUS_0xb8de,August,30,#F%$D@*&8,Engineer,17538.28,1307.523333,8,5,33.06745738,7,"Not Specified, Debt Consolidation Loan, Auto Loan, Not Specified, Student Loan, Mortgage Loan, and Not Specified",36.48547442,21,16.49,8,Bad,3873.370954,37.17123658,4 Years and 2 Months,Yes,95.21764467,101.7481917,Low_spent_Small_value_payments,197.066209,0,0.0974,-0.1951,-1.2366,-0.2571,-1.268 -0x21eb9,CUS_0x8743,August,26,640-76-9557,Teacher,59649.39,4982.7825,10,7,28,6,"Personal Loan, Personal Loan, Payday Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",,23,21.83,10,Bad,4291.3,35.60699543,10 Years and 0 Months,Yes,164.6636774,245.6528784,Low_spent_Small_value_payments,377.9616941,0,1.214,-0.5637,0.7178,1.492,0.2438 -0x21ec5,CUS_0x1755,August,19,728-09-1263,Accountant,13990.925,1309.910417,8,6,18,6,"Auto Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",,7,18.31,9,Standard,1313.3,29.38723125,20 Years and 0 Months,NM,50.09175625,154.553222,Low_spent_Small_value_payments,216.3460634,0,0.857,-0.1058,-0.4709,0.8057,-1.4691 -0x21ed1,CUS_0xbe97,August,52,059-64-0250,Doctor,55336.94,4453.411667,5,5,18,1,Mortgage Loan,16.08068904,11,11.63,3,_,1170.84,31.94186288,26 Years and 10 Months,Yes,34.46198562,10000,Low_spent_Small_value_payments,411.5654679,0,-0.1766,0.5317,0.3913,-0.4001,0.156 -0x21edd,CUS_0x335f,August,43,160-61-2492,Lawyer,32340.83,,4,5,5024,3,"Auto Loan, Credit-Builder Loan, and Not Specified",,9,2.95,4,Standard,1455.41,35.14485955,29 Years and 10 Months,No,79.44209355,179.0313105,Low_spent_Small_value_payments,287.1335126,0,-1.5074,-0.4493,0.9245,0.9529,-1.5841 -0x21ee9,CUS_0x7e30,August,28,788-76-9513,Musician,112743.08,9463.256667,3,6,2,3,"Not Specified, Personal Loan, and Personal Loan",0,3,4.37,4,_,782.51,31.81547986,16 Years and 6 Months,No,235.779899,589.1088156,High_spent_Small_value_payments,381.4369521,0,-0.7971,-1.9344,-0.8748,-0.6903,-0.0634 -0x21ef5,CUS_0x40df,August,21,395-89-7017,Musician,64536.99,5639.0825,6,5,15,4,"Auto Loan, Auto Loan, Home Equity Loan, and Student Loan",22.28112868,18,4.72,6,Standard,1441.12,30.5752834,26 Years and 3 Months,No,210.0160158,748.5439282,Low_spent_Small_value_payments,,0,-0.18,1.0608,1.2092,0.8889,-0.1896 -0x21f01,CUS_0x1430,August,30,945-49-4517,Doctor,20048.23,,2,6,9,4,"Payday Loan, Student Loan, Home Equity Loan, and Payday Loan",8.110474705,7,5.01,4,Good,224.98,34.59999599,19 Years and 4 Months,No,41.94727191,198.1119359,Low_spent_Small_value_payments,213.7093756,0,-1.5758,-2.2199,-0.3715,-0.763,-0.675 -0x21f0d,CUS_0x3d16,August,40,079-17-3731,Musician,14422.22,1013.851667,9,6,27,100,"Debt Consolidation Loan, and Home Equity Loan",44.59295871,27,8.35,8,Bad,1325.68,37.28903598,,Yes,21.00548259,61.23784171,!@9#%8,279.1418424,0,-0.0678,0.0379,0.1986,1.9029,-1.4044 -0x21f19,CUS_0x14b3,August,54,109-01-0234,Lawyer,30637.13,,5,7,10,3,"Auto Loan, Debt Consolidation Loan, and Personal Loan",19.8045672,14,7.18,4,_,414.36,37.33134265,23 Years and 0 Months,NM,48.99794222,153.4053626,High_spent_Small_value_payments,300.3061118,0,-0.8102,-1.1249,0.0697,1.6183,0.4714 -0x21f25,CUS_0x8fd5,August,46,477-76-8519,Mechanic,122835.52,,6,4,17,3,"Debt Consolidation Loan, Personal Loan, and Not Specified",,14,21.73,2081,_,493.99,29.40228459,13 Years and 8 Months,Yes,193.6489267,263.1306386,High_spent_Medium_value_payments,790.6497681,0,-0.9563,-0.057,0.3692,-1.2286,-0.9479 -0x21f31,CUS_0x1a7b,August,32,079-59-6325,Entrepreneur,88574.43,7417.2025,4,5,2,1,Credit-Builder Loan,,8,10.65,8,Good,1451.63,32.03979281,16 Years and 9 Months,No,40.53309262,10000,High_spent_Large_value_payments,829.092801,0,0.7313,0.3333,-1.2365,0.8228,-0.3075 -0x21f3d,CUS_0xb787,August,25,#F%$D@*&8,Lawyer,71875.28,5758.606667,4,5,30,100,"Not Specified, and Payday Loan",23.7498148,16.41488357,11.27,6,Standard,2365.612174,34.2713334,16 Years and 0 Months,Yes,106.0632159,507.2621459,Low_spent_Small_value_payments,252.5353048,0,1.5303,-0.4949,-1.57,0.5592,-1.5368 -0x21f49,CUS_0x78ce,August,44,882-44-3099,Writer,54904.1,4839.341667,7,7,7,2,"Mortgage Loan, and Credit-Builder Loan",15.82883794,15,2.81,2,Good,737.62,28.74588236,23 Years and 10 Months,No,79381,507.4541125,Low_spent_Small_value_payments,204.2847474,0,-0.4991,-0.6066,-1.1037,1.1336,0.0723 -0x21f55,CUS_0x6263,August,34,175-86-9492,Media_Manager,14956.12,1235.343333,2,6,2.067457376,2,"Debt Consolidation Loan, and Debt Consolidation Loan",15.12444731,7.26776225,9.17,2,Good,1169.48647,37.06541381,18 Years and 9 Months,No,17.7391272,44.23475295,Low_spent_Small_value_payments,324.8401652,0,2.5681,0.2871,-0.3506,-0.4602,-0.2861 -0x21f61,CUS_0xbd45,August,32,355-81-4917,Mechanic,36943.76,3081.883854,3,5,8,3,"Personal Loan, Payday Loan, and Mortgage Loan",0.609386665,5,10.35,3,Good,989.4700511,35.43020442,21 Years and 0 Months,No,162.356544,54.83716314,High_spent_Medium_value_payments,443.1613373,0,-0.3392,1.4896,-0.3877,-0.6763,-0.3658 -0x21f6d,CUS_0x1528,August,44,770-63-1122,Entrepreneur,19344.27,,5,3,8,1,Student Loan,16.0079265,13,3.28,2,Standard,861.19,36.69148955,27 Years and 10 Months,No,12.23465091,,Low_spent_Small_value_payments,249.1252507,0,1.3132,-0.4628,-1.6078,0.3388,-0.0868 -0x21f79,CUS_0xaf1e,August,54,358-02-2956,Media_Manager,26420.21,,8,3,11,1,Auto Loan,,15,5.09,1,_,289.24,28.78023476,33 Years and 8 Months,No,14.36404918,90.33698343,Low_spent_Small_value_payments,431.5673841,0,-1.1164,0.8428,1.1628,-1.218,-0.3164 -0x21f85,CUS_0xb39,August,18,139-05-0545,Doctor,15383.17,,8,8,29.06745738,8,"Mortgage Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Not Specified",,21,29.3,16,Bad,4832.500954,34.84640398,7 Years and 9 Months,Yes,97.5833064,,Low_spent_Small_value_payments,239.045555,0,0.5563,-0.3238,-0.0326,-1.0444,0.6701 -0x21f91,CUS_0x3127,August,19,051-95-4107,Accountant,37972.16,2986.346667,9,10,22.06745738,7,"Credit-Builder Loan, Mortgage Loan, Student Loan, Home Equity Loan, Student Loan, Auto Loan, and Personal Loan",33.07762413,18,17.14,11,Bad,4932.040954,38.90046738,12 Years and 2 Months,Yes,217.6533678,,Low_spent_Small_value_payments,20.30538232,0,1.0639,0.0825,-2.6158,-0.7937,0.4783 -0x21f9d,CUS_0x33b7,August,49,823-99-1079,_______,20770.6,,7,4,17,3,"Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",,12,,4,Standard,167.61,36.94265255,25 Years and 6 Months,No,35.37081542,100.9483764,Low_spent_Small_value_payments,332.1691415,0,1.0041,0.9859,-0.0406,0.3774,0.3181 -0x21fa9,CUS_0x6919,August,25,962-28-0931,Doctor,107242.64,,4,2,6,1,Student Loan,18.66960189,,10.66,3,Good,258.85,33.53491806,32 Years and 9 Months,No,73.53336066,306.4251144,Low_spent_Medium_value_payments,798.0301916,0,1.2628,0.9459,1.0384,0.7192,-1.5342 -0x21fb5,CUS_0x815,August,80,307-66-3257,Developer,10445.48,,8,10,33.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Student Loan, Personal Loan, and Personal Loan",32.71690919,21.90817028,9.2,8,_,2163.278257,37.83498731,14 Years and 9 Months,Yes,56.97684867,,Low_spent_Small_value_payments,229.9266332,0,0.0872,0.1335,0.5921,-0.0826,0.5624 -0x21fc1,CUS_0x81d4,August,25,246-75-5118,Writer,141873.52,11869.79333,3,7,11,4,"Payday Loan, Home Equity Loan, Not Specified, and Not Specified",13.18936139,9,11.64,4,_,803.61,33.49610757,,No,465.7692341,10000,High_spent_Large_value_payments,742.6685981,0,-0.5366,0.1577,0.6564,-0.0318,-0.5038 -0x21fcd,CUS_0x7ea1,August,29,218-01-8404,Musician,17872695,,9,5,20,5,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Student Loan",38.98249825,25.56364506,9.61,13,Bad,3803.074907,31.26532865,9 Years and 11 Months,Yes,22.96083536,57.01275655,Low_spent_Small_value_payments,303.9491164,0,-1.5529,-0.3343,0.2793,-0.545,-0.6705 -0x21fd9,CUS_0x54b7,August,39,403-79-7249,Mechanic,29269.81,,5,7,10,2,"Credit-Builder Loan, and Payday Loan",21.2317467,14,13.67,6,Standard,504.78,26.04835788,31 Years and 0 Months,Yes,39.17656388,248.4252175,Low_spent_Small_value_payments,216.513302,0,0.2316,0.5442,-0.963,0.7629,-0.7481 -0x21fe5,CUS_0xb87d,August,50,586-20-2678,Mechanic,40671.27,3476.2725,2,5,8.288361749,2,"Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",0,3,5.21,2,_,431.1804301,29.16471504,27 Years and 4 Months,No,92.71316837,481.3068896,High_spent_Large_value_payments,441.2731361,0,-0.1034,-0.6643,-1.1467,-0.0874,0.3062 -0x21ff1,CUS_0x70d4,August,39,049-44-5243,Accountant,37107.79,3114.315833,3,75,4,0,,7.321180311,2.424133702,10.39,6,Good,98.99557086,38.65337341,28 Years and 10 Months,No,0,156.5144548,High_spent_Small_value_payments,414.9171286,0,-0.0667,-0.2668,0.8622,-1.8531,0.2713 -0x21ffd,CUS_0x9176,August,18,217-87-7841,Writer,32144.54,,9,7,33.06745738,8,"Auto Loan, Student Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Student Loan, Auto Loan, and Student Loan",,21,27.29,6,Bad,3584.330954,38.36040713,7 Years and 2 Months,Yes,166.0906529,242.1195286,Low_spent_Small_value_payments,150.1406973,0,-0.1077,0.7429,-0.3424,-0.413,0.0112 -0x22009,CUS_0x8cf2,August,52,260-53-2581,Lawyer,35572.08,2683.34,2,6,7,4,"Payday Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",,9,10.97,3,_,1078.33,22.11874622,16 Years and 5 Months,No,118.1398956,168.7770555,Low_spent_Large_value_payments,251.4170488,0,0.233,-1.5962,-0.6048,0.1009,-0.1418 -0x22015,CUS_0x9207,August,24,#F%$D@*&8,Architect,15915.045,1256.25375,8,5,12,3,"Credit-Builder Loan, Payday Loan, and Not Specified",15.77375978,,1.71,4,Standard,810.26,37.19322838,30 Years and 3 Months,No,25.47281888,72.11093127,Low_spent_Small_value_payments,318.0416249,0,1.5642,-0.9835,-1.7364,-0.6007,-2.7963 -0x22021,CUS_0x8e93,August,38,086-95-0897,Writer,59227.68,4790.64,10,5,26,2,"Payday Loan, and Debt Consolidation Loan",,20.65397253,13.7,14,Standard,1395.201541,24.14488756,11 Years and 2 Months,Yes,91.59134101,101.9360043,High_spent_Small_value_payments,545.5366546,0,0.3956,2.1006,0.145,1.506,-0.2706 -0x2202d,CUS_0x72a7,August,51,908-28-4029,Doctor,23414.76,1961.23,3,7,7,2,"Payday Loan, and Personal Loan",14.98814128,,2.52,0,Standard,321.2967394,29.22693518,19 Years and 10 Months,Yes,28.83160967,187.9457744,Low_spent_Large_value_payments,268.0317036,0,-0.8621,-1.1928,-2.2504,-0.1827,-0.9667 -0x22039,CUS_0x668f,August,26,171-23-7188,Journalist,26175.31,,8,4,11,0,,8.329152264,9,18.58,7,Standard,601.78,34.35768541,,Yes,174.5023053,143.9819607,Low_spent_Small_value_payments,363.5456226,0,-0.0595,1.5052,0.0263,-1.1111,-0.9772 -0x22045,CUS_0x9ab3,August,40,810-50-2169,Writer,16367.605,,5,7,9,4,"Home Equity Loan, Credit-Builder Loan, Student Loan, and Auto Loan",4.258056898,7.22575997,10.06,1,Good,1119.307275,33.43309703,33 Years and 2 Months,No,50.19275241,88.92109355,Low_spent_Small_value_payments,273.0828624,0,0.5829,-0.2708,0.5756,-0.1693,-0.1609 -0x22051,CUS_0x2b6a,August,38,125-81-1946,Journalist,26805.85,,7,7,8,5,"Auto Loan, Payday Loan, Personal Loan, Credit-Builder Loan, and Mortgage Loan",12.45271883,13,16.29,8,Standard,1434.01,25.92502138,13 Years and 2 Months,Yes,100.1392756,69.77385386,High_spent_Medium_value_payments,314.3689539,0,0.029,0.6422,0.8237,-0.2321,0.9914 -0x2205d,CUS_0x1471,August,43,#F%$D@*&8,Teacher,31061.8,,5,7,10,4,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",6.989402658,6,6.13,8,Standard,157.62,27.36324665,17 Years and 5 Months,No,76.88013523,36.22169527,High_spent_Medium_value_payments,390.3465028,0,0.6844,-0.112,0.0166,-0.1312,0.3484 -0x22069,CUS_0x853c,August,54,068-17-0388,Architect,46449.98,4081.831667,3,5,18,3,"Not Specified, Student Loan, and Debt Consolidation Loan",25.96864555,18,3.5,7,Standard,1061.577014,31.21787166,33 Years and 3 Months,No,95.96768768,229.9869717,High_spent_Small_value_payments,374.6559481,0,0.7318,0.8284,0.639,0.7383,-0.7263 -0x22075,CUS_0x18c5,August,38,383-85-3208,Lawyer,140947.8,,5,7,5,2,"Personal Loan, and Credit-Builder Loan",90,2438,8.08,9,Standard,1348.57,27.62514672,19 Years and 5 Months,Yes,224.2138181,,Low_spent_Large_value_payments,762.4874325,0,0.9309,0.8314,2.0302,1.5625,0.8349 -0x22081,CUS_0x2e06,August,30,412-24-8689,Lawyer,40113.08,3086.756667,3,7,1,4,"Credit-Builder Loan, Personal Loan, Student Loan, and Auto Loan",0,0,5.88,5,Good,25.78,32.16429549,20 Years and 9 Months,No,76.33532872,211.7121673,High_spent_Small_value_payments,280.6281706,0,-0.2585,-0.6876,-0.3624,-3.1718,-0.405 -0x2208d,CUS_0xc0a3,August,27,732-50-0677,Engineer,43457.34,3666.445,6,5,31,4,"Not Specified, Payday Loan, Payday Loan, and Credit-Builder Loan",,19.91091591,8.24,11,Bad,1518.654849,34.09885687,18 Years and 6 Months,Yes,124.9314763,,High_spent_Small_value_payments,295.0153357,0,1.0212,-1.7618,-0.5071,-0.8453,-0.0293 -0x22099,CUS_0xa5dd,August,47,603-55-0109,Teacher,39379.07,,2,1,8,0,,15.51218921,,6.65,9,Good,635.5145043,39.48288426,28 Years and 0 Months,No,0,,High_spent_Medium_value_payments,459.8633115,0,-0.3826,-0.0786,0.9474,2.8953,-1.1394 -0x220a5,CUS_0x2288,August,24,092-68-5200,Teacher,155700.32,12704.02667,4,5,8.288361749,0,,,5,10.08,4,Good,988.95,28.86030247,33 Years and 0 Months,No,64439,1604.80837,Low_spent_Small_value_payments,375.5317578,0,-1.7377,-0.5512,-0.2935,-0.896,-0.943 -0x220b1,CUS_0xb304,August,42,322-67-8555,Writer,69984.72,5570.06,6,5,12,3,"Auto Loan, Payday Loan, and Personal Loan",16.34184575,11,15.01,6,_,836.2996242,28.89417656,18 Years and 8 Months,NM,155.0776141,195.4230178,High_spent_Small_value_payments,491.8515835,0,-2.0938,-0.3165,1.1848,-0.6747,1.6279 -0x220bd,CUS_0x9da4,August,18,853-63-1222,Architect,77380.48,6229.819072,5,2,7.288361749,0,,0,0,2.2,1,_,441.3746456,26.85619455,20 Years and 3 Months,No,388.5542618,531.9499385,High_spent_Large_value_payments,802.3403935,0,-0.3211,-1.3182,-0.0857,-1.3493,-0.7641 -0x220c9,CUS_0x5983,August,30,132-99-5339,Writer,69362.92,,6,6,9,2,"Home Equity Loan, and Student Loan",,9,11.41,5,Standard,1042.95,25.38248509,18 Years and 5 Months,Yes,67.55351587,,High_spent_Small_value_payments,579.1122394,0,-0.8701,2.0054,0.6132,-1.6579,0.3194 -0x220d5,CUS_0x775a,August,35,657-83-9284,Teacher,85742.82,6400.101773,2,2,1,2,"Payday Loan, and Debt Consolidation Loan",0,2,4.74,5,Good,1253.52,38.14118987,17 Years and 6 Months,No,820.4957046,240.7584971,High_spent_Medium_value_payments,611.0025256,0,-0.495,-0.4398,-1.0155,-1.5965,-0.6288 -0x220e1,CUS_0xc317,August,30,809-29-7678,Journalist,55115.26,4302.938333,7,4,14,0,,,15,10.62,3,Standard,134.87,24.9247494,24 Years and 4 Months,Yes,0,10000,High_spent_Small_value_payments,396.2221705,0,1.9859,0.3823,0.0252,-1.7175,-0.1661 -0x220ed,CUS_0x7255,August,40,205-47-5666,Accountant,34271.96,,3,7,19,3,"Debt Consolidation Loan, Personal Loan, and Home Equity Loan",,19,1.87,5,Standard,839.04,36.79446018,,No,81.97543879,69.3329897,High_spent_Medium_value_payments,404.5912382,0,-1.7824,-1.3122,-0.6614,1.389,2.0833 -0x220f9,CUS_0x8348,August,25,677-09-7618,Entrepreneur,58089.39,4835.7825,8,6,25,7,"Personal Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, and Personal Loan",,27.38291098,17.55,12,_,2766.128896,26.13161028,1 Years and 8 Months,Yes,311.9848218,165.7484351,Low_spent_Medium_value_payments,285.8449932,0,-0.0144,-0.1256,-0.9153,-0.0674,-1.203 -0x22105,CUS_0x6dd6,August,18,919-89-2002,Scientist,28675.48,2154.623333,8,9,33.95700519,6,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Auto Loan, and Payday Loan",,24,2.64,13,Bad,2583.910954,35.26800603,,NM,1405.19419,86.01200341,High_spent_Medium_value_payments,253.2057707,0,0.1847,-0.6184,0.1903,0.4876,0.9331 -0x22111,CUS_0x23e5,August,18,788-23-1545,_______,31563.9,,10,10,19,5,"Student Loan, Student Loan, Not Specified, Mortgage Loan, and Home Equity Loan",32.12185183,22,8.44,8,_,2241.78,40.12935382,13 Years and 10 Months,Yes,99.52324977,69.08564156,High_spent_Medium_value_payments,362.2236087,0,-1.3344,-0.4311,1.0307,0.785,0.315 -0x2211d,CUS_0x50e6,August,20,487-62-4672,Developer,31819.53,,3,3,6,0,,,12,2.67,4,Good,463.4992892,36.29177329,31 Years and 8 Months,No,0,53.25555843,High_spent_Large_value_payments,434.9690346,0,-1.0139,0.8478,-1.797,0.8952,1.1599 -0x22129,CUS_0x973e,August,29,563-06-7079,Architect,54284.94,,7,8,31.06745738,7,"Mortgage Loan, Not Specified, Student Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Student Loan",47.68611814,28.13434683,28.63,11,Bad,4915.183026,31.55966021,5 Years and 6 Months,Yes,190.6419746,501.3298434,Low_spent_Small_value_payments,38.68239403,0,-1.4727,1.7955,-1.5353,-0.8407,-0.6334 -0x22135,CUS_0x652e,August,53,179-42-1358,Accountant,45749.06,3405.417951,6,5,13,4,"Auto Loan, Auto Loan, Mortgage Loan, and Auto Loan",13.90866725,10,5.74,3,Standard,382.5964014,40.30946552,23 Years and 4 Months,Yes,305.2580327,173.9439098,Low_spent_Small_value_payments,382.2799041,0,-0.5461,0.4839,1.216,-0.5018,-2.5419 -0x22141,CUS_0xb5c9,August,29,259-88-4054,Musician,8826.66,508.555,10,10,34.95700519,9,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,,24.31,11,Bad,4075.040954,40.33799631,8 Years and 11 Months,Yes,1369.771966,47.01921186,Low_spent_Small_value_payments,203.0139528,0,-0.3318,-2.8308,0.994,0.2531,-0.352 -0x2214d,CUS_0xbf4d,August,33,618-31-0112,_______,144469.36,11835.11333,1,5,5,1,Credit-Builder Loan,0,0,3.52,4,_,361.73,37.12878597,33 Years and 0 Months,No,95.04860774,591.4510043,High_spent_Small_value_payments,757.0117212,0,-0.6526,0.5202,-0.4364,0.8001,0.5122 -0x22159,CUS_0x63c,August,20,950-48-6281,Manager,56062.22,4680.851667,4,4,8,6,"Not Specified, Payday Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Mortgage Loan",26.11366351,16.73019948,25.4,7,Standard,214.1230428,31.25217431,17 Years and 11 Months,NM,175.6312767,119.0969993,High_spent_Medium_value_payments,423.3568906,0,0.4299,0.1662,1.4582,-0.9062,-0.3606 -0x22165,CUS_0x45e5,August,32,872-43-3172,Doctor,101821.72,8601.143333,5,6,18,5,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Not Specified, and Student Loan",,12,21.55,8,_,493.6163529,40.96379345,17 Years and 10 Months,Yes,257.8392418,165.2745186,High_spent_Large_value_payments,701.4971662,0,1.9846,-0.7424,-0.2962,-0.9676,-0.1334 -0x22171,CUS_0x13b8,August,29,094-65-0795,Scientist,18341.47,1323.455833,2,3,6,0,,2.303408817,6,5.93,6,Good,1300.64,38.68624106,18 Years and 5 Months,No,0,98.06490155,Low_spent_Medium_value_payments,314.2806818,0,0.8814,0.3905,0.8272,-3.3071,0.9763 -0x2217d,CUS_0x665c,August,26,624-89-5858,Developer,9115.47,,10,7,24.06745738,9,"Debt Consolidation Loan, Auto Loan, Not Specified, Personal Loan, Personal Loan, Payday Loan, Student Loan, Student Loan, and Debt Consolidation Loan",,23.99728349,20.41,11,Bad,3044.082226,37.92372322,2 Years and 5 Months,Yes,63.32264363,,Low_spent_Small_value_payments,183.6980958,0,0.4195,-0.905,-0.8658,-1.3139,0.0259 -0x22189,CUS_0x52a5,August,33,749-66-2495,Writer,35908.74,3149.395,4,4,10,2,"Personal Loan, and Credit-Builder Loan",,,10.08,5,Standard,691.5669003,26.25985458,7 Years and 3 Months,Yes,53.98229466,223.8812183,Low_spent_Large_value_payments,307.0759871,0,0.5469,-0.221,1.4905,-0.6074,-0.1295 -0x22195,CUS_0x8661,August,37,887-22-9485,Accountant,40276.27,3381.355833,5,4,12,3,"Payday Loan, Personal Loan, and Student Loan",,13,9.02,9,Good,786.37,29.86174237,22 Years and 4 Months,No,72785,204.3397697,High_spent_Small_value_payments,339.6794568,0,-0.6506,0.8329,0.8685,2.4861,-0.2332 -0x221a1,CUS_0xa857,August,37,966-14-2191,Developer,19998.6,,6,7,15,0,,,13.74296928,1.34,3,Standard,938.6156093,35.76515478,22 Years and 4 Months,No,0,,Low_spent_Small_value_payments,254.2772699,0,0.9981,-1.5894,1.0502,0.109,-0.4407 -0x221ad,CUS_0x7b30,August,36,064-85-0175,Scientist,10977.79,,6,3,15,0,,14.21094875,15,18.07,6,Standard,1457.57,33.11935146,24 Years and 0 Months,Yes,0,28.89224347,Low_spent_Large_value_payments,352.1893399,0,0.5258,-1.1925,2.1889,-0.3731,-0.7143 -0x221b9,CUS_0x6854,August,50,316-84-2157,Scientist,42150.69,2927.278466,3,3,6,1,Home Equity Loan,9.707960276,11,7.87,4,Good,1013.95,29.07630845,31 Years and 5 Months,No,465.645791,,High_spent_Medium_value_payments,483.2498564,0,-1.1698,1.0952,0.2451,-0.7056,0.3436 -0x221c5,CUS_0xc1ec,August,18,089-08-2627,Entrepreneur,40976.22,3473.685,5,8,5,3,"Payday Loan, Home Equity Loan, and Student Loan",12.47847652,10,11.49,7,Standard,1332.82,38.26830228,17 Years and 9 Months,Yes,79.11463947,114.9104361,High_spent_Medium_value_payments,403.3434245,0,-2.0063,0.5534,1.3724,-1.1722,0.508 -0x221d1,CUS_0x2551,August,47,#F%$D@*&8,_______,32390.15,,3,6,5,0,,20.53365169,17,8.81,4,Standard,596.56,28.31801704,29 Years and 11 Months,No,0,10000,High_spent_Small_value_payments,366.207041,0,0.8485,0.2064,1.9567,1.5174,-0.1527 -0x221dd,CUS_0x8603,August,20,464-87-3935,Manager,116897.68,9893.473333,0,4,12,1,Home Equity Loan,,11,10.35,6,Good,742.09,38.1101431,,NM,75.39938582,489.1862728,Low_spent_Large_value_payments,694.7616747,0,-1.4391,-2.0203,1.2268,1.8293,0.6299 -0x221e9,CUS_0x1be0,August,43,620-09-7019,Accountant,37443.13,,2,4,7,0,,1.031770075,1.202518271,7.33,2,_,927.6299274,25.06510099,25 Years and 9 Months,NM,0,383.263701,Low_spent_Small_value_payments,215.8623824,0,-0.5919,0.775,-0.2618,0.1612,1.9857 -0x221f5,CUS_0x2f49,August,26,524-50-8228,Journalist,29434.08,,9,6,31,100,"Not Specified, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,25,26.97,14,_,2342.293196,33.88833472,2 Years and 8 Months,Yes,63.92120899,32.63766702,High_spent_Medium_value_payments,420.3222535,0,2.1601,1.8001,0.4148,-0.4045,0.6028 -0x22201,CUS_0x3d40,August,22,#F%$D@*&8,Entrepreneur,82410.12,,0,3,2.288361749,0,Student Loan,8.640318763,11,0.89,4,_,587.66,33.3674201,32 Years and 3 Months,No,56.203542,857.9141508,!@9#%8,469.1707682,0,-1.0808,-0.2692,0.5781,-0.8217,-0.0906 -0x2220d,CUS_0x58b2,August,31,673-29-9342,Writer,120696.88,10331.07333,8,5,5363.288362,0,,16.36990766,,8.91,7,Good,425.0756658,43.32988231,23 Years and 3 Months,No,0,835.3505795,High_spent_Medium_value_payments,918.6935993,0,0.2525,0.429,-0.0475,-0.6306,0.1646 -0x22219,CUS_0x8984,August,30,669-48-7668,_______,154493.88,13023.49,2,4,11,4,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Personal Loan",,6,7.41,3,Good,577.39,36.30981858,17 Years and 0 Months,No,328.0651114,710.3263567,High_spent_Small_value_payments,523.9575319,0,0.557,0.98,-1.7075,-1.6129,-0.6969 -0x22225,CUS_0x8b66,August,30,454-08-3421,Doctor,39189.92,3049.826667,4,7,5,1,Student Loan,,10.40690093,10.81,2,Standard,1516.010758,37.34521676,20 Years and 6 Months,NM,24.00578501,33.84153491,High_spent_Medium_value_payments,497.1353467,0,1.909,0.1139,-0.8391,0.2348,-0.7808 -0x22231,CUS_0x1691,August,44,003-83-8192,Media_Manager,44744,3457.666667,3,3,10,0,,9.055051465,11,5.39,6,_,761.54,39.90186197,22 Years and 10 Months,No,0,109.4065661,High_spent_Medium_value_payments,486.3601006,0,-1.5235,0.816,-0.4257,0.9446,-0.6007 -0x2223d,CUS_0xc68d,August,41,527-59-1992,Musician,15497.02,1193.418333,8,4,19,2,"Home Equity Loan, and Debt Consolidation Loan",18.13022303,,9.61,6,Standard,1180.56,35.18822549,15 Years and 11 Months,Yes,24.16668313,107.7188638,Low_spent_Medium_value_payments,267.4562864,0,-0.2807,0.4134,-0.9008,0.8769,1.0676 -0x22249,CUS_0x5b2,August,40,402-39-2991,Doctor,28144.3,,7,7,25.06745738,7,"Personal Loan, Personal Loan, Home Equity Loan, Personal Loan, Not Specified, Student Loan, and Auto Loan",,25,16.33,8,Bad,3183.390954,31.3626818,9 Years and 6 Months,Yes,150.4909724,142.3229585,Low_spent_Small_value_payments,201.2016145,0,-1.366,0.5448,-1.9531,-0.2817,-0.4307 -0x22255,CUS_0xa624,August,21,722-59-3496,_______,46246.9,,7,5,11,7,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",26.07160894,18,15.46,4,Standard,1120.46,29.53489286,7 Years and 11 Months,NM,223.6858517,39.96770572,High_spent_Large_value_payments,353.9372759,0,-0.5,-0.7096,0.5227,1.4144,-0.1202 -0x22261,CUS_0xc3b9,August,18,813-06-0003,Doctor,80718.56,6543.546667,3,6,10,7,"Home Equity Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Not Specified",11.2954164,11,10.77,10,_,1346.31,30.69126114,19 Years and 5 Months,Yes,368.4280762,114.661301,High_spent_Large_value_payments,411.2652894,0,-0.1126,0.9597,-0.7497,-0.6103,-0.2712 -0x2226d,CUS_0x8672,August,27,#F%$D@*&8,Writer,30619.73,,5,3,19,2,"Home Equity Loan, and Debt Consolidation Loan",28.56029867,20.68968062,9.88,4,Standard,1249.363803,39.62687483,27 Years and 4 Months,Yes,30.45301391,74.38507273,Low_spent_Medium_value_payments,450.22633,0,0.3033,-0.0187,1.445,-0.0456,0.0327 -0x22279,CUS_0x96e5,August,23,947-60-0883,Developer,19017.29,,9,6,18,6,"Debt Consolidation Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Student Loan, and Not Specified",,19,5.96,11,_,2088.76,27.69295298,18 Years and 8 Months,Yes,71.66686597,107.284669,Low_spent_Small_value_payments,285.2258817,0,1.9366,-0.2205,0.7535,0.5611,-1.2859 -0x22285,CUS_0x928f,August,39,117-83-9437,Accountant,79621.26,,8,7,12,3,"Home Equity Loan, Personal Loan, and Credit-Builder Loan",13.68352601,13.51529061,8.31,8,Standard,1550.24228,34.20501176,18 Years and 10 Months,Yes,140.0485863,,High_spent_Small_value_payments,447.005073,0,-0.3554,-0.3598,1.5624,-0.3032,-1.1709 -0x22291,CUS_0x771e,August,32,923-06-8667,Teacher,20914.47,,8,5,16,2,"Debt Consolidation Loan, and Personal Loan",,,0.98,7,_,1485.021688,35.78560646,12 Years and 8 Months,Yes,25.95824477,,Low_spent_Medium_value_payments,297.1794809,0,-1.7351,-0.3365,0.4493,-0.0802,-0.1553 -0x2229d,CUS_0x5220,August,31,822-95-3680,Musician,39916.18,3257.348333,8,5,19,9,"Student Loan, Not Specified, Not Specified, Credit-Builder Loan, Auto Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",31.49024733,22,17.13,7,Bad,3988.4,27.44734505,9 Years and 10 Months,Yes,163.2808288,,High_spent_Small_value_payments,241.563726,0,-0.6994,-1.3749,-1.6309,-1.2519,0.0693 -0x222a9,CUS_0x833d,August,32,732-53-2113,Entrepreneur,15528.29,1340.024167,8,8,21.88954781,7,"Not Specified, Payday Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Student Loan",17.66630076,14,8.69,10,_,3025.44,29.40412047,7 Years and 8 Months,NM,1389.909607,10000,Low_spent_Small_value_payments,262.6696423,0,0.4869,-0.7728,-1.4113,0.4702,-0.0749 -0x222b5,CUS_0xbe56,August,34,346-66-7622,Media_Manager,19807.545,,0,3,10,3,"Home Equity Loan, Student Loan, and Personal Loan",,8,8.94,1,Good,1286.59,24.80356556,22 Years and 2 Months,No,38.29618289,32.30244566,High_spent_Medium_value_payments,373.6642464,0,0.1686,-1.0199,0.8377,-1.1163,-1.1925 -0x222c1,CUS_0xbfbf,August,43,167-92-5388,Mechanic,59426.92,4363.489902,6,5,25.06745738,9,"Home Equity Loan, Payday Loan, Student Loan, Student Loan, Credit-Builder Loan, Student Loan, Not Specified, Personal Loan, and Home Equity Loan",26.24669852,17,18.06,15,Bad,4713.280954,41.65676344,10 Years and 2 Months,Yes,643.4714102,,High_spent_Medium_value_payments,340.4752199,0,0.5668,0.6872,0.8918,-0.8002,-0.3975 -0x222cd,CUS_0x894f,August,33,647-50-0887,Scientist,19223.95,1761.995833,10,8,24.06745738,4,"Not Specified, Mortgage Loan, Not Specified, and Mortgage Loan",,,14.1,15,Bad,1966.306947,23.9921497,18 Years and 5 Months,Yes,47.63077264,175.613621,Low_spent_Small_value_payments,216.2349017,0,-0.2537,-0.8621,1.274,-1.1495,-0.6123 -0x222d9,CUS_0x67c8,August,37,738-90-3259,Lawyer,36875.14,,6,4,13,4,"Mortgage Loan, Payday Loan, Not Specified, and Personal Loan",23.91600713,16,18.42,3,Standard,473.6,28.84302428,16 Years and 3 Months,Yes,109.8943871,183.4303604,Low_spent_Small_value_payments,281.2680858,0,-0.6552,0.8699,1.1492,-0.6266,1.3609 -0x222e5,CUS_0x69bf,August,38,514-39-2995,Engineer,10156.33,,6,8,20.88954781,8,"Not Specified, Personal Loan, Payday Loan, Payday Loan, Payday Loan, Not Specified, Not Specified, and Not Specified",28.61489228,20,25.76,14,_,4345.51,28.92421807,10 Years and 9 Months,Yes,1382.773939,,Low_spent_Large_value_payments,217.4269563,0,0.8955,-1.0781,-0.2988,-0.1168,0.2363 -0x222f1,CUS_0xbd7c,August,33,154-57-2394,_______,20922.34,,7,6,18,3,"Payday Loan, Student Loan, and Personal Loan",18.10114045,13,8.6,7,Standard,363.49,26.8656669,32 Years and 11 Months,Yes,40.81664089,,High_spent_Large_value_payments,369.7848003,0,0.221,0.1801,0.1619,0.982,-1.821 -0x222fd,CUS_0x6974,August,40,244-46-0261,Teacher,113040.28,9174.023333,1,5,10,1,Personal Loan,11.21021324,9,9.84,2,Good,9.359432086,35.35792595,17 Years and 4 Months,NM,70.99201655,177.4364137,High_spent_Large_value_payments,935.0432105,0,-1.0843,-1.0152,-0.7881,-0.0421,-0.1801 -0x22309,CUS_0x4c0,August,39,880-98-7137,Media_Manager,74017.08,,6,10,21.95700519,100,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Student Loan, Mortgage Loan, and Credit-Builder Loan",48.26772771,27,21.76,12,Bad,4910.350954,28.11934555,3 Years and 4 Months,Yes,1542.483155,229.2260661,Low_spent_Medium_value_payments,424.7494091,0,0.9374,-1.6341,-0.2325,-0.4805,-0.8127 -0x22315,CUS_0x7500,August,36,841-44-2527,Scientist,166621.84,,0,3,0.288361749,0,,4.503800158,8,5.53,1,Good,432.7219613,34.35359469,,No,0,1623.877148,Low_spent_Small_value_payments,605.9259342,0,1.501,0.1466,1.0982,0.883,-1.0105 -0x22321,CUS_0x6cf6,August,44,501-66-4455,_______,105774.57,8540.5475,5,5,16,2,"Auto Loan, and Payday Loan",12.71413149,8,15.38,7,_,582.13,35.66706804,29 Years and 0 Months,Yes,148.6555317,,High_spent_Medium_value_payments,837.4314028,0,0.304,1.0384,-0.8496,0.3785,0.8766 -0x2232d,CUS_0x143d,August,27,797-30-1627,Scientist,19827.36,,8,7,17,1,Auto Loan,12.22326724,10,9.96,6,_,282.29,25.01789639,22 Years and 8 Months,NM,15.04120329,70.85315783,Low_spent_Small_value_payments,351.0336389,0,0.8079,2.5215,-0.1505,0.1783,-1.1486 -0x22339,CUS_0x6406,August,36,640-91-5326,Scientist,41442.4,,3,1,5,4,"Payday Loan, Not Specified, Home Equity Loan, and Payday Loan",,6,9.54,6,_,386.1382407,37.11851601,25 Years and 0 Months,No,125.404285,,High_spent_Medium_value_payments,389.1749169,0,0.3696,1.354,0.3929,-1.2385,1.5319 -0x22345,CUS_0x2b3c,August,52,#F%$D@*&8,Accountant,35751.93,3133.3275,5,5,261.2883617,0,,0,1,7.54,0,Good,343.5581569,34.99797138,30 Years and 6 Months,No,0,477.9699885,High_spent_Medium_value_payments,513.9008894,0,-2.2297,-1.2142,-0.0052,-2.0889,0.317 -0x22351,CUS_0x4d19,August,18,809-23-0817,_______,7448.78,,3,7,16,100,"Mortgage Loan, and Debt Consolidation Loan",21.60939509,17,12.81,15,Standard,1362.72,27.82010056,20 Years and 4 Months,Yes,8.593567256,24.82808586,Low_spent_Medium_value_payments,326.1515135,0,0.2574,-0.2756,-0.0268,-0.098,1.662 -0x2235d,CUS_0x5204,August,37,503-20-4145,Developer,39706.44,3387.87,10,8,31.95700519,8,"Payday Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Personal Loan, Home Equity Loan, and Personal Loan",,19.8947583,29.21,8,Bad,5184.091527,26.4641574,7 Years and 4 Months,Yes,1579.210649,142.5245961,High_spent_Medium_value_payments,146.0013858,0,-0.4745,-2.2309,-1.5428,1.3655,-0.767 -0x22369,CUS_0x217f,August,36,666-11-6933,Mechanic,86032.17,7189.3475,3,6,6.288361749,2,"Personal Loan, Debt Consolidation Loan, and Payday Loan",,0,3.07,1,Good,1052.714004,37.90992356,31 Years and 5 Months,No,135.6166405,920.8277219,Low_spent_Medium_value_payments,430.2725628,0,-0.6191,-1.2079,-0.0953,0.7791,-0.7572 -0x22375,CUS_0x5c7d,August,38,#F%$D@*&8,Developer,7467.86,661.3216667,9,10,21.06745738,2,"Payday Loan, and Payday Loan",24.79483183,,10.84,15,_,1781.279893,25.19837682,14 Years and 8 Months,Yes,12.35395766,87.64699197,Low_spent_Small_value_payments,229.4109291,0,0.8037,0.4542,-0.407,0.3801,-1.9688 -0x22381,CUS_0x36a2,August,19,670-46-2510,Lawyer,31318.84,2334.903333,8,9,27.95700519,8,"Credit-Builder Loan, Auto Loan, Auto Loan, Not Specified, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",34.93501937,22,28.55,10,Bad,4509.560954,41.81603927,9 Years and 5 Months,Yes,1467.78842,215.968135,Low_spent_Large_value_payments,98.68340948,0,0.7283,0.5657,-0.8341,1.398,0.2964 -0x2238d,CUS_0x9985,August,27,#F%$D@*&8,_______,29394.88,,6,3,8,0,,25.37023043,17,7.17,7,Standard,519.81,35.3722864,19 Years and 9 Months,No,0,57.73229592,High_spent_Medium_value_payments,454.9250374,0,0.3679,-1.2443,0.8925,0.1656,1.6358 -0x22399,CUS_0x9bc7,August,22,686-05-1940,Mechanic,35033.33,,5,5,7,4,"Personal Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",19.43307817,14,-0.92,3,_,1319.63,32.20335856,20 Years and 3 Months,NM,60.8062385,175.5559226,Low_spent_Medium_value_payments,364.1822555,0,1.1288,1.377,2.4228,0.256,-0.029 -0x223a5,CUS_0x6d02,August,39,912-24-1328,Entrepreneur,76519.3,6277.608333,5,7,10,4,"Student Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",1.30439203,5,10.43,3,Good,260.85,33.23967149,32 Years and 3 Months,No,228.5434194,120.4197938,High_spent_Large_value_payments,518.7976202,0,-1.2596,1.5545,2.0724,1.9702,-1.3786 -0x223b1,CUS_0x4faf,August,35,017-71-4068,Engineer,70590.98,5602.581667,4,4,3.288361749,2,"Auto Loan, and Credit-Builder Loan",0,3,10.19,,Good,223.7974554,23.83688064,21 Years and 5 Months,No,61.84529519,11606.9251,Low_spent_Small_value_payments,519.2427066,0,0.5918,0.8379,0.4514,1.9364,1.4553 -0x223bd,CUS_0xbd07,August,20,778-35-8040,Developer,83340.98,6978.081667,2,1,5.288361749,0,Mortgage Loan,0,1,11.49,9,_,822.5047735,35.7942434,22 Years and 8 Months,NM,53.55095826,607.2517498,High_spent_Medium_value_payments,733.6876004,0,0.278,-1.0355,-0.4126,-0.8826,-0.9983 -0x223c9,CUS_0x14d8,August,47,577-56-8377,Writer,53052.2,4546.016667,6,5,12,2,"Credit-Builder Loan, and Payday Loan",,10.19599821,6.57,4,Standard,472.2537557,28.46298818,17 Years and 0 Months,No,79.60689296,,Low_spent_Small_value_payments,126.545832,0,-0.6795,-0.8137,-0.7815,-1.6515,-1.3148 -0x223d5,CUS_0x107e,August,18,463-69-6790,Architect,75095.91,6269.9925,5,6,15,6,"Personal Loan, Payday Loan, Personal Loan, Student Loan, Home Equity Loan, and Payday Loan",9.735433077,10,20.53,8,Standard,989.71,24.21913739,12 Years and 0 Months,Yes,78446,,Low_spent_Medium_value_payments,234.0665603,0,-0.4109,-0.3235,0.2504,0.9066,-0.0922 -0x223e1,CUS_0x3799,August,53,821-63-1934,Journalist,15874.01,,1,3,5,0,,,7.066078385,2.32,3,Good,1308.909694,31.10267784,32 Years and 3 Months,No,0,,Low_spent_Small_value_payments,253.8473365,0,-1.5189,-2.456,-0.2027,0.2155,1.1434 -0x223ed,CUS_0x6623,August,26,877-03-5521,Musician,38480.95,2912.745833,5,3,2,0,,3.444066093,3.574939588,6.81,4,Good,1385.278981,30.08998617,20 Years and 10 Months,No,0,203.6752511,Low_spent_Small_value_payments,377.5993322,0,0.415,-0.9189,0.4201,1.4002,-0.8242 -0x223f9,CUS_0x4e43,August,19,781-53-2870,Accountant,8295.87,,8,9,1440.957005,8,"Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Payday Loan",43.95824175,24.87920825,24.94,8,Bad,4239.728807,31.44243076,,Yes,1375.363535,90.24808877,Low_spent_Medium_value_payments,181.6702572,0,-0.1923,0.1989,0.6792,-0.0587,0.0574 -0x22405,CUS_0x9cdf,August,18,670-04-8813,Media_Manager,7699.255,,6,10,27.88954781,7,"Auto Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",26.8926566,21,22.15,12,Bad,3148.21,28.04122716,12 Years and 8 Months,Yes,1356.934172,72.5945211,Low_spent_Large_value_payments,227.1016842,0,-0.0151,-1.5431,0.1669,-0.8407,-0.023 -0x22411,CUS_0x3229,August,38,297-70-4360,Writer,9830.785,977.2320833,10,5,31,9,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Student Loan, Mortgage Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",,21.53367218,4.2,9,Bad,4110.722323,32.87106312,1 Years and 8 Months,Yes,55.70225291,,Low_spent_Medium_value_payments,225.4369196,0,-0.053,1.2423,-0.6523,-1.078,0.5003 -0x2241d,CUS_0x51eb,August,42,636-59-6888,Journalist,60764.4,5285.7,7,7,11,4,"Personal Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",12.50939135,8,12.81,6,Standard,2065.33,30.45727933,18 Years and 4 Months,Yes,163.6269834,277.6803041,Low_spent_Large_value_payments,357.2627124,0,0.8012,0.4652,1.0122,1.0195,-0.5585 -0x22429,CUS_0xa4e7,August,42,625-58-3829,Musician,17481.785,,4,6,5,2,"Payday Loan, and Home Equity Loan",23.28740619,19,5.72,0,Good,1029.489061,37.11519154,24 Years and 9 Months,No,18.07981229,87.11040906,Low_spent_Large_value_payments,348.4541905,0,1.9484,-1.6684,0.0825,0.6273,-0.7492 -0x22435,CUS_0x30f7,August,35,402-04-1025,Journalist,36048.08,2949.006667,3,7,14,2,"Debt Consolidation Loan, and Payday Loan",18.89703321,13,19.7,6,_,571.06,37.36521331,14 Years and 2 Months,Yes,45.77263566,64.65315094,High_spent_Medium_value_payments,434.4748801,0,0.3654,0.4202,-0.1429,-0.2005,0.3673 -0x22441,CUS_0x2b9e,August,26,798-92-7062,Engineer,44320.68,,6,7,16,5,"Payday Loan, Personal Loan, Auto Loan, Auto Loan, and Auto Loan",20.30436458,,7.1,6,Bad,3025.196864,36.72161299,,NM,137.8971703,,Low_spent_Medium_value_payments,336.0944606,0,0.2176,0.245,1.9166,1.1311,-0.9756 -0x2244d,CUS_0xabea,August,21,339-65-0460,_______,14243.975,,6,5,12.06745738,2,"Credit-Builder Loan, and Credit-Builder Loan",16.2849037,10,14.73,8,Standard,1703.530954,29.61787447,12 Years and 3 Months,Yes,14.28190122,,Low_spent_Medium_value_payments,235.0619055,0,0.8375,-2.0074,0.0816,-0.0909,0.0006 -0x22459,CUS_0xc592,August,36,#F%$D@*&8,Architect,43570.6,3853.883333,4,3,17,4,"Not Specified, Credit-Builder Loan, Personal Loan, and Not Specified",22.16510701,15,18.81,6,Standard,957.7459641,34.36107719,24 Years and 10 Months,Yes,124.2302936,,Low_spent_Large_value_payments,170.0007232,0,1.0967,-0.438,-1.444,0.8505,2.2228 -0x22465,CUS_0x896e,August,49,082-88-7036,Accountant,30807.57,2796.2975,0,5,4,4,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Personal Loan",14.6918854,,4.88,3,_,630.2980665,25.67142388,,No,88.49211489,176.3362293,High_spent_Small_value_payments,297.4508949,0,-0.6439,-0.4585,1.6714,-0.433,-0.6144 -0x22471,CUS_0x7a6c,August,32,492-59-4587,Writer,29265.3,,10,9,34.88954781,6,"Student Loan, Mortgage Loan, Not Specified, Personal Loan, Home Equity Loan, and Auto Loan",50.8794376,25.01578379,3.65,7,Bad,1672.695471,28.18613936,19 Years and 9 Months,Yes,1443.606187,163.9131392,Low_spent_Small_value_payments,229.2280929,0,0.8366,0.3519,-0.5113,0.1835,-1.3438 -0x2247d,CUS_0xa41f,August,27,022-35-8575,Scientist,74193.7,6275.808333,0,5,4.288361749,0,,2.709429465,6,3.32,4,Good,228.53,28.17987061,30 Years and 10 Months,No,0,,High_spent_Large_value_payments,710.3056594,0,-0.2794,-0.9726,1.4239,-0.4538,-0.4271 -0x22489,CUS_0x41e8,August,30,#F%$D@*&8,Musician,30693.42,,6,9,31.06745738,8,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Home Equity Loan, Not Specified, Home Equity Loan, and Student Loan",,24.22311262,23.04,9,_,4427.735289,27.03039097,7 Years and 11 Months,Yes,136.2344146,165.1362419,Low_spent_Large_value_payments,189.3875555,0,-1.0242,-0.1364,-0.1146,-0.3626,-0.1134 -0x22495,CUS_0x33dc,August,44,363-00-8931,Musician,8555.805,528.98375,6,10,23.06745738,5,"Not Specified, Personal Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",46.82636022,25.7313514,3.85,9,Bad,3492.164535,25.65534888,11 Years and 2 Months,Yes,29.05021775,,High_spent_Medium_value_payments,230.333304,0,1.9888,1.0476,0.2654,0.2484,0.2496 -0x224a1,CUS_0x4732,August,27,393-18-8678,Scientist,53878.98,4328.915,4,3,5,100,"Auto Loan, and Auto Loan",,18,1.49,3,_,1119.16,35.92697355,,No,78.35063697,212.3499477,Low_spent_Small_value_payments,432.1909153,0,1.7533,-0.6877,0.8389,1.0526,1.5477 -0x224ad,CUS_0x79ca,August,46,918-26-9767,Journalist,44801.72,3973.476667,0,5,6,1,Debt Consolidation Loan,9.66985362,9,4.03,5,Good,141.3276329,32.33518478,32 Years and 5 Months,No,21.76253187,131.4531395,High_spent_Small_value_payments,518.6668879,0,-0.8899,1.4445,-1.9956,0.4007,-1.5034 -0x224b9,CUS_0x9f67,August,31,177-77-8308,Accountant,29465.73,,2,7,1,0,,0,2,10.01,4,Good,1171.28,28.84592143,22 Years and 10 Months,No,0,,Low_spent_Large_value_payments,442.5487537,0,0.5696,0.6621,2.6187,-0.8495,-1.0688 -0x224c5,CUS_0xc2ae,August,45,#F%$D@*&8,Doctor,36122.51,,3,7,20,1,Debt Consolidation Loan,20.23625523,14,2.59,4,Standard,893.3,27.88101122,30 Years and 6 Months,No,17.20263525,34.55324786,High_spent_Medium_value_payments,509.0650336,0,-1.4418,-0.1451,1.3237,0.1586,-1.1927 -0x224d1,CUS_0x48cc,August,40,138-71-8952,Media_Manager,28649.99,,7,7,9,3,"Debt Consolidation Loan, Personal Loan, and Personal Loan",,20,19.61,8,Standard,1412.93,35.73811929,11 Years and 2 Months,Yes,70.06501809,142.3529508,High_spent_Small_value_payments,274.9319478,0,-0.2816,1.4608,0.107,-1.7824,-1.1428 -0x224dd,CUS_0x79a,August,18,308-57-0961,Mechanic,78858.4,6765.533333,4,5,16,2,"Not Specified, and Debt Consolidation Loan",22.39553294,,14.84,8,Standard,1173.81,40.78256892,14 Years and 11 Months,Yes,108.9428004,159.6265652,!@9#%8,647.9839678,0,-1.6597,0.9199,0.2287,-1.1432,-0.5368 -0x224e9,CUS_0x226a,August,23,817-48-2346,Developer,14128.68,,4,107,9,2,"Payday Loan, and Student Loan",20.57105947,18,14.32,4,Standard,314.56,38.69433986,20 Years and 0 Months,NM,12.07667022,37.63882981,Low_spent_Small_value_payments,328.7235,0,-0.164,0.4834,-0.3482,0.2085,-0.8794 -0x224f5,CUS_0x808d,August,22,412-24-5325,Teacher,17570.26,1352.687492,6,5,32.06745738,5,"Student Loan, Personal Loan, Credit-Builder Loan, Student Loan, and Personal Loan",,21,20.25,8,Bad,3373.910954,24.2680102,14 Years and 8 Months,Yes,149.6414483,193.4466897,Low_spent_Small_value_payments,147.3112487,0,0.2317,-0.2563,-0.7785,-0.1265,0.4896 -0x22501,CUS_0x38a7,August,26,774-52-8320,Developer,11650.835,1125.902917,6,7,3,4,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",18.63350246,12,6.78,6,Good,331.6808337,30.51268102,23 Years and 0 Months,No,23.32579106,65.59997026,High_spent_Small_value_payments,291.8808956,0,-0.1969,-0.2868,0.0605,0.7784,0.1701 -0x2250d,CUS_0x6f92,August,35,474-01-3910,Lawyer,15663.65,,4,4,19,4,"Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",22.6202098,18.33199687,7.8,12,_,2293.557269,32.23607836,6 Years and 0 Months,Yes,27.02678207,66.76543843,Low_spent_Small_value_payments,320.8381962,0,0.597,-1.0769,-0.346,0.7084,-0.0866 -0x22519,CUS_0xbc99,August,23,041-96-6885,Mechanic,38985.96,2980.83,6,8,15,9,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Personal Loan, Student Loan, Home Equity Loan, Personal Loan, and Personal Loan",31.82854834,17,20.86,10,Bad,3879.42,31.22168466,2 Years and 2 Months,Yes,279.3249669,170.7474563,Low_spent_Small_value_payments,138.0105768,0,0.7686,0.0002,0.3128,-0.511,-0.3648 -0x22525,CUS_0x9415,August,33,958-62-8811,Musician,139711,11526.58333,6,7,14.28836175,6,"Mortgage Loan, Payday Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",12.65894035,11.91650558,11.82,8,_,1230.098306,28.03641231,13 Years and 8 Months,Yes,560.708462,10419.93746,High_spent_Large_value_payments,753.6809387,0,0.062,-0.7266,-0.4686,-0.1395,-0.8556 -0x22531,CUS_0x25d8,August,49,373-55-7769,Architect,43508.74,,0,3,0.288361749,2,"Debt Consolidation Loan, and Credit-Builder Loan",9.824825532,11.42577527,6.17,5,_,60.69876558,26.20451147,28 Years and 0 Months,No,68.82170474,10419.93746,High_spent_Medium_value_payments,426.4163882,0,0.5298,0.642,0.554,1.1048,0.6334 -0x2253d,CUS_0x3903,August,27,532-10-1755,Journalist,51796.84,,6,7,17.28836175,0,,,15,7.54,5,_,387.9,24.67809424,32 Years and 5 Months,Yes,0,650.989329,!@9#%8,475.4884653,0,-0.1489,0.7099,0.3101,0.346,-0.4088 -0x22549,CUS_0x46b6,August,44,443-48-7118,Entrepreneur,63023.18,5028.931667,3,4,5,4,"Home Equity Loan, Student Loan, Debt Consolidation Loan, and Student Loan",,11,5.08,1566,Good,1151.375238,30.5251934,30 Years and 4 Months,No,157.7287378,489.3391063,Low_spent_Small_value_payments,200.8773122,0,0.214,0.5649,-1.2125,-0.4359,-0.969 -0x22555,CUS_0x16ae,August,40,567-87-6871,Musician,51034.12,,6,4,6,2,"Student Loan, and Credit-Builder Loan",31.07794985,23,11.87,1,Standard,1350.85,33.73788997,16 Years and 2 Months,Yes,65.43101498,108.8138124,High_spent_Large_value_payments,515.739506,0,0.7224,-0.0694,0.403,-0.7872,0.0539 -0x22561,CUS_0x3787,August,52,986-71-6476,Engineer,21270.79,,6,6,9,4,"Personal Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",9.552128704,7,11.62,6,Standard,727.3229581,37.69463196,,Yes,233.0854743,214.7677711,Low_spent_Small_value_payments,199.5052107,0,0.5553,0.1249,-1.1705,-1.4163,-1.4582 -0x2256d,CUS_0x3077,August,30,226-22-5425,Doctor,32300.64,,6,7,29.06745738,5,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Auto Loan, and Credit-Builder Loan",21.72835214,11,9.12,6,_,2316.060954,32.70584291,,Yes,102.6678937,10000,High_spent_Medium_value_payments,276.110632,0,-0.0019,0.6722,1.4034,1.4475,-0.8853 -0x22579,CUS_0xc015,August,42,772-43-1331,Teacher,15811.83,1527.6525,5,6,6,6,"Home Equity Loan, Mortgage Loan, Auto Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",24.20462062,16,11.25,5,Standard,171.8,34.62913949,8 Years and 4 Months,Yes,62.48466605,92.61861573,Low_spent_Medium_value_payments,277.6619682,0,-0.7794,-0.6604,0.8894,0.2731,-1.3673 -0x22585,CUS_0x5e56,August,52,127-75-1934,_______,38104.04,3399.336667,5,4,7,2,"Debt Consolidation Loan, and Student Loan",0.704355735,5,4.62,0,_,735.58,41.48212247,17 Years and 0 Months,No,62.90314247,,!@9#%8,397.663001,0,0.1142,-0.3491,2.2145,0.8707,-0.6173 -0x22591,CUS_0x3631,August,39,645-88-3253,Mechanic,7895.62,,6,6,28,6,"Personal Loan, Student Loan, Auto Loan, Mortgage Loan, Auto Loan, and Personal Loan",,21.31829764,32.42,10,_,5384.94743,36.76249163,2 Years and 3 Months,NM,22.96367768,71.8154436,Low_spent_Small_value_payments,278.717712,0,-0.0153,1.0242,3.0135,1.6303,0.8354 -0x2259d,CUS_0x67cb,August,30,726-51-1301,Writer,14433.725,1389.810417,3,3,6,3,"Debt Consolidation Loan, Student Loan, and Auto Loan",,16,12.76,8,Standard,33.79,29.25591061,33 Years and 6 Months,Yes,29.70897931,67.09725239,Low_spent_Small_value_payments,332.17481,0,-0.1383,1.34,1.3849,-0.3827,0.8873 -0x225a9,CUS_0xaea,August,21,#F%$D@*&8,Media_Manager,15508.05,1166.3375,4,6,10,1,Home Equity Loan,16.28188917,12,19.31,9,Standard,597.13,29.01920815,29 Years and 0 Months,Yes,6.750119488,44.01276072,Low_spent_Small_value_payments,355.8708698,0,0.0658,-1.9349,-1.5939,-1.1413,-0.3878 -0x225b5,CUS_0x253a,August,21,580-53-4920,Accountant,50050.83,,9,10,21.06745738,5,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",26.55009355,17.92874626,17.45,8,Bad,3998.032075,27.3221147,4 Years and 8 Months,NM,190.4450602,93.05201407,High_spent_Large_value_payments,338.3728878,0,-1.0881,-1.353,0.4004,0.718,-1.4163 -0x225c1,CUS_0x5cb8,August,35,445-76-5961,Architect,15362.78,,9,6,27.06745738,6,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",,20,17.12,7,Bad,3996.970954,29.74444411,3 Years and 3 Months,Yes,45.75494995,192.8873731,Low_spent_Small_value_payments,168.7605557,0,0.4482,0.5456,0.0097,-1.382,0.5069 -0x225cd,CUS_0xb626,August,36,601-89-0336,Engineer,37921.54,2942.128333,8,5,18,6,"Home Equity Loan, Not Specified, Payday Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",,28.19640811,6.88,13,Bad,1916.879237,35.18454346,18 Years and 11 Months,NM,137.7747993,70.95966579,High_spent_Large_value_payments,325.4783683,0,0.5882,1.8266,-2.1739,-0.4176,0.4295 -0x225d9,CUS_0xac2d,August,18,239-55-7534,Scientist,19243.32,1448.61,6,7,7,100,"Auto Loan, Mortgage Loan, Student Loan, and Not Specified",15.04206032,,12.6,8,Standard,1350.28,32.01690573,11 Years and 6 Months,Yes,53.81387769,,!@9#%8,254.8001162,0,0.553,0.9308,1.0013,1.8453,1.506 -0x225e5,CUS_0x8264,August,43,565-21-5718,Teacher,46407.58,3832.298333,5,4,17,2,"Home Equity Loan, and Mortgage Loan",,18,14.6,9,_,952.39,29.78495219,20 Years and 4 Months,Yes,75.30936408,,!@9#%8,254.8893198,0,0.9892,0.2577,0.3545,-1.9274,1.805 -0x225f1,CUS_0x1884,August,20,829-82-5789,Accountant,20883.55,,10,9,21.06745738,5,"Not Specified, Student Loan, Debt Consolidation Loan, Not Specified, and Not Specified",23.35298898,,18.86,15,Bad,2708.9137,37.03721329,7 Years and 3 Months,Yes,76.52833196,,Low_spent_Small_value_payments,179.6862566,0,1.1699,0.7011,-1.392,1.5583,0.767 -0x225fd,CUS_0x96d3,August,80,024-19-5740,Teacher,87474.24,,4,7,19.28836175,0,,,4019,9.79,1451,Standard,797.03,37.53094482,25 Years and 3 Months,No,9054,,High_spent_Large_value_payments,863.6272943,0,-0.5141,-0.9997,1.0459,-0.7962,-1.0287 -0x22609,CUS_0x3082,August,38,806-23-0871,Mechanic,20367.72,,10,8,34,3,"Credit-Builder Loan, Not Specified, and Payday Loan",19.01060178,14.41679713,20.55,11,Standard,2407.326598,36.72377244,6 Years and 8 Months,Yes,36.59172018,141.9262582,Low_spent_Large_value_payments,244.1130216,0,0.741,1.0161,0.5083,0.5933,-0.8641 -0x22615,CUS_0x60b6,August,52,905-53-9874,Scientist,113368.23,9265.3525,2,1,9,0,,,11,6.51,1,_,488.13,39.27346921,28 Years and 2 Months,NM,0,221.8897297,High_spent_Large_value_payments,944.6455203,0,0.5549,0.8606,-2.6156,-0.6139,-0.8584 -0x22621,CUS_0x276a,August,34,723-19-7235,Accountant,30548.74,,7,5,33,2,"Debt Consolidation Loan, and Mortgage Loan",,24.71723806,14.95,12,Bad,2346.251068,39.5703451,6 Years and 11 Months,Yes,47.15733072,199.3656077,Low_spent_Small_value_payments,316.249895,0,0.1498,-0.9833,0.2247,0.8293,-1.6006 -0x2262d,CUS_0xbd3d,August,27,933-00-0712,Architect,118236.03,9882.0025,4,5,8,0,,1.814181802,2,7.43,0,Good,699.62,31.47667311,22 Years and 4 Months,No,0,178.8978751,High_spent_Large_value_payments,1049.302375,0,0.1082,1.6351,1.2438,0.2872,-0.6672 -0x22639,CUS_0xb913,August,19,967-01-9201,Media_Manager,69803.6,5801.966667,8,5,23,6,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",18.35614559,14.68591808,9.8,12,Standard,2947.859063,33.25677905,16 Years and 10 Months,Yes,223.5612695,103.8766916,High_spent_Large_value_payments,492.7587056,0,-0.6615,0.6337,-0.4041,-0.5693,-1.4322 -0x22645,CUS_0x2ca9,August,51,173-20-3664,Manager,79298.96,6830.246667,8,7,13,1,Mortgage Loan,22.04079395,17,10.26,2,Standard,804.92,26.08871284,33 Years and 5 Months,No,58.09333268,581.4325759,Low_spent_Medium_value_payments,323.4987581,0,-0.5684,-0.957,-1.2247,2.0419,-1.4909 -0x22651,CUS_0xa6c7,August,25,106-93-1975,Journalist,20622.28,1479.523333,7,6,21,3,"Auto Loan, Auto Loan, and Not Specified",25.62314545,18.06058704,13.22,11,Standard,2875.167327,28.0230998,10 Years and 5 Months,Yes,32.64009774,,Low_spent_Medium_value_payments,286.0746514,0,-0.1229,0.0782,-0.3261,-0.5316,0.0674 -0x2265d,CUS_0x2350,August,37,991-52-6653,Architect,109782.32,9439.526667,4,4,19,2,"Not Specified, and Student Loan",,9,7.78,5,Standard,426.4,29.75460035,28 Years and 9 Months,No,92.52665718,,High_spent_Medium_value_payments,799.0833306,0,0.6004,1.7233,-1.21,-1.1758,0.3053 -0x22669,CUS_0x7846,August,46,282-14-9365,Accountant,88380.16,7471.013333,7,7,18.28836175,2,"Student Loan, Home Equity Loan, and Credit-Builder Loan",21.67545944,19,8.7,7,Standard,124.29,36.89709413,25 Years and 11 Months,Yes,129.7236986,512.9589568,High_spent_Medium_value_payments,774.3561389,0,0.5976,-0.0346,-0.4044,0.0251,1.1844 -0x22675,CUS_0x34a9,August,27,930-81-4240,Mechanic,87692.85,,4,6,10,4,"Student Loan, Personal Loan, Student Loan, and Home Equity Loan",21.10433993,,6.21,,Good,1493.806999,36.18965692,24 Years and 3 Months,NM,188.4109291,121.3787112,High_spent_Large_value_payments,644.3841098,0,0.4541,0.7275,0.419,-0.6314,0.1226 -0x22681,CUS_0x66d4,August,35,#F%$D@*&8,Manager,11810.515,,8,4,17,2,"Personal Loan, and Auto Loan",23.02496187,15.73106771,11.6,6,Standard,687.713994,31.11195131,33 Years and 4 Months,Yes,16.71425537,18.89757474,High_spent_Medium_value_payments,315.6091282,0,1.0609,-1.7205,2.9265,1.5695,-1.1256 -0x2268d,CUS_0x732d,August,20,719-61-5845,Doctor,78059.36,6277.946667,6,5,19,1,Student Loan,,10,11.41,9,Standard,1220.42,31.68267425,16 Years and 2 Months,Yes,55.76222911,,High_spent_Small_value_payments,641.4450215,0,1.354,-0.5046,0.0121,0.3774,-0.6757 -0x22699,CUS_0x6510,August,42,029-49-9162,Musician,21671.53,1465.444744,6,7,11,2,"Mortgage Loan, and Credit-Builder Loan",19.06952949,13,15.59,0,Standard,1420.13,28.15207288,32 Years and 11 Months,Yes,199.2192919,88.68901408,Low_spent_Small_value_payments,345.0038664,0,0.6983,-0.2628,0.0479,0.0854,1.2964 -0x226a5,CUS_0xb05d,August,38,265-18-5565,Manager,65214.96,,2,1,11.28836175,0,,12.81829125,,11.82,2,Good,313.6330955,37.0189262,26 Years and 2 Months,No,411.917836,585.6702592,!@9#%8,640.766791,0,1.1476,0.8129,-1.2071,1.2763,0.7027 -0x226b1,CUS_0x854e,August,54,046-01-3589,Doctor,98495.8,8133.983333,5,5,14,1,Home Equity Loan,0.930540077,5,7.73,7,Standard,1362.58,35.33472956,31 Years and 5 Months,Yes,60.7632676,74.29361803,High_spent_Large_value_payments,918.3414477,0,-1.6289,0.1239,0.2276,1.2996,0.6299 -0x226bd,CUS_0x6b04,August,44,030-27-6579,Engineer,20313.63,,9,5,31.06745738,7,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Personal Loan",51.41402291,28.60559307,8.73,11,Bad,4733.683569,32.19473932,11 Years and 2 Months,Yes,97.49822751,153.8308643,Low_spent_Small_value_payments,196.1308702,0,1.3026,-0.4312,0.6961,0.4947,0.2344 -0x226c9,CUS_0x4e1f,August,21,611-79-9351,_______,44454.07,3678.505833,0,4,6,0,,,7,11.51,3,_,576.84,39.59062135,28 Years and 11 Months,No,0,109.7187058,High_spent_Medium_value_payments,508.1318775,0,0.2743,0.0484,0.0109,0.6594,-0.7489 -0x226d5,CUS_0x31b2,August,25,552-70-4063,Engineer,79439.56,,8,6,5.288361749,4,"Payday Loan, Payday Loan, Auto Loan, and Home Equity Loan",14.46349082,14,18.77,6,Standard,75.76,33.19686672,14 Years and 4 Months,Yes,211.5748002,510.8013048,High_spent_Large_value_payments,582.0576893,0,-1.1426,-0.7306,1.0664,-0.1395,-0.4541 -0x226e1,CUS_0x9b4b,August,35,041-67-8086,Engineer,17353657,,0,3,7,1,Credit-Builder Loan,11.52204176,10,5.17,6,Good,116.3,39.41982082,,No,11.76826809,88.58495796,Low_spent_Medium_value_payments,339.388524,0,0.6425,-1.5138,-1.7718,0.8682,0.3513 -0x226ed,CUS_0xd71,August,44,367-64-3220,Entrepreneur,87318.06,7237.505,3,3,7.288361749,0,Payday Loan,,8,-1.19,6,Good,134.94,30.62014894,31 Years and 6 Months,NM,25626,,Low_spent_Small_value_payments,63.84411622,0,0.3735,-1.4539,1.0275,-0.6567,1.2602 -0x226f9,CUS_0x5862,August,25,688-62-7898,Engineer,42936.48,3532.04,8,5,18,8,"Credit-Builder Loan, Home Equity Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",,21.37765748,26.79,11,_,3852.080166,32.21714754,2 Years and 4 Months,Yes,174.6334446,143.4097228,Low_spent_Medium_value_payments,315.1608326,0,-1.2531,-0.7193,-0.6846,-1.0025,0.9943 -0x22705,CUS_0xc17f,August,35,177-97-1122,_______,42915.24,,5,4,10,7,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",24.99046142,18,13.58,5,Standard,2546.8,30.38077609,11 Years and 2 Months,Yes,209.694004,75.2926534,High_spent_Large_value_payments,325.5403426,0,-0.3926,-1.9057,1.9914,1.2667,0.3226 -0x22711,CUS_0x31f8,August,61,666-05-8845,Teacher,10394.805,1038.23375,196,4,8,1,Auto Loan,23.99158341,17,1.82,3,_,119.7879649,29.9510119,20 Years and 3 Months,No,5.24927327,106.2017534,Low_spent_Small_value_payments,294.4301274,0,-0.8183,1.9423,1.1818,0.2845,1.4269 -0x2271d,CUS_0x1f4f,August,20,343-35-6258,Lawyer,17370154,,1,3,6,0,,0.284373788,5,8.68,0,_,933.3376756,29.73414458,23 Years and 11 Months,No,0,63.10858152,High_spent_Small_value_payments,341.74647,0,1.0735,-0.7317,-0.1121,0.2098,2.1235 -0x22729,CUS_0x35dd,August,21,149-70-0176,Architect,78162.72,,10,7,22,4,"Payday Loan, Personal Loan, Student Loan, and Personal Loan",28.19324281,,3.28,12,_,2510.203734,22.14433027,20 Years and 6 Months,Yes,212.5080945,401.6328601,High_spent_Small_value_payments,307.8150453,0,-0.0937,1.2051,0.0384,1.0108,-0.2884 -0x22735,CUS_0x23c8,August,37,209-61-0204,Entrepreneur,81367.12,,5,5,6.288361749,2,"Not Specified, and Home Equity Loan",14.26578142,13,4.78,1,Standard,1039.7,37.32606948,24 Years and 11 Months,No,100.2753164,569.8143318,High_spent_Large_value_payments,684.2071461,0,-1.7136,-0.1044,-1.7226,1.8142,0.6306 -0x22741,CUS_0xbbaf,August,28,472-64-4565,Journalist,57778.98,4766.915,8,5,26,2,"Payday Loan, and Not Specified",28.57907808,20.22584112,11.71,12,Standard,2582.506291,32.87389269,,Yes,63.73594797,242.4541245,High_spent_Small_value_payments,430.5014275,0,-0.7569,1.4043,-0.8155,-0.5589,0.4785 -0x2274d,CUS_0x9e3f,August,36,081-77-6270,Architect,15923.295,,4,3,5,2,"Home Equity Loan, and Debt Consolidation Loan",12.90018054,12,7.89,1,Standard,1480.54,39.32458582,27 Years and 4 Months,No,24.84397733,47.56472602,!@9#%8,349.7854217,0,-0.2862,0.0648,-0.0825,-0.6301,-0.3533 -0x22759,CUS_0x38b3,August,20,726-60-7310,Journalist,75901.92,6102.16,8,10,34.88954781,9,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Payday Loan, Not Specified, Personal Loan, Home Equity Loan, and Student Loan",34.3034109,23.78334581,,11,Bad,3758.314825,30.90773575,6 Years and 11 Months,Yes,1803.981838,129.1393609,High_spent_Medium_value_payments,232.7647198,0,0.0426,0.7577,0.5265,-1.1845,0.4411 -0x22765,CUS_0xa116,August,27,591-43-0273,Journalist,18247.18,1396.598333,10,5,30.06745738,5,"Mortgage Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",,19,16.53,10,Bad,2759.990954,38.86605863,2 Years and 10 Months,Yes,40.76073026,,Low_spent_Large_value_payments,213.8774842,0,1.1086,1.7241,0.5665,-0.723,0.2761 -0x22771,CUS_0x7ad4,August,24,205-29-4255,Entrepreneur,130523.64,9571.975269,6,5,10.28836175,0,Auto Loan,,9,12.36,13,_,420.8207899,38.38885511,18 Years and 2 Months,Yes,1165.234669,1301.549815,Low_spent_Medium_value_payments,470.3391511,0,-1.0283,0.4236,0.9804,-1.3255,0.8792 -0x2277d,CUS_0xde2,August,35,819-51-5513,Accountant,106157,8836.416667,3,5,11,3,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",,20,14.73,9,Standard,1231.03,35.46164434,18 Years and 10 Months,Yes,219.2489026,350.0682453,High_spent_Medium_value_payments,564.3245188,0,-0.1936,-0.9814,1.3302,-0.772,0.5808 -0x22789,CUS_0x70bd,August,36,051-99-1168,Lawyer,55299.72,4896.31,5,4,23,2,"Home Equity Loan, and Auto Loan",11.517171,8.222863254,11.94,10,_,2224.218805,31.48223495,11 Years and 9 Months,Yes,83.66941405,244.2170671,Low_spent_Large_value_payments,431.7445188,0,1.511,-1.6894,-0.8729,-0.6741,1.9851 -0x22795,CUS_0x9d91,August,39,865-87-9562,Media_Manager,20975.94,1321.636826,10,10,27.95700519,8,"Debt Consolidation Loan, Auto Loan, Student Loan, Not Specified, Auto Loan, Student Loan, Personal Loan, and Home Equity Loan",,18,16.83,10,Bad,5010.540954,34.41400471,9 Years and 4 Months,Yes,1578.645877,177.3299457,Low_spent_Small_value_payments,121.5314818,0,-0.1264,-0.9179,0.2246,-0.482,-1.4258 -0x227a1,CUS_0xa4b7,August,46,130-46-1944,Engineer,93666.33,7595.5275,1,8,1,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",9.538295783,9,5.61,3,Good,362.04,28.48638228,28 Years and 5 Months,No,156.9565703,,High_spent_Large_value_payments,688.1067199,0,-0.2636,-0.0291,-1.5197,2.3495,-0.6187 -0x227ad,CUS_0x50e2,August,30,381-25-7601,_______,20965.34,,9,9,29,5,"Auto Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",43.15842782,27.95549476,3.61,10,Bad,1969.322345,34.07962247,14 Years and 4 Months,Yes,59.94214031,52.47971399,Low_spent_Large_value_payments,327.2893124,0,-0.4727,1.4672,0.9695,-0.9258,-1.4885 -0x227b9,CUS_0x49b5,August,47,654-19-7135,Entrepreneur,25608.99,,8,6,8,3,"Student Loan, Credit-Builder Loan, and Not Specified",27.35147056,18,10.39,5,Standard,238.44,29.67930166,29 Years and 6 Months,Yes,50.15524804,76.4588149,High_spent_Small_value_payments,327.7941871,0,-0.9515,1.8383,0.7129,-2.3542,-1.0966 -0x227c5,CUS_0x31c0,August,18,628-30-1467,Manager,59931.4,,9,5,20,9,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Student Loan, Mortgage Loan, Personal Loan, and Not Specified",,22.89456914,20.92,17,Bad,4273.763853,39.92913409,2 Years and 4 Months,Yes,390.854909,354.7002386,Low_spent_Small_value_payments,27.27318576,0,0.788,0.4042,-1.2965,-0.0622,-0.6332 -0x227d1,CUS_0x164a,August,41,580-12-6259,Entrepreneur,80756.36,,5,3,7,3,"Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",0,4,6.38,3,Good,1356.82,33.51560208,29 Years and 5 Months,No,189.1711729,70.33080314,High_spent_Large_value_payments,674.2676906,0,-0.4913,1.5693,-0.6301,0.4371,0.4888 -0x227dd,CUS_0x3176,August,35,158-09-7660,Scientist,94120.35,8083.3625,1,4,3.288361749,2,"Credit-Builder Loan, Not Specified, and Mortgage Loan",9.449178261,9,1.43,1,_,1175.31,22.8235037,20 Years and 5 Months,No,219.7001686,1154.44993,Low_spent_Small_value_payments,144.1236124,0,0.8371,0.7004,1.3189,-0.5075,-2.2006 -0x227e9,CUS_0x6cae,August,33,862-58-7973,_______,27339.81,,3,5,9,1,Not Specified,18.90994414,,4.82,6,Standard,1523.609657,35.06150903,23 Years and 10 Months,NM,14.66875353,208.393312,!@9#%8,318.7696844,0,-0.4338,0.133,-0.0591,-1.0276,-1.4291 -0x227f5,CUS_0x8558,August,36,777-86-8040,Writer,125062.92,10250.91,5,3,11,1,Payday Loan,9.661516619,9,10.49,4,_,1424.96,31.18119859,21 Years and 0 Months,No,73.98129377,515.1839371,Low_spent_Large_value_payments,705.9257692,0,0.1799,-1.8442,-0.6707,0.1565,0.7694 -0x22801,CUS_0xb7d9,August,39,790-51-5647,Scientist,89126.25,7675.1875,4,5,18.28836175,2,"Credit-Builder Loan, and Mortgage Loan",,19,15.8,9,Standard,631.58,37.54492755,18 Years and 6 Months,Yes,125.293142,957.496113,Low_spent_Medium_value_payments,384.666956,0,-0.9015,-0.9864,1.1146,0.5674,-0.8046 -0x2280d,CUS_0x963e,August,30,089-40-1103,Mechanic,112302.04,9220.503333,4,6,6,3,"Auto Loan, Auto Loan, and Student Loan",12.35033795,12,,6,Good,670.4971308,37.08077898,30 Years and 6 Months,No,269.761073,253.7863675,High_spent_Large_value_payments,665.9782988,0,-2.504,-0.574,0.9478,-0.7355,0.5022 -0x22819,CUS_0xc0b7,August,26,883-70-7074,Developer,89531.94,7227.995,3,3,8,1,Mortgage Loan,12.73542042,12,16.95,8,_,1471.5,29.31813857,22 Years and 8 Months,Yes,44.13871635,10000,High_spent_Medium_value_payments,845.6165484,0,1.3512,1.1179,-0.867,-1.7517,-0.5353 -0x22825,CUS_0xb328,August,27,295-75-6474,Engineer,16128.395,1264.032917,7,3,11.06745738,3,"Credit-Builder Loan, Not Specified, and Auto Loan",21.68022102,14,12.54,11,Standard,1436.400954,27.11988082,,Yes,5972,50.34146162,Low_spent_Small_value_payments,302.9974904,0,0.7992,0.3432,0.1212,1.6075,0.2339 -0x22831,CUS_0x77fe,August,25,158-34-8392,Entrepreneur,169789.52,,1,5,10,3,"Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",0,1,2.34,4,Good,368.100898,35.05309203,31 Years and 6 Months,NM,256.0700253,1303.115101,Low_spent_Small_value_payments,352.0435378,0,0.1286,1.853,0.9289,1.4639,-0.9052 -0x2283d,CUS_0x2c2b,August,29,444-54-5613,Entrepreneur,7252.065,530.33875,1483,5,24,3,"Not Specified, Student Loan, and Student Loan",,24,8.94,7,_,1345.66,37.87281852,17 Years and 11 Months,Yes,16.28273334,16.32404876,Low_spent_Large_value_payments,290.4270929,0,0.2463,0.9392,-0.4787,-0.7488,-0.8343 -0x22849,CUS_0x2d02,August,50,313-31-7488,Writer,15603.415,,3,5,7,3,"Home Equity Loan, Payday Loan, and Credit-Builder Loan",1.942917664,2,10.1,1,Good,783.82,28.40214995,18 Years and 9 Months,No,33.83877234,76.52287675,Low_spent_Small_value_payments,325.4668092,0,-1.4754,0.9078,-1.2757,-0.2273,1.6529 -0x22855,CUS_0xb6dd,August,35,532-19-8738,Scientist,73961.12,5950.426667,10,9,17.88954781,9,"Payday Loan, Mortgage Loan, Personal Loan, Payday Loan, Student Loan, Payday Loan, Auto Loan, Home Equity Loan, and Not Specified",,28.15790035,-3.44,9,Bad,1431.097151,37.36300317,7 Years and 9 Months,Yes,1715.592965,400.7902792,Low_spent_Small_value_payments,74.32934168,0,1.8354,-1.4419,0.648,0.5098,-2.3189 -0x22861,CUS_0xae14,August,41,047-52-5852,Media_Manager,15137.3,1303.441667,8,5,32,6,"Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Personal Loan",,15.2527852,15.7,16,_,2090.19213,33.8570968,,Yes,59.76126725,71.58370087,Low_spent_Small_value_payments,288.9991985,0,1.269,0.2879,-0.3734,-0.5556,0.8518 -0x2286d,CUS_0x682b,August,36,926-41-6598,Entrepreneur,17156.79,1216.7325,10,8,25.95700519,9,"Mortgage Loan, Student Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",32.70115862,14,17.46,,Bad,3339.230954,25.52546302,6 Years and 11 Months,Yes,1409.353815,,Low_spent_Small_value_payments,161.2995067,0,-0.9966,-0.435,-0.6729,-0.6869,0.0646 -0x22879,CUS_0x1786,August,23,468-28-0415,Media_Manager,73543.18,,6,3,11,100,,17.84496265,12,1.69,5,Standard,1090.21,38.98632365,17 Years and 6 Months,Yes,0,191.0653183,High_spent_Medium_value_payments,662.7945151,0,2.2379,0.0478,1.5359,-0.7078,-1.598 -0x22885,CUS_0x2de0,August,21,740-92-4058,Engineer,20341.77,,8,4,22,2,"Credit-Builder Loan, and Payday Loan",25.16269172,21.66418618,10.85,7,Standard,2240.747607,26.29584561,18 Years and 8 Months,Yes,31.26661877,211.1363298,Low_spent_Small_value_payments,208.0118014,0,1.2587,-1.0751,0.3378,-0.4082,-0.504 -0x22891,CUS_0x47a5,August,32,827-59-6035,Teacher,17680.69,,6,6,9,4,"Auto Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,13.73296815,11.5,12,Standard,961.3884954,26.09480289,26 Years and 4 Months,NM,31.68734043,116.8210819,Low_spent_Small_value_payments,286.430661,0,-2.178,-0.6688,0.5182,1.3289,0.0869 -0x2289d,CUS_0x3b32,August,80,448-68-4896,Entrepreneur,52487.14,,7,5,8,3,"Not Specified, Debt Consolidation Loan, and Home Equity Loan",19.78157873,19,5.09,4,Standard,1132.46,28.84274752,17 Years and 9 Months,NM,103.1193409,159.3359679,High_spent_Small_value_payments,411.0375245,0,-0.0187,0.0053,-1.0635,-0.1427,0.9068 -0x228a9,CUS_0x8abb,August,29,399-82-7308,Architect,66823.88,5499.656667,3,4,19,0,,,10,7.9,4,_,1107.66,39.79556588,20 Years and 3 Months,Yes,0,414.5202446,Low_spent_Medium_value_payments,415.4454221,0,-0.2426,0.6613,-1.2468,0.4066,-0.8762 -0x228b5,CUS_0x470d,August,27,486-78-9044,Scientist,19543.05,,8,6,16,5,"Not Specified, Mortgage Loan, Payday Loan, Home Equity Loan, and Student Loan",,15,28.91,9,Bad,2691.583651,26.08043131,14 Years and 2 Months,Yes,71.22048301,76.19071982,High_spent_Medium_value_payments,277.1712584,0,-0.2526,-0.2886,1.6002,0.503,-0.3461 -0x228c1,CUS_0xc5a5,August,34,493-76-9159,Manager,35611.71,3255.6425,4,6,2,0,,10.04681465,10,10.06,3,_,1092.47,24.49420889,23 Years and 10 Months,No,0,247.1065233,Low_spent_Large_value_payments,348.4577267,0,-1.0906,0.8667,0.0219,0.227,0.029 -0x228cd,CUS_0x3410,August,24,#F%$D@*&8,Architect,54834.69,4508.5575,7,6,23.06745738,6,"Debt Consolidation Loan, Personal Loan, Payday Loan, Not Specified, Personal Loan, and Student Loan",36.17150548,17.04058832,7.49,10,Bad,3057.450969,29.74834609,9 Years and 9 Months,Yes,258.8627428,71.52634617,High_spent_Medium_value_payments,343.7463731,0,0.0611,-0.9663,-2.0257,-0.2469,1.6933 -0x228d9,CUS_0x5275,August,37,931-63-4701,Manager,40027.94,3462.661667,6,7,18,100,"Home Equity Loan, Payday Loan, Auto Loan, and Mortgage Loan",,13.60845695,15.99,16,Standard,2759.796556,27.56535703,11 Years and 3 Months,Yes,78.1172356,313.8676445,Low_spent_Large_value_payments,224.2812866,0,0.2919,2.2567,-0.0202,0.6894,0.6182 -0x228e5,CUS_0xc1a7,August,44,730-89-2289,Musician,14656.405,,5,5,15,5,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Personal Loan, and Not Specified",,20,7.44,12,Standard,1328.53,36.90148965,,Yes,39.19525656,43.60468743,Low_spent_Small_value_payments,309.6367643,0,1.7587,-1.4787,0.6106,0.0108,-0.1883 -0x228f1,CUS_0x9386,August,27,525-31-6938,_______,32466.18,2769.515,10,10,32.88954781,7,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Student Loan, Student Loan, Not Specified, and Debt Consolidation Loan",26.87412691,17,7.37,10,Bad,1339.97,33.49081033,5 Years and 10 Months,Yes,1511.160851,265.0985747,Low_spent_Small_value_payments,96.36199328,0,-0.7981,-1.1374,-0.5365,-0.3349,-1.0449 -0x228fd,CUS_0x7c0d,August,47,910-44-9683,Accountant,97787.46,,6,5,12,3,"Debt Consolidation Loan, Auto Loan, and Not Specified",14.29452975,12.41343679,9.17,5,Standard,1288.497955,27.88006176,,No,143.5764602,138.997418,High_spent_Large_value_payments,801.3216218,0,0.9089,1.2857,-0.7461,-1.1191,2.1716 -0x22909,CUS_0x4715,August,18,890-82-7544,_______,72817.88,6364.156667,7,4,18,1,Payday Loan,,18,22.86,8,Standard,717.37,32.01059508,18 Years and 0 Months,Yes,46.55610532,,Low_spent_Large_value_payments,554.0609898,0,0.9357,0.2939,0.1551,-0.9704,0.6723 -0x22915,CUS_0x4475,August,21,941-24-2210,Accountant,7845.795,618.81625,10,5,28.06745738,6,"Student Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",,22.81273416,9.43,12,_,2976.511479,30.58490763,6 Years and 0 Months,Yes,19.99449127,59.79820122,Low_spent_Small_value_payments,245.3686446,0,0.1554,0.1622,-0.8314,0.7143,0.5274 -0x22921,CUS_0xe7e,August,25,979-39-8883,Writer,7377.215,,8,10,19.95700519,7,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Mortgage Loan, and Student Loan",43.69226102,24.80175665,3.86,12,Bad,1842.895696,39.9667322,6 Years and 5 Months,Yes,1350.048799,20.10318274,Low_spent_Medium_value_payments,231.2744406,0,-0.6977,-0.0023,0.7655,-1.2232,-0.5726 -0x2292d,CUS_0x72d2,August,34,135-79-9788,Journalist,77885.6,6525.466667,10,5,20,6,"Personal Loan, Auto Loan, Mortgage Loan, Student Loan, Personal Loan, and Home Equity Loan",29.87318149,19.61995244,9.77,11,Bad,1443.544252,25.52841853,19 Years and 10 Months,Yes,310.2510027,174.8079349,High_spent_Medium_value_payments,417.4877291,0,1.0635,0.3434,-0.3977,-0.9323,1.8904 -0x22939,CUS_0x89ab,August,18,465-82-6361,Media_Manager,105910.08,8876.84,6,5,18,3,"Auto Loan, Student Loan, and Debt Consolidation Loan",21.10932636,15,9.67,8,Standard,1300.88,28.91939981,10 Years and 4 Months,NM,241.794376,606.9872584,Low_spent_Medium_value_payments,318.9023656,0,-1.6248,1.1554,-1.3402,-1.254,-0.6939 -0x22945,CUS_0x6dcf,August,18,772-23-6177,_______,66377.52,5770.46,8,3,17,4,"Not Specified, Auto Loan, Debt Consolidation Loan, and Student Loan",23.61264492,20,7.36,12,Standard,1450.51,32.58159153,23 Years and 2 Months,NM,199.4598806,391.0490588,Low_spent_Small_value_payments,276.5370606,0,0.7531,0.7346,1.7716,0.017,-0.3856 -0x22951,CUS_0x7369,August,48,835-59-7996,Writer,11713.625,,3,4,10,1,Not Specified,17.20666118,11,2.3,3,Good,241.98,32.78077247,18 Years and 8 Months,No,9.005230043,70.20052226,Low_spent_Small_value_payments,294.1077894,0,-1.1311,-0.169,-0.161,0.8099,0.0027 -0x2295d,CUS_0x5d9e,August,29,625-00-9287,Journalist,27706.71,2416.8925,1213,6,14.28836175,2,"Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",15.42118829,14,10.49,1,Standard,204.35,37.09833476,19 Years and 0 Months,No,49.1718328,583.5589835,Low_spent_Small_value_payments,318.8958948,0,-0.9463,-2.0072,-0.7567,-2.5206,0.0203 -0x22969,CUS_0x41f2,August,38,397-81-3382,Engineer,63824.07,5383.6725,4,6,18,1,Student Loan,9.144176835,8,10.38,4,_,190.26,40.23201549,19 Years and 11 Months,Yes,27.31945129,178.5845964,High_spent_Medium_value_payments,582.4632023,0,-0.3406,-0.1486,0.8185,0.5811,-0.0589 -0x22975,CUS_0x205f,August,21,914-68-1323,Architect,34361.32,,3,4,11,3,"Not Specified, Not Specified, and Student Loan",,14.65607242,13.36,6,Standard,739.7376869,24.13190473,23 Years and 4 Months,Yes,57.0431107,191.1415114,Low_spent_Small_value_payments,313.9597113,0,-0.7253,0.8417,-0.3104,-0.4514,0.0431 -0x22981,CUS_0x8234,August,44,838-10-8480,_______,10690.96,973.9133333,3,551,15,3,"Auto Loan, Mortgage Loan, and Auto Loan",10.36670204,10.83792223,10.89,3,Standard,285.9490144,32.9823242,32 Years and 9 Months,No,81971,33.24878452,Low_spent_Small_value_payments,329.6880356,0,0.4126,0.3656,0.7122,-0.0595,-4.1383 -0x2298d,CUS_0x242e,August,44,056-99-1422,Teacher,19656.51,,7,5,5,4,"Personal Loan, Payday Loan, Credit-Builder Loan, and Mortgage Loan",23.30770646,20,16.89,11,Standard,786.15,22.10855675,11 Years and 2 Months,Yes,48.68909009,90.82909323,Low_spent_Medium_value_payments,307.6860667,0,0.3956,0.3454,-0.9508,-0.2773,0.9071 -0x22999,CUS_0x865c,August,20,993-96-4833,Manager,35650.02,2696.835,7,4,20,2,"Credit-Builder Loan, and Auto Loan",23.43062556,17,19.28,9,Standard,770.37,34.68738596,20 Years and 5 Months,Yes,37.82791423,,High_spent_Medium_value_payments,405.7118133,0,0.9981,-0.5148,-0.03,1.7021,-0.1443 -0x229a5,CUS_0x2887,August,43,055-75-4532,_______,70137,5830.75,5,6,17,1,Personal Loan,4.414820668,5,9.43,7,_,1416.96,34.71535323,,Yes,45.59523791,362.7089139,Low_spent_Large_value_payments,444.7708482,0,-0.457,0.7096,0.3237,0.2648,-0.1522 -0x229b1,CUS_0x540f,August,35,617-77-4990,Developer,36539.18,3101.085363,2,426,10.28836175,0,,0,1,5.32,1,Good,12.98643468,34.59704631,18 Years and 3 Months,No,160.8463033,,High_spent_Small_value_payments,487.2798186,0,1.9654,-1.4421,-1.2576,1.251,0.2748 -0x229bd,CUS_0xb2fc,August,28,452-02-4154,Doctor,79649.31,,7,3,9,3,"Payday Loan, Debt Consolidation Loan, and Mortgage Loan",16.29628531,14,7.54,3,Good,821.35,34.58818927,27 Years and 10 Months,No,81540,158.6655554,High_spent_Large_value_payments,590.9145515,0,-0.0564,-1.304,1.0197,-0.9103,-0.27 -0x229c9,CUS_0x1ca5,August,28,562-57-6213,Writer,35413.43,2860.119167,6,4,5.288361749,2,"Auto Loan, Student Loan, and Auto Loan",15.20672795,14.27553437,4.48,5,Standard,417.8534559,35.62665645,32 Years and 10 Months,Yes,67.25287694,694.6643453,Low_spent_Small_value_payments,234.0321554,0,-0.9849,1.0384,-0.0727,0.2834,0.7467 -0x229d5,CUS_0x4282,August,23,084-11-7193,Accountant,32507.76,2918.98,6,3,10,3,"Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,14,9.81,4,Standard,384.04,30.83983806,19 Years and 0 Months,Yes,40136,74.40091303,Low_spent_Large_value_payments,434.3729576,0,1.5208,-0.1808,-0.3899,0.7685,0.0941 -0x229e1,CUS_0x13c2,August,40,090-98-4724,Teacher,60682.11,,8,5,24.06745738,5,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,18,26.12,9,Bad,5123.280954,36.27031146,9 Years and 5 Months,Yes,195.4514774,,Low_spent_Medium_value_payments,359.8099357,0,-0.6457,1.8453,-0.4337,0.3783,0.3077 -0x229ed,CUS_0xa78b,August,80,286-47-4960,Lawyer,35469.72,,3,4,10,0,,10.83616064,10,2.38,5,Standard,1266.34,38.13207677,,No,0,186.6182201,Low_spent_Medium_value_payments,376.7627799,0,0.5655,1.252,-0.8485,1.1911,-0.8321 -0x229f9,CUS_0x4469,August,24,218-98-8370,_______,33475.63,,8,7,16,0,,17.22016292,14,11.6,6,Standard,666.72,30.62703528,22 Years and 11 Months,Yes,0,75.68256784,High_spent_Large_value_payments,467.6810155,0,-0.3733,1.1246,-0.4855,0.3537,-1.2966 -0x22a05,CUS_0x5be9,August,53,428-81-0163,_______,125788.8,10621.4,5,1,3.288361749,0,Mortgage Loan,11.19567887,11,7.63,4,_,1267.433643,33.25324839,25 Years and 6 Months,No,64.06467115,910.5545439,High_spent_Medium_value_payments,818.7690667,0,-1.5309,0.6412,0.7923,0.7099,0.0025 -0x22a11,CUS_0xc26e,August,42,996-64-4883,Accountant,52395.84,4278.32,6,3,6,4,"Credit-Builder Loan, Student Loan, Payday Loan, and Personal Loan",,18,13.46,6,Standard,774.35,32.66938127,31 Years and 4 Months,No,108.5439737,,Low_spent_Small_value_payments,81.9861806,0,0.5128,1.5217,-0.0982,-0.3226,-0.3232 -0x22a1d,CUS_0x4671,August,45,667-35-5970,Scientist,62877.92,5071.826667,9,10,21,3,"Mortgage Loan, Student Loan, and Personal Loan",,19.39713464,11.07,6,_,3010.704773,25.01250653,12 Years and 9 Months,Yes,95.2040667,297.7652591,Low_spent_Large_value_payments,384.2133409,0,-1.8911,-0.0189,0.2348,-0.4845,-0.428 -0x22a29,CUS_0x5d75,August,23,#F%$D@*&8,Teacher,114826.56,,4,1,3.288361749,2,"Student Loan, Personal Loan, and Payday Loan",,3,11.01,5,Good,184.9401863,36.86341641,,No,226.8632031,501.5048541,High_spent_Large_value_payments,870.1147437,0,2.3042,-1.0454,0.3657,-0.2067,1.9379 -0x22a35,CUS_0x4ff5,August,24,137-70-2454,Journalist,32486.64,,5,5,8,3,"Not Specified, Payday Loan, and Not Specified",13.02127494,11,13,10,Standard,242.96,38.20882171,18 Years and 5 Months,Yes,37250,,Low_spent_Large_value_payments,245.0590012,0,-0.8959,-1.1619,-0.0935,0.4289,-1.4555 -0x22a41,CUS_0x4170,August,34,719-74-9244,Writer,23336.97,,3,4,20,1,Home Equity Loan,27.66646356,21,5.96,6,Standard,276.17,32.37955796,20 Years and 10 Months,No,17.01999617,,Low_spent_Small_value_payments,260.2221853,0,0.382,0.5798,-1.1075,0.1727,0.1545 -0x22a4d,CUS_0x96c,August,18,339-26-3192,Scientist,15274.54,,7,237,16.06745738,5,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",28.05863099,,7.98,16,Bad,1852.290954,32.46738981,10 Years and 2 Months,Yes,110.0394847,99.3785742,!@9#%8,236.097756,0,-0.6354,-1.1182,0.4297,0.3904,-2.1102 -0x22a59,CUS_0xb464,August,30,689-62-0292,Architect,20278.79,1898.899167,10,7,30,9,"Personal Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Not Specified, Mortgage Loan, Payday Loan, Auto Loan, and Payday Loan",,25,25.55,9,Bad,2787.7,24.11835878,7 Years and 8 Months,Yes,118.7332592,84.81666223,Low_spent_Large_value_payments,256.3399952,0,0.3899,-1.3484,-1.12,0.522,0.5366 -0x22a65,CUS_0xb8f4,August,41,359-27-6721,Mechanic,116014.8,,2,528,2,3,"Home Equity Loan, Credit-Builder Loan, and Not Specified",,4,1.31,6,Good,1271.05,34.86549032,17 Years and 0 Months,No,267.5292466,65.30255621,High_spent_Large_value_payments,897.9581972,0,1.1808,-0.5567,-1.7845,-0.0476,0.3567 -0x22a71,CUS_0x52c2,August,33,033-23-7885,Media_Manager,113637.69,9620.8075,4,6,3.288361749,2,"Mortgage Loan, and Home Equity Loan",7.247661267,10,7.27,0,Good,20.71310887,25.76567784,30 Years and 5 Months,No,139.9700758,1226.976906,Low_spent_Large_value_payments,381.7996552,0,-0.6546,-2.29,0.0808,-0.361,-0.7551 -0x22a7d,CUS_0x4403,August,43,466-30-9517,Writer,132895.5,,1,2,0.288361749,2,"Payday Loan, and Auto Loan",,5,11.64,1,Good,1162.361025,31.23462167,26 Years and 2 Months,No,132.0324482,,High_spent_Large_value_payments,1033.817186,0,0.4142,0.3932,0.7143,-0.1994,0.842 -0x22a89,CUS_0xb593,August,26,476-56-7499,Mechanic,7744.305,670.35875,10,8,25.06745738,6,"Personal Loan, Personal Loan, Student Loan, Student Loan, Personal Loan, and Auto Loan",40.61598326,27.97133665,27.19,13,Bad,5626.602541,24.02936251,1 Years and 11 Months,NM,25.56238265,89.39479056,Low_spent_Small_value_payments,215.3584139,0,-1.3108,0.9091,0.6728,-1.9834,-0.2336 -0x22a95,CUS_0xb594,August,41,809-82-7359,Musician,9106.91,,7,7,19,100,"Credit-Builder Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, Personal Loan, and Payday Loan",28.8815924,21,28.98,14,Bad,2678.858579,29.56275696,,NM,46.58308963,47.52984793,Low_spent_Small_value_payments,290.3846047,0,0.6361,-0.7615,-1.0205,-0.149,1.3776 -0x22aa1,CUS_0x3b83,August,41,251-47-9153,Entrepreneur,56213.84,,6,7,27.06745738,5,"Auto Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",44.20197609,21.98867418,2.77,14,_,4388.138387,24.59370437,4 Years and 8 Months,Yes,120.1594333,311.2585712,Low_spent_Large_value_payments,307.4103742,0,0.6874,-2.0588,0.8148,0.0207,0.3864 -0x22aad,CUS_0x33aa,August,32,671-34-5569,Musician,35843.92,3005.993333,10,10,34.88954781,6,"Student Loan, Auto Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, and Student Loan",,22.44975577,,12,_,4257.100355,38.38832374,3 Years and 0 Months,Yes,1480.150177,,Low_spent_Small_value_payments,155.5103007,0,-1.1261,-1.5601,0.5181,0.5927,-0.161 -0x22ab9,CUS_0x3a3f,August,52,685-35-0038,Media_Manager,9743.51,,4,7,8,2,"Mortgage Loan, and Personal Loan",28.37141518,19,11.82,0,Standard,142.19,39.22958744,24 Years and 5 Months,No,16.04167677,40.64481623,!@9#%8,306.3094237,0,1.3305,1.2928,0.177,0.573,-0.4814 -0x22ac5,CUS_0x2048,August,40,212-55-0432,Developer,20934.49,,6,7,7,7,"Payday Loan, Student Loan, Not Specified, Not Specified, Mortgage Loan, Personal Loan, and Not Specified",24.15336501,16,14.95,10,_,637.11,30.49809106,15 Years and 10 Months,NM,85.94405597,52.14768213,High_spent_Small_value_payments,283.8623452,0,0.8223,-1.1193,1.9786,-0.5479,1.5425 -0x22ad1,CUS_0x52f7,August,23,813-17-7302,Lawyer,36446.72,3002.973195,8,4,16,3,"Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",25.09306947,17,19.8,1,_,1367.36,27.61897886,26 Years and 6 Months,Yes,243.5221061,110.3986678,Low_spent_Small_value_payments,445.6553647,0,0.182,0.0132,-0.7198,1.1257,0.5941 -0x22add,CUS_0xa9f6,August,46,259-66-7471,Developer,44611.39,,2,3,7,1,Student Loan,2.901823534,4,15.27,0,Good,841.62,34.78227398,26 Years and 11 Months,No,28.96209321,43.82114257,High_spent_Medium_value_payments,559.5783476,0,-0.6099,1.3814,0.1829,0.1227,0.0951 -0x22ae9,CUS_0x60f5,August,30,882-94-7103,Engineer,15060.02,1283.001667,10,5,35.06745738,9,"Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",,18,9.06,15,Bad,4910.760954,33.62612635,6 Years and 2 Months,Yes,59.24865183,31.66623545,High_spent_Large_value_payments,250.6649914,0,0.2937,1.7565,-0.0092,1.0832,-1.2914 -0x22af5,CUS_0x2a55,August,43,744-66-0475,Lawyer,17276.8,,8,5,35.06745738,3,"Personal Loan, Personal Loan, and Payday Loan",20.90779785,10.11976707,15.95,11,Standard,2452.669978,29.83856259,18 Years and 4 Months,Yes,23.89759721,105.9590552,Low_spent_Small_value_payments,291.8963929,0,-1.9295,-0.3153,-0.9586,-2.263,-0.5349 -0x22b01,CUS_0x8843,August,37,885-25-4598,Developer,11911.715,,5,6,12.06745738,6,"Debt Consolidation Loan, Not Specified, Student Loan, Personal Loan, Not Specified, and Personal Loan",29.24430262,20,11.41,8,Standard,1370.900954,32.02988609,7 Years and 8 Months,Yes,33.1224541,39.82699522,Low_spent_Small_value_payments,282.0945544,0,-0.6738,-1.5067,-0.582,1.0132,-2.4435 -0x22b0d,CUS_0x59d8,August,26,270-19-5257,Musician,37999.06,,10,9,27.95700519,6,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",,28.78428058,29.14,11,Bad,4334.906727,35.35103995,1 Years and 10 Months,NM,1477.473614,260.7865246,Low_spent_Small_value_payments,124.0483257,0,1.1131,0.1625,-0.7273,0.6615,-0.1462 -0x22b19,CUS_0x27f4,August,45,235-09-7325,Journalist,7200.86,,4,4,12,6,"Payday Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",7.405256765,8,7.22,5,Standard,1528.69,37.34198289,17 Years and 3 Months,NM,28.0081717,,High_spent_Small_value_payments,249.9625169,0,0.5248,-1.2053,-0.2698,-1.6459,-0.025 -0x22b25,CUS_0x29cd,August,38,782-79-3837,Musician,17818.53,,5,6,11,2,"Home Equity Loan, and Credit-Builder Loan",4.663395703,6,8.6,5,Good,1452.64,28.74243708,24 Years and 6 Months,No,103.2970894,109.5207396,Low_spent_Small_value_payments,297.005318,0,0.1922,0.9287,-0.3849,-1.5908,0.7073 -0x22b31,CUS_0x4813,August,33,482-77-1212,Media_Manager,84845.48,7187.456667,4,3,9.288361749,2,"Debt Consolidation Loan, Auto Loan, and Not Specified",8.26864566,10,8.52,6,Good,5.28,31.59613989,24 Years and 10 Months,NM,137.0118815,536.5243933,High_spent_Medium_value_payments,715.1468529,0,0.7074,1.6102,1.1296,-1.108,0.1544 -0x22b3d,CUS_0x312b,August,29,#F%$D@*&8,_______,73995.12,6043.26,4,4,15,4,"Not Specified, Personal Loan, Personal Loan, and Not Specified",28.43715108,17.19719608,18.9,12,_,2202.707259,38.33086971,12 Years and 3 Months,NM,190.9071513,,High_spent_Large_value_payments,608.2547791,0,-1.1405,1.4998,0.6975,-0.7694,-0.9858 -0x22b49,CUS_0x74e5,August,24,596-70-1576,Teacher,84120.45,,2,7,8,100,"Payday Loan, Not Specified, and Student Loan",,1,4.91,5,Good,1317.56,39.32428018,19 Years and 6 Months,No,136.2777563,276.0120854,Low_spent_Small_value_payments,580.8139082,0,-1.7592,-0.6574,0.2904,0.3894,-0.187 -0x22b55,CUS_0x5dca,August,39,016-75-7834,Accountant,58510.3,4967.858333,7,4,12,0,,13.0318751,11,2.45,4,Standard,984.82,39.66331783,17 Years and 11 Months,No,0,97.5842573,High_spent_Small_value_payments,659.201576,0,1.893,0.8867,-1.3487,1.1388,0.3696 -0x22b61,CUS_0x28e3,August,25,118-08-4142,Lawyer,129903,10705.25,4,6,7.288361749,2,"Debt Consolidation Loan, and Auto Loan",5.67875694,8,8.16,4,Good,585.74,34.81198866,16 Years and 8 Months,No,170.0120538,559.3479978,High_spent_Large_value_payments,1001.102409,0,-1.279,0.0236,0.111,-0.8472,-0.2727 -0x22b6d,CUS_0x23a1,August,23,567-97-0729,Mechanic,16579.55,,7,6,12,2,"Not Specified, and Credit-Builder Loan",,12,8.74,12,Standard,1467.16,38.40332338,19 Years and 9 Months,Yes,16.95401859,54.65654079,High_spent_Medium_value_payments,326.9523573,0,0.4175,-0.9458,-1.7439,0.7063,0.985 -0x22b79,CUS_0xbbd8,August,23,849-15-4668,_______,88275.18,7607.265,8,4,7,2,"Not Specified, and Personal Loan",,9.341459174,13.42,6,_,159.7281589,36.43161699,23 Years and 11 Months,Yes,140.5728178,125.0870086,High_spent_Medium_value_payments,745.0666736,0,0.3473,-1.783,-0.2612,0.1223,0.5269 -0x22b85,CUS_0x6e0,August,46,826-38-1391,Entrepreneur,31104.32,2871.026667,6,5,12,1,Credit-Builder Loan,16.98665812,14,6.8,6,Standard,1354,35.64452473,30 Years and 11 Months,No,22.68715164,40.82643436,High_spent_Large_value_payments,463.5890807,0,1.7373,-0.008,0.185,-0.6458,-0.4971 -0x22b91,CUS_0xb5dd,August,22,848-97-1120,Journalist,14399044,1087.546445,0,4,3,3,"Personal Loan, Auto Loan, and Credit-Builder Loan",,11,5.6,4,Good,1462.95,29.99558995,20 Years and 6 Months,No,154.038269,77.05208339,Low_spent_Small_value_payments,303.3894108,0,0.3751,-0.0869,1.2956,0.4644,-0.0034 -0x22b9d,CUS_0x5029,August,60,721-33-6721,Media_Manager,31866.94,,2,1,8,0,,7.621927994,6,2.36,0,Good,764.4293102,34.30013761,29 Years and 3 Months,No,0,,High_spent_Large_value_payments,459.1765322,0,0.5461,0.4837,1.0237,-0.254,0.3811 -0x22ba9,CUS_0x6c67,August,22,024-43-6489,Media_Manager,19071.34,1690.258936,8,5,17,2,"Auto Loan, and Credit-Builder Loan",30.14407744,19,10.17,4,Standard,118.72,27.80017475,31 Years and 4 Months,No,203.6715602,,Low_spent_Medium_value_payments,249.2903665,0,-0.4841,0.9135,-0.2,0.0061,-1.4389 -0x22bb5,CUS_0x38cc,August,28,906-86-9049,Writer,22713.82,,6,6,17.06745738,2,"Not Specified, and Payday Loan",,16,19.49,7,_,1633.950954,39.85123412,17 Years and 8 Months,Yes,19.37348722,70.72624554,!@9#%8,325.1618126,0,1.6539,0.2978,0.7063,0.272,0.4619 -0x22bc1,CUS_0x23c5,August,22,435-97-7668,Entrepreneur,93293.13,,4,5,2,4,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",,10,8.27,4,Good,1448.6,25.40872803,25 Years and 0 Months,No,156.2123992,,Low_spent_Medium_value_payments,300.8188071,0,0.8054,1.2014,0.7278,-0.1019,-0.4534 -0x22bcd,CUS_0x128f,August,32,015-60-0619,Teacher,75816.52,,6,9,22,5,"Not Specified, Not Specified, Student Loan, Mortgage Loan, and Home Equity Loan",34.17479333,25,27.85,9,_,2555.9,30.81363182,,Yes,158.1637791,73.0545126,!@9#%8,637.8860416,0,0.7452,0.3414,1.5282,-0.1761,-1.047 -0x22bd9,CUS_0x582f,August,29,462-85-7240,Teacher,131091.6,,5,5,12,0,,18.49629862,17,0.66,0,_,702.4545489,36.70984569,19 Years and 9 Months,No,0,272.1921802,!@9#%8,1094.375958,0,-1.3114,0.5052,1.0125,0.9449,0.1227 -0x22be5,CUS_0x14c1,August,37,695-59-2005,Media_Manager,130220.08,,6,3,14,3,"Home Equity Loan, Personal Loan, and Debt Consolidation Loan",24.18229296,17,2.17,4,Standard,410.1,34.41841759,29 Years and 11 Months,Yes,245.9244925,282.3580266,Low_spent_Large_value_payments,855.8848142,0,0.4714,0.2628,-0.3523,-0.5673,-0.2479 -0x22bf1,CUS_0x8608,August,38,072-52-5986,Entrepreneur,169339.88,,1,6,9,3,"Payday Loan, Not Specified, and Student Loan",6.625630106,7.273736452,,2,_,1327.474954,40.94693285,26 Years and 0 Months,No,343.1893537,576.1846134,High_spent_Medium_value_payments,723.7916996,0,0.4954,0.8272,-1.1199,0.2987,0.2169 -0x22bfd,CUS_0x1551,August,28,210-96-9043,Entrepreneur,16674.01,,1,4,5,100,Auto Loan,,7,-3.97,4,Good,1366.799077,25.69556274,16 Years and 5 Months,NM,13.63231056,45.78778568,High_spent_Small_value_payments,341.0866655,0,0.3911,-0.6762,0.14,-0.6374,0.6256 -0x22c09,CUS_0x3aaa,August,80,750-94-9700,Developer,51580.68,4139.39,5,6,10,6,"Personal Loan, Not Specified, Student Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",15.02896193,10,19.9,4,Standard,1475.3,22.36001391,20 Years and 0 Months,Yes,219.3084504,173.2354549,High_spent_Medium_value_payments,271.3950947,0,0.4583,0.7734,-0.439,-0.234,-0.2867 -0x22c15,CUS_0x70d,August,24,350-94-1349,Engineer,15710.265,,5,7,5,1,Payday Loan,22.54651382,17,14.63,4,Standard,1012.23,27.83109322,,Yes,10.60777444,41.76909106,High_spent_Small_value_payments,322.8420095,0,0.4498,-1.0586,-0.0137,-1.0695,-1.7275 -0x22c21,CUS_0x22b1,August,41,058-45-2550,_______,64692.9,5357.775058,1,3,12,0,,11.58893965,10,1.03,3,Good,1155.106192,39.86105321,15 Years and 11 Months,No,285.2999421,127.2285581,High_spent_Small_value_payments,710.522819,0,1.9961,-0.2937,-0.1704,2.4671,-1.8876 -0x22c2d,CUS_0x92e9,August,19,293-06-9184,Writer,36863.79,2743.674268,2,5,6,6,"Debt Consolidation Loan, Not Specified, Payday Loan, Student Loan, Payday Loan, and Auto Loan",,20.57125152,15.02,6,Standard,487.0744618,29.70839721,8 Years and 3 Months,Yes,238.2231495,,Low_spent_Small_value_payments,101.8555113,0,0.3871,-0.2121,0.5354,-0.4709,0.0235 -0x22c39,CUS_0x5826,August,33,844-57-8072,Lawyer,16740.095,1293.007917,5,5,2,2,"Payday Loan, and Credit-Builder Loan",6.468396163,9,4.97,6,Good,218.19,22.8759575,16 Years and 8 Months,No,14.8402564,114.2144382,Low_spent_Large_value_payments,270.246097,0,-0.3042,-1.0512,0.54,0.636,0.8389 -0x22c45,CUS_0xfaa,August,18,139-66-0724,Doctor,19761.79,,10,8,31,5,"Personal Loan, Auto Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",,,18.16,14,Bad,4670.92,25.64546461,4 Years and 4 Months,NM,42.0813735,80.93009128,Low_spent_Medium_value_payments,333.3701185,0,0.4909,-1.0818,1.5192,-0.1035,0.5941 -0x22c51,CUS_0xaee3,August,28,568-87-8837,Musician,44608.21,3574.350833,4,5,10,0,,6.721095321,7,6.98,5,_,579.1446164,38.09117859,32 Years and 2 Months,No,0,,Low_spent_Small_value_payments,199.7722024,0,1.0397,-0.2985,-0.2739,-0.9609,-2.0534 -0x22c5d,CUS_0xb172,August,80,#F%$D@*&8,Mechanic,35093.6,2969.466667,4,4,19,0,,5.333939932,8,4.27,3,_,916.22,24.97729493,31 Years and 8 Months,Yes,0,264.4357159,Low_spent_Medium_value_payments,312.5109508,0,0.0911,1.054,-0.8656,-1.0979,-0.8558 -0x22c69,CUS_0xb818,August,24,958-08-7164,Lawyer,62424.12,,7,8,29,5,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",37.2480428,20,19.58,6,_,1958.36,27.00440132,12 Years and 10 Months,Yes,175.3603175,,High_spent_Large_value_payments,472.7614562,0,0.2707,2.0344,-0.3013,1.3383,1.3084 -0x22c75,CUS_0x36b4,August,47,144-10-9312,Musician,17060.705,1685.725417,8,3,11,4,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Auto Loan",19.19260814,,9.64,6,Standard,247.8347304,37.72347216,22 Years and 8 Months,Yes,51.93463391,70.30643422,High_spent_Small_value_payments,315.5904885,0,-1.0214,-0.0793,-0.1288,-0.3907,-1.0133 -0x22c81,CUS_0x7d66,August,47,621-07-0498,Journalist,39459.88,3530.323333,4,2,1,2,"Mortgage Loan, and Student Loan",0,0,11.28,6,Good,1125.220705,35.30642705,24 Years and 10 Months,No,50.77229873,168.8757827,High_spent_Medium_value_payments,406.0120576,0,-2.1489,1.5598,-0.838,-0.895,-0.6054 -0x22c8d,CUS_0x416f,August,18,562-69-0668,Mechanic,169481.08,14408.42333,3,2,10,2,"Personal Loan, and Credit-Builder Loan",17.27760709,,0.95,4,_,581.5494365,30.13498855,17 Years and 4 Months,No,168.9283469,403.3708213,High_spent_Small_value_payments,1166.376436,0,0.2151,-0.9049,-0.943,0.3992,-0.9024 -0x22c99,CUS_0x922d,August,19,827-48-6624,Journalist,100809.78,8439.815,4,5,12,3,"Student Loan, Credit-Builder Loan, and Auto Loan",20.26077373,18,19.15,9,_,640.78,27.77052421,10 Years and 11 Months,Yes,219.7155672,202.2448565,High_spent_Large_value_payments,662.0210763,0,0.567,-0.2269,0.1547,0.4429,0.1219 -0x22ca5,CUS_0xaea9,August,18,964-34-3476,Engineer,16236.13,,7,5,21,5,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",,20,19.03,10,Bad,3300.77,31.92709646,13 Years and 11 Months,Yes,66.56064223,,Low_spent_Small_value_payments,190.9204805,0,-0.3506,1.8642,0.6122,0.6315,-1.6224 -0x22cb1,CUS_0x8ae9,August,18,173-40-0385,Developer,9114.48,,8,35,34.95700519,7,"Not Specified, Not Specified, Mortgage Loan, Personal Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",21.92155737,,19.05,6,_,3046.830954,27.55310732,7 Years and 2 Months,Yes,1353.564232,,Low_spent_Small_value_payments,212.9246239,0,-2.2854,-2.1657,1.0089,-1.6039,-0.5852 -0x22cbd,CUS_0x3ee9,August,50,459-66-4683,Media_Manager,60663,,3,3,20,1,Payday Loan,20.83121492,17,6.15,2,Standard,846.68,29.75858704,,NM,44.52236414,128.5338137,High_spent_Small_value_payments,568.0688222,0,-1.3536,-0.2888,-0.7607,-0.6594,0.6058 -0x22cc9,CUS_0xc2c0,August,80,498-38-6425,Manager,14198.91,1099.2425,6,7,6,6,"Payday Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",26.82721209,21,18.44,6,Standard,603.87,25.18921597,8 Years and 9 Months,NM,70.49609995,39.06880677,High_spent_Medium_value_payments,250.3593433,0,-1.6975,0.5786,-0.9611,0.7736,0.4206 -0x22cd5,CUS_0x373b,August,32,368-07-2548,Media_Manager,26520.9,2202.075,8,4,935,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",,12,15.63,5,Standard,1182.19,33.28578035,19 Years and 11 Months,Yes,2004,74.13007061,High_spent_Medium_value_payments,338.9374475,0,-0.1503,-0.0302,-1.7575,-1.6019,1.507 -0x22ce1,CUS_0xabef,August,27,759-42-6331,Scientist,157156.8,13050.4,3,3,8.288361749,0,,9.87581103,10,10.45,5,Good,1249.710795,42.27674205,,No,0,,High_spent_Small_value_payments,875.0634283,0,1.1926,0.4939,-2.1048,0.6145,1.1162 -0x22ced,CUS_0x2f9d,August,80,049-42-3355,Manager,7555.45,769.6208333,8,6,926,6,"Not Specified, Personal Loan, Home Equity Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",33.0659086,20.27258575,9.4,16,Bad,3701.991586,28.47067287,9 Years and 4 Months,Yes,33.79950434,38.16776605,Low_spent_Medium_value_payments,284.9948129,0,-1.24,-1.1434,0.8348,0.5632,0.7795 -0x22cf9,CUS_0x6a6,August,48,240-37-4122,Accountant,91946.91,7553.2425,3,6,12,100,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",20.84329266,16,18.44,1,Standard,1194.82,37.05588354,30 Years and 0 Months,Yes,251.1629402,84.79024876,High_spent_Large_value_payments,659.3710611,0,-0.1327,1.0134,-0.9632,2.0987,0.5013 -0x22d05,CUS_0x76df,August,45,826-97-3188,_______,61970.82,4901.235,8,4,13,100,Credit-Builder Loan,17.65182232,15,5.08,7,_,636.65,33.04341877,31 Years and 0 Months,No,41.63362639,,High_spent_Small_value_payments,401.1906535,0,0.2321,0.2602,0.0807,2.2219,0.7646 -0x22d11,CUS_0x477b,August,42,356-12-0486,Journalist,26775.49,,983,4,7,1,Home Equity Loan,27.53929001,22,6.42,5,Standard,1082.13,25.33646326,27 Years and 0 Months,No,13.48429453,107.0198073,Low_spent_Large_value_payments,390.3249815,0,0.0546,0.1188,-0.3497,1.3068,-1.668 -0x22d1d,CUS_0x8ec8,August,24,004-57-0116,Media_Manager,29741.12,2151.702355,8,5,31,5,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Home Equity Loan, and Student Loan",,16.36824309,7.56,7,Standard,1426.808692,32.46157965,17 Years and 5 Months,NM,77407,231.4106006,Low_spent_Small_value_payments,192.9098549,0,0.4263,-0.8996,-0.1844,-0.4694,0.551 -0x22d29,CUS_0x4238,August,25,531-95-3608,Mechanic,39431.65,3447.970833,5,4,2,1,Debt Consolidation Loan,0,1,7.87,4,Good,1392.78,26.01021083,24 Years and 6 Months,No,19.88457141,94.21594634,Low_spent_Medium_value_payments,510.6965656,0,-0.9535,-0.6859,0.8463,1.1642,1.4797 -0x22d35,CUS_0x5627,August,51,953-46-1751,Teacher,34366,2831.833333,2,4,8,2,"Student Loan, and Payday Loan",11.19198281,11,,5,Good,701.41,31.62529908,,NM,44.93190236,77.69798415,High_spent_Small_value_payments,420.5534468,0,-0.3693,-1.0547,-0.6754,1.369,-0.0806 -0x22d41,CUS_0x9002,August,43,540-68-4591,Media_Manager,20851.59,1701.6325,4,6,19.06745738,100,Mortgage Loan,21.16122309,14,14.46,5,Standard,1418.470954,37.53893882,16 Years and 8 Months,Yes,9.299161964,21.98385781,High_spent_Large_value_payments,352.1599423,0,-1.2335,0.9164,1.4758,0.3334,0.3474 -0x22d4d,CUS_0x9871,August,31,968-80-1460,Lawyer,85553.97,7223.4975,1,4,1,2,"Not Specified, and Credit-Builder Loan",0,2,10.65,1,Good,165.6476993,33.03243965,18 Years and 6 Months,No,95.10542587,11581.73689,Low_spent_Large_value_payments,549.4711671,0,0.6107,-0.0451,1.5527,0.7187,-0.9793 -0x22d59,CUS_0x1bb6,August,20,#F%$D@*&8,Entrepreneur,9163.96,806.6633333,6,10,23,2,"Payday Loan, and Debt Consolidation Loan",,18,10.93,6,Standard,1685.88,35.67749251,6 Years and 6 Months,Yes,14.37770113,23.259099,High_spent_Medium_value_payments,293.0295332,0,0.1282,-0.3709,-0.9751,0.4823,2.2127 -0x22d65,CUS_0x725e,August,25,064-45-0394,Journalist,61444.92,5144.41,10,6,32.06745738,9,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Payday Loan, and Not Specified",24.53365221,,17.51,12,_,3846.885462,30.02278651,10 Years and 4 Months,Yes,346.3633489,240.8237543,Low_spent_Medium_value_payments,180.5336089,0,-0.2201,0.8545,1.1811,-0.1115,0.6749 -0x22d71,CUS_0xb837,August,26,670-65-6270,Journalist,14070.22,,9,9,25.06745738,6,"Home Equity Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,21.44593619,18.61,9,Bad,2589.566265,25.54467895,13 Years and 10 Months,Yes,40.16573686,27.17011488,High_spent_Small_value_payments,280.7956937,0,0.3451,-0.1289,-0.0137,1.6496,0.2626 -0x22d7d,CUS_0xabaf,August,48,#F%$D@*&8,Manager,36990.53,,0,5,0.288361749,2,"Debt Consolidation Loan, Mortgage Loan, and Auto Loan",0,1,4.58,5,Good,129.0140393,28.5167029,21 Years and 4 Months,No,68.15523048,554.3109216,High_spent_Small_value_payments,356.8574372,0,-1.9092,0.354,1.4055,1.4092,-1.914 -0x22d89,CUS_0xc55b,August,38,334-09-5549,Architect,52499.16,4244.93,7,5,17,8,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Personal Loan",40.99910804,21.74702729,2.21,10,_,1615.215404,40.56755782,7 Years and 3 Months,Yes,289.268493,45.83887054,High_spent_Large_value_payments,329.3856364,0,-0.5403,-0.4372,0.2445,-0.5168,0.4927 -0x22d95,CUS_0xc3ad,August,26,563-61-0664,_______,7168.48,556.3733333,8,8,20.88954781,8,"Not Specified, Personal Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Not Specified, and Payday Loan",,20.44519941,6.31,9,Bad,2943.164939,36.46261255,12 Years and 6 Months,Yes,26178.48344,,Low_spent_Small_value_payments,242.1559175,0,0.2015,0.1959,1.362,0.2971,0.4577 -0x22da1,CUS_0x1695,August,28,947-47-2443,Engineer,14219.345,1418.945417,5,7,10,4,"Student Loan, Home Equity Loan, Mortgage Loan, and Mortgage Loan",,19,-5.93,6,Standard,153.1743115,25.73899791,19 Years and 0 Months,No,30.05042301,218.5674505,Low_spent_Small_value_payments,210.7928912,0,-1.5687,0.4757,0.1323,-0.8745,-1.223 -0x22dad,CUS_0xdb0,August,45,574-76-3430,Engineer,131760.3,11139.025,2,3,6,0,,6.373343151,6,,3,Good,262.48,38.10200385,17 Years and 9 Months,No,0,302.4978385,High_spent_Medium_value_payments,1061.404662,0,0.8655,0.6248,-1.0586,-1.7563,0.4307 -0x22db9,CUS_0x457e,August,54,656-83-9494,Journalist,59343.12,4919.26,7,7,8,0,,14.33612671,12,17.27,4,Standard,9.32,39.56182411,21 Years and 3 Months,Yes,0,123.4565472,High_spent_Medium_value_payments,618.4694528,0,0.4456,1.322,-1.1129,-1.1747,-0.368 -0x22dc5,CUS_0xb4d6,August,53,724-66-1705,Musician,11527.375,733.6145833,5,5,1,0,,21.59286399,17,2.33,4,Good,1250.026647,26.53066533,16 Years and 5 Months,No,0,64.72282068,Low_spent_Medium_value_payments,296.9885219,0,0.39,-2.0518,0.6154,-0.5251,0.2695 -0x22dd1,CUS_0x90d0,August,39,047-17-4695,Writer,46477.56,,8,10,24.88954781,6,"Auto Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",45.98290678,25.82609988,7.67,12,Bad,2051.552202,31.49661138,9 Years and 3 Months,Yes,1535.731634,169.1075708,Low_spent_Small_value_payments,296.7437136,0,0.4272,0.7485,0.7818,1.2096,-0.384 -0x22ddd,CUS_0x13df,August,38,082-87-9651,Engineer,32387.94,2819.995,8,4,12,0,,,10.43349428,6.18,5,_,612.0433449,25.31087916,16 Years and 9 Months,No,0,213.6327046,Low_spent_Small_value_payments,358.3667954,0,-1.6108,-1.4825,-0.8616,-0.1177,1.8667 -0x22de9,CUS_0x52b1,August,46,714-29-2224,Journalist,27226.38,,4,5,11,2,"Payday Loan, and Credit-Builder Loan",20.28734418,18,7.07,2,Good,1153.62,37.06384627,25 Years and 5 Months,No,42.8510811,,High_spent_Small_value_payments,330.1069617,0,-0.735,-0.8592,0.1192,-1.4744,0.3403 -0x22df5,CUS_0x277e,August,47,800-81-5647,Engineer,86097.54,7202.795,1,2,10.28836175,2,"Home Equity Loan, and Student Loan",3.079219733,5,,1834,_,9.169698077,26.37545548,19 Years and 6 Months,No,128.4040752,695.7506217,High_spent_Medium_value_payments,592.7368112,0,1.3297,-0.0603,0.2188,-1.3495,1.8957 -0x22e01,CUS_0x7045,August,37,356-25-9324,Developer,29423.32,2401.943333,8,8,31.88954781,8,"Mortgage Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Auto Loan, and Payday Loan",41.98589329,24,18.81,8,Bad,3190.38,25.29409268,6 Years and 10 Months,Yes,1514.441975,145.7384988,Low_spent_Small_value_payments,175.683778,0,2.0244,-0.6763,-0.3727,1.0303,0.441 -0x22e0d,CUS_0x641e,August,32,690-02-3558,Mechanic,16799.32,1216.943333,10,9,33.88954781,6,"Not Specified, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",23.35682944,16,25.87,11,Bad,4014.35,23.6944907,,Yes,1397.457031,,Low_spent_Small_value_payments,278.2155886,0,0.0522,-0.654,1.0767,0.8745,0.466 -0x22e19,CUS_0x82c4,August,27,645-13-3481,Media_Manager,81430.32,,6,6,10,1,Student Loan,,20.56175317,16.75,3,Standard,862.7590733,34.84333691,32 Years and 11 Months,Yes,48.48208356,160.3889598,Low_spent_Large_value_payments,726.4149566,0,1.1455,0.754,1.1243,2.3023,-0.4134 -0x22e25,CUS_0xbe7,August,27,148-84-1200,Writer,8794.49,,8,10,22.88954781,8,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",21.09895047,17.8993522,3.68,11,Bad,2812.392657,29.4418484,16 Years and 6 Months,Yes,1381.059146,26.86418061,Low_spent_Small_value_payments,266.5340089,0,-1.1207,0.9019,1.6755,0.4028,0.2428 -0x22e31,CUS_0x6896,August,18,975-47-9681,Media_Manager,31896.7,,7,7,9,2,"Home Equity Loan, and Payday Loan",31.7357536,22.53204685,17.95,10,Standard,2165.211068,31.04889903,19 Years and 8 Months,Yes,48104,126.2874014,Low_spent_Small_value_payments,410.5866902,0,-0.4058,1.2211,-0.6384,-0.3173,1.5675 -0x22e3d,CUS_0x5f22,August,36,578-21-3436,Media_Manager,93373.68,,5,7,6.288361749,2,"Auto Loan, and Mortgage Loan",19.21803035,16,18.8,4,Standard,1067.59,28.45908133,32 Years and 11 Months,Yes,137.2514849,751.3913787,High_spent_Medium_value_payments,569.2085974,0,2.1167,-0.2823,-0.0303,0.0444,0.6879 -0x22e49,CUS_0x9a0c,August,21,627-45-5084,_______,166658.68,,5,3,11.28836175,2,"Payday Loan, and Not Specified",4.462346276,8,9.95,1,Good,959.2,44.72463707,22 Years and 11 Months,No,222.2857272,778.2749576,High_spent_Large_value_payments,1065.199109,0,-0.8765,-0.8684,-0.2748,-1.2147,-1.151 -0x22e55,CUS_0xab16,August,56,098-90-8046,Lawyer,17168.925,,4,4,4,100,"Debt Consolidation Loan, and Payday Loan",15.71832148,,8.25,1005,Good,614.4086128,36.62410606,19 Years and 3 Months,No,16.36962189,70.22380517,Low_spent_Medium_value_payments,343.736032,0,-1.2704,-1.214,-2.4735,-0.464,0.0741 -0x22e61,CUS_0x8369,August,18,698-91-4112,Manager,23646.08,1752.506667,4,3,14,6,"Debt Consolidation Loan, Mortgage Loan, Personal Loan, Personal Loan, Student Loan, and Personal Loan",18.04944926,15,12.51,,Standard,1242.722087,25.25874952,13 Years and 8 Months,Yes,108.8352925,37.0507194,High_spent_Small_value_payments,292.8535958,0,-0.5578,-2.569,-0.9926,0.5081,1.7178 -0x22e6d,CUS_0xe4e,August,22,952-71-5963,Scientist,108073.68,8738.14,3,3,9,0,,,14,16.16,7,Standard,1323.25,38.32725299,19 Years and 9 Months,Yes,0,366.5545125,High_spent_Medium_value_payments,757.2594875,0,0.8913,0.5425,-1.4018,0.4798,-2.0358 -0x22e79,CUS_0x8e6e,August,43,741-44-9176,Accountant,13056.35,1177.029167,5,6,18,1,Personal Loan,20.49912848,15,10.39,5,Standard,562.05,27.48553559,27 Years and 9 Months,Yes,8.140792415,93.22152388,Low_spent_Small_value_payments,306.3406004,0,-0.6962,-0.3222,0.357,0.6211,0.0565 -0x22e85,CUS_0x92b6,August,20,339-08-2156,Mechanic,46586.79,3823.2325,5,5,27,5,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,5.628217192,15.51,10,Standard,1932.817137,29.13142863,6 Years and 8 Months,Yes,142.5295758,137.65603,!@9#%8,352.1376442,0,-0.865,-1.0317,-0.193,0.1157,0.9407 -0x22e91,CUS_0x6013,August,20,244-85-0461,Writer,41995.64,3416.636667,7,6,7,4,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Student Loan",9.450515357,10,16.73,7,Standard,1072.63,35.78877515,15 Years and 10 Months,Yes,87.54399905,142.3387919,Low_spent_Small_value_payments,401.7808757,0,-0.2055,1.08,-0.054,-1.9737,0.1372 -0x22e9d,CUS_0x3359,August,24,045-72-2781,Entrepreneur,20287.13,1626.594167,4,6,11,0,,22.90598544,15,10.98,8,Standard,19.94,28.16924623,26 Years and 4 Months,Yes,12529,50.18649539,Low_spent_Large_value_payments,382.4729213,0,0.0458,0.9791,0.3711,2.8255,1.1222 -0x22ea9,CUS_0x8dc6,August,37,913-47-2738,Journalist,76879.4,,10,6,23,9,"Payday Loan, Home Equity Loan, Personal Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",29.23704404,17,23.86,12,Bad,3705.604696,32.09950741,9 Years and 3 Months,Yes,388.3889869,952.331487,Low_spent_Small_value_payments,,0,1.3652,0.4547,0.2862,-0.1362,-0.4174 -0x22eb5,CUS_0x9fcf,August,18,177-47-5939,Doctor,19594.29,,8,7,18.06745738,9,"Student Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",34.91857392,18.83558235,3.4,15,Bad,3775.525337,35.52254906,1 Years and 8 Months,Yes,146.709483,67.79282759,Low_spent_Large_value_payments,212.2631515,0,-0.6802,-0.3856,0.9921,-1.3795,-0.23 -0x22ec1,CUS_0x5f8b,August,39,084-81-6413,Musician,16776.02,1622.001667,8,3,10,4,"Student Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",32.69073289,22.42302923,10.2,5,Standard,265.0624986,24.19326108,30 Years and 0 Months,Yes,28.13446349,135.1509729,Low_spent_Large_value_payments,268.9147303,0,0.3535,0.287,-0.2175,-0.9285,0.2562 -0x22ecd,CUS_0x809c,August,48,675-17-0345,Musician,27881.32,2077.443333,3,7,18,3,"Not Specified, Credit-Builder Loan, and Not Specified",14.08739444,11,3.1,6,Standard,1135.274917,22.53346746,21 Years and 8 Months,No,37.19932647,48.95921203,High_spent_Medium_value_payments,377.6736079,0,-0.7436,-1.6544,1.4148,0.1936,-0.3524 -0x22ed9,CUS_0xa2d7,August,45,344-37-5737,Writer,62509.84,5159.153333,10,10,28.88954781,9,"Personal Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Student Loan",,25,18.13,12,Bad,3149.82,33.54530888,10 Years and 4 Months,Yes,58122.48344,434.2023967,Low_spent_Small_value_payments,0,0,-1.492,0.3794,0.1018,-0.9004,1.7114 -0x22ee5,CUS_0xbdca,August,35,096-92-4217,_______,9106.335,,4,5,9,6,"Personal Loan, Auto Loan, Auto Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",21.88050229,18,16.23,8,Standard,2485.16,33.74642058,18 Years and 0 Months,Yes,39.38429556,17.08720002,High_spent_Medium_value_payments,249.1146294,0,0.0316,-1.3953,0.5724,-1.2332,0.2088 -0x22ef1,CUS_0x6570,August,29,031-44-3798,Musician,59412.6,4708.05,8,214,5,100,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Not Specified, and Credit-Builder Loan",12.98743272,9,18.3,8,Standard,1733,24.96732355,7 Years and 9 Months,Yes,142.3111565,179.5224676,High_spent_Medium_value_payments,398.9713758,0,-0.207,-0.3819,-3.3353,-0.9281,1.0703 -0x22efd,CUS_0x86e,August,43,316-32-6874,Engineer,43623.84,3592.32,7,7,23,6,"Auto Loan, Auto Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,19.07645616,16.64,9,Standard,2193.733053,39.49941114,10 Years and 3 Months,NM,142.3667696,75.11331849,High_spent_Small_value_payments,401.7519119,0,-0.1465,-0.1835,0.0791,2.3848,1.4583 -0x22f09,CUS_0x1f9c,August,46,498-47-1128,Entrepreneur,15258.95,1508.579167,3,6,1,0,,0.284373788,5,10.06,5,Good,997.82924,25.35176148,23 Years and 10 Months,No,0,162.6255547,Low_spent_Small_value_payments,297.4655858,0,0.3074,0.3477,-0.1676,-0.3355,1.8166 -0x22f15,CUS_0x44d5,August,40,103-44-2996,_______,9598.38,,7,6,20,2,"Auto Loan, and Payday Loan",11.31607241,9,9.31,5,Standard,878.44,24.53227855,16 Years and 6 Months,Yes,15.40263845,46.07412361,Low_spent_Small_value_payments,280.1097379,0,-1.7969,-0.2241,1.0931,-1.3782,0.0935 -0x22f21,CUS_0xb615,August,28,744-77-7523,Teacher,21206.48,1631.206667,7,5,8,0,,15.64376282,12,9.3,2,Good,213.4510879,30.29347913,19 Years and 3 Months,NM,0,41.94399157,High_spent_Small_value_payments,385.6664798,0,-0.1617,0.8059,1.1585,0.3855,-1.5591 -0x22f2d,CUS_0x6092,August,22,372-92-0150,Engineer,13347.835,1064.319583,5,7,19,2,"Credit-Builder Loan, and Auto Loan",29.84970645,22.69611349,18.66,4,Standard,604.6672802,29.87502167,22 Years and 10 Months,NM,15.75804686,10000,Low_spent_Small_value_payments,284.9894207,0,0.3832,0.0194,-0.7096,-1.6475,0.8944 -0x22f39,CUS_0xbd1f,August,37,159-72-2454,Writer,31902.65,,5,6,9,1,Home Equity Loan,25.38241856,18,7.87,3,Standard,370.0743811,37.09786029,22 Years and 6 Months,NM,18.28897686,83.88135183,High_spent_Medium_value_payments,426.3097726,0,-0.9511,-0.7055,0.419,0.3668,0.5588 -0x22f45,CUS_0x1341,August,47,155-02-9593,Mechanic,15341.895,,6,7,3,1,Debt Consolidation Loan,9.810454515,8,7.71,2,_,1152.71,24.1344052,21 Years and 4 Months,NM,6.981993019,81.56430855,Low_spent_Medium_value_payments,295.0028234,0,-1.2991,-1.4926,-1.2782,1.6176,0.4588 -0x22f51,CUS_0x7e6c,August,53,302-82-0750,Accountant,21834.84,1770.57,3,5,5,3,"Not Specified, Mortgage Loan, and Auto Loan",5.890577056,7,8.73,5,Good,554.144418,33.3320124,27 Years and 2 Months,No,50.8748322,13.16155575,!@9#%8,354.3015292,0,0.7632,1.1146,-1.5832,-1.0675,0.8869 -0x22f5d,CUS_0x6c5d,August,30,551-07-2673,Scientist,72050.92,,2,5,3.288361749,2,"Auto Loan, and Credit-Builder Loan",5.566845851,7,1.19,1,Good,266.0492156,28.21210346,27 Years and 4 Months,No,88.94101184,631.3965585,High_spent_Medium_value_payments,592.7071108,0,-1.3227,0.3275,-0.9474,-0.3648,1.3706 -0x22f69,CUS_0x114b,August,37,978-19-7269,Entrepreneur,107118.96,,5,7,5,3,"Payday Loan, Auto Loan, and Not Specified",,8,10.49,3,Standard,1049.33,29.11156057,30 Years and 10 Months,Yes,53636,815.4767929,Low_spent_Medium_value_payments,235.4152173,0,0.3362,-0.311,0.2895,0.1946,-0.5479 -0x22f75,CUS_0x20c8,August,51,754-48-1213,Journalist,113630.4,9719.2,4,5,5,0,,6.014551654,8,9.8,4,Good,106.7145219,34.70454243,27 Years and 6 Months,No,0,152.8828598,High_spent_Medium_value_payments,1083.500597,0,-1.4067,-0.1776,0.4668,-2.135,0.5359 -0x22f81,CUS_0x4ddc,August,45,641-04-8218,Doctor,18524.985,,0,3,1,3,"Student Loan, Mortgage Loan, and Student Loan",2.633428752,5,7.21,6,Good,463.93,36.53551547,23 Years and 11 Months,No,24.12187583,106.2844658,Low_spent_Small_value_payments,342.7685333,0,-1.0355,-1.0416,-0.1021,-0.7772,1.7842 -0x22f8d,CUS_0x94dd,August,19,996-52-9835,_______,23107.74,,4,4,10,1,Debt Consolidation Loan,,19,12.45,7,Standard,859.23,29.18872835,28 Years and 4 Months,Yes,17.60355966,76.95474083,Low_spent_Large_value_payments,373.8061995,0,-1.1326,0.0874,0.2896,-2.0263,0.4477 -0x22f99,CUS_0xb631,August,30,558-71-0980,Accountant,121151.4,,3,4,1,2,"Credit-Builder Loan, and Credit-Builder Loan",5.895839561,7,8.84,6,Good,42.69,32.16705678,29 Years and 0 Months,No,101.4048724,311.0832236,High_spent_Medium_value_payments,861.506904,0,-2.1543,-0.4589,-0.0032,-0.9835,1.7189 -0x22fa5,CUS_0x7418,August,34,508-07-0235,Writer,33768.35,3065.029167,6,6,10,2,"Debt Consolidation Loan, and Not Specified",10.46204679,9,6.23,3,_,535.64,33.3283693,18 Years and 4 Months,No,29.05979946,80.52631614,High_spent_Medium_value_payments,446.9168011,0,-0.8881,-0.5921,-0.6128,-0.0957,1.186 -0x22fb1,CUS_0x82a6,August,28,057-97-1445,Scientist,61989.72,5191.81,4,3,26,6,"Personal Loan, Payday Loan, Not Specified, Payday Loan, Personal Loan, and Home Equity Loan",30.1347248,21.25067554,10.43,1768,Standard,2055.07192,29.86816933,19 Years and 4 Months,Yes,264.7628531,,High_spent_Small_value_payments,220.5824334,0,0.1713,0.6137,1.0185,0.1954,0.7869 -0x22fbd,CUS_0x80c7,August,27,457-71-1752,Architect,123181.16,,4,5,9,0,,,10,6.44,7,Good,877.78,35.24850569,25 Years and 3 Months,No,0,789.844,Low_spent_Medium_value_payments,529.2656667,0,0.0006,0.8834,1.7077,1.3907,1.3979 -0x22fc9,CUS_0x3b15,August,53,493-85-2291,Manager,65312.73,5255.7275,3,5,20,1,Mortgage Loan,27.87268709,20,5.6,6,Standard,466.4,37.89806651,19 Years and 3 Months,No,32.16880014,159.8833305,High_spent_Medium_value_payments,583.5206194,0,0.1469,-0.0826,1.687,-1.0376,0.373 -0x22fd5,CUS_0x714a,August,39,550-43-5076,_______,6912531,3076.995833,3,5,19,4,"Payday Loan, Not Specified, Personal Loan, and Student Loan",,13,11.23,2,Standard,1390.77,32.15187828,22 Years and 11 Months,No,111.9106046,246.0851777,Low_spent_Large_value_payments,219.7038011,0,0.1296,1.4252,0.4858,-0.409,-1.0656 -0x22fe1,CUS_0xad94,August,28,357-18-5555,Mechanic,32019.26,2610.271667,4,3,15,2,"Credit-Builder Loan, and Auto Loan",,13.02097868,9.38,7,Standard,1845.617261,31.7442996,14 Years and 6 Months,Yes,47.77769516,100.0703664,Low_spent_Medium_value_payments,393.1791051,0,0.8779,0.4561,-1.5699,-0.9383,0.3425 -0x22fed,CUS_0x949,August,46,#F%$D@*&8,Teacher,1724659,,5,3,6,3,"Debt Consolidation Loan, Personal Loan, and Mortgage Loan",9.374588145,9,13.02,4,Standard,1228.86,25.31678276,28 Years and 8 Months,Yes,50.81084813,151.5166302,Low_spent_Small_value_payments,246.972605,0,0.4019,-0.2049,1.2072,-0.0883,-0.5124 -0x22ff9,CUS_0x8126,August,18,129-62-8508,Developer,52210.26,,3,332,10,1,Student Loan,13.16719975,13,8.11,4,Standard,1276.23,29.87613267,32 Years and 8 Months,No,24.29659339,161.0706996,Low_spent_Small_value_payments,551.218207,0,-0.4023,1.2978,-0.059,1.5261,-0.0572 -0x23005,CUS_0x7087,August,51,#F%$D@*&8,Writer,32228.67,2819.603375,7,6,8,4,"Auto Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",13.10270604,10,12,4,Standard,861.0468842,31.94242472,32 Years and 9 Months,NM,176.2048723,,High_spent_Medium_value_payments,347.3396086,0,-0.7493,1.8007,0.5105,-0.4219,0.0067 -0x23011,CUS_0x9d9,August,43,509-62-5624,Musician,108312.64,9060.053333,4,3,7,2,"Payday Loan, and Credit-Builder Loan",,20.48758361,11.8,,Good,859.8808118,40.62649518,32 Years and 0 Months,No,169.5991975,118.3425977,High_spent_Large_value_payments,858.0635381,0,-0.2588,0.3948,0.5774,-0.6997,0.8398 -0x2301d,CUS_0x4a88,August,21,702-19-6475,Scientist,77703.16,6702.263333,8,4,28,8,"Debt Consolidation Loan, Payday Loan, Auto Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",,20,20.54,10,Bad,2939.44,37.44376661,11 Years and 8 Months,Yes,418.7466986,576.5805391,Low_spent_Small_value_payments,,0,0.5319,-0.5786,0.6064,-2.0799,-0.4429 -0x23029,CUS_0x49f5,August,27,612-77-0513,Musician,9676.155,848.7254893,10,10,32.95700519,6,"Not Specified, Credit-Builder Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Auto Loan",41.18120227,20.04270121,11.26,12,_,2572.690252,25.62264882,5 Years and 9 Months,Yes,1421.386714,,High_spent_Small_value_payments,230.3981032,0,-0.2624,-1.1371,-0.1905,-0.2732,-3.4395 -0x23035,CUS_0xbfba,August,35,020-80-3233,Lawyer,64964.1,5199.675,6,6,1,0,,33.03913908,22.72038962,5.21,2,Standard,1019.137487,31.09805218,26 Years and 8 Months,No,0,84.56210442,High_spent_Medium_value_payments,685.4053956,0,0.1858,1.1091,-0.8208,-0.297,-0.1684 -0x23041,CUS_0x9d77,August,18,258-59-7020,Media_Manager,20082.58,1540.548333,6,9,33,5,"Student Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Home Equity Loan",25.93343313,17,27.01,14,Bad,4230.46,24.89143118,4 Years and 5 Months,NM,66.05246032,,High_spent_Small_value_payments,257.3417347,0,-1.6798,-0.2471,0.3097,-2.3234,1.5696 -0x2304d,CUS_0x2854,August,29,601-95-3536,Lawyer,15706.805,,3,5,4,2,"Auto Loan, and Personal Loan",16.8843384,,0.57,9,Good,282.44,37.48949511,28 Years and 5 Months,No,23.47255561,104.5045977,Low_spent_Medium_value_payments,271.3128884,0,0.0314,-0.2451,0.8439,-0.1756,2.0453 -0x23059,CUS_0x38dc,August,44,#F%$D@*&8,Mechanic,60036.75,,7,8,35.06745738,5,"Not Specified, Not Specified, Credit-Builder Loan, Mortgage Loan, and Not Specified",31.77473108,18,26.9,15,Bad,3786.790954,38.16821348,10 Years and 4 Months,Yes,147.5930311,83.58675747,High_spent_Medium_value_payments,520.0061735,0,-0.7268,-0.2711,1.1128,-1.1459,-1.666 -0x23065,CUS_0xf8d,August,58,712-91-8519,Engineer,43983.52,3722.293333,0,5,5,4,"Debt Consolidation Loan, Student Loan, Not Specified, and Credit-Builder Loan",0,1,3.22,2,Good,640.1882289,26.9970077,18 Years and 0 Months,No,45104,368.1259539,Low_spent_Large_value_payments,171.3055802,0,0.2963,1.294,1.4757,1.1735,1.5052 -0x23071,CUS_0x3365,August,32,#F%$D@*&8,Scientist,57309.78,4623.815,8,10,31.88954781,7,"Personal Loan, Payday Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Mortgage Loan, and Not Specified",36.0917053,18,13.23,11,Standard,1556.58,31.12615257,18 Years and 10 Months,Yes,1621.571921,172.0068781,High_spent_Medium_value_payments,224.47262,0,0.7403,-0.9424,-1.51,-0.7415,-1.1995 -0x2307d,CUS_0xac5c,August,35,899-94-5376,_______,33917.38,,6,10,28,5,"Student Loan, Personal Loan, Auto Loan, Personal Loan, and Personal Loan",18.39969064,13.85777132,17.35,11,Standard,2181.294903,24.20914093,6 Years and 6 Months,Yes,255.9528908,,Low_spent_Small_value_payments,94.66695246,0,0.2373,-0.7357,1.3228,-0.949,1.191 -0x23089,CUS_0xb32e,August,32,645-78-2989,Developer,121179.4,,1647,2,8,3,"Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,13.77510534,7.35,6,_,1569.933574,40.06703456,31 Years and 11 Months,No,162.9715453,384.4669827,Low_spent_Medium_value_payments,752.7898053,0,0.797,-1.1793,0.4774,0.329,-0.072 -0x23095,CUS_0xa90c,August,41,071-17-4816,Media_Manager,34676,,3,6,18,4,"Not Specified, Home Equity Loan, Student Loan, and Credit-Builder Loan",24.54792403,16,9.99,7,Standard,138.3,38.83721591,6 Years and 10 Months,Yes,69.52897556,153.2929424,Low_spent_Large_value_payments,363.2447487,0,-0.1405,2.4158,-2.2735,1.3878,0.2762 -0x230a1,CUS_0x1cab,August,39,426-83-2491,Lawyer,8578.89,,8,10,16.95700519,8,"Student Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Personal Loan, and Auto Loan",42.07071932,20.03003773,8.96,12,Bad,5014.612065,26.66526036,8 Years and 4 Months,Yes,1369.744805,20.93937909,High_spent_Small_value_payments,194.8561968,0,-0.3404,1.003,-0.4076,1.717,-2.6074 -0x230ad,CUS_0xbf1d,August,23,#F%$D@*&8,Scientist,20434.15,,7,6,8,4,"Mortgage Loan, Student Loan, Student Loan, and Home Equity Loan",,14,10.6,4,_,1393.23,31.56241432,17 Years and 8 Months,NM,61.44926175,108.3552285,Low_spent_Small_value_payments,289.6800931,0,-0.924,-0.0189,0.2962,2.0275,0.054 -0x230b9,CUS_0x1688,August,39,741-04-8469,Architect,56400.18,,7,5,30,100,"Credit-Builder Loan, and Personal Loan",17.68794587,11,13.84,6,Standard,2582.73,28.12475185,17 Years and 10 Months,Yes,56.78390252,,High_spent_Medium_value_payments,492.4542779,0,0.9666,1.2381,-1.5881,0.3958,1.3079 -0x230c5,CUS_0x7d8e,August,49,182-85-6661,Media_Manager,22354.3,,0,5,9,4,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",,,5.29,2,Good,1010.56,27.00479834,21 Years and 3 Months,No,46.28916293,228.1318355,Low_spent_Small_value_payments,189.6648349,0,-0.0534,1.7425,-0.6717,-1.0845,1.0696 -0x230d1,CUS_0x1897,August,34,173-54-8322,Manager,35497.94,3063.161667,6,7,18.06745738,2,"Debt Consolidation Loan, and Student Loan",23.97570429,14.66556691,6.86,9,_,2740.971009,24.37102448,6 Years and 9 Months,Yes,39.33346978,222.2493828,Low_spent_Large_value_payments,288.0130262,0,1.9494,3.4571,-0.8419,0.4109,0.0669 -0x230dd,CUS_0x2985,August,47,637-15-6300,Journalist,19277.13,1891.4275,0,1,11,1,Not Specified,8.922434614,11,4.45,5,Good,817.3050271,30.90217683,22 Years and 3 Months,No,8.03993902,81.42146151,High_spent_Medium_value_payments,360.0136645,0,-1.5757,0.5059,0.3666,-0.7858,-0.4007 -0x230e9,CUS_0xc349,August,23,352-63-2965,Media_Manager,19796.08,1357.673333,8,10,22.95700519,7,"Not Specified, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Payday Loan, and Credit-Builder Loan",20.29242847,12.40537259,16.47,7,Standard,2949.399032,36.98556106,9 Years and 9 Months,Yes,1391.556425,99.25658595,Low_spent_Small_value_payments,213.9039532,0,0.1311,-1.5409,0.7228,-0.2701,-0.3634 -0x230f5,CUS_0x5c7f,August,32,399-31-4820,Manager,108134.07,,5,3,15,0,,,19,19.29,5,Standard,198.06,36.49881615,24 Years and 6 Months,Yes,0,144.2458402,!@9#%8,973.6714098,0,1.5404,-0.3188,0.2887,-1.4542,1.2686 -0x23101,CUS_0x5dfe,August,21,199-47-2114,Writer,103228.74,8729.395,3,7,12,0,,,10,5.87,4,Standard,1478.43,34.09360563,17 Years and 11 Months,NM,0,10000,High_spent_Medium_value_payments,993.7302148,0,-0.6144,0.3974,-0.4559,-0.6481,-0.5299 -0x2310d,CUS_0xbdee,August,34,539-32-3188,Musician,144968.36,12066.69667,8,4,12.28836175,2,"Student Loan, and Home Equity Loan",5.803651832,8,7.58,8,Standard,585.96,35.57048416,,Yes,150.0656023,1284.770239,Low_spent_Small_value_payments,481.7712859,0,0.4399,0.8195,-0.704,0.658,-0.4355 -0x23119,CUS_0x5adc,August,80,691-53-5977,_______,43691.64,3747.97,5,461,16,2,"Debt Consolidation Loan, and Home Equity Loan",19.49965378,15,-3.35,4,Standard,1160.837954,26.55533067,20 Years and 11 Months,Yes,64.74887416,416.5355354,Low_spent_Medium_value_payments,234.615935,0,0.3525,-0.2267,-1.4202,0.7058,1.0224 -0x23125,CUS_0x3621,August,21,048-48-0205,Mechanic,28102.36,2209.863333,3,6,25.06745738,6,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Auto Loan, and Personal Loan",,14,19.98,14,Standard,2282.770954,36.46960644,15 Years and 2 Months,Yes,112.4735929,191.5363144,Low_spent_Large_value_payments,160.2561381,0,0.5256,0.7175,-1.4209,0.4782,1.2901 -0x23131,CUS_0x7d8a,August,18,201-80-4832,Lawyer,18781.73,,6,6,25,2,"Payday Loan, and Credit-Builder Loan",26.88496631,18.65351891,9.25,10,Bad,1487.589375,38.76863349,12 Years and 10 Months,Yes,28.17186412,104.1821253,Low_spent_Large_value_payments,300.4604272,0,0.4291,-0.5816,1.8379,0.0735,0.2184 -0x2313d,CUS_0x192d,August,49,994-28-9986,Engineer,143665.12,12168.09333,0,4,1.288361749,0,,3.836766266,6.940743822,7.77,5,_,102.354515,35.78136593,29 Years and 0 Months,No,0,1548.483146,Low_spent_Medium_value_payments,368.2636479,0,1.0734,-1.8152,-0.0924,0.557,2.0225 -0x23149,CUS_0xe47,August,48,722-81-1174,_______,34336.3,,4,4,8,100,Auto Loan,24.4438564,19,5.15,1,Standard,723.2392258,34.41125193,23 Years and 11 Months,No,299.1311831,86.70629508,High_spent_Small_value_payments,459.285226,0,-1.3671,0.369,-0.9759,-1.2011,0.5056 -0x23155,CUS_0xa423,August,56,903-45-7906,Manager,65586.32,5202.526667,1,3,12,4,"Credit-Builder Loan, Not Specified, Mortgage Loan, and Payday Loan",6.09214098,7,0.86,,Good,1282.652678,26.25377664,32 Years and 3 Months,No,120.0642051,119.0547601,High_spent_Small_value_payments,554.8454516,0,0.6747,-1.1247,2.9775,0.4397,-0.3592 -0x23161,CUS_0x9c38,August,27,027-48-8367,Entrepreneur,61922.67,5090.2225,10,6,34,5,"Home Equity Loan, Not Specified, Mortgage Loan, Payday Loan, and Auto Loan",29.83411168,21.56698185,7.28,10,Bad,2578.093366,37.11519452,10 Years and 9 Months,NM,32134,60.52304143,High_spent_Large_value_payments,505.6352348,0,2.2198,-0.1833,0.8319,-0.0106,-2.5114 -0x2316d,CUS_0x89d2,August,41,606-44-0812,Teacher,14468.225,,4,7,12,2,"Mortgage Loan, and Not Specified",9.225592602,10,2.65,4,Good,522.7283862,37.80492726,,No,18.04682801,11034.58205,High_spent_Small_value_payments,322.7571954,0,-1.585,-0.2796,-0.7657,-0.7337,-1.2726 -0x23179,CUS_0x8e8,August,37,793-86-5298,Scientist,41640.54,3466.045,6,7,8,1,Auto Loan,,18,4.29,5,Standard,991.0219946,39.48360871,27 Years and 6 Months,No,30.20831546,99.16604947,High_spent_Large_value_payments,468.9026545,0,-1.0189,-0.3355,-0.2743,0.6958,-2.4856 -0x23185,CUS_0xade0,August,29,648-90-8130,Engineer,73106.92,6309.243333,1,2,4,1,Home Equity Loan,,12,9.35,6,Good,778.5950782,37.96675854,31 Years and 6 Months,No,42.85211198,140.851644,!@9#%8,702.1324679,0,1.9194,-0.4828,-0.5094,-0.5077,-0.1889 -0x23191,CUS_0xac95,August,56,710-27-1475,Lawyer,13395.25,1191.270833,5,4,9,2,"Debt Consolidation Loan, and Payday Loan",6.624085375,7,8.3,3,Good,299.0329398,25.9590156,22 Years and 3 Months,No,19.59779588,150.0863074,Low_spent_Small_value_payments,253.2338623,0,-0.3677,0.8086,-2.1174,-0.0703,0.8203 -0x2319d,CUS_0xb0d3,August,80,332-89-4222,Scientist,44272,,1,5,4,2,"Payday Loan, and Credit-Builder Loan",,2,3.84,0,_,990.27,24.79571963,19 Years and 3 Months,No,339.3125535,74.07487775,High_spent_Large_value_payments,474.8396337,0,-0.7759,-2.0565,-0.4779,0.6528,-0.3474 -0x231a9,CUS_0x474,August,26,341-99-7813,Media_Manager,58558.3,5098.858333,3,2,9.288361749,0,,0,2,11.8,6,Good,248.7155222,37.88602409,17 Years and 3 Months,No,0,11650.55463,Low_spent_Small_value_payments,524.1647302,0,0.3463,-1.2293,-0.052,-1.4084,-0.7926 -0x231b5,CUS_0x37bc,August,54,138-54-7329,Lawyer,119014.2,,4,2,11.28836175,2,"Mortgage Loan, and Student Loan",,3,8.22,4,Good,170.0727247,40.56449514,32 Years and 9 Months,No,67857,708.8788886,High_spent_Large_value_payments,828.0296063,0,1.4909,0.4229,-1.7336,0.1307,-0.0454 -0x231c1,CUS_0x1d63,August,20,836-01-6064,Entrepreneur,15993.33,1544.7775,5,5,25,5,"Auto Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",13.43188581,12.33656707,18.41,12,Standard,2655.167213,39.75414984,20 Years and 6 Months,Yes,43.57508045,,Low_spent_Small_value_payments,240.5217671,0,1.0606,-0.3565,0.1409,-0.8489,0.5227 -0x231cd,CUS_0x8956,August,26,#F%$D@*&8,Accountant,43615.2,3420.6,4,6,4230,4,"Student Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",10.78805718,10.27218191,6.46,7,Good,1144.660464,32.84936908,,No,128.5499867,169.6414046,Low_spent_Small_value_payments,333.8686087,0,0.2201,-1.3765,0.2867,0.5445,0.2571 -0x231d9,CUS_0x731,August,26,217-03-0589,Media_Manager,76330.68,6495.89,3,4,17,4,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",,,9.02,10,Standard,1371.96,39.74778539,9 Years and 5 Months,Yes,223.9488469,533.5417301,Low_spent_Medium_value_payments,172.098423,0,0.906,-0.6679,-1.089,0.5497,-0.4809 -0x231e5,CUS_0x5507,August,22,681-74-5904,Journalist,34848.04,,6,7,32.06745738,6,"Auto Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",31.65012423,,18.42,10,Bad,3498.903591,31.32434987,6 Years and 3 Months,NM,101.0170392,308.8877964,!@9#%8,125.7752098,0,0.8724,-0.8133,0.2017,1.1278,0.7297 -0x231f1,CUS_0x65f0,August,39,013-35-9724,Mechanic,15724.73,,6,859,18,6,"Debt Consolidation Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Student Loan",,20.47920848,16.43,10,Standard,1838.931807,28.92603206,15 Years and 8 Months,Yes,49.56535094,,Low_spent_Small_value_payments,219.2721602,0,0.3625,1.0142,0.8521,-1.1404,0.4542 -0x231fd,CUS_0x150c,August,21,008-81-3367,Mechanic,128427.2,,5,4,0.288361749,2,"Auto Loan, Payday Loan, and Debt Consolidation Loan",,8,4.2,4,Good,201.94,38.34468026,16 Years and 6 Months,No,224.8576526,587.6898255,High_spent_Medium_value_payments,919.5166496,0,-0.1921,0.3063,0.0501,1.2672,0.2616 -0x23209,CUS_0x94ee,August,42,947-09-6151,Architect,42755.64,3141.50214,7,8,15,6,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",37.78132045,21,5.01,17,_,1486.46,30.54948895,7 Years and 3 Months,NM,488.4043872,75.37834169,High_spent_Medium_value_payments,363.8821316,0,0.0623,0.6857,-0.1222,-0.4285,0.1641 -0x23215,CUS_0x4aad,August,37,664-16-3753,Entrepreneur,16685.02,,9,6,23.06745738,5,"Credit-Builder Loan, Student Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",41.52614181,20.56889909,7.17,10,Bad,2857.033568,26.68369453,10 Years and 2 Months,NM,35.188053,161.5622161,Low_spent_Small_value_payments,220.1712763,0,-0.3169,0.1198,1.1805,1.3564,2.2294 -0x23221,CUS_0x84a6,August,23,048-49-2969,Mechanic,22157.27,,6,6,19,4,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",16.28498481,11,14.37,8,Standard,1345.58,31.68972119,12 Years and 6 Months,Yes,64.04102514,,High_spent_Medium_value_payments,326.9027374,0,-2.2567,-0.4641,-2.142,1.1636,-1.1853 -0x2322d,CUS_0x49a9,August,34,290-78-0986,Journalist,31155.48,,7,1163,21,5,"Student Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",19.62667445,,12.48,10,Standard,2895.370546,34.05252901,19 Years and 11 Months,Yes,76.91861154,,Low_spent_Small_value_payments,229.4744913,0,1.3548,-0.8305,0.4781,-2.836,1.3207 -0x23239,CUS_0x419f,August,52,794-10-4892,Musician,66816.26,,4,4,10,0,,,9,11.4,2,_,143.87,28.56914169,33 Years and 6 Months,No,0,483.6138681,Low_spent_Small_value_payments,369.3882986,0,-0.8842,1.3189,-0.0621,-0.3373,-1.0699 -0x23245,CUS_0xad19,August,21,851-02-3436,Teacher,109364.08,9409.673333,3,3,16,3,"Personal Loan, Mortgage Loan, and Payday Loan",9.113712536,8,6.09,5,Standard,355.1722456,29.83004277,21 Years and 5 Months,Yes,227.2944082,813.8838561,Low_spent_Medium_value_payments,292.4605047,0,-0.187,-1.2274,-1.2345,-0.3491,0.1295 -0x23251,CUS_0x30c1,August,37,329-10-0684,Doctor,58963.04,,5,2,4,0,,,7,5.2,4,Good,1129.656615,30.18461311,24 Years and 10 Months,No,0,38.03047993,High_spent_Large_value_payments,712.7036533,0,1.0963,-0.5285,0.474,0.8982,0.4557 -0x2325d,CUS_0x4479,August,33,467-46-4226,Accountant,55448.74,4735.728333,7,4,12,1,Credit-Builder Loan,16.79670414,15,18.42,4,Standard,1450.89,31.11562752,33 Years and 0 Months,No,30.18409209,185.4286137,High_spent_Small_value_payments,517.9601275,0,-0.3829,-1.0735,0.8662,-0.9123,0.692 -0x23269,CUS_0x1144,August,42,720-70-0565,Doctor,135851.24,,4,4,18,2,"Home Equity Loan, and Auto Loan",21.06305939,,11.19,13,Standard,610.2994174,32.63187455,25 Years and 2 Months,Yes,206.5571936,1303.47566,Low_spent_Medium_value_payments,76.25273595,0,-1.3283,-1.5589,0.0563,0.0338,0.0424 -0x23275,CUS_0x3b60,August,44,279-38-5027,Mechanic,37655.98,,6,3,19,6,"Personal Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,26.53732603,16.1,7,Standard,1411.511454,29.70278619,,Yes,155.2373301,77.52551951,!@9#%8,353.8369837,0,-1.076,0.5839,-0.1013,-0.624,0.3512 -0x23281,CUS_0x5385,August,38,583-75-4096,Developer,11911.285,1113.607083,7,7,12,3,"Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",15.95615529,15,9.16,2,Good,841.8895045,35.70401782,28 Years and 11 Months,No,20.59634465,176.8199382,Low_spent_Small_value_payments,230.9060816,0,-1.146,-0.4817,-0.3344,0.9717,1.0821 -0x2328d,CUS_0x165e,August,30,185-36-2802,Doctor,59850.24,5156.52,5,5,17,3,"Payday Loan, Payday Loan, and Payday Loan",17.0639782,14,14,13,Standard,2294.21,30.56909304,14 Years and 8 Months,NM,131.8173967,,High_spent_Large_value_payments,583.5785397,0,-1.2644,0.6161,-0.1386,0.4391,-0.6125 -0x23299,CUS_0x6a1a,August,42,399-01-1198,Teacher,12948.695,1297.057917,6,7,5,4,"Credit-Builder Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",14.17117998,10,15.73,8,Standard,1361.45,31.53915339,24 Years and 10 Months,Yes,30.78053358,102.0792337,Low_spent_Medium_value_payments,276.8460244,0,0.9012,0.4075,-1.6765,0.1088,2.3965 -0x232a5,CUS_0x9d2e,August,25,679-69-9201,Scientist,15160.61,1335.384167,3,3,7,4,"Personal Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",2.766433097,3.582470483,5.89,8,Good,1302.032125,32.0634568,32 Years and 2 Months,NM,37.42431979,89.58929683,Low_spent_Small_value_payments,296.5248,0,1.504,-0.6354,0.8414,0.5583,0.3439 -0x232b1,CUS_0x1942,August,28,508-88-3060,Developer,83800.56,7269.38,3,3,5,2,"Not Specified, and Student Loan",16.62279856,,9.41,1967,Standard,937.6120332,33.56137472,20 Years and 9 Months,Yes,117.3508579,294.6610767,Low_spent_Small_value_payments,604.9260654,0,1.39,1.0251,-0.3415,0.395,2.2215 -0x232bd,CUS_0x3cb7,August,21,057-41-0231,Scientist,29487.25,1984.338744,7,3,16,3,"Credit-Builder Loan, Auto Loan, and Home Equity Loan",36.07729139,23.29597351,11.71,9,Standard,181.1362438,27.38337374,28 Years and 2 Months,Yes,243.5605393,286.3216524,!@9#%8,154.2769804,0,-0.3842,-0.3647,0.2688,1.7317,-0.0091 -0x232c9,CUS_0xa64c,August,80,135-47-1680,Journalist,119643.12,10127.26,3,2,8,2,"Auto Loan, and Payday Loan",,5,2.89,2,Good,186.99,32.31680347,24 Years and 8 Months,No,103.2467749,,Low_spent_Small_value_payments,163.6641909,0,0.5346,-1.6646,0.0204,-0.7044,-1.5535 -0x232d5,CUS_0x18e1,August,37,536-82-6071,Media_Manager,36722.53,2933.210833,3,6,4,0,,9.799192124,10,-4.2,2,_,328.05,25.93032923,29 Years and 9 Months,No,0,108.7614207,High_spent_Medium_value_payments,434.5596627,0,0.225,-1.0929,0.8195,0.0471,-2.9075 -0x232e1,CUS_0x2a30,August,30,738-19-2481,Lawyer,62231.34,5006.945,6,4,17,2,"Debt Consolidation Loan, and Payday Loan",,12,4.64,0,_,551.4,37.33427445,32 Years and 2 Months,No,58.2517472,10000,Low_spent_Small_value_payments,95.41955336,0,1.374,-1.2766,0.847,-0.8824,-0.59 -0x232ed,CUS_0x6c53,August,35,805-27-6510,Mechanic,116611.8,9836.65,7,3,15,3,"Credit-Builder Loan, Not Specified, and Personal Loan",20.17533041,16,19.43,0,Standard,1373.9,41.22075403,30 Years and 6 Months,Yes,288.2533797,487.4590962,Low_spent_Large_value_payments,477.9525241,0,1.428,-0.7016,-0.2462,-1.2026,0.4049 -0x232f9,CUS_0x31e8,August,24,587-68-1142,Doctor,14363.25,,10,7,20.06745738,7,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",,28.03560939,17.76,6,Bad,2196.893048,37.71684784,13 Years and 8 Months,Yes,39760,62.38480917,Low_spent_Small_value_payments,234.9671556,0,0.3047,2.7152,0.2053,0.2966,-1.5132 -0x23305,CUS_0xa38e,August,23,701-32-0533,Entrepreneur,108504.92,9075.076667,7,3,6.288361749,4,"Student Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",,14.57644586,1.56,2,Standard,270.2502965,38.12795026,20 Years and 0 Months,No,209.5280664,,High_spent_Large_value_payments,856.8113741,0,-0.198,-0.3838,-0.1179,-1.4728,-0.2405 -0x23311,CUS_0x9053,August,18,421-12-3886,Manager,7087.38,619.615,8,8,26.88954781,7,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,22,31.43,12,Bad,3561.35,33.44140009,8 Years and 3 Months,Yes,1362.294522,30.90503809,Low_spent_Small_value_payments,264.4318587,0,0.5185,-0.5984,0.7219,0.5356,-0.0016 -0x2331d,CUS_0x29e7,August,21,987-86-2554,_______,10203.99,1119.3325,6,10,30,3,"Credit-Builder Loan, Home Equity Loan, and Student Loan",13.47765367,9.41090714,8.53,12,Standard,1886.823167,29.96005143,5 Years and 8 Months,Yes,16.57658329,10000,Low_spent_Large_value_payments,306.1310627,0,0.1048,-0.1102,1.5382,-0.5149,0.697 -0x23329,CUS_0x45fc,August,24,614-52-8696,Doctor,36787.58,3362.631667,8,9,29.95700519,8,"Payday Loan, Payday Loan, Home Equity Loan, Auto Loan, Student Loan, Payday Loan, Auto Loan, and Student Loan",,19.93540214,15.58,11,Bad,4589.003047,37.64345772,1 Years and 3 Months,Yes,1456.751603,30.18040672,High_spent_Large_value_payments,368.2807877,0,1.8462,-0.2398,-0.4625,2.0136,-0.0662 -0x23335,CUS_0x5833,August,42,030-84-1557,_______,20320.175,,4,4,11,0,,3.06968878,7,2.77,6,Good,270.26,23.13806977,22 Years and 10 Months,No,0,149.316532,Low_spent_Small_value_payments,307.1182597,0,-0.2619,-0.7346,-0.1245,-2.4775,0.0628 -0x23341,CUS_0x8c76,August,26,762-29-4014,Engineer,122543.56,10343.96333,5,6,18,4,"Student Loan, Auto Loan, Auto Loan, and Student Loan",28.03426585,19,2.41,5,Standard,1302.42,28.39343321,28 Years and 6 Months,No,349.480772,211.1606667,High_spent_Large_value_payments,713.7548946,0,1.0307,0.7237,1.2204,-0.4925,-0.2038 -0x2334d,CUS_0x109b,August,53,661-04-3699,Manager,31641.93,,4,6,7,3,"Personal Loan, Student Loan, and Personal Loan",,13.83209406,3.37,1,Standard,651.3629095,40.34938872,20 Years and 5 Months,No,60.33629927,,Low_spent_Small_value_payments,344.6589324,0,-0.6655,-0.0239,-0.4917,-1.0978,0.9236 -0x23359,CUS_0xb7b3,August,21,809-15-0659,Mechanic,14538.09,,10,8,23.95700519,7,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Auto Loan, Student Loan, Auto Loan, and Home Equity Loan",36.09350517,25.03765647,8.6,9,Bad,4344.784249,39.77998861,13 Years and 0 Months,Yes,1383.70778,50.41035107,High_spent_Small_value_payments,247.0822496,0,0.2597,0.9571,-0.6692,-0.3299,-1.3061 -0x23365,CUS_0x739,August,60,767-56-4115,Writer,132848.88,10920.74,5,1,6.288361749,0,Not Specified,11.93438624,13,,4,_,913.8589334,34.6672997,,No,55.87793313,596.2671668,High_spent_Large_value_payments,1119.486861,0,-0.0882,-2.3611,0.4056,-1.2589,-0.1524 -0x23371,CUS_0x3634,August,42,333-26-4284,Writer,45706.47,,6,7,26.06745738,5,"Student Loan, Personal Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",,15,21.63,7,Bad,4257.940954,39.67605035,,Yes,142.8464474,83.36436703,High_spent_Large_value_payments,351.1561476,0,0.7655,-1.054,-0.894,-0.8477,0.4762 -0x2337d,CUS_0x7789,August,30,013-57-4539,Scientist,10882.8,646.9,4,4,2,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Personal Loan",22.68335155,18,7.01,8,Good,1277.43337,24.50861877,26 Years and 9 Months,No,19.16208752,22.7575778,High_spent_Small_value_payments,285.4918066,0,0.2736,0.3211,-1.1118,-0.1875,0.6508 -0x23389,CUS_0x69c3,August,53,979-06-3778,Lawyer,43354.77,3491.8975,1,4,4,1,Student Loan,12.51964187,12,8.23,5,_,1078.031913,27.74269425,,No,29.91625444,273.7473803,Low_spent_Medium_value_payments,354.7167119,0,-0.7633,-0.6708,0.0492,1.0336,-0.0091 -0x23395,CUS_0x68f8,August,32,929-60-1367,Entrepreneur,34709.28,,4,2,4.288361749,2,"Mortgage Loan, and Auto Loan",0,1,2.81,3,Good,94.93031252,36.01612328,27 Years and 6 Months,No,51.39629433,,Low_spent_Large_value_payments,329.1832395,0,1.5845,0.0539,1.8404,-1.3626,1.0539 -0x233a1,CUS_0xa83e,August,47,542-29-2531,Journalist,30424.17,,5,7,14,4,"Mortgage Loan, Credit-Builder Loan, Student Loan, and Not Specified",12.98190183,12,3.46,6,Standard,519,28.55697034,16 Years and 8 Months,No,65.03551847,107.7171985,High_spent_Medium_value_payments,360.7820331,0,0.1751,0.9447,-0.3367,1.1242,-0.0126 -0x233ad,CUS_0x7f0b,August,33,619-04-3811,Teacher,16590.27,,8,6,22,7,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",39.08914066,27.38695501,8.59,7,Bad,2833.803974,23.46231492,,NM,52.68073754,,Low_spent_Small_value_payments,211.8888366,0,-0.9234,1.1164,-1.5975,-0.6321,-1.0047 -0x233b9,CUS_0x374a,August,80,424-21-8795,Mechanic,35176.5,,4,5,8,4,"Personal Loan, Mortgage Loan, Not Specified, and Home Equity Loan",28.32898114,20,3.74,4,Standard,234.65,38.31960335,16 Years and 2 Months,Yes,104.7044271,190.9610095,Low_spent_Large_value_payments,255.8720634,0,0.0765,-0.6072,-0.0568,-2.009,0.8038 -0x233c5,CUS_0xb68e,August,30,559-85-9762,Scientist,20091.86,,7,7,31.06745738,5,"Credit-Builder Loan, Payday Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",40.18017276,25,8.85,14,Bad,2733.190954,24.3635403,9 Years and 2 Months,Yes,72.7986603,236.7722588,Low_spent_Small_value_payments,135.4409596,0,0.1216,0.3096,0.8397,-0.5285,-1.0604 -0x233d1,CUS_0xa15a,August,23,435-60-9418,Scientist,89870.98,,1,4,2.288361749,2,"Auto Loan, Mortgage Loan, and Personal Loan",4.462346276,8,5.08,2,Good,48.11,40.17981163,,No,192.1457441,515.0304258,High_spent_Large_value_payments,687.3861244,0,-0.6766,-0.5598,0.2524,-1.2174,0.7032 -0x233dd,CUS_0x63c0,August,47,610-63-2729,Architect,64969.05,,3,6,6,2,"Personal Loan, and Student Loan",,18.63090764,8.61,4,Standard,855.6627774,40.18125081,22 Years and 3 Months,No,96.42407743,117.5440118,High_spent_Medium_value_payments,551.4406608,0,-1.9605,0.3396,-0.3279,-0.6686,3.137 -0x233e9,CUS_0xb1f1,August,18,#F%$D@*&8,Scientist,9700.81,870.4008333,9,7,21,3,"Mortgage Loan, Not Specified, and Credit-Builder Loan",29.67690867,23,4.82,13,Bad,2542.15,28.65968524,13 Years and 3 Months,Yes,21.75751984,,Low_spent_Small_value_payments,324.1671022,0,0.4423,0.6593,1.3386,2.1428,0.0827 -0x233f5,CUS_0x1ed3,August,23,988-10-7390,Engineer,45947.1,3843.925,9,9,32.06745738,7,"Home Equity Loan, Payday Loan, Not Specified, Auto Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",30.40783694,20,23.49,9,Bad,4036.710954,33.24473272,7 Years and 8 Months,Yes,165.6522317,94.54526773,High_spent_Large_value_payments,337.4747126,0,-1.27,-0.7973,-1.1447,0.2592,-1.0697 -0x23401,CUS_0x6333,August,45,550-07-6163,Musician,15350.03,,6,4,35.06745738,3,"Debt Consolidation Loan, Not Specified, and Auto Loan",20.85930773,13.33421633,18.35,15,_,2539.934361,29.54988325,12 Years and 11 Months,Yes,31.92462194,87.80155906,Low_spent_Large_value_payments,223.3704477,0,0.2193,-1.7686,0.2891,-0.4558,1.9066 -0x2340d,CUS_0x86aa,August,35,736-64-3228,Lawyer,54525.94,4655.828333,3,5,9.288361749,4,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, and Not Specified",7.190139724,9,11.02,,Standard,157.1,24.85146764,22 Years and 3 Months,Yes,131.0803727,494.353943,High_spent_Medium_value_payments,510.0859786,0,0.8038,-0.7453,-1.5418,-0.5548,-0.8141 -0x23419,CUS_0x5b92,August,52,864-15-7291,Doctor,66190.34,,4,4,418,0,,22.23416303,17,6.4,1,Good,557.57,23.3767004,32 Years and 4 Months,NM,0,,Low_spent_Small_value_payments,169.5477231,0,-0.8264,-0.2156,0.3438,-0.8625,-0.2164 -0x23425,CUS_0x2552,August,20,961-88-3686,Musician,19826.67,1805.2225,6,3,33,5,"Student Loan, Home Equity Loan, Personal Loan, Auto Loan, and Personal Loan",15.51437711,15,11.47,8,Standard,2052.89,31.07645025,5 Years and 11 Months,Yes,45.86892834,126.3592571,Low_spent_Small_value_payments,298.2940645,0,1.7949,1.2412,-0.2956,0.9735,-1.9572 -0x23431,CUS_0x32a1,August,55,542-03-2848,Engineer,11249.15,984.4291667,3,3,12,1,Payday Loan,16.8168555,,10.02,4,Good,552.5351122,21.99584851,26 Years and 3 Months,NM,8.092134624,27.91043598,High_spent_Medium_value_payments,315.1362395,0,0.305,1.6024,0.3956,0.3275,-0.088 -0x2343d,CUS_0x48dd,August,20,202-26-2578,Accountant,5753875,4022.83,6,4,12,2,"Debt Consolidation Loan, and Credit-Builder Loan",,13,6.47,6,Standard,1077.91,29.65217957,9 Years and 9 Months,Yes,46.97017764,315.7168505,Low_spent_Medium_value_payments,319.5959718,0,-1.4781,-0.1931,1.8814,-0.872,-1.0514 -0x23449,CUS_0x1422,August,18,#F%$D@*&8,Developer,57877.95,,8,10,15,5,"Home Equity Loan, Not Specified, Not Specified, Debt Consolidation Loan, and Mortgage Loan",21.17153856,15.42246731,14.36,15,Standard,2049.126083,34.80238038,20 Years and 0 Months,Yes,204.4724626,294.4347682,Low_spent_Small_value_payments,244.2090192,0,-0.0986,-1.0324,-1.0887,-0.7885,0.6701 -0x23455,CUS_0x4d71,August,28,237-42-4184,Mechanic,96780.03,,4,5,2,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Not Specified",12.2329791,5.986726677,9.96,2,Good,636.8786469,36.87778634,30 Years and 0 Months,No,314.2240794,210.0184342,High_spent_Large_value_payments,542.4577365,0,-0.7058,-0.2923,0.335,0.6747,0.6975 -0x23461,CUS_0x558d,August,42,658-01-3989,Writer,17408.23,,6,3,17.06745738,6,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Student Loan, Personal Loan, and Payday Loan",23.25336589,14.77647826,14.51,8,Standard,2088.73698,25.58655645,7 Years and 6 Months,Yes,58.58963398,77.25405916,Low_spent_Small_value_payments,267.2046022,0,1.0231,2.2073,-2.2338,0.0245,2.489 -0x2346d,CUS_0x64b8,August,28,041-44-0647,Engineer,7160.835,431.73625,10,9,17.06745738,5,"Personal Loan, Student Loan, Mortgage Loan, Not Specified, and Payday Loan",31.57683939,20.47926225,9.51,11,Standard,1631.240278,39.84958141,20 Years and 2 Months,NM,25.07251001,27.12727086,Low_spent_Small_value_payments,254.2535562,0,-0.5586,-1.4423,0.0188,-1.8542,-0.5543 -0x23479,CUS_0x2ad1,August,30,787-51-5395,Engineer,75654.81,,7,6,12,1,Mortgage Loan,,15,11.4,6,Standard,1063.69,32.76429362,21 Years and 6 Months,Yes,43.03785726,70.08708083,High_spent_Large_value_payments,738.2318119,0,-0.0511,-0.6981,1.8394,-0.1665,0.2834 -0x23485,CUS_0x86fe,August,32,924-65-5740,Engineer,58739.82,,6,6,28,5,"Personal Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,18,0.64,11,_,4161.7,30.73204458,10 Years and 2 Months,Yes,193.7478476,345.3413933,High_spent_Small_value_payments,217.1092591,0,0.4856,0.21,-1.278,1.0684,0.2511 -0x23491,CUS_0xa8ba,August,21,655-71-4451,Accountant,20804.77,1436.730833,6,6,31.06745738,5,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",42.41287077,26.59614584,25.57,11,Bad,5296.298573,37.9399046,9 Years and 5 Months,NM,50.20546975,48.92095226,Low_spent_Medium_value_payments,297.8263734,0,0.2954,-0.7206,-0.5407,-0.3125,-0.198 -0x2349d,CUS_0x195b,August,42,185-13-1410,Scientist,52847.32,4607.943333,6,7,13,2,"Credit-Builder Loan, and Debt Consolidation Loan",19.64870985,14,1.09,3,Standard,517.77,33.47044336,22 Years and 2 Months,No,57.65777295,313.6073266,Low_spent_Large_value_payments,359.5292337,0,-1.4037,-0.0963,0.3924,-0.8692,1.0199 -0x234a9,CUS_0x5dec,August,29,538-14-7795,Accountant,49354.08,3924.84,10,10,17.88954781,8,"Credit-Builder Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",46.33811161,27.5494447,29.55,7,Bad,5186.564542,38.96281726,6 Years and 4 Months,Yes,1536.881568,31.77114498,!@9#%8,369.5012056,0,0.3441,1.709,-1.4802,-0.9865,-0.1144 -0x234b5,CUS_0x4bde,August,28,676-92-1755,Journalist,30884.06,,6,10,31.95700519,7,"Personal Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",35.27028318,23.80600087,15.78,11,Standard,2878.046914,24.91478782,19 Years and 9 Months,Yes,1474.174008,112.4425227,Low_spent_Small_value_payments,212.5002664,0,-2.2021,-0.1136,-0.1724,0.8848,-0.4283 -0x234c1,CUS_0x7ec0,August,36,979-34-5110,Architect,20057.71,,7,5,27,8,"Payday Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",,18.23580219,24.22,11,Bad,5067.223297,39.07204218,7 Years and 3 Months,Yes,99.94135979,,!@9#%8,139.4010459,0,-0.1485,0.3305,-0.17,-0.3786,-0.8261 -0x234cd,CUS_0x5946,August,32,393-21-4479,Writer,30662.18,2661.181667,5,5,12,0,,,14,0.75,4,Good,887.8,28.39138138,18 Years and 6 Months,No,0,95.33697781,!@9#%8,430.7811889,0,-0.0585,-0.7998,1.4339,-0.7566,0.3588 -0x234d9,CUS_0xb5c5,August,35,531-86-8401,Architect,13566.77,,6,7,6,2,"Credit-Builder Loan, and Debt Consolidation Loan",23.59933067,19,,6,Good,504.3696456,26.86281979,,No,16.74433111,,Low_spent_Small_value_payments,333.2592263,0,-0.4342,-0.5502,-0.1272,-0.0125,0.3955 -0x234e5,CUS_0xb7de,August,38,626-74-0054,_______,14860.185,1320.34875,6,3,9,3,"Personal Loan, Auto Loan, and Debt Consolidation Loan",,,17.03,8,Standard,1263.45,37.5868169,17 Years and 2 Months,Yes,32.47059122,110.5542666,Low_spent_Small_value_payments,279.0100172,0,0.9865,-0.2076,-0.0555,-0.6885,-0.3282 -0x234f1,CUS_0xe09,August,27,172-37-8234,Journalist,121029.6,,2,4,12,2,"Payday Loan, and Auto Loan",4.72599903,3.500949802,7.18,2,_,1423.801077,32.79484751,21 Years and 6 Months,NM,169.1304848,250.7544712,High_spent_Small_value_payments,827.995044,0,0.6021,-1.2543,-1.4267,0.3735,-1.6116 -0x234fd,CUS_0x4203,August,80,857-44-8236,Musician,39649.74,,5,3,5272,0,,,6,1.47,7,Good,1338.65,30.91705247,21 Years and 11 Months,No,0,,High_spent_Medium_value_payments,446.1604958,0,-0.0854,0.5013,0.7682,0.5553,1.1146 -0x23509,CUS_0xa342,August,19,094-13-9253,Developer,126744.39,,5,4,0.288361749,4,"Auto Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",3.06968878,7,2.31,1,Good,839.57,28.42118893,31 Years and 4 Months,NM,313.9426663,666.2350456,High_spent_Medium_value_payments,744.2629991,0,0.2795,1.5684,-0.5967,-0.1947,0.0488 -0x23515,CUS_0x8e7d,August,36,930-67-4045,Lawyer,22744.15,,9,4,14,0,,15.92711801,11,11.73,2,Standard,116.17,26.83191722,29 Years and 9 Months,Yes,0,56.72777774,Low_spent_Medium_value_payments,414.3068056,0,-0.8524,-0.4695,-0.6657,0.7906,0.2188 -0x23521,CUS_0xa913,August,28,287-96-5037,Teacher,43832.92,3052.748607,5,5,16,2,"Payday Loan, and Payday Loan",25.52704917,17,17.25,9,Standard,1292.642187,38.17464664,17 Years and 8 Months,Yes,373.3718609,155.858337,!@9#%8,381.6505693,0,1.1848,0.509,0.8079,0.1235,-1.8434 -0x2352d,CUS_0x237b,August,28,185-41-6589,Musician,28754.13,,4,5,11,3,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",,20.61112199,12.84,3,Standard,1276.328996,26.474339,18 Years and 4 Months,Yes,66.95920908,220.8588684,!@9#%8,250.0996725,0,2.2265,-1.6642,2.4168,0.1908,0.4229 -0x23539,CUS_0x5fe9,August,32,#F%$D@*&8,_______,122503.12,9982.593333,3,7,7,0,,32.20691504,20.53779683,6.32,5,_,364.542155,31.91278139,17 Years and 8 Months,No,0,173.2107671,!@9#%8,1065.048566,0,-0.8076,1.7288,-0.767,0.2095,0.3462 -0x23545,CUS_0x8176,August,18,869-30-8189,Accountant,14447.52,,6,10,29.95700519,8,"Not Specified, Personal Loan, Mortgage Loan, Student Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",37.31442559,20,22.04,12,Bad,3179.560954,36.36329026,10 Years and 2 Months,Yes,1400.361479,,!@9#%8,165.9005885,0,2.0121,-1.1795,-0.6131,0.5725,0.6715 -0x23551,CUS_0x20dc,August,34,285-71-9431,Media_Manager,20975.4,,2,3,9,1,Auto Loan,,9,9.94,1,Good,656.6843477,26.20504155,24 Years and 3 Months,NM,16.19679223,77.72242518,High_spent_Medium_value_payments,361.0400067,0,-0.1858,-0.418,-1.5529,2.3007,-0.9355 -0x2355d,CUS_0x10e7,August,80,094-89-6380,_______,64933.76,,3,3,33,100,"Mortgage Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",25.05546385,19,13.04,11,Standard,2699.17,24.9586382,,Yes,193.6925821,186.1466654,High_spent_Medium_value_payments,406.9754192,0,1.4781,0.6157,0.5226,-1.6125,1.2112 -0x23569,CUS_0x6fbc,August,50,898-83-7529,Journalist,114452.12,,3,3,12,4,"Auto Loan, Not Specified, Debt Consolidation Loan, and Student Loan",24.02965728,16.27560258,-4.9,4,_,306.6293357,35.82165414,28 Years and 8 Months,Yes,257.2027608,104.3683526,High_spent_Large_value_payments,850.5965533,0,-1.7028,-0.1219,-0.2836,-0.7814,-0.0893 -0x23575,CUS_0x87a3,August,31,980-07-6877,Manager,40214.54,,3,5,22.06745738,3,"Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",32.8718178,21.65720558,11.99,14,Standard,2519.67997,41.24063464,12 Years and 10 Months,Yes,71.41267638,80.38779171,High_spent_Large_value_payments,408.5004106,0,1.3036,-0.1848,-0.2377,1.3309,0.0132 -0x23581,CUS_0x57f0,August,31,146-34-8954,Writer,171781.8,,0,3,0.288361749,2,"Payday Loan, and Payday Loan",12.5191838,12,5.62,5,Good,248.0838447,26.22538649,19 Years and 5 Months,No,258.7493459,1338.575174,Low_spent_Large_value_payments,618.4641119,0,-0.0303,-0.5662,-1.019,1.2357,-0.7448 -0x2358d,CUS_0x402d,August,34,474-98-6138,_______,46817.5,,8,3,10,4,"Not Specified, Payday Loan, Auto Loan, and Personal Loan",,13,11.45,1,_,613.71,37.25634427,17 Years and 5 Months,No,106.1789086,146.2530437,High_spent_Small_value_payments,421.813881,0,-1.0106,-0.0904,0.2584,0.2764,0.4072 -0x23599,CUS_0x5421,August,80,742-65-8790,Doctor,127284.18,,3,3,3.288361749,2,"Credit-Builder Loan, and Payday Loan",1.422950186,4,2.25,3,Good,628.7910257,40.1684287,26 Years and 4 Months,No,202.5438238,499.4158081,!@9#%8,1008.821391,0,0.1298,0.4447,1.5386,1.4132,0.3587 -0x235a5,CUS_0x7f2a,August,80,971-11-8511,_______,106141.53,7942.69524,4,237,7,2,"Student Loan, and Home Equity Loan",0,4,2.47,5,Good,532.22,31.74692185,18 Years and 6 Months,No,1079.882404,143.573103,High_spent_Large_value_payments,845.289503,0,0.7302,-0.599,0.3581,0.3697,-1.4273 -0x235b1,CUS_0x3de6,August,54,391-07-6393,Entrepreneur,14475.14,,8,3,13,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,11,-3.2,6,Standard,557.6236229,31.57874219,21 Years and 2 Months,Yes,33.5872729,82.78073354,Low_spent_Small_value_payments,295.0692872,0,1.1868,0.2534,1.1285,0.5579,1.2788 -0x235bd,CUS_0xb187,August,35,863-01-7811,Lawyer,14802.98,1065.581667,8,3,1,0,,20.76792006,17,1.57,1,Good,411.39,27.62680456,23 Years and 9 Months,No,0,95.22415452,Low_spent_Small_value_payments,301.3340121,0,-1.4639,0.2626,-0.3346,-0.2286,0.1023 -0x235c9,CUS_0x5502,August,80,256-41-5668,Architect,167067.08,,2,3,2,1,Debt Consolidation Loan,0.983353432,4,6.23,4,Good,753.58,27.36891769,27 Years and 11 Months,No,115.51083,,Low_spent_Large_value_payments,510.3588978,0,3.0379,-0.7687,0.0597,0.2001,-0.6012 -0x235d5,CUS_0xa650,August,42,001-30-8624,Scientist,81887.8,,5,3,26,6,"Not Specified, Auto Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,14,10.3,7,Standard,1882.85,26.07582081,16 Years and 11 Months,Yes,407.4785009,837.3773607,Low_spent_Small_value_payments,,0,-1.0295,-0.0269,-0.4054,-1.2699,1.1255 -0x235e1,CUS_0x4ead,August,42,006-00-9957,Accountant,10412.225,,8,7,10,3,"Home Equity Loan, Not Specified, and Mortgage Loan",,12.51349647,10.13,7,Standard,4.860882581,35.81865686,30 Years and 2 Months,Yes,18.83691358,76.36305684,Low_spent_Small_value_payments,270.9685712,0,-0.9648,1.0698,0.5368,-0.7603,-1.0129 -0x235ed,CUS_0x1492,August,36,612-31-0459,Teacher,9134.415,1051.20125,5,10,15,3,"Payday Loan, Mortgage Loan, and Student Loan",90,4106,13.19,6,Standard,1621.28,33.77879363,16 Years and 2 Months,Yes,15.95367734,92.90908063,Low_spent_Small_value_payments,286.257367,0,-0.3636,0.4319,1.737,1.0782,-0.0573 -0x235f9,CUS_0x30c8,August,23,073-19-8370,Media_Manager,128916.04,10898.00333,5,6,7.288361749,100,"Debt Consolidation Loan, and Not Specified",6.189807368,7,0.93,,Good,839.76,23.29079656,21 Years and 8 Months,No,181.464943,946.190255,Low_spent_Medium_value_payments,662.0825963,0,-1.4412,1.3921,0.1677,0.7176,0.0489 -0x23605,CUS_0xa3f3,August,32,193-77-8243,Mechanic,32382.97,,4,6,8,4,"Home Equity Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",22.5717638,19,13.58,0,Standard,96.80979702,32.59991519,16 Years and 2 Months,Yes,74.39920168,85.90268541,High_spent_Medium_value_payments,392.552305,0,1.2442,-0.1881,-0.0877,0.0545,0.9506 -0x23611,CUS_0x9ae0,August,26,527-72-6430,Doctor,58754.97,,8,8,29,5,"Personal Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",23.9343235,16,13.39,11,Standard,2632.8,30.85526679,13 Years and 10 Months,Yes,236.5745285,72.41735905,High_spent_Medium_value_payments,459.9328625,0,2.3471,-0.8023,0.657,-0.7096,-0.2747 -0x2361d,CUS_0x5fc9,August,35,575-83-5232,Teacher,16444.42,,7,8,25.06745738,3,"Debt Consolidation Loan, Not Specified, and Mortgage Loan",,20,10.19,6,Standard,1668.590954,27.09578397,19 Years and 2 Months,Yes,31.12662899,157.8585246,Low_spent_Small_value_payments,215.4313918,0,0.0326,2.373,0.7493,0.9247,-0.2296 -0x23629,CUS_0xc0e2,August,20,866-54-9066,Teacher,30624.62,,7,7,4264,6,"Auto Loan, Payday Loan, Personal Loan, Not Specified, Personal Loan, and Student Loan",20.36893493,19,12.61,10,Standard,1563.947895,31.16910845,9 Years and 8 Months,Yes,111.8435102,26.95574217,High_spent_Large_value_payments,336.3661462,0,-0.4754,1.0543,1.0409,0.6003,1.1678 -0x23635,CUS_0xa283,August,39,458-67-1891,Entrepreneur,68299.4,5074.935967,6,6,31,7,"Auto Loan, Auto Loan, Not Specified, Credit-Builder Loan, Payday Loan, Personal Loan, and Mortgage Loan",28.13619739,21,5.39,17,Bad,4913.68,28.63642714,7 Years and 0 Months,Yes,589.1941462,176.666038,High_spent_Medium_value_payments,350.9821816,0,-0.3305,1.8323,-2.4133,0.1853,0.65 -0x23641,CUS_0x7fd8,August,33,035-35-9608,Musician,65024.22,5532.685,3,6,3,2,"Student Loan, and Credit-Builder Loan",26.73516239,20,10.37,4,Standard,625.89,27.15914922,,No,58.99657454,53.90350421,High_spent_Large_value_payments,680.3684213,0,1.2013,0.0623,1.1572,0.1563,0.0259 -0x2364d,CUS_0x7622,August,39,645-67-9435,Musician,57878.7,,4,4,13,1,Personal Loan,22.52388356,20,8.07,0,Standard,693.23,24.73495972,18 Years and 11 Months,NM,41.26341162,356.533281,Low_spent_Small_value_payments,403.1258074,0,-0.2909,-0.6353,-0.2991,-0.8022,0.9045 -0x23659,CUS_0x5ac6,August,43,825-86-1844,Media_Manager,56180.84,4540.736667,6,10,33,5,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",25.4720356,18.48009364,24.16,10,Standard,1568.232422,31.29806483,18 Years and 2 Months,Yes,195.3462803,314.0734474,Low_spent_Large_value_payments,214.6539389,0,-1.7269,0.9764,0.0913,-0.9638,-0.1619 -0x23665,CUS_0x7f6c,August,18,196-69-7786,Lawyer,63928.95,5062.4125,6,6,8,4,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",90,3155,7.46,10,_,1290.64,24.49213612,19 Years and 4 Months,Yes,184.027368,90.68264486,High_spent_Large_value_payments,471.5312372,0,-0.2652,-1.6651,-0.0433,-0.2008,0.6284 -0x23671,CUS_0x2f31,August,53,649-23-1895,Developer,31460.89,2480.740833,3,4,2,1,Student Loan,14.37115974,,8.43,3,Good,661.01,36.7723563,28 Years and 2 Months,No,23.86391354,36.56771988,High_spent_Medium_value_payments,437.6424499,0,-0.6228,-1.3908,-0.9574,0.552,-0.8554 -0x2367d,CUS_0x6c2c,August,23,274-18-3184,Developer,41654.62,,10,10,25.88954781,7,"Payday Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Personal Loan",29.65050947,21.78082265,1.32,11,_,2321.432886,28.57073743,12 Years and 9 Months,Yes,1462.189877,239.0358306,High_spent_Small_value_payments,215.6660446,0,-1.0519,1.2978,1.6109,0.7165,1.1622 -0x23689,CUS_0xb3b4,August,46,155-17-5900,Developer,85421.19,7079.4325,4,7,10,1,Auto Loan,20.41872847,13,7.06,0,Standard,1203.57,33.62920877,17 Years and 4 Months,Yes,38.05343998,485.4976636,Low_spent_Large_value_payments,454.3921464,0,-0.4183,-0.9874,-0.187,-0.051,-1.9396 -0x23695,CUS_0xb82a,August,35,448-07-1432,Media_Manager,11280.545,1068.045417,8,3,11,2,"Mortgage Loan, and Credit-Builder Loan",15.03431212,,13.68,3,_,817.93,33.72875156,16 Years and 4 Months,Yes,65080,32.06189486,Low_spent_Medium_value_payments,339.2307838,0,0.8745,1.237,-0.1991,1.1842,1.0321 -0x236a1,CUS_0x1b0c,August,41,560-72-2453,Media_Manager,51508.62,,7,7,30,7,"Home Equity Loan, Payday Loan, Not Specified, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",48.64808861,29.2467515,2.58,8,_,4078.82073,33.25893222,10 Years and 4 Months,Yes,255.6802071,305.0532522,Low_spent_Large_value_payments,135.2050407,0,1.2583,-0.7253,1.1905,1.8198,0.5452 -0x236ad,CUS_0x9a9a,August,27,404-69-3730,Mechanic,22609.45,,6,7,15,3,"Home Equity Loan, Mortgage Loan, and Debt Consolidation Loan",,15,9.62,,_,1065.82,38.22227123,33 Years and 3 Months,Yes,50.76744811,100.8390466,!@9#%8,318.6055886,0,0.3652,0.4056,-1.2426,-0.1544,-0.3615 -0x236b9,CUS_0x6f59,August,28,249-34-8255,Media_Manager,21713.61,2076.4675,4,3,20,1,Home Equity Loan,,9,1.55,2,Standard,748.62,36.26958395,24 Years and 11 Months,Yes,11.70631337,53.63544524,High_spent_Medium_value_payments,392.3049914,0,-1.0177,-0.0529,1.771,1.5591,1.2415 -0x236c5,CUS_0xaf7d,August,54,540-49-8635,_______,112853.22,9552.435,2,4,3.288361749,2,"Student Loan, and Debt Consolidation Loan",0,3,8.06,0,Good,732.33,29.08815753,17 Years and 5 Months,NM,127.0722876,734.4197358,High_spent_Medium_value_payments,763.6889377,0,-0.3568,0.1195,-1.7417,-0.537,-0.0295 -0x236d1,CUS_0xbb5a,August,20,970-54-7926,Accountant,50891.94,,6,6,30.06745738,7,"Student Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",28.62800797,19.10796053,25.04,7,Bad,4889.033552,24.33587102,2 Years and 6 Months,Yes,222.5444194,,Low_spent_Small_value_payments,191.1763024,0,-1.2175,-0.5609,-1.5013,-1.0461,1.7171 -0x236dd,CUS_0xadad,August,33,027-11-6852,Doctor,92186.19,7487.1825,1,2,11.28836175,4,"Personal Loan, Auto Loan, Not Specified, and Personal Loan",0,0,9.74,4,Good,752.2923499,38.6221573,20 Years and 9 Months,No,185.7976538,547.0570842,High_spent_Medium_value_payments,697.4005569,0,0.056,0.8012,1.2594,-0.9601,-1.2728 -0x236e9,CUS_0x19a0,August,39,564-87-3414,Scientist,20618.37,,6,6,22,2,"Credit-Builder Loan, and Debt Consolidation Loan",39.83906391,24.26988618,18.74,10,Standard,1931.481458,36.91834774,,Yes,21.80668643,141.2613426,Low_spent_Small_value_payments,269.4517209,0,0.3669,-0.1417,0.6763,2.1232,-2.3202 -0x236f5,CUS_0x6610,August,61,242-80-2380,Developer,107313.84,9242.82,8,7,16.28836175,0,,22.80396931,19,11.77,2,Standard,697.3942403,31.23179453,25 Years and 6 Months,No,0,1388.845181,Low_spent_Large_value_payments,345.8389337,0,-1.8532,0.1176,2.3958,-0.9476,0.5008 -0x23701,CUS_0xba7e,August,27,455-30-1650,Musician,81658.48,,10,8,33.88954781,7,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Student Loan, and Not Specified",,797.7821666,3.21,11,Bad,2647.128679,26.66132011,,Yes,1716.617655,219.3502236,!@9#%8,341.3893737,0,2.3892,0.471,0.5831,-0.8965,0.1416 -0x2370d,CUS_0x8670,August,34,469-66-5884,Entrepreneur,27697.18,,4,3,19,3,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",,10,10.06,12,Standard,748.1619162,26.04764621,17 Years and 4 Months,NM,45.03536155,146.7008009,Low_spent_Small_value_payments,344.2892579,0,0.2619,-0.5655,0.4731,1.1679,-1.2345 -0x23719,CUS_0x3de4,August,44,885-56-1293,Musician,56544,4524,10,1328,21.95700519,9,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Not Specified, and Home Equity Loan",,20,27.18,9,Bad,4159.09843,39.87757182,7 Years and 6 Months,NM,1605.067074,51.83453547,!@9#%8,319.2684558,0,-0.0338,1.7021,-0.664,0.6473,0.1524 -0x23725,CUS_0x7fe9,August,27,033-44-2647,Entrepreneur,33065.8,2690.483333,0,7,6,3,"Auto Loan, Debt Consolidation Loan, and Home Equity Loan",12.86376817,12.64470326,3.22,4,Good,563.2034829,34.71603619,21 Years and 11 Months,No,69.13683994,235.7174538,Low_spent_Medium_value_payments,244.1940396,0,0.2769,0.3521,0.7985,0.3506,0.2463 -0x23731,CUS_0x8489,August,21,460-00-6655,Accountant,49136.88,4082.74,6,4,12,6,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Credit-Builder Loan",22.71347288,15,9.67,11,_,1933.38,38.99137636,13 Years and 0 Months,Yes,184.7159866,106.4858847,High_spent_Small_value_payments,377.0721286,0,0.8087,0.7212,0.7678,0.1325,-0.5471 -0x2373d,CUS_0x675,August,47,921-15-8191,Media_Manager,20229.03,,8,5,10,3,"Personal Loan, Auto Loan, and Debt Consolidation Loan",12.75911026,9,10.93,1,_,1352.13,37.93063643,23 Years and 10 Months,No,35.33336984,254.7157151,Low_spent_Small_value_payments,196.6261651,0,0.5453,0.6245,-0.8643,-0.4895,1.4574 -0x23749,CUS_0xc641,August,25,864-79-3572,Mechanic,18065,1539.588568,10,9,29.95700519,9,"Debt Consolidation Loan, Personal Loan, Payday Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",,21.33226841,4.68,10,_,3160.974785,37.95981255,20 Years and 0 Months,Yes,1518.037515,87.35275075,Low_spent_Small_value_payments,199.8291308,0,0.4303,0.8113,-1.3947,-0.4673,-0.4369 -0x23755,CUS_0x436c,August,49,807-28-6080,Journalist,41942.1,3355.175,0,3,1,1,Student Loan,,14.42145589,16.26,6,Good,1483.038544,37.20252173,33 Years and 2 Months,No,19.64905037,120.595002,High_spent_Medium_value_payments,445.2734476,0,-0.1987,-0.3303,-0.8638,-0.6174,-0.6773 -0x23761,CUS_0xb226,August,41,117-54-0611,Scientist,115494.2,9465.516667,1,3,8.288361749,2,"Home Equity Loan, and Personal Loan",0,3.498428918,9.78,0,Good,1484.071453,40.74311891,25 Years and 4 Months,No,106.5779781,639.1642369,High_spent_Small_value_payments,880.7469127,0,-1.2752,0.6788,-0.4178,-0.0075,0.0305 -0x2376d,CUS_0x6b0,August,38,984-81-1916,Writer,44768.76,,8,7,35.06745738,9,"Student Loan, Not Specified, Personal Loan, Home Equity Loan, Payday Loan, Auto Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",31.31687155,16,28.21,15,Bad,3212.780954,26.56414576,2 Years and 11 Months,Yes,272.0989319,44.74037033,High_spent_Medium_value_payments,308.6134098,0,0.615,-0.9036,-0.0746,-0.0414,-0.4027 -0x23779,CUS_0x29c0,August,48,310-64-5275,Developer,64696.24,,5,3,9,4,"Student Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",16.57289258,9.19654262,7.25,4,Good,1151.386767,29.46755612,31 Years and 5 Months,No,122.8148196,118.2247339,High_spent_Small_value_payments,550.8957798,0,-0.1693,0.0769,0.3454,1.2523,0.2927 -0x23785,CUS_0xbd95,August,36,235-61-1975,Journalist,9853.855,,8,10,23.06745738,6,"Not Specified, Home Equity Loan, Not Specified, Auto Loan, Not Specified, and Payday Loan",,16,26.87,11,Bad,2987.070954,38.25378489,12 Years and 4 Months,Yes,46.9347101,,High_spent_Small_value_payments,233.7870436,0,-0.1122,-0.6002,0.4027,-0.7598,-0.3284 -0x23791,CUS_0x887f,August,29,414-52-8424,Architect,58511.78,5016.981667,2,1,1.288361749,0,,3.159380505,5,1.54,2,Good,357.0378648,35.08893112,27 Years and 2 Months,No,0,508.0652389,High_spent_Medium_value_payments,674.3085337,0,0.3865,1.0658,-2.3524,0.6017,0.6577 -0x2379d,CUS_0xd29,August,22,881-90-2681,Media_Manager,10486.2,,6,6,6,3,"Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",,10,9.79,4,Standard,1001.56,33.07332569,8 Years and 6 Months,Yes,20.7838834,28.62271608,Low_spent_Medium_value_payments,289.8784005,0,0.1211,-0.2443,-0.3475,-0.6646,0.7582 -0x237a9,CUS_0x37af,August,28,954-68-0668,Architect,41597.89,3691.490833,4,1,5.288361749,0,,5.581914131,8,5.97,4,Good,537.4765518,26.80174378,18 Years and 5 Months,No,0,681.2774228,Low_spent_Large_value_payments,411.2424195,0,1.1093,0.4042,1.005,0.3643,0.0199 -0x237b5,CUS_0x25a7,August,20,984-06-5567,Media_Manager,36029.3,,6,6,33.06745738,8,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",24.72493152,17,-1.28,11,_,2832.380954,38.78731147,4 Years and 2 Months,Yes,141.8851325,90.72121797,High_spent_Medium_value_payments,296.4175282,0,0.2616,-0.2069,0.4981,0.4118,-0.4631 -0x237c1,CUS_0x6d30,August,28,714-02-2788,Lawyer,78035.96,6211.996667,5,4,17,6,"Auto Loan, Payday Loan, Student Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",25.03573136,17,16.21,6,Standard,429.44,27.71270225,19 Years and 8 Months,Yes,365.1021827,129.1032622,High_spent_Large_value_payments,366.9942218,0,1.2534,0.8414,-0.2614,-0.3721,0.758 -0x237cd,CUS_0xad11,August,80,249-39-8538,Developer,130174.44,,5,3,4,4,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",0.367528652,5,8.16,1,Good,1233.002269,30.63530228,19 Years and 3 Months,No,251.3829137,219.3737494,High_spent_Large_value_payments,893.9096474,0,-1.136,0.6494,0.4883,1.7084,1.6464 -0x237d9,CUS_0x929c,August,27,788-88-0244,Developer,63648.12,5357.01,6,7,10,1,Debt Consolidation Loan,,8,2.75,0,Standard,1223.86,37.07872135,24 Years and 5 Months,No,26.59218596,211.677107,Low_spent_Small_value_payments,587.431707,0,-1.5098,0.311,-0.3515,-1.1874,-0.099 -0x237e5,CUS_0x54c6,August,48,254-43-5949,_______,67481.24,,8,3,19,1,Debt Consolidation Loan,22.14773173,18,12.64,4,Standard,176.06,29.95639734,18 Years and 6 Months,Yes,32.12590014,195.4187302,High_spent_Medium_value_payments,567.0990364,0,-1.0866,-0.8179,0.3635,1.0087,1.2891 -0x237f1,CUS_0x84be,August,36,463-53-3692,Media_Manager,20802.77,1487.564167,6,7,7,4,"Student Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",26.79532139,19,11.2,8,Standard,2164.877225,23.85982969,13 Years and 4 Months,Yes,73709,51.31879435,Low_spent_Large_value_payments,326.8819301,0,-0.3637,0.6563,-0.0383,-0.0859,1.2475 -0x237fd,CUS_0x7cbf,August,31,671-14-3613,Musician,38574.32,2959.526667,3,3,17,1,Auto Loan,15.4489605,13,7.13,2,_,668.78,32.75265592,,No,21.30537508,178.7477891,High_spent_Small_value_payments,355.8995025,0,-0.3432,-0.3295,0.0364,-1.0925,-1.5051 -0x23809,CUS_0xc5b2,August,26,667-76-6132,Entrepreneur,60176.61,4989.7175,7,9,34,8,"Mortgage Loan, Auto Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Student Loan",34.30123312,24.66369248,6.76,8,Bad,4711.49291,34.9873756,12 Years and 5 Months,Yes,246.9186692,190.3354975,High_spent_Small_value_payments,321.7175833,0,0.2023,1.0691,-0.5437,0.3081,-1.4461 -0x23815,CUS_0x9414,August,42,329-57-6818,_______,53354.85,,8,10,24,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",26.90645679,18.95794793,13.22,11,Bad,2224.042626,32.44323718,16 Years and 0 Months,Yes,162.2518689,,Low_spent_Small_value_payments,45.0347715,0,-0.4703,1.3848,-0.0702,-0.219,1.3077 -0x23821,CUS_0x837,August,35,128-85-7451,Manager,14252.75,,8,8,23.95700519,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,30.23585108,,13,_,3147.426089,25.63990854,7 Years and 6 Months,Yes,1386.384689,109.2192352,Low_spent_Small_value_payments,216.8186234,0,-0.2058,-0.1818,0.1389,-1.0734,-0.6651 -0x2382d,CUS_0x9b24,August,20,958-56-7919,Entrepreneur,19287.935,,2,7,6.288361749,2,"Not Specified, and Credit-Builder Loan",,12,7.69,3,Good,102.81,35.68831259,31 Years and 11 Months,No,29.17934291,521.4308585,!@9#%8,299.2600513,0,-1.5291,1.0732,-0.1422,1.0483,0.4967 -0x23839,CUS_0x97ab,August,51,845-77-8805,Manager,15480.03,,5,5,8,0,,,0,1.63,1,Good,1055.545494,26.41049352,,No,0,64.32307055,Low_spent_Small_value_payments,348.4771794,0,0.5767,1.9931,-0.4108,0.2904,-0.7608 -0x23845,CUS_0x295f,August,22,017-46-4018,Architect,19436.305,,4,2,7.288361749,4,"Personal Loan, Student Loan, Mortgage Loan, and Home Equity Loan",,5,9.64,2,Good,244.27,37.34246958,25 Years and 9 Months,No,66944,443.3066443,High_spent_Large_value_payments,369.1546307,0,0.367,1.2476,-0.6688,-0.7362,0.0957 -0x23851,CUS_0x8519,August,54,423-52-1892,Architect,165671.16,13814.93,3,4,11,0,,0,2,10.6,5,_,45.51687277,34.22536453,29 Years and 0 Months,No,0,970.6927066,High_spent_Small_value_payments,779.5585818,0,-1.3289,0.2426,0.1606,-1.7691,0.2998 -0x2385d,CUS_0x9939,August,21,355-95-2912,Media_Manager,19889.44,,8,7,11,7,"Payday Loan, Not Specified, Student Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Not Specified",17.06165127,13,16.62,7,Standard,369.64,35.98010847,10 Years and 3 Months,Yes,60.92837781,37.66661192,!@9#%8,337.0503436,0,0.1979,1.5918,2.272,-0.8227,-1.8244 -0x23869,CUS_0x9dee,August,38,967-09-1574,Architect,30447.38,,10,5,27,6,"Not Specified, Mortgage Loan, Not Specified, Not Specified, Auto Loan, and Debt Consolidation Loan",33.50130814,24.46326306,27.02,8,_,3404.367726,33.56697027,10 Years and 5 Months,Yes,109.5286211,62.87852501,High_spent_Large_value_payments,332.5210206,0,0.4597,1.2284,0.5394,-0.5729,0.2772 -0x23875,CUS_0xa4f9,August,38,259-06-1240,Accountant,119443.29,10071.6075,1,6,1,3,"Debt Consolidation Loan, Personal Loan, and Mortgage Loan",12.59013782,11,0.9,3,Good,418.28,23.50235822,28 Years and 11 Months,No,183.7905973,698.8940259,Low_spent_Large_value_payments,394.4761268,0,1.0821,0.4155,-0.2198,0.7277,0.3237 -0x23881,CUS_0x758c,August,26,340-77-4638,Entrepreneur,19190.67,,7,3,7,5,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",,21.18195835,19.95,9,Standard,1886.369795,37.35717325,15 Years and 10 Months,Yes,54.14745922,103.3057576,Low_spent_Medium_value_payments,300.0690332,0,-1.4699,-0.6841,-0.8131,-2.616,1.69 -0x2388d,CUS_0x2378,August,52,108-16-4074,Teacher,29485.44,2644.12,6,7,2,0,,14.63297959,12.53520787,-2.54,4,Good,759.9744804,24.02430779,18 Years and 11 Months,NM,0,89.40926906,Low_spent_Medium_value_payments,455.0027309,0,-0.7665,1.1028,0.0515,-0.9583,0.3828 -0x23899,CUS_0x9e67,August,25,366-87-4584,Media_Manager,44393.86,3504.488333,6,3,12,2,"Student Loan, and Payday Loan",,13.0242535,12.74,2170,Standard,1403.403369,30.14563333,20 Years and 10 Months,Yes,63.79433546,73.09873139,High_spent_Medium_value_payments,463.5557665,0,-0.8736,0.1593,1.4563,1.4029,-0.2835 -0x238a5,CUS_0x9e5f,August,24,197-92-8655,Teacher,8057.715,,9,10,33.06745738,2,"Home Equity Loan, and Personal Loan",,10.81628289,19.63,10,Standard,1943.807132,28.06346809,6 Years and 3 Months,Yes,7.04963475,53.84667344,Low_spent_Medium_value_payments,284.9310289,0,0.4578,1.0258,-0.141,0.4387,0.1605 -0x238b1,CUS_0x6786,August,49,689-38-7006,_______,30678.97,,1,7,2,4,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Home Equity Loan",,,6.74,1,_,940.0485827,35.8184465,,No,53.73731149,,Low_spent_Small_value_payments,359.1402909,0,-0.4336,-0.4966,-0.6933,0.7212,0.9155 -0x238bd,CUS_0x47da,August,21,929-00-2402,Engineer,13190.345,,3,4,5,1,Debt Consolidation Loan,32.66277292,22.5822809,3.4,2,Standard,633.9480411,23.4823339,28 Years and 11 Months,NM,9.896018016,59.84745853,Low_spent_Medium_value_payments,323.3760651,0,0.1477,-1.0246,-1.152,1.7785,-0.3366 -0x238c9,CUS_0x1151,August,41,587-07-3210,Journalist,17692.27,,6,5,30.06745738,6,"Payday Loan, Auto Loan, Home Equity Loan, Auto Loan, Personal Loan, and Auto Loan",38.62796269,25,28.12,9,Bad,3986.050954,25.57827343,11 Years and 5 Months,Yes,78.44723488,167.441385,Low_spent_Small_value_payments,150.9266755,0,-3.114,-1.0027,0.691,0.1765,-0.0821 -0x238d5,CUS_0x581e,August,44,690-52-2331,Accountant,59907.78,4851.315,5,3,629,2,"Personal Loan, and Mortgage Loan",25.65001384,16,11.23,0,Standard,719.35,38.21044255,30 Years and 2 Months,No,67.25811455,224.9303532,High_spent_Small_value_payments,452.9430322,0,-0.824,0.7043,0.0542,-0.3314,-1.0775 -0x238e1,CUS_0x756d,August,34,#F%$D@*&8,Mechanic,91404.54,7912.045,7,7,888,4,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,12,,0,Standard,66.93,32.17294198,15 Years and 11 Months,Yes,282.2604068,,Low_spent_Small_value_payments,123.0653237,0,2.4848,0.1319,-1.6837,-0.4774,1.6298 -0x238ed,CUS_0x2b00,August,51,863-89-6228,Teacher,28497.51,,4,6,3.288361749,0,Personal Loan,,8,3.67,4,Good,288.92,35.67090004,20 Years and 8 Months,No,21.64862508,591.0560396,Low_spent_Large_value_payments,331.5120463,0,0.4382,-0.3014,-0.5595,1.3935,1.7424 -0x238f9,CUS_0xb704,August,25,014-38-0810,Writer,57327.3,4605.275,4,3,17,0,,14.61082088,9,11.36,5,Standard,1319.42,25.78295781,16 Years and 0 Months,No,0,471.6328892,Low_spent_Medium_value_payments,268.8946108,0,-0.3202,-0.7355,-1.2147,1.2704,-1.2473 -0x23905,CUS_0x7feb,August,31,716-31-0286,Manager,70543.77,5986.6475,713,5,16,4,"Not Specified, Mortgage Loan, Home Equity Loan, and Mortgage Loan",17.29646457,15,18.68,,Standard,1259.40097,32.49850196,24 Years and 4 Months,Yes,218.0110959,119.4032426,!@9#%8,515.6479922,0,0.3409,0.0253,-0.7803,-0.7371,-0.936 -0x23911,CUS_0x5208,August,24,583-83-1753,Lawyer,53808.81,4490.0675,9,6,19,3,"Auto Loan, Payday Loan, and Debt Consolidation Loan",39.01052086,21.66205396,5.9,15,Bad,1740.969371,28.61490855,19 Years and 0 Months,Yes,119.0841598,62.82038247,High_spent_Large_value_payments,507.1022077,0,0.3547,0.2732,-1.1388,0.1227,-0.7558 -0x2391d,CUS_0xb811,August,24,898-01-1841,Scientist,89367.27,,2,3,7.288361749,2,"Personal Loan, and Student Loan",3.077178308,7,1.99,1,Good,716.97,33.54985274,20 Years and 9 Months,No,148.6387947,918.7384967,High_spent_Small_value_payments,340.1874196,0,-1.1629,-0.3947,-0.951,0.4482,-1.7311 -0x23929,CUS_0x24bc,August,49,664-52-6558,Engineer,116224.68,,0,3,8,1,Personal Loan,,0,5.01,0,Good,1388.02,35.40233055,32 Years and 8 Months,No,59.58605366,870.3117769,!@9#%8,327.4411695,0,-0.4716,0.6679,-1.3032,-1.4421,-1.113 -0x23935,CUS_0xb080,August,30,177-01-2590,Lawyer,81463.6,,3,5,16,4,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",20.36289682,,17.67,10,_,2323.31593,34.48387277,9 Years and 6 Months,Yes,178.6936688,,Low_spent_Medium_value_payments,242.5529246,0,-0.1163,0.2209,-0.6894,-0.632,0.7607 -0x23941,CUS_0x3a44,August,20,109-02-5661,Writer,12160681,685.8683333,6,5,19,9,"Debt Consolidation Loan, Mortgage Loan, Not Specified, Payday Loan, Auto Loan, Not Specified, Payday Loan, Home Equity Loan, and Mortgage Loan",40.00462975,25.11166634,2.1,6,Bad,3236.591569,31.09576334,9 Years and 0 Months,Yes,57.85155535,41.64335601,Low_spent_Small_value_payments,259.091922,0,1.5063,1.1187,-2.2334,-0.9981,-0.7618 -0x2394d,CUS_0x1e46,August,49,316-05-0824,Writer,70481.19,5584.4325,8,5,16,0,,17.02373501,11.27025655,5.75,4,Standard,1204.890184,37.11595419,26 Years and 3 Months,Yes,0,61.5896212,High_spent_Medium_value_payments,746.8536288,0,0.5199,0.4298,2.4548,-0.3976,0.9229 -0x23959,CUS_0x56ef,August,24,454-36-2008,Mechanic,15867.45,1468.2875,10,10,22,2,"Payday Loan, and Student Loan",19.91697934,15.82131117,16.02,8,_,1937.004451,32.71090859,17 Years and 11 Months,Yes,18.34281155,113.1449055,Low_spent_Medium_value_payments,295.341033,0,2.2731,0.5438,0.337,-0.185,-0.1458 -0x23965,CUS_0x91da,August,37,424-69-0038,Journalist,25173.5,,6,4,14,3,"Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",13.37097004,13,17.2,7,Standard,955.58,39.77992207,17 Years and 3 Months,Yes,61.85727129,,Low_spent_Large_value_payments,225.1421879,0,-0.0954,0.5839,-1.0583,-0.964,2.0616 -0x23971,CUS_0x81b,August,43,467-08-5391,Mechanic,68144.8,,10,8,19.88954781,9,"Credit-Builder Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Not Specified, Home Equity Loan, Student Loan, and Personal Loan",38.73384103,24.36060353,21.3,13,Bad,3643.22462,40.94558968,9 Years and 2 Months,Yes,1581.373428,222.6773401,Low_spent_Small_value_payments,365.4924836,0,-1.2886,0.4921,1.0222,-1.3685,-2.6674 -0x2397d,CUS_0x870e,August,39,648-68-3983,Accountant,7762.595,,3,9,17,2,"Personal Loan, and Personal Loan",20.20938763,16.61556952,,10,Standard,2622.462812,26.09231188,9 Years and 11 Months,Yes,10.55243753,93.29266917,Low_spent_Small_value_payments,257.443185,0,-0.6375,0.3737,0.2917,-1.4328,-0.2078 -0x23989,CUS_0x9fd2,August,41,#F%$D@*&8,Musician,35644.72,,1,4,3,1,Not Specified,0,2,4.58,2,Good,696.358776,30.76410776,20 Years and 8 Months,No,16.81273664,63.7700856,!@9#%8,484.9710924,0,0.0629,0.8236,0.3551,-1.4201,-0.6001 -0x23995,CUS_0xa9d1,August,29,958-68-5559,_______,20455.05,,8,8,29.88954781,9,"Mortgage Loan, Not Specified, Mortgage Loan, Student Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",30.16786757,20.04141026,1.14,13,Bad,1543.611272,24.55675537,8 Years and 4 Months,Yes,1416.4007,,!@9#%8,244.9072095,0,-0.9078,-1.1346,-0.0231,1.1578,0.441 -0x239a1,CUS_0xc7b,August,22,192-91-0151,Scientist,26135.86,2009.988333,8,5,6,100,"Mortgage Loan, and Credit-Builder Loan",9.498539589,8,11.62,2,Standard,1138.962433,28.07254619,27 Years and 4 Months,Yes,33.71165574,260.8514165,Low_spent_Small_value_payments,233.5301457,0,1.625,-0.6699,2.0014,0.5466,-1.7956 -0x239ad,CUS_0x7840,August,40,173-84-2649,Teacher,44740.76,,3,5,11,0,,24.95604977,18,0.55,0,Good,379.651117,35.73689236,26 Years and 0 Months,NM,0,59.2779156,!@9#%8,589.1343001,0,0.8983,-0.2977,-0.4011,-0.7754,-0.8484 -0x239b9,CUS_0xc5e,August,39,820-77-7549,Writer,57264,4933,7,6,31.06745738,8,"Personal Loan, Home Equity Loan, Payday Loan, Personal Loan, Personal Loan, Home Equity Loan, Payday Loan, and Student Loan",37.16180879,19.93675378,-3.5,15,Bad,5639.787779,38.8033839,10 Years and 11 Months,Yes,283.6223207,10000,Low_spent_Small_value_payments,194.5614267,0,-1.4696,0.7325,-1.5186,1.3023,0.8357 -0x239c5,CUS_0x505c,August,19,794-56-6103,Developer,10700217,4640.715,8,5,16,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",11.18091562,9.667288091,19.03,743,Standard,1619.94307,37.38948268,,Yes,107.27987,10000,!@9#%8,316.8847977,0,-1.0227,0.7414,-1.3787,0.7312,-0.7715 -0x239d1,CUS_0x8da5,August,44,154-07-0671,Manager,105345.4,8505.783333,7,3,8,4,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Auto Loan",14.3521556,13,5.53,12,_,294.33,32.18219698,9 Years and 3 Months,Yes,344.4968779,557.3279618,High_spent_Small_value_payments,208.7534937,0,-1.2333,-0.416,0.77,0.7676,0.1396 -0x239dd,CUS_0x8a14,August,33,415-62-2686,Manager,20223,,6,8,15,5,"Student Loan, Auto Loan, Auto Loan, Auto Loan, and Student Loan",19.11337039,15,15.03,11,Standard,393.55,37.59727871,7 Years and 6 Months,Yes,73.64467479,29.11132922,High_spent_Large_value_payments,298.668996,0,1.1178,-1.0757,0.2282,-1.2899,-0.8839 -0x239e9,CUS_0xa584,August,43,852-39-0711,_______,52384.83,,9,5,20,7,"Mortgage Loan, Student Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",38.97357007,19.5359653,16.29,9,Standard,1688.202195,32.97059358,7 Years and 5 Months,Yes,265.516727,137.7725054,Low_spent_Medium_value_payments,300.5510176,0,-0.0076,-0.5191,1.6919,2.1939,-1.6112 -0x239f5,CUS_0x1709,August,53,678-22-5579,Developer,65945.7,5486.475,5,7,7.288361749,0,,13.85421808,,8.07,1,Good,190.7377102,30.43189476,18 Years and 8 Months,No,0,593.7031865,Low_spent_Large_value_payments,670.925558,0,0.185,-0.9501,-0.3334,1.6309,-0.8055 -0x23a01,CUS_0xacfa,August,37,324-46-6478,Entrepreneur,81168.84,,2,3,2,3,"Debt Consolidation Loan, Auto Loan, and Student Loan",3.538456191,0,7.14,6,Good,1497.529222,22.60744017,22 Years and 0 Months,No,184.8090174,639.1487034,Low_spent_Medium_value_payments,151.0492792,0,-1.7328,0.0114,-0.6873,0.8378,1.9669 -0x23a0d,CUS_0x955d,August,23,388-86-0082,Scientist,9536.42,769.7016667,7,5,27.06745738,6,"Personal Loan, Student Loan, Not Specified, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",43.7667517,28.68387635,5.26,15,Bad,1627.709261,34.17848868,20 Years and 2 Months,Yes,37.0933974,41.06398243,Low_spent_Small_value_payments,262.0924989,0,0.5571,-0.0667,0.394,1.5911,-0.6872 -0x23a19,CUS_0xbc6a,August,52,669-33-2894,Media_Manager,174921.92,14707.82667,2,4,11.28836175,0,,7.247661267,10,6.74,7,Good,927.27,41.95908889,,No,0,683.7726521,High_spent_Large_value_payments,1446.947476,0,-0.9089,-0.2486,-0.126,-0.1702,1.7627 -0x23a25,CUS_0x2212,August,19,787-94-7051,_______,17057.83,,6,10,25.95700519,6,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Student Loan",37.4228328,24.78448638,20.72,10,Bad,5640.647268,25.26075611,5 Years and 6 Months,Yes,1389.31141,58.35201417,Low_spent_Large_value_payments,263.1347897,0,1.2817,-0.5915,-1.5526,1.2243,1.1367 -0x23a31,CUS_0x3e68,August,30,808-05-1713,Media_Manager,19605.79,1839.815833,9,7,21,8,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",,19.16670899,28.7,14,Bad,5256.346116,29.07760238,6 Years and 4 Months,Yes,94.51760318,,Low_spent_Small_value_payments,285.0645763,0,-0.2151,1.4438,0.3852,1.0778,0.6229 -0x23a3d,CUS_0x2dca,August,27,267-45-7214,Developer,14161.12,1284.093333,10,7,24,6,"Not Specified, Mortgage Loan, Credit-Builder Loan, Payday Loan, Payday Loan, and Home Equity Loan",,30.11476565,23.19,12,Bad,4273.094205,39.73871372,5 Years and 10 Months,Yes,43.99615494,45.89528752,Low_spent_Large_value_payments,308.5178909,0,-1.2052,0.7248,-1.1096,-0.271,-1.4838 -0x23a49,CUS_0x5487,August,51,893-97-0399,Teacher,14632.3,,1,3,11,2,"Auto Loan, and Debt Consolidation Loan",,11,11.25,1,_,1373.01,40.27672375,22 Years and 3 Months,No,15.87191512,59.10847779,Low_spent_Large_value_payments,294.6554404,0,-0.5049,1.0426,-1.1753,-0.4699,0.9921 -0x23a55,CUS_0xb240,August,55,855-05-8443,Writer,102927.08,8130.152481,7,3,4.288361749,2,"Payday Loan, and Personal Loan",12.21425505,13,0.73,5,_,1244.377967,23.37014727,21 Years and 9 Months,Yes,718.0966454,1340.385064,Low_spent_Medium_value_payments,211.762286,0,-1.2361,-1.8744,1.066,0.5974,1.112 -0x23a61,CUS_0x5e4e,August,22,914-09-8374,Architect,14367.78,,1,6,7,0,,,2,8.05,3,_,1104.44,34.43976103,23 Years and 4 Months,No,0,20.32386008,High_spent_Large_value_payments,321.2076399,0,1.7309,0.0991,0.0913,-0.4285,-0.2852 -0x23a6d,CUS_0xb4fd,August,28,400-77-1931,Lawyer,37070,,3,4,3.288361749,4,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",13.63921406,13,10.73,5,Good,337.067461,27.3647975,28 Years and 3 Months,No,103.0926648,830.8535208,Low_spent_Small_value_payments,108.5441031,0,1.3342,1.2029,0.9673,-0.0046,-1.6677 -0x23a79,CUS_0x8083,August,20,937-98-2442,Manager,36398.14,,5,7,3.288361749,100,Mortgage Loan,14.18383462,,4.08,5,Good,248.38,31.14434335,18 Years and 0 Months,No,19.4986194,655.5320878,Low_spent_Small_value_payments,330.3245872,0,1.0645,-1.0522,0.0112,-0.3023,0.6038 -0x23a85,CUS_0x8175,August,48,718-00-1352,Musician,62953.62,,3,7,1,0,,10.03297626,12,3.48,4,Good,395.0343754,31.05515303,18 Years and 4 Months,No,0,65.14131145,High_spent_Large_value_payments,691.9481631,0,-0.8276,0.6121,1.0517,-1.5167,1.0736 -0x23a91,CUS_0x3f38,August,18,216-01-1461,Entrepreneur,31786.98,2944.915,9,6,32.06745738,100,"Student Loan, Personal Loan, Home Equity Loan, and Not Specified",21.33952216,14,18.45,9,Standard,2252.620954,33.01047562,7 Years and 11 Months,Yes,105.0869894,,High_spent_Medium_value_payments,302.1635213,0,0.9092,-0.1283,0.1599,-0.554,-0.6713 -0x23a9d,CUS_0x332e,August,56,723-86-0120,Entrepreneur,35681.42,,4,4,6,2,"Payday Loan, and Debt Consolidation Loan",,8,10.32,,Standard,133.3,26.62207556,24 Years and 11 Months,No,53.77869164,70.48505497,Low_spent_Large_value_payments,437.5814201,0,-0.1387,-0.2828,0.5278,0.1222,0.5919 -0x23aa9,CUS_0x643a,August,46,452-06-9195,Entrepreneur,62630.6,5286.216667,9,6,22,5,"Credit-Builder Loan, Mortgage Loan, Payday Loan, Student Loan, and Credit-Builder Loan",,17.69604614,17.07,14,Standard,2673.725321,37.05030836,17 Years and 0 Months,Yes,229.7753057,10000,High_spent_Medium_value_payments,459.0186592,0,1.1437,0.3716,0.6522,-1.2277,0.2868 -0x23ab5,CUS_0xaa74,August,27,542-05-5229,_______,24418.33,,6,6,10,2,"Personal Loan, and Not Specified",24.78878905,15.57557416,16.92,6,Standard,786.200043,25.09281754,25 Years and 6 Months,Yes,27.8642826,,Low_spent_Medium_value_payments,343.0380856,0,0.4699,0.7411,2.0931,-0.9607,0.9556 -0x23ac1,CUS_0x79c1,August,40,082-19-0271,_______,76428,,10,7,16,6,"Personal Loan, Auto Loan, Auto Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",33.96786939,19.27360182,12.12,12,Bad,2354.273731,24.35159435,13 Years and 11 Months,Yes,330.7563136,384.2083545,Low_spent_Large_value_payments,208.2353319,0,-0.4415,-0.0676,1.3391,0.3911,-1.1417 -0x23acd,CUS_0x602a,August,44,036-74-6207,Architect,57602.6,,4,5,19,1,Personal Loan,10.97228973,8.253958814,13.62,6,Standard,1030.605859,32.22510013,21 Years and 11 Months,Yes,41.70824502,76.38794929,High_spent_Medium_value_payments,604.0254724,0,-0.2513,-0.9904,1.1255,-1.6773,1.1718 -0x23ad9,CUS_0x2e01,August,29,639-31-4177,Writer,62253.54,5223.795,4,5,10,4,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",9.43791384,9.620146361,12.55,0,_,404.248723,31.13887367,30 Years and 5 Months,No,181.0821795,10000,High_spent_Small_value_payments,467.8276078,0,-0.0699,0.6909,1.4965,-0.1612,-0.5209 -0x23ae5,CUS_0xb89c,August,44,832-80-4050,Architect,11919.42,,4,7,4,1,Not Specified,,20,8.19,7,Good,957.0109743,25.8042066,17 Years and 9 Months,No,9.882767306,89.23111464,Low_spent_Small_value_payments,312.7652888,0,0.2903,1.4633,0.5695,-1.7325,-1.139 -0x23af1,CUS_0x3afa,August,38,202-41-1777,Teacher,20528.59,1900.715833,6,7,33.06745738,9,"Mortgage Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Payday Loan, Not Specified, and Payday Loan",37.99093329,17.65250729,26.49,15,Bad,4320.797836,34.46870675,5 Years and 10 Months,Yes,127.9016496,,!@9#%8,166.3380976,0,-0.2923,1.2675,0.5218,0.7579,0.1884 -0x23afd,CUS_0x4683,August,43,056-47-2213,Developer,108734.13,8077.402365,5,6,9,2,"Debt Consolidation Loan, and Payday Loan",14.53179111,11,18.89,12,Standard,950.924311,38.60345643,20 Years and 5 Months,NM,910.3314912,314.9032032,Low_spent_Medium_value_payments,732.6403375,0,0.6431,0.0027,-0.6696,-0.069,0.4869 -0x23b09,CUS_0x2375,August,19,027-76-6435,Accountant,20436.315,1785.02625,1,3,7,100,"Personal Loan, and Not Specified",0.175819767,1,4.86,6,Good,783.77,27.3004172,23 Years and 2 Months,NM,20.36603174,23.58731556,High_spent_Medium_value_payments,384.5492777,0,-0.4588,0.4531,-1.6972,0.5134,0.5321 -0x23b15,CUS_0x19e1,August,45,332-57-6366,Journalist,114897.2,9333.766667,3,5,10.28836175,4,"Personal Loan, Personal Loan, Not Specified, and Auto Loan",,7,10.68,7,Good,570.5134367,28.84185875,19 Years and 9 Months,No,338.0418476,675.1890594,High_spent_Large_value_payments,609.2301642,0,-0.35,0.4816,-0.1418,-0.009,0.4192 -0x23b21,CUS_0x902e,August,22,#F%$D@*&8,_______,69851.4,5581.95,9,8,23,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",15.41369372,11,7.68,11,Standard,1713.36,38.83873423,17 Years and 5 Months,NM,140.7252996,129.1234472,!@9#%8,538.3462531,0,0.414,-0.4025,-2.1699,-0.9989,-0.5904 -0x23b2d,CUS_0x5ddd,August,28,236-19-1704,_______,60061.64,,10,9,24.88954781,6,"Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Auto Loan",25.68462088,20,27.91,9,Bad,4771.2,32.85349342,6 Years and 4 Months,NM,1492.769713,232.7383109,Low_spent_Large_value_payments,322.0755611,0,0.9264,0.7191,1.1623,0.5751,-3.1041 -0x23b39,CUS_0x463e,August,18,522-26-7644,Developer,14937.63,1495.8025,6,6,28.06745738,5,"Not Specified, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",15.89860919,10.38164257,10.07,6,Standard,2510.405954,37.90808767,14 Years and 10 Months,Yes,60.36998092,101.942411,Low_spent_Large_value_payments,230.5475701,0,0.8585,0.8718,-0.2684,1.4373,0.4277 -0x23b45,CUS_0x1900,August,26,534-19-8100,Accountant,8137.625,680.1354167,8,6,35.06745738,8,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",,21,17.53,6,Bad,4162.110954,24.19277583,2 Years and 5 Months,Yes,53.34367125,35.01509475,Low_spent_Small_value_payments,242.9344877,0,1.8974,-0.2452,0.8232,-0.4786,-0.4184 -0x23b51,CUS_0x2449,August,42,511-01-3852,Mechanic,43581.71,3679.809167,0,4,8,4,"Student Loan, Mortgage Loan, Not Specified, and Student Loan",12.81829125,,10.46,7,Good,121.5362313,29.94098651,17 Years and 5 Months,No,141.2601579,122.3864615,Low_spent_Medium_value_payments,384.3342973,0,-1.3133,-0.8295,2.266,0.5617,-2.0052 -0x23b5d,CUS_0x9b5c,August,22,033-59-9839,Media_Manager,34628.06,3041.671667,1,3,4,1,Personal Loan,0,3,0.5,4,Good,1024.5,36.90383764,23 Years and 10 Months,No,21.68893387,22.14212658,High_spent_Large_value_payments,500.3361062,0,-0.3388,-1.8514,1.1545,0.0061,-1.8833 -0x23b69,CUS_0xd70,August,46,355-83-4978,Entrepreneur,61358.66,4859.221667,4,3,7,1,Home Equity Loan,16.98294323,16,3,4,Good,1025.81,38.62820474,19 Years and 8 Months,No,32.86621769,388.0971199,Low_spent_Large_value_payments,334.9588291,0,-0.2949,0.4042,-2.2866,-0.6777,-1.9482 -0x23b75,CUS_0x6dc3,August,45,920-29-4982,Architect,34980.21,,5,7,18,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,8,7.97,3,Standard,937.32,29.32021479,26 Years and 8 Months,No,66.79673202,163.756763,Low_spent_Medium_value_payments,311.048255,0,2.2726,1.705,1.2026,0.9497,1.2628 -0x23b81,CUS_0x9151,August,20,943-19-5918,Developer,130682.94,10605.245,2,5,1,4,"Payday Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",9.19162606,8,6.1,6,Good,655.2332695,35.58669211,29 Years and 3 Months,No,23857,181.2003088,High_spent_Large_value_payments,881.8830674,0,0.0635,0.8784,0.983,0.1613,-0.3532 -0x23b8d,CUS_0x1550,August,38,#F%$D@*&8,Musician,48996.08,3799.006667,5,7,12,4,"Personal Loan, Credit-Builder Loan, Payday Loan, and Payday Loan",,16,13.31,1,Standard,285.29,34.08376377,18 Years and 3 Months,Yes,135.683692,,High_spent_Small_value_payments,265.3860529,0,0.2204,-0.3134,0.8558,0.671,0.8267 -0x23b99,CUS_0x4697,August,25,353-93-4632,Architect,44784.78,,9,5,22.06745738,100,"Auto Loan, Home Equity Loan, Auto Loan, Home Equity Loan, Personal Loan, Auto Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",41.54942768,24,23.3,15,Bad,3958.640954,39.42537846,12 Years and 2 Months,Yes,276.2686976,191.2552347,!@9#%8,164.0622798,0,0.4906,0.047,-0.738,1.295,-0.133 -0x23ba5,CUS_0x4e5f,August,38,682-27-7124,Writer,39066.64,,3,1,7.288361749,2,"Payday Loan, and Home Equity Loan",0.596293108,3,1.22,5,Good,5.996999818,33.68963712,22 Years and 8 Months,No,34.30112933,757.9208431,!@9#%8,256.2838922,0,0.3162,-0.4856,-1.3655,-0.2633,-1.6026 -0x23bb1,CUS_0xb123,August,42,194-93-2247,Architect,73683.69,,8,7,9,3,"Payday Loan, Personal Loan, and Not Specified",11.31195898,10,4.35,5,Standard,520.26,34.80074804,32 Years and 10 Months,Yes,152.871762,165.907636,High_spent_Small_value_payments,536.451352,0,-1.326,-1.1057,0.4258,-0.7655,-0.3509 -0x23bbd,CUS_0x13e7,August,36,548-61-8467,Scientist,57792.3,,8,9,29,3,"Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",12.44896839,9.4879184,19.07,8,Standard,2117.351596,29.15798682,11 Years and 0 Months,Yes,133.8196249,56.90841863,High_spent_Medium_value_payments,525.7744565,0,1.3701,0.603,0.3752,0.4126,0.0088 -0x23bc9,CUS_0x89c8,August,49,929-04-4055,Lawyer,85480.41,,2,5,9,2,"Home Equity Loan, and Student Loan",1.338749007,3,10.96,5,Good,1221.35212,26.34121541,25 Years and 9 Months,No,884.3934483,164.3873346,High_spent_Large_value_payments,733.0518346,0,0.1027,-0.3097,0.3751,-1.3255,-0.8801 -0x23bd5,CUS_0x13f6,August,50,178-96-0125,Entrepreneur,152252.24,11346.17088,2,4,0.288361749,2,"Debt Consolidation Loan, and Not Specified",,4,6.5,6,Good,472.100118,37.14286878,31 Years and 3 Months,NM,1568.862242,776.8358902,High_spent_Medium_value_payments,998.4111555,0,0.1638,0.4682,0.7856,1.3194,-1.1502 -0x23be1,CUS_0xaec,August,37,277-16-4620,Lawyer,34500.94,,4,5,20,2,"Payday Loan, and Payday Loan",,14,11.28,5,_,899.48,35.39332261,21 Years and 8 Months,Yes,38.77126072,10000,Low_spent_Small_value_payments,230.994978,0,0.1879,0.601,-2.3396,-1.583,-0.4183 -0x23bed,CUS_0x6846,August,27,836-74-3048,Doctor,16183.75,,7,4,18.06745738,2,"Debt Consolidation Loan, and Credit-Builder Loan",31.19079124,21.34357482,9.78,7,Standard,2366.651467,30.34488707,14 Years and 4 Months,Yes,24.57072948,107.255927,Low_spent_Medium_value_payments,260.8176389,0,-0.1413,0.84,1.133,-0.4314,-0.8598 -0x23bf9,CUS_0x2ef8,August,25,791-97-4746,Engineer,17682.71,,6,4,15.06745738,2,"Home Equity Loan, and Home Equity Loan",21.39058041,13,9.66,4,Standard,1717.410954,25.19420763,11 Years and 2 Months,Yes,23.5986156,201.8760785,Low_spent_Small_value_payments,197.7609346,0,1.0599,0.3933,-0.0254,2.5794,-0.4782 -0x23c05,CUS_0x2bfc,August,27,335-49-3815,Entrepreneur,69363.87,,4,4,19,100,"Auto Loan, Personal Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Personal Loan",17.18438022,10,16.04,11,Standard,449.06,30.8580217,17 Years and 6 Months,Yes,228.4814754,413.6776805,Low_spent_Large_value_payments,230.6730941,0,-0.6504,-0.9928,-1.1987,0.6467,0.9953 -0x23c11,CUS_0x776d,August,27,832-04-1514,Writer,17790.36,,4,4,14,4,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Student Loan",,10,17.02,8,Standard,2019.36,37.3414594,10 Years and 6 Months,Yes,42.3506176,138.7144589,Low_spent_Small_value_payments,237.0879235,0,-0.5529,-1.178,-2.4582,-0.1402,-0.6452 -0x23c1d,CUS_0x858a,August,34,285-82-6057,Scientist,35286.5,,6,9,24,2,"Not Specified, and Debt Consolidation Loan",,25.17662412,18.69,15,_,1802.717983,36.57118125,7 Years and 4 Months,Yes,34.74516848,162.2611051,High_spent_Small_value_payments,355.947893,0,0.2935,-0.3041,-0.0781,-0.2377,-0.697 -0x23c29,CUS_0x905e,August,19,332-19-6682,Musician,18784.375,1574.364583,5,730,4.288361749,100,Personal Loan,15.78675398,,11.08,0,Good,55.2,29.01952463,24 Years and 8 Months,No,11.68907786,482.2218232,Low_spent_Small_value_payments,373.4630183,0,-0.6643,-0.4662,0.1299,-1.9395,-0.8063 -0x23c35,CUS_0x3baa,August,41,751-36-7857,Media_Manager,29968.56,,5,5,6,1,Mortgage Loan,12.09818211,12,11.04,4,_,906.9772081,29.63474743,17 Years and 8 Months,No,21.03313243,53.87573518,High_spent_Large_value_payments,442.3565809,0,0.3034,-2.4302,1.5402,-1.6487,-0.3438 -0x23c41,CUS_0x4e07,August,32,083-83-6855,Teacher,14235.88,1012.323333,8,5,25.06745738,9,"Not Specified, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,24.13156519,22.16,16,Bad,5369.453143,38.87337201,6 Years and 6 Months,NM,62.54044076,121.2082891,Low_spent_Small_value_payments,180.7633155,0,-1.5741,-0.0845,-1.0493,-0.9478,0.3781 -0x23c4d,CUS_0x99bc,August,25,184-56-2277,Accountant,35108.51,,3,7,1.288361749,0,Not Specified,3.153792565,5.700376623,11.35,6,Good,17.22317985,34.3988221,23 Years and 6 Months,No,23.94761897,561.0060455,Low_spent_Small_value_payments,410.0547132,0,-1.1639,-0.14,2.6506,1.7049,0.2624 -0x23c59,CUS_0x2d9f,August,46,306-93-8783,Journalist,59692.58,,4,3,17.28836175,4,"Personal Loan, Student Loan, Payday Loan, and Not Specified",15.94786953,,12.52,6,Standard,458.68,28.60780877,18 Years and 4 Months,Yes,112.3904286,744.6853497,High_spent_Small_value_payments,296.1998494,0,-0.3204,0.1628,-2.0824,-0.3714,-1.2308 -0x23c65,CUS_0xa88,August,41,#F%$D@*&8,Writer,94969.56,7959.13,8,5,6,4,"Home Equity Loan, Home Equity Loan, Auto Loan, and Payday Loan",15.76746964,13,4.2,5,Standard,1171.88,28.45336417,31 Years and 4 Months,No,224.9507259,531.7672055,Low_spent_Medium_value_payments,319.1950686,0,-1.2348,1.293,-1.0124,-2.3769,0.6129 -0x23c71,CUS_0xb2d5,August,18,#F%$D@*&8,Musician,18296.3,,8,9,29.06745738,9,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Student Loan, Student Loan, Payday Loan, and Credit-Builder Loan",24.09329869,,20.19,11,Bad,3572.225286,33.63532032,11 Years and 10 Months,Yes,84.26469322,33.30397495,High_spent_Large_value_payments,268.0328536,0,-2.1483,1.3286,0.9299,-0.3594,-1.0668 -0x23c7d,CUS_0xc47c,August,33,614-70-7517,Engineer,33652.17,,2,5,7.288361749,0,Debt Consolidation Loan,,10,4.07,1,Good,274.7683942,35.9083788,16 Years and 3 Months,No,18.99537682,664.5490103,Low_spent_Small_value_payments,309.1990452,0,1.1185,-0.5445,0.0858,0.7037,0.5783 -0x23c89,CUS_0xdba,August,39,625-04-4866,Developer,60799.53,4989.6275,8,5,29,7,"Personal Loan, Not Specified, Student Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",43.95388407,29.40893317,6.77,12,Bad,2377.645837,34.85441228,18 Years and 3 Months,Yes,214.5889462,,High_spent_Large_value_payments,423.3676983,0,-1.0802,0.5833,-0.0151,-1.0853,0.2744 -0x23c95,CUS_0x8e80,August,26,032-38-0611,Mechanic,59579.37,,7,5,19,6,"Student Loan, Mortgage Loan, Payday Loan, Not Specified, Personal Loan, and Personal Loan",18.94014128,13,,2376,Bad,2341.372442,27.83213308,13 Years and 3 Months,Yes,377.9005576,68.22054509,High_spent_Large_value_payments,452.5780557,0,0.026,-1.5879,0.2644,0.8872,0.1456 -0x23ca1,CUS_0x412f,August,23,319-02-6843,Manager,29437.24,2645.103333,6,7,34,5,"Not Specified, Personal Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",27.89646254,21,24.16,14,Bad,3377.59,36.95817491,4 Years and 8 Months,NM,116.0043484,,Low_spent_Small_value_payments,165.815994,0,-0.3912,1.8051,-0.3774,0.1178,-1.7777 -0x23cad,CUS_0x6dc6,August,39,600-54-4237,Journalist,15319.52,,1,7,5,3,"Auto Loan, Mortgage Loan, and Mortgage Loan",8.774748188,9,-2,6,_,188.9612851,36.54194245,24 Years and 5 Months,No,29.87841614,76.35714015,Low_spent_Medium_value_payments,333.4742328,0,-0.0695,1.0329,-0.8204,-0.4765,-1.4921 -0x23cb9,CUS_0x7992,August,80,515-29-0936,Engineer,16604.27,1162.689167,5,5,14,3,"Debt Consolidation Loan, Not Specified, and Mortgage Loan",3.048354179,5,19.56,8,Standard,888.66,23.94585604,14 Years and 0 Months,Yes,27.58959343,13.3762249,High_spent_Large_value_payments,315.3030983,0,-0.0719,1.0439,-2.572,0.3079,0.0426 -0x23cc5,CUS_0xc166,August,56,466-09-8122,Architect,107836.32,9251.36,3,6,16,3,"Mortgage Loan, Personal Loan, and Payday Loan",23.52359614,17,2.29,2,Standard,1045.39,28.11284023,20 Years and 2 Months,No,231.244069,230.8861171,High_spent_Small_value_payments,723.0058139,0,-0.6819,-0.1336,1.505,-0.4482,0.4445 -0x23cd1,CUS_0x8b6d,August,23,796-69-6764,Musician,102594.9,8391.575,3,4,10.28836175,0,,,,1.82,5,Standard,416.11,43.36510555,19 Years and 3 Months,No,0,549.3700376,High_spent_Large_value_payments,949.7249235,0,-1.0498,0.424,-1.426,0.3666,-0.9938 -0x23cdd,CUS_0xa46e,August,24,105-63-6085,Accountant,131557.44,11144.12,4,6,6,1,Auto Loan,,24.0595122,11.7,5,Standard,1133.991685,46.2306829,31 Years and 10 Months,Yes,100.5651042,200.2361144,High_spent_Large_value_payments,1053.610781,0,0.2575,1.2578,1.3039,0.4014,-0.0524 -0x23ce9,CUS_0xb80a,August,27,096-80-1919,Developer,74319.32,6260.276667,8,10,34.88954781,9,"Personal Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Student Loan, Personal Loan, and Credit-Builder Loan",,22,26.23,16,Bad,3192.94,39.99638687,10 Years and 4 Months,Yes,1632.166825,,Low_spent_Small_value_payments,90.74944393,0,-1.4074,1.7528,0.7444,-0.118,-0.0929 -0x23cf5,CUS_0x7806,August,43,680-76-8867,Entrepreneur,93139.65,7936.6375,3,6,6,3,"Auto Loan, Home Equity Loan, and Personal Loan",,3,-3.03,4,_,1016.37,27.64287842,28 Years and 2 Months,No,192.7884218,244.2024971,Low_spent_Medium_value_payments,636.6728311,0,1.2963,-1.2518,1.1253,-1.9335,0.1042 -0x23d01,CUS_0xeb0,August,21,349-22-8437,Entrepreneur,35733.46,,6,9,23,7,"Credit-Builder Loan, Not Specified, Not Specified, Debt Consolidation Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",,19,2.38,9,Bad,2335.68,31.07210394,18 Years and 10 Months,Yes,124.4182939,77.19134339,High_spent_Small_value_payments,372.9691961,0,0.6834,0.3679,0.7325,-0.5392,-0.9055 -0x23d0d,CUS_0x4649,August,51,804-65-5792,Doctor,33346.34,,5,3,20,0,,,10,12.38,4,Standard,1050.39,35.88295428,24 Years and 0 Months,Yes,0,107.2038292,Low_spent_Small_value_payments,453.1823374,0,-0.3745,-0.272,0.5329,0.5603,-0.7827 -0x23d19,CUS_0x9ce9,August,30,297-91-4807,Teacher,116034.93,9446.5775,1,5,9,1,Credit-Builder Loan,90,1473,2.24,0,_,392.4798969,42.57273008,18 Years and 3 Months,No,74.61428924,381.0704857,High_spent_Small_value_payments,806.3979621,0,0.847,1.0367,1.0195,1.1146,0.2127 -0x23d25,CUS_0xbf09,August,37,#F%$D@*&8,Media_Manager,87199.02,,1,7,7,100,Not Specified,,13.72401832,11.13,4,Good,429.8382176,35.23044815,24 Years and 2 Months,No,62.10048916,396.785934,High_spent_Small_value_payments,552.0720768,0,-0.7172,-1.0724,-1.9911,0.3171,1.13 -0x23d31,CUS_0x1ca9,August,30,044-46-7121,Manager,128585.52,10674.46,4,4,7,1,Student Loan,,11,7.32,6,Good,1000.37,35.32188679,22 Years and 0 Months,No,73.48567887,257.8548934,High_spent_Large_value_payments,976.1054278,0,-0.3836,1.3525,0.9445,-0.2522,2.052 -0x23d3d,CUS_0x2d07,August,34,069-81-5044,Developer,63617.92,5231.493333,6,9,30.88954781,7,"Student Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",34.67393699,26.91494027,14.07,9,Standard,2084.713597,27.11883637,,Yes,1581.007241,377.0768288,Low_spent_Small_value_payments,160.7351821,0,-0.8361,-1.212,1.0127,-0.0881,2.2574 -0x23d49,CUS_0xbb33,August,48,#F%$D@*&8,Media_Manager,100971.6,8286.3,2,6,7,1,Student Loan,16.95429718,,4,3,_,1025.17338,34.16924232,17 Years and 5 Months,No,48.69755777,982.5253698,Low_spent_Medium_value_payments,222.2074494,0,0.6633,-1.256,0.91,-3.0752,0.0098 -0x23d55,CUS_0x8eac,August,24,558-73-0393,Journalist,15881.55,1361.4625,8,5,24,6,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",,26.90949054,4.67,9,_,2608.798639,23.62036122,17 Years and 9 Months,Yes,74.48464695,114.3139711,Low_spent_Medium_value_payments,227.3476319,0,0.1091,-0.8253,-0.6824,1.025,-0.2417 -0x23d61,CUS_0xb5f3,August,23,942-76-6919,Architect,60423.57,5269.2975,10,7,18,3,"Not Specified, Credit-Builder Loan, and Not Specified",25.71063503,9.331137653,12.38,7,Standard,2565.280578,27.28722173,10 Years and 6 Months,Yes,107.8137986,72.56988347,High_spent_Large_value_payments,586.5460679,0,0.7089,0.0915,0.7198,-0.4484,0.6768 -0x23d6d,CUS_0x16b4,August,37,171-24-2247,Lawyer,98087.76,7890.98,4,4,8,4,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",9.659454,10,11.9,10,Standard,55.46,36.16527957,12 Years and 8 Months,Yes,184.2559986,257.4609978,!@9#%8,597.3810036,0,-0.5827,-0.5946,0.1478,1.1141,-2.2787 -0x23d79,CUS_0x631d,August,80,591-97-3475,Mechanic,8830.81,,10,5,33,9,"Not Specified, Personal Loan, Personal Loan, Payday Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",30.3845144,22.4676653,1.64,14,Bad,3948.348198,30.50823325,4 Years and 6 Months,Yes,93.49757981,,Low_spent_Small_value_payments,251.0030682,0,0.6232,0.7261,0.2794,-0.8463,-0.1101 -0x23d85,CUS_0x73de,August,31,225-54-0437,Teacher,101748.16,8382.013333,6,7,4.288361749,2,"Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",,21,18.66,12,_,424.6307092,25.77723589,16 Years and 3 Months,Yes,155.1150264,11587.10942,Low_spent_Medium_value_payments,371.3413673,0,-0.6342,-0.0794,1.2315,-1.6947,-1.3627 -0x23d91,CUS_0x48be,August,45,835-01-3862,Mechanic,19927.48,1655.623333,10,6,24,9,"Student Loan, Personal Loan, Student Loan, Home Equity Loan, Student Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,22.27522995,2.42,15,Bad,4904.004761,36.50938885,,Yes,125.7497982,,Low_spent_Small_value_payments,112.3772918,0,-0.7472,-0.4322,0.2798,0.7782,0.3795 -0x23d9d,CUS_0x95ec,August,18,572-46-2711,Accountant,89469.76,7162.813333,4,3,8,1,Mortgage Loan,6.883848231,8,12.19,8,_,1301.52,38.28254698,31 Years and 4 Months,NM,37.51492176,653.5592488,!@9#%8,295.2071627,0,-0.6807,1.089,-0.3164,0.7418,1.6624 -0x23da9,CUS_0xc668,August,42,#F%$D@*&8,Engineer,17420.33,,4,7,27,3,"Debt Consolidation Loan, Mortgage Loan, and Auto Loan",13.54744046,8.072767308,14.3,9,Standard,2666.947728,28.48791056,,Yes,24.13197167,13.61419115,High_spent_Large_value_payments,372.1232538,0,0.3029,-0.5292,-0.1814,0.4944,-0.6729 -0x23db5,CUS_0x30ec,August,18,669-18-6541,Engineer,8923.745,,6,5,3400,3,"Debt Consolidation Loan, Auto Loan, and Auto Loan",30.13098195,18,9.44,7,Bad,1889.62,34.94635456,10 Years and 2 Months,Yes,18.7274044,62.60351428,High_spent_Small_value_payments,281.933623,0,0.6352,0.1998,-0.0759,-0.0422,0.061 -0x23dc1,CUS_0x1c96,August,51,725-99-5987,_______,43802.27,,4,7,2,4,"Not Specified, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",0,0,8.45,3,Good,1306.151848,32.11226093,32 Years and 6 Months,No,119.0778086,,High_spent_Small_value_payments,391.9948162,0,-0.5718,0.5346,2.0693,0.1134,-1.5075 -0x23dcd,CUS_0xb53,August,32,666-23-6187,Engineer,72699.66,6210.305,4,5,1,0,,8.680804549,11,0.76,0,_,1009.97,33.69066489,16 Years and 3 Months,No,0,237.1553028,Low_spent_Large_value_payments,653.8751972,0,-1.0258,0.7115,-0.3816,-1.0529,-0.3198 -0x23dd9,CUS_0x54be,August,37,466-49-5500,Manager,116574.04,9885.503333,6,6,13,3,"Auto Loan, Home Equity Loan, and Credit-Builder Loan",11.13001849,9,0.51,2,Standard,654.12,35.49480995,26 Years and 5 Months,Yes,224.2153405,697.4321222,Low_spent_Medium_value_payments,346.9028706,0,-1.1124,-0.553,1.2544,0.5342,1.5769 -0x23de5,CUS_0x559c,August,44,342-05-1134,Architect,70447.26,5843.605,8,4,1,3,"Home Equity Loan, Payday Loan, and Mortgage Loan",19.3142514,12,0.54,6,_,904.34,32.15545238,31 Years and 8 Months,No,111.1721789,190.9802536,Low_spent_Medium_value_payments,562.2080675,0,-0.5632,-0.903,-0.1716,1.9272,-0.0154 -0x23df1,CUS_0x18d7,August,18,761-38-3436,Scientist,16068.39,,10,7,17,5,"Personal Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Student Loan",38.04466264,23,22.52,9,Bad,3377.65,31.40269265,,Yes,56.41270053,,Low_spent_Medium_value_payments,259.3218132,0,-2.035,-1.5577,-0.8122,-0.9264,-0.4072 -0x23dfd,CUS_0x1168,August,42,773-33-0379,Writer,76440.52,6647.043333,0,4,8.288361749,2,"Mortgage Loan, and Student Loan",0,2,10.85,4,Good,880.600143,35.48138903,20 Years and 9 Months,No,96.74970979,1034.748007,Low_spent_Medium_value_payments,300.0960323,0,0.4733,0.1772,0.3767,0.2839,-2.0748 -0x23e09,CUS_0x7152,August,18,399-91-2074,Doctor,49716.16,3925.013333,4,3,20,100,"Credit-Builder Loan, Not Specified, Personal Loan, Mortgage Loan, Not Specified, and Mortgage Loan",23.500208,18,17.81,8,_,1490.78,25.26987655,19 Years and 11 Months,Yes,240.3331576,155.5822666,High_spent_Medium_value_payments,246.5859092,0,0.4103,-0.8984,0.8327,-0.461,-0.7292 -0x23e15,CUS_0xb029,August,27,767-78-6130,Engineer,17169.465,,7,6,7.067457376,1,Personal Loan,16.3597,11,10.28,1,Standard,1432.493968,28.49024076,30 Years and 2 Months,Yes,13.51462475,109.6746629,Low_spent_Medium_value_payments,261.887686,0,0.7959,0.0702,-1.2709,0.7657,0.592 -0x23e21,CUS_0xaf96,August,80,650-39-2764,_______,145800.84,12449.07,7,6,10,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Payday Loan",18.14018684,12,14.2,10,_,1292.5,31.91261297,11 Years and 11 Months,Yes,51173,,Low_spent_Large_value_payments,686.0553595,0,-0.3843,-1.1174,-1.7902,0.2903,-0.2083 -0x23e2d,CUS_0x5709,August,42,541-41-6519,Musician,68140.2,,3,5,14,0,,22.530867,17,6.3,5,Standard,176.2658942,38.97063172,28 Years and 6 Months,No,0,362.3857389,High_spent_Small_value_payments,538.0306215,0,0.3866,0.6236,-0.6886,0.7087,-1.0493 -0x23e39,CUS_0xb3c2,August,36,589-17-0882,Media_Manager,20487.905,,4,4,2,3,"Mortgage Loan, Payday Loan, and Credit-Builder Loan",9.262276529,10,6.05,2,_,1464.77,32.67893344,21 Years and 3 Months,No,34.53529462,138.2450747,Low_spent_Large_value_payments,264.6521723,0,1.2514,0.9402,0.5637,-0.7834,0.3304 -0x23e45,CUS_0x7d8,August,18,680-85-5010,Doctor,19288.47,1408.3725,10,6,22.06745738,6,"Payday Loan, Not Specified, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Not Specified",37.2756257,20,8.52,11,Bad,2096.480954,34.53639107,5 Years and 11 Months,Yes,49.38869899,,Low_spent_Small_value_payments,236.6328906,0,1.5241,-0.4344,-0.173,-0.5454,0.3336 -0x23e51,CUS_0x257e,August,23,049-11-7552,Musician,29074.2,,8,563,5,4,"Home Equity Loan, Auto Loan, Student Loan, and Home Equity Loan",23.00777521,17,18.45,3,Standard,867.27,24.57322317,30 Years and 10 Months,Yes,52.50795033,,Low_spent_Large_value_payments,259.1179136,0,-0.2104,-0.9439,-0.7172,-0.402,1.0013 -0x23e5d,CUS_0x78fe,August,31,574-49-3850,Journalist,44729.8,3728.483333,5,4,5.288361749,0,,8.376954947,10,2.82,,Good,512.83,30.79338933,26 Years and 0 Months,No,0,542.8124465,High_spent_Medium_value_payments,499.9733478,0,-0.2646,1.9123,-0.6373,-0.3037,-1.4116 -0x23e69,CUS_0xcc4,August,42,794-41-6711,Engineer,82240.98,6116.362098,3,5,3,1,Home Equity Loan,,3,10.9,5,Good,564.1912636,42.0934201,25 Years and 2 Months,No,928.2537831,172.0027572,High_spent_Large_value_payments,731.3297537,0,1.3448,-1.3238,0.1863,1.7362,-0.3855 -0x23e75,CUS_0xb41f,August,46,#F%$D@*&8,Architect,176020.16,,1,1,1,2,"Mortgage Loan, and Credit-Builder Loan",,7,7.38,5,_,82.6,46.7712673,29 Years and 5 Months,No,165.8042919,123.3485199,High_spent_Large_value_payments,1396.881855,0,-1.7068,-0.4804,0.7074,1.3961,0.7505 -0x23e81,CUS_0xb8a1,August,47,853-28-7975,Architect,178814.16,15167.18,3,7,5,2,"Personal Loan, and Home Equity Loan",7.391736079,4.737763422,3.13,3,Good,445.1411114,44.00495812,16 Years and 8 Months,No,200.326379,289.3141478,High_spent_Medium_value_payments,1277.077473,0,-0.9772,0.2846,-0.8046,0.7667,-2.3803 -0x23e8d,CUS_0x920e,August,55,715-24-1767,Mechanic,57079.5,4669.625,8,3,9,4,"Student Loan, Student Loan, Personal Loan, and Not Specified",21.13919435,14,4.48,3,Standard,26.47,33.92714272,33 Years and 4 Months,No,125.7311367,,Low_spent_Large_value_payments,178.3049354,0,-1.2142,-0.6282,0.6913,0.2827,-0.5543 -0x23e99,CUS_0x8281,August,21,101-27-4002,Engineer,47330.91,3793.2425,9,10,18,3,"Credit-Builder Loan, Mortgage Loan, and Payday Loan",46.5910277,25.59392888,3.68,14,Bad,1643.960167,36.42686588,13 Years and 2 Months,Yes,103.1793319,,Low_spent_Small_value_payments,76.77666484,0,-0.5723,0.7157,0.4011,-0.8968,0.0085 -0x23ea5,CUS_0x6abc,August,24,910-60-1253,Manager,88346.48,,4,3,18,1,Debt Consolidation Loan,,13,18.31,0,Standard,1392.71,35.70362889,23 Years and 0 Months,Yes,46.65991382,665.9453643,Low_spent_Medium_value_payments,296.3153885,0,-1.6245,-0.5202,0.0823,0.8758,-0.4822 -0x23eb1,CUS_0x61a3,August,19,815-57-7510,Architect,14060.34,,5,7,8,0,,17.4385179,10,13.11,3,Standard,359.94,38.96473579,,Yes,0,109.4093324,Low_spent_Small_value_payments,316.9601676,0,0.2736,1.0892,-0.1866,-1.4862,-0.9083 -0x23ebd,CUS_0x9389,August,35,#F%$D@*&8,Doctor,114684.32,,5,5,18.28836175,2,"Auto Loan, Student Loan, and Student Loan",20.93164367,18,8.47,3,Standard,542.26,29.60669534,19 Years and 11 Months,Yes,147.5410376,1079.187831,High_spent_Small_value_payments,430.9112593,0,-0.6372,-0.0149,-0.0738,-2.9684,-0.8188 -0x23ec9,CUS_0x64d9,August,22,841-57-7492,Lawyer,68751.75,5468.3125,6,3,10,0,,,14,4.61,6,Good,59.3713195,37.49830311,30 Years and 0 Months,No,0,,!@9#%8,637.1164726,0,-0.0965,1.5593,0.701,1.6824,-0.5728 -0x23ed5,CUS_0x5d51,August,24,970-66-1276,Entrepreneur,177089.8,14856.48333,3,5,4,4,"Mortgage Loan, Student Loan, Student Loan, and Debt Consolidation Loan",0,2,8.4,4,Good,545.7970637,27.50139913,24 Years and 2 Months,No,371.8004337,290.4290337,High_spent_Medium_value_payments,1101.6437,0,0.0786,0.3961,-1.7476,-2.5257,-2.4536 -0x23ee1,CUS_0x1bb7,August,41,093-84-7831,Entrepreneur,9022.16,1045.846667,6,9,23,7,"Payday Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Personal Loan, and Mortgage Loan",27.31346844,20.17157097,3.93,11,Bad,1909.777506,22.49594004,12 Years and 0 Months,Yes,41.6112072,,Low_spent_Small_value_payments,217.0377165,0,-0.5795,1.16,0.5941,1.114,0.8857 -0x23eed,CUS_0xdf6,August,55,155-73-3803,Mechanic,40453.85,2772.811052,2,2,1,0,,4.372572862,5,4.29,2,Good,419.468653,38.96648678,,No,323.3431148,277.9145402,Low_spent_Small_value_payments,353.9279335,0,1.2762,0.2223,-1.4918,-0.5772,0.8594 -0x23ef9,CUS_0x949b,August,35,287-71-5066,Accountant,11958.695,,3,4,8,0,,26.56554685,18,8.3,7,Standard,74.29,35.14460527,16 Years and 4 Months,Yes,0,22.80024403,High_spent_Small_value_payments,327.5555476,0,1.2646,0.7488,-0.1859,0.8456,1.8482 -0x23f05,CUS_0x2f03,August,44,128-50-9121,Architect,61435.6,5333.633333,8,3,9.288361749,2,"Auto Loan, and Personal Loan",,,19.67,9,Standard,412.38,26.31809535,5 Years and 8 Months,Yes,95.5843823,832.6227701,Low_spent_Medium_value_payments,305.093642,0,1.5572,-1.2102,-1.2485,0.0974,2.1229 -0x23f11,CUS_0x4de9,August,36,005-57-7419,Writer,36820.36,,5,3,5,2,"Mortgage Loan, and Student Loan",,13,14.92,11,Standard,975.09,36.376173,18 Years and 0 Months,NM,24617,67.86649242,High_spent_Medium_value_payments,453.1985358,0,0.6995,-1.3398,1.244,0.3392,-0.4702 -0x23f1d,CUS_0xb832,August,28,979-80-0123,Scientist,14125.67,,10,10,22.88954781,8,"Auto Loan, Auto Loan, Payday Loan, Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, and Payday Loan",54.6672151,27.25155488,2.5,7,Bad,2667.923228,31.32016136,18 Years and 5 Months,Yes,1372.201483,,Low_spent_Small_value_payments,201.0094078,0,-1.2988,0.8249,0.9076,1.458,-0.4083 -0x23f29,CUS_0x7751,August,30,241-73-1041,Mechanic,113048.46,9612.705,5,3,9,2,"Personal Loan, and Mortgage Loan",6.311079482,6,11.75,6,Good,542.7433411,29.4741558,23 Years and 6 Months,No,126.318662,320.4125889,High_spent_Medium_value_payments,795.5740324,0,-0.1653,-1.8299,-1.8234,1.8554,-1.6197 -0x23f35,CUS_0x3e0b,August,27,949-90-0278,Writer,8627.12,,10,5,34,8,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",,21.73455742,4.98,16,Bad,5261.796815,27.76912433,11 Years and 4 Months,Yes,57.01333504,,Low_spent_Medium_value_payments,245.5710137,0,-1.3674,-1.2503,1.1252,0.5611,1.9341 -0x23f41,CUS_0x16a2,August,24,073-14-2342,Musician,119680.56,9906.38,8,4,17,4,"Mortgage Loan, Payday Loan, Student Loan, and Home Equity Loan",17.5190752,14,3.61,4,Standard,871.69,40.45281317,23 Years and 5 Months,NM,330.5792665,153.0066253,High_spent_Large_value_payments,747.0521083,0,-0.1795,0.7572,-0.0992,-0.8093,0.5286 -0x23f4d,CUS_0x67af,August,21,987-19-9666,Accountant,67287,,6,6,19,8,"Debt Consolidation Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",23.44007308,,16.15,11,Bad,2963.164936,36.55799999,5 Years and 10 Months,Yes,335.1233724,112.3304548,High_spent_Small_value_payments,346.4711728,0,1.1925,1.6045,-0.1927,-1.3373,-0.5022 -0x23f59,CUS_0x8448,August,52,693-00-8476,Entrepreneur,57856.2,,8,7,17,3,"Personal Loan, Student Loan, and Not Specified",,22,1.02,4,_,853.8,26.29227439,30 Years and 9 Months,No,139.4706939,,High_spent_Medium_value_payments,428.2082218,0,-2.392,1.2918,-0.6555,0.0527,1.4859 -0x23f65,CUS_0x496a,August,25,726-77-5372,Engineer,18854.6,,8,9,27,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Not Specified, Student Loan, and Personal Loan",34.5614078,17,18.42,8,_,2088.1,25.56104815,16 Years and 5 Months,Yes,60.16086819,,Low_spent_Large_value_payments,261.2719833,0,-0.0582,1.1576,1.0346,0.2354,-0.5376 -0x23f71,CUS_0x40d4,August,28,286-96-2058,Mechanic,34428.72,,4,3,9,5,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,20.21057684,12.48,12,Standard,519.9778857,31.61531486,8 Years and 2 Months,Yes,130.0187167,,Low_spent_Medium_value_payments,346.9242003,0,-1.5917,-0.9369,-1.1865,-0.1016,-0.3148 -0x23f7d,CUS_0x8fdd,August,44,303-19-1557,Media_Manager,74538.87,,8,5,12,0,,9.810646178,11,7.57,4,Standard,1433.43,27.28280142,22 Years and 3 Months,No,0,282.9649636,Low_spent_Medium_value_payments,625.0922864,0,1.0743,1.2835,-0.672,-1.3149,-0.7657 -0x23f89,CUS_0xa092,August,53,670-07-0614,Manager,108258.27,9260.5225,1,4,11,0,,,1,6.64,6,Good,488.9578142,44.52912061,,No,0,,High_spent_Large_value_payments,970.3496351,0,-0.8805,-0.024,-2.0954,2.0011,0.8331 -0x23f95,CUS_0xb55e,August,40,961-58-6114,Musician,38138.12,3409.176667,3,5,15.06745738,2,"Payday Loan, and Personal Loan",14.4978301,9,1.66,9,Standard,2288.270954,29.09678419,,Yes,57.0416796,196.3987282,High_spent_Small_value_payments,320.7569709,0,-1.6083,-0.0458,-0.6376,-1.1801,1.0855 -0x23fa1,CUS_0x958e,August,24,937-11-0997,_______,89269.8,7494.15,5,4,12,3,"Mortgage Loan, Payday Loan, and Student Loan",19.45866266,,10.35,2,Standard,398.825213,33.2918376,19 Years and 0 Months,Yes,209.732246,406.2651675,High_spent_Small_value_payments,432.5367242,0,0.9304,0.0578,-0.8978,0.1428,-0.0902 -0x23fad,CUS_0xbda,August,42,580-96-1926,Accountant,58644.12,5014.01,6,5,21,2,"Credit-Builder Loan, and Credit-Builder Loan",27.48600716,17.60636221,14.5,11,Bad,2456.011809,32.44374618,,Yes,60.87483092,79.05500172,High_spent_Large_value_payments,601.4711674,0,-0.4269,0.3133,-0.0512,0.9667,-0.4221 -0x23fb9,CUS_0x8844,August,35,022-30-0518,Mechanic,165396.2,13575.01667,5,4,6,3,"Student Loan, Credit-Builder Loan, and Payday Loan",,5,1.12,7,Good,980.1667295,43.32773258,30 Years and 10 Months,No,69853,270.9113132,!@9#%8,1092.068087,0,0.337,0.538,-1.0994,0.8743,-1.1659 -0x23fc5,CUS_0x1378,August,18,674-69-0430,Mechanic,18064.06,,6,5,224,6,"Auto Loan, Student Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",16.06953406,12.08063764,19.9,6,_,2353.928356,29.33472423,8 Years and 4 Months,Yes,77.441739,144.5582196,!@9#%8,215.9338747,0,1.9333,-0.1172,-0.5391,-0.2007,0.6345 -0x23fd1,CUS_0x21df,August,34,106-67-3007,_______,76850.25,6174.1875,5,4,6,3,"Not Specified, Mortgage Loan, and Student Loan",12.21538867,10,0.88,3,Standard,1112.24,24.35872043,22 Years and 8 Months,Yes,139.614411,216.9258222,Low_spent_Large_value_payments,530.8785168,0,0.093,-0.0783,-0.9817,0.6938,0.2364 -0x23fdd,CUS_0x4de8,August,33,283-06-4422,Media_Manager,83034.44,7150.536667,4,4,16,2,"Debt Consolidation Loan, and Not Specified",19.44711909,16,17.27,,_,2225.89,23.39388026,8 Years and 4 Months,Yes,90.60863172,724.2577817,Low_spent_Small_value_payments,190.1872532,0,-0.4578,-0.0004,0.2247,1.655,0.3307 -0x23fe9,CUS_0x54b1,August,31,208-81-6608,Media_Manager,8393.545,,7,6,30,7,"Home Equity Loan, Credit-Builder Loan, Not Specified, Personal Loan, Mortgage Loan, Not Specified, and Personal Loan",36.92836401,22.06310865,16.57,15,_,4547.462342,23.5884073,7 Years and 11 Months,Yes,46.69104487,,Low_spent_Small_value_payments,265.2913214,0,-0.0321,0.6508,-0.6268,-1.0137,-0.0295 -0x23ff5,CUS_0x4acc,August,40,458-42-0425,Developer,35195.97,2937.9975,5,3,4,4,"Mortgage Loan, Auto Loan, Not Specified, and Home Equity Loan",,7,1.66,4,Good,759.8810437,29.56041306,28 Years and 9 Months,NM,93.19969211,,High_spent_Medium_value_payments,391.4485419,0,1.0064,-1.1056,0.1026,-0.9639,-0.0106 -0x24001,CUS_0x3295,August,31,052-66-2034,Writer,16381.95,,7,6,14,0,,18.03016332,,11.43,7,Standard,1288.457597,34.01475749,17 Years and 3 Months,Yes,199.0824167,109.792312,Low_spent_Small_value_payments,302.0765184,0,1.2473,-1.012,-0.1409,-0.7745,-0.1607 -0x2400d,CUS_0x7561,August,18,515-48-0926,Scientist,62476.05,5096.3375,9,158,26,4,"Not Specified, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,24,13.83,9,_,2560.25,32.50253225,15 Years and 4 Months,Yes,134.6057483,93.76765286,High_spent_Medium_value_payments,531.2603489,0,0.2845,-0.4814,0.0011,0.4407,-0.0885 -0x24019,CUS_0x84df,August,37,362-28-3210,Media_Manager,45595.08,3189.212103,10,11,28.95700519,6,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",43.16706793,23,26.28,8,Bad,2946.510954,33.23535855,14 Years and 5 Months,Yes,1815.44529,45.19778929,High_spent_Large_value_payments,367.0434488,0,0.7231,0.4766,-0.4069,-1.4003,0.5836 -0x24025,CUS_0x279c,August,19,030-99-3660,Media_Manager,86911.16,,7,3,8,1,Personal Loan,,19,15.42,12,Standard,151.9360985,30.12709186,15 Years and 9 Months,Yes,49.42789469,11443.0534,Low_spent_Large_value_payments,359.6997793,0,-0.8263,-3.5104,-1.0907,-0.8879,0.7295 -0x24031,CUS_0xb125,August,80,744-83-0776,Media_Manager,98175.72,7729.695181,5,6,12,2,"Mortgage Loan, and Payday Loan",,20,17.78,8,Standard,396.9630695,34.39970537,17 Years and 4 Months,Yes,828.6670381,616.7698462,High_spent_Small_value_payments,427.7035731,0,-0.2695,-0.5338,0.3382,0.3631,-0.393 -0x2403d,CUS_0x1ff7,August,48,324-29-5086,Developer,9824.31,,7,4,17,0,,22.00720221,17,0.96,5,_,1132.735953,25.81608056,19 Years and 2 Months,No,0,43.43135183,High_spent_Small_value_payments,292.4425243,0,-0.4332,-1.893,0.5767,0.8388,-1.0367 -0x24049,CUS_0x9bea,August,40,711-43-4714,Media_Manager,20663.81,,9,7,27.06745738,6,"Not Specified, Debt Consolidation Loan, Not Specified, Payday Loan, Mortgage Loan, and Home Equity Loan",37.00434277,18,22.73,,Bad,3738.860954,24.90475841,8 Years and 8 Months,Yes,98.94683662,,Low_spent_Small_value_payments,155.6055771,0,0.4937,0.5249,-0.986,-2.0969,-0.8638 -0x24055,CUS_0x949f,August,32,527-92-0764,Entrepreneur,36165.18,,10,7,22.06745738,5,"Auto Loan, Not Specified, Personal Loan, Credit-Builder Loan, and Not Specified",31.43840996,18.28503257,11.5,13,Bad,2866.688701,37.51991615,,Yes,100.9394399,381.5846382,!@9#%8,72.63213401,0,-0.2512,-0.6137,2.0643,-0.1756,0.5575 -0x24061,CUS_0x192f,August,24,952-38-9618,_______,69304.04,5695.336667,5,7,11,7,"Not Specified, Personal Loan, Not Specified, Home Equity Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",15.55251629,9.757279247,7.76,5,Standard,2008.472843,30.55943472,16 Years and 0 Months,Yes,325.4218987,69.49446093,High_spent_Medium_value_payments,424.617307,0,0.5234,0.3138,-0.3331,0.8328,1.603 -0x2406d,CUS_0x18d8,August,37,584-59-3676,Accountant,15291.67,,4,5,20,1,Auto Loan,22.2455696,16.76088329,14.26,2,Standard,132.1779301,35.16034464,24 Years and 11 Months,Yes,7.334973367,34.2423473,High_spent_Medium_value_payments,319.3532627,0,-1.1136,-1.5691,-0.2787,0.149,0.3667 -0x24079,CUS_0xa362,August,18,#F%$D@*&8,Lawyer,123947.36,,8,5,17,6,"Not Specified, Mortgage Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Home Equity Loan",25.78556263,19,9.51,9,_,145.03,34.63917129,18 Years and 9 Months,Yes,611.2866937,236.5335263,High_spent_Large_value_payments,427.8744467,0,-1.918,-0.8064,-1.4432,-0.8599,0.0865 -0x24085,CUS_0x120c,August,18,212-98-0232,Scientist,29135.38,2138.948333,10,7,21,9,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Not Specified, Personal Loan, and Payday Loan",,30.40584349,8.04,7,Bad,1996.770978,24.80698052,9 Years and 5 Months,Yes,201.0022811,158.8379473,Low_spent_Small_value_payments,144.0546049,0,0.8036,-0.0016,-1.2782,-0.8536,0.4745 -0x24091,CUS_0xb220,August,22,677-44-3825,_______,35806.51,3079.875833,4,5,5,3,"Auto Loan, Payday Loan, and Not Specified",22.36894077,16.20440874,12.28,10,Standard,601.9012265,37.82034402,24 Years and 6 Months,Yes,55.66679032,,Low_spent_Large_value_payments,429.0287845,0,0.9547,1.166,-0.2401,-0.1635,0.5847 -0x2409d,CUS_0x5df,August,49,612-36-0562,Accountant,130079.79,,3,4,7.288361749,0,,0,3,9.05,3,Good,200.0317928,34.36939614,22 Years and 9 Months,NM,56641,720.5551484,High_spent_Large_value_payments,1083.439347,0,-1.831,-1.4892,-0.5565,-0.1071,2.0619 -0x240a9,CUS_0x87a8,August,27,352-09-5170,_______,41364.36,3662.03,1,7,10,3,"Not Specified, Personal Loan, and Debt Consolidation Loan",3.314009222,4.562601424,4.41,4,Good,145.4158849,36.16390592,22 Years and 6 Months,No,61.35231511,73.82531107,High_spent_Medium_value_payments,481.0253738,0,0.2646,-0.6413,-0.8637,1.0281,0.022 -0x240b5,CUS_0x22ee,August,23,431-79-5837,Teacher,59885.28,5057.44,8,3,21,4,"Payday Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,14.81723426,3.57,7,_,2382.534881,33.41482795,18 Years and 3 Months,Yes,118.4202066,103.7640753,High_spent_Large_value_payments,523.5597181,0,-0.3267,-0.1778,0.9739,-1.3121,-0.2229 -0x240c1,CUS_0xa693,August,56,223-85-2426,Media_Manager,13251.255,,4,391,13,1,Credit-Builder Loan,21.99340829,19,6.75,3,Standard,921.57,24.84087488,,No,5.748475834,,Low_spent_Small_value_payments,362.3015628,0,1.2028,-1.0275,1.0355,0.5312,-0.0487 -0x240cd,CUS_0x5fa9,August,43,057-30-7786,Architect,99925.17,,4,7,2,1,Home Equity Loan,11.32191587,8,4.13,7,Standard,1144.682424,42.41330008,23 Years and 3 Months,No,852.0745044,219.854929,High_spent_Large_value_payments,812.0346352,0,-0.9421,-0.8894,1.1621,-1.6822,-0.1949 -0x240d9,CUS_0x5682,August,18,832-80-0129,Entrepreneur,28102.06,2115.838333,10,9,31.95700519,6,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Not Specified, Home Equity Loan, and Home Equity Loan",,21,21.14,15,Bad,3463.960954,38.75871818,4 Years and 5 Months,Yes,1437.74799,244.2435834,Low_spent_Small_value_payments,98.54189082,0,-1.4688,0.7681,1.4916,0.0199,-1.6004 -0x240e5,CUS_0x4f00,August,27,239-64-7715,Developer,82616.56,7053.713333,6,7,5,4,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",,18.60099878,4.39,1,Standard,1316.69586,39.96973954,26 Years and 11 Months,No,146.5905633,268.7326914,Low_spent_Large_value_payments,560.0480786,0,1.8109,-1.3998,0.2279,-0.15,-2.5108 -0x240f1,CUS_0x6ae6,August,26,181-66-7108,Lawyer,9045.485,,8,1180,21.06745738,6,"Not Specified, Student Loan, Auto Loan, Not Specified, Student Loan, and Auto Loan",35.18704208,17.97752237,19.16,11,Bad,2695.847706,30.3379117,18 Years and 10 Months,Yes,63.79541805,26.58441077,Low_spent_Small_value_payments,266.1044992,0,-1.2965,0.4703,-1.9027,-1.0187,-0.7929 -0x240fd,CUS_0x164f,August,31,810-03-9800,Architect,8845.965,846.16375,7,10,27.06745738,5,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",,,1.33,6,Bad,1855.132227,32.34788323,16 Years and 8 Months,Yes,33.94874367,29.72516352,Low_spent_Medium_value_payments,274.2221799,0,1.6639,0.9304,-0.7111,0.6707,1.0198 -0x24109,CUS_0x2d64,August,32,904-55-9140,Accountant,78637.18,6435.098333,3,4,0.288361749,2,"Not Specified, and Auto Loan",,2,8.08,6,_,953.94,36.61383352,19 Years and 3 Months,No,123.7613593,,High_spent_Small_value_payments,522.8053226,0,0.4994,2.6247,-0.5246,0.3416,0.7828 -0x24115,CUS_0x7893,August,51,854-64-8493,Doctor,97050.75,,3,4,10,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",23.84913201,20,3.86,3,Standard,1361.61,28.90651057,28 Years and 2 Months,No,235.8110935,,!@9#%8,635.5793028,0,-0.5769,1.1002,0.3345,0.6389,-2.1917 -0x24121,CUS_0x4e55,August,52,653-19-8238,Writer,68629.6,5540.133333,6,5,14,1,Personal Loan,21.02920627,,4.5,0,Standard,1323.17,38.26594461,20 Years and 8 Months,NM,38.67903792,114.9324327,High_spent_Medium_value_payments,650.4018628,0,0.0722,-1.3607,0.3182,0.4549,-1.6608 -0x2412d,CUS_0x1806,August,56,167-18-8944,Manager,14675.03,,8,5,17.28836175,2,"Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,18,6.25,2,Standard,170.53,23.62348654,,Yes,30.80878648,490.8315908,Low_spent_Small_value_payments,284.6890004,0,0.9026,-1.0891,0.81,0.9697,-0.5226 -0x24139,CUS_0xbaf6,August,37,325-72-9121,_______,26309.54,,8,4,19,1,Debt Consolidation Loan,18.01699836,12,1.32,7,Standard,1178.24,34.81516656,28 Years and 8 Months,No,14.97824091,10000,High_spent_Medium_value_payments,408.1856532,0,-0.5948,2.4925,0.5087,-0.8327,1.1941 -0x24145,CUS_0x978,August,49,396-28-6552,Musician,42411.79,3043.52775,0,2,11,2,"Home Equity Loan, and Home Equity Loan",15.58008893,,6.96,8,Good,640.8878447,36.9481448,,No,445.5680097,242.0301361,High_spent_Small_value_payments,352.1852032,0,0.4366,-1.0181,-1.9905,-0.9345,-0.7876 -0x24151,CUS_0x3801,August,42,980-44-1731,Entrepreneur,85688.49,7208.7075,8,3,19,7,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Personal Loan",,20,12.71,8,Standard,0.34,27.37591329,16 Years and 3 Months,Yes,461.1396231,,Low_spent_Large_value_payments,74.48164857,0,-1.2008,-0.6224,-0.7515,-0.1986,0.1701 -0x2415d,CUS_0x49b0,August,24,812-97-0609,Mechanic,20858.03,,10,7,32,2,"Mortgage Loan, and Debt Consolidation Loan",,29.68421259,3.25,13,Bad,2367.877877,22.86905214,12 Years and 3 Months,Yes,30.79305494,70.98517313,Low_spent_Small_value_payments,341.0386886,0,-0.5147,-0.436,2.1833,2.3642,0.4315 -0x24169,CUS_0x6e26,August,28,227-85-1429,Accountant,99980.36,8032.696667,7,4,6,1,Student Loan,9.883757461,8,7.75,5,Standard,576.6096128,32.40408175,,No,62.13255699,388.8863833,High_spent_Medium_value_payments,649.6371038,0,-0.5757,1.2727,-1.5461,0.3413,0.6866 -0x24175,CUS_0x4312,August,52,446-88-8137,Scientist,49715.1,4084.925,7,3,1,4,"Home Equity Loan, Auto Loan, Not Specified, and Not Specified",25.73875612,19,5.28,7,_,1211.28,39.56691924,32 Years and 11 Months,No,122.7703515,10000,High_spent_Medium_value_payments,427.0658744,0,-0.5958,-0.7707,0.1841,-0.5856,0.2434 -0x24181,CUS_0x2243,August,26,566-70-7188,Scientist,15279.715,879.6736053,3,7,15,4,"Personal Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",13.80934535,10,3.01,6,_,562.9,23.28629719,20 Years and 3 Months,NM,187.3964547,79.7490362,Low_spent_Medium_value_payments,251.1214454,0,0.6539,-0.6593,-0.0718,-0.712,-1.246 -0x2418d,CUS_0x8110,August,80,967-93-3033,_______,92942.4,7474.2,5,4,7,6,"Student Loan, Not Specified, Student Loan, Mortgage Loan, Personal Loan, and Personal Loan",9.414670506,8,9.85,6,Standard,147.78,24.62491268,17 Years and 11 Months,Yes,346.1036175,949.9320545,!@9#%8,,0,0.1289,0.4349,1.2974,0.2863,0.359 -0x24199,CUS_0x14f6,August,80,095-65-3687,Doctor,24466.5,2325.875,4,7,6,3,"Mortgage Loan, Payday Loan, and Not Specified",26.43934945,19,7.41,4,_,789.7310161,39.02210561,31 Years and 0 Months,Yes,41.12909336,57.33201303,High_spent_Small_value_payments,399.5602322,0,0.6123,0.1882,0.0495,1.107,0.0757 -0x241a5,CUS_0xa1b,August,54,120-09-6584,Media_Manager,33991.62,,3,6,6,4,"Auto Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",0,3,9.48,0,Good,1326.98,26.67091464,27 Years and 8 Months,No,57.74861487,,Low_spent_Small_value_payments,135.4531578,0,-0.4012,-0.5261,-0.7299,1.4214,0.6795 -0x241b1,CUS_0x383d,August,58,245-61-6021,Scientist,68845.36,5478.113333,4,5,11,2,"Credit-Builder Loan, and Mortgage Loan",,9,7.55,,Good,418.5219209,32.68876848,20 Years and 9 Months,No,99.90013813,486.4327671,Low_spent_Large_value_payments,276.5729105,0,1.7215,-0.0213,0.8251,-1.3723,1.1761 -0x241bd,CUS_0x7a01,August,24,323-84-9870,Media_Manager,17030.26,,5,7,8,3,"Home Equity Loan, Payday Loan, and Home Equity Loan",23.32017805,19,16.21,8,_,263.0335637,25.03233537,28 Years and 10 Months,Yes,23.87142834,48.06434563,!@9#%8,336.9400296,0,0.0678,-1.0613,-0.3426,-1.3665,0.1758 -0x241c9,CUS_0x347d,August,18,758-46-4782,Entrepreneur,30305.19,2292.4325,8,4,16,100,"Personal Loan, Auto Loan, Student Loan, Auto Loan, Student Loan, and Auto Loan",18.34605908,,12.17,7,Standard,258.04,32.61093395,14 Years and 0 Months,Yes,119.3356436,62.46489864,High_spent_Medium_value_payments,297.4427078,0,-0.3662,-1.7482,-0.491,-1.1068,-0.0033 -0x241d5,CUS_0x5e18,August,50,287-80-7372,_______,177723.8,13711.56482,3,4,1,3,"Mortgage Loan, Student Loan, and Student Loan",,13,11.6,6,_,1292.23,35.49679213,30 Years and 6 Months,No,1665.541798,,Low_spent_Medium_value_payments,515.5017429,0,0.8534,0.3182,0.1298,2.0419,-1.1162 -0x241e1,CUS_0x3b04,August,33,812-97-4156,Mechanic,10424.525,,8,3,18,4,"Payday Loan, Auto Loan, Personal Loan, and Payday Loan",15.85120686,12,17.02,7,Standard,164.79,31.10912345,30 Years and 2 Months,Yes,26.82878832,12.11356505,High_spent_Small_value_payments,287.8286883,0,0.5429,0.6957,0.8834,0.4511,0.2059 -0x241ed,CUS_0x2a2e,August,26,739-38-0026,Entrepreneur,81435,6667.25,10,7,32,2,"Mortgage Loan, and Personal Loan",,20.34799054,19.21,11,Standard,2006.7476,28.93725682,20 Years and 3 Months,Yes,100.9399784,64.19876649,High_spent_Large_value_payments,741.5862551,0,1.3388,0.573,-1.5451,0.0253,1.8968 -0x241f9,CUS_0x7916,August,25,614-99-4488,Teacher,17628,,7,4,18,6,"Mortgage Loan, Personal Loan, Mortgage Loan, Not Specified, Student Loan, and Home Equity Loan",20.39063304,17,18.2,11,Standard,1443.38,23.325162,18 Years and 0 Months,Yes,79.65160693,87.14590674,Low_spent_Medium_value_payments,275.7024863,0,-0.6594,0.1742,0.3367,-1.0411,0.0628 -0x24205,CUS_0xb918,August,26,088-43-6390,Lawyer,15333.36,,10,6,28,5,"Mortgage Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Not Specified",30.06103932,21.5866753,13.99,13,Bad,2549.310642,33.2668094,18 Years and 6 Months,Yes,38.4072425,94.94495904,!@9#%8,256.6257985,0,1.0315,0.4541,1.2529,0.2365,-0.1917 -0x24211,CUS_0x6308,August,43,254-43-4736,Scientist,130433.68,10597.47333,1,1,9.288361749,0,,,10,11.35,2,Good,825.55,21.43415225,26 Years and 11 Months,NM,0,1501.813324,Low_spent_Small_value_payments,267.8714706,0,-0.1983,-0.1463,0.5761,-0.7371,1.3581 -0x2421d,CUS_0xad50,August,29,008-77-8246,Media_Manager,20340.29,,161,7,34.06745738,3,"Credit-Builder Loan, Home Equity Loan, and Not Specified",25.2021837,16.59812528,14.83,14,_,1669.193577,36.64667165,19 Years and 10 Months,Yes,45.26075607,52.68295772,High_spent_Medium_value_payments,302.4384149,0,-0.214,-0.1563,0.2597,0.6983,-0.5075 -0x24229,CUS_0x6fd3,August,27,173-35-0539,Mechanic,20987.56,,10,7,34,7,"Not Specified, Student Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Auto Loan, and Student Loan",43.36534053,25.91628049,4.07,9,Bad,2849.036328,31.50237567,16 Years and 9 Months,Yes,104.6020947,,Low_spent_Small_value_payments,181.5868844,0,0.1856,-0.6285,1.1648,1.1937,-1.4482 -0x24235,CUS_0x1051,August,42,232-33-7638,Engineer,35022.22,,3,5,4,1,Student Loan,8.717205965,11,,,Good,904.1171737,25.39023215,28 Years and 6 Months,No,21.21457645,292.9047837,Low_spent_Small_value_payments,295.3921434,0,-0.4478,1.7021,0.3956,0.9535,0.6163 -0x24241,CUS_0x756f,August,49,857-91-7840,_______,17393.305,1158.442083,4,7,9,3,"Not Specified, Credit-Builder Loan, and Not Specified",,14,,2,Good,326.9327085,28.68518152,33 Years and 3 Months,NM,28.17175357,33.28363702,Low_spent_Large_value_payments,327.8520031,0,0.654,-1.8231,0.9362,0.5282,1.194 -0x2424d,CUS_0x49a1,August,27,052-33-2826,Architect,31272.27,2346.0225,0,6,5.288361749,2,"Student Loan, Not Specified, and Student Loan",0,3,11.85,2,Good,9.803572618,26.17567987,16 Years and 4 Months,NM,49.99591871,602.7159711,Low_spent_Large_value_payments,294.4143358,0,-0.4356,0.5298,-0.3022,0.4886,0.1933 -0x24259,CUS_0xa2f0,August,24,010-29-6264,_______,22428.96,2065.08,7,3,16,1,Not Specified,,14,1.29,0,Standard,1198.505503,34.72230661,24 Years and 2 Months,NM,15.32906469,234.1064759,Low_spent_Small_value_payments,277.5787527,0,-1.0627,-0.1502,-0.9665,-0.081,-0.5584 -0x24265,CUS_0xb1d5,August,37,574-08-1112,Developer,70144.54,5665.378333,3,3,14,3,"Student Loan, Mortgage Loan, and Auto Loan",21.63734179,,11.95,5,_,904.7675233,36.04908821,,Yes,156.9923877,293.1772239,Low_spent_Small_value_payments,406.3682218,0,-1.0772,1.2567,0.6966,-0.0312,0.0582 -0x24271,CUS_0x18ef,August,21,136-44-5764,Entrepreneur,175127.04,14635.92,4,6,12,100,"Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",9.812599974,8,5.95,3,_,518.55,30.84856358,30 Years and 5 Months,No,421.3377742,1887.535211,!@9#%8,,0,-0.4968,1.43,-0.3147,1.3949,-0.4582 -0x2427d,CUS_0xa005,August,41,335-28-9081,Doctor,19627.14,,4,7,3129,7,"Home Equity Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",29.41268607,19,7.83,8,Standard,402.54,29.62490242,13 Years and 3 Months,Yes,87.23339877,242.7627519,Low_spent_Small_value_payments,147.1633494,0,0.1839,-0.7219,-0.8484,1.1431,-0.5842 -0x24289,CUS_0x60ae,August,30,628-84-2005,Developer,41319.07,3045.882754,4,4,10.28836175,0,Credit-Builder Loan,,,5.43,9,Good,486.4398859,33.61223243,25 Years and 9 Months,No,475.6558916,688.2359925,High_spent_Small_value_payments,334.9300393,0,-0.7792,-1.4394,0.2854,-0.6365,1.6554 -0x24295,CUS_0xbd4,August,46,583-65-5183,Architect,106614.18,9150.515,3,6,6,2,"Debt Consolidation Loan, and Mortgage Loan",,1,-3.11,6,Good,40.71,29.99060772,,No,105.1786513,446.2352804,High_spent_Small_value_payments,623.6375684,0,-1.2617,-0.1092,0.9789,0.9035,0.5007 -0x242a1,CUS_0x7e28,August,35,192-58-9476,Media_Manager,19593.13,,7,6,16,0,,,11,18.2,4,Standard,624.41,33.42081759,26 Years and 10 Months,Yes,0,114.2374324,Low_spent_Small_value_payments,345.9386509,0,-0.1492,1.9,0.7553,-1.4095,0.199 -0x242ad,CUS_0x721f,August,48,125-06-4157,Accountant,28947.84,,0,5,4,100,Not Specified,1.820134098,3.392771555,3.14,,Good,1004.943937,25.58669501,21 Years and 4 Months,No,23.70150487,101.386685,Low_spent_Small_value_payments,398.6438101,0,0.6619,0.6506,0.5709,-0.492,-0.193 -0x242b9,CUS_0x62d1,August,27,750-48-7560,Architect,39292.44,3340.37,2,4,7,4,"Not Specified, Student Loan, Mortgage Loan, and Student Loan",1.677031284,6,6.59,3,_,1189.113482,28.14676301,31 Years and 9 Months,No,90.86176298,210.4280813,!@9#%8,343.4466223,0,-1.5803,-0.0863,-2.4048,0.5434,-0.392 -0x242c5,CUS_0xbe65,August,23,753-55-9124,Entrepreneur,16156.815,,4,6,9.067457376,1,Debt Consolidation Loan,,11,5.52,4,Good,1095.583634,41.00186706,19 Years and 8 Months,No,11.07760243,83.04130285,High_spent_Small_value_payments,271.2005102,0,-0.5639,1.0973,-0.3315,0.8841,-0.2374 -0x242d1,CUS_0x574d,August,18,136-77-5117,Scientist,30410.33,2550.194167,8,3,5,2,"Not Specified, and Not Specified",,20,14.5,11,Standard,808.55,28.70711625,11 Years and 10 Months,Yes,46.08981912,,!@9#%8,384.5907297,0,-1.8971,-1.4808,1.1878,-0.9852,0.3287 -0x242dd,CUS_0xb6e0,August,24,318-50-9417,Manager,157794.6,,3,3,10.28836175,2,"Home Equity Loan, and Payday Loan",10.01586958,10,7.98,1,Good,1065.007872,30.77318342,27 Years and 5 Months,NM,261.873309,608.4438954,High_spent_Large_value_payments,1129.983856,0,0.3136,-0.41,-0.6277,-0.6135,0.6223 -0x242e9,CUS_0x22c1,August,34,745-16-2326,Media_Manager,108115.05,9022.5875,6,5,18,3,"Debt Consolidation Loan, Auto Loan, and Debt Consolidation Loan",22.15928525,15,1.27,1,Standard,1149.16,27.81369198,25 Years and 9 Months,NM,206.5762706,492.6094418,Low_spent_Large_value_payments,473.0730376,0,1.4502,1.3063,0.2885,-1.0237,0.9944 -0x242f5,CUS_0xc5e8,August,19,#F%$D@*&8,Architect,55596.12,4463.01,10,6,16.06745738,5,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Mortgage Loan, and Personal Loan",39.1630788,24.89250972,2.45,10,_,5178.698889,24.49599382,4 Years and 11 Months,Yes,202.3929121,90.34451088,!@9#%8,366.8432891,0,0.3145,-0.3563,0.8347,1.3133,-1.2153 -0x24301,CUS_0x7c00,August,41,505-02-8809,Lawyer,16837.43,,3,4,13,2,"Personal Loan, and Credit-Builder Loan",,20,11.59,7,Standard,1347.95,38.40530401,,No,17.0701897,64.25068563,High_spent_Medium_value_payments,336.8910413,0,0.8546,1.5001,-0.6948,-1.3585,-0.2715 -0x2430d,CUS_0x746c,August,49,877-23-7187,_______,23412.9,1981.075,64,6,4,1,Mortgage Loan,29.89448487,21.61355268,0.86,4,Standard,535.658546,31.8837672,27 Years and 3 Months,No,12.70924237,238.0021143,Low_spent_Small_value_payments,237.3961433,0,-0.2763,0.7569,1.5188,-1.8686,-0.2099 -0x24319,CUS_0x4e7d,August,34,452-35-7319,_______,17039.16,1196.93,3,4,11.06745738,7,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",16.09737231,10,,8,Standard,1279.600954,36.50368645,11 Years and 11 Months,Yes,87.42717222,117.3856796,Low_spent_Small_value_payments,178.1598603,0,1.6868,-0.6333,0.8002,-0.3582,1.0163 -0x24325,CUS_0xa6b8,August,38,459-01-7563,Manager,62629.98,5028.165,8,7,32,8,"Not Specified, Payday Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",25.44534028,19,24.17,10,Bad,2606.87,30.25842285,10 Years and 10 Months,Yes,374.8141589,39.05970669,High_spent_Large_value_payments,328.9426344,0,-0.0951,0.8258,-0.6683,0.2764,-1.3427 -0x24331,CUS_0xb639,August,29,346-14-3267,Developer,25780.78,2188.398333,7,6,5,2,"Mortgage Loan, and Credit-Builder Loan",,7.08694385,6.32,3,Standard,108.2402177,31.45771548,18 Years and 6 Months,No,40.82459717,48.65127103,High_spent_Large_value_payments,369.3639651,0,0.6,-0.8175,0.0294,-0.7833,-2.4856 -0x2433d,CUS_0x205a,August,20,344-24-4622,Lawyer,59908.77,5251.3975,3,3,29,5,"Personal Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",,13,8.99,9,_,1323.98,38.39361593,9 Years and 8 Months,Yes,173.3244055,118.8663754,High_spent_Medium_value_payments,482.9489691,0,1.1502,-0.8794,0.3523,1.4974,-0.4415 -0x24349,CUS_0xa282,August,18,#F%$D@*&8,Journalist,20357.69,,6,9,22,5,"Payday Loan, Mortgage Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",33.22015478,25,7.61,14,Bad,3718.95,37.54405861,11 Years and 2 Months,Yes,57.78650537,70.34371028,High_spent_Medium_value_payments,302.017201,0,-1.3363,1.1424,-1.4087,-0.2956,-0.8256 -0x24355,CUS_0xae03,August,19,362-86-0248,Mechanic,124692.08,10650.00667,1,4,1,2,"Credit-Builder Loan, and Home Equity Loan",8.347204092,9,,7,Good,756.91,31.93416182,33 Years and 2 Months,No,136.6047197,277.8312373,High_spent_Medium_value_payments,900.5647096,0,-0.9024,1.8776,0.9149,-0.2937,0.0792 -0x24361,CUS_0x4b2e,August,31,542-85-7041,Musician,38323.07,3342.589167,5,4,4,1,Student Loan,9.018682413,11,10.75,1,Good,1487.87,34.69464835,21 Years and 5 Months,No,27.83967537,131.3740896,High_spent_Medium_value_payments,425.0451517,0,-0.967,0.3884,0.5214,1.7792,0.3061 -0x2436d,CUS_0x12a7,August,37,145-72-2113,Media_Manager,26450.59,,5,6,20,4,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",24.47028227,18,11.8,1,Standard,952.9,26.39980235,28 Years and 8 Months,No,73.67019025,19.55247096,High_spent_Large_value_payments,354.6989221,0,-1.1864,0.8023,0.504,-0.131,0.8502 -0x24379,CUS_0x9805,August,37,699-98-6012,Writer,57913.84,,10,10,28.95700519,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",39.48395957,27.2799762,21.77,9,_,4871.894196,31.8457487,9 Years and 4 Months,Yes,1595.923401,86.76083844,High_spent_Large_value_payments,337.6807248,0,1.5844,0.374,0.1234,-0.1915,-1.4698 -0x24385,CUS_0xa5f,August,39,856-19-9315,Musician,17309.885,,6,4,19,0,,20.61613983,16,,2,Standard,1348.98,32.66739976,27 Years and 0 Months,Yes,0,38.71659854,High_spent_Medium_value_payments,372.9324431,0,1.3762,2.6693,1.0416,-0.0893,-0.9605 -0x24391,CUS_0x1c0c,August,51,781-56-5753,Developer,114148.24,,6,4,4.288361749,0,Auto Loan,21.87114665,19,13.15,0,_,1432.74,32.75463115,33 Years and 2 Months,Yes,36416,533.9092792,High_spent_Large_value_payments,989.6056151,0,0.4309,0.1582,1.7969,-2.9348,1.1454 -0x2439d,CUS_0x98e7,August,48,#F%$D@*&8,Entrepreneur,42989.27,3730.439167,2,458,4,4,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",18.80285241,11.97974015,4.73,4,Good,1538.666024,29.5666201,22 Years and 5 Months,NM,73.55924629,283.9896372,Low_spent_Medium_value_payments,295.4950332,0,-1.5625,-0.0852,0.4226,1.47,-0.2436 -0x243a9,CUS_0x7d06,August,23,909-72-9200,Developer,78038.8,6522.233333,6,10,31,9,"Student Loan, Auto Loan, Payday Loan, Not Specified, Mortgage Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",,27.43079563,1.63,7,_,2060.892371,36.804963,20 Years and 2 Months,Yes,364.6706615,362.4788899,Low_spent_Medium_value_payments,205.0737819,0,0.0433,0.3646,0.3497,0.7153,-0.8824 -0x243b5,CUS_0x150b,August,21,459-49-6464,Entrepreneur,17009.84,1469.486667,7,8,16.06745738,3,"Auto Loan, Auto Loan, and Not Specified",25.31915546,16,19.22,6,Standard,2811.210954,37.39790336,12 Years and 10 Months,Yes,75581,,Low_spent_Small_value_payments,236.4933456,0,1.6839,-0.74,0.3016,-0.7047,0.5526 -0x243c1,CUS_0x3361,August,80,028-38-5655,Accountant,36722.38,,7,6,19.28836175,0,,15.53035325,,7.21,1,Standard,366.9,34.36718802,15 Years and 10 Months,Yes,0,,Low_spent_Small_value_payments,226.1993907,0,-0.9645,0.4943,1.012,1.0546,0.5915 -0x243cd,CUS_0xb3fe,August,24,866-05-1130,Teacher,73716.2,,7,3,16,5,"Auto Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Not Specified",10.34802338,9.255254245,11.87,10,Standard,2781.196916,37.30131704,15 Years and 6 Months,Yes,250.7158706,,High_spent_Large_value_payments,469.3873401,0,0.1354,-1.3598,1.0067,-0.1828,0.8802 -0x243d9,CUS_0xbc9c,August,52,965-74-1495,Doctor,67321.16,5067.657887,3,4,5,3,"Debt Consolidation Loan, Personal Loan, and Student Loan",15.75501729,10,5.45,4,_,210.5980429,26.66813683,13 Years and 5 Months,Yes,45616,135.4961243,High_spent_Medium_value_payments,617.9936986,0,0.3694,-0.3232,0.4529,-0.3851,0.4015 -0x243e5,CUS_0x40d9,August,32,460-53-3049,Journalist,10454.79,,5,6,15,4,"Credit-Builder Loan, Auto Loan, Auto Loan, and Home Equity Loan",24.17977687,19,16.56,13,Standard,773.4,31.22882912,,Yes,34.78843979,,Low_spent_Small_value_payments,256.6092465,0,-0.0562,1.1988,-0.8546,1.2338,1.7846 -0x243f1,CUS_0x1013,August,44,930-49-9615,Mechanic,98620.98,,3,3,6,3,"Student Loan, Debt Consolidation Loan, and Personal Loan",18.48934144,,1.33,3,Good,1233.51,26.52486358,17 Years and 10 Months,No,228.0180837,332.333708,High_spent_Medium_value_payments,485.8897084,0,-1.7871,0.7502,-0.0562,-0.3556,-0.6441 -0x243fd,CUS_0x96cd,August,25,862-93-5222,Lawyer,15335.77,,8,8,31,2,"Auto Loan, and Mortgage Loan",,21.73366353,17,10,Bad,2185.42176,33.13576635,12 Years and 0 Months,Yes,15.09901539,118.0209679,Low_spent_Small_value_payments,298.8781,0,0.0516,-0.6562,-0.4353,1.3788,-0.908 -0x24409,CUS_0x86fb,August,27,467-36-0457,Scientist,48725.58,3845.465,10,10,16.88954781,6,"Auto Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",18.60749628,,7.09,14,Standard,2208.821249,28.94306365,15 Years and 11 Months,Yes,1541.965095,76.71858679,!@9#%8,311.5327371,0,0.297,-1.5441,-2.4522,-0.1741,0.2626 -0x24415,CUS_0x81f0,August,26,842-74-0273,Accountant,77233.44,,9,9,17,5,"Mortgage Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",54.61649971,30.78643571,8.23,10,Bad,2441.079693,26.26820754,12 Years and 6 Months,Yes,245.176913,367.7917007,Low_spent_Large_value_payments,309.8433862,0,0.0791,0.4722,-0.1608,-1.4966,0.3067 -0x24421,CUS_0x4c49,August,33,588-33-1403,Manager,17243.24,,8,10,20.88954781,7,"Mortgage Loan, Personal Loan, Student Loan, Mortgage Loan, Auto Loan, Not Specified, and Not Specified",30.88744793,22,23.21,8,Bad,2657.29,28.46219506,3 Years and 4 Months,Yes,1405.931402,95.30206142,Low_spent_Small_value_payments,256.4301217,0,1.5699,-0.143,1.2431,-0.0628,0.607 -0x2442d,CUS_0x223c,August,26,698-89-5488,Writer,142025.56,12010.46333,0,3,6,2,"Auto Loan, and Home Equity Loan",18.54924559,11.99609563,11.56,2,Good,363.9431267,35.84196659,31 Years and 11 Months,No,202.5577839,564.2511185,Low_spent_Medium_value_payments,714.2374309,0,1.4231,-1.0223,0.561,0.5534,-1.7484 -0x24439,CUS_0x30e8,August,19,978-24-2354,Engineer,18967.13,,6,7,26.06745738,9,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",32.84844314,15,9.8,11,Bad,3436.500954,34.69155895,0 Years and 9 Months,Yes,74.22059719,40.60888568,High_spent_Large_value_payments,271.4096458,0,-0.498,-0.4074,1.7676,-1.016,-0.4863 -0x24445,CUS_0x178d,August,50,646-17-2843,Scientist,34974.41,2998.534167,6,4,18,0,,11.81751495,9,8.14,1,Standard,460.4226011,24.67454638,32 Years and 0 Months,NM,0,,High_spent_Small_value_payments,369.3919576,0,-0.3807,-1.8176,0.6861,-0.3141,0.3714 -0x24451,CUS_0x92cf,August,31,358-73-5026,Media_Manager,14656.14,,6,8,17.06745738,100,"Payday Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Credit-Builder Loan, and Personal Loan",32.93186233,18,26,12,Bad,3235.477112,36.477427,10 Years and 10 Months,Yes,68.90968805,,High_spent_Small_value_payments,245.9100351,0,-0.6155,0.9891,1.2354,1.1439,0.2146 -0x2445d,CUS_0xc19f,August,42,052-17-3249,Manager,31239.32,,9,6,27.06745738,6,"Mortgage Loan, Mortgage Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",41.54165685,22,28.23,10,Bad,2809.370954,38.52342845,11 Years and 3 Months,Yes,141.0996271,148.4543444,Low_spent_Small_value_payments,225.0534073,0,1.6091,-1.2307,0.7494,-0.9268,-1.0451 -0x24469,CUS_0x32ed,August,58,110-76-4956,Mechanic,70737.78,,8,7,7.288361749,4,"Student Loan, Payday Loan, Home Equity Loan, and Not Specified",18.80813535,16,7.28,4,Standard,694.9062479,37.09388359,24 Years and 10 Months,No,539.7588011,463.8868182,High_spent_Large_value_payments,586.0906465,0,0.4779,0.8063,1.1697,-0.6784,-0.1087 -0x24475,CUS_0x4103,August,29,160-22-0061,Musician,18771.34,,5,1067,12,4,"Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",,,12.9,8,Standard,89.53,30.02024062,18 Years and 11 Months,Yes,57.58785566,,High_spent_Small_value_payments,262.357183,0,1.2865,-0.889,0.6158,-0.6221,-1.8865 -0x24481,CUS_0x7e24,August,80,298-06-5346,Media_Manager,49854.92,,8,3,17,3,"Debt Consolidation Loan, Home Equity Loan, and Auto Loan",22.27250917,18,8.07,5,Standard,1044.78,38.2138271,18 Years and 2 Months,Yes,62.83164835,61.56006579,!@9#%8,547.2659525,0,1.5583,-0.4564,0.591,0.4374,-0.4711 -0x2448d,CUS_0x639,August,52,439-54-7865,Architect,109322.7,9248.225,5,3,0.288361749,0,Debt Consolidation Loan,,9,11.9,7,Good,345.8480434,24.83191813,,No,58.17062111,1127.313659,Low_spent_Large_value_payments,499.0034431,0,-0.0197,-0.0476,-0.2039,-0.1724,1.8 -0x24499,CUS_0xb49,August,35,659-50-4581,Journalist,43849.26,,3,1,0.288361749,2,"Credit-Builder Loan, and Debt Consolidation Loan",9.198920324,9,2.47,4,Good,462.8314836,33.27913245,,No,65.00920084,562.8994561,High_spent_Medium_value_payments,433.6894721,0,-0.9147,2.8887,-0.683,-1.8536,0.1883 -0x244a5,CUS_0x8cce,August,36,085-98-2156,Teacher,29969.66,2418.471667,8,6,18,1,Auto Loan,26.03088714,18,18.97,8,Standard,157.07,28.00015597,,Yes,14.38046175,,Low_spent_Large_value_payments,356.9740357,0,0.4634,-0.7372,-0.159,-1.4737,2.0302 -0x244b1,CUS_0x4e9c,August,29,049-89-7426,Musician,23550.47,1922.539167,4,6,15,4,"Payday Loan, Student Loan, Personal Loan, and Payday Loan",18.52596827,15,10.1,8,Standard,937.64,31.12799558,21 Years and 9 Months,Yes,63.24291431,102.4065299,Low_spent_Large_value_payments,296.6044724,0,-1.7316,-0.3346,0.1211,-0.0471,0.5333 -0x244bd,CUS_0x1ad3,August,35,056-35-3142,Scientist,14231.96,1200.23005,8,5,19.06745738,5,"Home Equity Loan, Personal Loan, Home Equity Loan, Auto Loan, and Not Specified",38.44147536,25,10.47,10,Bad,2688.800954,29.3390863,10 Years and 10 Months,Yes,167.5333532,12.81241609,High_spent_Large_value_payments,279.2002265,0,1.7163,-1.3245,-1.8213,0.2164,0.2443 -0x244c9,CUS_0x3d73,August,25,742-78-8539,Developer,33718.73,2955.894167,7,6,6,1,Payday Loan,,14,8.28,3,Standard,1074.66,27.75667048,18 Years and 4 Months,NM,21.66210627,77.12996137,High_spent_Medium_value_payments,446.797349,0,-1.1647,-0.833,-0.599,-1.8231,1.0276 -0x244d5,CUS_0x55e6,August,52,674-87-7848,Doctor,24251.49,1991.9575,8,4,14,1,Student Loan,22.57209539,16,10.53,2,_,1062.17,39.36017738,30 Years and 5 Months,Yes,18.83555049,,High_spent_Medium_value_payments,381.9693534,0,1.0743,1.0742,-2.0834,-0.428,0.3098 -0x244e1,CUS_0x8e01,August,22,759-73-9798,Engineer,70160.18,6100.681667,7,6,11,2,"Home Equity Loan, and Auto Loan",18.12712991,12,16.11,8,Standard,1154.39,28.43535721,,Yes,82.4942072,199.3836066,High_spent_Medium_value_payments,578.1903528,0,1.791,-1.363,1.6843,0.9148,0.2321 -0x244ed,CUS_0x2746,August,20,928-40-6983,Manager,16105.7,,6,3,14,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",20.72002238,17,19.95,9,Standard,640.77,27.43272391,,NM,24.6283007,104.4402996,Low_spent_Medium_value_payments,272.6455664,0,1.7188,-1.0697,-0.2796,-0.1639,-0.2154 -0x244f9,CUS_0xaeb2,August,25,#F%$D@*&8,_______,68267.04,5531.094715,7,7,32,2,"Auto Loan, and Not Specified",,18.03622692,16,12,Standard,2631.210256,37.74957665,11 Years and 3 Months,Yes,316.7432762,221.9716927,High_spent_Small_value_payments,536.0023157,0,0.6065,-0.11,-0.9624,0.4706,-0.753 -0x24505,CUS_0x3de0,August,31,714-62-7054,Entrepreneur,33604.58,2987.381667,3,6,12,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",5.917953279,8,3.6,0,Good,452.8715029,31.97708824,22 Years and 10 Months,No,79.04757846,152.816633,High_spent_Small_value_payments,343.2283124,0,0.5175,-2.3015,-0.0972,-0.2326,0.7371 -0x24511,CUS_0x827f,August,20,917-01-2750,Doctor,32971.85,,3,6,9,2,"Credit-Builder Loan, and Not Specified",,16,6.55,4,Standard,1154.35347,35.35739294,22 Years and 8 Months,NM,329.8368796,249.6799124,Low_spent_Small_value_payments,331.3034113,0,1.5471,0.9449,-0.1922,0.5158,-1.2078 -0x2451d,CUS_0xb432,August,28,760-89-8189,Manager,44890.9,3715.908333,3,7,6,4,"Mortgage Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",14.66623031,,5.45,0,Good,1239.213146,33.81023105,19 Years and 6 Months,NM,83.72378732,114.716989,High_spent_Medium_value_payments,438.9315137,0,-0.0304,0.3385,0.1222,-0.22,-0.2941 -0x24529,CUS_0x7b64,August,38,883-05-9278,Musician,58137.44,4578.786667,10,8,26,3,"Payday Loan, Debt Consolidation Loan, and Payday Loan",,25.40766949,17.44,13,_,2270.557224,33.68650751,13 Years and 5 Months,Yes,139.9112123,463.0288357,Low_spent_Small_value_payments,144.9386187,0,-0.1675,-1.1149,-0.3332,1.3429,-0.1748 -0x24535,CUS_0x1902,August,43,346-08-4265,Lawyer,15819.12,1393.26,5,6,9,0,,13.85295271,11,8.95,6,Standard,114.81,35.03510518,25 Years and 0 Months,No,0,86.34952405,Low_spent_Medium_value_payments,332.9764759,0,0.8757,0.4368,-1.7362,1.2756,0.1345 -0x24541,CUS_0x5e1a,August,32,997-66-1112,Accountant,35739.7,2810.308333,4,6,5,0,,16.65073896,10.74692822,5.74,3,Good,461.245535,35.8885775,20 Years and 10 Months,No,0,38.38443517,High_spent_Medium_value_payments,492.6463982,0,0.2208,1.318,-0.6196,-0.9552,-1.1312 -0x2454d,CUS_0xb483,August,42,568-25-4460,Developer,82154.92,,6,5,34,6,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, and Payday Loan",22.80706544,18,22.75,7,_,4726.13,37.08237415,2 Years and 9 Months,Yes,238.3727036,,High_spent_Large_value_payments,612.7608963,0,-1.9163,-1.6553,-1.9127,-0.564,0.3264 -0x24559,CUS_0x8798,August,51,685-55-7349,Architect,35348.12,2890.676667,1,5,12,2,"Student Loan, and Auto Loan",0,0,,8,Good,1138.623816,30.81677213,18 Years and 9 Months,NM,32.74796657,,Low_spent_Small_value_payments,201.4579279,0,-0.2104,0.3498,-0.1456,-0.1034,0.0231 -0x24565,CUS_0x85b2,August,38,135-32-7932,Journalist,143355.8,,1,4,11.28836175,2,"Home Equity Loan, Home Equity Loan, and Auto Loan",2.129387122,5,2.81,6,Good,330.98,38.00908852,30 Years and 0 Months,NM,298.1912097,601.1796471,High_spent_Large_value_payments,974.4982709,0,-0.2305,-0.2818,-1.5204,0.2585,0.0738 -0x24571,CUS_0x9076,August,29,228-28-5559,Manager,110692.47,9428.3725,4,6,17.28836175,6,"Auto Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",5.319085253,7,12.33,6,_,1134.69,35.0032027,9 Years and 4 Months,Yes,402.4758282,1230.570983,Low_spent_Large_value_payments,,0,1.1542,0.8088,-1.0044,-1.415,0.1114 -0x2457d,CUS_0x591,August,45,268-48-1271,Mechanic,46010.4,3815.2,3,6,32,7,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Home Equity Loan, and Personal Loan",,11,24.91,13,Standard,1274.59,24.97861962,11 Years and 4 Months,Yes,182.1109459,,Low_spent_Medium_value_payments,137.2980193,0,0.339,0.5646,0.4028,-0.7848,-0.4953 -0x24589,CUS_0x926f,August,20,198-58-7893,Journalist,84389.44,,7,7,6,3,"Credit-Builder Loan, Personal Loan, and Student Loan",,17,6.84,1,Standard,1368.62,35.90277715,32 Years and 2 Months,No,162.6463478,219.6250928,High_spent_Medium_value_payments,577.4738927,0,1.8979,-0.2847,1.837,0.3847,-2.5709 -0x24595,CUS_0x2bc7,August,18,407-94-5689,_______,51312.9,4425.075,10,8,29,4,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",25.25882035,15,17,10,Bad,1498.55,31.18472144,9 Years and 0 Months,Yes,146.7076452,136.4531582,High_spent_Medium_value_payments,409.3466966,0,1.6862,0.4931,-1.5324,-0.8169,-0.1139 -0x245a1,CUS_0x7f07,August,24,005-27-6021,Mechanic,8572.585,,6,3,8,5,"Debt Consolidation Loan, Personal Loan, Not Specified, Student Loan, and Personal Loan",9.751847352,11,7.91,11,_,282.9346363,28.3194076,8 Years and 5 Months,Yes,53.90158323,0,High_spent_Large_value_payments,252.5679001,0,0.0729,0.1047,-0.68,0.6296,-1.2086 -0x245ad,CUS_0x1edd,August,18,784-29-8491,Manager,68489.16,5544.401741,10,10,33.88954781,7,"Home Equity Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",28.83250806,20,25.44,8,Bad,4196.339678,30.52147753,14 Years and 2 Months,Yes,1832.553572,161.5200506,High_spent_Large_value_payments,452.1063045,0,-0.5612,-0.0395,-1.1103,0.4652,-1.9172 -0x245b9,CUS_0xbc58,August,33,115-00-1071,_______,21205.72,,3,5,10,2,"Student Loan, and Credit-Builder Loan",16.44875223,14,2.55,2,Good,327.83,31.84193107,27 Years and 9 Months,NM,20.0078861,125.4690768,Low_spent_Small_value_payments,300.1373705,0,1.4681,1.4172,-0.4373,1.3997,1.4543 -0x245c5,CUS_0x9f59,August,55,227-30-9732,Doctor,10233.555,,7,4,3,1,Home Equity Loan,,17,18.2,4,Good,671.9086901,33.20843982,26 Years and 10 Months,No,7.648423559,,Low_spent_Small_value_payments,258.3454769,0,0.7004,0.1859,0.0636,0.2517,-1.2481 -0x245d1,CUS_0x12b8,August,29,706-59-9144,Doctor,15906.4,1350.533333,10,10,21.88954781,8,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Not Specified",33.93168059,24.20731496,27.86,6,Bad,3437.864596,31.0857016,10 Years and 11 Months,Yes,1415.37682,,Low_spent_Small_value_payments,195.7391732,0,1.5033,-0.9492,1.1962,0.1339,0.8201 -0x245dd,CUS_0x906c,August,18,916-74-7841,Writer,16059.88,,7,3,5,4,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",24.63129982,18,17.62,4,Standard,1402.44,35.09848489,14 Years and 10 Months,Yes,49.58904247,119.0884042,Low_spent_Small_value_payments,264.9548867,0,-1.3686,0.5017,1.5972,-2.1538,-2.1796 -0x245e9,CUS_0x1db0,August,27,428-05-7900,_______,17592.34,,7,3,17,5,"Payday Loan, Not Specified, Auto Loan, Personal Loan, and Credit-Builder Loan",26.66600632,17.04214397,16.13,,_,2401.966832,34.6200882,11 Years and 4 Months,Yes,59.32681411,187.2315698,Low_spent_Small_value_payments,189.5444494,0,0.1053,0.0234,1.4037,-0.8941,0.1085 -0x245f5,CUS_0x59d,August,59,194-98-0440,Musician,119514.03,10031.5025,2,3,1.288361749,2,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",6.047735807,9,8.17,1,_,456.4095628,37.9806235,,No,165.7237719,672.080129,High_spent_Large_value_payments,855.3608309,0,-1.0857,1.0437,-1.3235,1.1492,-0.4607 -0x24601,CUS_0x2fc5,August,27,113-07-0267,Engineer,9360.515,,8,6,16.06745738,5,"Debt Consolidation Loan, Auto Loan, Not Specified, Personal Loan, and Home Equity Loan",37.1968864,18.70741875,11.92,17,Standard,2523.942233,40.00840966,14 Years and 11 Months,Yes,21.71699905,21.86208611,!@9#%8,272.8049186,0,1.9639,-0.4328,0.5353,0.4806,0.2481 -0x2460d,CUS_0x7be4,August,30,077-00-8897,Manager,18028.98,,4,7,30.06745738,5,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",15.8234102,9.55419462,19.7,13,_,2150.49026,34.3535138,17 Years and 5 Months,Yes,47.4099104,85.63694456,Low_spent_Large_value_payments,247.1743571,0,0.7213,-0.5036,-0.2582,0.3907,0.025 -0x24619,CUS_0x2734,August,18,429-39-1057,Doctor,14135.23,,9,5,21,7,"Auto Loan, Personal Loan, Student Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Mortgage Loan",,25,29.49,7,Bad,4671.72,29.50228009,7 Years and 11 Months,Yes,68.24048936,61.62337195,Low_spent_Large_value_payments,281.729722,0,-0.2971,-1.2285,-1.2015,1.1757,-0.5313 -0x24625,CUS_0x9941,August,46,629-13-1252,Mechanic,113652.12,9388.01,4,2,3.288361749,2,"Mortgage Loan, and Personal Loan",,7,8.01,1,Good,288.1484458,35.59335664,,No,171.2503518,727.2400346,High_spent_Small_value_payments,762.5855549,0,-1.4402,0.3305,0.6687,0.4252,0.0901 -0x24631,CUS_0x73d9,August,32,510-88-0974,Manager,30559.3,,4,3,9,1,Personal Loan,6.924224982,3.647775132,9.54,4,_,242.6605845,25.70715667,17 Years and 8 Months,No,13.36520328,193.5171045,Low_spent_Large_value_payments,319.8785255,0,-1.0169,0.299,0.5553,0.5206,0.8023 -0x2463d,CUS_0x61f5,August,26,375-63-3940,Entrepreneur,17244.23,,8,5,34.06745738,5,"Personal Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",30.90051062,17,9.75,11,Bad,2198.380954,29.54879373,10 Years and 0 Months,Yes,36.33910634,,Low_spent_Small_value_payments,305.6160413,0,1.065,1.3114,-1.0341,-1.4496,-0.1016 -0x24649,CUS_0x11ec,August,34,417-74-2163,Journalist,14867.69,,10,9,19.95700519,6,"Debt Consolidation Loan, Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",30.33176933,17.6244139,18.5,8,Standard,2815.968385,25.36769124,17 Years and 2 Months,Yes,1378.943048,100.1457483,Low_spent_Medium_value_payments,180.4582508,0,-0.1811,-0.5981,-0.0338,0.0624,0.0425 -0x24655,CUS_0xbdcd,August,20,#F%$D@*&8,Writer,16994.67,,4,3,5,1,Mortgage Loan,,14,8.75,7,Standard,1209.22,23.46097303,23 Years and 9 Months,Yes,13.83743135,143.6488936,Low_spent_Medium_value_payments,284.3359251,0,0.5378,-0.9733,-1.3547,-0.8893,-0.6114 -0x24661,CUS_0x7803,August,36,301-45-9958,Developer,33841.55,,4,4,4,0,,0,2,3.01,4,Good,1485.95,39.84477349,18 Years and 9 Months,NM,0,111.6387324,Low_spent_Medium_value_payments,442.4741842,0,0.2907,1.1157,-2.2998,-1.9652,-1.2371 -0x2466d,CUS_0x2c21,August,26,#F%$D@*&8,Architect,32090.48,,8,1093,25.88954781,7,"Home Equity Loan, Credit-Builder Loan, Student Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",22.67063813,13.37879148,14.39,6,_,1433.552922,28.53759653,,NM,1492.811314,,Low_spent_Small_value_payments,87.61708223,0,0.7851,2.8617,-1.7838,-0.0953,0.2252 -0x24679,CUS_0x94ae,August,22,445-11-4795,Entrepreneur,14665.31,1230.109167,6,6,25,6,"Not Specified, Mortgage Loan, Not Specified, Mortgage Loan, Payday Loan, and Personal Loan",29.53464733,17,2.7,9,Bad,4696.1,34.95040887,5 Years and 11 Months,Yes,44.188371,103.5048323,Low_spent_Small_value_payments,265.3177134,0,-1.4068,1.2048,-0.7763,-0.4774,-0.6506 -0x24685,CUS_0x3007,August,30,205-57-6869,Journalist,8664.405,872.03375,6,7,13,4,"Personal Loan, Not Specified, Auto Loan, and Credit-Builder Loan",,19,15,11,Standard,317.71,23.8163283,12 Years and 10 Months,NM,28.71450951,37.2588158,Low_spent_Medium_value_payments,301.2300497,0,-1.4573,1.119,1.0295,0.3597,0.9541 -0x24691,CUS_0x1668,August,30,371-79-8484,Scientist,64980.72,5473.06,4,7,6,2,"Personal Loan, and Debt Consolidation Loan",,1,0.78,3,_,375.38,40.31796565,32 Years and 2 Months,No,88.44822734,158.1410968,!@9#%8,570.7166759,0,0.4979,1.13,1.929,1.0145,0.0999 -0x2469d,CUS_0xc405,August,41,600-10-3827,Scientist,90662.43,7701.2025,8,5,8,6,"Student Loan, Debt Consolidation Loan, Not Specified, Student Loan, Student Loan, and Mortgage Loan",,10,13.76,8,Standard,208.35,32.27026906,11 Years and 10 Months,NM,57393,101.5510382,High_spent_Medium_value_payments,651.3852994,0,-0.6957,-0.2614,-0.2729,0.6073,0.3494 -0x246a9,CUS_0xc0ff,August,19,208-90-1240,Writer,12941.135,,5,4,20,7,"Personal Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",12.5228698,10,7.19,1876,Standard,219.36,22.01027914,12 Years and 0 Months,Yes,74.9509222,53.32791084,Low_spent_Medium_value_payments,271.8639586,0,2.7458,-0.4857,-1.2828,-0.0914,1.2338 -0x246b5,CUS_0x1c79,August,45,699-49-5543,Engineer,14283.665,,6,4,10.06745738,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",,9.49605978,7.6,3,Standard,1600.428011,28.66983119,22 Years and 11 Months,No,33.68791294,,High_spent_Medium_value_payments,246.092387,0,1.0633,-0.2881,-0.3147,0.2782,0.614 -0x246c1,CUS_0xc029,August,25,804-18-5334,Engineer,57442.5,4934.875,8,8,27,2,"Student Loan, and Payday Loan",33.43803924,,4.06,12,Bad,2735.919223,37.59403617,18 Years and 3 Months,NM,91.8575896,355.8094995,Low_spent_Large_value_payments,315.8204109,0,0.705,0.4643,-0.0413,-1.0537,-0.2299 -0x246cd,CUS_0xb51c,August,29,711-70-5709,Engineer,14697.78,,8,4,19,4,"Credit-Builder Loan, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",,21.33728197,,8,Standard,2427.194016,27.37877426,13 Years and 11 Months,NM,5032,160.3958049,Low_spent_Small_value_payments,239.3124358,0,0.9435,-0.4743,0.4365,-1.5043,0.2785 -0x246d9,CUS_0x596a,August,19,557-24-2510,Engineer,139118.04,11457.17,3,4,12,3,"Personal Loan, Personal Loan, and Auto Loan",,12,6.11,1,_,419.4,41.07244494,32 Years and 6 Months,No,244.9867263,364.7519221,Low_spent_Large_value_payments,805.9783515,0,-0.5468,0.6694,-0.8202,0.3992,-0.3096 -0x246e5,CUS_0x2567,August,49,403-47-0514,Doctor,34239.07,,3,4,10,0,,13.0929593,11,7.83,1,Good,504.44,33.38085167,21 Years and 3 Months,No,0,333.7757777,Low_spent_Small_value_payments,247.8498056,0,-0.0406,-2.9002,-0.1881,0.95,-1.2992 -0x246f1,CUS_0xbf3a,August,45,977-54-5551,Accountant,119612.28,9999.69,3,1,2.288361749,0,,7.585173787,9,9.83,1,Good,1146.63565,32.22364598,19 Years and 6 Months,No,0,1074.500855,Low_spent_Large_value_payments,686.6690537,0,0.6038,-0.7085,-0.4075,-0.6144,-1.3817 -0x246fd,CUS_0xb9ef,August,40,898-63-6787,Manager,17602.095,,1,3,3,0,,10.21441729,10,8.4,3,_,533.266963,26.3767688,21 Years and 9 Months,No,0,87.87751796,High_spent_Small_value_payments,329.2369029,0,-0.5653,0.0712,-0.4448,1.6192,1.3017 -0x24709,CUS_0xa061,August,51,240-51-5346,Doctor,95569.2,8025.1,4,4,8,4,"Auto Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",18.70585771,15,3.15,4,Good,362.8670443,28.14453887,33 Years and 3 Months,No,270.8359219,103.0198613,High_spent_Medium_value_payments,693.8251552,0,-0.4816,0.485,0.3648,1.5004,-0.3497 -0x24715,CUS_0xc1ce,August,19,332-59-0166,Musician,18721.87,1740.155833,8,5,18,5,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",33.24721021,23.67042982,17.91,6,Standard,1869.878675,30.6222154,14 Years and 9 Months,Yes,46.04894145,46.56631883,Low_spent_Medium_value_payments,361.4003231,0,-0.6743,-0.3797,-0.097,-1.0484,-0.1196 -0x24721,CUS_0xb653,August,42,447-22-1289,Writer,94663.59,8064.6325,5,4,5,1,Student Loan,20.45340428,14.13562503,14.18,7,Standard,337.5801788,32.09064799,22 Years and 4 Months,Yes,48.51645049,553.0685797,High_spent_Small_value_payments,464.8782198,0,0.7805,-2.8138,-1.1101,-0.8078,2.0497 -0x2472d,CUS_0xa741,August,38,434-48-5834,_______,73610.5,6136.208333,7,6,5,7,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Payday Loan, and Student Loan",15.50723708,11,17.3,8,Standard,291.67,37.19107831,18 Years and 0 Months,NM,254.6868057,250.6583981,High_spent_Medium_value_payments,358.2756295,0,1.1285,0.6745,0.9175,1.8437,0.23 -0x24739,CUS_0x1743,August,27,005-76-5155,Mechanic,42527.04,,8,6,23.06745738,7,"Auto Loan, Home Equity Loan, Not Specified, Not Specified, Student Loan, Mortgage Loan, and Mortgage Loan",32.10978263,21.79090538,18.9,15,Bad,4905.585267,26.48606884,11 Years and 0 Months,Yes,230.2689336,,High_spent_Medium_value_payments,255.0290962,0,1.1412,-1.0112,-0.765,-0.2106,0.4457 -0x24745,CUS_0xbfa6,August,37,006-73-8209,Teacher,74036.96,6384.746667,9,10,15,5,"Payday Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",42.45761157,21.7085129,9.74,15,Standard,2372.228395,36.30756745,19 Years and 8 Months,Yes,256.61395,,!@9#%8,482.7617307,0,0.0641,0.4649,0.13,0.9094,-0.8098 -0x24751,CUS_0xb203,August,38,266-23-1677,Mechanic,8944.07,,6,10,23.95700519,7,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Personal Loan",23.70278458,,24.11,7,Bad,5157.096573,35.87511908,11 Years and 4 Months,Yes,1367.266132,,Low_spent_Small_value_payments,247.6493336,0,-0.0053,1.1457,1.81,1.0056,1.1799 -0x2475d,CUS_0xc14e,August,80,073-88-2612,Engineer,42578.46,3811.205,10,7,35.06745738,5,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Personal Loan",,22.23188396,22.22,8,Bad,4107.44603,40.57139452,1 Years and 0 Months,Yes,109.6763551,30.85303236,!@9#%8,453.8708246,0,-0.1215,-1.1647,-0.3677,1.0185,-0.6088 -0x24769,CUS_0xc5b0,August,46,957-29-8344,Teacher,40019.72,3565.976667,4,7,3,0,,13.34328549,11,9.48,4,Standard,805.43,31.30744992,32 Years and 8 Months,No,0,,Low_spent_Small_value_payments,185.5593708,0,-1.0004,1.4687,-0.5118,0.9376,-0.6283 -0x24775,CUS_0x8d3d,August,26,872-63-5957,Manager,16750.04,1435.836667,10,10,27.88954781,6,"Auto Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",32.29277257,19,29.4,15,Bad,4305.22,23.59029128,12 Years and 0 Months,Yes,1406.062301,10000,Low_spent_Small_value_payments,245.1240674,0,0.9312,0.3303,-0.4363,-0.0509,1.2538 -0x24781,CUS_0x9011,August,80,133-63-3507,Scientist,108255.72,9042.31,2,2,2.288361749,2,"Auto Loan, Student Loan, and Payday Loan",,0,3.43,2,Good,730.2344736,41.76959828,28 Years and 11 Months,No,136.6024578,665.8488869,High_spent_Large_value_payments,785.3166283,0,-0.9236,-0.8312,-2.2988,-1.4194,-0.2668 -0x2478d,CUS_0x7b4b,August,25,065-77-9473,Scientist,17235.88,,10,5,19.06745738,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",,20,10.56,12,Standard,2195.090954,38.75427884,,Yes,30.29155827,,Low_spent_Small_value_payments,244.4799306,0,-1.0426,1.1555,-0.426,1.2406,-0.4629 -0x24799,CUS_0x6ae4,August,23,604-88-3417,_______,25656.05,,4,4,10,0,,13.30916247,10,8.3,1,Standard,1084.02,25.96529326,,Yes,0,133.0919834,Low_spent_Small_value_payments,397.6084332,0,0.8998,-0.7008,-0.9546,1.5468,-0.4596 -0x247a5,CUS_0xb1e7,August,25,315-68-8909,Lawyer,31763.36,2867.946667,7,7,25,6,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,18.68477721,11.07,9,Standard,1418.141453,31.24238358,12 Years and 6 Months,Yes,122.7170717,,Low_spent_Small_value_payments,117.3035753,0,0.4477,-2.0448,1.0297,0.1811,-0.3063 -0x247b1,CUS_0x28f5,August,56,#F%$D@*&8,Developer,88073.68,,5,7,5,4,"Payday Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,15,10.67,3,Good,1482.24,40.99226591,22 Years and 11 Months,No,226.6989203,56.41657792,High_spent_Large_value_payments,680.5318351,0,-0.2744,-0.1721,0.9048,-0.4626,-0.9215 -0x247bd,CUS_0x4c13,August,49,#F%$D@*&8,Lawyer,37691.17,3321.930833,4,4,4.288361749,0,,8.039328287,9,8.56,3,Good,191.6340911,28.07031194,20 Years and 8 Months,No,0,,High_spent_Large_value_payments,524.8940372,0,1.4649,0.1347,0.1919,0.5163,0.4886 -0x247c9,CUS_0x749e,August,23,006-39-2302,Journalist,76230.76,6001.309343,6,10,31,3,"Home Equity Loan, Not Specified, and Debt Consolidation Loan",27.03676662,16,18.93,14,_,1961.73,28.36663994,20 Years and 6 Months,Yes,327.9152466,53.2574606,High_spent_Large_value_payments,633.0376162,0,1.0723,0.1018,-0.4767,-0.443,1.6435 -0x247d5,CUS_0x70bf,August,29,941-06-1233,Media_Manager,10620.46,,6,5,11,1,Payday Loan,23.28267838,17,3.36,1,Standard,1014.29,30.33566784,24 Years and 4 Months,No,49.76691225,62.77346062,Low_spent_Small_value_payments,300.0547116,0,-0.3727,-0.2521,-1.6805,1.1336,-0.7857 -0x247e1,CUS_0x971a,August,36,231-29-0095,Manager,72841.32,,3,6,30,5,"Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",18.25884739,14.42215125,16.93,7,Standard,2189.762152,32.55744077,16 Years and 6 Months,NM,279.2915313,225.8171931,Low_spent_Medium_value_payments,357.6022755,0,-0.0911,1.421,-1.3852,-0.2147,1.1168 -0x247ed,CUS_0x8122,August,43,668-73-0602,Engineer,19797.22,,6,7,27,9,"Auto Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Not Specified, Home Equity Loan, Personal Loan, and Not Specified",41.74825203,21.69520083,20.48,7,Bad,5533.518203,34.48282699,3 Years and 5 Months,Yes,92.60397135,93.76043698,Low_spent_Medium_value_payments,286.512425,0,0.5031,-0.2361,0.5224,1.6474,-0.2713 -0x247f9,CUS_0x1c78,August,41,#F%$D@*&8,Mechanic,54219.54,4251.295,9,5,19,2,"Payday Loan, and Mortgage Loan",37.38223799,21.49815682,3.89,12,Bad,2217.120818,28.19267991,7 Years and 5 Months,Yes,54.15780394,,!@9#%8,250.6455337,0,0.3092,0.622,0.9548,1.1104,-0.1708 -0x24805,CUS_0xc208,August,25,907-25-2458,Engineer,26463.44,,3,4,16,2,"Personal Loan, and Debt Consolidation Loan",,11,13.75,3,Standard,931.37,26.75192357,24 Years and 5 Months,Yes,31.19911471,240.3997506,Low_spent_Medium_value_payments,242.5298014,0,-0.507,0.514,0.4421,-0.6487,-0.1423 -0x24811,CUS_0x4b76,August,49,#F%$D@*&8,Developer,20647,1714.583333,5,4,4,100,"Credit-Builder Loan, Not Specified, Personal Loan, and Credit-Builder Loan",12.47095636,10,12.25,1,_,1209.862564,30.84641501,32 Years and 5 Months,No,65.5704051,33.13768439,High_spent_Medium_value_payments,327.6734797,0,-1.743,-2.5508,-0.1204,1.1535,0.6939 -0x2481d,CUS_0x5cb9,August,45,782-16-3382,Musician,133581.15,11103.7625,0,6,10.28836175,2,"Personal Loan, Credit-Builder Loan, and Student Loan",8.615755626,9,4.91,0,Good,412.0377333,32.56947979,24 Years and 8 Months,NM,225.4089362,1708.667129,Low_spent_Medium_value_payments,72.73105873,0,-2.4014,-1.0226,0.4433,0.122,0.7141 -0x24829,CUS_0x80ec,August,19,707-76-6509,Entrepreneur,132753.52,10853.79333,5,4,5.288361749,2,"Home Equity Loan, Personal Loan, and Debt Consolidation Loan",8.294033769,9,10.78,5,Good,1452.83,35.8414045,19 Years and 0 Months,No,268.9165691,810.3620458,High_spent_Medium_value_payments,676.0381794,0,-1.0995,-1.3414,0.0544,-2.8518,-0.4544 -0x24835,CUS_0x4a45,August,38,948-93-2039,Journalist,9194.97,,7,9,26.06745738,8,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Payday Loan, and Mortgage Loan",,18.88980181,19.48,,Bad,4510.679963,40.80364612,14 Years and 3 Months,Yes,54.78290934,,Low_spent_Medium_value_payments,232.3465403,0,-0.7182,-0.6204,-1.2492,-0.4981,-2.2095 -0x24841,CUS_0x37e3,August,20,187-12-3052,Entrepreneur,13251.57,,7,7,6,2,"Mortgage Loan, and Credit-Builder Loan",,,11.3,6,_,298.58,26.85174411,29 Years and 10 Months,No,12.55389077,34.89331272,High_spent_Medium_value_payments,324.5825465,0,0.6774,0.3952,0.2007,0.2343,0.1943 -0x2484d,CUS_0xac15,August,18,283-04-4048,Entrepreneur,8083.14,,4,7,15,7,"Debt Consolidation Loan, Personal Loan, Payday Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",,8,13.2,8,_,1964.82,38.18777623,18 Years and 0 Months,Yes,29.61662986,104.9961692,Low_spent_Small_value_payments,247.646701,0,0.5176,1.62,0.3461,-0.731,0.227 -0x24859,CUS_0xab17,August,26,#F%$D@*&8,Teacher,142319.72,12036.97667,3,3,5.288361749,0,,8.85063335,9,3.5,5,_,1092.52,27.31965482,28 Years and 6 Months,No,0,923.2639201,Low_spent_Small_value_payments,990.3712075,0,0.8813,-1.0066,-0.685,-0.8473,-0.967 -0x24865,CUS_0x2e90,August,27,656-11-4327,Journalist,17718.855,,5,1,1313,0,,10.32343849,12,9.09,1,Good,1017.732696,38.67694316,25 Years and 4 Months,No,0,82.11115506,Low_spent_Medium_value_payments,329.4013315,0,-0.1487,0.781,0.4476,0.6584,-0.2551 -0x24871,CUS_0x194b,August,29,661-41-7229,Engineer,161272.04,13312.33667,1,7,6.288361749,2,"Not Specified, Student Loan, and Mortgage Loan",,5.783481589,6.94,1,Good,795.555165,43.59810856,19 Years and 9 Months,No,288.0136782,661.1713944,High_spent_Large_value_payments,1041.986055,0,-0.4592,-1.7222,0.3044,2.0403,0.9368 -0x2487d,CUS_0xadf0,August,44,076-89-6350,Manager,109182.72,9055.56,1,4,0.288361749,0,Student Loan,2.893122802,5,2.03,2,Good,623.35,30.85449243,31 Years and 6 Months,No,46.42470689,739.428751,Low_spent_Medium_value_payments,819.6400031,0,0.2774,1.297,-0.1693,0.1706,0.6043 -0x24889,CUS_0x6ffa,August,37,311-51-2069,_______,105450.66,,7,7,12.28836175,4,"Student Loan, Student Loan, Not Specified, and Not Specified",18.30414517,16,19.95,5,Standard,328.42,25.63111017,26 Years and 11 Months,Yes,187.4137105,1164.987334,Low_spent_Medium_value_payments,249.091916,0,0.3403,-0.811,-0.0547,-1.6579,-2.9612 -0x24895,CUS_0x80ca,August,46,#F%$D@*&8,Engineer,109744.86,8916.405,8,4,19,1,Personal Loan,15.4670383,12,13.33,2,Standard,55.2,28.31466819,32 Years and 9 Months,Yes,72.51605296,,Low_spent_Medium_value_payments,180.568666,0,0.5419,-1.9016,-0.3448,-0.811,0.3028 -0x248a1,CUS_0x1a22,August,29,570-38-5531,Developer,32344.64,2657.386667,6,7,20,6,"Payday Loan, Mortgage Loan, Home Equity Loan, Student Loan, Auto Loan, and Auto Loan",,21,33.74,6,_,2681.27,27.04837355,14 Years and 0 Months,Yes,154.4264498,164.1945766,Low_spent_Medium_value_payments,227.1176403,0,-0.7121,-0.1614,-2.6247,0.221,-2.1223 -0x248ad,CUS_0x52b6,August,41,866-67-0663,Scientist,15754.53,,10,9,23.95700519,7,"Not Specified, Credit-Builder Loan, Not Specified, Not Specified, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",,23.76433367,16.21,14,Standard,1767.913496,40.68669056,,Yes,1374.086968,148.8787479,Low_spent_Small_value_payments,193.2716646,0,1.0708,-1.2148,-1.0895,-0.9948,0.6916 -0x248b9,CUS_0x6566,August,39,982-79-7536,Writer,62155.02,4965.585,8,4,16,2,"Credit-Builder Loan, and Not Specified",,5,19.31,12,Standard,1162.48,41.65589486,11 Years and 5 Months,NM,72.02428561,82.16349797,High_spent_Medium_value_payments,592.3707164,0,-1.0529,1.0862,-1.3445,1.4949,-0.4862 -0x248c5,CUS_0x998f,August,38,909-16-7643,Engineer,42904.26,3833.355,0,4,5.288361749,0,,1.619813587,4,7.62,1,Good,180.0300495,26.90562146,16 Years and 0 Months,No,0,723.2045272,Low_spent_Medium_value_payments,389.7593497,0,0.6658,0.2606,2.3662,-0.1215,0.8056 -0x248d1,CUS_0x96b4,August,18,574-43-0696,Teacher,18611.39,1758.949167,10,7,34.06745738,6,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Mortgage Loan",,26.96165236,25.33,11,Bad,3872.051737,40.54938587,3 Years and 11 Months,Yes,81.65724165,65.36587521,!@9#%8,282.1515119,0,0.8058,-0.4167,1.9842,1.3773,0.4 -0x248dd,CUS_0x7016,August,22,976-92-7680,Lawyer,112815.48,9450.29,1,3,11,4,"Debt Consolidation Loan, Not Specified, Home Equity Loan, and Not Specified",7.698604353,6.089899161,11.11,3,Good,861.5877307,34.73437881,17 Years and 11 Months,No,74263,736.1535389,Low_spent_Medium_value_payments,289.2865802,0,0.4102,1.1475,-0.4864,0.3526,-0.509 -0x248e9,CUS_0x2f1c,August,43,803-27-5656,Engineer,71131.53,6148.6275,7,8,16,6,"Credit-Builder Loan, Not Specified, Student Loan, Auto Loan, Payday Loan, and Auto Loan",,23,8.86,5,_,1168.61,33.00186734,19 Years and 4 Months,Yes,222.4334726,61.28656101,High_spent_Large_value_payments,571.1427164,0,1.1767,-1.0809,-0.82,0.8696,-1.0528 -0x248f5,CUS_0x519e,August,23,480-87-4634,Mechanic,7518.15,,10,9,32,6,"Mortgage Loan, Home Equity Loan, Not Specified, Personal Loan, Payday Loan, and Personal Loan",37.05729622,22,27.61,13,Bad,3651.34,40.15181136,9 Years and 3 Months,Yes,88.25047978,57.55620047,!@9#%8,262.4105242,0,0.3577,-0.1917,0.4663,1.5875,0.1386 -0x24901,CUS_0x802,August,21,118-00-5190,Doctor,50850.21,,6,6,22.06745738,1091,"Student Loan, Payday Loan, Not Specified, Personal Loan, Student Loan, Not Specified, Debt Consolidation Loan, and Not Specified",30.22654292,17.33475098,11.93,14,Bad,3129.761813,27.27574725,5 Years and 11 Months,Yes,251.1735206,415.3127857,Low_spent_Medium_value_payments,1.04515572,0,0.363,0.105,-0.4659,-0.7851,-0.2684 -0x2490d,CUS_0x2a05,August,18,164-42-3473,Media_Manager,8308.235,654.3529167,6,9,20.88954781,100,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, Auto Loan, Mortgage Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",24.91849479,20,8.7,15,Bad,3530.46,23.97592494,4 Years and 2 Months,Yes,1359.557187,47.70084625,Low_spent_Small_value_payments,253.8471766,0,-1.3835,1.1524,0.652,0.898,-0.0496 -0x24919,CUS_0x703d,August,23,186-69-3042,Writer,28742.57,,8,6,6,3,"Personal Loan, Debt Consolidation Loan, and Payday Loan",28.96851752,20,9.63,4,Standard,666.08,28.25957724,27 Years and 5 Months,NM,47.96401314,130.26002,Low_spent_Large_value_payments,347.6973835,0,-1.3323,-1.0921,1.9022,-0.2875,0.4904 -0x24925,CUS_0x3237,August,21,066-87-9187,Media_Manager,54651.78,4359.315,9,9,17.06745738,8,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",,28.45434836,25.64,10,Bad,5334.89418,37.48837576,7 Years and 2 Months,Yes,295.3865761,72.32921586,!@9#%8,281.4954201,0,0.3017,-1.1701,0.7417,-0.1619,-0.6888 -0x24931,CUS_0x68a5,August,37,200-09-1283,Teacher,75982.74,6045.895,8,62,8,2,"Credit-Builder Loan, and Mortgage Loan",11.55133329,9,11.4,1,_,1015.84,34.73269988,21 Years and 2 Months,Yes,88.684582,79.42510925,High_spent_Large_value_payments,676.4798088,0,0.7233,0.8314,0.9279,-0.0349,-1.2259 -0x2493d,CUS_0xa74e,August,30,108-21-3481,Lawyer,86885.43,,3,6,9.288361749,4,"Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",0,4,17.35,2,Good,969.8968385,33.35658907,,No,927.4303293,654.5081699,High_spent_Medium_value_payments,543.7523613,0,0.8661,-0.2199,-0.5224,-1.2485,-0.8314 -0x24949,CUS_0x5db7,August,39,088-41-9984,_______,122730.72,10000.56,8,5,17,4,"Mortgage Loan, Student Loan, Home Equity Loan, and Payday Loan",23.30823254,14,18.08,12,Standard,1040.93,41.68686152,17 Years and 4 Months,Yes,290.6522615,79.18493838,High_spent_Large_value_payments,870.2188001,0,0.7422,0.0444,-0.0863,-0.2928,1.0623 -0x24955,CUS_0xa2cd,August,33,670-07-0195,Musician,68654.62,,4,5,6,1,Auto Loan,10.93699404,10,6.14,3,Good,1215.344613,29.42370055,24 Years and 5 Months,NM,55.22823709,,Low_spent_Medium_value_payments,478.6142808,0,0.628,-1.1097,-0.3893,1.6422,0.412 -0x24961,CUS_0x1216,August,22,256-37-5248,Engineer,20143.27,1550.605833,10,8,28.06745738,2,"Not Specified, and Credit-Builder Loan",32.53685527,18.22789081,9.44,17,Standard,2117.783248,37.32466837,10 Years and 10 Months,Yes,30.35920814,141.8965548,Low_spent_Small_value_payments,246.0845324,0,-0.3099,-0.015,-0.5366,1.0875,-1.1127 -0x2496d,CUS_0x71c1,August,43,653-62-1870,Entrepreneur,16114.245,,4,1,10,100,"Personal Loan, Home Equity Loan, and Not Specified",11.55297883,12,11.92,7,Good,438.9461579,27.20562036,26 Years and 5 Months,NM,37.44585941,54.88607387,!@9#%8,288.3454877,0,-2.0058,-0.2999,0.9401,-0.3301,0.8709 -0x24979,CUS_0x33b0,August,48,406-00-8686,Doctor,179317.04,15091.08667,0,6,7,1,Mortgage Loan,1.386532093,3,1.54,5,_,69.79701738,36.25932651,31 Years and 3 Months,No,142.7870625,166.6655565,High_spent_Large_value_payments,1463.792328,0,1.3017,-1.0406,-2.2555,1.1885,-0.3142 -0x24985,CUS_0x83a7,August,55,733-36-8265,Engineer,90674.43,7318.2025,4,399,4,1,Payday Loan,10.70783313,11,10.84,1,Good,26.11609088,38.18476161,18 Years and 0 Months,No,43.45821533,,Low_spent_Large_value_payments,741.2688157,0,2.1718,1.4667,0.0865,0.3773,-0.0515 -0x24991,CUS_0x87ee,August,44,652-98-3608,Scientist,109545.63,,6,3,13,0,,19.7062176,16,12.55,1,Standard,86.54,33.58718246,17 Years and 2 Months,Yes,0,742.1707575,Low_spent_Medium_value_payments,475.2094925,0,0.3672,1.5668,-0.6519,1.0663,0.2797 -0x2499d,CUS_0xdcb,August,55,646-08-1772,Developer,11680.31,,3,4,13,2,"Credit-Builder Loan, and Mortgage Loan",20.45160638,16,3.51,3,_,58.64,36.53340222,22 Years and 11 Months,No,122.6007797,127.464986,Low_spent_Small_value_payments,264.4072761,0,-1.2226,-1.1713,1.0475,0.4982,-1.0855 -0x249a9,CUS_0xc59d,August,41,233-15-6589,Manager,22648.88,,6,6,10,100,"Mortgage Loan, and Home Equity Loan",10.29583371,8,7.75,4,Standard,1414.75,34.12308378,19 Years and 4 Months,No,28.93580923,215.6190284,!@9#%8,205.3858291,0,0.7751,1.1226,-1.0309,0.9474,0.7169 -0x249b5,CUS_0x4844,August,21,621-93-4258,Musician,59930.64,4988.22,6,7,33,4,"Not Specified, Not Specified, Personal Loan, and Auto Loan",46.96827989,23.51706783,13.43,9,Bad,2639.399317,34.1888299,10 Years and 0 Months,Yes,194.1424747,233.189783,!@9#%8,331.4897424,0,1.5887,-0.7556,1.0073,-0.254,0.9914 -0x249c1,CUS_0xb5ea,August,28,447-46-9385,Lawyer,30628.83,,4,5,20,2,"Student Loan, and Home Equity Loan",11.58587255,7,7.85,9,_,181.03,27.54938251,12 Years and 6 Months,Yes,45.32847462,298.4354547,Low_spent_Small_value_payments,178.8763207,0,1.7564,1.0054,0.6207,0.9213,-0.8327 -0x249cd,CUS_0x82d5,August,34,850-80-9855,Media_Manager,55163.82,,10,9,29.95700519,6,"Payday Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",,24.96224783,16.72,10,Bad,4808.887658,30.14865649,,Yes,1510.988549,,Low_spent_Large_value_payments,259.012591,0,-1.3792,-0.5261,-0.1583,-1.2853,-0.3866 -0x249d9,CUS_0xae6a,August,57,944-46-8769,Lawyer,101103.48,7671.987699,3,3,12,2,"Credit-Builder Loan, and Mortgage Loan",,8,3.82,1,_,840.3327654,44.17290171,16 Years and 8 Months,NM,891.1500921,66.73844438,High_spent_Large_value_payments,890.4522801,0,-0.6192,0.5736,1.5256,-1.7514,1.2259 -0x249e5,CUS_0x5746,August,35,384-25-3332,Accountant,175335.44,14383.28667,2,4,7,3,"Auto Loan, Credit-Builder Loan, and Personal Loan",9.945575985,9,11.43,4,_,1160.83,29.84399964,27 Years and 4 Months,No,312.9191139,257.0905434,High_spent_Large_value_payments,1108.319009,0,-0.0194,-1.1617,0.5447,0.2416,-1.6491 -0x249f1,CUS_0x8b26,August,19,054-74-2220,Architect,30228.82,2406.068333,7,7,18,8,"Personal Loan, Student Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, and Not Specified",34.03118933,18.12873417,5.51,10,Bad,1602.933113,27.38519174,13 Years and 2 Months,Yes,131.5607132,99.80761798,High_spent_Medium_value_payments,259.2385021,0,-0.0923,-0.6458,0.3304,-0.6945,-0.6652 -0x249fd,CUS_0x8a40,August,26,599-33-5668,Accountant,17984.35,1574.695833,8,5,34.06745738,6,"Credit-Builder Loan, Personal Loan, Student Loan, Payday Loan, Personal Loan, and Not Specified",,21.31317239,25.97,6,Bad,5076.941622,40.15154566,5 Years and 3 Months,Yes,76.86048911,,Low_spent_Small_value_payments,187.0143381,0,2.0992,-0.2931,0.0192,-1.582,-0.7029 -0x24a09,CUS_0x26ff,August,18,539-95-4727,Musician,9844.05,,5,6,18,3,"Home Equity Loan, Credit-Builder Loan, and Payday Loan",20.10598666,15,5.1,10,_,1679.05,24.51025719,8 Years and 10 Months,Yes,23.26682119,,High_spent_Large_value_payments,292.4848106,0,0.131,-1.7427,-0.6989,0.1987,0.1269 -0x24a15,CUS_0x4a96,August,29,347-24-2777,Media_Manager,42832.16,3786.346667,0,4,5,2,"Auto Loan, and Mortgage Loan",,2,6.86,6,Good,565.03,35.75979989,16 Years and 10 Months,No,66.18222802,268.6839402,Low_spent_Small_value_payments,333.7684985,0,-0.7322,2.2038,0.0282,0.21,0.6886 -0x24a21,CUS_0x11d9,August,45,548-26-8600,Scientist,87538.24,6183.897312,2,4,3,0,,4.019820956,6,4.6,2,_,38.28664564,30.91408082,25 Years and 3 Months,No,955.9560214,265.6960104,High_spent_Small_value_payments,738.1257662,0,-0.6481,0.3406,1.7916,-0.1811,-0.3787 -0x24a2d,CUS_0x754e,August,25,359-07-6992,Musician,19028.33,,1,7,12,0,,,1.16376282,0.57,4,Good,524.6592168,39.85895755,24 Years and 6 Months,No,0,,Low_spent_Medium_value_payments,347.9905977,0,-2.0686,1.1053,0.7851,0.268,-0.7106 -0x24a39,CUS_0xf70,August,33,738-73-8462,Engineer,75916.96,,6,5,14,4,"Auto Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",24.04400732,17,6.6,4,Standard,368.59,31.91159168,13 Years and 0 Months,Yes,27749,116.2375134,High_spent_Large_value_payments,484.2500711,0,1.3298,0.6589,-1.2631,-1.33,-0.4521 -0x24a45,CUS_0x104f,August,20,264-84-8069,_______,11336.835,992.73625,4,6,14,6,"Auto Loan, Payday Loan, Student Loan, Auto Loan, Auto Loan, and Personal Loan",,19,16.44,7,_,177.98,37.7174566,,NM,35.56273086,,Low_spent_Small_value_payments,219.913544,0,0.2205,-0.5955,0.1883,1.5794,0.0176 -0x24a51,CUS_0x32cc,August,43,707-77-3231,Teacher,31846.76,,2,4,7,2,"Student Loan, and Credit-Builder Loan",2.889852393,6,11.95,4,Good,767.0492326,35.5180209,16 Years and 0 Months,No,27.4078872,,Low_spent_Large_value_payments,331.3674407,0,-0.1866,-0.393,-0.7771,-0.3638,-1.3464 -0x24a5d,CUS_0x674a,August,25,009-00-5894,Musician,70328.66,5682.721667,0,1,8,4,"Student Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",,11,3.06,225,Good,933.6806912,37.46105419,,No,223.7227251,,High_spent_Medium_value_payments,511.962049,0,-0.7541,-0.6786,-1.514,-1.8822,-0.3808 -0x24a69,CUS_0x939,August,34,785-29-7879,Writer,29491.38,,8,9,21.88954781,7,"Not Specified, Student Loan, Payday Loan, Home Equity Loan, Not Specified, Student Loan, and Not Specified",,11,19.22,14,_,1593.63,31.80972691,14 Years and 5 Months,Yes,1419.78194,,Low_spent_Large_value_payments,181.0055373,0,-0.5865,0.2798,-1.3357,0.0846,0.9929 -0x24a75,CUS_0x5a1b,August,53,919-68-5823,Mechanic,14709.295,969.7745833,1,6,11,2,"Home Equity Loan, and Student Loan",0,2,18.29,7,Good,557.78,30.34962992,20 Years and 5 Months,No,23875,,Low_spent_Small_value_payments,251.3348717,0,-1.3262,-0.8612,1.2509,-1.5365,2.0532 -0x24a81,CUS_0x8f4f,August,18,981-31-5070,Journalist,7171.26,807.605,6,9,23.06745738,2,"Home Equity Loan, and Personal Loan",38.88327994,26.14410672,12.81,11,Bad,3136.342002,33.72284582,16 Years and 11 Months,Yes,7.303131515,75.46978087,Low_spent_Medium_value_payments,251.2672997,0,0.5797,-0.1191,-0.8853,0.9745,-2.1594 -0x24a8d,CUS_0x54d4,August,18,673-52-2711,Scientist,40127.74,3095.978333,9,5,16,7,"Not Specified, Not Specified, Auto Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, and Not Specified",29.96827359,20.26671143,11.52,9,Standard,2888.499914,29.40508006,13 Years and 5 Months,Yes,226.6997873,145.6922892,Low_spent_Small_value_payments,227.2057568,0,-1.3675,-0.6633,0.4048,0.6475,-2.1084 -0x24a99,CUS_0x2baf,August,37,909-55-5064,Mechanic,61451.04,,6,5,11,5,"Home Equity Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Not Specified",30.7533387,22.6790211,16.05,10,Standard,92.47232728,34.455763,14 Years and 8 Months,Yes,80768,,Low_spent_Small_value_payments,94.19445176,0,0.2669,1.6554,0.0117,-0.0934,1.191 -0x24aa5,CUS_0x57c9,August,22,207-26-3245,Doctor,97034.96,,3,3,11,5,"Auto Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",25.41973756,18,24.3,8,Standard,86.68,24.50571569,12 Years and 8 Months,Yes,246.5296936,769.72001,Low_spent_Small_value_payments,56.57496301,0,0.6623,-0.6761,-1.0145,0.0693,2.1129 -0x24ab1,CUS_0xb91a,August,36,047-64-4774,Developer,67255.6,,4,6,3.288361749,4,"Payday Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",4.995015516,7.948954662,2.64,6,Good,138.1545988,28.26658975,22 Years and 9 Months,No,133.7709116,,Low_spent_Medium_value_payments,392.8935598,0,-0.1427,-1.125,0.7224,-0.7492,2.0319 -0x24abd,CUS_0xbca6,August,25,202-37-4701,Lawyer,35239.54,,9,6,17.06745738,9,"Student Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",39.98895538,26.43961215,26.75,9,Bad,3707.443198,29.51830631,10 Years and 4 Months,Yes,13431,370.3398187,Low_spent_Small_value_payments,0,0,0.1551,0.3198,-2.3257,-0.9085,-0.1262 -0x24ac9,CUS_0xb227,August,34,700-18-0385,Manager,26498.2,,7,3,14,4,"Not Specified, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",25.78702936,17,3.93,5,_,16.45,38.07718832,29 Years and 5 Months,No,47.86723595,10000,High_spent_Small_value_payments,348.2346575,0,-0.35,1.3233,0.557,-0.379,0.817 -0x24ad5,CUS_0x74f7,August,49,501-19-1690,Architect,112331.04,9247.92,4,4,7.288361749,0,Home Equity Loan,12.26670356,12,17.82,1,Good,1311,43.55659722,29 Years and 11 Months,No,89.817882,515.3012062,High_spent_Large_value_payments,979.6103728,0,-1.1701,-0.1342,0.6048,0.4731,-0.0395 -0x24ae1,CUS_0x9f5c,August,27,789-40-9271,Manager,60584.76,5124.73,8,5,24,5,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Personal Loan",,20.38252557,15.52,9,Standard,2680.406479,31.19152047,,Yes,189.14701,73.63457473,High_spent_Large_value_payments,489.6914153,0,0.6107,-1.0802,-0.7838,0.117,0.5832 -0x24aed,CUS_0x56a,August,51,220-64-6883,Lawyer,30302.97,2621.2475,3,5,8.288361749,0,,11.59632605,12,11.41,0,Standard,295.5401862,30.85508071,,Yes,0,,High_spent_Large_value_payments,449.3664055,0,-1.6311,0.7756,0.944,-1.6093,0.8397 -0x24af9,CUS_0xd3a,August,25,442-29-0102,Teacher,34599.8,3130.316667,8,4,16,3,"Personal Loan, Home Equity Loan, and Student Loan",,21.05418982,16.53,5,Standard,919.5520862,35.63140675,6 Years and 2 Months,Yes,82.51668928,150.7288877,High_spent_Small_value_payments,339.7860897,0,-1.1057,0.352,0.3504,-1.202,0.602 -0x24b05,CUS_0x2da6,August,30,427-69-8844,Doctor,13672.2,,7,5,14.06745738,1,Auto Loan,28.05781189,19,12.12,8,Standard,1643.090954,31.47129815,33 Years and 4 Months,Yes,10.26020004,159.5854056,Low_spent_Small_value_payments,212.4691064,0,-0.1364,2.8156,-0.4456,0.4091,-0.5826 -0x24b11,CUS_0xbe2,August,45,035-96-8957,Architect,171613.6,14154.13333,5,3,4.288361749,0,,2.379190811,5,2.75,1,_,693.4295301,34.93456986,28 Years and 5 Months,No,0,737.1451854,High_spent_Small_value_payments,1390.737797,0,-0.3162,1.848,-0.8336,0.5977,-0.7182 -0x24b1d,CUS_0x75f0,August,31,649-62-3982,Journalist,14058.455,1205.537917,3,6,6,0,,21.6637041,19,15.67,11,Standard,1423.08,31.79791093,29 Years and 4 Months,Yes,0,,Low_spent_Small_value_payments,258.5238221,0,0.7586,0.1519,-0.3731,1.1526,0.8554 -0x24b29,CUS_0x2ad4,August,35,798-47-7765,Teacher,11038.375,,7,6,10,1,Student Loan,19.90801581,14.07870583,10.94,2,Standard,491.4672351,29.50100163,21 Years and 11 Months,No,4.713183572,23.64013061,Low_spent_Medium_value_payments,329.3331441,0,0.1162,0.4857,1.2804,-0.3475,0.3937 -0x24b35,CUS_0x2f8c,August,52,923-76-3008,Architect,30918.82,2780.568333,0,5,13.06745738,0,,,9.055144546,-0.39,3,Good,1840.923995,27.02769535,31 Years and 3 Months,No,0,81.86315782,High_spent_Small_value_payments,429.4733876,0,0.4731,-0.723,0.8713,-0.8307,-0.4419 -0x24b41,CUS_0x8fee,August,53,317-51-1283,Doctor,37201.06,,0,5,2,2,"Payday Loan, and Student Loan",,0,2.99,4,Good,518.13,39.69368655,27 Years and 8 Months,No,37.22039256,186.0618659,Low_spent_Small_value_payments,370.4265749,0,-0.0137,-0.428,0.506,1.084,-1.3308 -0x24b4d,CUS_0x99b9,August,24,645-19-3305,Media_Manager,77597.7,,4,5,2.288361749,4,"Student Loan, Payday Loan, Payday Loan, and Auto Loan",4.720132771,7,6.03,7,Good,349.4887646,40.77666951,31 Years and 3 Months,No,225.2782316,499.5225387,High_spent_Large_value_payments,608.3890273,0,0.0811,-0.0335,-0.9598,-1.7641,-0.2495 -0x24b59,CUS_0x5ee8,August,44,105-87-9069,Scientist,113402.79,9707.2325,3,7,2,2,"Student Loan, and Payday Loan",8.218848939,8.462638734,6.94,,Good,193.724498,29.9304645,28 Years and 9 Months,No,156.6744409,244.6878785,!@9#%8,809.3609306,0,0.9625,2.2169,-0.7321,-1.0012,0.3084 -0x24b65,CUS_0x9165,August,45,459-75-6944,Accountant,138873.28,11375.77333,2,3,2.288361749,2,"Mortgage Loan, and Auto Loan",0,1,3,3,_,719.3,38.61779659,28 Years and 3 Months,No,149.6844077,1038.355837,High_spent_Small_value_payments,629.4745497,0,0.347,0.3769,0.6314,0.1903,0.4125 -0x24b71,CUS_0x6992,August,20,460-46-3317,Teacher,79783.6,6426.633333,5,4,15,3,"Student Loan, Personal Loan, and Home Equity Loan",,9,15.6,10,Standard,225.23,25.13638957,31 Years and 6 Months,Yes,131.6595261,114.5197879,High_spent_Large_value_payments,636.4840194,0,0.0646,-0.0749,-1.5161,-2.5756,-1.8157 -0x24b7d,CUS_0x1883,August,41,#F%$D@*&8,Lawyer,61238.32,5006.193333,10,10,30,2,"Mortgage Loan, and Student Loan",32.81485312,23.72090764,6.74,10,_,2174.238595,28.53485653,15 Years and 0 Months,Yes,52.36188947,189.8737601,Low_spent_Large_value_payments,528.3836838,0,1.0089,-0.752,2.0865,-0.5737,-0.4801 -0x24b89,CUS_0x8e4d,August,48,112-28-0565,Entrepreneur,31953.03,,8,5,8,6,"Credit-Builder Loan, Personal Loan, Payday Loan, Not Specified, Not Specified, and Credit-Builder Loan",11.14933882,10,9.09,11,_,347.7248639,28.72807878,15 Years and 9 Months,Yes,109.7659695,45.05219783,High_spent_Large_value_payments,341.1405185,0,-0.4161,0.9204,-0.5761,-0.9798,1.0295 -0x24b95,CUS_0x7720,August,20,175-17-7561,Scientist,33426.96,2533.58,10,6,34,7,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",47.2964422,27,1.79,8,Bad,1432.3,30.7053943,18 Years and 3 Months,Yes,187.191253,97.44942773,High_spent_Small_value_payments,228.7173193,0,1.495,-0.4892,0.0287,-0.4387,-0.0868 -0x24ba1,CUS_0x899,August,22,797-96-0406,Journalist,73057.16,,4,6,32,2,"Auto Loan, and Not Specified",24.58353852,16.42112813,10,14,Standard,2924.033633,31.46398258,,Yes,91.35418752,391.3986767,High_spent_Small_value_payments,377.0568025,0,1.0538,0.7301,-0.7764,0.4669,1.3164 -0x24bad,CUS_0x106f,August,55,517-96-1022,Developer,134035.08,,0,5,9.288361749,2,"Home Equity Loan, and Mortgage Loan",4.541209681,7,5.32,8,Good,687.5346082,30.20796447,24 Years and 11 Months,No,143.483732,,Low_spent_Medium_value_payments,171.4367576,0,-2.3758,-0.7713,-1.5244,0.021,0.5999 -0x24bb9,CUS_0xbf6b,August,33,948-73-3405,Lawyer,38011.72,3127.643333,7,6,8,4,"Payday Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",,14,19.04,10,Standard,1477.54,24.10687956,,Yes,95.23128454,76.5070181,High_spent_Medium_value_payments,391.0260307,0,-0.7755,2.1044,-0.0423,-0.2978,0.1651 -0x24bc5,CUS_0x648c,August,18,677-13-6237,Doctor,75305.44,6427.453333,9,7,34,7,"Not Specified, Mortgage Loan, Auto Loan, Not Specified, Personal Loan, Student Loan, and Mortgage Loan",47.68630577,27,19.8,13,Bad,3517.23,22.63292196,12 Years and 11 Months,Yes,434.1300726,508.415784,Low_spent_Medium_value_payments,,0,0.3542,0.8238,0.8784,-0.3337,0.0257 -0x24bd1,CUS_0x437a,August,46,599-93-4850,Entrepreneur,80966.82,6680.235,8,4,2654,4,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",12.61201169,10,2.02,6,Standard,306.3158446,23.92691595,17 Years and 0 Months,No,207.0684258,730.3421294,Low_spent_Medium_value_payments,89.06337717,0,-0.008,-0.2848,-0.6871,1.1849,1.3735 -0x24bdd,CUS_0x83eb,August,49,920-78-1436,_______,129417.27,10857.7725,0,7,9.288361749,2,"Student Loan, and Payday Loan",0,0,0.89,1377,Good,701.4931684,33.30032631,24 Years and 3 Months,No,60997,1128.692077,Low_spent_Large_value_payments,598.5156232,0,-0.7055,0.2752,-1.186,-2.4972,1.522 -0x24be9,CUS_0x5964,August,26,649-82-4625,Scientist,32810.76,,6,10,19.06745738,9,"Personal Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,16,19.08,,Bad,4452.540954,38.80634163,4 Years and 3 Months,Yes,196.7778976,171.3282095,Low_spent_Medium_value_payments,183.5966049,0,-1.2625,-0.2849,0.8387,-1.4374,1.115 -0x24bf5,CUS_0xbe4d,August,27,676-67-1298,Entrepreneur,71738.16,5820.18,7,5,16,8,"Not Specified, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",,22,29.51,10,_,4320.49,35.3544887,5 Years and 10 Months,Yes,446.3667146,,Low_spent_Large_value_payments,120.1037494,0,2.6811,0.1294,-0.5001,-0.3589,1.3855 -0x24c01,CUS_0x30dd,August,48,759-26-2501,Accountant,42940.26,3828.355,3,7,2,1,Not Specified,17.12429087,,6.84,3,Good,81.52066676,38.19779287,18 Years and 5 Months,No,34.67926703,331.1128624,Low_spent_Small_value_payments,345.862693,0,0.5261,-0.101,-0.2558,-1.3746,1.4362 -0x24c0d,CUS_0x9394,August,35,253-99-1738,Manager,31503.24,2911.27,0,5,6,0,,11.50697797,9,7.47,5,Good,628.79,27.46427303,32 Years and 5 Months,No,0,218.4309136,Low_spent_Small_value_payments,362.6960864,0,-0.4089,-0.8496,-0.0919,-0.5156,-0.3258 -0x24c19,CUS_0xa2f9,August,20,549-28-7620,_______,101771.67,8245.9725,5,6,12,7,"Payday Loan, Credit-Builder Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Not Specified, and Payday Loan",,7,16.25,11,Standard,1059.76,37.17493092,7 Years and 9 Months,Yes,378.5462036,,High_spent_Medium_value_payments,563.3790975,0,-0.7748,2.3843,-0.9694,1.005,-1.4096 -0x24c25,CUS_0x9a3b,August,28,363-28-8264,Entrepreneur,95031.84,,3,7,16.28836175,4,"Credit-Builder Loan, Payday Loan, Personal Loan, and Auto Loan",13.92357434,13,7,3,Standard,573.91,31.635198,21 Years and 2 Months,NM,167.4599885,,!@9#%8,153.5440613,0,1.1766,-0.9944,-1.1928,0.1126,1.522 -0x24c31,CUS_0xb019,August,48,328-52-8554,Entrepreneur,28161.85,2422.820833,8,5,6,4,"Not Specified, Home Equity Loan, Student Loan, and Auto Loan",19.18130946,13,7.72,5,Standard,699.69,26.4845604,,Yes,93.50672065,10000,Low_spent_Small_value_payments,146.6457426,0,2.6408,-0.0166,-0.1294,1.0824,-0.5506 -0x24c3d,CUS_0xb5da,August,28,290-48-5830,Scientist,57697.74,4683.145,7,6,6,1,Credit-Builder Loan,,17,19.14,3,_,550.27,37.61682211,27 Years and 6 Months,Yes,40.93886145,160.4440117,High_spent_Medium_value_payments,516.9316268,0,0.6479,-0.2463,-0.9535,0.1834,-1.0328 -0x24c49,CUS_0x8bf2,August,41,910-16-0107,Media_Manager,46360.11,3901.3425,3,3,27,2,"Student Loan, and Mortgage Loan",,20.38654812,17.2,8,Standard,1884.676977,34.00952319,9 Years and 8 Months,Yes,48.5018998,155.0796516,High_spent_Medium_value_payments,436.5526986,0,1.727,0.7592,0.3102,1.9422,0.1402 -0x24c55,CUS_0x4c5,August,38,557-60-6458,Mechanic,86142.96,,0,1,6.288361749,2,"Mortgage Loan, Mortgage Loan, and Not Specified",4.462346276,8,1.68,1,_,0.209452333,27.96975466,21 Years and 6 Months,No,115.8920371,587.0897207,High_spent_Large_value_payments,701.253349,0,-0.7224,0.5744,1.192,-0.2094,-0.6479 -0x24c61,CUS_0xa4e0,August,31,567-89-8331,Teacher,14899.97,1414.664167,4,3,15.06745738,7,"Mortgage Loan, Payday Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",27.01330472,17,8.99,9,Standard,2684.770954,28.30860411,16 Years and 9 Months,Yes,51.51809829,,Low_spent_Small_value_payments,248.4635445,0,0.0602,-0.2834,-3.0224,1.3761,1.0746 -0x24c6d,CUS_0x6ff5,August,80,699-57-0597,Entrepreneur,43856.38,3870.698333,2,5,6,0,,8.522889894,10,6.69,1,Good,855.8819076,29.25938932,16 Years and 0 Months,No,42213,90.17093449,High_spent_Small_value_payments,565.8323465,0,-1.0651,-0.4843,-0.1217,0.9426,1.4967 -0x24c79,CUS_0x6f7b,August,18,930-47-0460,Doctor,77456.76,6649.73,6,5,16,100,"Home Equity Loan, Auto Loan, Auto Loan, Auto Loan, Mortgage Loan, Not Specified, Not Specified, Auto Loan, and Student Loan",19.44855906,,22.92,15,Bad,3928.73,26.13947699,1 Years and 10 Months,Yes,425.748138,,High_spent_Large_value_payments,351.9534519,0,0.1331,1.3057,-0.9687,0.8015,-0.845 -0x24c85,CUS_0x2cad,August,45,304-15-3108,Entrepreneur,36592.92,2904.41,8,7,9,2,"Not Specified, and Debt Consolidation Loan",22.54783729,13,4.98,4,Standard,1301.92,25.00414042,23 Years and 3 Months,Yes,43.28294047,54.95079476,High_spent_Medium_value_payments,442.2072648,0,2.1906,1.773,-0.5598,-0.0072,-0.9454 -0x24c91,CUS_0x43be,August,42,976-14-9766,Accountant,16511.62,1362.968333,8,9,33.95700519,8,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",40.46108829,25,23.88,15,Bad,5044.690954,37.3487417,4 Years and 10 Months,Yes,1428.929606,124.5708647,!@9#%8,151.7459938,0,0.1154,-1.4255,-0.7567,-1.3041,-0.6185 -0x24c9d,CUS_0x51b2,August,21,403-71-9451,Journalist,39685.92,,10,6,19.06745738,8,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,19.48631178,1.64,10,Bad,4343.954959,38.11798058,11 Years and 8 Months,Yes,210.9578749,,Low_spent_Large_value_payments,111.0430414,0,-0.3043,-0.0121,-1.3145,0.7918,-0.6671 -0x24ca9,CUS_0x812d,August,44,607-70-4191,Mechanic,20940.42,1812.035,7,6,18,6,"Personal Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Payday Loan",90,3051.529843,18.03,9,Standard,2532.409286,25.4348884,6 Years and 2 Months,Yes,69.26845468,205.0557402,Low_spent_Small_value_payments,196.8793051,0,0.2527,-1.2577,-0.5984,-1.9513,1.0191 -0x24cb5,CUS_0xb637,August,32,131-37-9493,Engineer,101896.71,8359.3925,3,5,8.288361749,2,"Debt Consolidation Loan, and Debt Consolidation Loan",19.85498539,17,19.49,4,_,1037.16,25.07223061,26 Years and 6 Months,NM,152.965851,887.020353,Low_spent_Medium_value_payments,495.890507,0,-0.7398,0.389,-1.739,0.8027,-0.507 -0x24cc1,CUS_0x77bf,August,46,454-70-8973,Entrepreneur,83158.26,,1,2,9.288361749,4,"Home Equity Loan, Personal Loan, Not Specified, and Personal Loan",5.98904056,9,,4,Good,212.9250906,33.51845402,22 Years and 9 Months,No,186.8775667,1068.873199,Low_spent_Small_value_payments,231.0895873,0,-1.1456,-0.7366,-0.0184,1.0164,-0.2853 -0x24ccd,CUS_0x289e,August,36,064-61-5717,Writer,27635.39,,5,3,12,2,"Mortgage Loan, and Not Specified",26.48992391,18,18.95,,Standard,1022.51,25.57182931,28 Years and 8 Months,Yes,25.50513852,,Low_spent_Small_value_payments,184.263239,0,-1.4653,-1.5203,-0.0581,1.1561,-0.2678 -0x24cd9,CUS_0x43bf,August,44,233-99-4568,Lawyer,42671.51,3731.959167,1,1,9.288361749,4,"Personal Loan, Debt Consolidation Loan, Not Specified, and Student Loan",11.20421077,11,7.28,5,Good,115.7240083,34.94227325,19 Years and 2 Months,No,87.77740256,483.3158027,High_spent_Large_value_payments,469.3155983,0,1.2289,-0.5766,0.989,0.2301,1.1162 -0x24ce5,CUS_0x80ed,August,25,#F%$D@*&8,Teacher,86262.2,7188.516667,0,7,5,2,"Debt Consolidation Loan, and Payday Loan",,,10.84,2,Good,738.7104894,40.88476934,21 Years and 9 Months,No,127.025986,330.7684078,Low_spent_Medium_value_payments,541.0572729,0,1.1365,-1.311,-1.7912,-0.5853,0.4823 -0x24cf1,CUS_0x49d9,August,32,558-06-8197,Developer,19170.73,,3,5,8,4,"Auto Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",,,11.35,4,Good,285.8163838,37.20983799,20 Years and 4 Months,No,58.04807245,,Low_spent_Small_value_payments,199.1545657,0,1.3786,-1.4595,0.7404,0.127,-0.3035 -0x24cfd,CUS_0x206b,August,24,600-69-4533,Entrepreneur,47641.53,,7,7,28,7,"Home Equity Loan, Home Equity Loan, Payday Loan, Personal Loan, Student Loan, Mortgage Loan, and Payday Loan",50.57054218,27.9620436,4.94,9,Bad,2377.546192,26.09342917,15 Years and 6 Months,Yes,161.7476854,67.0137237,High_spent_Large_value_payments,430.6513409,0,0.7433,0.3926,-0.0287,0.0724,1.986 -0x24d09,CUS_0xb19f,August,18,479-83-5546,Developer,8884.825,,3,5,9,3,"Debt Consolidation Loan, Personal Loan, and Not Specified",10.61016215,10,8.71,11,Standard,446.31,36.4415055,15 Years and 10 Months,Yes,20.7603624,,Low_spent_Medium_value_payments,286.5216872,0,1.2031,0.5072,-0.6648,0.8177,-1.4396 -0x24d15,CUS_0x2b3b,August,29,#F%$D@*&8,_______,58731.76,4599.313333,5,3,14,100,"Not Specified, and Auto Loan",15.28834245,,12.92,4,_,1229.65,25.36889181,24 Years and 8 Months,Yes,79.22122976,154.8942963,Low_spent_Medium_value_payments,505.8158073,0,-0.5388,0.7041,0.5852,-1.1588,-0.5947 -0x24d21,CUS_0xb369,August,29,293-45-5704,Media_Manager,85677.3,,1,5,7.288361749,0,Debt Consolidation Loan,0,2,8.66,2,Good,415.77,23.84258469,29 Years and 9 Months,No,49.67208144,10419.93746,High_spent_Medium_value_payments,701.9886821,0,-0.8725,-0.0836,-0.2487,0.4129,0.5247 -0x24d2d,CUS_0xb005,August,42,211-68-7344,_______,40332.61,3174.797532,1,4,1,3,"Auto Loan, Debt Consolidation Loan, and Mortgage Loan",0.683525271,3,8.32,4,_,412.7731818,33.78888058,27 Years and 2 Months,No,19319,,High_spent_Medium_value_payments,389.7220923,0,-0.523,0.5924,-1.8906,-0.9388,1.875 -0x24d39,CUS_0x884,August,30,885-08-1367,Entrepreneur,10360.915,962.4095833,6,5,29,3,"Not Specified, Home Equity Loan, and Personal Loan",28.71452936,21,9.3,9,Bad,1781.61,38.55248218,13 Years and 3 Months,Yes,53113,45.62947235,High_spent_Small_value_payments,293.0632589,0,-0.0818,-0.704,0.6247,0.3036,-0.8004 -0x24d45,CUS_0x1a5c,August,40,691-48-1115,_______,10585.1,590.0916667,8,4,6,4,"Auto Loan, Payday Loan, Personal Loan, and Auto Loan",12.06076289,8,8.85,5,Standard,0.56,31.22515097,13 Years and 0 Months,Yes,29.54163737,,Low_spent_Small_value_payments,288.0561259,0,1.0216,-0.9913,0.6327,0.2247,1.1043 -0x24d51,CUS_0xa59,August,37,566-36-5614,Journalist,20961.27,,11,11,17.06745738,3,"Home Equity Loan, Not Specified, and Payday Loan",37.16821393,20.21858981,7.12,13,Standard,2352.946335,31.26137038,16 Years and 6 Months,Yes,43.21503067,69.85557032,!@9#%8,293.5863611,0,-1.3402,-1.2195,0.6071,-1.0131,-0.8415 -0x24d5d,CUS_0x269c,August,27,100-45-1929,Teacher,77874.09,,8,3,16,2,"Auto Loan, and Debt Consolidation Loan",27.59042294,20,11.77,12,Standard,127.88,35.39562062,30 Years and 4 Months,Yes,99.6677271,434.5551006,Low_spent_Small_value_payments,406.0279223,0,0.0309,-0.2631,-0.5658,0.0523,-0.2128 -0x24d69,CUS_0x38b6,August,28,698-45-9293,Musician,39447.48,3393.29,5,7,32.06745738,100,"Credit-Builder Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Auto Loan",27.44405073,18.19576992,9.41,8,Standard,2361.925296,26.92979922,14 Years and 11 Months,Yes,194.4222374,121.2531463,High_spent_Medium_value_payments,246.9333283,0,-0.1302,0.0232,1.3506,0.5813,0.1119 -0x24d75,CUS_0xbeb8,August,35,403-31-1021,Entrepreneur,44378.19,3986.1825,8,7,23.06745738,7,"Personal Loan, Personal Loan, Auto Loan, Not Specified, Home Equity Loan, Not Specified, and Home Equity Loan",39.54135159,19.17903201,27.16,12,_,4734.20413,40.67156611,13 Years and 10 Months,Yes,185.4945101,,Low_spent_Small_value_payments,149.2898549,0,-0.3724,-0.1167,0.1441,-0.9571,0.7914 -0x24d81,CUS_0x917d,August,38,149-85-6915,Accountant,14871.095,,3,1299,7,2,"Home Equity Loan, and Mortgage Loan",0,0,8.62,5,Good,658.6772588,29.78795084,17 Years and 2 Months,No,23.61909191,,Low_spent_Medium_value_payments,294.4725463,0,-1.7486,0.6955,0.0892,0.2111,-0.5237 -0x24d8d,CUS_0x67e7,August,41,201-32-8180,Scientist,36454.03,,4,5,9,2,"Credit-Builder Loan, and Personal Loan",11.54762846,11.36329607,1.63,2,Standard,782.5821134,28.5911245,27 Years and 3 Months,No,42.51703118,232.2789791,Low_spent_Small_value_payments,309.187573,0,0.4407,-0.938,0.0763,1.1117,1.347 -0x24d99,CUS_0x37a1,August,24,653-47-3837,Entrepreneur,63439.24,5285.603333,5,5,7,3,"Home Equity Loan, Auto Loan, and Home Equity Loan",,16,16.21,5,Standard,1264.268464,40.25421576,21 Years and 3 Months,Yes,84.59565932,11418.10758,Low_spent_Medium_value_payments,324.9596553,0,1.3572,0.3482,0.0692,-1.1774,-1.3546 -0x24da5,CUS_0x1837,August,36,600-87-2067,Musician,34180.94,2685.411667,6,5,20.06745738,7,"Home Equity Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, and Payday Loan",33.81425815,,-3.37,10,Bad,3884.132665,26.17872976,,Yes,135.8522951,265.8154695,Low_spent_Small_value_payments,130.1531141,0,0.3084,0.4519,-0.158,-1.1053,-0.3698 -0x24db1,CUS_0x88fd,August,52,#F%$D@*&8,Writer,105842.96,9094.246667,7,7,14.28836175,2,"Home Equity Loan, and Mortgage Loan",6.957932665,8,1.2,5,_,281.1020575,27.1767332,18 Years and 11 Months,No,122.9301817,,!@9#%8,815.7561926,0,-0.0349,0.6791,-1.6707,0.447,1.1412 -0x24dbd,CUS_0x93ad,August,30,146-84-6522,Architect,129605.52,10834.46,3,4,11,1,Auto Loan,5.040578652,4.8446076,1.78,2,Good,1188.966536,33.87233657,21 Years and 3 Months,NM,82.44079386,,High_spent_Medium_value_payments,1058.988544,0,1.0625,-0.4021,1.2823,0.8431,-0.9178 -0x24dc9,CUS_0x9288,August,20,850-92-6811,Scientist,20800.88,,10,10,34.88954781,7,"Payday Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Payday Loan, and Auto Loan",32.61638567,24,15.45,14,Bad,2850.2,34.12268992,3 Years and 2 Months,Yes,1384.362566,70.34646456,!@9#%8,292.5015548,0,0.8087,-0.4874,1.9622,1.96,0.2935 -0x24dd5,CUS_0x386c,August,23,810-66-9223,Media_Manager,88827.66,7456.305,3,1,3.288361749,0,,,8,11.16,0,Good,933.8385659,40.43204723,15 Years and 11 Months,No,0,11426.99659,High_spent_Large_value_payments,902.2742292,0,0.5179,-0.6438,0.0581,0.0909,-0.8308 -0x24de1,CUS_0x9fd8,August,20,162-97-2441,Architect,93089.52,,3,4,17,4,"Debt Consolidation Loan, Student Loan, Not Specified, and Student Loan",,18,13.01,8,Standard,1351.26,29.4008803,12 Years and 5 Months,Yes,295.0837388,212.5967561,High_spent_Medium_value_payments,543.0655051,0,0.8499,0.7471,-0.9868,0.5414,-0.4486 -0x24ded,CUS_0x5260,August,18,853-52-7531,Doctor,77375.4,6648.95,3,7,14,6,"Student Loan, Payday Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",13.31346342,9,11.07,7,Standard,1846.37,30.96095866,16 Years and 5 Months,NM,226.6693302,439.4980562,Low_spent_Large_value_payments,268.7276136,0,0.3017,0.664,-0.2367,-0.6994,1.362 -0x24df9,CUS_0x2e2e,August,46,527-69-0845,Engineer,22387.75,,7,7,15,1,Payday Loan,,11,9.4,4,Standard,133.02,33.85865704,28 Years and 3 Months,No,14.44214871,171.4010292,Low_spent_Large_value_payments,278.0214055,0,0.5927,-0.5745,0.0424,1.2307,0.0794 -0x24e05,CUS_0x8b8e,August,43,112-74-4889,Journalist,43531.82,3844.651667,4,4,6,4,"Auto Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",24.22832231,19,11.38,9,Standard,1010.08,25.95264512,7 Years and 2 Months,Yes,88.12588071,121.2837978,!@9#%8,425.0554882,0,0.7662,0.9014,1.4386,-0.5206,0.4501 -0x24e11,CUS_0x8d5d,August,38,#F%$D@*&8,Journalist,49965.21,4423.7675,7,6,18.06745738,9,"Personal Loan, Payday Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Student Loan, Auto Loan, Personal Loan, and Not Specified",29.3508402,15,22.75,9,Bad,4072.850954,30.77070631,4 Years and 5 Months,Yes,319.0418663,214.142872,Low_spent_Medium_value_payments,162.4717238,0,-0.6218,-0.8887,1.2831,-1.9628,-0.5719 -0x24e1d,CUS_0x8135,August,32,939-55-7203,Scientist,344983,3451.874167,3,4,0.288361749,2,"Mortgage Loan, Student Loan, and Mortgage Loan",0.024611987,4,1.71,3,Good,234.48,27.38114993,25 Years and 9 Months,No,70.31304039,536.8986165,High_spent_Small_value_payments,417.9132208,0,-1.6808,-1.2896,0.8603,-1.1287,-2.8148 -0x24e29,CUS_0x467e,August,23,142-99-7800,Developer,68289.32,5411.776667,1,7,1,3,"Debt Consolidation Loan, Not Specified, and Not Specified",0,2,5.57,8,Good,889.4029987,34.59648191,26 Years and 6 Months,No,129.8379096,392.6184314,Low_spent_Medium_value_payments,350.9699609,0,-0.862,1.4054,-0.3961,-1.2393,-0.4053 -0x24e35,CUS_0x9117,August,21,120-51-4662,Media_Manager,34493.58,,1,5,6,0,,,12,4.92,0,Good,953.17,39.03369563,32 Years and 8 Months,No,0,118.1696303,High_spent_Small_value_payments,441.5768697,0,-0.1962,-1.8756,0.4496,-0.7845,-0.3879 -0x24e41,CUS_0x5b8,August,44,353-63-3716,Architect,70342.3,,7,6,16,100,"Debt Consolidation Loan, and Payday Loan",14.09326475,10,8.5,5,Standard,180.38,26.85651323,23 Years and 11 Months,Yes,96.62912346,221.6754844,High_spent_Medium_value_payments,515.5812254,0,1.6704,1.7098,0.803,-1.6937,0.7508 -0x24e4d,CUS_0x599e,August,18,370-99-4111,Musician,117785.2,9973.433333,0,1,3,2,"Personal Loan, and Not Specified",0,2,1.75,3,Good,575.0950858,33.20648614,19 Years and 3 Months,No,166.3621587,122.4791664,High_spent_Large_value_payments,964.7327985,0,-0.4197,-2.1751,-2.1367,0.4104,0.3487 -0x24e59,CUS_0x8d01,August,21,859-15-2247,Journalist,34769.69,,2,3,5.288361749,4,"Payday Loan, Credit-Builder Loan, Student Loan, and Home Equity Loan",14.54281445,15,5.88,3,Good,219.87,26.06372092,16 Years and 10 Months,No,109.9993957,,Low_spent_Small_value_payments,170.0557627,0,-0.1631,0.0594,-0.423,0.0315,-0.4864 -0x24e65,CUS_0x6a81,August,31,097-10-6675,Journalist,5505619,,5,3,6,0,,,0,6.79,6,Good,1348.1,30.63826834,31 Years and 2 Months,No,0,186.3344176,Low_spent_Small_value_payments,266.225374,0,-0.7944,1.2059,0.4835,0.1552,-0.6139 -0x24e71,CUS_0x5257,August,26,271-70-0665,Scientist,16934.76,1181.23,4,3,7,5,"Not Specified, Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",20.69699621,13,11.32,7,_,304.61,26.83901113,7 Years and 4 Months,Yes,52.81353784,72.78343927,Low_spent_Small_value_payments,282.5260229,0,-0.7359,1.6509,0.3135,-0.6011,-0.1945 -0x24e7d,CUS_0x45e2,August,25,264-39-4694,Teacher,59683.1,5198.591667,4,3,5,2,"Auto Loan, and Student Loan",29.47075059,22,1.04,3,Standard,121.26,39.08908273,26 Years and 11 Months,No,93.66487502,202.9137483,High_spent_Small_value_payments,483.2805434,0,-0.418,0.5282,1.275,0.1286,-1.6748 -0x24e89,CUS_0x744b,August,18,605-03-2867,Musician,28417.58,,6,8,28.06745738,8,"Payday Loan, Student Loan, Not Specified, Home Equity Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",,21.15001154,25.6,8,Bad,3773.26331,33.57724563,4 Years and 5 Months,Yes,125.3571225,50.61094542,High_spent_Medium_value_payments,283.8248108,0,1.6027,-0.6336,-1.7764,-0.6889,0.5314 -0x24e95,CUS_0x1521,August,54,#F%$D@*&8,Accountant,16252.91,,1,5,4,2,"Not Specified, and Home Equity Loan",13.07455983,11,3.29,5,Good,1484.51,31.42670532,33 Years and 3 Months,No,19.65352707,,Low_spent_Small_value_payments,258.4171907,0,-1.1935,0.2012,0.7737,0.4273,-0.728 -0x24ea1,CUS_0x613c,August,44,227-22-1686,Entrepreneur,17693.34,1442.445,3,7,15,2,"Debt Consolidation Loan, and Credit-Builder Loan",10.77552344,9,12.08,9,_,1405.95,36.94020676,,Yes,25.28897055,57.29190894,Low_spent_Medium_value_payments,341.6636205,0,-0.3185,1.1134,1.3711,1.5265,0.8337 -0x24ead,CUS_0x9584,August,43,567-56-5957,Journalist,44705.1,3856.425,7,10,19,2,"Not Specified, and Student Loan",21.13218996,14.43535499,11.65,16,Standard,2259.635508,25.55048045,7 Years and 11 Months,Yes,53.02425174,333.6258327,Low_spent_Medium_value_payments,278.9924156,0,-0.8975,1.2437,-0.8507,2.107,0.9571 -0x24eb9,CUS_0xaa9d,August,37,535-11-7065,Manager,32631.54,2765.295,0,1,7,0,,0,2,7.63,3,Good,1013.79,28.0745438,25 Years and 4 Months,NM,66444,149.1049634,Low_spent_Medium_value_payments,407.4245366,0,0.9992,-1.3452,0.0498,-0.9608,1.0606 -0x24ec5,CUS_0x5494,August,52,238-73-8927,Accountant,22332.37,,8,4,13.06745738,1,Credit-Builder Loan,23.26247801,,4.59,2,_,1519.190245,26.29973607,24 Years and 3 Months,No,14.23196248,138.5449319,Low_spent_Small_value_payments,301.205901,0,-0.2614,-1.3452,-0.0364,0.9761,0.3456 -0x24ed1,CUS_0x93a0,August,44,128-55-3371,Entrepreneur,20227.38,1516.615,8,8,29.95700519,6,"Not Specified, Not Specified, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",41.82335798,21.97158191,2.79,8,Bad,1615.389232,30.4677879,14 Years and 6 Months,Yes,1396.347657,183.8598802,Low_spent_Small_value_payments,140.4035939,0,-0.3638,2.2815,0.9086,-1.0063,-1.4211 -0x24edd,CUS_0x8f34,August,33,390-76-6133,Teacher,32430.34,2917.528333,3,4,14,3,"Credit-Builder Loan, Not Specified, and Credit-Builder Loan",,12,19.42,5,Standard,589.18,38.36959581,18 Years and 6 Months,Yes,65.20849709,100.7087172,High_spent_Medium_value_payments,375.835619,0,-1.7066,0.2285,-2.2335,-0.0287,0.3886 -0x24ee9,CUS_0x3b2b,August,33,300-29-2872,Mechanic,22219.57,,7,5,8,3,"Not Specified, Student Loan, and Credit-Builder Loan",19.20104569,18,13.23,13,_,502.78,27.97275701,5 Years and 10 Months,NM,35.33648089,37.55275796,High_spent_Large_value_payments,335.8738445,0,0.6609,0.1714,1.8027,0.2379,0.6509 -0x24ef5,CUS_0x5b87,August,31,871-60-8862,Scientist,18572.01,1397.6675,5,7,15.06745738,6,"Payday Loan, Not Specified, Student Loan, Payday Loan, Student Loan, and Auto Loan",,17,23.91,10,_,1928.650954,24.01042883,18 Years and 0 Months,NM,73.57903944,,Low_spent_Small_value_payments,181.5543938,0,-1.3872,-0.5702,0.3674,0.5216,-0.7903 -0x24f01,CUS_0x86ea,August,51,026-34-4688,Accountant,59673.22,5200.768333,3,4,11.28836175,2,"Credit-Builder Loan, and Debt Consolidation Loan",4.186234039,7,6,3,Good,5.094863325,35.19882399,,NM,90.7254778,533.3949196,High_spent_Medium_value_payments,577.9288269,0,0.379,0.3199,0.3278,1.2928,-0.7332 -0x24f0d,CUS_0x1ab7,August,34,528-43-8765,Lawyer,58424.97,4893.7475,6,3,17,3,"Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",,24.34187652,10.52,1,_,58.76192626,27.60336287,15 Years and 9 Months,Yes,121.7528953,62.65467129,High_spent_Medium_value_payments,554.9671834,0,0.1678,0.4193,1.2522,-0.6887,1.3207 -0x24f19,CUS_0x7bf9,August,39,225-41-8046,Journalist,18309.76,,8,5,11,6,"Personal Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Payday Loan",,16,14.26,,Standard,1911.71084,31.96717262,14 Years and 9 Months,Yes,48.3398179,,High_spent_Large_value_payments,299.5988542,0,-0.0112,-0.121,1.4092,-1.1306,0.5398 -0x24f25,CUS_0x76d1,August,37,802-61-1294,Manager,37578.61,,0,5,5,4,"Home Equity Loan, Payday Loan, Mortgage Loan, and Payday Loan",14.51199358,,6.72,0,Good,855.61,32.15940934,31 Years and 6 Months,No,83.27366398,104.9216168,High_spent_Medium_value_payments,379.7598026,0,0.5792,1.1593,1.0447,1.6483,0.7286 -0x24f31,CUS_0x659f,August,43,632-73-9889,Architect,71980.26,5715.355,4,3,13,4,"Student Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",,22.70651797,1.6,4,Standard,993.0079823,27.18958013,17 Years and 5 Months,No,198.4913809,87.96181988,High_spent_Medium_value_payments,535.0822992,0,-0.0859,-0.464,0.5599,0.0831,-1.8163 -0x24f3d,CUS_0x1a06,August,34,#F%$D@*&8,Manager,24873.1,1848.758333,3,6,8,3,"Auto Loan, Mortgage Loan, and Not Specified",,17,6.65,6,Standard,30.31,32.41380939,5 Years and 9 Months,Yes,39.84069977,206.0474362,Low_spent_Small_value_payments,228.9876974,0,-0.5554,-0.3239,-0.3473,-0.5957,0.3683 -0x24f49,CUS_0x16ee,August,48,538-37-5854,_______,115476.12,9851.01,1,7,5,0,,6.725630852,9.221822405,9.58,0,_,186.3741715,36.59139936,31 Years and 8 Months,No,0,10000,!@9#%8,715.9654889,0,1.9212,0.9898,0.6747,-0.0405,1.627 -0x24f55,CUS_0x79d1,August,23,328-38-2329,_______,16668.96,,6,3,6,0,,19.30347142,12,10.36,193,Standard,1426.06,29.68183534,19 Years and 0 Months,Yes,0,46.8277996,High_spent_Medium_value_payments,326.5802004,0,3.3759,-0.1129,0.8598,0.0681,-0.1382 -0x24f61,CUS_0x271a,August,49,464-54-3890,Musician,21167.555,,2,7,9,3,"Personal Loan, Not Specified, and Credit-Builder Loan",0,1.168408007,5.38,2,Good,1423.126873,31.62559276,30 Years and 4 Months,No,40.33528201,22.81949057,High_spent_Large_value_payments,359.8415191,0,-0.0919,-0.4734,-1.601,-0.5675,0.7138 -0x24f6d,CUS_0x5055,August,53,741-23-2460,Writer,15767.215,1408.934583,5,3,20,0,,23.69902491,19,7.28,5,Standard,1012.39,33.62406335,26 Years and 3 Months,Yes,0,119.2710201,Low_spent_Small_value_payments,311.6224382,0,-1.7184,-0.3733,0.8337,0.0062,-0.6571 -0x24f79,CUS_0xb451,August,31,528-55-1074,Manager,63675.84,5296.32,10,9,24.88954781,8,"Payday Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",39.72645486,27.77972581,16.09,2001,Bad,4345.935707,33.10531479,7 Years and 6 Months,Yes,1565.678747,240.9608721,Low_spent_Small_value_payments,318.6622995,0,1.2653,1.7716,0.1722,0.1199,0.2365 -0x24f85,CUS_0x4563,August,52,#F%$D@*&8,Media_Manager,52799.82,4183.90801,5,4,1.288361749,0,,,,3.71,4,_,600.5498096,36.80122851,26 Years and 8 Months,No,469.0769901,610.4968961,Low_spent_Small_value_payments,585.6449293,0,0.3332,0.5676,0.2651,0.2535,-1.7184 -0x24f91,CUS_0x6acb,August,45,823-08-6138,Engineer,50733.18,4402.765,9,8,34,3,"Mortgage Loan, Personal Loan, and Not Specified",24.93162783,14.37345375,12.74,14,Standard,2391.736821,33.41604232,12 Years and 4 Months,Yes,74.86666604,135.0711886,Low_spent_Large_value_payments,500.3386454,0,-0.4743,-0.2897,0.0575,-0.6176,0.4934 -0x24f9d,CUS_0xb407,August,50,602-64-4725,Manager,59412.78,5073.065,4,7,14,1,Not Specified,,12.05007667,12.73,3,Standard,1044.021186,37.42035274,27 Years and 5 Months,Yes,37.55694289,373.285466,Low_spent_Small_value_payments,386.4640911,0,0.0939,0.1093,1.3266,-1.1294,0.4751 -0x24fa9,CUS_0xb1bf,August,37,607-43-5085,Musician,65347.32,5244.61,8,7,16,0,,27.64821697,19,17.8,4,Standard,930.85,31.96384514,17 Years and 8 Months,Yes,0,10000,High_spent_Medium_value_payments,716.3768002,0,-0.7829,-0.9887,0.7253,-0.1097,-0.764 -0x24fb5,CUS_0x554,August,43,320-64-2724,Engineer,72196.8,,7,5,18,6,"Mortgage Loan, Auto Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Home Equity Loan",7.498715468,7,11.83,9,Standard,797.53,30.63151535,16 Years and 9 Months,Yes,189.3677919,,High_spent_Medium_value_payments,452.4329689,0,1.442,0.5906,-1.5961,-0.3603,0.1464 -0x24fc1,CUS_0x78f,August,43,351-75-3508,Entrepreneur,12804.965,,3,3,16,2,"Payday Loan, and Personal Loan",10.5837857,11,7.24,7,_,400.6713285,34.22281562,13 Years and 4 Months,NM,11.20303526,45.78346939,!@9#%8,295.8305303,0,-2.8446,0.9505,0.8847,1.7621,-1.2156 -0x24fcd,CUS_0x87cb,August,34,#F%$D@*&8,_______,30620.69,,3,7,10,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",16.40142037,,10.46,3,Good,1587.097477,38.94374919,18 Years and 3 Months,No,67.05381892,,High_spent_Small_value_payments,370.0236658,0,-0.4036,-2.3335,-2.17,-0.3504,-0.8176 -0x24fd9,CUS_0x1ec2,August,21,258-93-2064,Scientist,34458.06,3142.505,9,10,30.06745738,5,"Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Payday Loan",,16,25.59,15,Bad,4628.200954,41.44177664,14 Years and 0 Months,Yes,119.6224578,,High_spent_Large_value_payments,359.1141294,0,-0.0529,-1.8728,-0.609,0.2705,0.0754 -0x24fe5,CUS_0x4271,August,26,751-20-4149,Scientist,10498.77,,9,6,29,6,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",34.20364659,25,27.56,10,Bad,3703.075318,29.3108009,2 Years and 5 Months,Yes,41.07837552,40.02498711,Low_spent_Small_value_payments,282.4442913,0,-1.1718,1.3327,-1.676,0.0443,0.574 -0x24ff1,CUS_0x7438,August,37,485-95-7675,Scientist,119094.64,9803.553333,3,6,15,3,"Not Specified, Personal Loan, and Not Specified",20.31717466,15,,8,_,1082.401846,35.48837077,24 Years and 8 Months,NM,259.6498568,115.3672422,High_spent_Large_value_payments,862.5899497,0,-0.5832,-0.4684,-1.6287,-0.9859,-0.3607 -0x24ffd,CUS_0x351f,August,41,497-63-7268,Musician,19700.29,,8,4,15,4,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",11.75633016,8,17.75,2,_,15.18,22.34676394,20 Years and 4 Months,Yes,59.95781113,10000,Low_spent_Medium_value_payments,254.6467084,0,0.2432,0.5951,-1.4108,0.8353,1.1427 -0x25009,CUS_0x75a4,August,22,653-40-4847,Musician,87520.66,7142.388333,0,5,0.288361749,4,"Not Specified, Personal Loan, Credit-Builder Loan, and Payday Loan",1.188326902,5,6.37,3,Good,1023.292418,38.06357059,24 Years and 6 Months,NM,149.5993433,600.3320635,High_spent_Large_value_payments,640.7392668,0,-1.4253,-0.0275,-0.0596,0.3335,-1.5166 -0x25015,CUS_0x957e,August,26,808-40-1110,Teacher,20620.64,,10,9,33.95700519,9,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Not Specified, Auto Loan, Payday Loan, Personal Loan, and Debt Consolidation Loan",38.87634923,23.02017497,24.16,10,Bad,5621.106361,28.64730001,6 Years and 10 Months,Yes,1450.267,146.2339022,Low_spent_Small_value_payments,148.7873956,0,0.4787,0.7186,0.8538,0.1497,-0.5975 -0x25021,CUS_0x556,August,25,095-52-8820,Doctor,19765.86,1613.155,10,9,34.88954781,7,"Credit-Builder Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, and Home Equity Loan",,28.46858111,23.47,11,_,5025.271127,22.68377441,3 Years and 0 Months,NM,1382.740909,106.4568497,Low_spent_Small_value_payments,267.7876597,0,1.5314,-0.4765,1.7334,1.0688,-1.6005 -0x2502d,CUS_0x42d2,August,18,115-72-5613,Lawyer,39011.12,3014.926667,8,7,28,6,"Home Equity Loan, Not Specified, Mortgage Loan, Mortgage Loan, Not Specified, and Mortgage Loan",22.60852353,,6.93,6,_,1941.555785,37.36493922,19 Years and 9 Months,Yes,135.1081858,44.60710969,High_spent_Large_value_payments,361.7773711,0,-0.4196,0.5716,-0.1254,1.0503,0.5176 -0x25039,CUS_0xa447,August,41,372-94-7422,Accountant,14471.61,1021.9675,8,6,25,7,"Auto Loan, Not Specified, Student Loan, Home Equity Loan, Payday Loan, Payday Loan, and Credit-Builder Loan",,27,28.64,7,Bad,3332.8,33.42227985,9 Years and 11 Months,Yes,54.02876927,19.75403793,High_spent_Large_value_payments,268.4139428,0,0.5193,-0.251,0.2848,1.037,-0.606 -0x25045,CUS_0x5371,August,25,126-15-9021,Entrepreneur,33741.62,2923.801667,6,6,12,5,"Personal Loan, Credit-Builder Loan, Not Specified, Student Loan, and Credit-Builder Loan",,19,17.09,5,Standard,1428.31,30.36033357,14 Years and 0 Months,NM,80.26934571,20.16604537,!@9#%8,431.9447756,0,0.5151,-1.1823,-1.3774,-0.9189,-2.5857 -0x25051,CUS_0x5522,August,45,635-99-7406,Scientist,9058.045,643.8370833,6,9,25.06745738,5,"Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Not Specified",25.73137117,16,4.03,469,Bad,1562.150954,26.1560285,20 Years and 0 Months,Yes,28.62952819,,Low_spent_Small_value_payments,225.2064726,0,-2.2115,-0.778,-0.1827,-0.5988,-0.513 -0x2505d,CUS_0xa015,August,18,132-61-3959,Architect,9122.945,,7,5,30.06745738,8,"Payday Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Payday Loan, Payday Loan, and Auto Loan",32.69032217,20,28.55,16,Bad,4390.870954,29.74529784,1 Years and 9 Months,NM,58.77986614,33.93222257,!@9#%8,256.3074216,0,0.711,-0.348,-0.1252,-0.1949,0.1334 -0x25069,CUS_0xac41,August,29,172-99-6722,Lawyer,62351.4,5454.95,9,6,29,3,"Mortgage Loan, Debt Consolidation Loan, and Payday Loan",,15.56460343,7.83,13,Standard,1460.294506,31.64138578,7 Years and 9 Months,NM,147.3925727,487.9770482,Low_spent_Small_value_payments,200.125379,0,1.1406,-0.6336,1.1508,0.932,-0.3728 -0x25075,CUS_0x9154,August,35,324-22-6070,Scientist,67342.76,5327.896667,6,10,23,5,"Payday Loan, Payday Loan, Debt Consolidation Loan, Student Loan, and Not Specified",,22.43192691,9.24,14,Bad,4625.544761,36.68675917,2 Years and 8 Months,Yes,236.6128909,164.5230542,High_spent_Medium_value_payments,381.6537215,0,0.3788,-0.8282,0.0036,-0.0457,-1.4471 -0x25081,CUS_0x6c23,August,28,684-18-9943,Engineer,51324.82,4350.068333,7,3,11,1,Student Loan,17.83598516,12,7.49,12,_,138.16,29.00009382,18 Years and 2 Months,Yes,28.73566177,94.9119241,High_spent_Large_value_payments,551.3592475,0,-2.1722,-0.3038,0.6127,0.2752,1.4018 -0x2508d,CUS_0x9f9,August,21,105-99-5206,Media_Manager,74913.76,,2,4,5,3,"Student Loan, Student Loan, and Not Specified",2.68436166,4,3.57,4,_,480.2462338,38.36955703,17 Years and 2 Months,NM,170.9343973,63.18174916,High_spent_Large_value_payments,656.0852686,0,-1.1007,0.3226,-0.2917,-2.3803,-0.521 -0x25099,CUS_0x89e,August,31,#F%$D@*&8,Architect,36698.53,,5,1055,8,0,,3.667682275,6,10.45,2,Good,1121.74,35.48163679,21 Years and 6 Months,No,0,297.1148092,Low_spent_Small_value_payments,295.7062741,0,-1.2699,0.3348,-0.0826,1.2808,1.9687 -0x250a5,CUS_0x5911,August,40,529-55-1041,_______,7641.71,546.8091667,10,6,4446,5,"Payday Loan, Home Equity Loan, Mortgage Loan, Student Loan, and Personal Loan",,18.55075022,19.73,12,Bad,4865.875441,39.02867501,10 Years and 3 Months,Yes,29.29401703,35.24161239,Low_spent_Small_value_payments,280.1452872,0,-1.1911,-1.535,-0.5077,0.3133,-1.107 -0x250b1,CUS_0x5e00,August,47,799-20-2552,Entrepreneur,61369.36,,0,6,11,4,"Auto Loan, Payday Loan, Auto Loan, and Not Specified",,6.764854272,2.68,1,Good,1214.519604,29.64186283,23 Years and 3 Months,NM,158.6183574,238.7680127,Low_spent_Small_value_payments,412.4249633,0,-0.703,0.0613,0.4218,-0.0357,-0.3875 -0x250bd,CUS_0xebc,August,33,022-23-5391,Media_Manager,14310.25,,10,11,34.88954781,9,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, and Student Loan",42.20152906,31.30003709,1.54,6,Bad,2430.819921,27.29121996,12 Years and 6 Months,NM,1415.897525,140.9019398,Low_spent_Small_value_payments,145.3225377,0,-0.3312,0.2079,0.2406,-0.0021,-1.3246 -0x250c9,CUS_0x303d,August,44,592-26-4117,_______,17624.38,1483.698333,8,9,27.95700519,7,"Credit-Builder Loan, Not Specified, Not Specified, Auto Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",39.77779628,24.03186852,6.92,10,Bad,1897.603186,38.46471898,10 Years and 8 Months,Yes,1378.974482,,High_spent_Medium_value_payments,252.1136884,0,-0.7512,-0.5195,-1.2223,0.373,1.0423 -0x250d5,CUS_0x25ea,August,29,730-19-4290,Manager,20933.46,,7,5,28.06745738,3,"Auto Loan, Personal Loan, and Home Equity Loan",,23.37304428,14.05,9,Standard,2132.762639,28.07153126,8 Years and 11 Months,Yes,52.2718447,46.20044126,High_spent_Large_value_payments,300.5529261,0,-0.1174,0.2315,-0.3668,-0.0413,0.7437 -0x250e1,CUS_0xa36d,August,38,397-71-3346,Scientist,10127.625,872.96875,10,8,32.88954781,8,"Credit-Builder Loan, Student Loan, Auto Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Payday Loan, and Personal Loan",27.76087147,18.8972894,10.25,,Bad,5058.920501,21.99083573,9 Years and 3 Months,Yes,1362.587149,,Low_spent_Small_value_payments,234.3307297,0,0.2309,0.0617,-0.6893,-0.1823,0.9932 -0x250ed,CUS_0x3cb1,August,19,639-62-8323,Teacher,14134.26,,6,7,31.06745738,2,"Student Loan, and Payday Loan",31.38387656,,18.52,16,_,1512.530954,28.40451528,8 Years and 9 Months,Yes,17.60140043,93.27439751,Low_spent_Small_value_payments,266.6894141,0,0.7621,0.6462,1.6377,-0.6525,-0.8394 -0x250f9,CUS_0x15cc,August,25,009-20-6501,Manager,9669.05,925.7541667,8,6,31,6,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Auto Loan, and Not Specified",,26.94733593,-4.75,15,Bad,1763.660081,32.38111701,9 Years and 10 Months,Yes,44.19159101,,Low_spent_Small_value_payments,289.1451007,0,0.6846,0.7975,-0.3175,0.3404,0.3031 -0x25105,CUS_0xa0f3,August,39,002-84-8699,Teacher,25573.07,1948.089167,8,6,11,4,"Auto Loan, Home Equity Loan, Auto Loan, and Payday Loan",15.05746573,14,6.87,7,Good,437.1597844,22.93721866,17 Years and 11 Months,No,52.24177408,11230.83473,Low_spent_Small_value_payments,296.6981089,0,0.629,-0.6037,-0.1808,-1.3469,1.3779 -0x25111,CUS_0x560e,August,46,876-19-4611,Scientist,121881.24,,0,3,2,4,"Personal Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",1.079747493,5,1.51,3,Good,771.77,39.19485694,16 Years and 10 Months,No,388.600435,251.2195446,High_spent_Large_value_payments,612.8570204,0,1.1975,0.8227,-0.2626,1.9192,1.1923 -0x2511d,CUS_0xa2de,August,36,720-53-1819,Engineer,137672.12,,6,7,6.288361749,2,"Student Loan, and Student Loan",7.040176334,8,18.2,8,_,38.58274223,29.1304756,31 Years and 3 Months,Yes,169.5553145,,Low_spent_Medium_value_payments,147.4870916,0,0.3221,0.6047,-0.2886,1.4106,-1.3395 -0x25129,CUS_0xbf53,August,39,905-14-5932,Teacher,42474.2,,2,3,8,4,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",18.77631186,10.3104319,10.57,5,Good,643.6640764,25.76893486,17 Years and 8 Months,NM,82.06622873,93.17283661,High_spent_Medium_value_payments,440.6126013,0,1.0721,-0.5432,-0.9941,0.7022,0.8108 -0x25135,CUS_0x6671,August,21,097-58-4488,Manager,9898.815,,8,6,17.06745738,3,"Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",38.84286576,18.62134199,13.1,7,Standard,2839.323761,30.77132764,,Yes,21.36256913,56.41176735,Low_spent_Small_value_payments,263.6955006,0,1.3342,1.2299,-1.4434,0.5057,0.0671 -0x25141,CUS_0xb44c,August,31,682-85-9184,Media_Manager,16241.52,,10,9,23.88954781,6,"Personal Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",29.0117132,22,15.17,8,Bad,2410.41,36.27199227,6 Years and 8 Months,NM,1395.374365,92.6864606,Low_spent_Small_value_payments,262.4550934,0,-1.1686,-2.605,-1.116,-0.3801,0.1819 -0x2514d,CUS_0x9f63,August,51,350-61-4067,Lawyer,21009.425,,0,4,8,4,"Auto Loan, Not Specified, Payday Loan, and Not Specified",0,2.32199853,,2,Good,919.8891456,28.18548233,26 Years and 2 Months,No,35.3103465,28.83703546,High_spent_Large_value_payments,329.0311597,0,-0.6634,0.0143,-0.1994,1.9342,2.905 -0x25159,CUS_0x40c8,August,80,264-82-1553,Media_Manager,91702.14,7455.845,5,7,10,3,"Student Loan, Not Specified, and Payday Loan",16.74255755,,3.87,2,Good,233.12,36.61260516,20 Years and 9 Months,No,64978,193.0794725,High_spent_Large_value_payments,651.777903,0,-1.4927,0.7678,-0.019,-0.8964,-1.5613 -0x25165,CUS_0x49c1,August,26,943-32-4567,_______,39890.28,3561.19,3,5,15,6,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",,10,10.34,10,Standard,264.32,22.21170133,5 Years and 9 Months,Yes,149.1643843,,Low_spent_Small_value_payments,208.5482147,0,-0.0872,-2.811,0.3741,-1.8531,0.0907 -0x25171,CUS_0x387c,August,48,567-83-0551,Accountant,121187.49,10010.9575,1,4,0.288361749,2,"Not Specified, Credit-Builder Loan, and Student Loan",,3.59991266,5.5,7,Good,1175.801147,28.63362681,32 Years and 11 Months,No,165.6242021,580.2978642,High_spent_Medium_value_payments,925.1111448,0,0.5126,-0.0314,-0.4444,0.5513,0.2379 -0x2517d,CUS_0x56ce,August,49,337-32-2714,Writer,110711.22,,4,5,11,0,,0.238686132,2,11.09,4,Good,251.06,40.99077502,17 Years and 2 Months,No,0,61.17373915,High_spent_Large_value_payments,1118.619761,0,-2.5187,-0.3318,0.7085,0.9523,-1.4206 -0x25189,CUS_0x3f99,August,28,155-22-9607,Media_Manager,44423.16,,5,4,20,3,"Auto Loan, Debt Consolidation Loan, and Payday Loan",8.913633029,8,10.06,4,_,1149.63,33.77355811,27 Years and 9 Months,No,57.48554837,164.6282781,Low_spent_Large_value_payments,430.4791736,0,-1.7055,-1.4715,1.1999,1.6213,-0.449 -0x25195,CUS_0xa3df,August,47,208-84-0945,Scientist,33669.54,,5,6,3,2,"Personal Loan, and Auto Loan",2.053138284,4,8.14,8,Good,741.68,37.30766698,27 Years and 8 Months,No,284.7177242,344.3825705,Low_spent_Small_value_payments,148.7599525,0,-0.9458,-0.644,-0.4925,-0.897,-0.1038 -0x251a1,CUS_0x7e3f,August,49,615-29-8753,Engineer,80676.84,6929.07,4,619,12,0,,3.352757941,4,1.2,4,Good,1035.77,27.68314603,18 Years and 3 Months,No,0,113.1515582,High_spent_Large_value_payments,819.7554418,0,-0.334,0.0686,-0.2768,-1.4482,0.0263 -0x251ad,CUS_0x4021,August,35,194-65-3904,Architect,16587.02,,4,6,7,1,Payday Loan,1.84286919,4,6.21,2,Good,581.12,29.01876577,20 Years and 3 Months,No,107.1195481,39.46553267,High_spent_Large_value_payments,354.5637895,0,-1.3652,1.2535,1.2305,1.0915,1.627 -0x251b9,CUS_0xbb37,August,33,094-94-5212,Developer,74557.58,,2,5,0.288361749,0,,13.36113817,13,4.32,2,Good,183.5669397,25.41848586,30 Years and 10 Months,No,0,,High_spent_Large_value_payments,784.3631704,0,0.8838,1.2264,0.6358,0.655,0.4556 -0x251c5,CUS_0x43a4,August,32,601-08-1884,Doctor,14530.755,,8,7,7,4,"Auto Loan, Personal Loan, Auto Loan, and Mortgage Loan",,8,12.69,6,Standard,1279.24,35.73809647,29 Years and 4 Months,Yes,28.4109398,11.5030009,!@9#%8,318.5756843,0,-0.8984,-0.0398,0.118,0.4141,-0.5554 -0x251d1,CUS_0xb2c8,August,37,359-61-8309,Accountant,28393.64,2076.136667,6,6,31,7,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, and Personal Loan",45.18789187,26.34117492,8.48,10,Bad,2256.556093,28.82290246,11 Years and 9 Months,NM,145.4754926,28.75332616,High_spent_Large_value_payments,273.3848479,0,-0.1816,-0.5231,0.7217,-0.5901,1.6266 -0x251dd,CUS_0x332b,August,18,221-79-4519,Manager,35849.98,2823.498333,7,6,5,2,"Student Loan, and Student Loan",9.678897313,10,14.49,4,Standard,1264.32,32.83537514,8 Years and 10 Months,Yes,32.64007442,204.4544722,!@9#%8,315.2552868,0,-0.2829,0.0251,-2.019,-0.4784,-0.6191 -0x251e9,CUS_0x8718,August,39,426-07-3179,Journalist,34631.43,,8,7,15,5,"Mortgage Loan, Auto Loan, Mortgage Loan, Student Loan, and Mortgage Loan",18.47144428,14,6.16,4,Standard,568.94,33.06594233,13 Years and 3 Months,Yes,139.8973239,46.14159856,High_spent_Medium_value_payments,348.5563276,0,-0.7804,-0.1402,-0.9209,0.763,0.2641 -0x251f5,CUS_0x5587,August,36,467-31-3749,Lawyer,38681.04,,7,7,16.06745738,7,"Personal Loan, Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,21.28544321,7.06,7,Bad,3950.154705,31.25480241,,Yes,188.3201709,388.9048429,Low_spent_Small_value_payments,16.9966982,0,1.9514,0.4052,1.018,-0.8731,-0.4412 -0x25201,CUS_0x1807,August,55,967-06-5986,Manager,26515.99,2083.665833,4,6,13,1,Mortgage Loan,25.56294904,20,1.11,6,Standard,1150.9,28.2443075,18 Years and 9 Months,No,11.4838244,33.8190327,!@9#%8,403.0637262,0,-0.1775,0.3809,-0.6787,0.668,0.6823 -0x2520d,CUS_0x5cf2,August,33,949-81-4492,Architect,60446.62,5065.218333,6,3,20,3,"Payday Loan, Student Loan, and Home Equity Loan",23.15039894,15,8.65,6,Standard,136.13,36.49598707,13 Years and 10 Months,Yes,78.57117361,68.73204501,High_spent_Large_value_payments,599.2186147,0,-0.2507,-0.4186,0.5356,-0.9366,0.9483 -0x25219,CUS_0x3ed3,August,35,291-67-0222,Mechanic,7749555,5774.633333,5,7,9,1,Personal Loan,26.54797881,20,7.28,0,Standard,1004.53,26.99032513,22 Years and 5 Months,Yes,51.878854,81.26785505,!@9#%8,684.3166243,0,1.2612,-0.4321,-2.5954,1.0235,0.9816 -0x25225,CUS_0x2f69,August,42,299-25-6374,Media_Manager,16675.28,,6,5,16,3,"Home Equity Loan, Personal Loan, and Personal Loan",,9,12.71,13,Standard,1127.98,31.51764423,26 Years and 4 Months,Yes,6105,,Low_spent_Medium_value_payments,349.594098,0,1.1033,-1.5241,-0.1314,0.3156,-3.0146 -0x25231,CUS_0x95d0,August,29,412-45-1812,Manager,105449.34,8574.450323,2,4,2.288361749,2,"Payday Loan, Not Specified, and Mortgage Loan",0,3,9.04,8,Good,392.5500969,28.17132567,27 Years and 4 Months,No,595.3609383,684.4064052,High_spent_Large_value_payments,751.8219835,0,-0.061,-0.4144,-0.4377,0.4121,-0.1956 -0x2523d,CUS_0x215d,August,43,907-61-7425,Journalist,14244.33,1099.0275,6,7,29,6,"Student Loan, Mortgage Loan, Student Loan, Personal Loan, Not Specified, and Mortgage Loan",,18,0.91,7,Bad,2216.82,23.87402587,17 Years and 9 Months,Yes,65.01423257,,Low_spent_Small_value_payments,201.1703364,0,-1.3968,-0.5861,-1.8237,-0.1527,-0.7873 -0x25249,CUS_0x52f1,August,34,090-45-4457,Entrepreneur,14925.81,1101.8175,8,6,5,5,"Debt Consolidation Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",,11,7.23,8,Standard,781.33,27.71019546,10 Years and 6 Months,Yes,61.78428162,,Low_spent_Small_value_payments,204.1652176,0,-1.34,0.3534,-0.0798,0.5148,-0.9119 -0x25255,CUS_0x2fda,August,22,336-19-9190,Developer,10281.435,,6,8,20.88954781,6,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",10.52084417,6.877775889,21.64,12,_,1559.053653,35.06976381,10 Years and 11 Months,Yes,1354.375235,28.55836456,High_spent_Small_value_payments,296.6149445,0,-0.0762,0.5827,0.5123,-1.0167,1.035 -0x25261,CUS_0xa125,August,18,506-45-5493,Entrepreneur,10179.645,,8,7,21,2,"Credit-Builder Loan, and Mortgage Loan",,22.39518676,13.47,9,Standard,1959.169029,31.53920421,7 Years and 9 Months,Yes,11.06016285,45.77188452,Low_spent_Small_value_payments,288.7983276,0,0.6091,-0.7951,-0.0694,-0.0624,-0.2755 -0x2526d,CUS_0x9708,August,49,915-51-0524,Doctor,69445.68,5937.14,7,7,1,0,,,20,1.47,4,Good,774.0456237,37.88123553,,No,0,,Low_spent_Small_value_payments,93.83177331,0,0.22,-1.6515,-0.8947,1.4635,-1.607 -0x25279,CUS_0xac0d,August,46,535-45-2296,Scientist,15873.84,1114.82,7,6,34,6,"Payday Loan, Not Specified, Debt Consolidation Loan, Not Specified, Student Loan, and Auto Loan",34.63703887,24.16891648,18.38,9,_,5125.960925,26.17988257,11 Years and 0 Months,Yes,65.71693368,54.54983211,Low_spent_Medium_value_payments,271.2152342,0,-0.4361,-1.0251,0.5687,1.1643,-0.2394 -0x25285,CUS_0x82be,August,31,590-92-4796,Manager,41871.89,3764.324167,2,4,4,4,"Auto Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",10.3964843,12.07360077,14.51,5,Good,1400.99053,29.68344023,29 Years and 2 Months,No,73.09779735,132.7355172,Low_spent_Small_value_payments,460.5991021,0,0.5468,0.1134,0.2722,-1.0137,-0.1634 -0x25291,CUS_0x6a91,August,39,978-63-5965,Doctor,38964.65,3250.054167,1,6,11,0,,5.178197267,6,3.02,1,Good,860.91,27.13100607,18 Years and 6 Months,No,0,51.02782277,High_spent_Large_value_payments,513.9775939,0,0.8382,0.9213,-0.5809,0.2037,-0.0762 -0x2529d,CUS_0xac7c,August,30,878-64-2983,Accountant,117588.2,9691.016667,8,5,15,4,"Payday Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",20.43927204,16.01092557,3.2,4,Standard,355.8394893,33.64604345,28 Years and 8 Months,No,216.4682856,145.7602763,High_spent_Large_value_payments,846.8731048,0,-2.2835,-1.5076,0.4571,-0.4565,1.5097 -0x252a9,CUS_0xc39e,August,18,650-57-1884,Doctor,103351.98,,5,3,10,4,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",,20,19.82,5,Standard,1442.03,37.10432299,10 Years and 8 Months,Yes,293.7265334,409.8252439,Low_spent_Small_value_payments,427.9147227,0,-0.0499,-0.6527,-1.4346,-0.3403,-0.0248 -0x252b5,CUS_0x5488,August,18,762-79-7112,Scientist,43419.77,3321.314167,4,6,5.288361749,2,"Student Loan, and Personal Loan",14.64305879,,3.3,3,Good,158.54,38.76197019,31 Years and 9 Months,No,53.41563972,687.6492567,!@9#%8,291.0039813,0,-0.741,0.1406,-1.7965,-0.6822,-1.1054 -0x252c1,CUS_0x2653,August,35,508-35-4856,_______,19517.56,,8,10,23.88954781,6,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Payday Loan",27.69566529,18.13429823,14.19,6,_,3057.741527,25.35544865,15 Years and 11 Months,Yes,1394.388428,41.44913435,High_spent_Small_value_payments,283.3786898,0,-1.1595,-0.8001,-0.081,-0.3497,0.4516 -0x252cd,CUS_0x12fb,August,35,006-29-8039,Doctor,26342.91,1949.2425,6,7,7,1,Credit-Builder Loan,18.37524348,14,17.6,3,Standard,397.9,33.21173803,22 Years and 0 Months,Yes,57567,48.05730642,High_spent_Large_value_payments,365.283733,0,0.4569,-0.6075,1.2577,0.9278,-1.332 -0x252d9,CUS_0xaf39,August,41,450-82-3979,Accountant,19879.05,,4,4,12,0,,14.98163556,12,11.03,7,Standard,876.7395211,38.0036509,19 Years and 2 Months,No,0,,Low_spent_Small_value_payments,249.6810177,0,0.0213,-0.7638,0.175,0.7444,-2.0628 -0x252e5,CUS_0x9e05,August,28,#F%$D@*&8,Writer,18869.76,1697.48,10,7,16,9,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",90,2705,24.11,9,Bad,4391.48,33.92387279,,Yes,127.6904925,20.0605068,High_spent_Medium_value_payments,271.9970007,0,1.5586,0.3547,-0.4845,-0.3448,1.0177 -0x252f1,CUS_0xa7e9,August,51,200-96-3819,_______,19081.51,,8,7,9,1478,,19.38194583,17,2.67,0,Standard,1041.07,34.08530784,31 Years and 10 Months,Yes,0,,Low_spent_Large_value_payments,327.7302723,0,-1.9362,0.2152,-1.2043,-1.1205,1.3565 -0x252fd,CUS_0x3325,August,22,272-06-8424,Accountant,173303.68,14681.97333,1,2,12,3,"Student Loan, Not Specified, and Debt Consolidation Loan",15.81622434,13,9.8,9,Good,1051.822612,41.61500749,20 Years and 2 Months,No,288.8732905,820.7422126,Low_spent_Large_value_payments,713.3122607,0,-1.2933,0.6027,-1.9719,-0.4187,1.5193 -0x25309,CUS_0x1f39,August,21,668-38-2560,Teacher,18399.84,,6,9,17.95700519,6,"Payday Loan, Not Specified, Not Specified, Student Loan, Mortgage Loan, and Student Loan",40.38859084,19.96705608,24.23,11,Bad,5556.51258,25.15360238,9 Years and 2 Months,NM,1394.448517,,Low_spent_Small_value_payments,148.6563215,0,0.0293,0.1992,-0.9938,1.238,1.388 -0x25315,CUS_0x61d3,August,26,#F%$D@*&8,Engineer,26178.22,2211.518333,5,5,7,7,"Auto Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",22.71986181,15.55546457,8.36,4,Standard,922.8180451,40.62714255,18 Years and 9 Months,Yes,95.03722925,197.9825411,Low_spent_Small_value_payments,218.132063,0,0.7538,0.3443,2.6106,-0.5182,-0.667 -0x25321,CUS_0x73bb,August,21,594-65-2540,Accountant,70074,,3,3,19,6,"Personal Loan, Not Specified, Payday Loan, Payday Loan, Student Loan, and Student Loan",16.73128239,,8.9,7,Standard,494.25,34.48533218,6 Years and 8 Months,NM,258.6855772,353.8417193,High_spent_Small_value_payments,258.0227035,0,-1.9374,0.672,1.6488,0.9542,-0.8577 -0x2532d,CUS_0x9759,August,23,123-18-3750,Scientist,20389.3,1876.108333,7,4,11,4,"Mortgage Loan, Credit-Builder Loan, Not Specified, and Not Specified",9.98317545,9,10.45,0,Good,1040.341544,40.39339019,26 Years and 9 Months,No,48.44363927,37.91386133,High_spent_Large_value_payments,345.0664518,0,0.2693,-0.1806,0.6826,-1.2252,-0.2183 -0x25339,CUS_0xab4a,August,22,808-32-5129,Engineer,78570.28,6326.523333,8,9,16,9,"Mortgage Loan, Auto Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",48.19194854,26.41895673,7.69,8,Bad,2949.99516,24.31785047,17 Years and 2 Months,Yes,378.2126617,280.9057343,High_spent_Small_value_payments,233.5339373,0,0.8426,1.119,0.2851,-0.1714,-0.8842 -0x25345,CUS_0x1fbd,August,41,905-87-8021,Writer,76881.84,6529.82,3,7,6,1,Not Specified,3.06968878,7,11.03,9,Good,257.87,41.7128074,27 Years and 10 Months,No,61.44003646,73.75544697,High_spent_Large_value_payments,757.7865166,0,-1.5074,-0.2412,0.6321,0.8904,-0.93 -0x25351,CUS_0xc436,August,18,512-83-3982,Accountant,31767.33,,5,3,19,0,,26.16087493,21,13.84,10,Standard,969.19,29.02474967,33 Years and 0 Months,Yes,0,202.1967081,Low_spent_Large_value_payments,338.7310419,0,-0.3096,1.4556,1.4589,0.1564,0.071 -0x2535d,CUS_0xc04,August,36,707-19-6850,Writer,17222.53,1697.210833,8,4,18,83,,22.38167843,19,12.38,5,Standard,1163.47,26.90294834,28 Years and 11 Months,Yes,24276,65.70673256,High_spent_Small_value_payments,364.0143508,0,0.3061,-1.0928,0.2576,0.2465,1.3432 -0x25369,CUS_0x5898,August,27,172-32-7436,Engineer,99469.74,,7,5,13,1,Mortgage Loan,,11,12.67,4,_,30.1,41.53766182,26 Years and 4 Months,Yes,60.01434232,119.7303215,High_spent_Large_value_payments,867.5698361,0,-0.4816,-1.0464,-2.4257,0.434,0.8444 -0x25375,CUS_0x379f,August,52,#F%$D@*&8,Accountant,39161.2,,2,4,5,2,"Home Equity Loan, and Payday Loan",,4.563527668,1.56,5,Good,1529.547283,28.85280378,21 Years and 4 Months,No,42.11282356,186.1587428,Low_spent_Large_value_payments,350.571767,0,1.2104,-1.2059,-0.3035,0.5079,-0.2343 -0x25381,CUS_0x4a6a,August,46,582-70-5609,Media_Manager,25462.29,,8,6,17,7,"Not Specified, Not Specified, Student Loan, Personal Loan, Debt Consolidation Loan, Not Specified, and Student Loan",21.04991575,,8.78,7,Standard,1189.3,30.54950557,6 Years and 5 Months,Yes,95.32880068,233.5730841,Low_spent_Small_value_payments,190.6838652,0,1.771,1.4955,1.3338,-0.5252,0.5238 -0x2538d,CUS_0xa1fc,August,28,547-99-9537,Entrepreneur,37225.38,,9,6,29.06745738,3,"Mortgage Loan, Personal Loan, and Debt Consolidation Loan",,,12.46,16,Bad,2593.525839,41.4511009,16 Years and 8 Months,Yes,74.99321279,82.22667355,High_spent_Medium_value_payments,351.0713257,0,0.3339,0.2711,0.0178,1.1966,-0.6111 -0x25399,CUS_0x6daf,August,35,603-43-0891,Journalist,130076.8,10613.73333,4,3,10,3,"Auto Loan, Auto Loan, and Auto Loan",20.99932246,15,10.43,0,Standard,6.49,37.05243548,29 Years and 2 Months,No,302.0151709,,Low_spent_Medium_value_payments,100.6421617,0,-0.4272,0.5331,0.8784,0.3967,1.1847 -0x253a5,CUS_0x8d69,August,39,727-11-2348,Manager,43494.82,,6,7,8,1,Auto Loan,,11,14.26,8,Standard,383.25,40.52849945,26 Years and 2 Months,NM,22.19044367,69.01931862,High_spent_Large_value_payments,520.647071,0,-0.2377,2.3127,0.0048,-1.6439,-0.3055 -0x253b1,CUS_0x745b,August,45,516-38-0624,Writer,43534.9,3758.908333,3,6,14.28836175,4,"Payday Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",21.06280498,18,16.51,7,Standard,314.58,34.28843785,18 Years and 11 Months,Yes,100.4080447,483.8220435,High_spent_Large_value_payments,451.5982061,0,0.7501,-0.6881,-1.8744,0.6988,-0.3342 -0x253bd,CUS_0x46d7,August,25,451-66-4095,Developer,12500.36,,6,4,18,1,Not Specified,21.07055651,16,12.34,4,Standard,1406.78,29.67620462,29 Years and 2 Months,Yes,8.521817034,13.32630741,!@9#%8,297.0215422,0,0.8265,1.0886,-0.4813,1.4096,0.5852 -0x253c9,CUS_0x3aab,August,44,347-65-8366,Accountant,7755.295,,6,5,24,4,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Student Loan",25.7003246,11,16.35,15,Standard,2165.25,27.43377657,6 Years and 5 Months,Yes,21.77827754,37.2695899,Low_spent_Small_value_payments,289.9795909,0,0.867,0.8808,0.7581,1.511,0.1041 -0x253d5,CUS_0x482d,August,24,160-77-5290,Architect,21488.17,1681.680833,4,4,7,3,"Home Equity Loan, Credit-Builder Loan, and Student Loan",6.943922652,9,2.86,1,_,553.06,23.41997736,18 Years and 3 Months,No,42.4315122,29.3882304,High_spent_Medium_value_payments,346.3483407,0,-0.2306,-0.634,-1.9997,1.7234,0.4904 -0x253e1,CUS_0x8a0d,August,33,076-41-9633,Architect,44058.44,,1,4,12,3,"Home Equity Loan, Home Equity Loan, and Payday Loan",0,1,7.16,4,Good,837.88,38.52848279,33 Years and 5 Months,No,84.46982019,148.2348262,Low_spent_Small_value_payments,411.4490203,0,1.0402,-1.0478,-0.9451,-1.5043,-0.9523 -0x253ed,CUS_0xa1c5,August,21,117-69-4832,Media_Manager,22049.235,1764.43625,4,3,12,2,"Credit-Builder Loan, and Student Loan",0,1,4.75,5,Good,354.9586289,34.24423978,30 Years and 0 Months,No,27.50533677,160.3586258,Low_spent_Medium_value_payments,291.65882,0,0.0134,1.8275,0.3228,-0.8585,0.6378 -0x253f9,CUS_0x4ff8,August,19,#F%$D@*&8,Lawyer,15745.02,,5,6,17,100,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Auto Loan",16.1853937,12.05381162,19.33,8,_,899.2908269,36.8265054,19 Years and 4 Months,Yes,34.16648522,28.10831878,Low_spent_Large_value_payments,312.533696,0,1.715,-0.7218,0.5013,0.6782,1.6976 -0x25405,CUS_0x5bd8,August,25,517-12-3385,_______,24436.53,1881.3775,8,6,1,1,Mortgage Loan,23.04138491,17,4.77,1,Standard,495.7952701,24.71860381,31 Years and 8 Months,No,10.98401702,11413.9722,High_spent_Large_value_payments,385.4730697,0,0.9431,0.1771,1.2553,-0.3491,-0.0437 -0x25411,CUS_0x50f7,August,80,931-83-3982,Developer,74008.84,6229.403333,9,837,32,5,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",,30.29231902,1.62,7,Bad,1696.927617,35.57862299,15 Years and 5 Months,Yes,170.4932849,489.5073247,Low_spent_Medium_value_payments,242.9397237,0,-1.3803,-1.1843,0.9589,1.332,0.6393 -0x2541d,CUS_0x3e34,August,20,221-59-5804,Engineer,139658.08,,5,3,18,4,"Payday Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",23.89195731,15.78771581,19.24,13,Standard,650.520957,30.76872157,5 Years and 8 Months,Yes,233.4347254,113.9964485,High_spent_Large_value_payments,1084.08616,0,0.4185,-2.0345,-1.1198,0.3183,-1.0273 -0x25429,CUS_0xa3f4,August,22,418-41-4964,Engineer,32776.72,,10,9,33.95700519,9,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Not Specified, Personal Loan, Not Specified, Student Loan, and Home Equity Loan",37.9162478,21,15.91,7,Bad,3493.930954,33.44136552,1 Years and 3 Months,Yes,1501.010059,41.74014833,High_spent_Medium_value_payments,236.2387571,0,1.7527,-1.8296,0.4163,-0.6674,1.7555 -0x25435,CUS_0x1c26,August,25,955-54-1229,Entrepreneur,60668.72,,3,7,2,1,Student Loan,5.626033702,5.760828663,0.6,6,Good,1055.532097,30.22386744,29 Years and 8 Months,No,47.49675641,168.6960198,Low_spent_Medium_value_payments,594.8798904,0,-1.366,-0.1499,-0.4417,-1.3892,-1.31 -0x25441,CUS_0x215f,August,56,#F%$D@*&8,Architect,29764.37,,7,7,12,2,"Mortgage Loan, and Payday Loan",90,1820,11.35,0,Standard,1154.86,31.88659632,28 Years and 5 Months,Yes,33.14699559,247.8975826,Low_spent_Small_value_payments,258.9918385,0,-0.4965,-0.5053,1.9692,0.6827,1.7616 -0x2544d,CUS_0x2e5e,August,30,267-96-8241,Doctor,16045.125,1361.09375,1,6,10,4,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Payday Loan",,2,5.79,1,Good,1013.24,35.25699472,21 Years and 0 Months,No,30.29332251,,Low_spent_Small_value_payments,220.9128172,0,1.277,-1.6162,-0.0549,0.9963,0.1447 -0x25459,CUS_0x4159,August,42,143-85-9083,Manager,16540.38,1577.365,10,5,29.06745738,7,"Mortgage Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Auto Loan",,,6.28,9,Bad,2880.53169,28.3545227,10 Years and 10 Months,NM,94.46358891,10000,Low_spent_Small_value_payments,154.7155975,0,-0.1785,0.6525,0.8746,-1.8337,0.7685 -0x25465,CUS_0x69be,August,44,490-71-8764,Lawyer,80807.37,6796.9475,3,4,6,3,"Personal Loan, Personal Loan, and Personal Loan",17.93431636,13,3.83,6,_,877.9768898,27.92751996,32 Years and 9 Months,No,161.0343885,368.0459329,Low_spent_Medium_value_payments,469.4164204,0,-0.4541,-0.5427,-2.1901,-1.8848,0.5254 -0x25471,CUS_0x20db,August,43,997-54-5719,Accountant,17137.71,,8,7,10,2,"Credit-Builder Loan, and Mortgage Loan",14.99118296,13,12.91,6,_,1486.83,27.96750288,19 Years and 10 Months,No,18.57410734,98.62079076,Low_spent_Medium_value_payments,317.2193519,0,-0.4046,1.4313,-1.9148,0.9238,0.9313 -0x2547d,CUS_0x636b,August,24,353-92-8877,Architect,24723.63,,5,5,18,1,Auto Loan,25.52236191,19,11.35,7,Standard,327.48,38.51780199,17 Years and 4 Months,No,11.48105456,89.05409892,High_spent_Medium_value_payments,372.8950965,0,-0.6913,0.7013,0.3001,-0.6662,0.9207 -0x25489,CUS_0x5602,August,18,878-33-5924,Writer,15360.58,,6,9,25,3,"Personal Loan, Auto Loan, and Personal Loan",24.36553565,11.44931201,12.92,11,Standard,1679.033067,25.38382768,12 Years and 3 Months,Yes,20.75379571,68.48304192,Low_spent_Small_value_payments,298.8679957,0,0.4336,0.3485,0.4119,1.3979,-2.0741 -0x25495,CUS_0x90d2,August,27,046-57-0897,Musician,29095.94,,5,3,2337,4,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",22.01809963,20,8.01,9,_,2510.12,35.14679937,6 Years and 11 Months,Yes,185.6458724,54.83891898,High_spent_Medium_value_payments,399.8616202,0,-1.3469,1.4875,0.7488,1.3661,-0.0714 -0x254a1,CUS_0x7813,August,26,095-39-4425,Lawyer,80094.96,5874.664947,7,5,34,7,"Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Mortgage Loan",19.26098095,16,5.12,6,Bad,2286.06,24.72190476,8 Years and 5 Months,Yes,923.60953,47.63910191,High_spent_Large_value_payments,410.5244207,0,-0.8862,-1.7803,-0.191,-0.1883,0.3507 -0x254ad,CUS_0x335e,August,35,971-85-6951,Engineer,93345.76,7751.813333,5,7,16,4,"Not Specified, Credit-Builder Loan, Student Loan, and Auto Loan",15.5799971,14.14121919,8.17,6,_,1374.831369,30.51269057,16 Years and 3 Months,No,220.0988705,232.6542284,High_spent_Medium_value_payments,572.4282344,0,0.3683,-1.436,0.6848,-3.1758,-0.9716 -0x254b9,CUS_0x4fb1,August,24,157-31-1348,Developer,18289.68,,6,9,27.95700519,8,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Not Specified",,19.32614001,26.39,10,_,5052.999434,23.93168189,,NM,1422.586368,,Low_spent_Large_value_payments,194.2987234,0,-0.975,0.8597,-0.566,-1.1984,1.9004 -0x254c5,CUS_0x4a02,August,32,426-22-0154,Scientist,160728.04,,2,5,10.28836175,2,"Student Loan, and Student Loan",6.347394145,7,0.87,1,Good,1242.39,36.83054172,18 Years and 3 Months,No,205.0866989,1605.582725,Low_spent_Large_value_payments,226.1683707,0,2.025,0.3674,-0.914,-0.2858,-1.6423 -0x254d1,CUS_0x4b6b,August,20,231-66-9150,Developer,66484.36,5595.363333,3,3,26,3,"Mortgage Loan, Payday Loan, and Mortgage Loan",24.90963975,18,18.77,8,Standard,1688,27.75487433,9 Years and 8 Months,Yes,86.77099226,,Low_spent_Large_value_payments,419.7036431,0,1.4401,0.378,0.5863,-0.3263,0.3432 -0x254dd,CUS_0x3fbc,August,26,572-35-7205,Media_Manager,75612.08,6401.006667,8,7,17,100,"Student Loan, Student Loan, Home Equity Loan, Student Loan, and Auto Loan",,20.74454719,8.5,10,Bad,2551.354015,30.00896964,17 Years and 10 Months,Yes,226.1019944,,High_spent_Large_value_payments,580.5176628,0,0.2253,-0.755,-0.3185,0.3649,-0.6449 -0x254e9,CUS_0x59cd,August,32,741-73-1869,Musician,10009.905,,8,5,20,3,"Not Specified, Not Specified, and Auto Loan",,19,11.23,12,Standard,2616.31,40.66869724,14 Years and 4 Months,Yes,23.94543338,30.25821206,Low_spent_Large_value_payments,280.4122296,0,1.3916,0.1445,1.1708,1.4816,0.706 -0x254f5,CUS_0x5e30,August,20,403-57-6898,Scientist,25122.47,1860.539167,4,4,16,4,"Auto Loan, Payday Loan, Payday Loan, and Home Equity Loan",27.79241591,20.09413931,19.68,9,Standard,1406.264138,36.30545358,,Yes,62.48455602,159.6270436,Low_spent_Small_value_payments,253.942317,0,-0.791,-0.0721,0.6965,-1.006,0.6333 -0x25501,CUS_0x89ff,August,35,#F%$D@*&8,Musician,30619.56,2704.63,5,7,16,6,"Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Credit-Builder Loan",31.0317956,24.33116676,17.12,6,Standard,795.6444381,25.61140573,12 Years and 11 Months,Yes,137.7931666,97.21899689,Low_spent_Small_value_payments,325.4508365,0,-1.4307,-0.7061,0.4929,0.5589,0.8033 -0x2550d,CUS_0x6c24,August,21,302-41-4735,Teacher,80906.36,6990.196667,7,7,23,1480,"Mortgage Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",32.78972773,18.0583432,5.43,9,Bad,5483.943968,32.54496197,9 Years and 3 Months,Yes,403.4848775,118.2724659,High_spent_Large_value_payments,417.2623233,0,-0.1786,0.2269,-1.8583,1.4225,-0.6554 -0x25519,CUS_0x85cb,August,22,291-85-1125,Writer,68475.24,5488.27,7,8,33.06745738,5,"Not Specified, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",,24,3.2,10,_,4340.050954,28.9260497,14 Years and 4 Months,Yes,236.0084194,378.1049477,Low_spent_Small_value_payments,197.993345,0,-0.2829,-1.3027,-0.9551,1.5438,1.2007 -0x25525,CUS_0xc686,August,27,448-29-3180,Engineer,70483.74,,8,6,20,0,,24.4275692,18,7.68,8,Standard,718.8547754,25.94863678,14 Years and 4 Months,Yes,0,418.7157608,High_spent_Small_value_payments,462.1740781,0,0.7297,-1.6759,0.3713,-0.7523,-0.7583 -0x25531,CUS_0xaacd,August,44,731-22-8027,Media_Manager,37516.41,,0,3,3,1,Auto Loan,17.57782417,,6.88,3,_,730.1509771,24.90170096,32 Years and 4 Months,NM,18.97557469,170.9983378,High_spent_Small_value_payments,395.2628375,0,-1.4863,1.1302,-2.051,0.4029,0.4649 -0x2553d,CUS_0x1abb,August,41,014-18-6605,Lawyer,70217.08,,9,7,28,5,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",25.28354878,15,20.82,11,Bad,3100,27.24523739,9 Years and 10 Months,Yes,168.9555519,138.9320547,High_spent_Medium_value_payments,529.5547267,0,-2.6833,-0.2443,0.5804,1.0883,0.0666 -0x25549,CUS_0x810d,August,34,344-20-2467,Engineer,69932.08,5546.673333,5,1,7,0,,3.936362896,5,9.25,2,Good,100.5384393,34.55312915,,No,0,197.8555898,Low_spent_Medium_value_payments,666.3310358,0,1.3693,0.2352,0.4262,1.2377,1.5691 -0x25555,CUS_0x98ba,August,35,750-09-5349,Entrepreneur,27171.26,,3,5,4,0,,12.23571407,13,3.18,5,Standard,896.47,23.45793503,16 Years and 6 Months,NM,0,10000,Low_spent_Small_value_payments,207.30214,0,0.736,2.0226,-0.738,0.7568,2.0569 -0x25561,CUS_0x5ff6,August,31,969-04-8576,Scientist,15450.44,1115.536667,10,1357,16.06745738,9,"Student Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Personal Loan",40.41208837,22.22358193,2.27,13,Bad,3062.411728,39.14780124,11 Years and 0 Months,Yes,109.0162308,56.27300186,Low_spent_Medium_value_payments,199.544146,0,0.2112,-0.9918,0.2193,0.6499,0.1869 -0x2556d,CUS_0xa455,August,35,458-30-8277,Doctor,112745.76,,3,7,2,3,"Debt Consolidation Loan, Mortgage Loan, and Auto Loan",,6,4.27,7,Good,335.69,27.18296378,,No,188.1854369,521.9714212,Low_spent_Medium_value_payments,489.1911419,0,0.8491,0.2935,0.8472,-0.2131,0.9388 -0x25579,CUS_0x22a1,August,29,181-78-0271,Lawyer,17024.05,1454.082708,3,4,12,6,"Payday Loan, Student Loan, Auto Loan, Not Specified, Debt Consolidation Loan, and Auto Loan",,17,15.42,12,Standard,1473.4,34.25282058,8 Years and 2 Months,Yes,74.01477912,,Low_spent_Medium_value_payments,250.2650181,0,0.5948,0.3182,2.551,-1.5758,-0.564 -0x25585,CUS_0x42c3,August,80,668-97-7763,Entrepreneur,40056.1,,6,4,13,3,"Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",22.62948523,15,5.02,2,Standard,182.58,29.84968645,,No,76.83324885,82.69350604,High_spent_Medium_value_payments,429.5740784,0,0.9048,-0.4831,0.0883,1.0963,0.94 -0x25591,CUS_0x4c9,August,24,516-33-7752,Musician,72629.94,5948.454596,5,5,3,1,Not Specified,21.39877841,16,11.83,3,_,1305.574416,24.86401042,26 Years and 5 Months,No,408.7495313,129.3614765,High_spent_Medium_value_payments,731.8725663,0,-0.3867,-0.5839,-1.5736,-0.2717,-1.0865 -0x2559d,CUS_0x731c,August,43,831-78-4559,Journalist,19852.09,1654.340833,10,8,34.88954781,7,"Auto Loan, Student Loan, Home Equity Loan, Mortgage Loan, Student Loan, Auto Loan, and Student Loan",23.06272819,17,17.6,12,_,3176.77,35.34439659,9 Years and 0 Months,Yes,1417.174562,23.98309578,High_spent_Large_value_payments,269.9463438,0,1.6928,-0.2039,-1.0108,0.3751,-1.0864 -0x255a9,CUS_0xa066,August,29,619-80-2517,Entrepreneur,72279.4,6295.283333,7,6,23,7,"Not Specified, Personal Loan, Payday Loan, Not Specified, Auto Loan, Not Specified, and Payday Loan",,12.90411192,7.22,,Standard,1429.687249,30.5118725,14 Years and 5 Months,Yes,282.5445507,462.292502,Low_spent_Medium_value_payments,164.6912807,0,-1.2257,-1.0315,0.8787,0.8495,0.0098 -0x255b5,CUS_0x867e,August,40,500-65-8725,Teacher,32471.74,,8,10,20.95700519,9,"Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",,26.81126053,2.77,11,Bad,1909.915096,31.45866942,17 Years and 0 Months,Yes,1465.406167,,High_spent_Small_value_payments,164.9474054,0,0.8425,0.387,-1.7833,-0.3996,-0.1106 -0x255c1,CUS_0x7dc5,August,32,994-58-4239,Architect,175572.44,14422.03667,5,4,1,3,"Personal Loan, Auto Loan, and Student Loan",,2,6.09,1,Good,388.99,43.3061559,32 Years and 10 Months,No,290.1069733,97.86036194,High_spent_Large_value_payments,1294.236331,0,0.016,0.8376,-1.8288,-0.0135,0.1577 -0x255cd,CUS_0xa568,August,40,#F%$D@*&8,Scientist,120009.32,10242.77667,5,1,7,4,"Student Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",,1,6.75,0,Good,446.51,36.83960772,29 Years and 3 Months,No,230.5283521,197.6267707,High_spent_Large_value_payments,836.1225439,0,0.5833,-0.1214,-0.9965,0.7394,-0.2118 -0x255d9,CUS_0x701f,August,24,549-24-1350,Lawyer,59868.93,,4,7,8.288361749,4,"Not Specified, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",12.1062867,11,6.09,4,Good,417.72,23.88291356,29 Years and 0 Months,No,104.6220378,10419.93746,Low_spent_Small_value_payments,80.19025598,0,-0.4194,-0.3366,-1.7906,0.1633,0.2959 -0x255e5,CUS_0xb80d,August,32,713-24-3856,Developer,28796.82,,6,6,21,5,"Student Loan, Payday Loan, Payday Loan, Personal Loan, and Student Loan",36.07978636,22.88174639,1.78,8,Bad,2695.24147,28.74631248,6 Years and 6 Months,Yes,82.23521975,30.43015294,High_spent_Medium_value_payments,375.2081273,0,-0.1062,-0.0475,-0.6455,-0.1714,0.7609 -0x255f1,CUS_0xa407,August,29,354-91-6159,Entrepreneur,34599.94,2942.328333,7,6,3,0,,10.39480275,8,3.45,1,Standard,942.59,33.12860879,27 Years and 2 Months,No,0,165.3975517,High_spent_Small_value_payments,388.8352816,0,1.0882,0.6876,-0.8954,1.2061,-0.8535 -0x255fd,CUS_0x9d41,August,38,979-38-2855,Lawyer,41015.55,3152.9625,0,4,4,1,Payday Loan,0,2,1.58,2,Good,599.4,31.35626656,25 Years and 6 Months,No,25.67125702,,Low_spent_Small_value_payments,214.6149336,0,0.3605,-0.728,1.2867,-0.1115,-0.1748 -0x25609,CUS_0xb3d7,August,19,#F%$D@*&8,Teacher,16809.56,1686.796667,7,10,22.06745738,5,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",37.67888906,19,1.87,8,_,2014.340954,32.68276325,6 Years and 4 Months,Yes,38.6507601,211.3130896,Low_spent_Small_value_payments,181.995529,0,0.7423,-0.469,0.7287,0.5673,0.4212 -0x25615,CUS_0xb333,August,44,927-28-8653,Musician,61699.1,5010.591667,4,4,12,0,,15.86348013,,8.51,5,Good,1495.244299,35.96724108,29 Years and 4 Months,No,0,46.70620939,High_spent_Large_value_payments,694.3529573,0,-0.9168,1.0472,0.1287,0.1445,0.4247 -0x25621,CUS_0x6f5d,August,32,047-76-1717,Engineer,18577.62,1290.909036,6,8,26,2,"Auto Loan, and Debt Consolidation Loan",24.11755503,16.73913679,14.53,12,Bad,2476.237924,30.78465393,18 Years and 10 Months,Yes,197.3190753,,Low_spent_Small_value_payments,222.516169,0,-2.4249,-1.0005,-0.7571,1.628,0.2106 -0x2562d,CUS_0x27df,August,41,140-14-6234,Doctor,78722.56,,7,7,9,3,"Payday Loan, Home Equity Loan, and Payday Loan",,8,4.77,4,_,569.38,24.93931778,17 Years and 6 Months,No,137.1752874,157.4397945,High_spent_Large_value_payments,622.7062515,0,-0.339,-1.4321,2.1082,-0.3692,-1.1805 -0x25639,CUS_0x16a5,August,42,309-46-9938,_______,10027.07,,8,5,9,3,"Auto Loan, Mortgage Loan, and Home Equity Loan",19.62188308,17,1.77,5,Standard,168.72,23.31224233,21 Years and 2 Months,No,73384,32.74322333,Low_spent_Medium_value_payments,323.5543352,0,-0.7181,0.2277,-1.0071,1.5127,-1.2021 -0x25645,CUS_0x5b2a,August,37,#F%$D@*&8,Mechanic,142974.96,11698.58,2,4,5,3,"Debt Consolidation Loan, Personal Loan, and Home Equity Loan",90,1850,0.27,1,Good,408.2185943,22.27005033,24 Years and 5 Months,No,228.1625797,1762.426558,!@9#%8,,0,0.4309,-0.0054,0.4467,-2.2658,-0.4813 -0x25651,CUS_0x8fe0,August,18,990-03-5675,Architect,25352,2077.666667,5,6,8,2,"Student Loan, and Payday Loan",21.65442311,15,15.19,8,_,1320.31,34.04490221,19 Years and 0 Months,Yes,26.5035985,105.129386,Low_spent_Large_value_payments,346.1336822,0,1.1513,1.7592,0.7203,-0.531,-1.6744 -0x2565d,CUS_0x2bc8,August,27,851-73-1122,Architect,7981.735,,10,7,25.06745738,6,"Payday Loan, Personal Loan, Personal Loan, Auto Loan, Auto Loan, and Auto Loan",24.28477739,16,15.3,12,Bad,5053.210954,41.78905556,4 Years and 2 Months,Yes,20.32517643,70.46453443,Low_spent_Medium_value_payments,251.8044595,0,0.7519,1.1375,2.3512,0.3802,-0.3111 -0x25669,CUS_0x2bc4,August,32,807-49-7186,Musician,26094.08,2120.506667,7,5,11,3,"Mortgage Loan, Debt Consolidation Loan, and Payday Loan",,9,1.65,2,Standard,945.7,30.89700949,18 Years and 8 Months,NM,51.27956061,239.4653337,Low_spent_Small_value_payments,211.3057724,0,0.0499,-0.417,-0.3268,-0.0043,0.4362 -0x25675,CUS_0x4e80,August,34,940-30-7729,Accountant,82647.69,6967.3075,3,4,9,3,"Home Equity Loan, Mortgage Loan, and Home Equity Loan",16.50580297,11,12.57,7,Standard,1485.52,38.64955588,,Yes,186.2553918,82.72140992,High_spent_Large_value_payments,667.7539483,0,0.8521,0.1108,0.2253,-0.2756,0.7627 -0x25681,CUS_0xa762,August,33,152-83-6320,Media_Manager,43820.67,3658.7225,1,2,11,0,,17.47890489,,2.37,4,Good,1131.896138,34.15069036,26 Years and 8 Months,No,0,85.72080122,High_spent_Medium_value_payments,538.0740152,0,1.0129,-1.1382,0.1256,0.2264,-0.6241 -0x2568d,CUS_0x63db,August,39,925-34-6619,Accountant,5556554,,0,5,8.288361749,4,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",,12,5.74,6,Good,683.67,27.97019865,29 Years and 5 Months,No,42.84660884,540.8887047,Low_spent_Small_value_payments,260.4656058,0,-0.4822,2.1892,-0.7993,0.9581,0.5757 -0x25699,CUS_0xac4a,August,29,514-32-8216,Mechanic,25883.65,,4,6,6,100,"Personal Loan, Credit-Builder Loan, Student Loan, Student Loan, and Debt Consolidation Loan",,11,12.33,11,_,47.03,40.83036426,11 Years and 8 Months,NM,82.1887875,110.8844421,High_spent_Small_value_payments,299.4238538,0,0.6211,-1.078,-0.3187,0.5597,0.6089 -0x256a5,CUS_0x5665,August,35,868-53-7311,Journalist,14906.67,1117.627975,6,6,10,2,"Personal Loan, and Home Equity Loan",,20,,3,Standard,100.3,40.08089781,30 Years and 3 Months,Yes,104.1770466,93.36503903,Low_spent_Medium_value_payments,285.0746892,0,-0.3515,-0.025,-0.6401,1.3261,-1.7504 -0x256b1,CUS_0x6427,August,21,154-28-7228,Engineer,8630.4,,8,10,31.95700519,6,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Auto Loan, Payday Loan, and Payday Loan",30.67222844,17,27.34,6,Bad,2753.760954,27.83680651,8 Years and 8 Months,Yes,1350.559618,,Low_spent_Small_value_payments,227.3412252,0,-0.6055,-1.0352,1.4016,0.0395,0.7341 -0x256bd,CUS_0x48ca,August,40,362-11-2987,Accountant,40878.85,3440.570833,0,5,11,4,"Student Loan, Student Loan, Mortgage Loan, and Credit-Builder Loan",,7,9.86,8,_,1197.375513,27.78527408,24 Years and 6 Months,No,105.0170913,135.260149,High_spent_Medium_value_payments,367.6832272,0,-2.4332,-0.023,-1.2343,0.0824,-1.0137 -0x256c9,CUS_0xb807,August,38,766-13-4262,Writer,10265.86,,6,8,21,2,"Not Specified, and Debt Consolidation Loan",,20.24092955,7.22,8,Bad,2514.857896,24.00021435,7 Years and 3 Months,Yes,11.95577064,26.60571359,Low_spent_Small_value_payments,327.5873491,0,-1.4109,0.594,-1.5952,0.4826,-0.7326 -0x256d5,CUS_0x3d9c,August,50,#F%$D@*&8,Musician,19809.27,,5,5,8,1,Credit-Builder Loan,,0,7.23,2,Good,562.34,34.67397846,30 Years and 4 Months,No,14.05862727,22.95431198,High_spent_Large_value_payments,374.1643108,0,-0.9204,-0.8911,0.1123,-0.2209,-1.468 -0x256e1,CUS_0x113e,August,45,542-14-0249,Manager,34476.68,,6,7,25.06745738,8,"Personal Loan, Student Loan, Personal Loan, Mortgage Loan, Student Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",,20.51682529,4.48,11,Bad,2430.719607,24.57681296,11 Years and 6 Months,Yes,171.1757589,10000,Low_spent_Medium_value_payments,120.8370933,0,-0.2698,1.2198,0.2274,-0.8091,-1.1897 -0x256ed,CUS_0xa776,August,28,872-41-5317,Writer,38856.53,3337.044167,3,4,1,3,"Payday Loan, Debt Consolidation Loan, and Payday Loan",0,3.57759042,9.43,1,_,1499.006314,30.08896505,,No,51.75738955,211.0810074,Low_spent_Large_value_payments,340.8660198,0,1.152,0.6727,-0.3206,-0.4805,0.3858 -0x256f9,CUS_0xac85,August,38,512-49-9006,Scientist,43135.98,3375.665,8,4,18,2,"Mortgage Loan, and Personal Loan",18.43460923,10.54369883,13.2,5,Standard,1978.125418,31.26523678,10 Years and 10 Months,Yes,1283,10000,Low_spent_Small_value_payments,238.1190189,0,-0.3759,0.0786,1.3348,-2.3968,-0.8271 -0x25705,CUS_0x42ca,August,45,956-92-4573,Teacher,28702.52,2420.876667,5,6,9,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",90,430,10.16,2,Standard,1005.41,37.2655154,19 Years and 3 Months,Yes,36.65081376,83.79442759,High_spent_Medium_value_payments,371.6424253,0,-0.7875,0.126,1.7793,-0.2204,0.119 -0x25711,CUS_0x3124,August,53,921-27-0890,Journalist,43502.68,,0,7,6,1,Home Equity Loan,,5,4.93,3,Good,795.6109571,23.58433366,26 Years and 2 Months,No,32.03232756,517.6891424,Low_spent_Small_value_payments,191.8898711,0,-0.0585,0.3289,0.0758,1.1442,1.7279 -0x2571d,CUS_0x6e9,August,43,750-50-1814,_______,174552.84,14581.07,4,6,4.288361749,2,"Personal Loan, and Credit-Builder Loan",1.190629014,4,6.7,3,_,308.8,41.13096835,16 Years and 6 Months,No,256.0135952,1484.204587,Low_spent_Medium_value_payments,417.8262789,0,-1.8763,0.5778,-0.6091,1.4231,-0.2609 -0x25729,CUS_0x8d43,August,26,376-50-7527,_______,16266.91,,9,9,29.06745738,2,"Personal Loan, and Debt Consolidation Loan",22.78968582,,2.7,9,Bad,2626.389551,32.56607038,16 Years and 11 Months,Yes,23.05467358,114.6499794,Low_spent_Small_value_payments,247.6326424,0,-2.3386,-1.1596,0.1765,0.3,-0.2823 -0x25735,CUS_0x6701,August,45,065-97-1478,Journalist,79510.95,6805.9125,6,3,5,6,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Personal Loan, and Not Specified",18.71409625,10.36917239,12.24,8,Standard,734.212025,37.20985321,6 Years and 0 Months,Yes,315.6639373,181.6626493,High_spent_Medium_value_payments,433.2646633,0,1.3537,-1.0215,0.2665,-0.2217,0.5016 -0x25741,CUS_0x9d04,August,48,069-49-1031,Developer,93841.65,8115.1375,0,3,6,1,Not Specified,,10.15857496,1.08,2,_,1185.176397,38.46127497,15 Years and 8 Months,No,52.68657186,483.0322695,!@9#%8,555.7949087,0,0.0239,-0.2495,2.0252,0.9698,-0.7766 -0x2574d,CUS_0xbb21,August,36,963-73-5879,Doctor,14329.24,,9,5,22.06745738,9,"Personal Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, Not Specified, Home Equity Loan, and Personal Loan",37.48809776,21,5.85,7,Bad,2406.010954,35.76287106,9 Years and 5 Months,Yes,100.6761941,77.30989198,Low_spent_Medium_value_payments,192.6039593,0,0.7746,-1.4069,-1.2344,-0.9309,-0.2046 -0x25759,CUS_0x1ab8,August,23,777-84-6423,Doctor,5539643,7181.34,6,4,10,1,Student Loan,,20,11.34,4,Standard,729.69,30.83967369,29 Years and 11 Months,Yes,49.31112738,,Low_spent_Medium_value_payments,204.4737702,0,-0.8083,1.2375,1.2303,-1.3195,-1.0504 -0x25765,CUS_0x9209,August,29,#F%$D@*&8,Architect,60529.08,5069.09,5,3,24,7,"Payday Loan, Auto Loan, Personal Loan, Payday Loan, Personal Loan, Student Loan, and Mortgage Loan",,22.55553564,15.84,10,_,2575.60827,29.76786539,16 Years and 5 Months,NM,317.5806679,93.93216271,High_spent_Large_value_payments,335.3961694,0,-0.0169,0.1531,-0.0614,0.2198,0.2776 -0x25771,CUS_0xac58,August,31,471-65-9055,Writer,37769.92,3175.493333,7,4,18,6,"Mortgage Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",22.6503418,15,14.61,12,Standard,196.13,32.03638697,6 Years and 9 Months,Yes,164.4172394,185.0519549,Low_spent_Large_value_payments,238.080139,0,-0.1561,-0.6112,-0.2794,-0.5472,0.5125 -0x2577d,CUS_0x9330,August,35,924-37-4566,_______,35755.69,2775.640833,8,3,1,1,Personal Loan,28.51568448,20,-0.84,4,Good,198.29,37.03418856,22 Years and 5 Months,No,26.44687805,134.5986446,!@9#%8,406.5185607,0,0.4983,-0.142,-1.2626,-0.6928,0.355 -0x25789,CUS_0x5b6c,August,35,796-18-5446,Scientist,68183.84,5916.986667,8,4,27,7,"Auto Loan, Student Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",,22.64631407,,10,_,3716.789691,37.13893471,11 Years and 9 Months,Yes,201.1615103,10000,!@9#%8,493.5249503,0,0.9504,-0.1825,-0.492,-0.3767,-0.3206 -0x25795,CUS_0x5af6,August,25,015-20-8263,Accountant,123915.99,,3,6,7.288361749,2,"Payday Loan, and Home Equity Loan",0,2,8.37,8,Good,1394.91,27.42449456,17 Years and 0 Months,No,156.9881473,640.6681747,High_spent_Large_value_payments,895.914389,0,1.2363,-2.2471,-1.9495,-1.707,-1.1548 -0x257a1,CUS_0x9cdc,August,24,187-13-2907,Scientist,16937.425,,4,5,4,1,Home Equity Loan,0,2,,1,Good,151.5798912,27.77495347,22 Years and 0 Months,No,7.247942506,,Low_spent_Small_value_payments,341.6580454,0,-1.4105,-0.9585,-0.481,-0.037,-0.2657 -0x257ad,CUS_0x9038,August,54,457-44-5854,Engineer,33132.94,2478.078333,6,6,8,3,"Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",15.19804136,10,0.61,2,Standard,795.69,24.02483089,,No,81.7809356,,High_spent_Medium_value_payments,313.4773215,0,1.1,1.7642,1.2802,-0.5573,0.5161 -0x257b9,CUS_0x972a,August,33,297-34-8639,Entrepreneur,87605.68,,5,7,19,3,"Credit-Builder Loan, Personal Loan, and Personal Loan",,16,3.65,6,Standard,512.74,40.37466588,30 Years and 0 Months,Yes,112.1488009,131.1872664,High_spent_Small_value_payments,746.611266,0,-0.5293,0.3402,1.8095,-0.2151,0.1892 -0x257c5,CUS_0x21b7,August,21,802-21-9380,Musician,18157.95,,6,7,29.06745738,2,"Personal Loan, and Home Equity Loan",22.043789,14.03063335,9.03,15,Standard,2277.15072,35.29320108,8 Years and 6 Months,Yes,217.3128189,161.8238643,Low_spent_Small_value_payments,208.6097028,0,0.33,-1.5345,-0.6202,-0.8049,0.0432 -0x257d1,CUS_0xacda,August,46,252-25-5625,Developer,19012.18,1548.348333,4,6,20,3,"Home Equity Loan, Home Equity Loan, and Student Loan",34.41697598,20.83597211,19.07,9,Standard,94.2494093,33.64852915,21 Years and 11 Months,Yes,42.25817566,121.6225245,Low_spent_Medium_value_payments,270.9541332,0,-0.2357,-0.4864,1.8555,-1.9134,-1.2889 -0x257dd,CUS_0xc195,August,24,939-96-0773,Mechanic,81842.52,6733.21,6,6,18,7,"Home Equity Loan, Payday Loan, Payday Loan, Not Specified, Mortgage Loan, Student Loan, and Debt Consolidation Loan",34.67111278,19,30.98,12,Bad,3127.09,39.96563967,11 Years and 11 Months,NM,322.076599,122.3168761,High_spent_Medium_value_payments,478.9275249,0,0.5172,0.3234,0.0482,-0.3059,-1.6086 -0x257e9,CUS_0x95c9,August,39,326-89-0421,Mechanic,59612.64,5067.72,6,5,33.06745738,7,"Credit-Builder Loan, Auto Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Payday Loan, and Payday Loan",,,17.93,12,Bad,5690.700364,30.58774961,3 Years and 6 Months,Yes,283.733432,,High_spent_Small_value_payments,206.0313959,0,-1.4563,-0.3687,0.0456,-0.8666,0.2602 -0x257f5,CUS_0xa789,August,21,058-06-1493,Media_Manager,15339.75,987.1371372,6,4,18.06745738,8,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Home Equity Loan, Student Loan, Personal Loan, Mortgage Loan, and Home Equity Loan",38.40494932,18.62058057,8.15,12,Bad,4538.925407,26.03025631,0 Years and 10 Months,Yes,172.7228453,93.78382417,Low_spent_Small_value_payments,175.9796553,0,-1.4141,0.9324,-0.6839,-0.5199,-1.3318 -0x25801,CUS_0x1044,August,44,#F%$D@*&8,_______,33441.59,,2,4,0.288361749,0,,0,4,9.58,5,_,154.96,35.06313519,31 Years and 11 Months,No,0,649.4697217,Low_spent_Small_value_payments,335.347656,0,0.5059,-0.6228,0.1967,1.3983,-0.8097 -0x2580d,CUS_0x70d6,August,43,845-19-4578,Journalist,49400.52,4055.71,9,7,32.06745738,6,"Student Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",36.91836991,24,18.24,10,Bad,2888.860954,30.93508433,7 Years and 4 Months,Yes,230.2878441,247.1876322,High_spent_Small_value_payments,161.3752358,0,-1.0902,0.6692,0.2898,0.9533,0.4111 -0x25819,CUS_0x6120,August,29,191-14-8400,Journalist,59207.56,5176.963333,6,10,29.88954781,7,"Payday Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Payday Loan",,25.38799985,22.61,7,Bad,5403.686232,37.02100325,5 Years and 6 Months,Yes,1510.647231,278.4961223,Low_spent_Medium_value_payments,314.2228987,0,-1.1907,0.7936,0.9049,0.4716,1.0011 -0x25825,CUS_0x797a,August,18,303-89-6328,Media_Manager,160016.44,13477.70333,2,5,2.288361749,0,Credit-Builder Loan,1.677031284,6,1.85,1,_,975.7831623,43.10273027,22 Years and 10 Months,No,86.88154044,592.7327212,High_spent_Large_value_payments,1348.87488,0,0.842,-0.6373,0.6605,0.0901,-0.4847 -0x25831,CUS_0x1130,August,41,846-60-3664,_______,137798.88,10609.79191,6,726,13,0,,16.0639909,12,9.25,2,Standard,948.0020059,30.05431056,,No,988.4480914,1298.58093,Low_spent_Medium_value_payments,282.8702173,0,-2.4863,0.7728,1.1483,-0.7378,-0.115 -0x2583d,CUS_0x76fb,August,40,823-20-1441,Lawyer,36825.36,,6,5,13,4,"Credit-Builder Loan, Auto Loan, Payday Loan, and Not Specified",11.76980375,11,9.45,8,Standard,1078.41,31.56503438,18 Years and 8 Months,Yes,61.69087228,33.29579511,High_spent_Medium_value_payments,460.9913326,0,-1.9556,-0.8182,-1.6262,0.7361,-2.2297 -0x25849,CUS_0x1c83,August,30,544-01-8080,Entrepreneur,76387.05,6104.5875,5,4,20,0,,15.20412105,12,7.65,2,Standard,1001.62,31.75091384,19 Years and 11 Months,No,0,416.7767727,Low_spent_Small_value_payments,483.6819773,0,0.8442,-0.6879,-1.1351,0.9635,-0.1499 -0x25855,CUS_0x720e,August,27,807-95-6893,Entrepreneur,14458,1251.833333,4,8,29.88954781,6,"Auto Loan, Mortgage Loan, Not Specified, Mortgage Loan, Student Loan, and Debt Consolidation Loan",8.730720726,5.953767203,10.73,13,Standard,1893.085834,36.74507459,8 Years and 0 Months,Yes,1371.359488,79.30452392,Low_spent_Large_value_payments,250.1892399,0,0.6551,-0.5381,1.1967,-0.2395,-2.3439 -0x25861,CUS_0x81e8,August,26,363-37-3843,Writer,121274.24,9887.186667,2,7,9.288361749,2,"Not Specified, and Auto Loan",10.24344986,10,8.22,6,_,844.6,35.88106685,27 Years and 8 Months,NM,167.4310717,593.773598,High_spent_Medium_value_payments,897.4514579,0,-0.3568,0.3759,-1.2546,0.0216,-0.5984 -0x2586d,CUS_0x4ad5,August,34,807-46-4675,Teacher,31592.03,,6,7,18,2,"Not Specified, and Debt Consolidation Loan",31.9039214,21,7.28,6,_,778.91,40.02900919,20 Years and 3 Months,Yes,41.84350383,61.39593387,High_spent_Large_value_payments,391.827479,0,-0.5876,0.6172,1.2412,-1.5023,-0.481 -0x25879,CUS_0x4c59,August,24,261-01-0693,Accountant,7021.91,507.1591667,3,9,20,7,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",,18,12.75,13,_,1919.27,36.6655083,11 Years and 8 Months,Yes,27.59062663,29.83058492,Low_spent_Medium_value_payments,273.2947051,0,-0.0717,0.3868,1.3658,-0.9847,-0.8982 -0x25885,CUS_0xdcc,August,39,317-53-8005,Accountant,23737.09,,1083,5,11,3,"Student Loan, Home Equity Loan, and Not Specified",15.38898278,11.3359485,8.21,6,Standard,104.9638235,24.6775547,24 Years and 5 Months,Yes,47.14182853,108.3944039,Low_spent_Large_value_payments,338.5728509,0,-0.3622,0.2331,0.4576,1.5722,0.1198 -0x25891,CUS_0x3278,August,38,816-95-6742,Teacher,20789.075,,5,4,1,3,"Student Loan, Not Specified, and Personal Loan",,2,11.23,3,_,504.9378127,36.70023928,33 Years and 0 Months,No,48.08955721,42.26101994,High_spent_Medium_value_payments,346.6945638,0,-0.7448,-0.3273,0.5634,-0.7349,1.1057 -0x2589d,CUS_0x50c4,August,27,043-82-6979,Mechanic,14566.27,,6,9,32.06745738,5,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Auto Loan, and Payday Loan",22.14024551,14,15.26,11,Bad,3626.230954,26.28054258,2 Years and 8 Months,Yes,50.31132271,42.18268178,Low_spent_Small_value_payments,290.9712909,0,0.0122,1.8157,-1.1372,-0.8153,-1.1739 -0x258a9,CUS_0xbf23,August,18,669-46-5682,Accountant,8246.785,582.2320833,10,9,23.06745738,4,"Student Loan, Student Loan, Personal Loan, and Not Specified",25.1372645,,13.82,10,Standard,1751.420954,33.879341,9 Years and 5 Months,Yes,24.47511465,62.00197301,!@9#%8,235.0258327,0,0.9081,0.0475,0.7103,-0.258,-0.3057 -0x258b5,CUS_0x38c2,August,19,423-55-1106,Musician,34860.36,,8,3,14,2,"Mortgage Loan, and Personal Loan",14.94041592,,11.53,2,Standard,1301.87,32.40505084,,NM,34.6115848,10000,High_spent_Medium_value_payments,411.9492916,0,1.8798,-0.0767,-0.4884,0.03,-1.7167 -0x258c1,CUS_0x29f5,August,36,039-46-6036,Developer,101316.64,8526.053333,3,6,9,3,"Personal Loan, Credit-Builder Loan, and Payday Loan",22.61593917,18,11.92,7,Standard,559.18,34.66105939,,No,166.2728814,218.5740607,High_spent_Large_value_payments,707.7583912,0,-0.0034,-1.9292,-1.774,1.7334,-0.9787 -0x258cd,CUS_0xab5f,August,55,557-58-2693,Architect,54740.38,4395.698333,3,4,7,0,,17.7503739,16,9.09,2,Standard,1101.31,28.11511804,,No,0,104.249819,High_spent_Medium_value_payments,585.3200143,0,0.4984,1.7246,-0.4871,-0.7648,-0.6463 -0x258d9,CUS_0xa42f,August,32,823-43-1961,Accountant,17576.52,,4,7,2,3,"Auto Loan, Home Equity Loan, and Personal Loan",,12.84476927,-1.07,4,_,257.9845527,40.26372428,17 Years and 2 Months,No,29.73700692,83.1015621,Low_spent_Large_value_payments,280.632431,0,-0.6502,-1.0219,0.1006,-0.432,0.6929 -0x258e5,CUS_0xa756,August,40,360-64-9577,Musician,66193.98,,7,7,11,0,,17.6450042,,10.41,5,Standard,1166.37,28.37681237,20 Years and 11 Months,Yes,0,198.4065915,High_spent_Medium_value_payments,597.9099085,0,0.6047,-1.1702,-0.9898,-0.805,-0.5405 -0x258f1,CUS_0x7d4d,August,22,695-70-3700,Engineer,40511.74,3439.978333,3,6,17.06745738,3,"Mortgage Loan, Auto Loan, and Auto Loan",25.21784472,17,20.18,9,Standard,2495.990954,35.01869804,16 Years and 11 Months,Yes,69.28277943,,Low_spent_Medium_value_payments,175.601713,0,-0.348,-0.5548,0.2043,0.1069,0.9552 -0x258fd,CUS_0x828b,August,38,329-28-6277,Developer,73778.52,,4,5,14,4,"Home Equity Loan, Auto Loan, Credit-Builder Loan, and Not Specified",26.46520084,20,13.75,10,Standard,179.15,26.44920249,24 Years and 8 Months,Yes,233.2360964,,High_spent_Medium_value_payments,459.2208864,0,-1.0028,-0.1157,2.4185,-0.1022,0.0186 -0x25909,CUS_0x231f,August,20,335-74-0821,Architect,107288.16,,6,3,17.28836175,4,"Student Loan, Mortgage Loan, Not Specified, and Payday Loan",,14,6.92,2,Standard,1258.47,22.00281766,28 Years and 11 Months,No,346.0034022,1325.691987,Low_spent_Small_value_payments,,0,-0.2054,-0.2313,-0.9214,-0.1626,-1.015 -0x25915,CUS_0x5cc4,August,40,868-70-5450,Manager,18859.53,,10,6,21.06745738,2,"Mortgage Loan, and Auto Loan",,22,12.49,12,Standard,2319.740954,28.45421516,11 Years and 11 Months,Yes,23.88627298,91.8693568,Low_spent_Small_value_payments,306.9868323,0,-0.4484,1.7056,-0.1666,0.4748,1.1543 -0x25921,CUS_0x5fbb,August,39,564-43-1424,Lawyer,8272.2,,10,8,27.88954781,7,"Credit-Builder Loan, Auto Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",,27.13535367,2.59,12,Bad,1916.897504,36.15695532,12 Years and 2 Months,Yes,1366.630901,,Low_spent_Small_value_payments,223.8544965,0,0.1019,1.4072,0.082,1.1403,1.3325 -0x2592d,CUS_0x7bec,August,25,695-07-0356,Journalist,57700.06,,5,6,13,0,,23.98246141,18,11.63,5,Standard,792.37,31.25730336,24 Years and 10 Months,NM,0,262.4516841,Low_spent_Small_value_payments,484.2821493,0,1.8329,-0.4528,0.3777,0.9987,-0.2201 -0x25939,CUS_0x1e84,August,55,000-08-1349,Media_Manager,65937.12,5465.76,5,5,12,2,"Payday Loan, and Auto Loan",,13,8.46,2,_,1081.01117,37.34355215,32 Years and 9 Months,No,87.37564919,124.8335984,High_spent_Medium_value_payments,603.2857094,0,0.4891,-1.9638,0.5757,-0.2948,-2.2803 -0x25945,CUS_0x5606,August,27,699-76-3461,Entrepreneur,93350.64,7573.22,4,6,20,0,,25.22313596,17,9.27,4,Standard,1139.1,32.78153884,26 Years and 5 Months,Yes,0,462.034837,Low_spent_Medium_value_payments,575.287163,0,1.1712,-1.5725,1.3309,1.1428,1.4185 -0x25951,CUS_0x5fcb,August,43,928-40-3948,Teacher,32690.86,,4,5,6,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",24.93219123,18,9.48,2,_,1380.29,32.78829021,,No,50.28184503,32.4778143,High_spent_Large_value_payments,448.264174,0,1.1789,-0.6354,0.9048,0.1289,0.2929 -0x2595d,CUS_0x3e03,August,24,504-67-6939,Developer,35971.49,,5,5,18,2,"Personal Loan, and Not Specified",,14,9.78,9,Standard,132.82,35.75119972,27 Years and 10 Months,Yes,54.48174018,66.96415967,High_spent_Medium_value_payments,438.3165168,0,0.4816,0.1776,-1.2837,-1.8376,1.2682 -0x25969,CUS_0xbd2e,August,44,274-13-0638,Teacher,7161.64,758.8033333,8,8,30.06745738,3,"Student Loan, Debt Consolidation Loan, and Credit-Builder Loan",32.80930382,22.66864127,8.61,6,_,3132.079319,33.57571535,11 Years and 8 Months,Yes,12.42722636,36.47560226,Low_spent_Small_value_payments,290.2572168,0,-0.0014,0.2401,0.5933,2.2403,-1.0716 -0x25975,CUS_0xc675,August,35,845-32-7827,Developer,73884.6,6255.05,6,870,30.88954781,7,"Auto Loan, Payday Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,17.60645712,5.71,12,Bad,2367.709416,40.90858924,9 Years and 9 Months,Yes,1672.582938,113.557511,High_spent_Large_value_payments,385.0344698,0,-0.3415,-1.4477,1.0211,0.8077,1.2034 -0x25981,CUS_0x5054,August,20,493-32-5111,Lawyer,43240.45,3608.448643,1,4,11,2,"Debt Consolidation Loan, and Payday Loan",0,0,8.07,3,Good,1157.367193,33.11673607,29 Years and 11 Months,No,209.8445636,303.2544617,Low_spent_Large_value_payments,331.5204637,0,-1.4157,-1.0297,1.4879,0.8083,-1.5732 -0x2598d,CUS_0x27e5,August,21,373-40-0600,Media_Manager,24415.29,2227.6075,7,6,8,3,"Not Specified, Not Specified, and Home Equity Loan",,9,13.35,8,_,898.7,37.19232441,,NM,40.22913294,71.38623825,High_spent_Medium_value_payments,361.1453788,0,0.9839,0.7754,0.6561,-0.8194,-0.8981 -0x25999,CUS_0x2002,August,39,823-93-4115,Entrepreneur,72305.9,5766.491667,5,7,15,100,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Not Specified",,19,1.49,6,_,1169.62,27.90566689,28 Years and 4 Months,NM,216.7762979,10000,Low_spent_Small_value_payments,181.3307088,0,0.6773,0.7631,-0.117,0.6287,1.1452 -0x259a5,CUS_0x6f95,August,29,582-29-6541,Musician,41792.4,3781.7,6,6,20,100,"Payday Loan, Debt Consolidation Loan, Not Specified, Student Loan, Mortgage Loan, Auto Loan, Student Loan, Auto Loan, and Not Specified",31.06462649,,27.15,12,Bad,4452.95,30.24790336,,NM,297.1318594,28.02137212,High_spent_Large_value_payments,293.0167685,0,-0.7377,-0.1121,-0.3741,0.2039,-1.8667 -0x259b1,CUS_0x1f97,August,50,346-14-6418,Journalist,175718.64,14707.22,3,5,11,0,,3.882809474,4,6.85,5,_,1336.86,41.37472712,23 Years and 5 Months,No,0,356.5503614,High_spent_Medium_value_payments,1364.171639,0,1.3484,1.2134,0.8679,0.2032,-0.5451 -0x259bd,CUS_0xbf18,August,34,481-81-6404,Developer,81100.8,6822.4,8,8,31.88954781,8,"Not Specified, Personal Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",30.41507475,21,19.6,10,Bad,3988.3,26.89277063,1 Years and 0 Months,Yes,1734.869721,,Low_spent_Medium_value_payments,157.6094927,0,-0.5198,1.1036,-0.311,-0.3134,2.3638 -0x259c9,CUS_0x9efc,August,28,168-85-8251,Accountant,33418.55,,6,3,5,2,"Student Loan, and Payday Loan",18.52367005,17,18.98,7,Standard,415.34,36.03107457,11 Years and 0 Months,Yes,37.6323299,126.4780681,Low_spent_Medium_value_payments,389.8775187,0,1.1356,1.5443,-0.5154,0.5118,1.4675 -0x259d5,CUS_0xb5b5,August,32,875-86-2440,Media_Manager,20466.63,1688.5525,10,9,21.06745738,5,"Mortgage Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, and Payday Loan",39.82873283,20.43414501,2.73,11,Bad,3697.568706,27.53040837,0 Years and 9 Months,Yes,67.94692029,,Low_spent_Medium_value_payments,253.5238645,0,0.3582,-1.1779,-2.0837,-0.8424,1.8042 -0x259e1,CUS_0x85a2,August,34,130-19-9872,Writer,30053.32,2254.443333,8,8,29.88954781,917,"Personal Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",,22.58275697,14.96,11,Bad,1426.594167,25.68007176,13 Years and 5 Months,Yes,1453.947726,,Low_spent_Large_value_payments,201.0354583,0,0.5034,0.4679,-0.0033,-0.5747,-0.0906 -0x259ed,CUS_0x8c51,August,39,755-61-1458,Architect,62661.54,5053.795,5,5,12,1,Personal Loan,,20,7.2,1,Good,466.2,26.07163365,27 Years and 8 Months,No,32.72113103,408.3776664,Low_spent_Medium_value_payments,344.2807026,0,0.626,2.5036,-1.5705,-0.3445,0.0044 -0x259f9,CUS_0x5f5a,August,34,862-68-6961,Lawyer,66691.23,,8,6,20,4,"Home Equity Loan, Not Specified, Student Loan, and Student Loan",,19,25.78,,Standard,760.71,21.97057253,17 Years and 6 Months,Yes,213.9379481,382.5386302,Low_spent_Medium_value_payments,238.8836718,0,-0.6988,-1.6515,0.9601,-0.8663,-0.1213 -0x25a05,CUS_0x16b6,August,46,687-03-0707,Accountant,72936.68,,0,2,11.28836175,0,Student Loan,3.675898446,7,11.47,0,_,717.6423063,36.54916059,31 Years and 11 Months,No,51.67217488,714.3034155,High_spent_Small_value_payments,521.3099435,0,0.2364,0.7226,0.6699,1.0438,1.6788 -0x25a11,CUS_0x531a,August,38,819-33-4443,Journalist,32812.59,,6,6,5,3,"Auto Loan, Debt Consolidation Loan, and Home Equity Loan",13.60667551,14,4.82,3,Standard,437.84,23.82233078,,No,54.63756584,257.3654376,Low_spent_Small_value_payments,256.2352466,0,-1.0944,-0.5942,0.8467,-0.3112,1.0482 -0x25a1d,CUS_0x50e9,August,34,190-22-7771,Writer,59650.23,,5,7,15,6,"Auto Loan, Personal Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",11.34299647,12,10.89,12,Standard,1294.13,28.81345205,7 Years and 0 Months,Yes,250.6079993,179.6184694,!@9#%8,287.5587812,0,1.6579,-0.9339,1.5731,-0.8663,-2.2028 -0x25a29,CUS_0xb57,August,21,390-37-7471,Architect,63248.52,5074.71,7,10,268,3,"Credit-Builder Loan, Auto Loan, and Not Specified",10.87621571,9.683270317,11.99,10,Standard,2365.834471,23.26031551,10 Years and 9 Months,Yes,134.6434839,270.8267355,Low_spent_Medium_value_payments,382.0007806,0,-2.1338,-2.0616,-2.3147,0.1021,-1.1407 -0x25a35,CUS_0x523e,August,44,329-75-7434,Manager,97431.9,7992.325,7,3,17,2,"Payday Loan, and Home Equity Loan",,10,12.37,0,_,1095.56,35.81708278,19 Years and 4 Months,Yes,151.2821462,201.5063727,Low_spent_Large_value_payments,716.4439811,0,-0.3014,0.2116,-1.2969,-0.78,0.3031 -0x25a41,CUS_0x9f04,August,36,237-55-4293,Accountant,63432.45,5188.0375,4,4,16,0,,14.98520256,13,17.87,5,Standard,839.6739138,38.95394509,21 Years and 5 Months,Yes,0,116.5769749,High_spent_Medium_value_payments,664.4417875,0,1.4805,-1.8923,0.3588,1.7531,1.2272 -0x25a4d,CUS_0x21d8,August,30,721-81-2253,Accountant,37471.52,,5,4,8,4,"Not Specified, Mortgage Loan, Home Equity Loan, and Home Equity Loan",2.971489492,4,3.4,7,Good,962.64,29.82292091,28 Years and 10 Months,No,107.1894367,43.14900853,!@9#%8,431.8242214,0,0.9633,0.7923,0.7549,-2.2454,-2.6414 -0x25a59,CUS_0x2274,August,41,373-63-8139,Entrepreneur,105931.17,8672.5975,8,7,11,5,"Mortgage Loan, Auto Loan, Mortgage Loan, Student Loan, and Mortgage Loan",18.19728267,12,23.1,8,Standard,223.0317398,29.10149915,5 Years and 8 Months,Yes,392.842437,507.9847331,High_spent_Small_value_payments,274.2674198,0,1.2821,0.9743,0.4463,-0.3366,-0.1965 -0x25a65,CUS_0xc633,August,23,872-64-6789,Lawyer,26686.14,,4,6,18.28836175,6,"Home Equity Loan, Not Specified, Home Equity Loan, Not Specified, Not Specified, and Home Equity Loan",10.53308438,11,13.81,8,_,220.17,24.99752031,8 Years and 10 Months,Yes,81.39258259,573.1335451,Low_spent_Large_value_payments,263.8958333,0,0.2578,0.7067,-0.9861,-1.0738,0.7547 -0x25a71,CUS_0xb5e4,August,28,576-97-6011,Mechanic,36772.66,,1,4,4,3,"Not Specified, Personal Loan, and Auto Loan",3.127865549,4.678905734,7.25,4,Good,465.3854776,24.26505216,16 Years and 0 Months,No,67.83515072,,Low_spent_Medium_value_payments,250.5636128,0,0.6399,-0.1004,0.6621,-0.4532,1.6416 -0x25a7d,CUS_0xc429,August,35,557-76-8375,Mechanic,20849.21,1503.434167,8,5,33,6,"Student Loan, Home Equity Loan, Not Specified, Personal Loan, Student Loan, and Home Equity Loan",,20,4.56,14,Bad,1694.32,38.29810617,11 Years and 10 Months,Yes,53.20901515,45.59113672,High_spent_Small_value_payments,311.5432648,0,0.0143,0.0713,-0.182,-2.1682,-0.2805 -0x25a89,CUS_0x4e14,August,56,812-46-5104,Accountant,81385.18,5712.091,1,7,4.288361749,0,Debt Consolidation Loan,13.11823516,,4.59,7,Good,356.3260369,26.42587866,29 Years and 11 Months,No,950.3123521,,Low_spent_Medium_value_payments,243.064407,0,0.3564,-0.1137,-1.112,-0.8752,-0.6724 -0x25a95,CUS_0x2d37,August,28,126-78-6406,Developer,60253.11,4817.0925,8,6,11,100,"Credit-Builder Loan, Personal Loan, Student Loan, Mortgage Loan, and Student Loan",20.73361654,,13.73,4,Standard,2071.047601,30.81733228,14 Years and 10 Months,Yes,195.7413392,133.3657282,High_spent_Small_value_payments,412.6021826,0,0.5878,-1.1248,0.7441,-0.6624,2.1408 -0x25aa1,CUS_0x46a2,August,45,118-01-4299,Manager,12821.845,,7,6,17,1,Credit-Builder Loan,24.54594089,19,5.76,3,_,1475.23,36.08970508,18 Years and 5 Months,No,10.21149374,56.73240084,Low_spent_Medium_value_payments,297.1048138,0,-1.1631,-0.7202,-1.1178,0.1472,0.6379 -0x25aad,CUS_0x55f0,August,45,564-67-2715,Lawyer,51682.08,,7,5,18,7,"Student Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",26.08940995,18,14.08,,_,382.05,35.26898855,18 Years and 2 Months,Yes,224.3355992,177.8154953,High_spent_Medium_value_payments,289.4329055,0,-0.7146,-2.2225,1.5541,-0.96,0.155 -0x25ab9,CUS_0x8eb8,August,50,530-13-2709,Mechanic,39309.84,3276.82,6,4,16,1,Not Specified,11.19602111,11,11.07,6,Standard,1429.96,24.95136973,,No,25.77870944,135.7989401,High_spent_Medium_value_payments,416.1043505,0,-1.0808,-0.7922,0.9734,-0.4144,-1.6733 -0x25ac5,CUS_0x22c4,August,27,153-92-8711,Media_Manager,80288.08,6961.673333,8,10,4962.889548,6,"Home Equity Loan, Payday Loan, Personal Loan, Student Loan, Mortgage Loan, and Home Equity Loan",,20,19.88,8,Bad,2848.95,37.56953126,13 Years and 6 Months,Yes,1724.076945,189.6866141,High_spent_Medium_value_payments,338.0736931,0,0.2704,-0.1666,0.0109,-0.9756,0.5685 -0x25ad1,CUS_0x4dc9,August,39,011-55-5907,Doctor,47689.47,,9,10,20,5,"Credit-Builder Loan, Mortgage Loan, Personal Loan, Home Equity Loan, and Student Loan",,18,22.06,8,Bad,4675.57,25.83389037,11 Years and 4 Months,Yes,194.6275196,56.64727682,High_spent_Large_value_payments,367.4374536,0,2.5274,-3.5687,-0.8121,-0.819,-2.5019 -0x25add,CUS_0xbb53,August,32,671-00-6399,Lawyer,77633.04,6635.42,7,5,34,5,"Payday Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Payday Loan",,27.15693737,19.48,8,Bad,3691.708113,41.14351912,0 Years and 11 Months,Yes,227.7770647,476.3591133,Low_spent_Large_value_payments,229.405822,0,-0.2485,-1.3864,0.7406,1.6424,-0.8272 -0x25ae9,CUS_0x9ed9,August,46,867-19-4475,Entrepreneur,32348.4,2966.7,5,7,7,0,,,20,1.66,5,Good,1416.25,36.51201103,32 Years and 8 Months,No,0,49.04089226,High_spent_Medium_value_payments,497.6291077,0,0.0143,0.4137,-0.6316,0.1335,-0.1375 -0x25af5,CUS_0x50d4,August,20,788-66-6795,Engineer,41159.54,,9,6,16,7,"Credit-Builder Loan, Auto Loan, Student Loan, Auto Loan, Home Equity Loan, Personal Loan, and Not Specified",41.99806635,27.45003613,4.46,10,Bad,2701.893665,22.41569672,19 Years and 11 Months,Yes,157.1269389,,Low_spent_Small_value_payments,174.9163372,0,0.2895,0.9766,1.058,0.3222,0.9092 -0x25b01,CUS_0xffd,August,30,832-88-8320,Scientist,41398.44,3749.87,8,7,13,6,"Auto Loan, Payday Loan, Payday Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",16.21448962,11,12.07,7,Standard,1537.338271,39.91665517,18 Years and 9 Months,Yes,182.9766495,49.04826961,High_spent_Large_value_payments,389.4346308,0,-0.9115,-0.0538,1.4992,0.5736,-1.1839 -0x25b0d,CUS_0x4c9a,August,31,462-85-2090,Manager,20758.54,,3,9,20,2,"Auto Loan, and Debt Consolidation Loan",,14.14441145,2.63,11,Standard,2409.365219,40.77396504,,Yes,22.55721744,43.72556856,High_spent_Small_value_payments,396.5050473,0,0.1694,1.8654,0.0628,0.0157,0.3245 -0x25b19,CUS_0xa93b,August,42,831-44-6626,Media_Manager,59597.84,5173.486667,7,5,33.06745738,9,"Not Specified, Student Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Student Loan",,15,29.53,11,_,3334.700954,32.99110107,1 Years and 6 Months,Yes,367.57928,120.7349357,High_spent_Large_value_payments,242.3141631,0,1.4109,2.6779,0.1644,1.3376,-0.8437 -0x25b25,CUS_0x8848,August,37,930-77-6871,Engineer,62756.2,,10,10,18.95700519,8,"Home Equity Loan, Auto Loan, Credit-Builder Loan, Student Loan, Auto Loan, Payday Loan, Home Equity Loan, and Personal Loan",34.20717623,18.8309602,16.38,12,_,4449.684417,30.50420177,4 Years and 4 Months,Yes,1647.10015,182.2446942,Low_spent_Medium_value_payments,249.0731196,0,0.3063,0.8882,-0.5835,-2.3387,-1.7109 -0x25b31,CUS_0x6334,August,80,756-38-8343,Mechanic,13944362,8216.153333,5,6,15,5,"Payday Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",20.68448978,14,17.25,4,Standard,698.23,24.56758195,14 Years and 11 Months,Yes,302.9162402,,High_spent_Large_value_payments,590.387889,0,-0.2785,0.6833,0.4201,0.594,0.515 -0x25b3d,CUS_0xb59b,August,35,447-00-0042,Mechanic,96047.22,7775.935,3,3,1,1,Debt Consolidation Loan,12.81829125,,4.75,4,Good,1268.796969,41.17451121,17 Years and 11 Months,No,49.65672666,144.619031,!@9#%8,837.508835,0,0.1102,-0.4719,0.9743,0.0528,-0.0059 -0x25b49,CUS_0x5e3f,August,31,333-37-8000,Lawyer,33137.28,,8,10,26.88954781,9,"Debt Consolidation Loan, Not Specified, Mortgage Loan, Student Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",38.38787444,21.75214424,23.71,10,Bad,3907.038906,28.65959836,8 Years and 3 Months,Yes,1500.890828,,Low_spent_Large_value_payments,155.7245926,0,0.0624,-1.4051,0.5084,0.4869,0.9283 -0x25b55,CUS_0x2954,August,45,988-44-7575,Musician,22443.96,,4,6,17,100,"Mortgage Loan, Payday Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",19.86795106,19,,,Standard,429.65,31.42126641,7 Years and 4 Months,Yes,51.24705748,183.6222339,Low_spent_Small_value_payments,266.5637086,0,0.1237,-0.6664,0.9575,-0.8833,0.9131 -0x25b61,CUS_0x407e,August,36,303-58-1131,Lawyer,22276.68,2014.39,5,6,14,2,"Personal Loan, and Student Loan",12.32043951,10,2.93,5,Standard,124.57,37.70497909,21 Years and 4 Months,No,20.93431304,17.6334321,High_spent_Large_value_payments,402.8712549,0,0.5128,-0.464,-0.3897,-0.9102,1.747 -0x25b6d,CUS_0xbc38,August,19,#F%$D@*&8,Writer,90135.03,7298.2525,6,4,6,1,Personal Loan,13.01519145,8,11.82,6,Good,785.9,40.87004204,19 Years and 5 Months,No,43.77843641,,High_spent_Large_value_payments,810.9172047,0,0.9134,1.385,0.3843,0.0597,0.9244 -0x25b79,CUS_0x56e5,August,24,823-62-0090,Media_Manager,127313.4,9556.314852,5,5,5,1,Personal Loan,,10,3.86,2,_,1075.47,36.87244514,27 Years and 6 Months,No,1179.253921,10000,High_spent_Medium_value_payments,781.1940321,0,-0.7367,0.2485,-1.8478,-0.5178,0.7373 -0x25b85,CUS_0xb997,August,22,202-68-4543,Doctor,93955.16,8126.596667,5,5,5,2,"Home Equity Loan, and Mortgage Loan",12.19015198,10,1.73,4,Standard,425.43,37.49997506,28 Years and 4 Months,No,91.98741417,554.7992009,Low_spent_Medium_value_payments,445.8730516,0,1.4904,0.1987,-0.4676,-0.9166,2.0451 -0x25b91,CUS_0x7701,August,58,369-38-9871,Entrepreneur,48115.6,4287.633333,8,5,12,2,"Mortgage Loan, and Debt Consolidation Loan",26.24681929,18,-2.81,5,_,398.0896205,33.04846341,25 Years and 6 Months,No,45.39216349,145.4304621,High_spent_Medium_value_payments,509.1031436,0,-0.7044,0.066,0.4566,-0.5108,-1.224 -0x25b9d,CUS_0x509d,August,23,620-56-7834,Doctor,78668,6539.666667,8,4,17,4,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Auto Loan",27.15227082,19,16.66,6,Standard,1211.41,31.4452656,9 Years and 6 Months,Yes,210.5923623,92.42689708,High_spent_Large_value_payments,590.9474072,0,-0.0578,2.3437,1.7217,-1.7745,-0.7651 -0x25ba9,CUS_0xa66c,August,24,770-36-8261,Accountant,74349.18,6133.765,0,3,2,2,"Home Equity Loan, and Debt Consolidation Loan",0,0,4.64,5,_,850.4397332,26.65558976,28 Years and 10 Months,No,12736,415.7085721,Low_spent_Large_value_payments,441.7909193,0,1.1119,0.7145,-1.0921,2.7886,1.3373 -0x25bb5,CUS_0xbce0,August,21,559-50-3448,Journalist,98828.92,8505.743333,5,7,6.288361749,0,,3.154496134,7,12.2,5,Standard,744.4104065,31.70549992,31 Years and 9 Months,Yes,0,1388.088753,Low_spent_Small_value_payments,289.9671906,0,0.4828,0.6857,-0.2531,1.3484,1.3353 -0x25bc1,CUS_0x52ee,August,22,827-19-3784,Manager,87974.28,,5,8,9.288361749,2,"Home Equity Loan, and Auto Loan",7.020635251,9,6.75,8,Standard,60.08,28.07522838,19 Years and 5 Months,No,92.20829414,709.9452023,High_spent_Medium_value_payments,590.0029646,0,0.4874,-0.3765,0.973,-2.8889,-0.6087 -0x25bcd,CUS_0x48a,August,23,925-53-5258,Mechanic,32700,2802,2,4,5,18,,0,2,7.16,4,Good,1333.26714,25.16486964,17 Years and 0 Months,No,0,270.193801,!@9#%8,319.6917499,0,1.3161,-0.7298,0.4604,0.7191,0.6423 -0x25bd9,CUS_0x6c58,August,18,897-32-6460,Accountant,9409.45,,5,6,13,7,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Student Loan, and Personal Loan",8.990465978,10,10.11,7,Standard,209.02,40.70951467,8 Years and 3 Months,Yes,37.52407485,33.74433577,Low_spent_Large_value_payments,293.9436727,0,-2.1066,-0.401,-0.4713,0.4702,-0.4715 -0x25be5,CUS_0x41d3,August,48,170-57-5121,Engineer,62976.28,5321.023333,0,3,12,0,,,2,6.05,3,_,60.67123809,35.67882788,16 Years and 0 Months,No,0,615.8972622,Low_spent_Medium_value_payments,266.9360039,0,0.0554,-1.1848,1.741,1.0734,2.1366 -0x25bf1,CUS_0x5b77,August,22,659-51-2259,Manager,81431.96,6790.996667,4,7,5,2,"Credit-Builder Loan, and Auto Loan",25.63630414,19,16.16,7,Standard,2352.06,38.92519023,9 Years and 6 Months,Yes,104.2490389,244.5154966,Low_spent_Large_value_payments,600.3351312,0,0.3927,-1.7447,-0.2994,0.3976,-0.4671 -0x25bfd,CUS_0x4af4,August,28,860-10-5503,Entrepreneur,64363.92,5611.66,4,6,6,5,"Personal Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Not Specified",,10,16.91,5,_,978.79,26.93891655,,Yes,176.843978,68.09845394,High_spent_Large_value_payments,556.2235681,0,1.3624,-1.6005,-1.0446,-0.2821,-0.8739 -0x25c09,CUS_0x4bff,August,35,697-66-3067,Scientist,56341.2,4755.1,8,6,13,3,"Auto Loan, Not Specified, and Student Loan",,10,8.13,7,Standard,1674.42,36.78330541,,NM,72.01375338,153.9259227,High_spent_Medium_value_payments,499.570324,0,0.4507,0.3062,0.7614,1.128,0.0147 -0x25c15,CUS_0x2cb5,August,52,200-60-2130,Doctor,72817.02,5800.085,805,7,5,1,Home Equity Loan,,9,11.35,,_,992.2,40.68064793,22 Years and 4 Months,No,53.57619796,105.9539708,!@9#%8,660.4783312,0,-0.5123,-0.9593,1.279,0.6039,0.9486 -0x25c21,CUS_0x436f,August,24,841-17-1977,Accountant,106707.93,,3,4,6,1,Not Specified,15.66525734,15,12.34,6,Good,1368.65,37.50612773,29 Years and 8 Months,No,63.46067795,215.8759147,High_spent_Large_value_payments,828.9961574,0,-0.2095,-1.0368,0.9761,0.1213,-0.2715 -0x25c2d,CUS_0x870c,August,45,310-73-7596,Manager,19631.26,1724.938333,2,4,9,4,"Not Specified, Student Loan, Debt Consolidation Loan, and Student Loan",0.110377501,4,,9,Good,764.0210024,27.05057589,32 Years and 5 Months,No,65.05129928,114.8911954,Low_spent_Medium_value_payments,284.5410087,0,1.1246,-0.8101,0.9927,0.8527,-0.1513 -0x25c39,CUS_0x6044,August,36,334-17-4619,Journalist,19147.2,1692.6,3,5,5,0,,20.80646522,19,9,0,Standard,1347.02,30.2283197,27 Years and 5 Months,Yes,75639,119.8557434,Low_spent_Small_value_payments,339.4042566,0,-2.0451,0.1212,0.4534,-2.3468,-0.6966 -0x25c45,CUS_0x163c,August,32,534-12-7952,Media_Manager,61465.78,,2,3,10.28836175,0,Debt Consolidation Loan,7.247661267,10,3.17,2,Good,539.2322339,32.13133503,18 Years and 5 Months,No,31.65073721,590.3422741,Low_spent_Large_value_payments,591.9184791,0,-1.3291,0.3158,-1.2952,0.4419,0.4791 -0x25c51,CUS_0x7a7d,August,41,952-44-5306,Accountant,16297.34,,4,10,22,100,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",11.95614587,10.94044676,14.9,6,_,2752.408871,25.15837091,19 Years and 4 Months,Yes,27.84216232,33.73335887,High_spent_Medium_value_payments,329.8356455,0,-0.26,0.4039,-0.7099,-0.657,2.2755 -0x25c5d,CUS_0x965d,August,38,717-35-0735,Doctor,96048,8139,3,4,100.2883617,2,"Home Equity Loan, and Payday Loan",9.689310404,10,7.94,,Good,775.561969,25.88268132,16 Years and 9 Months,No,156.9264704,1359.981568,Low_spent_Medium_value_payments,119.1687691,0,0.4734,1.2538,0.397,-1.2048,-1.0964 -0x25c69,CUS_0x3f82,August,23,570-96-4897,Mechanic,8409.98,553.8316667,3,7,18,100,"Personal Loan, and Mortgage Loan",29.09457692,22.94085318,19.45,8,Standard,1034.768464,34.05410289,9 Years and 5 Months,Yes,13.64140178,,Low_spent_Small_value_payments,308.0958244,0,0.5403,-0.04,-1.227,2.0892,-0.5444 -0x25c75,CUS_0x7b65,August,28,751-96-2010,Mechanic,8968.555,,10,8,31.95700519,8,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Not Specified, Mortgage Loan, Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",37.30450178,19,24.83,12,Bad,2726.270954,27.57577101,11 Years and 10 Months,Yes,1380.562277,61.63888984,Low_spent_Small_value_payments,214.7864222,0,-0.8048,-0.9176,0.3009,-1.5022,-0.2349 -0x25c81,CUS_0x90a1,August,36,920-95-9243,Doctor,32230.58,2770.881667,7,10,18,7,"Home Equity Loan, Home Equity Loan, Auto Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",27.2961416,19,6.31,16,_,1473.28,25.37674632,11 Years and 10 Months,NM,124.0748421,106.6828372,High_spent_Medium_value_payments,296.3304873,0,2.9502,1.1576,0.6059,-0.0977,0.4993 -0x25c8d,CUS_0xdfd,August,40,876-77-3604,Teacher,16321.82,1566.151667,8,10,23.88954781,7,"Personal Loan, Personal Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",49.67959971,27.33199657,2.4,12,Bad,3057.668905,36.86954764,15 Years and 3 Months,Yes,1412.906609,115.7653335,!@9#%8,223.6131426,0,-0.8869,-1.1187,-0.6986,-1.2932,1.4802 -0x25c99,CUS_0x74e7,August,26,171-29-0843,Doctor,60576.72,4876.86069,8,5,20,9,"Auto Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Not Specified, Payday Loan, Student Loan, and Debt Consolidation Loan",39.57129697,21,1.68,7,_,2061.17,38.67149041,14 Years and 9 Months,Yes,565.2012173,34.90779661,High_spent_Large_value_payments,451.1962965,0,1.153,0.8519,0.7427,0.5872,-2.1814 -0x25ca5,CUS_0x62f4,August,27,841-09-1439,Writer,42900.18,3515.015,6,7,16,5,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",,,8.91,10,Bad,1680.53,32.29270936,19 Years and 11 Months,Yes,93.5425359,117.9530939,Low_spent_Medium_value_payments,420.0058702,0,0.5432,-0.157,0.3774,-0.7882,0.3642 -0x25cb1,CUS_0xdca,August,49,274-16-1463,Manager,144066.24,11942.52,8,6,13,2,"Auto Loan, and Personal Loan",22.97313587,14.62475765,13.84,5,_,745.9251885,40.68496885,31 Years and 11 Months,No,225.7148085,570.9186201,Low_spent_Medium_value_payments,677.6185714,0,1.4016,-1.517,-0.4506,1.4911,0.5317 -0x25cbd,CUS_0x3397,August,45,097-59-6601,_______,39800.36,3097.696667,8,10,22.95700519,100,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Not Specified, Payday Loan, Home Equity Loan, and Personal Loan",,20,20,8,Bad,4464.930954,33.82084798,1 Years and 5 Months,Yes,1575.739045,226.0309132,Low_spent_Large_value_payments,56.94933943,0,0.6559,0.1692,-1.1283,-0.2474,-1.0048 -0x25cc9,CUS_0x3f2d,August,35,999-51-7557,Writer,126284.31,10718.6925,1,5,8,0,,0.45657385,4,,6,Good,865.0234662,35.00638124,16 Years and 3 Months,No,0,421.7194391,High_spent_Medium_value_payments,943.5994981,0,1.4764,0.3291,1.8323,-0.4495,-0.355 -0x25cd5,CUS_0x450,August,34,124-51-6203,_______,14971.72,,7,10,31,3,"Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",28.59344381,15,11.17,15,Standard,1618.3,37.50844446,15 Years and 5 Months,Yes,27.40635549,106.9545159,Low_spent_Small_value_payments,310.303462,0,-1.2322,0.68,-0.6956,-0.8664,-1.3247 -0x25ce1,CUS_0x1956,August,35,467-02-8044,Doctor,15666.495,1342.54125,4,7,8,7,"Home Equity Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",12.69736646,8,12.45,4,Standard,284.89,33.58162706,18 Years and 2 Months,Yes,75.52263887,,Low_spent_Large_value_payments,260.648133,0,-0.0206,-0.5764,-0.3809,1.7882,1.6273 -0x25ced,CUS_0x862b,August,45,710-51-5469,Manager,145282.24,12154.85333,5,7,10,1,Student Loan,17.82362221,12,1.55,762,Good,1417.24,26.79868463,23 Years and 9 Months,No,104.3514432,1203.775817,Low_spent_Medium_value_payments,187.3580735,0,-0.7056,-0.5387,-0.2704,-0.4323,-1.3894 -0x25cf9,CUS_0x290c,August,80,570-16-5655,Engineer,28954.04,,8,5,25,5,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",29.44516482,18.4052227,15.61,10,_,2357.420682,37.48399357,16 Years and 6 Months,Yes,96.25006738,,!@9#%8,305.9508418,0,-0.1235,-0.1071,-0.6822,-0.9778,-0.6379 -0x25d05,CUS_0xb5c3,August,29,197-53-4663,_______,16285.675,,4,3,6,5,"Auto Loan, Payday Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",20.3785444,14,18.67,7,_,295.08,23.70667951,17 Years and 5 Months,Yes,48.84413209,102.9100479,Low_spent_Medium_value_payments,258.2597783,0,-0.3453,-0.1516,-1.7251,0.155,-1.4189 -0x25d11,CUS_0x504e,August,18,569-84-9250,_______,72572.46,6233.705,4,4,7,4,"Personal Loan, Student Loan, Student Loan, and Home Equity Loan",24.33572612,15,13.88,8,Standard,1321.46,24.55178874,20 Years and 5 Months,NM,176.3744316,,Low_spent_Large_value_payments,302.622788,0,-0.0178,0.0261,1.245,0.2559,-0.8085 -0x25d1d,CUS_0x10f9,August,54,746-79-6875,_______,150131.68,11102.13532,5,1,4,0,,0,0,7.49,0,Good,1138.36,45.2558067,31 Years and 11 Months,No,1494.838012,180.7591381,High_spent_Medium_value_payments,1328.938195,0,2.05,1.4644,-0.9821,-0.9048,0.2844 -0x25d29,CUS_0xbbdd,August,42,501-72-4982,_______,40146.78,,6,6,15,5,"Mortgage Loan, Home Equity Loan, Student Loan, Student Loan, and Home Equity Loan",,24,16.72,12,Bad,3539.88,31.5642993,7 Years and 4 Months,Yes,160.7881505,21.77318672,High_spent_Large_value_payments,376.8951628,0,0.8978,0.4137,1.2467,0.3522,0.4586 -0x25d35,CUS_0x85dd,August,45,767-36-7303,_______,8974.555,783.8795833,10,8,28.88954781,7,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Not Specified, Payday Loan, and Credit-Builder Loan",34.09995543,24,14.87,7,_,1660.14,33.88323959,16 Years and 10 Months,Yes,1353.926706,57.4413357,Low_spent_Small_value_payments,262.6898349,0,-1.7422,-2.0905,-0.5051,1.747,-0.2499 -0x25d41,CUS_0xc22f,August,34,795-34-9348,Scientist,34671.15,,160,3,16,2,"Auto Loan, and Home Equity Loan",28.5121391,19,11.27,4,Standard,1071.97,22.55820151,21 Years and 10 Months,NM,49430,121.648177,Low_spent_Large_value_payments,359.7404836,0,1.2046,-0.4221,-0.4104,-1.4902,1.04 -0x25d4d,CUS_0x2637,August,80,272-33-1370,Writer,29090.5,2472.208333,5,7,5616,4,"Not Specified, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",,16,13.07,6,_,1612.7,39.66850827,16 Years and 5 Months,Yes,67.43973128,46.446501,High_spent_Large_value_payments,373.334601,0,-0.7298,1.3821,-0.0834,0.9032,1.0351 -0x25d59,CUS_0x4f88,August,26,527-49-4203,Lawyer,7195.3,,10,9,21.95700519,7,"Personal Loan, Credit-Builder Loan, Student Loan, Not Specified, Personal Loan, Student Loan, and Debt Consolidation Loan",33.70684502,21.83249261,11.99,13,_,2312.812085,39.14936372,20 Years and 6 Months,NM,1361.207529,23.02394455,Low_spent_Small_value_payments,228.1789901,0,1.4079,0.0735,0.2497,1.9509,1.4201 -0x25d65,CUS_0x650,August,28,487-65-9318,Lawyer,21471.58,1879.298333,7,3,16,2,"Credit-Builder Loan, and Student Loan",,8,5,4,Standard,68.06,36.03897976,24 Years and 2 Months,No,23.49831914,10000,High_spent_Small_value_payments,303.7758218,0,-0.6386,-0.6357,-0.9071,-2.283,1.4969 -0x25d71,CUS_0x1b3b,August,55,473-62-8692,Lawyer,76624.48,6123.373333,0,2,7.288361749,0,,13.03077881,12,2.82,8,Good,683.0413427,32.09173916,18 Years and 0 Months,No,0,,High_spent_Medium_value_payments,668.6404446,0,-0.0762,-0.5529,-0.5757,0.1317,0.7402 -0x25d7d,CUS_0x4c83,August,47,326-69-1811,Scientist,39362.03,3485.169167,0,3,10,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Personal Loan",8.609016233,7,10.03,8,Good,1283.75,27.2608943,27 Years and 8 Months,NM,121.7737021,95.91413369,High_spent_Medium_value_payments,380.8290809,0,-0.3074,0.5168,0.6981,-0.8159,1.5588 -0x25d89,CUS_0x544,August,33,163-45-1172,Mechanic,17013.29,1326.774167,813,1,10,1,Debt Consolidation Loan,0,1,11.93,3,_,1261.664766,28.05168403,32 Years and 6 Months,NM,13.10966287,,Low_spent_Small_value_payments,353.8408005,0,-0.7473,-0.5948,-0.5267,-1.559,-0.5163 -0x25d95,CUS_0x94de,August,37,349-98-3586,Writer,61167.9,,3,2,1347,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",3.354784034,5,6.74,4,Good,1186.043812,32.60780356,15 Years and 11 Months,No,176.7424221,347.057228,Low_spent_Medium_value_payments,282.1085369,0,-0.2962,0.6165,-0.1002,2.159,-1.9705 -0x25da1,CUS_0x5d6d,August,39,957-01-2791,Writer,126514.72,10341.89333,8,7,5,3,"Credit-Builder Loan, Home Equity Loan, and Auto Loan",23.11899087,18,10.64,2,Standard,470.42,27.04856408,,No,312.0328532,416.2697107,Low_spent_Small_value_payments,595.8867695,0,2.0947,0.6451,1.1416,-1.8855,0.4814 -0x25dad,CUS_0x2829,August,32,172-85-1573,Journalist,64901.37,,3,232,20,0,,,18,2.94,3,Standard,442.06,29.14553364,31 Years and 5 Months,Yes,0,126.263036,High_spent_Large_value_payments,643.581714,0,1.0884,-2.5422,-0.0668,1.6552,0.5919 -0x25db9,CUS_0xae66,August,31,721-45-4479,Writer,142560.36,11773.03,6,3,13,1,Student Loan,28.4464269,20.54065434,11.22,2,_,244.4985723,34.6674925,17 Years and 10 Months,No,76.77209392,326.0870941,High_spent_Small_value_payments,1034.443812,0,0.4647,1.0221,0.2702,-0.0296,0.9085 -0x25dc5,CUS_0x738b,August,25,769-44-1950,Accountant,123828.52,9317.324054,4,6,17,0,,13.00063217,9,4.33,7,Standard,1121.116547,33.19552055,32 Years and 8 Months,Yes,999.7192789,175.9167476,High_spent_Large_value_payments,1121.26003,0,-1.9843,-0.4411,-0.3177,0.7558,0.7145 -0x25dd1,CUS_0x296f,August,25,972-13-0672,Developer,125271.96,10374.33,2,7,1,4,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",12.68728771,11.85889482,12.44,7,Good,905.9154713,32.49706522,25 Years and 9 Months,No,241.0658852,99.10099316,High_spent_Large_value_payments,937.2661216,0,0.3975,-1.3883,0.0719,0.4312,-2.708 -0x25ddd,CUS_0x1d9e,August,42,861-85-5004,Lawyer,75994.22,6301.851667,1,4,6.288361749,0,Student Loan,16.27205965,,5.92,3,Good,101.0424814,25.10054955,27 Years and 9 Months,No,51.70282508,,High_spent_Large_value_payments,678.3593866,0,-0.9709,-0.406,0.1853,0.7582,-0.2159 -0x25de9,CUS_0x2e91,August,31,797-70-3063,_______,70926.06,5741.505,7,7,10,2,"Debt Consolidation Loan, and Credit-Builder Loan",23.88346143,19,9.79,6,Standard,332.75,32.45098261,29 Years and 10 Months,No,67.18577693,297.2373641,Low_spent_Large_value_payments,479.727359,0,-4.0979,0.7093,-0.1373,0.9362,-1.5337 -0x25df5,CUS_0x30fc,August,28,209-55-1275,Manager,90781.53,7505.1275,7,7,6,100,,,13,17.36,9,Standard,494.51,36.80995121,,Yes,0,688.2568751,Low_spent_Medium_value_payments,342.2558749,0,0.2023,-1.8145,-0.4162,0.2028,-0.5384 -0x25e01,CUS_0xb09,August,31,228-47-4867,Lawyer,146310.68,12124.55667,5,4,8.288361749,0,Debt Consolidation Loan,1.691311286,5,11.48,6,Good,928.28,30.77409115,22 Years and 8 Months,NM,72.25012458,703.2514565,High_spent_Large_value_payments,1096.891547,0,1.3641,-0.5137,-0.0255,0.3264,0.3452 -0x25e0d,CUS_0xbd8f,August,32,344-21-3701,Lawyer,107911.6,,3,3,17,2,"Home Equity Loan, and Home Equity Loan",,21.26328717,11.31,5,Standard,1214.644926,40.84395556,18 Years and 4 Months,No,110.6259887,285.0335702,Low_spent_Medium_value_payments,801.2037744,0,-0.1352,-0.4889,0.0508,-0.6034,1.3905 -0x25e19,CUS_0x68ea,August,47,#F%$D@*&8,Scientist,41646.88,3515.573333,4,4,3,4,"Personal Loan, Home Equity Loan, Student Loan, and Personal Loan",,8,9.62,5,Good,656.6183495,24.95943147,25 Years and 0 Months,No,80.7323498,73.36261781,High_spent_Medium_value_payments,457.210115,0,-1.31,0.4787,0.6184,0.7725,-0.7943 -0x25e25,CUS_0x1132,August,39,152-95-7926,Mechanic,46268.4,,5,4,20,4,"Student Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",30.57659279,20.25953181,9.58,9,_,1621.078608,30.4572227,14 Years and 0 Months,Yes,103.7780501,230.9491538,High_spent_Small_value_payments,323.6427961,0,0.7974,0.3586,0.2464,-0.0378,-0.4497 -0x25e31,CUS_0x1ea8,August,30,686-34-7861,Teacher,33896.53,,7,3,18,2,"Debt Consolidation Loan, and Payday Loan",13.3171094,10,10.95,,_,807.65,26.80055022,27 Years and 4 Months,Yes,40.29352918,88.09824698,!@9#%8,388.3793072,0,2.1565,0.2371,-0.7608,0.3495,0.6336 -0x25e3d,CUS_0xc394,August,34,747-43-9082,Architect,108484.38,,4,7,6,1,Payday Loan,28.17833355,17.06697356,10.07,7,Standard,1608.720415,42.67566356,31 Years and 3 Months,Yes,71.53422051,154.3125333,High_spent_Large_value_payments,896.1897462,0,-0.4953,-2.3845,-0.3942,0.1391,1.0258 -0x25e49,CUS_0xadbd,August,27,864-24-3672,Doctor,35793.97,2799.830833,5,6,7.288361749,4,"Personal Loan, Payday Loan, Not Specified, and Personal Loan",,11,9.92,0,Good,82.15,29.78119715,23 Years and 6 Months,No,113.8333908,,High_spent_Medium_value_payments,374.7069426,0,0.4668,-0.3246,0.1572,-0.5078,0.6142 -0x25e55,CUS_0x11c7,August,57,646-19-1493,Architect,36817.94,,5,4,5,3,"Home Equity Loan, Auto Loan, and Mortgage Loan",,,3.98,5,Good,933.3577947,35.27066262,17 Years and 2 Months,No,86.80991789,242.3402145,Low_spent_Small_value_payments,316.4919175,0,-1.8309,-2.6603,0.2346,0.3937,0.7215 -0x25e61,CUS_0x6294,August,28,221-84-2475,Manager,32825.81,,2,7,3,4,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,5,1.94,6,Good,1035.24,38.80888794,27 Years and 9 Months,No,64.30557528,242.5268528,Low_spent_Small_value_payments,248.1159886,0,-1.8055,-0.9687,0.0558,-0.918,0.5625 -0x25e6d,CUS_0x9674,August,25,949-10-3104,Scientist,18940.82,1281.401667,9,5,33,192,"Debt Consolidation Loan, Payday Loan, Not Specified, Auto Loan, Debt Consolidation Loan, and Student Loan",31.4190427,14.97237198,9.11,17,Bad,1510.273351,36.03811366,15 Years and 11 Months,Yes,87.85744537,44.62667406,High_spent_Small_value_payments,255.6560472,0,1.0378,0.4493,0.5986,-0.6531,0.15 -0x25e79,CUS_0x9ce3,August,24,914-39-8208,Doctor,14734.29,1393.8575,7,6,22,6,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Payday Loan, Student Loan, and Personal Loan",30.70130615,21.44517488,21.76,12,Bad,4664.575914,28.50110227,,Yes,50.45999619,35.1310787,High_spent_Small_value_payments,313.7946751,0,1.0094,1.3217,0.5959,-0.8748,-1.1344 -0x25e85,CUS_0x4a8f,August,26,021-30-1201,_______,34493.92,3043.493333,10,10,24.88954781,7,"Payday Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",18.90590914,,25.16,13,Bad,4664.842269,30.80773394,5 Years and 10 Months,Yes,1433.866542,,Low_spent_Small_value_payments,117.8857235,0,0.8552,0.2146,-2.3969,0.0756,-1.2268 -0x25e91,CUS_0x1b07,August,35,739-15-8297,Accountant,17818.6,1659.883333,4,6,14,1,Not Specified,23.72086954,15,10.91,3,Standard,301.52,37.16260615,18 Years and 10 Months,No,11.58110167,60.46858959,High_spent_Small_value_payments,353.9386421,0,1.0149,2.0099,0.117,0.4163,-1.5188 -0x25e9d,CUS_0xc345,August,24,176-40-0757,Architect,60015.32,5121.276667,7,4,14,7,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Personal Loan, and Payday Loan",,8,10.47,6,Standard,1095.15,26.80334705,15 Years and 9 Months,Yes,187.008683,63.61684473,High_spent_Large_value_payments,501.502139,0,-1.6924,2.1218,1.2889,-0.1553,-1.376 -0x25ea9,CUS_0x90ac,August,40,890-96-8226,Writer,18512.97,1494.7475,7,5,18,3,"Student Loan, Student Loan, and Mortgage Loan",,9,16.95,9,_,1366.56,26.30060522,,Yes,24.62117266,46.58327735,Low_spent_Large_value_payments,348.2703,0,-0.4832,-0.7354,0.0354,0.4229,1.2636 -0x25eb5,CUS_0x62f5,August,54,272-40-2510,Musician,99520.5,8479.375,3,1,4396,3,"Home Equity Loan, Not Specified, and Debt Consolidation Loan",,5,4.08,5,Good,487.7692057,38.79811417,16 Years and 8 Months,NM,196.5285911,,!@9#%8,743.8453926,0,-0.5462,2.1429,-0.959,0.293,-0.0155 -0x25ec1,CUS_0x334b,August,34,118-34-1378,Teacher,31906.07,,5,4,13,1,Credit-Builder Loan,16.07617753,14,3.38,0,Standard,901.87,26.91854803,16 Years and 2 Months,Yes,16.18593991,64.45254843,High_spent_Large_value_payments,444.1454283,0,0.3568,1.5908,0.75,1.6858,-0.2497 -0x25ecd,CUS_0x1232,August,18,441-26-1297,Developer,14937.49,,8,8,22.88954781,7,"Student Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Student Loan",27.44489031,15,24.17,9,Bad,3699.44,23.12096333,13 Years and 9 Months,NM,1374.444322,,Low_spent_Medium_value_payments,221.359656,0,1.3811,0.7218,-2.2247,-0.0976,-0.8614 -0x25ed9,CUS_0x64f0,August,19,655-81-0974,Architect,39977.21,,4,7,11,0,,9.558981908,10,9.62,4,Good,832.09,35.32808114,30 Years and 8 Months,No,0,90.54907092,!@9#%8,537.7943457,0,0.8918,-0.8037,0.0922,0.8979,-1.8044 -0x25ee5,CUS_0x40ad,August,23,715-14-3312,Scientist,65858.48,5421.206667,7,7,30,5,"Mortgage Loan, Auto Loan, Payday Loan, Not Specified, and Student Loan",24.64891256,,15.88,13,Standard,2584.590473,30.69812458,6 Years and 11 Months,Yes,261.2012178,198.5135219,High_spent_Medium_value_payments,332.405927,0,0.0157,0.3988,0.2303,0.8171,1.6152 -0x25ef1,CUS_0x2c0a,August,45,280-99-6832,Doctor,32625.59,,0,5,7.288361749,4,"Home Equity Loan, Not Specified, Student Loan, and Mortgage Loan",8.17277993,10,7.55,8,Good,177.9,35.62242881,29 Years and 3 Months,No,73.1250081,543.7039518,High_spent_Medium_value_payments,345.3884178,0,-0.0974,0.1659,0.1651,-0.5255,-0.423 -0x25efd,CUS_0x8788,August,25,138-38-7150,Musician,71025.4,,7,6,32,5,"Payday Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",25.61000333,16,17.12,10,Standard,2542.42,25.57191114,14 Years and 8 Months,Yes,195.207484,694.4404965,Low_spent_Small_value_payments,,0,-0.2957,0.6242,0.5008,0.4454,0.184 -0x25f09,CUS_0x944e,August,24,815-15-2261,Architect,11834.645,,5,7,10,2,"Credit-Builder Loan, and Payday Loan",18.33212615,13,15.62,10,Standard,948.0497722,37.72863755,13 Years and 10 Months,Yes,11.08957489,11544.22861,Low_spent_Medium_value_payments,299.2337451,0,2.3364,1.0973,0.5816,-0.1279,0.8141 -0x25f15,CUS_0x3048,August,40,375-64-6913,Scientist,81093.16,,10,7,18.06745738,7,"Auto Loan, Payday Loan, Auto Loan, Student Loan, Student Loan, Student Loan, and Home Equity Loan",34.82232816,21.8967997,15.72,12,Bad,5261.711052,33.11824166,10 Years and 0 Months,Yes,409.0394423,377.1218778,Low_spent_Medium_value_payments,168.8947253,0,-2.5098,0.7396,-0.9125,0.1959,-0.7653 -0x25f21,CUS_0x1285,August,43,540-18-1115,Architect,10692.16,,8,4,16,0,,17.86881731,,10.29,4,Standard,1350.85,34.60893055,32 Years and 0 Months,Yes,0,71.94175177,Low_spent_Large_value_payments,279.7595816,0,0.5825,-0.8642,-0.1416,-0.5484,0.5391 -0x25f2d,CUS_0x1d18,August,44,061-64-3430,Musician,33702.74,,7,3,19,2,"Mortgage Loan, and Not Specified",5.403571764,7,10.7,5,Standard,636.96,23.75205309,24 Years and 6 Months,Yes,37.99322924,246.3342421,Low_spent_Small_value_payments,305.5286953,0,-0.4563,1.1297,-2.7726,0.8779,-0.3519 -0x25f39,CUS_0x3855,August,32,#F%$D@*&8,Scientist,118677.54,9963.795,4,4,5.288361749,4,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",8.640318763,11,9.59,5,Good,916.4598261,38.82625433,30 Years and 6 Months,No,237.1063659,11643.21353,High_spent_Medium_value_payments,801.7522965,0,0.7986,-1.7583,0.0046,1.7173,-0.0093 -0x25f45,CUS_0x47fa,August,31,291-51-7240,Mechanic,64511.34,5440.945,7,3,15,0,,6.575040954,8,18.57,2,_,330.6,35.25141589,23 Years and 5 Months,Yes,0,535.1932838,Low_spent_Small_value_payments,298.9012162,0,-1.7788,0.7103,-2.1725,-0.3975,-1.2877 -0x25f51,CUS_0x89aa,August,44,018-63-7005,Manager,85744.12,7125.343333,6,7,11,2,"Auto Loan, and Debt Consolidation Loan",25.06665674,18,18.08,5,Standard,620.889816,40.55497776,15 Years and 10 Months,Yes,72.09917649,627.1701684,Low_spent_Large_value_payments,373.3869413,0,1.3138,-1.7374,0.896,2.1342,0.1378 -0x25f5d,CUS_0x4986,August,37,971-61-8388,Entrepreneur,41329.56,3421.13,2,3,7,1,Not Specified,,10,6.66,2,Good,1129.360257,39.86603006,23 Years and 10 Months,No,81751,105.4646035,High_spent_Medium_value_payments,479.4321862,0,-1.5883,-2.1299,-0.287,-0.4601,1.7285 -0x25f69,CUS_0xa053,August,39,094-81-5856,Writer,87695.34,,2,7,6.288361749,0,,8.565665511,10,6.52,6,Good,361.68,39.10183313,19 Years and 8 Months,No,0,562.9392558,High_spent_Large_value_payments,830.7927052,0,-1.6979,-1.0189,-1.6452,-0.2814,0.4758 -0x25f75,CUS_0x1619,August,52,683-59-7399,Media_Manager,20059.98,1523.665,8,5,12,966,"Home Equity Loan, Payday Loan, Not Specified, and Personal Loan",18.09638668,12.69754605,2.97,8,Good,983.5843041,32.47377276,16 Years and 10 Months,No,45.07682694,10000,Low_spent_Small_value_payments,267.184985,0,-0.2963,0.616,0.2874,-0.6189,-0.5846 -0x25f81,CUS_0x2654,August,38,647-67-8889,Media_Manager,139664.96,11777.74667,3,6,11.28836175,4,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, and Credit-Builder Loan",,12,12.39,9,Standard,331.8769214,28.81442726,30 Years and 2 Months,Yes,423.7310158,1652.736023,Low_spent_Large_value_payments,,0,-0.9205,-0.3998,-0.098,-1.1585,-0.4206 -0x25f8d,CUS_0xb11c,August,38,546-94-4789,_______,15319.65,,6,7,15,4,"Home Equity Loan, Auto Loan, Auto Loan, and Auto Loan",36.99147704,18.90491399,17.13,6,Bad,1668.557985,34.55750953,11 Years and 4 Months,Yes,28.18203339,191.8777785,Low_spent_Small_value_payments,216.0039381,0,-1.2513,-0.7915,3.1281,-0.2872,0.7117 -0x25f99,CUS_0xad4f,August,48,226-45-0652,_______,22620.79,,6,2,9,0,,,17.02005183,5.31,2,_,710.7550619,34.02642747,29 Years and 10 Months,No,0,205.2172804,Low_spent_Small_value_payments,256.9893029,0,-0.6711,0.5392,1.2934,-0.1185,-0.1056 -0x25fa5,CUS_0x51b3,August,33,837-85-9800,Media_Manager,59146.36,,3,6,6,1,Personal Loan,3.951835686,6,6.68,5,Good,418.03,27.6821857,20 Years and 8 Months,No,26.77841927,,Low_spent_Large_value_payments,389.4884832,0,1.1115,0.4881,-0.1167,0.3939,-0.2288 -0x25fb1,CUS_0x2084,August,21,253-72-7758,Architect,38321.39,,4,4,3,4,"Student Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",4.86732652,7,1.59,6,_,678.57,28.95169053,17 Years and 6 Months,No,362.0724534,259.135635,Low_spent_Medium_value_payments,242.0381355,0,0.8132,1.7183,0.5561,1.267,-0.0623 -0x25fbd,CUS_0x372c,August,19,340-85-7301,Lawyer,42903.79,3468.315833,0,4,6,1,Not Specified,14.32897531,,5.1,1,Good,929.992256,35.7166183,28 Years and 8 Months,No,34.97545669,131.3974711,High_spent_Medium_value_payments,446.6711422,0,-0.0692,2.5991,0.6546,0.5023,-0.6265 -0x25fc9,CUS_0xf16,August,51,868-70-2218,Media_Manager,16680.35,,1,1,5,4,"Payday Loan, Student Loan, Mortgage Loan, and Not Specified",0,0,5.69,8,Good,773.1229335,41.21236676,,No,41.11356059,78.7908955,Low_spent_Large_value_payments,310.8838063,0,0.0448,-0.441,1.7224,0.0605,-0.3941 -0x25fd5,CUS_0xaf61,August,53,133-16-7738,Writer,37188.1,3097.008333,1,4,5,3,"Home Equity Loan, Mortgage Loan, and Student Loan",7.170655249,9,5.38,3,_,540.0705331,39.30098031,30 Years and 4 Months,No,84.20594942,49.14469036,High_spent_Medium_value_payments,432.5593181,0,-0.2739,1.024,0.8225,-1.1673,-0.6862 -0x25fe1,CUS_0x8600,August,29,031-35-0942,Architect,20002.88,,10,8,29,5,"Personal Loan, Auto Loan, Mortgage Loan, Student Loan, and Student Loan",39.56432086,25,18.31,9,Bad,3571.7,37.14078351,6 Years and 3 Months,Yes,60.96477237,34.66290609,High_spent_Large_value_payments,337.3629882,0,0.4349,0.3931,-0.2057,-1.1032,0.1915 -0x25fed,CUS_0x942c,August,25,078-73-5990,Mechanic,39628.99,3359.415833,4,6,7,2,"Auto Loan, and Student Loan",,6.987191968,11.5,3,Good,558.1407778,34.19246265,31 Years and 10 Months,No,35.10402261,167.1638652,!@9#%8,393.6736956,0,0.269,0.4548,1.8275,-0.6616,-0.3135 +applicant_id,customer_key,application_month,applicant_age,applicant_ref_code,employment_sector,gross_annual_income_gbp,net_monthly_income_gbp,bank_accounts_held,credit_cards_held,avg_interest_rate_pct,active_loans_count,prior_debt_products,avg_payment_delay_days,late_payment_count,credit_limit_change_pct,credit_inquiry_count,debt_portfolio_quality,total_outstanding_debt_gbp,credit_utilisation_pct,account_tenure,minimum_payment_only,monthly_emi_total_gbp,monthly_investment_gbp,spending_profile,end_month_balance_gbp,bureau_risk_index,noise_feature_1,noise_feature_2,noise_feature_3,noise_feature_4,noise_feature_5 +0x1609,CUS_0xd40,August,23,#F%$D@*&8,Scientist,19114.12,,3,4,3,4,"Auto Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",3.003839368,6,11.27,4,Good,809.98,23.9337948,,No,49.57494921,24.78521651,High_spent_Medium_value_payments,358.1241676,0,0.0096,0.3799,-0.7024,1.3555,1.0984 +0x1615,CUS_0x21b1,August,33,004-07-5839,Teacher,34847.84,,2,4,6,1,Credit-Builder Loan,0,4,5.42,2,Good,552.7782349,32.93385629,27 Years and 2 Months,No,18.81621457,254.3181731,Low_spent_Small_value_payments,356.0781086,0,0.2982,1.2791,-0.3334,-1.4058,0.0679 +0x1621,CUS_0x2dbc,August,34,486-85-3974,Engineer,143162.64,12187.22,1,5,7.288361749,2,"Auto Loan, Auto Loan, and Not Specified",3.397441658,6,7.1,3,Good,1303.01,37.4537796,18 Years and 4 Months,No,246.9923195,10419.93746,High_spent_Small_value_payments,895.4945832,0,0.7221,0.2837,-0.4633,0.477,-0.4531 +0x162d,CUS_0xb891,August,55,072-31-6145,Entrepreneur,30689.89,2612.490833,2,5,4,100,Not Specified,6.563291448,9,1.99,4,Good,632.46,27.33251493,17 Years and 10 Months,No,16.41545166,125.6172505,High_spent_Small_value_payments,379.2163811,0,0.3027,-1.2377,0.1622,0.5844,-0.5938 +0x1639,CUS_0x1cdb,August,21,615-06-7821,Developer,35547.71,,7,5,5,100,,15.42325896,15,2.58,4,Standard,943.86,25.86292247,31 Years and 3 Months,Yes,0,181.330901,High_spent_Small_value_payments,364.0000157,0,0.0165,0.5916,-0.0633,-0.3095,-0.1099 +0x1645,CUS_0x95ee,August,31,612-70-8987,Lawyer,73928.46,5988.705,4,5,7.288361749,0,,3.722697154,7,10.14,,Good,496.9652121,30.66001632,32 Years and 6 Months,No,0,467.4827003,!@9#%8,796.2349097,0,1.0216,0.2224,0.196,-0.1553,0.9832 +0x1651,CUS_0x284a,August,34,411-51-0676,Lawyer,131313.4,10469.20776,0,1,7.288361749,2,"Credit-Builder Loan, and Mortgage Loan",0,2,9.34,4,Good,321.5766771,28.2669393,31 Years and 2 Months,No,911.2201793,1439.136684,Low_spent_Medium_value_payments,396.1113462,0,-1.056,-0.5684,-2.9168,-0.3979,0.8141 +0x165d,CUS_0x5407,August,30,500-92-6408,Media_Manager,34081.38,2611.115,8,7,16.06745738,3,"Not Specified, Auto Loan, and Student Loan",25.04234597,15.74044284,17.13,9,_,2131.386514,34.84679207,15 Years and 2 Months,Yes,70.47833267,29.32636371,High_spent_Medium_value_payments,384.5865157,0,0.6329,0.9175,0.3323,-1.4059,0.9399 +0x1669,CUS_0x4157,August,24,070-19-1622,Doctor,114838.41,9843.8675,2,5,7,3,"Personal Loan, Debt Consolidation Loan, and Auto Loan",12.45717609,11,8.24,8,Good,1377.74,27.81335364,21 Years and 11 Months,No,226.8927919,,High_spent_Large_value_payments,742.9221908,0,0.1571,1.3857,0.0331,-0.5824,0.62 +0x1675,CUS_0xba08,August,45,366-68-1681,Journalist,31370.8,,1,6,11.28836175,2,"Not Specified, and Payday Loan",0,2,5.76,5,_,377.3122015,36.64407942,27 Years and 0 Months,No,46.61612907,708.6247213,Low_spent_Small_value_payments,273.2623771,0,-1.0998,-1.6416,0.0368,-0.6711,1.7628 +0x1681,CUS_0xa66b,August,41,221-30-8554,Teacher,33751.27,2948.605833,5,5,20,3,"Credit-Builder Loan, Personal Loan, and Auto Loan",21.96752152,17,11,8,Standard,1328.93,31.13948358,,Yes,65.00817429,25.96961191,High_spent_Large_value_payments,443.8827971,0,-1.5273,-1.1713,-1.6957,-0.0371,0.1357 +0x168d,CUS_0xc0ab,August,33,342-90-2649,Engineer,88640.24,7266.686667,3,6,0.288361749,2,"Payday Loan, and Payday Loan",,,3.51,3,Good,821.0371038,29.94982576,26 Years and 0 Months,No,135.173371,532.6394307,High_spent_Large_value_payments,733.0533444,0,0.1153,0.0322,0.3269,-0.3459,-0.3945 +0x1699,CUS_0x3e45,August,36,414-53-2918,Entrepreneur,54392.16,4766.68,6,4,14,3,"Not Specified, Student Loan, and Personal Loan",8.587003628,8,5.54,7,Standard,179.22,32.87880507,27 Years and 5 Months,Yes,124.3920824,,Low_spent_Small_value_payments,147.1580197,0,-0.6007,0.4408,-0.8062,-0.4394,0.2101 +0x16a5,CUS_0x6c66,August,39,328-33-6328,Manager,8701.545,519.12875,6,5,32,7,"Personal Loan, Payday Loan, Student Loan, Auto Loan, Home Equity Loan, Student Loan, and Payday Loan",,10.57779194,8.86,9,Standard,2822.81745,28.81553706,9 Years and 6 Months,NM,36.54819717,,Low_spent_Small_value_payments,264.7720511,0,1.5391,1.0488,2.2947,0.5844,0.5928 +0x16b1,CUS_0xff4,August,37,655-05-7666,Entrepreneur,25546.26,,8,7,14,5,"Not Specified, Student Loan, Student Loan, Credit-Builder Loan, and Auto Loan",,13,7.83,5,Standard,758.44,39.3334879,18 Years and 9 Months,Yes,101.3286374,189.8158613,Low_spent_Medium_value_payments,230.4410013,0,0.1052,-0.4496,1.0531,-0.0591,1.3587 +0x16bd,CUS_0x33d2,August,31,#F%$D@*&8,Scientist,31993.78,,6,6,7,2,"Payday Loan, and Home Equity Loan",18.59463536,16,6.28,1,Standard,818.22,36.01279377,17 Years and 5 Months,Yes,45.14129822,97.58820324,Low_spent_Large_value_payments,421.4853319,0,1.7394,-0.3326,0.8168,-0.424,1.5792 +0x16c9,CUS_0x6070,August,22,891-55-9364,Accountant,92047.08,7591.59,6,7,16,0,,17.03664609,13.36262143,9.13,4,Standard,1402.391548,27.72764678,29 Years and 9 Months,Yes,0,268.0846033,Low_spent_Large_value_payments,761.0743967,0,1.0019,-1.4392,-2.516,0.7172,-0.4689 +0x16d5,CUS_0xfdb,August,46,928-91-4452,Teacher,32284.62,,6,7,17,6,"Credit-Builder Loan, Not Specified, Mortgage Loan, Payday Loan, Credit-Builder Loan, and Personal Loan",14.08496063,12,2.22,10,Standard,1283.37,27.93012371,7 Years and 0 Months,Yes,103.0375604,,Low_spent_Small_value_payments,117.0291074,0,-0.412,-0.0029,1.7105,-1.291,-0.1756 +0x16e1,CUS_0x3553,August,26,084-25-3745,Musician,97791.42,,6,6,12,0,,9.101083329,8,17.92,1,Standard,96.06682914,33.8944426,27 Years and 9 Months,Yes,629.8156531,121.3975757,High_spent_Medium_value_payments,947.6102964,0,0.2175,0.3993,1.1419,-0.3543,-1.0697 +0x16ed,CUS_0x4100,August,32,#F%$D@*&8,Entrepreneur,19300.34,1512.361667,6,7,17,5,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Not Specified",35.31732377,19,9.95,8,Bad,2430.21,23.70919322,18 Years and 9 Months,Yes,49.57206224,118.1855507,Low_spent_Medium_value_payments,263.4785537,0,1.6229,-0.5432,0.4773,0.5172,0.6593 +0x16f9,CUS_0x132f,August,41,561-60-9294,Musician,19514.88,,7,5,5241.067457,0,,,12.43784843,4.17,4,_,1236.00016,29.8051915,19 Years and 10 Months,No,0,99.14154149,High_spent_Small_value_payments,316.9621706,0,-0.2194,-1.4649,-0.3342,0.4689,1.0099 +0x1705,CUS_0xa16e,August,42,905-50-7912,Media_Manager,10183.015,1074.584583,7,5,18.06745738,5,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",,25.53528725,7.97,6,Bad,2145.598375,37.86033254,10 Years and 8 Months,Yes,37.58807284,71.12274735,Low_spent_Small_value_payments,262.0273502,0,-1.2763,0.0624,0.3805,1.0582,-0.4244 +0x1711,CUS_0xac86,August,20,028-16-4402,Entrepreneur,106733.13,,4,4,0.288361749,0,,3.638363804,6,0.86,1,Good,76.23,38.32266643,33 Years and 4 Months,No,0,804.7011858,!@9#%8,792.5790252,0,-0.0228,0.0752,-1.6038,-0.9976,0.1018 +0x171d,CUS_0x5b48,August,32,706-95-0150,Lawyer,12600.445,782.0370833,5,5,11.06745738,3,"Not Specified, Student Loan, and Student Loan",32.8598389,22.75677133,15.79,11,Standard,871.9245209,33.00217724,12 Years and 10 Months,Yes,26.06034753,,Low_spent_Small_value_payments,249.0494929,0,-0.088,0.8624,2.2933,0.1876,1.2734 +0x1729,CUS_0xa5f9,August,34,#F%$D@*&8,Mechanic,57983.12,4720.926667,9,8,32.06745738,8,"Payday Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Student Loan, and Student Loan",49.84840926,28.04855714,7.27,,_,4123.685234,25.74965503,12 Years and 9 Months,Yes,200.4326134,159.136722,High_spent_Medium_value_payments,335.8030434,0,0.8295,0.3896,-0.2723,-0.3483,-1.0701 +0x1735,CUS_0x4d43,August,48,#F%$D@*&8,Entrepreneur,20787.69,,8,1381,14,3,"Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",,14,8.13,3,_,614.6,35.34418762,18 Years and 5 Months,No,42.22199266,21.74553123,High_spent_Large_value_payments,375.9632261,0,0.1094,-0.3238,0.4326,-0.1085,0.7074 +0x1741,CUS_0xb95f,August,30,467-13-1148,Writer,34290.12,,9,898,25,7,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",,10.59672582,13.96,13,_,2950.040646,36.82064895,14 Years and 3 Months,Yes,185.1119826,,High_spent_Small_value_payments,249.7218009,0,-0.151,-0.0705,0.715,0.585,1.9456 +0x174d,CUS_0x3edc,August,32,663-16-3845,Accountant,43070.24,,3,3,18,100,Debt Consolidation Loan,8.254135196,8,8.97,8,Standard,1233.1,26.36569955,19 Years and 9 Months,Yes,30.57608482,403.5168089,!@9#%8,218.125773,0,0.6659,-1.0326,-0.9323,0.1993,-0.4446 +0x1759,CUS_0xbffe,August,40,311-13-7309,Architect,6515990,,6,3,15,3,"Payday Loan, Not Specified, and Auto Loan",15.04059638,12,4.89,2,Standard,400.07,23.17761748,30 Years and 10 Months,Yes,69.60292048,51.83085897,High_spent_Large_value_payments,339.5694705,0,-0.8118,1.7953,0.1498,0.6065,0.4662 +0x1765,CUS_0xb681,August,38,904-88-7361,Manager,39641.54,3007.461667,10,8,26.95700519,6,"Auto Loan, Student Loan, Payday Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",33.64980071,14.66921716,-2.46,8,Bad,2723.776796,35.87235343,9 Years and 3 Months,Yes,1495.865971,149.2678062,Low_spent_Large_value_payments,204.5620199,0,0.2867,0.6424,0.6062,-0.4831,-0.2521 +0x1771,CUS_0x9a71,August,55,889-07-2357,Scientist,20186.02,1684.168333,1,5,1,2,"Auto Loan, and Home Equity Loan",,6,6.83,4,Good,413.32,33.75820397,,No,29.53458372,153.5387964,Low_spent_Medium_value_payments,265.3434532,0,0.2451,1.0827,-0.6347,-0.0903,1.7732 +0x177d,CUS_0x6048,August,44,425-47-6723,Musician,18627.64,1387.303333,7,7,19,6,"Payday Loan, Not Specified, Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,21.41481718,5.07,7,Bad,1951.50666,38.78895429,19 Years and 4 Months,Yes,65.13948778,98.80418974,Low_spent_Small_value_payments,264.7866558,0,0.3476,1.156,0.4948,0.4217,-0.0379 +0x1789,CUS_0x95b5,August,22,602-55-1355,Engineer,12986.745,,4,3,10,2,"Mortgage Loan, and Payday Loan",24.46152873,17,11.8,7,Standard,1489.49,32.25544266,9 Years and 3 Months,Yes,16.71930023,91.82948181,Low_spent_Small_value_payments,277.374093,0,1.3909,-1.2994,-2.009,0.3949,-0.3425 +0x1795,CUS_0x4004,August,44,679-26-6464,Writer,58317,,8,5,9,6,"Mortgage Loan, Personal Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Personal Loan",19.40991097,,16.58,10,Standard,98.97,36.76366453,13 Years and 8 Months,Yes,149.8971994,59.9559875,High_spent_Medium_value_payments,506.6218131,0,-0.0113,0.0732,1.6027,0.7891,1.6551 +0x17a1,CUS_0xb101,August,37,253-91-2822,Scientist,42171.98,,2,7,10,3,"Auto Loan, Auto Loan, and Not Specified",,10,2.58,4,Good,556.91,35.96285294,22 Years and 0 Months,No,102.7629131,145.3992425,High_spent_Medium_value_payments,378.271011,0,0.5304,-0.0882,1.201,-0.5584,1.3922 +0x17ad,CUS_0x9b94,August,36,734-54-7098,Manager,71681.4,5799.45,3,6,15,1,Not Specified,,8,10.44,0,Standard,1152.207911,38.23451377,26 Years and 2 Months,NM,53.92351397,327.8367937,Low_spent_Medium_value_payments,510.20959,0,0.5583,1.6823,0.6054,-1.465,-0.183 +0x17b9,CUS_0x4080,August,19,995-37-8920,Mechanic,29469.98,2227.831667,7,7,25.06745738,5,"Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Not Specified",45.37373333,25.08667407,26.94,11,Bad,4071.260166,33.98625396,13 Years and 9 Months,Yes,69.68545857,24.06613145,High_spent_Medium_value_payments,352.3112887,0,0.4769,-0.164,1.7748,0.2189,0.11 +0x17c5,CUS_0x706a,August,20,431-58-4893,_______,72559.36,,4,5,17,4,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Payday Loan",,19,-1.26,5,Standard,1173.7,38.17098243,28 Years and 6 Months,No,215.8391706,105.7178731,High_spent_Medium_value_payments,556.9042896,0,-0.4801,-2.6162,0.4209,0.2345,0.8054 +0x17d1,CUS_0x42ac,August,37,700-60-3660,Musician,15566.02,1423.168333,8,5,32,4,"Home Equity Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",28.33087532,23,9.24,9,Standard,1693.95,36.57298991,8 Years and 5 Months,Yes,43.0705196,,Low_spent_Medium_value_payments,333.9677312,0,0.7028,-0.2142,-0.478,-0.6805,-0.57 +0x17dd,CUS_0x571f,August,19,397-28-9675,Developer,66567.32,,5,7,4.288361749,2,"Mortgage Loan, and Not Specified",15.76845393,14,-1.33,2,Standard,233.79,27.53281244,,NM,100.1893609,,High_spent_Large_value_payments,636.9940772,0,-1.5207,-0.4786,-0.0436,-0.2549,0.6098 +0x17e9,CUS_0xb5ff,August,33,060-81-1328,Media_Manager,12909.895,853.8245833,5,5,13,100,,22.45144464,15,7.58,3,Standard,602.5,23.57985072,17 Years and 8 Months,No,0,60.05263477,Low_spent_Medium_value_payments,305.3298236,0,0.1497,-1.2838,-0.2533,-0.623,-0.2416 +0x17f5,CUS_0x6a1b,August,33,252-50-2326,Accountant,30788.44,2623.703333,8,9,32.95700519,6,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",35.24443074,20,21.73,9,Bad,3693.490954,39.27772601,,Yes,1438.016465,242.5323493,!@9#%8,150.7711499,0,0.9169,-2.1677,-0.3678,0.2583,1.3894 +0x1801,CUS_0x9bc1,August,42,445-18-4420,Architect,20574.47,,6,1189,14,4,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,10,13.74,11,Standard,749.95,28.62902965,11 Years and 6 Months,Yes,49.34866632,,High_spent_Large_value_payments,322.7377426,0,-0.7642,0.3988,0.7704,-0.7122,0.3445 +0x180d,CUS_0xc65,August,22,473-91-5845,Lawyer,148699.32,12432.61,3,4,5,3,"Personal Loan, Mortgage Loan, and Payday Loan",10.26538599,8,9.2,1,Good,822.3567471,40.60538838,31 Years and 2 Months,No,364.9151774,371.9517636,High_spent_Medium_value_payments,799.4379832,0,0.1249,-0.2514,0.9361,-1.0472,-0.3668 +0x1819,CUS_0xaedb,August,20,#F%$D@*&8,_______,85554.03,7185.5025,4,2,2.288361749,0,,5.837227511,7,6.43,3,Good,1002.177729,40.59231453,,No,81050,510.1404033,High_spent_Large_value_payments,879.7520668,0,-0.7015,-2.7747,0.8205,2.2154,-1.6578 +0x1825,CUS_0x8e9b,August,18,925-51-5335,Entrepreneur,55829.79,,10,10,19.06745738,8,"Student Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Not Specified, Personal Loan, and Payday Loan",,19,23.99,11,Bad,3645.900954,38.8889718,11 Years and 0 Months,Yes,314.9017853,255.7295014,Low_spent_Small_value_payments,129.5966754,0,-0.5279,1.8613,0.3924,-0.1863,-1.3342 +0x1831,CUS_0x609d,August,27,911-47-6879,_______,14165.23,1057.435833,8,10,34.95700519,9,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Payday Loan, Payday Loan, Payday Loan, and Student Loan",,26,8.82,11,_,3020.580954,36.2247492,14 Years and 6 Months,NM,1382.351885,133.8825777,Low_spent_Small_value_payments,158.4587515,0,0.9232,-0.8441,-0.3809,0.777,0.9375 +0x183d,CUS_0x75c6,August,33,587-65-8904,Teacher,87215.68,,2,6,7.288361749,2,"Auto Loan, and Payday Loan",5.089582861,8,10.98,0,Good,625.746998,34.70191002,21 Years and 3 Months,NM,19734,771.3006059,High_spent_Medium_value_payments,573.1125062,0,-1.5005,-2.0154,0.7527,0.8811,0.757 +0x1849,CUS_0x9b3c,August,43,224-48-7837,Lawyer,81842.28,,10,9,25,9,"Student Loan, Auto Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Auto Loan, and Personal Loan",,16,16.25,11,Bad,3053.16,30.56175048,,NM,574.0657979,79.38081205,High_spent_Large_value_payments,267.5723901,0,-0.1541,-0.8006,0.8786,-1.899,-2.6295 +0x1855,CUS_0x22a3,August,42,477-90-5881,Doctor,95956.5,,8,4,11,2,"Personal Loan, and Student Loan",,,11.94,2,Standard,952.4644024,41.341414,32 Years and 2 Months,NM,95.52162878,626.8767648,Low_spent_Large_value_payments,450.3051884,0,0.4014,1.3629,-0.0973,0.8988,0.0472 +0x1861,CUS_0xb14,August,80,331-60-5414,Manager,49967.01,4091.9175,6,5,31,6,"Auto Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Student Loan",19.49290686,12.54248284,19.87,12,Standard,2435.729649,31.5207818,17 Years and 5 Months,Yes,156.0033117,116.361294,High_spent_Medium_value_payments,386.8271444,0,0.2875,-0.0949,-1.7743,-0.296,-0.7903 +0x186d,CUS_0xb986,August,18,#F%$D@*&8,Developer,39887.22,3224.935,10,9,16.88954781,100,"Not Specified, Student Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",41.07280465,22,17.25,14,Bad,3119.6,34.97086572,13 Years and 0 Months,NM,1456.954289,145.9405486,High_spent_Small_value_payments,285.2685809,0,-0.3091,1.6008,0.0272,0.9651,-1.1942 +0x1879,CUS_0xbe1b,August,44,853-17-1579,Developer,14129.76,1023.217588,8,5,22.06745738,8,"Student Loan, Payday Loan, Personal Loan, Not Specified, Mortgage Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",44.53187139,21.24453187,5.51,6,Bad,4882.506052,36.69267686,13 Years and 2 Months,NM,70.97506655,,High_spent_Medium_value_payments,209.4388278,0,1.0192,1.0906,2.3394,-1.2438,0.2456 +0x1885,CUS_0x9ce6,August,43,101-11-3105,Developer,123732.32,10416.02667,4,3,11,0,,8.482845149,8,8.92,,Good,1154.46,26.26810601,27 Years and 10 Months,No,0,589.8279399,Low_spent_Medium_value_payments,731.7747268,0,-0.0146,-0.844,0.2454,0.4614,0.3452 +0x1891,CUS_0x6ffb,August,37,716-35-4628,Writer,17251.38,,6,3,7,7,"Personal Loan, Student Loan, Home Equity Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Mortgage Loan",17.20903559,15,15.06,10,Standard,2431.64,32.94484421,,Yes,57.35116519,23.47260473,High_spent_Large_value_payments,324.6377301,0,1.1949,0.0881,-1.6007,-0.0573,-2.1645 +0x189d,CUS_0x4315,August,23,908-69-0212,Entrepreneur,36822.29,,8,7,5.288361749,4,"Not Specified, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,19,5.79,5,Standard,115.8631655,38.13561251,25 Years and 3 Months,No,95.80071292,715.9134705,Low_spent_Medium_value_payments,245.4682923,0,0.2907,0.7042,0.6406,-0.9528,0.8801 +0x18a9,CUS_0x3f5b,August,25,744-11-7914,Doctor,80108.31,6866.6925,5,3,17,0,,27.32361763,19,14.22,4,Standard,997.28,28.12327833,18 Years and 2 Months,Yes,0,127.886289,!@9#%8,808.782961,0,0.1089,-0.9811,-0.2403,1.5701,-0.9087 +0x18b5,CUS_0x9d78,August,21,423-77-6457,Scientist,69977.6,5978.466667,10,7,20,9,"Auto Loan, Personal Loan, Mortgage Loan, Auto Loan, Student Loan, Auto Loan, Mortgage Loan, Student Loan, and Auto Loan",32.20918268,18,6.81,11,Bad,3042.36,36.25111095,,NM,485.750431,510.0147632,Low_spent_Large_value_payments,,0,-0.7493,-1.0347,0.9216,0.2945,-0.377 +0x18c1,CUS_0x47db,August,20,#F%$D@*&8,Musician,78988.48,6449.373333,9,5,29,7,"Auto Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",,19.99935269,10.27,9,Bad,1998.817777,28.95543808,10 Years and 8 Months,Yes,291.7827603,162.0816014,!@9#%8,431.0729716,0,-1.7434,0.9454,-0.1171,0.7768,0.4437 +0x18cd,CUS_0x8f17,August,46,794-17-4490,Journalist,41746.76,3651.896667,8,5,32.06745738,3,"Mortgage Loan, Personal Loan, and Not Specified",,24.21915164,9.81,11,Bad,2373.099122,33.96883851,,Yes,102.2833975,85.99686894,High_spent_Large_value_payments,390.1891122,0,0.773,-1.1378,-0.8602,1.0234,1.0828 +0x18d9,CUS_0x7d0b,August,25,226-77-0587,_______,19981.6,1459.133333,10,8,20.88954781,7,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Student Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",45.82164195,24.66641707,23.58,12,Bad,5287.918343,30.8132951,10 Years and 9 Months,Yes,1401.901716,,Low_spent_Small_value_payments,168.0417092,0,-0.6076,-0.4486,-0.1057,-0.7085,0.4475 +0x18e5,CUS_0x7504,August,19,389-89-4542,Lawyer,73737.36,,7,3,18,4,"Not Specified, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",23.78826551,17,13.92,2,Standard,1219.39,37.84472129,31 Years and 8 Months,Yes,214.8134632,428.4559993,Low_spent_Large_value_payments,220.4085375,0,-0.1344,0.1848,-1.5893,0.1384,-0.0956 +0x18f1,CUS_0x774,August,34,761-11-3016,Musician,88362.46,,5,2,8,3,"Debt Consolidation Loan, Home Equity Loan, and Personal Loan",6.402364484,7,11.01,1251,Good,287.3984326,36.53896301,31 Years and 3 Months,No,211.1843903,90.49648093,High_spent_Large_value_payments,674.2980966,0,-1.6329,0.5937,1.0054,1.3927,-0.3707 +0x18fd,CUS_0x9f70,August,50,147-76-6929,Entrepreneur,118248.6,10115.05,5,1,3.288361749,0,,,13,3.69,8,Good,175.6905224,28.50619149,17 Years and 8 Months,NM,0,1138.582604,Low_spent_Small_value_payments,687.0398865,0,-0.7848,-0.0185,0.3281,1.4909,1.0899 +0x1909,CUS_0xab76,August,26,878-90-6321,_______,60162.1,5197.508333,5,7,5,7,"Student Loan, Student Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,10,12.79,9,Standard,1037.45,32.07861888,13 Years and 9 Months,Yes,50812,,Low_spent_Medium_value_payments,347.7706392,0,1.6559,1.6951,0.4265,0.5332,0.9164 +0x1915,CUS_0x5cdf,August,18,616-36-8188,Musician,75273.24,,8,6,32,5,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",24.33486995,11,12.8,8,Standard,2497.34,39.12441778,5 Years and 9 Months,Yes,351.3670447,369.4917202,Low_spent_Medium_value_payments,343.1662236,0,0.5832,-1.3795,-0.0482,-0.9434,0.0737 +0x1921,CUS_0x2184,August,18,496-44-5947,Media_Manager,54820.89,4295.4075,8,7,28,6,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Personal Loan",29.16640083,17,18.42,11,Bad,4795.13,28.20185655,3 Years and 6 Months,Yes,169.4819843,118.8780759,High_spent_Medium_value_payments,391.1806898,0,1.2449,-1.2583,0.9892,0.2253,0.1131 +0x192d,CUS_0xa156,August,80,#F%$D@*&8,Entrepreneur,58674.66,,8,5,15,4,"Not Specified, Payday Loan, Auto Loan, and Home Equity Loan",,28.05369658,1.29,11,_,2701.423653,33.80858373,13 Years and 8 Months,NM,116.1034169,334.2691645,Low_spent_Small_value_payments,322.0829186,0,1.6511,1.3913,0.4517,-1.0617,-1.9729 +0x1939,CUS_0x74f2,August,30,755-18-0308,Architect,30390.44,,5,6,5,4,"Mortgage Loan, Student Loan, Not Specified, and Mortgage Loan",,20,8.36,4,Standard,580.31,22.96052767,,No,64.84803821,,Low_spent_Small_value_payments,369.3704505,0,0.5339,1.1063,-0.5848,-0.6796,-0.5351 +0x1945,CUS_0x308b,August,43,547-23-7195,Doctor,45207.54,,8,8,2724.889548,6,"Mortgage Loan, Auto Loan, Personal Loan, Student Loan, Home Equity Loan, and Student Loan",32.97525229,23.46350071,9.78,13,Bad,2764.842264,25.09430322,16 Years and 11 Months,Yes,1472.396717,,!@9#%8,142.0769721,0,-0.5114,0.3233,2.102,-0.0194,1.9889 +0x1951,CUS_0x2827,August,24,486-07-1289,Scientist,144546.72,,0,3,7,2,"Payday Loan, and Not Specified",7.014737246,7,6.08,1,_,905.3676909,45.21691024,23 Years and 6 Months,No,1293.505449,264.6747701,!@9#%8,1057.458508,0,0.7917,0.2035,0.3731,-1.1442,-0.9774 +0x195d,CUS_0xa295,August,39,605-63-9678,Engineer,30346.35,,5,4,14,7,"Auto Loan, Not Specified, Payday Loan, Mortgage Loan, Personal Loan, Payday Loan, and Personal Loan",12.56660065,6,18.8,5,Standard,523.56,26.31347756,8 Years and 11 Months,Yes,96.72128021,29.04519318,High_spent_Medium_value_payments,389.4197766,0,0.2552,-2.0531,-1.7699,-1.2478,-2.459 +0x1969,CUS_0x6c2e,August,51,558-25-1337,Mechanic,18681.465,,2,3,9,2,"Home Equity Loan, and Student Loan",4.443929299,6,3.9,3,Good,296.3719589,39.53810864,31 Years and 4 Months,No,24.82142498,,Low_spent_Small_value_payments,209.5576971,0,-0.537,0.5013,-0.1834,-0.943,0.0644 +0x1975,CUS_0x384c,August,42,813-91-8749,Scientist,9841.34,,8,9,32.06745738,5,"Personal Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",31.4045892,15,29.52,10,_,5208.230954,38.84527475,5 Years and 0 Months,Yes,36.67512792,,High_spent_Small_value_payments,245.2092986,0,0.6826,-2.4163,-0.554,-0.6387,-0.7079 +0x1981,CUS_0x6cbb,August,35,308-38-8791,Media_Manager,72330.98,6300.581667,0,3,11,1,Auto Loan,,6,4.62,1,Good,524.8418723,24.83928335,33 Years and 3 Months,No,31.37979416,353.3940338,Low_spent_Large_value_payments,567.4558542,0,-1.0511,0.3921,0.7219,-0.1737,0.0613 +0x198d,CUS_0x36ab,August,18,925-44-1671,Teacher,43241.49,3282.269196,10,7,30,6,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Auto Loan, Not Specified, and Home Equity Loan",28.6407475,17,8.47,10,Bad,2174.16,30.59762389,12 Years and 9 Months,Yes,460.4272666,94.6003948,High_spent_Medium_value_payments,351.2063921,0,-0.145,-1.6479,-0.5022,0.0456,1.8941 +0x1999,CUS_0x6649,August,23,548-03-9919,Mechanic,34106.78,,8,5,17,0,,8.552510645,10,10.06,0,Standard,866.3932861,30.45487937,32 Years and 6 Months,Yes,0,88.59925391,High_spent_Medium_value_payments,448.8478223,0,-0.894,-1.5689,1.3699,0.575,0.4565 +0x19a5,CUS_0x6856,August,30,251-77-0979,Teacher,129067.59,10795.6325,1,3,0.288361749,4,"Student Loan, Auto Loan, Auto Loan, and Payday Loan",1.689031639,5,4.54,0,Good,119.1295569,38.53014989,,No,389.3056725,709.6411454,High_spent_Large_value_payments,680.8960947,0,-0.2875,-0.9789,1.1232,0.5232,0.6683 +0x19b1,CUS_0xa27e,August,34,898-94-0497,Architect,17001.34,1214.778333,6,5,5,1,Home Equity Loan,23.27056094,20,5.62,2,Standard,1093.87,35.03187222,17 Years and 9 Months,No,10.53555561,,Low_spent_Small_value_payments,301.6478199,0,1.6028,-1.2367,0.4083,-1.8154,0.5535 +0x19bd,CUS_0x700d,August,25,992-49-2793,Accountant,44719.17,3969.5975,6,6,30.06745738,7,"Payday Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",41.22515147,22.48164645,23.21,14,Bad,4384.032252,30.40410996,13 Years and 6 Months,Yes,248.5998859,115.7644921,High_spent_Medium_value_payments,255.8750841,0,1.6502,2.0148,1.2753,-0.7823,-0.2782 +0x19c9,CUS_0x78e0,August,48,352-67-4436,Accountant,17787.34,,8,4,16,2,"Student Loan, and Auto Loan",15.49628222,15,5.65,0,Standard,730.9,29.99815125,30 Years and 4 Months,No,20.06363388,31.71381628,Low_spent_Large_value_payments,342.4503832,0,0.1194,-2.278,0.0976,-0.2358,-0.7556 +0x19d5,CUS_0x6794,August,42,204-14-2702,Teacher,103353.06,8527.755,3,3,5.288361749,0,Student Loan,11.48608044,12,3.11,2,Good,1265.896045,40.91609198,26 Years and 2 Months,No,64.00168567,,High_spent_Large_value_payments,961.6680465,0,1.8996,0.2467,-0.4666,-0.7329,0.5792 +0x19e1,CUS_0xe2c,August,38,#F%$D@*&8,Journalist,31021.24,2756.103333,7,7,11,4,"Auto Loan, Auto Loan, Auto Loan, and Personal Loan",27.04735431,21,15.21,7,_,852.81,38.93241252,,No,90.75917846,343.8465066,Low_spent_Small_value_payments,131.0046483,0,0.9292,0.0527,0.2953,-0.743,-0.7255 +0x19ed,CUS_0x36bb,August,43,837-45-5178,Journalist,134978.24,10541.52075,8,5,14.28836175,2,"Mortgage Loan, and Mortgage Loan",,15,16.89,5,Standard,577.2537016,38.22122647,26 Years and 9 Months,Yes,662.7777405,,Low_spent_Medium_value_payments,667.8676,0,-0.495,-0.1918,0.1031,0.662,-1.6615 +0x19f9,CUS_0xa77f,August,28,074-21-6507,Writer,39800.12,3047.676667,7,5,12,3,"Personal Loan, Payday Loan, and Auto Loan",26.93205021,20,11.53,4,Standard,660.69,28.62288043,18 Years and 4 Months,Yes,58.48765734,274.4562487,Low_spent_Medium_value_payments,251.8237606,0,-1.5168,0.6204,-0.9422,-1.1335,-0.5087 +0x1a05,CUS_0x1e70,August,18,772-58-9547,Manager,14841.35,,6,5,17,7,"Mortgage Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Student Loan",,14,28.64,6,Bad,3417.397833,37.15219502,8 Years and 0 Months,NM,71.54474307,111.0070565,!@9#%8,245.6427607,0,0.36,0.4326,0.0884,-0.4533,-0.0253 +0x1a11,CUS_0xa335,August,25,835-41-6871,Architect,66105.4,5653.783333,6,8,31,5,"Mortgage Loan, Auto Loan, Not Specified, Student Loan, and Payday Loan",,26.25663472,5.52,12,Bad,1780.160846,24.71419199,11 Years and 9 Months,Yes,214.0721231,,High_spent_Large_value_payments,474.0764973,0,1.3117,-1.1296,-1.224,-1.2287,0.3603 +0x1a1d,CUS_0x71e0,August,28,330-96-0638,Mechanic,15398.95,1548.245833,1,7,5,4,"Student Loan, Mortgage Loan, Not Specified, and Not Specified",,1,8.41,8,Good,343.84,28.13568776,28 Years and 10 Months,No,34.81396986,,Low_spent_Large_value_payments,294.6240512,0,1.3628,0.3355,1.0478,-1.6909,1.1209 +0x1a29,CUS_0x4af0,August,18,397-45-5329,Developer,27070.07,2518.839167,7,3,11,4,"Home Equity Loan, Credit-Builder Loan, Student Loan, and Personal Loan",15.99048588,15,5.68,6,_,919.76,40.01458593,29 Years and 9 Months,No,73.23331848,138.3817694,High_spent_Small_value_payments,300.2688288,0,-0.2892,0.1554,0.5815,-0.9143,-0.6353 +0x1a35,CUS_0x3861,August,51,212-32-2085,_______,17992.775,,3,5,570,0,,16.21786489,,8.61,3,_,636.0365628,33.46438826,19 Years and 6 Months,No,0,79.04022403,Low_spent_Small_value_payments,387.8995676,0,0.1726,0.2067,0.681,-0.4142,-1.7056 +0x1a41,CUS_0x240d,August,56,087-22-6137,Musician,139354.48,,3,3,18,0,,,16,4.94,4,Standard,519.3,39.12793594,20 Years and 6 Months,No,760.6082757,408.0045658,High_spent_Medium_value_payments,1005.282768,0,-0.8376,-0.718,0.4895,-0.4424,-1.2061 +0x1a4d,CUS_0x2652,August,25,062-29-3192,Teacher,18305.25,,2,1,207,0,,10.40603009,11,5.27,3,Good,327.2570603,35.59186051,20 Years and 8 Months,No,0,209.9172375,Low_spent_Small_value_payments,258.4089896,0,-0.3383,-1.4019,-0.5844,1.5825,-1.1716 +0x1a59,CUS_0x259a,August,26,727-40-9990,Journalist,27865.26,2606.105,4,3,6,1,Student Loan,28.55445884,20.63184525,19.05,5,Standard,718.2668422,25.68737505,30 Years and 11 Months,Yes,17.69844332,117.0336581,Low_spent_Small_value_payments,415.8783985,0,-0.6077,-1.5734,0.8561,1.0974,0.4408 +0x1a65,CUS_0x28b5,August,36,#F%$D@*&8,Architect,23404.86,,6,5,7,0,,20.30614055,17,,5,Standard,35.54,32.49157597,29 Years and 2 Months,Yes,0,86.55597978,Low_spent_Small_value_payments,393.3845202,0,0.0016,0.3752,-1.0214,1.3055,-0.5095 +0x1a71,CUS_0x8643,August,34,198-08-9791,Musician,14205.09,,8,10,22.95700519,8,"Student Loan, Not Specified, Not Specified, Credit-Builder Loan, Student Loan, Mortgage Loan, Not Specified, and Student Loan",38.3773612,24.2013617,19.42,16,_,5785.547365,29.64419835,13 Years and 11 Months,Yes,1372.515839,45.08912606,Low_spent_Small_value_payments,260.0204152,0,-0.5785,1.4474,0.6812,1.4751,0.8313 +0x1a7d,CUS_0x12d5,August,28,518-01-2262,Scientist,62320.56,5068.38,9,9,18,5,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",,15,17.24,15,_,3589.56,38.3374493,1 Years and 11 Months,NM,171.3455597,171.5108634,High_spent_Small_value_payments,423.9815769,0,-1.2322,0.8978,-0.3515,-0.4757,1.6222 +0x1a89,CUS_0x3f04,August,25,465-93-9571,_______,43758.34,,5,6,12,2,"Personal Loan, and Payday Loan",0,2,4.18,2,Good,1051.839956,35.74253977,33 Years and 8 Months,No,56.31142051,,Low_spent_Small_value_payments,214.9034199,0,0.2768,-0.0014,0.5485,0.8419,-1.1255 +0x1a95,CUS_0x62c6,August,20,860-36-1556,Writer,144881.68,11877.47333,3,4,14.28836175,4,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,12,10.1,2,Standard,404.51,36.61537432,26 Years and 4 Months,Yes,414.6560132,973.2047467,High_spent_Small_value_payments,479.8240344,0,1.1094,0.0314,-0.2827,2.2527,0.5411 +0x1aa1,CUS_0x398d,August,38,407-06-9232,Media_Manager,108147.3,8926.275,3,6,5.288361749,4,"Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",23.62643566,20,7.57,2,Standard,1006.803576,34.97042416,29 Years and 4 Months,Yes,37514,1464.660731,Low_spent_Small_value_payments,25.29240814,0,-0.3049,0.1842,-1.5409,-0.2771,1.0797 +0x1aad,CUS_0x618b,August,28,550-94-8995,Lawyer,17759.1,1533.925,6,8,20.06745738,5,"Student Loan, Personal Loan, Home Equity Loan, Home Equity Loan, and Auto Loan",,22.40483781,5.2,10,Bad,4179.220852,29.20544486,5 Years and 4 Months,Yes,64.55062049,,Low_spent_Medium_value_payments,219.041555,0,-0.6347,-0.8979,1.056,1.0328,-1.7024 +0x1ab9,CUS_0x7250,August,37,651-67-7536,Teacher,85328.73,,528,4,11,1,Student Loan,90,834,1.83,2,_,538.5614454,22.56544762,32 Years and 2 Months,No,68.45896611,680.452063,Low_spent_Medium_value_payments,286.5442472,0,0.4208,0.5165,-0.3866,-0.2182,-0.0093 +0x1ac5,CUS_0x6435,August,27,538-49-2118,Writer,134321.44,9997.592514,3,5,12,4,"Student Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",,20,11.09,3,Standard,1428.68,35.52332578,33 Years and 3 Months,NM,1320.549063,209.5174827,High_spent_Medium_value_payments,893.2396069,0,-0.4232,2.7752,0.5394,0.4437,-0.3497 +0x1ad1,CUS_0xb6ad,August,27,584-60-4961,Lawyer,61008,5235,10,5,32,4,"Auto Loan, Auto Loan, Student Loan, and Home Equity Loan",29.91864766,21.74319434,19.44,17,Standard,1945.133505,41.88727835,,Yes,189.4265307,196.6664451,High_spent_Medium_value_payments,387.4070242,0,0.3776,-0.3323,0.6482,-0.054,-1.9937 +0x1add,CUS_0x7878,August,19,037-28-6132,Developer,28665.76,,7,3,713,1,Debt Consolidation Loan,11.1445562,10,4.32,0,_,1237.46,33.53347693,24 Years and 10 Months,No,22.68817758,175.7926144,Low_spent_Small_value_payments,349.8005414,0,0.2385,-0.2677,-1.6208,0.3843,-0.6905 +0x1ae9,CUS_0x35b5,August,21,432-18-5390,Lawyer,56803.71,4620.6425,7,5,25,6,"Mortgage Loan, Student Loan, Student Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",44.93615404,26.07328133,16.23,11,Bad,2875.679085,27.15124298,,Yes,187.1902189,,Low_spent_Small_value_payments,205.1353372,0,-0.5083,0.6589,0.6946,-0.6979,2.1686 +0x1af5,CUS_0x7a0f,August,32,838-98-6353,Architect,38364.82,2904.068333,9,6,33.06745738,4,"Not Specified, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",37.49731335,24.81542753,3.44,,Bad,2460.625207,36.45555866,19 Years and 10 Months,Yes,74.85037188,73.01267544,High_spent_Small_value_payments,375.8234981,0,-0.1011,-0.3406,0.8259,-0.8246,0.3918 +0x1b01,CUS_0x1c09,August,22,365-73-8387,Lawyer,66528.24,5733.02,5,5,11,0,,,12,13.65,2,_,1460.8,30.58597494,22 Years and 11 Months,NM,0,158.4202048,High_spent_Medium_value_payments,664.8817952,0,2.3616,0.3647,-0.2038,0.1,0.292 +0x1b0d,CUS_0x2c0d,August,53,784-23-6447,Doctor,19403.405,,1,7,3,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",14.3100295,11.49150544,-1.1,2,Good,381.7609415,38.3686739,16 Years and 11 Months,No,39.21491443,214.8208575,Low_spent_Small_value_payments,226.4592697,0,-1.0267,0.5536,0.2759,0.3525,0.5686 +0x1b19,CUS_0x9073,August,19,751-65-6458,Journalist,31122.79,2761.565833,7,5,12,0,,31.16870364,20,9.75,4,_,358.6,41.00475108,,No,0,,High_spent_Medium_value_payments,446.7819896,0,-0.5122,-0.3054,1.2609,0.0949,0.661 +0x1b25,CUS_0x2813,August,20,361-34-7350,Architect,15015.4,,5,5,9,1,Debt Consolidation Loan,12.92282602,8,5.04,1,Good,330.17,28.38062138,22 Years and 2 Months,No,11.68573457,162.5753084,Low_spent_Small_value_payments,237.0672904,0,0.0089,0.7789,1.076,0.5591,-0.1597 +0x1b31,CUS_0xac93,August,34,744-52-9753,Engineer,19777.05,,5,3,3,3,"Student Loan, Debt Consolidation Loan, and Auto Loan",,3.560986431,5.95,1,Good,213.943896,38.13596102,22 Years and 2 Months,No,29.04553332,65.37503748,Low_spent_Medium_value_payments,358.3881792,0,0.7279,-0.5077,-1.4532,0.7827,1.5479 +0x1b3d,CUS_0x8c69,August,25,070-07-9414,Musician,9351702,1851.335,4,3,5.288361749,2,"Mortgage Loan, Student Loan, and Mortgage Loan",4.421531434,6,1.31,0,Good,354.1066355,35.17565934,20 Years and 9 Months,No,25.58028082,537.2470425,High_spent_Small_value_payments,318.1993871,0,0.2977,0.2381,-0.4536,-1.2763,-1.1393 +0x1b49,CUS_0x365a,August,52,026-57-5729,_______,41345.58,3260.465,0,5,10,0,,0,0,6.42,7,Good,736.1518293,23.74405012,28 Years and 8 Months,No,0,101.5909584,!@9#%8,494.4555416,0,-1.4198,-0.3363,-0.3708,1.0391,-1.1497 +0x1b55,CUS_0x7586,August,32,790-90-6437,Engineer,55151.04,,10,6,23,6,"Auto Loan, Auto Loan, Credit-Builder Loan, Not Specified, Not Specified, and Not Specified",24.907116,17,10.64,,Bad,1743.83,31.46145399,,Yes,171.8230674,,Low_spent_Small_value_payments,114.7645422,0,0.2064,-0.664,0.3371,0.2955,0.625 +0x1b61,CUS_0x9c67,August,39,977-57-0254,Manager,30536.62,2430.718333,6,6,7,2,"Auto Loan, and Auto Loan",,8,9.33,4,Standard,687.87,40.2042282,15 Years and 11 Months,Yes,42.97244102,,Low_spent_Small_value_payments,262.1109593,0,-0.8112,1.0483,-0.1418,0.6933,1.022 +0x1b6d,CUS_0x7caf,August,29,628-85-7991,Architect,147499.6,,2,2,11.28836175,2,"Payday Loan, and Debt Consolidation Loan",0,2,0.21,2,Good,1090.111098,29.66342032,,No,192.2064833,1395.256214,High_spent_Small_value_payments,447.9251564,0,1.6977,1.3836,-1.4866,0.526,1.2462 +0x1b79,CUS_0xa2f7,August,43,858-89-0350,Architect,20005.22,1683.101667,8,3,6,4,"Home Equity Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,22.41607867,18.33,13,Standard,2124.847689,25.47481436,13 Years and 0 Months,Yes,59.51321413,,Low_spent_Small_value_payments,222.3513795,0,1.0084,-1.9568,0.2012,-1.2481,0.2474 +0x1b85,CUS_0x5e17,August,33,970-52-2075,Scientist,19795.52,,7,10,34,8,"Mortgage Loan, Home Equity Loan, Personal Loan, Payday Loan, Not Specified, Student Loan, Payday Loan, and Payday Loan",32.09054174,24.85512476,22.79,15,Bad,3475.866412,29.88483228,2 Years and 10 Months,Yes,130.4754707,176.0736371,Low_spent_Small_value_payments,149.7135589,0,1.0257,0.5764,2.3715,1.1512,-0.6736 +0x1b91,CUS_0x1288,August,34,609-85-2725,Doctor,60938.13,5163.1775,10,8,32.95700519,8,"Payday Loan, Payday Loan, Not Specified, Student Loan, Mortgage Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",,24.51080327,17.49,9,Bad,4578.755743,37.61458136,5 Years and 5 Months,Yes,1701.788117,,Low_spent_Large_value_payments,225.1824611,0,0.9419,1.6264,1.0647,0.3141,-0.2715 +0x1b9d,CUS_0x567b,August,54,#F%$D@*&8,Manager,80396.86,,5,7,9,0,,9.104487783,11,10.47,,Good,1357.54,30.88198148,27 Years and 0 Months,No,0,665.0311265,Low_spent_Medium_value_payments,277.3427068,0,1.066,0.5862,1.0677,0.6372,-1.2567 +0x1ba9,CUS_0x2365,August,43,552-90-7532,Writer,57610.32,,8,10,26.95700519,9,"Personal Loan, Student Loan, Payday Loan, Personal Loan, Not Specified, Not Specified, Mortgage Loan, Not Specified, and Home Equity Loan",,27.06097261,21.31,7,Bad,5156.799987,38.76380574,2 Years and 0 Months,Yes,1579.717623,110.7525603,High_spent_Large_value_payments,280.2654472,0,2.6158,0.4892,-0.7533,-0.4624,-1.2573 +0x1bb5,CUS_0x8a04,August,37,966-14-4315,Journalist,18717.02,,8,5,15,5,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Not Specified",19.12980296,18,15.3,10,Standard,2103.99,29.0506668,15 Years and 11 Months,Yes,60.64699329,66.72044916,Low_spent_Small_value_payments,292.1077242,0,-0.9611,-1.675,-0.4736,1.3631,-1.5337 +0x1bc1,CUS_0x6015,August,18,548-76-0110,_______,19163.22,,3,7,7,2,"Personal Loan, and Payday Loan",,22,8.76,9,Standard,2226.37,22.40065718,,Yes,24.17564765,,Low_spent_Small_value_payments,224.8580329,0,0.0056,-0.968,0.5087,0.3189,0.8044 +0x1bcd,CUS_0x21e6,August,48,328-75-6365,Media_Manager,94554.87,,2,6,2,0,,0,0,3.24,3,Good,1348.268933,25.96845245,22 Years and 8 Months,No,0,280.3098287,Low_spent_Large_value_payments,821.3452523,0,0.5128,-0.2253,0.718,-0.2588,-0.0838 +0x1bd9,CUS_0xa9a6,August,27,600-76-4920,Musician,63536.98,5382.748333,4,5,12,2,"Debt Consolidation Loan, and Auto Loan",,16,14.78,9,Standard,89.62,37.45884228,31 Years and 4 Months,Yes,69.10085253,10000,High_spent_Medium_value_payments,529.4183765,0,-0.849,-0.8042,0.2811,2.1588,-3.6731 +0x1be5,CUS_0x3187,August,40,024-52-4439,Architect,9983.345,758.9454167,7,11,15,5,"Not Specified, Student Loan, Auto Loan, Payday Loan, and Auto Loan",22.95697884,16,10.26,11,Standard,1823.35,26.29494403,9 Years and 9 Months,Yes,29.24151869,,High_spent_Large_value_payments,276.0401151,0,-2.3869,0.3516,0.6753,-0.4874,1.5645 +0x1bf1,CUS_0x3fbf,August,18,646-12-1414,Accountant,27796.42,2300.368333,6,5,16,2,"Home Equity Loan, and Student Loan",,11,10.85,10,Standard,1073.94,33.98844177,27 Years and 8 Months,NM,36.06763128,56.36788663,!@9#%8,387.6013154,0,-0.0362,0.5427,0.2636,0.7009,-1.5238 +0x1bfd,CUS_0x953c,August,30,380-11-4962,Engineer,132872.72,11203.72667,3,3,10,2,"Home Equity Loan, and Student Loan",4.353456038,5,10.28,4,Good,77.12742121,29.55005879,28 Years and 3 Months,No,144.8306823,194.6295728,High_spent_Large_value_payments,1042.031182,0,-1.7129,0.8502,-0.503,-1.0044,-1.0121 +0x1c09,CUS_0x4aaa,August,42,676-15-0435,Architect,140014.36,11662.86333,3,7,18,4,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",,9,3.9,3,Standard,1151.7,27.0637196,17 Years and 8 Months,NM,348.6203965,10000,High_spent_Large_value_payments,823.0863932,0,2.1564,-0.5083,-1.9159,-1.0781,0.0622 +0x1c15,CUS_0x2947,August,48,742-36-4668,Accountant,37071.2,3006.266667,1,6,6,4,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",9.444169424,8,11.56,3,Good,869.99,30.49430853,18 Years and 11 Months,No,74.69027138,53.60238365,High_spent_Small_value_payments,432.3340116,0,1.4815,0.8117,0.0506,0.5711,-1.174 +0x1c21,CUS_0x30e0,August,20,644-19-7211,Entrepreneur,41735.55,,0,3,8,4,"Not Specified, Payday Loan, Payday Loan, and Debt Consolidation Loan",7.256711995,7,11.25,3,Good,1480.92,29.2762174,,NM,109.6141467,240.5894884,Low_spent_Medium_value_payments,265.5926148,0,1.5355,-1.9853,-0.1774,1.1748,-0.0618 +0x1c2d,CUS_0xc3b7,August,38,482-53-4479,Architect,40391.66,,10,7,18,3,"Payday Loan, Not Specified, and Mortgage Loan",,26.48135901,3.51,12,Bad,2175.313115,38.82361943,8 Years and 6 Months,Yes,60.3708284,,Low_spent_Small_value_payments,233.5611247,0,-0.4619,-0.7104,0.8091,-0.1063,1.1256 +0x1c39,CUS_0x1e9b,August,23,866-51-6415,Writer,7441.295,,6,8,33.88954781,6,"Mortgage Loan, Mortgage Loan, Not Specified, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",,14.63674962,17.12,13,Standard,2860.043206,40.21311734,6 Years and 2 Months,Yes,1399.45836,,Low_spent_Small_value_payments,242.3107882,0,0.9512,-0.1642,0.7432,0.6919,-1.7394 +0x1c45,CUS_0x3b88,August,40,944-94-9536,Scientist,19065.32,,3,6,5,100,"Not Specified, Student Loan, Home Equity Loan, Personal Loan, and Personal Loan",,15,11.81,5,Standard,2008.06,35.58670022,17 Years and 2 Months,NM,76.21247401,,Low_spent_Large_value_payments,260.5242287,0,-0.5546,0.1031,-0.2986,0.1593,-0.4057 +0x1c51,CUS_0xae51,August,46,082-17-4774,Entrepreneur,24585.55,2316.795833,3,4,14,2,"Auto Loan, and Credit-Builder Loan",14.85222553,,11.35,1,_,195.38,31.15116072,27 Years and 4 Months,Yes,30.44777694,66.07688307,Low_spent_Large_value_payments,405.1549233,0,0.718,1.2702,-1.1106,-1.9546,0.7335 +0x1c5d,CUS_0xb7ef,August,27,786-92-9485,Manager,15013.73,1127.144167,7,4,14,6,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, Not Specified, and Payday Loan",12.87042434,9,8.22,5,Standard,1403.17,34.97962331,12 Years and 4 Months,Yes,51.54792416,,Low_spent_Large_value_payments,273.6767524,0,1.395,0.7204,-0.8205,1.4962,0.6853 +0x1c69,CUS_0xb288,August,44,390-44-4596,Journalist,126006.68,10693.55667,4,3,20,3,"Personal Loan, Home Equity Loan, and Debt Consolidation Loan",,13,7.28,0,Standard,385.8,39.90522242,26 Years and 6 Months,Yes,239.7673293,212.2701329,High_spent_Large_value_payments,857.3182045,0,0.3209,-1.8565,0.8176,0.341,-0.4357 +0x1c75,CUS_0x7a22,August,49,478-48-4669,_______,102885.32,,3,5,16,1,Personal Loan,16.46749497,14,10.31,4,Standard,605.34,31.41809979,29 Years and 5 Months,Yes,74.15866353,79.74686437,High_spent_Large_value_payments,950.4721388,0,1.0751,1.4932,-0.212,0.2934,0.0451 +0x1c81,CUS_0x9495,August,38,817-92-8445,_______,34212.01,,6,5,10,100,"Not Specified, Home Equity Loan, and Home Equity Loan",12.44204436,10.45507278,8.12,1,Standard,586.4759937,27.02823304,28 Years and 6 Months,No,66.67641331,116.9269341,!@9#%8,391.096736,0,-0.3531,0.0822,-0.3703,-1.5387,-0.6359 +0x1c8d,CUS_0x64f1,August,26,955-39-6420,Entrepreneur,118487.16,9810.93,8,4,20,4,"Student Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",20.13480795,17,9.76,1,_,140.26,31.47302517,31 Years and 11 Months,No,301.5608682,386.4132287,High_spent_Medium_value_payments,543.1189031,0,0.5871,0.1087,0.0679,-0.9134,0.5294 +0x1c99,CUS_0x6749,August,26,109-19-0368,Mechanic,77418.52,6450.543333,8,9,20.88954781,7,"Credit-Builder Loan, Auto Loan, Student Loan, Student Loan, Personal Loan, Personal Loan, and Auto Loan",,26.64441954,20.05,9,Bad,4342.668517,23.41214889,11 Years and 11 Months,Yes,1662.514476,180.4220431,!@9#%8,387.7877326,0,0.7216,-0.9408,0.1024,-0.531,-0.2433 +0x1ca5,CUS_0xc1c9,August,46,085-10-1065,Architect,24199.24,1951.603333,3,7,6,1,Credit-Builder Loan,19.86891485,14,0.67,4,Good,676.9675645,38.03670709,21 Years and 8 Months,No,13.88630543,54.52923552,High_spent_Small_value_payments,393.0686026,0,-0.3344,-0.0221,-0.8981,-1.0012,-0.2334 +0x1cb1,CUS_0x230a,August,48,902-99-6202,_______,28587.29,2621.274167,4,1,7,0,,0,2,1.22,1,Good,1320.175417,28.10611882,24 Years and 9 Months,No,0,135.8350208,Low_spent_Large_value_payments,408.9248535,0,-0.1218,-0.3276,0.3932,0.882,0.2434 +0x1cbd,CUS_0x8928,August,32,137-96-5829,Manager,16578.115,1426.509583,3,5,15,2,"Student Loan, and Not Specified",14.37211286,13,13.29,7,Standard,1054.86,33.19470506,23 Years and 4 Months,Yes,21.42597208,,!@9#%8,323.8543591,0,1.174,-0.6651,-0.9892,0.6037,-0.4838 +0x1cc9,CUS_0x682f,August,20,941-62-4990,Writer,74647.4,6327.616667,6,5,21.06745738,6,"Not Specified, Not Specified, Not Specified, Mortgage Loan, Student Loan, and Auto Loan",,17,26.16,13,Bad,4390.840954,35.95962841,13 Years and 10 Months,NM,309.5754021,130.4682433,High_spent_Large_value_payments,405.9977333,0,-0.4329,-0.1123,-0.8916,1.0949,1.1743 +0x1cd5,CUS_0x4831,August,43,696-84-8348,Mechanic,34766.06,3133.171667,0,1,11,100,"Home Equity Loan, Auto Loan, and Home Equity Loan",4.936590435,7,5.71,0,Good,1238.812454,22.85036838,,No,78.09310674,11103.31913,Low_spent_Small_value_payments,324.1637958,0,0.758,-1.2359,-1.4432,0.4725,-0.1133 +0x1ce1,CUS_0x32a5,August,23,900-72-1051,Engineer,16852.635,1530.800373,4,6,9,0,,17.46836838,13,16.68,8,Standard,692.558428,30.08041534,29 Years and 6 Months,Yes,160.5858768,59.82024869,Low_spent_Large_value_payments,385.2228026,0,-1.597,-0.3988,-1.1559,0.2212,-1.0892 +0x1ced,CUS_0x710f,August,80,805-31-3666,Scientist,33502.1,,7,9,28.06745738,6,"Mortgage Loan, Payday Loan, Auto Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",44.71823958,23.26754609,12.06,12,Standard,2913.59517,23.20688298,18 Years and 6 Months,Yes,158.6079272,184.5481873,Low_spent_Large_value_payments,189.2077643,0,-0.1957,0.2938,1.748,-0.1207,-0.7821 +0x1cf9,CUS_0xa54b,August,31,732-98-2688,_______,91690.53,7795.8775,2,6,1.288361749,2,"Home Equity Loan, and Not Specified",,8,4.95,4,Good,1147.747383,25.5278072,31 Years and 6 Months,No,130.8508578,1160.964496,Low_spent_Medium_value_payments,275.3135581,0,-0.1898,0.3563,-0.7099,0.1016,0.6495 +0x1d05,CUS_0x564a,August,37,763-78-4306,Entrepreneur,30502.54,2595.878333,8,7,25.06745738,7,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Student Loan, Personal Loan, Not Specified, and Mortgage Loan",34.11163461,22.49359402,13.23,8,Standard,2102.576539,38.63431587,15 Years and 0 Months,Yes,154.3933583,,Low_spent_Small_value_payments,153.0913901,0,-0.6777,0.7151,0.5886,-0.2165,-0.2979 +0x1d11,CUS_0xb000,August,21,087-15-2781,Media_Manager,30272.61,2258.7175,3,3,15,1,Payday Loan,13.46639141,8,8.83,9,Standard,180.94,27.04666863,16 Years and 5 Months,Yes,17.97585099,110.2154588,Low_spent_Small_value_payments,387.6804402,0,0.2007,0.0889,0.4226,-0.5728,-0.744 +0x1d1d,CUS_0x2584,August,31,742-33-7816,Accountant,59971.42,5190.618333,8,5,2398,3,"Debt Consolidation Loan, Home Equity Loan, and Student Loan",25.0701742,20,-4.48,4,Standard,203.03,34.4296386,20 Years and 9 Months,No,107.9372413,66.87314027,High_spent_Medium_value_payments,594.2514518,0,-0.5119,0.1343,-2.8745,0.2201,-1.418 +0x1d29,CUS_0x5a3f,August,33,818-84-4299,Accountant,42220.39,3433.686488,1,4,1,4,"Credit-Builder Loan, Student Loan, Mortgage Loan, and Mortgage Loan",10.93789437,11,,1,_,257.81,34.16244973,22 Years and 11 Months,No,191.9497411,140.4523116,High_spent_Medium_value_payments,323.3138755,0,1.4614,0.3149,-2.0008,0.5835,-0.384 +0x1d35,CUS_0xc341,August,51,982-11-3853,Architect,43581.13,3566.760833,4,3,9,3,"Auto Loan, Student Loan, and Student Loan",2.864993045,3,8.56,2,Good,900.83,38.4990964,,No,103.0330777,136.7203607,High_spent_Small_value_payments,376.922645,0,0.7351,0.4459,0.5559,-0.265,-1.6406 +0x1d41,CUS_0x1a96,August,50,405-79-5399,Media_Manager,28681.38,,3,5,2,0,,,5,4.82,4,Good,421.7335777,32.0041069,19 Years and 6 Months,No,0,,!@9#%8,335.1314153,0,-0.3779,-0.8522,0.5136,0.4529,-2.2294 +0x1d4d,CUS_0xb7a1,August,34,929-30-5884,Doctor,35376.32,,8,3,19,100,"Personal Loan, Payday Loan, and Personal Loan",,15,15.14,7,Standard,1166.47,26.75140311,18 Years and 9 Months,NM,58.21667032,,Low_spent_Medium_value_payments,370.568977,0,-1.1932,0.031,-1.7515,0.8774,0.2002 +0x1d59,CUS_0x31d5,August,80,325-07-8725,Doctor,15488.885,1273.740417,0,4,4,0,,,,1.38,9,Good,1133.811902,39.43210616,25 Years and 9 Months,No,0,172.0116432,Low_spent_Small_value_payments,261.4553742,0,1.5716,-0.1272,-1.8882,0.4525,0.5178 +0x1d65,CUS_0x45f7,August,26,#F%$D@*&8,Entrepreneur,19853.35,1613.003241,7,4,6,2,"Debt Consolidation Loan, and Home Equity Loan",24.3737379,17,11.63,2,Standard,816.46,29.85795807,,No,141.5145576,68.8519378,High_spent_Medium_value_payments,325.7206801,0,-1.4043,-1.331,-0.0708,1.9028,0.5588 +0x1d71,CUS_0x6617,August,33,276-40-7171,Writer,115643.01,9910.9175,3,7,2,3,"Not Specified, Student Loan, and Not Specified",,1.169966283,13.89,1,Good,1052.57697,39.1727994,18 Years and 6 Months,No,195.3940091,731.1251628,!@9#%8,344.5725781,0,-1.5332,-2.0209,0.6807,-0.7123,-1.437 +0x1d7d,CUS_0x5b80,August,44,549-37-6666,Journalist,7512.225,,7,7,14,5,"Personal Loan, Payday Loan, Student Loan, Not Specified, and Not Specified",20.24619416,17,11.87,9,_,540.07,23.82272533,8 Years and 8 Months,Yes,20.68610769,27.98080463,Low_spent_Small_value_payments,292.6349627,0,0.9759,-0.1924,1.8409,-0.6039,-1.0689 +0x1d89,CUS_0xa548,August,18,064-39-6784,Mechanic,35161.46,2930.121667,10,8,32.88954781,6,"Student Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",,23.98306661,2.49,15,Bad,5098.051019,33.80137556,8 Years and 6 Months,Yes,1436.874528,,Low_spent_Small_value_payments,84.25561992,0,-1.2233,0.3996,-0.4122,0.3718,-0.2185 +0x1d95,CUS_0xb9ea,August,34,202-04-9323,Writer,9133.045,,6,7,35.06745738,6,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, and Student Loan",32.14390528,16,15.26,11,Bad,2834.864135,29.31971512,9 Years and 6 Months,Yes,30.20103248,34.87843943,High_spent_Small_value_payments,249.7747519,0,0.3576,0.723,-0.9032,0.1334,2.2525 +0x1da1,CUS_0x54c0,August,23,934-98-5531,Entrepreneur,19283.47,,10,8,35.06745738,9,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",90,538,27.43,12,Bad,4627.890954,24.01428138,6 Years and 3 Months,Yes,84.61643173,,Low_spent_Large_value_payments,243.850918,0,1.2902,-0.4697,0.4227,-0.6412,-0.2814 +0x1dad,CUS_0x258b,August,27,890-04-0712,Scientist,66502.76,5379.896667,0,6,1,2,"Mortgage Loan, and Personal Loan",,11.5533353,7.06,2,Good,302.556295,35.51355429,19 Years and 3 Months,No,80.10017431,149.1292831,High_spent_Medium_value_payments,558.7602093,0,-0.0216,1.0644,0.1395,-0.3609,-0.4768 +0x1db9,CUS_0x4bb4,August,34,742-40-7361,Media_Manager,9444.795,,7,8,29.06745738,6,"Mortgage Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",,12.35341672,17.57,7,Standard,2082.215579,26.66492058,5 Years and 11 Months,Yes,27.5949503,60.23201765,Low_spent_Medium_value_payments,250.4593691,0,-1.0777,-0.1598,-1.2998,2.5192,-0.872 +0x1dc5,CUS_0x8e75,August,47,854-67-0053,Doctor,70112.78,5989.731667,1,7,3,2,"Mortgage Loan, and Student Loan",,3.565109471,1.75,5,Good,972.563138,34.2977985,25 Years and 5 Months,No,69.71794787,,High_spent_Medium_value_payments,594.1043802,0,-0.9251,0.5191,0.3852,0.5254,2.8209 +0x1dd1,CUS_0xf95,August,18,082-42-3634,Entrepreneur,15604.56,,9,5,25,3,"Debt Consolidation Loan, Home Equity Loan, and Not Specified",33.41695534,23,8.08,13,Bad,2686.18,35.18408185,,Yes,37.91235014,92.11398853,Low_spent_Small_value_payments,298.9116613,0,-2.6074,-2.8348,-2.1449,0.2385,-0.5467 +0x1ddd,CUS_0x4028,August,42,407-45-5883,Manager,68935.26,,1,5,8,3,"Credit-Builder Loan, Personal Loan, and Auto Loan",,9,3.25,5,_,421.0890573,26.82103884,25 Years and 11 Months,No,102.7963086,41.98785644,High_spent_Large_value_payments,651.88953,0,1.3549,0.5107,-1.5041,-0.1294,1.1357 +0x1de9,CUS_0x8db8,August,45,451-74-2945,Doctor,31807,2733.583333,8,3,14,2,"Student Loan, and Mortgage Loan",10.1945004,8,14.68,1,_,561.3654028,40.66511242,20 Years and 8 Months,Yes,35.55369086,40.31616987,High_spent_Large_value_payments,442.5277661,0,-0.2134,-0.5728,-0.9108,-0.102,0.2286 +0x1df5,CUS_0x1e63,August,37,341-75-1132,_______,10025.2,,10,10,21.88954781,7,"Credit-Builder Loan, Home Equity Loan, Personal Loan, Auto Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",24.35846023,16.79391911,16.88,12,Standard,1531.901161,33.96409432,15 Years and 10 Months,Yes,1364.91502,,Low_spent_Small_value_payments,194.0142372,0,0.4747,-0.2105,0.5577,1.0451,-0.1256 +0x1e01,CUS_0x4948,August,39,432-73-5991,Media_Manager,64036.88,,8,4,15,4,"Home Equity Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",23.90538315,15,14.7,9,Standard,1635.19,34.81010493,8 Years and 3 Months,Yes,127.8260613,267.165354,Low_spent_Large_value_payments,434.1492514,0,-0.7604,-0.0131,0.5832,-0.0093,-0.7533 +0x1e0d,CUS_0xc37b,August,30,919-05-3349,_______,9783.245,,8,6,29,8,"Not Specified, Credit-Builder Loan, Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",28.10326692,,7.75,7,Bad,1913.631373,24.46483121,19 Years and 0 Months,Yes,52.83913367,,Low_spent_Small_value_payments,259.4070517,0,0.4594,-0.3541,-0.2655,0.9467,0.4766 +0x1e19,CUS_0xfcc,August,22,388-13-4625,_______,86522.72,7098.226667,8,5,13,1,Student Loan,7.969331612,8,15.51,13,Standard,455.22,33.04000294,28 Years and 3 Months,Yes,45.26468138,577.9699495,Low_spent_Small_value_payments,376.5880358,0,0.0871,0.1456,-0.9324,0.2499,2.122 +0x1e25,CUS_0x64ce,August,21,066-73-7172,Lawyer,124419.66,10221.305,3,4,11,4,"Home Equity Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",11.25087645,8,7.12,0,_,923.85,34.32406369,32 Years and 6 Months,No,344.1815356,133.6038119,High_spent_Large_value_payments,784.3451525,0,0.2401,0.3904,0.8392,-0.3466,-0.3225 +0x1e31,CUS_0x9574,August,50,778-83-5214,_______,15606.515,,3,4,6,4,"Personal Loan, Personal Loan, Personal Loan, and Student Loan",,3.624584395,9.37,2,Good,294.7119824,39.19138694,33 Years and 6 Months,NM,35.62637254,49.83277717,Low_spent_Small_value_payments,327.995142,0,-1.4175,-0.5345,1.3725,0.8657,0.1396 +0x1e3d,CUS_0xbc88,August,25,648-41-8012,Developer,28230.92,,8,6,32,7,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Personal Loan, and Personal Loan",,16,25.17,14,Bad,2989.13,38.63607114,7 Years and 5 Months,NM,132.4811279,,High_spent_Medium_value_payments,245.0714927,0,-0.0029,1.725,-0.0089,0.7965,0.1166 +0x1e49,CUS_0x661b,August,29,926-72-2848,Developer,10623.765,,6,3,18,100,"Home Equity Loan, Personal Loan, and Home Equity Loan",,12,16.39,7,Standard,181.68,33.47170532,16 Years and 2 Months,Yes,26.51527996,,Low_spent_Small_value_payments,241.1704008,0,1.3424,-0.4939,1.8063,1.221,1.31 +0x1e55,CUS_0xc51,August,19,269-33-7962,Teacher,11970.955,,8,183,8.067457376,2,"Payday Loan, and Credit-Builder Loan",21.41274028,,4.72,1,Standard,1113.030954,31.76740432,26 Years and 6 Months,No,14.8851947,39.1129892,High_spent_Small_value_payments,296.2394865,0,-0.1466,-0.2203,0.2752,0.2718,-0.1973 +0x1e61,CUS_0x9536,August,41,782-09-5812,Manager,112362.76,9279.563333,4,4,5,4,"Payday Loan, Personal Loan, Payday Loan, and Mortgage Loan",,20,5.86,2,Standard,1358.65,41.12672063,23 Years and 9 Months,No,236.2776578,119.9617854,High_spent_Large_value_payments,811.7168902,0,0.8687,-0.5551,1.7986,-1.2029,-0.9891 +0x1e6d,CUS_0xc5a0,August,20,650-73-8163,Manager,33335.24,3059.936667,1,6,8,1,Student Loan,3.888343931,7,4.07,4,Good,1226.23,36.32290698,21 Years and 9 Months,No,21.53854806,247.4752938,Low_spent_Large_value_payments,306.9798248,0,-1.0621,-0.1158,0.7973,-0.3561,0.2134 +0x1e79,CUS_0xb282,August,32,273-80-9678,Manager,131577.84,11205.82,2,3,3,2,"Credit-Builder Loan, and Personal Loan",,2,1.53,2,_,816.21,34.45628378,21 Years and 10 Months,No,185.4121959,236.1538372,High_spent_Large_value_payments,939.0159669,0,1.5186,-0.5145,-0.7263,-0.3597,1.2196 +0x1e85,CUS_0xb9b8,August,49,867-87-8867,Entrepreneur,32314.44,2681.166281,2,5,5,3,"Student Loan, Credit-Builder Loan, and Not Specified",10.65390921,11,16.54,2,Good,1187.500034,40.38105141,22 Years and 3 Months,No,204.9179108,,Low_spent_Large_value_payments,377.8942417,0,-0.5012,-0.0618,-0.0389,0.1946,0.952 +0x1e91,CUS_0x3e81,August,20,443-33-4707,Manager,61235.6,4870.966667,0,5,7,100,Payday Loan,1.286797947,3,11.42,2,_,71.52,41.96960973,33 Years and 6 Months,No,27.6545998,235.232905,Low_spent_Small_value_payments,514.2091619,0,-0.2953,0.5938,-1.2015,-1.0053,1.5663 +0x1e9d,CUS_0x3702,August,40,232-80-7977,Journalist,19078.93,1304.910833,5,7,2660,0,,17.15600109,13,13.34,8,Standard,265.86,32.49506507,18 Years and 10 Months,Yes,0,,!@9#%8,353.8611927,0,-0.2781,1.0298,0.0797,-1.0974,1.1648 +0x1ea9,CUS_0x8a0f,August,34,419-92-2278,Mechanic,83703.52,6955.293333,6,9,28.95700519,8,"Not Specified, Payday Loan, Home Equity Loan, Auto Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Personal Loan",,,28.02,10,Bad,5326.9687,26.29410921,10 Years and 11 Months,Yes,1686.720756,443.0806655,Low_spent_Small_value_payments,134.6775429,0,0.0627,1.0334,0.5238,0.3279,-0.2685 +0x1eb5,CUS_0x21be,August,46,340-80-4117,Musician,99127.04,8217.586667,8,3,10,4,"Payday Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",24.72766751,19,13.88,7,Standard,1126.35,24.39190812,26 Years and 8 Months,Yes,245.9851478,103.5941264,High_spent_Large_value_payments,712.1793924,0,-0.1679,-0.0832,-0.4317,-0.7213,0.7719 +0x1ec1,CUS_0x8c1f,August,18,471-06-8456,Writer,10405.01,,6,7,31.06745738,5,"Debt Consolidation Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",28.08036801,15,12.66,13,Standard,2309.630954,29.81330229,15 Years and 3 Months,Yes,33.60279492,,Low_spent_Small_value_payments,219.0560477,0,0.4293,-1.2633,1.4042,0.7024,-0.7545 +0x1ecd,CUS_0x67e1,August,43,298-35-2655,Lawyer,135895.96,11304.66333,8,4,5.288361749,0,,20.04763536,17,12.45,3,Good,377.5465797,32.85035292,18 Years and 11 Months,No,0,588.0160307,High_spent_Large_value_payments,1220.006766,0,-0.2965,0.3801,0.6168,0.5048,-0.8079 +0x1ed9,CUS_0x1c06,August,25,051-71-5276,_______,29608.46,,8,8,31.88954781,7,"Personal Loan, Auto Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",36.05804684,18.99967662,9.06,10,Bad,1439.151282,33.71412081,15 Years and 5 Months,Yes,1465.247726,23.71843397,High_spent_Large_value_payments,319.2409251,0,-0.7017,0.8071,0.2881,-0.8497,1.5684 +0x1ee5,CUS_0x5761,August,30,154-57-8374,Entrepreneur,29999.94,,10,9,15,5,"Auto Loan, Payday Loan, Mortgage Loan, Student Loan, and Mortgage Loan",,25.26963649,3.67,13,Bad,2904.270343,28.8236755,16 Years and 8 Months,Yes,101.6474842,185.9308172,Low_spent_Small_value_payments,279.2211986,0,-0.199,0.0431,-0.2201,0.4516,0.9516 +0x1ef1,CUS_0x9a4a,August,18,456-84-1684,Musician,52972.5,,7,5,32,3,"Student Loan, Home Equity Loan, and Mortgage Loan",,24,7.2,12,_,2196.59,27.55070351,9 Years and 2 Months,Yes,112.6957682,155.170932,High_spent_Small_value_payments,452.1707997,0,-1.9731,0.3498,0.2602,0.1114,0.753 +0x1efd,CUS_0x100b,August,19,#F%$D@*&8,Media_Manager,113781.39,9549.7825,1,4,1,0,,,8,8.34,4,Good,1030.2,28.59294254,15 Years and 10 Months,No,0,617.0792665,High_spent_Small_value_payments,597.8989835,0,0.343,-0.1909,1.5093,1.652,0.597 +0x1f09,CUS_0x6325,August,31,964-44-0435,Lawyer,15746.63,1122.219167,4,3,18,5,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",,14.10644666,10.83,7,Standard,2412.904424,38.87980553,11 Years and 11 Months,Yes,44.04040477,,Low_spent_Small_value_payments,228.8907686,0,0.08,0.2586,1.0011,-0.6791,-1.1994 +0x1f15,CUS_0x4e3c,August,19,624-70-5384,Lawyer,97961.96,,4,6,5.288361749,0,,9.291096169,10,6.46,3,_,750.95,39.37918152,28 Years and 9 Months,No,0,524.591724,High_spent_Large_value_payments,955.8954037,0,-1.781,-1.2108,-0.6669,0.4265,1.4438 +0x1f21,CUS_0xb217,August,48,565-56-8270,_______,31895.07,,3,6,2,4,"Personal Loan, Student Loan, Student Loan, and Not Specified",17.38372502,,-1.94,2,Good,220.33,24.27605886,22 Years and 3 Months,No,60.32284544,208.8004957,!@9#%8,249.7689089,0,0.0222,1.1778,-1.6495,0.1283,-0.0295 +0x1f2d,CUS_0xb374,August,32,946-08-9738,_______,30922.28,,1,5,12,2,"Student Loan, and Mortgage Loan",0.140977037,1.210057196,11.71,2,Good,1073.260432,41.10790524,21 Years and 10 Months,No,30.33820426,80.1346358,High_spent_Small_value_payments,399.0128266,0,-1.1532,2.5061,-0.8931,-0.4503,0.1476 +0x1f39,CUS_0x1d4e,August,37,182-25-5092,Journalist,25530.33,,3,4,19,0,,16.22050044,13,11.98,8,Standard,761.18,36.32469457,32 Years and 0 Months,Yes,0,205.7928847,Low_spent_Medium_value_payments,287.9598653,0,-1.807,-0.5464,-2.9285,1.5398,-1.3047 +0x1f45,CUS_0x8a4b,August,52,142-99-2481,Doctor,110786.64,9299.22,5,7,5,3,"Auto Loan, Personal Loan, and Payday Loan",17.69097775,15,8.68,2,Standard,226.7,24.58289384,24 Years and 11 Months,Yes,209.314507,925.1677802,Low_spent_Small_value_payments,85.43971283,0,0.819,-1.134,0.049,0.8637,1.4787 +0x1f51,CUS_0x93ff,August,27,237-50-9740,Lawyer,39696.98,,5,5,10,1,Not Specified,,3.588738038,1.98,1194,Good,151.3673963,27.28968593,21 Years and 10 Months,No,31.90658017,239.0805688,Low_spent_Medium_value_payments,330.1210177,0,1.4583,0.1163,-1.5292,0.0421,1.0056 +0x1f5d,CUS_0x3e2d,August,34,958-76-6001,Journalist,120366.6,9888.55,4,7,2,4,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",12.03521546,9.3332975,0.8,6,Good,1587.336445,39.92962514,21 Years and 6 Months,NM,233.4424036,,High_spent_Medium_value_payments,590.7395212,0,0.7939,-1.7014,1.006,1.1915,-1.3084 +0x1f69,CUS_0x493c,August,58,977-92-2690,Mechanic,13074.395,1356.532917,8,7,8,1,Personal Loan,,13,5.96,6,Good,937.2326253,26.1164195,30 Years and 6 Months,No,9.175797471,142.0027765,Low_spent_Small_value_payments,288.6385752,0,-1.9422,-0.2541,-2.4862,-1.1832,-0.7311 +0x1f75,CUS_0x88a0,August,31,266-68-0248,Manager,76087.68,6155.64,6,1191,9,4,"Payday Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",,10,8.73,2,Standard,50.22,39.67745252,22 Years and 2 Months,Yes,232.066077,10000,High_spent_Large_value_payments,519.4126474,0,1.5074,-0.6739,-0.0546,-2.2804,0.34 +0x1f81,CUS_0x543f,August,24,333-87-6291,Mechanic,51824.94,4417.745,6,7,27.06745738,8,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",,22,2.63,8,_,3181.430954,34.67685108,7 Years and 10 Months,Yes,21784,121.3319704,High_spent_Medium_value_payments,286.0627872,0,-0.5861,1.2987,0.3343,-0.2519,-0.0042 +0x1f8d,CUS_0x9f7e,August,31,541-63-9508,Journalist,11431.775,,8,6,15.28836175,4,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",,15,0.52,3,_,107.9074288,36.36734316,17 Years and 4 Months,No,29.48547134,,High_spent_Small_value_payments,266.9389032,0,-0.3816,0.7118,-1.8085,-1.5111,-0.0221 +0x1f99,CUS_0x23a6,August,38,564-11-2906,Doctor,14224.655,1395.387917,8,6,13,1,Home Equity Loan,,10,8.1,5,Standard,1343.01,36.9384051,33 Years and 3 Months,No,7.642056541,59.12268648,Low_spent_Small_value_payments,362.7740486,0,1.3009,-0.061,-0.6556,-0.6193,-1.5378 +0x1fa5,CUS_0xa874,August,49,742-30-5692,Musician,142170.12,,3,4,7.288361749,2,"Mortgage Loan, and Home Equity Loan",,1,2.58,3,Good,261.3373073,40.78740276,24 Years and 10 Months,No,183.7595131,,High_spent_Large_value_payments,968.8022783,0,-0.2292,1.1202,-2.6751,-0.4766,0.4973 +0x1fb1,CUS_0x4ea5,August,52,407-67-3737,Mechanic,19951.765,1592.647083,1,1,12,2,"Personal Loan, and Mortgage Loan",5.284208936,6,-2.11,5,Good,1336.624246,23.75588255,33 Years and 3 Months,No,28.21305815,206.5686071,Low_spent_Small_value_payments,245.2083442,0,1.4738,-0.2028,-0.089,-0.9479,0.9742 +0x1fbd,CUS_0x8208,August,40,084-02-0981,Teacher,94454.1,8102.175,1,4,2866,3,"Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",4.81370813,6,1.63,6,Good,1155.37493,29.04609173,30 Years and 4 Months,No,152.5068947,799.1169626,Low_spent_Large_value_payments,216.6508545,0,0.24,-0.4228,1.41,0.9162,-1.1458 +0x1fc9,CUS_0xb35f,August,33,794-17-7391,Doctor,27063.43,2455.285833,8,1292,12,4,"Credit-Builder Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",17.93791014,13,12.49,5,Standard,1103.205112,30.3032228,22 Years and 8 Months,Yes,74.73897797,72.21108643,High_spent_Large_value_payments,347.6465391,0,-0.6179,-0.5257,-1.191,-1.546,-1.2117 +0x1fd5,CUS_0x8696,August,44,579-41-4525,Media_Manager,36980.1,,6,10,30.06745738,6,"Credit-Builder Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",30.30407271,13,9.55,14,_,2626.670954,41.00668868,17 Years and 8 Months,Yes,174.0872209,,!@9#%8,254.6932599,0,-1.2889,1.0839,1.0003,0.6019,-1.0837 +0x1fe1,CUS_0x49da,August,27,915-13-4225,Teacher,96582.24,7886.52,3,3,13,1,Auto Loan,22.39646713,18,19.79,0,_,482.88,36.15390648,26 Years and 2 Months,Yes,72.4602111,115.2932201,High_spent_Large_value_payments,840.8985688,0,-0.9153,-1.0048,-0.8115,0.0757,-0.4492 +0x1fed,CUS_0x5d94,August,46,653-16-0086,Developer,122978.43,10514.2025,0,1,9,3,"Home Equity Loan, Student Loan, and Debt Consolidation Loan",,3,2.33,3,Good,1105.896347,43.5902608,28 Years and 5 Months,No,168.0066864,203.5077768,High_spent_Large_value_payments,944.3986807,0,-1.1753,0.9086,0.5442,-0.1265,0.3806 +0x1ff9,CUS_0x3ef5,August,32,259-09-9023,Doctor,7821.24,,8,10,30.95700519,6,"Mortgage Loan, Personal Loan, Home Equity Loan, Personal Loan, Auto Loan, and Payday Loan",36.14909443,16.49908274,19.34,7,Bad,3487.24849,31.12988509,10 Years and 4 Months,Yes,1343.211367,49.5640952,Low_spent_Small_value_payments,223.0511681,0,-0.8154,0.4674,1.6357,-0.6633,0.5399 +0x2005,CUS_0xbda3,August,26,016-19-9621,Manager,30972.54,2431.045,7,9,17.06745738,2,"Home Equity Loan, and Mortgage Loan",,17.4436283,18.91,10,_,2745.357569,35.18010319,14 Years and 4 Months,Yes,35.63379962,149.8917997,High_spent_Small_value_payments,290.8586127,0,-1.2649,0.5058,0.8647,-2.1263,-1.2011 +0x2011,CUS_0x29fd,August,29,165-17-6571,Developer,7709.625,625.46875,8,9,32.95700519,6,"Personal Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",,20.43427781,12.01,14,_,3061.703885,38.22254637,8 Years and 9 Months,Yes,56811.48344,0,High_spent_Large_value_payments,228.149279,0,-0.6142,1.9379,1.0594,-1.1519,1.4778 +0x201d,CUS_0xbbf3,August,54,111-86-2174,Journalist,34547.54,2994.961667,6,6,5,1,Personal Loan,19.07554215,,3.59,6,Good,939.31,25.48717376,22 Years and 9 Months,No,27.76471097,68.2725422,High_spent_Large_value_payments,443.4589135,0,0.4406,1.4056,-0.7998,0.7119,1.7665 +0x2029,CUS_0x2c31,August,30,680-06-0631,Musician,173196.32,14258.02667,4,7,8.288361749,0,Home Equity Loan,3.179199278,5,6.06,4,_,879.4785276,36.06946976,29 Years and 0 Months,No,107.8108996,2260.985896,Low_spent_Small_value_payments,44.4788737,0,-0.6274,-0.2889,0.5435,0.014,-0.0548 +0x2035,CUS_0xb4be,August,19,976-78-6014,Engineer,20354.85,1403.2375,8,6,31.06745738,7,"Payday Loan, Payday Loan, Not Specified, Credit-Builder Loan, Student Loan, Payday Loan, and Personal Loan",,24,23.66,10,Bad,4512.040954,39.05110234,2 Years and 9 Months,Yes,80.21854913,131.2683277,Low_spent_Small_value_payments,192.1165852,0,-0.0007,0.2507,-0.7875,-0.0141,-0.2788 +0x2041,CUS_0xa203,August,40,986-88-3065,Entrepreneur,46113.81,3953.8175,7,5,24,2,"Debt Consolidation Loan, and Debt Consolidation Loan",20.13814373,,11.77,9,Standard,2803.42849,24.34803301,,Yes,55.77594705,287.1709637,Low_spent_Medium_value_payments,332.4348392,0,-1.0412,-0.7212,-2.1728,-0.1636,0.3974 +0x204d,CUS_0xa7c3,August,18,327-52-9304,Doctor,8882.47,555.2058333,9,7,20.06745738,7,"Personal Loan, Credit-Builder Loan, Not Specified, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",30.09035197,18,15.62,7,Bad,1804.320954,26.62650353,19 Years and 9 Months,NM,27.52869913,19.85194671,Low_spent_Small_value_payments,271.4196495,0,-1.3137,-0.0704,-1.0149,0.6992,-0.8786 +0x2059,CUS_0x76e7,August,26,532-39-3348,Manager,34128.92,2740.076667,6,8,31,6,"Student Loan, Personal Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",,22.26263981,3.99,13,Bad,2884.291813,35.29668548,6 Years and 0 Months,Yes,118.0668546,,High_spent_Small_value_payments,245.1656109,0,0.82,0.1672,-0.5493,1.1786,1.8987 +0x2065,CUS_0x46d4,August,43,#F%$D@*&8,Scientist,29042.45,,3,5,5,1,Student Loan,13.86036088,,9.72,4,Standard,1092.55,35.85630139,24 Years and 3 Months,Yes,16.75670654,207.364515,Low_spent_Small_value_payments,291.0991951,0,-0.156,1.5256,0.3862,1.097,-0.2732 +0x2071,CUS_0x396e,August,33,186-66-1832,Architect,26716.09,2372.340833,4,5,6,3,"Not Specified, Credit-Builder Loan, and Personal Loan",25.41053666,17,3.1,1,_,643.89,28.12988308,16 Years and 2 Months,No,55.13993286,140.952739,!@9#%8,331.1414115,0,-0.3028,1.3697,-0.4684,1.0323,2.0733 +0x207d,CUS_0x74f5,August,18,060-43-3101,Doctor,74733.44,5229.153085,9,6,19,5,"Payday Loan, Mortgage Loan, Payday Loan, Student Loan, and Not Specified",25.10943324,20,22.48,12,Bad,4066.863123,36.1559144,3 Years and 3 Months,Yes,900.1733535,190.532656,High_spent_Medium_value_payments,482.0483817,0,-0.8641,-0.7843,-0.0837,1.1065,0.1372 +0x2089,CUS_0xb9e5,August,44,616-71-3032,Media_Manager,8681.77,647.4808333,6,9,23.88954781,7,"Student Loan, Personal Loan, Not Specified, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",35.08585053,21,19.6,17,Bad,2216.25,36.73937584,14 Years and 11 Months,Yes,1351.925633,,Low_spent_Medium_value_payments,240.7512375,0,-1.2253,-0.57,0.6999,1.1521,-0.4352 +0x2095,CUS_0xacbe,August,38,406-29-0152,Media_Manager,10034.55,719.2125,4,4,28,6,"Home Equity Loan, Mortgage Loan, Payday Loan, Personal Loan, Mortgage Loan, and Student Loan",13.38848692,9,12.65,7,Standard,1669.84,33.72230424,9 Years and 10 Months,NM,41.08254704,,High_spent_Small_value_payments,243.5009562,0,2.7189,3.2898,-0.6573,-1.4827,0.0835 +0x20a1,CUS_0x9951,August,41,735-73-7454,Teacher,20540.49,1859.7075,0,4,8,1,Payday Loan,0,3,5.09,2,Good,1118.37,32.40135154,16 Years and 2 Months,No,17975,37.57726185,High_spent_Medium_value_payments,389.5718284,0,1.1211,-0.442,0.2791,-0.4933,-0.6141 +0x20ad,CUS_0xbcb9,August,52,441-44-7311,Musician,38175.39,3287.2825,1,2,6.288361749,2,"Personal Loan, Personal Loan, and Debt Consolidation Loan",5.03999661,8,11.81,2,Good,315.36,26.87430463,28 Years and 4 Months,NM,69.05565634,,Low_spent_Medium_value_payments,229.8527697,0,-0.4515,0.5554,0.7596,-1.041,-0.2047 +0x20b9,CUS_0xae95,August,22,801-07-4941,Accountant,116594.91,,5,6,9.288361749,2,"Not Specified, and Mortgage Loan",0,3,8.47,0,Good,1124.02,23.56493392,29 Years and 9 Months,No,171.0770243,1541.735957,Low_spent_Small_value_payments,,0,1.0888,1.9429,-1.0073,-1.4245,1.3689 +0x20c5,CUS_0x1f9e,August,49,192-60-6723,Manager,24894.05,,8,3,8,0,,19.11934398,,2.3,5,_,86.43,33.83749258,,No,0,139.6363457,Low_spent_Small_value_payments,387.514071,0,0.5227,-1.0356,-0.8792,0.3067,0.5494 +0x20d1,CUS_0x2242,August,39,067-10-5283,Teacher,39399.9,,6,6,18.06745738,2,"Not Specified, and Payday Loan",,21.28541069,18.62,15,Standard,2630.853171,37.50995935,12 Years and 0 Months,Yes,43.1712988,73.46371303,High_spent_Large_value_payments,445.3772002,0,0.6242,-0.4084,-0.6416,0.745,0.5593 +0x20dd,CUS_0x3e85,August,25,863-16-6413,Musician,142113.96,11903.83,6,4,17,3,"Payday Loan, Home Equity Loan, and Personal Loan",,12,18.1,9,Standard,1037.68,30.66748597,22 Years and 10 Months,Yes,224.1221386,104.1574268,High_spent_Large_value_payments,1102.103435,0,1.1418,-0.5645,-0.4614,-0.9307,0.1138 +0x20e9,CUS_0xa47,August,48,815-90-8113,Mechanic,65299.38,5305.615,4,5,8,2,"Student Loan, and Credit-Builder Loan",0,0,5.68,2,Good,1347.865535,32.76437061,26 Years and 5 Months,NM,77.00931295,61.08345477,High_spent_Medium_value_payments,642.4687323,0,-1.7001,-1.9649,0.1109,-0.0693,-0.0411 +0x20f5,CUS_0xaa40,August,52,278-80-9296,Manager,33200.52,,6,4,20,2,"Student Loan, and Student Loan",25.67032958,18,8.59,7,Standard,1290.73,33.49223798,18 Years and 0 Months,No,28.06429662,,Low_spent_Small_value_payments,290.3205348,0,0.6066,0.1218,1.9425,0.9329,0.9833 +0x2101,CUS_0x1452,August,41,976-05-6851,Architect,82289.36,6951.446667,8,8,22,5,"Mortgage Loan, Payday Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",27.90151643,18.19722264,18.75,12,Bad,5209.314983,23.8670272,9 Years and 6 Months,Yes,240.7514411,187.5039006,Low_spent_Medium_value_payments,546.8893249,0,0.2726,0.8289,1.0472,-0.5631,-1.0205 +0x210d,CUS_0x76cf,August,39,656-17-2477,_______,7792.475,,6,7,5199,7,"Personal Loan, Student Loan, Payday Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,20.94724504,14.6,10,Standard,2289.482535,39.36846871,15 Years and 5 Months,Yes,42.0997216,,High_spent_Small_value_payments,244.4371038,0,-0.0282,-0.0366,0.8492,0.9714,-0.2056 +0x2119,CUS_0x703f,August,37,830-01-1609,Writer,65778.22,5561.518333,5,3,11,4,"Mortgage Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",25.38340957,18,11.6,6,Standard,705.44,31.1060513,16 Years and 10 Months,No,172.5305333,90.12282122,High_spent_Medium_value_payments,543.4984788,0,-0.4143,1.2273,-1.2834,-1.2199,-0.9382 +0x2125,CUS_0x572,August,44,643-37-2319,Teacher,12016,,6,3,14,3,"Not Specified, Mortgage Loan, and Auto Loan",,10,15.23,0,Standard,583.27,35.37122714,30 Years and 8 Months,Yes,20.74354374,10000,Low_spent_Medium_value_payments,303.1006423,0,-0.0812,-0.0773,1.3309,0.2445,0.9599 +0x2131,CUS_0x104e,August,50,837-93-5062,Teacher,19180.87,,8,4,18,4,"Debt Consolidation Loan, Auto Loan, Payday Loan, and Payday Loan",18.07520922,17,9.32,6,Standard,1127.57,29.46533772,25 Years and 2 Months,No,57.36421101,107.9832273,High_spent_Small_value_payments,263.4931451,0,-0.733,-0.7833,-0.0264,-0.8805,1.7583 +0x213d,CUS_0x6f38,August,31,593-29-9633,Entrepreneur,60552.76,,3,7,12,3,"Mortgage Loan, Home Equity Loan, and Auto Loan",22.72430236,13.10963112,8.72,4,Good,511.3761367,34.8734332,19 Years and 4 Months,No,111.7288201,10000,Low_spent_Small_value_payments,346.4100329,0,-0.4026,0.6491,0.4289,0.7093,0.5798 +0x2149,CUS_0x7b3c,August,40,397-72-8040,Mechanic,44386.47,3703.8725,10,6,26,9,"Payday Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Not Specified, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",,25,11.95,12,_,1275.46,30.27410217,9 Years and 6 Months,Yes,298.8485303,105.8541452,High_spent_Medium_value_payments,215.6845745,0,0.2668,1.2969,0.7873,-0.3638,-0.3267 +0x2155,CUS_0x709d,August,40,042-91-6695,Lawyer,9141.63,,9,6,34.06745738,5,"Mortgage Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Auto Loan",46.37643347,23.04722145,0.8,13,Bad,3041.793304,25.9732897,16 Years and 8 Months,Yes,27.80112878,53.28946519,Low_spent_Large_value_payments,241.9693681,0,-0.7864,-0.6258,-1.2031,-0.4206,1.1092 +0x2161,CUS_0xc434,August,36,891-36-0838,Journalist,11245.11,1173.0925,3,6,11,100,,15.44335841,13,8.01,1,Standard,169.86,23.44506172,23 Years and 9 Months,Yes,0,139.2063573,Low_spent_Small_value_payments,268.1028927,0,0.2628,2.8766,-0.0409,-0.4163,0.9452 +0x216d,CUS_0x8a12,August,40,691-41-8769,Accountant,98197.74,,5,6,6,3,"Mortgage Loan, Student Loan, and Payday Loan",12.97609825,8,9.09,7,Standard,627.5,40.12296727,25 Years and 0 Months,No,138.5419769,265.383344,High_spent_Medium_value_payments,646.5891791,0,-1.5148,-0.9465,0.5467,0.0173,-0.3742 +0x2179,CUS_0x4eb4,August,21,955-76-5444,Journalist,30197.28,,5,7,14,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",17.50620672,13,20,5,Standard,811.08,38.90472276,,Yes,57.08103771,92.73012251,!@9#%8,369.6328398,0,0.9537,0.2502,0.2716,-0.459,0.0937 +0x2185,CUS_0xab00,August,21,468-20-7719,Manager,31633.54,,1,5,8,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",7.144205906,8.33388256,9.7,4,Good,955.3744737,35.00363756,22 Years and 3 Months,NM,50.76844004,136.6381695,High_spent_Small_value_payments,365.6062237,0,0.3768,-0.7254,1.8908,0.378,0.8918 +0x2191,CUS_0x8c9a,August,32,759-79-5662,Architect,118172.64,9449.416386,0,2,2.288361749,4,"Home Equity Loan, Payday Loan, Auto Loan, and Auto Loan",7.442874209,8,5.71,1,_,612.9881673,37.18800553,16 Years and 10 Months,No,850.1719107,697.5210602,High_spent_Small_value_payments,650.2406454,0,-1.3548,-0.5301,-1.0183,-0.0631,1.1279 +0x219d,CUS_0x2c5e,August,35,688-03-3022,Lawyer,19623.18,,9,8,26,2,"Debt Consolidation Loan, and Auto Loan",17.97891727,13.39487008,11.26,16,_,1523.311502,26.31710973,,Yes,19.7587278,94.97377153,Low_spent_Medium_value_payments,345.8940007,0,1.445,0.8603,-0.4494,-1.1378,0.3 +0x21a9,CUS_0x70d5,August,32,514-05-2202,Mechanic,63197.26,5042.438333,6,3,13,3,"Debt Consolidation Loan, Student Loan, and Student Loan",,12,13.43,12,Standard,1435.94,40.22106488,24 Years and 2 Months,Yes,148.4745434,190.2057837,Low_spent_Small_value_payments,455.5635062,0,0.1637,0.7466,-0.0036,-2.1593,0.9038 +0x21b5,CUS_0xb052,August,36,076-62-8134,Journalist,10007.815,757.9845833,4,4,8,7,"Student Loan, Personal Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",,6,17.16,7,Standard,2195.63,34.91856025,20 Years and 2 Months,Yes,55.9509731,61.70153841,Low_spent_Small_value_payments,248.1459468,0,0.0582,-0.0188,-0.1912,-0.4862,0.1223 +0x21c1,CUS_0x7c34,August,28,326-05-4047,Entrepreneur,121688.04,10006.67,7,3,11.28836175,4,"Personal Loan, Mortgage Loan, Not Specified, and Payday Loan",,15,0.66,4,_,48.14128439,30.99908369,26 Years and 4 Months,NM,288.6654547,622.1656366,High_spent_Medium_value_payments,783.7522181,0,-1.442,-1.042,-0.8946,-0.5712,0.2382 +0x21cd,CUS_0x4256,August,21,030-61-4163,Accountant,31069.32,,2,3,12,2,"Auto Loan, and Student Loan",17.56029049,,7.78,7,Good,306.0728745,27.61897222,19 Years and 6 Months,No,34.16860445,151.6357246,Low_spent_Large_value_payments,343.1416648,0,-0.0859,1.4242,1.3118,0.5891,0.5815 +0x21d9,CUS_0x4f04,August,45,546-04-1407,Mechanic,72241.02,5751.085,8,4,4,1,Payday Loan,17.09626571,12,0.67,7,Good,740.2368489,25.2228736,29 Years and 5 Months,No,39.80832826,369.4398553,High_spent_Small_value_payments,481.6437906,0,0.6142,-0.0328,0.1679,0.6009,0.281 +0x21e5,CUS_0x41b7,August,25,891-76-2011,Teacher,7612.725,928.39375,8,5,16,6,"Mortgage Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",45.8314126,25,6.06,13,Bad,1514.74,38.57740585,9 Years and 0 Months,Yes,27.52282261,38.53797533,High_spent_Medium_value_payments,276.7785771,0,-1.3224,1.3588,0.0433,-0.0622,-1.7444 +0x21f1,CUS_0x9095,August,46,410-78-4268,Manager,16953.985,,4,5,4,2,"Auto Loan, and Personal Loan",,4.795492043,10.64,5,Good,601.2167891,24.75698985,27 Years and 11 Months,No,18.28600919,24.23412328,High_spent_Medium_value_payments,375.9630759,0,-0.3817,1.067,0.394,-0.9767,0.2803 +0x21fd,CUS_0xa05f,August,25,276-54-6995,Scientist,125508.36,10559.03,2,3,5,4,"Mortgage Loan, Student Loan, Debt Consolidation Loan, and Student Loan",7.851183034,9.265300481,3.57,3,_,548.2279627,42.73577392,33 Years and 3 Months,No,305.302835,443.1330641,High_spent_Medium_value_payments,557.4671008,0,0.7064,-0.2474,-0.1571,2.2377,0.435 +0x2209,CUS_0x309d,August,19,887-92-9025,Doctor,7495.305,,6,5,28,4,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, and Student Loan",,15.89118865,17.12,13,Standard,2577.937796,37.98240232,6 Years and 6 Months,Yes,16.15751629,10000,Low_spent_Small_value_payments,290.5116085,0,-1.866,-0.8291,-1.5532,-0.3041,0.2832 +0x2215,CUS_0xa522,August,18,079-57-0728,_______,35133.49,,4,4,8,3,"Home Equity Loan, Mortgage Loan, and Student Loan",13.94048045,12,7.29,4,_,586.6,38.54613994,28 Years and 11 Months,Yes,45.89291064,23.68052109,High_spent_Large_value_payments,458.8056516,0,-0.2637,0.7535,-0.7587,-0.1595,-1.4232 +0x2221,CUS_0x8a6e,August,49,413-30-1170,Mechanic,16866.5,,4,4,20.06745738,1,Home Equity Loan,,12,1.31,6,Standard,1609.300954,35.54124542,28 Years and 11 Months,No,8.540130456,93.82043655,!@9#%8,322.4733117,0,1.1815,1.8865,0.7936,-0.9021,-1.0556 +0x222d,CUS_0x77d1,August,33,#F%$D@*&8,Accountant,18969.19,,1,7,7.288361749,0,,10.58346662,10.77370369,3.36,4,Good,62.39343547,24.44382383,23 Years and 8 Months,No,0,493.8776595,High_spent_Small_value_payments,371.0363848,0,-1.1405,0.3851,-0.7956,1.102,0.6942 +0x2239,CUS_0xde6,August,55,392-06-4039,Engineer,36154.19,,5,3,3,2,"Credit-Builder Loan, and Not Specified",6.538553286,8,10.39,2,Good,594.3664856,37.73210182,19 Years and 10 Months,No,30.64502724,,Low_spent_Small_value_payments,346.5410447,0,1.0753,2.4781,0.2803,0.2509,-2.1606 +0x2245,CUS_0xa672,August,32,874-58-8010,Entrepreneur,51113.85,4356.4875,7,9,30,9,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Student Loan, Payday Loan, Home Equity Loan, Auto Loan, and Student Loan",,28,20.82,9,_,3164.78,36.62570432,0 Years and 8 Months,Yes,214.8438774,107.7125187,Low_spent_Large_value_payments,383.0923539,0,0.2453,-0.1174,0.5972,-0.142,1.4951 +0x2251,CUS_0x8caf,August,21,093-46-5039,Developer,18784.88,,8,3,26,7,"Payday Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Student Loan, and Personal Loan",,22.55404479,17.08,12,Standard,2292.546569,38.66418586,18 Years and 5 Months,Yes,108.0336712,,Low_spent_Medium_value_payments,181.3534649,0,-1.4979,0.2345,0.2546,0.585,0.2634 +0x225d,CUS_0x4655,August,46,341-38-6599,Accountant,49889.38,,6,7,8,0,,16.99626374,17,5.12,7,Good,1266.321429,35.22633843,,No,0,65.24721956,High_spent_Medium_value_payments,630.2600161,0,1.5324,1.3409,-0.3034,0.5205,1.4452 +0x2269,CUS_0x25aa,August,18,177-44-9176,Mechanic,29233.34,2637.111667,6,4,17,3,"Student Loan, Debt Consolidation Loan, and Payday Loan",10.71712159,11,8.9,5,_,96.31,28.26216337,9 Years and 11 Months,Yes,50.71445532,,Low_spent_Large_value_payments,250.1658187,0,-2.3114,0.7144,-1.7174,-2.7077,0.7367 +0x2275,CUS_0xbd08,August,40,605-66-3118,Journalist,28922.03,,2,7,1,0,,7.324994949,5.64328237,11.99,3,_,1504.544405,23.4173157,33 Years and 4 Months,No,0,80.14739518,Low_spent_Medium_value_payments,454.6695215,0,0.3512,-0.6978,-1.1821,0.1593,1.9753 +0x2281,CUS_0x6b44,August,39,453-58-1018,Developer,20742.46,,5,4,8,5,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Student Loan",22.17623804,18,16,2238,Standard,1319.87,28.18747138,,Yes,60.06611256,166.8043383,Low_spent_Small_value_payments,243.2833825,0,-1.512,-0.2435,0.7483,0.4513,0.2426 +0x228d,CUS_0x7517,August,35,795-08-8326,Teacher,55719.18,4689.265,8,97,18,5,"Auto Loan, Home Equity Loan, Auto Loan, Home Equity Loan, and Payday Loan",,21.36994891,,6,Bad,4488.012069,39.52934688,14 Years and 2 Months,Yes,130.4684033,78.69377148,!@9#%8,499.7643252,0,-2.0907,-0.9479,-0.0561,1.0579,2.1385 +0x2299,CUS_0x5228,August,18,112-22-2857,Mechanic,55558.71,,10,5,33.06745738,7,"Not Specified, Payday Loan, Mortgage Loan, Not Specified, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,16,19.59,13,_,4419.580954,27.51608553,13 Years and 11 Months,Yes,210.1897087,571.7792643,Low_spent_Small_value_payments,,0,-1.7595,-0.6311,-0.9616,1.3411,0.471 +0x22a5,CUS_0x2e6e,August,25,176-54-2609,Engineer,33447.42,2859.285,8,5,13,3,"Credit-Builder Loan, Mortgage Loan, and Auto Loan",9.254444354,10.60139747,18.88,7,_,1750.864544,32.91152702,12 Years and 11 Months,NM,60.5135673,,High_spent_Large_value_payments,408.1961175,0,0.7339,0.937,-0.2698,-0.7866,-0.4374 +0x22b1,CUS_0x280b,August,27,434-17-8443,Accountant,34841.87,3025.489167,1,7,0.288361749,2,"Payday Loan, and Auto Loan",0,1,2.24,6,_,142.05,37.43020928,31 Years and 2 Months,No,33.36609811,,Low_spent_Medium_value_payments,374.3087324,0,0.6804,-0.4581,0.3329,-1.0572,0.6089 +0x22bd,CUS_0x51b4,August,36,243-06-9936,Engineer,17655.43,1530.285833,8,10,35.95700519,6,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Student Loan",54.83062955,29.79129934,24.49,10,Bad,3240.834823,31.20069924,9 Years and 0 Months,Yes,1406.137663,,Low_spent_Small_value_payments,119.3725244,0,-2.0102,2.7568,-0.3266,0.2029,1.1138 +0x22c9,CUS_0xa1d6,August,30,751-35-1347,Architect,7103.035,725.9195833,6,5,28,6,"Personal Loan, Not Specified, Personal Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",28.9228572,12.53742833,8.95,7,Standard,2381.089096,37.56110095,13 Years and 2 Months,Yes,30.30549812,,Low_spent_Small_value_payments,284.5355431,0,-0.0987,1.3054,-0.9414,0.6016,-0.779 +0x22d5,CUS_0x8b12,August,80,645-02-5061,Journalist,63101.14,,3,4,2.288361749,4,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",,8,9.19,5,_,64.53,27.55432925,17 Years and 0 Months,No,170.5429655,680.3444202,High_spent_Small_value_payments,353.6929087,0,-0.0772,0.3365,-1.0486,-0.4807,-0.2248 +0x22e1,CUS_0xa459,August,20,315-62-8807,Accountant,33453.08,2658.756667,10,10,23,2,"Not Specified, and Debt Consolidation Loan",,9.437477173,11.3,8,Standard,1626.879113,23.91224288,12 Years and 5 Months,Yes,30.75983367,,Low_spent_Small_value_payments,196.0359619,0,-2.0887,1.1922,0.0041,-0.5075,-0.3236 +0x22ed,CUS_0xf23,August,49,634-61-3484,Mechanic,83845.7,6958.141667,5,7,3.288361749,2,"Credit-Builder Loan, and Auto Loan",7.584845225,8,3.59,4,Good,45.7640004,38.44458206,25 Years and 6 Months,No,107.3811304,800.3275002,Low_spent_Medium_value_payments,540.4039881,0,-0.1935,-0.683,-1.6851,-1.0959,-0.2783 +0x22f9,CUS_0x7cfc,August,80,608-99-2576,Writer,108415,8848.583333,3,5,15.28836175,0,Not Specified,,20,16.33,6,Standard,982.7059773,31.90173034,,Yes,76.85756306,888.4802914,High_spent_Small_value_payments,654.1943488,0,0.7405,0.3952,1.0895,0.9121,-0.5959 +0x2305,CUS_0x728f,August,57,698-98-1498,_______,32663.41,,1,5,3,4,"Personal Loan, Mortgage Loan, Not Specified, and Home Equity Loan",,4,1.28,2,Good,986.7465011,36.43261914,16 Years and 11 Months,No,55.40536574,391.3766933,Low_spent_Small_value_payments,185.4675456,0,0.4901,0.098,0.7919,-2.4788,-0.0049 +0x2311,CUS_0xd05,August,45,600-02-1948,Musician,132537.24,10111.96258,3,2,12,1,Mortgage Loan,,1,0.69,1,Good,340.7175048,36.55721365,30 Years and 0 Months,No,780.3175743,868.7707879,Low_spent_Medium_value_payments,539.9273599,0,-0.1625,0.119,0.2356,-1.2908,1.6394 +0x231d,CUS_0x3cf7,August,31,226-49-8871,Journalist,17850.56,,1414,5,19.06745738,100,"Mortgage Loan, Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,24.38522736,7.11,11,Bad,3978.063074,30.21736218,8 Years and 3 Months,Yes,127.2236916,,Low_spent_Small_value_payments,216.1838847,0,-2.3884,0.1036,0.6039,-2.2993,0.4426 +0x2329,CUS_0xa71a,August,33,999-84-9578,Teacher,15713.83,1313.485833,7,8,24.06745738,2,"Home Equity Loan, and Credit-Builder Loan",23.83583754,12,14.39,7,Standard,2494.940954,33.05788971,11 Years and 0 Months,Yes,20.30880921,28.75335033,High_spent_Large_value_payments,295.5661358,0,0.5095,1.384,0.328,-0.9442,-1.6563 +0x2335,CUS_0x32ce,August,31,153-11-6855,Accountant,62050.89,,8,7,22,7,"Personal Loan, Credit-Builder Loan, Student Loan, Student Loan, Credit-Builder Loan, Student Loan, and Home Equity Loan",,26.39260701,9.95,13,Bad,4923.947817,25.80109764,6 Years and 0 Months,NM,286.959221,119.0840222,High_spent_Medium_value_payments,382.6475068,0,0.5173,0.6364,0.9656,0.9008,-0.3961 +0x2341,CUS_0x9b4c,August,37,129-84-0948,Doctor,18744.4,,8,7,29,9,"Credit-Builder Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Student Loan, and Mortgage Loan",32.45146156,23,20.17,12,Bad,4432.68,29.57143168,6 Years and 2 Months,Yes,139.9403852,,Low_spent_Small_value_payments,225.369594,0,0.082,0.4309,-0.5147,-0.295,0.723 +0x234d,CUS_0x4330,August,38,500-96-4323,Media_Manager,12070.845,1088.90375,8,5,8,4,"Student Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",,12,2.96,4,_,759.86,25.40908415,28 Years and 10 Months,Yes,31.3499696,76.93505249,Low_spent_Medium_value_payments,280.6053529,0,-0.3017,-0.2056,-0.5341,-0.9673,0.3042 +0x2359,CUS_0xf59,August,22,008-37-9819,Doctor,38539.57,3438.630833,4,2,2.288361749,0,Mortgage Loan,0,2,8.42,0,Good,482.6015315,33.77934616,30 Years and 2 Months,NM,22.68327917,558.6380566,High_spent_Medium_value_payments,451.5341933,0,0.8042,-0.0909,0.9047,1.333,0.9381 +0x2365,CUS_0x9a58,August,50,669-26-2513,Mechanic,48411.24,4306.27,8,3,3,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Mortgage Loan",14.17280722,11,4.04,3,Good,733.0411209,31.09377623,18 Years and 10 Months,No,82.22147115,361.7774458,Low_spent_Medium_value_payments,301.8963381,0,-1.644,0.3139,-0.0499,-0.8253,-1.0784 +0x2371,CUS_0x409e,August,24,088-38-3435,_______,47275.96,,6,3,4,945,"Payday Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",,18,9.43,3,Good,266.992829,23.33122534,22 Years and 9 Months,No,121.9288772,,High_spent_Large_value_payments,471.3693537,0,1.6967,-1.3386,0.3496,0.6864,-1.3453 +0x237d,CUS_0x532d,August,42,987-64-7939,Writer,22409880,,5,3,3.288361749,4,"Mortgage Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",0,1,6.94,2,Good,1483.59,34.0380473,32 Years and 0 Months,No,98.46945408,707.5838927,Low_spent_Small_value_payments,138.1197809,0,-1.114,-1.9045,-1.3766,-0.6503,0.2988 +0x2389,CUS_0xadb7,August,28,332-22-1188,Architect,33314.96,,10,5,18,7,"Mortgage Loan, Student Loan, Auto Loan, Student Loan, Not Specified, Mortgage Loan, and Student Loan",44.65850097,28.06864247,16.82,6,_,3632.696514,22.78560579,0 Years and 8 Months,Yes,98.19308987,102.9909421,High_spent_Small_value_payments,354.3406347,0,-1.4604,2.442,0.8799,-0.6752,0.1612 +0x2395,CUS_0xa9ca,August,45,#F%$D@*&8,Lawyer,7599.035,898.2529167,8,9,28.95700519,146,"Personal Loan, Payday Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",37.90508849,23.77776893,3.48,7,Bad,2654.571152,37.28059392,17 Years and 11 Months,Yes,1352.878966,67.99418121,Low_spent_Large_value_payments,217.9017752,0,1.5813,-0.3863,-1.0937,0.4155,-1.178 +0x23a1,CUS_0x69a9,August,19,#F%$D@*&8,Writer,97640.4,8034.7,5,7,6,4,"Auto Loan, Auto Loan, Student Loan, and Credit-Builder Loan",17.6012019,14,9.86,4,Standard,80.5,25.91202308,11 Years and 5 Months,Yes,259.8059369,356.4875127,Low_spent_Medium_value_payments,467.1765504,0,0.0594,0.2716,-1.3566,-0.1327,0.4574 +0x23ad,CUS_0x7dfb,August,34,986-47-8911,Musician,75881.16,6535.43,10,6,2565,6,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Payday Loan, and Student Loan",,24.00330924,9.94,11,_,2541.902454,23.43467187,10 Years and 9 Months,NM,232.3847176,509.8968823,Low_spent_Medium_value_payments,191.2614002,0,1.4337,0.0675,0.7897,-0.0183,0.2024 +0x23b9,CUS_0x479,August,29,854-62-5244,Mechanic,36490.98,2828.915,4,5,8,4,"Payday Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",25.60230735,19,7.75,12,Standard,581.05,36.28711306,12 Years and 4 Months,Yes,92.35158352,72.89077069,Low_spent_Large_value_payments,387.6491458,0,-2.2645,0.028,2.1138,0.1023,-0.13 +0x23c5,CUS_0x3b5d,August,19,341-44-0136,Developer,30743.6,2557.966667,5,4,5,1,Debt Consolidation Loan,20.82949437,16,14.76,5,Standard,401.53,26.22228122,7 Years and 10 Months,Yes,20.42494218,53.6882176,High_spent_Large_value_payments,421.6835069,0,-0.1346,-0.8146,-0.1904,0.6449,0.7849 +0x23d1,CUS_0x9167,August,22,033-47-7890,Entrepreneur,177150.4,14710.53333,2,6,5.288361749,4,"Auto Loan, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",9.223009612,11,1.47,4,Good,429.86,38.29954382,21 Years and 8 Months,No,472.2784577,576.3302617,High_spent_Large_value_payments,1082.382075,0,0.8458,1.7681,0.4187,1.4909,0.6242 +0x23dd,CUS_0x4a5b,August,26,395-63-5787,Architect,110264,9225.666667,8,6,19,7,"Home Equity Loan, Not Specified, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",18.46318701,14,14.6,12,Standard,555.2294847,38.27844622,,Yes,364.2904002,502.2772774,High_spent_Small_value_payments,370.9140552,0,-0.2821,-0.0283,-0.5614,-0.9665,0.3968 +0x23e9,CUS_0xfdd,August,18,977-98-5964,Scientist,32128.24,,6,4,4892,7,"Mortgage Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,20,10.61,8,Standard,465.04,35.75913887,7 Years and 8 Months,Yes,103.4562133,56.6485166,High_spent_Medium_value_payments,359.2306035,0,-1.5187,-0.8095,-0.2193,0.3903,-1.0246 +0x23f5,CUS_0x4883,August,29,822-72-2207,_______,151722.56,12352.54667,5,5,1.288361749,2,"Auto Loan, and Student Loan",0,0,2.89,1,Good,196.413323,20.5748889,22 Years and 0 Months,No,164.9520794,2036.337729,Low_spent_Small_value_payments,,0,0.6068,0.2633,0.3899,-0.8406,0.4324 +0x2401,CUS_0x6387,August,27,063-08-8008,Manager,62316.63,4895.0525,8,4,7,2,"Payday Loan, and Debt Consolidation Loan",9.843697604,9,0.94,1,Standard,417.27,39.00423496,26 Years and 10 Months,No,82.73317699,146.4301795,High_spent_Medium_value_payments,510.3418935,0,1.4029,-0.0127,0.0211,2.3242,2.3626 +0x240d,CUS_0xd83,August,80,214-39-6385,Lawyer,19310.62,1463.093138,9,6,34,5,"Debt Consolidation Loan, Mortgage Loan, Student Loan, Auto Loan, and Payday Loan",,10,12.87,10,Standard,1306.08,25.61167291,10 Years and 3 Months,Yes,238.490291,10000,High_spent_Medium_value_payments,283.9897658,0,0.4257,-1.2606,0.388,-1.6253,0.614 +0x2419,CUS_0x3ce3,August,47,319-42-1987,Entrepreneur,94511.79,7717.9825,5,3,8.288361749,0,,3.973723997,7,7.29,0,_,1188.183601,25.0368515,18 Years and 9 Months,No,0,842.7379368,Low_spent_Medium_value_payments,671.8993863,0,0.8389,-1.5959,-0.4093,0.9075,-2.9132 +0x2425,CUS_0xa706,August,50,475-31-3601,Manager,96275.84,8101.986667,6,6,18.28836175,0,Not Specified,,18,2.94,5,Standard,999.36,27.41803173,26 Years and 9 Months,NM,64.96133685,549.7694277,!@9#%8,855.4053631,0,0.1971,0.7254,-0.3198,-0.5063,0.977 +0x2431,CUS_0x9983,August,36,510-91-2920,Writer,57219.92,4511.326667,8,6,33,6,"Student Loan, Not Specified, Home Equity Loan, Not Specified, Personal Loan, and Personal Loan",,24,19.25,13,Bad,4935.76,32.71172172,3 Years and 8 Months,Yes,159.2958242,63.2418493,High_spent_Medium_value_payments,478.5949932,0,-0.9129,1.0099,1.2011,-0.8429,-0.897 +0x243d,CUS_0x2877,August,31,922-07-2675,_______,80591.2,6453.933333,4,4,32,2,"Student Loan, and Auto Loan",,9.116879869,9.62,8,_,2308.039359,31.90599197,13 Years and 9 Months,Yes,97.89725769,565.2692953,Low_spent_Medium_value_payments,262.2267803,0,0.3656,-0.0894,1.3129,1.8295,0.3577 +0x2449,CUS_0x1df1,August,31,#F%$D@*&8,Mechanic,73434.92,5849.576667,1,5,4.288361749,100,"Payday Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",0,3,11.93,0,Good,192.45,32.81305029,16 Years and 2 Months,No,214.4301784,591.8463999,!@9#%8,448.6185493,0,0.2206,-0.3047,-0.0598,-0.3634,0.5464 +0x2455,CUS_0x4223,August,23,631-86-9034,Developer,53916.84,,8,7,29.06745738,8,"Home Equity Loan, Auto Loan, Personal Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,25.56496243,2.99,6,Bad,3058.767891,29.29200641,5 Years and 0 Months,NM,300.2300406,96.70205299,High_spent_Medium_value_payments,299.8546184,0,0.0804,1.3219,0.5233,-0.1633,-0.433 +0x2461,CUS_0x3f47,August,35,393-00-8916,Musician,53071.47,4656.6225,8,5,2620,8,"Student Loan, Student Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",38.54436834,22.72706878,8.05,10,Bad,1979.642011,26.52877462,19 Years and 2 Months,Yes,54574,191.2148172,Low_spent_Medium_value_payments,345.9639848,0,-0.8686,-0.4628,0.7337,1.1096,0.7468 +0x246d,CUS_0x86b,August,42,372-37-8955,Engineer,69692.16,6034.68,9,5,32,7,"Personal Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Personal Loan",33.20451151,25.27132375,14.66,9,Bad,2429.194495,25.41554681,13 Years and 4 Months,Yes,395.8793931,,Low_spent_Large_value_payments,255.3910486,0,0.4712,1.1918,-1.2764,0.3293,-0.4341 +0x2479,CUS_0x98f9,August,34,704-68-7178,Entrepreneur,15735.68,1043.306667,3,6,7,2,"Personal Loan, and Student Loan",11.5649101,9,19.08,7,Standard,1574.91,26.23477671,9 Years and 5 Months,NM,21.35618485,12.49458031,High_spent_Medium_value_payments,320.4799015,0,1.3706,-1.3156,1.7246,1.7433,-0.1065 +0x2485,CUS_0x46eb,August,32,348-20-7816,Engineer,20502.64,1588.553333,8,10,28.88954781,8,"Home Equity Loan, Auto Loan, Personal Loan, Personal Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Personal Loan",22.49514105,18,25.18,15,_,4182.21,26.59964197,2 Years and 0 Months,Yes,1410.945585,63.46105889,Low_spent_Medium_value_payments,270.1186081,0,0.0199,-0.8778,1.0665,0.4451,0.4056 +0x2491,CUS_0x1863,August,54,316-92-2785,Manager,55662.64,4900.553333,4,6,6,3,"Student Loan, Credit-Builder Loan, and Credit-Builder Loan",31.18708108,20,11.06,2,Standard,1078.02,31.74617,,Yes,90.94994557,,Low_spent_Medium_value_payments,549.3941955,0,-0.0734,-0.8505,-2.1338,-1.4968,0.3714 +0x249d,CUS_0x481f,August,23,322-85-4061,Scientist,19758.84,1901.57,7,5,33.06745738,8,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Not Specified",45.71619162,26.22837911,2.76,14,Bad,1699.542877,40.0271018,15 Years and 5 Months,Yes,71.69473985,53.41737331,High_spent_Small_value_payments,298.3245989,0,-0.7199,0.7108,-0.8239,0.5382,0.0345 +0x24a9,CUS_0x79b,August,27,773-62-4134,Lawyer,55000.62,,3,6,12,0,,17.49351491,14,2.88,0,Standard,815.35,28.35034423,16 Years and 6 Months,No,0,71.2221547,High_spent_Medium_value_payments,631.4163453,0,-0.0413,-0.4356,-0.8397,0.1437,-1.3213 +0x24b5,CUS_0xbf19,August,18,209-19-4326,Doctor,10352.745,,3,5,6,7,"Personal Loan, Mortgage Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",25.2424796,17,15.99,8,_,343.41,24.34312355,5 Years and 8 Months,Yes,36.62937698,113.9136568,Low_spent_Small_value_payments,225.6298412,0,-1.3627,-0.8888,1.3794,-0.8053,-2.9398 +0x24c1,CUS_0xa501,August,34,455-84-4696,Mechanic,50811.27,4387.2725,6,4,20,3,"Home Equity Loan, Student Loan, and Credit-Builder Loan",17.32533079,14,8.01,5,Standard,1274.59,36.19643285,6 Years and 4 Months,Yes,22779,,High_spent_Large_value_payments,472.2431749,0,-0.82,0.1215,0.6572,-0.0667,-0.4131 +0x24cd,CUS_0x2602,August,28,#F%$D@*&8,_______,59448.04,4339.36173,9,7,24.06745738,6,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,21,1.05,6,Bad,4049.230954,40.38433587,13 Years and 11 Months,Yes,714.4760346,,High_spent_Large_value_payments,423.7046568,0,-0.6629,0.3787,0.4951,0.3443,0.5984 +0x24d9,CUS_0x96e,August,53,394-26-5712,Doctor,18549.28,1698.773333,4,4,6,0,,0,0,3.22,0,Good,1124.761581,36.68212249,20 Years and 6 Months,No,0,119.2727701,Low_spent_Medium_value_payments,342.5912427,0,1.5406,-0.0361,1.1942,-0.0035,0.8197 +0x24e5,CUS_0x864a,August,50,288-57-7696,Teacher,134810.13,10998.1775,5,7,6,2,"Payday Loan, and Auto Loan",0,1,10.54,9,Good,660.3484095,31.00299069,32 Years and 8 Months,No,199.8420985,231.725523,High_spent_Small_value_payments,952.8537241,0,0.5647,1.7411,-0.1543,-0.7481,0.8418 +0x24f1,CUS_0x56d1,August,33,203-76-0108,_______,162550.32,13731.86,0,5,11,1,Student Loan,5.791958361,8,0.68,4,Good,713.3744018,34.100926,16 Years and 9 Months,No,76.18230461,574.7647791,Low_spent_Medium_value_payments,1088.021166,0,1.6429,-0.8581,-0.0797,-0.8867,-1.5248 +0x24fd,CUS_0xae0e,August,24,063-40-8380,Accountant,102596.64,8718.72,4,5,8,0,,5.467860046,2.345373167,11.61,4,Good,1181.52446,29.30258721,21 Years and 2 Months,No,0,348.3441977,High_spent_Medium_value_payments,773.5278023,0,1.7429,-0.1941,1.4038,-0.1657,-0.264 +0x2509,CUS_0x3b3f,August,31,876-41-0796,Manager,14884.465,,8,5,1,4,"Not Specified, Not Specified, Home Equity Loan, and Student Loan",26.4792439,17.40383655,6.79,4,Good,1280.090674,36.24883043,28 Years and 8 Months,NM,37.78683849,183.7398268,Low_spent_Small_value_payments,222.310543,0,1.7597,1.383,-0.3364,-2.4537,-0.6031 +0x2515,CUS_0x9bc4,August,39,644-42-9017,Architect,31732.61,,4,4,1,4,"Personal Loan, Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",23.26714095,14.49427904,3.37,4,Good,1542.129456,24.71851254,30 Years and 6 Months,NM,100.9154077,,Low_spent_Medium_value_payments,205.0832365,0,-0.4294,1.285,-0.642,-0.3109,-2.6264 +0x2521,CUS_0x62a4,August,46,287-49-6561,Lawyer,50847.22,4156.268333,3,6,4831,1,Credit-Builder Loan,,18,6.4,0,Standard,486.71,36.56803929,23 Years and 2 Months,Yes,23.78387813,385.7174292,!@9#%8,276.125526,0,0.7219,-1.4299,-1.5637,0.3039,1.8932 +0x252d,CUS_0x4c77,August,33,#F%$D@*&8,Doctor,9349.475,772.1229167,6,6,19,9,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",30.25425727,17.57730535,24.98,9,Bad,5445.600081,29.17082469,3 Years and 10 Months,Yes,52.06513502,11.12510578,High_spent_Medium_value_payments,264.0220509,0,0.5763,-1.9378,0.163,0.8819,-0.5962 +0x2539,CUS_0x62f0,August,44,183-01-9526,Teacher,135115.44,,4,6,18,2,"Student Loan, and Student Loan",11.88794016,9,1.42,2,Standard,269.46,27.12433363,19 Years and 0 Months,Yes,204.6182236,,Low_spent_Medium_value_payments,106.3374433,0,-0.1327,-1.1214,0.9492,-2.3901,0.0069 +0x2545,CUS_0x342a,August,34,566-11-2306,Lawyer,66169.56,,8,1141,11.28836175,2,"Payday Loan, Debt Consolidation Loan, and Not Specified",16.16985149,14,10.6,7,Standard,198.53,32.65660671,25 Years and 10 Months,Yes,126.7894615,606.0578398,Low_spent_Medium_value_payments,547.0031597,0,1.2422,0.4126,0.6134,2.1148,0.7343 +0x2551,CUS_0x7597,August,44,572-60-9561,Musician,56760.51,4999.0425,6,5,20.06745738,9,"Student Loan, Not Specified, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Not Specified",,28.81162729,28.7,12,Bad,5597.085714,37.33220708,6 Years and 10 Months,Yes,401.1213841,33.64875615,!@9#%8,278.4138218,0,-1.0408,1.5005,0.2058,0.3369,-0.2023 +0x255d,CUS_0xbb6e,August,33,896-42-9226,Architect,108223.62,8775.635,5,6,6.288361749,2,"Not Specified, and Not Specified",,12,11.53,3,Standard,977.19,33.56772033,27 Years and 4 Months,Yes,127.9292135,724.610931,High_spent_Medium_value_payments,694.9608165,0,0.4022,-1.027,0.2676,-1.6018,1.7283 +0x2569,CUS_0x7c55,August,31,#F%$D@*&8,Manager,53098.47,4197.8725,9,7,24,8,"Payday Loan, Student Loan, Auto Loan, Mortgage Loan, Auto Loan, Payday Loan, Mortgage Loan, and Payday Loan",,21,16.47,11,_,3403.23,36.8532072,13 Years and 9 Months,Yes,270.2026196,113.9376065,!@9#%8,285.6470238,0,1.7391,1.3254,-0.5625,-2.0406,-1.1627 +0x2575,CUS_0xa835,August,54,093-23-2302,Musician,17853.5,,5,4,12,2,"Credit-Builder Loan, and Not Specified",9.635822445,10,1.95,4,Good,881.576184,27.92985442,,No,18.02270353,148.0249277,Low_spent_Small_value_payments,264.7785032,0,-1.8516,0.1475,0.4596,-0.4696,2.8838 +0x2581,CUS_0x467f,August,21,253-64-1331,Accountant,16813.54,1101.128333,8,10,34.95700519,8,"Not Specified, Payday Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",,23.2787542,5.19,17,Bad,4078.35722,35.41020811,11 Years and 2 Months,Yes,1416.424559,118.4912075,Low_spent_Small_value_payments,144.1466977,0,-1.0801,0.6558,0.068,-0.8163,-0.4722 +0x258d,CUS_0x7590,August,43,751-03-4015,Architect,68665.76,5619.146667,7,6,13,7,"Mortgage Loan, Student Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",24.86815363,20,7.05,11,Standard,420.02,36.20769209,12 Years and 8 Months,Yes,329.6660619,201.1802948,Low_spent_Small_value_payments,321.0683099,0,0.1615,-0.7176,0.2308,-0.3171,-1.3545 +0x2599,CUS_0x515a,August,24,665-62-6458,Developer,22500.52,,5,3,19,5,"Payday Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",17.24733495,,16.61,8,Standard,774.7204104,33.08629049,12 Years and 10 Months,Yes,65.02102612,113.2590588,Low_spent_Medium_value_payments,292.2150562,0,-0.6228,2.8603,1.8333,1.6287,1.3452 +0x25a5,CUS_0x114a,August,43,133-89-5234,Developer,15305.46,1230.455,0,7,2,2,"Student Loan, and Home Equity Loan",0.368384414,2,15.95,0,Good,642.42,27.52511298,15 Years and 9 Months,No,20.30165387,64.77848008,Low_spent_Small_value_payments,327.9653661,0,0.472,-0.2227,0.1362,1.0621,1.932 +0x25b1,CUS_0x49dd,August,18,966-28-7046,Engineer,15544.47,1030.3725,8,5,33.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",,21,25.11,12,_,3133.120954,26.13634598,1 Years and 10 Months,NM,35.2567983,,Low_spent_Medium_value_payments,238.7359819,0,0.1216,-0.1757,-1.2208,0.1816,0.4231 +0x25bd,CUS_0x6346,August,50,005-96-9331,Media_Manager,99089.52,8309.46,5,1,9,1,Personal Loan,0,1,8.66,2,Good,338.95,27.28513949,33 Years and 3 Months,No,57.16122949,124.2227242,High_spent_Large_value_payments,889.5620464,0,-0.7508,-0.5205,0.2717,0.3787,0.1156 +0x25c9,CUS_0x481c,August,23,356-46-8172,Media_Manager,9307.24,,4,3,15,3,"Credit-Builder Loan, Personal Loan, and Home Equity Loan",19.11044351,14,12.78,5,Standard,486.05,30.81504514,11 Years and 10 Months,Yes,20.88719603,,Low_spent_Small_value_payments,234.8128227,0,-1.2022,1.3429,0.6359,-1.1128,0.4643 +0x25d5,CUS_0xa1ea,August,42,390-23-8969,Architect,134316.2,11429.01667,8,3,11,0,,23.42499299,16,16.5,4,_,1383.6,35.34856501,20 Years and 0 Months,Yes,0,383.030072,High_spent_Medium_value_payments,1009.871595,0,-1.6694,-1.1726,-0.3313,0.1917,1.5303 +0x25e1,CUS_0x70b2,August,40,830-58-7325,Media_Manager,38685.98,3360.831667,1,5,3,2,"Mortgage Loan, and Mortgage Loan",12.44057443,12,1.24,5,Good,1220.284813,24.11514578,30 Years and 0 Months,No,37469,523.0966314,!@9#%8,121.6248083,0,0.8516,0.429,0.942,0.7059,0.4156 +0x25ed,CUS_0xc365,August,23,070-70-9782,Doctor,69933.98,,8,7,2701,2,"Auto Loan, and Home Equity Loan",9.212284793,10,10.11,5,_,1446.37,39.0474055,18 Years and 9 Months,Yes,86.4011582,87.60547294,High_spent_Medium_value_payments,632.1765355,0,0.4985,-1.5271,-0.2249,-0.1205,0.6876 +0x25f9,CUS_0x8efa,August,26,933-08-6838,Entrepreneur,21075.36,1904.28,3,1,5,2,"Credit-Builder Loan, and Credit-Builder Loan",,5,2.53,6,_,1498.02,24.23813298,29 Years and 8 Months,No,19.34731148,53.87767297,High_spent_Medium_value_payments,367.2030156,0,2.3511,-0.5386,1.6423,1.7587,0.9882 +0x2605,CUS_0x9783,August,40,360-46-5304,Accountant,60843.33,,4,6,14,3,"Student Loan, Auto Loan, and Payday Loan",,18,14.42,11,_,1494.43,29.52679539,20 Years and 6 Months,Yes,151.9788495,159.6490641,High_spent_Medium_value_payments,428.5998364,0,-0.478,0.2591,-1.0916,0.6019,-0.7387 +0x2611,CUS_0x6a17,August,36,#F%$D@*&8,Musician,15091.03,1480.585833,7,7,27.06745738,9,"Mortgage Loan, Payday Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Student Loan",,21.27501536,6.18,13,_,3798.735395,26.00441722,,Yes,93.61720092,195.2011346,Low_spent_Small_value_payments,122.5199598,0,-0.4793,-1.0337,0.3315,-0.8954,0.3523 +0x261d,CUS_0x8c03,August,80,739-21-8242,Scientist,54987.52,,4,5,10,0,,23.98374609,17,9.81,8,Standard,1263.12,29.00091276,16 Years and 9 Months,Yes,0,420.2199643,Low_spent_Large_value_payments,326.0093691,0,-1.3665,2.0423,0.5086,-1.0597,-0.4636 +0x2629,CUS_0xadf6,August,38,300-53-0224,Doctor,7506.125,802.5644817,10,7,23.06745738,5,"Not Specified, Payday Loan, Not Specified, Home Equity Loan, and Auto Loan",,21,25.04,11,Bad,4406.630954,23.45854757,11 Years and 4 Months,Yes,92.85434624,57.48866511,High_spent_Small_value_payments,240.1336774,0,-1.3046,-1.7532,-0.3292,1.1651,-0.0557 +0x2635,CUS_0xa166,August,43,149-22-5385,Engineer,17448.08,,9,5,21.06745738,9,"Not Specified, Auto Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Student Loan, Student Loan, Auto Loan, and Auto Loan",,17,2.5,14,Bad,2798.640954,41.12553459,15 Years and 10 Months,Yes,94.85486815,25.43745572,High_spent_Large_value_payments,224.4880548,0,-2.4968,0.5168,-1.0585,0.7974,0.4955 +0x2641,CUS_0x7d27,August,41,573-84-1711,Journalist,42241.19,3231.099167,0,5,10.28836175,0,,7.474614704,9,3.24,9,Good,171.394214,26.70410088,25 Years and 10 Months,NM,0,667.2531757,High_spent_Small_value_payments,371.9491061,0,-0.4541,-1.9024,-0.6373,0.1264,1.2253 +0x264d,CUS_0x5698,August,27,169-39-0968,Entrepreneur,31087.66,,4,7,12,6,"Mortgage Loan, Not Specified, Not Specified, Payday Loan, Not Specified, and Student Loan",10.3789206,9.254226376,9.95,8,_,77.19650941,39.5724983,7 Years and 8 Months,Yes,134.6917202,105.7171953,High_spent_Small_value_payments,266.7549178,0,0.6226,-0.4545,0.4133,0.0886,0.1626 +0x2659,CUS_0x51e,August,45,946-94-7531,_______,132414.16,11050.51333,3,3,19,0,,21.07029827,16,4.06,4,Standard,48.20791299,37.24794643,26 Years and 0 Months,Yes,0,129.1232443,High_spent_Large_value_payments,1228.288151,0,1.1748,1.2913,-2.3324,0.0506,1.0912 +0x2665,CUS_0xab3b,August,54,747-67-2935,Lawyer,92794.04,,4,7,7,0,,23.27037497,16,11.09,3,Standard,1269.4,28.6698975,28 Years and 5 Months,Yes,0,145.0034534,High_spent_Small_value_payments,871.2802133,0,0.4315,0.9086,-0.9697,-1.2772,1.2584 +0x2671,CUS_0xf43,August,38,131-37-1161,Media_Manager,82998.24,7186.52,8,7,22,6,"Student Loan, Home Equity Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",40.65315533,26.47982039,22,12,_,5277.404445,26.69429651,13 Years and 3 Months,Yes,383.9140141,,High_spent_Large_value_payments,445.3851274,0,0.9838,0.9778,-0.2718,0.3018,-0.0692 +0x267d,CUS_0x345b,August,41,118-30-0727,Musician,11993705,1157.9025,4,7,14,4,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",,16,17.66,10,_,471.81,28.89030469,14 Years and 9 Months,Yes,52.02492383,85.4799857,Low_spent_Small_value_payments,268.2853405,0,-0.8443,0.8568,-0.2265,-1.1339,0.0279 +0x2689,CUS_0x4c34,August,45,019-49-4119,Entrepreneur,31896.42,2417.035,823,5,4,1,Payday Loan,7.179037232,8,1.91,8,Good,1177.43,38.39571509,25 Years and 10 Months,No,22.79977776,123.4958894,Low_spent_Small_value_payments,385.4078328,0,-0.7583,-1.4836,-0.4979,0.8145,-0.2231 +0x2695,CUS_0x3d51,August,21,092-73-8014,Entrepreneur,34927,,6,4,4,0,,,21,11.36,6,Good,1158.55,38.87802804,26 Years and 8 Months,No,0,82.21284814,High_spent_Medium_value_payments,459.8454852,0,-0.2441,-0.7145,-0.1018,0.7115,-0.569 +0x26a1,CUS_0x9fff,August,54,826-73-0532,Mechanic,25020.07,1928.005833,4,3,10,1,Home Equity Loan,12.92705395,10,3.1,5,_,94.75,36.79139952,22 Years and 5 Months,NM,17.06628101,63.8183469,High_spent_Medium_value_payments,361.9159554,0,0.8791,-0.8502,-0.189,1.3589,-0.2618 +0x26ad,CUS_0xa41e,August,31,360-35-4496,Doctor,82778.56,,6,6,30,4,"Mortgage Loan, Student Loan, Mortgage Loan, and Payday Loan",,16.99450431,17.39,15,_,1979.18358,36.84607937,18 Years and 2 Months,NM,49942,120.5324095,High_spent_Medium_value_payments,625.0936069,0,-1.1196,-2.4146,0.722,-0.3457,-1.0022 +0x26b9,CUS_0x797d,August,37,178-56-1075,Doctor,94052.22,7704.685,4,4,13,1,Payday Loan,22.92765962,16,16.41,8,Standard,76.99,33.34224195,21 Years and 6 Months,Yes,39.57533226,295.6557578,High_spent_Small_value_payments,695.2374099,0,-0.589,0.1504,0.9615,-0.4566,-0.2906 +0x26c5,CUS_0x9c4,August,27,851-46-0194,Writer,16355.71,,9,8,24.06745738,3,"Student Loan, Personal Loan, and Debt Consolidation Loan",37.22621828,18.2648297,20,13,Standard,2062.080403,30.12377313,8 Years and 10 Months,Yes,24.93505007,,Low_spent_Medium_value_payments,255.94351,0,-0.241,-0.6466,-0.3494,0.6292,-0.4032 +0x26d1,CUS_0x9d0d,August,18,550-29-3197,Engineer,15119.56,,6,5,30.06745738,6,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",,20,21.63,11,Bad,3377.480954,30.29961336,13 Years and 2 Months,Yes,58.21119197,,Low_spent_Small_value_payments,235.6621373,0,-0.1872,-1.1347,-1.2375,0.4747,-0.7928 +0x26dd,CUS_0x602d,August,18,041-28-6430,Teacher,20639.79,,7,5,16.06745738,9,"Payday Loan, Auto Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Not Specified, Student Loan, and Student Loan",26.66113622,15,16.15,8,Bad,4369.280954,34.0849378,1 Years and 5 Months,Yes,95.62691019,128.3251534,Low_spent_Small_value_payments,193.5258984,0,-0.8254,1.7515,0.1509,0.6359,0.0206 +0x26e9,CUS_0x63dd,August,37,706-84-4068,Doctor,18472.71,1392.3925,10,6,27.06745738,4,"Personal Loan, Payday Loan, Student Loan, and Student Loan",,32.38067105,5.4,10,Bad,2461.104291,41.77446405,20 Years and 0 Months,Yes,60.82589002,,Low_spent_Medium_value_payments,253.7532644,0,0.1229,-0.5148,0.5625,1.1593,-0.6982 +0x26f5,CUS_0x3f27,August,54,042-79-0167,Lawyer,42731.27,3300.939167,0,4,0.288361749,2,"Mortgage Loan, and Home Equity Loan",0,0,5.2,1,Good,511.85,36.95078378,24 Years and 8 Months,No,50.85101407,,High_spent_Small_value_payments,368.0191741,0,1.4966,0.1703,0.7357,0.0379,0.2875 +0x2701,CUS_0x67ff,August,31,017-88-1687,Manager,82700.32,6625.693333,10,9,17.88954781,6,"Auto Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",,,27.33,12,Bad,5133.446837,33.62418711,12 Years and 2 Months,Yes,1715.597777,386.409828,Low_spent_Small_value_payments,156.2316469,0,0.7201,1.0292,-1.4899,0.9997,-1.1318 +0x270d,CUS_0xc247,August,45,800-03-6665,Developer,11968.51,,3,4,16,2,"Not Specified, and Auto Loan",,18,10.95,0,Standard,685.74,36.65202731,25 Years and 4 Months,No,18.07448505,22.43068293,High_spent_Large_value_payments,324.9324153,0,-0.7055,0.0972,-1.0271,1.4406,0.9884 +0x2719,CUS_0xc723,August,32,305-49-2524,Mechanic,33386.25,,7,5,11,3,"Home Equity Loan, Mortgage Loan, and Mortgage Loan",14.0157923,10,9.97,6,Standard,1343.67,40.06811199,14 Years and 4 Months,Yes,77.54612497,116.9318157,High_spent_Medium_value_payments,340.6408094,0,-0.9307,0.9685,-0.6406,0.8037,0.612 +0x2725,CUS_0xa213,August,18,940-01-4923,Architect,67614.24,5558.52,7,10,17,2,"Home Equity Loan, and Personal Loan",41.19109368,25.09223892,9.66,14,Bad,1444.556264,30.82564493,17 Years and 3 Months,Yes,95.03286667,133.2883507,!@9#%8,577.5307826,0,1.7516,1.0507,-0.3455,1.0558,1.6702 +0x2731,CUS_0x6065,August,36,332-11-5896,Accountant,174304.04,14458.33667,1,3,11.28836175,0,,,7,1.96,4,Good,461.16,34.47146802,30 Years and 6 Months,No,0,1184.945342,Low_spent_Large_value_payments,950.8257858,0,-0.1448,-1.6999,-1.4862,1.3386,-1.3795 +0x273d,CUS_0x7f61,August,26,707-44-1618,Doctor,68742.75,5902.5625,7,4,20,100,"Credit-Builder Loan, and Payday Loan",27.07794712,19,11.04,8,Standard,651.38,30.36667002,14 Years and 0 Months,Yes,89.6574062,235.2379624,Low_spent_Medium_value_payments,545.3608814,0,0.697,-1.9388,0.3784,1.0968,0.0762 +0x2749,CUS_0xb563,August,45,782-43-1037,Journalist,15932.725,,6,6,11,1,Debt Consolidation Loan,17.60348566,12,8.63,1,Standard,1124.16,28.41096148,27 Years and 11 Months,Yes,13.26805418,107.3312387,Low_spent_Large_value_payments,271.3734155,0,1.133,0.8341,-0.3273,0.783,-0.513 +0x2755,CUS_0x47b2,August,44,799-70-1935,Doctor,55583.67,4816.9725,6,5,11,2,"Personal Loan, and Payday Loan",25.03052966,17,12.29,6,Standard,2019.51,31.48123966,17 Years and 5 Months,Yes,69.73399854,141.7471412,High_spent_Small_value_payments,530.2161102,0,0.5025,2.4225,-0.7916,2.4497,1.1711 +0x2761,CUS_0x9338,August,19,420-69-3653,Architect,72252.36,6059.03,5,3,12,4,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",19.50016022,,9.1,4,Standard,51.39,23.41405174,25 Years and 9 Months,No,127.1503019,132.3537666,High_spent_Large_value_payments,586.3989315,0,-1.8833,-0.3796,-0.8852,-0.0649,-0.9944 +0x276d,CUS_0x6102,August,32,718-37-2610,Scientist,30399.06,2031.587766,5,6,18,4,"Not Specified, Home Equity Loan, Auto Loan, and Payday Loan",14.85073819,12,10.55,8,_,516.76,32.84952642,18 Years and 9 Months,Yes,321.1954881,10000,Low_spent_Small_value_payments,201.1676299,0,0.3694,0.3587,1.0427,-0.4546,1.5362 +0x2779,CUS_0x5794,August,42,201-91-3081,Lawyer,8365.075,,6,8,20.06745738,5,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Auto Loan",,16,28.81,11,Bad,2982.020954,41.55160528,4 Years and 11 Months,Yes,31.95448983,10000,High_spent_Medium_value_payments,267.1834215,0,-0.7976,0.1671,-0.5077,-0.8258,0.1705 +0x2785,CUS_0xa560,August,80,316-70-8777,_______,133410.66,11387.555,1,3,4,0,,2.681036407,5,1.05,3,Good,811.2569258,27.00522992,27 Years and 11 Months,No,0,590.2001017,High_spent_Small_value_payments,880.5197191,0,-0.9783,0.7248,1.2721,-1.4851,0.7248 +0x2791,CUS_0x7fe3,August,42,561-77-1789,Developer,19167.04,1479.253333,6,6,16.06745738,4,"Not Specified, Payday Loan, Auto Loan, and Payday Loan",30.00632426,18.78786217,,6,Standard,1626.299882,36.50288554,7 Years and 0 Months,Yes,44.5354516,30.44002056,High_spent_Medium_value_payments,296.2295732,0,0.8276,-0.0318,1.4568,-0.135,-1.5375 +0x279d,CUS_0x4c3e,August,42,181-99-1436,_______,28169.07,,4,4,2,0,,0,3,7.75,1,_,404.4995694,22.25274357,26 Years and 8 Months,No,0,241.907999,!@9#%8,316.3708835,0,0.1135,-0.1329,0.0065,-0.1025,-1.0489 +0x27a9,CUS_0x41e4,August,46,803-07-6149,Teacher,3961526,919.13,5,879,5,0,,,,-3.5,6,Good,294.3261768,38.83332293,19 Years and 10 Months,No,66045,14.53217673,High_spent_Large_value_payments,319.2329542,0,-1.0553,-0.9077,-1.0356,-0.4179,-0.8446 +0x27b5,CUS_0x2484,August,19,781-29-3684,Musician,29625.82,2559.818333,3,4,11,4,"Personal Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",27.82507536,19,17.74,4,Standard,1042.61,33.74170476,7 Years and 0 Months,Yes,92.11623116,180.4322147,Low_spent_Small_value_payments,273.4333874,0,0.7398,-0.1869,-0.8125,1.0802,3.3226 +0x27c1,CUS_0xb560,August,22,221-90-6592,Architect,62223.06,5326.255,7,4,10,3,"Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",20.06176669,13,19.85,,_,1230.58,33.57420139,,Yes,120.3581056,571.4290668,Low_spent_Small_value_payments,130.8383276,0,0.255,0.5844,0.4979,-0.0328,2.5958 +0x27cd,CUS_0x4e8b,August,44,961-90-2351,Journalist,14976.45,1495.0375,7,6,16,0,,33.37037022,22,14.21,3,Standard,69.51,30.92654434,28 Years and 0 Months,Yes,0,,Low_spent_Small_value_payments,245.9309249,0,-1.0046,-0.9958,1.1157,0.1023,0.7906 +0x27d9,CUS_0x8b96,August,24,342-46-9453,Doctor,82454,,6,7,16,6,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Not Specified, Not Specified, and Mortgage Loan",,18.09951855,24.94,11,Bad,3361.959469,34.32880214,4 Years and 6 Months,Yes,234.7033395,274.216998,Low_spent_Medium_value_payments,473.4963291,0,-1.0535,0.8849,-0.7909,0.3566,0.1375 +0x27e5,CUS_0x9b60,August,33,624-63-2071,Architect,62874.96,5086.58,3,4,15,4,"Credit-Builder Loan, Student Loan, Auto Loan, and Personal Loan",26.30094327,19,17.1,7,Standard,527.16,34.8532679,20 Years and 5 Months,Yes,129.3664035,675.26782,!@9#%8,,0,1.7881,0.2978,-0.8653,-0.0497,-0.0799 +0x27f1,CUS_0xaf23,August,37,231-01-3965,Musician,17164.72,1223.393333,10,6,19,9,"Not Specified, Personal Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Not Specified, Credit-Builder Loan, Personal Loan, and Personal Loan",24.35123731,16,25.15,7,Bad,4813.02,36.98798025,11 Years and 0 Months,Yes,99.12637797,,Low_spent_Small_value_payments,174.2796074,0,-0.7329,0.4125,-0.6289,0.0167,-0.7918 +0x27fd,CUS_0xbda2,August,32,137-60-0428,Manager,37302.1,,3,2,12,4,"Debt Consolidation Loan, Mortgage Loan, Not Specified, and Not Specified",,12,-3.93,5,Good,799.7500268,29.64622041,22 Years and 3 Months,No,80.27175239,73.09714868,High_spent_Small_value_payments,446.9834553,0,-0.3309,0.356,1.5141,1.6627,0.2991 +0x2809,CUS_0x82cc,August,32,156-63-4771,Architect,7526.205,836.18375,8,8,28.95700519,9,"Credit-Builder Loan, Home Equity Loan, Personal Loan, Student Loan, Credit-Builder Loan, Personal Loan, Student Loan, Auto Loan, and Debt Consolidation Loan",37.35782985,22,15.55,10,Bad,2749.440954,25.84955419,1 Years and 10 Months,Yes,1372.847459,70.39226039,!@9#%8,199.3282868,0,-0.2094,-0.5041,1.8415,-1.4103,0.5345 +0x2815,CUS_0x7812,August,21,992-47-8736,Scientist,19653.005,,3,3,10,4,"Personal Loan, Student Loan, Debt Consolidation Loan, and Not Specified",14.77060191,14,1.22,3,Good,807.0927939,32.45489715,17 Years and 11 Months,No,38.11255604,63.76976061,Low_spent_Small_value_payments,354.198615,0,0.4346,-0.1336,-1.5267,1.3504,-0.6869 +0x2821,CUS_0xc23d,August,30,031-88-3485,Scientist,174179.64,14346.97,1,7,7.288361749,0,Personal Loan,1.120251757,5,5.68,6,Good,1355.93,41.27180841,29 Years and 4 Months,No,123.4272573,766.8505607,High_spent_Medium_value_payments,1214.356643,0,0.475,-0.1631,-0.0824,0.2267,-0.2641 +0x282d,CUS_0x93bb,August,22,#F%$D@*&8,Doctor,41543.64,3620.97,8,5,21,100,"Not Specified, Personal Loan, and Payday Loan",28.21020462,21.31453095,16.56,13,Standard,2998.576239,34.01671195,15 Years and 2 Months,Yes,53.27462435,,Low_spent_Large_value_payments,334.3252016,0,-0.5741,1.8055,-0.2193,0.672,0.6181 +0x2839,CUS_0x46e6,August,22,772-99-7774,Developer,9582.775,750.5645833,9,7,17.06745738,8,"Not Specified, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",,24.24177335,25.21,13,Bad,4193.679888,31.99063087,8 Years and 4 Months,NM,36.17024397,25.51710552,Low_spent_Large_value_payments,256.6488209,0,-0.6293,-1.116,1.2214,-1.0481,0.5247 +0x2845,CUS_0x5ccb,August,41,037-01-6529,Teacher,21720.955,,0,4,10,2,"Student Loan, and Credit-Builder Loan",10.852155,10.5578459,2.71,1,_,1099.920963,30.31867116,18 Years and 11 Months,No,32.31239993,98.63260985,High_spent_Small_value_payments,332.9629486,0,-0.891,0.7074,-0.5661,0.5829,1.1456 +0x2851,CUS_0x3ca6,August,51,059-86-1986,Journalist,38107.36,2955.613333,8,7,12,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",24.04013994,16,1.96,2,Standard,1472.7,24.91436873,22 Years and 10 Months,No,73.57946752,,Low_spent_Large_value_payments,236.7403216,0,-0.676,-0.5628,-0.2175,0.5771,1.5821 +0x285d,CUS_0xc081,August,80,736-71-7699,Writer,85423.16,7000.596667,6,3,14,2,"Personal Loan, and Home Equity Loan",,20,16.94,11,Standard,902.37,34.33997679,,Yes,120.1416337,95.94045433,!@9#%8,733.9775787,0,-0.9383,-0.9355,1.2696,-1.0572,1.2435 +0x2869,CUS_0x6345,August,29,830-80-4719,Teacher,20308.26,1684.355,6,5,29.06745738,6,"Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, and Mortgage Loan",22.25862865,13.1619718,11.13,15,Standard,2405.623994,36.40115222,9 Years and 10 Months,Yes,99.85674076,164.7207239,Low_spent_Small_value_payments,167.1377474,0,0.2334,0.5218,1.0821,-1.8268,-0.5952 +0x2875,CUS_0xc6bb,August,20,001-84-7802,Lawyer,60889.08,4859.09,10,6,22.06745738,9,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Not Specified, Personal Loan, Payday Loan, and Home Equity Loan",37.88633992,23,27.19,10,Bad,4421.470954,38.36574463,10 Years and 9 Months,Yes,336.8419981,,High_spent_Medium_value_payments,176.7557511,0,-0.1545,1.4556,1.319,-0.4278,0.391 +0x2881,CUS_0x683,August,37,680-24-2269,Media_Manager,13603.41,,6,5,16,6,"Student Loan, Personal Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",23.76987571,17,24.91,5,Standard,42.09778994,38.29018228,20 Years and 0 Months,Yes,53.76195803,39.39367906,High_spent_Medium_value_payments,248.4457714,0,-1.2204,-1.0214,-1.1858,-1.7678,0.3621 +0x288d,CUS_0x20e0,August,34,079-99-9062,Media_Manager,12943.475,,5,5,9,6,"Credit-Builder Loan, Student Loan, Not Specified, Personal Loan, Payday Loan, and Payday Loan",,14,10.6,6,Standard,265.36,39.22746969,7 Years and 4 Months,Yes,45.09082981,28.08706903,High_spent_Small_value_payments,319.5843928,0,0.6648,-1.0564,0.728,0.7233,-0.3086 +0x2899,CUS_0x3af5,August,32,126-82-5903,Mechanic,44483.64,,8,10,17.88954781,8,"Personal Loan, Payday Loan, Payday Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",20.30350534,,20.12,8,Bad,2770.15,30.94594865,12 Years and 3 Months,Yes,1483.738843,249.0325799,Low_spent_Small_value_payments,230.9954958,0,-0.941,0.0693,0.5728,-0.0252,-0.1785 +0x28a5,CUS_0xa9e3,August,32,005-46-5010,Manager,7795.54,,10,6,19.06745738,6,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",,,5.62,16,Bad,2422.11048,26.46178563,19 Years and 2 Months,Yes,29.59967892,63.41423732,Low_spent_Small_value_payments,250.7286291,0,1.7491,-0.6839,-2.791,-1.7173,-0.1645 +0x28b1,CUS_0x3fa8,August,43,283-56-6375,Writer,177243.92,,4,6,3,3,"Student Loan, Personal Loan, and Auto Loan",,12,6.64,3,Good,426.7158805,27.93176208,28 Years and 11 Months,No,284.8041966,1299.541644,!@9#%8,328.197048,0,-0.5047,1.6467,0.3046,0.183,-0.8555 +0x28bd,CUS_0x791e,August,41,667-96-7235,Musician,35518.98,3068.915,8,6,9,3,"Auto Loan, Student Loan, and Not Specified",18.63454863,16,15.52,9,Standard,1137.011901,39.51015387,11 Years and 5 Months,Yes,84.75534306,168.3312662,Low_spent_Large_value_payments,349.4758449,0,-0.8793,-0.7397,-1.7247,-0.9872,-1.9535 +0x28c9,CUS_0x9953,August,43,792-02-6835,Journalist,8875.135,,8,9,27,2,"Credit-Builder Loan, and Payday Loan",23.16279948,15.75619137,23.46,15,Standard,1525.082556,29.70388448,17 Years and 8 Months,Yes,9.058562006,84.28781997,Low_spent_Small_value_payments,295.6130764,0,0.0551,-0.8362,0.8149,-0.2863,0.1184 +0x28d5,CUS_0xaf1b,August,36,792-02-2371,Media_Manager,16708.07,,6,9,23.06745738,8,"Personal Loan, Student Loan, Personal Loan, Student Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Personal Loan",41.09127617,20.98315504,8.47,12,Bad,3114.566723,28.88804049,15 Years and 0 Months,Yes,76.27367261,127.4702151,Low_spent_Medium_value_payments,185.469741,0,2.0018,-0.9235,-0.5802,-0.3626,0.6267 +0x28e1,CUS_0x8153,August,19,596-27-5459,Journalist,81395.44,6584.953333,1,4,9.288361749,0,,,6,2.75,2,_,278.8,35.28477707,32 Years and 6 Months,No,0,675.7800012,Low_spent_Medium_value_payments,682.6527932,0,-0.8773,0.3997,0.1684,-1.3535,0.4864 +0x28ed,CUS_0x51b,August,29,551-15-6622,Media_Manager,48780.56,3835.046667,4,5,16,0,,33.48508878,23,4.97,5,Standard,869.0960336,25.04621687,,Yes,0,11516.5026,High_spent_Medium_value_payments,502.0553729,0,-0.9908,-1.1845,-0.8857,-1.7638,-0.2133 +0x28f9,CUS_0x2b8e,August,29,301-63-5817,Mechanic,141753.72,,5,5,12.28836175,4,"Payday Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",,14,18.65,6,Standard,425.3295536,23.56265118,17 Years and 10 Months,Yes,385.6011848,897.1556297,High_spent_Medium_value_payments,607.5432402,0,-0.346,-0.1077,0.9277,-0.9045,-2.8134 +0x2905,CUS_0x264c,August,43,902-94-4726,_______,48608.78,,5,403,5,2,"Auto Loan, and Debt Consolidation Loan",,17,15.11,12,Standard,345.71,38.54866892,16 Years and 5 Months,Yes,60.10848226,314.6242762,Low_spent_Large_value_payments,325.3404082,0,0.155,-0.0266,-0.4321,-0.6559,-0.0075 +0x2911,CUS_0x2e31,August,23,377-14-3303,Scientist,63206.72,5309.226667,10,8,28.95700519,8,"Student Loan, Personal Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",27.66672072,15,26.48,13,Bad,4747.290954,41.46489536,13 Years and 8 Months,Yes,1554.773637,339.6836985,High_spent_Small_value_payments,175.4149616,0,-1.4197,1.3245,1.2036,0.4861,-0.9119 +0x291d,CUS_0x4f13,August,28,923-13-7813,Lawyer,63635.12,,3,4,2,2,"Credit-Builder Loan, and Personal Loan",,10,11.25,7,Good,122.65,35.4659036,25 Years and 0 Months,No,57.71606552,207.284333,High_spent_Small_value_payments,542.6922682,0,0.2659,-0.7712,-0.0219,-0.9554,0.7191 +0x2929,CUS_0x9eec,August,31,148-15-4934,Mechanic,126849.18,10511.765,2,3,2.288361749,0,,3.952525451,6,3.04,8,Good,518.4,38.4912995,28 Years and 10 Months,No,0,603.1174107,High_spent_Large_value_payments,1107.99655,0,-1.2056,0.2439,-2.4946,-2.4235,-2.2298 +0x2935,CUS_0x5fbf,August,45,809-92-8326,Developer,8779.145,,10,6,33.06745738,100,"Auto Loan, Payday Loan, Student Loan, Mortgage Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",39.02343143,26.54205508,3.33,13,_,2064.088793,31.21381457,8 Years and 6 Months,Yes,32.40642842,,Low_spent_Small_value_payments,248.972724,0,1.5589,-0.2005,0.419,1.2587,0.1788 +0x2941,CUS_0x4c1e,August,35,445-26-1404,Developer,16154.8,,4,3,8,2,"Credit-Builder Loan, and Debt Consolidation Loan",22.56131939,16,17.36,6,_,275.06,37.07942516,8 Years and 2 Months,Yes,24.46219423,14.23024081,High_spent_Large_value_payments,345.6308983,0,-0.9212,-1.0812,1.0207,0.8435,1.9534 +0x294d,CUS_0xaac3,August,80,914-67-3814,Manager,11631.405,858.28375,4,7,8,4,"Debt Consolidation Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",21.55851242,17,1.57,3,Good,145.5109073,30.23505233,31 Years and 10 Months,No,32.05796275,,High_spent_Medium_value_payments,277.3386526,0,-2.5554,1.5754,-1.659,-0.6051,0.0264 +0x2959,CUS_0x2041,August,31,348-82-9441,Media_Manager,24726.48,1767.54,4,6,15,2,"Personal Loan, and Student Loan",19.77933027,16,11.51,,Standard,155.22,35.06099084,28 Years and 2 Months,No,25.14400588,53.59274284,Low_spent_Large_value_payments,368.0172513,0,-3.236,0.1641,0.9206,-0.7142,-1.8018 +0x2965,CUS_0xc5d6,August,25,291-84-1220,Doctor,44188.5,,8,9,17,7,"Mortgage Loan, Home Equity Loan, Auto Loan, Not Specified, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,22.43839,5.41,13,_,2815.932148,33.9633959,18 Years and 4 Months,Yes,204.6421112,456.1650677,Low_spent_Small_value_payments,,0,-0.2042,-0.8473,0.8059,-1.0212,1.0536 +0x2971,CUS_0x7b15,August,26,173-42-8880,Accountant,13065.87,,5,6,13,2,"Personal Loan, and Personal Loan",11.85615081,11,1.72,5,Standard,1203.17,38.39786634,22 Years and 4 Months,NM,16.03971008,,Low_spent_Large_value_payments,267.2544623,0,-0.2371,-0.5258,0.0606,0.4398,-0.3461 +0x297d,CUS_0x80b1,August,18,769-65-4167,Journalist,49447.74,4282.645,7,4,9,5,"Personal Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",,14,8.34,9,Standard,1286.68,29.94497481,12 Years and 11 Months,Yes,147.0038704,,Low_spent_Large_value_payments,191.8788577,0,-0.7797,0.2352,-2.452,0.8462,0.6059 +0x2989,CUS_0xa6e4,August,26,837-93-4866,Teacher,42941.85,3311.4875,6,9,26,3,"Payday Loan, Credit-Builder Loan, and Student Loan",35.45963248,20.00091129,13.92,7,Standard,2519.958048,33.07285373,11 Years and 3 Months,Yes,97.91556458,112.2164637,High_spent_Medium_value_payments,371.0167217,0,-0.6449,-1.174,0.6713,0.0671,1.2871 +0x2995,CUS_0x942a,August,33,182-75-3598,Doctor,37824.65,3208.054167,5,2,2.288361749,2,"Personal Loan, Not Specified, and Credit-Builder Loan",,8,2.78,5,Good,69.84,36.52207631,27 Years and 10 Months,No,67.56184428,465.3359751,High_spent_Medium_value_payments,457.8450583,0,2.6702,1.4797,1.5762,0.4963,1.3363 +0x29a1,CUS_0xe94,August,53,#F%$D@*&8,Musician,66732.58,,0,2,2.288361749,0,,5.480957027,8,3.64,5,Good,220.586931,29.12662103,19 Years and 5 Months,No,0,472.8603658,High_spent_Large_value_payments,776.7052282,0,0.9172,-0.7617,-0.0312,0.1828,0.7231 +0x29ad,CUS_0x5d7e,August,20,670-18-2990,Musician,61463.94,5480.873643,7,8,30,9,"Student Loan, Student Loan, Payday Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Mortgage Loan",,19.44510938,5.79,7,_,1964.135559,38.31221467,12 Years and 3 Months,Yes,256.9664295,245.4632095,!@9#%8,137.6912182,0,-0.0522,1.3234,1.8967,-0.4042,1.1224 +0x29b9,CUS_0x3474,August,39,995-56-2550,Entrepreneur,115800.54,,4,4,8.288361749,0,Payday Loan,0,2.341156388,11.9,2,Good,212.924691,26.46557423,25 Years and 8 Months,No,81.74203566,655.1707895,Low_spent_Large_value_payments,939.0291358,0,1.4557,-1.0213,0.5712,1.9244,0.5381 +0x29c5,CUS_0xad9d,August,23,771-56-8439,Doctor,88133.16,7147.43,2,4,6,0,,5.554657273,5,9.5,0,_,1073.99,34.64709433,,No,0,442.1689459,Low_spent_Medium_value_payments,552.5740541,0,1.154,-0.5919,-0.9196,-1.0235,-2.4378 +0x29d1,CUS_0x9776,August,41,703-80-5465,Manager,27632.92,2312.743333,8,3,9,3,"Student Loan, Credit-Builder Loan, and Not Specified",,14.46296024,8.99,3,_,1233.156384,39.3147377,21 Years and 0 Months,NM,44.80729528,204.8258521,Low_spent_Small_value_payments,271.641186,0,0.3542,-1.4462,0.9793,0.7193,1.5142 +0x29dd,CUS_0x6632,August,18,958-93-2024,Journalist,21846.06,,2,6,8,2,"Not Specified, and Credit-Builder Loan",7.143408295,9,0.95,3,Good,248.8361198,29.58969306,18 Years and 6 Months,NM,22.09594399,69.59346058,Low_spent_Large_value_payments,386.1360217,0,0.0956,0.1809,1.1195,-1.026,0.237 +0x29e9,CUS_0x6d4,August,30,452-17-3020,Media_Manager,8610.765,888.56375,5,7,6.067457376,3,"Mortgage Loan, Personal Loan, and Credit-Builder Loan",,11,23.17,13,Standard,1650.360954,29.46699409,18 Years and 4 Months,Yes,14.96569468,25.87673564,High_spent_Small_value_payments,281.2936567,0,0.5383,0.708,-0.5093,-1.888,0.8104 +0x29f5,CUS_0x2db7,August,27,255-55-1581,Engineer,49023.22,4161.268333,5,5,12.28836175,2,"Credit-Builder Loan, and Student Loan",8.439401626,9,11.48,3,Standard,270.2,33.03252581,26 Years and 11 Months,No,62.74107295,464.4976128,!@9#%8,548.8256086,0,-0.8839,-1.4705,0.1416,0.5032,-0.9392 +0x2a01,CUS_0x4bdf,August,42,777-87-7270,Developer,104564.64,9002.72,4,7,8,2,"Mortgage Loan, and Debt Consolidation Loan",23.66573684,18,9.64,0,_,100.49,28.4519225,25 Years and 3 Months,No,112.9312158,424.3876818,High_spent_Small_value_payments,622.9531025,0,0.1448,-0.7591,0.2289,-0.0218,-0.5002 +0x2a0d,CUS_0x3ba2,August,28,243-27-1407,Entrepreneur,59751.78,5044.315,7,7,17,4,"Credit-Builder Loan, Personal Loan, Student Loan, and Mortgage Loan",,15.83446808,16.82,9,Standard,1643.037417,39.08412194,16 Years and 0 Months,Yes,116.298417,381.8003564,Low_spent_Medium_value_payments,286.3327266,0,0.446,1.645,0.8748,-2.0602,0.0942 +0x2a19,CUS_0x4d26,August,22,133-18-6855,Architect,20978.49,1853.2075,6,10,20,3,"Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",20.38977153,12.11647231,12.32,10,Standard,2512.387923,38.6547736,,Yes,28.45284753,95.11340117,Low_spent_Large_value_payments,331.7545013,0,1.1282,1.1524,-0.2204,-1.7237,0.226 +0x2a25,CUS_0x247e,August,44,368-98-6866,_______,118644.36,10033.03,1,2,8.288361749,0,Auto Loan,0,1,4.53,6,Good,1100.42,42.00513906,31 Years and 8 Months,No,53.02788628,553.9068823,High_spent_Medium_value_payments,1066.305692,0,-0.6814,-0.3465,1.329,-1.7405,1.0562 +0x2a31,CUS_0x3d41,August,19,467-76-9461,Accountant,30029.59,,0,4,5,4,"Debt Consolidation Loan, Payday Loan, Payday Loan, and Personal Loan",,8,-0.52,5,_,466.13,24.27346942,31 Years and 9 Months,No,68.42705999,141.0645208,Low_spent_Medium_value_payments,311.1550025,0,-0.137,-0.4934,0.3367,0.1598,-0.3867 +0x2a3d,CUS_0x438b,August,23,240-13-3223,Media_Manager,81557,6718.416667,9,7,18,6,"Personal Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",,18.04384962,22.91,12,Bad,2866.618651,36.89929681,12 Years and 0 Months,Yes,321.4449354,226.2010886,High_spent_Medium_value_payments,374.1956427,0,1.1628,1.2347,-0.6001,0.2008,0.4548 +0x2a49,CUS_0xa9a9,August,42,948-77-3611,Writer,63331.9,5149.658333,5,4,20,0,,21.58015385,19,8.86,6,Standard,362.71,26.99057802,8 Years and 8 Months,Yes,0,175.6654669,High_spent_Medium_value_payments,589.3003665,0,1.0534,0.006,-0.2549,0.559,-0.9714 +0x2a55,CUS_0x68c8,August,42,094-43-4653,Doctor,24069.55,,7,7,20,0,,27.66934563,19,15.02,9,_,279.1040428,32.26529399,29 Years and 11 Months,Yes,263.5079914,204.170607,Low_spent_Small_value_payments,318.1955502,0,1.4337,-1.5661,0.9104,1.136,0.3329 +0x2a61,CUS_0x7799,August,29,401-76-8437,Manager,15762.72,1593.56,3,3,20,4,"Debt Consolidation Loan, Student Loan, Student Loan, and Home Equity Loan",17.70944536,,10.76,4,Standard,1050.18,23.68720806,21 Years and 5 Months,Yes,51704,,Low_spent_Small_value_payments,346.0934853,0,-1.883,0.3158,-0.1932,0.1213,0.0973 +0x2a6d,CUS_0x7888,August,50,262-53-0576,Architect,122713.6,10114.13333,5,6,14,2,"Credit-Builder Loan, and Not Specified",11.51977113,10,12.46,1,Standard,128.33,36.69183768,23 Years and 2 Months,NM,146.268887,735.3854196,Low_spent_Medium_value_payments,409.7590267,0,-0.6534,0.4599,0.2524,0.0296,1.7146 +0x2a79,CUS_0x1d3e,August,49,579-15-1527,Architect,41499.21,3582.2675,0,5,5,0,,,,9.79,4,_,1095.303622,34.08588225,15 Years and 10 Months,No,0,416.5505427,Low_spent_Small_value_payments,287.4013844,0,1.116,0.1734,-0.7481,-1.3709,0.5401 +0x2a85,CUS_0xa83a,August,26,389-32-0105,Musician,82840.24,6973.353333,1,6,0.288361749,0,Not Specified,0,2.254512499,1.81,4,Good,396.2872207,34.91791434,19 Years and 0 Months,NM,56.69193834,747.7830492,Low_spent_Medium_value_payments,592.7978068,0,-0.6568,-0.8287,-0.9175,-1.9552,-0.811 +0x2a91,CUS_0x43c6,August,25,411-18-3032,Journalist,24195.37,1946.280833,7,7,19,1,Credit-Builder Loan,16.64109688,16,20.96,9,Standard,1163.09,32.77751441,,Yes,18.06952041,41.85349185,High_spent_Medium_value_payments,384.7050711,0,-0.332,-0.7492,0.9674,-0.0555,0.9731 +0x2a9d,CUS_0x534a,August,20,309-86-5134,Scientist,20441835,6315.618333,3,5,1,0,,1.146030123,2,3.26,4,Good,1116.88,40.08565435,31 Years and 3 Months,No,0,202.681141,High_spent_Medium_value_payments,678.8806923,0,0.9739,-1.8311,-1.3402,-0.4366,-0.6967 +0x2aa9,CUS_0x8d4f,August,20,666-08-2872,Entrepreneur,7106.15,,6,5,30.06745738,3,"Personal Loan, Auto Loan, and Debt Consolidation Loan",40.16147619,24.09936324,3.66,7,Bad,3127.899222,29.14079942,19 Years and 5 Months,Yes,9.575854756,40.91181907,Low_spent_Small_value_payments,272.0099549,0,0.4471,0.2026,1.3041,0.0691,-0.2957 +0x2ab5,CUS_0xa45d,August,38,441-54-5666,Doctor,20193.59,1400.799167,3,3,8,5,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Payday Loan, and Not Specified",16.72787608,12,9.42,6,Standard,1109.22,30.57884203,,Yes,68.09053967,139.7638828,Low_spent_Small_value_payments,222.2254942,0,0.7149,0.0522,-0.3135,-0.2689,0.2117 +0x2ac1,CUS_0x7f32,August,31,895-90-3550,Writer,62545.59,5133.1325,3,6,7,4,"Personal Loan, Student Loan, Payday Loan, and Student Loan",16.7936552,12.01946586,,8,Standard,1259.123559,27.41853437,17 Years and 8 Months,Yes,174.4163184,257.8017596,Low_spent_Medium_value_payments,361.0951719,0,2.0315,-0.996,-0.6073,-0.3653,1.4824 +0x2acd,CUS_0x303a,August,53,784-81-5355,Architect,32011.89,2806.6575,2,6,4,3,"Credit-Builder Loan, Home Equity Loan, and Payday Loan",12.12027017,10.58465045,,1,Good,1392.535927,25.13083788,26 Years and 0 Months,NM,66.35744899,117.9253972,High_spent_Medium_value_payments,346.3829038,0,-0.7846,0.23,-0.029,-0.0195,0.8363 +0x2ad9,CUS_0x8a5c,August,34,778-25-3886,_______,42399.03,3572.2525,7,5,31,7,"Student Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Student Loan",,14.17096275,11.69,17,_,2369.201288,36.43444865,,Yes,196.6894916,358.9480496,Low_spent_Small_value_payments,91.58770887,0,-1.63,0.7551,1.7837,-1.3648,0.6186 +0x2ae5,CUS_0x36d5,August,30,171-27-0494,Mechanic,23679.61,,8,5,15,0,,27.65640825,18,4.74,4,Standard,622.58,38.87430514,19 Years and 5 Months,No,0,122.3909637,Low_spent_Small_value_payments,394.2391196,0,0.9999,0.2065,0.7754,-0.2866,-0.0794 +0x2af1,CUS_0x5155,August,28,082-20-7384,Teacher,62139.51,5089.2925,6,10,26.88954781,8,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Payday Loan",,27.62173278,24.24,8,Bad,2838.926776,38.61938583,8 Years and 6 Months,Yes,1665.712517,67.34593046,High_spent_Medium_value_payments,331.5407211,0,0.8303,0.1222,0.2342,-2.0534,1.5666 +0x2afd,CUS_0x1e6b,August,26,299-96-0609,Manager,62846.31,5393.1925,10,8,20.88954781,7,"Not Specified, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",,21.08384841,1.79,10,_,4491.191688,26.92229073,2 Years and 4 Months,Yes,1608.466364,189.3383909,High_spent_Medium_value_payments,297.1844142,0,-0.8276,0.7382,-0.0644,0.2904,-1.8675 +0x2b09,CUS_0x6514,August,32,007-68-4311,Media_Manager,59438.91,5086.2425,6,7,33,9,"Personal Loan, Not Specified, Personal Loan, Auto Loan, Personal Loan, Payday Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",35.07518035,22,5.35,9,Bad,2259.86,28.44346548,9 Years and 8 Months,Yes,362.2704969,166.8267252,High_spent_Medium_value_payments,229.5270278,0,0.5921,1.0595,0.6907,-1.0116,1.7745 +0x2b15,CUS_0x92ef,August,37,297-54-9325,Mechanic,69870.88,,3,6,7,3,"Payday Loan, Payday Loan, and Auto Loan",,,8.26,8,Standard,2106.68,28.6342926,6 Years and 0 Months,Yes,148.7095152,45.79152642,!@9#%8,647.5562918,0,-0.1608,2.2234,0.7171,-0.1204,0.3839 +0x2b21,CUS_0xc3d6,August,80,402-44-2832,Architect,76257.52,6383.793333,8,9,24.88954781,9,"Student Loan, Mortgage Loan, Auto Loan, Auto Loan, Not Specified, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",,22.16911549,,12,_,3086.985629,29.4843797,6 Years and 6 Months,Yes,1669.780144,180.7895809,!@9#%8,353.4795276,0,0.5356,1.1658,-0.4001,-0.2011,-2.2267 +0x2b2d,CUS_0x33f0,August,33,#F%$D@*&8,Scientist,74450.88,,6,4,18.28836175,2,"Not Specified, Mortgage Loan, and Credit-Builder Loan",,20,16.85,12,_,640.7,27.45005969,20 Years and 2 Months,NM,37843,,High_spent_Large_value_payments,688.1635979,0,-0.2062,0.3037,0.5513,0.2643,0.3651 +0x2b39,CUS_0x32e5,August,32,093-52-7956,_______,146866.76,12108.89667,4,6,1708,3,"Student Loan, Not Specified, and Student Loan",,18,5.78,3,Standard,247.08,35.80700541,22 Years and 5 Months,No,218.4820356,,Low_spent_Large_value_payments,207.9218797,0,-0.2062,-2.2543,-0.6556,0.1949,-0.6539 +0x2b45,CUS_0xa8e7,August,41,622-93-7229,Lawyer,20914.44,1800.87,6,7,22.06745738,100,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Student Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,16,0.98,16,Bad,2628.280954,39.30759048,16 Years and 10 Months,Yes,124.2176483,,!@9#%8,137.4385615,0,-1.9863,-1.0134,-1.0628,-0.1033,-0.3822 +0x2b51,CUS_0x90d6,August,22,333-00-1107,Engineer,18936.55,,8,6,25,7,"Not Specified, Credit-Builder Loan, Home Equity Loan, Not Specified, Credit-Builder Loan, Payday Loan, and Not Specified",,16,19.7,7,_,3969.14,28.99372996,11 Years and 3 Months,Yes,80.84994008,163.7755559,Low_spent_Small_value_payments,217.6790874,0,0.182,0.0889,2.8935,1.2773,-0.5 +0x2b5d,CUS_0x65f6,August,30,489-78-3488,Accountant,61476.93,4940.0775,6,6,23.06745738,5,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Not Specified, and Not Specified",,24,7.82,14,Bad,3545.790954,37.51169411,8 Years and 6 Months,Yes,212.556688,235.9211608,High_spent_Small_value_payments,278.8096132,0,1.9592,1.4719,0.7799,-0.6853,0.3474 +0x2b69,CUS_0xbbff,August,24,245-76-8164,Writer,16198.305,,4,7,4,2,"Not Specified, and Not Specified",,5,11.9,0,Good,1439.09,35.25468193,31 Years and 3 Months,No,14.3501461,37.07580426,High_spent_Small_value_payments,317.5599246,0,-0.1398,-0.9153,-0.4603,1.5107,-1.1214 +0x2b75,CUS_0x144d,August,23,269-66-4319,Mechanic,20938.03,1896.835833,6,9,23,5,"Payday Loan, Not Specified, Not Specified, Not Specified, and Student Loan",17.03035179,15,-2.16,11,Bad,1657.74,26.55798601,10 Years and 3 Months,Yes,56.26113897,62.5588382,Low_spent_Medium_value_payments,350.8636062,0,0.3996,0.0137,0.8691,0.3756,1.2389 +0x2b81,CUS_0x4a74,August,24,679-28-0350,Lawyer,21364.2,1728.35,3,3,17,1,Credit-Builder Loan,18.48662717,15,9.1,6,Standard,1178.6,31.94484529,29 Years and 11 Months,Yes,9.230471159,188.9983131,Low_spent_Small_value_payments,264.6062158,0,-0.2245,-2.6909,0.4129,-1.001,1.2091 +0x2b8d,CUS_0xa6d9,August,34,403-15-3171,Lawyer,96826.96,7933.913333,8,5,7,0,,22.76865405,19,8.76,5,Standard,1290.07,25.98308653,26 Years and 2 Months,NM,0,369.7411273,High_spent_Small_value_payments,683.650206,0,0.5968,-0.4283,1.5467,1.3408,1.0284 +0x2b99,CUS_0x3f5f,August,44,#F%$D@*&8,Entrepreneur,16808.35,1188.695833,8,6,11,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",21.49140888,18.23614338,21.51,5,Standard,1445.726827,28.70287736,20 Years and 0 Months,Yes,64.87719125,122.8570181,Low_spent_Small_value_payments,221.135374,0,0.0756,0.5593,-1.0563,-1.8607,-1.7208 +0x2ba5,CUS_0x29b2,August,21,626-80-0791,_______,59930.04,5207.17,8,8,28.95700519,6,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Mortgage Loan",31.18236191,,14.18,,Bad,4697.700954,39.23789048,2 Years and 4 Months,Yes,1480.079608,160.289743,High_spent_Medium_value_payments,409.2972796,0,-0.6021,-1.5304,1.1135,-0.0233,1.7158 +0x2bb1,CUS_0x58d0,August,52,843-52-9642,Musician,128279.16,10966.93,2,6,1.288361749,0,,7.979571884,9,10.87,7,_,105.26,31.8450298,16 Years and 9 Months,No,0,1114.853873,Low_spent_Medium_value_payments,681.7765883,0,-1.9451,-0.4661,0.3669,-0.3617,0.3914 +0x2bbd,CUS_0x768c,August,25,628-81-6734,Lawyer,53908.41,,9,5,17,5,"Mortgage Loan, Credit-Builder Loan, Not Specified, Student Loan, and Auto Loan",44.44787123,26.93495029,25.07,11,Bad,3422.376028,24.67719916,,Yes,219.8383102,,Low_spent_Large_value_payments,360.2254789,0,0.8061,-1.5322,-1.4899,-0.4354,-1.0055 +0x2bc9,CUS_0x32b1,August,45,517-36-8021,Manager,16718.08,,8,10,26.06745738,5,"Mortgage Loan, Student Loan, Payday Loan, Student Loan, and Debt Consolidation Loan",,20,23.03,6,Bad,3155.400954,34.39560169,8 Years and 10 Months,Yes,41.40894223,116.6605097,Low_spent_Small_value_payments,266.9275935,0,1.3149,-0.417,0.671,-1.825,-1.6066 +0x2bd5,CUS_0x17f3,August,39,033-08-6622,Manager,83355.33,7208.2775,6,4,8,2,"Not Specified, and Mortgage Loan",18.71126484,15,10.07,4,Standard,677.27,26.03671345,30 Years and 2 Months,Yes,75.96957344,236.9426392,High_spent_Small_value_payments,667.9155373,0,1.5998,0.8112,1.2934,-1.2,0.5416 +0x2be1,CUS_0x8831,August,44,728-18-0682,Media_Manager,11646.19,,6,3,14,2,"Debt Consolidation Loan, and Home Equity Loan",26.34622559,20,5.33,6,Standard,847.88,30.85885381,18 Years and 9 Months,Yes,10.05059807,83.99855871,!@9#%8,277.9024266,0,0.1276,-1.7818,2.8804,0.2259,0.3899 +0x2bed,CUS_0x83a4,August,46,167-34-4316,Writer,69577.92,,5,6,4363,3,"Payday Loan, Student Loan, and Debt Consolidation Loan",4.950852245,3.645616594,8.53,4,Good,564.318553,26.58862291,19 Years and 4 Months,No,135.383947,420.2461688,Low_spent_Small_value_payments,322.5858843,0,-0.7561,-0.0191,0.3277,-0.2925,-0.8064 +0x2bf9,CUS_0x5db1,August,37,418-30-2017,Developer,25621.01,1837.084167,3,7,3,2,"Home Equity Loan, and Payday Loan",,10,6.37,2,Good,1336.73,31.53694367,31 Years and 2 Months,NM,26.74670147,203.6438554,Low_spent_Small_value_payments,243.3178597,0,-0.3012,-1.6048,0.05,-0.2467,0.8185 +0x2c05,CUS_0x58f,August,29,744-81-5706,Architect,55324.29,4334.3575,10,637,28.88954781,8,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Auto Loan, Auto Loan, and Home Equity Loan",42.16614866,21,32.18,7,_,4270.21,33.66734912,8 Years and 2 Months,NM,1568.579336,,Low_spent_Small_value_payments,103.9649345,0,0.7161,3.2943,0.5298,0.8718,1.4812 +0x2c11,CUS_0x437c,August,45,517-71-4654,Lawyer,42947.49,3470.9575,4,7,15,2,"Personal Loan, and Auto Loan",,20,18.38,12,Standard,2266.69,34.89298076,15 Years and 5 Months,Yes,47.93668893,81.27540374,High_spent_Medium_value_payments,467.8836573,0,-0.4823,1.3658,1.425,0.1354,0.0247 +0x2c1d,CUS_0x28df,August,19,935-43-1402,Scientist,49023.6,3935.3,5,6,28,6,"Payday Loan, Payday Loan, Student Loan, Not Specified, Auto Loan, and Payday Loan",24.24517332,17.33234544,9.64,6,Standard,2859.533312,38.25072841,14 Years and 10 Months,Yes,211.7097552,139.6104638,Low_spent_Small_value_payments,332.209781,0,1.593,-0.0877,-1.4326,0.7558,-0.3663 +0x2c29,CUS_0x5e3b,August,37,068-14-1985,Entrepreneur,60263.43,,1662,5,20,5,"Student Loan, Payday Loan, Student Loan, Mortgage Loan, and Mortgage Loan",46.20938336,28.77809543,17.71,14,_,1587.16547,25.69386881,10 Years and 4 Months,Yes,178.7366155,127.9212186,High_spent_Large_value_payments,457.6374159,0,0.4617,1.0424,-0.2344,0.1326,-0.0006 +0x2c35,CUS_0x2e15,August,37,986-75-9097,Teacher,44036.97,3884.7475,2,3,11,4,"Home Equity Loan, Personal Loan, Student Loan, and Home Equity Loan",4.678974162,3.603093996,7.77,4,Good,1123.937599,35.83829859,29 Years and 6 Months,NM,82.98637942,10000,Low_spent_Small_value_payments,461.6895882,0,-1.32,0.3874,0.4274,-0.3393,-1.4369 +0x2c41,CUS_0x52e7,August,22,641-27-8461,Developer,12681.45,1191.7875,6,7,15,0,,24.40765269,18.10464719,9.49,2,Standard,680.2663946,26.56402492,17 Years and 5 Months,Yes,0,49.97227605,!@9#%8,359.2064739,0,1.2294,-0.3393,1.489,0.2837,-1.654 +0x2c4d,CUS_0xc4c9,August,30,147-54-4253,Entrepreneur,16568.425,1550.702083,5,1358,18,1,Payday Loan,15.15822095,,3.56,5,Standard,478.11,22.28596811,29 Years and 5 Months,No,8.474085559,143.7430832,Low_spent_Small_value_payments,292.8530395,0,1.6643,0.5683,0.5255,-0.7843,0.3998 +0x2c59,CUS_0xac39,August,30,208-42-4255,Writer,14952.03,,10,8,22.88954781,9,"Payday Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",,25,17.2,12,_,3566.21,26.18162101,4 Years and 6 Months,Yes,1429.067058,193.434203,Low_spent_Small_value_payments,117.6689078,0,2.4516,0.3986,0.1754,0.2666,0.911 +0x2c65,CUS_0x448c,August,20,028-69-9480,Mechanic,101500.92,,4,6,14,2,"Payday Loan, and Personal Loan",31.40299362,20.40346664,13.37,6,Standard,948.6254313,44.15624757,15 Years and 9 Months,Yes,141.5457062,,High_spent_Large_value_payments,857.3503599,0,0.2463,0.9084,-0.298,-1.5306,-3.011 +0x2c71,CUS_0x2719,August,44,994-82-7635,Engineer,155726.76,12817.23,2,3,8,0,,0,1.122151878,7.33,7,Good,1287.733153,38.93744171,30 Years and 6 Months,NM,0,223.0059743,High_spent_Medium_value_payments,1308.717026,0,-1.5905,0.2284,0.6433,0.2073,-0.1335 +0x2c7d,CUS_0x76d4,August,47,528-44-7056,Entrepreneur,36591.25,,7,5,5,4,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",11.88906285,10,7.12,5,Standard,575.21,40.07251843,,No,67.41331375,131.2019115,High_spent_Small_value_payments,372.911858,0,0.7403,0.8844,-0.7823,0.2334,0.4843 +0x2c89,CUS_0xae79,August,51,141-97-1553,Media_Manager,47280.76,3713.063333,5,3,17,0,,24.45433283,20,11.91,3,Standard,1134.41,27.17885848,27 Years and 8 Months,Yes,0,97.9244167,High_spent_Small_value_payments,533.3819166,0,-1.0641,0.2712,0.9508,0.1411,-0.2144 +0x2c95,CUS_0x695e,August,39,319-71-0111,Doctor,108161.7,,5,6,1,2,"Student Loan, and Debt Consolidation Loan",19.04349445,13,6.16,4,Good,556.2417616,25.24733801,25 Years and 3 Months,No,169.6742678,,Low_spent_Large_value_payments,301.4453115,0,0.1801,-2.2475,-0.4771,-1.5577,-1.1641 +0x2ca1,CUS_0x1b41,August,39,521-24-8234,Engineer,19910.51,,9,10,16.06745738,5,"Home Equity Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",,24,,16,Bad,4180.420954,32.62794813,6 Years and 2 Months,Yes,57.67071368,23.60906901,High_spent_Large_value_payments,294.220846,0,-0.0338,-0.3643,-1.0454,0.4507,-0.0692 +0x2cad,CUS_0x75b1,August,31,774-41-3721,Entrepreneur,41977.78,3362.148333,8,9,31.88954781,6,"Auto Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,25,19.89,11,_,4586.12,35.38900442,2 Years and 2 Months,Yes,1495.291965,33.77850179,High_spent_Large_value_payments,352.814285,0,0.9299,-1.0395,-2.0172,-0.3715,-0.1721 +0x2cb9,CUS_0x11d1,August,25,#F%$D@*&8,Mechanic,11731.585,,8,3,6,2,"Credit-Builder Loan, and Student Loan",,,7.48,2,_,289.73,27.50740452,19 Years and 2 Months,Yes,15.35969679,32.77784632,Low_spent_Medium_value_payments,314.7256652,0,0.6484,0.0355,-0.7445,-0.6486,0.3931 +0x2cc5,CUS_0x278b,August,37,190-83-1891,Musician,88406.34,7113.195,2,7,2865,4,"Home Equity Loan, Not Specified, Personal Loan, and Payday Loan",,0,4.06,3,Good,1273.15,26.06492336,,No,242.2368498,457.1300767,Low_spent_Medium_value_payments,291.9525734,0,-0.6071,-0.6543,0.4211,0.7083,-0.5416 +0x2cd1,CUS_0xed3,August,30,828-88-6721,Developer,36035.32,2910.943333,10,10,23.95700519,100,"Credit-Builder Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",,17,16.47,8,Standard,2362.010954,27.1519052,7 Years and 6 Months,NM,1403.461285,,Low_spent_Large_value_payments,218.4415238,0,0.5794,-0.52,0.8599,1.0328,-1.9325 +0x2cdd,CUS_0x1f96,August,30,613-68-3100,Architect,113383.14,9321.595,1,4,5.288361749,4,"Student Loan, Auto Loan, Payday Loan, and Student Loan",,1,3.4,0,Good,73.69215715,25.26102042,17 Years and 10 Months,No,376.5597009,1354.440625,Low_spent_Large_value_payments,,0,-0.6613,-0.0568,0.2299,0.2314,1.6708 +0x2ce9,CUS_0x3ea1,August,45,084-97-6761,Writer,51552.6,4413.05,6,4,18,3,"Debt Consolidation Loan, Student Loan, and Mortgage Loan",9.372993069,10,24.86,6,Standard,1710.66,38.03173146,14 Years and 10 Months,Yes,119.8552501,248.2811171,High_spent_Small_value_payments,333.1686327,0,0.2159,0.6257,-1.1277,-1.2801,-1.2656 +0x2cf5,CUS_0x5624,August,36,006-46-7211,Developer,39579.6,,6,5,10,6,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,13,17.69,5,Standard,634.77,34.1472461,17 Years and 0 Months,Yes,127.9403988,,Low_spent_Large_value_payments,165.0306491,0,0.0059,-1.0204,1.2928,0.5144,1.3287 +0x2d01,CUS_0x5719,August,28,196-15-9535,Writer,41342.86,,8,3,18,4,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",23.74198214,19,13.73,8,_,262.96,34.55261013,,Yes,211.6741306,,Low_spent_Small_value_payments,92.63458876,0,-0.027,1.0751,-0.1105,-2.0292,-1.3236 +0x2d0d,CUS_0x136b,August,45,444-16-2415,Writer,120260.2,9904.683333,4,5,14,1,Mortgage Loan,,17.00239466,18.5,2,Standard,1577.661031,42.63930533,21 Years and 0 Months,Yes,53.15512272,239.1609633,Low_spent_Large_value_payments,968.1522473,0,-0.173,0.9394,-0.241,-1.0277,-0.0475 +0x2d19,CUS_0x122c,August,48,883-73-9594,Entrepreneur,36346.13,,8,6,11,3,"Credit-Builder Loan, Home Equity Loan, and Auto Loan",,15,10.54,4,Good,1252.46,28.06670356,22 Years and 2 Months,NM,89.06155404,110.5097025,High_spent_Medium_value_payments,369.3131601,0,-1.0022,0.0602,0.044,-0.4451,-1.5506 +0x2d25,CUS_0x41cc,August,40,823-14-2329,Accountant,25399.68,,4,4,9,3,"Personal Loan, Mortgage Loan, and Home Equity Loan",19.70765404,,21.99,11,_,1495.03,24.57898605,,Yes,61.00343611,47.78383501,High_spent_Medium_value_payments,353.6767289,0,1.3207,1.4646,-2.239,-0.2954,0.5948 +0x2d31,CUS_0x36c7,August,46,136-53-7387,Scientist,51307.1,,8,6,4195,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,14,9.95,5,Standard,878.19,33.71405243,32 Years and 5 Months,NM,49489,73.56000699,High_spent_Medium_value_payments,556.6551312,0,1.1127,0.3438,-0.7129,1.3367,-1.3559 +0x2d3d,CUS_0x143c,August,35,422-18-4190,Accountant,18578.88,1325.113473,1,3,1,100,"Auto Loan, Credit-Builder Loan, and Auto Loan",13.67798037,12,11.87,5,Good,779.49,39.53251722,31 Years and 6 Months,NM,140.106865,76.61359044,Low_spent_Small_value_payments,317.0300711,0,0.1211,1.3598,-0.6405,-0.1509,-0.7735 +0x2d49,CUS_0x4e5,August,80,210-46-4512,Media_Manager,68332.08,5053.718541,6,5,34,7,"Home Equity Loan, Credit-Builder Loan, Payday Loan, Student Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",12.49095994,8,19.29,9,Standard,1462.7,31.38119542,16 Years and 8 Months,Yes,771.0660362,,Low_spent_Large_value_payments,162.8604269,0,0.0313,1.0227,-0.3292,-0.2194,0.3122 +0x2d55,CUS_0x68b5,August,32,112-61-4889,Journalist,12303.09,,6,3,9,3,"Payday Loan, Student Loan, and Payday Loan",21.56751793,16,17.06,5,Standard,1328.11,31.8322648,18 Years and 9 Months,NM,26.76360717,84.04253415,!@9#%8,303.5196087,0,1.6193,-2.2064,-1.5923,0.8331,-0.3685 +0x2d61,CUS_0xc055,August,26,600-94-2851,Developer,35118.1,3113.508333,5,7,6,3,"Home Equity Loan, Payday Loan, and Personal Loan",20.61563442,13,12.7,8,_,407.74,26.44151506,32 Years and 8 Months,Yes,45.18912916,118.5631996,High_spent_Medium_value_payments,397.5985046,0,-1.7096,1.468,-2.0924,0.3039,-0.3637 +0x2d6d,CUS_0x3069,August,41,916-30-5005,Manager,64057.72,5082.143333,2,5,7.288361749,0,Mortgage Loan,,2,11.91,3,Good,698.5043834,31.966151,,No,35.01370052,695.1020218,High_spent_Small_value_payments,488.0599111,0,-0.9434,-0.5564,-1.3043,-0.4833,-3.1984 +0x2d79,CUS_0x8484,August,39,194-77-9351,Lawyer,44390.76,3586.23,4,6,12,6,"Auto Loan, Auto Loan, Payday Loan, Student Loan, Payday Loan, and Not Specified",17.34216794,13,15.01,7,_,22.77758027,27.45952004,17 Years and 9 Months,Yes,153.7243187,,High_spent_Medium_value_payments,365.7620674,0,1.5873,-0.4837,-0.3145,-0.8785,0.6766 +0x2d85,CUS_0x4038,August,19,983-48-0825,Architect,37807.28,2933.606667,1,2,3.288361749,2,"Personal Loan, and Debt Consolidation Loan",3.810078126,7,2.05,3,Good,108.85,24.03540536,20 Years and 8 Months,No,62.47570432,563.7428448,High_spent_Small_value_payments,347.0795785,0,-0.4,0.2645,0.2413,0.1441,0.644 +0x2d91,CUS_0x9dc3,August,20,698-31-2770,Manager,59154.04,,2,5,8,1,Payday Loan,18.09871004,,11.4,4,Good,1346.13,31.41822521,22 Years and 4 Months,No,10306,173.2666753,!@9#%8,503.328098,0,0.5112,-0.8132,0.7431,-0.9693,-1.6934 +0x2d9d,CUS_0xc64e,August,28,238-79-7321,Musician,41155.22,,10,10,17.88954781,6,"Payday Loan, Personal Loan, Personal Loan, Student Loan, Not Specified, and Student Loan",,21.29880741,24.4,7,Bad,4068.81781,21.82315121,5 Years and 8 Months,Yes,1802.744684,255.2793522,Low_spent_Small_value_payments,160.6275562,0,-1.286,0.596,0.2107,0.0196,-0.2776 +0x2da9,CUS_0x2451,August,27,#F%$D@*&8,Teacher,15610.61,1350.884167,6,10,29.95700519,9,"Auto Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Student Loan, Payday Loan, Credit-Builder Loan, Not Specified, and Personal Loan",,28.94299022,1.5,13,Bad,2488.423261,31.12400547,15 Years and 6 Months,NM,1401.628529,,High_spent_Large_value_payments,238.2592091,0,0.3177,0.3948,-2.5193,1.3407,0.8384 +0x2db5,CUS_0x86be,August,48,776-18-7804,Writer,35670.66,,1,7,6,0,,,8.39183176,3.16,8,_,1490.516116,35.67292602,,No,0,124.4701737,Low_spent_Small_value_payments,473.5853263,0,0.7968,0.272,-0.9569,-1.3147,-0.0964 +0x2dc1,CUS_0x2db4,August,28,893-15-4685,Doctor,28128.16,2337.013333,7,7,24,2,"Student Loan, and Personal Loan",,28.51226472,,794,Bad,2768.311757,29.13769118,15 Years and 8 Months,Yes,36.90754696,32.07526056,High_spent_Large_value_payments,404.7185258,0,-0.6777,-0.3473,1.3635,-0.3754,0.7041 +0x2dcd,CUS_0x6902,August,80,845-47-0164,Writer,48144.78,3994.065,7,6,29.06745738,6,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,23.85654463,4.59,7,Bad,3825.954571,38.41079519,7 Years and 6 Months,Yes,217.2670403,10000,Low_spent_Small_value_payments,,0,-0.0714,0.4641,-0.0835,-0.3209,0.7852 +0x2dd9,CUS_0x69ff,August,43,020-79-5434,Writer,32178.74,,10,6,21,6,"Auto Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Personal Loan, and Student Loan",19.41238252,9,14.15,9,Standard,2165.47,34.28451896,12 Years and 5 Months,Yes,211.055548,162.8678661,High_spent_Small_value_payments,244.7425559,0,0.7866,0.6857,1.5506,0.6198,-0.1848 +0x2de5,CUS_0xaec2,August,26,218-53-0203,Writer,17445.15,,7,9,27.06745738,3,"Credit-Builder Loan, Student Loan, and Auto Loan",27.7754091,,19.76,12,Standard,2813.032576,25.69332549,18 Years and 6 Months,Yes,86.35931777,33.45101361,Low_spent_Medium_value_payments,307.172421,0,-0.2577,-0.5898,-0.5346,-1.6837,0.9672 +0x2df1,CUS_0x963,August,34,805-51-1173,Mechanic,20522.13,,4,5,5,3,"Personal Loan, Student Loan, and Not Specified",18.95183657,13,9.19,12,Standard,233.67,39.75602538,19 Years and 0 Months,Yes,36.33994205,160.1485801,Low_spent_Small_value_payments,239.7292278,0,2.0785,1.0028,-0.6594,1.5336,0.204 +0x2dfd,CUS_0x609f,August,18,167-60-0326,Entrepreneur,61654.84,5175.903333,5,7,9,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Student Loan",,12,13.87,5,Standard,741.7,25.05330445,13 Years and 3 Months,Yes,192.6269519,196.9672725,High_spent_Medium_value_payments,377.9961089,0,-0.274,0.4605,-0.5222,0.0161,-1.2322 +0x2e09,CUS_0x4236,August,57,114-87-5312,Media_Manager,20703.48,,3,6,2,1,Debt Consolidation Loan,4.866355544,7,8.57,7,Good,880.5068037,34.98067492,,No,45117,144.3834128,Low_spent_Large_value_payments,306.5698393,0,0.0427,-0.0154,-0.5038,0.2182,0.5992 +0x2e15,CUS_0x1680,August,28,385-98-7605,Doctor,8022.255,762.52125,10,10,23.88954781,6,"Credit-Builder Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Payday Loan",38.37499979,18.1836098,5.67,7,Bad,3684.548145,34.14274293,8 Years and 4 Months,Yes,1362.992768,75.12230988,Low_spent_Medium_value_payments,223.8069659,0,0.0766,-0.5658,0.1337,-1.0653,0.233 +0x2e21,CUS_0x3231,August,44,408-03-6761,Doctor,36717.63,2872.8025,5,4,19,100,"Credit-Builder Loan, Student Loan, Auto Loan, and Home Equity Loan",17.34584016,12,7.05,3,Standard,1456.01,34.15204977,31 Years and 9 Months,Yes,96.66168931,35.47265329,High_spent_Medium_value_payments,405.1459074,0,-0.8145,0.0715,1.0279,0.2755,0.4755 +0x2e2d,CUS_0xb87a,August,80,271-91-2987,Mechanic,35469.07,,4,5,6,0,,,8,-2.37,4,Good,545.48,24.74960835,,No,0,,High_spent_Medium_value_payments,481.8404628,0,0.3792,-0.9582,-0.6179,2.103,0.6677 +0x2e39,CUS_0xb271,August,41,952-44-3434,_______,19519.57,,6,6,20.06745738,2,"Mortgage Loan, and Personal Loan",26.12025259,16,9.92,11,_,2448.590954,24.11617562,18 Years and 10 Months,Yes,25.76088134,163.4829672,Low_spent_Small_value_payments,263.3989468,0,1.1154,0.0019,-1.1532,-1.7495,-1.1628 +0x2e45,CUS_0x904,August,23,131-53-7682,Architect,35926.76,,10,7,28,6,"Payday Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Student Loan, and Home Equity Loan",15.62125812,9.447672875,16.29,13,_,1855.423863,25.83444595,11 Years and 10 Months,Yes,168.3513637,,High_spent_Medium_value_payments,245.3431285,0,0.1899,0.0888,0.3391,-1.2235,-0.9649 +0x2e51,CUS_0x8974,August,22,263-28-2833,Writer,134150,,4,3,10,2,"Payday Loan, and Not Specified",0,1,1.51,5,Good,1295.2,31.66734349,16 Years and 3 Months,No,201.7341928,287.4382703,High_spent_Small_value_payments,859.4442036,0,0.3623,0.151,0.4289,0.3185,0.4253 +0x2e5d,CUS_0x9e28,August,43,#F%$D@*&8,_______,34204.8,,10,5,18.06745738,6,"Payday Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",34.70647368,21.63618958,15.52,14,Bad,3979.575542,33.8448261,1 Years and 10 Months,Yes,106.9973142,50.40527363,High_spent_Small_value_payments,348.4171242,0,0.4622,-0.2702,0.2225,1.2745,1.8843 +0x2e69,CUS_0x90cb,August,31,075-55-7838,Developer,56131.48,4946.623333,0,4,10,4,"Student Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",5.92258117,6,10.1,3,_,1235.48,36.78641343,24 Years and 10 Months,NM,141.986536,99.71655761,!@9#%8,502.9592397,0,0.3284,-1.2404,-0.1451,-0.9624,-1.1136 +0x2e75,CUS_0x466e,August,28,143-82-0061,Musician,57439.12,,4,6,6,4,"Personal Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",16.04673414,,,4,Good,769.5055066,39.67062038,21 Years and 3 Months,No,187.9561102,85.04722128,High_spent_Medium_value_payments,435.6560019,0,0.9325,-1.1786,0.3673,0.3657,-0.5368 +0x2e81,CUS_0x666a,August,36,#F%$D@*&8,Architect,39944.67,3318.7225,4,3,6.288361749,0,Personal Loan,0,0,8.34,1,Good,333.6911892,31.11437212,16 Years and 4 Months,NM,22.37777689,708.3476499,Low_spent_Large_value_payments,324.5099547,0,-0.6024,0.5523,1.7404,-1.4525,2.5107 +0x2e8d,CUS_0x1a5a,August,36,225-82-5288,Lawyer,32485.42,,3,6,7,0,,19.54737752,,0.92,2,Standard,998.9,39.41216622,33 Years and 5 Months,No,0,56.18353882,High_spent_Large_value_payments,428.9282945,0,-0.1083,-1.7457,1.2683,0.8608,0.4477 +0x2e99,CUS_0xa0b,August,19,440-85-2711,Writer,70286.6,,8,10,25.88954781,6,"Not Specified, Personal Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Mortgage Loan",,22.85151857,8.72,7,Bad,1751.22023,27.53883892,9 Years and 11 Months,Yes,1528.825879,315.1823091,Low_spent_Large_value_payments,303.483397,0,-0.7098,-0.0338,0.7151,1.3756,0.0091 +0x2ea5,CUS_0x9784,August,40,593-49-0431,Journalist,16808.32,,0,7,10,2,"Home Equity Loan, and Mortgage Loan",0,0,8.67,3,Good,520.5482215,37.44931808,17 Years and 4 Months,No,18.78963603,86.91847859,Low_spent_Large_value_payments,302.1798736,0,1.6821,0.0318,-0.9519,1.5099,0.8354 +0x2eb1,CUS_0x627e,August,31,721-96-8087,Mechanic,72116.25,5886.6875,4,7,9,2,"Payday Loan, and Auto Loan",,13,5.06,8,Standard,243.75,36.90266609,18 Years and 10 Months,No,76.87560726,,Low_spent_Small_value_payments,179.4117853,0,1.3279,0.6315,-0.8138,0.2434,-0.5448 +0x2ebd,CUS_0x1325,August,27,918-42-0845,Accountant,35823.96,,6,547,23.06745738,5,"Not Specified, Personal Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",28.85698177,17,7.35,8,Bad,3253.330954,32.59047464,9 Years and 9 Months,Yes,112.4357847,148.5160712,High_spent_Small_value_payments,266.0608562,0,0.7542,1.1187,-0.733,0.3408,1.6225 +0x2ec9,CUS_0x6732,August,50,060-69-0738,Journalist,140390.32,11888.19333,5,2,3.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Payday Loan",0,0,4.67,6,Good,1296.331194,37.70020734,31 Years and 3 Months,No,182.1604238,1408.176236,Low_spent_Large_value_payments,393.7139579,0,-0.0798,-0.1031,-0.563,-0.4846,0.7639 +0x2ed5,CUS_0x5ce6,August,27,206-71-5245,Lawyer,25198.19,,3,6,19,3,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,10.63758251,5.83,7,Standard,1393.31114,39.018013,17 Years and 5 Months,Yes,48.63721777,68.8034466,Low_spent_Medium_value_payments,397.3442523,0,-1.0803,-0.6776,0.1056,-1.7666,-1.5499 +0x2ee1,CUS_0x2fe4,August,32,284-09-4067,Accountant,166907.72,,5,5,11,4,"Auto Loan, Mortgage Loan, Personal Loan, and Student Loan",,6,-0.48,4,Good,929.9,38.26095503,17 Years and 9 Months,No,509.357624,464.4698727,Low_spent_Medium_value_payments,685.0701699,0,2.2332,-0.7414,-0.8117,0.7733,-0.9713 +0x2eed,CUS_0x393f,August,18,834-67-8369,Musician,15531.09,1133.2575,1434,5,23.06745738,5,"Personal Loan, Not Specified, Credit-Builder Loan, Auto Loan, and Not Specified",33.23408751,22.76850186,7.26,8,Bad,5476.103079,30.66646643,14 Years and 6 Months,Yes,41.74227149,93.31520142,Low_spent_Small_value_payments,241.5479891,0,1.132,-0.0657,0.7377,0.0157,-2.5873 +0x2ef9,CUS_0x4354,August,18,895-48-7601,Entrepreneur,81935.42,6867.951667,5,4,9,1,Home Equity Loan,11.25367795,12,5.36,7,Good,625.32,37.97632331,21 Years and 9 Months,No,66.45771045,136.443584,High_spent_Large_value_payments,723.8938722,0,2.0996,0.8683,-1.2628,1.849,-1.0984 +0x2f05,CUS_0xaf3b,August,18,550-07-9471,Lawyer,14675.83,1330.985833,6,3,13.06745738,7,"Credit-Builder Loan, Personal Loan, Not Specified, Not Specified, Personal Loan, Credit-Builder Loan, and Mortgage Loan",21.82745884,,12.12,6,_,1650.970954,28.85681695,12 Years and 10 Months,NM,84.00410322,,Low_spent_Small_value_payments,156.8772012,0,0.1014,-0.3915,1.384,-0.2609,-1.9002 +0x2f11,CUS_0xaf75,August,44,210-64-7351,Architect,9197.37,,8,6,15,2,"Payday Loan, and Credit-Builder Loan",,9.415503337,19.31,11,Standard,1410.676921,34.45521089,19 Years and 5 Months,Yes,14.15012457,105.7136556,Low_spent_Small_value_payments,249.2809699,0,-1.0451,0.0367,-0.659,0.0087,0.9537 +0x2f1d,CUS_0x40e6,August,43,539-46-2692,Accountant,20492.45,,0,7,2,1,Mortgage Loan,0,0,11.69,4,Good,429.71,25.55208525,26 Years and 0 Months,No,13.23985241,82.46763923,Low_spent_Large_value_payments,327.762925,0,-0.5709,0.1247,1.3084,0.1811,-0.6459 +0x2f29,CUS_0x5c2,August,80,554-33-7055,Developer,27242.8,2434.233333,5,4,15,6,"Payday Loan, Mortgage Loan, Not Specified, Personal Loan, Not Specified, and Home Equity Loan",23.08869062,18,19.5,7,Standard,881.36,30.54165609,17 Years and 4 Months,Yes,73.81546182,,Low_spent_Medium_value_payments,231.7115396,0,-1.7213,-0.2118,-0.3342,0.9512,-0.6695 +0x2f35,CUS_0x2f6c,August,34,308-92-6427,Musician,81411.2,6537.266667,5,5,5.288361749,0,Home Equity Loan,0,2,5.48,5,Good,409.9460884,41.31567294,28 Years and 11 Months,No,42.52959454,561.9265523,High_spent_Medium_value_payments,732.7105314,0,0.6088,-0.5586,-0.4577,-0.3383,0.3226 +0x2f41,CUS_0x6b42,August,26,471-99-1392,Media_Manager,18503.85,,3,7,15,7,"Payday Loan, Home Equity Loan, Payday Loan, Payday Loan, Payday Loan, Mortgage Loan, and Payday Loan",14.53272494,8.403836082,11.33,8,Standard,803.4058531,30.86433593,16 Years and 6 Months,Yes,77.24096385,,High_spent_Small_value_payments,262.2717298,0,0.9475,-1.0791,-1.0973,-0.9295,-1.4339 +0x2f4d,CUS_0x55bd,August,42,024-80-3561,Doctor,105521.58,,4,6,4.288361749,4,"Mortgage Loan, Student Loan, Payday Loan, and Student Loan",25.46305062,21.25564589,7.07,8,_,515.3349973,31.61693136,22 Years and 10 Months,Yes,224.5107863,813.9926555,Low_spent_Medium_value_payments,520.9805192,0,0.6908,0.2795,1.0876,1.9533,-0.7604 +0x2f59,CUS_0xb68f,August,24,#F%$D@*&8,Scientist,17855.94,,8,5,32.06745738,8,"Auto Loan, Credit-Builder Loan, Student Loan, Auto Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,26.94479733,29.19,12,Bad,3813.614246,33.71703909,1 Years and 11 Months,NM,89.15181924,,Low_spent_Medium_value_payments,243.4305384,0,-0.7325,0.4234,-0.2604,1.1839,-0.0329 +0x2f65,CUS_0x27fb,August,40,410-50-2849,Manager,78477.18,6412.765,4,5,16,2,"Auto Loan, and Credit-Builder Loan",19.61654241,18,7.35,1,_,1197.91,27.95107523,24 Years and 9 Months,Yes,123.3175868,,High_spent_Large_value_payments,601.097076,0,0.8352,-0.0636,-1.7028,0.764,-1.036 +0x2f71,CUS_0x7245,August,40,317-82-2638,_______,32901.79,2549.815833,980,5,1,1,Mortgage Loan,,9,5.89,0,_,734.1768218,39.54875066,26 Years and 6 Months,No,19.32408143,62.67698943,High_spent_Large_value_payments,419.789513,0,0.1624,-2.8298,-0.1843,0.6864,-1.9237 +0x2f7d,CUS_0x232d,August,48,330-34-5249,Engineer,73031.58,5912.965,7,4,6,2,"Debt Consolidation Loan, and Credit-Builder Loan",,15,,2,_,997.98,40.87394361,22 Years and 3 Months,No,63.30446282,84.37969498,High_spent_Medium_value_payments,693.6123422,0,-1.0002,2.3868,-0.0062,-0.1532,0.8827 +0x2f89,CUS_0x53e2,August,46,545-02-2729,Media_Manager,35235.18,3188.265,8,9,16.06745738,3,"Auto Loan, Student Loan, and Payday Loan",24.98242048,15,10.3,8,Bad,2612.260954,27.42304267,16 Years and 8 Months,Yes,57.68531871,229.2180326,Low_spent_Large_value_payments,275.2028607,0,-0.1717,1.7554,-1.0976,-0.6673,-0.3957 +0x2f95,CUS_0x93f5,August,45,513-95-5849,Media_Manager,66881.2,,3,5,17,2,"Payday Loan, and Home Equity Loan",25.51382434,19,,4,Standard,240.6,37.29561773,14 Years and 0 Months,Yes,56.7939601,,Low_spent_Small_value_payments,29.25362009,0,-2.5699,-1.2409,-1.2496,-0.9152,-0.363 +0x2fa1,CUS_0x458f,August,41,711-94-5541,Accountant,14535.105,,1,7,3,2,"Debt Consolidation Loan, and Credit-Builder Loan",90,3539,6.63,2,Good,65.1184642,29.53313077,25 Years and 8 Months,No,15.77502673,,Low_spent_Small_value_payments,242.251946,0,-0.5012,0.7163,1.2633,2.2789,-0.0695 +0x2fad,CUS_0xc41e,August,19,970-98-2322,Media_Manager,10119.76,,10,6,31,4,"Mortgage Loan, Not Specified, Student Loan, and Not Specified",,27.98219771,0.16,13,Bad,1556.723006,35.45632183,15 Years and 8 Months,Yes,18.93990492,,High_spent_Small_value_payments,300.6934587,0,0.6519,-1.9213,-0.851,0.4383,-0.3508 +0x2fb9,CUS_0xa77e,August,35,959-67-2735,Doctor,19787.4,,6,6,23.06745738,6,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",23.57167424,15,16.58,13,Bad,3322.980954,39.87052206,,NM,18081,,Low_spent_Small_value_payments,210.2963925,0,0.5436,1.2909,-1.6242,-1.7162,0.1971 +0x2fc5,CUS_0xbf55,August,38,293-42-1972,Journalist,16893.44,1567.786667,6,9,26.06745738,3,"Payday Loan, Mortgage Loan, and Student Loan",39.19436482,17.93239908,7.98,14,Standard,1803.27987,26.42767665,15 Years and 0 Months,Yes,32.22238767,67.30750885,Low_spent_Small_value_payments,320.5284822,0,0.43,1.2113,-0.7825,-0.3355,-0.6405 +0x2fd1,CUS_0x6bb2,August,19,462-73-7328,Lawyer,21791.905,1871.992083,2,3,8.288361749,0,Debt Consolidation Loan,0,3,1.76,1,Good,152.4227715,28.31283737,20 Years and 5 Months,No,11.55616488,488.259067,High_spent_Medium_value_payments,365.5477019,0,-0.493,-0.9964,0.6965,-0.0107,-0.5701 +0x2fdd,CUS_0x7f63,August,19,717-43-8628,Scientist,77854.26,6411.855,3,4,11,2,"Personal Loan, and Student Loan",10.34682907,11,1.3,,_,1220.31,32.96390812,22 Years and 6 Months,No,92.70772269,,Low_spent_Medium_value_payments,245.5867027,0,1.7575,1.1767,-0.0419,0.7312,-0.5458 +0x2fe9,CUS_0x3bb6,August,39,763-62-0069,Media_Manager,99802.48,8244.873333,4,3,17,4,"Mortgage Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",90,3684,5.27,0,_,248.48,39.34672057,25 Years and 11 Months,No,210.4580591,539.4644822,Low_spent_Medium_value_payments,354.5647919,0,-0.6801,-0.0064,0.049,-0.5889,-0.5279 +0x2ff5,CUS_0xbf7f,August,59,396-11-5916,Engineer,108491.28,9272.94,4,5,6,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,17,5.94,5,Standard,864.0677097,37.93563326,,No,238.4736978,194.0429534,High_spent_Large_value_payments,760.7648669,0,-0.5188,1.5692,-0.7316,2.1712,-0.8906 +0x3001,CUS_0xc5da,August,39,515-92-4820,Developer,14021.57,1145.464167,10,10,21.88954781,6,"Not Specified, Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",25.54849251,17,15.8,11,_,3889.88,33.21698211,8 Years and 11 Months,Yes,1360.562715,73.16460044,Low_spent_Medium_value_payments,266.4890195,0,-0.4674,-0.5107,0.1594,-0.8562,-0.8565 +0x300d,CUS_0xc90,August,45,240-36-3542,Musician,76391.48,,1,4,10,2,"Personal Loan, and Auto Loan",8.264354823,5,1.77,4,Good,614.83,24.81403246,24 Years and 9 Months,No,75.81024104,,Low_spent_Small_value_payments,76.49729763,0,-0.0419,-1.357,0.5593,0.4709,-1.1523 +0x3019,CUS_0x719f,August,23,380-45-5656,Architect,13486.615,,8,6,7.288361749,2,"Debt Consolidation Loan, and Payday Loan",,10,11.26,1,Good,40.86473545,28.08565964,19 Years and 0 Months,No,14.72466165,518.4179638,Low_spent_Medium_value_payments,278.0736339,0,0.8085,-1.2431,1.3133,-1.0722,-1.8347 +0x3025,CUS_0x7738,August,54,266-30-9595,Developer,15154025,2632.08,0,5,10,3,"Home Equity Loan, Home Equity Loan, and Home Equity Loan",,7,6.19,4,Good,344.4,37.08569552,27 Years and 10 Months,No,74.63775566,142.4917079,Low_spent_Small_value_payments,336.0785364,0,1.0114,-1.4774,0.5573,-1.8326,0.5737 +0x3031,CUS_0x82fa,August,18,146-30-8816,_______,35603.8,,6,6,31.06745738,100,"Auto Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Payday Loan, and Personal Loan",31.2361209,17,22.12,12,Bad,4264.850954,28.76800846,1 Years and 9 Months,Yes,2082,137.1809027,Low_spent_Large_value_payments,268.4526499,0,-0.463,0.1189,-0.6656,0.1,-0.3886 +0x303d,CUS_0x4c90,August,43,038-10-9709,Developer,32414.26,,7,5,20,2,"Credit-Builder Loan, and Mortgage Loan",22.78241646,19,15.28,5,Standard,695.61,31.58077827,,Yes,34.31805817,129.4602812,High_spent_Small_value_payments,371.140494,0,1.7336,-0.1455,-3.3541,-0.6044,-1.7781 +0x3049,CUS_0x13db,August,24,223-95-2140,Engineer,34601.35,,5,3,13.28836175,2,"Debt Consolidation Loan, and Home Equity Loan",14.54818129,,15.15,5,Standard,68.23,34.48430416,10 Years and 0 Months,Yes,30.1980497,,High_spent_Large_value_payments,448.3042962,0,-1.2817,0.2124,-1.2385,-1.1043,0.5795 +0x3055,CUS_0x3019,August,51,346-10-4963,Writer,99007.68,,7,7,8,100,,21.69971369,17,3.08,2,_,28.12644095,39.50943271,26 Years and 10 Months,No,0,533.3520601,High_spent_Small_value_payments,618.4837914,0,1.0088,-0.5089,-0.7538,1.1058,0.7311 +0x3061,CUS_0x425,August,45,846-76-3543,Lawyer,60572.7,4844.725,3,3,20,2,"Credit-Builder Loan, and Personal Loan",24.71043169,16,9.47,13,Standard,1582.55,28.99048977,10 Years and 8 Months,Yes,88.71604214,191.0682272,High_spent_Medium_value_payments,454.6882307,0,-1.3253,-1.2893,-2.2073,-0.0315,1.163 +0x306d,CUS_0x4a3f,August,46,618-70-2997,Media_Manager,14208.865,1365.072083,3,4,4,0,,,3,4.65,3,Good,524.4470714,26.04306004,32 Years and 8 Months,No,0,42.35410091,Low_spent_Large_value_payments,368.1604759,0,-0.3308,0.5342,-0.0293,0.5319,-0.7036 +0x3079,CUS_0x9e76,August,33,017-00-6207,Media_Manager,35836.84,2755.23154,4,6,18,3,"Auto Loan, Credit-Builder Loan, and Auto Loan",,17,3.66,4,Standard,1004.66,37.77664888,31 Years and 9 Months,No,161.0784854,41.68894876,High_spent_Medium_value_payments,443.9446926,0,1.756,-0.4312,-0.4433,0.3915,0.9239 +0x3085,CUS_0x9714,August,20,104-03-5360,Engineer,20083.06,,8,5,15,3,"Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,23.61205878,7.36,8,Bad,2716.788452,27.10140681,9 Years and 6 Months,Yes,33.81951909,30.02282939,High_spent_Medium_value_payments,371.8164849,0,1.4287,1.6278,0.2519,0.572,1.1755 +0x3091,CUS_0x6a8b,August,34,168-72-6945,Media_Manager,26150.38,2183.198333,5,7,10,4,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",17.7725509,,2.08,2,Good,316.19,37.93957225,31 Years and 0 Months,No,84.84866347,155.6960627,Low_spent_Large_value_payments,247.7751071,0,-0.4529,-0.5616,-1.3602,-0.2561,-0.3569 +0x309d,CUS_0x1739,August,42,569-88-9911,Scientist,14144.48,1206.706667,7,9,16,6,"Auto Loan, Payday Loan, Not Specified, Auto Loan, Home Equity Loan, and Payday Loan",30.1522172,21.34741826,4.93,17,Bad,2907.715076,29.74807419,,Yes,47.60616185,,Low_spent_Small_value_payments,321.2689527,0,0.2771,-0.7479,0.6817,-2.1502,-1.0364 +0x30a9,CUS_0xb90d,August,55,829-50-2241,Accountant,122008.59,,2,7,7,0,,,8,8.95,2,Good,375.592552,36.70787269,15 Years and 9 Months,NM,0,339.2124465,!@9#%8,969.7796619,0,0.6675,-0.154,2.2909,-1.3929,-1.3733 +0x30b5,CUS_0x2bfa,August,44,347-67-5972,Scientist,11956.285,,6,6,12.06745738,4,"Student Loan, Personal Loan, Auto Loan, and Auto Loan",19.15468486,12,19.75,7,Standard,1032.520954,36.87183366,17 Years and 11 Months,Yes,23.83840365,48.20028015,!@9#%8,303.9767366,0,-0.6127,-0.3517,-1.0458,1.6615,-0.6492 +0x30c1,CUS_0x6cc,August,39,948-41-6796,Lawyer,20949.58,1963.798333,4,5,8,1,Debt Consolidation Loan,22.70949379,15,16.25,6,Standard,486.48,27.63047123,19 Years and 4 Months,Yes,11.74975194,89.73066705,High_spent_Small_value_payments,354.8994143,0,-1.1133,0.6493,-0.8375,-1.2232,0.7287 +0x30cd,CUS_0xac81,August,34,211-79-7436,Mechanic,18096.155,,3,6,17.28836175,2,"Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",21.50694393,19,6.83,8,_,162.21,24.63737119,,Yes,34.09269976,456.2157274,Low_spent_Large_value_payments,333.4303255,0,-1.6298,-0.188,-0.355,0.4656,0.5298 +0x30d9,CUS_0x7a10,August,30,718-83-1207,Mechanic,37788.3,3097.025,3,4,9,2,"Debt Consolidation Loan, and Credit-Builder Loan",,1,1.4,8,Good,979.0726702,37.7587531,25 Years and 0 Months,No,39.65555387,112.7052807,High_spent_Medium_value_payments,423.2574976,0,0.6138,-0.3275,-0.4857,-0.5887,0.7545 +0x30e5,CUS_0xc6d8,August,34,150-35-9577,Developer,120955.92,,2,7,4,1,Not Specified,,9.464510554,5.96,8,Good,419.9020846,37.36814865,,No,57.50516925,241.9744007,High_spent_Large_value_payments,942.6864301,0,0.4058,-0.2406,0.2844,-0.1773,-0.3303 +0x30f1,CUS_0x5e52,August,20,960-03-0916,_______,27983.07,2497.9225,4,7,2,2,"Credit-Builder Loan, and Mortgage Loan",16.11750191,15,-1.64,2,Standard,1015.21,29.79949702,22 Years and 3 Months,No,44.40179012,,High_spent_Small_value_payments,293.7406997,0,0.621,0.9221,0.7597,-0.7809,1.5212 +0x30fd,CUS_0x868f,August,80,012-56-7252,Entrepreneur,56987.92,4626.993333,4,5,7,100,Auto Loan,1.677031284,6,15.07,4,Good,834.4639167,27.2191872,19 Years and 5 Months,No,25.65855794,116.7935065,High_spent_Small_value_payments,595.3062319,0,-0.14,-2.8067,-0.9225,0.8067,-1.0933 +0x3109,CUS_0x23b2,August,25,375-23-9321,Media_Manager,50552.34,4197.695,8,7,17,1,Home Equity Loan,19.64349185,12,14.42,6,_,829.97,26.56958596,32 Years and 10 Months,Yes,35.52119524,10000,Low_spent_Small_value_payments,149.431797,0,0.0498,-0.1013,1.2397,-0.2708,0.728 +0x3115,CUS_0xbd98,August,31,444-55-5653,Manager,16838.82,1398.235,10,8,19,9,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",,19,18.02,13,_,4347.3,25.86231049,1 Years and 2 Months,Yes,126.1141809,,Low_spent_Small_value_payments,192.1381411,0,-1.0839,0.8145,-0.4583,0.5918,-1.5632 +0x3121,CUS_0xd39,August,18,387-68-6000,_______,90592.02,,4,7,18,4,"Student Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",27.60105176,20,19.11,8,Standard,752.3400527,30.73950979,17 Years and 3 Months,Yes,154.432973,113.5706379,High_spent_Medium_value_payments,741.3842326,0,0.6022,-0.0893,0.2843,1.9481,-1.7589 +0x312d,CUS_0x687c,August,30,176-23-7608,Architect,29695.58,2601.631667,8,3,3,0,,15.40190743,15,7.46,3,Good,118.2822785,26.23530288,24 Years and 0 Months,No,0,53.82272918,High_spent_Large_value_payments,453.3881429,0,-0.5806,-0.9624,-0.5761,1.2235,1.3293 +0x3139,CUS_0xaf5f,August,22,512-99-1299,Scientist,85667.7,6966.975,2,412,7,0,,13.0951893,11,5.6,3,Good,1268.59759,29.69014935,21 Years and 8 Months,No,0,538.0812224,Low_spent_Large_value_payments,501.7374044,0,-0.2694,-2.4428,0.5566,-0.4173,-0.5729 +0x3145,CUS_0x17a9,August,39,034-95-8551,Musician,83386.52,7081.876667,10,6,24.06745738,7,"Student Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Payday Loan",,24,22.3,8,Bad,5195.810954,41.10251003,6 Years and 3 Months,Yes,482.1797832,126.2338047,High_spent_Large_value_payments,313.0537909,0,-0.2587,-1.6919,-0.7611,-0.8448,0.6794 +0x3151,CUS_0xb3c4,August,37,595-17-5745,Accountant,10299.565,712.2970833,5,9,28,2,"Auto Loan, and Not Specified",,19,8.5,8,Standard,1710.58,27.03331738,15 Years and 2 Months,Yes,8.72497059,69.00079643,Low_spent_Small_value_payments,283.5039413,0,0.2391,-0.6329,0.5491,0.3008,-1.8728 +0x315d,CUS_0x9b7d,August,24,635-93-9464,Lawyer,73871.92,,8,10,33.88954781,7,"Not Specified, Personal Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",19.08750546,14,10.6,15,Standard,2284.63,30.30869501,16 Years and 10 Months,Yes,2005.277873,160.0404757,High_spent_Large_value_payments,377.4021408,0,-0.0128,1.2147,0.7215,2.2764,0.7194 +0x3169,CUS_0xac51,August,23,918-69-9428,Teacher,29353.04,2282.086667,718,9,23,6,"Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",,27.78879323,6.06,10,Bad,2068.386697,23.1325988,17 Years and 10 Months,Yes,100.5391541,26.37872178,High_spent_Large_value_payments,341.2907908,0,1.9081,0.406,-0.0809,1.3767,0.4327 +0x3175,CUS_0x40de,August,80,436-89-7606,Journalist,43700.61,3574.7175,0,7,5,2,"Personal Loan, and Not Specified",,12,5.57,8,_,633.46,30.12992773,31 Years and 9 Months,NM,66.91752495,122.0920905,!@9#%8,418.4621346,0,-0.7837,-0.0625,0.233,-0.1609,-1.4525 +0x3181,CUS_0x951b,August,29,788-71-0922,Engineer,16471.35,1211.6125,3,8,21,4,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",19.75006371,17,15.77,15,Standard,1898.34,31.258252,14 Years and 0 Months,Yes,46.67344609,52.78275934,Low_spent_Small_value_payments,311.7050446,0,-0.2079,-0.3771,-1.1669,-0.0444,-0.6211 +0x318d,CUS_0xacb0,August,23,538-30-7231,Media_Manager,65187.34,5161.278333,6,6,8,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",11.13485182,9,5.38,1,Standard,441.86,38.09470621,20 Years and 6 Months,No,99.98202005,143.9847161,High_spent_Medium_value_payments,522.1610972,0,0.6461,-0.9976,-0.2932,2.211,-0.5246 +0x3199,CUS_0x472b,August,40,390-24-8662,Writer,29661.64,,6,6,11,100,"Auto Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",22.1108792,16,12.5,10,Standard,305.0571324,35.36105835,,Yes,114.1498903,67.48974357,High_spent_Large_value_payments,303.2732647,0,-0.1578,0.4463,-1.1368,0.8528,-1.5322 +0x31a5,CUS_0x7ce5,August,24,954-97-8593,Writer,101912.13,8503.6775,4,0,3.288361749,0,,0,3,4.83,2,_,136.5949421,41.59488792,20 Years and 6 Months,No,0,887.665853,!@9#%8,719.0940828,0,2.2582,-0.4409,0.1273,-1.2643,-2.1978 +0x31b1,CUS_0xa56d,August,40,299-50-2330,Architect,65454.42,5205.535,4,4,17,1,Credit-Builder Loan,,13.61528977,11.82,2,_,860.3142815,25.56665797,29 Years and 5 Months,Yes,28.01044946,273.2113291,Low_spent_Small_value_payments,509.3317214,0,-0.2878,0.7433,-2.4332,-0.1622,0.8077 +0x31bd,CUS_0xb486,August,43,567-72-5507,Mechanic,20397.26,1670.771667,4,4,7,2,"Personal Loan, and Personal Loan",14.57163756,11,11.16,8,_,2264.71,31.82433992,9 Years and 3 Months,Yes,19.38188173,49.16386057,High_spent_Small_value_payments,358.5314244,0,1.8385,0.4559,-0.3501,-0.0242,1.6019 +0x31c9,CUS_0x2a23,August,24,119-60-6278,_______,38760.82,,1,2,10.28836175,2,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",15.44764525,,6.74,4,Good,431.8239732,39.21402212,26 Years and 6 Months,No,84.51850714,843.8908151,Low_spent_Small_value_payments,167.7471962,0,-1.2608,0.2641,-0.9496,-0.4747,-0.2893 +0x31d5,CUS_0xdc0,August,38,344-18-7699,Architect,37131.02,3307.251667,5,7,7.288361749,0,Student Loan,0.182946554,4,10.3,7,Good,88,36.1922366,27 Years and 9 Months,No,16.72386795,830.7712131,Low_spent_Small_value_payments,193.1675466,0,-0.9266,0.0177,0.3658,-0.0533,1.3983 +0x31e1,CUS_0x956d,August,23,650-14-3043,Manager,140254.28,11655.85667,5,5,7,3,"Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",12.515181,12,6.7,4,Good,78.34991942,40.55517188,22 Years and 8 Months,No,210.8243793,411.3796715,!@9#%8,844.1195574,0,0.2482,-1.65,0.1048,-0.3254,-1.8118 +0x31ed,CUS_0x33b4,August,80,656-60-6101,Musician,21484.035,2073.33625,5,3,8,3,"Mortgage Loan, Personal Loan, and Mortgage Loan",21.6405208,13.04530427,1.08,9,Good,1078.219236,28.03013448,26 Years and 4 Months,No,33.15526655,128.222998,Low_spent_Small_value_payments,335.9553604,0,-0.9384,1.2428,2.5139,0.4731,-0.2913 +0x31f9,CUS_0x48ed,August,23,600-60-2322,Teacher,17750.19,1327.1825,10,10,28.88954781,7,"Student Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",29.61099889,21,28.47,15,Bad,4385.27,26.68041595,11 Years and 10 Months,Yes,1379.819218,50.53179274,Low_spent_Small_value_payments,298.0371581,0,-0.7688,-0.6361,1.7854,-0.2839,0.6116 +0x3205,CUS_0x8e53,August,36,494-42-3830,Media_Manager,21145.595,,2,7,4,1,Mortgage Loan,5.422979341,8.364898962,8.14,1,_,1061.25099,36.30944091,18 Years and 5 Months,No,12.66779399,10000,High_spent_Small_value_payments,303.4479943,0,-1.0517,-0.3007,-0.9501,-1.1344,-1.2871 +0x3211,CUS_0xad44,August,21,750-13-7289,Teacher,125491.64,,1,3,4.288361749,2,"Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",4.520453634,7,2.87,4,Good,507.8736058,33.96753864,18 Years and 6 Months,No,271.7366812,543.247847,!@9#%8,909.5940154,0,0.8805,0.1298,-0.3449,1.8588,0.0105 +0x321d,CUS_0xa9b4,August,36,533-99-1412,Developer,36722.84,2820.236667,6,5,9.288361749,4,"Personal Loan, Home Equity Loan, Mortgage Loan, and Personal Loan",9.624702649,10.91365498,11.68,3,_,464.3095633,32.79629969,15 Years and 9 Months,No,60941,,Low_spent_Small_value_payments,252.4148492,0,-0.5466,1.6833,-0.1793,-2.1926,0.4943 +0x3229,CUS_0x271e,August,28,171-21-9582,Musician,15687.44,1036.286667,6,4,21,4,"Auto Loan, Auto Loan, Auto Loan, and Not Specified",21.93245572,19,18.82,8,Standard,1943.08,30.55483299,10 Years and 6 Months,Yes,41.80302281,,Low_spent_Small_value_payments,235.6529712,0,-0.1277,0.9998,-2.3124,0.7261,0.8206 +0x3235,CUS_0x80f4,August,43,564-68-7608,Lawyer,7304.925,,7,8,33.06745738,8,"Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, Student Loan, and Personal Loan",34.42487508,20.32883652,24.07,9,Bad,5200.711926,26.57399193,10 Years and 0 Months,Yes,32.44151245,30.86413218,Low_spent_Medium_value_payments,268.0484424,0,0.1102,0.407,0.3746,-0.7392,0.8777 +0x3241,CUS_0x53e9,August,24,553-74-4119,Journalist,18921.78,,6,9,29.88954781,6,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Student Loan",27.92498683,18.34975386,21.7,14,Bad,5233.114537,29.29802505,14 Years and 8 Months,Yes,1372.302996,35.16609451,High_spent_Small_value_payments,298.5823278,0,-0.6669,-0.2687,0.4951,-0.6238,1.4185 +0x324d,CUS_0x406,August,33,473-73-3353,Architect,122942.28,,2,3,2.288361749,0,Mortgage Loan,1.145099305,4,4.88,4,Good,829.818682,31.48241487,,No,101.5679765,1334.850991,Low_spent_Medium_value_payments,377.1433997,0,0.0749,-1.7013,1.0654,-0.9117,0.4823 +0x3259,CUS_0x2cb1,August,26,231-72-1828,Engineer,42021.7,3386.808333,8,7,3,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Not Specified",15.73291913,12,10.93,4,Standard,271.56,34.81017664,23 Years and 8 Months,No,109.0173385,33.9468853,High_spent_Large_value_payments,435.7166096,0,-1.1477,-1.052,-0.0847,-1.2733,-0.5075 +0x3265,CUS_0x5f36,August,18,465-96-2216,Media_Manager,85915.32,7231.61,6,7,12.28836175,4,"Credit-Builder Loan, Mortgage Loan, Payday Loan, and Payday Loan",,20,15.51,6,Standard,429.12,26.00785709,5 Years and 9 Months,Yes,167.0814715,691.0491854,High_spent_Medium_value_payments,534.9678042,0,0.8328,0.2635,0.4246,0.8241,-1.4062 +0x3271,CUS_0x9493,August,29,902-37-5242,_______,142177.84,11947.15333,5,1,12,3,"Auto Loan, Student Loan, and Home Equity Loan",8.718844361,7,2.41,2,Good,483.13,27.67720898,,No,322.87608,,High_spent_Medium_value_payments,654.2251705,0,0.9861,-1.0762,1.3285,-1.2652,-1.1109 +0x327d,CUS_0xba20,August,47,025-60-8624,Teacher,27814.63,2061.885833,3,3,12,1,Debt Consolidation Loan,21.84713858,16.4358653,8.75,6,Good,472.101077,41.0776931,20 Years and 4 Months,No,13.57281164,104.1423676,High_spent_Small_value_payments,348.4734041,0,-0.5321,-0.532,-0.5429,2.0395,1.1575 +0x3289,CUS_0xc5d5,August,34,321-64-3872,Engineer,49995.18,4382.265,8,6,22,6,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Student Loan, and Student Loan",27.83615013,21.65776439,8.54,10,Bad,2025.897398,27.00650802,18 Years and 11 Months,Yes,148.0542618,,High_spent_Small_value_payments,259.1719768,0,-0.6293,-0.2593,1.135,1.0352,1.0237 +0x3295,CUS_0x864,August,30,610-69-9615,Teacher,34480.2,,7,4,5,0,,18.02003313,11,9.85,,_,398.91,38.51524387,17 Years and 5 Months,Yes,54970,,Low_spent_Medium_value_payments,351.7615052,0,-1.8428,0.5454,0.1529,-0.8513,-0.1691 +0x32a1,CUS_0x84da,August,55,107-35-4416,Doctor,130688.56,,0,2,2,0,,5.67638814,6,4.31,5,_,430.5544808,43.52885125,16 Years and 3 Months,No,0,409.7524054,High_spent_Medium_value_payments,992.850695,0,-1.2759,-0.9032,0.5067,0.0529,0.9308 +0x32ad,CUS_0x84a2,August,30,013-64-0379,Developer,15656.82,,8,10,18,6,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",30.76003762,18.33222521,0.88,14,Bad,2207.408561,29.91640763,14 Years and 3 Months,NM,51546,,Low_spent_Small_value_payments,243.9335011,0,-0.4286,-0.6642,1.6711,-0.8064,1.5858 +0x32b9,CUS_0x7e8b,August,18,683-00-7700,Engineer,30118.94,,6,6,35.06745738,3,"Payday Loan, Mortgage Loan, and Auto Loan",,26.7164701,12.16,15,Bad,2114.149063,29.85650196,18 Years and 10 Months,Yes,44.81642047,300.5319825,Low_spent_Small_value_payments,165.3224757,0,-0.3234,-0.9493,-0.7178,-0.654,-0.0862 +0x32c5,CUS_0x1145,August,26,426-31-9194,Teacher,17975.32,,6,5,33.06745738,9,"Student Loan, Payday Loan, Not Specified, Mortgage Loan, Home Equity Loan, Payday Loan, Payday Loan, Not Specified, and Credit-Builder Loan",,29.8869812,8.9,13,Bad,1622.082517,26.70510175,12 Years and 5 Months,Yes,76.45032459,,Low_spent_Small_value_payments,154.5475107,0,0.4061,-0.2997,0.3629,0.9613,2.0732 +0x32d1,CUS_0x70ee,August,52,268-70-7008,Writer,20871.42,1522.285,2,2,2,3,"Mortgage Loan, Home Equity Loan, and Payday Loan",1.186853329,2,9.87,4,Good,1177.09,26.00265791,17 Years and 6 Months,No,51.128519,35.44881368,High_spent_Small_value_payments,325.6511673,0,0.905,0.2038,0.9113,1.4235,0.9922 +0x32dd,CUS_0x756a,August,43,547-30-4387,Writer,30257.02,,10,6,34.06745738,5,"Payday Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",,25.47490968,14.83,14,Bad,3009.424786,31.33363466,18 Years and 8 Months,Yes,78.08900531,65.90649923,High_spent_Large_value_payments,329.8260409,0,-0.2782,-0.2953,0.3094,1.6104,-0.2187 +0x32e9,CUS_0x7cd3,August,25,627-28-9742,Scientist,28406.16,,2,4,2,0,,7.159027162,5,10.23,4,_,1115.66,33.00800383,24 Years and 0 Months,No,0,136.6255559,Low_spent_Large_value_payments,370.4924441,0,1.0191,0.5579,1.5741,0.2196,-0.3367 +0x32f5,CUS_0x6926,August,43,659-41-7297,Developer,99565.36,,8,5,20,0,,8.935524048,7,24.45,6,Standard,551.66,30.79470062,23 Years and 8 Months,Yes,0,144.3432528,High_spent_Large_value_payments,933.3680805,0,0.1462,-0.1955,-3.8765,-1.1877,0.1059 +0x3301,CUS_0x57e8,August,18,132-92-0371,_______,18507.72,1761.31,8,5,31.06745738,2,"Auto Loan, and Personal Loan",43.60711428,28.63773915,7.88,12,Bad,2122.494511,29.79423282,,Yes,27.39466745,134.9859207,Low_spent_Small_value_payments,277.0301239,0,-2.4224,-1.5725,-0.1344,0.6516,0.7166 +0x330d,CUS_0x3161,August,21,226-02-8399,Lawyer,58698.08,,8,4,10,2,"Auto Loan, and Student Loan",,14,9.75,5,Good,453.31,40.79064035,15 Years and 10 Months,NM,91.962713,202.7504145,High_spent_Medium_value_payments,447.0375392,0,-1.1545,-0.4389,-1.2393,0.0637,1.8522 +0x3319,CUS_0x6b88,August,29,284-92-0654,Scientist,31461.84,,7,3,12,5,"Student Loan, Student Loan, Home Equity Loan, Student Loan, and Payday Loan",17.0478998,11,19.3,6,Standard,886.09,25.04722919,10 Years and 6 Months,Yes,68.75864919,278.3711357,Low_spent_Medium_value_payments,223.2522151,0,-1.1549,0.1455,0.1891,-0.293,0.5191 +0x3325,CUS_0x9641,August,30,618-38-7599,Manager,71677.59,5889.1325,5,6,16,0,,10.6483736,11,11.9,0,Standard,130.54,32.13054128,17 Years and 9 Months,No,0,263.7896887,Low_spent_Small_value_payments,615.1235613,0,-1.268,-0.1966,0.554,0.8391,-0.6721 +0x3331,CUS_0x48aa,August,25,884-77-6242,Architect,17856.72,1350.437372,8,6,23,6,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Home Equity Loan",,24.31376694,0.65,10,Bad,1626.607578,37.23331338,18 Years and 0 Months,Yes,165.4904011,78.21484604,Low_spent_Medium_value_payments,269.9233807,0,-1.1388,0.5525,-0.9611,1.6352,-0.628 +0x333d,CUS_0x8bdd,August,43,970-19-5512,Developer,44080.04,,5,5,10,3,"Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",9.244634335,8,4.7,5,Good,443.01,40.46739811,20 Years and 5 Months,No,193.578468,74.98291016,High_spent_Small_value_payments,452.1101846,0,0.8338,0.1241,1.5467,-0.6598,-1.772 +0x3349,CUS_0x69ea,August,20,087-42-0921,Manager,77519.04,6184.92,6,6,23,7,"Personal Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Debt Consolidation Loan",,14,16.57,6,Bad,3037.386536,37.65279832,9 Years and 0 Months,Yes,360.6812789,576.9029574,Low_spent_Medium_value_payments,36.99727345,0,-0.2755,-0.4102,-1.3083,-0.9214,0.2342 +0x3355,CUS_0x658a,August,29,260-79-8827,Manager,29281.94,2588.161667,6,7,23.06745738,8,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, and Not Specified",39.44581487,24,19.91,15,_,4655.870954,32.50329469,10 Years and 4 Months,Yes,161.9782192,10000,High_spent_Small_value_payments,155.9556842,0,-1.7583,-0.6099,0.2125,-1.1066,0.682 +0x3361,CUS_0xb786,August,35,052-60-5525,Musician,101954.94,8544.245,1,6,2.288361749,4,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",5.656644874,8.247105226,3.79,3,_,684.8057198,33.45018012,24 Years and 4 Months,No,275.8198234,1461.702889,Low_spent_Small_value_payments,,0,0.3366,0.063,-1.1216,0.6042,0.6102 +0x336d,CUS_0x7110,August,39,501-31-1895,_______,87932.96,7206.746667,4,3,3.288361749,2,"Home Equity Loan, and Not Specified",,,,3,Good,573.8954224,26.54047647,21 Years and 11 Months,No,117.4152817,495.7852997,High_spent_Large_value_payments,776.974527,0,-0.8197,0.8855,0.0142,-0.6696,0.0074 +0x3379,CUS_0xb057,August,48,046-76-3154,Scientist,31557.73,,0,5,6,2,"Student Loan, and Auto Loan",16.3895173,14.20205351,0.55,5,Good,1443.641662,35.12818916,24 Years and 3 Months,No,28.79368849,253.8655515,Low_spent_Small_value_payments,295.1218433,0,-0.5652,-0.5567,-0.696,1.2448,-1.0072 +0x3385,CUS_0x7e09,August,49,829-75-6996,_______,128390.84,10622.23667,4,4,3,3,"Auto Loan, Payday Loan, and Personal Loan",3.231184792,2.311013376,4.86,9,_,582.0995252,29.62809074,28 Years and 10 Months,NM,206.158365,184.5467865,High_spent_Medium_value_payments,921.5185151,0,-0.3118,0.7064,-0.4363,1.5148,1.1349 +0x3391,CUS_0x9e3b,August,20,477-46-8860,Writer,61887.2,5000.266667,7,4,13,4,"Not Specified, Payday Loan, Personal Loan, and Student Loan",22.37695563,17,0.89,3,Standard,1370.48,33.5339745,32 Years and 2 Months,Yes,160.191974,141.5842383,High_spent_Medium_value_payments,448.2504543,0,-0.3411,-0.7237,0.1534,0.1715,-1.0245 +0x339d,CUS_0xc3c1,August,80,512-79-2502,Musician,10320.67,,8,8,27,4,"Payday Loan, Student Loan, Home Equity Loan, and Mortgage Loan",,20,15.58,12,Standard,1759.88,36.12208621,17 Years and 3 Months,Yes,31.35390997,11.46041077,High_spent_Medium_value_payments,285.0912626,0,0.0975,-0.2281,-0.189,-0.3376,-0.1546 +0x33a9,CUS_0xc629,August,18,774-80-0114,Scientist,32594.76,2959.23,2,2,11,3,"Payday Loan, Payday Loan, and Debt Consolidation Loan",,7,,2,Good,1064.698332,39.35264178,28 Years and 9 Months,No,74.12073088,246.0687031,Low_spent_Large_value_payments,274.9294793,0,-1.2807,0.1934,-0.7737,-1.3814,-0.8612 +0x33b5,CUS_0x2e96,August,54,735-57-7317,Writer,61669.47,5190.1225,3,6,13,0,,25.01026196,18,6.94,6,Standard,1083.29,24.89982124,32 Years and 9 Months,No,0,374.6276528,Low_spent_Medium_value_payments,424.3845972,0,-0.4123,0.242,-1.2488,-0.9938,1.82 +0x33c1,CUS_0x660d,August,35,162-98-1418,Teacher,34514.51,3067.209167,4,6,9,4,"Not Specified, Mortgage Loan, Credit-Builder Loan, and Student Loan",20.13349703,11.74598682,3.25,7,Standard,951.1765053,37.16659376,18 Years and 0 Months,Yes,102.4625828,105.3213671,Low_spent_Small_value_payments,388.9369668,0,0.4663,0.8067,0.1894,-1.0869,0.6511 +0x33cd,CUS_0xaa87,August,34,357-64-9397,Scientist,85589.68,6841.473333,8,4,8,4,"Student Loan, Debt Consolidation Loan, Payday Loan, and Auto Loan",,11,4.29,4,Standard,370.2277444,27.8362524,25 Years and 5 Months,Yes,73067,459.8829663,High_spent_Small_value_payments,316.2784703,0,0.6021,-0.6167,-0.1086,0.8504,-0.4086 +0x33d9,CUS_0x8d2b,August,50,858-76-0640,Writer,21053.37,,4,4,2,2,"Payday Loan, and Not Specified",,24.39649796,1.66,1,Good,655.1418509,35.55241365,24 Years and 11 Months,No,28.38607351,98.96256098,High_spent_Small_value_payments,294.2961155,0,0.6193,0.3932,-0.0393,1.4344,1.5774 +0x33e5,CUS_0xedf,August,33,075-05-7829,Journalist,14542.1,,6,3,34.06745738,6,"Mortgage Loan, Personal Loan, Payday Loan, Not Specified, Student Loan, and Payday Loan",22.82124307,15.38756238,5.28,10,_,2432.765663,39.86445745,17 Years and 6 Months,Yes,43.98817153,,Low_spent_Small_value_payments,178.2916601,0,0.0366,1.2259,0.6547,1.5481,-0.0301 +0x33f1,CUS_0x1baf,August,41,589-48-5213,Accountant,111896.16,,8,7,17,0,,19.290307,13,9.79,10,_,978.3,36.87234981,18 Years and 8 Months,Yes,0,453.0444747,Low_spent_Medium_value_payments,784.1235253,0,-0.0362,-0.4582,1.2765,1.4113,0.2699 +0x33fd,CUS_0x1a33,August,42,883-91-5779,Developer,7064.385,393.69875,10,9,20.95700519,6,"Student Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",,24.92251139,28.9,10,Bad,4523.521879,26.84206132,13 Years and 5 Months,Yes,32445.48344,40.72103543,Low_spent_Small_value_payments,216.9152389,0,1.3887,0.733,-2.158,1.2554,-0.1216 +0x3409,CUS_0x40f,August,35,305-18-2483,Entrepreneur,72588.99,6242.0825,7,4,19,2,"Student Loan, and Home Equity Loan",,8,11.87,6,Standard,1031.21,28.29143985,22 Years and 2 Months,No,72.92831137,449.7351514,Low_spent_Large_value_payments,371.5447872,0,1.0367,-0.2288,-2.2323,1.7079,-0.3408 +0x3415,CUS_0x628b,August,26,716-20-2855,Scientist,60585.08,4977.756667,8,6,8,2,"Personal Loan, and Home Equity Loan",15.67592426,10.72839134,4.16,5,Good,505.8957817,40.72945834,24 Years and 10 Months,No,84.26082494,578.3065942,Low_spent_Small_value_payments,125.2082475,0,-0.5959,-1.3343,-0.3887,-1.1022,-0.7033 +0x3421,CUS_0x974a,August,29,372-05-2038,Musician,52949.07,4465.4225,5,3,20,2,"Payday Loan, and Not Specified",21.38906246,,9.89,7,Standard,1772.039213,28.73235063,19 Years and 9 Months,Yes,82.91462288,72.78629507,High_spent_Large_value_payments,530.8413321,0,-0.9445,-0.8662,-0.2541,0.5741,-0.0115 +0x342d,CUS_0xa0ee,August,18,581-09-3881,Journalist,15444.74,1255.061667,7,7,27,5,"Payday Loan, Payday Loan, Payday Loan, Student Loan, and Personal Loan",17.94270709,,10.93,4,Standard,2594.129292,32.83830928,7 Years and 0 Months,Yes,46.55013311,70.78522368,Low_spent_Large_value_payments,278.1708099,0,-0.1257,-0.3567,-1.4623,-1.8488,0.3061 +0x3439,CUS_0x5b02,August,55,972-58-1211,Architect,28446.58,,3,5,5,4,"Debt Consolidation Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",4.462346276,8,1.12,4,Good,558.8603329,33.58524404,27 Years and 3 Months,NM,66.06402666,72.19833346,High_spent_Large_value_payments,372.1970858,0,-1.3384,-0.1936,-0.2928,-0.6865,2.8301 +0x3445,CUS_0x7047,August,18,560-15-2864,Teacher,16532.33,1416.694167,5,6,18,7,"Auto Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Personal Loan",19.44365539,,18.01,8,Standard,2551.12,38.31451022,11 Years and 3 Months,Yes,52.68006789,24.76579994,High_spent_Medium_value_payments,314.2235488,0,0.7154,-0.7926,-2.8461,1.0399,0.8738 +0x3451,CUS_0xff3,August,55,#F%$D@*&8,Scientist,17032.785,,0,6,2,3,"Personal Loan, Mortgage Loan, and Auto Loan",5.96434028,7,6.86,5,Good,1229.08,26.91557684,,No,33.29976354,81.19585742,Low_spent_Small_value_payments,293.144254,0,2.109,-0.1686,-2.8576,-0.126,0.207 +0x345d,CUS_0x96c3,August,34,596-84-2916,Lawyer,30261.67,,3,5,5,3,"Payday Loan, Home Equity Loan, and Credit-Builder Loan",,18,6.48,4,Good,548.0308815,31.95724527,22 Years and 3 Months,NM,183.7648696,,High_spent_Medium_value_payments,387.1161013,0,-0.6145,0.7448,-1.2409,-0.4497,0.3694 +0x3469,CUS_0x2aac,August,22,439-42-5767,Journalist,35853.56,,6,4,17,6,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",,17.46683094,8.11,14,Standard,2618.106991,23.59247316,18 Years and 3 Months,Yes,101.8069266,116.7334118,Low_spent_Large_value_payments,336.7393282,0,0.6637,1.6166,0.5531,1.4621,1.0566 +0x3475,CUS_0x73a6,August,36,334-40-9481,Architect,52979.4,4366.95,10,8,26.95700519,6,"Mortgage Loan, Student Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",,17.95360627,18.53,14,Bad,3503.315492,24.54422841,8 Years and 8 Months,NM,1576.38551,,Low_spent_Medium_value_payments,191.0204989,0,0.431,-0.8285,0.0605,-0.861,0.3567 +0x3481,CUS_0x1069,August,32,761-27-5143,Accountant,58637.34,4799.445,4,6,10,119,"Personal Loan, Auto Loan, and Not Specified",18.90180451,17,12.56,5,Standard,208.8,25.23314363,30 Years and 8 Months,Yes,139.8850134,165.2106129,High_spent_Small_value_payments,434.8488737,0,0.7101,1.0903,-0.9769,-1.3581,0.0497 +0x348d,CUS_0x783f,August,31,#F%$D@*&8,Teacher,53106.54,4265.545,9,5,17,5,"Mortgage Loan, Student Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",23.6807632,17.13429835,4.61,16,Bad,5021.570514,31.67211718,14 Years and 6 Months,Yes,131.1427793,95.97279687,High_spent_Large_value_payments,439.4389239,0,-0.0443,-0.6943,0.2481,-1.8721,0.8233 +0x3499,CUS_0x61b7,August,18,319-69-5178,Manager,73085.96,,10,10,30.06745738,8,"Auto Loan, Not Specified, Home Equity Loan, Personal Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Not Specified",27.26380365,17.510086,5.06,15,Bad,4518.691364,33.98928876,1 Years and 2 Months,Yes,367.0553672,144.1512597,!@9#%8,296.8227518,0,0.9117,-0.3369,-0.3303,0.0897,2.2019 +0x34a5,CUS_0x65c0,August,53,343-78-2263,Lawyer,32029.98,,2,5,3.288361749,2,"Not Specified, Payday Loan, and Auto Loan",0.624971667,5,11.11,0,Good,396.9643834,29.49906079,,No,66.4004325,460.5932947,High_spent_Large_value_payments,397.2653359,0,1.1967,-0.4595,0.7978,2.157,-0.2058 +0x34b1,CUS_0x3d0e,August,55,149-85-8524,Doctor,71424.57,5743.0475,4,6,1,4,"Auto Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",26.34899646,21,10.35,6,_,434.9590106,27.25221806,17 Years and 4 Months,No,230.4557841,203.7137414,High_spent_Medium_value_payments,415.5243716,0,0.8992,-0.4524,0.8388,-1.2721,-0.3025 +0x34bd,CUS_0x3e37,August,26,334-58-2603,Mechanic,12985.715,1164.142917,4,3,15,1,Not Specified,,13,11.02,5,Standard,355.39,28.2044026,31 Years and 3 Months,Yes,8.733919706,69.87298303,Low_spent_Small_value_payments,327.8073889,0,-1.6444,-0.5685,1.3133,0.4514,-0.2475 +0x34c9,CUS_0x8e90,August,54,257-90-0023,Engineer,41821.27,,5,4,11,2,"Mortgage Loan, and Home Equity Loan",11.98752793,12,9.45,0,Good,791.51,32.64944975,26 Years and 0 Months,No,63.23724085,234.5076317,Low_spent_Medium_value_payments,325.2657108,0,-0.038,1.2564,1.1659,0.573,-0.0495 +0x34d5,CUS_0x4293,August,29,081-50-2290,Entrepreneur,60116.7,5091.725,6,8,19.88954781,7,"Home Equity Loan, Home Equity Loan, Student Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",21.71989149,15.44497224,19.62,11,_,2224.856642,39.33052847,12 Years and 11 Months,Yes,1541.998332,116.7483723,!@9#%8,396.0957144,0,-0.6628,-0.1718,0.7353,-0.9694,1.1096 +0x34e1,CUS_0xc30b,August,40,778-31-7461,Engineer,96562.8,7671.250734,1,1,6.288361749,4,"Personal Loan, Payday Loan, Not Specified, and Payday Loan",,12,1.16,9,Good,11.37430278,29.67701917,,No,561.2458794,,!@9#%8,133.7551448,0,1.6115,-1.2028,-1.4722,0.7785,-0.5459 +0x34ed,CUS_0x979c,August,38,632-10-1771,Engineer,18721.3,,4,5,28,3,"Personal Loan, Personal Loan, and Mortgage Loan",13.40431839,11,11.26,5,Standard,2646.59,23.627916,8 Years and 4 Months,Yes,46.5935459,30.77737958,High_spent_Small_value_payments,351.0399078,0,-2.4148,2.5187,-0.8791,-0.8788,-1.8305 +0x34f9,CUS_0x9e50,August,38,041-64-7582,Writer,31633.94,2729.161667,9,6,27.06745738,5,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,20.16231375,9.21,8,_,2417.335758,33.60564226,18 Years and 2 Months,Yes,73.63276722,,!@9#%8,342.4200905,0,-0.2142,0.5533,-0.2374,-0.8311,-2.1568 +0x3505,CUS_0x5840,August,21,035-85-5019,Mechanic,173968.96,14566.41333,4,7,0.288361749,0,Home Equity Loan,0,2,4.54,5,Good,1486.89,34.17360417,30 Years and 8 Months,No,72.75291632,908.4848794,High_spent_Medium_value_payments,1145.340999,0,1.1251,0.334,-1.3046,0.4481,0.9671 +0x3511,CUS_0x9e9e,August,46,#F%$D@*&8,Entrepreneur,33928.38,,4,7,8,5,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Home Equity Loan",31.19650387,20.37241575,18.62,9,_,178.877655,24.6474023,15 Years and 3 Months,Yes,184.0784294,68.02641492,Low_spent_Medium_value_payments,364.7859726,0,-0.1977,-0.2378,-1.4515,0.3944,-1.8537 +0x351d,CUS_0x47c0,August,40,431-54-2467,Manager,123847.04,,1,4,7,2,"Mortgage Loan, and Personal Loan",6.68860231,8,11.05,0,_,1283.959758,27.49975763,29 Years and 9 Months,No,116.7740901,,Low_spent_Small_value_payments,29.33780725,0,-1.4507,1.208,-0.6462,0.169,0.151 +0x3529,CUS_0x2b17,August,26,008-91-0413,Teacher,34447.49,,5,6,4,4,"Not Specified, Debt Consolidation Loan, Not Specified, and Payday Loan",,,8.71,5,Good,834.3831376,32.52043495,30 Years and 9 Months,No,67.23623576,92.24145985,High_spent_Medium_value_payments,371.6296587,0,-2.3685,-0.5993,0.5131,-0.1682,-0.6584 +0x3535,CUS_0x9c95,August,49,667-92-0559,Architect,83483.96,6952.996667,0,4,11,1,Not Specified,1.621875106,2,4.41,1,_,152.98,39.65541935,30 Years and 11 Months,NM,42.74236078,381.8939945,Low_spent_Small_value_payments,560.6633114,0,-0.2413,-0.5271,-1.879,0.3175,1.4333 +0x3541,CUS_0x7b72,August,43,199-56-9238,Architect,9754.75,,7,6,21,6,"Payday Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",22.93480984,16,16.11,10,Bad,4074.72,26.85888673,4 Years and 0 Months,Yes,42.73230601,,High_spent_Small_value_payments,251.0892795,0,0.976,0.4702,-0.834,0.1526,-0.08 +0x354d,CUS_0x2593,August,28,049-48-0823,Media_Manager,50173.54,4323.128333,6,4,11,3,"Debt Consolidation Loan, Payday Loan, and Mortgage Loan",25.73452084,18.59022729,4.09,5,Standard,336.0983238,26.60000386,25 Years and 8 Months,No,105.3052898,199.8817267,High_spent_Small_value_payments,387.1258168,0,0.4499,-1.2388,1.4171,-1.3891,-0.1289 +0x3559,CUS_0xb660,August,31,304-98-6409,Architect,15627.72,1027.31,6,6,16.06745738,3,"Not Specified, Home Equity Loan, and Home Equity Loan",15.19775147,10,10.06,4,Standard,1206.630954,31.5546168,32 Years and 2 Months,Yes,23.61597002,67.24114126,Low_spent_Small_value_payments,275.1536008,0,-1.2348,0.9365,-0.8687,0.2756,-0.5732 +0x3565,CUS_0xa3a9,August,39,820-03-6535,Journalist,97575.9,7850.325,7,472,14.28836175,2,"Home Equity Loan, and Home Equity Loan",16.41967238,15,2.39,6,Standard,366.88,25.36252439,22 Years and 2 Months,No,152.0602706,1193.852393,Low_spent_Medium_value_payments,139.0572975,0,-2.6275,0.3272,0.3353,0.1455,-0.6462 +0x3571,CUS_0xacc6,August,37,398-58-0171,Architect,64397.88,5240.49,7,5,11,0,,20.65851998,15,19.43,11,Standard,1001.74,26.55333736,19 Years and 5 Months,Yes,0,269.3072002,High_spent_Small_value_payments,514.7417998,0,-0.3324,0.3538,-1.2726,-0.1927,-0.481 +0x357d,CUS_0x9027,August,21,574-10-7802,Teacher,23952.07,1863.005833,6,4,316,0,,15.01666482,13,9.5,3,Standard,1045.08,31.70541657,,Yes,0,80.41798444,High_spent_Small_value_payments,365.8825989,0,-1.2157,-1.5238,0.9256,-0.4316,-0.2592 +0x3589,CUS_0x5c28,August,29,770-33-0635,Doctor,105565.65,8643.1375,1,3,10.28836175,0,Not Specified,3.592674372,5,7.2,6,_,440.91,33.87612099,27 Years and 9 Months,NM,49.60886879,1026.0968,Low_spent_Large_value_payments,478.545542,0,0.707,0.9298,0.5065,0.2838,0.6747 +0x3595,CUS_0x2a03,August,27,620-62-0897,Journalist,145934.16,12446.18,0,5,3,1,Personal Loan,5.46135001,3,9.42,3,_,1334.34,25.46101313,17 Years and 4 Months,No,113.5160296,1388.950403,Low_spent_Small_value_payments,32.1515676,0,0.3128,-0.003,-0.8378,-0.1252,-1.0945 +0x35a1,CUS_0xbaa9,August,25,334-44-6939,Musician,68171.55,5489.9625,6,3,4,1,Mortgage Loan,15.15933361,11,9.2,2,Standard,1049.75,33.86379999,22 Years and 0 Months,No,49.23388829,287.5802054,!@9#%8,492.1821564,0,0.7613,-1.9627,2.1672,1.6464,0.5164 +0x35ad,CUS_0x7c21,August,30,412-34-8666,Media_Manager,9599.265,618.93875,3,9,21,5,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Auto Loan",34.42269084,25.60348854,18.02,12,Standard,2123.302603,35.91335981,12 Years and 9 Months,NM,29.10631141,30.97979034,Low_spent_Small_value_payments,291.8077732,0,0.6328,-0.0622,-0.8801,-2.3623,-2.6727 +0x35b9,CUS_0x78bf,August,41,902-32-7521,Accountant,61796.92,5318.743333,9,9,29.06745738,9,"Auto Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Personal Loan",32.74113364,21.7740638,,10,Bad,3718.320519,23.93400942,,Yes,334.4616622,,Low_spent_Small_value_payments,132.6243732,0,-1.7678,0.2457,-1.1957,1.2398,-0.9317 +0x35c5,CUS_0x804,August,43,857-32-0525,Media_Manager,20133.61,1671.800833,8,7,18,6,"Auto Loan, Not Specified, Not Specified, Credit-Builder Loan, Student Loan, and Not Specified",,18,8.1,7,Standard,1265.65,32.79560119,13 Years and 5 Months,Yes,54.97308367,225.3027132,Low_spent_Small_value_payments,176.9042864,0,1.2002,-0.009,0.6433,-0.8752,0.3496 +0x35d1,CUS_0xa445,August,41,075-29-9342,Journalist,8406.375,,9,5,26.06745738,100,"Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Not Specified, Mortgage Loan, Payday Loan, and Credit-Builder Loan",35.06886764,20,5.8,11,Bad,2076.580954,37.52805806,17 Years and 8 Months,Yes,44.00521092,63.53224812,Low_spent_Large_value_payments,230.195378,0,0.9612,-0.0986,-0.1925,2.0963,0.6851 +0x35dd,CUS_0xd51,August,24,619-18-6998,Journalist,71368.6,5844.383333,6,3,6,0,,,12,10.88,11,_,1022.012651,40.3434571,28 Years and 2 Months,Yes,0,147.8443181,High_spent_Medium_value_payments,703.4954509,0,-0.2495,0.8463,-1.7521,0.069,-1.013 +0x35e9,CUS_0x133f,August,30,630-81-5640,Manager,100914.39,8546.5325,5,5,16,5,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",,9,19.35,4,Standard,1410.49,39.91276191,8 Years and 9 Months,Yes,242.966043,245.3428988,High_spent_Medium_value_payments,616.3443082,0,-0.937,1.2692,1.4147,-0.3438,0.4497 +0x35f5,CUS_0x672e,August,28,244-12-1541,Lawyer,99903.36,8442.28,8,6,8,0,,12.05243163,11,9.14,7,Good,29.6,26.17767376,16 Years and 2 Months,No,26202,638.961456,Low_spent_Small_value_payments,495.266544,0,-0.8827,0.0405,0.7758,0.6319,0.0963 +0x3601,CUS_0x549d,August,41,828-71-0914,_______,119827.08,9834.59,8,3,5,3,"Student Loan, Student Loan, and Home Equity Loan",23.76622912,17,9.05,1,Standard,1003.89,29.03559924,23 Years and 10 Months,Yes,256.7044741,243.0216708,High_spent_Large_value_payments,723.7328551,0,-1.5939,0.8799,-0.1726,0.8296,-1.7582 +0x360d,CUS_0x77ac,August,33,453-25-4571,Musician,39232.16,3331.346667,5,7,1,0,,17.46017961,13.53343735,5.32,5,Good,547.6769493,39.71593612,26 Years and 11 Months,No,0,,High_spent_Medium_value_payments,476.5770131,0,-0.9015,0.7318,-0.7113,0.6067,-0.4089 +0x3619,CUS_0x92d5,August,36,829-49-1325,Doctor,19590.31,,3,7,14,2,"Home Equity Loan, and Payday Loan",11.85632508,11,18.24,4,Standard,1131.45,25.53849708,19 Years and 2 Months,NM,31.47494934,73.72688224,!@9#%8,325.6507518,0,-0.3911,-0.7157,-0.2745,-0.043,2.9195 +0x3625,CUS_0x95ca,August,55,604-74-3261,Accountant,83503.12,7052.593333,1,4,1,2,"Personal Loan, and Credit-Builder Loan",12.69123514,11,,5,Good,724.5371047,37.56380564,27 Years and 11 Months,No,72.09743299,440.8845487,High_spent_Small_value_payments,512.6297004,0,-0.1779,0.4426,-1.8159,0.5497,-1.6561 +0x3631,CUS_0x800,August,56,649-53-5022,_______,143372.68,11822.72333,2,4,9.288361749,0,,5.945599244,7,4.17,0,Good,138.9189616,30.59096643,23 Years and 0 Months,No,0,687.2267841,High_spent_Large_value_payments,1195.354404,0,0.9428,0.737,-0.14,1.9718,-0.7181 +0x363d,CUS_0x8a0e,August,48,601-77-9732,Mechanic,131617.4,10742.11667,4,3,15,0,,30.38340866,23.6255266,1.82,7,Standard,1043.111047,36.84907483,22 Years and 2 Months,No,0,163.6134278,High_spent_Medium_value_payments,1160.598239,0,1.7716,-1.9465,1.0884,-1.3843,0.6089 +0x3649,CUS_0xa1f4,August,21,#F%$D@*&8,Mechanic,15054.47,1458.539167,10,9,20.88954781,6,"Auto Loan, Home Equity Loan, Student Loan, Student Loan, Personal Loan, and Student Loan",27.60671046,21,1.05,7,Bad,1539.61,29.39843573,16 Years and 2 Months,Yes,1391.747104,113.9354926,Low_spent_Large_value_payments,215.8412391,0,0.0046,1.8101,0.2495,0.6159,-0.3806 +0x3655,CUS_0xbaf4,August,50,808-03-7348,Musician,18268.61,,3,4,6,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",,14,11.05,6,Standard,393.05,31.81597586,25 Years and 10 Months,Yes,42.07877621,50.85790169,Low_spent_Large_value_payments,308.8017388,0,0.3977,-1.1586,-0.7922,0.9764,-0.9725 +0x3661,CUS_0x5d82,August,25,555-45-9905,Teacher,142152.48,,6,7,18.28836175,0,,17.50062804,15,11.91,,Standard,168.9010593,34.09547344,16 Years and 3 Months,Yes,0,,High_spent_Large_value_payments,1252.254416,0,-0.7033,0.0901,0.5223,0.5738,-0.351 +0x366d,CUS_0x34ed,August,46,909-28-8002,Journalist,20138.945,1940.245417,4,5,6,2,"Credit-Builder Loan, and Credit-Builder Loan",2.154850611,5,4.05,4,_,1084.773594,37.36379879,23 Years and 2 Months,No,23.32435439,,High_spent_Small_value_payments,368.5175815,0,0.401,-0.1004,-1.2727,0.8039,1.2766 +0x3679,CUS_0x867d,August,48,490-86-5744,Scientist,144468.72,11788.06,3,3,6.288361749,2,"Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",11.23542671,12,3.01,7,_,539.74,41.18654282,21 Years and 5 Months,No,241.3990484,758.3054139,High_spent_Medium_value_payments,849.0389987,0,-0.6321,0.8158,0.4548,-0.3762,-0.5302 +0x3685,CUS_0x9885,August,18,186-49-9679,Developer,41086.4,3660.866667,3,4,6,7,"Home Equity Loan, Not Specified, Mortgage Loan, Personal Loan, Auto Loan, Not Specified, and Student Loan",26.20030198,20,17.86,10,Standard,113.98,35.2112554,12 Years and 0 Months,Yes,145.5443202,116.5112806,!@9#%8,374.0310659,0,-0.1515,-1.713,-1.211,0.5247,-1.6123 +0x3691,CUS_0x8eb0,August,42,147-07-6385,Mechanic,41507.12,3650.926667,10,10,15.88954781,7,"Student Loan, Mortgage Loan, Auto Loan, Auto Loan, Auto Loan, Personal Loan, and Payday Loan",28.29184252,20,24.99,14,Bad,4615.79,29.88490691,5 Years and 11 Months,Yes,1507.290269,70.82348663,High_spent_Medium_value_payments,342.6488299,0,1.0609,0.4342,0.5903,-0.2244,0.3265 +0x369d,CUS_0x97a4,August,26,900-82-5231,Teacher,58942.6,5168.883333,9,6,18,6,"Home Equity Loan, Mortgage Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, and Credit-Builder Loan",,25.55906055,0.52,13,Bad,2868.088154,40.11246975,,NM,187.7035449,102.8077191,High_spent_Large_value_payments,466.3770693,0,1.9667,1.0065,-2.0061,1.1179,0.5198 +0x36a9,CUS_0xb78e,August,45,340-07-6293,Journalist,121719,10073.25,4,3,7,100,"Student Loan, and Home Equity Loan",,8.061812684,8.4,3,_,1658.338037,30.66151322,26 Years and 3 Months,NM,105.8769474,355.0193981,Low_spent_Large_value_payments,816.4286545,0,0.0688,-0.3506,-1.24,-0.2527,-1.0343 +0x36b5,CUS_0x2dfd,August,53,860-87-9053,Journalist,33815.65,,5,1,2,4,"Personal Loan, Student Loan, Mortgage Loan, and Home Equity Loan",2.117797097,3,11.61,3,Good,82.25846981,31.65449272,15 Years and 9 Months,No,112.3566884,19.43548745,!@9#%8,372.523717,0,1.3292,0.5464,1.2843,0.3165,-0.1303 +0x36c1,CUS_0xc620,August,80,114-58-5451,_______,42769.78,,4,4,15.28836175,4,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",11.4835395,11,7.58,3,_,266.1893478,35.08163824,23 Years and 6 Months,NM,40105,447.6727843,High_spent_Large_value_payments,484.8086734,0,-0.6783,2.5844,-1.0442,-1.2989,0.5454 +0x36cd,CUS_0x735c,August,42,#F%$D@*&8,Lawyer,20474.27,,6,5,16,3,"Mortgage Loan, Payday Loan, and Credit-Builder Loan",23.92861406,14.14170493,-3.01,6,Standard,1245.56237,27.85710703,17 Years and 10 Months,No,37.00176232,,High_spent_Small_value_payments,352.3196368,0,0.5227,-1.6082,1.8591,0.1494,1.035 +0x36d9,CUS_0x5c2c,August,41,703-41-8863,Mechanic,38894.06,,8,10,32.88954781,7,"Not Specified, Not Specified, Not Specified, Payday Loan, Auto Loan, Payday Loan, and Student Loan",29.39662683,22,21.29,10,Bad,3997.22,34.67116144,6 Years and 4 Months,NM,1539.079155,390.5102908,Low_spent_Small_value_payments,,0,-1.0115,-1.1276,-1.8901,0.1745,-2.073 +0x36e5,CUS_0x1fa0,August,28,765-58-3710,Lawyer,72140.07,5777.6725,6,5,3813,1,Personal Loan,14.53366404,9,19.52,5,Standard,638.12,33.24001901,,Yes,52.44882186,183.5350534,High_spent_Small_value_payments,601.7833748,0,0.2932,0.3132,0.8744,0.2539,-0.8022 +0x36f1,CUS_0x7546,August,24,865-51-0008,Entrepreneur,11866.345,984.8620833,7,7,20,1,Credit-Builder Loan,27.76421323,22,17.73,6,Standard,276.34,38.18742594,24 Years and 8 Months,Yes,8.367989378,86.74336293,Low_spent_Large_value_payments,273.374856,0,-0.823,-1.8652,1.1753,-0.5018,-0.1585 +0x36fd,CUS_0x38c4,August,41,381-41-6439,Doctor,83359.08,6767.181857,8,6,13,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",12.26303951,10,10.42,0,Standard,939.8011581,30.71304384,18 Years and 4 Months,Yes,590.5575369,284.6129553,High_spent_Medium_value_payments,535.300045,0,0.8954,-1.298,-0.2177,1.395,-0.7912 +0x3709,CUS_0xb67c,August,49,432-02-3211,Entrepreneur,3031039,3984.961667,1,4,10.28836175,2,"Debt Consolidation Loan, and Credit-Builder Loan",3.607042794,6,2.28,3,_,753.7523276,26.34970898,19 Years and 11 Months,No,48.88539432,858.8918959,Low_spent_Medium_value_payments,251.2592708,0,0.8094,-0.45,-1.1924,0.6603,0.8184 +0x3715,CUS_0x6de6,August,54,493-51-7387,Manager,12962224,,3,6,4.288361749,4,"Not Specified, Not Specified, Mortgage Loan, and Mortgage Loan",,20,5.12,4,Good,71.41182125,30.23422175,24 Years and 8 Months,No,281.0989547,634.1059538,High_spent_Medium_value_payments,618.8170023,0,0.7566,0.0451,0.53,-0.3992,-1.0094 +0x3721,CUS_0xa6c6,August,30,114-05-6534,Mechanic,52595.46,4532.955,9,7,28,6,"Payday Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Personal Loan, and Debt Consolidation Loan",,14.5508729,13.8,13,Standard,1554.261557,31.92996039,19 Years and 5 Months,Yes,244.3970313,113.8560112,High_spent_Medium_value_payments,345.0424575,0,-0.268,-0.4849,-0.714,1.3746,-2.1451 +0x372d,CUS_0xba1d,August,34,837-57-6588,Scientist,101462.64,8633.22,4,3,8,2,"Payday Loan, and Not Specified",35.07729927,24.38439637,18.84,8,Standard,275.4332751,34.71862179,15 Years and 4 Months,Yes,113.900936,,High_spent_Large_value_payments,894.2771757,0,-0.2642,-1.8381,2.7191,-0.0403,0.231 +0x3739,CUS_0x7b7a,August,20,930-29-4314,Musician,77930.28,6504.19,8,8,25.88954781,7,"Personal Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Not Specified",,22,0.64,10,Bad,1597.7,35.14309262,11 Years and 3 Months,Yes,1772.989168,95.90317009,High_spent_Medium_value_payments,337.196581,0,-0.3802,1.9489,1.8688,-0.2697,-2.7565 +0x3745,CUS_0x5718,August,34,888-84-4641,Media_Manager,15688.25,,4,7,12,2,"Personal Loan, and Credit-Builder Loan",8.624660432,10,10.34,3,_,1029.41,28.71907601,19 Years and 0 Months,Yes,21193,59.12987806,Low_spent_Small_value_payments,356.2338162,0,0.2928,0.399,1.0727,-0.7794,1.0529 +0x3751,CUS_0x9251,August,18,199-47-9137,Entrepreneur,56510.8,4543.233333,9,5,18.06745738,6,"Student Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",,19.8052811,15.78,15,Bad,3280.680465,30.61655648,11 Years and 2 Months,Yes,43684,277.5741675,High_spent_Small_value_payments,156.109419,0,0.4484,0.8299,-0.5831,-0.4113,-0.293 +0x375d,CUS_0x6a55,August,60,106-36-5469,Mechanic,42048.24,,6,4,5,2,"Auto Loan, and Personal Loan",9.936462889,8,9.54,4,_,855.1145096,29.97683143,29 Years and 5 Months,No,53.58146326,125.4084605,High_spent_Medium_value_payments,464.5735602,0,0.5564,-0.785,-0.6312,-0.2641,-0.1744 +0x3769,CUS_0x541,August,25,313-45-4006,Writer,136680.12,10272.75859,0,5,2.288361749,0,Home Equity Loan,,1,4.06,0,Good,1125.825772,42.1169931,18 Years and 6 Months,No,1260.246838,694.8798208,High_spent_Medium_value_payments,1037.729003,0,-0.4301,-1.2561,1.0498,-0.0667,-1.1154 +0x3775,CUS_0x97ef,August,37,946-35-7723,Teacher,9339.455,,9,6,28,7,"Personal Loan, Not Specified, Not Specified, Personal Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",33.00610196,22,15.56,9,Bad,2637.94,29.79417852,3 Years and 9 Months,Yes,46.68586679,23.04409127,!@9#%8,272.6988336,0,0.5872,0.6817,0.3681,0.4625,0.3689 +0x3781,CUS_0x5bb7,August,47,237-77-2781,Journalist,108172.29,9230.3575,3,1,6.288361749,4,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",1.320807939,4,8.34,1,Good,485.6813509,28.95733606,26 Years and 0 Months,No,359.907681,927.2069916,High_spent_Small_value_payments,379.9658673,0,-0.2663,-2.2257,-0.6768,-0.7615,-0.0285 +0x378d,CUS_0x9bf5,August,27,781-77-4633,Manager,97003.11,,8,7,5,4,"Mortgage Loan, Not Specified, Mortgage Loan, and Payday Loan",,2503,8.11,6,Standard,802.47,25.66215513,18 Years and 8 Months,Yes,164.3558512,,Low_spent_Large_value_payments,369.6919247,0,0.0757,-0.5733,-0.4977,0.1658,0.861 +0x3799,CUS_0xddf,August,35,528-66-3364,Lawyer,18873.2,,3,1,4,4,"Debt Consolidation Loan, Not Specified, Auto Loan, and Payday Loan",,12,4.39,3,Good,1170.52,31.1857429,20 Years and 3 Months,No,32.02761974,,Low_spent_Small_value_payments,236.6379657,0,0.3351,-0.0689,-0.1291,-0.5035,1.3125 +0x37a5,CUS_0xb102,August,27,421-85-2245,Musician,38491.94,2709.896292,5,7,18,4,"Home Equity Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",10.31230754,9,7.31,6,Standard,1659.15,26.61859973,,Yes,470.77669,58.64824934,!@9#%8,429.2066021,0,1.3232,-0.0738,-0.6285,-0.6142,-0.3864 +0x37b1,CUS_0xc442,August,32,294-98-9820,Musician,75044.98,5967.748333,0,1,2,2,"Personal Loan, and Home Equity Loan",18.38176142,15,7.49,4,Good,811.0695374,27.46362279,29 Years and 0 Months,No,68.31153802,88.42322376,High_spent_Medium_value_payments,701.8250181,0,-0.3469,0.9999,1.4912,1.1269,-0.2609 +0x37bd,CUS_0x9ff4,August,47,993-92-5401,Musician,11162.02,743.1683333,8,7,18.06745738,4,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",18.67888255,10.42387079,1.61,2,Standard,1576.566115,26.40251134,24 Years and 4 Months,No,30.49913716,26.53808585,Low_spent_Large_value_payments,260.5593224,0,-0.5708,1.0957,-0.0694,0.0122,1.6694 +0x37c9,CUS_0x307b,August,39,782-04-9961,Writer,19934.08,,7,5,14,2,"Payday Loan, and Auto Loan",,22,1.71,7,Standard,311.45,34.62713912,17 Years and 10 Months,NM,24.65822343,152.6946043,!@9#%8,248.7645056,0,2.0717,-0.3248,-1.0864,0.8549,0.0829 +0x37d5,CUS_0x64a1,August,53,159-88-1119,Accountant,65912.38,5343.698333,0,4,8,0,,5.208057107,6,5.77,6,Good,268.9128045,36.41663803,16 Years and 3 Months,No,0,189.2243576,High_spent_Small_value_payments,629.3615809,0,-1.3101,0.3924,1.4713,0.5617,1.184 +0x37e1,CUS_0x1e17,August,21,912-22-4304,Media_Manager,15399.52,,4,3,18,1,Auto Loan,,17,16.03,2,Standard,556.93,22.68103951,28 Years and 5 Months,Yes,11.41861543,76.73289163,Low_spent_Large_value_payments,325.6778263,0,-0.2589,0.7983,0.2181,-1.1838,0.2044 +0x37ed,CUS_0x22b3,August,52,333-22-1926,Journalist,66174.84,5263.57,8,7,18,4,"Student Loan, Personal Loan, Not Specified, and Auto Loan",,11.52626564,11.23,4,Standard,1054.603431,39.60295461,21 Years and 0 Months,No,150.9081878,112.6233069,!@9#%8,512.8255054,0,-0.8407,0.1347,-1.1642,0.2819,-0.891 +0x37f9,CUS_0x5ee,August,35,620-05-1729,_______,9597.79,955.8158333,6,5,6,3,"Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",17.33959929,11.9465555,11.42,6,Standard,329.1377802,38.43844411,29 Years and 4 Months,Yes,23.11748686,48.4048985,High_spent_Small_value_payments,284.059198,0,0.3264,0.3922,-0.7454,-0.7866,-0.016 +0x3805,CUS_0x105b,August,29,#F%$D@*&8,Accountant,34428.21,,2,4,8,0,,15.23071,,8.51,0,_,167.3117226,35.13053991,27 Years and 6 Months,No,285.4237997,71.75528055,!@9#%8,446.370046,0,-1.0901,-0.0806,2.0997,1.4106,-0.2776 +0x3811,CUS_0x3401,August,22,603-48-6260,Engineer,15479.34,,6,9,34.06745738,100,"Personal Loan, Not Specified, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",42.03574108,28.86016806,27.12,9,Bad,3690.38315,30.85846915,1 Years and 10 Months,Yes,47.71745624,76.14522292,Low_spent_Small_value_payments,253.8115329,0,-0.6209,0.9356,-0.4238,-1.2806,0.841 +0x381d,CUS_0xb9c8,August,32,786-47-6474,Lawyer,19942.04,,8,9,21.95700519,6,"Auto Loan, Auto Loan, Payday Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",51.63105611,29.23028836,24.57,14,Bad,5404.308627,37.64626729,5 Years and 9 Months,Yes,8426.483444,105.7932168,Low_spent_Large_value_payments,206.5970092,0,0.7252,1.4226,0.6087,-0.4838,-0.3947 +0x3829,CUS_0x9d7,August,25,239-32-4942,Journalist,7912.495,,10,8,30.95700519,6,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Credit-Builder Loan",39.96240357,22.24625067,1.69,11,Standard,1925.500097,39.90091847,11 Years and 3 Months,Yes,1361.776853,53.69214335,Low_spent_Medium_value_payments,195.6180926,0,-1.6594,-0.0008,0.0492,1.071,0.9202 +0x3835,CUS_0x4b2c,August,34,993-03-5805,Entrepreneur,22488.625,1700.052083,1,3,6,1,Payday Loan,16.35474604,14,0.69,3,Good,590.85,25.75006797,16 Years and 3 Months,No,11.47860169,35.0806562,High_spent_Medium_value_payments,373.4459504,0,0.2019,0.3055,0.2356,0.7919,-0.9646 +0x3841,CUS_0x4cfd,August,37,776-43-3476,Engineer,75650.04,6134.17,10,6,15,100,"Personal Loan, Personal Loan, Home Equity Loan, Not Specified, Personal Loan, and Not Specified",30.49163322,22,28.83,8,Bad,2525.56,38.89760787,6 Years and 11 Months,Yes,327.5345711,115.0551011,High_spent_Large_value_payments,410.8273278,0,1.6871,2.5434,0.6344,1.1181,-0.465 +0x384d,CUS_0xbd85,August,18,843-90-4151,Accountant,54994.77,4353.8975,7,5,32,9,"Credit-Builder Loan, Home Equity Loan, Student Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Student Loan",,20,25.45,6,Bad,3450.16,37.20019697,6 Years and 8 Months,Yes,315.2732,103.3281235,High_spent_Medium_value_payments,266.7884265,0,0.7516,0.2558,0.9314,1.8691,1.4859 +0x3859,CUS_0x1899,August,43,694-91-8333,Writer,59908.68,5185.39,3,5,33,5,"Home Equity Loan, Not Specified, Not Specified, Payday Loan, and Credit-Builder Loan",20.73651432,14.60635962,9.07,17,Standard,2883.357663,41.79185592,14 Years and 10 Months,Yes,201.2086508,89.54876843,High_spent_Medium_value_payments,477.7815808,0,1.0098,0.4032,-0.2657,-0.7051,-1.7614 +0x3865,CUS_0x5413,August,36,148-38-7097,Manager,22250.525,,4,4,7,0,,6.139041334,4.54434014,3.1,2,Good,1563.666519,32.91344543,30 Years and 6 Months,NM,0,148.7763378,Low_spent_Small_value_payments,335.7447038,0,1.5589,-1.7365,-1.017,-0.3625,-0.1736 +0x3871,CUS_0xe21,August,47,925-98-6413,Scientist,86189.58,,5,3,12,4,"Home Equity Loan, Student Loan, Personal Loan, and Student Loan",,6.96220702,8.15,8,Good,1553.87541,37.2297992,18 Years and 6 Months,NM,154.9735327,148.9347525,High_spent_Medium_value_payments,658.8382149,0,-0.6586,-0.5734,1.3096,1.2647,0.2304 +0x387d,CUS_0xaf4a,August,49,102-64-9911,Entrepreneur,19848.365,1905.030417,5,3,1,2,"Personal Loan, and Auto Loan",,10,7.38,8,Good,1153.821722,35.53424564,33 Years and 5 Months,No,23.24702153,52.35939161,Low_spent_Large_value_payments,390.6252936,0,0.0114,1.5174,1.5247,-1.1707,0.2198 +0x3889,CUS_0xba8a,August,43,665-95-2418,Media_Manager,99902.37,,3,6,0.288361749,2,"Student Loan, and Credit-Builder Loan",2.39745563,5,10,3,Good,446.72,35.9327126,,No,97.36612204,565.8932651,High_spent_Large_value_payments,821.5978239,0,-0.7821,0.988,0.5951,0.9452,1.0056 +0x3895,CUS_0x511c,August,25,713-27-0108,Musician,15081.12,1298.76,8,7,23.06745738,4,"Auto Loan, Personal Loan, Auto Loan, and Auto Loan",29.78992102,18.0919947,19.08,15,Standard,2459.784624,26.07943427,17 Years and 2 Months,Yes,41.06589355,91.53003122,Low_spent_Small_value_payments,260.5597873,0,0.5445,-1.2192,1.0815,1.1468,-2.6915 +0x38a1,CUS_0xa0a2,August,48,044-85-4173,_______,165002.4,,4,3,8.288361749,0,Mortgage Loan,,6,6.43,3,Good,97.32053933,37.38279251,,NM,123.5813365,750.2442375,High_spent_Medium_value_payments,1214.684855,0,1.6545,-0.1757,0.3161,0.1097,1.1125 +0x38ad,CUS_0xadbe,August,36,616-05-6626,Manager,30776.8,2325.733333,6,6,26,9,"Not Specified, Home Equity Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",42.91045868,25,3.02,12,Bad,1309.32,33.47246347,15 Years and 10 Months,Yes,200.4641583,43.36154582,High_spent_Large_value_payments,228.7476292,0,0.5786,0.9869,-0.3258,0.8546,-0.7559 +0x38b9,CUS_0x5793,August,25,818-70-3452,Writer,20513.23,,6,9,23.06745738,2,"Student Loan, and Credit-Builder Loan",29.60927395,17,17.5,6,Standard,1877.270954,40.80165617,15 Years and 5 Months,NM,32.5775458,75.42823669,Low_spent_Small_value_payments,306.1175129,0,-0.0012,0.095,0.4054,0.8695,2.3763 +0x38c5,CUS_0x44f0,August,19,672-92-1249,Scientist,7046.5,355.2083333,4,6,21.06745738,5,"Credit-Builder Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",23.60532867,14.34799624,8.82,6,Standard,2161.064971,39.39084516,16 Years and 9 Months,NM,23.25041483,,Low_spent_Small_value_payments,260.460446,0,-0.1026,0.3733,0.9948,1.3753,-1.5323 +0x38d1,CUS_0x3188,August,55,731-41-2167,_______,28087.16,,3,2,11,1,Home Equity Loan,8.82116057,7,10.68,8,Good,1447.48,32.95047834,30 Years and 3 Months,No,19.58476939,105.1230622,Low_spent_Small_value_payments,416.7518351,0,0.0618,-0.7338,-1.8134,-2.1914,0.8848 +0x38dd,CUS_0x2a36,August,28,422-39-2689,Engineer,99990.78,,1,3,9,1,Personal Loan,0,3,8.87,8,_,155.2,30.26809193,16 Years and 8 Months,No,45.3044265,548.8422852,Low_spent_Large_value_payments,501.5097883,0,-0.1373,0.5715,0.699,-1.7671,-0.5135 +0x38e9,CUS_0x9f69,August,58,880-46-4570,Developer,43504.07,3767.339167,5,4,1.288361749,2,"Mortgage Loan, and Student Loan",,2,6.76,6,Good,456.4390208,32.57715248,30 Years and 8 Months,No,53.4283375,,!@9#%8,252.4049865,0,0.2148,-0.337,-1.727,-1.6031,-0.3535 +0x38f5,CUS_0x6aed,August,23,930-14-3678,_______,28110.86,2519.571667,428,8,32.88954781,8,"Student Loan, Student Loan, Credit-Builder Loan, Student Loan, Not Specified, Payday Loan, Home Equity Loan, and Student Loan",,20,28.51,12,Bad,4593.31,40.60211744,11 Years and 11 Months,Yes,1509.138629,64.12547069,High_spent_Medium_value_payments,234.3629853,0,-1.8673,0.4395,-1.0224,1.803,0.0122 +0x3901,CUS_0x79bd,August,33,419-74-7436,Accountant,21546.93,,5,6,20,1,Personal Loan,,21,11.41,2,Standard,313.06,30.04055704,,No,9.878117784,109.2138804,Low_spent_Medium_value_payments,317.0657518,0,2.1219,1.4723,0.0806,-0.4559,1.8963 +0x390d,CUS_0x697,August,18,682-66-2760,Musician,17993.4,1704.601621,7,7,27.06745738,6,"Credit-Builder Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Auto Loan, and Mortgage Loan",,24,22.15,14,_,3948.260954,27.26696751,13 Years and 9 Months,Yes,89.33381158,71.58218492,Low_spent_Small_value_payments,306.7570942,0,0.2648,1.7929,0.1781,0.0521,-2.2774 +0x3919,CUS_0xa54e,August,20,436-91-6957,Engineer,63856.48,,7,7,13,5,"Personal Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",25.93851946,19,12.05,8,Standard,1240.11,30.02393215,12 Years and 6 Months,Yes,233.2408418,281.4427928,High_spent_Small_value_payments,277.3536987,0,1.5727,-0.6243,1.2473,1.6905,0.71 +0x3925,CUS_0xb53e,August,30,175-81-0535,Media_Manager,73747.58,,3,5,7,2,"Debt Consolidation Loan, and Mortgage Loan",20.90988961,14,15.1,10,Standard,497.98,35.88073755,30 Years and 8 Months,Yes,93.2128611,344.9308069,Low_spent_Medium_value_payments,458.5194987,0,-1.2,0.8213,1.7257,0.9126,-1.2596 +0x3931,CUS_0x2811,August,38,470-38-8761,Architect,19328.71,,3,5,1.288361749,2,"Student Loan, and Credit-Builder Loan",,4,7.27,3,Good,137.7414194,29.95005606,17 Years and 3 Months,No,25.87483029,486.7309985,High_spent_Medium_value_payments,314.3073706,0,-0.5195,-0.237,0.7609,0.2111,0.1134 +0x393d,CUS_0x9e02,August,20,278-38-1974,Musician,42435.63,3657.3025,8,6,25,8,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Payday Loan, Personal Loan, Auto Loan, and Not Specified",,25,23.38,10,Bad,4656.19,34.60975389,1 Years and 5 Months,NM,281.5011494,53.63841628,High_spent_Medium_value_payments,280.5906843,0,0.9395,-0.7022,0.2094,0.4433,-1.5009 +0x3949,CUS_0xafb,August,36,027-97-5117,Accountant,16564.89,,8,5,12,6,"Personal Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",16.83522688,12,18.09,5,Standard,1246.857002,36.61523599,11 Years and 8 Months,Yes,189.7254954,,High_spent_Medium_value_payments,307.8424375,0,-2.1771,0.5631,-0.7765,-0.2875,1.1456 +0x3955,CUS_0x5300,August,20,857-13-4456,Musician,7985.155,870.4295833,6,10,32.95700519,7,"Auto Loan, Credit-Builder Loan, Student Loan, Personal Loan, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",31.25542706,16,5.2,12,Bad,2178.030954,30.01942946,13 Years and 3 Months,Yes,1369.660633,10000,High_spent_Medium_value_payments,214.6754525,0,-0.8142,1.9362,1.203,0.7493,0.444 +0x3961,CUS_0x8ab5,August,24,745-89-0277,Lawyer,81903.8,,0,3,8,0,,2.987795906,6.086108221,2.11,1,Good,759.8769276,34.54797381,18 Years and 11 Months,No,0,,Low_spent_Medium_value_payments,598.0145394,0,1.4571,0.14,-0.2378,-0.7182,-0.0791 +0x396d,CUS_0xb05a,August,50,206-93-4046,_______,92041.02,7621.085,3,7,7,0,,,11,11.45,4,Good,590.95,39.30427094,24 Years and 6 Months,No,0,242.2692548,!@9#%8,799.8392452,0,0.186,-0.8483,0.3483,0.0625,-1.0862 +0x3979,CUS_0x79b7,August,37,844-64-5104,Journalist,40514.84,3511.236667,2,5,3,3,"Auto Loan, Not Specified, and Debt Consolidation Loan",3.72915658,7,2.64,5,Good,135.1158824,25.5082058,18 Years and 3 Months,No,55.84685586,83.84744292,High_spent_Small_value_payments,481.3000494,0,0.4337,-1.7156,0.5546,1.2807,0.302 +0x3985,CUS_0xc594,August,56,#F%$D@*&8,_______,60841.98,5053.165,3,3,9,1,Mortgage Loan,3.06968878,7,3.32,7,_,1064.4,34.78524201,26 Years and 5 Months,No,30.41954036,178.0658217,High_spent_Medium_value_payments,546.8311379,0,0.5242,0.1724,1.3436,0.7405,0.3078 +0x3991,CUS_0x10ee,August,30,699-80-2426,Journalist,12660.16,,5,7,15,0,,17.47280659,15.9592234,15.1,2,Standard,504.3459498,33.46263116,25 Years and 4 Months,No,0,10000,!@9#%8,338.2549367,0,0.8764,0.2399,-1.4446,-0.811,-0.2864 +0x399d,CUS_0x2798,August,44,254-30-0873,Musician,46066.06,,1190,883,8,2,"Student Loan, and Payday Loan",20.26367756,13,16.43,5,Standard,373.75,39.88771802,25 Years and 4 Months,Yes,61.15948619,,High_spent_Medium_value_payments,484.0633567,0,0.551,-0.8814,-0.5895,0.1783,1.2222 +0x39a9,CUS_0x2847,August,49,840-37-8707,Journalist,97515.78,8066.315,5,1072,15.28836175,0,,10.23350182,10.12268994,9.15,5,Standard,176.0249217,29.69236104,,Yes,0,561.9166512,High_spent_Large_value_payments,904.6523098,0,-0.4018,0.208,-0.5906,-2.2449,-1.0398 +0x39b5,CUS_0xb9ca,August,39,559-39-3779,Accountant,69847.44,6020.62,10,8,28.88954781,6,"Auto Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",37.19766512,26,19.47,14,Bad,3413.05,34.69485052,5 Years and 5 Months,Yes,1578.755789,212.5680128,High_spent_Medium_value_payments,366.4081173,0,-0.1413,1.6822,-0.7574,1.9861,0.8568 +0x39c1,CUS_0xc02f,August,22,603-89-2856,_______,124033.96,,0,4,11.28836175,4,"Credit-Builder Loan, Student Loan, Home Equity Loan, and Payday Loan",0.930711703,3,10.9,1,Good,574.88,28.45338153,,No,264.3068223,998.2594665,Low_spent_Large_value_payments,477.3875055,0,-0.5454,-0.1762,-0.9968,0.9661,0.9064 +0x39cd,CUS_0x2b52,August,80,140-37-8162,Doctor,88778.4,7635.2,3,7,8,4,"Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",,8,4.17,8,Standard,44.85,38.64339139,26 Years and 2 Months,Yes,295.31375,234.7524496,High_spent_Medium_value_payments,483.4538005,0,0.7728,-0.8861,-1.2677,1.4195,-0.4881 +0x39d9,CUS_0xc683,August,26,246-48-2462,Writer,36901.31,,8,5,18,1,Debt Consolidation Loan,17.92517696,14,5.2,3,_,89.61841402,31.32847286,18 Years and 5 Months,NM,27.97352036,113.0867626,High_spent_Medium_value_payments,417.1149304,0,-0.6767,0.1514,-0.0777,0.4993,1.394 +0x39e5,CUS_0x45f8,August,56,137-75-8833,Musician,30594.51,,3,3,20,3,"Mortgage Loan, Payday Loan, and Debt Consolidation Loan",,23,8.57,3,_,1277.91,34.51644231,32 Years and 5 Months,NM,42011,31.04428296,High_spent_Medium_value_payments,396.990604,0,0.729,-0.012,0.5077,0.8683,-0.7389 +0x39f1,CUS_0xa872,August,32,247-23-2005,Doctor,79837.02,6414.085,2,7,10,1,Payday Loan,5.67794007,5,8.72,4,Good,585.77,25.87691288,32 Years and 10 Months,No,66.05806321,536.6481085,Low_spent_Small_value_payments,328.7023283,0,0.2831,0.8406,0.9172,-0.9335,-0.3099 +0x39fd,CUS_0xa81d,August,23,535-07-2524,Media_Manager,82093.52,6574.126667,8,5,5.288361749,4,"Payday Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",14.45488771,,3.4,1,_,825.25,36.58825751,20 Years and 3 Months,No,80080,605.5174875,High_spent_Medium_value_payments,532.998825,0,-1.6872,0.3119,0.8083,-0.9595,0.2125 +0x3a09,CUS_0x89be,August,28,625-92-0732,Engineer,38073.6,3048.8,10,6,20,5,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",34.22382902,20.3461422,10.79,9,Standard,1860.11526,31.97796183,9 Years and 10 Months,NM,143.8996853,,High_spent_Large_value_payments,377.6364054,0,0.0765,-0.5504,-0.6689,1.5486,0.7305 +0x3a15,CUS_0x382f,August,20,601-28-4815,Entrepreneur,9889.575,977.13125,10,10,17,2,"Debt Consolidation Loan, and Home Equity Loan",40.30822618,17.98439081,19.27,11,Bad,2458.274608,27.09376868,18 Years and 10 Months,Yes,12.10055193,54.61151175,Low_spent_Small_value_payments,321.0010613,0,0.2846,1.011,0.267,-1.7434,1.8201 +0x3a21,CUS_0x3435,August,19,845-16-5003,Lawyer,29840.22,2636.685,8,9,30.06745738,7,"Payday Loan, Payday Loan, Auto Loan, Not Specified, Personal Loan, Not Specified, and Personal Loan",20.60966286,,27.19,10,Bad,3298.529588,28.86888921,2 Years and 8 Months,Yes,114.6680098,,Low_spent_Medium_value_payments,297.9091894,0,-0.3907,0.2003,-0.2836,-0.148,1.102 +0x3a2d,CUS_0x3c47,August,55,#F%$D@*&8,Media_Manager,28836.92,,5,2,6,0,,,19,10.82,5,Good,1093.417417,24.13302868,27 Years and 11 Months,No,0,195.3129556,Low_spent_Large_value_payments,359.6154878,0,-1.4791,1.4372,0.246,-0.5023,-1.6941 +0x3a39,CUS_0xfe4,August,29,075-63-9119,Writer,110575.72,9009.643333,7,3,6,7,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",17.11136109,,18.53,10,Standard,788.59,39.10226184,17 Years and 9 Months,Yes,540.0722378,354.855801,High_spent_Small_value_payments,266.0362944,0,0.3211,1.0375,-1.0318,-1.3104,1.3098 +0x3a45,CUS_0x3ee8,August,26,961-11-6259,Journalist,146351.36,12267.94667,6,7,20,4,"Personal Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",21.10428912,15,8.56,5,Standard,501.57,26.78280011,19 Years and 4 Months,Yes,262.7103513,243.1142681,High_spent_Large_value_payments,960.9700472,0,-1.7487,0.563,-0.5903,-1.0984,0.6146 +0x3a51,CUS_0x6563,August,49,655-12-3066,Doctor,25877.95,1860.495833,7,3,12,1,Auto Loan,,23.23071208,13.43,0,Standard,1268.853387,31.58861017,,Yes,12.04184889,60.55489515,Low_spent_Large_value_payments,383.4528393,0,0.5997,0.4745,0.4972,-1.3358,1.1982 +0x3a5d,CUS_0x9619,August,40,038-49-9042,Doctor,86290.14,7381.845,4,3,8,3,"Payday Loan, Payday Loan, and Not Specified",8.01266426,5,4.53,,Standard,841.82,28.49216302,21 Years and 0 Months,NM,173.9475969,,Low_spent_Small_value_payments,92.1036524,0,-0.8813,1.4486,-0.185,0.9727,-0.4041 +0x3a69,CUS_0x37d2,August,51,102-42-9445,Writer,29044.29,2438.3575,5,6,12,0,,0,2,-2.31,4,Good,1078.8,29.51998056,21 Years and 0 Months,No,56524,199.6582845,Low_spent_Small_value_payments,334.1774655,0,1.963,-0.3859,0.214,1.0517,1.3704 +0x3a75,CUS_0x67e,August,21,858-07-4707,Manager,30783.88,,5,6,16,2,"Credit-Builder Loan, and Auto Loan",20.01087089,16,15.73,6,_,960.38,34.97663971,11 Years and 3 Months,Yes,35.78805542,41.0508348,High_spent_Medium_value_payments,445.3934431,0,-1.6221,-0.5802,0.7458,0.8131,1.8768 +0x3a81,CUS_0xa79d,August,45,523-24-1812,Media_Manager,18759.61,1455.300833,8,6,35.06745738,9,"Home Equity Loan, Mortgage Loan, Personal Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Not Specified",34.44472461,21.82802568,29.97,10,Bad,5683.383649,39.58818888,1 Years and 2 Months,Yes,87.18813971,129.6384044,!@9#%8,181.9832513,0,-0.3668,-0.4453,-0.1212,-0.3944,-0.7332 +0x3a8d,CUS_0xacd4,August,37,988-25-1226,Manager,20651.43,1610.9525,10,5,22,4,"Payday Loan, Payday Loan, Student Loan, and Auto Loan",31.63090116,23.33758703,7.98,12,_,2272.364197,28.11458551,13 Years and 5 Months,Yes,46.77407906,13.07994417,High_spent_Large_value_payments,341.2412268,0,0.2638,1.2652,-0.5912,-0.007,0.8087 +0x3a99,CUS_0xaea1,August,36,260-78-9839,Doctor,81497.12,6540.426667,7,6,32,6,"Home Equity Loan, Payday Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",32.36986811,18.65365036,7.8,8,Bad,3416.841151,29.6749331,0 Years and 9 Months,Yes,240.7126201,262.6879084,High_spent_Small_value_payments,410.6421382,0,-0.1585,-2.0812,0.35,-0.5463,1.2185 +0x3aa5,CUS_0x4eea,August,43,316-42-8917,Mechanic,35205.24,,3,7,6,1,Mortgage Loan,3.07314608,5,8.85,5,Good,851.4,23.63759112,17 Years and 9 Months,No,23.23542982,166.6404328,Low_spent_Small_value_payments,402.7011374,0,-0.1787,-0.5083,-1.19,1.0238,0.167 +0x3ab1,CUS_0x8c1d,August,27,916-54-9792,Lawyer,121948.8,9983.4,7,3,7,2,"Auto Loan, and Payday Loan",33.99855668,23.27139105,16.56,9,Standard,571.3611108,38.43291372,19 Years and 9 Months,Yes,193.5377259,170.4806678,High_spent_Large_value_payments,874.3216063,0,-0.0623,-0.0552,-0.1109,-2.1382,-0.9596 +0x3abd,CUS_0x36f9,August,51,992-38-5349,Developer,82065.16,6771.763333,5,86,2.288361749,2,"Not Specified, Home Equity Loan, and Auto Loan",8.875020238,10,5.55,6,Good,92.7514508,24.72681541,23 Years and 6 Months,No,180.3406067,836.9540227,Low_spent_Large_value_payments,396.2818436,0,0.2166,0.4871,1.5042,-1.7554,-0.1942 +0x3ac9,CUS_0xbfa0,August,32,363-38-1656,Engineer,39564.52,3355.541142,1,6,0.288361749,0,Mortgage Loan,0.072503265,4,1.72,8,Good,231.5970173,38.89041357,,No,176.5184288,500.3778265,High_spent_Medium_value_payments,500.8163629,0,0.2585,0.5569,-0.1623,0.4104,1.2976 +0x3ad5,CUS_0x4de7,August,25,958-58-5648,Media_Manager,86468.68,7434.723333,3,5,1,4,"Student Loan, Payday Loan, Student Loan, and Not Specified",0,0,1.69,3,Good,212.49,38.80524235,24 Years and 0 Months,No,227.2462942,391.3337632,Low_spent_Small_value_payments,414.8922758,0,1.0118,-0.2073,1.4817,0.9018,-1.0321 +0x3ae1,CUS_0x4f4d,August,47,200-59-6688,Journalist,124052.22,10290.685,2,6,2,3,"Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",,3.438367314,17.31,4,Good,357.9477259,38.85296964,22 Years and 3 Months,No,179.0755493,352.7083068,High_spent_Medium_value_payments,747.2846438,0,0.7074,0.4603,-2.459,0.1839,2.9762 +0x3aed,CUS_0xc090,August,46,773-65-0430,Scientist,45421.38,,4,10,18.06745738,2,"Debt Consolidation Loan, and Home Equity Loan",12.41754464,8,16.34,12,Standard,2856.100954,32.05474497,,Yes,49.80258503,,Low_spent_Small_value_payments,100.0359665,0,0.5391,0.555,0.0779,-0.3899,-0.4239 +0x3af9,CUS_0x74d5,August,26,432-94-4099,Lawyer,20821.8,2010.15,5,6,9,2,"Payday Loan, and Credit-Builder Loan",18.51952477,10.61983356,2.23,1992,Good,1606.535053,37.17426255,27 Years and 4 Months,No,21.18969696,,Low_spent_Small_value_payments,247.8316096,0,-0.4429,-0.6812,-0.6169,-0.8647,-0.2857 +0x3b05,CUS_0x59cf,August,34,037-17-2230,Writer,48212.8,3877.733333,7,7,18,4,"Mortgage Loan, Not Specified, Not Specified, and Mortgage Loan",22.20913994,18,8.49,6,_,1197.02,32.4584231,18 Years and 2 Months,Yes,109.7363802,157.4165383,!@9#%8,370.6204149,0,0.2581,0.0736,-0.4415,-1.1272,1.0165 +0x3b11,CUS_0x8ee3,August,21,356-40-2929,Engineer,42888.45,3654.0375,5,2,11.28836175,0,Mortgage Loan,0,3,8.44,9,Good,121.0710976,28.03130454,33 Years and 6 Months,No,26.72599658,467.6152588,High_spent_Large_value_payments,536.7052475,0,1.8078,-0.1308,-0.8493,0.5094,1.863 +0x3b1d,CUS_0x3708,August,27,433-78-1443,Writer,59304.08,,9,5,25,7,"Auto Loan, Auto Loan, Mortgage Loan, Not Specified, Payday Loan, Personal Loan, and Payday Loan",20.83671639,5.817774134,11.67,6,Standard,1866.793857,32.7178793,16 Years and 10 Months,Yes,276.2558424,10000,Low_spent_Medium_value_payments,315.1786008,0,0.2534,-0.1285,-1.4321,0.3463,-0.7531 +0x3b29,CUS_0xafda,August,38,447-90-3330,Musician,58865.88,4544.158916,9,7,25,6,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",22.6499906,14,15.67,11,Standard,1340.92,31.71196505,20 Years and 6 Months,NM,294.6765059,96.63516956,High_spent_Large_value_payments,389.2684086,0,-0.4794,0.4708,1.2048,-0.866,0.4579 +0x3b35,CUS_0xc600,August,36,433-59-0145,Media_Manager,16192.1,,10,9,31.95700519,9,"Mortgage Loan, Not Specified, Personal Loan, Mortgage Loan, Auto Loan, Not Specified, Not Specified, Payday Loan, and Auto Loan",41.33870601,21.56206305,5.63,12,Bad,2291.29445,24.35585119,8 Years and 3 Months,Yes,1388.141453,49.3167228,Low_spent_Small_value_payments,259.9256218,0,-0.5928,-0.4951,-2.4529,-0.1112,-0.9789 +0x3b41,CUS_0x9c30,August,51,868-57-3911,_______,84031.02,7021.585,5,3,1,0,,6.680752192,9,4.48,3,Good,1207.689971,39.41384074,26 Years and 0 Months,No,0,242.0870995,High_spent_Medium_value_payments,742.0926205,0,-0.9601,-0.5146,1.7209,-1.8571,-1.2645 +0x3b4d,CUS_0xb904,August,27,463-72-9086,Mechanic,46092.27,4134.0225,7,5,27,4,"Mortgage Loan, Not Specified, Not Specified, and Payday Loan",32.81765089,23.15959643,4.92,16,_,1730.366691,24.74973118,13 Years and 9 Months,Yes,114.3106707,169.1904829,High_spent_Medium_value_payments,379.9010964,0,0.7048,0.7979,0.0979,-0.5517,0.1665 +0x3b59,CUS_0x6a68,August,38,#F%$D@*&8,Teacher,69197.78,,4,4,18,7,"Home Equity Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Personal Loan",29.84595024,20,16.61,8,Standard,282.06,31.12584661,11 Years and 11 Months,NM,345.2172695,117.2410453,High_spent_Small_value_payments,350.8898518,0,0.2031,-0.8273,1.1748,-1.1383,0.1944 +0x3b65,CUS_0x45f4,August,53,522-60-2083,Writer,70741.04,5917.086667,1,5,7.288361749,0,,,3,2.85,1,_,799.89,28.0088149,33 Years and 6 Months,No,0,515.8903772,High_spent_Large_value_payments,735.7557505,0,2.5538,-1.5985,-0.0397,0.7187,1.5524 +0x3b71,CUS_0x4b9,August,20,200-47-7297,Musician,20414.37,,6,648,19.06745738,4,"Auto Loan, Home Equity Loan, Not Specified, and Auto Loan",29.2806702,18.60313199,6.66,14,Bad,1811.226658,26.49922138,6 Years and 2 Months,Yes,55.14451408,,Low_spent_Small_value_payments,319.5369075,0,-0.8184,-0.2242,-0.304,-0.4194,-1.3971 +0x3b7d,CUS_0x2657,August,50,993-35-7624,Scientist,111395.61,9041.9675,5,5,10.28836175,4,"Student Loan, Auto Loan, Payday Loan, and Mortgage Loan",,11,11.27,8,Good,939.87,40.09740786,28 Years and 10 Months,No,329.7035043,487.9384269,High_spent_Large_value_payments,746.4922798,0,-0.6902,1.2896,0.3316,0.1849,-0.7746 +0x3b89,CUS_0xc650,August,50,517-42-5927,Musician,118879.68,9641.64,5,3,15,6,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",18.07279487,17,10.06,5,_,204.8249383,25.61966325,18 Years and 0 Months,Yes,330.621437,415.3318233,High_spent_Medium_value_payments,507.014228,0,2.4177,-1.0881,0.1005,-1.4185,-0.6293 +0x3b95,CUS_0xb843,August,28,009-79-6604,Writer,29344.53,2562.3775,5,7,10,2,"Auto Loan, and Credit-Builder Loan",14.26220043,11,8.19,7,Standard,678.4739752,27.73006454,12 Years and 6 Months,Yes,24.67538997,,High_spent_Medium_value_payments,395.5224269,0,1.0649,-0.498,1.0722,-0.3408,-0.1629 +0x3ba1,CUS_0x46d,August,33,502-06-2130,Musician,17770.48,,4,5,3.288361749,2,"Home Equity Loan, and Mortgage Loan",0,3,1.02,1,Good,43.54,22.56812207,23 Years and 8 Months,No,19.47418561,535.1088848,High_spent_Small_value_payments,302.5417239,0,-0.222,0.3194,-1.2872,-0.4517,-0.265 +0x3bad,CUS_0x8e3,August,41,463-96-1251,Accountant,39460.01,,2,6,2431,4,"Personal Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",5.564429457,7,1.5,7,Good,1180.08,33.24444463,30 Years and 2 Months,No,82.4514196,23.32860467,High_spent_Large_value_payments,437.2533924,0,-1.5327,0.0077,0.4195,-0.0516,0.7989 +0x3bb9,CUS_0x1037,August,45,230-22-9583,Accountant,15989.085,,5,4,2,4,"Credit-Builder Loan, Auto Loan, Auto Loan, and Mortgage Loan",17.81487139,15,0.5,3,Good,585.3516496,40.69769935,19 Years and 9 Months,No,33.79702063,89.43614789,Low_spent_Small_value_payments,284.3801149,0,0.9449,-0.4669,0.3101,1.2757,-0.0569 +0x3bc5,CUS_0xad38,August,37,784-65-5498,Entrepreneur,54481.56,4453.13,7,6,16.06745738,7,"Mortgage Loan, Payday Loan, Payday Loan, Home Equity Loan, Auto Loan, Personal Loan, and Auto Loan",,,2,9,Bad,4422.585193,26.43503417,6 Years and 4 Months,Yes,238.7902986,162.9814673,High_spent_Medium_value_payments,266.8209462,0,0.1896,-1.6236,-0.9894,-1.5431,-1.6055 +0x3bd1,CUS_0xc490,August,41,760-30-1179,Writer,42776.51,3278.709167,4,4,3,0,,,11,1.45,2,Good,152.77,35.26971831,21 Years and 11 Months,No,0,,Low_spent_Large_value_payments,389.1038619,0,1.0015,-0.0061,1.381,2.0726,-0.7706 +0x3bdd,CUS_0x4ea9,August,41,#F%$D@*&8,Entrepreneur,36716.18,,8,7,4033,5,"Student Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,18.83281326,8.84,10,Bad,3428.472115,31.60373119,13 Years and 10 Months,Yes,94.41682533,,!@9#%8,218.4064885,0,-0.5457,-2.7227,-1.0735,2.0296,1.4404 +0x3be9,CUS_0x3644,August,18,623-91-4031,Accountant,61719.9,,7,5,20.06745738,9,"Personal Loan, Payday Loan, Home Equity Loan, Not Specified, Auto Loan, Not Specified, Student Loan, Debt Consolidation Loan, and Credit-Builder Loan",,21,26.39,13,Bad,3867.190954,25.69233864,7 Years and 0 Months,Yes,354.7672103,,High_spent_Small_value_payments,148.6053934,0,-0.9114,1.5327,-0.5588,0.0578,0.8145 +0x3bf5,CUS_0x9ae6,August,39,570-80-1811,Doctor,14293.11,1112.0925,6,9,25.06745738,6,"Payday Loan, Home Equity Loan, Not Specified, Mortgage Loan, Personal Loan, and Home Equity Loan",,23.6610285,20.61,10,Bad,4237.216101,38.68850815,13 Years and 3 Months,Yes,46.06385913,61.55270747,High_spent_Small_value_payments,236.8723955,0,0.8746,1.4657,0.172,0.7107,-0.6029 +0x3c01,CUS_0x2728,August,27,475-71-7004,Teacher,39005.96,3380.496667,10,10,17.88954781,6,"Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, and Payday Loan",29.87180763,15,15.4,205,Bad,2845.49,25.00917831,12 Years and 11 Months,Yes,1426.279235,70.93233138,High_spent_Medium_value_payments,396.508019,0,0.1174,0.0727,0.2757,0.003,0.7969 +0x3c0d,CUS_0xb513,August,38,544-88-4719,Scientist,29143.88,,8,5,14,3,"Payday Loan, Auto Loan, and Credit-Builder Loan",14.79563536,13,8.09,9,Standard,518.69,23.99869374,15 Years and 11 Months,No,45.60702455,263.8250231,!@9#%8,206.333619,0,-0.3826,1.1786,-1.1835,1.4737,-1.0275 +0x3c19,CUS_0x1f60,August,34,526-97-2287,Engineer,34266.08,3038.506667,8,9,21.88954781,6,"Payday Loan, Personal Loan, Payday Loan, Mortgage Loan, Not Specified, and Debt Consolidation Loan",14.18833004,12.04866707,10.07,7,_,2010.761217,27.51829518,11 Years and 5 Months,Yes,1485.327455,305.515721,Low_spent_Small_value_payments,108.6774099,0,1.1674,0.2738,-1.7879,-1.4358,1.1401 +0x3c25,CUS_0x6edb,August,18,264-57-9830,Journalist,46243.56,4083.63,4,5,13,0,,90,88,15.79,11,Standard,1343.538498,24.74004294,30 Years and 0 Months,Yes,0,85.48894748,High_spent_Medium_value_payments,581.6239625,0,0.3019,1.758,-2.658,0.0678,-0.6951 +0x3c31,CUS_0x5ff8,August,25,202-67-9333,Accountant,84880.65,7333.3875,5,6,14,0,,18.23837884,11,2.23,9,Standard,1344.85,29.32362057,,No,0,199.5300969,Low_spent_Medium_value_payments,813.8086531,0,-0.7969,0.1996,-1.1638,0.5643,1.8112 +0x3c3d,CUS_0x19cc,August,80,077-67-6966,Entrepreneur,77257.64,,0,4,7,2,"Credit-Builder Loan, and Not Specified",10.40761735,9,3.67,4,_,183.7813288,28.69734447,28 Years and 9 Months,No,77.9707443,188.3412005,High_spent_Small_value_payments,645.9584547,0,-0.5961,0.4736,-0.1128,-0.5985,1.8232 +0x3c49,CUS_0x68a8,August,28,517-09-6321,Entrepreneur,8227.855,656.6545833,6,8,32.95700519,7,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Personal Loan, and Not Specified",,23.50224652,14.6,9,Bad,3277.694996,26.89414069,,Yes,1351.496309,61.35377376,Low_spent_Small_value_payments,221.7650063,0,-0.9149,-1.198,-0.8463,-0.5621,-0.6302 +0x3c55,CUS_0xe36,August,29,671-45-7622,Mechanic,46264.71,,8,9,27.88954781,100,"Mortgage Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",25.20005817,12,3.34,10,Bad,3025.1,31.95657064,12 Years and 6 Months,Yes,1572.512849,,High_spent_Small_value_payments,251.3074753,0,1.5307,-0.4026,1.1962,1.1745,0.5092 +0x3c61,CUS_0x3f16,August,48,045-47-2495,Media_Manager,28942.3,,8,3,13,2,"Mortgage Loan, and Student Loan",16.12269901,,5.08,3,Standard,602.4496595,27.6662691,31 Years and 8 Months,Yes,41.83777445,85.40432099,High_spent_Medium_value_payments,354.4034409,0,-0.3836,0.0086,1.9994,0.8636,-0.3451 +0x3c6d,CUS_0x2692,August,38,358-88-9676,Accountant,20758.37,,0,5,12.06745738,4,"Home Equity Loan, Not Specified, Not Specified, and Not Specified",13.61669482,8,9.91,7,_,1551.650954,34.22732683,31 Years and 8 Months,No,53.70497001,94.37317898,Low_spent_Medium_value_payments,251.0879797,0,-0.1368,-0.6656,-1.0826,0.4417,-0.4153 +0x3c79,CUS_0x4edb,August,48,419-12-1965,Lawyer,14303.125,,555,3,20,3,"Student Loan, Debt Consolidation Loan, and Mortgage Loan",12.07234203,9,11.18,7,Standard,819.71,35.68750396,27 Years and 11 Months,No,27.74625367,125.078735,Low_spent_Small_value_payments,242.8677196,0,-0.6868,-0.3415,-0.9596,-1.0114,-0.7286 +0x3c85,CUS_0xb0e4,August,55,022-68-0160,Media_Manager,43307.12,3864.926667,0,4,11.28836175,2,"Personal Loan, Not Specified, and Payday Loan",,10,0.95,6,Good,301.82,36.12599903,24 Years and 2 Months,No,63.52164946,576.3132087,High_spent_Medium_value_payments,416.5952695,0,-0.9353,-1.236,1.4848,1.2356,-0.0122 +0x3c91,CUS_0x89ca,August,30,152-28-1148,Journalist,45002.48,3485.206667,4,7,2,1,Student Loan,,19,,1,Standard,1127.122936,35.5410268,18 Years and 4 Months,No,26.13018929,126.9896201,High_spent_Medium_value_payments,461.4719517,0,-0.3455,0.0708,-1.526,-0.7851,-2.0233 +0x3c9d,CUS_0xa090,August,36,301-85-8354,Engineer,9158.03,822.124562,7,9,27,2,"Debt Consolidation Loan, and Credit-Builder Loan",41.4061774,22,1.19,9,Bad,2495.15,25.03028053,13 Years and 5 Months,Yes,54.26316381,28.20866325,High_spent_Small_value_payments,304.8896943,0,-0.4822,-0.9222,0.6777,-0.2098,0.4233 +0x3ca9,CUS_0x37f4,August,23,871-18-4847,Engineer,69941.88,,5,5,25,7,"Personal Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Payday Loan, and Personal Loan",15.1855273,9.378841964,9.84,9,Standard,2142.917227,32.31727063,15 Years and 8 Months,NM,403.3879319,354.5502295,High_spent_Small_value_payments,69.51083861,0,1.0754,0.8825,0.4729,-0.7822,-1.2986 +0x3cb5,CUS_0x9ec9,August,24,946-36-0628,Doctor,47178.46,4126.538333,6,5,18,0,,90,3253,1.09,6,_,112.54,26.06858319,30 Years and 2 Months,NM,0,294.5143573,Low_spent_Small_value_payments,408.139476,0,-0.3757,1.0159,-1.4705,-0.5752,1.8597 +0x3cc1,CUS_0xea6,August,31,991-58-6499,Lawyer,42772.49,3664.374167,4,4,2,4,"Personal Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",11.63291148,10,1.26,6,Good,1170.0662,28.34498847,31 Years and 10 Months,No,140.9196844,,!@9#%8,91.98577992,0,-1.0211,-0.1272,-0.1154,-0.3601,-0.7425 +0x3ccd,CUS_0xae8,August,41,433-92-1005,Teacher,16716.53,,10,8,17.95700519,8,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",29.79772303,18.71799281,18.51,8,Bad,4890.837104,35.05833808,7 Years and 0 Months,Yes,1403.145818,104.5737347,!@9#%8,203.1344947,0,0.2494,0.4139,0.424,0.1071,0.3271 +0x3cd9,CUS_0x82fd,August,22,543-39-6167,Engineer,51333.99,3762.49524,8,7,20,5,"Home Equity Loan, Payday Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",40.00874531,23,0.59,2081,Bad,2457.23,34.54276675,18 Years and 4 Months,Yes,383.17489,109.7703586,High_spent_Medium_value_payments,374.5752616,0,-0.2,0.5902,1.4755,-1.1505,-0.0747 +0x3ce5,CUS_0xb761,August,39,528-98-1987,Scientist,30450.84,,6,7,8,3,"Debt Consolidation Loan, Auto Loan, and Debt Consolidation Loan",21.2536093,15,11.98,1,Standard,203.69,24.11809767,20 Years and 9 Months,No,49.39474088,44.10871223,!@9#%8,397.1535469,0,-0.7908,-0.0984,-0.5525,1.2529,-0.7491 +0x3cf1,CUS_0x6ec9,August,23,941-59-4410,Mechanic,41812.32,,9,9,34.06745738,3,"Personal Loan, Payday Loan, and Home Equity Loan",28.89501108,12.59175747,10.67,9,Standard,3066.564644,35.13623073,,Yes,68.41077216,103.7253364,High_spent_Small_value_payments,424.8796035,0,-0.6522,1.916,0.2076,0.2764,0.6088 +0x3cfd,CUS_0x3486,August,58,451-36-9674,Scientist,22116.64,,4,4,17,2,"Personal Loan, and Debt Consolidation Loan",17.33395187,16,0.91,5,Standard,973.2059589,28.86830958,22 Years and 5 Months,No,26.81451645,11081.21741,High_spent_Large_value_payments,355.4396162,0,0.451,-1.3181,-1.0777,0.8169,-0.2557 +0x3d09,CUS_0x507d,August,32,986-81-4930,Teacher,34668.59,,6,3,10,3,"Not Specified, Auto Loan, and Credit-Builder Loan",14.6884558,,8.13,7,Standard,266.1743332,27.20909503,21 Years and 5 Months,No,72.26613726,59.25402334,High_spent_Large_value_payments,431.6282174,0,1.5168,-0.941,1.047,-0.4718,0.5385 +0x3d15,CUS_0x3c96,August,28,944-78-8108,Scientist,48181.11,3888.0925,8,8,34,4,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",9.699142966,10,13.08,9,Standard,2623.14,31.3414121,6 Years and 10 Months,NM,82.03861836,33.46671899,High_spent_Large_value_payments,513.3039127,0,0.003,0.1228,-0.3471,-1.9852,2.8436 +0x3d21,CUS_0x9021,August,25,133-36-7095,Journalist,33284.76,2775.73,9,5,16.06745738,9,"Not Specified, Not Specified, Not Specified, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Mortgage Loan",,22,2.42,8,_,2600.640954,36.31641892,17 Years and 4 Months,Yes,228.2386969,229.7375547,Low_spent_Large_value_payments,62.87646043,0,-1.5237,-0.7505,-0.2524,0.7987,-0.1319 +0x3d2d,CUS_0x6ab3,August,40,816-77-1754,Teacher,106543.35,7600.080755,6,6,18.28836175,2,"Payday Loan, and Student Loan",,9,10.92,8,Standard,491.07,38.15811197,14 Years and 2 Months,Yes,1145.506206,,Low_spent_Medium_value_payments,490.0825118,0,4.0451,-0.2512,-0.956,-1.481,-1.2232 +0x3d39,CUS_0x6938,August,29,084-45-4077,Developer,116687.92,9747.993333,5,1414,11,4,"Personal Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",19.2493384,16.95242722,3.4,4,Good,1114.494261,32.55658417,21 Years and 2 Months,No,342.4945666,815.185261,Low_spent_Medium_value_payments,97.11950578,0,-0.5675,-0.339,-1.8593,1.1386,0.6652 +0x3d45,CUS_0x7f3d,August,28,233-97-3907,Engineer,17450,1582.166667,1201,3,8,3,"Personal Loan, Mortgage Loan, and Student Loan",8.539630083,8,18.57,10,Standard,1491.56,25.84459106,,Yes,38.57893012,140.4335336,Low_spent_Small_value_payments,269.204203,0,1.4458,0.1901,-0.7145,1.0286,-1.686 +0x3d51,CUS_0x72a0,August,26,#F%$D@*&8,Media_Manager,7006.52,,8,5,18.06745738,3,"Auto Loan, Debt Consolidation Loan, and Mortgage Loan",33.52272178,20,1.82,6,Bad,1586.750954,36.1350503,12 Years and 4 Months,Yes,16.98060297,13.02070212,High_spent_Large_value_payments,264.4660736,0,-0.6664,-0.6927,-0.0824,1.0018,-0.9037 +0x3d5d,CUS_0x12f2,August,25,006-09-7131,Writer,59237.96,4693.496667,10,7,18,8,"Auto Loan, Payday Loan, Payday Loan, Payday Loan, Not Specified, Mortgage Loan, Not Specified, and Not Specified",36.09037527,26.13725596,2.3,15,Bad,1812.152783,30.69496748,13 Years and 3 Months,Yes,319.1632017,64.98296235,High_spent_Large_value_payments,325.2035026,0,0.4858,-1.6305,-0.436,-1.0846,0.7759 +0x3d69,CUS_0x598d,August,49,199-80-5451,Lawyer,35208.9,,4,7,17,1,Not Specified,,8,7.88,9,_,1295.67,28.62728031,32 Years and 6 Months,Yes,17.97472812,197.0016601,Low_spent_Small_value_payments,348.9311118,0,-1.1806,0.5768,0.2351,0.192,1.0766 +0x3d75,CUS_0x5480,August,30,102-88-4366,Scientist,64493.46,5026.587584,6,7,6,2,"Payday Loan, and Not Specified",,,14.83,2,Standard,146.6432704,25.54858746,25 Years and 10 Months,NM,449.956128,121.0446725,!@9#%8,622.1895526,0,1.0293,0.3178,0.4292,0.888,-0.2868 +0x3d81,CUS_0xaf2a,August,35,103-33-1315,Musician,17654.72,,8,8,30.88954781,100,"Mortgage Loan, Payday Loan, and Payday Loan",,22.47961612,7.61,9,_,1622.591826,36.62562175,18 Years and 8 Months,Yes,1353.942161,145.3510533,Low_spent_Small_value_payments,213.6993713,0,0.3833,-0.5695,-0.9595,-0.1912,0.167 +0x3d8d,CUS_0x1437,August,46,865-46-7860,Scientist,127921.84,10899.15333,7,6,17.28836175,2,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",23.50884138,20,13.37,946,Standard,927.9121961,37.52672858,29 Years and 11 Months,Yes,226.7458196,1022.78467,Low_spent_Large_value_payments,597.6240164,0,0.9812,-1.3478,0.7363,0.2257,1.0225 +0x3d99,CUS_0x9894,August,54,#F%$D@*&8,Writer,120789.44,,5,6,8.288361749,0,,8.768565083,10,8.98,2,Standard,1015.79,37.80301388,26 Years and 10 Months,Yes,0,563.5909385,High_spent_Large_value_payments,1104.025189,0,0.3351,-0.5223,-1.2667,-0.9613,-0.2479 +0x3da5,CUS_0x907c,August,59,609-89-1800,Journalist,15048753,,2,5,10,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",10.03297626,12,9.33,3,Good,590.0781876,28.42939464,32 Years and 9 Months,No,97.75807094,,!@9#%8,174.6002117,0,-0.8086,-0.0991,0.0485,-1.569,-0.0401 +0x3db1,CUS_0x329f,August,37,435-99-9088,Journalist,34425.62,2750.801667,7,6,18,3,"Personal Loan, Student Loan, and Payday Loan",24.84823041,17,9.99,3,Standard,29.9,33.6279863,21 Years and 5 Months,No,56.78964184,,Low_spent_Small_value_payments,208.4194977,0,-1.2255,1.6688,0.8718,-0.3221,0.0579 +0x3dbd,CUS_0x82f8,August,31,020-47-1922,_______,34336.93,,7,4,8,3,"Auto Loan, Payday Loan, and Student Loan",11.847461,9,8.53,1,_,554.4531541,39.25506074,26 Years and 0 Months,No,396.4200839,250.8881223,Low_spent_Small_value_payments,274.836341,0,-0.3721,-0.1479,-0.3798,0.684,-0.8187 +0x3dc9,CUS_0xa2c0,August,46,023-14-5348,Engineer,131890.95,10709.9125,1,3,7,4,"Not Specified, Personal Loan, Mortgage Loan, and Personal Loan",,7,9.34,4,Good,244.18,38.34520129,16 Years and 4 Months,No,320.6760011,341.4914609,High_spent_Medium_value_payments,658.823788,0,0.3594,1.2268,-0.4026,-0.1973,-1.0798 +0x3dd5,CUS_0x64c0,August,18,644-67-7119,Media_Manager,9737.955,,7,10,30.06745738,4,"Payday Loan, Payday Loan, Auto Loan, and Home Equity Loan",38.03238276,17.30543701,4.28,10,Bad,2358.858541,32.75890018,10 Years and 11 Months,Yes,30.51995822,81.88212026,Low_spent_Small_value_payments,216.1272586,0,0.803,-0.7769,0.3197,-1.236,-0.6326 +0x3de1,CUS_0x43c2,August,43,104-50-6377,Lawyer,149616.12,12713.01,3,7,3,2,"Personal Loan, and Mortgage Loan",,2.358994028,3.13,1393,Good,721.7903807,30.7248902,15 Years and 11 Months,No,183.3830942,454.9945537,High_spent_Medium_value_payments,882.9233522,0,-0.5428,-0.181,0.1219,0.4606,-1.4933 +0x3ded,CUS_0x8a90,August,32,717-70-6732,Entrepreneur,69699.66,5538.305,3,6,5,1,Debt Consolidation Loan,,,8.84,3,_,485.36,40.30394642,19 Years and 9 Months,Yes,57.27662841,273.4842962,Low_spent_Medium_value_payments,503.0695754,0,-1.1004,0.3618,0.372,0.6289,-2.084 +0x3df9,CUS_0x7943,August,18,775-20-0390,Lawyer,59044.74,4875.395,8,9,34.95700519,9,"Personal Loan, Auto Loan, Not Specified, Not Specified, Credit-Builder Loan, Payday Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",24.9624551,,15.09,17,Bad,4218.649693,31.1504116,13 Years and 9 Months,Yes,1644.737828,,High_spent_Medium_value_payments,250.4556122,0,-0.0638,-0.1886,0.5984,-0.2214,0.3234 +0x3e05,CUS_0x71a,August,20,222-55-8494,Journalist,33077.82,,7,9,19.06745738,5,"Student Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,23.36709108,8.51,12,_,2036.398703,39.50581733,10 Years and 6 Months,Yes,124.2493886,108.6886819,!@9#%8,249.0901415,0,1.1303,-0.389,-1.0089,-1.3538,-0.1449 +0x3e11,CUS_0x6b15,August,30,#F%$D@*&8,Architect,88331.64,,8,5,4.288361749,0,,6.06171812,8,6.1,4,Good,791.33,28.45926313,29 Years and 10 Months,No,0,865.4675036,Low_spent_Medium_value_payments,580.8669574,0,1.7211,1.0514,0.402,0.1332,1.5615 +0x3e1d,CUS_0x1d15,August,35,721-59-8577,Architect,40206.26,3552.521667,3,3,15,1,Home Equity Loan,12.1295135,10,14.98,3,Standard,736.97,25.54330353,30 Years and 11 Months,NM,17.78734221,10000,Low_spent_Large_value_payments,300.4296736,0,0.2675,-0.3181,-0.3486,-1.8634,-0.6582 +0x3e29,CUS_0x6f31,August,46,970-95-8076,Entrepreneur,20460.96,1655.08,10,8,32.06745738,5,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,19,27.98,11,Bad,3314.844463,36.93106981,10 Years and 11 Months,Yes,57.97780814,11219.51113,High_spent_Medium_value_payments,279.9031485,0,0.4682,0.8494,-1.6747,-0.0872,0.8695 +0x3e35,CUS_0x11eb,August,80,032-85-4630,_______,62835.08,5464.256667,0,4,1,2,"Home Equity Loan, and Debt Consolidation Loan",,12,2.02,4,_,271.744814,34.58423425,33 Years and 3 Months,No,67.38407411,264.7324185,High_spent_Medium_value_payments,498.9703249,0,1.447,-0.0065,-2.7791,1.4591,-0.591 +0x3e41,CUS_0xbac7,August,18,523-63-2982,Mechanic,14628.59,,6,5,31,5,"Debt Consolidation Loan, Personal Loan, Student Loan, Personal Loan, and Auto Loan",,21,22.04,10,Bad,3299.1,37.23937616,12 Years and 4 Months,Yes,36.52054189,146.6014654,Low_spent_Small_value_payments,233.1829094,0,0.152,-1.105,0.095,0.3967,1.4902 +0x3e4d,CUS_0x89ec,August,40,535-97-5026,Lawyer,16138.98,1236.915,8,7,17.06745738,5,"Student Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",27.09502594,16.78291043,16.45,13,Standard,1640.100974,32.91078089,17 Years and 10 Months,Yes,44.32788927,24.7780194,High_spent_Medium_value_payments,277.8653034,0,-0.0339,0.9323,-0.7062,-0.5056,-1.1178 +0x3e59,CUS_0x29d2,August,40,393-54-2423,Engineer,34861.12,,7,6,4,0,,27.22807348,18,6.18,3,Good,748.76,29.18142155,,No,0,254.3124513,Low_spent_Medium_value_payments,290.096882,0,0.7092,-0.9172,-0.1934,1.6999,-1.4076 +0x3e65,CUS_0x8a56,August,36,869-67-4077,Engineer,53872.34,4565.361667,5,4,16,2,"Student Loan, and Not Specified",16.21144435,10.71012803,13.78,2,Standard,373.4257237,30.74598468,24 Years and 2 Months,Yes,82.63234144,188.3078296,High_spent_Medium_value_payments,435.5959956,0,-1.1055,0.1062,1.4684,0.7841,1.6403 +0x3e71,CUS_0xaa39,August,31,955-57-1867,Doctor,22530.69,1755.5575,5,6,5,100,,18.14650516,13,11.56,7,Standard,845.93,24.46423601,20 Years and 11 Months,Yes,0,40.396017,High_spent_Large_value_payments,375.159733,0,0.4766,1.7233,1.3478,0.9529,-0.9836 +0x3e7d,CUS_0x50af,August,49,325-47-4777,Developer,27311.97,,5,3,20,4,"Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",27.22308495,18,16.04,6,_,606.78,26.20613163,,Yes,88.73805411,93.74827604,Low_spent_Medium_value_payments,332.4134198,0,-0.2569,1.7208,0.3345,-0.5497,0.35 +0x3e89,CUS_0x9cea,August,24,462-34-2340,Accountant,19997.48,1562.456667,8,8,28.06745738,7,"Home Equity Loan, Student Loan, Home Equity Loan, Student Loan, Student Loan, Not Specified, and Debt Consolidation Loan",46.55182062,29.53654019,9.82,10,Bad,4332.545099,35.7224413,3 Years and 0 Months,Yes,94.15938052,85.63967824,High_spent_Small_value_payments,209.72632,0,-0.2887,1.35,-1.6174,-0.8026,2.0161 +0x3e95,CUS_0x88a,August,24,902-08-7981,_______,65234.24,,3,4,1,100,,,11,8.9,1,Good,39.46,28.98921694,30 Years and 2 Months,No,0,49.69952624,High_spent_Large_value_payments,733.6191404,0,0.4677,1.3064,0.8439,1.5209,0.4427 +0x3ea1,CUS_0x3d7e,August,36,809-41-5393,_______,68173.92,,6,10,32,5,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Payday Loan",23.07849678,,25.49,11,Bad,3117.01,24.85901264,6 Years and 6 Months,Yes,144.3743612,483.5625152,Low_spent_Small_value_payments,256.8791236,0,-0.5863,0.103,-0.691,-0.7616,0.4829 +0x3ead,CUS_0x565d,August,36,311-14-9969,Media_Manager,75672.08,6254.006667,7,5,28,6,"Payday Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",27.36110924,20,,,Bad,3881.25,36.27279176,7 Years and 5 Months,Yes,311.8847455,131.1085385,High_spent_Large_value_payments,422.4073827,0,1.9391,0.5349,0.2157,-1.2963,1.1593 +0x3eb9,CUS_0x17e3,August,30,#F%$D@*&8,Media_Manager,16579.3,1239.608333,10,7,28.06745738,8,"Mortgage Loan, Personal Loan, Student Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Student Loan",51.34636459,27.17061028,1.1,14,Bad,2279.029808,27.19873623,9 Years and 0 Months,Yes,60.48665095,61.91160319,High_spent_Small_value_payments,234.8422913,0,-0.3296,1.3118,1.514,0.0147,-0.9336 +0x3ec5,CUS_0x38bb,August,19,959-04-6330,Engineer,62956.56,,8,4,15.28836175,4,"Personal Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",7.848627667,9,9.01,10,Standard,77.34,25.84693695,5 Years and 10 Months,Yes,135.3795929,588.150133,!@9#%8,461.1457352,0,0.7998,-1.2026,-0.7507,-1.4528,-0.0216 +0x3ed1,CUS_0x3c6a,August,45,791-08-6233,Mechanic,123511.28,,8,3,15,4,"Not Specified, Personal Loan, Not Specified, and Mortgage Loan",13.16293733,11,0.8,5,Standard,1350.6,37.19578573,22 Years and 3 Months,NM,254.6043699,202.5532528,High_spent_Medium_value_payments,835.9030439,0,-2.0307,-0.3901,-0.922,-1.254,0.1226 +0x3edd,CUS_0xb54e,August,30,#F%$D@*&8,_______,16646.26,1611.188333,7,6,15,2,"Debt Consolidation Loan, and Personal Loan",,13,11.26,9,Standard,624.36,31.02291736,19 Years and 2 Months,No,14.57856681,148.011254,Low_spent_Large_value_payments,268.5290125,0,1.9441,0.7013,0.9437,0.9858,-1.184 +0x3ee9,CUS_0x7620,August,28,956-71-9457,Developer,36496.38,2934.365,8,3,30,3,"Home Equity Loan, Credit-Builder Loan, and Auto Loan",90,4566.106706,8.46,10,Standard,1527.85894,33.70921238,6 Years and 5 Months,Yes,45.81234946,118.4966051,Low_spent_Medium_value_payments,409.1275454,0,-1.6509,0.0923,-0.2943,-2.788,-0.543 +0x3ef5,CUS_0x9e13,August,26,#F%$D@*&8,Musician,146598.88,12357.57333,0,6,4.288361749,186,"Personal Loan, and Student Loan",3.754186114,5,1.97,2,_,1294.06,26.16811082,20 Years and 4 Months,No,215.1949108,10419.93746,Low_spent_Small_value_payments,,0,-0.4482,0.156,1.0111,-0.9505,0.9994 +0x3f01,CUS_0x8962,August,40,400-08-0195,Lawyer,9542.28,,6,6,14,4,"Not Specified, Not Specified, Mortgage Loan, and Mortgage Loan",12.90021853,10,7.96,11,_,322.61,34.81033855,8 Years and 0 Months,Yes,65943,84.79052461,Low_spent_Small_value_payments,249.9277764,0,-0.6827,1.1194,1.6283,0.9914,0.2853 +0x3f0d,CUS_0x44f,August,35,690-43-7279,Journalist,29369.12,,5,4,8,2,"Payday Loan, and Not Specified",22.68147191,14,10.54,11,Standard,1605.81,33.8803383,20 Years and 2 Months,NM,43.93572132,58.67927368,High_spent_Medium_value_payments,364.5276717,0,-0.7743,0.5216,-0.3983,0.5088,0.8044 +0x3f19,CUS_0x6171,August,53,584-89-4764,Musician,149168.88,12297.74,3,5,0.288361749,0,,4.501777041,6,16.65,0,_,826.3198782,28.65259088,20 Years and 2 Months,No,0,858.5294359,High_spent_Medium_value_payments,1090.560689,0,-0.3872,0.3986,-0.8393,-1.0312,0.4259 +0x3f25,CUS_0x72e9,August,48,220-24-0606,_______,58267.5,4601.625,4,3,18.28836175,0,,10.41243717,10,13.42,4,Standard,244.16,35.80992977,,NM,0,949.8191343,Low_spent_Small_value_payments,220.2808268,0,-1.1227,-1.391,1.4548,1.8392,-0.8263 +0x3f31,CUS_0x3ae9,August,34,105-31-9662,Scientist,118047.92,,2,2,0.288361749,2,"Personal Loan, Debt Consolidation Loan, and Payday Loan",0,1,4.83,7,Good,776.18,38.52104799,31 Years and 0 Months,No,223.0756746,620.1486648,High_spent_Large_value_payments,798.5457884,0,-0.2074,-0.967,-0.7933,-1.0808,0.1217 +0x3f3d,CUS_0x3949,August,41,908-89-0498,Musician,63353.68,5356.473333,9,8,15,8,"Auto Loan, Mortgage Loan, Not Specified, Not Specified, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",32.25223103,23,6.41,9,Bad,4362.52,24.14255515,1 Years and 5 Months,Yes,390.4512882,54.7851378,!@9#%8,330.4109073,0,0.1153,0.5382,0.4274,0.5099,0.2426 +0x3f49,CUS_0x3ec0,August,44,813-38-8890,Scientist,11364.87,1095.0725,6,5,5111,3,"Payday Loan, Home Equity Loan, and Personal Loan",22.9653103,17,15.77,9,Standard,1061.925558,25.89614448,9 Years and 10 Months,Yes,16.49697208,41.65950778,High_spent_Medium_value_payments,306.5159578,0,-1.2898,1.2749,-0.2522,-0.1914,-0.3406 +0x3f55,CUS_0x1be1,August,18,273-37-7817,Manager,40375.78,3121.648333,6,9,25.95700519,9,"Personal Loan, Student Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Auto Loan, Payday Loan, Mortgage Loan, and Not Specified",24.17695183,,0.61,13,Bad,4249.388511,26.02286448,12 Years and 9 Months,Yes,1504.804503,263.9817574,Low_spent_Medium_value_payments,102.3282038,0,-0.3936,-0.4129,2.3018,1.6486,-0.5265 +0x3f61,CUS_0x90b2,August,24,230-75-1260,Accountant,10277.33,,6,6,14,7,"Mortgage Loan, Student Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",20.57510644,14,13.24,8,Standard,1248.05,27.21114818,8 Years and 5 Months,Yes,47.9015337,69.30820409,Low_spent_Small_value_payments,280.0346789,0,0.8283,-0.7816,-0.9201,-0.5677,1.483 +0x3f6d,CUS_0x85d3,August,38,797-70-1368,Lawyer,31305.26,2826.771667,5,6,11,0,,30.15843989,22,8.27,1,Standard,707.33,37.47791853,,No,0,112.706837,High_spent_Medium_value_payments,419.9703296,0,-1.3384,0.1299,0.152,0.0961,-0.8958 +0x3f79,CUS_0xa5e6,August,41,086-28-6732,Lawyer,130793.12,,6,6,19.28836175,2,"Not Specified, Personal Loan, and Auto Loan",16.39365252,,8.36,10,Standard,262.6653537,34.58572446,17 Years and 3 Months,Yes,179.251209,1143.660584,High_spent_Small_value_payments,537.0216185,0,0.0434,1.9054,-0.6837,0.8169,-1.1926 +0x3f85,CUS_0xb0b7,August,32,597-34-5694,Architect,20059.775,,3,7,5,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Auto Loan",,10,10.01,2,Good,841.07,38.55247369,31 Years and 4 Months,No,46.33143453,117.8097794,!@9#%8,270.5235777,0,0.5623,0.4362,1.3277,-0.3063,-2.3439 +0x3f91,CUS_0x39d3,August,18,628-61-5123,Teacher,9387.13,866.2608333,7,7,13,6,"Mortgage Loan, Auto Loan, Mortgage Loan, Not Specified, Payday Loan, and Personal Loan",,8,12.12,6,Standard,1604.6,22.36693865,12 Years and 8 Months,Yes,41.93223397,41.71546341,Low_spent_Medium_value_payments,282.978386,0,1.0582,-0.8416,0.1016,-0.5848,0.3007 +0x3f9d,CUS_0x5eee,August,41,447-71-5555,Architect,35873.36,2922.446667,9,5,19.06745738,3,"Not Specified, Home Equity Loan, and Student Loan",,14.42226493,4.38,11,Bad,2769.882609,40.34435032,19 Years and 0 Months,Yes,77.42019571,90.48592025,High_spent_Medium_value_payments,347.6182628,0,-1.3749,-1.2747,-0.9867,0.3515,-1.5699 +0x3fa9,CUS_0x8628,August,56,718-22-9642,Architect,165774.56,13560.54667,0,7,11.28836175,2,"Debt Consolidation Loan, and Payday Loan",0,3,-4.41,5,Good,1171.5,34.87876881,16 Years and 2 Months,No,255.824163,1800.253644,Low_spent_Medium_value_payments,,0,0.3239,0.2761,0.9054,0.0753,0.2914 +0x3fb5,CUS_0x908,August,30,081-45-4206,Writer,19212.79,,6,8,19.06745738,4,"Credit-Builder Loan, Mortgage Loan, Student Loan, and Not Specified",13.20410124,7.99692965,7.12,16,Standard,2219.366583,28.62793574,17 Years and 2 Months,Yes,48.50360251,76.67940086,High_spent_Small_value_payments,289.803292,0,-0.5987,1.6358,-0.1292,-0.3262,-1.1956 +0x3fc1,CUS_0x4523,August,39,527-08-5621,Scientist,16322.12,,9,5,18.06745738,7,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, Auto Loan, and Mortgage Loan",46.23369951,23.96081985,4.4,10,_,4219.324485,40.81079952,4 Years and 3 Months,Yes,74.45421477,44.8474787,!@9#%8,290.3956852,0,0.8097,-0.4034,-0.9854,-0.6877,0.0133 +0x3fcd,CUS_0x87ba,August,36,446-33-3005,Entrepreneur,62932.48,5437.373333,6,10,23,4,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,19.39479539,19.12,13,Standard,2638.858646,25.08133654,,NM,34405,,High_spent_Small_value_payments,300.1108962,0,-0.7109,-1.1186,2.2723,-0.8558,-0.2653 +0x3fd9,CUS_0xb8b6,August,45,988-47-8072,Engineer,72322.52,5982.876667,8,5,20,7,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Not Specified, Not Specified, Not Specified, and Mortgage Loan",30.82274157,22,12.21,10,Bad,1872.04,28.33452859,17 Years and 0 Months,NM,407.5074746,,Low_spent_Medium_value_payments,149.0999705,0,1.2456,0.0101,-0.4935,-0.7304,-0.1806 +0x3fe5,CUS_0xb956,August,80,463-27-1350,Mechanic,139538.32,11455.19333,2,5,8,4,"Credit-Builder Loan, Payday Loan, Auto Loan, and Auto Loan",,15,10.56,7,Good,632.80613,27.24964056,22 Years and 10 Months,NM,255.0972606,,High_spent_Small_value_payments,444.4076868,0,1.0301,-2.2715,-0.1763,0.8954,-0.5561 +0x3ff1,CUS_0x7a11,August,41,000-86-6182,Doctor,45238.04,,7,6,7,7,"Student Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",11.33268661,9,9.25,13,Standard,918.6948265,34.86320593,9 Years and 10 Months,Yes,147.6953289,,!@9#%8,97.08821706,0,2.4701,-0.1012,0.5331,0.1573,-0.2811 +0x3ffd,CUS_0x4017,August,36,583-89-9945,Teacher,133377.21,11114.7675,0,5,5,2,"Student Loan, and Student Loan",1.38873091,5.792985443,8.16,3,Good,1247.575798,41.35716103,22 Years and 9 Months,No,171.9485432,407.7432835,Low_spent_Medium_value_payments,811.7849233,0,0.8037,-0.4874,-1.7463,-2.8216,0.7848 +0x4009,CUS_0xa778,August,34,107-21-6904,Journalist,17791.55,1587.629167,10,6,34,8,"Not Specified, Personal Loan, Not Specified, Student Loan, Mortgage Loan, Not Specified, Student Loan, and Student Loan",30.24736062,18.18506069,9.12,11,Bad,1907.61202,33.41207811,11 Years and 5 Months,Yes,116.5271836,,High_spent_Medium_value_payments,237.7393995,0,-1.3664,-0.1224,0.5173,1.697,0.2172 +0x4015,CUS_0x576c,August,32,981-59-1781,Engineer,41655.16,,3,4,5,2,"Auto Loan, and Personal Loan",37.03518222,23.88522435,5.72,4,Standard,1396.028687,33.03944546,29 Years and 6 Months,No,66.91250934,243.8892188,Low_spent_Small_value_payments,353.5246052,0,0.6773,0.4763,-0.1147,-1.34,1.0422 +0x4021,CUS_0x4e30,August,40,777-29-7296,Lawyer,20380.865,,0,1,0.288361749,2,"Not Specified, and Mortgage Loan",,0,6.75,1,Good,139.7071442,30.98937642,21 Years and 3 Months,No,24.37368427,475.6075134,High_spent_Small_value_payments,353.5813916,0,0.7168,0.6914,0.4642,-0.7439,-0.6371 +0x402d,CUS_0x46de,August,25,046-57-2177,Accountant,36753.32,3164.776667,9,10,32,4,"Home Equity Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",22.19545862,15.78778552,16.72,6,Standard,2393.937207,28.49702687,9 Years and 10 Months,Yes,117.8517781,,Low_spent_Small_value_payments,212.1967179,0,-1.1788,0.206,0.6712,-1.0696,-0.5728 +0x4039,CUS_0x5756,August,46,707-41-4090,Developer,75602.28,6185.19,8,3,1,4,"Home Equity Loan, Student Loan, Not Specified, and Student Loan",,16,9.07,1,Good,875.7991024,40.73821391,20 Years and 0 Months,No,244.8885002,151.6932609,High_spent_Large_value_payments,476.4331938,0,-1.6863,0.8502,0.3192,-0.5989,-0.5004 +0x4045,CUS_0x47bc,August,52,176-01-8718,Lawyer,41113.35,3325.341838,1,3,5114,2,"Mortgage Loan, and Mortgage Loan",0,1,1.95,6,_,716.71,31.69011308,29 Years and 3 Months,No,189.1789902,48.20888467,High_spent_Medium_value_payments,491.1940367,0,1.159,0.3581,-2.0914,-0.2841,0.8448 +0x4051,CUS_0x25fd,August,56,691-50-0205,Scientist,80362.35,6908.8625,5,5,16,4,"Student Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",,11,1.16,6,Standard,55.35901646,40.46171193,28 Years and 8 Months,Yes,166.4117819,308.5226332,High_spent_Medium_value_payments,501.4013257,0,0.3415,0.5615,-0.6977,1.0676,-1.2469 +0x405d,CUS_0xb2e,August,24,972-99-8959,Scientist,32107.52,,9,9,2869,3,"Student Loan, Payday Loan, and Not Specified",41.16275831,29.11690508,7.04,9,Bad,1413.020722,22.81432665,7 Years and 10 Months,Yes,70.57182301,,Low_spent_Small_value_payments,142.3250552,0,-0.9659,-0.0263,-0.6608,-0.5142,0.2978 +0x4069,CUS_0x68ad,August,45,177-23-9449,Entrepreneur,68056.56,,10,8,23.88954781,6,"Student Loan, Home Equity Loan, Student Loan, Home Equity Loan, Personal Loan, and Student Loan",,12,12.64,9,Standard,1681.16,40.20288854,9 Years and 9 Months,Yes,1647.828196,79.49976446,High_spent_Medium_value_payments,382.3799578,0,-1.8657,0.3563,-0.5342,1.0996,0.1628 +0x4075,CUS_0xce6,August,80,031-54-1872,Engineer,40580.24,3496.686667,6,4,7.067457376,7,"Not Specified, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,9,18.65,9,_,2594.940954,33.42800196,11 Years and 11 Months,Yes,184.2774333,397.030861,Low_spent_Small_value_payments,31.64008444,0,-0.3457,-0.1179,-1.0591,0.1722,-0.5548 +0x4081,CUS_0xc142,August,44,413-90-8106,Doctor,14080.81,1142.400833,3,5,30,4,"Not Specified, Auto Loan, Payday Loan, and Debt Consolidation Loan",18.80273849,17.39768431,14.59,10,Standard,1508.524468,24.58921035,11 Years and 4 Months,Yes,33.34129604,143.3624829,Low_spent_Small_value_payments,227.5363044,0,0.326,-0.8667,1.2489,0.4584,1.5016 +0x408d,CUS_0x9412,August,27,688-22-8467,Accountant,48428.1,4242.675,6,5,35.06745738,9,"Auto Loan, Credit-Builder Loan, Not Specified, Not Specified, Student Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Student Loan",42.85079501,26.07339918,5.89,9,Bad,4832.965069,28.72112042,5 Years and 9 Months,Yes,192.0799905,277.8495443,Low_spent_Medium_value_payments,207.6176772,0,-0.6118,1.6495,0.6634,1.2199,-2.1763 +0x4099,CUS_0x62d2,August,18,980-57-4123,Accountant,49250.73,,9,7,21,6,"Student Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",,21,5.4,15,Bad,2231.92,36.87918243,11 Years and 11 Months,Yes,206.5019194,370.0798408,Low_spent_Medium_value_payments,116.5409898,0,0.9259,-0.5828,-0.7447,-1.7749,-1.0711 +0x40a5,CUS_0xa130,August,27,834-71-0072,Journalist,42384.08,,3,4,4,0,,31.5942764,22.9434542,11.55,5,Standard,976.8668015,26.56417143,24 Years and 0 Months,No,0,,Low_spent_Small_value_payments,426.6509537,0,0.17,-1.8231,0.4787,-1.2938,0.2852 +0x40b1,CUS_0x5bb9,August,26,821-51-9121,Teacher,8086.58,,2,7,22,2,"Credit-Builder Loan, and Home Equity Loan",,27.70856093,9.55,12,Standard,2726.442195,29.77866817,10 Years and 2 Months,Yes,7.913043412,44.69730712,Low_spent_Large_value_payments,299.7778161,0,0.1293,0.3946,-0.466,1.0009,1.5871 +0x40bd,CUS_0xac20,August,21,463-27-5535,Writer,49178.48,3972.206667,8,4,9,4,"Payday Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",,16,17.98,1,Standard,1484.58,26.92682804,26 Years and 9 Months,Yes,116.0194488,,High_spent_Small_value_payments,305.0001904,0,0.6196,0.3689,0.8969,-0.351,-1.8551 +0x40c9,CUS_0x7204,August,34,065-34-1600,Accountant,9009.775,,8,5,26,3,"Payday Loan, Not Specified, and Mortgage Loan",5.688639973,7.315962423,14.83,13,Standard,2180.768139,34.05393901,14 Years and 2 Months,Yes,21.46853645,,High_spent_Small_value_payments,271.6414039,0,-1.9453,0.7204,1.1831,-1.1438,0.4395 +0x40d5,CUS_0xaca6,August,20,108-44-7721,Architect,89388.72,,4,6,6,1,Student Loan,6.748542318,8,9.55,0,Good,913.9843727,32.06999516,32 Years and 0 Months,No,64.35336648,811.946984,Low_spent_Large_value_payments,267.2039973,0,0.5515,0.5045,0.5707,1.6338,-1.3493 +0x40e1,CUS_0x4b23,August,27,075-54-1956,Teacher,39471.98,3166.331667,5,3,21,4,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",19.07387589,14.47050464,10.74,8,Standard,2433.23879,33.20882498,13 Years and 11 Months,Yes,77.3569733,157.5534584,!@9#%8,341.722735,0,-0.8504,1.1299,-1.6721,-0.9497,0.3577 +0x40ed,CUS_0x9a1,August,22,729-01-2024,Writer,49598.67,,7,5,21.06745738,6,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Student Loan, Mortgage Loan, and Personal Loan",37.68614032,23,-0.44,9,Bad,3320.540954,30.15112983,13 Years and 6 Months,NM,78239,255.5016722,Low_spent_Large_value_payments,166.0881381,0,0.1821,-1.4119,0.0084,0.0481,-1.212 +0x40f9,CUS_0x4480,August,28,671-98-0103,Mechanic,15322.45,,10,8,27.95700519,7,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Payday Loan, Not Specified, and Credit-Builder Loan",30.71665335,20,26.36,11,Bad,2892.870954,37.02590325,14 Years and 2 Months,Yes,1389.456398,129.4344815,Low_spent_Small_value_payments,203.7458344,0,-1.0533,1.4761,-0.2872,-0.6958,-0.1824 +0x4105,CUS_0x4200,August,20,414-56-9181,Journalist,53367.48,4223.29,8,5,17.06745738,9,"Credit-Builder Loan, Payday Loan, Student Loan, Student Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",,24,18.57,13,_,4214.750954,37.50327924,12 Years and 8 Months,Yes,298.776926,88.69389879,High_spent_Large_value_payments,248.1378873,0,0.0315,-0.4472,-0.8436,-1.8567,1.4228 +0x4111,CUS_0x1d2b,August,32,115-92-9660,Accountant,26217.46,1930.788333,8,3,18,2,"Student Loan, and Debt Consolidation Loan",20.11004506,17,8.81,4,Standard,1135.43,29.16751556,27 Years and 4 Months,NM,27.04554741,,Low_spent_Small_value_payments,348.9572226,0,0.8609,1.5462,0.6671,0.4866,0.817 +0x411d,CUS_0x18b5,August,45,732-18-5419,Developer,63501.72,5471.81,9,8,21,2,"Auto Loan, and Not Specified",,23.77814496,8.27,13,Bad,2315.169127,24.34236782,10 Years and 3 Months,Yes,105.2386874,265.205665,High_spent_Small_value_payments,436.7366476,0,0.9423,-0.9968,0.8235,0.9774,0.3914 +0x4129,CUS_0x6d22,August,41,564-68-2345,Entrepreneur,87481.62,,0,4,3,1,Credit-Builder Loan,17.45957427,,1.45,6,Good,214.43,35.03429628,24 Years and 0 Months,No,55.6533693,,Low_spent_Small_value_payments,439.7718507,0,1.3828,1.3581,0.6259,1.2421,-1.1125 +0x4135,CUS_0x2c8d,August,50,657-32-0636,Mechanic,29097.82,2398.818333,6,6,11,4,"Not Specified, Credit-Builder Loan, Personal Loan, and Student Loan",16.60291777,,7.79,5,Standard,1186.168689,27.92587789,17 Years and 6 Months,Yes,82.27811008,303.4913134,Low_spent_Small_value_payments,144.1124098,0,-0.3599,-0.0478,-0.329,0.447,0.2047 +0x4141,CUS_0x111c,August,28,420-66-8144,Journalist,71809.76,,7,7,18.06745738,8,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Auto Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Personal Loan",34.56476836,17.20078218,1.58,7,_,5199.126723,35.48560893,6 Years and 11 Months,Yes,297.917684,91.85936581,High_spent_Large_value_payments,440.3173289,0,-0.1496,-0.3617,-3.0771,-0.4433,-0.0969 +0x414d,CUS_0x1fef,August,21,#F%$D@*&8,Journalist,20066.6,,7,3,10,4,"Auto Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",12.63010549,9,18.78,9,Standard,491.75,32.02771668,17 Years and 10 Months,NM,77237,,Low_spent_Small_value_payments,231.5141369,0,-0.5436,0.4637,0.5079,0.5642,0.5116 +0x4159,CUS_0xbc1e,August,44,006-09-6260,Entrepreneur,18137.25,1729.4375,7,6,9.067457376,7,"Personal Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",21.6977842,,17.26,8,Standard,2793.086925,35.05688853,6 Years and 8 Months,Yes,72.05824653,,Low_spent_Large_value_payments,213.9245693,0,1.1416,-1.8391,-0.3431,-0.0617,0.5363 +0x4165,CUS_0xbbf5,August,43,413-06-1083,Musician,35346.69,,1,6,12,1,Payday Loan,,,8.3,4,Good,497.75,35.28408362,29 Years and 9 Months,No,23.59397797,278.8774965,Low_spent_Small_value_payments,263.2842756,0,0.3933,1.1883,-0.6963,0.562,-0.0631 +0x4171,CUS_0x3383,August,34,407-85-2454,_______,148990.16,,3,7,2.288361749,2,"Personal Loan, Auto Loan, and Credit-Builder Loan",,8,8.65,3,Good,363.4671072,32.31953748,29 Years and 6 Months,No,267.3659605,1787.067164,Low_spent_Medium_value_payments,94.07221903,0,-1.8547,-0.9223,0.15,1.6857,-1.9071 +0x417d,CUS_0x51e7,August,49,772-53-7704,Lawyer,9735.115,695.2595833,7,5,16,7,"Credit-Builder Loan, Not Specified, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, and Mortgage Loan",30.29278303,19,23.85,10,_,3247.738906,33.6206534,1 Years and 6 Months,Yes,53.89565262,34.52025617,Low_spent_Small_value_payments,275.9161894,0,0.6165,-0.5139,0.7821,-0.8573,-1.1319 +0x4189,CUS_0x8991,August,50,312-72-0232,Engineer,148786.04,,4,4,3.288361749,2,"Personal Loan, Auto Loan, and Mortgage Loan",10.21449234,10,10.71,2,Good,346.1143544,27.43016068,24 Years and 4 Months,No,237.4135109,750.0283759,High_spent_Large_value_payments,969.5776479,0,0.0941,0.3487,0.6612,0.7269,-0.769 +0x4195,CUS_0x59dc,August,29,#F%$D@*&8,Journalist,58940.76,4806.73,5,3,18,6,"Credit-Builder Loan, Personal Loan, Personal Loan, Student Loan, Personal Loan, and Student Loan",,14,16.6,9,Standard,306.5175423,34.87759148,14 Years and 11 Months,Yes,231.3940035,52.37549727,!@9#%8,441.9454451,0,1.1155,-0.2511,-0.8754,0.1045,0.2592 +0x41a1,CUS_0x28b3,August,27,876-26-4039,Mechanic,37983.12,,7,1131,32,2,"Home Equity Loan, and Personal Loan",,27.78799434,10.36,11,Bad,1761.98334,37.38864674,9 Years and 4 Months,Yes,50.43795578,193.4818269,Low_spent_Small_value_payments,385.9062173,0,0.1415,-1.2447,1.101,-0.1456,0.428 +0x41ad,CUS_0x2cdf,August,34,219-75-5334,Writer,8312.495,,6,4,12,4,"Credit-Builder Loan, Student Loan, Payday Loan, and Credit-Builder Loan",,19.41474694,7.71,12,Standard,2061.473716,23.67763009,13 Years and 2 Months,Yes,20.15625174,80.4044801,Low_spent_Small_value_payments,278.8100598,0,0.5054,-0.102,-0.1308,-0.044,0.0531 +0x41b9,CUS_0x4b44,August,32,729-43-4990,Journalist,120348.8,10268.06667,7,5,8,4,"Mortgage Loan, Auto Loan, Payday Loan, and Personal Loan",,13,14.98,4,Standard,166,37.7462008,30 Years and 11 Months,NM,299.0849836,290.6491549,High_spent_Medium_value_payments,687.0725282,0,1.1258,-1.1012,-0.4501,0.4679,1.4263 +0x41c5,CUS_0xa329,August,21,683-09-2814,Media_Manager,77936.01,6734.6675,5,6,15,3,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",10.94581886,10,19.2,5,Standard,314.62,37.29349666,23 Years and 2 Months,Yes,147.1020816,122.7996573,!@9#%8,653.5650111,0,-0.4419,0.2217,-0.8948,-0.0141,-0.1084 +0x41d1,CUS_0x6479,August,33,219-01-0237,Accountant,177887.8,14828.98333,4,3,2.288361749,0,,,6,11.32,7,Good,804.607481,40.0094074,26 Years and 11 Months,No,0,1535.199823,Low_spent_Medium_value_payments,785.1680742,0,0.7108,-1.7955,0.6873,1.2667,1.6002 +0x41dd,CUS_0x3866,August,28,118-49-2382,Writer,20677,,3,5,21.06745738,5,"Personal Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Personal Loan",,19.15167221,18.3,8,Standard,2888.503059,35.83181478,19 Years and 4 Months,Yes,53.35272172,28.73339519,!@9#%8,325.5019285,0,0.6871,0.7586,0.3058,-2.1199,-0.3054 +0x41e9,CUS_0x1631,August,45,453-64-2565,Mechanic,63093.32,5212.776667,4,3,7,3,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",16.77261586,13,11.71,6,Standard,1441.44,40.91673522,8 Years and 10 Months,Yes,120.8504403,76.15493041,High_spent_Medium_value_payments,574.272296,0,0.9088,0.5306,0.2532,0.0387,0.0813 +0x41f5,CUS_0x67dc,August,19,429-06-5904,Manager,127491.48,10731.29,5,1,1,4,"Payday Loan, Auto Loan, Personal Loan, and Auto Loan",,9,1.65,4,Good,517.8182583,26.9961543,23 Years and 4 Months,No,287.1611885,398.9070691,High_spent_Small_value_payments,688.8718062,0,0.7611,0.952,-2.0938,-0.371,-0.2656 +0x4201,CUS_0x4a83,August,19,408-42-1764,Engineer,35322.24,,5,5,6,3,"Credit-Builder Loan, Auto Loan, and Auto Loan",0,1,10.51,2,_,907.76,36.33048532,30 Years and 8 Months,No,61.72578802,205.7162698,Low_spent_Small_value_payments,303.1099422,0,-2.079,-0.283,0.1384,0.9371,-0.1334 +0x420d,CUS_0xc163,August,19,552-86-7671,Media_Manager,40327.22,3595.601667,5,5,7,0,,0.989276465,2,7.87,4,Good,1073.76,26.86094157,22 Years and 0 Months,NM,0,113.9189481,High_spent_Medium_value_payments,495.6412186,0,-0.23,-0.5993,0.6931,0.2972,-1.6777 +0x4219,CUS_0xc48a,August,43,853-87-2494,Doctor,99480.44,8532.036667,8,5,17,3,"Mortgage Loan, Payday Loan, and Mortgage Loan",,8,8.06,2,Standard,1287.76,27.95743017,25 Years and 0 Months,No,163.5888468,950.9954221,Low_spent_Small_value_payments,28.61939774,0,-0.7009,0.8888,0.1521,0.0948,1.0013 +0x4225,CUS_0x3313,August,41,876-93-8728,Scientist,34773.31,2878.775833,1,5,5.288361749,2,"Not Specified, and Payday Loan",0,0,1.17,4,_,72.32892987,29.03965242,23 Years and 6 Months,No,52.23056183,540.4371512,High_spent_Medium_value_payments,379.7528362,0,-1.2244,1.6467,2.1597,-1.8059,0.4289 +0x4231,CUS_0x9931,August,34,165-19-3346,Lawyer,31741.57,2858.130833,4,4,15,1,Payday Loan,,,7.78,7,Standard,1231.17,33.23182285,32 Years and 4 Months,Yes,16.90410075,365.9191839,Low_spent_Small_value_payments,192.9897987,0,0.6254,0.8307,-1.1374,-0.167,-1.8844 +0x423d,CUS_0xb5bd,August,28,732-58-9225,Journalist,17273.83,,9,7,31,5,"Payday Loan, Personal Loan, Payday Loan, Mortgage Loan, and Payday Loan",,23.55851965,10.57,11,Bad,2419.206299,25.00890875,14 Years and 8 Months,Yes,47.90208869,44.08812304,Low_spent_Medium_value_payments,316.1583716,0,-1.08,-0.7726,0.4244,0.2613,0.4737 +0x4249,CUS_0x5336,August,22,758-83-2675,Mechanic,101723.52,,8,5,15,3,"Credit-Builder Loan, Student Loan, and Student Loan",24.11451403,18,13.61,4,_,526.56,22.60666368,18 Years and 9 Months,NM,134.5816707,,Low_spent_Medium_value_payments,215.7722154,0,-1.2168,0.7001,0.5661,-0.6907,-0.7243 +0x4255,CUS_0x9d32,August,18,237-67-0639,Architect,15868.97,1446.414167,8,9,31.88954781,9,"Personal Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,18.23816076,16.62,13,Bad,5700.203877,24.18901755,9 Years and 0 Months,Yes,1386.075116,,Low_spent_Medium_value_payments,194.8006379,0,0.4443,-0.0583,1.3914,1.2039,-0.4597 +0x4261,CUS_0x530e,August,54,321-09-8273,_______,25506.53,,3,6,10,2,"Auto Loan, and Personal Loan",20.52587049,13,5.54,1,_,43.06,33.22545915,20 Years and 5 Months,No,161.4465164,239.2646555,Low_spent_Small_value_payments,243.4565432,0,-1.6853,-0.8321,0.6569,1.8026,1.971 +0x426d,CUS_0xd3d,August,36,128-99-6129,Lawyer,18843.62,,7,6,7,5,"Home Equity Loan, Personal Loan, Auto Loan, Payday Loan, and Mortgage Loan",,8,15.26,7,Standard,1266.84,39.61006668,19 Years and 11 Months,Yes,43.64098887,96.53906249,High_spent_Small_value_payments,280.1501153,0,0.1763,1.5742,-0.1477,0.0211,0.4287 +0x4279,CUS_0x7304,August,40,619-13-9521,Developer,31700.08,2710.673333,10,7,30.06745738,8,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",30.613175,15,25.48,16,_,4255.290954,30.76254488,2 Years and 8 Months,Yes,189.4140288,,High_spent_Large_value_payments,260.3032216,0,0.46,-0.147,0.5101,0.4008,-1.0788 +0x4285,CUS_0x401c,August,36,272-14-7214,Journalist,71223.92,,6,10,19.88954781,7,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",,23,5.8,10,Bad,1917.13,36.68890332,,Yes,1565.642591,117.1312693,High_spent_Medium_value_payments,444.2287252,0,-0.7557,1.4164,0.2147,-1.1083,-1.0857 +0x4291,CUS_0x646,August,51,758-52-6298,_______,85875.8,,1,5,498,2,"Home Equity Loan, and Personal Loan",,4.862029574,5.77,6,Good,732.6552835,39.00700556,23 Years and 5 Months,No,110.5873623,400.5607945,Low_spent_Medium_value_payments,494.4835099,0,-2.6006,-0.8397,-0.6208,1.2935,-1.5522 +0x429d,CUS_0x24bb,August,27,855-99-6125,Developer,2351135,1932.664167,3,5,10,2,"Mortgage Loan, and Mortgage Loan",20.65076536,17,,1,Standard,642.22,28.87309383,24 Years and 8 Months,Yes,35.92761913,41.75959747,High_spent_Large_value_payments,355.5792001,0,-1.3205,0.7491,-1.1927,-0.86,0.8947 +0x42a9,CUS_0xbc14,August,26,846-80-3325,Mechanic,87957.02,,2,1470,9,4,"Home Equity Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",,1.209822672,9.23,5,_,891.9053124,29.13074677,19 Years and 10 Months,NM,195.9137033,52.71435429,High_spent_Large_value_payments,736.7471091,0,0.7954,-0.2275,0.7302,-1.2824,1.7611 +0x42b5,CUS_0x6f5f,August,25,891-00-5252,_______,33063.59,,8,3,6,7,"Personal Loan, Auto Loan, Payday Loan, Student Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",19.14387576,16,7.19,10,Standard,788.4,26.99971985,18 Years and 2 Months,Yes,143.7567213,102.0198562,High_spent_Medium_value_payments,278.3533391,0,-0.9694,0.6259,0.8671,1.312,-1.8549 +0x42c1,CUS_0x960f,August,80,203-84-6827,Media_Manager,14480.21,943.6841667,10,7,24,9,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, Personal Loan, Not Specified, Auto Loan, and Not Specified",28.75807054,20.31196105,15.93,10,_,4418.760431,25.2894041,8 Years and 2 Months,Yes,54.58756681,,Low_spent_Small_value_payments,257.8239257,0,0.7021,1.4129,1.1067,-0.3448,-0.0214 +0x42cd,CUS_0x9d9a,August,38,456-78-8568,Teacher,84660.74,7046.061667,4,4,12,1,Home Equity Loan,,0,8.99,3,Good,631.0749243,36.68355861,27 Years and 6 Months,NM,60.86361532,,High_spent_Large_value_payments,727.2565801,0,-1.4035,-1.4789,1.2531,-0.7531,-1.056 +0x42d9,CUS_0x5684,August,33,409-97-1713,Engineer,77335.86,6164.655,3,4,19,4,"Payday Loan, Personal Loan, Payday Loan, and Not Specified",,20,11.88,4,Standard,284.69,39.08808768,29 Years and 11 Months,No,239.0178764,150.7826384,High_spent_Medium_value_payments,476.6649852,0,2.0946,0.0111,-0.054,1.2604,0.7267 +0x42e5,CUS_0x943c,August,25,448-44-0110,Writer,23613.43,2202.785833,6,7,6,3,"Auto Loan, Debt Consolidation Loan, and Student Loan",11.78904139,11,9.35,4,Standard,428.67,37.68791119,27 Years and 8 Months,NM,46.73830654,184.5543493,Low_spent_Large_value_payments,258.9859275,0,-0.8378,0.8076,0.7431,-1.4853,0.3425 +0x42f1,CUS_0x2d83,August,18,#F%$D@*&8,Lawyer,15325.73,,6,8,31.06745738,5,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Auto Loan",,21,15.49,11,Bad,4669.280954,31.48808425,11 Years and 10 Months,Yes,61.85078441,62.52221973,!@9#%8,227.0211246,0,0.6603,-1.261,1.6477,0.5732,-0.2007 +0x42fd,CUS_0x8316,August,40,815-63-3344,Musician,68110.83,5469.9025,5,7,9,3,"Home Equity Loan, Personal Loan, and Home Equity Loan",18.69606903,14,19.13,1,_,147.77,32.14500579,30 Years and 8 Months,Yes,102.6910618,175.6216383,High_spent_Medium_value_payments,518.6775499,0,-0.2017,-0.2554,-0.4001,1.5018,-0.645 +0x4309,CUS_0x1056,August,44,081-93-4350,Entrepreneur,16053.86,1196.821667,8,6,25.06745738,5,"Student Loan, Student Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",,20.50617418,0.83,12,Bad,2511.402211,37.87797299,16 Years and 2 Months,Yes,44.86029054,154.068624,Low_spent_Small_value_payments,184.0329641,0,0.8878,2.0196,-1.0063,0.0736,1.0588 +0x4315,CUS_0x9ecd,August,51,556-82-8148,Entrepreneur,169141.6,,3,6,5.288361749,0,Auto Loan,,,8.04,1,_,218.1621581,35.77388226,22 Years and 11 Months,NM,102.4614238,699.5136075,High_spent_Large_value_payments,1334.611966,0,1.0766,-0.3799,-0.588,1.2733,0.911 +0x4321,CUS_0xb24d,August,19,389-86-5893,Musician,42870.21,3523.5175,6,6,26.06745738,6,"Mortgage Loan, Student Loan, Mortgage Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",31.4151316,17,28.89,7,_,2980.890954,33.90477649,6 Years and 3 Months,Yes,122.4826703,,!@9#%8,175.7448998,0,0.2998,1.2714,-1.5976,1.5288,0.7473 +0x432d,CUS_0xb018,August,35,088-10-2997,Teacher,128189.37,10390.4475,2,7,6.288361749,2,"Payday Loan, and Debt Consolidation Loan",0,1,6.63,2,Good,913.1,26.40891507,31 Years and 3 Months,No,153.2690087,1169.585828,Low_spent_Large_value_payments,406.1273739,0,1.5263,0.1863,-0.3004,-2.2604,0.7394 +0x4339,CUS_0x5999,August,36,905-67-0656,Scientist,58537.38,4688.115,7,5,19,4,"Payday Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",13.62065675,10,11.11,,_,232.6225916,24.09669237,23 Years and 3 Months,No,105.8533062,110.1584735,High_spent_Large_value_payments,509.4870317,0,0.8932,-1.1222,0.1271,1.0083,-0.4156 +0x4345,CUS_0x7e86,August,50,947-24-2057,Doctor,24667.16,,8,6,16,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",,18.217477,19.93,5,Standard,820.864088,38.26202196,19 Years and 10 Months,Yes,49.23739807,128.301047,Low_spent_Large_value_payments,320.9212216,0,-0.8118,-0.3142,1.5346,0.0884,-0.9011 +0x4351,CUS_0x81f1,August,33,790-89-0831,Lawyer,62757.12,,1308,8,18.88954781,9,"Student Loan, Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",36.98616785,22,26.92,17,Bad,3754.18,26.18035036,6 Years and 2 Months,Yes,1791.32886,200.8163736,!@9#%8,66.90068545,0,0.012,-1.4622,0.2008,-1.5332,0.3116 +0x435d,CUS_0x738f,August,40,995-65-2513,Mechanic,9767.32,,5,7,3,1,Not Specified,,20,2.47,4,Good,327.25,31.07924323,15 Years and 11 Months,No,7.867825938,70.19082376,Low_spent_Small_value_payments,299.2356836,0,-1.2092,0.2826,-0.5898,0.8587,-0.6411 +0x4369,CUS_0xa2a8,August,31,586-33-6787,Doctor,14292.96,1096.08,8,7,24.06745738,9,"Auto Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Payday Loan, and Student Loan",47.34329937,25.1202228,4.78,11,Bad,2364.813984,39.06199871,8 Years and 3 Months,Yes,78.22962898,79.9405703,Low_spent_Medium_value_payments,204.7175128,0,1.7598,0.1083,-0.5803,0.7288,-0.2019 +0x4375,CUS_0xb521,August,38,715-62-6122,Developer,8571.29,514.2741667,8,7,24,9,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",47.66184465,26.99133745,4.09,9,_,1928.025896,28.36101952,,Yes,42.82785524,30.12388541,Low_spent_Small_value_payments,268.475676,0,-1.181,0.0455,-0.1656,-1.7527,-0.7709 +0x4381,CUS_0xb3cd,August,19,530-05-2968,Mechanic,20739.75,1916.3125,6,10,27.06745738,8,"Student Loan, Student Loan, Not Specified, Home Equity Loan, Personal Loan, Student Loan, Auto Loan, and Auto Loan",46.66456226,23.43493015,,15,Bad,3622.872184,23.56797747,14 Years and 2 Months,NM,137.1046443,134.8604739,Low_spent_Small_value_payments,182.9458438,0,-0.2757,-0.0247,0.4519,2.372,2.695 +0x438d,CUS_0x3224,August,18,078-06-0704,Lawyer,53181.21,4636.7675,5,5,8,3,"Not Specified, Not Specified, and Student Loan",14.76110245,13,,4,Standard,1942,37.98904525,10 Years and 2 Months,Yes,84.02175113,110.5629403,!@9#%8,519.0920586,0,1.4885,0.0132,0.9753,-0.1768,0.7677 +0x4399,CUS_0x3cd2,August,33,984-94-3425,Journalist,89239.35,,0,4,10.28836175,0,,,1,5.74,1,Good,590.29,42.39063523,23 Years and 8 Months,No,0,554.656373,!@9#%8,893.342338,0,-0.2695,-0.3694,-2.5794,-1.2196,0.138 +0x43a5,CUS_0x6f00,August,47,794-90-5630,Mechanic,98962.77,8044.8975,5,6,7.288361749,2,"Home Equity Loan, and Debt Consolidation Loan",15.92321371,,2.6,0,Good,541.0622651,34.80999352,26 Years and 5 Months,No,98.6114734,734.6861527,High_spent_Medium_value_payments,674.9123247,0,1.6174,0.4952,-1.0943,2.4813,-0.445 +0x43b1,CUS_0x1a3b,August,18,173-00-2847,Entrepreneur,33082.87,,5,1194,12,4,"Payday Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",20.08519272,16,18.4,12,Standard,576.44,31.15524781,19 Years and 4 Months,Yes,78.16490662,69.03675399,High_spent_Large_value_payments,371.3889227,0,1.4719,-0.7395,-0.7068,-0.2686,-0.009 +0x43bd,CUS_0x56bd,August,38,404-80-3253,Writer,10030.52,696.8766667,10,9,27.88954781,8,"Payday Loan, Personal Loan, Student Loan, Credit-Builder Loan, Not Specified, Not Specified, Payday Loan, and Student Loan",,,17.39,11,Bad,4812.08,25.66494508,12 Years and 5 Months,Yes,1375.893674,27.15724238,Low_spent_Small_value_payments,262.3066688,0,-0.6683,-0.1413,0.6225,-1.0243,0.8188 +0x43c9,CUS_0xb1a0,August,18,249-90-4145,Lawyer,15823.87,,8,6,24.06745738,9,"Student Loan, Home Equity Loan, Student Loan, Not Specified, Auto Loan, Payday Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",25.14948167,,15.69,12,Bad,3927.370954,26.14795704,10 Years and 2 Months,Yes,87.32342317,100.4480002,Low_spent_Small_value_payments,182.2738721,0,-0.8569,0.4491,-1.0612,1.4647,-1.212 +0x43d5,CUS_0x43c5,August,18,231-04-4667,Architect,63149.2,,7,10,19,6,"Payday Loan, Personal Loan, Auto Loan, Not Specified, Personal Loan, and Payday Loan",22.86723229,18,27.02,10,Bad,3656.46,33.13325035,6 Years and 9 Months,Yes,233.6021768,218.8745039,Low_spent_Small_value_payments,349.6666526,0,0.3038,0.5834,2.0437,-0.5544,0.6914 +0x43e1,CUS_0xa374,August,39,646-84-2918,Doctor,34680.44,,3,3,18,0,,16.58118294,11,14.72,5,Standard,551.18,26.32829185,27 Years and 6 Months,NM,405.4266748,324.1380224,Low_spent_Small_value_payments,279.4656442,0,0.0537,-0.1194,-1.9535,1.0679,-0.3706 +0x43ed,CUS_0xa83c,August,22,042-49-7943,Doctor,23195.18,,8,6,14,5,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Home Equity Loan, and Not Specified",9.388145442,11,14.52,8,Standard,458.8,30.43448457,16 Years and 10 Months,Yes,53.42950341,,High_spent_Medium_value_payments,314.5787405,0,-0.2071,-0.8002,0.8207,0.051,0.3889 +0x43f9,CUS_0x5088,August,47,058-85-7676,Teacher,68375.37,5914.9475,6,3,17,1,Personal Loan,,12,7.56,6,_,804.61,37.64346915,30 Years and 11 Months,No,38.40824349,218.7256156,High_spent_Medium_value_payments,584.3608909,0,0.1631,1.8407,0.7958,-0.0166,0.6788 +0x4405,CUS_0x468a,August,47,247-60-3180,Journalist,115827.92,9459.326667,7,6,16.28836175,2,"Debt Consolidation Loan, and Payday Loan",11.90404068,11,4.33,3,_,264.3293298,29.48564697,17 Years and 9 Months,No,141.9231326,1248.886145,Low_spent_Large_value_payments,345.9174709,0,-1.0636,-1.5742,-1.5964,1.2729,-0.819 +0x4411,CUS_0x70f1,August,33,212-21-4654,Scientist,12025.84,,7,5,17,2,"Personal Loan, and Personal Loan",15.90448057,,9.72,6,Standard,1188.36,30.43057057,28 Years and 0 Months,Yes,18.24716129,87.35221735,Low_spent_Small_value_payments,280.5159547,0,0.6711,0.3583,0.5098,-1.5933,1.1391 +0x441d,CUS_0xc3ee,August,48,971-78-9268,Architect,14439.41,,3,5,8,0,,,6,1.45,2043,Good,1077.686615,27.96817956,33 Years and 3 Months,No,0,11474.00714,Low_spent_Small_value_payments,306.8233366,0,-0.7588,1.1382,0.2177,-0.272,-0.5549 +0x4429,CUS_0x9da6,August,35,114-37-3012,Entrepreneur,20516.18,,5,7,16.28836175,4,"Payday Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",15.93985466,14,8.76,1,Standard,209.4160561,30.91620997,18 Years and 8 Months,No,56.37071107,491.7725414,!@9#%8,305.8442627,0,-0.0211,1.1282,-0.0308,-1.0011,0.5372 +0x4435,CUS_0x4f7d,August,38,154-66-0698,Journalist,15590.68,,8,9,27.95700519,9,"Mortgage Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, Personal Loan, Payday Loan, Payday Loan, Not Specified, and Credit-Builder Loan",29.59601366,16,28.98,7,_,4969.850954,37.95670603,14 Years and 0 Months,Yes,1416.372809,,Low_spent_Small_value_payments,112.5671311,0,-0.1253,0.163,0.1741,-0.2502,0.2716 +0x4441,CUS_0xbe9d,August,22,667-33-3115,_______,1034126,,3,7,6,100,Personal Loan,16.8811329,,4.37,3,Good,1234.59,37.58995969,18 Years and 3 Months,No,73.63741343,10000,!@9#%8,424.7603061,0,-0.3187,-0.6389,0.3392,0.0578,-1.0404 +0x444d,CUS_0xa301,August,39,#F%$D@*&8,Writer,65934.22,,5,7,7,0,,17.87125118,15,12.25,,Standard,1123,35.93478409,21 Years and 10 Months,Yes,0,113.6313413,!@9#%8,691.820492,0,0.6147,0.8704,-0.739,1.1358,0.4806 +0x4459,CUS_0xf6c,August,55,128-03-0204,Writer,76046.25,,7,3,16,3,"Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",24.03238527,19,3.29,9,Standard,91.84,22.54863454,30 Years and 8 Months,Yes,172.9855154,,Low_spent_Small_value_payments,60.97820663,0,-1.1277,-0.3405,-0.0327,-0.0075,0.9598 +0x4465,CUS_0x6df5,August,43,135-83-0935,Writer,17602.93,,10,10,30.95700519,6,"Student Loan, Personal Loan, Payday Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",,19.47264206,13.49,7,Standard,2569.005571,27.07446731,17 Years and 3 Months,Yes,1370.260963,,Low_spent_Small_value_payments,185.4562093,0,0.5444,1.7615,-0.874,-1.5511,0.2361 +0x4471,CUS_0x117d,August,30,812-62-8349,Media_Manager,70779.18,5861.265,1,4,9,4,"Student Loan, Student Loan, Not Specified, and Debt Consolidation Loan",,2,3.61,4,Good,1193.688078,25.85637803,21 Years and 5 Months,No,131.3483116,334.3969813,High_spent_Small_value_payments,414.1761088,0,1.0548,1.0425,0.2731,-0.23,-0.9103 +0x447d,CUS_0x59a1,August,27,676-03-1319,_______,20373.24,,4,6,21,2,"Credit-Builder Loan, and Not Specified",16.17471533,10.96953174,11.22,8,Standard,1695.987103,36.44964397,19 Years and 2 Months,Yes,21.47649819,117.1165395,Low_spent_Small_value_payments,335.9839623,0,-0.7137,1.5486,0.8318,1.1536,0.4769 +0x4489,CUS_0x39d7,August,29,300-57-8786,Teacher,20377.7,,6,5,15,2,"Student Loan, and Payday Loan",26.2529222,19.42120531,17.14,6,Standard,1653.015469,25.3034439,11 Years and 3 Months,Yes,29.92158094,155.8533974,Low_spent_Small_value_payments,270.1391884,0,-0.1099,-1.6955,-0.6463,0.0022,2.037 +0x4495,CUS_0x6895,August,42,989-88-6895,Entrepreneur,35064.5,2949.041667,10,7,33,7,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Student Loan, and Not Specified",,24.38773795,18.54,15,_,2851.586736,36.400715,9 Years and 5 Months,Yes,132.2560664,110.9761171,!@9#%8,321.6719831,0,-0.1488,-0.6729,-0.1643,0.5138,-0.3883 +0x44a1,CUS_0x39a6,August,18,489-27-4816,_______,49441.62,4419.135,9,10,16.06745738,5,"Personal Loan, Mortgage Loan, Not Specified, Student Loan, and Mortgage Loan",30.51143687,,23.1,12,Bad,3738.22729,33.03375605,1 Years and 0 Months,Yes,176.4840285,125.2281189,!@9#%8,373.4810647,0,-1.0134,0.9139,0.1999,-0.2552,-1.7419 +0x44ad,CUS_0x2095,August,20,774-74-4749,Entrepreneur,73842.33,5927.5275,4,5,5,3,"Home Equity Loan, Student Loan, and Home Equity Loan",24.75040421,18,5.83,4,Standard,344.09,37.5917897,19 Years and 2 Months,No,112.5848146,210.4503611,High_spent_Medium_value_payments,519.7175743,0,-0.6301,0.2023,0.4924,0.0679,-1.8781 +0x44b9,CUS_0x36da,August,42,969-97-7513,Lawyer,36151.31,,1,3,12,3,"Personal Loan, Personal Loan, and Personal Loan",3.71380212,6,2.5,8,Good,563.28,30.40710481,23 Years and 8 Months,No,54.78797362,148.9756911,High_spent_Small_value_payments,343.0972519,0,-0.0906,0.4855,0.7223,-1.4812,0.146 +0x44c5,CUS_0x5cb5,August,40,128-03-9248,Writer,20081.52,,6,6,22,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,15,9.11,12,_,2468.95,30.68317432,18 Years and 4 Months,Yes,81125,169.0292134,Low_spent_Small_value_payments,235.5467757,0,-1.0214,0.3074,0.9688,-1.1451,0.1222 +0x44d1,CUS_0xb1da,August,40,671-03-8487,Doctor,110721.66,9259.805,3,7,15,4,"Credit-Builder Loan, Not Specified, Not Specified, and Auto Loan",16.37741324,13,3.15,6,_,260.7553409,28.62030027,26 Years and 6 Months,No,209.2454485,149.7101999,High_spent_Medium_value_payments,835.178773,0,1.5757,0.3992,-0.3636,-0.9648,0.1395 +0x44dd,CUS_0xb591,August,52,356-12-8113,Lawyer,35724.37,,5,3,7,4,"Auto Loan, Auto Loan, Auto Loan, and Personal Loan",24.21208889,14,5.15,1,Good,18.29,26.83189427,25 Years and 4 Months,No,86.13509736,10000,Low_spent_Medium_value_payments,418.0501445,0,-0.4609,0.9273,0.1612,0.7689,0.0445 +0x44e9,CUS_0x55b5,August,31,113-58-6546,Entrepreneur,18793.34,,0,7,8,2,"Debt Consolidation Loan, and Not Specified",16.01847232,,2.89,3,Good,863.66,28.53574697,,No,27.30133708,59.15678371,!@9#%8,334.7530459,0,-1.3352,-0.7423,1.5762,1.3387,-2.336 +0x44f5,CUS_0x5d05,August,35,823-01-2017,Scientist,27156.59,2160.049167,6,4,7,3,"Mortgage Loan, Student Loan, and Payday Loan",22.93317885,18,3.75,,Standard,787.21,28.87326925,16 Years and 3 Months,No,64.97075972,,Low_spent_Large_value_payments,250.7010533,0,0.0168,-0.2688,0.3155,0.2349,-1.5012 +0x4501,CUS_0x3868,August,34,916-37-8123,_______,3544929,1462.605833,8,9,30,6,"Mortgage Loan, Not Specified, Personal Loan, Home Equity Loan, Not Specified, and Auto Loan",,27.83338269,,8,Bad,3138.791576,38.81884795,11 Years and 11 Months,Yes,43.23479314,,Low_spent_Small_value_payments,234.1000198,0,-1.4647,0.1189,-0.159,-0.2972,0.8744 +0x450d,CUS_0x7b3a,August,27,084-00-6667,Scientist,14276.64,,8,8,19.95700519,7,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Student Loan, and Personal Loan",,21.30551701,,7,Bad,5093.160029,38.87233934,13 Years and 4 Months,Yes,1375.180068,18.95428348,!@9#%8,274.5872795,0,0.4886,-0.0008,-2.4047,0.3625,-0.5272 +0x4519,CUS_0x532a,August,41,213-65-3582,Writer,56643.04,,6,5,8,1433,"Mortgage Loan, and Student Loan",12.97618351,12,11.27,8,Standard,1115.764921,30.7570817,25 Years and 0 Months,No,76.55115343,350.7267057,Low_spent_Small_value_payments,359.8369251,0,0.8988,1.2179,-0.6226,1.4483,0.5914 +0x4525,CUS_0x7b5,August,28,156-06-2245,Mechanic,64249.44,5428.12,7,7,24,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",,15.6858895,12.78,11,Standard,1570.345642,34.46614988,14 Years and 3 Months,Yes,229.4802377,455.6525876,Low_spent_Medium_value_payments,137.6791747,0,-1.2693,0.0298,-1.1454,-1.9782,-0.1379 +0x4531,CUS_0x5937,August,23,771-83-2093,Musician,15680,1571.666667,7,9,17.06745738,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,18,8.55,15,Bad,2046.750954,34.52177518,18 Years and 2 Months,Yes,27.05276429,54.12252157,High_spent_Small_value_payments,309.2710929,0,0.3803,0.376,-0.9444,1.4384,-1.0114 +0x453d,CUS_0x8ba7,August,32,#F%$D@*&8,Journalist,34153.67,,6,7,17,2,"Personal Loan, and Not Specified",19.94590777,14,0.94,4,Standard,195.8694696,36.9375778,19 Years and 3 Months,NM,50.05261902,40.52205574,High_spent_Medium_value_payments,435.6471394,0,-0.0787,0.37,1.3356,-0.9116,-1.4622 +0x4549,CUS_0xc3d5,August,33,443-67-5998,Teacher,16599.37,,6,3,22,2,"Auto Loan, and Student Loan",13.68812172,11.90855893,17,6,_,1417.733447,24.40853442,20 Years and 8 Months,Yes,17.32201654,,Low_spent_Large_value_payments,279.5092862,0,-0.8055,0.6354,0.7405,0.6155,-1.8589 +0x4555,CUS_0x4d09,August,37,953-85-2296,Engineer,158757.88,13111.82333,3,5,4,4,"Auto Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",,0,14.23,7,Good,1500.149065,37.79537107,,No,324.8345158,524.4066609,Low_spent_Large_value_payments,731.9411566,0,0.1103,-1.0605,0.4786,-0.1836,-1.6372 +0x4561,CUS_0x92fc,August,45,437-25-0267,_______,86446.44,7309.87,0,2,7,1,Student Loan,0,3,8.12,1194,Good,1396.41,26.52627994,18 Years and 5 Months,No,53.204488,,Low_spent_Small_value_payments,566.7381686,0,0.4401,-0.8211,0.1338,0.5831,0.2087 +0x456d,CUS_0x3de8,August,27,614-99-8314,Entrepreneur,76113.09,,7,6,16,0,,19.56311516,16,17.84,5,Standard,1127.46,38.68450397,27 Years and 6 Months,NM,0,224.0384117,High_spent_Medium_value_payments,654.1373383,0,-1.0009,0.2906,0.8511,1.1888,-0.4223 +0x4579,CUS_0x2a61,August,46,753-68-0048,Teacher,9786.86,,9,10,1663,2,"Personal Loan, and Student Loan",36.36190173,16.10183177,15.53,6,Standard,2371.985567,23.45128524,,Yes,11.56443745,54.46174813,Low_spent_Medium_value_payments,309.1309811,0,0.1919,1.5061,-0.1808,-0.3292,0.0336 +0x4585,CUS_0x88f2,August,27,460-29-2746,Media_Manager,17028.31,,4,2,4,0,,0,3,2.39,5,Good,43.02,35.24284857,30 Years and 9 Months,No,0,69.40692526,Low_spent_Medium_value_payments,376.8956581,0,0.1121,-0.8527,-0.3482,0.6678,0.1142 +0x4591,CUS_0xb503,August,49,098-15-1551,Engineer,33835.16,,5,3,13,3,"Not Specified, Home Equity Loan, and Student Loan",,21,3.88,1,_,1353.86,21.85650766,27 Years and 11 Months,No,68.07297826,217.6646801,Low_spent_Small_value_payments,285.0220083,0,-1.3553,2.3076,0.8018,1.5456,-0.1152 +0x459d,CUS_0x10d7,August,39,289-56-9714,Developer,15968.14,,7,7,22.06745738,9,"Personal Loan, Auto Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, and Personal Loan",38.5531204,24.64839748,17.26,14,Bad,5550.229471,40.91771979,12 Years and 4 Months,Yes,77.99711822,128.5986713,Low_spent_Medium_value_payments,184.7517558,0,0.0354,0.313,1.4558,-0.0438,1.488 +0x45a9,CUS_0x8e38,August,40,597-58-5834,Entrepreneur,74499.6,5910.3,6,5,6.288361749,4,"Student Loan, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",20.36987032,17,10.04,11,Standard,235.27,26.42103566,19 Years and 11 Months,Yes,171.1457123,537.8717534,High_spent_Large_value_payments,541.9499954,0,-1.4202,0.3925,-0.9702,0.6905,1.3589 +0x45b5,CUS_0x60d8,August,46,592-18-2639,Architect,170131.24,14153.60333,5,3,4,0,,,9,,6,Good,798.78,45.04290531,31 Years and 3 Months,No,0,366.873006,High_spent_Medium_value_payments,1298.487327,0,0.3673,0.7148,-0.2005,-0.4028,-0.1103 +0x45c1,CUS_0x1546,August,18,078-43-8169,Engineer,15359.33,1484.362999,7,5,13,6,"Auto Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Auto Loan, and Not Specified",16.1487726,10,13.11,6,Standard,1631.85,28.52920703,15 Years and 0 Months,Yes,127.5872603,45.81243865,Low_spent_Medium_value_payments,335.9758859,0,-0.8344,-0.2277,-0.4844,1.87,2.336 +0x45cd,CUS_0x3969,August,31,316-61-8679,Architect,16154.25,1273.1875,8,8,29,5,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",37.70802991,23.88841071,4.8,15,Bad,1563.651922,26.02930808,16 Years and 5 Months,Yes,33.76738648,93.5413329,Low_spent_Medium_value_payments,280.0100306,0,0.466,-0.4896,1.3903,0.318,2.8842 +0x45d9,CUS_0x318d,August,38,#F%$D@*&8,Scientist,28050.2,2443.516667,6,5,34.06745738,7,"Not Specified, Personal Loan, Student Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",28.26804085,19,2.25,11,Bad,3757.430954,25.12629747,8 Years and 8 Months,NM,143.7928505,93.19870296,High_spent_Medium_value_payments,230.6398252,0,0.4756,-0.1687,-1.8266,-0.8821,-0.6241 +0x45e5,CUS_0x4d2e,August,35,280-54-8121,Teacher,98887.41,,0,5,1,1,Personal Loan,,2.249721541,2.16,5,Good,1684.761771,36.73268557,22 Years and 9 Months,No,67.18817915,134.126224,High_spent_Large_value_payments,856.3473468,0,2.0216,-0.655,-0.0255,-0.6443,0.8636 +0x45f1,CUS_0x8d84,August,80,072-51-9357,Developer,8879.57,,10,10,24.88954781,7,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Student Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",,26.35221924,4.41,15,_,2679.479671,34.91801067,,Yes,1351.464279,,Low_spent_Small_value_payments,257.319014,0,-0.4446,0.4849,1.2258,-1.5364,-0.2604 +0x45fd,CUS_0x1cd1,August,45,949-93-6591,Engineer,51200.46,4108.705,7,9,23.06745738,5,"Not Specified, Auto Loan, Not Specified, Personal Loan, and Credit-Builder Loan",44.54475643,25.23319491,8.15,7,Bad,4898.382166,35.7762744,13 Years and 5 Months,Yes,151.5022708,10000,High_spent_Medium_value_payments,383.6648421,0,0.28,-1.8733,-0.9421,-0.3302,-0.1507 +0x4609,CUS_0x9a43,August,45,066-97-7115,Mechanic,85720.48,6999.373333,7,6,16,4,"Home Equity Loan, Student Loan, Mortgage Loan, and Credit-Builder Loan",,20.31292096,13.31,2056,Standard,783.4547723,25.76066301,17 Years and 6 Months,Yes,171.47715,79.66495101,!@9#%8,688.7952324,0,0.8,-0.8527,0.4634,0.4185,-1.3196 +0x4615,CUS_0x4ab4,August,39,723-08-9989,Writer,28315.74,2427.645,10,8,24.06745738,3,"Student Loan, Payday Loan, and Not Specified",43.24145232,23,8.69,14,Bad,2430.860954,31.0967159,19 Years and 3 Months,Yes,56.35493881,264.8796339,Low_spent_Small_value_payments,184.8096393,0,0.555,-0.0321,1.2794,0.4573,-1.0828 +0x4621,CUS_0x37c9,August,38,861-27-2816,Developer,91642.4,7468.866667,7,5,6,1,Debt Consolidation Loan,11.88828072,8,6.2,0,Standard,543.2,34.24692504,26 Years and 3 Months,No,42.03790095,80.19111272,High_spent_Large_value_payments,864.657653,0,0.7417,1.1063,1.3183,0.1477,-0.584 +0x462d,CUS_0x80b3,August,38,286-74-6564,Musician,7109.175,,5,10,16,3,"Student Loan, Student Loan, and Debt Consolidation Loan",21.6486798,16,11.15,8,_,2098.55,35.21424727,18 Years and 0 Months,NM,17.21555374,29.41179381,Low_spent_Small_value_payments,297.0157774,0,-1.8303,1.1921,-0.3966,0.0723,-1.1061 +0x4639,CUS_0x55de,August,45,517-17-5278,Entrepreneur,65793.66,5616.805,6,3,11,4,"Personal Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",32.74965695,22.33968989,11.53,6,Standard,1621.362592,26.46449259,12 Years and 6 Months,Yes,113.2757624,,High_spent_Small_value_payments,337.2912968,0,1.5599,0.6081,0.1078,1.6245,0.6743 +0x4645,CUS_0x7ab3,August,39,#F%$D@*&8,Accountant,8317.345,678.1120833,3,5,9,2,"Credit-Builder Loan, and Personal Loan",27.47205004,20,19.59,10,Standard,457.13,31.80063081,19 Years and 4 Months,Yes,11.46895847,76.19212478,Low_spent_Small_value_payments,270.1501251,0,0.7008,0.1585,0.4051,0.6957,1.5261 +0x4651,CUS_0x137d,August,33,193-22-4579,Media_Manager,43655.04,,5,7,4.288361749,4,"Payday Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",0,2.359420971,2.71,0,_,106.1923928,32.80928415,,No,131.2362359,651.15441,High_spent_Small_value_payments,277.0388151,0,-0.0785,-0.8932,0.3039,0.5071,-1.159 +0x465d,CUS_0x8804,August,41,#F%$D@*&8,Accountant,14962.35,958.8625,7,9,34.06745738,8,"Student Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",33.56030206,22.6347492,9.97,12,Bad,2364.601916,28.39230672,20 Years and 5 Months,Yes,67.46163207,102.938564,Low_spent_Small_value_payments,188.765766,0,-0.6355,0.0763,0.1278,0.7156,-1.0189 +0x4669,CUS_0x5af2,August,38,770-27-1304,Accountant,101977.44,8475.12,3,3,19.28836175,6,"Mortgage Loan, Personal Loan, Payday Loan, Student Loan, Not Specified, and Payday Loan",,19,12.93,1247,Standard,345.8229054,35.20361853,9 Years and 2 Months,Yes,398.4119379,583.9538973,High_spent_Large_value_payments,544.9928493,0,0.9083,0.297,0.5043,0.2992,2.8187 +0x4675,CUS_0x1298,August,49,779-78-0153,Lawyer,102080.46,8299.705,5,6,10,4,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",20.80523098,15,11.17,,Standard,89.98,33.24202401,,Yes,223.3990346,412.5934587,!@9#%8,453.9780067,0,-0.2873,0.496,-1.4983,2.5221,0.1007 +0x4681,CUS_0x2e55,August,25,288-26-5763,Lawyer,16497.78,,8,6,22,2,"Auto Loan, and Payday Loan",33.64271122,17,1.64,10,Bad,2532.71,39.23116881,16 Years and 11 Months,Yes,16.48682869,14.60088737,High_spent_Medium_value_payments,348.0937839,0,0.6358,-0.977,-2.7279,0.1462,-1.5462 +0x468d,CUS_0x3cb6,August,34,918-41-4565,Musician,107275.71,,6,7,6,0,,,10,14.28,5,Good,150.8587965,38.24964547,17 Years and 9 Months,No,0,286.0814729,Low_spent_Large_value_payments,933.8246172,0,-0.0746,-0.9279,0.9112,-1.9048,-0.5293 +0x4699,CUS_0x258c,August,56,653-75-3150,Journalist,24018.71,,4,4,5,3,"Home Equity Loan, Student Loan, and Auto Loan",,17,5.07,,_,1303.708586,23.51034042,27 Years and 2 Months,No,43.67036539,74.20831563,High_spent_Medium_value_payments,322.4654526,0,0.8528,0.4621,0.4127,0.5376,-0.3595 +0x46a5,CUS_0x1947,August,62,715-00-9807,Engineer,107458.2,8698.85,8,3,7,1,Student Loan,,7,7.64,1,Good,222.1888745,42.2923477,32 Years and 6 Months,No,89.40600836,111.1103677,High_spent_Large_value_payments,925.3105217,0,-0.2155,-0.2226,1.4514,0.651,0.4689 +0x46b1,CUS_0x17d3,August,29,436-40-1442,Architect,32900.5,,4,5,4,2,"Credit-Builder Loan, and Payday Loan",14.2485634,13.59953681,8.33,1,_,51.43746826,29.48294222,23 Years and 8 Months,NM,32.06861788,217.4323593,Low_spent_Small_value_payments,303.0698562,0,0.1757,0.1519,2.0028,-0.8518,-0.0094 +0x46bd,CUS_0xacf1,August,32,176-52-9533,Doctor,17161.57,,6,3,9,4,"Student Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",14.14821588,11,10.06,11,Standard,743.2,30.96875603,17 Years and 6 Months,Yes,47.25462667,122.4236908,Low_spent_Small_value_payments,278.8347658,0,0.4071,0.1615,-1.9087,-0.7909,-0.2981 +0x46c9,CUS_0x6962,August,24,481-74-6465,Teacher,40198.96,,4,6,10,2,"Payday Loan, and Debt Consolidation Loan",,20,0.58,1,Standard,530.04,30.30680635,28 Years and 4 Months,No,39.96049353,10000,High_spent_Medium_value_payments,432.9554772,0,-0.2066,-0.5296,0.0312,1.2874,-0.2554 +0x46d5,CUS_0xb1e1,August,23,170-19-6505,Media_Manager,39242.58,3332.215,10,8,28.06745738,5,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,18.8555219,28.91,8,_,4596.742555,34.85029165,6 Years and 9 Months,Yes,110.1190897,174.2551717,Low_spent_Medium_value_payments,302.1269506,0,1.6134,0.6763,-0.9759,-2.8299,0.479 +0x46e1,CUS_0x6865,August,48,292-07-5024,_______,31645.66,2676.138333,4,4,4,2,"Auto Loan, and Personal Loan",19.39244601,14,8.6,399,Good,708.6198827,36.08719192,26 Years and 8 Months,No,34.25754125,,Low_spent_Small_value_payments,163.2387316,0,-1.277,-1.0768,-0.0717,-1.1584,0.5109 +0x46ed,CUS_0xacc7,August,26,417-24-5530,Lawyer,92428.83,,5,6,17,0,,,20,6.16,5,_,1396.62,41.83737341,26 Years and 3 Months,Yes,0,242.8685775,High_spent_Small_value_payments,797.0716725,0,-0.4244,-1.0751,3.0638,0.5243,0.0244 +0x46f9,CUS_0xadd2,August,80,693-69-2338,Manager,41925.32,,7,7,17,4,"Personal Loan, Mortgage Loan, Not Specified, and Personal Loan",27.61161549,14.42927494,12.06,8,_,1662.795633,27.29001327,19 Years and 3 Months,Yes,364.0149462,93.64144919,!@9#%8,403.7577748,0,0.217,-1.7242,1.0941,-0.0765,1.3176 +0x4705,CUS_0x5ae6,August,42,623-79-4308,Architect,132861.6,11243.8,5,7,4349,1,Credit-Builder Loan,17.82417715,11,14.35,8,Standard,1055.32,23.09168632,16 Years and 3 Months,Yes,66.60372897,,Low_spent_Medium_value_payments,184.8009918,0,0.5072,1.4505,0.9108,0.6207,-2.5394 +0x4711,CUS_0x830e,August,42,864-43-4445,Lawyer,107451.03,9204.2525,0,5,10.28836175,0,Payday Loan,10.50472788,10,14.34,3,Good,578.9356848,32.77163215,27 Years and 2 Months,NM,68.48670349,780.833864,Low_spent_Medium_value_payments,824.2519521,0,0.1942,-0.4506,-0.2717,-0.9405,-0.5827 +0x471d,CUS_0x414d,August,20,587-81-5669,Architect,91717.32,7577.777965,3,4,6.288361749,2,"Payday Loan, and Not Specified",90,2056,4.39,3,Standard,1.279350263,29.53517144,30 Years and 10 Months,Yes,425.2504543,713.8002267,Low_spent_Medium_value_payments,656.4690369,0,0.6038,-0.7813,0.6329,-0.9062,-0.3794 +0x4729,CUS_0x1ebb,August,28,092-56-0694,Writer,12723.325,,4,7,13,3,"Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",,8,8.81,,Standard,387.78,23.8470146,22 Years and 5 Months,No,29.27026504,,!@9#%8,247.7471593,0,-1.0039,0.6962,1.4169,-0.6556,0.9837 +0x4735,CUS_0x6142,August,38,735-50-1434,Accountant,12062.27,,4,3,13,3,"Payday Loan, Credit-Builder Loan, and Student Loan",19.74917601,16,9.79,10,Standard,1334.81,35.71011825,19 Years and 9 Months,Yes,21.40873561,,Low_spent_Small_value_payments,288.6842098,0,-0.249,-0.239,-0.1155,-0.1636,1.7932 +0x4741,CUS_0x5647,August,41,365-06-9242,Lawyer,79367.94,,3,4,8.288361749,0,,,15,15.33,,Standard,1020.049604,34.2987491,23 Years and 5 Months,Yes,0,1043.680978,Low_spent_Large_value_payments,394.3772293,0,0.5407,-1.5317,0.0408,-1.2096,1.2918 +0x474d,CUS_0xadc8,August,30,810-29-3531,Mechanic,18884777,6605.370947,8,7,8.288361749,2,"Not Specified, Debt Consolidation Loan, and Not Specified",14.550439,14,10.17,2,_,867.1137084,30.50335165,22 Years and 5 Months,Yes,744.0374463,557.6392773,High_spent_Large_value_payments,690.7573573,0,0.188,1.5048,0.0771,1.2523,-1.1635 +0x4759,CUS_0x6b50,August,50,185-98-1380,Scientist,103049.46,,4,6,6,3,"Not Specified, Credit-Builder Loan, and Home Equity Loan",,6.006194607,9.46,5,_,967.2601198,35.46268623,18 Years and 5 Months,No,255.2077858,10000,High_spent_Small_value_payments,675.7466992,0,0.2462,-0.1866,-0.326,0.9264,-0.2719 +0x4765,CUS_0x6472,August,31,416-81-5863,Journalist,32218.68,2813.89,3,5,5123.288362,0,Not Specified,,,8.18,6,Good,84.5294116,27.44724324,17 Years and 4 Months,No,24.02792788,571.023447,High_spent_Small_value_payments,384.6173708,0,-0.8612,0.0714,-0.6368,-0.2165,-0.8565 +0x4771,CUS_0x4229,August,46,588-79-8277,Architect,22032.74,,7,329,18,3,"Not Specified, Not Specified, and Debt Consolidation Loan",27.77966118,17,12.65,3,_,355.4,32.93851025,20 Years and 4 Months,NM,45.83656655,151.9472999,Low_spent_Large_value_payments,280.1223002,0,-0.4603,0.3223,-0.3908,0.7609,-1.6153 +0x477d,CUS_0x751b,August,51,309-10-8472,Entrepreneur,19514.52,1874.21,3,3,10,2,"Not Specified, and Not Specified",22.14815128,14,3.19,0,_,170.66,27.66468109,,Yes,20.2275002,109.2596201,Low_spent_Large_value_payments,327.9338797,0,-1.8903,-2.1035,1.3257,0.2325,0.4156 +0x4789,CUS_0x70e8,August,38,381-87-7038,_______,87070,7295.833333,8,7,10,0,,14.2578936,12,12.69,4,Standard,381.06,41.02820565,25 Years and 6 Months,NM,0,484.4706788,Low_spent_Small_value_payments,535.1126545,0,1.8985,0.7647,1.0052,0.252,-1.5509 +0x4795,CUS_0xb80c,August,22,933-92-6980,Scientist,27347.9,,8,3,7,1,Not Specified,10.04909294,9,15.54,11,Standard,1274.89,29.47426251,12 Years and 10 Months,Yes,13.30616253,53.43993558,High_spent_Large_value_payments,423.2530686,0,-0.8483,-1.5479,-0.3853,0.0882,-0.4166 +0x47a1,CUS_0x988d,August,42,037-10-7907,Writer,47899.86,3852.655,3,5,23,4,"Home Equity Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",17.50924398,13.79168471,19.59,11,Standard,2585.290441,33.96777017,12 Years and 4 Months,Yes,137.9759189,76.04287516,High_spent_Medium_value_payments,421.2467059,0,0.0589,0.3434,-0.4919,0.3321,0.2766 +0x47ad,CUS_0xc24b,August,20,496-58-8268,Engineer,40492.58,3275.381667,8,1479,28.88954781,7,"Student Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",32.85126341,20.04349887,2.45,13,Bad,1622.363554,35.08893845,9 Years and 6 Months,Yes,1501.300634,,!@9#%8,215.6684871,0,0.0798,-0.506,0.9836,0.7104,-1.2344 +0x47b9,CUS_0x2a27,August,29,745-09-2908,Lawyer,20334.43,1541.535833,5,6,22.06745738,3,"Personal Loan, Not Specified, and Not Specified",,12.38802124,17.79,12,_,2964.660413,26.17285211,19 Years and 10 Months,Yes,45.71172082,,Low_spent_Small_value_payments,240.7243715,0,0.9948,1.3179,-2.084,-0.6027,0.334 +0x47c5,CUS_0x7042,August,31,017-34-7557,_______,33409.33,,4,7,5,3,"Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,2118.15677,9.83,5,Standard,877.3793966,37.81962395,20 Years and 5 Months,Yes,46.12940862,,Low_spent_Medium_value_payments,299.9404058,0,0.3438,0.7808,0.1939,-0.5341,1.2465 +0x47d1,CUS_0x2e22,August,41,882-68-3751,Lawyer,15551.6,,6,3,13,6,"Not Specified, Student Loan, Not Specified, Payday Loan, Not Specified, and Home Equity Loan",10.82359769,10,11.81,6,Standard,1901.28,34.80162183,16 Years and 0 Months,Yes,39.55843134,64.85956369,Low_spent_Small_value_payments,317.1786716,0,-1.1515,0.5392,0.4155,-2.2213,0.037 +0x47dd,CUS_0x4450,August,22,066-49-5269,Teacher,88220.12,7146.676667,2,1,10.28836175,0,,0,0,3.93,1,Good,617.85,34.54585596,30 Years and 11 Months,No,0,10419.93746,High_spent_Large_value_payments,801.438652,0,-1.1586,0.7907,-1.8491,-1.4612,0.443 +0x47e9,CUS_0x5fd2,August,51,323-80-3554,Musician,138142.16,11719.84667,0,5,1.288361749,4,"Credit-Builder Loan, Personal Loan, Student Loan, and Not Specified",0,2,3.94,3,Good,174.79,24.80915635,17 Years and 9 Months,No,345.741569,864.7518065,High_spent_Small_value_payments,641.4287521,0,1.3565,0.6671,-1.7053,-0.124,1.5355 +0x47f5,CUS_0x82bf,August,28,986-44-5074,Manager,56714.52,,7,10,29,4,"Student Loan, Student Loan, Mortgage Loan, and Not Specified",,24.85356702,11.64,13,_,1943.809006,37.49494189,18 Years and 3 Months,NM,165.3355529,140.4871742,High_spent_Medium_value_payments,400.2982729,0,-0.2734,0.0546,0.6034,-0.1622,0.4656 +0x4801,CUS_0x7f27,August,52,596-88-3424,Entrepreneur,100058.19,8529.1825,7,5,5,4,"Mortgage Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",,18,11.45,6,Standard,1109.15,41.28412642,16 Years and 3 Months,Yes,320.7675611,,High_spent_Large_value_payments,631.3061542,0,0.7547,0.044,-0.8106,-1.3761,-1.0968 +0x480d,CUS_0x8bae,August,23,405-05-7245,Media_Manager,86676.39,7198.0325,7,5,5,7,"Personal Loan, Mortgage Loan, Home Equity Loan, Student Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",,19,15.61,6,Standard,1066.91,31.91030629,8 Years and 10 Months,Yes,453.7034662,52.96009367,High_spent_Large_value_payments,453.1396901,0,0.3318,-0.0428,-0.3866,2.0743,-0.1163 +0x4819,CUS_0x2076,August,26,486-13-8771,Manager,26281.03,2440.085833,8,3,16,3,"Auto Loan, Mortgage Loan, and Not Specified",,20,10.82,7,Standard,267.49,32.32119856,16 Years and 5 Months,Yes,46.42616161,152.7421828,High_spent_Small_value_payments,304.8402389,0,-3.0917,-1.3282,-0.9131,-0.9912,-0.539 +0x4825,CUS_0x34a3,August,40,423-84-9607,Teacher,14407.92,913.66,10,8,31.06745738,6,"Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Personal Loan",41.11507775,21,28.63,11,Bad,4507.000954,34.93829291,0 Years and 9 Months,Yes,67.22055998,39.68355719,Low_spent_Small_value_payments,247.7415949,0,0.4284,0.2245,0.0405,-0.8924,-2.0649 +0x4831,CUS_0x641b,August,80,799-05-0413,Musician,22332.29,,6,7,14,3,"Mortgage Loan, Auto Loan, and Auto Loan",16.95446813,12,10.29,5,Standard,641.6952607,37.60845739,27 Years and 10 Months,No,34.5384986,57.12241593,High_spent_Small_value_payments,373.4976259,0,-0.3424,0.1125,0.6471,0.1486,0.3071 +0x483d,CUS_0x6ca6,August,24,042-68-3497,Writer,15964.31,,10,5,23.06745738,5,"Mortgage Loan, Home Equity Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",35.48527335,20,21.73,15,Bad,4598.620954,33.45110207,,Yes,54.02442559,10000,Low_spent_Medium_value_payments,280.7263791,0,0.934,0.8479,0.0822,-1.0647,1.2632 +0x4849,CUS_0x81d,August,27,806-28-3875,Scientist,43452.15,,3,6,7,5,"Student Loan, Payday Loan, Credit-Builder Loan, Not Specified, and Not Specified",,9,10.4,11,Standard,859.42,28.63181641,10 Years and 3 Months,Yes,155.2601366,247.2939087,Low_spent_Large_value_payments,253.8472048,0,-1.4387,-0.4363,-0.9192,-0.6272,-0.5257 +0x4855,CUS_0xa6a3,August,35,683-20-9568,Engineer,42018.21,3544.5175,0,7,5.288361749,2,"Not Specified, and Student Loan",14.56252452,,15.27,5,Good,379.8193985,37.56180349,19 Years and 11 Months,No,46.28765688,496.4760249,High_spent_Medium_value_payments,490.7092875,0,0.3202,0.3455,0.4007,-0.6306,0.927 +0x4861,CUS_0x4349,August,34,124-74-1413,Manager,86763.16,7138.263333,4,1467,9.177909563,6,"Student Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Personal Loan, and Personal Loan",,13,15.87,10,Standard,959.9,28.00356634,9 Years and 3 Months,Yes,1647.548383,,High_spent_Small_value_payments,327.2203143,0,-1.6705,2.1166,1.0738,0.3512,0.3265 +0x486d,CUS_0x5046,August,27,630-44-3542,Entrepreneur,29901.97,2462.830833,3,4,7,2,"Debt Consolidation Loan, and Debt Consolidation Loan",14.52667633,10.40270968,1.07,1,_,350.9346039,27.57786867,22 Years and 2 Months,No,42.43430891,81.5302641,High_spent_Small_value_payments,382.3185103,0,-1.4594,0.1818,0.5525,-0.2564,-0.7392 +0x4879,CUS_0x66a7,August,41,041-64-1188,Lawyer,36963.52,,10,10,24.95700519,8,"Not Specified, Debt Consolidation Loan, Payday Loan, Payday Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Mortgage Loan",,28.44290472,4.27,17,Bad,3022.162335,31.7556695,13 Years and 10 Months,Yes,1527.084437,177.7419846,High_spent_Small_value_payments,124.3525428,0,1.262,2.5599,-1.2011,-0.7518,-1.6115 +0x4885,CUS_0x7ae7,August,18,#F%$D@*&8,Entrepreneur,18235.61,,8,6,9,2,"Personal Loan, and Payday Loan",21.35644602,15,14.29,9,Standard,1259.92,24.25109713,10 Years and 3 Months,Yes,22.99100815,59.23252816,High_spent_Small_value_payments,309.1398804,0,1.1981,-0.8748,-0.19,-0.3455,-0.5082 +0x4891,CUS_0x64a3,August,28,420-36-8896,Teacher,55916.52,4597.71,809,7,2366,4,"Auto Loan, Mortgage Loan, Student Loan, and Mortgage Loan",14.61944577,13,2.23,2,Standard,1069.61,28.37416888,26 Years and 10 Months,Yes,103.066389,129.7043259,High_spent_Medium_value_payments,477.0002851,0,0.1404,-0.7546,-1.7931,0.9818,-0.7192 +0x489d,CUS_0x49e3,August,29,514-61-2381,Doctor,45139.08,3535.59,8,9,19.88954781,6,"Payday Loan, Not Specified, Debt Consolidation Loan, Not Specified, Payday Loan, and Credit-Builder Loan",25.6218695,19,9.16,,_,1419.66,34.29052016,14 Years and 6 Months,NM,1476.929526,80.59471527,High_spent_Medium_value_payments,351.7046777,0,-0.2093,0.8576,0.0024,-0.8215,0.2712 +0x48a9,CUS_0x42fb,August,37,176-30-1485,Entrepreneur,9589.545,,8,7,33,6,"Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",24.99533779,18,13.71,1903,Standard,1907.73,34.43680393,,Yes,25.24824804,39.64103595,!@9#%8,264.823591,0,2.2385,-0.0655,-1.1224,0.5551,0.4799 +0x48b5,CUS_0xa5e9,August,23,640-46-2271,Teacher,16644.37,1677.030833,6,7,29.06745738,2,"Home Equity Loan, and Not Specified",49.16773489,27.59440313,7.16,10,Bad,1819.164279,33.54184656,18 Years and 4 Months,Yes,16.2482969,76.09493912,High_spent_Small_value_payments,308.6395594,0,-0.5603,-1.0982,-0.3037,-0.5625,0.1434 +0x48c1,CUS_0xbba8,August,18,709-94-0795,Musician,108337.32,8474.980346,3,4,19.28836175,4,"Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",12.81829125,14,11.63,11,Standard,388.5443196,32.8030282,30 Years and 3 Months,Yes,806.6026384,819.6549736,High_spent_Medium_value_payments,543.6809834,0,0.3294,-0.8142,-0.0947,0.2748,-0.2054 +0x48cd,CUS_0x5479,August,56,087-00-0175,Musician,29365.12,,5,5,12,1,Home Equity Loan,,11,7.04,5,_,401.2354197,25.22160475,26 Years and 4 Months,No,21.52158419,,Low_spent_Large_value_payments,348.0677272,0,-0.4578,0.0765,1.4108,-0.0546,-0.744 +0x48d9,CUS_0x3bc7,August,43,799-75-6293,Engineer,64613.32,5232.443333,10,7,33,5,"Mortgage Loan, Payday Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",,18,16.35,14,Standard,1522,31.74400875,10 Years and 11 Months,Yes,235.4387879,201.2401945,High_spent_Medium_value_payments,336.5653509,0,0.0521,-0.9116,1.5692,-2.3013,-1.369 +0x48e5,CUS_0x2b8c,August,26,401-72-9262,Doctor,163380.76,13446.06333,3,3,10,2,"Debt Consolidation Loan, and Auto Loan",,1.175309545,3.91,7,Good,386.4452268,33.05683094,20 Years and 10 Months,NM,198.6325661,617.5997356,Low_spent_Medium_value_payments,808.3740316,0,-0.1447,0.4645,0.3965,0.0599,-2.0042 +0x48f1,CUS_0x62e9,August,33,678-34-4743,Teacher,179948.84,14836.73667,0,5,4,3,"Mortgage Loan, Home Equity Loan, and Student Loan",,0,0.35,4,Good,1234.311021,27.02831395,31 Years and 9 Months,No,446.2593466,674.3317229,Low_spent_Large_value_payments,633.0825972,0,-0.4763,-0.3719,-0.0818,-0.2789,0.5226 +0x48fd,CUS_0x5f64,August,32,231-02-6063,Doctor,31323.88,,10,5,17.06745738,7,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Credit-Builder Loan, and Not Specified",,22.63784601,1.69,14,Bad,2063.549434,34.97068091,13 Years and 2 Months,Yes,135.0358881,45.31951213,High_spent_Large_value_payments,276.7566452,0,-0.4628,-0.6421,-0.1695,-0.2077,-0.6006 +0x4909,CUS_0xb498,August,27,923-33-3914,Media_Manager,7476.3,636.025,6,8,27,2,"Credit-Builder Loan, and Student Loan",,9.497026825,11.58,8,_,2394.854753,38.56227241,13 Years and 0 Months,Yes,9.718145237,58.60730419,Low_spent_Medium_value_payments,275.2770506,0,0.1144,0.2964,-0.7611,-2.0295,1.5875 +0x4915,CUS_0xb378,August,49,757-87-5016,Journalist,18407.68,,4,3,4,4,"Home Equity Loan, Student Loan, Personal Loan, and Credit-Builder Loan",16.71596041,,11.99,0,Good,1199.21,32.43945844,16 Years and 10 Months,No,36.33037309,123.0659053,Low_spent_Large_value_payments,279.2010549,0,-1.1336,-0.6106,-0.0923,1.9218,0.7906 +0x4921,CUS_0x432b,August,41,066-46-4441,Journalist,19620.3,,3,5,14,3,"Not Specified, Payday Loan, and Home Equity Loan",15.94147256,12.77232999,10.45,4,Standard,189.9748062,28.11244677,17 Years and 5 Months,Yes,36.97127884,,Low_spent_Small_value_payments,301.0888493,0,-0.2461,-0.7142,-1.0023,1.3946,0.1633 +0x492d,CUS_0x3356,August,53,050-91-7855,Doctor,30081.37,,1,2,3,1,Mortgage Loan,12.81829125,,9.18,1,Good,1270.025647,34.51946336,30 Years and 4 Months,No,13.67171284,223.0260842,!@9#%8,293.8530996,0,-0.1115,0.8314,1.662,2.2336,1.7948 +0x4939,CUS_0xc5ee,August,30,534-84-1363,Mechanic,16848804,3797.351204,7,6,31,8,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",,25,16.11,12,Bad,4509.888272,34.6748617,6 Years and 11 Months,Yes,519.8004775,224.5547209,!@9#%8,306.8174629,0,-1.4947,-0.4903,0.0257,1.2324,2.6536 +0x4945,CUS_0x3556,August,44,476-34-1130,Mechanic,18957.37,,2,5,3,2,"Debt Consolidation Loan, and Payday Loan",0,2,9.58,3,Good,288.32,37.60310107,17 Years and 9 Months,No,30.62857577,,Low_spent_Medium_value_payments,358.7035528,0,0.3569,0.2272,0.3639,0.4545,-1.0651 +0x4951,CUS_0x8b09,August,47,909-85-2827,Lawyer,132473.04,,3,5,8.288361749,2,"Mortgage Loan, and Payday Loan",14.01001596,,4.37,4,Good,1412.35,37.08918257,33 Years and 2 Months,No,119.4399902,492.3575613,High_spent_Large_value_payments,1137.08191,0,-0.314,-1.0562,1.7729,2.808,0.0325 +0x495d,CUS_0x3183,August,26,131-23-5866,Engineer,104708.79,8717.7325,0,3,0.288361749,2,"Not Specified, Not Specified, and Student Loan",7.513732731,10,8.1,8,Good,201.9025796,35.59036058,20 Years and 5 Months,NM,255.7449322,12028.07451,Low_spent_Medium_value_payments,112.7965787,0,-1.3486,0.9413,1.538,-0.633,-0.7803 +0x4969,CUS_0x2b83,August,34,120-91-8866,Lawyer,33616.73,,2,6,10,1,Payday Loan,0,3,2.73,9,_,1177.032589,26.49604996,,No,24.11185039,68.19298705,High_spent_Large_value_payments,439.0837934,0,-0.7194,-0.0206,1.2225,-0.8688,0.1458 +0x4975,CUS_0xc728,August,24,151-94-4427,Mechanic,19267.17,,6,5,26,6,"Home Equity Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,14.35631102,15.71,12,Standard,1968.549389,35.51633514,13 Years and 8 Months,Yes,77.63093664,189.3721564,Low_spent_Small_value_payments,176.156657,0,1.412,-1.0259,-0.0043,0.8021,-0.1678 +0x4981,CUS_0xa232,August,54,145-48-1658,Manager,123306.12,10321.51,5,874,9,1,Payday Loan,10.47122716,11,6.24,0,Good,827.59,36.27396882,25 Years and 5 Months,No,77.00407799,295.2333802,High_spent_Small_value_payments,919.9135418,0,0.8322,-3.0815,-0.2763,0.4459,1.4403 +0x498d,CUS_0x14e5,August,29,836-69-3439,Doctor,7981.345,412.1120833,9,5,23.06745738,9,"Student Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Not Specified",36.26418984,19.22241518,25.96,9,Bad,4753.434572,40.14869887,0 Years and 11 Months,Yes,57.9316888,28.48164006,Low_spent_Medium_value_payments,208.0775915,0,2.2406,0.5223,1.6071,0.5754,-0.2986 +0x4999,CUS_0x2ced,August,41,499-65-8867,Developer,10987.935,1103.66125,4,4,3,4,"Credit-Builder Loan, Personal Loan, Payday Loan, and Student Loan",6.10413283,8,9.68,6,Good,1264.852938,23.23000672,32 Years and 2 Months,No,51846,70.27776661,Low_spent_Small_value_payments,315.1540367,0,1.1397,-0.2351,-1.4023,1.5404,1.2117 +0x49a5,CUS_0x25ac,August,20,681-66-3380,Teacher,49233,,10,10,22.95700519,6,"Student Loan, Auto Loan, Home Equity Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",34.36926412,20.16722807,26.98,8,Bad,4753.536887,37.18726497,2 Years and 8 Months,Yes,1550.931785,,Low_spent_Small_value_payments,104.8573615,0,-1.0938,0.1562,-0.3555,0.399,0.8542 +0x49b1,CUS_0x29a2,August,26,416-19-6284,Developer,57765.42,4618.785,3,6,13,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",21.35532185,13,12.47,5,Standard,1276.72,25.7862613,13 Years and 0 Months,Yes,124.5485847,241.8078757,Low_spent_Small_value_payments,385.5220396,0,-1.3949,1.0732,0.0124,-0.131,0.3365 +0x49bd,CUS_0xae0,August,36,#F%$D@*&8,Lawyer,147221.48,12046.45667,8,4,20,4,"Student Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",15.57954242,15,22.07,4,Standard,654.4418735,32.35532834,25 Years and 11 Months,Yes,309.6113643,11597.57448,High_spent_Small_value_payments,336.8236483,0,-0.5658,-0.597,1.1787,0.6739,0.8711 +0x49c9,CUS_0x5ecf,August,20,045-82-9696,Lawyer,31736.14,2813.678333,7,9,33.06745738,5,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",37.60701263,18.04167805,-0.77,1189,Bad,2829.190744,27.14032135,20 Years and 6 Months,Yes,121.3479925,115.5375893,Low_spent_Large_value_payments,287.7619636,0,0.5356,0.0068,-0.5812,1.3463,-0.0359 +0x49d5,CUS_0x2cbc,August,53,698-09-7729,Mechanic,105997.47,8711.1225,3,2,8,0,,,3,2.85,5,Good,914.7723587,31.90095388,32 Years and 11 Months,No,0,242.598097,High_spent_Large_value_payments,896.3970156,0,0.3148,0.3646,-0.4154,0.1261,-1.4116 +0x49e1,CUS_0x7fa,August,18,744-95-8181,Accountant,46563.27,3750.2725,7,7,33,2,"Credit-Builder Loan, and Personal Loan",33.24680062,24,10.45,7,Bad,2390.74,34.83518938,11 Years and 9 Months,NM,64.73305243,124.8165406,High_spent_Medium_value_payments,435.4776569,0,1.4001,1.7759,0.6563,-0.6785,-0.1547 +0x49ed,CUS_0x5a67,August,34,#F%$D@*&8,Developer,91308.16,7781.013333,3,7,17,3,"Payday Loan, Student Loan, and Mortgage Loan",,9,13.28,5,Standard,1195.772523,31.39624631,33 Years and 3 Months,Yes,217.2614828,276.8346779,High_spent_Medium_value_payments,566.11269,0,0.9102,0.9221,0.4597,0.4141,-0.0767 +0x49f9,CUS_0x88ca,August,50,626-22-2410,Writer,30020.14,,1,7,3,4,"Student Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",12.68319875,12,1.25,6,_,1292.34,26.89337522,25 Years and 5 Months,No,257.6197136,116.8529403,Low_spent_Small_value_payments,317.5756395,0,-1.1822,0.4439,-0.4724,0.5181,0.9584 +0x4a05,CUS_0xb678,August,27,861-67-5130,Teacher,74268.2,,5,5,15,2,"Personal Loan, and Debt Consolidation Loan",25.70916573,20,7.5,11,Standard,1540.500627,33.98421312,14 Years and 0 Months,Yes,77.65119483,,Low_spent_Medium_value_payments,607.2098762,0,0.8916,-0.1795,-0.5224,0.6788,-1.9675 +0x4a11,CUS_0x2a75,August,43,079-38-0782,Teacher,86092.12,6929.343333,7,3,13.28836175,0,Student Loan,22.62772231,19,11.43,4,Standard,707.95,25.90886608,25 Years and 5 Months,No,64.03988274,,Low_spent_Large_value_payments,251.2369449,0,-1.3934,1.455,-0.3353,0.5462,0.6482 +0x4a1d,CUS_0x89cb,August,47,120-21-4824,Architect,15952.79,,5,1,3,3,"Debt Consolidation Loan, Mortgage Loan, and Payday Loan",10.39797367,9,3.41,6,Good,584.3655548,24.90167679,16 Years and 0 Months,No,25.3844849,25.52527414,High_spent_Small_value_payments,337.0327392,0,1.1498,0.0951,0.4905,0.2788,-1.3313 +0x4a29,CUS_0xeda,August,43,445-18-7956,Mechanic,78999.96,,8,5,20,4,"Payday Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",50.59488892,31.53076003,7.73,16,Bad,2332.437909,37.28195659,9 Years and 9 Months,Yes,138.2606062,,Low_spent_Small_value_payments,224.6140621,0,1.1796,0.6729,1,1.5144,0.8463 +0x4a35,CUS_0x640e,August,29,584-41-4520,Scientist,34107.42,3000.285,8,5,17,2,"Mortgage Loan, and Home Equity Loan",,,,7,Standard,884.77,25.55286879,17 Years and 2 Months,Yes,44.53855484,,Low_spent_Small_value_payments,321.2613711,0,-0.2039,0.3406,-0.6719,1.7961,0.3157 +0x4a41,CUS_0x9e6c,August,33,#F%$D@*&8,Scientist,44360.46,3743.705,3,4,13,0,,23.4277435,16,7.91,7,Standard,565.04,30.861357,30 Years and 11 Months,Yes,0,216.830393,High_spent_Small_value_payments,417.540107,0,0.3581,0.215,1.5622,-1.5691,0.2582 +0x4a4d,CUS_0x4dbd,August,80,825-76-8127,Scientist,25138.62,,8,4,8,3,"Not Specified, Debt Consolidation Loan, and Personal Loan",13.40029288,9,6.05,5,_,291.0218055,30.35489205,27 Years and 8 Months,No,39.75820611,,Low_spent_Small_value_payments,309.9420738,0,-1.0626,1.0629,1.3612,0.2451,-0.0423 +0x4a59,CUS_0x53f9,August,38,250-47-4635,Lawyer,38149.09,3121.090833,1,3,8,3,"Home Equity Loan, Debt Consolidation Loan, and Payday Loan",7.316090565,7,6.72,2328,_,821.91,27.39450446,19 Years and 11 Months,No,90.32160298,300.8986221,Low_spent_Small_value_payments,210.8888582,0,-1.2201,1.3265,-0.091,1.5576,-0.2618 +0x4a65,CUS_0x40fe,August,27,751-18-7527,Mechanic,55229.64,,5,4,5,4,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",17.3222568,13,7.42,1826,Standard,590.3,31.26294558,29 Years and 8 Months,No,124.4958267,,High_spent_Large_value_payments,535.0773493,0,-0.7198,0.6526,0.1917,-0.3133,1.0067 +0x4a71,CUS_0xa11d,August,23,877-60-2559,Manager,57786.18,4910.515,7,4,11,4,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",,,8.89,7,Standard,1876.875753,42.0468677,20 Years and 4 Months,Yes,167.8868033,98.18315619,High_spent_Medium_value_payments,474.9815406,0,-0.3205,-1.1194,-3.6651,0.357,-1.1379 +0x4a7d,CUS_0x8c1,August,28,239-64-7596,Accountant,98917.23,8513.1025,1,4,0.288361749,2,"Payday Loan, and Debt Consolidation Loan",13.31231663,,7.92,5,Good,654.6691477,38.66665869,15 Years and 8 Months,No,115.5313247,1190.773646,Low_spent_Small_value_payments,345.0275439,0,-0.5248,-0.1336,-1.5338,0.0578,0.0964 +0x4a89,CUS_0x3ba0,August,23,719-92-2858,Manager,15803.96,,3,5,15,100,"Mortgage Loan, Not Specified, Home Equity Loan, and Not Specified",27.4398616,19,13.25,6,Standard,931.32,34.69391905,21 Years and 11 Months,Yes,45.03724454,24.1932243,High_spent_Large_value_payments,301.5691978,0,1.2152,-0.2131,0.9528,-0.5175,0.6726 +0x4a95,CUS_0x7fb2,August,42,402-37-0700,_______,13050.62,,7,7,20,2,"Personal Loan, and Student Loan",,19,19.98,4,Standard,884.938356,23.86404573,19 Years and 9 Months,NM,11.09209427,,High_spent_Small_value_payments,289.1325858,0,0.1875,-1.3081,-0.0987,-2.1437,-0.9729 +0x4aa1,CUS_0xaad7,August,35,555-72-2698,Writer,40602.72,3177.56,4,6,14,3,"Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",15.11717768,14,8.08,7,Standard,1314.56,26.91873994,30 Years and 4 Months,No,96.20398492,278.9550642,!@9#%8,212.5969509,0,0.6291,1.3468,0.2949,1.036,-0.5519 +0x4aad,CUS_0xb85a,August,43,991-95-5524,Accountant,56370.98,4973.581667,4,6,3,4,"Auto Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",0,0,6.92,3,Good,809.9297192,29.46415555,18 Years and 3 Months,No,180.8102948,76.22391692,High_spent_Medium_value_payments,490.3239549,0,0.3917,2.0328,-0.0986,-0.9336,-0.5229 +0x4ab9,CUS_0x6e47,August,52,110-25-7439,Teacher,17727.93,1349.3275,6,5,15,4,"Payday Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",18.79229875,18,14.8,8,Standard,1017.2,32.23409358,,Yes,37.83185512,43.17958644,Low_spent_Medium_value_payments,333.9213084,0,1.1684,-1.725,-0.394,1.4899,0.6437 +0x4ac5,CUS_0x8cd2,August,27,147-87-8973,Mechanic,64720.9,5559.408333,4,4,2,3,"Home Equity Loan, Payday Loan, and Personal Loan",,1,0.68,6,Good,1306.78872,30.30877674,33 Years and 3 Months,No,112.177075,241.0001184,High_spent_Medium_value_payments,477.4160337,0,0.3847,1.9331,-0.1409,-0.0412,1.802 +0x4ad1,CUS_0x931c,August,20,183-55-0659,Doctor,19549.47,1897.1225,3,7,25,7,"Payday Loan, Personal Loan, Home Equity Loan, Payday Loan, Not Specified, Home Equity Loan, and Payday Loan",16.83876011,14,12.05,5,_,1924.26,29.76666554,12 Years and 11 Months,Yes,86.85516278,73.85321006,High_spent_Medium_value_payments,279.0038772,0,-0.3404,-1.0404,-0.2172,0.1727,0.9242 +0x4add,CUS_0xac0c,August,43,187-25-3679,Entrepreneur,63876.28,5325.023333,6,5,27,5,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",42.78496084,26.64282022,17.51,16,Bad,4236.78626,34.79281958,1 Years and 3 Months,Yes,160.2043195,241.7329959,Low_spent_Large_value_payments,400.5650179,0,-1.2557,0.3595,0.146,0.0462,-1.0437 +0x4ae9,CUS_0x4b8,August,32,587-15-5826,Accountant,27269.1,2437.425,3,3,9,1,Auto Loan,22.45989108,13.27970794,11.1,3,_,1619.860799,32.60788479,20 Years and 4 Months,No,19.62295059,,Low_spent_Small_value_payments,288.6274428,0,-0.9195,1.03,0.3297,-0.0263,-0.8409 +0x4af5,CUS_0x8cd4,August,51,776-50-5932,Lawyer,20871.24,,3,5,6,0,,12.0788248,11,2.95,0,Good,337.5780762,26.47862621,15 Years and 9 Months,No,0,72.30129586,High_spent_Medium_value_payments,368.3923222,0,-0.4881,0.5858,1.0241,0.0148,0.4482 +0x4b01,CUS_0x11b7,August,33,440-53-1294,Teacher,70099.04,5420.165108,1,1,9.288361749,2,"Mortgage Loan, Personal Loan, and Student Loan",,6,9.85,5,Good,428.944305,28.03084258,24 Years and 4 Months,No,790.339473,570.9498484,High_spent_Medium_value_payments,601.9706932,0,-0.2638,0.7935,0.814,-3.0164,-1.917 +0x4b0d,CUS_0x78db,August,47,242-15-2966,Accountant,97505.64,,3,5,1,0,,20.10803806,,13.56,5,Good,336.0409474,30.27962307,16 Years and 0 Months,No,0,348.3208306,High_spent_Small_value_payments,746.0261694,0,-0.3539,0.2033,-0.338,-0.2042,0.1195 +0x4b19,CUS_0x4a9b,August,19,873-48-7202,Manager,9734.325,876.19375,8,10,31,4,"Credit-Builder Loan, Student Loan, Payday Loan, and Payday Loan",39.80097874,19,1.21,11,Bad,2558.01,29.68869791,13 Years and 9 Months,Yes,17.85398543,,Low_spent_Large_value_payments,300.4040544,0,0.531,0.0158,0.6047,1.5726,0.1586 +0x4b25,CUS_0x834f,August,51,893-19-7441,Accountant,14506463,3096.836667,2,7,9,4,"Auto Loan, Mortgage Loan, Personal Loan, and Not Specified",0,1.216075853,0.92,6,Good,99.71807428,34.46225598,31 Years and 8 Months,No,65254,57.14332182,High_spent_Large_value_payments,415.909991,0,0.6836,0.8201,0.2508,-1.1035,0.1729 +0x4b31,CUS_0x9510,August,32,754-01-5850,Engineer,79772.04,6885.67,4,4,19,3,"Student Loan, Credit-Builder Loan, and Credit-Builder Loan",,16,21.86,6,_,1619.87,30.66322603,10 Years and 4 Months,NM,131.1403179,119.5760848,High_spent_Large_value_payments,677.8505972,0,-1.5919,0.2963,-0.3924,-1.2644,1.4399 +0x4b3d,CUS_0x8d38,August,42,471-94-4094,Scientist,22416.225,,0,6,3,3,"Mortgage Loan, Auto Loan, and Home Equity Loan",13.48902296,11,6.93,2,Good,397.34,31.72145266,19 Years and 9 Months,No,39.03350854,42.9808537,High_spent_Large_value_payments,325.4875128,0,-0.487,-0.4075,0,-0.6253,-0.2204 +0x4b49,CUS_0xe34,August,43,366-72-5485,_______,63658.26,5281.855,3,6,12,2,"Student Loan, and Mortgage Loan",27.69372346,20,,8,Standard,498.59,32.5604033,26 Years and 9 Months,Yes,81.23619472,127.2235614,High_spent_Medium_value_payments,569.7257439,0,0.6209,-1.2148,-1.6022,-0.2057,0.8792 +0x4b55,CUS_0xab8,August,44,403-76-8313,Doctor,74820.12,6511.01,9,6,27,5,"Mortgage Loan, Credit-Builder Loan, Not Specified, Student Loan, and Personal Loan",26.29667944,19.14380127,6.72,9,Bad,2789.54224,28.81888417,3 Years and 2 Months,Yes,255.5801522,,High_spent_Large_value_payments,475.4630134,0,-0.7951,0.675,-0.2242,-1.4867,-0.4351 +0x4b61,CUS_0xb3cb,August,53,304-95-5483,Writer,29462.18,,5,5,8,1,Home Equity Loan,,19,5.03,4,Standard,1477.96,36.32131919,23 Years and 10 Months,No,16.71439473,127.4921796,High_spent_Small_value_payments,366.8115923,0,-0.0442,0.3755,0.6927,1.6255,-0.2665 +0x4b6d,CUS_0x5607,August,37,728-13-8219,Lawyer,118111.08,10072.59,2,6,7,3,"Home Equity Loan, Auto Loan, and Not Specified",8.601391361,3.631436918,4.55,1,Good,422.9628202,33.74582439,,No,219.9504576,847.8047617,Low_spent_Small_value_payments,229.5037807,0,-0.5014,0.5978,-0.3973,-0.2787,-1.6469 +0x4b79,CUS_0x41dc,August,25,054-35-0954,_______,10132.985,,9,7,30.06745738,7,"Debt Consolidation Loan, Payday Loan, Student Loan, Not Specified, Mortgage Loan, Auto Loan, and Not Specified",52.82883779,28.85766113,9.8,6,Bad,2385.128344,29.95231567,15 Years and 4 Months,Yes,45.29827329,81.13026155,Low_spent_Small_value_payments,221.0927189,0,1.2676,1.1341,0.5727,1.14,0.8452 +0x4b85,CUS_0x6a95,August,39,#F%$D@*&8,Journalist,53530.53,4315.8775,8,9,26,7,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",29.00358161,,8.12,11,Bad,1952.97,33.92539508,17 Years and 3 Months,Yes,218.712574,189.8495751,Low_spent_Medium_value_payments,303.0256009,0,1.3412,-0.2765,-1.0753,-0.5258,0.1627 +0x4b91,CUS_0xb350,August,26,423-03-2422,Musician,8918.13,825.1775,7,6,28.06745738,8,"Personal Loan, Payday Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",24.88930679,14,2.9,10,Bad,2136.370954,26.28988634,10 Years and 10 Months,Yes,39.80552904,53.17474174,High_spent_Small_value_payments,222.8171913,0,2.0585,-2.2213,-0.3309,0.7649,-1.9618 +0x4b9d,CUS_0x3798,August,55,698-19-2277,Lawyer,129903.88,10538.32333,7,6,20,1,Home Equity Loan,10.38409189,10,8.13,3,Standard,1227.21,38.3070593,24 Years and 0 Months,Yes,104.7461774,104.6249455,High_spent_Large_value_payments,1084.46121,0,-0.5043,-1.7421,0.0836,0.992,-1.4539 +0x4ba9,CUS_0x2c8f,August,26,364-46-1763,Entrepreneur,54275.88,4758.99,8,10,30.88954781,6,"Not Specified, Auto Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",,19.24641037,4.04,15,Bad,5053.247322,27.71124887,13 Years and 10 Months,Yes,1515.649381,,Low_spent_Small_value_payments,180.9855418,0,-1.2679,-1.4094,-1.9704,-0.6102,-0.9148 +0x4bb5,CUS_0x83cc,August,35,889-16-8033,Engineer,125047.24,,2,5,8.288361749,0,,2.420366236,4,7.83,2208,Good,1223.02,31.7046392,,No,0,,Low_spent_Medium_value_payments,930.5993937,0,0.7133,0.2189,-0.6306,0.0245,-1.4294 +0x4bc1,CUS_0xa972,August,26,974-41-8956,_______,45403.1,3536.591667,5,5,8,0,,14.68028452,12,10.7,8,_,721.95,26.42868258,18 Years and 2 Months,No,0,44.23766622,High_spent_Large_value_payments,549.4215004,0,0.3122,-1.9856,1.5421,1.5568,-1.407 +0x4bcd,CUS_0x38a2,August,39,175-60-9565,Writer,8545.26,,8,9,31.88954781,6,"Credit-Builder Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",,20,19.74,8,Bad,4953.93,35.46088439,10 Years and 8 Months,Yes,1349.975833,94.00371186,Low_spent_Large_value_payments,232.5008735,0,0.1752,-0.8197,-0.357,1.01,-1.6197 +0x4bd9,CUS_0xa8c1,August,46,975-52-9116,Lawyer,32017.75,2905.145833,7,7,8,4,"Payday Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",,23.01650487,,9,Standard,857.8652294,36.79838862,10 Years and 9 Months,Yes,73.28505692,129.9248208,Low_spent_Small_value_payments,377.3047056,0,0.522,-0.7101,0.6831,0.2837,0.892 +0x4be5,CUS_0x8d7,August,36,514-69-0830,Developer,110064.33,9095.0275,5,4,5,2,"Credit-Builder Loan, and Mortgage Loan",27.53967995,19,11.08,1,Standard,456.58,38.11355313,22 Years and 3 Months,No,136.9409831,,High_spent_Large_value_payments,790.3831263,0,0.7123,-0.6664,-1.9506,1.1705,-1.1601 +0x4bf1,CUS_0x39ff,August,31,248-94-4825,Manager,78290.36,6648.196667,5,2,13,0,,,18,9.59,3,_,952.61,39.34192311,23 Years and 9 Months,No,0,43.53379961,High_spent_Large_value_payments,861.2858671,0,-1.1423,-0.4847,0.4562,-0.3462,0.0255 +0x4bfd,CUS_0x8694,August,24,720-71-8141,Accountant,83330.32,7235.193333,10,5,33,9,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",25.98213075,19,4.05,10,Bad,1538.13,37.07520932,18 Years and 0 Months,Yes,342.2434963,72.56401517,High_spent_Large_value_payments,548.7118218,0,-0.4788,0.7478,-1.6481,0.1122,-1.2622 +0x4c09,CUS_0x9df6,August,25,864-05-0116,Developer,8422.385,,3,5,14,4,"Not Specified, Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",25.38198928,20,12.61,13,Standard,62.66,39.94377475,7 Years and 10 Months,Yes,18.91298205,61.06445416,Low_spent_Small_value_payments,297.4091055,0,-0.8222,0.1361,-1.7677,0.4942,0.9024 +0x4c15,CUS_0x7cd8,August,58,454-37-7311,Journalist,60781.48,5312.123333,8,6,9,0,,15.8903157,13,4.14,0,Good,999.6651241,30.53964278,24 Years and 6 Months,No,0,259.0545789,Low_spent_Medium_value_payments,586.4771251,0,-0.1307,-0.9227,-1.118,-0.0854,0.6043 +0x4c21,CUS_0x19b5,August,50,331-73-1353,Mechanic,11855.82,943.985,6,6,17,1,Not Specified,14.6820517,11.49164241,7.89,5,Standard,829.6507172,33.25243479,17 Years and 10 Months,Yes,5.711416879,80.05423293,Low_spent_Small_value_payments,298.6328502,0,-0.6181,-0.353,0.0495,-0.1267,0.811 +0x4c2d,CUS_0x4af2,August,45,129-44-0183,Media_Manager,76208.52,6431.71,5,7,13,1,Credit-Builder Loan,18.69439917,16,8.22,3,Standard,1068.66,29.27931703,22 Years and 8 Months,Yes,35.83540166,479.244162,Low_spent_Small_value_payments,418.0914363,0,-1.9599,0.6247,0.6596,-1.4656,-1.0803 +0x4c39,CUS_0x9ddd,August,30,#F%$D@*&8,Architect,23088.35,1836.029167,7,4,18,3,"Home Equity Loan, Auto Loan, and Personal Loan",,15,19.89,8,Standard,925.28,27.89607661,6 Years and 5 Months,Yes,46.87914183,59.49534741,Low_spent_Large_value_payments,347.2284274,0,-1.5339,2.4131,0.9433,0.497,-0.1816 +0x4c45,CUS_0xa340,August,29,328-38-0262,Developer,60417.68,5237.806667,5,4,18,1,Credit-Builder Loan,14.66371288,12,8.3,4,_,1010.73,34.57190912,32 Years and 8 Months,No,27.46092674,503.8629591,Low_spent_Small_value_payments,282.4567808,0,-0.5848,-1.2556,-2.2903,1.3982,0.4176 +0x4c51,CUS_0xbbfc,August,41,856-48-3446,Musician,33978.57,2685.5475,5,5,6,3,"Mortgage Loan, Personal Loan, and Not Specified",20.85938947,12,13.98,7,Standard,1082.25,38.29540575,16 Years and 3 Months,Yes,60.06864329,272.445395,Low_spent_Small_value_payments,226.0407117,0,-0.2861,-0.4447,-0.5298,0.2468,-0.6085 +0x4c5d,CUS_0x73c2,August,80,145-67-6657,Mechanic,116721.18,9552.765,1,0,12,1,Payday Loan,6.242522052,9,10.12,3,Good,42.20905503,33.27088239,22 Years and 10 Months,No,82.91422169,267.1245322,High_spent_Medium_value_payments,880.4153965,0,-1.3869,-1.3201,-1.1873,1.9192,1.5727 +0x4c69,CUS_0x870d,August,37,164-56-7860,Accountant,9546.425,739.5354167,7,3,5,6,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Payday Loan",,17.52246571,14.11,8,Standard,2172.894564,37.45853091,11 Years and 5 Months,Yes,45.3109903,,Low_spent_Small_value_payments,247.2148601,0,-0.7502,0.3282,-0.2173,-0.6668,0.8271 +0x4c75,CUS_0x76d0,August,51,613-73-2506,Manager,21324.515,1532.042917,0,7,3,4,"Credit-Builder Loan, Student Loan, Home Equity Loan, and Personal Loan",12.68683477,13,3.84,6,Good,361.43,34.25776421,25 Years and 3 Months,No,64.07414237,108.7078203,Low_spent_Small_value_payments,270.422329,0,-0.5482,1.6266,-1.1853,0.523,-1.3639 +0x4c81,CUS_0x73ec,August,22,230-35-9362,_______,35952.45,3174.0375,3,6,16,2,"Payday Loan, and Debt Consolidation Loan",7.448512783,10,18.36,12,_,517.01,38.84582954,16 Years and 8 Months,Yes,59.04075166,165.406298,Low_spent_Small_value_payments,382.9567003,0,0.4403,-0.6905,1.998,-0.937,-1.9372 +0x4c8d,CUS_0x5a04,August,25,641-94-4207,Engineer,7775.33,849.9441667,5,7,31.06745738,3,"Debt Consolidation Loan, Not Specified, and Auto Loan",,11.27324326,16.57,287,Standard,2157.614849,35.98899934,10 Years and 2 Months,Yes,17.49700117,,Low_spent_Small_value_payments,229.5352493,0,0.3384,-0.1125,-0.9672,-1.6746,2.2414 +0x4c99,CUS_0x881c,August,26,248-08-6639,Writer,16803.61,,8,5,25,3,"Personal Loan, Student Loan, and Personal Loan",29.59528936,19.85193644,18.93,7,Standard,1799.901213,37.07504448,16 Years and 2 Months,Yes,22.36577812,76.372512,Low_spent_Small_value_payments,329.3917932,0,-0.5412,-0.1526,1.6521,0.4169,1.1945 +0x4ca5,CUS_0xa303,August,30,#F%$D@*&8,Manager,78390.96,6609.58,9,7,22.06745738,8,"Personal Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",41.43448366,22.07718749,7.18,7,Bad,4933.512796,38.75245238,8 Years and 5 Months,Yes,437.0127529,,Low_spent_Medium_value_payments,102.4082796,0,0.7208,1.373,0.5349,-0.7388,1.6175 +0x4cb1,CUS_0x78e8,August,23,585-82-8337,Doctor,80485.76,6463.146667,0,7,8,0,,4.034377514,7.148427193,4.13,3,Good,1482.028096,33.32343854,23 Years and 10 Months,No,0,191.4428607,High_spent_Medium_value_payments,704.8718059,0,-0.0199,0.2403,0.615,0.7931,-0.5703 +0x4cbd,CUS_0xac60,August,25,930-23-0780,Lawyer,131235.75,,3,4,3.288361749,4,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,7,2.09,4,Good,919.3931979,41.22378526,22 Years and 8 Months,No,343.3022949,616.9058381,High_spent_Medium_value_payments,846.5011048,0,-0.5132,1.4229,-0.0378,-0.8445,-1.4761 +0x4cc9,CUS_0xc3cf,August,37,126-62-0007,Journalist,57827.1,5009.925,3,7,12,1,Home Equity Loan,,10,17.88,8,Standard,1153.03,40.42556825,17 Years and 0 Months,Yes,35.11833053,140.5308503,High_spent_Medium_value_payments,575.3433192,0,0.0243,1.7715,0.5,-1.9269,-0.6533 +0x4cd5,CUS_0xb747,August,47,500-54-3583,Developer,26340.1,,4,5,14.28836175,2,"Mortgage Loan, Credit-Builder Loan, and Student Loan",,11,1.63,1,_,196.1476022,37.44698816,17 Years and 11 Months,No,62.08092868,453.4433273,High_spent_Large_value_payments,396.0354452,0,-0.5431,-0.0273,-0.0793,0.6539,0.8441 +0x4ce1,CUS_0x18af,August,41,327-55-6815,Accountant,56604.96,4515.08,6,8,19,9,"Not Specified, Credit-Builder Loan, Mortgage Loan, Student Loan, Payday Loan, Not Specified, Payday Loan, Auto Loan, and Mortgage Loan",31.45661752,22.90217581,6.09,11,Bad,5275.949953,34.17053613,2 Years and 11 Months,Yes,374.1427095,147.7006898,Low_spent_Medium_value_payments,209.6646007,0,-0.4862,-0.371,-1.6473,-0.3629,0.0007 +0x4ced,CUS_0x5f28,August,31,463-12-9842,Architect,37442.05,,0,5,11,3,"Student Loan, Mortgage Loan, and Auto Loan",8.986478253,9.020086645,8.54,4,Good,1561.139178,36.14555435,27 Years and 10 Months,No,60.11306116,80.07428298,High_spent_Medium_value_payments,417.9297392,0,-0.1671,-0.3615,-0.0985,0.1762,1.2495 +0x4cf9,CUS_0x3655,August,30,#F%$D@*&8,Lawyer,177907.72,13078.43005,0,6,6,0,,9.384220753,10,10.76,0,Good,685.01,45.9246553,31 Years and 2 Months,No,1634.213281,327.2828218,High_spent_Large_value_payments,1383.981512,0,-0.6986,0.5589,-0.4616,-0.2237,-0.4359 +0x4d05,CUS_0x4b19,August,29,354-88-6563,_______,143741.2,12034.43333,3,3,18,0,,27.98296952,19,18.12,8,_,1073.37,35.76799654,23 Years and 11 Months,Yes,0,210.6696407,High_spent_Large_value_payments,1232.773693,0,0.5686,-1.303,-1.2584,0.4227,-0.6014 +0x4d11,CUS_0xf0c,August,36,557-77-1930,Journalist,31911.34,,1,4,4,4,"Not Specified, Student Loan, Credit-Builder Loan, and Not Specified",14.12210846,11,,5,Good,667.3101537,29.45217685,30 Years and 0 Months,No,53.71104494,53.67543323,High_spent_Medium_value_payments,391.4946999,0,-2.4473,-0.9739,0.4906,0.1343,-1.2288 +0x4d1d,CUS_0x26be,August,43,879-76-2190,Musician,78186.56,6540.546667,1,5,5.288361749,100,Not Specified,0,0,8.43,7,Good,328.44,36.08318148,23 Years and 2 Months,No,60.77173437,560.5906246,High_spent_Large_value_payments,692.6297687,0,-0.0543,1.7653,-0.7749,-2.2114,-0.4525 +0x4d29,CUS_0x333c,August,20,835-38-7010,_______,46640.82,3824.735,3,4,890,3,"Home Equity Loan, Not Specified, and Not Specified",20.77517986,19,8.81,2,Standard,758.8013942,23.92867859,30 Years and 0 Months,No,75.53576697,489.3601803,Low_spent_Small_value_payments,154.0724759,0,-0.4956,-0.6033,0.485,-1.7292,2.5174 +0x4d35,CUS_0xd19,August,41,830-21-5902,Entrepreneur,96910.48,7797.873333,7,6,20,2,"Auto Loan, and Home Equity Loan",,20,3.47,7,Standard,456.9,40.31826894,29 Years and 11 Months,No,112.540852,298.7437776,High_spent_Medium_value_payments,618.5027038,0,0.5714,0.373,-1.4035,0.2021,-0.5521 +0x4d41,CUS_0x982a,August,29,045-75-5603,Lawyer,20790.085,,2,7,12,4,"Mortgage Loan, Payday Loan, Personal Loan, and Personal Loan",8.624704585,9.09484874,5.01,5,Good,789.2346685,30.24806522,23 Years and 3 Months,No,50.34316991,155.8480976,Low_spent_Small_value_payments,285.3594408,0,0.979,2.5117,-1.2237,0.7735,1.674 +0x4d4d,CUS_0x5b0a,August,25,418-00-4952,_______,21524.21,,8,7,17,2,"Personal Loan, and Payday Loan",,9,18.83,7,Standard,16.45,37.84896012,,Yes,35.05141446,221.8589361,Low_spent_Small_value_payments,205.1580661,0,1.1953,0.2319,-0.5346,0.159,0.1493 +0x4d59,CUS_0x28a3,August,37,948-70-3925,Architect,88481.16,7082.43,3,4,18,0,,16.33670902,12,13.29,4,Standard,1343.5,25.66327558,,Yes,0,,Low_spent_Medium_value_payments,442.9105663,0,0.7856,-0.0287,0.7195,-0.063,0.1681 +0x4d65,CUS_0xa094,August,37,953-99-7710,Media_Manager,18244.44,1555.37,7,4,15,7,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",25.34632943,21.19803305,18.2,7,Standard,1758.93213,33.90898713,16 Years and 5 Months,Yes,66.98943275,61.35552518,Low_spent_Small_value_payments,317.1920421,0,-1.5884,-0.5779,-0.6582,0.4224,-0.636 +0x4d71,CUS_0x7877,August,31,221-73-6374,Writer,95999.44,7725.953333,7,3,7,0,,29.68516672,20,7.78,6,Standard,1090.59,28.52804934,23 Years and 8 Months,Yes,0,145.68772,High_spent_Medium_value_payments,876.9076134,0,0.3041,0.4425,-2.1944,-0.3079,-0.2295 +0x4d7d,CUS_0x832d,August,80,943-97-7546,Teacher,42052.74,,7,7,8,3,"Personal Loan, Home Equity Loan, and Credit-Builder Loan",25.83672622,17,12.51,10,Standard,444.77,35.75943997,14 Years and 2 Months,Yes,66.53508304,116.6600891,High_spent_Medium_value_payments,445.8443279,0,0.6323,-0.6023,0.4376,0.1721,2.3107 +0x4d89,CUS_0x8715,August,53,368-39-6835,Scientist,32012.4,,1,1,3,1,Credit-Builder Loan,13.28900259,,7.03,0,_,996.5602839,27.31411272,26 Years and 9 Months,No,20.64424805,65.62537682,High_spent_Large_value_payments,400.2884993,0,0.4578,0.0407,-0.2941,0.9084,-1.015 +0x4d95,CUS_0x88c1,August,23,417-39-8051,Developer,102412.35,8290.3625,5,6,8,0,,,17,11.13,,_,719.06,30.66242118,19 Years and 0 Months,NM,0,202.7545137,High_spent_Large_value_payments,866.2817363,0,-0.6674,-0.5858,-0.5355,1.1982,-0.4236 +0x4da1,CUS_0x74f9,August,24,739-35-4103,Mechanic,68988.68,,5,4,7,2,"Debt Consolidation Loan, and Not Specified",3.511861126,4,7.15,6,Good,1106.06,26.59085441,32 Years and 4 Months,No,101.3581309,109.5263735,High_spent_Large_value_payments,623.3211622,0,-0.0831,-1.8719,0.6318,0.6671,-0.5458 +0x4dad,CUS_0x71d,August,48,331-56-3207,Accountant,69869.92,,4,5,13,2,"Home Equity Loan, and Not Specified",,21.70626054,11.42,0,Standard,250.740053,37.7320872,33 Years and 6 Months,Yes,99.35750005,,High_spent_Medium_value_payments,539.7375174,0,-0.8669,-2.561,-1.4525,1.1451,-0.7299 +0x4db9,CUS_0x8b8,August,39,111-65-7825,Teacher,15707.85,1048.9875,4,4,13,1,Mortgage Loan,12.25515947,10,7.59,10,Standard,1382.26,31.92995241,8 Years and 2 Months,Yes,10.81138964,98.90485188,Low_spent_Medium_value_payments,275.1825085,0,-0.2698,-0.4296,0.75,-0.5266,0.4074 +0x4dc5,CUS_0x6e64,August,38,#F%$D@*&8,Scientist,41176.49,3427.374167,0,4,10.28836175,2,"Personal Loan, and Credit-Builder Loan",0,4,2.5,5,Good,46.05,31.55628463,21 Years and 4 Months,No,52.52158963,562.2654687,High_spent_Medium_value_payments,397.8878193,0,-0.2083,1.3719,-1.1966,-0.6642,0.0495 +0x4dd1,CUS_0x4519,August,35,008-22-7725,Developer,8631.04,,8,8,19.06745738,8,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",42.69163208,25,21.54,14,Bad,4513.720954,39.57472178,12 Years and 11 Months,NM,49.24068791,37.98203619,Low_spent_Large_value_payments,224.3823213,0,1.6823,0.0709,-1.1948,-0.4733,-0.4673 +0x4ddd,CUS_0x160a,August,27,262-33-6347,_______,18094.55,,9,10,19.06745738,7,"Auto Loan, Not Specified, Mortgage Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",,19,28.47,12,Bad,2896.710954,27.35243835,,NM,99.26816949,10.79985456,High_spent_Large_value_payments,260.2996047,0,0.1712,-0.0872,-0.775,0.9401,-0.3024 +0x4de9,CUS_0x9434,August,21,198-95-2369,Doctor,55907.52,,3,9,15,5,"Personal Loan, Mortgage Loan, Not Specified, Home Equity Loan, and Student Loan",10.30673276,11,8.71,15,Standard,1474.63,32.12761426,19 Years and 6 Months,Yes,192.7010399,231.4024258,High_spent_Small_value_payments,290.2925343,0,-1.4168,0.1485,0.5674,-0.2612,-0.0761 +0x4df5,CUS_0x8e2,August,43,299-21-2157,Journalist,84114.48,6848.54,8,4,11.28836175,2,"Personal Loan, Payday Loan, and Personal Loan",17.59148381,16,17.49,7,Standard,1080.17,32.58171668,31 Years and 2 Months,Yes,208.3527636,,Low_spent_Medium_value_payments,503.4275953,0,-0.9495,0.6152,-0.4738,0.8468,-0.4191 +0x4e01,CUS_0xabd6,August,36,815-87-8528,Teacher,8155.79,,9,5,28.06745738,6,"Student Loan, Auto Loan, Student Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,17,28.08,15,Bad,3313.490954,36.74831036,12 Years and 5 Months,Yes,25.39957187,27.83346796,Low_spent_Small_value_payments,248.1115889,0,1.0307,1.3502,-1.748,0.4027,-0.4407 +0x4e0d,CUS_0xc3d8,August,27,781-21-4555,Developer,138722.36,11264.19667,5,4,2.288361749,0,,3.254650788,6,4.61,9,Good,1474.32,41.49490238,21 Years and 8 Months,No,0,751.137389,High_spent_Small_value_payments,1055.219739,0,-0.3679,-0.0168,0.9987,1.0355,1.7389 +0x4e19,CUS_0xb5aa,August,18,419-67-9786,_______,49417.52,,4,5,9,6,"Student Loan, Student Loan, Personal Loan, Personal Loan, Mortgage Loan, and Not Specified",,19,8.69,9,Standard,1182.62,38.34526647,15 Years and 5 Months,Yes,162.1273361,31.07059004,High_spent_Large_value_payments,464.3147406,0,-0.271,0.6461,1.4677,-0.6491,0.719 +0x4e25,CUS_0x4b3c,August,22,#F%$D@*&8,Teacher,29880.29,,4,6,14,0,,21.72435647,16,,2,Standard,1262.95,27.41786784,31 Years and 2 Months,Yes,0,107.3514616,Low_spent_Large_value_payments,386.5509551,0,1.2364,-1.6215,1.1765,1.4882,-0.2229 +0x4e31,CUS_0xa9c1,August,28,448-15-3289,Media_Manager,70218.36,,8,3,6,7,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Payday Loan, Not Specified, and Payday Loan",13.51101119,10,9.12,5,Standard,1332.843083,34.47481615,7 Years and 4 Months,Yes,305.4321968,422.8994034,Low_spent_Large_value_payments,185.9829515,0,0.5618,0.0411,-0.4418,-0.4883,-0.6055 +0x4e3d,CUS_0x2cfe,August,58,258-99-9292,Mechanic,38694.66,,2,3,2,3,"Home Equity Loan, Payday Loan, and Payday Loan",,11,1.72,2,Good,627.4799015,30.787401,32 Years and 10 Months,No,70.47947806,46.78373333,High_spent_Medium_value_payments,446.8658929,0,0.1586,-1.504,-1.1405,0.6075,-0.4257 +0x4e49,CUS_0x59ba,August,55,242-77-0513,Journalist,32985.87,2928.8225,2,988,2,0,,10.40887657,10,6.17,8,Good,916.2087687,24.58448712,,NM,0,255.1994829,Low_spent_Medium_value_payments,356.0085008,0,1.422,-1.4608,0.0129,0.2807,-0.841 +0x4e55,CUS_0x811f,August,38,625-89-3582,Architect,7493.335,,7,4,19.06745738,2,"Payday Loan, and Student Loan",24.54891887,15,12.47,6,_,1555.860954,24.32917711,19 Years and 10 Months,NM,12.31920159,10000,Low_spent_Small_value_payments,263.4066693,0,-0.201,0.319,0.8482,0.3776,-0.3153 +0x4e61,CUS_0x6c49,August,46,#F%$D@*&8,Accountant,81471.96,6763.33,6,6,25,5,"Student Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,15.39224491,27.09,6,_,2985.96793,39.14046309,11 Years and 6 Months,Yes,202.857783,87.26288726,High_spent_Large_value_payments,626.2123297,0,1.5037,0.7349,0.0158,0.3673,-0.2233 +0x4e6d,CUS_0x292b,August,47,318-24-7537,Engineer,84074.88,,0,1,5.288361749,4,"Student Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",0,3,2.87,5,Good,363.2742554,34.73763515,28 Years and 6 Months,No,206.7406324,11811.93562,High_spent_Large_value_payments,646.6287223,0,0.2039,0.3613,-0.1228,0.2316,-0.7608 +0x4e79,CUS_0x2ba8,August,34,158-66-2244,Teacher,81427.02,6877.585,2,2,2.288361749,4,"Personal Loan, Personal Loan, Personal Loan, and Auto Loan",0,0,2.35,1,Good,16.30098626,22.60717604,18 Years and 11 Months,No,144.1510187,1191.394226,Low_spent_Small_value_payments,145.171858,0,0.3843,0.1599,0.187,0.6563,0.5938 +0x4e85,CUS_0xc27,August,42,#F%$D@*&8,Media_Manager,34956.58,,0,310,11,3,"Personal Loan, Debt Consolidation Loan, and Auto Loan",0,1,9.86,5,_,595.8,30.26700141,16 Years and 0 Months,NM,59.15521313,,!@9#%8,427.4109957,0,-1.0992,-1.3573,0.1731,-2.1748,-0.2298 +0x4e91,CUS_0xa7aa,August,43,077-76-6515,Musician,21039.96,1493.33,3,3,5,3,"Auto Loan, Credit-Builder Loan, and Auto Loan",14.72577596,10,13.55,4,Standard,659.6,30.62961121,6 Years and 6 Months,Yes,28.24930672,69.93037172,Low_spent_Medium_value_payments,331.1533216,0,0.1677,-0.7682,-0.6161,-0.5087,-0.0329 +0x4e9d,CUS_0x6ed3,August,45,416-26-7759,Developer,82402.34,7056.861667,2,7,2,4,"Payday Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",5.082366595,8,6.26,6,Good,633.2292783,40.28762283,19 Years and 4 Months,No,146.796776,633.0759595,Low_spent_Medium_value_payments,292.903222,0,0.6825,-0.2405,-0.1922,-0.1071,1.0697 +0x4ea9,CUS_0x2b6e,August,33,698-26-2985,Doctor,19633.99,,7,1196,32,4,"Auto Loan, Personal Loan, Home Equity Loan, and Credit-Builder Loan",34.43721805,19,7.41,10,Bad,1457.54,34.15796989,,Yes,62.6712623,114.2055994,Low_spent_Medium_value_payments,275.1397217,0,0.4403,1.016,0.0603,-1.4847,0.7236 +0x4eb5,CUS_0x8ecf,August,35,879-56-3473,Journalist,70978.44,,6,4,21,5,"Personal Loan, Student Loan, Auto Loan, Auto Loan, and Mortgage Loan",,19.33264174,26.58,8,_,1768.905185,28.59476872,14 Years and 6 Months,Yes,262.8315664,404.8733487,Low_spent_Large_value_payments,201.6820849,0,-2.7599,0.121,-1.0434,2.0937,-1.0873 +0x4ec1,CUS_0x6672,August,48,096-10-4575,Lawyer,17577.76,1762.813333,3,5,19,2,"Debt Consolidation Loan, and Mortgage Loan",,12,9.58,0,Standard,1447.93,36.44851899,,Yes,29.2954665,12.46396472,High_spent_Large_value_payments,374.5219021,0,0.1073,1.0498,0.6818,-0.5927,-0.8377 +0x4ecd,CUS_0xbe3b,August,33,140-48-5616,Doctor,82623,7138.25,8,5,19,6,"Auto Loan, Mortgage Loan, Student Loan, Student Loan, Personal Loan, and Personal Loan",31.78668046,23.87643842,26.95,9,_,5463.343123,31.53323276,2 Years and 2 Months,Yes,269.8535949,739.682791,Low_spent_Medium_value_payments,,0,-0.1375,-0.8162,-0.1567,0.3735,0.0304 +0x4ed9,CUS_0xb4d3,August,54,986-46-9529,Accountant,41070.53,3364.544167,2,2,7,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",11.24528184,12,9,1,Good,1276.306538,38.05737934,20 Years and 9 Months,No,80.59190818,149.9432659,High_spent_Medium_value_payments,373.7284495,0,-0.7437,0.9717,-1.2632,0.7101,-0.1625 +0x4ee5,CUS_0x15d5,August,28,296-39-6431,Teacher,72207.52,,6,7,21,5,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Not Specified, and Auto Loan",53.6392161,33.23292755,8.61,16,Bad,2036.850228,33.78807102,13 Years and 4 Months,Yes,287.6237921,284.3225641,High_spent_Small_value_payments,276.1829772,0,-0.3586,0.899,-0.6837,-0.7366,0.2974 +0x4ef1,CUS_0x4c56,August,42,673-06-2525,Mechanic,82196.31,6957.6925,8,5,12,0,,10.83461068,8,19.31,0,Standard,888.94,38.03807184,23 Years and 4 Months,Yes,0,187.0115926,High_spent_Medium_value_payments,758.7576574,0,1.861,-0.429,1.0246,-0.423,-2.4165 +0x4efd,CUS_0x505f,August,42,687-21-4004,Manager,14722.08,,8,6,17,1,Debt Consolidation Loan,20.47372145,,9.85,7,Standard,1307.84,27.51264045,17 Years and 9 Months,NM,10.85597245,81.30784864,High_spent_Small_value_payments,292.7201789,0,-0.2797,-0.2886,1.1244,0.4598,-0.7497 +0x4f09,CUS_0xc48c,August,52,129-28-5358,Musician,33720.51,2678.0425,7,4,16,2,"Home Equity Loan, and Personal Loan",19.80159883,,5.47,6,_,647.0216251,28.93187251,32 Years and 11 Months,Yes,43.61419715,203.5531307,Low_spent_Large_value_payments,290.6369222,0,-0.5671,0.9408,0.7883,1.4224,0.1648 +0x4f15,CUS_0xb793,August,27,405-60-2301,Teacher,81091.76,6424.489495,9,6,25,9,"Home Equity Loan, Student Loan, Not Specified, Student Loan, Mortgage Loan, Not Specified, Payday Loan, Student Loan, and Student Loan",32.7980148,22.99786547,7.92,10,Bad,1951.666987,27.44705644,9 Years and 11 Months,Yes,624.7130866,151.7325647,High_spent_Medium_value_payments,313.0761866,0,-0.1532,-0.6074,-1.2622,-0.8648,0.2903 +0x4f21,CUS_0x8f8c,August,80,682-44-4822,Mechanic,16454.75,1106.229167,8,5,28,7,"Mortgage Loan, Not Specified, Credit-Builder Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",33.7538096,23,17.47,13,Bad,4749.97,25.66137979,10 Years and 5 Months,Yes,50.99934528,41.75097783,High_spent_Small_value_payments,277.8725936,0,0.0891,0.8702,-1.6053,0.1135,1.2859 +0x4f2d,CUS_0x664c,August,19,482-10-4462,Doctor,72125.2,6094.433333,3,5,12,2,"Debt Consolidation Loan, and Home Equity Loan",18.12137485,16,13.52,6,Standard,95.23,36.74596298,20 Years and 2 Months,Yes,84.48929614,75.72497419,High_spent_Medium_value_payments,699.229063,0,0.604,-0.4518,-0.6479,-1.6815,-0.3017 +0x4f39,CUS_0x12dd,August,42,954-59-1206,Developer,31754.27,,1,3,11,4,"Mortgage Loan, Payday Loan, Mortgage Loan, and Payday Loan",0,1,6.81,5,_,583.9572643,28.33336933,19 Years and 3 Months,NM,76.53550481,213.7809697,Low_spent_Small_value_payments,277.5687654,0,0.8197,-1.1803,-1.236,0.3192,0.6794 +0x4f45,CUS_0x10ff,August,36,149-03-5931,Accountant,16341.075,,4,4,6,2,"Auto Loan, and Student Loan",23.30060666,20,,4,Standard,684.05,39.40519544,,No,16.96046046,151.9541276,Low_spent_Small_value_payments,250.3610369,0,-0.7125,1.1065,-1.058,-1.2113,0.5721 +0x4f51,CUS_0xbc51,August,36,239-02-8972,Architect,32881.92,,4,7,10,2,"Mortgage Loan, and Personal Loan",,1,4.6,0,Good,479.81,28.37183214,19 Years and 2 Months,No,33.24319986,10000,Low_spent_Small_value_payments,394.4151703,0,0.7692,0.2837,-0.5164,0.0461,-0.0128 +0x4f5d,CUS_0x9bd1,August,24,304-90-3014,Doctor,46850.7,3837.225,5,4,20,5,"Student Loan, Payday Loan, Student Loan, Auto Loan, and Payday Loan",,12,7.23,10,Standard,1676.93,36.52901158,,Yes,194.8209168,,High_spent_Large_value_payments,380.8296587,0,0.9775,-0.6359,0.0735,-0.1354,1.0998 +0x4f69,CUS_0x7da5,August,46,583-23-0384,Architect,64118.72,,4,7,33,6,"Debt Consolidation Loan, Payday Loan, Auto Loan, Auto Loan, Student Loan, and Payday Loan",20.06233091,12.57617133,13.2,9,Standard,1876.310164,29.23138735,12 Years and 10 Months,Yes,285.4860277,142.4059988,High_spent_Medium_value_payments,345.0306402,0,-1.9135,-0.2502,0.245,-0.4884,-0.3592 +0x4f75,CUS_0xb7c,August,32,306-55-0553,Scientist,7944.18,,8,8,19.06745738,2,"Debt Consolidation Loan, and Not Specified",,23.87210313,3.35,12,Bad,2218.822829,27.28193929,11 Years and 6 Months,Yes,10.56153503,43.43948777,High_spent_Small_value_payments,243.9801893,0,-0.5276,0.2207,-0.8212,0.566,-0.066 +0x4f81,CUS_0x8688,August,47,200-70-4803,Media_Manager,88983.52,7675.293333,2,3,9,1,Credit-Builder Loan,0,1,6.45,4,Good,1450.68,39.9374094,26 Years and 10 Months,No,66.33148128,157.1733624,High_spent_Large_value_payments,784.0244897,0,-0.8614,0.1539,-0.2844,-0.2844,1.6224 +0x4f8d,CUS_0x7292,August,50,439-78-9960,Developer,19199.49,,3,1,4,2,"Student Loan, and Debt Consolidation Loan",,6,4.11,3,Good,355.9664825,37.52594415,26 Years and 6 Months,No,31.85522003,138.7086142,Low_spent_Large_value_payments,281.2124231,0,-0.626,0.7853,-1.0421,0.7832,-0.8883 +0x4f99,CUS_0xf5d,August,33,639-88-1232,Accountant,64560.52,,9,10,20.06745738,9,"Personal Loan, Not Specified, Mortgage Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Payday Loan, Payday Loan, and Home Equity Loan",31.86917878,17.90390749,33.61,10,Bad,4017.260266,37.58916528,,Yes,447.8341525,,!@9#%8,132.2677578,0,0.3703,-0.0577,0.4568,-0.6787,-1.4254 +0x4fa5,CUS_0xa52,August,28,201-13-7255,Entrepreneur,80892.92,6767.076667,565,4,23,6,"Mortgage Loan, Auto Loan, Payday Loan, Auto Loan, Payday Loan, and Auto Loan",15.39707343,,14.11,,_,1943.850161,31.13466215,7 Years and 2 Months,Yes,250.5471427,121.6764067,High_spent_Large_value_payments,544.4841172,0,-0.6979,0.6707,-0.6687,0.1432,1.0983 +0x4fb1,CUS_0x138b,August,42,307-80-8496,Engineer,34019.26,,6,5,30.06745738,7,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Not Specified, and Auto Loan",41.053532,18.72566104,6.46,12,Bad,2208.311769,37.38290866,15 Years and 6 Months,Yes,174.0963657,302.5245886,Low_spent_Small_value_payments,82.35259109,0,0.0111,-1.6685,-0.2959,1.8563,0.2165 +0x4fbd,CUS_0x8cff,August,22,707-43-8184,_______,9345.955,,6,7,24,7,"Not Specified, Home Equity Loan, Auto Loan, Personal Loan, Payday Loan, Student Loan, and Home Equity Loan",23.06314023,,28.71,6,Bad,4582.82224,31.00897219,3 Years and 4 Months,Yes,51.51244452,,Low_spent_Medium_value_payments,248.4793103,0,-1.2152,0.5458,2.3779,-2.4415,-0.4479 +0x4fc9,CUS_0x840a,August,41,779-76-1190,Lawyer,21302.97,,8,3,15,100,"Student Loan, Payday Loan, and Debt Consolidation Loan",,18,12.52,4,_,481.28,30.3344836,32 Years and 10 Months,NM,48.93924619,97.96171742,High_spent_Small_value_payments,293.0237864,0,-0.7991,-1.2074,-0.1486,1.6293,0.0705 +0x4fd5,CUS_0x63ea,August,33,378-61-1989,Engineer,9211.98,,7,6,23,7,"Personal Loan, Not Specified, Payday Loan, Auto Loan, Not Specified, Personal Loan, and Not Specified",26.74023146,20.57241902,-0.89,9,Bad,2160.974456,37.66093094,9 Years and 11 Months,Yes,27.28395086,57.99547639,!@9#%8,281.6870727,0,-0.1534,-1.0882,0.0904,1.7116,1.0886 +0x4fe1,CUS_0x2058,August,80,964-56-1036,Journalist,14501.97,,8,6,30,100,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",,19.04073389,17.64,6,Bad,5121.974655,22.69901754,,Yes,35.28483112,139.2247989,Low_spent_Small_value_payments,263.2401199,0,-0.5148,-0.0005,-0.6719,0.2727,0.9282 +0x4fed,CUS_0x6f72,August,36,948-68-6332,Teacher,8961.865,,6,7,24.06745738,6,"Credit-Builder Loan, Student Loan, Auto Loan, Not Specified, Mortgage Loan, and Student Loan",,20.23048758,19.04,13,Bad,4108.983341,38.70717835,14 Years and 6 Months,Yes,26.91462756,,Low_spent_Small_value_payments,226.1702123,0,1.265,0.4873,-0.7565,0.0121,0.638 +0x4ff9,CUS_0x3d5b,August,33,929-10-9575,Architect,11703.605,,8,4,20,0,,26.52555967,19,13.87,7,Standard,1175.56,25.72193897,,Yes,0,69.16501007,Low_spent_Small_value_payments,320.1650316,0,-0.6029,-0.4045,1.2118,-1.3809,-1.5718 +0x5005,CUS_0x63c2,August,49,602-93-9483,Accountant,151085.88,12540.49,2,7,5.288361749,2,"Student Loan, Mortgage Loan, and Student Loan",12.81829125,,2.25,4,_,1015.74,40.90918595,33 Years and 4 Months,No,323.01511,722.0936813,High_spent_Large_value_payments,868.8776697,0,0.0782,1.4296,0.822,0.5617,0.9071 +0x5011,CUS_0x13a8,August,41,918-56-2439,Journalist,97059,,3,2,9,0,,,10,9.94,5,Good,177.592583,39.93996906,33 Years and 5 Months,No,0,240.2845999,High_spent_Large_value_payments,858.9056074,0,2.4557,-0.6606,1.3976,-0.4309,0.4391 +0x501d,CUS_0x327d,August,41,898-35-4224,Lawyer,17122.37,,7,5,12,2,"Mortgage Loan, and Home Equity Loan",,16,8.52,9,Standard,1663.18,31.5146047,11 Years and 9 Months,Yes,21.15095856,63.97170458,Low_spent_Small_value_payments,323.2637535,0,-0.9562,-0.9107,0.0431,0.5156,0.3787 +0x5029,CUS_0x4390,August,25,432-21-8763,Musician,61664,4930.666667,6,3,16,4,"Personal Loan, Credit-Builder Loan, Not Specified, and Personal Loan",17.74146429,15,19.34,11,Standard,218.72,31.37003126,29 Years and 5 Months,Yes,204.8453303,195.9653264,High_spent_Small_value_payments,352.25601,0,0.2419,0.8079,0.6193,-2.4751,-0.9491 +0x5035,CUS_0xc2ba,August,24,476-61-8687,Manager,10062.445,,7,5,4034,1,Home Equity Loan,25.18685781,18,12.69,2,Standard,954.97,37.97753682,,Yes,7.42456818,,Low_spent_Small_value_payments,257.3809453,0,-1.0061,-0.664,2.5201,-0.5558,-0.6897 +0x5041,CUS_0x29e9,August,39,499-31-6441,Teacher,56157.03,,8,9,31,5,"Payday Loan, Not Specified, Home Equity Loan, Payday Loan, and Not Specified",37.36141423,23,20.24,13,Bad,3403.79,23.37855035,12 Years and 11 Months,Yes,537.5649697,186.9212587,High_spent_Medium_value_payments,357.6311534,0,-1.3429,-0.9051,1.0259,0.9533,-0.2361 +0x504d,CUS_0xa2b2,August,53,#F%$D@*&8,Manager,71305.22,,8,4,18,0,,,15,8.49,5,Standard,1004.26,36.51656362,23 Years and 5 Months,No,0,162.0240616,High_spent_Small_value_payments,689.3861051,0,0.9477,1.2147,0.8828,-1.2222,-0.8162 +0x5059,CUS_0x523b,August,46,967-55-6862,Developer,43742.01,,2,6,12,0,,13.27817942,11,8.69,,_,59.06,24.91020899,18 Years and 3 Months,NM,0,63.02230393,High_spent_Large_value_payments,556.1944461,0,0.2884,0.6976,-0.4899,0.9041,0.6579 +0x5065,CUS_0xc42d,August,38,467-64-3033,Teacher,28840.8,,3,4,6,1,Personal Loan,0.596870787,5,7.64,3,_,996.35873,27.57059744,19 Years and 10 Months,No,19.43780868,75.32694733,High_spent_Medium_value_payments,383.0942016,0,0.9129,0.0353,-1.621,0.3267,-1.2404 +0x5071,CUS_0x1b4d,August,28,446-41-8824,Mechanic,140919.04,12025.25333,7,3,288,5,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",12.75319176,11,16.48,8,Standard,775.02,30.26845118,10 Years and 6 Months,Yes,352.9381413,1057.135929,Low_spent_Medium_value_payments,72.45126331,0,-0.0579,-0.06,-0.3242,-1.0721,1.5461 +0x507d,CUS_0x268f,August,50,270-99-3172,Manager,65448.14,,3,3,10,3,"Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",17.86059155,11.79502205,0.66,8,_,449.1443892,35.09807736,24 Years and 9 Months,No,96.75535859,,Low_spent_Medium_value_payments,180.6882158,0,-0.7971,-0.733,-1.1946,-1.4566,0.2886 +0x5089,CUS_0x3ba7,August,33,827-88-5387,Writer,100716.36,8413.03,8,4,16.28836175,0,,7.580488308,9.291191504,9.69,6,Standard,690.1004205,24.59046858,16 Years and 8 Months,No,0,818.100855,Low_spent_Medium_value_payments,723.139606,0,-1.5426,0.8036,0.7804,0.3845,-0.4165 +0x5095,CUS_0x1b2a,August,25,315-88-0518,Teacher,16603.43,,8,10,31.06745738,3,"Student Loan, Payday Loan, and Home Equity Loan",16.67299566,10.08449568,19.81,16,Standard,2472.504523,42.36799685,,Yes,31.85573248,10000,Low_spent_Medium_value_payments,239.5550306,0,-2.0977,0.4041,-1.8307,0.0248,0.2574 +0x50a1,CUS_0x229f,August,45,547-53-2472,Scientist,20261.85,1598.4875,7,7,17.06745738,7,"Student Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Auto Loan, and Debt Consolidation Loan",,20.59747696,9.09,10,Bad,1681.015225,28.00748618,14 Years and 9 Months,Yes,96.40963543,,Low_spent_Small_value_payments,254.4936319,0,0.8239,-0.6897,1.1628,0.4293,0.4415 +0x50ad,CUS_0xa961,August,29,480-36-1343,Entrepreneur,38577.6,,9,10,20,2,"Payday Loan, and Student Loan",39.3525857,25,11.03,8,_,1312.04,38.96801537,13 Years and 6 Months,Yes,36.43757603,139.1603721,High_spent_Medium_value_payments,421.3820519,0,0.6839,0.0636,-0.4921,2.2901,-0.3431 +0x50b9,CUS_0xb548,August,23,065-56-2209,Architect,33882.6,2841.55,6,7,5,2,"Home Equity Loan, and Home Equity Loan",9.614850983,10,7.55,6,Standard,1240.48,39.53587298,9 Years and 0 Months,Yes,36.26074809,,Low_spent_Small_value_payments,153.7544648,0,0.5805,-0.7816,-0.9672,1.5347,0.5095 +0x50c5,CUS_0x310f,August,45,892-47-5831,Mechanic,30909.93,2554.8275,4,6,5,1,Debt Consolidation Loan,14.34272866,13,2.99,4,Standard,1202.05,40.5376356,20 Years and 9 Months,Yes,21.44436799,202.050793,Low_spent_Small_value_payments,321.987589,0,0.5172,-0.6798,-0.2866,0.2637,0.6254 +0x50d1,CUS_0x3434,August,19,#F%$D@*&8,Teacher,20380.41,,7,6,30.06745738,4,"Credit-Builder Loan, Payday Loan, Auto Loan, and Credit-Builder Loan",,31.23882124,4.2,12,Bad,2188.534156,30.10026309,13 Years and 5 Months,Yes,63.64412935,59.59954184,Low_spent_Large_value_payments,278.1727909,0,-0.6853,0.7931,-0.168,-0.15,-0.0061 +0x50dd,CUS_0x44ec,August,28,856-69-9384,Doctor,162144.64,13743.05333,1,6,5,1,Not Specified,8.748165276,7,5.02,5,Good,80.76,47.17844594,17 Years and 5 Months,No,117.6586807,,High_spent_Small_value_payments,1276.32718,0,1.2602,-0.5449,-0.1045,1.6822,0.8382 +0x50e9,CUS_0x7072,August,37,208-85-9616,Teacher,35952.25,,0,4,6,0,,10.41205378,9,11.93,4,Good,426.059588,38.48620787,17 Years and 10 Months,No,0,216.7370556,Low_spent_Large_value_payments,377.6129774,0,-2.7792,0.6875,-1.2413,1.7924,-1.2242 +0x50f5,CUS_0x9ce0,August,34,347-83-4432,Entrepreneur,21964.79,1783.399167,5,2,11,3,"Home Equity Loan, Mortgage Loan, and Not Specified",1.776898558,5,11.38,5,Good,1016.297207,31.35899365,33 Years and 2 Months,No,39.95829793,,High_spent_Large_value_payments,345.6440595,0,-0.1669,0.01,-0.4203,-0.0106,1.4895 +0x5101,CUS_0x6187,August,40,112-38-6623,Scientist,44941.95,3946.1625,4,6,3,1,Payday Loan,4.293647444,7,4.32,7,Good,1069.086224,24.00891582,31 Years and 2 Months,No,22.43472478,,High_spent_Small_value_payments,481.6934628,0,-0.9653,0.0924,0.9238,-0.3656,0.1602 +0x510d,CUS_0x26a5,August,24,335-81-7203,Lawyer,62862.69,5155.5575,5,5,13,4,"Credit-Builder Loan, Payday Loan, Personal Loan, and Credit-Builder Loan",11.39923967,8,7.45,11,_,676.09,22.80689909,19 Years and 10 Months,Yes,116.3128264,474.9632074,Low_spent_Large_value_payments,194.2797162,0,-0.4387,0.1294,-0.7968,1.4748,-0.8157 +0x5119,CUS_0x1c40,August,35,602-19-3236,Accountant,66749.64,5379.47,6,4,9,3,"Debt Consolidation Loan, Auto Loan, and Payday Loan",19.48785347,12,10.88,10,Standard,303.85,33.13231737,12 Years and 0 Months,NM,89.78489451,598.0398974,!@9#%8,140.1222081,0,0.2795,0.2454,-1.7291,0.4824,-1.4157 +0x5125,CUS_0x23a5,August,25,618-88-5996,Lawyer,29404.31,2359.359167,6,25,9,1,Credit-Builder Loan,,2072,7.35,4,Good,1288.52,25.66317471,23 Years and 11 Months,No,22.42331615,119.5061425,Low_spent_Large_value_payments,364.006458,0,1.8735,0.9552,-0.3996,-0.2329,0.4564 +0x5131,CUS_0x1dda,August,27,#F%$D@*&8,Mechanic,20060.23,1873.685833,6,5,34,9,"Auto Loan, Payday Loan, Personal Loan, Not Specified, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",29.53355935,22,20.32,16,Bad,2844.99,25.04406352,5 Years and 0 Months,Yes,148.5239268,,Low_spent_Medium_value_payments,149.7365734,0,0.7744,-0.9174,0.7542,-0.2723,0.2807 +0x513d,CUS_0xb76d,August,27,853-48-1722,Mechanic,53894.12,,8,4,11,1,Personal Loan,18.01220591,,8.71,3,_,491.1102138,30.48988813,,No,23.93700875,343.270475,Low_spent_Large_value_payments,410.7565095,0,-1.086,-0.5058,-0.6988,0.6991,-0.1168 +0x5149,CUS_0x9abb,August,20,510-46-9027,Engineer,20915.42,1616.951667,9,6,33,5,"Student Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Student Loan",,18.48512498,3.68,9,Bad,2343.25669,28.02998107,17 Years and 2 Months,Yes,61.36285837,,Low_spent_Small_value_payments,227.3495372,0,-1.2997,-0.06,1.2744,-0.6328,0.0003 +0x5155,CUS_0x5f7b,August,42,230-22-0261,Manager,12332.855,,7,7,9,4,"Student Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",,13,13.92,4,Standard,1070.101965,36.44305188,15 Years and 11 Months,Yes,20.6508024,57.2755902,High_spent_Small_value_payments,274.5332136,0,-0.6261,-0.5525,-0.5433,0.287,1.7625 +0x5161,CUS_0xb713,August,29,578-67-3819,Doctor,18002.675,,6,3,10,3,"Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,9,0.94,,Good,698.05,24.82783775,28 Years and 5 Months,No,34.03249572,86.78065112,Low_spent_Small_value_payments,312.2091448,0,-0.0669,0.4204,-0.9142,0.5014,0.86 +0x516d,CUS_0x97b,August,29,948-33-7459,Entrepreneur,85926.78,7351.565,3,7,8,1,Student Loan,,16,9.54,4,Standard,542.13,32.63161372,31 Years and 6 Months,Yes,61.89128696,145.5880249,!@9#%8,767.6771882,0,-0.1284,-0.9132,0.1588,2.3177,0.2866 +0x5179,CUS_0x765b,August,36,499-40-6829,_______,20051.92,1845.993333,5,2,3.288361749,2,"Student Loan, and Payday Loan",2.724043877,5,6.09,,Good,83.96,38.80345811,25 Years and 5 Months,No,30.30590559,,Low_spent_Small_value_payments,202.9126215,0,0.7387,0.535,-0.38,-1.3374,1.0561 +0x5185,CUS_0x6f4d,August,51,433-42-8444,Lawyer,148841.56,12696.46333,1,6,6.288361749,2,"Home Equity Loan, Auto Loan, and Not Specified",4.114283172,6,11.47,7,_,1095.81,34.5862906,16 Years and 10 Months,NM,186.3577743,,High_spent_Medium_value_payments,924.0838857,0,0.3228,1.3806,-0.0894,1.062,1.0796 +0x5191,CUS_0x9b95,August,19,024-94-7524,Manager,69374.78,5710.231667,1,3,12,100,"Debt Consolidation Loan, and Home Equity Loan",2.210747676,5,11.07,5,_,1060.819019,24.61512209,28 Years and 10 Months,No,68.54205265,495.3687913,Low_spent_Small_value_payments,364.9326238,0,1.305,1.9426,0.1531,0.7682,0.4673 +0x519d,CUS_0xb462,August,54,982-59-1518,Teacher,145917.88,12376.82333,8,5,4.288361749,2,"Personal Loan, and Student Loan",,12,0.22,7,Good,500.24,35.60697529,21 Years and 4 Months,No,127.5692543,728.4685967,High_spent_Medium_value_payments,1051.581943,0,0.3371,0.2664,-0.1576,0.9389,0.5542 +0x51a9,CUS_0xad74,August,53,774-72-8080,Teacher,20145.525,,2,4,6,1,Personal Loan,18.62463428,,7.66,2,Good,1491.08,36.2632365,21 Years and 10 Months,No,9.946396804,113.0038847,Low_spent_Small_value_payments,307.2290935,0,-0.4851,0.9887,-0.1437,-0.3224,0.2347 +0x51b5,CUS_0x4c84,August,18,946-42-4221,_______,18444.26,,3,5,17,2,"Mortgage Loan, and Personal Loan",16.08562615,11,9.5,10,Standard,1353.57,33.46812309,20 Years and 0 Months,Yes,112.5892347,174.0667743,Low_spent_Small_value_payments,230.9706533,0,-0.9228,-0.1252,-2.1695,-1.2642,0.2269 +0x51c1,CUS_0xbeb0,August,49,420-57-3195,Manager,39337.45,,2,7,2,2,"Student Loan, and Home Equity Loan",6.252064731,5.633413827,2.22,2,Good,559.0968299,32.91350853,28 Years and 0 Months,NM,47.82683197,214.7021851,Low_spent_Small_value_payments,330.6830663,0,2.6212,-0.2753,-0.0392,0.0006,-1.5239 +0x51cd,CUS_0xc075,August,20,972-83-6431,Teacher,17145.07,1509.755833,7,8,15,5,"Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",38.41715526,18.10582679,16.21,11,Bad,4944.036039,37.46571771,7 Years and 9 Months,Yes,62.20950973,63.33931275,!@9#%8,305.4267609,0,-1.2485,-0.2657,-0.4547,0.743,0.5247 +0x51d9,CUS_0x8f25,August,37,616-67-8262,Teacher,98759.91,8524.9925,5,7,3,2,"Not Specified, and Debt Consolidation Loan",5.323587933,5.763922952,4.24,3,_,1506.962034,28.37970535,26 Years and 9 Months,No,98.72127874,,High_spent_Medium_value_payments,755.3959552,0,0.4069,1.0175,1.3529,1.168,0.1646 +0x51e5,CUS_0xc5d7,August,50,156-69-3115,Journalist,88688.94,,3,7,8,0,,8.954016167,8.059505276,3.23,2018,Good,131.296473,33.90156441,19 Years and 8 Months,No,0,67.71493674,High_spent_Large_value_payments,901.0595633,0,-0.3466,0.6212,1.1963,-1.8721,-0.5198 +0x51f1,CUS_0x69c8,August,26,726-21-5047,Musician,81268.8,6849.4,8,7,18.28836175,0,,19.22721453,17,10.91,2,_,597.85,25.38276241,20 Years and 6 Months,Yes,0,,High_spent_Large_value_payments,752.3664265,0,1.0861,-0.2135,-0.3387,-1.9387,-0.2491 +0x51fd,CUS_0x6b57,August,35,686-83-2952,Media_Manager,19708.86,,6,4,9,3,"Auto Loan, Home Equity Loan, and Student Loan",22.00411563,,14.16,9,_,390.29,35.57957124,31 Years and 9 Months,Yes,43.65067805,115.2688024,Low_spent_Small_value_payments,274.6210195,0,-0.465,0.9976,0.4256,0.4735,0.4615 +0x5209,CUS_0xc610,August,80,639-29-8990,Musician,56175.12,4916.26,5,7,10,7,"Auto Loan, Credit-Builder Loan, Auto Loan, Not Specified, Not Specified, Payday Loan, and Not Specified",23.48280653,15.76980096,15.75,11,_,1986.218956,29.79656261,12 Years and 5 Months,Yes,268.5514835,373.5582682,Low_spent_Large_value_payments,119.5162483,0,-1.9782,0.3414,0.2585,-0.6052,0.3315 +0x5215,CUS_0x92f,August,21,298-72-3174,Doctor,37404.67,,0,5,1,1,Personal Loan,14.57405326,10.39318059,3.09,6,Good,1400.427127,35.69757833,33 Years and 3 Months,NM,25.52060507,39.07720002,High_spent_Medium_value_payments,519.8077782,0,0.7653,-0.3028,0.1084,0.8729,-0.1579 +0x5221,CUS_0x523c,August,18,739-81-2314,Lawyer,30363.73,,8,6,19,5,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, and Student Loan",,11,15.84,6,Standard,1394.85,38.15625307,9 Years and 0 Months,Yes,100.1215362,169.9543138,!@9#%8,293.3552333,0,0.5711,1.6656,0.4499,1.1182,0.0794 +0x522d,CUS_0x2dbf,August,52,370-51-2390,Musician,101583.48,8648.29,5,7,9.288361749,4,"Payday Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",9.210821052,10,4.89,5,Standard,50.93,27.1475555,24 Years and 4 Months,No,190.8110171,10419.93746,High_spent_Large_value_payments,734.5778252,0,-1.2708,1.5738,1.8261,-0.949,-0.3122 +0x5239,CUS_0x636d,August,21,131-96-3902,Accountant,19415.89,1792.990833,4,4,27,3,"Not Specified, Not Specified, and Payday Loan",31.25265239,20.83867401,10.87,14,Standard,2740.709797,37.53532554,,Yes,41.77039915,45.89557867,High_spent_Medium_value_payments,341.6331055,0,1.044,-0.2021,-1.5424,0.0601,-0.8803 +0x5245,CUS_0x28ec,August,33,901-01-4028,Musician,48121.32,4253.11,6,9,29,2,"Debt Consolidation Loan, and Mortgage Loan",,20.2645087,9.13,17,_,2093.005038,35.60735518,,Yes,58.07482988,63.30279797,!@9#%8,553.9333722,0,0.3987,-0.4089,0.0778,0.6445,-0.5678 +0x5251,CUS_0x4636,August,80,#F%$D@*&8,Accountant,57196.56,4838.38,6,3,17,3,"Home Equity Loan, Not Specified, and Credit-Builder Loan",,13.53408587,7.53,4,Standard,1383.408253,37.09223522,19 Years and 4 Months,Yes,74.30448443,,Low_spent_Medium_value_payments,210.301424,0,0.7761,0.5466,1.426,-1.0144,-0.0413 +0x525d,CUS_0x1c82,August,46,516-03-1114,Entrepreneur,62719.36,5315.613333,1,7,1,2,"Payday Loan, and Student Loan",,3,5.15,5,Good,73.8,32.78619654,30 Years and 5 Months,No,58.31563823,,Low_spent_Small_value_payments,499.0673604,0,-0.0141,0.8346,0.2639,-0.3327,-0.0286 +0x5269,CUS_0x8aee,August,20,407-37-6479,Writer,67242.56,,0,5,9,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",,6,2.7,2,Good,1017.06,29.52173741,25 Years and 0 Months,No,31182,,Low_spent_Large_value_payments,150.6906326,0,0.1984,-0.2725,0.9925,-0.1836,-0.0966 +0x5275,CUS_0x1540,August,26,742-16-8468,Engineer,143252.76,12131.73,5,7,10,4,"Personal Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",14.11435916,10,9.5,1,Good,1186.86,34.58048431,28 Years and 5 Months,No,251.7271912,243.3826433,High_spent_Medium_value_payments,968.0631655,0,-1.192,1.7866,-0.5761,-0.6793,0.0168 +0x5281,CUS_0x5bf5,August,43,031-67-3915,Lawyer,41896.88,3664.406667,5,7,1,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Student Loan",,10.20700669,5.9,5,Good,362.115844,36.36326821,27 Years and 5 Months,No,132.3181086,73.73107532,High_spent_Large_value_payments,400.3914827,0,0.0611,-0.8482,-2.1724,0.616,1.8059 +0x528d,CUS_0x7e25,August,19,755-90-5835,_______,15833.87,,5,4,10,2,"Home Equity Loan, and Credit-Builder Loan",,20,13.71,6,Standard,211.35,27.44936883,13 Years and 3 Months,Yes,23.14444966,70.08106468,Low_spent_Small_value_payments,336.6234023,0,0.6771,0.1262,-1.4799,-0.6507,0.1241 +0x5299,CUS_0x232b,August,26,516-71-4457,Entrepreneur,62115.81,,3,7,17,5,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",26.6581726,18,14.9,10,Standard,1724.19,39.62571668,8 Years and 2 Months,Yes,234.9283928,,Low_spent_Small_value_payments,149.3235312,0,0.0052,0.0197,0.0252,-0.4994,0.1913 +0x52a5,CUS_0xa862,August,28,452-26-8614,Developer,136900.4,11257.36667,6,4,10,3,"Home Equity Loan, Payday Loan, and Student Loan",,21.54630134,11.49,0,Good,1490.4046,28.94986713,30 Years and 10 Months,No,178.1981829,402.4065207,Low_spent_Large_value_payments,815.1319631,0,-1.1497,1.5084,0.7805,-0.588,1.2425 +0x52b1,CUS_0x6fef,August,36,838-11-0011,Entrepreneur,16474.845,,0,5,2,2,"Home Equity Loan, and Auto Loan",5.975376153,6,4.17,7,Good,340.96,29.71204034,,No,19.66074038,,Low_spent_Large_value_payments,295.0677229,0,-1.3198,0.776,-1.5443,2.6164,-0.9094 +0x52bd,CUS_0x2b7a,August,44,497-83-0932,Architect,66516.32,5333.026667,7,6,16.28836175,2,"Debt Consolidation Loan, Home Equity Loan, and Not Specified",18.64881461,15.78005658,17.92,6,Standard,37.23619184,38.30008164,17 Years and 9 Months,Yes,162.4926462,632.8318512,Low_spent_Medium_value_payments,437.9156303,0,-0.0646,-0.8536,-0.2686,0.6148,-1.8909 +0x52c9,CUS_0x4e66,August,56,103-53-8971,Media_Manager,85471.89,,4,5,3,0,,9.297286014,10,4.4,4,_,212.076762,39.13566092,23 Years and 3 Months,No,0,168.5170825,High_spent_Small_value_payments,830.7357115,0,-1.5597,1.4229,-0.108,-0.7225,0.24 +0x52d5,CUS_0x2742,August,26,432-37-0614,Writer,8557.39,,8,6,23.06745738,2,"Mortgage Loan, and Credit-Builder Loan",28.78987147,14.77427392,14.64,11,Bad,2245.945555,36.03154214,12 Years and 0 Months,NM,13.16840381,47.75650198,!@9#%8,282.0663896,0,-1.0633,-1.2701,-0.2301,1.313,-0.3361 +0x52e1,CUS_0x2b98,August,25,158-39-6168,Entrepreneur,8294.385,,7,7,26,7,"Home Equity Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Not Specified",11.18902083,12.77947105,7.59,4,Standard,1959.007966,25.21664059,19 Years and 6 Months,NM,48.03206276,72.87654018,!@9#%8,263.7112721,0,-0.4795,1.011,0.864,1.1594,0.8606 +0x52ed,CUS_0xc692,August,40,847-97-4559,Media_Manager,17372.48,,9,5,24,9,"Student Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",36.28779535,22.42618642,7.67,14,_,5527.814124,24.35578177,,Yes,102.7849368,,High_spent_Small_value_payments,200.6596632,0,-1.5921,0.1676,-1.0906,1.5664,-3.1614 +0x52f9,CUS_0x3389,August,18,894-41-9091,Manager,43782.45,3543.5375,6,9,26.95700519,8,"Payday Loan, Auto Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Not Specified, and Personal Loan",26.14335889,16,-3.12,12,_,3691.660954,30.4568101,,Yes,1564.148183,92.21289523,High_spent_Small_value_payments,236.9423027,0,0.0158,-0.0239,-1.538,0.6865,1.6027 +0x5305,CUS_0x3ff7,August,39,893-28-3484,Developer,14896.98,1232.415,8,10,30.88954781,8,"Auto Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Home Equity Loan, Not Specified, Personal Loan, and Payday Loan",51.98837382,28.83924814,5.53,11,Bad,1784.174055,38.43767701,13 Years and 9 Months,Yes,1379.496587,,!@9#%8,246.6105484,0,-0.663,-1.0089,-0.3006,-1.1086,-0.6061 +0x5311,CUS_0x6339,August,27,539-87-7939,Musician,79741.88,,3,7,9.288361749,4,"Personal Loan, Not Specified, Not Specified, and Not Specified",5.564734597,7,6.08,4,Good,227.12,23.31643628,25 Years and 3 Months,No,207.0632974,960.6742492,Low_spent_Medium_value_payments,207.0155811,0,0.0961,-1.1732,-1.1422,-0.6351,0.9329 +0x531d,CUS_0xcad,August,80,651-50-4567,Manager,16216.795,,5,6,13,0,,15.51733048,10,1.1,4,_,1470.14,36.76702841,24 Years and 0 Months,No,0,100.0816034,Low_spent_Medium_value_payments,325.3583549,0,-0.3099,-1.7851,1.274,2.3012,1.0293 +0x5329,CUS_0x4981,August,42,960-55-7671,Scientist,17638.365,1341.86375,5,1,2,1,Not Specified,13.85075984,,8.61,5,Good,339.7558379,32.52447453,21 Years and 11 Months,No,9.986938808,11411.43464,High_spent_Small_value_payments,345.2642939,0,-0.5222,0.3473,-0.3595,0.0694,2.2481 +0x5335,CUS_0x57e5,August,42,029-79-5137,Musician,60071.07,5069.9225,6,9,21.95700519,6,"Debt Consolidation Loan, Auto Loan, Auto Loan, Personal Loan, Auto Loan, and Auto Loan",45.66556821,25,15.16,13,Bad,3843.390954,37.53093452,7 Years and 8 Months,Yes,1502.342413,211.4220095,High_spent_Medium_value_payments,322.1774583,0,0.4861,-1.2297,-1.9303,1.3424,0.6995 +0x5341,CUS_0xbb18,August,28,951-39-9474,Entrepreneur,16538.39,1359.199167,10,5,16,7,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",26.85611484,16,29.77,9,Bad,3843.16,34.12078171,2 Years and 4 Months,Yes,82.94188495,93.03455375,Low_spent_Small_value_payments,249.943478,0,-0.6257,-0.2243,0.1704,-1.9906,2.1063 +0x534d,CUS_0x6c71,August,19,185-82-7001,Entrepreneur,34627.86,,8,8,20.06745738,3,"Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",,13.52206011,10.17,11,Standard,3083.371256,29.54553145,8 Years and 5 Months,Yes,81.83340589,291.7078454,Low_spent_Small_value_payments,164.6039607,0,0.576,-1.1436,0.9782,-0.1043,0.1888 +0x5359,CUS_0xb529,August,38,#F%$D@*&8,Journalist,60520.95,4783.4125,10,8,19.06745738,5,"Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,21.67160794,25.88,,Bad,4155.162011,40.66520313,12 Years and 5 Months,Yes,163.0827549,200.0563126,High_spent_Medium_value_payments,338.4818945,0,-1.6026,1.7828,-0.489,-0.8196,-1.4426 +0x5365,CUS_0x8fb7,August,31,915-56-4328,Media_Manager,59086.62,4664.885,6,6,30,7,"Not Specified, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,26.56342066,27.62,6,Bad,3484.314699,35.32244852,7 Years and 6 Months,NM,341.0566632,91.0559481,High_spent_Medium_value_payments,284.3758887,0,-1.3647,-0.4155,-1.7964,0.534,0.5692 +0x5371,CUS_0x5c40,August,18,215-45-8438,Journalist,14646.96,,7,7,21.06745738,4,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",15.49235931,9,19.6,5,Standard,1685.170954,32.626971,17 Years and 3 Months,NM,46.00273232,107.905427,Low_spent_Medium_value_payments,215.0295527,0,1.6416,1.0026,-0.7155,1.398,-0.4903 +0x537d,CUS_0x9dec,August,39,483-86-0207,Developer,26282.47,2125.205833,7,5,17,2,"Credit-Builder Loan, and Student Loan",19.52743568,16,4.68,4,Standard,922.9393426,32.14416236,17 Years and 4 Months,No,23.40929117,89.16976658,!@9#%8,379.8410679,0,1.3327,-0.3664,1.1475,-1.3602,-0.6054 +0x5389,CUS_0x6087,August,26,371-67-0471,Doctor,14790.965,,5,7,17,1,Credit-Builder Loan,,16.99338092,11.64,6,Standard,1499.258452,37.20353725,6 Years and 2 Months,Yes,10.89907086,119.6359624,Low_spent_Medium_value_payments,286.4230084,0,-1.4293,-0.7444,-0.9826,-2.0756,1.6435 +0x5395,CUS_0x5d42,August,39,330-04-5269,Entrepreneur,71212.16,5749.346667,7,6,31.06745738,8,"Credit-Builder Loan, Not Specified, Student Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",40.2817663,22,18.78,13,Bad,3968.040954,25.81692112,9 Years and 0 Months,Yes,30662,,Low_spent_Small_value_payments,0,0,-1.8258,0.0113,-0.7259,-0.6306,0.8259 +0x53a1,CUS_0x925,August,80,106-34-4700,Accountant,39094.34,,3,5,10.28836175,2,"Payday Loan, Home Equity Loan, and Not Specified",0,0,10.84,3,Good,124.322706,26.29839243,29 Years and 6 Months,No,66.86046104,572.6983587,High_spent_Medium_value_payments,404.2790346,0,0.2488,-1.701,0.8655,0.5072,1.0867 +0x53ad,CUS_0x5cc6,August,34,120-20-9175,Lawyer,104917.74,8526.145,5,4,9,100,"Not Specified, and Debt Consolidation Loan",,1,1.1,4,_,405.5780903,39.15291163,20 Years and 11 Months,No,173.9355003,421.9932871,High_spent_Small_value_payments,569.9529911,0,0.4307,0.0424,0.399,0.1046,-1.1084 +0x53b9,CUS_0x490e,August,40,093-96-8853,Developer,57296.46,4618.705,7,10,21,2,"Student Loan, and Debt Consolidation Loan",44.69859044,22.5382666,7.35,12,Bad,2607.397256,23.90554692,12 Years and 6 Months,Yes,66.18363519,619.0625979,Low_spent_Small_value_payments,66.62426694,0,0.216,-1.0058,0.973,1.779,0.6862 +0x53c5,CUS_0x17b0,August,25,713-73-3196,Developer,42710.62,3766.218333,8,6,13,0,,,12,8.04,4,Standard,1012.708262,24.78454364,18 Years and 2 Months,No,0,176.564,!@9#%8,486.6496371,0,-0.1722,-0.1361,0.3018,-0.4682,1.7381 +0x53d1,CUS_0x3f51,August,31,#F%$D@*&8,Engineer,17612.175,1143.228824,6,5,14,4,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",,,12.75,,Standard,1273.32,34.99916207,18 Years and 3 Months,Yes,108.2641369,79.9307509,High_spent_Small_value_payments,262.525663,0,0.0596,0.7031,0.3885,0.6357,-0.9144 +0x53dd,CUS_0xa98a,August,35,675-04-9882,Manager,33177.95,2891.829167,5,4,17,4,"Student Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,20,8.12,5,Standard,230.1129057,23.84333632,,No,61.09941254,22.24183055,High_spent_Large_value_payments,447.9474524,0,0.7334,0.2043,-1.7702,1.7242,1.5521 +0x53e9,CUS_0x7982,August,38,322-39-3378,Writer,73355.38,,3,7,12,1,Credit-Builder Loan,18.3598302,14,11.56,7,Standard,998.81,32.25803712,28 Years and 6 Months,No,36.42229863,75.01727157,High_spent_Large_value_payments,742.2552631,0,-0.0361,-1.3652,0.3192,-1.1987,0.9351 +0x53f5,CUS_0x48e,August,30,627-30-1936,Architect,31936.05,,3,829,11,4,"Student Loan, Auto Loan, Personal Loan, and Payday Loan",,8,14.79,1,Standard,1380.76,36.82173907,25 Years and 8 Months,Yes,98.14745279,140.6183552,High_spent_Small_value_payments,264.467942,0,-1.7121,-1.0419,-0.2867,1.3256,-0.8716 +0x5401,CUS_0xa7b2,August,80,899-51-3471,Mechanic,14647.905,,0,3,7,3,"Personal Loan, Student Loan, and Student Loan",0,4,11.77,6,Good,1196.73,34.47580692,26 Years and 8 Months,No,21.80270367,10000,Low_spent_Small_value_payments,327.6018057,0,-0.469,0.4029,-0.3846,-1.4627,0.4788 +0x540d,CUS_0xa078,August,35,769-91-1021,_______,79548.32,,4,0,5146.288362,4,"Not Specified, Debt Consolidation Loan, Home Equity Loan, and Not Specified",14.22757786,,3.3,3,Good,767.2688729,34.69875028,,No,211.2145253,1061.269528,Low_spent_Large_value_payments,123.9056545,0,-0.6485,-0.6127,0.3253,-0.9522,-0.3722 +0x5419,CUS_0x5ec6,August,22,024-21-6368,Engineer,7415.08,,5,6,14,6,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Personal Loan",5.042211714,6,11.06,9,Standard,583.56,34.19252702,,Yes,27.01080524,74.09300511,Low_spent_Medium_value_payments,260.488523,0,-0.0659,-0.1465,-1.0472,1.0706,1.221 +0x5425,CUS_0x46f7,August,26,925-05-0709,Writer,19725.7,,8,10,17,2,"Auto Loan, and Auto Loan",13.00311112,12.44657336,,7,Standard,2471.886654,26.83557737,,Yes,19.39814491,,Low_spent_Large_value_payments,290.2002058,0,0.9069,-1.8965,-1.5794,-1.3134,1.539 +0x5431,CUS_0x3ec7,August,37,274-10-1233,Media_Manager,82999.64,7156.636667,5,7,8,2,"Personal Loan, and Mortgage Loan",4.957489877,5.84725048,2.53,2,Good,1656.620943,34.52860655,18 Years and 4 Months,No,104.5772356,109.8991103,High_spent_Large_value_payments,741.1873207,0,-0.8067,0.3345,-0.0277,0.6357,-1.5036 +0x543d,CUS_0x2c99,August,23,180-82-7743,Teacher,9648.22,,9,5,27.06745738,7,"Home Equity Loan, Personal Loan, Payday Loan, Auto Loan, Payday Loan, Personal Loan, and Credit-Builder Loan",,23.95477627,1.07,12,_,2950.868848,31.56765793,11 Years and 2 Months,Yes,52.68936755,,Low_spent_Small_value_payments,194.5355934,0,-0.651,-0.6409,0.576,0.9393,-0.3434 +0x5449,CUS_0xc5f3,August,19,#F%$D@*&8,Manager,15728.24,1061.686667,7,6,32.06745738,2,"Debt Consolidation Loan, and Payday Loan",23.58565641,14,13.59,10,Bad,2225.780954,31.38967018,18 Years and 6 Months,Yes,25.04348869,80.42910067,Low_spent_Small_value_payments,263.9757894,0,0.0137,-0.4037,-0.0649,-0.3213,0.6336 +0x5455,CUS_0x99b4,August,38,676-64-6048,Musician,89757.46,6373.027993,2,1,1.288361749,0,,4.462346276,8,9.39,,_,130.0098737,39.90071667,24 Years and 2 Months,No,943.7603407,1068.917049,Low_spent_Medium_value_payments,426.6677754,0,-0.6071,0.7112,1.97,1.0056,-0.2961 +0x5461,CUS_0x5a9f,August,22,654-57-4520,Media_Manager,88535.92,7299.993333,5,7,17,5,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Personal Loan, and Auto Loan",18.45767238,14,11.07,7,Standard,1499.31,27.25866998,13 Years and 10 Months,Yes,360.8742785,651.5275987,Low_spent_Large_value_payments,,0,-0.0339,0.9669,1.4858,1.2966,-0.114 +0x546d,CUS_0x6ead,August,39,827-02-1282,Mechanic,69102.09,6027.5075,8,3,14.28836175,0,Payday Loan,,15,18.85,5,Standard,93.68434641,28.58945695,20 Years and 9 Months,NM,45.60574916,518.1012241,High_spent_Large_value_payments,708.7861561,0,-0.7888,-0.0713,0.808,-1.3104,0.8523 +0x5479,CUS_0xafd5,August,28,251-25-8151,Writer,28193.38,2643.448333,6,3,2,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",,20,2.92,4,Standard,1099.7,23.3992436,17 Years and 0 Months,No,93.37869416,38.40982518,High_spent_Large_value_payments,372.556314,0,-0.3394,0.9137,0.2711,0.7665,-1.7315 +0x5485,CUS_0xa3bb,August,47,410-63-8948,Entrepreneur,21637.515,,3,5,9,0,,0,0,9.15,3,Good,868.6734896,30.80229496,31 Years and 11 Months,No,0,207.3831541,Low_spent_Small_value_payments,266.153763,0,-1.9373,0.0097,-1.627,0.1244,0.5064 +0x5491,CUS_0x9a09,August,28,979-05-5595,_______,28910.45,,7,4,12.28836175,4,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Student Loan",,10,9.39,6,Standard,292.98,29.98935906,15 Years and 9 Months,Yes,95.02278218,,Low_spent_Large_value_payments,245.0498717,0,0.7324,0.3609,-0.3658,0.1035,0.4129 +0x549d,CUS_0xabc6,August,26,588-48-6819,Mechanic,20380.51,1854.375833,8,3,19.28836175,4,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",12.91986806,13,14.5,12,Standard,153.7,33.66976641,13 Years and 8 Months,Yes,57.29949813,,Low_spent_Large_value_payments,228.0340212,0,-0.2413,1.0252,0.7528,-1.073,0.2569 +0x54a9,CUS_0x7c8c,August,52,230-18-1696,_______,43592.45,3758.704167,2,3,2,3,"Student Loan, Personal Loan, and Mortgage Loan",0,2,1.53,3,Good,793.39,31.07522011,32 Years and 10 Months,No,95.8860779,103.5224426,Low_spent_Medium_value_payments,456.4618962,0,-0.6226,-0.8515,0.7192,-1.21,0.173 +0x54b5,CUS_0x8983,August,35,505-01-1613,Scientist,60122.68,5004.223333,2,5,8,0,,13.10150642,12,11.73,5,Good,1053.058722,39.49888317,,NM,0,172.0646736,!@9#%8,609.5641475,0,-0.2552,-0.552,0.4913,0.0287,0.2566 +0x54c1,CUS_0x55e4,August,28,053-71-8237,Lawyer,20293.24,1647.255786,5,7,29,4,"Not Specified, Student Loan, Mortgage Loan, and Student Loan",,22.48138507,16.37,11,Standard,2193.057917,31.16662573,8 Years and 8 Months,Yes,89.30932683,31.30556947,High_spent_Large_value_payments,342.2429843,0,-0.2555,-2.6144,0.3772,0.0146,-0.9004 +0x54cd,CUS_0x1bc0,August,43,175-36-3847,Teacher,38060.68,3018.723333,6,10,22.88954781,6,"Auto Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",,24,25.41,11,Bad,2817.77,37.8748094,4 Years and 10 Months,Yes,1495.987889,,High_spent_Medium_value_payments,234.8645255,0,-0.0099,0.3156,-0.2435,0.7168,0.7116 +0x54d9,CUS_0xa822,August,36,359-48-9103,Engineer,77470.14,6744.845,1,1,5.288361749,2,"Credit-Builder Loan, and Credit-Builder Loan",0,1,5.05,3,Good,237.6337074,35.22235594,30 Years and 10 Months,No,65.55683764,711.3099273,High_spent_Medium_value_payments,606.5309072,0,0.7204,-1.4498,-0.4155,0.9574,-2.5381 +0x54e5,CUS_0x3b33,August,34,218-74-2565,Scientist,39883.46,3520.621667,7,6,29.06745738,9,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Auto Loan, Personal Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,16,27.12,9,Bad,5061.670954,36.4242387,1 Years and 11 Months,Yes,220.4014984,,Low_spent_Large_value_payments,138.9912354,0,-0.2433,0.1139,-0.4304,-0.7969,-0.3433 +0x54f1,CUS_0xbf67,August,43,904-27-9804,Architect,36690.32,2922.526667,3,3,9,6,"Home Equity Loan, Mortgage Loan, Personal Loan, Not Specified, Home Equity Loan, and Personal Loan",,17,14.07,6,Standard,874.85,35.23574743,16 Years and 10 Months,Yes,134.0882915,79.82250439,Low_spent_Medium_value_payments,358.3418708,0,-0.1036,-0.3185,-0.24,-0.4434,-0.2154 +0x54fd,CUS_0x86f6,August,30,590-69-2730,Mechanic,27653.79,,8,7,12,4,"Debt Consolidation Loan, Personal Loan, Student Loan, and Personal Loan",10.63464975,6.819220045,10.8,3,_,14.62755109,27.12417259,32 Years and 5 Months,No,49.87672143,271.0724458,Low_spent_Small_value_payments,210.1990828,0,1.6221,-0.0719,1.618,-1.2025,2.0925 +0x5509,CUS_0xb9bb,August,45,#F%$D@*&8,Doctor,17458.44,,9,9,15,100,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",,24.15658155,-5.65,1776,_,3208.927249,34.58361064,8 Years and 6 Months,Yes,66.4030265,46.35047473,Low_spent_Medium_value_payments,311.9334988,0,0.5003,0.9092,1.1093,1.2789,0.3951 +0x5515,CUS_0x91f,August,44,740-45-3202,Doctor,21450.72,,2,5,9.288361749,2,"Personal Loan, Payday Loan, and Home Equity Loan",,8,9.41,1,Good,123.12,24.88904065,33 Years and 5 Months,No,31.29690078,472.724457,High_spent_Small_value_payments,347.2721032,0,-1.496,-2.0007,-1.5632,-1.1186,1.1493 +0x5521,CUS_0x74db,August,38,180-94-8644,Writer,10361.92,,6,5,33.06745738,7,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Personal Loan, and Debt Consolidation Loan",,21.90300867,26.92,6,_,3847.981045,33.60448947,,Yes,44.01212564,,Low_spent_Medium_value_payments,222.9164077,0,0.9214,-1.1739,-0.5981,0.4632,2.3097 +0x552d,CUS_0x39d8,August,32,741-13-7939,Writer,14130.645,980.55375,3,6,8,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,9,1.27,6,_,1145.9,38.51948681,31 Years and 8 Months,No,32.55670391,34.74422327,High_spent_Medium_value_payments,280.7544478,0,-0.624,1.9782,0.3535,-0.9671,-2.9526 +0x5539,CUS_0x8158,August,27,020-00-9645,Architect,32729.97,2908.4975,6,3,13.28836175,4,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",16.06680107,15,9.71,9,Standard,325.68,34.56878107,31 Years and 0 Months,Yes,108.8103331,805.8306451,Low_spent_Small_value_payments,86.14623286,0,1.3171,1.6241,-0.0839,0.2695,-0.3273 +0x5545,CUS_0x8812,August,29,448-25-2178,Musician,31170.53,2854.544167,1,5,6,2,"Mortgage Loan, and Mortgage Loan",9.00959314,8.17919394,7.55,,_,500.2944491,37.06488788,25 Years and 3 Months,No,35.03164263,122.9588305,Low_spent_Small_value_payments,417.4639435,0,-0.1958,-0.7196,0.7483,0.769,0.3631 +0x5551,CUS_0x83dc,August,38,404-59-4055,_______,59759.68,,10,6,19,6,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",28.02710287,21,23.04,9,Bad,3676.39,33.79774876,2 Years and 0 Months,Yes,243.2266636,60.3873753,High_spent_Large_value_payments,442.6832944,0,0.7736,0.6505,0.133,0.7876,1.7919 +0x555d,CUS_0x3ec6,August,21,539-95-3833,Engineer,15838.8,,10,8,23.88954781,100,"Payday Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",,19,18.3,6,Bad,2289.44,26.53637534,9 Years and 8 Months,Yes,58801.48344,34.18692443,High_spent_Large_value_payments,280.419333,0,-2.1612,0.4898,0.0578,-0.7821,0.5452 +0x5569,CUS_0x950d,August,38,205-57-7066,Developer,28253.72,,4,6,14,100,,18.52040706,14,4.93,2,Standard,1098.38,32.61456827,32 Years and 10 Months,NM,0,160.5481868,High_spent_Small_value_payments,345.4994799,0,-1.2344,-0.5659,0.1247,1.396,0.184 +0x5575,CUS_0xc2a4,August,55,589-36-3821,_______,122322,,1257,3,9,2,"Mortgage Loan, and Not Specified",,9,5.97,6,Good,522.3338225,38.10720816,,No,1120.378691,1339.956952,Low_spent_Small_value_payments,,0,0.217,-0.388,0.0548,0.2477,-1.1734 +0x5581,CUS_0x9761,August,44,069-05-2904,Musician,32012.65,2562.319063,4,5,8.288361749,2,"Personal Loan, Mortgage Loan, and Personal Loan",3.408404643,7,5.84,8,Good,7.44,29.85556956,20 Years and 11 Months,No,223.9660293,543.831786,Low_spent_Small_value_payments,373.7134992,0,1.0999,0.4766,-0.5621,-0.2752,-1.4832 +0x558d,CUS_0xb825,August,30,799-34-8016,Developer,83457.76,6936.813333,5,6,5521,7,"Home Equity Loan, Not Specified, Payday Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",16.43695662,14,16.92,7,Standard,1266.18,35.12386369,6 Years and 10 Months,Yes,386.777743,725.7688489,Low_spent_Small_value_payments,,0,1.075,-0.4105,0.4183,-0.0345,2.175 +0x5599,CUS_0x53d1,August,44,226-19-2220,Mechanic,15712.65,,10,7,22,9,"Student Loan, Mortgage Loan, Payday Loan, Not Specified, Student Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, and Payday Loan",36.54863849,26,16.94,12,Bad,2540.41,39.89098295,,Yes,79.86675873,128.6089392,!@9#%8,201.0630521,0,1.1886,-0.8197,0.5914,-0.345,0.967 +0x55a5,CUS_0x5f15,August,33,001-97-1222,Scientist,7617.915,626.82625,8,6,16,9,"Not Specified, Debt Consolidation Loan, Auto Loan, Personal Loan, Auto Loan, Personal Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,,15.47,14,_,3257.62,35.61228649,9 Years and 5 Months,Yes,52.46998924,74.58069018,Low_spent_Small_value_payments,225.6319456,0,-0.4456,-0.7126,0.3113,-0.1727,0.2135 +0x55b1,CUS_0xc3f1,August,19,169-02-0611,Media_Manager,50739.27,4387.2725,4,6,5,6,"Personal Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Home Equity Loan",18.05523031,,14.03,5,_,1552.17,25.42343878,6 Years and 6 Months,Yes,240.0567506,111.3039386,High_spent_Medium_value_payments,337.3665608,0,-0.6479,1.6547,-0.3837,0.1245,-0.4014 +0x55bd,CUS_0xb9f,August,45,386-87-6151,Accountant,14161.865,,5,7,14,0,,19.60022637,18,13.58,6,_,1331.37,25.57348735,21 Years and 4 Months,NM,0,63.45902672,Low_spent_Large_value_payments,342.6565149,0,-0.4915,-1.5465,0.025,1.2471,1.1854 +0x55c9,CUS_0x3430,August,49,423-11-5984,Manager,15285.495,1523.79125,0,3,9,0,,19.58428031,12.82948634,11.16,0,_,1032.047966,25.58031122,31 Years and 4 Months,No,0,37.70015705,High_spent_Medium_value_payments,364.678968,0,-0.0761,0.6658,-0.075,-1.2805,0.2319 +0x55d5,CUS_0xc04a,August,18,555-02-9736,Entrepreneur,36681.48,2999.79,8,10,21.95700519,6,"Student Loan, Auto Loan, Not Specified, Auto Loan, Student Loan, and Not Specified",23.92577454,15,8.78,15,Standard,2576.070954,34.85449127,,Yes,1476.590936,23.63488773,High_spent_Large_value_payments,318.7028072,0,-0.186,-0.7021,0.0902,0.8449,-2.3702 +0x55e1,CUS_0x6997,August,28,483-75-2737,Media_Manager,20297.91,1785.4925,8,8,22.06745738,4,"Payday Loan, Not Specified, Credit-Builder Loan, and Not Specified",22.59192401,,10.83,11,Bad,2097.220954,29.2605813,18 Years and 9 Months,Yes,48.73093023,,Low_spent_Small_value_payments,159.6825836,0,0.9296,-0.6535,-0.7464,1.2134,1.6182 +0x55ed,CUS_0x437e,August,45,997-25-9594,Architect,28840.47,,7,7,14.28836175,0,,,11,16.45,0,Standard,196.82,39.94920711,30 Years and 3 Months,Yes,0,456.6066674,High_spent_Medium_value_payments,459.9680436,0,0.9512,0.4011,-0.9627,0.2279,-0.6444 +0x55f9,CUS_0x4963,August,49,358-31-1093,Accountant,94216.14,,3,6,5,1,Personal Loan,,19.13728204,1.71,2,Standard,400.2761266,26.86916248,22 Years and 4 Months,Yes,59.90667335,122.6660102,High_spent_Large_value_payments,816.1618165,0,0.0864,-0.2306,-0.1848,1.2678,0.4227 +0x5605,CUS_0x14ba,August,24,961-03-0481,Teacher,81425.24,6579.436667,9,5,26,7,"Not Specified, Credit-Builder Loan, Student Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Mortgage Loan",21.80841244,18.01142307,3.69,9,Bad,1886.849527,39.14349336,14 Years and 2 Months,NM,375.6909458,214.3321718,Low_spent_Large_value_payments,337.920549,0,-0.5054,0.0581,-1.6756,0.3578,-1.9303 +0x5611,CUS_0x2a52,August,52,039-02-7101,Developer,101296.71,8456.3925,3,4,3.288361749,2,"Mortgage Loan, Home Equity Loan, and Not Specified",0.918686786,3,5.82,1,Good,708.6655931,34.73946442,16 Years and 2 Months,No,234.491421,659.3424966,High_spent_Large_value_payments,642.785507,0,-1.5658,-0.2837,-1.0936,-0.6619,0.4638 +0x561d,CUS_0xaa3d,August,33,044-39-7834,Writer,33395.89,,3,3,8,0,,,0,10.96,6,_,745.8165493,26.39580235,28 Years and 6 Months,NM,0,168.155379,Low_spent_Large_value_payments,392.1437043,0,0.1125,-1.9959,-0.8918,-1.7354,-1.1732 +0x5629,CUS_0xb1a2,August,20,#F%$D@*&8,Entrepreneur,20785.005,,4,5,3.288361749,0,,5.855003771,9,0.96,4,_,116.8806906,25.33525211,18 Years and 2 Months,No,8876,443.4294078,High_spent_Large_value_payments,402.9145433,0,-0.7883,-1.8184,1.2502,0.6892,0.5936 +0x5635,CUS_0x8df6,August,33,217-58-1095,Lawyer,7174.99,,10,8,25.88954781,7,"Payday Loan, Personal Loan, Payday Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Mortgage Loan",41.49761163,24,16.88,12,Bad,4265.64,37.54399081,6 Years and 4 Months,Yes,1355.750114,,Low_spent_Small_value_payments,213.1743826,0,0.0762,0.127,0.0171,-0.3602,1.2911 +0x5641,CUS_0xba63,August,20,310-95-9844,Journalist,22318.49,2130.874167,5,2,7,3,"Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,0,4.86,0,Good,947.41,37.99030764,18 Years and 10 Months,No,39.91728359,282.9161912,Low_spent_Small_value_payments,180.2539419,0,-0.9014,0.129,-1.4634,-0.2982,-0.119 +0x564d,CUS_0x4c8d,August,50,001-49-5189,Accountant,110143.65,9117.6375,6,7,3,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",23.12821472,15,8.63,0,_,1304.45,30.71200866,19 Years and 11 Months,No,233.4507699,176.8834431,High_spent_Medium_value_payments,751.429537,0,0.1591,-1.0211,-1.3253,-0.7015,-1.6538 +0x5659,CUS_0x281d,August,37,510-09-3043,Architect,118062.2,10136.51667,0,1,6.288361749,0,,0,0,7.68,1,Good,1393.23,30.34397383,29 Years and 10 Months,No,0,571.3545817,!@9#%8,1102.234546,0,0.556,-3.0038,-0.7687,0.8244,-1.8934 +0x5665,CUS_0x8e5,August,45,454-53-0773,Musician,7012.31,,8,6,21.06745738,5,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Student Loan, and Student Loan",45.03464636,27.75865946,5.64,10,Bad,5530.131702,34.20429308,9 Years and 8 Months,Yes,20.58222059,22.63287707,High_spent_Small_value_payments,247.8005311,0,-0.8271,-1.1108,-0.8991,0.0687,-0.4359 +0x5671,CUS_0x5239,August,34,410-88-1260,Manager,89424.9,7615.075,5,5,4,4,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",18.00068042,11.60063275,5.12,4,Good,951.7220428,24.93399863,25 Years and 11 Months,No,153.2255283,299.1667604,High_spent_Small_value_payments,569.1152113,0,0.9039,1.1164,-1.2851,0.674,-0.3318 +0x567d,CUS_0xa5a1,August,40,401-25-1243,Entrepreneur,10341.68,761.8066667,7,6,17.06745738,8,"Mortgage Loan, Payday Loan, Credit-Builder Loan, Not Specified, Not Specified, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",,27.00509907,4.61,14,Bad,3291.384684,36.51217701,8 Years and 4 Months,NM,50.88803778,73.29457808,Low_spent_Small_value_payments,215.2777629,0,-3.2336,0.3252,-0.4976,-2.1704,-0.0115 +0x5689,CUS_0x825e,August,35,776-55-8622,Manager,19213.81,1812.150833,9,8,29.06745738,3,"Personal Loan, Auto Loan, and Payday Loan",39.99977523,18.19011271,16.27,12,Bad,1986.848275,27.55117253,18 Years and 2 Months,Yes,31.70698129,,Low_spent_Small_value_payments,225.5510324,0,0.7228,-0.151,0.2861,1.4151,1.2619 +0x5695,CUS_0x5a7b,August,21,935-59-4707,Developer,61319.37,,8,10,16.88954781,7,"Personal Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",45.13814514,22.67907303,5.65,9,_,2533.212149,29.21533853,6 Years and 6 Months,Yes,1567.129614,95.15501818,High_spent_Medium_value_payments,399.9800367,0,0.5669,-0.7709,0.7458,0.2918,0.8876 +0x56a1,CUS_0x9a8d,August,56,398-02-1604,Journalist,144901.76,12350.14667,4,7,10,2,"Personal Loan, and Payday Loan",6.697641007,7,7.94,7,Standard,1267.693488,38.79850393,,No,170.7786055,1128.329162,Low_spent_Large_value_payments,312.7033037,0,1.2582,-0.0054,-1.4737,0.1946,-0.0493 +0x56ad,CUS_0x710b,August,30,496-47-3679,Doctor,47958.76,3756.563333,6,4,7,3,"Personal Loan, Mortgage Loan, and Payday Loan",,10.30726186,9.3,3,Good,199.6069438,36.37788643,,No,93.07742991,84.99584832,High_spent_Medium_value_payments,447.5830551,0,-0.3243,-0.0438,-0.9551,0.8475,-0.2919 +0x56b9,CUS_0xb7a5,August,80,346-46-1263,Journalist,35417.25,,3,5,7,0,,16.30854608,14,13.96,5,Standard,701.43,27.44801999,18 Years and 8 Months,Yes,0,106.5709282,High_spent_Medium_value_payments,444.7728218,0,-0.4601,1.477,-2.3807,1.6555,-2.5118 +0x56c5,CUS_0x19b0,August,38,523-76-9027,Writer,109110.57,,0,1,4,4,"Personal Loan, Payday Loan, Not Specified, and Mortgage Loan",0,1,1.76,2,Good,411.96,32.62881038,16 Years and 3 Months,NM,257.2322887,185.5312615,!@9#%8,708.1911999,0,0.7074,-0.1101,0.1749,-1.26,-0.5681 +0x56d1,CUS_0x7f53,August,35,474-27-4829,Media_Manager,67951.65,,8,3,14,2,"Personal Loan, and Mortgage Loan",8.19815374,9.569643228,11.56,5,Standard,1164.520311,31.81107499,26 Years and 9 Months,Yes,68.4042151,285.2915318,Low_spent_Small_value_payments,532.4680031,0,-0.2886,0.7354,0.247,-0.3253,1.1129 +0x56dd,CUS_0x6e58,August,19,040-93-1290,Journalist,22931.66,,3,6,5,0,,19.55327061,12,4.87,6,Standard,834.51,27.57710688,28 Years and 5 Months,Yes,0,61.55833722,High_spent_Medium_value_payments,374.8388294,0,0.4602,3.2648,0.1526,0.4558,-1.6928 +0x56e9,CUS_0x6ef2,August,21,187-39-3355,Entrepreneur,88620.14,6814.368375,1,5,10,4,"Personal Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",,3,10.34,0,Good,82.36,30.45396312,26 Years and 4 Months,No,993.4409317,535.6839314,Low_spent_Medium_value_payments,340.5195956,0,0.3827,-1.0917,0.4198,-0.579,-0.0007 +0x56f5,CUS_0x1c39,August,41,243-53-0158,Media_Manager,18205.45,1480.120833,2,5,7,1,Credit-Builder Loan,5.855003771,9,1.78,7,_,924.3749151,35.34065426,28 Years and 2 Months,No,12.47203031,,Low_spent_Small_value_payments,362.2219733,0,-0.4083,0.6023,-0.2699,0.8519,0.9634 +0x5701,CUS_0xbe64,August,31,#F%$D@*&8,Engineer,12025.045,1263.087083,5,4,17,4,"Payday Loan, Mortgage Loan, Personal Loan, and Mortgage Loan",,14,12.89,9,Standard,843.67,35.91041359,21 Years and 6 Months,Yes,27.77590536,44.01948734,Low_spent_Small_value_payments,344.5133156,0,0.8764,-0.3841,0.5588,-0.9187,0.2568 +0x570d,CUS_0x78a6,August,27,497-21-0135,Scientist,71461.6,5531.891117,8,5,16.06745738,5,"Personal Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Student Loan",26.1504188,,24.94,10,Bad,5036.120954,34.04056479,,NM,659.2222749,69.3585937,High_spent_Medium_value_payments,461.7543927,0,-0.895,-1.0963,0.057,0.5463,0.3639 +0x5719,CUS_0x8337,August,50,018-34-8385,Engineer,89666.88,7309.24,6,6,12,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",,,9.52,6,Standard,1155.94,35.74216667,,NM,174.861696,65.5748495,High_spent_Large_value_payments,730.4874545,0,0.0923,0.6445,-1.2014,-0.7818,-1.3242 +0x5725,CUS_0x2205,August,20,668-83-2820,Manager,67917.44,5611.786667,8,7,28,6,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Personal Loan, Student Loan, and Personal Loan",,15.85168916,14.74,16,Standard,2422.214925,27.74277381,12 Years and 4 Months,Yes,170.4184241,90.43565244,High_spent_Medium_value_payments,550.3245901,0,0.6741,-0.7785,-0.1135,-0.6278,1.1888 +0x5731,CUS_0x86b5,August,20,049-77-0285,Manager,15669.6,,5,10,27,5,"Mortgage Loan, Payday Loan, Student Loan, Home Equity Loan, and Personal Loan",20.13792214,,11.66,12,_,2237.758669,29.65385496,8 Years and 4 Months,Yes,35.28391361,,Low_spent_Small_value_payments,212.6432029,0,-0.962,1.4801,-0.9183,-0.3159,-0.4332 +0x573d,CUS_0x193c,August,25,933-33-8472,_______,83675.56,6913.963333,10,10,19.88954781,6,"Payday Loan, Not Specified, Mortgage Loan, Auto Loan, Not Specified, and Mortgage Loan",34.19878381,24.65091297,7.76,6,Bad,2960.664138,27.3570331,13 Years and 2 Months,NM,1685.261088,144.550425,High_spent_Large_value_payments,407.2547391,0,1.214,-0.1562,-0.187,0.9345,1.306 +0x5749,CUS_0x9be5,August,50,776-90-4778,Media_Manager,16558.12,,3,7,9.288361749,2,"Home Equity Loan, Payday Loan, and Credit-Builder Loan",,2,1.57,1,Good,15.43,30.34270628,19 Years and 8 Months,No,35.38755485,,Low_spent_Small_value_payments,227.3154809,0,0.6974,0.3573,1.8152,-0.8336,0.5786 +0x5755,CUS_0x3513,August,30,407-97-5354,Accountant,83037.36,,8,9,19.88954781,6,"Debt Consolidation Loan, Auto Loan, Not Specified, Mortgage Loan, Mortgage Loan, and Home Equity Loan",,17.94181743,7.46,9,Standard,1660.250785,29.87523892,9 Years and 3 Months,Yes,63320.48344,318.8958079,Low_spent_Medium_value_payments,346.3984267,0,-0.2406,0.8813,-0.1449,0.5008,1.4411 +0x5761,CUS_0x83f5,August,27,912-04-6363,Developer,9029.7,,7,6,29,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",16.10354875,,16.62,10,Standard,2501.804917,29.72940951,,Yes,15.01610936,51.24123163,Low_spent_Small_value_payments,317.590159,0,1.3601,-0.1261,0.9674,-0.8964,0.5579 +0x576d,CUS_0x99dc,August,35,135-62-4830,Developer,73044.56,6149.046667,7,9,30,5,"Payday Loan, Auto Loan, Payday Loan, Credit-Builder Loan, and Personal Loan",,26.58469581,6.11,10,Bad,3219.358425,37.80716961,6 Years and 5 Months,Yes,72315,259.6346687,Low_spent_Small_value_payments,363.5802373,0,1.3345,-2.2251,-0.7248,-0.689,0.5175 +0x5779,CUS_0x709,August,46,818-12-9237,Mechanic,17519.775,,6,5,15,2,"Payday Loan, and Mortgage Loan",16.19655571,11,2,1,_,290.97,27.56326209,16 Years and 9 Months,No,27.29487715,18.16937689,High_spent_Medium_value_payments,340.833871,0,-0.5294,1.1438,0.9248,-1.9028,0.4568 +0x5785,CUS_0x576d,August,25,026-99-8276,Teacher,40406.18,3191.181667,5,5,32,7,"Auto Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Auto Loan, and Mortgage Loan",,15.1467094,10.07,8,Standard,1461.771557,34.12759084,7 Years and 8 Months,Yes,127.4156814,116.3457069,High_spent_Small_value_payments,335.3567783,0,2.4546,0.5864,0.0914,-0.3701,1.0326 +0x5791,CUS_0x87a2,August,29,052-80-8415,Media_Manager,95099.7,7950.975,6,7,12,4,"Payday Loan, Student Loan, Student Loan, and Not Specified",19.950656,15,7.14,4,Standard,210.86,35.61147285,29 Years and 8 Months,Yes,217.3714876,150.5393882,High_spent_Large_value_payments,667.1866241,0,0.7787,2.1622,-0.0009,0.0977,1.0305 +0x579d,CUS_0x24e3,August,36,891-36-8798,Scientist,22410.53,,7,5,14,2,"Mortgage Loan, and Personal Loan",19.82457281,17,11.51,5,_,33.85,32.75030557,29 Years and 9 Months,Yes,31.8394143,87.80452374,Low_spent_Small_value_payments,377.5104786,0,2.1152,-0.056,-1.8608,1.6813,-0.0817 +0x57a9,CUS_0x275e,August,30,504-54-6793,Engineer,105860.04,8996.67,5,5,12.28836175,2,"Payday Loan, and Student Loan",,13,11.09,9,_,224.7,36.13005136,17 Years and 6 Months,Yes,103.0585668,1196.005793,Low_spent_Small_value_payments,310.5401008,0,0.2536,0.8554,-0.7049,1.2025,-1.0567 +0x57b5,CUS_0xb144,August,28,649-43-0997,Developer,133949.36,11262.44667,5,5,7.288361749,0,,0,1,0.38,5,Good,1269.610217,43.7896886,18 Years and 6 Months,No,0,606.6444349,High_spent_Medium_value_payments,1212.91723,0,-0.6097,0.1764,-0.3732,-0.8308,0.3691 +0x57c1,CUS_0xb0e,August,27,703-91-7899,Scientist,41160.86,3371.071667,6,9,19.06745738,3,"Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",42.23735637,24.841843,2.55,8,Bad,2438.610161,38.66623828,11 Years and 5 Months,Yes,76.21663042,291.8481481,Low_spent_Small_value_payments,232.3221002,0,-0.8451,-0.4773,1.3983,-1.5017,0.4765 +0x57cd,CUS_0x99a9,August,21,665-44-5354,Developer,27956.77,,5,5,20,2,"Mortgage Loan, and Not Specified",,7,15.9,8,Standard,249.39,36.38465026,29 Years and 2 Months,Yes,26.98874977,60.41285507,High_spent_Medium_value_payments,425.0714785,0,1.5279,-0.8899,0.3663,-0.1816,-1.3834 +0x57d9,CUS_0x6b94,August,18,586-98-5524,Manager,68197.72,5880.143333,10,6,24.06745738,100,"Personal Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Not Specified",38.81573884,24,14.87,13,Bad,4380.080954,29.77701692,3 Years and 6 Months,Yes,295.0360095,,High_spent_Medium_value_payments,342.0921626,0,-0.4068,0.7412,-0.9841,1.3839,-0.243 +0x57e5,CUS_0x360e,August,35,587-74-1160,Musician,7499.935,524.9945833,10,8,22.95700519,8,"Home Equity Loan, Home Equity Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Mortgage Loan",26.04129743,,16.48,7,Bad,5344.563426,39.29010386,3 Years and 9 Months,Yes,1370.776443,,Low_spent_Medium_value_payments,218.5591312,0,0.9857,-0.5494,0.6508,1.4613,1.5261 +0x57f1,CUS_0x13f8,August,19,124-54-4852,Mechanic,145858.88,11878.90667,5,4,6.288361749,4,"Auto Loan, Student Loan, Credit-Builder Loan, and Personal Loan",1.677031284,6,5.91,1,_,1321.93,38.08942148,30 Years and 4 Months,No,262.4006749,589.4328182,High_spent_Large_value_payments,995.9946346,0,0.7658,0.3174,0.6018,-1.0554,-0.8554 +0x57fd,CUS_0x7afc,August,40,639-06-8225,Lawyer,35417.27,,0,3,2.288361749,2,"Personal Loan, and Auto Loan",0,3,7.8,3,Good,364.57,37.69272516,26 Years and 6 Months,No,39.77036463,532.3081326,High_spent_Small_value_payments,386.8028804,0,-0.7546,2.1729,-1.3979,0.7039,0.1048 +0x5809,CUS_0x485f,August,36,579-09-9274,Teacher,69051.14,,4,7,9,2,"Mortgage Loan, and Home Equity Loan",8.372288429,8,13.2,8,Standard,1396.03,25.41353041,16 Years and 2 Months,Yes,107.1674917,335.3398711,High_spent_Small_value_payments,367.8188038,0,0.224,-0.6761,-0.8476,-0.5432,0.2717 +0x5815,CUS_0x5d8b,August,26,574-78-4992,Scientist,111456.21,9328.0175,1,7,6.288361749,2,"Debt Consolidation Loan, Auto Loan, and Payday Loan",,8,4.91,4,Good,278.6465582,35.4477594,30 Years and 4 Months,No,154.3973902,642.6182701,High_spent_Medium_value_payments,828.6214834,0,-0.1991,-0.0783,-0.545,0.0923,-0.255 +0x5821,CUS_0xa503,August,51,781-28-3569,Accountant,76353.4,6159.105586,0,6,4,1,Payday Loan,8.272629836,8,8.97,8,Good,752.66,35.77058286,30 Years and 11 Months,No,477.1370792,333.1248318,Low_spent_Medium_value_payments,568.1941699,0,0.528,-0.0425,-0.0296,-1.3946,0.2735 +0x582d,CUS_0x8c9c,August,44,863-98-6928,Accountant,19795.89,,3,3,12,1,Debt Consolidation Loan,19.91770356,13,14.71,2,Standard,539.1229423,38.63857424,27 Years and 3 Months,Yes,159.6093949,48.05103224,High_spent_Small_value_payments,341.9599886,0,0.4613,1.1068,-0.8104,0.6017,0.0469 +0x5839,CUS_0x15a4,August,26,208-96-4573,Engineer,15652.99,1318.415833,1,5,4.288361749,0,Credit-Builder Loan,3.500305984,5,5.86,2,Good,32.71729302,29.65814788,30 Years and 5 Months,No,10.82246901,469.2726808,High_spent_Small_value_payments,336.2831443,0,0.2284,0.9476,1.2886,-0.4574,0.5189 +0x5845,CUS_0x4e8c,August,19,727-92-1514,Developer,13754.5,,4,3,5,6,"Student Loan, Not Specified, Personal Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",,,16.85,8,_,39.59,35.65706019,7 Years and 2 Months,Yes,61.01232179,89.19624925,Low_spent_Small_value_payments,265.9122623,0,1.2145,0.1814,-0.6498,1.0239,0.0528 +0x5851,CUS_0x4333,August,26,#F%$D@*&8,Developer,116809,,3,988,2.288361749,2,"Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",,4,6.73,3,Good,1202.069499,34.70263569,18 Years and 10 Months,No,191.6757055,782.8048426,High_spent_Medium_value_payments,725.332422,0,0.4521,-0.9373,1.7063,0.1881,-0.9832 +0x585d,CUS_0x88f6,August,29,370-16-9207,Teacher,8949.695,576.8079167,8,9,19.06745738,9,"Auto Loan, Credit-Builder Loan, Payday Loan, Student Loan, Not Specified, Personal Loan, Personal Loan, Personal Loan, and Auto Loan",30.33420726,21,8.47,,Bad,4537.340954,28.34386147,,Yes,37.09661426,,!@9#%8,241.673522,0,-0.0176,-0.7488,1.3017,0.1685,0.142 +0x5869,CUS_0x21af,August,42,461-23-8801,Musician,87027.66,7494.305,1,6,5,3,"Personal Loan, Payday Loan, and Home Equity Loan",,9.329754894,5.96,2,Good,996.6121492,40.26243233,17 Years and 9 Months,No,139.9342826,308.8380295,Low_spent_Medium_value_payments,580.6581879,0,0.0801,-1.4912,0.5719,-0.3513,-1.1949 +0x5875,CUS_0x2a57,August,20,274-80-1161,Engineer,9592.415,,3,4,10.06745738,3,"Not Specified, Home Equity Loan, and Payday Loan",29.25399535,19,,4,Good,977.9609543,39.11585583,24 Years and 8 Months,No,74.70271356,11.21879731,High_spent_Small_value_payments,259.9220296,0,-1.3828,-0.0412,-0.4238,2.051,0.3308 +0x5881,CUS_0x298e,August,35,196-66-1954,Musician,62636.07,5099.6725,5,6,19,3,"Payday Loan, Credit-Builder Loan, and Mortgage Loan",25.89514357,18,17.52,3,_,1050.84,31.00386073,28 Years and 5 Months,NM,98.02987292,64.25648807,High_spent_Large_value_payments,587.680889,0,0.6137,-1.7503,0.658,-1.2105,-0.2415 +0x588d,CUS_0x1324,August,22,477-00-3913,Mechanic,19858.97,,10,6,25.06745738,3,"Mortgage Loan, Personal Loan, and Home Equity Loan",,26.39214055,1.33,8,Bad,2135.155312,32.32670957,13 Years and 4 Months,Yes,6821,38.63901939,High_spent_Medium_value_payments,303.2477688,0,-0.7047,0.8256,0.0207,0.1338,0.0794 +0x5899,CUS_0x5923,August,33,712-40-3142,_______,58995.8,4886.316667,6,6,18,100,Debt Consolidation Loan,26.99611439,19,9.13,2,_,974.73,26.06307112,33 Years and 6 Months,Yes,41.64582635,,High_spent_Small_value_payments,410.3859652,0,-1.3747,-0.3834,-0.5677,0.465,-1.0825 +0x58a5,CUS_0x6f9d,August,37,634-90-8823,Architect,65430,5539.5,4,553,18.88954781,6,"Student Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Home Equity Loan",17.56704299,15,17.52,12,_,1380.18,26.7352891,13 Years and 4 Months,Yes,1520.282715,84.38865184,High_spent_Medium_value_payments,504.9485521,0,-1.055,1.6512,-1.1268,0.6486,-0.5833 +0x58b1,CUS_0x382d,August,42,676-15-4455,_______,70014.48,6114.54,6,3,17.28836175,32,"Not Specified, Auto Loan, Auto Loan, and Not Specified",,2753,11.25,4,Standard,876.04,37.36183647,24 Years and 6 Months,Yes,205.5930674,,Low_spent_Medium_value_payments,316.8058529,0,0.8738,1.1928,0.7349,1.5511,1.328 +0x58bd,CUS_0xa7d7,August,52,095-14-3331,Mechanic,29789.87,,2,3,4,0,,9.639066609,8,5.12,5,_,777.23,26.77570137,24 Years and 9 Months,No,0,303.8124599,Low_spent_Small_value_payments,214.9364567,0,-1.3102,1.5374,0.5289,0.4216,-0.0592 +0x58c9,CUS_0x11c6,August,49,170-12-4663,Manager,16523.745,1516.97875,1,4,1,4,"Student Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",7.357017312,8,10.06,4,Good,455.49,31.79977235,25 Years and 11 Months,No,52.21616909,54.26625355,Low_spent_Medium_value_payments,325.2154524,0,-0.5731,0.9754,-1.1957,0.4886,0.1007 +0x58d5,CUS_0x7cea,August,80,656-90-5495,Media_Manager,30979.28,,331,3,22,7,"Personal Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Payday Loan, Personal Loan, and Home Equity Loan",24.42681873,19,9.75,5,_,1317.34,24.42525761,14 Years and 10 Months,NM,177.3730333,,Low_spent_Large_value_payments,173.8060018,0,0.877,1.2121,-0.1827,2.095,-1.0666 +0x58e1,CUS_0x8cd3,August,21,928-21-7408,Manager,105556.38,,5,5,10,0,,13.28246448,9,15.89,4,_,770.97,42.89247007,17 Years and 5 Months,Yes,0,119.1723936,High_spent_Large_value_payments,1017.064106,0,-0.0414,-2.0349,-0.5323,-2.2446,0.3236 +0x58ed,CUS_0x689e,August,47,099-47-9822,Developer,41983.29,3389.6075,2,3,4,3,"Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",20.11678213,,10.45,7,Good,1171.857011,29.325111,25 Years and 4 Months,No,100.0228851,96.60582224,High_spent_Medium_value_payments,392.3320427,0,-1.0984,0.2434,-0.2248,0.7128,-1.7696 +0x58f9,CUS_0x4cd5,August,37,449-60-2014,Writer,21313.765,,0,3,1626,4,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Not Specified",4.225534916,6,14.96,1,Good,730.84,26.22900086,24 Years and 0 Months,No,69.39214699,,Low_spent_Medium_value_payments,219.3736571,0,0.4789,-1.1862,-0.9825,-0.2795,-0.9994 +0x5905,CUS_0x6807,August,37,147-59-2959,Entrepreneur,73376.94,5961.745,5,5,9.288361749,2,"Home Equity Loan, Personal Loan, and Not Specified",0,0,7.51,6,_,541.7853527,29.97077832,23 Years and 0 Months,No,178.4709645,722.8083289,!@9#%8,384.8326676,0,0.754,0.3678,0.7972,0.941,-1.1179 +0x5911,CUS_0x79ce,August,39,957-10-9944,Developer,20226.28,1617.523333,8,6,14,2,"Personal Loan, and Credit-Builder Loan",14.25783391,9,8.79,13,Standard,767.58,31.71310011,9 Years and 3 Months,Yes,26.83134355,116.8418537,!@9#%8,308.079136,0,0.9132,-0.3578,-1.8621,0.8387,1.3259 +0x591d,CUS_0xbba7,August,23,795-84-0084,Manager,39992.36,3127.545443,6,3,16,7,"Credit-Builder Loan, Auto Loan, Personal Loan, Auto Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",16.01656305,,17.06,11,Standard,616.4342386,34.32550612,10 Years and 2 Months,Yes,42175,384.3601794,Low_spent_Medium_value_payments,126.9932559,0,1.3502,-1.7272,-0.2487,0.6936,1.1512 +0x5929,CUS_0x3f41,August,29,561-90-5717,Entrepreneur,63030.88,,10,7,31,6,"Personal Loan, Home Equity Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",18.71892332,13,10.28,11,Standard,1767.61,36.01875355,14 Years and 11 Months,Yes,288.0041711,79.95594192,High_spent_Medium_value_payments,435.2972204,0,0.6,2.3732,-1.2846,-1.0477,0.0008 +0x5935,CUS_0x2c90,August,22,347-87-6133,Scientist,54695.22,4754.935,10,8,25.95700519,7,"Home Equity Loan, Auto Loan, Student Loan, Payday Loan, Not Specified, Home Equity Loan, and Mortgage Loan",31.95347818,14.67193716,8.88,13,_,3140.400189,37.05107529,17 Years and 4 Months,Yes,1523.355468,183.9225635,High_spent_Medium_value_payments,297.1650991,0,1.581,-0.2799,0.7434,0.1258,0.4391 +0x5941,CUS_0x8ae0,August,28,957-46-7225,Engineer,41415.52,3573.293333,6,5,32.06745738,5,"Student Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",29.86770175,20.1875174,15.5,15,Standard,2631.603664,31.93971448,19 Years and 8 Months,Yes,109.6164901,10000,!@9#%8,386.0261169,0,1.0141,0.4232,0.1132,-0.1803,-0.3874 +0x594d,CUS_0x6079,August,25,420-25-3263,Writer,7304.055,425.5501786,10,9,34.06745738,3,"Student Loan, Personal Loan, and Mortgage Loan",,22.71060292,17.81,6,Bad,2489.873366,25.49860048,7 Years and 0 Months,Yes,43.85881325,59.83438583,Low_spent_Small_value_payments,238.5747093,0,0.0953,2.1156,0.8693,2.1893,-0.3483 +0x5959,CUS_0xab60,August,31,296-42-2708,Journalist,36779.34,,6,5,20,3,"Home Equity Loan, Debt Consolidation Loan, and Not Specified",20.63510976,14,11.35,12,_,1215.19,26.69842603,10 Years and 4 Months,NM,47.47477413,184.6537633,Low_spent_Medium_value_payments,332.6659626,0,-0.0141,0.9884,-0.2678,0.0073,-0.038 +0x5965,CUS_0x26c6,August,29,446-03-5622,Architect,30404.4,,8,8,16.88954781,6,"Home Equity Loan, Personal Loan, Student Loan, Student Loan, Home Equity Loan, and Not Specified",35.68745962,25.29494254,8.69,10,Bad,1883.201115,25.88458927,9 Years and 11 Months,Yes,1436.516297,183.4735358,!@9#%8,256.1500861,0,-0.1028,0.1046,1.6374,0.7155,-0.7775 +0x5971,CUS_0x34b1,August,26,349-86-2748,Journalist,60185.82,,8,968,14.88954781,6,"Not Specified, Payday Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",10.36254888,10,14.35,6,Standard,1089,26.18070007,,NM,1532.076788,278.817818,Low_spent_Small_value_payments,261.0238127,0,-1.14,0.6069,-1.0894,-1.2031,-2.4984 +0x597d,CUS_0x3ffe,August,31,289-92-0697,Lawyer,90411.9,7394.325,7,3,16,1,Student Loan,,11,-3.03,5,Standard,472.21,31.2983933,30 Years and 4 Months,Yes,72.17909178,,Low_spent_Large_value_payments,330.7043224,0,1.6836,1.9019,-0.1245,-0.4834,-0.7092 +0x5989,CUS_0x21c3,August,80,612-00-1960,Manager,73095.76,,8,10,16,5,"Student Loan, Personal Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",47.65521207,28.01173632,25.06,13,Bad,4105.209659,32.91116383,5 Years and 2 Months,Yes,211.0664122,166.7317139,High_spent_Medium_value_payments,479.9332072,0,1.467,-0.0766,-0.9258,-0.019,-0.1462 +0x5995,CUS_0xa995,August,48,241-86-3282,Engineer,77480.73,6325.7275,4,6,4,2,"Student Loan, and Home Equity Loan",,19,9.28,8,Good,1311.24,39.53470251,29 Years and 3 Months,No,3871,127.7926808,High_spent_Large_value_payments,617.5945022,0,-1.2072,-0.5027,-0.6519,-0.2986,0.8694 +0x59a1,CUS_0xa230,August,19,921-03-1595,Developer,76300.92,6416.41,4,6,17,5,"Debt Consolidation Loan, Personal Loan, Payday Loan, Payday Loan, and Personal Loan",21.83463215,17,17.55,13,_,275.51,23.69179465,18 Years and 2 Months,Yes,291.465246,55.89429444,!@9#%8,534.2814596,0,0.546,-0.1042,-0.4096,1.103,1.2051 +0x59ad,CUS_0x41a8,August,23,#F%$D@*&8,Musician,91570.71,,3,7,20,3,"Not Specified, Auto Loan, and Debt Consolidation Loan",13.84987867,10,8,6,Standard,448.59,36.73603982,12 Years and 3 Months,Yes,126.951702,121.1049078,High_spent_Large_value_payments,776.6326402,0,-1.7456,1.3802,0.8688,0.0837,0.2524 +0x59b9,CUS_0x2de1,August,30,139-40-9715,Media_Manager,44120.8,,2,3,12,3,"Personal Loan, Student Loan, and Payday Loan",0,0,0.46,2,Good,15.47,38.93729386,27 Years and 11 Months,No,87.40729091,81.25544878,!@9#%8,438.2105936,0,0.6903,-0.2023,-2.0556,0.5369,1.079 +0x59c5,CUS_0x568f,August,42,653-80-0995,_______,71695.68,5734.64,3,6,18.28836175,2,"Payday Loan, and Not Specified",0.96962606,5,16.57,3,Standard,529.91,28.03052767,24 Years and 6 Months,Yes,94.6334265,,Low_spent_Small_value_payments,33.55636129,0,0.0261,-1.3155,-0.3598,-1.1015,0.5421 +0x59d1,CUS_0xc63a,August,25,801-06-2006,Accountant,18438.875,,0,4,10,1,Not Specified,12.82923661,12.67967157,5.08,3,Good,491.0322112,23.75526368,32 Years and 0 Months,NM,205.1602535,103.3939914,Low_spent_Small_value_payments,317.817271,0,0.2353,-0.9155,-0.283,0.3142,-2.1333 +0x59dd,CUS_0x16f8,August,25,107-46-5762,Architect,66681.8,5278.816667,2,1,10.28836175,0,,,12,3.55,2,Good,679.2,28.84707084,25 Years and 11 Months,No,0,497.5679339,High_spent_Medium_value_payments,700.2511938,0,-1.1355,1.4543,-1.6339,-0.151,0.2538 +0x59e9,CUS_0x4f8f,August,32,349-33-5871,Entrepreneur,20341.87,1505.155833,8,9,35.06745738,7,"Payday Loan, Auto Loan, Personal Loan, Home Equity Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",21.96257248,,20.74,10,Bad,4229.750954,25.89271705,8 Years and 6 Months,Yes,75.54384988,66.86949654,Low_spent_Small_value_payments,271.381949,0,0.5735,0.0079,-0.1808,0.0439,-0.2095 +0x59f5,CUS_0x56c3,August,19,411-36-2777,Engineer,29198.56,,7,5,18,4,"Not Specified, Not Specified, Auto Loan, and Credit-Builder Loan",,28.67216568,9.61,11,_,1528.817199,38.11632485,20 Years and 6 Months,Yes,58.46646189,105.7133843,Low_spent_Large_value_payments,339.8414871,0,0.4571,-0.128,0.2548,-1.0995,1.3109 +0x5a01,CUS_0x3ff5,August,52,436-17-6958,Musician,87636.03,6291.992443,4,1,3.288361749,2,"Payday Loan, and Debt Consolidation Loan",0,2,3.38,3,Good,202.96,39.07930167,30 Years and 5 Months,No,1054.845874,,High_spent_Large_value_payments,823.9350801,0,0.1429,1.5719,0.9509,-0.3819,1.2005 +0x5a0d,CUS_0x5360,August,20,025-22-7299,Teacher,17461.98,1642.165,6,5,1966.067457,2,"Personal Loan, and Credit-Builder Loan",,20.18674385,14.77,11,Standard,1759.849581,35.56620227,18 Years and 11 Months,Yes,28.09484906,216.4902304,Low_spent_Small_value_payments,182.9111326,0,-0.1056,1.3901,-0.7139,0.2335,-0.731 +0x5a19,CUS_0x30c5,August,22,720-16-9648,Media_Manager,19170.45,1510.5375,8,9,15.88954781,8,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Auto Loan, Home Equity Loan, and Student Loan",,26.20225008,18.93,7,Bad,4973.877814,39.12135125,9 Years and 6 Months,Yes,1437.906669,46.35499955,High_spent_Medium_value_payments,222.4619997,0,-0.4389,-1.4448,0.5637,0.8721,-0.5802 +0x5a25,CUS_0xbb95,August,20,342-02-2232,Engineer,61600.83,5313.4025,7,7,16,3,"Home Equity Loan, Personal Loan, and Home Equity Loan",15.91723338,14,18.46,5,_,2062.09,39.93600695,19 Years and 4 Months,Yes,125.5050217,580.7970227,Low_spent_Small_value_payments,115.0382055,0,-0.8411,0.0224,-0.7035,-1.7042,-0.4899 +0x5a31,CUS_0x4d6a,August,30,946-77-8953,Architect,35844.66,2743.055,7,6,17,4,"Payday Loan, Payday Loan, Student Loan, and Student Loan",,1718,12.07,5,Standard,62.16,36.30788141,18 Years and 0 Months,Yes,101.1723271,130.3823946,Low_spent_Large_value_payments,312.7507783,0,1.0297,0.2252,0.6891,-1.9913,-1.3005 +0x5a3d,CUS_0x6cb3,August,43,261-43-4112,Entrepreneur,16069.44,1311.12,3,4,20,2,"Auto Loan, and Debt Consolidation Loan",,12,16.57,9,Standard,2550.25,36.1920489,18 Years and 8 Months,Yes,21.93220754,40.38478979,High_spent_Small_value_payments,328.7950027,0,-0.5905,0.6458,0.1339,1.7403,0.8679 +0x5a49,CUS_0x510c,August,29,917-89-7943,Musician,21414.43,,5,2,5,3,"Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,6,10.58,4,Good,39.47,23.62152518,26 Years and 2 Months,No,30.21422897,,Low_spent_Large_value_payments,381.1140154,0,0.184,-1.0133,0.8468,-0.9591,0.2394 +0x5a55,CUS_0x2174,August,36,061-24-0681,Manager,94934.94,8039.245,2,5,3,4,"Student Loan, Auto Loan, Student Loan, and Home Equity Loan",11.31330742,11,6.83,0,Good,975.21,30.47955434,23 Years and 4 Months,No,289.841054,,Low_spent_Large_value_payments,306.3845199,0,-0.0973,0.918,-1.0095,0.5552,1.0352 +0x5a61,CUS_0x4df2,August,20,#F%$D@*&8,Entrepreneur,103755.87,,8,4,12,7,"Personal Loan, Not Specified, Mortgage Loan, Auto Loan, Payday Loan, Payday Loan, and Credit-Builder Loan",90,1014,7.27,5,Standard,1013.57,30.95490019,9 Years and 3 Months,Yes,406.0769364,,High_spent_Medium_value_payments,516.0381101,0,-0.0049,0.5558,0.6346,-1.9012,2.1021 +0x5a6d,CUS_0xb508,August,26,106-55-1522,Entrepreneur,16819.98,,6,7,33,100,"Auto Loan, Student Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",39.09225249,24.34784897,-5.93,11,Bad,3363.607465,36.08185383,5 Years and 6 Months,Yes,37.67052211,47.5063206,High_spent_Medium_value_payments,332.8896573,0,-0.7964,-1.9249,-0.0726,0.8447,-1.3422 +0x5a79,CUS_0x96d9,August,18,772-15-1692,Entrepreneur,57588.9,,3,4,5,3,"Personal Loan, Credit-Builder Loan, and Student Loan",90,3260,3.07,1,Standard,288.34,38.5164386,32 Years and 8 Months,No,115.5773715,288.5655417,Low_spent_Medium_value_payments,385.6645868,0,2.1456,1.0305,-0.7101,0.7945,-0.0469 +0x5a85,CUS_0x7993,August,24,#F%$D@*&8,Media_Manager,61695.68,5230.306667,1,4,1.288361749,2,"Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",0,1,5.77,8,Good,654.6,31.320144,33 Years and 6 Months,No,101.1826257,513.5399506,High_spent_Large_value_payments,568.2455515,0,-0.221,0.1571,-0.6369,-0.8137,-1.3797 +0x5a91,CUS_0x709a,August,33,205-66-6851,Doctor,137714.36,,5,4,10,4,"Personal Loan, Personal Loan, Not Specified, and Personal Loan",13.76447527,9,0.72,2,Good,1354.15,31.49896538,22 Years and 9 Months,No,315.8970408,76.00775272,High_spent_Large_value_payments,1009.014873,0,1.0652,-0.3296,0.6602,1.8094,-0.4282 +0x5a9d,CUS_0x207a,August,25,510-06-5848,Media_Manager,22251.84,1799.32,4,2,6,3,"Payday Loan, Home Equity Loan, and Mortgage Loan",,7,11.6,1,Good,284.9662341,38.20128326,21 Years and 8 Months,No,46.01980317,69.60269187,High_spent_Medium_value_payments,322.5710157,0,-0.4214,0.9483,-0.1932,-0.41,-1.421 +0x5aa9,CUS_0xac23,August,26,738-28-1028,Accountant,78417.44,6472.286396,8,10,21,5,"Not Specified, Credit-Builder Loan, Mortgage Loan, Personal Loan, and Personal Loan",22.56170914,15.71459911,19.35,12,Standard,1886.763158,31.46232851,,Yes,514.4630553,91.29018667,High_spent_Medium_value_payments,622.025695,0,-1.5213,-0.0144,-0.3473,0.2583,-0.7385 +0x5ab5,CUS_0x8232,August,36,146-07-7618,Developer,9394.66,593.8883333,7,6,34,100,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Home Equity Loan",23.697299,18,4.58,10,Bad,1686.78,37.72754892,7 Years and 0 Months,Yes,33.21948646,64.95115279,Low_spent_Small_value_payments,251.2181941,0,0.6869,0.2932,-0.3912,0.4657,-0.1316 +0x5ac1,CUS_0xa350,August,41,421-48-0603,Scientist,33878.15,,4,2,8,0,,7.247661267,10,0.64,2,Good,1088.33647,22.87516623,,No,0,185.4328204,Low_spent_Large_value_payments,405.6509064,0,0.7206,-0.2878,0.6492,0.4668,0.0466 +0x5acd,CUS_0x7b66,August,22,#F%$D@*&8,Writer,57683.19,,8,10,16.88954781,6,"Debt Consolidation Loan, Student Loan, Not Specified, Personal Loan, Student Loan, and Student Loan",37.12046844,21.01293596,3.31,12,Bad,2384.805585,28.86267625,13 Years and 0 Months,Yes,1573.565114,190.4032874,High_spent_Medium_value_payments,264.6947671,0,0.0198,1.2271,1.1837,0.9576,-1.0666 +0x5ad9,CUS_0x2c74,August,33,804-50-3463,Scientist,9110.175,,7,7,34.06745738,6,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Auto Loan, Payday Loan, and Home Equity Loan",47.29226178,28.06385523,26.8,12,Bad,2224.769472,39.61662762,19 Years and 5 Months,Yes,39.01496543,36.85077366,Low_spent_Small_value_payments,262.732098,0,-0.7901,0.4216,-0.5676,1.0774,-1.2468 +0x5ae5,CUS_0xbb94,August,38,515-44-9854,Manager,43644.96,3551.08,6,8,26.06745738,5,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",37.52391625,24.75786848,8.12,11,Bad,2618.834026,37.05083222,10 Years and 6 Months,Yes,133.047023,176.0385142,Low_spent_Large_value_payments,289.3021748,0,0.5332,-0.3494,-0.8132,-0.3243,-0.1181 +0x5af1,CUS_0x5495,August,28,350-77-1604,Writer,73339.92,5916.66,4,4,17,3,"Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",19.11088116,12,4.22,3,Standard,1444.26,35.5867825,20 Years and 10 Months,No,152.5862814,339.9668285,High_spent_Small_value_payments,359.1128901,0,0.3409,-1.2981,-1.6506,-1.48,0.2353 +0x5afd,CUS_0x990e,August,22,438-34-4439,Accountant,35260.69,2839.390833,0,6,4.288361749,4,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",0,0,-1.16,2,Good,51.5,29.70284715,29 Years and 10 Months,No,91.42912178,,Low_spent_Large_value_payments,277.097804,0,0.2439,0.4342,0.9947,-0.1728,1.0001 +0x5b09,CUS_0x91ac,August,43,290-99-0089,_______,64666.48,5144.873333,7,7,28.06745738,6,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, Personal Loan, Mortgage Loan, and Not Specified",,29.630825,19.31,12,Bad,4211.508029,36.38554084,1 Years and 9 Months,Yes,257.1831074,66.83487718,High_spent_Large_value_payments,403.7490608,0,-1.2516,2.0502,-0.2493,-0.4915,-2.0174 +0x5b15,CUS_0x9934,August,43,850-08-6279,Doctor,120450.32,9985.526667,2,3,11,4,"Personal Loan, Payday Loan, Not Specified, and Home Equity Loan",0,1,10.28,5,Good,442.5234889,26.50849691,25 Years and 4 Months,No,387.8026801,128.905526,High_spent_Large_value_payments,741.0988882,0,-0.703,0.3428,-0.3475,1.6815,-0.0547 +0x5b21,CUS_0x48ae,August,43,498-90-5296,Writer,144037.08,12222.09,6,6,9,2,"Debt Consolidation Loan, and Credit-Builder Loan",15.64605893,10,10.92,3,Standard,696.67,38.42880288,29 Years and 5 Months,No,74503,,High_spent_Medium_value_payments,1048.049687,0,1.5402,1.4668,-0.8934,-0.2005,-0.7928 +0x5b2d,CUS_0x3966,August,27,977-16-6058,Journalist,47270.22,,7,9,29,4,"Not Specified, Auto Loan, Student Loan, and Home Equity Loan",,19.14715387,18.53,8,Bad,2120.707983,40.98788182,18 Years and 6 Months,Yes,96.67058118,101.6259823,High_spent_Small_value_payments,473.9219365,0,-0.4537,0.6319,-0.3961,0.1083,1.1367 +0x5b39,CUS_0x25a4,August,31,199-39-7712,Entrepreneur,63761.19,5143.4325,4,3,1,2,"Credit-Builder Loan, and Home Equity Loan",25.21448052,19,10.29,3,_,1448.2,35.75768142,22 Years and 11 Months,NM,100.8995845,123.8244767,High_spent_Small_value_payments,549.6191888,0,0.2547,1.0108,0.4449,-0.2382,-0.0291 +0x5b45,CUS_0xb40,August,32,#F%$D@*&8,Engineer,60348.92,5245.076667,6,6,13,699,"Auto Loan, and Home Equity Loan",,22,8.53,1,Standard,1134.8,37.65413542,16 Years and 0 Months,Yes,84.78038395,185.3483482,Low_spent_Large_value_payments,524.3789345,0,1.1169,-0.7442,1.2714,-0.2229,1.4654 +0x5b51,CUS_0xbc79,August,32,180-19-1991,_______,65714.32,5202.193333,549,6,28,4,"Student Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",23.5014266,13.54181875,9.73,12,Standard,1872.58533,24.6544522,9 Years and 8 Months,Yes,183.69058,44.55228922,High_spent_Large_value_payments,531.9764641,0,0.6662,-1.2159,0.1223,0.7367,-0.9004 +0x5b5d,CUS_0x9534,August,54,086-97-5528,Mechanic,133394.48,10851.20667,5,4,10,4,"Not Specified, Not Specified, Mortgage Loan, and Home Equity Loan",8.640318763,11,4.07,2,Good,948.79,32.4083243,15 Years and 10 Months,No,429.4343556,802.8373688,Low_spent_Small_value_payments,142.8489423,0,0.8033,0.2962,-0.128,-0.1269,0.4956 +0x5b69,CUS_0x4fe9,August,25,296-37-3283,Doctor,128066.44,10394.20333,4,6,6,4,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",6.544373665,9.495003183,5.38,2,Good,1093.878385,40.45951441,,No,366.3974663,242.5892817,High_spent_Large_value_payments,670.4335854,0,-0.4313,1.4631,-1.5679,0.9206,0.2866 +0x5b75,CUS_0x7d1e,August,41,003-51-5141,Scientist,60182.7,4800.225,6,7,5,7,"Student Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Not Specified, Not Specified, and Not Specified",,10.85178351,17.86,6,Standard,1896.105913,35.2906324,19 Years and 3 Months,Yes,265.4005523,,High_spent_Small_value_payments,178.3137894,0,-0.1718,0.6829,0.2819,-1.2202,-0.4529 +0x5b81,CUS_0xb2f7,August,38,#F%$D@*&8,Writer,102212.37,8470.6975,7,5,16,5,"Personal Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",21.65996026,15,7.97,11,Standard,657.3,34.76582047,18 Years and 9 Months,Yes,257.5915551,288.391703,High_spent_Medium_value_payments,551.0864918,0,0.0335,0.3875,0.1286,0.5785,-0.7001 +0x5b8d,CUS_0x360c,August,54,376-91-9157,Architect,12241.57,,6,6,12,3,"Home Equity Loan, Credit-Builder Loan, and Not Specified",29.07875029,19,3.14,1,Standard,89.62,34.5210057,23 Years and 10 Months,NM,21.64070671,112.7531926,Low_spent_Small_value_payments,280.419184,0,-0.3059,-1.5644,-0.8991,0.5093,-0.2478 +0x5b99,CUS_0xaf95,August,39,917-87-3520,Accountant,10418.045,,9,6,18,100,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",26.1956477,17,16.66,14,Bad,3599.97,26.75100644,9 Years and 2 Months,Yes,27.59459097,30.09308313,Low_spent_Medium_value_payments,321.7293676,0,0.4859,1.6956,1.3924,-0.4579,-1.3033 +0x5ba5,CUS_0x8c6d,August,52,545-35-1874,Scientist,41122.69,3717.890833,1,3,1,1,Auto Loan,4.939576803,8,10.67,4,_,1103.48,30.4980191,20 Years and 4 Months,No,22.11461255,65.37174659,High_spent_Medium_value_payments,534.3027242,0,-0.2131,-0.0883,-1.3054,-0.9532,2.2019 +0x5bb1,CUS_0x512d,August,18,291-73-4587,Engineer,83075.64,7015.97,6,4,16,1,Not Specified,17.56170022,12,18.49,5,Standard,1466.97,30.76981353,24 Years and 0 Months,Yes,56.76375399,183.7187661,Low_spent_Large_value_payments,731.1144799,0,0.4649,1.5033,-0.7849,1.647,1.5233 +0x5bbd,CUS_0x7ea5,August,33,990-75-0143,Mechanic,81402.48,6802.54,7,5,34,9,"Personal Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Not Specified",47.58358636,25.36449303,5.55,8,Bad,2794.694331,34.63493863,16 Years and 0 Months,Yes,436.4013434,313.9798878,!@9#%8,189.8727687,0,0.1825,-0.9233,1.4525,-0.2017,-0.0131 +0x5bc9,CUS_0x7b2b,August,38,337-58-4855,Architect,79631.28,,6,7,23,6,"Student Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",18.65113192,,7.37,11,Bad,3091.815359,37.47218169,15 Years and 9 Months,Yes,289.471213,195.6232134,Low_spent_Medium_value_payments,440.8995736,0,-0.201,-0.1778,-0.8086,0.9037,0.2134 +0x5bd5,CUS_0x8c8d,August,34,#F%$D@*&8,Teacher,18827.29,,9,6,33.06745738,3,"Personal Loan, Personal Loan, and Personal Loan",,27.65202067,12.54,10,_,1727.952814,32.3761924,19 Years and 8 Months,Yes,43.98119071,37.58746746,High_spent_Large_value_payments,280.2051372,0,-1.1247,1.1119,-0.1604,0.105,-2.5502 +0x5be1,CUS_0x8266,August,43,049-32-6597,Accountant,68266.3,,7,4,10,3,"Payday Loan, Home Equity Loan, and Credit-Builder Loan",12.23087185,9,8.32,2,Good,1025.571741,38.28172528,30 Years and 3 Months,No,124.0533897,137.0403774,High_spent_Medium_value_payments,549.5215937,0,1.4165,0.1974,-0.0905,-1.0597,-0.0082 +0x5bed,CUS_0x5f3b,August,20,445-12-2586,Teacher,56343.8,,6,3,5,0,,14.96149308,,7.24,1,Standard,1209.53,27.25428414,29 Years and 5 Months,No,0,,!@9#%8,531.5802137,0,-0.6348,-0.606,2.5209,-0.6056,0.248 +0x5bf9,CUS_0x991f,August,25,733-09-1512,Architect,118462.56,9702.88,2,399,1.288361749,2,"Mortgage Loan, and Payday Loan",5.668569717,8,3.81,5,Good,1290.468913,26.83130393,,No,128.9411294,1202.948446,Low_spent_Medium_value_payments,449.7747119,0,1.3556,-1.7276,-1.1276,-1.0049,-1.4832 +0x5c05,CUS_0x47a6,August,35,887-38-0825,Lawyer,30132.24,2782.02,7,3,10,0,,,21,9.64,7,Standard,162.58,23.83804151,7 Years and 11 Months,Yes,0,209.6056269,Low_spent_Large_value_payments,338.5963731,0,-0.4121,-0.7331,-0.6674,0.7492,0.378 +0x5c11,CUS_0x5454,August,35,911-96-3945,Musician,60788.82,,8,7,14,0,,19.58915017,11.61411805,0.96,6,Standard,1590.6092,35.93100503,17 Years and 3 Months,No,0,184.2970592,Low_spent_Small_value_payments,590.8764408,0,0.738,-0.3691,0.7146,-0.6414,-1.1972 +0x5c1d,CUS_0xa421,August,29,831-33-6843,Media_Manager,17926.7,1468.891667,6,3,870,2,"Payday Loan, and Auto Loan",,12.68108098,19.6,6,Standard,1279.529516,26.02365818,13 Years and 8 Months,Yes,20.29936912,64.06271635,High_spent_Small_value_payments,322.5270812,0,-0.277,-2.0379,1.8322,-1.775,0.6548 +0x5c29,CUS_0x753c,August,46,614-35-3519,Mechanic,34081.78,,6,6,30,8,"Payday Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Student Loan, Credit-Builder Loan, and Student Loan",33.95439243,16,25.91,,Bad,2612.33,27.12404367,8 Years and 0 Months,Yes,380.3924434,308.673147,Low_spent_Small_value_payments,62.159882,0,1.0282,1.1531,1.1176,0.4095,0.9725 +0x5c35,CUS_0x4ec9,August,31,912-23-3911,Engineer,36993.43,3348.785833,0,4,2,2,"Auto Loan, and Student Loan",4.922510409,5,1.9,2,Good,1357.79,28.09857991,,No,37.64206805,125.2045036,!@9#%8,452.0320117,0,-0.2217,-0.8942,0.0174,-2.5322,-1.1264 +0x5c41,CUS_0x8a8c,August,32,520-12-7956,Doctor,14219.02,1126.918333,10,5,23,7,"Auto Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, and Personal Loan",23.59945722,14,25.86,10,Bad,3628.5,22.22269941,3 Years and 4 Months,Yes,76.4860082,,Low_spent_Small_value_payments,216.1876163,0,-0.2938,1.8108,0.1507,-0.0663,1.9069 +0x5c4d,CUS_0x122f,August,80,179-85-5358,Media_Manager,18231.52,,6,1375,16.06745738,9,"Student Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Auto Loan, Auto Loan, and Payday Loan",32.36083574,19.22974251,1.83,7,_,1698.107553,35.02633209,15 Years and 5 Months,Yes,86.60864701,102.2605664,Low_spent_Small_value_payments,219.239832,0,-0.2284,0.7597,0.9131,-0.0812,-0.7418 +0x5c59,CUS_0xbab0,August,39,758-36-8574,Scientist,119312.08,9538.088084,5,5,17,4,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",,15,2.27,1,_,1042.524547,37.14165007,19 Years and 3 Months,Yes,800.0075651,744.806177,High_spent_Small_value_payments,279.9432637,0,0.695,0.129,-0.0768,1.6679,0.2856 +0x5c65,CUS_0xe0f,August,42,349-57-1872,Lawyer,32148.76,2571.063333,8,5,34.06745738,7,"Auto Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",,21.70717735,9.22,11,Standard,3287.266247,31.1201966,17 Years and 10 Months,Yes,165.1114159,,!@9#%8,135.3948584,0,0.2744,1.6828,0.1453,-0.3193,-0.6429 +0x5c71,CUS_0x1cc3,August,53,436-19-3706,Mechanic,154242.48,,1,6,11,3,"Not Specified, Student Loan, and Personal Loan",0,3.471903857,8.2,5,Good,1592.511254,31.45284674,,No,201.5609788,,Low_spent_Small_value_payments,623.4495308,0,1.1923,-0.2485,1.1729,0.6673,0.4068 +0x5c7d,CUS_0xb014,August,28,327-02-8791,_______,83062.28,7162.856667,7,9,33,5,"Student Loan, Student Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",,17,6.52,12,Bad,2173.72,36.39141326,17 Years and 4 Months,Yes,176.3191413,150.5834498,High_spent_Small_value_payments,649.3830756,0,-0.0051,0.0754,0.9497,0.4079,-1.4167 +0x5c89,CUS_0x6cc6,August,39,857-13-7259,Media_Manager,59477,5231.416667,4,7,5,3,"Mortgage Loan, Home Equity Loan, and Student Loan",21.84381535,15,10.46,7,Standard,1721.85,29.54531926,,Yes,147.774374,110.4003034,!@9#%8,504.9669893,0,-0.6438,-1.3337,-1.5991,0.1798,-1.1961 +0x5c95,CUS_0xa17a,August,29,985-19-2989,Entrepreneur,173569.2,14672.1,1,5,11,2,"Home Equity Loan, and Debt Consolidation Loan",,1,5.34,1319,Good,190.4,46.97922855,30 Years and 8 Months,No,206.2468014,110.7079405,High_spent_Large_value_payments,1390.255258,0,-0.9966,1.7209,-1.3146,1.3779,1.0252 +0x5ca1,CUS_0x4d1b,August,21,627-98-2185,_______,140135.24,,7,6,14,0,,19.89043014,15,19.21,6,Standard,929.51,33.08103571,32 Years and 3 Months,Yes,0,192.9909272,High_spent_Large_value_payments,1185.102739,0,1.049,-0.1475,2.7781,0.7074,0.5192 +0x5cad,CUS_0x231b,August,42,#F%$D@*&8,Entrepreneur,8856.75,989.0625,6,5,29,5,"Mortgage Loan, Auto Loan, Home Equity Loan, Not Specified, and Student Loan",,21.87890289,18.07,8,Bad,2308.893767,38.25121953,6 Years and 8 Months,Yes,35.92089437,,Low_spent_Small_value_payments,302.1989438,0,-0.6602,0.4917,0.7164,0.1454,-0.6504 +0x5cb9,CUS_0xbede,August,21,626-12-6345,Media_Manager,51477.8,4130.816667,3,5,8,2,"Student Loan, and Payday Loan",19.48119892,,15.84,7,Standard,478.17,37.58848131,17 Years and 11 Months,Yes,67.79771854,,Low_spent_Medium_value_payments,397.3660599,0,1.3113,0.7434,1.0745,-0.0748,-1.1231 +0x5cc5,CUS_0x6440,August,40,924-60-9151,Lawyer,47634.45,,10,6,20,5,"Credit-Builder Loan, Personal Loan, Auto Loan, Personal Loan, and Debt Consolidation Loan",28.91267818,24,3.16,13,_,1626.64,23.24118936,14 Years and 8 Months,Yes,170.6618099,,Low_spent_Small_value_payments,132.7081689,0,-0.153,0.8657,1.3444,-0.2566,-0.2333 +0x5cd1,CUS_0x38bc,August,34,018-15-9448,Developer,14263.355,918.6129167,1,7,12,2,"Credit-Builder Loan, and Mortgage Loan",11.56744301,9,10.75,4,_,542.5,35.51509887,18 Years and 10 Months,No,23.47531041,81.53076542,Low_spent_Small_value_payments,276.8552158,0,-2.4669,0.5102,1.5632,-0.2583,-0.5876 +0x5cdd,CUS_0x3562,August,38,821-34-2286,Media_Manager,43436.27,3487.689167,0,1,4.288361749,2,"Not Specified, and Mortgage Loan",,2,8.19,4,Good,56.08985023,25.38019421,17 Years and 6 Months,No,58.41158774,484.1616046,High_spent_Medium_value_payments,484.4560236,0,0.5298,-1.087,1.0227,-1.9249,0.4173 +0x5ce9,CUS_0x1510,August,27,847-73-6303,Doctor,53218.86,,10,9,26.06745738,2,"Not Specified, and Credit-Builder Loan",,21.77064774,8.67,12,Bad,3179.265957,36.51903431,,Yes,56.38856296,146.7492008,High_spent_Medium_value_payments,491.7324483,0,-0.5298,0.2895,-0.0273,-0.4309,0.9057 +0x5cf5,CUS_0x1604,August,43,078-26-7485,Developer,16632.745,1209.062083,0,3,6,100,Auto Loan,,0,6.24,7,Good,1415.37,24.65930416,21 Years and 4 Months,No,7.991650369,78.17056323,Low_spent_Large_value_payments,304.7439947,0,0.8486,1.2669,-0.1284,1.0538,0.3166 +0x5d01,CUS_0x7d6f,August,36,789-78-6914,Teacher,21454.72,,3,4,5,3,"Payday Loan, Personal Loan, and Mortgage Loan",16.61248575,10,10.36,3,_,990.57,38.65167361,30 Years and 6 Months,Yes,70242,44.4084629,Low_spent_Large_value_payments,351.5815104,0,-0.9994,-0.1452,-0.7249,-2.4963,1.5509 +0x5d0d,CUS_0xa2f5,August,18,596-05-5810,Teacher,52243.64,4421.636667,8,6,11,1,Auto Loan,11.64173022,9,13.61,8,_,1336.5,41.22081383,22 Years and 2 Months,Yes,33.63145306,75.7786808,High_spent_Medium_value_payments,582.7535328,0,-0.111,-0.4982,-0.5821,-1.6506,0.1364 +0x5d19,CUS_0x2598,August,54,176-78-1528,Entrepreneur,123299.12,,2,2,7.288361749,100,"Not Specified, Credit-Builder Loan, and Credit-Builder Loan",0,2,,7,Good,779.6855363,31.40115085,,No,289.4723049,,High_spent_Large_value_payments,851.3328508,0,0.0357,0.0872,-1.5589,-0.4495,0.1982 +0x5d25,CUS_0x93d0,August,34,967-86-3838,Architect,22375.64,2039.636667,1628,5,20,3,"Auto Loan, Not Specified, and Payday Loan",12.54400165,10,5.4,0,Standard,182.26,25.18817272,32 Years and 2 Months,Yes,45.22591113,10000,High_spent_Large_value_payments,361.6594543,0,-0.8613,-0.8136,0.0234,0.0157,0.402 +0x5d31,CUS_0x785f,August,30,690-86-5300,Manager,42147.89,3283.324167,5,4,2,2,"Home Equity Loan, and Credit-Builder Loan",,9,2.02,7,Good,305.6872457,34.53587667,23 Years and 4 Months,No,44.4773721,253.3809438,Low_spent_Medium_value_payments,344.8177742,0,0.7023,-2.4871,-1.7265,-1.9172,-0.1146 +0x5d3d,CUS_0xb4bc,August,37,922-89-7066,Entrepreneur,54842.58,4734.215,8,9,30.95700519,7,"Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Not Specified, Payday Loan, and Personal Loan",22.17053359,15,25.94,11,Bad,3699.100954,30.35465781,3 Years and 0 Months,Yes,1513.141116,211.430769,Low_spent_Small_value_payments,317.7992461,0,-0.4681,-0.3413,0.7078,-1.5242,-0.2323 +0x5d49,CUS_0x75fb,August,80,844-23-8730,Musician,22870.49,,4,4,14.06745738,1,Credit-Builder Loan,22.40041811,,17.92,10,Standard,1431.58467,26.54097001,32 Years and 3 Months,Yes,12.18215403,86.45444958,Low_spent_Large_value_payments,313.2305251,0,0.3749,-1.4512,-2.3678,0.5597,0.6168 +0x5d55,CUS_0x606d,August,45,170-50-5035,Accountant,52616.28,4279.69,7,10,28.06745738,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Personal Loan",,22.0262583,10.52,10,_,3035.974572,32.8137891,19 Years and 11 Months,Yes,27454,487.6037303,Low_spent_Small_value_payments,87.64099254,0,0.0381,-0.4605,-0.5922,1.0009,0.0047 +0x5d61,CUS_0x8f74,August,22,314-07-2615,Lawyer,37116.66,,3,7,32,5,"Payday Loan, Auto Loan, Personal Loan, Not Specified, and Credit-Builder Loan",,22,12.54,10,Standard,1353.06,29.03165626,6 Years and 2 Months,Yes,123.2410515,160.3159953,High_spent_Small_value_payments,271.9484532,0,2.1468,-0.7967,0.3472,-1.0828,-1.4829 +0x5d6d,CUS_0xa8df,August,46,601-67-5511,Writer,140276.8,11738.73333,5,3,4.288361749,4,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",21.81421,19,8.22,2,_,817.22,34.17827934,33 Years and 5 Months,Yes,383.2384505,1014.281702,Low_spent_Medium_value_payments,476.2906422,0,0.7428,0.7172,0.0169,-0.8247,0.6939 +0x5d79,CUS_0x9a95,August,18,#F%$D@*&8,Mechanic,46175.49,4098.9575,6,6,19.06745738,4,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",41.45422309,25.17623338,8.11,7,Bad,3014.277117,40.21421451,11 Years and 8 Months,Yes,105.3241017,351.3888741,Low_spent_Small_value_payments,216.4624863,0,-0.5274,0.8035,0.7776,0.1162,-0.6103 +0x5d85,CUS_0xad87,August,26,743-13-8477,Entrepreneur,69024.2,5492.016667,9,7,27,7,"Auto Loan, Student Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Mortgage Loan, and Payday Loan",50.25117289,29.85407093,,11,Bad,4989.82352,27.98987533,4 Years and 10 Months,Yes,311.4266147,451.0217493,!@9#%8,66.75330262,0,-0.4008,0.5162,0.4481,-1.9876,1.4041 +0x5d91,CUS_0x4dd5,August,25,530-61-6560,Musician,14402.52,,6,6,29.06745738,8,"Payday Loan, Not Specified, Payday Loan, Not Specified, Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",,15.0189246,19.86,13,Bad,5668.129013,34.12753286,7 Years and 10 Months,Yes,73.34767036,171.4533112,Low_spent_Small_value_payments,153.1997305,0,-0.6171,0.3054,-0.7366,0.2867,1.8855 +0x5d9d,CUS_0x187e,August,28,229-21-4534,Entrepreneur,19653.61,1800.800833,9,5,26.06745738,7,"Credit-Builder Loan, Payday Loan, Personal Loan, Auto Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",33.49367103,22.88950149,19.67,11,Bad,4566.360574,34.20551363,13 Years and 11 Months,Yes,63.36866264,22.59432225,High_spent_Large_value_payments,307.3968105,0,-1.8789,0.1847,0.1173,-1.8066,0.4797 +0x5da9,CUS_0x3394,August,42,787-74-8249,Journalist,39540.78,3410.065,8,7,26.06745738,7,"Auto Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",27.61310312,15,26.32,,Bad,3729.410954,37.854788,10 Years and 10 Months,Yes,227.5308649,10000,High_spent_Small_value_payments,276.5922186,0,0.7105,0.9426,0.0041,1.7009,-2.5902 +0x5db5,CUS_0x4993,August,36,928-18-1535,Journalist,142737.36,11656.78,1,2,3.288361749,2,"Personal Loan, Payday Loan, and Debt Consolidation Loan",3.876489851,6,2.64,4,Good,1050.914332,39.99824961,24 Years and 10 Months,No,273.6023575,997.8531136,Low_spent_Large_value_payments,642.4908164,0,1.5241,1.5005,-0.8601,-0.7273,-0.5333 +0x5dc1,CUS_0x4c7e,August,29,570-70-2382,Writer,15827.06,1422.921667,8,8,29.88954781,6,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",21.70177738,17,5.41,14,Bad,2396.06,38.41155615,10 Years and 8 Months,NM,1381.203437,60.42146795,High_spent_Medium_value_payments,256.3371805,0,0.7391,0.1713,-0.8013,0.6521,-0.3485 +0x5dcd,CUS_0xbf4c,August,26,741-99-8188,_______,14649.275,,3,5,9,0,,0,0,5.65,2,Good,554.58,29.37642942,23 Years and 0 Months,No,0,92.31485184,Low_spent_Small_value_payments,309.5624398,0,-1.454,-2.1382,1.5248,-0.4602,0.2106 +0x5dd9,CUS_0xb22,August,35,882-91-0469,_______,19703.09,1563.924167,9,9,23.06745738,7,"Mortgage Loan, Personal Loan, Not Specified, Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",24.36925395,15,21.51,11,Bad,2900.450954,24.70530364,5 Years and 11 Months,Yes,89.23930823,103.1011249,High_spent_Small_value_payments,197.3316956,0,0.6791,1.0407,-0.3629,0.5044,-0.4443 +0x5de5,CUS_0x56b4,August,33,369-55-1958,Doctor,17416.75,,5,6,12,4,"Payday Loan, Payday Loan, Student Loan, and Personal Loan",,10,10.1,1,_,453.3804719,39.49629675,30 Years and 9 Months,NM,36.5591861,13.44178913,High_spent_Large_value_payments,316.0001131,0,-1.0942,-0.3257,-0.5583,0.6419,0.3635 +0x5df1,CUS_0xc704,August,40,530-12-1811,Media_Manager,92201.25,,3,7,15,1,Not Specified,20.36732669,13,6.38,5,Standard,1020.05,26.58767985,,NM,48.88074476,266.9659749,Low_spent_Small_value_payments,733.1970304,0,0.0444,2.3309,-0.4692,-0.8136,0.5311 +0x5dfd,CUS_0x6244,August,41,223-31-8165,Mechanic,69707.31,5608.9425,6,6,12,2,"Personal Loan, and Credit-Builder Loan",,,3.99,3,Standard,10.79086716,36.81094796,26 Years and 9 Months,No,108.4791012,147.1597405,High_spent_Medium_value_payments,555.2554083,0,0.0627,0.2474,-0.2601,0.4954,-0.961 +0x5e09,CUS_0xa04f,August,43,#F%$D@*&8,Architect,135941.28,11058.44,3,3,11,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",11.8400045,6.844537056,7.21,0,_,1360.812908,29.45938937,31 Years and 3 Months,Yes,66023,361.8082295,Low_spent_Medium_value_payments,741.75119,0,0.328,-0.1116,0.4901,-0.4798,0.9607 +0x5e15,CUS_0x97a,August,29,#F%$D@*&8,Accountant,44913.34,3480.778333,2,1,5,0,,17.70163748,,0.57,4,Good,552.97,27.97151944,31 Years and 10 Months,No,0,80.5547326,High_spent_Medium_value_payments,517.5231007,0,0.5663,0.884,-0.5633,-1.0658,-0.0074 +0x5e21,CUS_0x2590,August,20,717-54-8782,Engineer,14455.15,912.5958333,6,5,19,0,,16.28522631,16,10.56,7,Standard,934.0692527,36.08579332,13 Years and 3 Months,Yes,0,26.12089225,High_spent_Large_value_payments,308.2035317,0,-0.2304,-1.0816,-0.3605,0.0984,0.5011 +0x5e2d,CUS_0x7394,August,40,299-85-9022,Developer,64734.84,5556.57,1,3,7,4,"Payday Loan, Student Loan, Not Specified, and Personal Loan",,1,6.8,4,Good,593.94,39.95432766,18 Years and 0 Months,No,126.4124124,,High_spent_Medium_value_payments,463.5894523,0,-1.752,-0.0353,0.772,0.1882,1.614 +0x5e39,CUS_0x6c4c,August,47,#F%$D@*&8,Accountant,85953.88,7140.823333,3,3,16,4,"Personal Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",23.71153219,18,15.55,9,Standard,649.07,27.12889687,29 Years and 0 Months,NM,219.2491745,115.21595,High_spent_Large_value_payments,619.6172089,0,-1.279,-0.3611,-0.9171,-0.8157,-0.7535 +0x5e45,CUS_0x3eeb,August,50,817-12-6781,_______,21755.79,,8,4,20,2,"Mortgage Loan, and Not Specified",,23,9.3,3,Standard,604.9,32.72240181,,Yes,31.15535817,71.42810779,Low_spent_Large_value_payments,340.614784,0,1.3858,0.1883,0.5621,0.7947,0.3595 +0x5e51,CUS_0x68dc,August,33,152-35-3169,Musician,90701.28,7654.44,1,5,10.28836175,0,,0,3.615479257,8.26,5,Good,295.3856817,25.53946523,22 Years and 3 Months,No,0,621.9296329,High_spent_Medium_value_payments,813.4518281,0,1.8976,0.421,0.0816,0.9208,0.2865 +0x5e5d,CUS_0x2ee6,August,31,178-36-1761,Journalist,15201.005,1457.750417,0,863,8,2,"Credit-Builder Loan, and Debt Consolidation Loan",8.951874812,8,4.12,5,Good,1078.95,32.34606795,27 Years and 9 Months,No,23.34434152,,Low_spent_Medium_value_payments,256.6066442,0,0.2809,-0.2021,-1.0087,0.5169,-1.5128 +0x5e69,CUS_0x44fc,August,27,736-91-2621,_______,132662.22,10872.185,0,6,5,4,"Personal Loan, Not Specified, Mortgage Loan, and Payday Loan",,2.333723599,11.63,5,Good,1679.140699,36.55001706,18 Years and 3 Months,No,356.1429292,80.77340004,High_spent_Large_value_payments,890.3021707,0,-0.2924,-1.6916,0.6926,-1.1421,-0.4311 +0x5e75,CUS_0xde7,August,21,958-41-4902,Manager,19553.805,,4,1,8.288361749,2,"Payday Loan, Not Specified, and Personal Loan",0,2,10.44,0,Good,126.9488334,35.536818,29 Years and 5 Months,NM,41.36318341,590.9986197,Low_spent_Medium_value_payments,235.7890528,0,0.3124,0.0668,1.5646,-2.3154,1.3429 +0x5e81,CUS_0x117f,August,51,082-69-3410,Scientist,93847.86,7599.655,3,4,12,3,"Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",11.37555353,10,11.52,5,Standard,1405.22,28.96635605,16 Years and 5 Months,No,196.7267019,522.5572279,Low_spent_Large_value_payments,310.6815702,0,-1.284,0.1159,0.5503,-1.1769,0.7337 +0x5e8d,CUS_0x1c61,August,25,055-60-0860,Entrepreneur,96540.69,8068.0575,4,3,8.288361749,0,,0,2,6.39,7,Good,505.9582802,27.11173763,15 Years and 10 Months,No,0,546.3076202,High_spent_Medium_value_payments,948.1149953,0,-0.9453,-0.5879,-0.6264,-0.6684,-1.4096 +0x5e99,CUS_0x9135,August,36,949-97-8482,Journalist,19567,1681.583333,8,10,29.95700519,7,"Auto Loan, Mortgage Loan, Not Specified, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,26.20368832,6.77,6,Bad,2651.494868,26.96978252,18 Years and 6 Months,Yes,1409.927,212.4083466,!@9#%8,114.7726174,0,0.4058,1.1486,0.2774,-0.7051,-1.6484 +0x5ea5,CUS_0x1309,August,51,691-12-6696,Writer,106876.77,9149.3975,4,5,12,1,Not Specified,28.23353974,20,8.24,4,Good,356.07,32.77761753,29 Years and 5 Months,No,62.24258066,119.843141,High_spent_Large_value_payments,972.8540284,0,0.2044,-0.9798,1.4032,1.6805,-0.0842 +0x5eb1,CUS_0x670c,August,42,666-06-3235,Musician,90668.85,7149.133239,5,4,8,4,"Mortgage Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",14.28136296,10,3.03,7,Standard,813.27,33.21583954,25 Years and 8 Months,No,736.997384,51.52503466,High_spent_Large_value_payments,723.6555927,0,-0.3159,1.4977,-1.439,0.6196,-1.1506 +0x5ebd,CUS_0x93af,August,24,633-97-0538,Doctor,35221.43,,5,3,1,4,"Personal Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",4.94476915,2.256018733,3.66,1,Good,699.3956715,35.15054641,29 Years and 4 Months,No,110.0385826,,Low_spent_Medium_value_payments,333.2808343,0,-0.2615,0.798,-2.2356,-0.975,-0.446 +0x5ec9,CUS_0x3f65,August,36,650-51-7412,Musician,14489.925,1151.49375,3,3,18,1,Auto Loan,17.53438857,12,9.91,4,Standard,1339.99,32.25197191,33 Years and 2 Months,No,9.625827166,46.40676567,High_spent_Medium_value_payments,309.1167822,0,0.6108,0.7935,-0.0093,-0.9471,1.4378 +0x5ed5,CUS_0x5d44,August,25,272-17-8252,Architect,93561.72,7547.81,4,4,12,4,"Personal Loan, Mortgage Loan, Payday Loan, and Personal Loan",24.827952,16,6.78,10,Standard,469.43,38.8740437,31 Years and 11 Months,Yes,215.353699,131.06039,High_spent_Large_value_payments,648.366911,0,-0.6276,2.7077,1.4705,0.8101,1.1995 +0x5ee1,CUS_0x5213,August,24,480-01-9287,Writer,127559.68,10605.97333,3,6,11,3,"Credit-Builder Loan, Personal Loan, and Student Loan",,,10.32,6,_,1271.78,36.97529606,27 Years and 0 Months,No,209.7125981,546.6721261,Low_spent_Medium_value_payments,584.2126092,0,-0.4611,0.6288,-0.2079,2.6678,1.3148 +0x5eed,CUS_0x18bc,August,41,653-29-6403,Engineer,72617.55,,26,4,5,100,"Personal Loan, and Debt Consolidation Loan",19.89866562,,,7,Good,1475.91,28.91926158,,No,89.40561295,389.7809703,Low_spent_Medium_value_payments,400.4596668,0,0.7117,-1.2145,1.446,-0.0797,-0.9584 +0x5ef9,CUS_0x37be,August,25,137-14-1045,Writer,87888.72,7253.06,5,3,11,0,,90,4583.487775,8.91,1,Standard,154.4933071,28.76920747,30 Years and 10 Months,Yes,0,224.220367,Low_spent_Large_value_payments,771.085633,0,-2.2819,0.5825,-1.0609,0.1778,-0.6573 +0x5f05,CUS_0x7c0f,August,30,#F%$D@*&8,Architect,48053.61,,7,8,17,5,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,20,7.85,14,Bad,2141.5,37.76619278,20 Years and 6 Months,Yes,175.9654148,,Low_spent_Medium_value_payments,172.7650027,0,0.5892,0.664,-0.6128,1.7771,-1.8846 +0x5f11,CUS_0xc242,August,18,854-44-2997,Mechanic,17018.45,1188.204167,8,6,25,7,"Payday Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",25.1978288,19,15.35,16,Bad,4742.17,37.45147067,3 Years and 8 Months,NM,62.52607699,46.31754521,Low_spent_Small_value_payments,299.9767945,0,-1.5619,-0.5809,-0.7182,-0.4059,1.0344 +0x5f1d,CUS_0xc4c3,August,52,718-68-7156,Media_Manager,32276.42,,5,6,17,1,Auto Loan,,20.34341048,,,Standard,702.4830774,27.22610935,32 Years and 2 Months,Yes,19.54475342,41.12326175,High_spent_Large_value_payments,475.2021515,0,0.0241,1.2944,1.4647,-0.5423,1.347 +0x5f29,CUS_0x3ade,August,29,085-36-7495,Writer,20000.41,,2,5,5,1,Home Equity Loan,,733,4.48,0,Good,446.57,30.27317983,27 Years and 9 Months,No,191.720143,68.02699149,High_spent_Medium_value_payments,360.4674549,0,-0.407,0.6264,1.2062,-0.085,0.4678 +0x5f35,CUS_0x5640,August,25,359-55-3612,Doctor,42812.02,3604.840962,5,5,3213.288362,4,"Personal Loan, Personal Loan, Credit-Builder Loan, Student Loan, and Auto Loan",,18,11.69,1437,Standard,144.39,35.72267527,,Yes,395.5375623,598.9240906,Low_spent_Small_value_payments,316.670013,0,-0.9918,0.0671,-1.1693,1.0737,1.3385 +0x5f41,CUS_0x30d0,August,48,369-12-1985,Entrepreneur,17620.615,1414.384583,0,5,4,4,"Mortgage Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",,12.54457946,4.44,2,Good,1218.784744,26.00407448,15 Years and 10 Months,No,36.92794258,94.00471147,Low_spent_Medium_value_payments,290.5058043,0,-1.2702,-0.449,0.5346,0.0754,-0.7086 +0x5f4d,CUS_0xac14,August,34,588-97-9229,Media_Manager,66575.2,5631.933333,5,4,2,2,"Auto Loan, and Auto Loan",14.4531806,,2.96,6,Good,898.2324902,31.28544933,17 Years and 4 Months,No,74296,124.2741518,High_spent_Large_value_payments,584.1562765,0,0.6499,-1.6882,0.7641,-0.5951,-0.1648 +0x5f59,CUS_0x2d78,August,43,622-94-8955,Media_Manager,45408.84,3823.07,7,7,26,6,"Not Specified, Student Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",,21.21177673,8.01,9,Bad,2191.037777,33.39771664,11 Years and 4 Months,Yes,119.676529,173.8440846,High_spent_Small_value_payments,348.7863864,0,-1.2411,-0.4085,-0.2964,-0.304,-1.8465 +0x5f65,CUS_0x9cc2,August,39,865-85-5827,Developer,48755.5,,5,6,1,2,"Debt Consolidation Loan, and Home Equity Loan",17.17012932,13,8.46,3,Standard,918.88,32.8672345,21 Years and 4 Months,No,76.71479237,10000,High_spent_Medium_value_payments,449.9129571,0,-0.7231,-0.8484,-0.6246,-0.8945,-0.4442 +0x5f71,CUS_0xa300,August,50,229-41-1034,Lawyer,159560.76,13580.73,3,1,5.288361749,0,Mortgage Loan,11.22376487,11,5.67,3,Good,1154.59,38.23194041,25 Years and 11 Months,No,130.0370484,570.2004771,High_spent_Large_value_payments,1317.772935,0,0.7855,-0.2555,0.2568,1.6523,-0.2002 +0x5f7d,CUS_0x5857,August,48,718-24-5226,Mechanic,114201.56,,3,7,12,1,Mortgage Loan,,6,4.26,1,Good,1490.4,39.36555924,27 Years and 9 Months,No,90.37106128,73.95586796,High_spent_Large_value_payments,1012.552737,0,-1.0605,-0.7842,0.9868,1.4911,0.1986 +0x5f89,CUS_0xb4c1,August,38,390-19-1053,Engineer,133057.89,,5,7,7.288361749,4,"Home Equity Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",,3,3.76,3,Good,1169.765209,32.35423135,22 Years and 2 Months,No,355.3523328,687.3512038,High_spent_Small_value_payments,745.5188845,0,-1.2764,0.7054,-0.4139,0.322,-0.4633 +0x5f95,CUS_0x1b88,August,26,137-52-4360,Architect,20835.39,,3,3,1,4,"Auto Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",18.30119215,,11.64,5,Good,1652.542717,33.17597995,22 Years and 10 Months,No,36.00098679,93.67044108,Low_spent_Small_value_payments,331.0568221,0,0.0194,-0.1448,0.069,-0.5868,-1.1973 +0x5fa1,CUS_0x8f45,August,48,764-27-1364,Architect,4156013,,7,4,17,1,Debt Consolidation Loan,15.22681477,10,2.26,6,Standard,274.91,28.80203394,25 Years and 8 Months,Yes,9.801338745,106.5663368,Low_spent_Small_value_payments,324.0379911,0,-0.4705,-1.2471,-0.2541,1.5877,-0.0422 +0x5fad,CUS_0x1960,August,54,072-65-2594,Architect,32707.14,2679.595,5,6,20,1,Home Equity Loan,16.62230173,9,1.97,4,Standard,405.07,34.46626402,23 Years and 11 Months,Yes,22.10318546,77.64301898,Low_spent_Medium_value_payments,448.2132956,0,0.705,-0.5373,0.004,-0.1603,-0.2079 +0x5fb9,CUS_0x2deb,August,21,#F%$D@*&8,Journalist,50352.09,,3,7,15,2,"Student Loan, and Payday Loan",6.98759074,9,18.13,7,Standard,1385.99,26.13691308,17 Years and 3 Months,Yes,60.32243451,10000,!@9#%8,450.8433566,0,-0.3907,-0.4794,1.1798,0.6192,-0.0482 +0x5fc5,CUS_0x8ec,August,38,015-99-4651,Scientist,76223.58,5640.117744,5,5,3,0,,1.117987355,4,0.8,5,Good,1186.768295,35.8749129,27 Years and 3 Months,No,776.8472559,,High_spent_Medium_value_payments,808.7331,0,0.6086,0.0229,-0.2114,-0.0181,0.4766 +0x5fd1,CUS_0x5379,August,24,176-84-5216,Developer,73458.16,6151.513333,1,4,2828,4,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",0,1,5.31,5,Good,121.79,34.12104604,16 Years and 10 Months,No,139.6173517,125.3783189,High_spent_Large_value_payments,590.1556627,0,-1.1919,-0.4685,-0.4221,2.4428,-0.0159 +0x5fdd,CUS_0xa1aa,August,38,237-00-5799,Doctor,17550.11,1546.509167,6,6,20,8,"Not Specified, Not Specified, Auto Loan, Payday Loan, Personal Loan, Personal Loan, Payday Loan, and Auto Loan",41.08614525,29.06189096,24.83,10,Bad,4536.308626,39.63192167,5 Years and 2 Months,Yes,90.61562734,42.04002985,Low_spent_Medium_value_payments,301.9952595,0,-1.0771,1.2836,2.4693,-0.915,-0.8719 +0x5fe9,CUS_0x93cd,August,41,357-20-4131,Engineer,99600.92,6884.799215,6,3,9,1,Student Loan,,8,10.29,3,_,452.309033,34.16655114,27 Years and 4 Months,No,1194.784437,11277.96609,Low_spent_Large_value_payments,510.2200726,0,1.4839,0.9584,0.4885,0.6732,0.1325 +0x5ff5,CUS_0xa5b6,August,42,066-53-5086,Media_Manager,13019.77,863.9808333,7,4,13,1,Not Specified,14.67809813,13,0.92,3,_,937.2,23.88582535,26 Years and 3 Months,No,5.905518076,73.12155498,Low_spent_Large_value_payments,277.3710103,0,-0.7924,-0.1759,-1.3828,0.4778,1.6497 +0x6001,CUS_0xc81,August,41,554-34-3994,Doctor,22694.46,,3,3,19,2,"Payday Loan, and Personal Loan",8.806094923,10,2.59,4,Standard,679.1,29.49062937,18 Years and 5 Months,NM,29.75174487,29.39738708,High_spent_Large_value_payments,374.9713681,0,1.3829,0.0934,-0.077,0.1082,-1.7275 +0x600d,CUS_0x71e8,August,27,537-86-0139,Entrepreneur,20013.55,,7,6,16,6,"Auto Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Student Loan, and Personal Loan",29.14240367,19.47606714,22.98,13,Bad,5381.742682,32.72569682,13 Years and 11 Months,Yes,69.53825148,76.87533193,Low_spent_Small_value_payments,283.3659999,0,-0.3043,-0.2043,0.9558,-0.6941,-0.7442 +0x6019,CUS_0x24cf,August,21,619-62-6833,Scientist,28187.35,2201.945833,6,5,12,4,"Auto Loan, Auto Loan, Auto Loan, and Home Equity Loan",,14,20.09,9,Standard,321.76,36.20955601,16 Years and 3 Months,Yes,83.6172326,25.81091122,High_spent_Large_value_payments,350.7664395,0,-0.8751,-1.3959,0.1266,-0.8028,-1.0844 +0x6025,CUS_0x2984,August,19,044-39-3966,Lawyer,20855.32,,5,7,20,0,,18.82293249,14,19.38,5,_,50.64549437,40.63180929,28 Years and 5 Months,Yes,0,60.77809803,High_spent_Small_value_payments,408.9514687,0,-2.9049,0.5541,0.8654,0.4082,-0.4559 +0x6031,CUS_0x878d,August,38,698-27-4885,_______,131296.92,,4,3,11.28836175,2,"Not Specified, Personal Loan, and Home Equity Loan",0,0,3.88,7,Good,1029.35,31.73269084,27 Years and 6 Months,No,231.0094532,,High_spent_Large_value_payments,892.8988948,0,1.4618,-0.0946,-1.729,0.2929,0.7659 +0x603d,CUS_0xdc2,August,18,331-16-1841,Manager,36964.08,3032.067813,7,7,28,7,"Mortgage Loan, Credit-Builder Loan, Student Loan, Payday Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",31.6247852,22,23.07,6,Bad,4968.99,37.88350454,13 Years and 5 Months,Yes,448.0100729,186.5565993,High_spent_Small_value_payments,225.9395148,0,0.1592,-1.8411,1.2669,0.7266,0.0121 +0x6049,CUS_0x3cfe,August,28,330-78-4673,Journalist,29498.09,,2,4,1,2,"Debt Consolidation Loan, and Mortgage Loan",0,2,2.58,3,Good,523.5269237,38.62296563,27 Years and 2 Months,No,43.71561692,252.0407004,Low_spent_Small_value_payments,281.8558019,0,0.075,-0.2425,0.4909,0.8104,0.2356 +0x6055,CUS_0x449b,August,25,807-35-0785,_______,36943.98,3369.665,8,9,35.95700519,8,"Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Not Specified",31.52270055,16,19.98,10,Bad,4958.590954,27.83731072,14 Years and 5 Months,Yes,1496.342231,,High_spent_Medium_value_payments,243.4145663,0,-0.173,-0.2365,0.4526,-0.4082,-0.3746 +0x6061,CUS_0x8dc0,August,34,123-97-7515,Lawyer,15185.65,,8,9,27,100,"Auto Loan, Payday Loan, and Debt Consolidation Loan",32.22142015,17.70319412,17.75,12,Standard,2475.145794,38.7127325,15 Years and 11 Months,Yes,22.73084035,68.69771841,Low_spent_Medium_value_payments,321.5185246,0,0.6722,0.2918,-1.0644,1.1082,0.0765 +0x606d,CUS_0x2625,August,35,623-33-7162,_______,61461.18,,6,6,35.06745738,9,"Personal Loan, Auto Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, Student Loan, Home Equity Loan, and Payday Loan",41.75661072,21.61539735,5.5,15,_,4933.782241,31.62970148,6 Years and 0 Months,Yes,450.6386078,166.6177844,High_spent_Medium_value_payments,89.4998199,0,-1.7157,0.955,-2.2853,-1.6986,0.6749 +0x6079,CUS_0x73ee,August,27,647-87-1377,Mechanic,26396.88,2356.74,3,7,2,2,"Home Equity Loan, and Credit-Builder Loan",22.38599895,,11.63,309,Good,504.18,29.21078611,19 Years and 2 Months,No,22.96907109,105.2153523,Low_spent_Small_value_payments,397.4895766,0,-0.3417,0.5637,-0.8891,-0.2292,-0.1219 +0x6085,CUS_0xa90,August,38,752-12-8085,Teacher,86775.4,6205.537727,4,7,7,1,Credit-Builder Loan,,20,11.49,4,Standard,1297.859079,37.95755791,26 Years and 8 Months,No,953.8293586,,Low_spent_Large_value_payments,520.1203984,0,0.4902,-0.7776,-0.2382,-0.3983,-0.1485 +0x6091,CUS_0x8167,August,23,721-85-0529,Writer,101926.95,,4,4,8.288361749,0,Mortgage Loan,8.586732687,9,10.26,6,_,1058,38.77283852,20 Years and 5 Months,No,70.58768071,1082.741388,Low_spent_Medium_value_payments,410.199642,0,1.7914,1.5195,-0.7857,-0.4825,2.8875 +0x609d,CUS_0x6ce,August,46,213-57-5319,Musician,96683.48,,7,7,11,4,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",20.39569941,15,0.77,1,Good,1084.27,36.75864106,17 Years and 4 Months,No,489.7683799,292.3532854,High_spent_Medium_value_payments,610.7384415,0,-0.0268,-0.3687,0.3764,0.2211,-1.8418 +0x60a9,CUS_0x530a,August,41,215-18-3499,Journalist,83079.72,6734.31,6,3,4.288361749,2,"Payday Loan, Student Loan, and Home Equity Loan",,13,16.96,11,Standard,780.22,37.24238184,15 Years and 4 Months,Yes,170.3640949,896.9615468,Low_spent_Large_value_payments,296.0428193,0,-0.3254,0.4694,0.056,1.3507,-0.6794 +0x60b5,CUS_0xb92b,August,24,501-27-2873,Doctor,10357.485,1105.781183,9,7,28.06745738,100,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Not Specified, and Auto Loan",31.17626654,20,4.52,7,Bad,2638.630954,27.78649066,17 Years and 0 Months,Yes,114.3710751,67.81986617,Low_spent_Small_value_payments,254.7437131,0,-0.1746,0.1871,-0.1694,0.9804,-1.6045 +0x60c1,CUS_0x4b6a,August,30,560-37-5114,_______,8958.715,,4,7,18,4,"Not Specified, Not Specified, Auto Loan, and Home Equity Loan",8.338070712,9,14.49,9,Standard,2133.24,32.74146796,20 Years and 2 Months,Yes,23.25370505,0,High_spent_Large_value_payments,289.4445147,0,-0.5268,-0.9098,-0.6833,-0.3384,-1.4559 +0x60cd,CUS_0x6877,August,40,018-73-2973,Mechanic,30493.34,,5,5,11,4,"Credit-Builder Loan, Payday Loan, Home Equity Loan, and Payday Loan",8.006055141,7,7.11,2,Good,448.51,31.62923292,24 Years and 0 Months,No,94.48242759,95.02870252,High_spent_Medium_value_payments,313.2000366,0,0.1318,1.4748,0.049,-1.1803,0.2271 +0x60d9,CUS_0x2ebb,August,49,293-19-6593,Developer,85710.48,7438.54,6,4,4.288361749,2,"Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",13.51908159,,5.08,5,Good,434.31,39.63414479,17 Years and 4 Months,No,174.3188286,621.2722164,High_spent_Small_value_payments,628.200416,0,-0.5637,-1.1315,0.6994,-0.8894,-1.0911 +0x60e5,CUS_0xaa27,August,43,688-44-0329,Journalist,7379.345,,8,4,14,2,"Home Equity Loan, and Payday Loan",,16,14.83,10,_,2592,31.17154261,14 Years and 9 Months,Yes,9.228405652,69.06262083,Low_spent_Small_value_payments,264.2035152,0,0.9536,0.243,-0.6015,-1.6457,-0.176 +0x60f1,CUS_0x7ca7,August,47,642-82-4606,Accountant,38873.01,3287.4175,5,7,11.28836175,4,"Home Equity Loan, Personal Loan, Credit-Builder Loan, and Student Loan",11.47710147,11,5.42,8,Good,15.43132301,29.15127413,28 Years and 6 Months,No,83.28570298,511.6414076,High_spent_Large_value_payments,405.9836045,0,-0.494,-2.0765,-0.8548,0.0881,-1.2007 +0x60fd,CUS_0x4716,August,42,372-10-1782,Musician,10094.05,,7,7,18,2,"Home Equity Loan, and Auto Loan",,13,17.91,7,Standard,695.09,40.99778752,,Yes,15.68476111,26.16484501,Low_spent_Large_value_payments,289.0674772,0,-0.1949,0.2497,-0.7898,-1.2742,-0.3223 +0x6109,CUS_0x3e5a,August,28,796-89-8278,Doctor,15155.81,,7,4,33,3,"Credit-Builder Loan, Mortgage Loan, and Auto Loan",18.1264236,12.66740886,8.3,9,_,2171.02658,32.25019719,14 Years and 8 Months,Yes,22.82032412,114.3618565,Low_spent_Small_value_payments,271.0162361,0,-0.8851,-2.1046,-0.7759,0.0224,-0.2 +0x6115,CUS_0x925f,August,46,946-11-1039,Entrepreneur,16410.3,1483.525,7,6,34.06745738,4,"Mortgage Loan, Not Specified, Mortgage Loan, and Not Specified",,,6.75,,_,2107.764239,25.621544,6 Years and 5 Months,Yes,54.57249571,,Low_spent_Medium_value_payments,234.2730876,0,-0.1996,0.4836,-2.5701,-0.9949,2.0107 +0x6121,CUS_0x9dfc,August,23,445-96-0982,Mechanic,96148.05,7875.3375,4,5,19.28836175,4,"Home Equity Loan, Not Specified, Not Specified, and Student Loan",21.86406561,19,8.16,4,Standard,1244.79,36.01710549,27 Years and 9 Months,No,197.7784248,1453.167114,Low_spent_Small_value_payments,,0,2.097,0.3577,-1.2803,0.615,-0.0684 +0x612d,CUS_0x1e8c,August,20,571-81-7251,Engineer,60078.27,4758.5225,5,7,11,4,"Student Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",4.733288569,7.127403873,2.72,9,Standard,2472.02055,29.12911052,16 Years and 0 Months,Yes,128.9062474,,Low_spent_Large_value_payments,229.8760005,0,0.6733,1.6168,-1.8247,1.7942,0.0299 +0x6139,CUS_0x4d4d,August,29,119-11-5194,Mechanic,33900.04,,6,5,12,3,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,20,16.38,5,Standard,593.26,28.95474395,19 Years and 3 Months,Yes,57.14005951,75.07456291,High_spent_Medium_value_payments,395.3857109,0,-0.5318,0.0417,-0.1396,-0.9784,-0.5287 +0x6145,CUS_0x71dd,August,80,176-18-3723,Accountant,22244.25,2007.6875,0,5,12,1,Student Loan,3.226497297,7,7.03,3,Good,1431.94,26.77027575,,No,16.22704781,117.1577229,!@9#%8,357.3839792,0,-0.3381,-0.5835,-2.0279,-0.5272,1.2588 +0x6151,CUS_0x7c68,August,55,603-58-5338,Engineer,15173.47,,4,5,20,3,"Payday Loan, Mortgage Loan, and Debt Consolidation Loan",,12,9.45,7,Standard,313.08,35.2655412,31 Years and 8 Months,Yes,30.0155576,85.7485508,Low_spent_Medium_value_payments,279.7814749,0,-0.4197,-0.0431,0.452,0.2984,-0.3177 +0x615d,CUS_0x925e,August,36,571-44-4118,Musician,16364.675,1661.722917,8,5,12,2,"Credit-Builder Loan, and Debt Consolidation Loan",,9,9.92,0,Good,60.17,34.85127154,16 Years and 0 Months,No,16.37977717,66.36089195,High_spent_Small_value_payments,343.4316225,0,-0.0418,0.3226,1.7899,-0.977,-1.1235 +0x6169,CUS_0x3ebe,August,40,#F%$D@*&8,Scientist,134737.59,,1,7,6.288361749,0,,12.22751203,11,3.13,1830,Good,1180.881313,43.38433347,32 Years and 6 Months,NM,1679.017067,553.7390158,High_spent_Medium_value_payments,1248.310979,0,0.9944,-0.4261,-1.1275,-0.6394,0.6176 +0x6175,CUS_0xb958,August,55,607-31-1805,Scientist,133931.61,11369.9675,0,5,7,3,"Credit-Builder Loan, Not Specified, and Personal Loan",14.1167037,,6.66,3,_,1122.87,42.70736284,19 Years and 6 Months,No,290.8817795,233.0225104,High_spent_Large_value_payments,853.0924601,0,1.2568,0.2572,0.6763,0.5936,0.4684 +0x6181,CUS_0x1a77,August,19,106-15-9029,Manager,91117.72,,8,4,19,0,,28.38768439,20,11.69,0,Standard,1465.86,35.48607213,20 Years and 2 Months,No,0,269.0693956,Low_spent_Medium_value_payments,760.3449377,0,1.3123,-1.4382,-0.4596,-1.9686,0.8578 +0x618d,CUS_0x8c8a,August,48,134-88-7054,Accountant,98509.71,8197.1425,5,6,6,1,Credit-Builder Loan,,10.31498619,7.38,8,Standard,96.44622037,38.8398015,16 Years and 2 Months,No,55.70340735,,Low_spent_Small_value_payments,355.5979403,0,0.531,-0.4809,2.8615,-0.3118,-1.9506 +0x6199,CUS_0x992b,August,28,343-98-8027,Doctor,19939.92,1719.66,8,8,21.88954781,6,"Personal Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Auto Loan",32.5276461,23.84158904,4.39,11,Bad,4840.591198,38.37380441,13 Years and 6 Months,NM,1383.249794,146.8771388,Low_spent_Large_value_payments,217.5089857,0,0.0077,-1.3781,-0.71,0.8166,-0.7544 +0x61a5,CUS_0xb8be,August,35,860-66-4015,Teacher,16798.15,1544.845833,5,6,16,3,"Student Loan, Auto Loan, and Home Equity Loan",,11,18.75,,Standard,1972.404556,25.10891353,9 Years and 4 Months,Yes,31.31851711,34.78725765,High_spent_Medium_value_payments,342.9062977,0,-1.3472,0.6442,-0.563,-0.4325,1.071 +0x61b1,CUS_0x5c7a,August,33,736-82-6054,Doctor,34633.28,,0,3,5,4,"Payday Loan, Auto Loan, Student Loan, and Not Specified",15.76385406,12.78030933,6.1,8,_,356.5734607,23.62879275,29 Years and 0 Months,No,107.6882897,174.8684854,High_spent_Small_value_payments,285.8538916,0,0.9251,-1.2195,-1.0243,-0.071,-0.1516 +0x61bd,CUS_0x48d,August,22,283-87-8819,Writer,12281.035,,8,3,15,1,Student Loan,,18,13.41,7,Standard,928.14,25.17966301,21 Years and 5 Months,Yes,6.824666039,10000,Low_spent_Small_value_payments,311.3888657,0,-1.0587,1.5349,1.7227,0.2083,-0.846 +0x61c9,CUS_0x5e19,August,28,122-96-5259,Lawyer,32424.34,,3,5,5,0,,19.70711133,17,10.46,4,Standard,140.9520517,31.64675695,18 Years and 9 Months,Yes,0,217.7727107,Low_spent_Large_value_payments,340.6543249,0,0.9227,-2.4784,-1.2921,0.6679,-0.8251 +0x61d5,CUS_0x594e,August,28,796-14-2828,Developer,38684.2,,7,5,16,3,"Personal Loan, Payday Loan, and Payday Loan",,22.72736249,16.24,13,_,1637.764928,34.643105,6 Years and 2 Months,Yes,70.03845524,191.0141947,Low_spent_Small_value_payments,371.3156834,0,-0.1689,0.4002,-0.6422,-1.0483,-1.4301 +0x61e1,CUS_0x9e9a,August,30,918-15-8641,Writer,61880.06,5411.671667,7,5,7,0,,25.48789867,19.80825913,11.8,,Standard,422.532336,35.85066203,24 Years and 5 Months,Yes,0,141.4500152,Low_spent_Medium_value_payments,679.7171515,0,-0.1719,0.4494,1.1693,-1.9704,0.9513 +0x61ed,CUS_0xffc,August,20,226-86-7294,Musician,60877.17,5218.0975,6,8,27,8,"Credit-Builder Loan, Payday Loan, Not Specified, Student Loan, Student Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",31.17658837,16.39373102,8.82,13,_,1482.902424,29.02649753,,Yes,272.8091695,46.42561384,High_spent_Large_value_payments,442.5749667,0,-0.8077,-0.3044,0.3165,-0.897,0.3003 +0x61f9,CUS_0x62ec,August,24,567-99-2219,Mechanic,20060.93,1806.744167,7,6,15.06745738,5,"Student Loan, Not Specified, Personal Loan, Student Loan, and Auto Loan",20.66958469,,12.21,9,Standard,1669.230954,36.83901104,8 Years and 2 Months,Yes,48.56473089,121.8597738,Low_spent_Medium_value_payments,263.529624,0,-1.0007,0.3839,0.1795,0.3022,-0.0672 +0x6205,CUS_0x3592,August,37,711-41-8889,Manager,34739.35,,8,3,10,3,"Mortgage Loan, Student Loan, and Student Loan",24.68851171,17,19.7,8,Standard,1408.63,34.84475595,22 Years and 3 Months,Yes,65.1392465,168.3700343,Low_spent_Small_value_payments,347.4853025,0,0.1171,-1.1062,-1.8853,0.0396,0.7323 +0x6211,CUS_0x2a83,August,22,642-82-6317,Doctor,140794.6,11465.88333,6,7,13,3,"Home Equity Loan, Student Loan, and Debt Consolidation Loan",15.57663117,10,7.81,2,Standard,288.92,24.88935018,28 Years and 11 Months,No,330.1967942,1147.550997,!@9#%8,,0,-0.3306,0.6601,0.223,0.0857,-0.3616 +0x621d,CUS_0x67a4,August,31,495-84-9751,Mechanic,20825.75,1770.479167,6,5,33,100,"Personal Loan, Student Loan, and Debt Consolidation Loan",,16.41392581,8.3,12,Standard,2286.469629,30.12425027,16 Years and 2 Months,Yes,46.6449592,115.1635395,Low_spent_Small_value_payments,305.2394179,0,0.7124,1.8995,1.7135,0.3827,0.9711 +0x6229,CUS_0x2189,August,25,529-93-5266,Writer,24131.57,2144.964167,7,7,13,2,"Home Equity Loan, and Debt Consolidation Loan",11.37340775,10,1.51,0,Standard,1246.66,29.21938718,17 Years and 6 Months,No,38.59964395,10000,Low_spent_Small_value_payments,339.0783993,0,0.6993,0.305,0.7246,0.3379,0.0598 +0x6235,CUS_0x4640,August,36,969-47-8792,_______,56614.2,4638.85,10,10,34.95700519,7,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, Not Specified, Payday Loan, Auto Loan, and Auto Loan",31.45791345,,11.23,13,Standard,3162.655624,39.65447926,18 Years and 9 Months,Yes,1633.628551,,High_spent_Small_value_payments,111.7943834,0,0.3618,-0.1462,0.0765,1.3097,1.4836 +0x6241,CUS_0x57a2,August,38,202-32-5051,Teacher,61190.52,4858.21,1,6,1,4,"Not Specified, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",0,3,10.31,2,Good,1348.97,28.96056831,25 Years and 5 Months,NM,105.330283,628.3783258,Low_spent_Small_value_payments,42.11239124,0,0.0891,1.6045,-1.6112,0.0934,-0.4773 +0x624d,CUS_0x4c9f,August,46,842-92-5062,Doctor,30587.68,2759.973333,6,7,15,6,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",14.09017727,,13.77,8,Standard,1146.781535,37.58656771,15 Years and 4 Months,Yes,108.1191637,151.5457149,Low_spent_Medium_value_payments,296.3324547,0,0.1158,0.2661,-1.5675,0.9038,-0.8773 +0x6259,CUS_0xe8d,August,26,948-01-5172,Journalist,14441.51,1453.459167,9,8,26,2,"Payday Loan, and Student Loan",,20.29216278,9.85,8,Bad,1499.675614,40.08551141,13 Years and 6 Months,Yes,21.03195089,48.38966214,High_spent_Medium_value_payments,325.9243036,0,0.0179,0.1751,0.181,-1.1002,-1.0673 +0x6265,CUS_0x4ac9,August,31,411-30-1866,Accountant,95332.23,7234.502555,2,4,4,3,"Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",0,0,11.83,4,Good,349.5830538,27.15249316,15 Years and 9 Months,No,799.2936441,,Low_spent_Medium_value_payments,138.16804,0,-0.2562,1.2992,0.4534,1.1955,-0.8041 +0x6271,CUS_0x707a,August,43,994-63-2814,Teacher,63839.46,5304.955,7,6,20,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",21.5618648,18,12.33,4,Standard,733.2,29.58767649,18 Years and 9 Months,Yes,98.74961475,256.5722081,High_spent_Small_value_payments,435.1736772,0,-0.3647,-1.2534,-1.0467,0.6223,1.3861 +0x627d,CUS_0x6343,August,31,299-71-9633,_______,8053.435,706.1195833,6,6,21,8,"Auto Loan, Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",26.05803849,20,28.4,9,Bad,4254.09,30.13797114,6 Years and 11 Months,Yes,35.54490159,37.42172936,Low_spent_Small_value_payments,287.6453274,0,0.1536,1.0587,-0.6047,-1.2199,1.694 +0x6289,CUS_0x59e6,August,34,#F%$D@*&8,Media_Manager,99425.4,8157.45,8,5,4234.288362,4,"Auto Loan, Debt Consolidation Loan, Auto Loan, and Mortgage Loan",,12,10.6,8,Standard,892.49,43.17284208,16 Years and 5 Months,Yes,172.5333321,509.8123354,High_spent_Large_value_payments,793.3367934,0,1.2087,-1.3768,0.2799,-0.6817,-0.4146 +0x6295,CUS_0x286c,August,49,637-19-7311,Engineer,31230.16,,6,5,8,2,"Credit-Builder Loan, and Credit-Builder Loan",12.73929881,11,2.16,7,Good,669.7749846,26.29418931,28 Years and 2 Months,No,28.22094355,21.33563612,High_spent_Large_value_payments,445.0066077,0,-1.4491,-1.0588,0.3608,-0.8134,-0.2348 +0x62a1,CUS_0x677a,August,44,033-01-7360,Doctor,128331.42,10688.285,0,3,7.288361749,2,"Mortgage Loan, and Student Loan",8.83830658,9,-0.67,2,Good,462.96,31.42289122,29 Years and 3 Months,No,114.9939913,839.3777912,High_spent_Medium_value_payments,784.3941785,0,0.9927,-0.0709,0.8168,-2.1593,1.5859 +0x62ad,CUS_0x938f,August,21,723-42-6455,Teacher,157698.52,,3,3,5,3,"Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,7,9.97,0,Good,362.01,39.57239458,23 Years and 6 Months,No,12814,870.3508503,Low_spent_Medium_value_payments,436.1347354,0,-0.9104,-0.1684,0.0452,1.0891,0.1616 +0x62b9,CUS_0xb004,August,54,200-25-2968,Developer,10563.445,,7,5,12,1,Debt Consolidation Loan,21.6838968,17,4.2,1804,Standard,984.62,35.23930696,17 Years and 3 Months,No,5.968634609,61.34688277,Low_spent_Small_value_payments,297.813191,0,1.6576,0.0898,-1.0963,0.6302,0.5564 +0x62c5,CUS_0x4518,August,18,958-03-1352,Developer,60532.5,4892.375,6,3,5,4,"Auto Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",16.99626374,17,16.54,9,Standard,1475.77,27.04697533,6 Years and 10 Months,Yes,158.0288371,,Low_spent_Medium_value_payments,137.3504981,0,1.7732,0.1173,-0.0017,-0.0052,-0.5222 +0x62d1,CUS_0x2b2c,August,52,#F%$D@*&8,Entrepreneur,43312.78,3423.398333,4,1,2.288361749,0,Mortgage Loan,4.176257404,6,3.24,2,_,208.96,36.11238108,,No,25.34841995,537.1714841,High_spent_Small_value_payments,459.7573903,0,0.5258,-0.6378,-0.3428,0.5947,-1.2104 +0x62dd,CUS_0x915,August,35,361-97-3512,Journalist,19562.47,1713.205833,3,3,9,3,"Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,9,19.35,10,Standard,712.22,24.98433826,9 Years and 4 Months,Yes,30.78413779,124.5245839,!@9#%8,306.0118616,0,1.2794,-0.7405,1.952,-1.3194,-1.589 +0x62e9,CUS_0x134d,August,43,640-44-8899,Media_Manager,85324.44,7286.37,5,7,17.28836175,2,"Auto Loan, Personal Loan, and Payday Loan",12.98594522,12,16.22,7,Standard,713.09,27.72444972,28 Years and 6 Months,Yes,197.305281,699.7568703,High_spent_Medium_value_payments,501.5123097,0,-0.9316,-0.1383,0.6305,0.2899,-0.2309 +0x62f5,CUS_0x4e7a,August,47,519-19-0998,Developer,133214.25,11166.1875,3,3,1.288361749,2,"Credit-Builder Loan, Not Specified, and Not Specified",,,9.48,6,Good,59.25195835,21.43060077,19 Years and 4 Months,NM,309.157252,,Low_spent_Large_value_payments,61.51762908,0,1.0064,-0.215,-1.0184,-0.777,-0.6631 +0x6301,CUS_0xa31,August,36,#F%$D@*&8,Mechanic,107392.74,8681.395,5,5,6,1,Auto Loan,,20,10.69,4,Standard,217.9688187,30.4092793,19 Years and 11 Months,Yes,51.61389686,578.119921,High_spent_Small_value_payments,574.228892,0,1.7989,-0.0181,-1.194,-0.6043,-2.203 +0x630d,CUS_0x8c7b,August,31,862-65-2779,Writer,55197.81,,6,4,23,2,"Credit-Builder Loan, and Not Specified",,22.85038434,14.17,7,Standard,2146.809708,29.56464701,8 Years and 0 Months,Yes,78.74861889,445.980354,Low_spent_Small_value_payments,236.1527771,0,0.7126,0.3654,1.522,0.76,-0.8333 +0x6319,CUS_0x255d,August,18,471-64-8651,_______,14217.52,,6,10,33.95700519,9,"Mortgage Loan, Personal Loan, Student Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, Not Specified, and Payday Loan",28.80475484,18,15.19,13,Bad,3529.650954,36.94411307,,Yes,1403.276789,10000,Low_spent_Medium_value_payments,208.1092939,0,1.7428,0.4165,1.135,-0.4976,0.216 +0x6325,CUS_0x58b0,August,22,868-95-3928,Doctor,47873.6,,3,3,19,2,"Mortgage Loan, and Payday Loan",21.49288607,16,14.81,3,_,879.54,31.76739584,25 Years and 10 Months,Yes,57.86503767,69.08530875,High_spent_Small_value_payments,522.5963202,0,0.1349,0.0995,1.8969,-1.0105,-0.2183 +0x6331,CUS_0x98fc,August,18,458-84-2808,Doctor,17927.6,,8,5,35.06745738,6,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",39.73699744,21,3.37,8,Bad,2209.860954,32.47770666,13 Years and 9 Months,Yes,148.9237574,,Low_spent_Large_value_payments,192.3263086,0,-0.8995,1.5369,-0.1478,0.6469,1.455 +0x633d,CUS_0x621,August,55,913-83-2018,Architect,12155.275,1224.939583,7,3,9,1,Auto Loan,18.40626137,15,20.74,5,Standard,786.65,24.7837763,32 Years and 4 Months,Yes,5.138484696,,Low_spent_Small_value_payments,282.9615384,0,-0.6676,0.466,1.0936,1.2882,-1.3823 +0x6349,CUS_0x9fcc,August,55,231-11-2948,Entrepreneur,69823.72,5547.643333,4,2,2.288361749,4,"Not Specified, Not Specified, Payday Loan, and Credit-Builder Loan",0,1,6.97,5,_,163.11,31.9315811,28 Years and 5 Months,No,128.574933,644.8203563,High_spent_Medium_value_payments,451.3065051,0,0.8185,0.3735,-0.9212,2.1014,-3.0755 +0x6355,CUS_0x7526,August,55,633-30-8400,Media_Manager,67850.16,,5,6,10,3,"Home Equity Loan, Payday Loan, and Not Specified",30.1447652,21,1.17,,Standard,654.06,28.49812199,33 Years and 5 Months,No,101.0504671,,!@9#%8,607.2483031,0,1.7809,-1.4341,-0.2622,-0.8115,-0.7739 +0x6361,CUS_0x4768,August,34,579-03-5478,Engineer,36237.51,2902.7925,7,3,15,3,"Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,20,19.68,7,_,588.79,36.91523481,19 Years and 11 Months,Yes,59.88225173,85.78954338,High_spent_Medium_value_payments,394.6074549,0,-0.7209,0.5773,0.8655,0.1527,1.4901 +0x636d,CUS_0xd73,August,18,043-26-2764,Manager,8871.555,,8,7,20,9,"Mortgage Loan, Auto Loan, Student Loan, Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",,23,5.72,14,Bad,1584.64,38.04941907,16 Years and 2 Months,NM,75.635071,,Low_spent_Medium_value_payments,251.7800276,0,-1.1286,-1.0526,-0.5345,1.7644,0.5788 +0x6379,CUS_0x635a,August,28,702-03-6373,Musician,38868.12,,3,4,1,1,Debt Consolidation Loan,0,2,1.51,4,Good,1043.997333,23.86583326,24 Years and 11 Months,No,19559,,Low_spent_Small_value_payments,226.124215,0,-0.1344,0.5565,-0.1159,0.7444,0.6871 +0x6385,CUS_0xa65f,August,80,468-32-1247,Media_Manager,67726.17,5840.8475,8,7,20,2,"Not Specified, and Student Loan",13.68608437,9,8.76,5,Standard,337.25,32.57632887,,Yes,93.18869758,585.80193,!@9#%8,195.0941225,0,0.4673,0.1939,-0.6758,-1.8535,0.7272 +0x6391,CUS_0x7dd5,August,25,059-66-6817,Media_Manager,69642,5842.5,2,2,11.28836175,0,Mortgage Loan,4.462346276,8,7.41,9,_,185.1428269,36.22220731,21 Years and 9 Months,No,57.05318215,605.0960593,High_spent_Medium_value_payments,610.59538,0,-0.8627,1.3793,0.8554,-0.6288,-0.243 +0x639d,CUS_0xb6eb,August,28,367-33-5973,Media_Manager,15021.48,1344.79,6,5,16.06745738,4,"Payday Loan, Credit-Builder Loan, Payday Loan, and Personal Loan",26.48843214,10.13943032,9.75,10,_,1655.818262,33.34650498,16 Years and 0 Months,NM,38.17807913,96.64952757,Low_spent_Small_value_payments,262.9311054,0,-0.7126,-0.573,0.4242,1.0918,-1.5526 +0x63a9,CUS_0x480c,August,32,595-54-0578,Engineer,17780.69,,7,7,15,7,"Home Equity Loan, Not Specified, Auto Loan, Student Loan, Student Loan, Credit-Builder Loan, and Auto Loan",,9,9.08,5,Standard,2615.51,39.63976453,10 Years and 2 Months,Yes,63.94388292,86.22888746,Low_spent_Small_value_payments,264.4996463,0,0.2698,1.5786,-0.3447,0.055,-0.4537 +0x63b5,CUS_0xad0b,August,47,675-68-0807,Lawyer,167492.8,14254.73333,2,4,11.28836175,2,"Debt Consolidation Loan, and Debt Consolidation Loan",6.942457911,9,7.34,4,Good,1471.07,33.89906408,27 Years and 3 Months,No,161.9922178,809.8748705,Low_spent_Large_value_payments,1143.543706,0,-2.354,-2.5818,-0.0737,-1.345,0.2698 +0x63c1,CUS_0x2faa,August,25,#F%$D@*&8,Mechanic,46092.75,3683.0625,9,6,25.06745738,6,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Not Specified",27.63307439,,22.19,13,Bad,5464.485138,32.62318228,6 Years and 11 Months,Yes,144.5176251,271.6841336,Low_spent_Medium_value_payments,205.3842034,0,-0.4883,2.1295,-0.032,-0.099,-0.5615 +0x63cd,CUS_0xf79,August,56,798-34-6017,Media_Manager,176015.16,14855.93,2,6,11.28836175,0,,14.81318489,,7.15,6,Good,1471.36,32.56110031,29 Years and 5 Months,No,0,10419.93746,Low_spent_Small_value_payments,1137.136128,0,0.959,-0.7057,-1.535,-0.2542,-0.6175 +0x63d9,CUS_0x5189,August,48,050-64-6459,Engineer,20591.2,,4,3,19,3,"Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,9,12.56,285,Standard,379.5526318,35.98985779,8 Years and 10 Months,Yes,193.684795,113.8419818,High_spent_Small_value_payments,287.0838359,0,0.1058,-0.1145,-0.5174,-1.0355,-0.2103 +0x63e5,CUS_0x429a,August,29,719-71-0189,Mechanic,68667.56,5929.296667,7,6,21,3,"Home Equity Loan, Student Loan, and Student Loan",15.72117637,10.61477454,15.03,7,Standard,1571.377277,26.40933337,9 Years and 8 Months,Yes,146.8274526,155.623544,High_spent_Medium_value_payments,540.4786701,0,0.2556,1.0394,1.6655,-0.3688,-0.6303 +0x63f1,CUS_0xbda9,August,23,216-65-2934,Media_Manager,68845.08,5570.09,10,7,20,6,"Personal Loan, Student Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Auto Loan",,24.14569353,2.7,11,Bad,1680.582753,39.29107876,15 Years and 9 Months,Yes,12661,54.43748012,High_spent_Large_value_payments,442.3163848,0,-1.002,-1.0468,-0.5633,0.3313,-1.1395 +0x63fd,CUS_0x8112,August,49,254-65-1126,Mechanic,124814.04,,1,3,7,2,"Personal Loan, and Student Loan",,1.204335553,6.36,6,_,746.5744507,34.30234684,22 Years and 11 Months,No,21602,159.5078377,High_spent_Large_value_payments,958.8897289,0,1.9646,0.2358,-0.3576,0.0424,1.6111 +0x6409,CUS_0x31e0,August,42,404-17-9909,Media_Manager,131908.24,11162.35333,4,4,20,0,,,12,6.72,4,Standard,344.86,45.21627626,21 Years and 5 Months,NM,0,215.871561,High_spent_Large_value_payments,1140.363772,0,0.1435,0.2562,-0.5169,1.0663,-0.1209 +0x6415,CUS_0x8f23,August,33,241-93-8701,Journalist,25701.69,,3,7,11,3,"Payday Loan, Student Loan, and Student Loan",17.53314507,11,11.22,3,Standard,315,40.37848573,23 Years and 9 Months,No,60.28924916,95.77886576,Low_spent_Small_value_payments,357.0126351,0,0.2862,0.9163,-0.1878,-0.7303,0.2845 +0x6421,CUS_0x6442,August,28,149-03-5795,Mechanic,14520.69,,8,10,32.88954781,7,"Mortgage Loan, Not Specified, Mortgage Loan, Payday Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",,23,15.62,207,_,2921.07,25.0369719,,Yes,1471.580071,,Low_spent_Small_value_payments,172.176476,0,1.2908,-1.6972,1.3994,-0.2755,-0.6587 +0x642d,CUS_0x96de,August,31,579-77-5566,Journalist,14580.98,,4,3,4652,4,"Payday Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",,20,12.88,7,Standard,2589.63,24.126021,6 Years and 5 Months,Yes,42.01859618,129.72719,Low_spent_Small_value_payments,251.3623805,0,-1.8983,-0.0338,-1.4391,1.4915,0.3985 +0x6439,CUS_0x9970,August,31,046-42-3163,Architect,70939.34,5731.611667,5,6,14,3,"Auto Loan, Home Equity Loan, and Payday Loan",18.86194797,14,8.39,8,_,261.42,31.73188396,18 Years and 5 Months,Yes,165.1123018,177.1521807,!@9#%8,490.8966842,0,1.4466,0.9985,-0.3979,0.7542,-0.0441 +0x6445,CUS_0xbb0b,August,18,129-04-0209,Journalist,44985.72,,6,4,15,4,"Credit-Builder Loan, Student Loan, Personal Loan, and Student Loan",,18,13.76,9,Standard,378.94,34.56485473,16 Years and 11 Months,Yes,118.1642134,218.5189916,!@9#%8,302.497795,0,-1.7337,-0.4648,-1.4935,1.2268,-0.3242 +0x6451,CUS_0x16cf,August,18,386-77-8198,Architect,17206.61,1523.884167,10,8,34.95700519,8,"Student Loan, Personal Loan, Mortgage Loan, Auto Loan, Student Loan, Not Specified, Payday Loan, and Auto Loan",26.89852523,16,1.85,10,_,3441.450954,33.35254001,9 Years and 8 Months,Yes,1388.805527,,Low_spent_Small_value_payments,128.0638139,0,-0.9038,-0.145,0.8347,-1.236,-0.5244 +0x645d,CUS_0x5deb,August,20,091-76-5591,Doctor,59681.56,,6,3,6,3,"Mortgage Loan, Payday Loan, and Home Equity Loan",,21,11.99,5,Standard,55.92,24.1931292,19 Years and 0 Months,No,116.2451806,626.3791824,!@9#%8,70.32197037,0,0.7681,0.2186,-0.5938,-0.8756,-1.3652 +0x6469,CUS_0x8a2b,August,36,096-57-2895,Accountant,28163.57,,6,6,16,6,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Not Specified, and Personal Loan",17.00435799,,14.96,8,Standard,58.26,36.58949696,18 Years and 2 Months,Yes,73.02032171,149.744485,Low_spent_Large_value_payments,293.9316099,0,0.7646,0.2497,0.3706,0.6218,-0.963 +0x6475,CUS_0xb0c1,August,36,569-43-2977,Manager,8175.65,424.3041667,8,10,16.95700519,7,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",41.85698422,25,21.47,11,Bad,4379.770954,23.93462998,2 Years and 11 Months,Yes,1353.600406,38.17390062,Low_spent_Large_value_payments,199.6057411,0,-0.9639,0.7005,-1.0463,0.0737,1.5844 +0x6481,CUS_0xbc9e,August,42,095-40-7540,Media_Manager,39314.02,3189.168333,7,7,23.06745738,5,"Not Specified, Home Equity Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",31.6230842,16.41522102,18.75,11,Standard,3059.899166,25.39484555,12 Years and 3 Months,Yes,82.15879169,44.73469988,!@9#%8,405.3030538,0,-0.8398,0.9414,-0.5878,1.2316,1.3267 +0x648d,CUS_0x473a,August,32,720-32-3844,Media_Manager,131693.37,,0,7,10,3,"Student Loan, Debt Consolidation Loan, and Mortgage Loan",,0,-5.22,6,Good,1557.532962,41.88364723,22 Years and 6 Months,No,208.8584734,306.8941761,Low_spent_Large_value_payments,823.8921005,0,0.7112,0.3612,1.0685,-1.4673,-1.2369 +0x6499,CUS_0x644,August,23,968-80-7886,Engineer,65300.22,5444.685,2,1,1,0,,0,1,2.13,2,Good,701.5600642,27.46074833,30 Years and 10 Months,No,0,331.0530225,High_spent_Small_value_payments,512.8258239,0,-0.6191,0.0665,-0.5064,-0.868,-1.8441 +0x64a5,CUS_0x2ad8,August,45,305-23-1369,Manager,17770.795,,7,7,6,4,"Not Specified, Personal Loan, Auto Loan, and Student Loan",,20,15.04,2,_,429.74,36.99943347,20 Years and 5 Months,Yes,35.83161116,10000,Low_spent_Small_value_payments,230.5257948,0,-0.9539,-0.0923,0.7155,-0.2892,-1.2473 +0x64b1,CUS_0x5848,August,32,973-59-7321,Developer,73623.22,5919.268333,5,3,4.288361749,2,"Personal Loan, and Debt Consolidation Loan",10.1216722,10,16.52,4,Good,67.43959891,34.40606286,32 Years and 2 Months,No,91.92554901,1334.737381,Low_spent_Small_value_payments,,0,0.4095,-0.6494,-0.8009,3.034,-0.3712 +0x64bd,CUS_0x1962,August,36,209-16-3037,Mechanic,33645.24,,4,6,2,3,"Auto Loan, Not Specified, and Mortgage Loan",,14,14.47,9,Good,1077.209186,34.68917882,16 Years and 10 Months,No,337.5340855,121.5939823,High_spent_Medium_value_payments,353.0228386,0,-1.3243,0.538,1.0204,0.8489,2.0816 +0x64c9,CUS_0xd33,August,40,897-09-1805,Musician,54167.61,4806.9675,8,8,2616.889548,6,"Student Loan, Not Specified, Home Equity Loan, Personal Loan, Auto Loan, and Personal Loan",30.04685435,,12.41,13,_,2319.827525,34.6187565,19 Years and 9 Months,Yes,61257.48344,152.3647514,High_spent_Medium_value_payments,316.5705054,0,0.3947,-0.6427,0.058,-0.4401,-0.3095 +0x64d5,CUS_0x7a53,August,80,229-75-0347,Accountant,8489.19,908.4325,6,10,20,6,"Personal Loan, Student Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Credit-Builder Loan",30.5220904,21.62548532,25.25,13,_,3675.600763,26.41343514,11 Years and 9 Months,Yes,26.42685604,83.73638456,Low_spent_Medium_value_payments,260.6800094,0,-0.5843,0.7568,0.965,-0.9415,-0.41 +0x64e1,CUS_0x6734,August,20,276-02-5954,Teacher,30922.5,,8,8,26,9,"Auto Loan, Payday Loan, Not Specified, Personal Loan, Not Specified, Payday Loan, Auto Loan, Auto Loan, and Mortgage Loan",,21,19.83,13,Bad,4742.53,26.42234047,1 Years and 5 Months,Yes,165.8918207,,!@9#%8,226.291118,0,1.0924,0.5082,0.8383,0.8114,-0.238 +0x64ed,CUS_0x3678,August,18,018-45-4860,Entrepreneur,15984.15,1303.0125,5,7,34,7,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Personal Loan",23.66111844,16.30111883,15.77,11,Standard,1556.786749,36.11814841,7 Years and 5 Months,Yes,69.52726572,,Low_spent_Small_value_payments,240.4489965,0,2.563,0.3881,-1.6009,0.064,-0.3253 +0x64f9,CUS_0x4ff7,August,19,366-35-7290,_______,16873.05,,6,8,22.06745738,7,"Mortgage Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",,26.78933716,0.67,11,Bad,4230.109978,28.00506764,6 Years and 9 Months,Yes,94.87730915,,Low_spent_Small_value_payments,213.6579119,0,0.7507,1.5899,-1.2766,1.5758,-0.4231 +0x6505,CUS_0xa90a,August,35,584-75-6404,Mechanic,34297.9,2801.158333,10,8,16.88954781,8,"Payday Loan, Home Equity Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,18,21.5,15,Bad,4469.48,35.62424324,3 Years and 2 Months,Yes,1499.289932,,High_spent_Small_value_payments,172.5102249,0,-0.2361,2.0808,-0.5499,-2.229,-0.006 +0x6511,CUS_0x12ea,August,18,511-49-3728,Doctor,38980.76,3172.396667,8,8,25,9,"Home Equity Loan, Not Specified, Personal Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Personal Loan",,17,16.43,10,Bad,2927.1,40.39762433,,Yes,167.536749,78.63531026,High_spent_Medium_value_payments,321.0676074,0,-1.2346,0.8986,-1.2513,0.5281,1.5066 +0x651d,CUS_0xac6f,August,28,506-50-6419,Manager,62845.76,,2,3,6.288361749,2,"Personal Loan, Student Loan, and Home Equity Loan",0,0,8.69,3,Good,463.98,28.6287856,27 Years and 9 Months,No,118.3240669,562.2142864,!@9#%8,496.0137744,0,-0.3685,-0.7851,0.5015,1.6877,0.6406 +0x6529,CUS_0x68a7,August,30,437-07-5714,Mechanic,59438.88,5163.24,10,8,31.88954781,7,"Student Loan, Not Specified, Personal Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",44.47956957,25.20192209,8.42,12,Bad,2643.974015,25.66054182,6 Years and 8 Months,Yes,1557.798084,107.79238,High_spent_Medium_value_payments,406.4034544,0,0.5425,0.3747,0.3443,-2.8124,0.9969 +0x6535,CUS_0x8562,August,26,860-07-0221,Musician,29441.78,2192.481667,8,6,24.06745738,7,"Auto Loan, Not Specified, Credit-Builder Loan, Not Specified, Mortgage Loan, Personal Loan, and Student Loan",,21.86227003,-3.57,10,Bad,4285.766264,40.58749568,11 Years and 9 Months,Yes,111.4169523,35.85405821,High_spent_Large_value_payments,285.2568682,0,-0.4507,-0.1884,0.0857,0.0819,-0.4361 +0x6541,CUS_0x5435,August,47,196-26-4721,Mechanic,35263.44,2739.62,6,5,5,0,,15.22231296,15,9.21,7,Standard,354.0478958,32.38408945,27 Years and 11 Months,No,0,,Low_spent_Medium_value_payments,293.4703849,0,-0.8128,-1.3243,0.2487,0.4403,0.7764 +0x654d,CUS_0xc649,August,49,#F%$D@*&8,_______,44066.78,3424.231667,5,4,5.288361749,4,"Student Loan, Personal Loan, Not Specified, and Not Specified",6.065251439,7,6.29,2,Good,262.3415931,36.23708168,,No,80.90792383,,!@9#%8,446.197905,0,1.6794,-0.0741,-0.4687,-0.2681,1.7661 +0x6559,CUS_0xa446,August,25,833-79-5648,Lawyer,44164.8,3425.4,8,7,14,4,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",9.038917453,8.086400979,9.08,7,Standard,1812.476651,26.90956827,7 Years and 10 Months,NM,122.8290881,31.74311462,High_spent_Large_value_payments,427.9677973,0,0.2855,-0.4714,-0.9751,0.0022,0.9738 +0x6565,CUS_0x6449,August,39,322-90-7216,Lawyer,31227.62,,0,4,1,2,"Mortgage Loan, and Mortgage Loan",,7,6.08,5,Good,316.3070871,39.60998627,28 Years and 10 Months,NM,26.87214052,253.9578685,Low_spent_Large_value_payments,287.8706425,0,-0.6313,-0.2227,1.6442,-1.427,0.1633 +0x6571,CUS_0x4d2,August,51,543-49-0684,Accountant,97688.4,7872.7,6,7,13,2,"Not Specified, and Personal Loan",23.76839188,20,1.63,1,Standard,1299.16,24.1232059,27 Years and 4 Months,No,122.7289035,547.8388394,High_spent_Small_value_payments,376.7022571,0,-0.532,-1.4612,-0.4072,-1.1269,0.1339 +0x657d,CUS_0xc3d0,August,37,954-21-6713,Mechanic,53265.96,4286.83,9,5,29,5,"Mortgage Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Personal Loan",36.62685024,19,2.11,13,Bad,2545.1,25.9245395,9 Years and 3 Months,Yes,120.8035149,10000,High_spent_Large_value_payments,453.9069061,0,-0.9997,-0.1568,1.0374,0.1998,0.7435 +0x6589,CUS_0x2543,August,34,272-87-2927,_______,22438.27,1856.855833,7,7,9,4,"Mortgage Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",24.17233371,18.97416578,11.24,3,Standard,187.7323941,29.52679627,29 Years and 4 Months,NM,58.43630796,,Low_spent_Small_value_payments,225.9937341,0,-0.1808,-0.8088,0.4901,-0.7839,-0.3318 +0x6595,CUS_0x60ad,August,24,058-60-7291,Accountant,92949.78,7774.815,0,5,10,4,"Home Equity Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",14.62999408,13,13.88,3,Good,1037.46,41.83754055,25 Years and 4 Months,No,197.3048886,10000,High_spent_Medium_value_payments,537.3424873,0,-1.0111,0.1678,-0.3963,-0.0695,-1.2326 +0x65a1,CUS_0x82a1,August,20,503-64-5538,Entrepreneur,16684.91,,8,1395,28.06745738,7,"Auto Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Auto Loan, and Payday Loan",44.58604379,24,6.22,11,_,2812.260954,34.42411573,5 Years and 9 Months,Yes,63.77127116,,Low_spent_Small_value_payments,250.1189979,0,-1.0547,0.4622,-0.227,-1.1475,0.0516 +0x65ad,CUS_0x2ce1,August,33,607-25-6092,Doctor,37648.1,,6,6,19,6,"Debt Consolidation Loan, Not Specified, Not Specified, Mortgage Loan, Debt Consolidation Loan, and Student Loan",,20.31847874,2.59,6,Bad,2505.581907,34.15899941,10 Years and 2 Months,Yes,117.6830011,139.7164772,!@9#%8,332.5346883,0,-1.6011,0.3354,-0.4958,-1.6599,-1.1474 +0x65b9,CUS_0x38a0,August,44,292-44-8964,Entrepreneur,18260.43,,3,6,15,7,"Mortgage Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",25.05799945,16,11.21,5,Standard,1709.16,23.58700646,18 Years and 2 Months,Yes,80.2931042,63.63974459,Low_spent_Large_value_payments,267.4374012,0,0.4366,0.1029,1.2854,1.2059,0.2057 +0x65c5,CUS_0x906e,August,25,615-78-0586,Manager,39608.9,3503.741667,6,5,32.06745738,9,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Student Loan, Personal Loan, Personal Loan, Not Specified, and Credit-Builder Loan",41.00068739,20.26954061,4.96,9,Bad,3527.698008,28.18681543,14 Years and 5 Months,Yes,220.661473,66.22746891,High_spent_Medium_value_payments,286.7649368,0,0.459,0.7465,0.1485,0.5065,1.8502 +0x65d1,CUS_0x399d,August,26,276-27-5074,Developer,56285.44,,5,929,12,100,"Credit-Builder Loan, Personal Loan, and Personal Loan",9.065921102,7.860354264,1.25,5,Good,32.25195199,41.52688305,21 Years and 9 Months,No,106.7641986,105.4585865,High_spent_Large_value_payments,526.8225482,0,-1.4606,0.0223,1.7466,0.8668,2.0018 +0x65dd,CUS_0xbccb,August,45,514-06-0714,Engineer,41535.69,3622.3075,0,4,12,0,,2.401749755,1.184828835,4.45,7,_,1214.288065,24.01679277,27 Years and 10 Months,No,0,10000,Low_spent_Small_value_payments,423.0092772,0,1.3501,1.53,1.4104,0.0846,-0.0811 +0x65e9,CUS_0x684a,August,23,056-57-6013,Journalist,81298.72,6768.893333,9,8,23.06745738,5,"Auto Loan, Not Specified, Not Specified, Auto Loan, and Home Equity Loan",32.41217353,17,16.15,17,_,4889.610954,37.56286492,9 Years and 0 Months,Yes,208.7553936,126.0374605,High_spent_Large_value_payments,555.3761913,0,-0.6928,-0.4452,0.4184,0.8494,-0.8462 +0x65f5,CUS_0x4bdd,August,33,065-33-0030,Scientist,90664.48,7848.373333,4,6,8,0,,,11,10.53,2,Good,901.1986071,37.06891759,22 Years and 10 Months,No,0,586.7914931,Low_spent_Medium_value_payments,560.6829206,0,2.4848,-0.427,-0.3532,0.4984,0.0603 +0x6601,CUS_0x24e9,August,31,990-12-9600,Manager,120671.25,9851.9375,4,3,3,4,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Student Loan",5.855003771,9,10.96,3,Good,755.16,34.21772487,16 Years and 4 Months,No,320.7427557,126.4796283,!@9#%8,777.971366,0,-1.5951,0.5528,0.5818,0.0138,-3.0461 +0x660d,CUS_0x51db,August,29,037-73-8964,Manager,14958.69,,6,10,22.06745738,6,"Auto Loan, Mortgage Loan, Personal Loan, Not Specified, Home Equity Loan, and Personal Loan",24.52295223,14,29.84,15,_,4597.350954,35.86971033,2 Years and 11 Months,Yes,65.36923331,30.34520103,High_spent_Small_value_payments,272.8210277,0,-0.5801,0.2546,0.6564,-1.1667,0.6538 +0x6619,CUS_0x9ae3,August,18,339-72-7902,Media_Manager,8229642,7424.5125,5,5,13,1,Auto Loan,,,10.02,10,_,1428.48,41.91037377,,NM,69.43241361,,High_spent_Large_value_payments,856.143188,0,0.9482,0.7247,-0.6068,0.0652,-0.3407 +0x6625,CUS_0x176b,August,25,917-47-6490,Journalist,44640.32,3792.026667,3,6,1,4,"Not Specified, Personal Loan, Not Specified, and Not Specified",9.685533019,10,10.19,5,Good,700.43,37.01483849,19 Years and 4 Months,No,123.4762644,,Low_spent_Small_value_payments,123.5443768,0,-0.3234,0.4011,1.6235,-0.896,-1.6494 +0x6631,CUS_0x907d,August,48,#F%$D@*&8,Mechanic,29085.38,,3,5,16,4,"Auto Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",18.67735273,12,15.71,4,Standard,328.7,27.39801903,,Yes,88.01862847,,Low_spent_Small_value_payments,218.1399712,0,-0.9891,-1.2912,-0.7541,-0.0946,-1.4435 +0x663d,CUS_0xc21f,August,38,588-46-3067,Teacher,78385.2,6744.1,9,5,21,8,"Personal Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Personal Loan, Student Loan, Student Loan, and Student Loan",,16,17.31,13,Bad,3276.46,37.93736187,9 Years and 3 Months,Yes,454.5267012,158.0742219,High_spent_Large_value_payments,301.8090769,0,0.7877,-0.0315,-1.2018,-0.2133,0.4586 +0x6649,CUS_0x8e82,August,38,002-00-8104,Scientist,73656.76,6168.063333,5,7,8,2,"Payday Loan, and Debt Consolidation Loan",4.118144426,5,5.76,1,_,777.97,31.59456834,31 Years and 11 Months,NM,109.3812771,556.5405882,Low_spent_Small_value_payments,240.884468,0,0.6677,-1.2274,1.6917,0.2406,0.7363 +0x6655,CUS_0x8271,August,40,213-49-2021,Media_Manager,20127.115,1800.259583,4,4,8,2,"Not Specified, and Payday Loan",5.122683593,6,16.59,5,Good,328.91,24.47621914,18 Years and 5 Months,No,29.95954,43.29706342,High_spent_Large_value_payments,346.7693549,0,0.6585,-0.207,-2.1265,0.4155,-1.3033 +0x6661,CUS_0x45f1,August,49,900-25-3681,Writer,41235.33,3384.2775,3,3,1,3,"Personal Loan, Home Equity Loan, and Personal Loan",0.411575291,3,5.93,2,Good,734.69,37.16056526,17 Years and 0 Months,No,78.37418745,,Low_spent_Large_value_payments,229.617427,0,0.2271,0.9394,0.7856,0.8545,0.0784 +0x666d,CUS_0xba93,August,27,616-90-1633,Entrepreneur,57838.06,,3,4,8,2,"Student Loan, and Payday Loan",1.690349425,3,0.75,0,_,1255.589211,25.8679235,24 Years and 4 Months,No,83.8174826,467.2551067,Low_spent_Medium_value_payments,243.1924075,0,-0.0812,1.1428,0.4058,0.0678,2.2125 +0x6679,CUS_0x9ca4,August,19,616-47-6180,Writer,60183.14,4933.261667,3,6,12,7,"Auto Loan, Payday Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,11,17.52,7,_,1167.08,35.2320538,17 Years and 5 Months,Yes,195.8564065,156.0564114,High_spent_Medium_value_payments,391.4133488,0,-1.7058,-1.4363,-0.1688,-1.0929,1.2996 +0x6685,CUS_0xb433,August,24,330-66-4703,Journalist,33214.4,2842.866667,8,6,22,9,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Student Loan, Auto Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",42.18534907,22.5321711,18.48,7,_,2980.888161,28.14729098,10 Years and 6 Months,Yes,226.3248239,21.245966,High_spent_Large_value_payments,276.7158767,0,1.2507,-0.2666,0.9796,0.6683,-0.3909 +0x6691,CUS_0x2ca2,August,30,309-09-1879,Lawyer,166891.6,13668.63333,1,6,3.288361749,0,Payday Loan,,2,11.72,6,Good,515.62,40.83052443,32 Years and 8 Months,No,94.34933366,901.0169012,Low_spent_Small_value_payments,1081.434559,0,-1.5074,-0.7439,1.0904,0.2492,-0.1669 +0x669d,CUS_0x8837,August,19,820-70-6282,Doctor,107893.68,,3,4,5,2,"Debt Consolidation Loan, and Mortgage Loan",16.43215107,13,4.47,8,Good,597.8288074,36.49929112,16 Years and 2 Months,No,116.6571412,207.9896458,!@9#%8,830.7259468,0,1.4154,-0.9451,-0.5475,0.1189,0.447 +0x66a9,CUS_0x1009,August,26,063-67-6938,Mechanic,52312.68,4250.39,6,5,17,4,"Not Specified, Home Equity Loan, Credit-Builder Loan, and Payday Loan",,18,9.73,4,_,202.68,40.28699667,31 Years and 0 Months,Yes,108.3664671,,High_spent_Medium_value_payments,508.0123412,0,-1.0065,-0.9877,-0.5592,1.4076,-1.5568 +0x66b5,CUS_0x15a3,August,31,174-73-2790,Mechanic,16490.8,,1,3,5,2,"Student Loan, and Payday Loan",6.115268767,8,-3.5,3,Good,884.787904,27.12011428,21 Years and 6 Months,No,17.1094803,151.1613237,Low_spent_Small_value_payments,293.5628994,0,-1.1635,-0.4575,-0.8585,1.1935,0.5103 +0x66c1,CUS_0xbc0b,August,48,#F%$D@*&8,Teacher,98019.84,,7,5,6,3,"Auto Loan, Student Loan, and Home Equity Loan",25.42890761,21.79855025,5.22,5,_,1647.843913,33.56552052,21 Years and 5 Months,No,185.2959011,261.9448421,Low_spent_Medium_value_payments,621.3912568,0,-1.6957,-1.5225,0.974,-0.2486,-1.4756 +0x66cd,CUS_0x2ac3,August,26,#F%$D@*&8,Lawyer,131931.12,11045.26,5,5,12,2,"Credit-Builder Loan, and Personal Loan",1.401388379,3,3.19,6,Good,1204.082749,36.25085306,18 Years and 3 Months,No,177.8934917,11199.00462,Low_spent_Medium_value_payments,916.6862311,0,-0.4161,0.7032,0.2895,1.6176,0.5497 +0x66d9,CUS_0x3793,August,31,911-18-1721,Lawyer,8151.41,926.2841667,9,7,16.06745738,6,"Home Equity Loan, Auto Loan, Mortgage Loan, Student Loan, Payday Loan, and Student Loan",,23,3.59,9,Bad,1641.860954,29.3469703,6 Years and 5 Months,Yes,29.33729855,16.47571945,High_spent_Large_value_payments,260.0951107,0,0.5602,1.3501,0.4798,-0.0247,0.8761 +0x66e5,CUS_0x4b40,August,19,820-41-6857,Journalist,40009.74,3552.145,3,6,15,4,"Debt Consolidation Loan, Personal Loan, Payday Loan, and Not Specified",10.52075215,11,9.12,6,Standard,1372.21,39.79532495,21 Years and 6 Months,Yes,126.7979235,67.41580054,High_spent_Medium_value_payments,411.000776,0,-0.1717,-1.5466,-1.7985,-0.1236,0.5587 +0x66f1,CUS_0x3640,August,37,861-85-8462,Developer,15432.2,1201.016667,2,6,7,4,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",2.532390749,3,3.27,3,_,1346.169173,32.23468315,16 Years and 4 Months,No,30.02712483,95.02102383,Low_spent_Medium_value_payments,289.2215119,0,-1.1484,-0.0248,0.562,-0.6378,-0.2961 +0x66fd,CUS_0x8e4e,August,18,214-10-3146,Writer,24444.2,1738.016667,8,7,12,6,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Student Loan",11.73881914,8,8.24,9,Standard,718.42,29.64816603,15 Years and 2 Months,Yes,76.60697244,18.7968662,High_spent_Large_value_payments,318.397828,0,0.5234,1.037,-1.3093,-0.206,0.3068 +0x6709,CUS_0x919,August,18,865-33-7569,Doctor,107774.28,9142.19,1,7,10,2,"Payday Loan, and Mortgage Loan",6.262521525,6,9.78,2,Good,937.74,39.37587877,,No,128.76241,212.295615,High_spent_Large_value_payments,813.160975,0,0.9504,0.0064,0.2915,0.6716,1.3507 +0x6715,CUS_0x9ad1,August,35,121-98-9978,Journalist,11586.145,,8,4,11,100,"Student Loan, Student Loan, Home Equity Loan, and Payday Loan",19.29629429,17,7.38,0,Good,403.13,31.97605134,,No,22.19108629,15.6573664,High_spent_Medium_value_payments,335.1027556,0,2.1144,0.4696,-2.0204,-0.8987,0.542 +0x6721,CUS_0x9ab6,August,25,999-17-4007,Mechanic,37909.82,,4,4,9,3,"Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",,11.43822258,11.44,,Standard,1993.641535,30.69951261,16 Years and 2 Months,Yes,87.14641216,184.3189719,Low_spent_Medium_value_payments,312.8497826,0,-1.2757,0.7512,-1.4172,-0.6468,0.9156 +0x672d,CUS_0x2b5d,August,23,#F%$D@*&8,Media_Manager,19856.16,1537.68,8,4,32,5,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",,785.6952906,10.81,7,Standard,2401.045519,34.92331268,11 Years and 9 Months,Yes,46.93161888,28.67094224,High_spent_Large_value_payments,318.1654389,0,-1.1949,1.3264,0.8631,-0.7449,-0.9267 +0x6739,CUS_0x9a29,August,25,339-28-0072,Developer,33119.82,,10,5,32,5,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Not Specified",39.54619927,21.21155548,15.79,10,Bad,2826.602054,33.81056655,14 Years and 8 Months,Yes,111.4227018,,Low_spent_Small_value_payments,370.6074981,0,-1.1532,-0.6652,-0.646,1.2356,1.4146 +0x6745,CUS_0x7403,August,33,#F%$D@*&8,Journalist,31400.96,,8,7,31.06745738,7,"Auto Loan, Debt Consolidation Loan, Student Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",,29.12928413,2.73,13,Bad,4023.683388,35.21488006,5 Years and 3 Months,Yes,181.1676326,182.6711772,Low_spent_Medium_value_payments,122.4155689,0,0.0912,-1.067,-1.1234,-0.6899,-1.3501 +0x6751,CUS_0x85b,August,26,253-80-8250,Lawyer,24342.5,,5,5,3,1,Home Equity Loan,,19.19774138,0.6,3,Standard,62.25267154,39.98089466,28 Years and 5 Months,No,18.66976844,99.60776188,!@9#%8,377.4766363,0,-1.3908,-2.3009,1.3236,-0.5344,-0.5908 +0x675d,CUS_0xebb,August,43,524-10-9802,Journalist,70078.82,5727.901667,7,6,13,2,"Payday Loan, and Debt Consolidation Loan",10.09861055,10,1.25,4,Standard,1169.99,33.9075682,23 Years and 11 Months,No,71.66882169,10000,High_spent_Small_value_payments,432.3547303,0,0.8657,-0.4102,0.2934,-0.3314,0.037 +0x6769,CUS_0x6fe2,August,26,164-17-6558,Accountant,62214.36,,9,7,19,9,"Credit-Builder Loan, Student Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,17.96471372,1.05,11,Bad,3223.8237,28.61522101,14 Years and 5 Months,Yes,339.9715818,,Low_spent_Large_value_payments,203.9875592,0,1.7051,-0.4546,-1.0563,0.3266,-0.7061 +0x6775,CUS_0x16b1,August,36,#F%$D@*&8,_______,67412.2,5911.683333,6,5,7,2,"Credit-Builder Loan, and Home Equity Loan",18.06504598,,18.7,9,Standard,765.0609192,37.42008794,28 Years and 9 Months,Yes,106.5929342,11287.97587,High_spent_Medium_value_payments,508.8714529,0,0.0326,0.7737,-0.5306,0.3981,-0.1636 +0x6781,CUS_0xa53,August,36,243-69-8365,Musician,107289.36,9031.78,6,4,6.288361749,2,"Mortgage Loan, Personal Loan, and Mortgage Loan",8.272809686,9,7.77,5,_,815.62,31.98545351,,NM,207.7777289,479.6073926,High_spent_Large_value_payments,875.7303395,0,0.2764,-0.5882,0.8373,-0.5155,0.7529 +0x678d,CUS_0x7df,August,26,556-57-5003,Accountant,14406.71,,6,7,33.06745738,7,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Student Loan",,23.61230902,1.61,14,Bad,1623.703098,35.88369985,17 Years and 6 Months,Yes,53.55003158,,Low_spent_Small_value_payments,213.8569615,0,-1.0838,1.4038,0.8477,0.4333,-0.5642 +0x6799,CUS_0x120d,August,27,477-68-6707,Lawyer,18743.075,,2,7,4,4,"Home Equity Loan, Not Specified, Not Specified, and Personal Loan",11.51890212,12,9.46,0,Good,164.5199804,34.88858653,,No,57.80181333,,Low_spent_Small_value_payments,225.2149828,0,-0.703,0.3654,1.4348,1.8438,-0.2914 +0x67a5,CUS_0x4bb,August,29,620-77-4360,Scientist,10401.21,657.7675,9,10,23.06745738,2,"Auto Loan, and Debt Consolidation Loan",29.65236314,16,0.71,15,Bad,2330.110954,37.62399225,7 Years and 11 Months,Yes,14574,64.40848425,Low_spent_Medium_value_payments,239.9686866,0,-1.2341,-1.1529,-0.6553,-0.5732,0.1847 +0x67b1,CUS_0x225a,August,37,900-33-4232,Journalist,90160.11,,5,3,20,4,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Not Specified",,16,3.87,2,Standard,1174.21,39.08696464,24 Years and 9 Months,Yes,238.8958478,147.5323125,High_spent_Large_value_payments,594.8060897,0,0.5792,-1.5585,-2.9167,0.5421,-0.7686 +0x67bd,CUS_0xb88a,August,44,498-50-3055,Engineer,84355.98,7304.665,4,4,9,1,Student Loan,12.81829125,,2.07,8,Good,586.058748,27.26486868,19 Years and 4 Months,No,46.35026905,112.4538548,High_spent_Large_value_payments,822.412608,0,-0.7219,0.1492,-0.2324,-0.3844,0.5528 +0x67c9,CUS_0xc5fe,August,18,957-52-1731,Doctor,7804958,567.7979167,9,10,26,5,"Payday Loan, Not Specified, Personal Loan, Home Equity Loan, and Personal Loan",27.30676088,16,26.22,15,Bad,3848.3,36.05332976,14 Years and 2 Months,Yes,33.49243443,32.27363022,Low_spent_Small_value_payments,281.013727,0,-0.2399,0.6099,0.5441,0.4275,1.0858 +0x67d5,CUS_0x6c45,August,41,788-26-3109,Architect,41600.34,3507.695,7,3,18.06745738,6,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",,12.02396602,11.32,11,Standard,3210.634533,24.76489233,20 Years and 4 Months,Yes,137.6423097,169.0000479,Low_spent_Medium_value_payments,297.4068545,0,-0.4661,-0.7447,-0.2088,0.2504,0.4794 +0x67e1,CUS_0x82f2,August,24,597-88-0075,Entrepreneur,14114.89,,8,5,5,5,"Personal Loan, Payday Loan, Debt Consolidation Loan, Student Loan, and Payday Loan",,14,18.37,7,Standard,1453.95,39.1628458,11 Years and 0 Months,Yes,53.14898591,,Low_spent_Small_value_payments,229.5133736,0,0.2182,-0.4651,0.6102,-2.6374,1.2567 +0x67ed,CUS_0xb56b,August,33,188-19-3911,Scientist,74192.07,,4,4,18,3,"Credit-Builder Loan, Student Loan, and Mortgage Loan",,22,11.59,5,_,1200.73,27.17765354,22 Years and 4 Months,Yes,101.0662155,137.6355257,High_spent_Large_value_payments,621.3655088,0,-1.0994,-0.0746,0.9244,0.246,0.8809 +0x67f9,CUS_0x6133,August,48,#F%$D@*&8,Engineer,85862.6,,3,7,13,0,,,18,7.58,4,Standard,1057.55803,28.41816139,17 Years and 2 Months,Yes,0,315.422431,High_spent_Small_value_payments,682.2846455,0,0.0162,0.9623,-0.1939,2.1347,-0.2547 +0x6805,CUS_0x4791,August,35,#F%$D@*&8,Musician,19213.83,,10,10,21.95700519,8,"Debt Consolidation Loan, Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",,26.85712905,18.67,10,Bad,5709.634092,40.35617088,0 Years and 11 Months,Yes,1428.750721,,High_spent_Small_value_payments,233.3156173,0,2.4446,-1.4418,0.3575,-1.1873,0.2673 +0x6811,CUS_0x221f,August,28,107-96-7169,Developer,18733.04,1456.086667,10,8,23.95700519,9,"Not Specified, Personal Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Student Loan, and Debt Consolidation Loan",,21,28.12,13,Bad,4025.350954,34.19826248,3 Years and 4 Months,Yes,1459.406692,,Low_spent_Medium_value_payments,206.6840142,0,0.0367,0.5032,0.0533,-1.1306,2.6344 +0x681d,CUS_0x8559,August,29,606-11-9988,Scientist,95295.57,,6,6,3,0,,24.86706033,19.99563142,11.14,1,Good,448.1158643,39.77192147,,No,0,457.219218,Low_spent_Large_value_payments,607.110532,0,0.5118,-0.4766,2.4243,-1.2519,0.0349 +0x6829,CUS_0xaefb,August,36,184-09-5383,Developer,19055.25,1875.9375,8,7,14,1,Credit-Builder Loan,23.01401518,18,8.63,5,Standard,61.58,30.78049658,22 Years and 3 Months,Yes,15.43022105,87.68356973,Low_spent_Large_value_payments,354.4799592,0,1.4919,0.4958,-0.696,-0.0258,-0.9373 +0x6835,CUS_0x9b12,August,32,846-71-4710,Teacher,18378.81,1797.5675,6,3,34,7,"Personal Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Student Loan, and Payday Loan",,13.52128169,11.04,8,Standard,2050.470535,31.62408244,13 Years and 0 Months,Yes,92.85896939,78.30843055,Low_spent_Small_value_payments,298.5893501,0,1.2596,1.0574,0.2594,0.24,1.5372 +0x6841,CUS_0x7563,August,39,844-48-7506,Scientist,20027.03,1889.919167,4,6,6,5,"Auto Loan, Not Specified, Payday Loan, Credit-Builder Loan, and Student Loan",22.57461204,17,14.72,5,_,1183.81,31.8202539,8 Years and 2 Months,Yes,79.26223804,10000,Low_spent_Small_value_payments,310.5462058,0,-0.4256,-0.7672,0.9711,-0.2616,0.6163 +0x684d,CUS_0x588e,August,32,192-93-2734,Teacher,10380.655,,3,5,19,5,"Mortgage Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",,8,17.04,8,Standard,2417.2,24.60648033,,NM,24.14549591,19.53405123,High_spent_Medium_value_payments,318.5259112,0,-1.6833,-1.2075,-1.085,1.3455,-0.3602 +0x6859,CUS_0xc507,August,22,474-65-8064,Writer,50340.14,,7,4,15,1,Student Loan,27.02733648,18,11.25,7,Standard,464.51,32.94204362,25 Years and 0 Months,No,33.18739404,203.2609712,High_spent_Small_value_payments,451.9528014,0,0.1172,-0.213,-1.6708,-0.3737,-0.2363 +0x6865,CUS_0x93a5,August,45,905-92-0207,Lawyer,16060.675,,6,7,7,3,"Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,14,9.79,8,_,57.82,36.87915523,18 Years and 0 Months,Yes,196.5650774,148.7455297,Low_spent_Small_value_payments,264.0424553,0,0.5913,0.3582,0.891,0.7899,0.4435 +0x6871,CUS_0x1f8c,August,37,745-18-8559,Musician,106418.67,8961.2225,3,6,15,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",22.75070395,18.08463956,19.31,12,Standard,942.6683955,32.41049495,5 Years and 8 Months,Yes,239.2457498,377.9361775,Low_spent_Medium_value_payments,558.9403227,0,-0.1631,0.3866,-0.5427,1.789,0.5869 +0x687d,CUS_0x41de,August,41,233-05-2790,Journalist,17680.78,,10,5,17,6,"Student Loan, Personal Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",15.30169378,10.44539521,,12,Standard,2475.925987,40.50493012,9 Years and 2 Months,Yes,75.38738428,99.21841381,Low_spent_Small_value_payments,281.7340352,0,-1.4029,0.4364,-0.7382,1.4546,0.7475 +0x6889,CUS_0x5c1f,August,60,776-09-6859,Architect,58885.7,,1,6,1.288361749,2,"Debt Consolidation Loan, Home Equity Loan, and Student Loan",8.640318763,11,0.9,0,Good,367.2697958,29.69042794,24 Years and 3 Months,No,105.7550795,476.2670228,High_spent_Large_value_payments,551.9188715,0,-0.5201,0.271,-0.9727,-0.2048,0.4025 +0x6895,CUS_0xa1a0,August,23,894-75-4637,Scientist,44178.15,,4,3,5.288361749,4,"Not Specified, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",0,1,12.08,4,Good,300.68,28.48812416,18 Years and 0 Months,No,123.549902,,Low_spent_Large_value_payments,183.9031146,0,0.4475,0.1367,1.5573,-0.0492,0.2141 +0x68a1,CUS_0x8304,August,36,538-58-1635,Entrepreneur,29216.96,2411.746667,8,9,23.06745738,7,"Personal Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Mortgage Loan",35.29459727,19,23.37,17,Bad,3947.543472,30.9254167,7 Years and 4 Months,Yes,92.14302803,186.3646958,High_spent_Small_value_payments,222.3072674,0,0.2144,0.341,-0.5068,-0.6615,-0.5913 +0x68ad,CUS_0x13b5,August,54,023-34-9301,Lawyer,17931.375,,6,6,16,3,"Auto Loan, Not Specified, and Mortgage Loan",10.9019438,8,8.3,3,_,51.82,30.06874118,16 Years and 11 Months,No,43.58458276,160.9510785,Low_spent_Small_value_payments,248.7924637,0,-1.1261,-1.6931,-0.9114,0.8692,1.6755 +0x68b9,CUS_0x848e,August,36,276-47-1545,Doctor,7681.49,855.1241667,9,6,28,6,"Student Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",,26,27.56,8,Bad,2678.79,27.33564554,,Yes,31.61640814,37.71160086,High_spent_Small_value_payments,276.1844077,0,1.9432,-1.0278,0.5251,1.1807,0.1094 +0x68c5,CUS_0x6423,August,29,701-26-8627,Entrepreneur,68309.04,5422.231059,10,7,18,5,"Payday Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Auto Loan",36.11180983,22,17.11,14,Bad,3770.833449,36.31666214,12 Years and 2 Months,Yes,782.099839,11274.15125,High_spent_Medium_value_payments,334.9881002,0,-1.0623,1.0737,-0.7719,-0.0892,-0.7783 +0x68d1,CUS_0xc70d,August,21,281-36-9148,Scientist,17910.36,1521.53,5,7,15,6,"Credit-Builder Loan, Personal Loan, Not Specified, Not Specified, Student Loan, and Not Specified",14.51764025,9.525413543,8.13,10,Standard,2946.555268,38.16441253,10 Years and 2 Months,Yes,59.67444743,,Low_spent_Small_value_payments,203.0203955,0,-1.2397,-0.1816,1.4665,-1.8725,0.0159 +0x68dd,CUS_0x24a8,August,46,155-52-3116,Media_Manager,20645.48,,1605,7,2,0,,17.10111704,14,4.67,3,Good,221.6434089,32.23577695,19 Years and 6 Months,No,0,135.1209089,Low_spent_Medium_value_payments,327.3736303,0,-0.8768,0.3819,-0.8187,0.7485,0.3824 +0x68e9,CUS_0xc5e2,August,33,782-19-9567,Scientist,89162.3,,0,3,4,3,"Payday Loan, Debt Consolidation Loan, and Not Specified",2.790962367,4,4.6,4,Good,1280.41,25.87167243,,No,114.8486754,62.89667759,High_spent_Large_value_payments,776.7738137,0,-0.5303,-0.1781,0.08,0.5462,-0.4062 +0x68f5,CUS_0x19ad,August,44,881-97-6963,Journalist,14293.43,,7,7,18,7,"Payday Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Not Specified",15.01735707,13,9.55,13,_,2352.93,32.53179962,6 Years and 4 Months,Yes,73.81017142,115.4185683,Low_spent_Medium_value_payments,237.2831769,0,-0.7574,1.8153,-1.4511,0.958,1.1101 +0x6901,CUS_0x59e9,August,45,222-89-5735,Developer,7059.455,,7,7,33.06745738,5,"Not Specified, Home Equity Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",,22.22023072,-1.79,7,Bad,5377.539178,29.81024241,6 Years and 6 Months,Yes,17.85711662,,Low_spent_Medium_value_payments,246.6169898,0,0.5592,-0.1867,1.2172,-0.1645,0.8759 +0x690d,CUS_0x21e9,August,26,802-04-2637,Journalist,43335.48,3670.29,7,5,19,6,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Payday Loan",27.89039589,14.85968384,15.83,12,Standard,1429.908902,33.08828923,19 Years and 2 Months,NM,133.6886868,85.46026696,High_spent_Large_value_payments,387.8800462,0,0.4228,-1.7572,-0.1944,0.2323,0.7613 +0x6919,CUS_0x392a,August,19,001-51-4145,Lawyer,14171.23,1066.935833,8,10,20,2,"Student Loan, and Auto Loan",18.45744182,,18.27,17,Standard,2406.66,23.52591812,8 Years and 2 Months,Yes,19.47912977,57.65847795,Low_spent_Small_value_payments,319.5559756,0,1.5098,-0.6766,0.9763,0.2365,1.0984 +0x6925,CUS_0x2fb8,August,27,140-99-0200,Engineer,20134.87,1501.905833,6,7,6,2,"Credit-Builder Loan, and Not Specified",17.29437863,,12.8,10,Standard,126.83,31.57442872,31 Years and 5 Months,Yes,26.03636451,,Low_spent_Medium_value_payments,253.7470157,0,0.044,0.1162,0.6669,0.4368,-0.2944 +0x6931,CUS_0x6958,August,18,811-14-4092,Manager,28312.79,,3,3,5,3,"Auto Loan, Not Specified, and Mortgage Loan",15.48341491,9,16.57,6,Standard,365.77,30.12959023,9 Years and 10 Months,NM,50.67735738,179.4586907,Low_spent_Large_value_payments,296.5038686,0,-0.0141,0.9252,0.3567,-0.4567,0.7224 +0x693d,CUS_0x4bf7,August,28,070-11-7346,Teacher,51377.88,,6,5,19,4,"Home Equity Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",24.52700216,19,6.81,7,_,372.54,37.69933602,,Yes,108.1027443,119.9369724,Low_spent_Medium_value_payments,492.6092833,0,1.6551,0.5867,0.2178,0.2077,-0.2453 +0x6949,CUS_0x7174,August,30,063-61-8403,Lawyer,7084.365,710.36375,6,6,27,7,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Payday Loan",26.22038565,19,20.3,,Standard,1293.67,25.07717051,5 Years and 9 Months,Yes,26.75812422,64.20976196,Low_spent_Small_value_payments,270.0684888,0,0.9993,0.368,0.4525,0.6306,0.5457 +0x6955,CUS_0x47ef,August,46,587-53-0913,Doctor,42237.36,3725.78,5,7,4,4,"Home Equity Loan, Personal Loan, Personal Loan, and Mortgage Loan",13.11112535,12.55338716,6,3,Good,1327.812847,26.37980171,25 Years and 11 Months,No,98.45588688,252.2764395,High_spent_Small_value_payments,281.8456737,0,1.1271,-0.122,0.0508,0.5103,0.6912 +0x6961,CUS_0x4d05,August,34,942-07-8132,Journalist,147996.72,12395.06,2,4,5.288361749,2,"Not Specified, Personal Loan, and Mortgage Loan",9.301848631,9,2.19,2,Good,216.7815056,32.42023902,23 Years and 10 Months,No,197.1329512,704.0160295,High_spent_Large_value_payments,1031.579,0,0.5287,0.0025,0.4131,-0.694,-1.7935 +0x696d,CUS_0xb189,August,38,616-02-3076,Writer,35006.38,,7,7,34.06745738,3,"Home Equity Loan, Student Loan, and Payday Loan",,20.37106528,8.57,11,Bad,3150.891802,38.22372616,13 Years and 6 Months,Yes,86.71138464,34.71834024,High_spent_Large_value_payments,402.1698205,0,-0.0317,-0.6895,0.6388,1.0309,-0.5184 +0x6979,CUS_0x5ff4,August,56,114-60-4394,Musician,28784.53,,6,6,11,2,"Home Equity Loan, and Debt Consolidation Loan",14.51875204,11,10.77,2,_,594.5101068,38.40003971,28 Years and 11 Months,No,34.16328923,88.34728484,High_spent_Medium_value_payments,391.0651125,0,1.0455,-0.2771,-0.0451,1.2401,-0.3475 +0x6985,CUS_0xa547,August,41,175-92-0346,Architect,85059.6,,4,3,16.28836175,4,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",15.16995929,15,13.62,13,Standard,353.75,28.59894256,18 Years and 0 Months,Yes,207.993083,486.5821966,High_spent_Large_value_payments,650.4921814,0,-0.4802,-0.3947,0.1546,-0.2711,0.627 +0x6991,CUS_0x8e5f,August,33,901-38-5936,Writer,80143.74,6438.645,6,5,17,3,"Auto Loan, Debt Consolidation Loan, and Payday Loan",24.0324413,15,6.52,3,_,1129.59,23.46981345,31 Years and 8 Months,No,116.2906662,,Low_spent_Small_value_payments,191.3520615,0,-0.5937,-1.1698,0.4543,-0.6889,0.736 +0x699d,CUS_0xbded,August,34,682-05-4804,Journalist,142815.12,11940.26,1,2,11.28836175,4,"Auto Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",10.87440039,12,5.84,1,Good,578.35644,26.02723065,18 Years and 5 Months,No,297.5821171,12088.93769,Low_spent_Medium_value_payments,443.1905412,0,1.8128,1.0792,0.2504,0.2372,0.7666 +0x69a9,CUS_0x47c3,August,58,589-34-3858,Journalist,49822,4116.833333,7,4,5,0,,19.03389424,16,4.66,2,_,985.9700247,32.5750022,31 Years and 2 Months,No,0,176.3231803,High_spent_Medium_value_payments,508.3668939,0,0.2202,-0.0261,-0.8916,1.7314,0.6237 +0x69b5,CUS_0x5fca,August,47,861-77-2590,Doctor,35171.34,,1,3,3,0,,16.99726574,,0.75,0,Good,665.6117942,41.17815422,31 Years and 2 Months,No,0,119.9447758,High_spent_Small_value_payments,440.8603955,0,-0.2492,-0.1153,-2.6851,0.2357,1.2125 +0x69c1,CUS_0xb047,August,32,360-85-1964,Engineer,38698.64,3335.886667,7,6,16,7,"Mortgage Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",23.36929882,,3.18,10,Bad,1371.12,34.10633429,9 Years and 11 Months,Yes,128.8067599,48.18086683,High_spent_Medium_value_payments,406.6010399,0,2.6261,-1.0288,0.9458,-0.4556,-0.033 +0x69cd,CUS_0x6e13,August,32,830-79-0141,Musician,58792.74,4876.395,1,4,1,0,,14.51177946,12,2.82,2,Good,57.78,29.82817649,18 Years and 6 Months,No,0,119.9157333,!@9#%8,607.7237667,0,-1.9956,0.7725,-0.2526,-0.3262,0.0538 +0x69d9,CUS_0xa1bd,August,41,306-16-4271,Journalist,23437.79,,8,4,20,3,"Credit-Builder Loan, Mortgage Loan, and Payday Loan",,14.41979013,7.31,6,Standard,638.0692775,22.7977552,,Yes,47.87333656,172.9693719,Low_spent_Small_value_payments,240.2722082,0,1.8139,0.1028,0.8043,0.1283,0.8587 +0x69e5,CUS_0x856c,August,32,448-64-7747,Journalist,83311.6,,10,7,27,8,"Student Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Auto Loan, and Personal Loan",,21.75075743,21.63,8,Bad,4039.590183,20.24413035,13 Years and 9 Months,Yes,474.5823662,720.8723894,Low_spent_Medium_value_payments,,0,-0.4889,0.9694,0.6473,-0.0193,1.5844 +0x69f1,CUS_0x8e29,August,25,132-26-5537,Accountant,59656.96,,7,3,106,4,"Mortgage Loan, Mortgage Loan, Student Loan, and Student Loan",15.2529478,14,10.79,12,Standard,550.32,34.13802909,14 Years and 11 Months,Yes,196.9634156,278.7024385,Low_spent_Small_value_payments,284.9754792,0,-1.9963,1.6802,-1.1807,0.0636,-0.6685 +0x69fd,CUS_0x4339,August,34,#F%$D@*&8,Developer,135596.28,11343.69,4,3,12,1,Home Equity Loan,15.068842,11.43257451,3.85,3,_,334.8070849,34.92744198,16 Years and 5 Months,No,111.1157137,213.4002401,!@9#%8,1059.853046,0,0.3232,-0.0004,0.524,-0.6792,-0.1144 +0x6a09,CUS_0xbdc2,August,34,910-30-5375,Developer,172891.36,14156.61333,3,7,0.288361749,2,"Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",0,1,5.93,6,_,922.15,37.47818302,27 Years and 5 Months,No,272.8122258,586.3275556,!@9#%8,1216.459013,0,0.5381,-0.7716,-1.7729,0.2793,-0.2004 +0x6a15,CUS_0x1192,August,80,880-23-2963,Media_Manager,16319.375,1518.947917,7,3,1,2,"Payday Loan, and Payday Loan",16.79022148,13,7.67,9,Standard,1275.32,31.40444597,23 Years and 9 Months,NM,16.29112882,112.3398676,Low_spent_Medium_value_payments,303.2637953,0,0.29,0.0265,-1.0526,-1.8284,-1.112 +0x6a21,CUS_0x6da3,August,19,855-09-6351,Engineer,58961.86,4900.488333,2,3,7.288361749,0,,15.52892778,,9.06,3,_,75.14,26.61491238,33 Years and 3 Months,No,0,561.0381446,High_spent_Medium_value_payments,598.9481498,0,0.3893,0.8793,0.8938,1.2725,0.6539 +0x6a2d,CUS_0x12d1,August,41,618-45-3370,Accountant,21384.94,,4,4,15,2,"Credit-Builder Loan, and Debt Consolidation Loan",23.40131667,15,14.37,9,Standard,691.53,24.88446435,27 Years and 0 Months,Yes,22.095625,,Low_spent_Medium_value_payments,254.2667128,0,0.0924,0.6411,-0.3242,-0.2388,2.8326 +0x6a39,CUS_0x8b62,August,28,695-69-9739,Journalist,30128.6,2716.716667,8,10,25.06745738,5,"Not Specified, Auto Loan, Student Loan, Debt Consolidation Loan, and Personal Loan",32.83055377,17.98488229,15.65,14,_,2967.464671,39.65074481,12 Years and 6 Months,Yes,93.99019329,110.2738591,Low_spent_Medium_value_payments,320.6873263,0,0.0344,-1.6973,0.4892,0.4465,1.2705 +0x6a45,CUS_0xc1cc,August,44,054-04-4459,Architect,102626.97,8733.2475,1,4,2,4,"Not Specified, Not Specified, Home Equity Loan, and Student Loan",,,7.78,4,_,1071.320197,28.63505918,31 Years and 3 Months,No,223.4082007,133.8666434,High_spent_Large_value_payments,775.721404,0,-1.1487,-1.1597,0.3205,-0.0717,0.388 +0x6a51,CUS_0x6e6c,August,26,214-30-3255,Media_Manager,59458.29,4692.8575,8,5,13,1,Personal Loan,,,6.62,1,_,1114.52,29.09211535,19 Years and 6 Months,Yes,26.33303664,485.1606069,Low_spent_Small_value_payments,247.7921065,0,0.2324,0.1247,1.0152,0.8503,0.1656 +0x6a5d,CUS_0x22d6,August,21,293-09-8968,Developer,13506.895,1369.574583,3,5,12,0,,11.77459577,8,10.97,8,Standard,945.04,32.25993591,7 Years and 0 Months,Yes,0,28.24699493,High_spent_Large_value_payments,348.7104634,0,-0.3569,-0.599,-1.1292,0.4366,-1.0207 +0x6a69,CUS_0x7edd,August,51,920-53-9907,Journalist,22246.44,1721.87,4,6,20,2,"Credit-Builder Loan, and Home Equity Loan",25.86199222,17.58781947,11.04,3,Standard,9.166089217,30.24933143,22 Years and 6 Months,No,28.44605489,,Low_spent_Small_value_payments,354.3457231,0,0.7371,-1.5971,0.4477,1.3544,-0.7479 +0x6a75,CUS_0x71ca,August,80,305-81-4718,Media_Manager,20062.49,,10,5,18,7,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, and Auto Loan",,25,21.07,11,Bad,3212.49,25.64630528,12 Years and 2 Months,Yes,67.00738512,66.19388855,Low_spent_Large_value_payments,327.686143,0,0.1062,-0.4243,-1.7291,-0.0651,-0.1063 +0x6a81,CUS_0x7dcd,August,54,812-70-4107,Manager,140731.72,,8,6,11,3,"Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",26.25769415,18,8.25,3,Standard,111.7534147,30.35430189,21 Years and 6 Months,Yes,29384,1156.038063,Low_spent_Medium_value_payments,275.8640521,0,1.0255,0.0406,-0.1995,-0.8316,-0.7252 +0x6a8d,CUS_0x3cc8,August,44,047-34-0898,Architect,14336678,,6,9,25,2,"Student Loan, and Student Loan",,,1.68,7,Bad,1479.911395,35.64490689,15 Years and 5 Months,Yes,35.19164481,73.3793707,High_spent_Small_value_payments,430.3636512,0,1.2183,-0.741,1.8121,0.0473,-0.7448 +0x6a99,CUS_0xafb5,August,21,902-21-4884,Journalist,50104.05,4323.3375,4,5,34,2,"Mortgage Loan, and Student Loan",25.59224467,16.63009894,12.59,10,Standard,1843.017461,26.00779763,19 Years and 6 Months,Yes,55.00995927,,High_spent_Medium_value_payments,575.6479051,0,1.5121,0.3801,-0.3617,-1.4386,-0.3299 +0x6aa5,CUS_0x45da,August,26,826-09-3759,Accountant,9045.635,948.8029167,7,7,19,7,"Student Loan, Payday Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",,16,16.53,12,_,3098.74,37.46430532,12 Years and 0 Months,NM,28.21245927,41.64559018,Low_spent_Small_value_payments,315.0222422,0,0.3111,1.0668,-1.8444,0.8257,2.9007 +0x6ab1,CUS_0x7a9f,August,80,190-28-3757,Scientist,62848.74,4980.395,10,6,21.06745738,6,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Not Specified",34.5997064,22.80145212,17.8,10,Bad,5346.467739,39.16242797,3 Years and 0 Months,Yes,240.2198054,,Low_spent_Small_value_payments,106.4397893,0,-0.1636,1.3616,0.757,-0.8438,1.3266 +0x6abd,CUS_0x5998,August,48,960-17-5827,Teacher,33683.38,2652.948333,8,6,9,4,"Student Loan, Auto Loan, Payday Loan, and Home Equity Loan",,20,3.32,3,Good,622.08,27.74070941,33 Years and 4 Months,NM,78.36689176,113.3527339,Low_spent_Small_value_payments,363.5752076,0,-0.1206,0.5274,1.4973,0.3831,0.77 +0x6ac9,CUS_0x610d,August,49,905-97-4769,Manager,130130.8,,8,6,16,1,Home Equity Loan,28.12736921,20,7.34,0,Standard,473.56,31.73265489,26 Years and 5 Months,No,102.966321,794.8800077,!@9#%8,449.2770046,0,1.3945,-2.1825,1.4488,0.2469,0.2991 +0x6ad5,CUS_0xa2ee,August,21,248-82-9905,Doctor,9921.775,753.8145833,7,9,27.06745738,8,"Student Loan, Mortgage Loan, Auto Loan, Personal Loan, Personal Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",37.28492733,19,16.56,16,Bad,4927.310954,26.46589779,13 Years and 0 Months,Yes,56.504565,31.05531638,Low_spent_Large_value_payments,231.101289,0,-1.034,0.0702,0.4584,1.5954,-0.4618 +0x6ae1,CUS_0xbc06,August,26,095-45-2407,Writer,9446.245,,6,7,10.06745738,7,"Mortgage Loan, Auto Loan, Student Loan, Student Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",24.47318475,16.81616951,9.07,8,Standard,2127.186194,37.47169778,19 Years and 6 Months,NM,38.22067168,39.68429157,Low_spent_Medium_value_payments,274.8934571,0,0.7487,-2.8198,-1.7756,0.2511,0.5304 +0x6aed,CUS_0x8666,August,30,636-61-1138,Engineer,19599.81,1716.3175,6,7,31,5,"Auto Loan, Mortgage Loan, Personal Loan, Auto Loan, and Payday Loan",,22.30760696,12.42,7,Standard,1991.474469,29.64859195,15 Years and 4 Months,Yes,53.3765327,123.8485426,Low_spent_Small_value_payments,284.4066747,0,0.3608,-1.2365,-0.1836,0.3548,-0.2432 +0x6af9,CUS_0x5f66,August,28,186-12-4082,_______,17417.6,,10,10,25.88954781,9,"Payday Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Student Loan",23.91261591,,26.92,14,Bad,5253.678811,24.86799351,6 Years and 4 Months,Yes,1393.420288,,Low_spent_Medium_value_payments,215.8588497,0,-0.5791,-1.1555,0.2054,-1.6209,-1.0024 +0x6b05,CUS_0xa95,August,30,665-52-4675,Mechanic,24098.63,,1731,3,16,4,"Auto Loan, Auto Loan, Auto Loan, and Home Equity Loan",11.44500262,8,10.87,0,Standard,500.2462063,23.74581969,22 Years and 4 Months,No,285.063804,,Low_spent_Small_value_payments,216.8648048,0,-1.1138,-0.0715,-2.2873,-1.0395,-1.0478 +0x6b11,CUS_0x543d,August,27,827-53-9481,Manager,27372.59,,8,7,11,0,,,22.37906915,13.06,1,_,1276.367734,36.16916445,22 Years and 2 Months,Yes,66474,,Low_spent_Small_value_payments,206.8755922,0,0.2618,-0.1062,-1.0429,0.8376,-0.9961 +0x6b1d,CUS_0x22e0,August,43,425-90-3286,Accountant,17393.16,,8,8,23.88954781,100,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",,,0.83,8,Bad,1587.248231,29.72213718,15 Years and 9 Months,Yes,1424.571401,,Low_spent_Large_value_payments,192.1509942,0,0.8997,-0.3323,-1.0182,0.288,1.1684 +0x6b29,CUS_0x9813,August,36,383-35-5831,Accountant,89722.4,7646.866667,2,5,5,2,"Student Loan, and Student Loan",3.450604558,7,2.47,7,Good,1071.85,33.24496124,16 Years and 9 Months,No,101.9423381,57.24596279,High_spent_Large_value_payments,845.4983658,0,0.5075,0.9753,-1.2583,0.0564,0.2371 +0x6b35,CUS_0x4e4a,August,49,208-35-6167,Writer,86186.37,7438.1975,7,3,10,3,"Student Loan, Auto Loan, and Mortgage Loan",16.54368136,10,10.39,4,Standard,524.53,30.95804104,15 Years and 9 Months,Yes,192.3961991,183.7980094,High_spent_Small_value_payments,627.6255415,0,-1.3487,-1.4438,-0.0424,0.4815,0.1839 +0x6b41,CUS_0x6e19,August,38,404-28-1606,Mechanic,16421.94,,7,3,21,5,"Credit-Builder Loan, Not Specified, Not Specified, Payday Loan, and Personal Loan",16.88334959,16.4362409,15.94,9,Standard,2782.719009,34.66903951,8 Years and 4 Months,Yes,43.91138336,108.1091004,Low_spent_Small_value_payments,288.7290163,0,1.1809,0.0637,1.9783,-0.2856,-0.6669 +0x6b4d,CUS_0x1439,August,23,861-71-4122,_______,102383.19,8539.9325,6,5,17,4,"Mortgage Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",26.27073698,16,9.49,10,_,1407.61,27.13876352,24 Years and 8 Months,Yes,180.0991846,10000,High_spent_Large_value_payments,826.1879346,0,-1.0938,-1.0825,0.8069,0.1553,0.7376 +0x6b59,CUS_0x42f,August,43,979-48-2080,Engineer,36366.68,,5,4,13,2,"Student Loan, and Personal Loan",22.80439584,18,13.17,4,Standard,484.73,24.8377544,32 Years and 6 Months,Yes,52.17659091,,High_spent_Medium_value_payments,423.0528471,0,-0.1182,-0.9477,0.5738,0.0375,1.5422 +0x6b65,CUS_0x36ed,August,33,398-22-8099,Developer,28452.8,,10,917,22.06745738,5,"Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",37.22303442,20,8.18,14,_,2133.200954,33.39181031,18 Years and 6 Months,Yes,106.5841424,81.12960663,Low_spent_Small_value_payments,302.2726297,0,0.6348,0.1733,-0.9138,1.5966,1.2877 +0x6b71,CUS_0x3f43,August,18,145-24-7049,Architect,19040.44,,6,5,5,7,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Student Loan",,8,9.05,7,_,2492.06,26.44547074,8 Years and 8 Months,Yes,82.14254011,38.76912531,High_spent_Small_value_payments,325.6586679,0,0.286,0.4402,-0.3441,-1.4872,-0.2986 +0x6b7d,CUS_0x6cad,August,38,544-73-9056,Teacher,47291.79,3852.9825,10,6,29.06745738,8,"Personal Loan, Mortgage Loan, Not Specified, Personal Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",32.64819715,20,20.27,8,Bad,3371.750954,30.2401336,13 Years and 2 Months,Yes,196.8880458,478.8093911,Low_spent_Small_value_payments,,0,-1.0683,-0.4006,0.6889,0.481,-0.0295 +0x6b89,CUS_0xb19c,August,36,997-35-3816,Mechanic,15377.55,1208.4625,3,4,5,3,"Mortgage Loan, Not Specified, and Auto Loan",8.382261341,10,6.51,8,Good,629.8591839,28.88802774,28 Years and 3 Months,No,28.98979809,36.91802594,High_spent_Small_value_payments,320.4823452,0,0.5743,1.0534,0.2443,0.018,1.7567 +0x6b95,CUS_0x4304,August,47,857-49-4267,Teacher,57728.22,4661.685,4,6,8,4,"Payday Loan, Payday Loan, Mortgage Loan, and Mortgage Loan",12.74206258,9,9.2,3,Good,144.9539097,40.06368659,19 Years and 11 Months,NM,174.1419393,365.8393194,High_spent_Small_value_payments,231.330113,0,0.1211,-0.7618,-0.6296,-0.3117,0.3738 +0x6ba1,CUS_0x80d0,August,45,895-25-0942,Engineer,8053.37,,6,5,6,5,"Student Loan, Personal Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",22.82634417,18,12.1,7,Standard,886.98,29.43144574,,Yes,18.9491168,0,High_spent_Large_value_payments,280.3389705,0,-0.3061,-0.5799,2.0295,-0.6351,0.2723 +0x6bad,CUS_0xa731,August,40,118-75-1018,Architect,16724.455,1408.704583,4,4,11,0,,,6,10.98,1,Good,125.5353521,28.52073042,32 Years and 9 Months,No,0,,Low_spent_Medium_value_payments,348.8226521,0,1.3474,0.8678,-0.0623,-1.9417,-1.1829 +0x6bb9,CUS_0x40fa,August,21,515-07-4649,Manager,20417.43,1807.4525,4,1,10,2,"Credit-Builder Loan, and Personal Loan",8.865813241,8,4.51,4,_,312.66,34.42302346,21 Years and 9 Months,No,23.97871209,,Low_spent_Large_value_payments,259.3327019,0,0.5832,1.6195,1.4538,1.1597,-0.1543 +0x6bc5,CUS_0x7f43,August,30,275-74-7566,_______,16598.74,1381.228333,7,6,31,5,"Mortgage Loan, Home Equity Loan, Student Loan, Auto Loan, and Personal Loan",18.09453526,15.19052024,7.8,13,Standard,1931.453795,24.04138324,7 Years and 8 Months,Yes,35.21707893,175.9128526,!@9#%8,216.9929018,0,0.0932,1.3413,-0.3045,0.5166,1.3397 +0x6bd1,CUS_0x4bc1,August,45,043-71-9200,Developer,62565.6,5086.8,8,8,24,4,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",33.16419245,24.44429149,,8,Bad,1609.94695,33.29251276,15 Years and 2 Months,Yes,146.3636186,340.5900116,High_spent_Small_value_payments,281.7263697,0,-2.7847,-1.2694,1.1072,0.5806,-0.2449 +0x6bdd,CUS_0x7faa,August,35,466-90-0311,Doctor,87671.6,7202.966667,7,3,12,4,"Student Loan, Payday Loan, Home Equity Loan, and Student Loan",17.92475015,14,17.14,12,Standard,1375.37,31.08738665,14 Years and 5 Months,Yes,195.7751096,67.76099872,High_spent_Large_value_payments,696.7605583,0,0.327,0.1176,-1.0894,-0.0035,-0.1491 +0x6be9,CUS_0x2b54,August,25,218-51-2773,Mechanic,21339.42,,7,7,20,0,,,22.87103538,,5,Standard,638.9017068,36.69852936,33 Years and 4 Months,Yes,0,192.2803958,Low_spent_Small_value_payments,301.5481042,0,0.6187,-0.7169,-0.1817,-1.4411,-1.0793 +0x6bf5,CUS_0xb5d7,August,80,372-31-6244,Lawyer,58053.27,4795.7725,6,8,28,7,"Mortgage Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",,22,28.49,13,Bad,3771.12,39.95767629,6 Years and 6 Months,Yes,238.0575301,149.0983649,High_spent_Small_value_payments,352.4213549,0,-0.4657,-0.5326,-0.5263,-1.1888,-0.1394 +0x6c01,CUS_0x4728,August,44,933-75-9733,Accountant,31356.66,2736.055,10,9,25,7,"Not Specified, Auto Loan, Home Equity Loan, Payday Loan, Home Equity Loan, Not Specified, and Personal Loan",,24.19974414,,6,Bad,3617.640304,32.57462722,4 Years and 6 Months,Yes,120.8178655,97.24366041,High_spent_Medium_value_payments,305.5439741,0,-0.7683,0.5281,-0.1351,1.2234,0.2876 +0x6c0d,CUS_0x704,August,42,370-72-5659,Manager,18157.03,,5,5,20,4,"Not Specified, Not Specified, Personal Loan, and Student Loan",13.48119324,13,3.2,,Standard,762.58,31.6495216,26 Years and 5 Months,No,68546,96.77611557,Low_spent_Medium_value_payments,331.1019185,0,1.0762,-0.9343,0.3923,-0.9984,-0.2135 +0x6c19,CUS_0x8b9a,August,39,231-81-6258,Musician,29220.83,,2,2,12,4,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Auto Loan",4.543945924,7,0.6,7,Good,910.0728972,25.69181564,28 Years and 6 Months,NM,84.69565055,,Low_spent_Medium_value_payments,309.3684974,0,0.8658,0.6409,1.347,0.4249,1.0151 +0x6c25,CUS_0xaaaf,August,34,246-53-8379,Mechanic,16173.51,1581.7925,8,6,17,2,"Student Loan, and Mortgage Loan",18.89169901,,17.59,10,_,751.55,36.9795216,6 Years and 3 Months,Yes,17.76133292,20.23737031,High_spent_Medium_value_payments,370.1805468,0,0.2024,-0.2518,-1.0955,-2.2756,-0.1384 +0x6c31,CUS_0xa133,August,53,571-56-4779,Accountant,19740.445,1712.037083,1,5,0.288361749,0,Not Specified,,8,-0.4,0,Good,20.09913306,36.70031592,25 Years and 3 Months,No,15.71921549,486.5185123,Low_spent_Large_value_payments,365.5195993,0,-1.5241,0.3019,0.0659,0.0823,-0.2476 +0x6c3d,CUS_0x638,August,46,028-56-5290,_______,54622.5,4371.875,8,9,23.88954781,7,"Not Specified, Home Equity Loan, Personal Loan, Home Equity Loan, Student Loan, Student Loan, and Mortgage Loan",26.28082281,19,21.92,17,_,3445.84,29.12838014,6 Years and 9 Months,Yes,1540.799597,,Low_spent_Small_value_payments,115.5438284,0,0.4018,1.505,-0.0043,-0.2891,-0.272 +0x6c49,CUS_0x83e8,August,26,956-84-3692,Engineer,30377.05,2539.071951,6,5,10,1,Credit-Builder Loan,,15,7.34,5,Standard,1435.2,36.24895919,29 Years and 10 Months,NM,275.6667511,48.93755026,High_spent_Small_value_payments,473.4866643,0,1.5212,1.4589,-0.3843,-0.5686,2.0272 +0x6c55,CUS_0x913c,August,52,036-64-4461,Media_Manager,29060.32,2235.693333,8,5,9,4,"Mortgage Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",17.50696626,15,8.2,3,Standard,865.12,34.5550231,19 Years and 11 Months,No,64.49226323,130.321553,Low_spent_Medium_value_payments,308.7555171,0,-2.1708,1.0431,0.8216,2.0488,0.9688 +0x6c61,CUS_0x2f0a,August,35,069-25-9590,Architect,83989.44,6634.057272,7,7,19,7,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Student Loan, and Payday Loan",,10,10.55,11,Standard,1926.7,40.10737828,15 Years and 8 Months,Yes,488.7029892,232.7133129,Low_spent_Small_value_payments,422.3584262,0,-0.0022,0.2706,-1.4984,-0.7838,-0.9607 +0x6c6d,CUS_0x3ee,August,38,354-65-6948,Journalist,16756.18,,9,6,22,2,"Credit-Builder Loan, and Payday Loan",28.44003705,13.82821613,10.66,8,Standard,2139.162337,25.81250202,15 Years and 9 Months,Yes,32972,66.71824831,Low_spent_Small_value_payments,328.9744959,0,-0.3204,1.2677,1.4161,1.2272,-0.4856 +0x6c79,CUS_0xc29a,August,25,636-02-3692,_______,33337.84,,10,9,24.88954781,7,"Not Specified, Mortgage Loan, Mortgage Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",45.3248166,27.10018854,29.64,13,Bad,4060.135879,35.23707712,6 Years and 10 Months,Yes,1460.293403,113.5821292,High_spent_Small_value_payments,282.7097193,0,0.2447,-1.4475,0.0347,0.877,-1.1301 +0x6c85,CUS_0x4d33,August,42,219-34-1333,Scientist,80264.88,6635.74,6,5,31,4,"Personal Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",,24,8.31,13,Bad,1522.85,34.09912363,6 Years and 11 Months,NM,261.5315027,111.2418904,High_spent_Medium_value_payments,540.8006069,0,-0.3903,1.2459,-1.0043,-0.1443,-0.5817 +0x6c91,CUS_0xb99c,August,32,896-23-4660,Writer,97338.21,8220.5175,8,6,15.28836175,58,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",12.53722977,12,11.68,2,Standard,1052.21,26.73350311,29 Years and 0 Months,No,36271,616.264807,Low_spent_Large_value_payments,591.7412626,0,-2.1621,1.1349,0.8474,-0.4162,-0.9719 +0x6c9d,CUS_0x615a,August,33,358-87-3917,Musician,40591.74,3156.645,5,5,16,100,"Student Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",15.62004088,10,12.36,4,_,278.43,32.55061929,19 Years and 5 Months,Yes,93.03689329,65.92273163,High_spent_Small_value_payments,416.7048751,0,-0.1363,0.3368,1.983,0.5347,0.2504 +0x6ca9,CUS_0x4b61,August,21,959-50-8261,Teacher,69506.16,,8,6,17,1,Debt Consolidation Loan,20.39159483,17,16.76,4,_,418.2100517,30.29479721,16 Years and 6 Months,Yes,51.78614179,134.1774898,High_spent_Medium_value_payments,667.6811626,0,0.2947,-0.899,-0.3338,-0.0269,0.1246 +0x6cb5,CUS_0x5825,August,43,559-48-2098,Media_Manager,18623.23,,7,6,16,6,"Not Specified, Student Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",,22.47245085,5.37,8,Bad,2154.943924,32.06335151,14 Years and 8 Months,Yes,54.12243984,181.2893424,Low_spent_Small_value_payments,231.1818011,0,-0.7252,0.1478,0.3815,0.5541,1.0709 +0x6cc1,CUS_0xac0b,August,35,660-63-2250,Developer,117946.44,9988.87,4,5,1,3,"Payday Loan, Student Loan, and Credit-Builder Loan",,0,,0,Good,573.65,36.94335249,25 Years and 9 Months,No,19770,129.8125938,High_spent_Large_value_payments,913.5428657,0,0.6952,0.3177,-0.5111,-1.2756,-0.3739 +0x6ccd,CUS_0xba03,August,45,548-66-1159,_______,51548.56,4193.713333,8,5,8,4,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Personal Loan",21.32265568,,6.98,7,Standard,382.14,36.32699995,16 Years and 4 Months,No,92.04786673,217.9417942,Low_spent_Medium_value_payments,389.3816724,0,0.3884,0.1919,0.9607,0.5188,0.3391 +0x6cd9,CUS_0xbbcf,August,36,355-33-6296,Media_Manager,49187.07,,6,6,25,6,"Auto Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Auto Loan",19.36069851,12,12.04,7,Standard,1357.26,38.6146945,17 Years and 8 Months,NM,198.6083324,100.4008674,High_spent_Medium_value_payments,333.3830502,0,1.3219,-0.4999,-1.2529,-0.0249,1.7235 +0x6ce5,CUS_0x7be5,August,37,897-36-1601,Accountant,7330.945,,6,10,34.06745738,100,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Not Specified, Mortgage Loan, Student Loan, and Debt Consolidation Loan",31.71937883,16,31.45,12,Bad,4624.980954,33.67558425,,NM,52.59339622,,Low_spent_Large_value_payments,246.2352003,0,0.4826,1.0871,-0.9317,-0.4186,-0.4254 +0x6cf1,CUS_0x7fd1,August,29,151-65-0785,_______,58194.33,,5,7,20,5,"Auto Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Payday Loan",25.51501376,18,12.11,4,Standard,1208.38,29.42626544,9 Years and 10 Months,Yes,132.083695,180.0023214,High_spent_Medium_value_payments,404.2667335,0,1.4592,-0.0285,-0.1659,-1.7655,-0.4115 +0x6cfd,CUS_0x1410,August,43,087-58-6247,Teacher,96882.93,8229.5775,5,6,5.288361749,614,Debt Consolidation Loan,0,1.139244753,14.61,4,Good,386.3708829,26.39186192,,NM,73.17372328,600.1378656,High_spent_Large_value_payments,809.5836222,0,-0.322,-0.3756,0.1072,-1.6433,0.4064 +0x6d09,CUS_0xc042,August,31,#F%$D@*&8,Architect,124683.72,10193.31,5,6,8,7,"Home Equity Loan, Not Specified, Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, and Payday Loan",10.98846663,8,19.27,12,Standard,318.37,30.46457638,14 Years and 5 Months,Yes,612.306969,,Low_spent_Medium_value_payments,16.78759108,0,-0.5159,-1.8102,0.763,-0.2003,-2.0085 +0x6d15,CUS_0x5f34,August,19,432-94-1541,Writer,125385.88,10720.82333,2,5,5,4,"Mortgage Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",19.46568365,,6.36,5,_,1268.57,31.93902608,25 Years and 2 Months,No,364.3603102,422.2093597,High_spent_Medium_value_payments,535.5126635,0,1.8318,-0.5767,-0.2532,0.1257,0.6336 +0x6d21,CUS_0x6bd8,August,42,#F%$D@*&8,Doctor,90429.99,7363.8325,0,2,9.288361749,0,Student Loan,0,2,2.25,4,Good,1021.348639,33.49302815,31 Years and 4 Months,No,42.68800148,489.2406344,High_spent_Large_value_payments,873.3458205,0,0.3345,-0.2374,-0.6599,-1.1711,0.2826 +0x6d2d,CUS_0x43e9,August,26,585-43-2988,Writer,16674.26,1104.521667,6,6,6,4,"Personal Loan, Auto Loan, Payday Loan, and Personal Loan",,22.51330929,9.11,13,Standard,2417.582466,26.23478864,18 Years and 2 Months,Yes,29.62010595,,Low_spent_Medium_value_payments,264.1719914,0,2.4527,0.3223,-1.4528,0.624,0.8157 +0x6d39,CUS_0x32be,August,42,814-07-2953,Doctor,178088.4,14839.7,5,4,11,3,"Debt Consolidation Loan, Auto Loan, and Payday Loan",17.28349506,12,9.32,0,Good,676.1,38.39652118,18 Years and 10 Months,No,341.7256608,,High_spent_Large_value_payments,1249.532948,0,-0.9843,-0.7556,-0.3275,0.3069,-0.5582 +0x6d45,CUS_0x3844,August,20,577-62-7672,Accountant,133068.44,11063.03667,4,3,6,3,"Payday Loan, Home Equity Loan, and Payday Loan",10.79084082,10,18.77,7,_,940.98,43.53043068,24 Years and 2 Months,No,251.616403,249.5550295,High_spent_Large_value_payments,845.1322342,0,0.9637,0.4413,0.0361,1.4418,0.9025 +0x6d51,CUS_0x882f,August,20,900-53-6542,Engineer,38847.8,3215.316667,7,7,26.06745738,7,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",,19,23.87,8,Bad,3624.970954,34.95767043,7 Years and 2 Months,Yes,123.9165485,114.310943,Low_spent_Large_value_payments,326.5838872,0,-1.0341,0.6106,0.1712,-0.8221,-0.1433 +0x6d5d,CUS_0x81f5,August,18,038-08-6519,Engineer,35626.75,2954.895833,4,7,13,3,"Personal Loan, Personal Loan, and Payday Loan",7.980972126,9,13.09,9,Standard,1115.801323,23.33326209,18 Years and 0 Months,Yes,47.33271657,239.8417937,Low_spent_Large_value_payments,304.1035531,0,-0.8781,-1.5439,-0.5633,0.2072,0.6849 +0x6d69,CUS_0xcd5,August,35,548-42-2519,Scientist,20302.59,1991.8825,6,5,17,6,"Not Specified, Personal Loan, Student Loan, Auto Loan, Home Equity Loan, and Payday Loan",,30.21787424,27.94,11,Bad,5321.414821,40.05729078,9 Years and 10 Months,Yes,62.88417238,112.5485362,Low_spent_Medium_value_payments,303.7555414,0,-0.2317,-1.2843,0.8378,-0.7113,-1.7853 +0x6d75,CUS_0x3537,August,30,850-97-8308,Developer,42541.92,3445.16,1231,5,7,5,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Student Loan",12.23039452,11,12.31,5,Standard,240.24,25.14240527,13 Years and 4 Months,Yes,162.3753738,66.62156472,High_spent_Medium_value_payments,365.5190615,0,-1.2437,1.6193,-2.7143,-1.1637,0.2741 +0x6d81,CUS_0x418,August,32,010-49-5150,Scientist,14924.12,,8,7,16,2,"Student Loan, and Payday Loan",20.17642538,17,10.8,7,Standard,22.71,23.47365772,11 Years and 5 Months,Yes,19.92836451,27.92520253,High_spent_Small_value_payments,346.9140996,0,0.6429,0.4635,-1.5205,0.2024,-0.8194 +0x6d8d,CUS_0xa06,August,39,522-90-6154,Developer,36791.9,2772.991667,6,958,20,3,"Debt Consolidation Loan, Home Equity Loan, and Student Loan",27.90500667,19,1.6,4,Standard,145.6,38.57370585,24 Years and 0 Months,No,57.30150932,30.61959661,High_spent_Medium_value_payments,439.3780607,0,-0.0126,0.7521,-0.488,0.3491,0.3592 +0x6d99,CUS_0x60da,August,45,640-48-4568,Writer,22517.1,,3,5,6,0,,23.52906591,20,8.32,4,Standard,729.74,23.68565708,16 Years and 8 Months,Yes,0,,!@9#%8,381.0717116,0,0.2949,-2.0383,0.4923,0.0844,0.9307 +0x6da5,CUS_0x5ae,August,18,953-45-4455,Musician,47752.38,,8,6,28,6,"Not Specified, Personal Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Student Loan",22.60528003,17,13.13,14,Standard,1801.77,37.04455238,16 Years and 10 Months,Yes,166.375744,,High_spent_Small_value_payments,310.1601526,0,-1.3028,0.0501,1.0577,1.4181,-0.7904 +0x6db1,CUS_0x8e96,August,43,866-65-4918,Manager,15225.99,,8,6,21,100,"Auto Loan, Mortgage Loan, and Auto Loan",30.51078185,18.09811938,0.86,13,Bad,2313.389538,32.16570249,11 Years and 6 Months,Yes,29.41562297,34.31225525,High_spent_Large_value_payments,325.1553718,0,2.6412,-0.2935,-0.4601,-0.5446,-0.9959 +0x6dbd,CUS_0x5e7f,August,31,864-25-5318,Developer,79413.04,,10,10,21,3,"Not Specified, Home Equity Loan, and Home Equity Loan",37.61340832,23.7015388,11.83,11,_,2713.25846,32.37835533,12 Years and 2 Months,Yes,173.7773029,203.9649586,High_spent_Medium_value_payments,506.5330718,0,0.0856,-0.156,0.1185,-0.9285,0.5506 +0x6dc9,CUS_0x640f,August,30,413-49-0176,Musician,16361.9,,6,9,31.88954781,8,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",34.11945296,19,20.95,6,Bad,4949.89,24.10825764,4 Years and 5 Months,NM,1428.213823,,High_spent_Medium_value_payments,241.9559063,0,1.3125,1.8751,-0.1709,-0.5543,0.5105 +0x6dd5,CUS_0x8ad,August,41,107-44-6435,Scientist,37840.48,3435.373333,3,3,11.28836175,0,Auto Loan,0,0,11.46,1,Good,120.49,38.44714121,17 Years and 4 Months,No,27.67749606,568.0205741,High_spent_Small_value_payments,427.7767242,0,-0.1646,0.0851,-0.2075,2.5488,-1.038 +0x6de1,CUS_0x716d,August,54,226-32-8949,Musician,57652.54,,0,7,5,100,Payday Loan,,0,11.95,2,Good,1211.622254,35.27507053,30 Years and 9 Months,No,36.55993956,186.3030962,!@9#%8,542.1346529,0,-0.9295,0.1013,0.425,-1.109,-0.9456 +0x6ded,CUS_0x6b9f,August,41,446-85-6477,Journalist,8446.315,,9,6,18,6,"Credit-Builder Loan, Not Specified, Mortgage Loan, Mortgage Loan, Personal Loan, and Auto Loan",18.57948669,13.45364408,11.05,12,_,1437.58249,31.93151471,9 Years and 9 Months,Yes,28.20195929,37.20761625,Low_spent_Small_value_payments,287.3763828,0,1.3573,-0.3956,-0.6582,-0.1037,-0.2172 +0x6df9,CUS_0xb0fd,August,31,#F%$D@*&8,Architect,10250.2,,7,4,19,4,"Credit-Builder Loan, Not Specified, Student Loan, and Auto Loan",,21.1425126,8.04,7,Standard,1555.209746,38.66769814,8 Years and 10 Months,NM,30.95734002,,Low_spent_Large_value_payments,298.2816507,0,-0.7327,-1.0907,-0.3065,-1.2562,-0.9034 +0x6e05,CUS_0x4628,August,23,#F%$D@*&8,_______,155955.8,12806.31667,5,3,2,2,"Student Loan, and Personal Loan",0.842439099,5,9.32,3,_,201.420973,35.39246991,24 Years and 2 Months,No,130.7253093,725.8066241,Low_spent_Medium_value_payments,794.9222708,0,1.5365,-0.2794,0.6743,-2.9622,0.0739 +0x6e11,CUS_0x7ccf,August,19,365-87-0558,Media_Manager,14547.7,,10,10,26.88954781,7,"Auto Loan, Personal Loan, Not Specified, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",31.17228581,17.18675173,24.81,10,Bad,5081.260768,25.40579972,4 Years and 8 Months,Yes,1391.053972,141.6776866,!@9#%8,164.6515153,0,0.7054,-0.0122,1.075,0.0086,-0.6627 +0x6e1d,CUS_0x5d5,August,31,708-68-9338,Doctor,15067.08,1325.59,7,5,16,5,"Mortgage Loan, Student Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",22.96712181,16,23.81,9,Bad,3980.49,24.43858853,14 Years and 4 Months,Yes,42.66800031,171.0297001,Low_spent_Small_value_payments,208.8612996,0,-0.1416,0.3226,0.0662,-1.7442,-0.2735 +0x6e29,CUS_0x58ec,August,21,166-30-1674,Teacher,110110.04,9238.836667,8,4,12,4,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",,18,5.61,3,_,1328.722365,33.29501181,17 Years and 8 Months,No,233.8600173,419.3992329,High_spent_Small_value_payments,592.3186785,0,-1.7984,-0.5826,-0.3745,0.274,0.4027 +0x6e35,CUS_0x4a0a,August,38,358-74-4756,Architect,17568.98,,7,6,27,8,"Auto Loan, Payday Loan, Personal Loan, Not Specified, Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",,20,28.09,9,_,2551.73,36.95881067,10 Years and 10 Months,Yes,100.4203362,20.40409712,High_spent_Large_value_payments,290.9837334,0,-0.411,-0.2784,-0.2624,0.1357,0.4412 +0x6e41,CUS_0x2708,August,28,287-44-5880,Scientist,40078.08,,0,6,7,0,,,4,5.62,8,Good,649.84,27.44411032,,No,0,91.83923939,High_spent_Medium_value_payments,496.7447606,0,-1.1125,-0.3443,1.8687,0.2344,-1.7095 +0x6e4d,CUS_0x37de,August,35,698-27-5664,Developer,37822.18,,8,8,35.95700519,9,"Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Student Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",39.66993507,25.95760705,0.57,9,Bad,4445.166916,30.78540427,11 Years and 11 Months,Yes,1482.748632,194.137011,Low_spent_Medium_value_payments,190.3488214,0,0.7611,-0.4574,-0.2871,0.6395,0.2006 +0x6e59,CUS_0x75d3,August,36,958-98-2909,Architect,17604.075,1236.00625,7,7,13,3,"Auto Loan, Payday Loan, and Personal Loan",14.43159052,15,4.1,881,Standard,353.62,31.28821649,25 Years and 5 Months,No,37.5438362,156.8351163,Low_spent_Small_value_payments,219.2216725,0,-1.0976,1.2206,-0.1871,-0.3813,-0.2574 +0x6e65,CUS_0x52fb,August,44,069-79-6934,Journalist,15985.41,,7,3,17,7,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Auto Loan, and Payday Loan",,,14.86,14,Standard,1523.151237,29.24432961,18 Years and 10 Months,Yes,64.12679423,53.25082605,Low_spent_Large_value_payments,289.8341297,0,-0.224,1.1179,-0.6559,0.1234,0.9481 +0x6e71,CUS_0x761b,August,51,634-08-0753,Developer,25795.66,,5,7,9,0,,27.28446273,19,1.38,4,Standard,704.701338,25.25944917,30 Years and 0 Months,No,0,,High_spent_Small_value_payments,391.2413916,0,-0.1604,-0.2355,-1.873,0.4103,2.7364 +0x6e7d,CUS_0x31eb,August,51,439-99-0001,Teacher,35991.91,2920.325833,3,4,3,3,"Auto Loan, Home Equity Loan, and Payday Loan",0,2,4.84,3,Good,733.9951509,30.09349627,17 Years and 0 Months,No,60.50607216,415.678351,Low_spent_Small_value_payments,167.607983,0,-1.7911,-0.0911,-0.5771,-0.1801,1.5153 +0x6e89,CUS_0x4096,August,26,546-29-7997,Developer,46036.35,3930.3625,6,6,20.06745738,5,"Debt Consolidation Loan, Not Specified, Auto Loan, Not Specified, and Mortgage Loan",,20.54778002,14.75,8,Bad,3178.849758,24.90932232,15 Years and 0 Months,Yes,146.4016504,160.9211339,Low_spent_Small_value_payments,348.9931778,0,0.1876,-0.529,-0.7586,0.4032,0.2454 +0x6e95,CUS_0x7ad9,August,30,852-77-5664,Scientist,69082.12,5567.843333,3,3,33,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",15.47368794,13,16.08,6,Standard,1467.48,29.12978143,11 Years and 4 Months,Yes,119.4617548,,Low_spent_Small_value_payments,142.4744176,0,-1.9996,-1.4224,-0.0754,-0.5397,-0.955 +0x6ea1,CUS_0xb2bd,August,29,695-44-0763,Writer,35566.44,,6,8,32.88954781,6,"Payday Loan, Not Specified, Personal Loan, Home Equity Loan, Payday Loan, and Auto Loan",14.07467777,11,10.59,12,Standard,2203.49,33.05723025,8 Years and 4 Months,Yes,1495.073952,237.2619643,Low_spent_Medium_value_payments,177.3210021,0,0.0773,0.6709,0.3082,1.0906,-0.0611 +0x6ead,CUS_0x8c13,August,36,748-06-7649,Teacher,59961.82,,5,1,7,3,"Student Loan, Not Specified, and Credit-Builder Loan",1.749731473,3,7.07,6,Good,78.76382507,39.20207412,29 Years and 11 Months,No,93.84233619,348.8915502,Low_spent_Medium_value_payments,369.8412006,0,0.7123,0.0272,0.1351,0.1898,-0.1584 +0x6eb9,CUS_0x1ef7,August,32,#F%$D@*&8,Engineer,20316.57,1926.0475,3,8,24,3,"Debt Consolidation Loan, Not Specified, and Auto Loan",,13.47804619,12.07,13,Standard,2819.13244,36.37670373,,Yes,45.78906263,158.0711038,Low_spent_Small_value_payments,278.7445836,0,0.2113,-0.8288,1.4121,-2.5666,-0.2427 +0x6ec5,CUS_0x9c34,August,35,652-89-4186,Doctor,17680.79,,9,7,24.06745738,5,"Home Equity Loan, Credit-Builder Loan, Student Loan, Auto Loan, and Payday Loan",47.70178865,28.91064495,26.7,11,Bad,5559.852396,28.95829204,7 Years and 0 Months,Yes,71.47433778,93.8582307,Low_spent_Small_value_payments,230.8870602,0,0.2696,-0.8563,0.5887,0.1747,0.4032 +0x6ed1,CUS_0x5be7,August,25,162-11-9944,Engineer,32382.37,2960.530833,4,7,5,2,"Home Equity Loan, and Mortgage Loan",20.76416128,17,12.3,4,Standard,541.8905967,30.66521391,29 Years and 11 Months,No,38.77356818,,High_spent_Large_value_payments,456.7978007,0,-1.4445,0.5774,0.8149,-0.1618,2.3161 +0x6edd,CUS_0x961b,August,20,620-89-0592,Teacher,32186.31,2957.1925,4,1,2,1,Mortgage Loan,,8,3.75,2,Good,305.84,28.72882055,27 Years and 6 Months,No,19.71100045,143.0261445,Low_spent_Small_value_payments,422.982105,0,0.535,1.1299,0.868,-0.3096,0.9796 +0x6ee9,CUS_0x2112,August,32,#F%$D@*&8,Writer,46586.31,4041.1925,6,4,6,6,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Home Equity Loan",21.02559113,17,17.18,5,Standard,1787.16,37.33204427,18 Years and 10 Months,Yes,167.2182973,,High_spent_Small_value_payments,253.8881402,0,-1.2717,-0.6731,-2.8468,0.7256,0.2171 +0x6ef5,CUS_0x6673,August,31,959-24-9730,Entrepreneur,59050.48,5018.873333,8,8,28.88954781,9,"Home Equity Loan, Not Specified, Student Loan, Mortgage Loan, Payday Loan, Student Loan, Student Loan, Mortgage Loan, and Student Loan",40.31749805,23,23.29,10,Bad,4283.98,34.42100741,2 Years and 6 Months,Yes,1662.978773,131.1128078,Low_spent_Large_value_payments,283.4656715,0,-0.5757,0.4861,-0.2795,-0.1605,0.079 +0x6f01,CUS_0x1f46,August,49,361-05-2128,Lawyer,23079.29,1755.274167,3,5,8,3,"Payday Loan, Student Loan, and Not Specified",16.77382772,15,-0.34,6,Good,774.5821145,34.4402889,26 Years and 9 Months,No,45.55427581,70.39112911,High_spent_Small_value_payments,327.7267167,0,0.1975,-1.2567,-0.1035,-0.8599,-1.5012 +0x6f0d,CUS_0x4657,August,23,840-29-9898,Journalist,22119.355,,2,7,11,2,"Payday Loan, and Auto Loan",0,0,6.92,3,Good,1033.290424,33.81904511,26 Years and 10 Months,No,114.321766,,Low_spent_Small_value_payments,237.172814,0,0.8276,-1.1003,0.7675,-1.0667,0.1299 +0x6f19,CUS_0x4947,August,25,#F%$D@*&8,Architect,44248.14,,9,7,31,6,"Auto Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",33.79636276,19.38482879,0.84,8,Bad,2081.852564,30.04197473,11 Years and 6 Months,Yes,210.7338297,72.5613938,High_spent_Large_value_payments,322.1392765,0,-0.6912,-0.7922,-0.1811,0.3002,0.7947 +0x6f25,CUS_0x1488,August,39,856-92-9467,Entrepreneur,7468.77,,8,8,29.88954781,9,"Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",,24,27.82,14,_,2550.65,24.97337625,,NM,1367.964793,,Low_spent_Small_value_payments,219.176839,0,-0.9676,1.1011,1.1721,-0.0936,1.1434 +0x6f31,CUS_0x9388,August,29,146-82-6777,Musician,24208.83,,7,4,13,3,"Credit-Builder Loan, Not Specified, and Credit-Builder Loan",,20,5.4,5,_,873.13,29.45422741,33 Years and 2 Months,No,42.31303624,24.91919579,High_spent_Large_value_payments,350.108018,0,-0.1709,0.891,0.1603,1.467,-1.5144 +0x6f3d,CUS_0x85a7,August,25,298-52-5800,Scientist,41504.48,3405.706667,2,7,5,4,"Mortgage Loan, Not Specified, Home Equity Loan, and Payday Loan",1.582105388,4.570861772,10.08,6,Good,839.4854877,30.12492463,,No,104.9438013,105.1424364,Low_spent_Medium_value_payments,410.484429,0,0.0398,0.4367,-0.9752,-0.0965,2.9761 +0x6f49,CUS_0x7de0,August,33,538-28-9874,Writer,42326.99,3577.249167,0,2,4,4,"Mortgage Loan, Auto Loan, Auto Loan, and Payday Loan",9.305968911,10,5.97,4,Good,1120.152852,37.16347819,,No,116.6187198,316.3387845,Low_spent_Large_value_payments,232.2383541,0,-1.0185,-0.4169,-0.9126,1.549,0.1054 +0x6f55,CUS_0xafc4,August,19,913-98-6365,Lawyer,19092.79,,10,8,20.95700519,7,"Home Equity Loan, Student Loan, Personal Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Mortgage Loan",25.46469437,13,5.99,9,_,1668.490954,23.20590794,11 Years and 0 Months,Yes,1388.100246,210.073553,Low_spent_Small_value_payments,148.8824148,0,-1.18,-0.7167,0.4594,0.3223,-0.219 +0x6f61,CUS_0x2b4c,August,39,362-46-3183,_______,37570.83,3081.9025,3,3,4344,0,,9.892253253,9,2.17,4,Good,1074.715099,30.10262485,28 Years and 5 Months,No,0,222.2255718,High_spent_Small_value_payments,375.029466,0,0.0497,-0.0429,1.0713,-1.0737,-0.213 +0x6f6d,CUS_0x60c9,August,34,975-94-2594,Manager,76443.15,,3,7,17,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",15.11142808,14,10.32,0,_,1318.4,38.39069918,33 Years and 4 Months,No,116.8215477,409.7318227,!@9#%8,367.8728796,0,0.2106,-0.1899,-1.3826,0.5227,-1.8793 +0x6f79,CUS_0x9c09,August,22,333-14-9403,Lawyer,19296.415,,1,5,12,3,"Mortgage Loan, Payday Loan, and Mortgage Loan",9.082713714,11,1.11,3,_,1278.11,34.01743944,30 Years and 6 Months,No,47.52480236,130.0689748,Low_spent_Large_value_payments,276.9096812,0,1.0024,0.6073,-0.8486,0.5232,-1.8542 +0x6f85,CUS_0x7daf,August,44,665-75-9492,Teacher,13613.385,,7,6,11,0,,,17,15.83,5,Standard,506.93,35.38325088,17 Years and 3 Months,Yes,0,143.4329937,Low_spent_Small_value_payments,254.4118813,0,-0.7364,0.3271,0.6752,0.662,-0.9521 +0x6f91,CUS_0x5c67,August,32,677-56-5879,Accountant,38103.74,3175.311667,8,7,16,0,,8.538368343,10.49484074,4.74,5,Standard,145.3210259,29.18242155,32 Years and 8 Months,No,0,33.98486427,High_spent_Medium_value_payments,533.5463024,0,-0.2504,-0.2172,1.0596,-0.7249,-0.0203 +0x6f9d,CUS_0xaeb8,August,42,032-01-1939,Musician,67426.82,5810.901667,4,6,5,5,"Not Specified, Not Specified, Home Equity Loan, Auto Loan, and Not Specified",,10,9.88,7,Standard,671.39,32.17708789,13 Years and 5 Months,Yes,196.570837,730.6773316,Low_spent_Small_value_payments,,0,1.922,-0.6698,-0.0647,-0.8407,0.234 +0x6fa9,CUS_0x36fb,August,32,465-97-6079,Lawyer,20501.67,,6,7,17,8,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Student Loan, Not Specified, and Payday Loan",35.21061043,17.78953665,18.15,12,Bad,3801.253214,25.7347925,9 Years and 5 Months,Yes,108.6281377,164.6045349,Low_spent_Small_value_payments,193.9145774,0,0.9093,-1.7527,1.3704,-0.4258,0.9445 +0x6fb5,CUS_0x10bb,August,35,075-30-4340,Journalist,60830.92,5044.243333,0,1,11,4,"Payday Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",2.012056618,3,7.41,0,_,133.63,38.71229772,23 Years and 10 Months,No,159.799347,404.0458181,Low_spent_Small_value_payments,230.5791683,0,-0.3519,0.133,-0.693,0.672,-0.988 +0x6fc1,CUS_0x4206,August,26,891-70-1711,Entrepreneur,17188.14,1178.345,6,9,17.95700519,6,"Not Specified, Auto Loan, Student Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",,24.34994695,9.2,7,Bad,2218.146171,38.20305389,7 Years and 9 Months,Yes,1386.99471,91.28316673,Low_spent_Small_value_payments,208.5062543,0,0.1155,-0.6826,-1.182,-0.7704,0.7728 +0x6fcd,CUS_0x455e,August,44,297-53-4131,Teacher,21759.54,1693.295,3,4,11,1,Auto Loan,,18.22834953,9.1,2,Standard,1337.318623,34.79182153,23 Years and 11 Months,No,10.44434362,143.5966923,Low_spent_Large_value_payments,285.2884641,0,-0.5936,-1.4077,-0.5403,-0.033,-0.6273 +0x6fd9,CUS_0x4ba1,August,18,073-56-9255,Engineer,70705.88,6034.156667,6,9,955.8895478,6,"Personal Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Payday Loan, and Payday Loan",90,2351.634402,13.81,8,Standard,2416.31051,28.07487087,13 Years and 9 Months,Yes,1644.579876,95.46684533,High_spent_Large_value_payments,409.0388642,0,0.1473,-1.8336,0.4845,-0.7946,-1.2169 +0x6fe5,CUS_0x645f,August,31,024-45-7185,Developer,20415.52,1728.293333,7,6,27,5,"Payday Loan, Home Equity Loan, Student Loan, Personal Loan, and Not Specified",30.37278659,14,7.42,9,Standard,2590.01,33.87078648,,Yes,74.27241505,,Low_spent_Large_value_payments,244.9608249,0,-0.6993,1.0169,1.9249,0.232,0.5734 +0x6ff1,CUS_0x387a,August,25,432-76-8859,Architect,18707.73,,10,9,29.06745738,4,"Not Specified, Personal Loan, Not Specified, and Personal Loan",43.81572901,21.65306992,13.48,8,Bad,1695.177436,42.42313968,19 Years and 5 Months,NM,32384,16.58502585,High_spent_Large_value_payments,313.7071023,0,-0.3291,0.1139,-0.2435,-0.0544,0.1476 +0x6ffd,CUS_0x8370,August,36,348-82-8145,Journalist,20915.43,1533.9525,9,8,21,2,"Auto Loan, and Debt Consolidation Loan",27.10068897,16.94567997,10.21,6,Bad,2510.945066,23.66094741,11 Years and 3 Months,Yes,34.7557189,,Low_spent_Small_value_payments,283.8603219,0,0.6752,-1.0338,0.5642,0.0649,1.7326 +0x7009,CUS_0x82dd,August,25,473-98-6511,Mechanic,16397.44,,2,1,1,1,Auto Loan,7.002381056,7,,6,Good,699.0385007,38.55647812,32 Years and 6 Months,No,6.898288998,110.2093213,Low_spent_Small_value_payments,300.6387134,0,-0.3348,-0.5269,-0.5361,1.2957,0.8604 +0x7015,CUS_0x2e8b,August,46,840-54-3758,Doctor,138154.96,11388.91333,5,2,7.288361749,2,"Not Specified, Home Equity Loan, and Home Equity Loan",9.271356186,9,5.68,4,Good,1251.9,42.37869453,28 Years and 2 Months,No,270.1905666,722.1963848,High_spent_Small_value_payments,826.4418429,0,1.5554,1.1288,0.2153,0.2474,0.2379 +0x7021,CUS_0x3fb3,August,29,192-09-0024,Mechanic,119568.15,9880.0125,0,4,0.288361749,2,"Student Loan, Student Loan, and Not Specified",,11,8.87,0,Good,451.46,39.99327708,23 Years and 3 Months,No,249.6811132,788.1699,High_spent_Medium_value_payments,620.0876979,0,-0.6877,1.4224,-0.4592,-0.5512,-1.0258 +0x702d,CUS_0x590,August,43,084-84-5855,Journalist,63539.56,4996.963333,8,7,15,2,"Student Loan, and Personal Loan",,21.32596492,2.03,14,Bad,2966.044048,37.22538448,16 Years and 11 Months,Yes,60.66704902,70.5260024,High_spent_Large_value_payments,608.5032819,0,0.1165,0.1598,0.1846,1.865,0.8479 +0x7039,CUS_0x1d85,August,33,057-78-0785,Engineer,19455.49,,7,3,20,2,"Student Loan, and Not Specified",21.38903987,17,15.46,9,Standard,1427.03,36.39292995,12 Years and 9 Months,Yes,31.3071307,136.1955804,Low_spent_Medium_value_payments,255.3263722,0,0.9753,-0.6031,0.6332,-0.5679,-2.7446 +0x7045,CUS_0x39c0,August,31,325-55-9402,Accountant,62546.8,,5,6,450,2,"Credit-Builder Loan, and Student Loan",25.303879,20.48122538,8.63,4,Good,1271.305615,29.69858317,19 Years and 3 Months,No,69.72084239,261.4998577,High_spent_Small_value_payments,423.9026333,0,-0.4921,-0.7463,-0.2145,-0.6613,-0.1583 +0x7051,CUS_0x4a11,August,20,955-34-2486,Architect,67825.23,5819.1025,6,4,15,0,,10.66255792,8,16.82,11,_,148.04,27.33268225,17 Years and 9 Months,Yes,0,148.2195821,High_spent_Medium_value_payments,683.6906679,0,1.5923,-1.9311,0.2469,-0.2046,1.3538 +0x705d,CUS_0xa3ba,August,39,039-16-1692,Scientist,60082.77,,8,5,16.06745738,6,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Not Specified",,20.72477958,20.68,7,_,3720.015002,32.5390098,6 Years and 10 Months,Yes,21445,,Low_spent_Small_value_payments,209.5714375,0,0.3433,-2.9596,0.6669,1.3298,-0.0658 +0x7069,CUS_0x31bd,August,21,695-82-0727,Engineer,56122.68,,10,8,31,4,"Home Equity Loan, Auto Loan, Payday Loan, and Home Equity Loan",32.27887869,20,,13,Standard,1274.63,37.1172994,15 Years and 3 Months,Yes,98.38217359,37.62584926,High_spent_Large_value_payments,579.1809771,0,-1.0551,1.4584,-0.4082,-1.7657,0.4164 +0x7075,CUS_0x514e,August,24,418-27-3029,Teacher,15331.52,1033.626667,10,7,35.06745738,100,"Student Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Credit-Builder Loan",39.80278681,19,3.05,12,Bad,2321.260954,27.6315522,9 Years and 6 Months,Yes,42.68588125,131.8067413,Low_spent_Small_value_payments,192.1497562,0,0.587,-0.6724,-1.0428,-0.904,-0.2962 +0x7081,CUS_0x4d61,August,39,754-31-0999,Mechanic,33749.25,,5,7,3,2,"Home Equity Loan, and Home Equity Loan",,13,5.16,3,_,753.63,35.93043437,25 Years and 3 Months,No,41.83206032,,High_spent_Large_value_payments,441.3982502,0,-1.5647,-0.2219,1.1299,-1.1219,-1.5116 +0x708d,CUS_0x78a2,August,25,145-47-0135,Manager,50528.61,4073.7175,10,10,18.95700519,9,"Personal Loan, Not Specified, Mortgage Loan, Not Specified, Auto Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",33.17702689,20.44692208,14.26,10,Bad,3156.163726,38.25990689,13 Years and 4 Months,Yes,1657.188422,,High_spent_Large_value_payments,203.7234668,0,-2.0796,-1.2168,1.0267,-1.5106,-0.9836 +0x7099,CUS_0x8927,August,29,184-06-0856,Media_Manager,29758.46,,5,6,8,3,"Student Loan, Home Equity Loan, and Payday Loan",25.66892996,17,10.79,4,Standard,817.45,40.74742069,27 Years and 3 Months,No,71.50603017,96.16857227,High_spent_Medium_value_payments,351.1125642,0,-0.7379,-1.9573,-0.2251,1.253,1.6467 +0x70a5,CUS_0xf3c,August,29,496-52-1373,Entrepreneur,25355.14,1878.928333,8,4,12,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",7.685394562,8,4.49,3,Standard,172.56,25.60496017,15 Years and 10 Months,No,38.23483307,,Low_spent_Small_value_payments,330.1133581,0,-0.3948,0.2995,-1.0788,-0.1533,-0.5182 +0x70b1,CUS_0x85ba,August,45,366-96-2058,Musician,29944.64,2787.386667,8,4,4,1,Personal Loan,17.74186755,13,1.41,3,_,1211.682645,26.03651169,24 Years and 0 Months,No,22.23768127,90.84664491,High_spent_Medium_value_payments,424.1025366,0,-0.3439,1.5734,1.1437,-1.6598,1.0224 +0x70bd,CUS_0x1e96,August,29,782-91-2016,_______,17187.27,1589.2725,10,7,25.06745738,8,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Auto Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",30.03313664,,7.79,8,Bad,5688.2061,30.20905079,5 Years and 0 Months,Yes,90.56454169,121.8084942,Low_spent_Small_value_payments,209.8339262,0,1.6,-0.3838,0.0519,0.3115,1.503 +0x70c9,CUS_0x5f67,August,18,302-54-1542,Scientist,42266.3,3505.191667,7,7,13,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",,14,12.13,7,Standard,598.7214824,40.54613784,28 Years and 6 Months,Yes,59.26225983,331.2071762,Low_spent_Medium_value_payments,286.9274571,0,-1.6706,2.6141,0.7563,0.7793,-0.3156 +0x70d5,CUS_0x28f3,August,39,995-69-9991,Lawyer,56038.28,4860.856667,5,4,9.288361749,2,"Personal Loan, and Credit-Builder Loan",14.6335965,14,8.03,4,Good,244.138946,30.58087415,21 Years and 4 Months,No,76.22103398,516.9484776,High_spent_Medium_value_payments,575.8973306,0,-0.2703,0.7194,0.3258,-0.806,-0.7824 +0x70e1,CUS_0x124a,August,28,591-07-8373,Developer,16861.34,,2,6,2,3,"Mortgage Loan, Payday Loan, and Not Specified",4.462346276,8,10.77,2,Good,408.71,37.59274536,23 Years and 8 Months,No,41.57299471,118.2143746,Low_spent_Large_value_payments,255.5237974,0,1.7174,1.2642,-0.6218,0.021,-0.5706 +0x70ed,CUS_0x2123,August,19,941-73-1564,Mechanic,15094.925,1342.910417,3,5,1,0,,13.70534256,11,9.56,3,_,268.53,30.38810516,24 Years and 2 Months,No,0,61.47365113,!@9#%8,362.8173905,0,-0.254,0.3902,-0.2458,-0.284,1.0172 +0x70f9,CUS_0x37fb,August,34,829-28-9860,Lawyer,35166.35,,4,4,2,1,Not Specified,13.91875024,12,4.33,3,Good,1061.471052,39.14041091,21 Years and 4 Months,No,10747,207.8323344,Low_spent_Small_value_payments,390.6433365,0,-1.4488,1.3467,-0.5295,-0.7856,0.2227 +0x7105,CUS_0x45db,August,50,824-30-1475,Mechanic,86742.32,7030.526667,8,4,18.28836175,2,"Mortgage Loan, and Payday Loan",,15,14.12,2,_,19.11,31.90116912,26 Years and 5 Months,Yes,136.3423111,748.9752466,High_spent_Small_value_payments,497.6725699,0,-0.7086,0.2521,-0.4842,-0.1517,0.4069 +0x7111,CUS_0x8ac0,August,20,385-33-2227,_______,71608.12,6029.343333,2,3,10,4,"Auto Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",0,1,3.61,5,Good,643.24,39.97822848,18 Years and 10 Months,No,122.4784536,359.0969114,Low_spent_Medium_value_payments,401.3589683,0,0.5572,-0.2388,0.3591,0.2098,0.681 +0x711d,CUS_0x6fb1,August,28,848-55-0249,Manager,20685.51,1779.7925,6,5,28.06745738,4,"Payday Loan, Mortgage Loan, Not Specified, and Auto Loan",32.54507917,19,19.7,10,Bad,1479.870954,37.34750141,19 Years and 9 Months,Yes,44.04970092,,Low_spent_Large_value_payments,246.2247586,0,0.8625,0.6276,0.9393,-0.4642,0.205 +0x7129,CUS_0xc492,August,35,886-01-0009,Manager,21734.19,,4,1,10,1,Personal Loan,13.48975288,13,8.11,7,_,263.2,27.48486633,28 Years and 8 Months,No,13.35905908,106.8148156,Low_spent_Small_value_payments,327.0443753,0,-0.0247,-1.8415,-1.2,0.8912,1.032 +0x7135,CUS_0x7dac,August,52,#F%$D@*&8,Teacher,22489.25,,5,5,7,2,"Mortgage Loan, and Home Equity Loan",,12,13.93,5,Good,1189.23,36.89343318,17 Years and 6 Months,No,34.01900828,146.8616943,Low_spent_Large_value_payments,253.4297141,0,0.4565,-0.5598,0.4245,-0.0897,-0.137 +0x7141,CUS_0x3a1b,August,47,250-09-2815,Manager,16524.395,1645.032917,5,5,21.06745738,4,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,20,11.65,3,_,1103.774623,35.87146984,26 Years and 2 Months,No,44.23685736,,Low_spent_Medium_value_payments,239.8258796,0,-0.7997,-0.6402,0.5013,-0.6228,0.6725 +0x714d,CUS_0x6596,August,27,#F%$D@*&8,Scientist,124885.11,10127.0925,3,6,0.288361749,0,Not Specified,17.64664007,15,10.41,0,Good,935.74,32.24811682,30 Years and 10 Months,No,73.82316215,1279.797228,Low_spent_Medium_value_payments,359.0263207,0,-0.7462,-0.8255,-2.4014,0.0466,0.7168 +0x7159,CUS_0x121b,August,42,162-52-8159,Architect,33209.27,,1,6,8,2,"Debt Consolidation Loan, and Not Specified",7.100598893,4.541416474,8.99,4,_,827.2981857,30.24811514,17 Years and 5 Months,No,54.26316332,,Low_spent_Small_value_payments,259.029719,0,-0.2217,0.506,-1.8195,-0.293,0.9486 +0x7165,CUS_0xb46,August,33,004-46-4845,Engineer,16572.96,,4,3,14,3,"Not Specified, Auto Loan, and Personal Loan",20.89914894,17,18.02,,Standard,2253.31,30.5133442,,Yes,21.71981434,70.36276275,Low_spent_Small_value_payments,329.6254229,0,0.0191,-0.4146,-0.1812,-1.4389,-0.5805 +0x7171,CUS_0x34aa,August,26,955-87-4801,Journalist,20833.19,,6,6,35.06745738,5,"Auto Loan, Mortgage Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",,25.21575167,16.02,9,Bad,5816.711238,38.09317256,4 Years and 4 Months,NM,77.59130262,71.61593256,Low_spent_Small_value_payments,280.4823935,0,0.909,0.3961,-1.6889,0.0647,-0.0023 +0x717d,CUS_0x689c,August,40,809-67-7994,Entrepreneur,19436.28,,5,5,16,5,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",15.24352754,12,17.59,9,_,1819.46,36.45503515,15 Years and 10 Months,Yes,80.27057496,10000,Low_spent_Small_value_payments,211.3532468,0,0.6491,-0.8822,0.3924,-1.1369,-0.4837 +0x7189,CUS_0x553,August,30,104-11-0399,Engineer,20456.35,,7,10,16.06745738,9,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Personal Loan, Payday Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",,18,8.58,9,Bad,4647.780954,33.23169081,8 Years and 2 Months,Yes,85.67526559,,High_spent_Large_value_payments,213.6404737,0,-0.7778,-0.7093,-0.3515,0.7841,-2.3417 +0x7195,CUS_0x5050,August,36,215-17-4568,Musician,28485.95,,8,5,5,1,Student Loan,18.75702735,15,19.51,5,Standard,339.45,25.05153835,33 Years and 6 Months,Yes,17.43495131,239.5218785,Low_spent_Large_value_payments,277.0260869,0,1.6625,0.3866,-0.3088,1.0889,-1.0993 +0x71a1,CUS_0x95cf,August,25,685-36-3528,Writer,40105.03,,2,6,4,1,Auto Loan,,4.629360785,6.55,3,_,708.2310452,34.99296562,27 Years and 5 Months,No,79971,121.6350027,High_spent_Small_value_payments,472.0122474,0,-1.0535,-1.2028,-1.0244,-0.4722,-0.0165 +0x71ad,CUS_0x3f18,August,41,309-95-7818,Scientist,30988.54,,6,6,6,7,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Student Loan, and Credit-Builder Loan",25.22040751,18,8.4,8,Standard,189.28,25.31383687,,Yes,158.5492413,36.38160219,High_spent_Large_value_payments,327.8069898,0,0.8597,0.937,-0.4186,1.1181,-1.0349 +0x71b9,CUS_0xb74c,August,33,687-42-0262,_______,73475.02,6225.918333,0,5,8,3,"Personal Loan, Personal Loan, and Home Equity Loan",,,4.6,1,Good,160.0845455,30.19405096,17 Years and 3 Months,No,177.0168471,177.3475646,High_spent_Small_value_payments,528.2274216,0,0.0801,-1.1318,0.9023,-0.0777,0.2454 +0x71c5,CUS_0x7a0a,August,54,828-80-4340,Entrepreneur,17321.505,,6,7,13,1,Not Specified,23.61326593,17,7.64,2,Standard,589.67,31.58451495,30 Years and 11 Months,No,14.36936423,94.09866103,Low_spent_Small_value_payments,317.6778497,0,-0.422,-0.0799,0.0228,-0.7615,-0.2631 +0x71d1,CUS_0x8f4,August,49,884-12-2323,Developer,27525.02,2239.751667,6,6,6,0,,26.95967111,19,17.92,2,Standard,999.12,27.331822,23 Years and 8 Months,Yes,0,92.01887945,High_spent_Medium_value_payments,381.9562872,0,-2.6519,0.1913,0.7632,-0.9849,0.3288 +0x71dd,CUS_0xb6b9,August,47,107-13-6164,Journalist,122050.38,10173.865,3,2,8,4,"Personal Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",4.569469451,5,10.66,5,Good,456.0249094,34.42004357,22 Years and 0 Months,No,336.3754162,301.7529153,High_spent_Small_value_payments,684.3522647,0,-0.778,-0.416,0.0647,-0.6031,1.6224 +0x71e9,CUS_0xb5e3,August,27,172-01-0082,Musician,32763.68,,7,7,5,4,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",,13,16.3,8,Standard,512.3021355,38.43556931,18 Years and 10 Months,Yes,99.19011378,112.9133758,High_spent_Small_value_payments,322.0866215,0,-1.2968,-2.0123,-0.9402,-0.2507,-0.3732 +0x71f5,CUS_0x1748,August,35,958-25-6723,Mechanic,179987.28,14816.94,5,5,8,4,"Mortgage Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",,9.224816895,-3.46,1,Good,838.4206327,43.96243209,21 Years and 2 Months,No,417.8439911,135.9553521,High_spent_Large_value_payments,1167.894657,0,1.2623,-1.2601,-0.7507,-1.3188,-0.9618 +0x7201,CUS_0xb223,August,37,337-54-1559,Manager,34989.38,,4,3,9,3,"Personal Loan, Payday Loan, and Debt Consolidation Loan",12.93847054,,9.28,4,Good,957.58,32.15816714,25 Years and 11 Months,No,84.11593622,282.2807952,Low_spent_Medium_value_payments,234.7814352,0,-0.7624,0.2806,0.8671,0.525,-0.0399 +0x720d,CUS_0xf58,August,29,108-83-3774,Scientist,35235.45,3048.2875,6,4,5473,1,Debt Consolidation Loan,,8,19.41,12,_,1140.68,40.32776005,18 Years and 0 Months,Yes,23.12509761,145.041852,High_spent_Small_value_payments,396.6618004,0,0.285,0.4092,-0.1354,-0.4249,0.6776 +0x7219,CUS_0x801f,August,33,404-03-3907,Scientist,72414.06,,5,6,19,4,"Student Loan, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",19.8090293,17,9.55,2,Standard,1020.01,39.51035116,25 Years and 5 Months,No,201.3750786,259.2594835,High_spent_Medium_value_payments,412.8159379,0,-0.5091,0.5082,0.3333,-0.1968,-1.26 +0x7225,CUS_0xb93e,August,38,977-08-5980,Scientist,63259.8,5538.65,4,4,17,6,"Payday Loan, Home Equity Loan, Not Specified, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,19,16.86,7,Standard,2572.3,37.4754155,18 Years and 0 Months,NM,263.0772079,,High_spent_Small_value_payments,332.1688884,0,0.9742,-1.2631,-0.1452,0.5569,0.3452 +0x7231,CUS_0x102d,August,31,692-71-7552,Entrepreneur,89064.52,7256.043333,5,3,1,1,Mortgage Loan,1.714108832,5,6.37,3,_,599.7266111,30.57429936,30 Years and 3 Months,No,37.57275058,339.0956493,High_spent_Medium_value_payments,641.9374637,0,0.9343,-2.7121,-0.8351,-0.7685,2.4679 +0x723d,CUS_0xb51a,August,26,099-89-4998,Media_Manager,31137.12,2405.76,6,6,31,8,"Home Equity Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, Auto Loan, Student Loan, and Auto Loan",24.69348989,20,20.18,8,Bad,2938.55,31.15334631,2 Years and 8 Months,Yes,112.9666989,57.31715541,High_spent_Medium_value_payments,320.2921457,0,1.4582,0.8054,-1.5887,0.2423,-1.1942 +0x7249,CUS_0x4843,August,44,036-30-1880,Lawyer,33714.38,,10,10,16.95700519,9,"Mortgage Loan, Auto Loan, Auto Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Mortgage Loan",33.4660408,22.30551069,21.09,6,Bad,3685.211179,28.07393605,2 Years and 3 Months,Yes,1558.763224,78.46039118,Low_spent_Medium_value_payments,213.5791826,0,-0.4355,0.6321,-0.5667,0.9898,0.2598 +0x7255,CUS_0x5c81,August,23,003-29-4313,Teacher,17497.83,,3,7,19,4,"Payday Loan, Mortgage Loan, Personal Loan, and Personal Loan",27.46586708,17.14123256,8.13,9,_,2742.158448,25.76684398,9 Years and 11 Months,Yes,43.90394491,37.79856394,Low_spent_Large_value_payments,329.2127412,0,-0.9593,0.672,0.6856,-0.1644,-0.2636 +0x7261,CUS_0x4be5,August,18,964-87-3738,Scientist,9150.48,992.54,8,3,15,5,"Mortgage Loan, Student Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",,22,9.17,7,_,177.16,31.15159608,14 Years and 10 Months,Yes,22.50044086,79.17128805,Low_spent_Small_value_payments,287.5822711,0,-0.557,0.6269,-1.034,-0.3382,0.9571 +0x726d,CUS_0x3e57,August,18,#F%$D@*&8,Scientist,35593.16,2711.096667,6,10,27,4,"Not Specified, Home Equity Loan, Student Loan, and Credit-Builder Loan",37.4738234,22,15.67,11,Bad,1368.27,37.58009158,6 Years and 5 Months,Yes,72.42175525,80.88404784,Low_spent_Large_value_payments,387.8038636,0,-1.3404,0.6988,-0.5489,-0.2711,0.9227 +0x7279,CUS_0x83f,August,34,786-66-2253,Engineer,10333.895,,3,6,20,100,"Credit-Builder Loan, Personal Loan, Student Loan, and Not Specified",,15,11.32,10,Standard,70.46,35.01209019,10 Years and 6 Months,Yes,21.45334054,10000,Low_spent_Large_value_payments,279.1794007,0,0.1894,0.9389,-0.679,0.982,-1.1835 +0x7285,CUS_0xb182,August,28,784-97-8297,Doctor,19903.785,1670.64875,1,4,7,0,,,2,4.33,6,Good,1015.4,35.12300386,29 Years and 4 Months,No,0,38.76867175,High_spent_Small_value_payments,388.2962033,0,0.4983,0.7563,-0.6384,-0.7075,0.3351 +0x7291,CUS_0x79d5,August,34,788-50-6387,Architect,19171.68,1413.64,10,10,35.95700519,9,"Not Specified, Mortgage Loan, Auto Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",42.04139694,25.90101268,11.5,13,Bad,2601.777845,36.29535139,11 Years and 10 Months,Yes,1416.074357,82.84460832,Low_spent_Medium_value_payments,201.3946654,0,-1.029,0.7021,0.3859,0.1877,0.3446 +0x729d,CUS_0x3bc5,August,26,144-98-8454,Developer,18863.28,,9,7,34.06745738,6,"Payday Loan, Credit-Builder Loan, Personal Loan, Personal Loan, Auto Loan, and Auto Loan",,27.31513929,6.68,8,_,1860.31848,34.70081943,12 Years and 9 Months,Yes,49.78859568,72.49736719,Low_spent_Small_value_payments,292.5877492,0,-0.3826,1.0689,-0.3977,-0.6574,-1.0538 +0x72a9,CUS_0x3ded,August,18,226-87-4091,Scientist,33537.3,2899.775,10,6,28,7,"Debt Consolidation Loan, Auto Loan, Personal Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",,24,15.95,14,Bad,2502.26,35.64539238,8 Years and 11 Months,Yes,169.2558028,65.46855276,High_spent_Medium_value_payments,305.2531445,0,2.0509,0.9302,0.2556,-0.1988,1.2676 +0x72b5,CUS_0x7808,August,18,088-72-9373,Developer,15784.09,1417.340833,8,7,19.06745738,6,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Not Specified",,29.37366991,,7,Bad,1629.786207,27.9785726,6 Years and 6 Months,Yes,51.7655562,,!@9#%8,201.1578791,0,0.3644,0.6207,0.0572,1.1541,0.8318 +0x72c1,CUS_0x966e,August,42,165-41-7730,Doctor,69895.76,5954.646667,632,6,16,100,"Debt Consolidation Loan, Auto Loan, and Home Equity Loan",20.72017699,18.07721884,11.82,13,Standard,2541.590819,32.72268001,15 Years and 3 Months,Yes,21368,144.9826418,High_spent_Medium_value_payments,560.7380216,0,-1.8643,-0.717,0.7153,1.2649,0.6781 +0x72cd,CUS_0x29ff,August,49,145-67-9263,Musician,33254.2,3062.183333,4,7,3,0,,8.977289354,3.639167105,6.94,2,Good,76.6056671,31.98050121,17 Years and 9 Months,No,0,89.70796635,Low_spent_Large_value_payments,486.510367,0,-0.7166,0.511,-0.2799,-0.699,0.5162 +0x72d9,CUS_0xbca8,August,46,874-08-7483,Developer,15635.86,,3,3,15,2,"Credit-Builder Loan, and Credit-Builder Loan",25.1786597,18,6.21,1,Standard,409.7,31.61425801,,No,18.13451945,10000,High_spent_Small_value_payments,318.9357712,0,-0.3295,0.5818,-1.9072,-0.1372,0.0859 +0x72e5,CUS_0x20de,August,40,446-11-4496,_______,52742.91,,4,7,15,3,"Student Loan, Mortgage Loan, and Not Specified",,15.97395829,13.79,11,Standard,1833.993037,37.24417048,12 Years and 0 Months,Yes,76.63686697,159.4987748,High_spent_Medium_value_payments,457.9886082,0,-0.2275,-1.9993,0.8689,0.2941,-0.5203 +0x72f1,CUS_0x752f,August,37,297-48-4612,Writer,140948.32,11794.69333,6,7,13.28836175,4,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",20.60863759,17.47832426,10.29,3,Standard,115.107085,33.62740482,,Yes,310.155971,810.9662069,Low_spent_Medium_value_payments,758.2846164,0,-0.7903,1.3229,-0.5914,-1.9362,0.1306 +0x72fd,CUS_0x1ffd,August,43,806-33-9100,Architect,14311.105,1277.592083,4,3,4,3,"Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",16.28277124,,4.53,3,_,353.2389273,28.71060251,21 Years and 9 Months,NM,21.81573251,73.68263689,Low_spent_Small_value_payments,329.1911975,0,-0.2667,0.2793,2.1574,0.7732,0.9265 +0x7309,CUS_0xa05d,August,30,445-30-2049,Scientist,177546.36,14813.53,5,1,5,0,,5.623827641,6,7.3,1,Good,715.97,31.82763474,30 Years and 5 Months,NM,3776,308.7854773,High_spent_Medium_value_payments,1422.567523,0,-0.2399,-1.5323,-0.0943,-0.1781,-0.0449 +0x7315,CUS_0x62a6,August,51,912-87-7914,Developer,20995.615,,0,2,6,1348,Payday Loan,2.286054933,5,4.57,8,Good,1238.55,32.57852152,29 Years and 0 Months,No,9.143908458,78.26328597,Low_spent_Small_value_payments,393.5562639,0,-0.5263,-0.4381,-0.6202,0.3595,-0.833 +0x7321,CUS_0x859d,August,25,013-32-5071,Musician,15985.56,,6,7,29,7,"Student Loan, Student Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",23.60582126,17,21.6,,_,3311.2,22.51143,,Yes,121.1140652,18.12791547,High_spent_Medium_value_payments,276.9484036,0,0.7485,-1.2824,-2.2871,0.9814,0.9653 +0x732d,CUS_0xc516,August,44,051-99-9115,Doctor,94159.71,8028.6425,0,1,3.288361749,2,"Mortgage Loan, and Personal Loan",13.59665228,12,2.2,2,_,701.9808641,35.74302867,19 Years and 5 Months,No,121.048548,665.2609006,Low_spent_Medium_value_payments,753.3923242,0,-0.6235,1.103,0.6686,-1.098,0.7771 +0x7339,CUS_0x9c80,August,44,721-72-7576,Engineer,59426.85,5049.2375,8,10,28.06745738,9,"Not Specified, Auto Loan, Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, and Auto Loan",32.35188369,18,29.06,14,_,4848.630954,36.52874236,1 Years and 6 Months,Yes,226.4557712,162.90581,Low_spent_Medium_value_payments,368.8418809,0,0.4459,0.1445,0.5503,1.0251,-0.5315 +0x7345,CUS_0xa0f4,August,35,880-02-0378,Writer,48662.02,4301.168333,7,7,5,4,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",,13,11.96,2,Standard,660.09,39.33915719,31 Years and 6 Months,Yes,86.44703441,28.11914675,High_spent_Large_value_payments,555.5506522,0,-0.1581,0.622,1.0273,-2.3684,-0.4375 +0x7351,CUS_0x330c,August,18,970-80-1015,Journalist,61277.55,4876.4625,5,6,14,2,"Student Loan, and Credit-Builder Loan",16.79624807,15,15.54,9,Standard,1380.47,29.19859506,8 Years and 3 Months,Yes,88.56625812,195.6119615,Low_spent_Medium_value_payments,483.4680304,0,-0.6176,0.8318,1.08,0.6505,0.0558 +0x735d,CUS_0x210d,August,33,667-42-0049,Journalist,15447.63,,3,4,28.06745738,100,"Home Equity Loan, Mortgage Loan, and Home Equity Loan",14.98862233,10,15.91,8,Standard,2685.090954,29.99973139,6 Years and 5 Months,NM,37.98330516,,Low_spent_Medium_value_payments,254.8318159,0,-1.9678,-0.7451,0.9208,-0.7759,1.1596 +0x7369,CUS_0x7278,August,43,712-34-1572,Doctor,70334.76,5602.23,9,9,21,3,"Home Equity Loan, Student Loan, and Credit-Builder Loan",,27.24976055,9.52,15,Bad,1565.309715,32.13294885,16 Years and 2 Months,Yes,69849,,High_spent_Small_value_payments,520.5863385,0,-0.0188,0.8385,0.5267,0.2689,1.2436 +0x7375,CUS_0x4898,August,41,819-28-9726,Accountant,51884.96,4490.746667,6,4,2025,0,,27.1400311,21,8.98,10,_,811.42,39.45320675,16 Years and 11 Months,NM,0,594.4287327,Low_spent_Small_value_payments,144.6459339,0,2.7017,1.1232,-0.613,0.8589,-0.3122 +0x7381,CUS_0x7a6f,August,26,630-51-0238,Engineer,50774.91,4431.2425,6,7,23,7,"Payday Loan, Not Specified, Auto Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",,23.61963618,1.81,,Bad,1402.015388,32.77702064,19 Years and 10 Months,NM,290.5017437,49.16480373,High_spent_Medium_value_payments,353.4577026,0,0.2337,0.721,-2.2291,-0.1992,-0.4901 +0x738d,CUS_0x66bb,August,49,310-18-5191,Scientist,142665.96,,8,6,6,0,,,,16.42,7,_,430.1523457,27.92650268,22 Years and 8 Months,NM,1102.977069,1253.900619,Low_spent_Small_value_payments,378.0420962,0,0.4047,-0.4056,-0.8346,-0.3901,-0.2809 +0x7399,CUS_0x5465,August,36,639-70-2163,Musician,68332.18,5513.348333,7,6,20,0,,24.23950739,17,4.92,1,_,380.03,28.56326925,,No,0,319.1070455,High_spent_Small_value_payments,492.2277879,0,0.0555,-0.1348,2.0349,0.6873,-1.164 +0x73a5,CUS_0xbfe4,August,42,826-67-4358,Mechanic,38919.9,,8,7,13,100,Debt Consolidation Loan,9.619725116,10,10.2,0,_,1058.13,36.8086712,20 Years and 8 Months,No,22.01288434,219.2342931,Low_spent_Large_value_payments,350.2853226,0,-0.4259,1.0898,-0.7776,-1.0999,1.5204 +0x73b1,CUS_0x6945,August,35,189-61-6487,Engineer,17164.73,1545.394167,3,6,17.28836175,2,"Not Specified, Payday Loan, and Not Specified",6.173541253,8,14.35,8,Standard,172.13,30.46481793,9 Years and 6 Months,Yes,35.18435848,516.1812268,High_spent_Small_value_payments,283.1112924,0,-0.5301,-0.0437,1.5179,-0.5487,-0.0435 +0x73bd,CUS_0x7c64,August,48,399-83-4333,Architect,39715.98,3089.665,4,7,12,3,"Mortgage Loan, Home Equity Loan, and Personal Loan",,15,19.73,6,_,1125.16,32.96363895,26 Years and 10 Months,Yes,77.18699826,,Low_spent_Large_value_payments,235.1985116,0,-2.322,-0.3664,0.3522,0.1726,-0.9976 +0x73c9,CUS_0x53c0,August,33,355-60-0601,Mechanic,162550.04,13331.83667,5,1458,0.288361749,0,,0.212767695,3,3.9,6,Good,571.39,29.07952225,29 Years and 0 Months,No,0,1258.447587,Low_spent_Medium_value_payments,774.6735407,0,0.7663,-1.5205,0.7032,0.1407,-0.8076 +0x73d5,CUS_0x10dd,August,25,907-60-4113,Teacher,105645.6,9090.8,4,3,5,4,"Credit-Builder Loan, Student Loan, Payday Loan, and Personal Loan",,19,2.41,4,_,1336.91,40.45548153,21 Years and 4 Months,No,315.4061006,170.8991872,High_spent_Large_value_payments,662.7747121,0,-0.3234,-0.8488,-1.3812,-1.2506,-1.6538 +0x73e1,CUS_0x6d25,August,39,302-04-8460,Mechanic,40908.16,,0,7,10,0,,,8,8.01,4,Good,1210.4,27.93153433,17 Years and 5 Months,No,0,295.0757056,Low_spent_Large_value_payments,302.2256277,0,0.7709,-0.4022,-0.844,-0.6932,-1.9083 +0x73ed,CUS_0x724a,August,31,719-37-1810,Architect,14012.055,1464.67125,4,6,14,3,"Credit-Builder Loan, Mortgage Loan, and Student Loan",15.23888868,8,2.8,3,Standard,702.16,22.35618559,15 Years and 11 Months,No,29.83798149,197.3458362,Low_spent_Small_value_payments,209.2833074,0,-2.9293,-0.8564,-1.1237,-0.9969,-1.5459 +0x73f9,CUS_0xafed,August,60,446-64-3664,Writer,87903.62,7269.301667,2,6,12,3,"Credit-Builder Loan, Auto Loan, and Auto Loan",16.71605992,,7.86,3,Good,30.01954704,35.14128403,18 Years and 9 Months,No,143.2560921,723.9826531,Low_spent_Medium_value_payments,206.968969,0,1.6068,1.1938,0.1602,0.254,-0.4334 +0x7405,CUS_0x397b,August,31,546-18-3954,Manager,139608.72,11378.06,5,5,1884,4,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",90,1509,2.27,3,_,481.89,35.16569081,27 Years and 11 Months,No,235.1463447,1248.304344,Low_spent_Small_value_payments,,0,1.6317,0.3171,0.6728,-1.4474,0.7069 +0x7411,CUS_0x7efe,August,41,338-22-8890,Journalist,126382.92,10386.91,5,3,9,3,"Auto Loan, Student Loan, and Payday Loan",10.12967765,8,4.53,0,Good,672.4954721,30.18889949,22 Years and 8 Months,No,248.8965581,603.9334809,Low_spent_Medium_value_payments,549.1079597,0,-0.466,0.4713,-0.5001,0.9847,-1.3841 +0x741d,CUS_0xb0ce,August,38,312-27-5194,Media_Manager,28949.6,,3,5,2,3,"Home Equity Loan, Home Equity Loan, and Payday Loan",,8,1.45,9,Good,405.51,23.24526284,,No,51.26711955,10000,Low_spent_Small_value_payments,275.4716863,0,-1.3023,1.2684,-3.1243,-0.4101,-0.4184 +0x7429,CUS_0x8cf3,August,18,343-21-3350,Manager,15359.74,,10,7,27,8,"Student Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Auto Loan",18.05813817,,1.06,,Bad,2278.70036,30.7607674,,Yes,70.86812407,48.16846782,Low_spent_Medium_value_payments,297.2612414,0,-1.0709,0.6686,-0.5685,-0.2462,0.5873 +0x7435,CUS_0x1197,August,28,799-23-8283,_______,92300.01,,2,4,11,3,"Credit-Builder Loan, Not Specified, and Credit-Builder Loan",16.09316939,9,18.96,2,_,755.17,26.98978682,18 Years and 11 Months,Yes,49236,,Low_spent_Large_value_payments,581.1567885,0,-1.5005,2.3119,-1.0645,0.0262,0.8771 +0x7441,CUS_0x1e62,August,33,495-51-7258,Journalist,11149856,1272.239167,689,4,1,2,"Auto Loan, and Personal Loan",,2,11.42,3,Good,805.77,34.44458589,32 Years and 6 Months,No,16.22361044,107.2236217,Low_spent_Small_value_payments,293.7766845,0,-1.9638,0.7534,0.2834,0.0423,2.1567 +0x744d,CUS_0x6184,August,48,245-92-1411,Doctor,30416.28,,5,4,4,0,,0.005754371,3,1.33,3,Good,893.0390963,24.54267346,18 Years and 11 Months,No,0,100.1776781,High_spent_Medium_value_payments,398.3769616,0,-0.5729,1.3747,-0.5041,0.3266,0.1632 +0x7459,CUS_0x369d,August,32,483-28-8127,Manager,62380.11,,7,5,29,5,"Credit-Builder Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Not Specified",28.95499461,18.29943612,26.26,,Bad,3399.603325,25.19899319,7 Years and 8 Months,Yes,214.9195125,321.3998062,Low_spent_Medium_value_payments,255.4149313,0,0.4017,-0.9143,-0.8614,0.2872,0.4213 +0x7465,CUS_0x4285,August,52,967-33-1628,Accountant,19271.95,1536.995833,6,4,9,3,"Not Specified, Not Specified, and Credit-Builder Loan",16.64088774,9,15.97,2,Standard,368.72,25.72746902,32 Years and 9 Months,Yes,35.04678908,123.9885042,Low_spent_Large_value_payments,264.6642901,0,-0.3074,-1.1374,0.1407,-1.5701,-0.7036 +0x7471,CUS_0xaf09,August,49,003-80-8234,Lawyer,15055,,3,3,8,3,"Credit-Builder Loan, Not Specified, and Home Equity Loan",,4,2.61,7,Good,360.12,38.52557244,17 Years and 11 Months,No,31.77546124,,Low_spent_Small_value_payments,274.1014646,0,-0.2533,-1.7539,-0.8785,-0.516,1.4147 +0x747d,CUS_0x3159,August,41,179-75-4453,Writer,30963.76,,3,5,5,2,"Personal Loan, and Debt Consolidation Loan",,21,7.23,1,Standard,759.58,28.60245096,19 Years and 11 Months,NM,37.46358878,41.0784825,High_spent_Medium_value_payments,446.2892621,0,0.406,-0.7698,-0.6222,-0.2516,0.7157 +0x7489,CUS_0x587,August,32,291-15-8697,Doctor,18070.01,,9,7,34,3,"Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,28.76905891,8.89,8,Bad,2780.677086,38.79505378,9 Years and 6 Months,NM,43.4806842,,High_spent_Small_value_payments,286.3731905,0,0.8845,0.8816,-0.4364,-0.7527,-0.1666 +0x7495,CUS_0x91ee,August,32,475-37-1012,Manager,59241.38,4818.781667,4,5,9,3,"Personal Loan, Debt Consolidation Loan, and Auto Loan",7.694924361,10,6,2,Good,690.12,36.73129131,24 Years and 2 Months,No,128.9292457,169.71807,Low_spent_Small_value_payments,473.2308509,0,-0.8686,0.6907,-0.3478,0.8742,-1.2056 +0x74a1,CUS_0x7b90,August,44,816-38-1312,Developer,65588.1,4813.717403,7,4,11,3,"Not Specified, Mortgage Loan, and Credit-Builder Loan",26.50313019,20,,0,Good,1152.157513,24.10212967,31 Years and 3 Months,No,609.0231126,,Low_spent_Large_value_payments,203.5645442,0,0.5365,-0.7921,0.0747,-0.6667,-0.7834 +0x74ad,CUS_0xb1e8,August,25,401-41-0715,_______,69941.9,,4,6,14,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Mortgage Loan",13.47186844,11,9.81,,Standard,375.97,39.81531588,22 Years and 0 Months,No,218.5600879,126.8146188,High_spent_Medium_value_payments,481.27446,0,-0.4677,0.8265,1.4848,-0.8978,0.7414 +0x74b9,CUS_0x3d79,August,33,049-54-5444,Architect,17914.24,,6,6,11,5,"Not Specified, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,9,4.98,5,Standard,703.21,38.36740434,10 Years and 0 Months,Yes,65.91462582,140.0041615,Low_spent_Large_value_payments,238.566546,0,0.2029,-1.7087,-0.7264,-0.9985,0.672 +0x74c5,CUS_0x45b4,August,49,557-86-2567,Lawyer,39580.3,3203.358333,0,5,8,2,"Debt Consolidation Loan, and Personal Loan",,7.2375323,11.14,7,_,510.2414231,39.48024645,17 Years and 9 Months,No,56.75506518,90.27327613,Low_spent_Medium_value_payments,453.307492,0,-0.1724,-2.2454,-1.2427,0.508,1.8373 +0x74d1,CUS_0x624e,August,51,949-49-0437,Engineer,172413.64,14258.80333,2,3,2,0,,8.205397536,8,3.18,6,_,1094.29,45.34304546,,No,0,272.8658105,High_spent_Medium_value_payments,1403.014523,0,-0.3945,-1.2414,-1.099,-1.5699,0.153 +0x74dd,CUS_0x752e,August,48,069-41-0961,Writer,100233.4,8499.783333,6,4,1.288361749,2,"Student Loan, Home Equity Loan, and Student Loan",15.48283656,15,6.95,4,Good,616.68,36.15789547,25 Years and 10 Months,No,182.347046,,High_spent_Large_value_payments,776.8932379,0,-0.87,-1.6175,-0.4143,0.0939,-0.9635 +0x74e9,CUS_0x5b88,August,52,358-72-2084,Developer,35444.72,,1,5,5,0,,13.94327738,11,,2,Good,1348.43,27.38882729,18 Years and 3 Months,No,0,,Low_spent_Large_value_payments,486.2463624,0,0.482,-0.3073,0.5088,-0.3537,0.3378 +0x74f5,CUS_0x41cd,August,34,342-11-7845,Scientist,76338.68,6608.556667,4,6,18.28836175,0,Credit-Builder Loan,15.05247689,,12.18,6,Standard,965.06,37.62671827,13 Years and 10 Months,Yes,52.63006496,534.3640374,!@9#%8,733.7990253,0,-0.112,2.0164,-1.61,0.7706,-1.2364 +0x7501,CUS_0xa955,August,42,861-50-3592,Mechanic,129680.28,,8,3,5,2,"Mortgage Loan, and Credit-Builder Loan",22.17038181,15,16.65,6,Standard,240.27,35.75271976,,Yes,114.1656094,114.72445,High_spent_Large_value_payments,1075.478941,0,0.8624,-0.1287,-0.3211,-0.6898,-0.8812 +0x750d,CUS_0x34c8,August,29,928-40-2690,Accountant,45250.17,3751.8475,4,3,15,6,"Payday Loan, Personal Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",21.58977162,15,17.93,12,Standard,492.07,39.67371316,11 Years and 6 Months,Yes,173.8112291,220.300826,Low_spent_Large_value_payments,251.0726949,0,2.3518,-0.7123,-1.5615,-0.9254,-0.1374 +0x7519,CUS_0x5df5,August,22,697-66-1702,Journalist,14795.73,1011.9775,6,6,17.06745738,6,"Student Loan, Payday Loan, Mortgage Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",,15,15.53,10,_,3347.840954,34.43580188,8 Years and 0 Months,Yes,63.73944805,98.16242754,Low_spent_Small_value_payments,202.5755865,0,1.5434,0.1928,-0.8687,0.971,0.9989 +0x7525,CUS_0x75e,August,38,606-90-0153,Lawyer,77190.52,6470.543333,4,7,5,7,"Auto Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",13.88131517,12,12.3,7,Standard,75.94,26.46561126,16 Years and 10 Months,Yes,253.0491574,10000,High_spent_Large_value_payments,587.5925551,0,-1.6534,3.2047,-0.7647,-0.5609,-0.4012 +0x7531,CUS_0xc505,August,30,487-84-3914,Media_Manager,64030.6,5510.883333,6,6,15,5,"Credit-Builder Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",,15,16.52,11,Standard,1253.52,26.79837017,15 Years and 0 Months,Yes,183.8143039,346.9539337,Low_spent_Medium_value_payments,300.3200958,0,-1.6568,1.1975,-0.1665,-0.7224,-0.0165 +0x753d,CUS_0xb74d,August,21,222-44-7036,Media_Manager,9816.78,890.065,720,8,27.95700519,7,"Personal Loan, Not Specified, Auto Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",47.23855899,27.39070551,26.01,11,Bad,3291.67201,33.4421994,,NM,1371.882984,82.54431982,Low_spent_Small_value_payments,203.5288269,0,1.0553,1.419,-0.6788,2.3984,-0.3545 +0x7549,CUS_0xd60,August,32,810-45-4212,Mechanic,15628.95,1490.4125,10,8,20,100,"Not Specified, Debt Consolidation Loan, Home Equity Loan, Not Specified, Mortgage Loan, Personal Loan, and Personal Loan",39.35873398,21.24490405,5.52,,Bad,2332.285345,31.2359868,14 Years and 10 Months,Yes,45.84577065,26.00185461,High_spent_Medium_value_payments,327.1936247,0,0.0503,-0.7655,1.479,0.6306,0.6 +0x7555,CUS_0x99c,August,41,769-63-7639,Doctor,8578.295,,4,10,32.06745738,5,"Payday Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",22.28918007,14,22.38,6,Standard,1649.220954,33.32732664,16 Years and 8 Months,Yes,19.53533033,,Low_spent_Small_value_payments,256.1804901,0,-1.6002,-0.4761,-0.3862,-0.0363,-0.5873 +0x7561,CUS_0x3f31,August,42,208-56-2917,Developer,147210.68,12329.55667,2,5,4.288361749,0,,12.02035206,12,10.74,4,Good,323.31,37.72160786,,No,0,1301.924211,Low_spent_Medium_value_payments,630.968917,0,-0.5347,-0.4467,-1.6204,-0.3003,0.7069 +0x756d,CUS_0x3ee7,August,53,449-78-1167,Scientist,31223.33,,8,3,9,4,"Mortgage Loan, Mortgage Loan, Not Specified, and Personal Loan",19.59422988,13,7.89,3,Good,906.8,39.36931019,31 Years and 4 Months,No,362.2146195,146.4304913,Low_spent_Large_value_payments,286.5339351,0,-1.0941,0.8722,-0.3546,0.4343,-0.6621 +0x7579,CUS_0x1ef1,August,30,619-16-9988,Lawyer,30567.46,,8,3,5,100,"Not Specified, and Home Equity Loan",,15,5.54,8,Good,909.74,29.05775155,23 Years and 6 Months,No,43.22960638,103.7910731,Low_spent_Small_value_payments,375.3081539,0,-0.5055,-0.091,-0.9208,-1.2717,0.8375 +0x7585,CUS_0x8925,August,35,878-13-0132,Lawyer,45705.78,3866.815,8,3,19.28836175,0,,,8,9.97,4,Standard,132.3,40.27588275,,No,0,588.0420856,High_spent_Small_value_payments,478.5768754,0,0.7227,0.7321,0.7016,-0.2496,0.5029 +0x7591,CUS_0x4a77,August,80,187-66-6476,Engineer,169293.52,14365.79333,1,3,5,1,Debt Consolidation Loan,4.040937854,6,10.22,1,Good,863.5429467,40.68723398,,No,92.04008013,208.0962147,High_spent_Large_value_payments,1405.602614,0,1.4373,0.3403,-0.189,1.6873,0.2919 +0x759d,CUS_0x321f,August,50,669-11-4608,Writer,31002.86,,8,6,10,0,,12.08774011,12,5.1,2,Standard,1256.7,32.76453008,26 Years and 2 Months,Yes,0,139.1845546,Low_spent_Small_value_payments,435.6726121,0,3.2728,-0.6698,-1.9088,-1.3785,0.1266 +0x75a9,CUS_0x5c53,August,42,413-13-1716,Media_Manager,9275.95,553.9958333,8,8,25.06745738,4,"Mortgage Loan, Not Specified, Not Specified, and Home Equity Loan",41.5727299,24.71859567,14.23,12,Bad,2136.879214,31.32879207,12 Years and 10 Months,Yes,19.78890226,20.09468877,Low_spent_Small_value_payments,278.7957044,0,0.2953,2.0448,1.6395,-1.9677,-2.1758 +0x75b5,CUS_0x7721,August,31,678-37-2131,Musician,66999.96,,10,9,27.88954781,7,"Student Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Mortgage Loan, Student Loan, and Mortgage Loan",35.26277279,26.62098572,4.72,11,Bad,1852.811603,32.46643089,12 Years and 2 Months,Yes,1680.889512,247.9865158,High_spent_Medium_value_payments,213.0268914,0,0.2017,0.4223,-1.276,1.2323,-1.7924 +0x75c1,CUS_0x1d46,August,47,121-98-2623,Engineer,88685.32,7417.443333,0,2,3,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",1.474312128,4,6.75,8,Good,1286.060671,24.95089714,22 Years and 0 Months,No,168.7708042,249.028556,Low_spent_Large_value_payments,630.5835274,0,1.2952,-0.6264,1.3841,-1.0184,0.1889 +0x75cd,CUS_0x533e,August,45,637-69-5055,Teacher,49316.19,3848.6825,7,8,20,2,"Credit-Builder Loan, and Not Specified",43.51264007,22.42439072,10.4,12,Bad,2325.763207,37.18994305,15 Years and 9 Months,Yes,50.2979305,457.6222983,Low_spent_Small_value_payments,166.9480212,0,1.4491,1.7793,0.2645,0.3621,0.0662 +0x75d9,CUS_0x67e3,August,45,357-37-6454,Architect,8532.975,,6,6,19,6,"Not Specified, Credit-Builder Loan, Mortgage Loan, Personal Loan, Payday Loan, and Not Specified",,20.11700865,7.47,,_,2647.039648,30.44868403,14 Years and 0 Months,Yes,24.35809436,,Low_spent_Small_value_payments,249.784562,0,1.0948,1.2992,-0.1253,-0.2006,0.7636 +0x75e5,CUS_0x6c99,August,26,508-43-5579,Entrepreneur,9582.025,1022.502083,5,7,7,2,"Payday Loan, and Personal Loan",17.80821004,15.22104523,5.49,1,Good,913.1967692,26.52395586,33 Years and 4 Months,No,8.129068767,80.89999982,Low_spent_Medium_value_payments,293.2211397,0,-0.4239,0.2343,-0.8808,0.0633,1.2707 +0x75f1,CUS_0x9c59,August,25,158-74-3542,Mechanic,10568.51,,4,6,8,0,,33.42739544,24.17567045,7.15,7,Standard,1206.664968,23.35725158,16 Years and 2 Months,Yes,0,115.5664983,Low_spent_Small_value_payments,292.1044184,0,-0.1905,-0.7563,-0.5532,1.5929,-1.1223 +0x75fd,CUS_0xb298,August,80,741-31-0979,Writer,78024.96,6746.08,6,9,32,5,"Personal Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",32.96964304,23,24.34,6,Bad,4732.06,25.09330325,13 Years and 0 Months,Yes,301.0706312,394.3278179,Low_spent_Small_value_payments,269.2095509,0,-0.1949,-0.7721,1.6322,-0.5772,0.1816 +0x7609,CUS_0xc3c3,August,34,066-13-8372,Musician,32227.12,,1,4,0.288361749,2,"Student Loan, and Home Equity Loan",14.9045145,,4.09,4,Good,44.32779658,27.12495743,17 Years and 8 Months,No,49.16865304,468.5416789,!@9#%8,421.8043808,0,-0.3457,2.3762,0.0468,0.219,0.1213 +0x7615,CUS_0x38b8,August,49,272-14-6281,Lawyer,15988.665,1154.38875,2,7,8,1,Personal Loan,,11,-0.07,190,Good,912.94,26.24563966,22 Years and 11 Months,No,11.37745622,10000,Low_spent_Medium_value_payments,296.7585284,0,-0.2747,1.2386,-1.2075,0.189,1.3497 +0x7621,CUS_0x3b40,August,25,109-74-8676,Mechanic,83334.5,,5,3,3,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",0,3.544270423,10.54,8,Good,1348.088998,28.94513063,19 Years and 9 Months,No,168.1317314,305.2214693,High_spent_Small_value_payments,478.5009659,0,0.6323,0.5942,1.066,0.215,0.166 +0x762d,CUS_0x1d8f,August,27,977-87-4804,Teacher,17469.68,,7,9,19.06745738,5,"Auto Loan, Payday Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",34.13898295,18.37551272,29.12,10,Bad,4200.755452,23.88930212,6 Years and 2 Months,Yes,67.96105154,,High_spent_Small_value_payments,276.5385841,0,1.2416,0.6094,0.81,0.3963,-1.3056 +0x7639,CUS_0xa574,August,24,216-81-8709,Doctor,56023.84,,8,5,23,8,"Debt Consolidation Loan, Payday Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Student Loan, and Mortgage Loan",,25.29033936,5.6,10,Bad,4135.886824,38.00824702,10 Years and 3 Months,NM,296.1959609,63.22762135,High_spent_Medium_value_payments,384.9417511,0,-1.0156,-0.3789,-0.255,0.6154,0.9498 +0x7645,CUS_0xbdf9,August,50,256-08-6713,_______,19206.195,,5,4,7,1,Mortgage Loan,0,0,2.36,6,Good,315.4261067,34.53764325,24 Years and 3 Months,No,12.87583065,91.15399332,Low_spent_Small_value_payments,329.821801,0,-0.5605,-1.2894,1.6312,0.4002,0.6876 +0x7651,CUS_0x210f,August,36,522-83-5666,Scientist,24376.2,,4,7,10,1,Personal Loan,17.34808228,16,7.3,1,Standard,1109.03,33.34860848,22 Years and 0 Months,Yes,10.83592887,197.0518503,Low_spent_Small_value_payments,309.9472208,0,1.9711,2.1545,1.3088,0.4407,-0.0004 +0x765d,CUS_0x753,August,49,250-36-8350,Manager,29416.29,,4,5,5,4,"Home Equity Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",6.601545852,6.765874002,0.97,2,Good,1029.389725,33.07414846,,No,93.32743828,184.6156065,Low_spent_Small_value_payments,227.1927052,0,-1.0914,0.3985,-1.0219,0.3962,-0.1606 +0x7669,CUS_0xa040,August,21,079-12-3965,Architect,130353.39,10949.7825,5,6,9.288361749,0,Personal Loan,0,2,10.39,6,Good,804.31,24.18541086,24 Years and 10 Months,No,104.746202,1395.120124,Low_spent_Large_value_payments,285.049385,0,1.0734,-0.5969,0.3408,1.3367,0.2037 +0x7675,CUS_0x78d,August,33,209-53-3717,_______,35372.4,,1,6,5,3,"Personal Loan, Home Equity Loan, and Payday Loan",0.284373788,5,3.2,,Good,505.2550492,37.99841933,30 Years and 0 Months,No,63.39018116,206.0846433,Low_spent_Medium_value_payments,308.3776885,0,-0.2171,0.301,0.0889,1.0343,-0.8553 +0x7681,CUS_0x4380,August,31,261-79-5644,Writer,14360.97,,588,3,9,7,"Student Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",,14.02003447,15.1,6,Standard,2189.69007,36.7826502,,Yes,48.72288126,73.02424942,Low_spent_Medium_value_payments,284.5276193,0,0.0387,-1.0593,-0.3002,-0.5416,0.5094 +0x768d,CUS_0x6ebe,August,51,953-94-4394,Teacher,28112.52,,0,992,2,1,Auto Loan,2.504202064,4,4.53,4,Good,521.187542,39.53177426,31 Years and 9 Months,No,18.02218672,104.6128575,!@9#%8,367.8780657,0,-0.6164,-0.0949,-2.5067,0.0438,-0.2081 +0x7699,CUS_0x41fa,August,54,757-86-1116,Architect,29020.21,,5,4,5,4,"Payday Loan, Credit-Builder Loan, Student Loan, and Personal Loan",0,0,2.92,6,Good,1158.175606,24.88376786,17 Years and 8 Months,No,74.67200875,68.55444883,High_spent_Medium_value_payments,341.0682079,0,-0.9227,-0.328,-1.6114,-1.225,-0.1853 +0x76a5,CUS_0x63f7,August,55,318-11-8554,Mechanic,16168.52,,5,7,16.28836175,0,Payday Loan,11.97834174,11,8.65,3,_,92.04,32.12751671,18 Years and 10 Months,NM,7.188037222,588.5065789,Low_spent_Small_value_payments,265.5805115,0,-1.0318,-0.5662,-0.4067,-0.3157,-0.0923 +0x76b1,CUS_0x2963,August,48,203-84-0467,Entrepreneur,82859.08,7200.923333,1,1,6.288361749,2,"Payday Loan, Home Equity Loan, and Not Specified",16.41010551,,6.43,3,_,169.7164665,29.26403387,26 Years and 9 Months,No,186.7197042,803.2715742,Low_spent_Medium_value_payments,479.840697,0,-1.6214,1.428,1.3746,-2.3691,-0.08 +0x76bd,CUS_0x6deb,August,80,532-67-5525,Scientist,44986.07,3957.839167,3,3,4,2,"Personal Loan, and Debt Consolidation Loan",,,11.37,5,Good,1013.076855,39.07004999,28 Years and 10 Months,No,63.75170391,161.7125143,Low_spent_Small_value_payments,478.4510386,0,2.075,1.0757,-0.871,-0.716,-1.5826 +0x76c9,CUS_0x7357,August,23,931-66-4373,Doctor,32160.08,,5,6,5722,4,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",14.84121652,9,1.38,2,Standard,317.33,38.84245876,24 Years and 3 Months,No,76.87375541,24.73989704,High_spent_Large_value_payments,386.3870142,0,0.1845,0.0043,-0.9512,1.1005,0.8509 +0x76d5,CUS_0x9f03,August,42,#F%$D@*&8,Lawyer,28570.38,,4,5,18,1,Mortgage Loan,,12,11.2,5,Standard,1204.12,36.97751814,22 Years and 3 Months,Yes,74523,,High_spent_Medium_value_payments,391.7858293,0,-2.2701,0.8657,0.8633,1.2433,0.0521 +0x76e1,CUS_0x8162,August,50,159-20-9590,Scientist,86957.85,6769.936269,5,3,20,0,,,16,4.39,5,Standard,392.9625471,27.34199733,27 Years and 0 Months,No,496.5512307,114.4375638,High_spent_Large_value_payments,864.1351249,0,-0.0011,0.4639,-2.0845,-0.0819,-0.1554 +0x76ed,CUS_0xb67f,August,35,987-08-4120,Lawyer,76170.12,,5,7,16,6,"Auto Loan, Not Specified, Debt Consolidation Loan, Not Specified, Student Loan, and Auto Loan",,14,19.31,11,Standard,567.53,35.62187601,14 Years and 3 Months,NM,41352,,Low_spent_Medium_value_payments,182.8288275,0,0.6245,0.4153,-0.9582,-0.5754,-1.1148 +0x76f9,CUS_0xc18f,August,32,686-70-9142,Manager,123028.6,10017.38333,4,7,4,3,"Credit-Builder Loan, Home Equity Loan, and Not Specified",9.812361711,9,8.52,4,_,1361.12,38.59428458,,No,214.2706924,218.9296593,High_spent_Large_value_payments,808.5379816,0,0.6117,-0.0588,0.0709,0.4173,-0.8796 +0x7705,CUS_0xa204,August,36,966-03-9034,Doctor,16735.02,1176.585,10,10,16.95700519,7,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Home Equity Loan",26.77530099,14,14.43,11,Standard,2392.170954,36.83463588,18 Years and 5 Months,Yes,1395.233204,10000,High_spent_Small_value_payments,193.0730763,0,-1.6811,-0.3993,0.267,-0.7805,-0.1867 +0x7711,CUS_0x6678,August,31,798-42-4298,Manager,109122.21,8895.5175,3,6,2.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Auto Loan",,12,7.32,3,_,1040.38304,39.1709603,28 Years and 3 Months,No,199.7216097,,Low_spent_Large_value_payments,510.1574961,0,-1.2329,-0.2846,0.8908,0.0055,-0.453 +0x771d,CUS_0x3ee5,August,80,696-07-6139,Doctor,78738.68,6583.556667,9,7,29,100,"Auto Loan, and Mortgage Loan",,22.44443433,8.38,11,Bad,1984.319709,36.76698457,,Yes,97.01484553,227.3217308,High_spent_Medium_value_payments,584.0190903,0,0.0021,-0.1968,-0.3357,1.0512,-0.7343 +0x7729,CUS_0xbab2,August,35,429-23-9903,Architect,27752.64,2105.72,3,4,12,1,Debt Consolidation Loan,21.9818603,13,8.27,6,_,915.19,25.98523074,13 Years and 3 Months,Yes,16.18033537,,High_spent_Small_value_payments,376.4698598,0,1.0535,-1.184,0.597,-1.0279,0.8965 +0x7735,CUS_0xb92e,August,18,#F%$D@*&8,Entrepreneur,15312.52,1021.043333,7,10,33.06745738,2,"Payday Loan, and Auto Loan",24.10482923,9,19.06,8,Standard,2514.320954,38.22343638,10 Years and 3 Months,Yes,13.56492108,10000,Low_spent_Large_value_payments,251.928307,0,0.2596,2.0235,0.4684,0.7249,1.4549 +0x7741,CUS_0xb512,August,32,343-73-5111,Doctor,9277.245,,7,5,26.06745738,9,"Mortgage Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,25,24.79,9,Bad,4028.170954,27.06832651,6 Years and 0 Months,Yes,51.49139953,25.40734753,High_spent_Medium_value_payments,235.99134,0,0.8245,0.761,0.3787,-0.7068,1.0008 +0x774d,CUS_0xb29a,August,32,996-84-2540,Writer,27676.16,,3,7,2,2,"Mortgage Loan, and Mortgage Loan",,12.7767282,,2,Good,1343.615217,30.07890668,27 Years and 5 Months,NM,33.10159949,63.5411122,High_spent_Large_value_payments,388.291955,0,-0.2406,0.8757,-0.6023,0.3095,-0.9327 +0x7759,CUS_0x6072,August,46,715-49-4883,Scientist,14900.75,1291.729167,9,5,16,6,"Payday Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",,19,18.62,,Bad,3088.8,24.75213731,4 Years and 8 Months,Yes,43.5780958,,Low_spent_Small_value_payments,270.8502871,0,1.2326,-2.3426,0.7779,0.9304,-0.5803 +0x7765,CUS_0xbafb,August,20,046-83-9533,Teacher,28077.18,,6,8,28,4,"Auto Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",23.62950812,,3.61,14,Bad,2599.23,38.74519629,9 Years and 8 Months,Yes,50.74755802,173.4836919,Low_spent_Small_value_payments,298.6452501,0,-1.6456,1.882,-0.5253,0.4986,-1.3759 +0x7771,CUS_0x82cb,August,35,825-62-0682,Developer,104988.04,8711.003333,8,7,1,0,,30.96174871,20.10372625,16.03,3,Good,100.4792188,33.34449805,17 Years and 2 Months,No,0,240.722873,High_spent_Medium_value_payments,880.3774603,0,-0.6009,-0.0883,-0.4041,-0.1091,0.6666 +0x777d,CUS_0x7523,August,44,331-34-5518,Doctor,63756.33,,8,3,1,1,Mortgage Loan,19.50136315,15.18397303,9.94,0,Good,1085.255027,42.62891268,31 Years and 8 Months,No,50.39282331,10000,High_spent_Medium_value_payments,626.6353043,0,-0.6682,1.4309,-0.6703,0.7944,-0.3226 +0x7789,CUS_0x5324,August,45,882-90-4446,Entrepreneur,9415.2,,8,10,33.88954781,6,"Not Specified, Student Loan, Student Loan, Mortgage Loan, Not Specified, and Auto Loan",38.1069407,25,24.44,14,Bad,3020.564226,23.83320257,5 Years and 4 Months,Yes,1347.279567,,High_spent_Small_value_payments,240.0521345,0,0.1548,-0.1207,-0.0761,0.706,0.0964 +0x7795,CUS_0xc2dc,August,18,480-21-2927,Manager,42450.3,3382.525,6,5,20,9,"Not Specified, Personal Loan, Not Specified, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Personal Loan",,25,27.85,7,Bad,4653.37,29.43935962,5 Years and 9 Months,Yes,165.1651252,93.35891789,High_spent_Small_value_payments,339.7284569,0,-0.5997,0.06,0.8318,-0.2205,-0.0639 +0x77a1,CUS_0x901,August,40,637-42-2504,Architect,19041.48,,7,7,17.06745738,7,"Home Equity Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Student Loan",30.31092593,17,6.64,16,_,2042.650954,31.98673186,7 Years and 11 Months,Yes,83.188124,142.255681,Low_spent_Large_value_payments,206.214907,0,-0.8743,-0.6776,0.0773,1.0948,-1.3002 +0x77ad,CUS_0xbafd,August,23,568-03-0874,Writer,19234.69,,5,5,6,2,"Personal Loan, and Mortgage Loan",19.17368855,15,3.83,4,Standard,844.75,35.06751088,23 Years and 5 Months,Yes,20.51111523,124.0124181,Low_spent_Small_value_payments,294.76555,0,1.1748,0.3373,0.7729,-0.2039,2.9507 +0x77b9,CUS_0x2009,August,47,572-47-1898,Doctor,85272.06,7276.005,1,3,4.288361749,100,Auto Loan,,10,4.93,4,Good,849.7428148,39.2057025,28 Years and 11 Months,No,36.57053949,776.7928656,Low_spent_Medium_value_payments,657.7208686,0,-0.6537,-0.1443,1.8509,1.629,2.1165 +0x77c5,CUS_0xc497,August,18,#F%$D@*&8,Lawyer,55663.65,4420.6375,5,5,29,7,"Personal Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",,12.19741552,12.09,16,Standard,2140.930259,40.55903018,15 Years and 8 Months,Yes,168.9236973,180.3937342,High_spent_Medium_value_payments,342.7463185,0,0.5689,2.5882,1.4188,-1.1496,-0.0043 +0x77d1,CUS_0x44b4,August,50,400-93-6626,Entrepreneur,97637.4,8159.45,3,6,3,1,Credit-Builder Loan,17.82813289,14,7.15,1,Good,73.76360579,41.6625598,25 Years and 11 Months,No,48.95227219,343.7487437,High_spent_Medium_value_payments,713.1705841,0,0.5163,-0.6222,2.5429,0.3923,-0.652 +0x77dd,CUS_0xbbd3,August,33,851-69-5578,_______,9769.965,,8,8,28.88954781,7,"Credit-Builder Loan, Auto Loan, Auto Loan, Not Specified, Personal Loan, Mortgage Loan, and Home Equity Loan",,19.10196994,9.14,13,Bad,2112.46941,23.52373498,6 Years and 8 Months,Yes,1373.120514,97.12626517,Low_spent_Medium_value_payments,220.7395146,0,-0.4954,-0.199,-0.3875,0.8999,-0.126 +0x77e9,CUS_0x4437,August,40,095-24-1528,Teacher,46003.29,,8,6,34,6,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Student Loan",25.81498825,18.50137938,18.37,12,Bad,3063.294374,30.20779161,4 Years and 10 Months,Yes,142.4531101,,Low_spent_Small_value_payments,304.1024357,0,0.5505,-0.4827,0.3083,0.6468,-0.0903 +0x77f5,CUS_0x5e6b,August,46,278-23-1336,Scientist,72904.16,6341.346667,4,7,13,100,"Auto Loan, and Debt Consolidation Loan",,18,10.91,7,_,748.11,27.54397636,19 Years and 0 Months,No,67.7603496,,High_spent_Large_value_payments,650.4496572,0,-0.8,2.2426,1.917,-0.3479,0.8288 +0x7801,CUS_0x9bb7,August,23,583-34-9697,Journalist,22171.89,,3,4,6,3,"Home Equity Loan, Mortgage Loan, and Not Specified",13.67674233,12,2.74,4,Standard,1022.647957,30.47564556,22 Years and 4 Months,No,51.94868144,75.16463482,High_spent_Medium_value_payments,310.5267594,0,-1.8834,0.7238,0.3608,1.4201,-1.4902 +0x780d,CUS_0x80a0,August,26,165-78-8906,Manager,121237.53,9995.1275,3,6,3.288361749,100,"Not Specified, Home Equity Loan, and Debt Consolidation Loan",14.5097208,,8.66,1,Good,605.0163488,40.35692574,30 Years and 6 Months,No,232.057192,772.1193878,High_spent_Medium_value_payments,698.191065,0,1.2063,1.4906,-1.3869,-0.2313,-2.1331 +0x7819,CUS_0xa12c,August,41,861-82-4463,Musician,136386.2,11512.51667,7,5,16,2,"Student Loan, and Auto Loan",17.07272187,15,1.42,0,_,971.34,27.27100203,,No,187.4643229,448.4634238,High_spent_Medium_value_payments,765.3239199,0,0.3391,-0.6088,-1.1016,1.5469,-1.0478 +0x7825,CUS_0x71da,August,33,851-20-4325,_______,19801.67,,6,7,32.06745738,7,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Payday Loan, and Not Specified",34.82608167,21,3.73,8,Bad,1739.400954,33.03695548,14 Years and 6 Months,Yes,115.3680516,,High_spent_Medium_value_payments,237.0769032,0,-0.1524,0.6599,1.5042,-1.2879,-0.4804 +0x7831,CUS_0x492e,August,56,748-90-2499,Entrepreneur,103620.54,8336.045,5,3,170,2,"Payday Loan, and Personal Loan",22.51436608,16,7.33,4,_,100.85,32.78493755,21 Years and 8 Months,NM,103.2277351,529.9804342,High_spent_Small_value_payments,460.3963307,0,0.97,0.5786,-0.167,0.4819,0.4116 +0x783d,CUS_0x818c,August,45,482-76-6283,Mechanic,10105.995,552.16625,8,8,16.88954781,7,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Auto Loan, and Credit-Builder Loan",19.11554263,,3.46,12,Bad,2056.61,26.54460622,7 Years and 10 Months,Yes,1367.463512,,Low_spent_Small_value_payments,237.4187846,0,-0.6229,1.0388,0.6613,-0.4893,-0.3753 +0x7849,CUS_0xba60,August,42,030-58-1207,Teacher,17455.005,,1,3,4,2,"Debt Consolidation Loan, and Student Loan",,3.56784482,11.04,1,_,595.546932,32.8102938,15 Years and 11 Months,No,24.61353407,37.70032791,High_spent_Medium_value_payments,352.844513,0,-0.1135,-0.3139,-0.4104,-0.5717,-1.4249 +0x7855,CUS_0x8ae5,August,37,396-24-8172,Entrepreneur,34884.34,,8,4,30,4,"Student Loan, Student Loan, Mortgage Loan, and Payday Loan",,14,7.52,10,Standard,2162.63,37.84987899,,Yes,67.03698429,82.44032756,High_spent_Medium_value_payments,363.8255215,0,0.5514,1.7867,0.6634,-0.238,-0.1281 +0x7861,CUS_0x44e8,August,35,113-89-3532,Manager,8304.89,,3,4,20,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,20,13.27,7,Standard,1383.25,26.93329538,20 Years and 3 Months,Yes,19.5246677,41.8084622,Low_spent_Small_value_payments,309.7742868,0,-1.303,0.5415,0.022,0.1619,-0.4235 +0x786d,CUS_0xdbf,August,80,686-42-0469,Developer,102628.28,,5,3,9.288361749,0,Not Specified,16.39754743,14,11.47,5,_,91.11384045,41.80551481,26 Years and 6 Months,Yes,76.90893809,567.9116439,High_spent_Large_value_payments,857.9145087,0,1.1927,-0.5095,-0.2597,-1.6427,1.2677 +0x7879,CUS_0x44b0,August,44,161-84-5662,Journalist,36823.24,,6,7,17,4,"Student Loan, Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",,18,14.2,4,Standard,772.35,37.32368905,19 Years and 4 Months,Yes,109.074896,70.09068592,High_spent_Medium_value_payments,368.5947514,0,-1.4982,1.8648,1.7178,0.1327,-0.3422 +0x7885,CUS_0x5a26,August,20,460-90-9091,Musician,10356.98,722.0816667,6,10,28.88954781,8,"Payday Loan, Auto Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Not Specified",,20,26.06,16,Bad,3716.71,33.98136152,10 Years and 11 Months,Yes,1389.940269,,Low_spent_Small_value_payments,246.8715862,0,-0.4692,-0.373,1.3622,0.607,-0.0874 +0x7891,CUS_0x1c1c,August,45,702-44-7038,Writer,107626.59,9095.8825,3,5,11,3,"Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",20.91570258,14,11.1,8,Standard,914.63,28.90267359,18 Years and 11 Months,Yes,163.8027943,10000,High_spent_Large_value_payments,791.6333165,0,2.4094,-2.1818,-1.4316,-0.6388,0.7328 +0x789d,CUS_0xbcda,August,37,297-59-7628,Doctor,68096.88,5757.74,5,5,17,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",15.14971395,13,7.86,2,Standard,655.37,28.30055096,,No,166.6482066,233.3183869,Low_spent_Large_value_payments,445.8074065,0,-0.6325,0.0694,0.6157,-1.2004,0.4538 +0x78a9,CUS_0xe84,August,21,043-91-6538,Engineer,18521.71,1613.056385,10,7,19,9,"Payday Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Mortgage Loan",,22,9.07,9,_,3397.76,40.03618248,1 Years and 6 Months,Yes,58181,,High_spent_Large_value_payments,297.9802377,0,-0.2782,0.6049,0.6064,-0.3121,0.1193 +0x78b5,CUS_0x6a66,August,39,116-73-1838,Manager,10640.355,,6,3,13,2,"Credit-Builder Loan, and Credit-Builder Loan",22.37614137,18,9.62,7,_,76.19,39.80736781,24 Years and 0 Months,Yes,17.31503008,33.75597916,High_spent_Medium_value_payments,310.4986158,0,-0.0929,-1.3642,0.5491,-0.9076,1.4435 +0x78c1,CUS_0x53bc,August,50,267-52-0601,Teacher,160454.04,,3,7,2,2,"Not Specified, and Payday Loan",0,1,3.63,2,_,773.94,37.52454095,26 Years and 2 Months,NM,168.7194994,197.747576,High_spent_Large_value_payments,1236.249925,0,-0.1636,0.6026,0.3658,-2.2728,-0.0943 +0x78cd,CUS_0xac7b,August,46,651-72-0851,Developer,27288.85,,5,3,5,4,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",6.882009238,8,19.85,6,Standard,1354.13,40.9740064,19 Years and 8 Months,Yes,65.72813668,82.63918422,Low_spent_Medium_value_payments,384.0397624,0,-2.4064,-1.3129,0.5164,-1.143,-0.1699 +0x78d9,CUS_0x3e8c,August,48,295-13-5026,Journalist,35730.44,,5,6,3,4,"Auto Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",15.86814857,13,1.65,4,Good,1185.95,29.73132139,22 Years and 0 Months,NM,74.46925594,211.6201977,Low_spent_Large_value_payments,277.3642131,0,0.842,0.444,-0.5496,-2.239,-1.4487 +0x78e5,CUS_0x75ca,August,19,791-94-5827,Teacher,9045.11,981.7591667,10,10,34,4,"Debt Consolidation Loan, Student Loan, Mortgage Loan, and Student Loan",26.54280933,19,6.91,10,Bad,2575.87,33.9620978,18 Years and 5 Months,Yes,24.81605232,37.50071894,Low_spent_Large_value_payments,305.8591454,0,-0.6838,0.536,-0.3602,0.5938,0.3061 +0x78f1,CUS_0xb4ab,August,54,801-96-0784,Scientist,101910.75,,1,4,0.288361749,2,"Not Specified, and Credit-Builder Loan",,,8.62,7,Good,564.7250521,39.38082332,26 Years and 6 Months,No,86.63599558,,High_spent_Large_value_payments,881.7246879,0,0.0683,0.1126,0.728,-0.1192,-0.2171 +0x78fd,CUS_0x4d50,August,80,282-83-1022,Scientist,145931.88,12017.99,4,3,8,4,"Not Specified, Credit-Builder Loan, Student Loan, and Mortgage Loan",10.62006834,10,10.54,1,Good,1178.913356,27.33399788,27 Years and 3 Months,No,314.4820936,640.86018,Low_spent_Medium_value_payments,604.0136976,0,3.7982,-0.4984,1.6673,0.0329,-0.342 +0x7909,CUS_0x7dd7,August,43,177-67-8669,Entrepreneur,19853.95,,10,5,21.06745738,7,"Auto Loan, Auto Loan, Payday Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,26.66079482,4.2,17,_,2250.094551,29.12525789,13 Years and 6 Months,Yes,63.48402233,71.02076246,High_spent_Medium_value_payments,283.2245106,0,0.5859,0.4974,0.4896,1.2042,-1.8252 +0x7915,CUS_0x99c6,August,32,553-29-9085,Mechanic,43978.14,3663.845,6,7,9,2,"Credit-Builder Loan, and Auto Loan",,16,7.07,1,Standard,1102.66,34.21169868,17 Years and 9 Months,Yes,68.78510048,,Low_spent_Large_value_payments,474.4357285,0,1.521,-0.7835,-2.1159,1.0086,-0.4633 +0x7921,CUS_0x57f5,August,56,314-89-8569,Journalist,95774.36,,6,3,5,3,"Auto Loan, Personal Loan, and Home Equity Loan",14.50153739,12,10.3,3,Standard,704.92,27.41441534,30 Years and 10 Months,Yes,173.3232082,271.0767526,Low_spent_Medium_value_payments,661.9197059,0,0.6065,0.1172,-0.1023,0.7748,1.5204 +0x792d,CUS_0xa6f9,August,29,979-88-6619,Scientist,46722.72,3781.56,9,9,18,9,"Not Specified, Payday Loan, Student Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",31.41996205,22,2.13,16,Bad,4764.13,37.05317666,,Yes,284.6597508,328.3376305,Low_spent_Medium_value_payments,45.15861873,0,0.3099,1.1834,1.7543,0.5852,1.6351 +0x7939,CUS_0x7871,August,43,527-03-8325,Developer,38331.37,,3,5,1,4,"Payday Loan, Mortgage Loan, Payday Loan, and Not Specified",0,2,5.89,3,Good,1333.411544,30.38071577,18 Years and 11 Months,No,70.81331347,67.75484907,High_spent_Medium_value_payments,417.3735381,0,0.2714,-0.7717,0.1222,0.0918,-0.7467 +0x7945,CUS_0x7f0a,August,25,924-98-2206,Architect,9730.25,975.8541667,844,9,17.88954781,100,"Student Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",24.16794613,17,2.18,16,Bad,2464.02,37.93495912,7 Years and 4 Months,NM,1351.027291,131.4915365,Low_spent_Small_value_payments,210.7365074,0,-0.9602,1.0616,0.5266,-0.1406,0.4375 +0x7951,CUS_0x4734,August,21,839-25-8518,Manager,42240.87,3296.0725,9,8,22,5,"Payday Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",,24,19.62,10,_,3483.9,40.28200461,14 Years and 0 Months,Yes,95.74849409,23.54920102,High_spent_Large_value_payments,450.3095549,0,2.1399,-0.8939,0.133,-0.638,0.2342 +0x795d,CUS_0x37e1,August,46,242-28-3294,Accountant,19660.58,,3,2,12,0,,9.908796097,9,4.32,3,Good,831.6452388,26.05667369,28 Years and 4 Months,No,0,107.6690782,Low_spent_Small_value_payments,338.430069,0,-1.0708,1.1821,0.4501,-0.7167,1.6758 +0x7969,CUS_0xb586,August,56,437-59-9821,Engineer,27175.69,,8,3,17,1,Debt Consolidation Loan,16.36083036,13,4.47,7,Standard,1010.89,30.24552558,28 Years and 0 Months,Yes,14.74214814,165.8665794,Low_spent_Small_value_payments,333.0553558,0,0.1636,0.945,0.4484,1.5839,-0.7771 +0x7975,CUS_0x8a74,August,51,023-79-4833,Media_Manager,106695.48,,3,5,5,2,"Mortgage Loan, and Mortgage Loan",,13,4.18,3,_,631.0481068,34.58086868,31 Years and 11 Months,No,1130.725175,725.7311329,Low_spent_Small_value_payments,411.2756521,0,1.4191,-0.9859,-0.451,-1.3297,1.5055 +0x7981,CUS_0x8e28,August,50,163-41-4240,Mechanic,75520.47,6410.3725,4,7,13,4,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",14.79946088,12,7.3,4,Standard,1447.18,29.07383423,22 Years and 6 Months,Yes,167.7914685,,Low_spent_Large_value_payments,486.1021393,0,-0.8275,-1.3376,0.1205,0.5048,-0.1134 +0x798d,CUS_0x913a,August,53,941-51-2438,_______,12141519,5030.591667,2,1,4,4,"Home Equity Loan, Not Specified, Not Specified, and Home Equity Loan",17.17507984,,8.22,0,Good,372.4573712,37.52729227,30 Years and 2 Months,No,190.4408282,,High_spent_Medium_value_payments,375.398548,0,-0.7925,-1.1633,-1.7779,0.4027,-1.5426 +0x7999,CUS_0x44f4,August,52,773-02-8961,Media_Manager,95421,7823.75,2,4,6,0,,0,4,1.36,2,Good,363.9744963,27.4468355,17 Years and 11 Months,No,0,,Low_spent_Medium_value_payments,669.9453854,0,-1.6145,-0.7544,0.6308,-0.7235,0.3512 +0x79a5,CUS_0x531b,August,42,529-43-1473,Musician,28408.97,,1,5,4,4,"Payday Loan, Auto Loan, Home Equity Loan, and Auto Loan",0,3,7.23,3,_,487.0103311,37.57616224,19 Years and 8 Months,No,144.7150939,,High_spent_Large_value_payments,343.6062656,0,-2.3635,0.8269,-0.6864,-1.6907,0.9239 +0x79b1,CUS_0x6dd7,August,34,142-40-1977,Accountant,60738.48,5336.54,8,734,20,5,"Personal Loan, Personal Loan, Not Specified, Home Equity Loan, and Payday Loan",,30.67821583,3.6,15,Bad,2622.354904,37.86762225,13 Years and 11 Months,Yes,180.9257205,475.2631567,Low_spent_Large_value_payments,147.4651227,0,-0.9253,-0.041,-0.7447,0.3278,-0.1264 +0x79bd,CUS_0x145a,August,29,648-17-9617,Lawyer,41587.37,3704.614167,5,4,3,2,"Not Specified, and Mortgage Loan",,7,2.27,4,Good,1199.474952,26.19892582,16 Years and 6 Months,No,68.53991441,51.71532989,High_spent_Medium_value_payments,506.1230455,0,-0.537,0.2913,0.5487,-0.5336,1.0753 +0x79c9,CUS_0x9f7a,August,61,692-62-0934,Writer,178793.92,14642.49333,1,1,11,0,,,6,7.72,7,Good,880.3384662,32.04985523,21 Years and 11 Months,No,0,1517.04928,Low_spent_Medium_value_payments,396.8678676,0,1.1581,-0.9938,0.3238,0.82,0.5615 +0x79d5,CUS_0x3c69,August,42,696-39-5159,Lawyer,17004.68,1572.056667,6,8,22.95700519,7,"Home Equity Loan, Personal Loan, Payday Loan, Payday Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",19.51950565,13,11.51,12,_,2495.480954,35.00919362,,Yes,1378.548166,149.3030989,Low_spent_Small_value_payments,198.3040324,0,2.1984,-1.4363,-1.3812,-0.3825,-0.5929 +0x79e1,CUS_0x3663,August,23,904-44-3397,Manager,31856.05,,3,1,5,3,"Not Specified, Personal Loan, and Not Specified",0.280418248,3,3.21,7,Good,1178.38,33.61890861,30 Years and 6 Months,No,66.8865545,,Low_spent_Large_value_payments,269.7160101,0,2.0346,1.4976,-0.2736,0.1241,0.3168 +0x79ed,CUS_0xa21c,August,46,350-85-7603,Mechanic,8068.86,774.405,9,10,33.06745738,5,"Not Specified, Not Specified, Home Equity Loan, Student Loan, and Payday Loan",27.38649747,16.92416878,4.43,11,Bad,4658.4321,34.08130036,6 Years and 9 Months,Yes,19.24465375,14.99614886,High_spent_Large_value_payments,256.4794094,0,0.4654,-0.1911,0.7595,0.1048,-0.2176 +0x79f9,CUS_0xac3b,August,21,024-80-3350,Mechanic,35249.28,2667.44,0,4,2,4,"Auto Loan, Personal Loan, Debt Consolidation Loan, and Auto Loan",4.444954751,7,1.55,2,_,1033.32,32.07300134,27 Years and 5 Months,NM,114.3131461,107.3250981,High_spent_Medium_value_payments,295.1057557,0,1.2424,-0.2899,0.1557,0.5365,0.4748 +0x7a05,CUS_0x34d2,August,35,179-82-0650,Mechanic,24095.19,,7,6,16,3,"Student Loan, Payday Loan, and Debt Consolidation Loan",16.28722024,13,9.18,4,Standard,1110.022962,29.2900799,18 Years and 10 Months,Yes,223.136783,24.6371068,High_spent_Large_value_payments,363.5889842,0,0.3523,-1.5934,0.4114,-0.5007,0.3242 +0x7a11,CUS_0xbb55,August,25,121-13-0061,Mechanic,53579.55,4639.9625,10,7,22,2,"Debt Consolidation Loan, and Personal Loan",,24.04074635,19.95,15,Standard,2666.89623,31.02360735,7 Years and 11 Months,Yes,74.48357848,,Low_spent_Small_value_payments,229.8713408,0,0.0153,-0.2238,-1.7673,-1.1979,0.3599 +0x7a1d,CUS_0x53f4,August,43,372-20-9785,Mechanic,15647,1044.916667,10,5,18.06745738,6,"Credit-Builder Loan, Student Loan, Personal Loan, Auto Loan, Home Equity Loan, and Payday Loan",43.16461685,25,28.89,13,Bad,5196.540954,23.67338356,10 Years and 6 Months,Yes,56.71688158,,High_spent_Small_value_payments,233.7534305,0,0.4224,0.2263,1.0782,-0.0905,-0.547 +0x7a29,CUS_0x9b03,August,32,725-10-2639,Media_Manager,122847.88,10266.32333,3,77,10,3,"Student Loan, Personal Loan, and Home Equity Loan",18.82621665,10.37143787,10.2,5,Good,945.8336051,36.96660414,25 Years and 5 Months,No,297.9939506,195.4579274,High_spent_Medium_value_payments,783.1804554,0,1.0666,1.2594,-1.731,0.2735,-0.5116 +0x7a35,CUS_0xabed,August,32,339-32-0541,Lawyer,15513.3,,5,6,9,7,"Home Equity Loan, Mortgage Loan, Not Specified, Student Loan, Student Loan, Home Equity Loan, and Not Specified",11.61983003,12,19.96,7,_,1976.34,27.45354699,15 Years and 0 Months,Yes,73.77635207,51.52079779,Low_spent_Medium_value_payments,309.2803501,0,1.1565,0.3619,-1.1487,0.0692,-1.8859 +0x7a41,CUS_0x6a86,August,22,351-07-6021,Doctor,19632.01,1853.000833,7,5,3,4,"Payday Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,8,6.4,160,Good,818.1298479,26.74986539,29 Years and 4 Months,No,49.46928717,110.6096122,Low_spent_Large_value_payments,309.6584577,0,-0.971,0.8333,-0.5479,1.4606,1.2035 +0x7a4d,CUS_0xa6df,August,18,279-62-0890,Manager,75888.64,6089.731592,3,6,11,6,"Auto Loan, Student Loan, Personal Loan, Payday Loan, Payday Loan, and Home Equity Loan",16.26179618,13,15.44,7,Standard,988.7372086,31.21195247,8 Years and 9 Months,Yes,25678,143.0708679,High_spent_Large_value_payments,487.9527905,0,-0.1942,1.2948,1.5521,1.4499,0.9426 +0x7a59,CUS_0xa97a,August,50,836-34-5737,Journalist,111674.25,9212.1875,2,6,1,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Personal Loan",3.899658146,1.131031658,10.24,8,Good,154.2140371,29.53532669,,No,233.8175112,74.77068836,High_spent_Large_value_payments,852.6305504,0,-0.1729,2.1296,-0.7885,-0.671,-0.1691 +0x7a65,CUS_0xb1c2,August,45,023-36-9291,Scientist,106871.4,9127.95,0,3,3,0,,,5.635955009,5.19,1244,Good,279.0886623,26.53690612,33 Years and 5 Months,No,0,204.1065467,High_spent_Large_value_payments,948.6884533,0,1.2492,0.1404,1.2426,-0.6128,-0.7749 +0x7a71,CUS_0x9bb1,August,50,336-60-7082,Entrepreneur,15749.97,1474.4975,0,3,2,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",2.559393913,6,2.34,2,Good,696.8225695,31.90486073,28 Years and 9 Months,No,36.18458872,97.39909392,High_spent_Small_value_payments,285.5822627,0,1.6234,-1.9378,0.8072,-0.8611,0.1048 +0x7a7d,CUS_0xd6a,August,33,997-71-2344,Scientist,99668.76,,7,4,20,6,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Not Specified",24.0363032,17,4.1,,_,100.2345627,28.04372381,18 Years and 0 Months,NM,292.2634821,799.8573582,Low_spent_Medium_value_payments,158.8934074,0,-0.8563,-1.6279,0.7611,-1.225,-0.0725 +0x7a89,CUS_0x563d,August,39,269-05-1234,Journalist,20992.38,,5,9,26.06745738,2,"Credit-Builder Loan, and Not Specified",26.28934577,17.07688623,9.52,11,Standard,1785.648009,39.95231845,10 Years and 10 Months,Yes,25.4335699,74.20136175,Low_spent_Medium_value_payments,315.7812804,0,1.2309,0.9226,0.44,-0.6347,-0.4036 +0x7a95,CUS_0x4d68,August,49,558-98-5170,Media_Manager,60725.28,,3,3,19,1,Personal Loan,15.31068317,12,11.74,8,Standard,977.18,40.39675002,19 Years and 4 Months,Yes,37.94909505,296.5101898,Low_spent_Large_value_payments,427.5847151,0,-0.7335,-0.2339,1.3383,-0.9468,2.564 +0x7aa1,CUS_0xbc29,August,49,903-64-4248,Lawyer,31802.4,,3,5,14,3,"Payday Loan, Payday Loan, and Home Equity Loan",11.79749862,11.91221319,6.17,3,Standard,1505.487693,29.24997285,26 Years and 5 Months,No,49.8175981,65.63042275,!@9#%8,415.3719792,0,1.8374,-0.9481,1.3106,0.0404,0.3472 +0x7aad,CUS_0x7db5,August,44,772-78-1010,Musician,37464.04,3002.003333,8,7,34.06745738,2,"Personal Loan, and Auto Loan",32.82611785,17,,11,Bad,2531.240954,24.86187052,,Yes,43.19302767,70.53376368,High_spent_Small_value_payments,419.753254,0,-0.8468,2.0502,-1.4118,-0.7188,-2.0023 +0x7ab9,CUS_0xc59f,August,18,288-64-1513,Engineer,25631.48,,3,4,12,3,"Not Specified, Personal Loan, and Home Equity Loan",21.41989653,16,8.74,12,_,203.18,37.01380035,,Yes,55.67499968,54.52744762,High_spent_Small_value_payments,355.6932194,0,-2.0592,-0.126,0.3206,0.6744,0.6739 +0x7ac5,CUS_0x4375,August,53,606-13-1030,_______,43594.55,3778.879167,1,3,2,2,"Debt Consolidation Loan, and Home Equity Loan",0,2,1.62,2,Good,1231.5,26.94438906,28 Years and 4 Months,No,51.23168952,110.47072,High_spent_Small_value_payments,476.1855071,0,-0.3163,0.7442,0.6883,-0.2607,-0.2208 +0x7ad1,CUS_0x73f1,August,26,406-87-6497,Mechanic,131282.91,10873.2425,4,3,1,4,"Credit-Builder Loan, Personal Loan, Auto Loan, and Mortgage Loan",11.52565104,12,,7,_,929.64,30.93032215,22 Years and 11 Months,No,262.8759417,1393.686271,Low_spent_Small_value_payments,,0,1.4124,1.0055,0.2749,-2.1584,-0.9177 +0x7add,CUS_0x97d5,August,21,401-45-8386,Engineer,18736.83,,10,6,26.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",30.08603605,18,26.37,12,Bad,4178.200056,38.72169615,0 Years and 10 Months,NM,92.65003808,11459.7159,High_spent_Medium_value_payments,258.0325578,0,0.6988,-0.0893,-0.119,1.0128,1.359 +0x7ae9,CUS_0x38e3,August,35,289-42-3489,_______,61654.32,5176.86,4,3,12,1,Not Specified,22.05826107,17,7.01,5,Standard,340.42,27.00374576,16 Years and 0 Months,Yes,30.03102777,89.8822607,High_spent_Large_value_payments,637.7727115,0,1.3269,-0.651,0.528,1.5676,-0.3992 +0x7af5,CUS_0x8046,August,80,245-07-8526,Teacher,17572.15,,3,5,18,4,"Not Specified, Credit-Builder Loan, Student Loan, and Student Loan",13.83710129,10,15.71,4,Standard,116.02,27.20401147,17 Years and 8 Months,Yes,37.22258622,184.6250233,Low_spent_Small_value_payments,225.6869739,0,2.6283,0.1114,-1.0101,0.5644,-0.7943 +0x7b01,CUS_0x5b7c,August,51,447-29-0008,_______,14179.49,,5,2,5,3,"Student Loan, Auto Loan, and Personal Loan",0.142549061,2,3.62,1,Good,1362.09,35.82387489,31 Years and 0 Months,No,21.89895396,45.46936584,Low_spent_Small_value_payments,350.2940969,0,0.2813,-0.9684,0.5739,2.2253,0.1544 +0x7b0d,CUS_0x2d82,August,40,358-29-0203,Doctor,26411.81,,5,6,6,4,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",24.29857576,16,11.78,6,Good,1223.3,26.4541894,29 Years and 4 Months,No,140.6105749,,High_spent_Small_value_payments,348.7593106,0,0.9163,-0.0492,-0.7514,0.7506,-0.6982 +0x7b19,CUS_0x403a,August,29,#F%$D@*&8,Media_Manager,45412.95,,8,6,30,6,"Auto Loan, Personal Loan, Payday Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",25.27151429,17,23.07,10,Bad,4601.39,33.74618992,5 Years and 2 Months,Yes,113.6915522,87.30558775,High_spent_Large_value_payments,391.0441101,0,0.9935,-1.4316,-0.8128,0.1272,0.9872 +0x7b25,CUS_0xc15d,August,44,#F%$D@*&8,_______,37681.01,,5,5,11,0,,21.1530108,,8.08,3,Good,189.78,31.52207182,15 Years and 8 Months,No,0,72.02463134,High_spent_Medium_value_payments,494.3837853,0,-0.8794,0.5231,-0.6417,0.1651,-1.2702 +0x7b31,CUS_0x2d62,August,28,377-32-6573,Doctor,10024.25,812.6367937,9,5,23.06745738,8,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Not Specified, Personal Loan, Not Specified, Payday Loan, and Mortgage Loan",90,2323,19.82,14,Bad,3261.450954,27.59917534,8 Years and 2 Months,NM,108.5460829,93.22417229,Low_spent_Small_value_payments,194.1622466,0,-0.0275,0.501,-0.2395,0.8343,-0.247 +0x7b3d,CUS_0x6c89,August,23,634-91-8207,Mechanic,23001.71,1901.809167,5,6,12,3,"Debt Consolidation Loan, Home Equity Loan, and Personal Loan",,16,0.83,4,_,1091.42,34.06776901,30 Years and 6 Months,Yes,47.40727166,48.95746113,High_spent_Medium_value_payments,343.8161839,0,-0.7065,-0.0471,0.3143,-0.3491,-0.1309 +0x7b49,CUS_0x8399,August,22,528-82-8771,Doctor,71903.26,,8,4,13,100,"Student Loan, Personal Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",20.03398511,13,2.38,10,Standard,541.54,39.10199409,16 Years and 5 Months,Yes,166.4560556,218.2558369,High_spent_Medium_value_payments,439.2819409,0,-0.795,1.3465,-0.742,0.9123,-1.4951 +0x7b55,CUS_0x812c,August,36,631-45-4165,_______,65644.4,5275.366667,10,9,32,6,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",27.90706419,18,25.61,10,_,3057.46,34.71516363,9 Years and 4 Months,Yes,279.6848167,96.24463353,High_spent_Large_value_payments,391.6072164,0,0.7581,-1.0938,-0.4383,-0.5491,0.5272 +0x7b61,CUS_0x5f4f,August,31,404-96-0470,Architect,9265.495,,10,9,25.06745738,9,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Personal Loan",32.54843894,18.05844774,24.66,8,Bad,4933.287992,31.59964057,11 Years and 4 Months,Yes,55.49646553,,Low_spent_Small_value_payments,200.6665514,0,-0.1328,0.6848,-0.8537,-0.2076,0.7269 +0x7b6d,CUS_0x1233,August,51,816-01-8282,Entrepreneur,42112.56,,5,6,9,4,"Not Specified, Auto Loan, Personal Loan, and Auto Loan",0,3,,4,Good,1052.71,25.03652442,16 Years and 10 Months,No,132.1935422,218.9142599,Low_spent_Small_value_payments,290.0301979,0,-1.2075,0.1066,-0.676,-0.4184,-0.2256 +0x7b79,CUS_0x6ee,August,37,352-67-8040,Doctor,14619.875,,4,5,6,3,"Credit-Builder Loan, Payday Loan, and Payday Loan",19.38716931,12.55242231,5.38,4,Good,119.940682,29.70399826,21 Years and 5 Months,No,18.81136373,37.34838376,Low_spent_Small_value_payments,339.6725442,0,-0.7164,-1.1546,-1.3084,1.0392,-0.6159 +0x7b85,CUS_0x5905,August,18,862-28-4220,Writer,36597.55,2988.795833,3,4,11,100,,18.35211371,14,16.86,7,Standard,983.51,23.53095586,31 Years and 10 Months,Yes,0,122.7598011,High_spent_Small_value_payments,436.1197822,0,1.5015,0.0557,1.5735,-0.2247,-0.0382 +0x7b91,CUS_0x9c2,August,18,434-76-9598,Writer,38721.76,3104.813333,10,6,24.06745738,2,"Home Equity Loan, and Home Equity Loan",,24.18930535,7.26,11,Bad,2929.238286,39.94619657,18 Years and 5 Months,Yes,41.16430259,160.7338894,High_spent_Small_value_payments,341.8628534,0,-0.1174,-1.455,-0.9157,-1.0021,1.8488 +0x7b9d,CUS_0x7aec,August,27,550-76-4588,Writer,104722.71,8974.8925,3,4,19,5,"Mortgage Loan, Not Specified, Credit-Builder Loan, Not Specified, and Auto Loan",18.06333933,12,16.51,10,_,1262.11,33.25666132,12 Years and 8 Months,Yes,227.2823046,599.5792203,Low_spent_Large_value_payments,340.6277251,0,-1.0895,-0.3946,3.1286,-0.34,-1.3855 +0x7ba9,CUS_0x2477,August,27,931-19-6828,_______,45404.4,,10,8,23.95700519,7,"Personal Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, and Auto Loan",45.81302917,24.14031662,17.83,11,Standard,2829.923658,29.7657694,15 Years and 10 Months,Yes,1518.723732,,Low_spent_Small_value_payments,221.0619234,0,0.6018,0.5134,0.3972,-0.3451,-0.9812 +0x7bb5,CUS_0x8ad9,August,38,691-51-3532,Entrepreneur,49570.5,4335.875,6,8,24,4,"Credit-Builder Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",,25.04585474,4.86,8,Bad,1842.519507,32.4178323,11 Years and 6 Months,Yes,130.6349191,157.9615085,Low_spent_Small_value_payments,434.9910725,0,-1.3705,-0.876,-0.6402,0.6426,-1.3151 +0x7bc1,CUS_0x6fd5,August,42,741-35-9886,Musician,14096.44,,9,7,29.06745738,8,"Mortgage Loan, Not Specified, Mortgage Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",26.77582839,18.02388368,1.27,12,Bad,1826.782323,29.69140793,17 Years and 6 Months,Yes,166.6514308,63.24284564,Low_spent_Small_value_payments,232.0995084,0,0.0441,1.59,-3.5149,-1.2092,-0.4498 +0x7bcd,CUS_0x1577,August,23,812-17-6549,Mechanic,38060.7,3197.725,6,6,31,6,"Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Student Loan",38.84902279,25,25.12,12,Bad,3813.35,23.16131903,4 Years and 5 Months,Yes,172.4115227,,!@9#%8,188.0603987,0,1.2766,-0.532,1.0324,-0.4445,-0.2877 +0x7bd9,CUS_0x7dd1,August,47,929-08-8298,Developer,179825.36,14866.44667,5,6,1.288361749,4,"Auto Loan, Debt Consolidation Loan, Student Loan, and Payday Loan",2.807366286,5,17.03,0,Good,420.7336512,31.52781363,19 Years and 2 Months,No,561.9329933,1612.900845,Low_spent_Large_value_payments,141.2621753,0,0.2184,2.7913,1.0364,-0.0935,-0.8248 +0x7be5,CUS_0xa3b5,August,55,748-03-0674,Scientist,68588.28,,8,7,16.28836175,0,Payday Loan,6.830661379,9,2.61,3,Standard,347.58,29.51328625,,No,35.65185868,615.4294749,High_spent_Medium_value_payments,610.2251274,0,-0.0536,0.5991,0.59,-0.9132,0.3859 +0x7bf1,CUS_0xa1be,August,20,475-57-4358,Musician,8814.92,,10,7,23,8,"Auto Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Personal Loan, and Student Loan",44.00833222,32.1384691,0.53,12,Bad,2387.650045,37.91791876,,Yes,46.30316907,55.36933534,Low_spent_Medium_value_payments,279.4851623,0,0.8091,-0.9117,0.1625,0.2868,-0.1116 +0x7bfd,CUS_0x696,August,36,912-94-2116,Mechanic,89780.85,,4,5,11.28836175,4,"Home Equity Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",4.721714284,7,3.64,2,Good,467.6483897,28.27475805,24 Years and 4 Months,No,186.4684773,477.0025008,High_spent_Large_value_payments,768.5836885,0,-1.7315,-1.5435,-0.4339,-0.6346,-0.1402 +0x7c09,CUS_0x8973,August,35,187-06-6371,Musician,30472.5,,3,7,27,7,"Debt Consolidation Loan, Auto Loan, Not Specified, Payday Loan, Auto Loan, Home Equity Loan, and Personal Loan",23.32009334,16.21998074,14.87,,Standard,2094.74656,37.91767383,14 Years and 5 Months,Yes,128.7851854,70.34772967,High_spent_Small_value_payments,287.9045849,0,-1.0017,0.4279,1.1975,-0.0541,-2.4387 +0x7c15,CUS_0xa3ec,August,26,634-51-4615,Lawyer,32772.29,2485.024167,7,7,10,0,,29.35589846,19,9.11,1,_,1012.37,30.80679242,30 Years and 2 Months,Yes,0,125.8971408,High_spent_Small_value_payments,382.6052759,0,1.0914,1.2212,-0.6092,1.7207,-0.3533 +0x7c21,CUS_0xabc9,August,35,691-56-6885,Accountant,28415.93,,2,2,12,2,"Personal Loan, and Payday Loan",,10,-3.6,1,Good,965.8873655,32.25222953,24 Years and 3 Months,No,35.469401,208.5412935,Low_spent_Medium_value_payments,279.4174324,0,1.0364,-1.6584,-0.486,-0.8419,1.2991 +0x7c2d,CUS_0xc501,August,27,022-51-0582,Lawyer,23454.09,,5,5,11,5,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",,14,17.99,8,_,846.41,38.29223963,12 Years and 4 Months,Yes,73.34809191,250.0121869,Low_spent_Small_value_payments,187.7904712,0,-0.2681,0.1058,1.304,0.3418,-1.1962 +0x7c39,CUS_0x626a,August,19,865-52-1613,Architect,31916.17,,4,3,20,4,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",23.97064664,19,2.73,0,Standard,90.18,33.86143983,16 Years and 11 Months,NM,97.66275546,10000,High_spent_Small_value_payments,259.2963804,0,2.197,0.7824,-0.8911,0.7713,0.5432 +0x7c45,CUS_0x9eba,August,24,085-29-8899,Teacher,58704.26,4940.021667,6,3,8,1,Not Specified,18.57560675,15,4.32,2,Standard,244.69,27.47628416,25 Years and 2 Months,Yes,38.32334645,,Low_spent_Medium_value_payments,371.0120863,0,-0.2291,-1.5008,-0.0035,-0.0694,1.7822 +0x7c51,CUS_0x7e2a,August,39,425-94-8273,Writer,18122.37,,3,4,7,6,"Not Specified, Mortgage Loan, Not Specified, Debt Consolidation Loan, Auto Loan, and Student Loan",20.36385163,17.84513537,15.33,7,Standard,2988.968876,22.83146524,16 Years and 2 Months,Yes,76.14258795,,Low_spent_Large_value_payments,251.8438525,0,0.1005,0.1924,1.2967,1.4879,-1.7861 +0x7c5d,CUS_0x4d75,August,42,125-45-2480,Manager,22089.68,,7,3,6,2,"Auto Loan, and Debt Consolidation Loan",27.70809914,18,3.95,4,Standard,346.64,33.74926135,24 Years and 10 Months,NM,35.73370991,138.9182385,Low_spent_Large_value_payments,272.0287182,0,0.3529,-0.2678,0.4808,0.2516,-0.6 +0x7c69,CUS_0xbde6,August,35,323-64-4752,Writer,10805206,2844.2875,7,6,13,5,"Home Equity Loan, Payday Loan, Not Specified, Personal Loan, and Mortgage Loan",18.98270064,14,16.78,6,_,1497.12,38.18995834,15 Years and 11 Months,Yes,135.1026903,98.17115097,High_spent_Small_value_payments,311.1549087,0,-0.2936,-0.0824,-0.0488,-0.6251,0.8082 +0x7c75,CUS_0x144f,August,19,035-27-0594,Engineer,74346.44,6134.536667,8,10,25.88954781,8,"Not Specified, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Student Loan, and Credit-Builder Loan",,20.33096121,6.52,15,_,2911.173287,30.2311158,10 Years and 4 Months,Yes,1626.956715,77.59476206,High_spent_Large_value_payments,454.5721079,0,0.5557,0.3033,0.6505,-0.606,0.6692 +0x7c81,CUS_0x7e12,August,29,717-56-5604,Engineer,169106.96,13943.24667,4,5,12,4,"Credit-Builder Loan, Not Specified, Student Loan, and Not Specified",6.033902522,6,11.52,4,Good,220.7769957,31.5579458,18 Years and 2 Months,No,283.5338841,,High_spent_Medium_value_payments,1120.564322,0,-0.8154,-1.2825,0.2422,0.4621,-0.2382 +0x7c8d,CUS_0x49fa,August,33,417-63-4822,Engineer,114261.68,9320.806667,3,7,1,1,Personal Loan,17.5112789,,0.95,5,_,295.25074,26.30708676,16 Years and 5 Months,No,51283,11373.60569,High_spent_Small_value_payments,706.4299563,0,0.4767,-0.0456,-0.0354,-1.4899,0.3785 +0x7c99,CUS_0x6e36,August,43,330-21-5845,Lawyer,75050.37,,7,7,11,4,"Student Loan, Not Specified, Personal Loan, and Student Loan",,16,10.58,9,Standard,509.49,25.06146237,17 Years and 5 Months,Yes,179.8968793,95.93532967,High_spent_Medium_value_payments,594.687541,0,-0.6185,0.1363,0.4844,-0.8975,-1.4197 +0x7ca5,CUS_0x3915,August,43,#F%$D@*&8,Architect,19570.56,,10,10,27.95700519,8,"Not Specified, Student Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",,25.76260746,0.69,9,Bad,3231.177699,28.62603813,14 Years and 0 Months,Yes,1411.193744,,Low_spent_Small_value_payments,215.8180715,0,-1.1277,-0.6151,-1.7114,-1.0072,0.3802 +0x7cb1,CUS_0x5ade,August,35,706-03-4308,Manager,28238.45,2167.204167,5,5,17,3,"Personal Loan, Personal Loan, and Credit-Builder Loan",26.6552135,17,19.82,5,_,4.61,33.83529056,,Yes,56.16091247,139.7872666,Low_spent_Medium_value_payments,300.7722376,0,-0.5717,0.2858,1.1424,0.5859,0.1602 +0x7cbd,CUS_0x3bf3,August,30,416-44-4780,Engineer,83576.26,6912.688333,3,129,8,2,"Student Loan, and Not Specified",2.342924304,4,4.97,0,Good,1192.96,31.97747565,23 Years and 3 Months,No,112.387082,284.7530039,Low_spent_Medium_value_payments,574.1287475,0,0.0268,-1.032,0.3108,-0.3604,0.4892 +0x7cc9,CUS_0x2eac,August,52,902-88-9590,Lawyer,107797.8,9109.15,7,3,20,4,"Auto Loan, Credit-Builder Loan, Not Specified, and Personal Loan",,14,-2.11,0,_,102.540398,39.14220659,33 Years and 3 Months,No,250.9522882,765.2905805,Low_spent_Large_value_payments,244.7028761,0,1.8063,-0.2949,-0.8671,-0.3555,1.2515 +0x7cd5,CUS_0x9857,August,31,534-32-1760,Mechanic,16014.16,,7,6,29,9,"Payday Loan, Auto Loan, Mortgage Loan, Student Loan, Not Specified, Student Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",41.0597071,28.60768509,9.47,9,Bad,1387.032717,27.1997802,9 Years and 8 Months,Yes,76.22321068,60.55834965,Low_spent_Small_value_payments,293.469773,0,-0.2891,1.2053,-0.379,2.2573,0.7859 +0x7ce1,CUS_0x868a,August,36,005-96-9911,Scientist,18214.24,1594.853333,5,7,20,3,"Home Equity Loan, Student Loan, and Not Specified",,16,4.91,2,_,1079.55,38.56899936,31 Years and 4 Months,NM,23.67297843,118.2636891,Low_spent_Small_value_payments,307.5486658,0,-0.8444,0.0215,-0.7,0.758,-0.3971 +0x7ced,CUS_0x1c99,August,26,118-02-3131,Engineer,33278.28,,7,3,11,4,"Auto Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",11.75440342,10.49281818,16.93,6,_,467.4788155,28.16188731,6 Years and 10 Months,Yes,75.95386612,282.1170574,Low_spent_Small_value_payments,194.1480765,0,0.3286,-1.7912,0.8315,-0.0706,1.8139 +0x7cf9,CUS_0x91fe,August,22,690-96-7017,Architect,28230.08,,8,5,19,2,"Mortgage Loan, and Personal Loan",20.78865098,18,16.49,1,_,1437.62,29.33813944,33 Years and 4 Months,NM,36.86468342,176.6889258,Low_spent_Medium_value_payments,316.5970574,0,0.7249,-1.2269,-0.4237,0.077,1.6435 +0x7d05,CUS_0x7833,August,22,796-39-9783,Manager,43311.84,,3,4,9,3,"Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",,8,2.78,1,Good,951.78,33.96898328,23 Years and 4 Months,No,73.54904407,97.6966388,High_spent_Medium_value_payments,466.6863171,0,0.5187,-1.0291,1.4446,-2.3093,0.6856 +0x7d11,CUS_0x17c7,August,53,302-01-7301,Engineer,16862.715,,8,859,10,2,"Debt Consolidation Loan, and Not Specified",26.01320776,18,17.13,5,Standard,574.86,30.48912275,26 Years and 4 Months,Yes,14.74034407,46.02102503,Low_spent_Medium_value_payments,379.5612559,0,-1.3866,-0.2085,0.32,-0.5607,-0.447 +0x7d1d,CUS_0x4434,August,31,949-12-7408,Scientist,7087.24,361.6033333,8,5,14,6,"Personal Loan, Home Equity Loan, Mortgage Loan, Student Loan, Student Loan, and Student Loan",,10,8.24,8,Standard,54.25,36.52654665,6 Years and 9 Months,Yes,22.30193994,40.03226642,Low_spent_Small_value_payments,263.826127,0,-0.7502,-1.6107,0.4568,0.5463,0.0803 +0x7d29,CUS_0x4a3b,August,23,589-89-6617,_______,7455.07,357.2558333,10,6,29.06745738,9,"Personal Loan, Home Equity Loan, Not Specified, Not Specified, Not Specified, Home Equity Loan, Mortgage Loan, Personal Loan, and Not Specified",36.21705524,22.09408568,23.73,7,_,5330.042965,27.9492723,3 Years and 10 Months,Yes,39.60788087,,High_spent_Small_value_payments,205.4762966,0,-0.1699,1.3122,-0.9433,-0.9267,-0.0034 +0x7d35,CUS_0x9214,August,42,361-27-9731,Accountant,20774.34,,6,6,25,3,"Personal Loan, Student Loan, and Student Loan",7.854149688,9.748319392,19.93,7,_,2047.102518,32.12356761,8 Years and 6 Months,Yes,37.08877865,96.5849268,Low_spent_Large_value_payments,306.5457946,0,-0.8564,-2.7805,0.7962,0.8554,0.8162 +0x7d41,CUS_0x4127,August,41,505-63-7384,Lawyer,128588.56,10707.71333,4,6,5.288361749,0,Home Equity Loan,,10.42874205,10.36,2,_,442.3725554,30.10496566,27 Years and 6 Months,Yes,80.37479028,862.4279006,High_spent_Medium_value_payments,797.9061034,0,0.6969,0.2125,-1.5559,0.8618,-0.4089 +0x7d4d,CUS_0x7ff3,August,45,300-00-5065,Developer,144456.16,12222.01333,4,3,6,5,"Home Equity Loan, Payday Loan, Not Specified, Mortgage Loan, and Payday Loan",27.88994443,19,13.62,8,Standard,1061.63,38.19209935,13 Years and 11 Months,Yes,481.0079648,,Low_spent_Large_value_payments,260.0477973,0,-0.7902,-0.1709,1.3703,1.4884,0.3333 +0x7d59,CUS_0x1207,August,34,365-76-1037,Developer,19506.73,,9,7,23.06745738,6,"Personal Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Student Loan, and Mortgage Loan",27.22350739,13.96874193,2.69,15,Bad,1979.307864,25.29796458,14 Years and 10 Months,Yes,59.13404169,,Low_spent_Small_value_payments,203.6139894,0,0.4553,-1.1191,-0.2988,-1.195,-0.7595 +0x7d65,CUS_0xba18,August,18,542-02-2519,Media_Manager,32196.04,,10,8,17,8,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Auto Loan, Student Loan, Auto Loan, and Home Equity Loan",30.0086299,19,6.6,8,Bad,1661.03,25.2492182,18 Years and 8 Months,Yes,164.2565162,,Low_spent_Large_value_payments,140.2138967,0,-0.461,-0.1901,0.3585,1.62,-0.5757 +0x7d71,CUS_0x976,August,41,958-13-3057,Lawyer,7901.055,797.42125,8,7,14,5,"Auto Loan, Auto Loan, Student Loan, Auto Loan, and Mortgage Loan",24.20199346,17,17.41,8,Standard,2154.6,28.42147074,13 Years and 3 Months,Yes,24.57329317,51.63067079,Low_spent_Small_value_payments,293.538161,0,-1.5435,-0.2691,0.9356,-0.2679,-1.0288 +0x7d7d,CUS_0xb46f,August,39,498-14-0072,_______,14930.95,,3,4,3,4,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",7.153298922,8,10.49,5,Good,1185.05232,33.46572952,17 Years and 2 Months,NM,25.21902009,,Low_spent_Medium_value_payments,253.7236538,0,0.3214,-1.0578,1.4343,0.7726,1.5957 +0x7d89,CUS_0x9c7f,August,43,207-33-7022,Musician,59501.97,4736.72843,1436,7,32,7,"Payday Loan, Mortgage Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",34.02982263,20,12.64,9,Standard,1279.86,33.48908055,11 Years and 6 Months,Yes,606.9464247,80.05029938,High_spent_Medium_value_payments,391.7220958,0,-0.5811,0.7853,-1.1865,0.952,-1.6756 +0x7d95,CUS_0x1ec4,August,32,715-13-3421,Lawyer,22853.37,1708.4475,6,3,12,100,Not Specified,,20,6.68,2,Standard,423.83,28.18482015,,Yes,12.31978455,28.02712796,High_spent_Medium_value_payments,380.4978375,0,-1.6213,-1.467,0.8229,0.4188,1.5621 +0x7da1,CUS_0x5715,August,37,771-76-3424,Lawyer,12714.98,,4,253,5,4,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",23.87516716,18,7.71,2,Standard,1154.56,31.89096486,22 Years and 5 Months,No,22.19752967,75.51186786,Low_spent_Small_value_payments,290.2487691,0,0.8532,-0.5475,1.1277,-0.86,2.2681 +0x7dad,CUS_0x1472,August,38,144-90-7708,Entrepreneur,15512.055,,3,4,13,5,"Personal Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",9.037711632,9,16.95,9,Standard,865.3,34.67920938,12 Years and 0 Months,Yes,48.13304478,182.1360313,Low_spent_Small_value_payments,202.8980489,0,0.7001,-0.5246,-0.6663,0.4979,0.3777 +0x7db9,CUS_0x906b,August,28,677-40-1433,Developer,23459.45,2121.954167,8,5,9,2,"Home Equity Loan, and Mortgage Loan",,11.92668811,3.56,5,Standard,286.3209412,24.98628731,25 Years and 3 Months,Yes,26.60782995,121.2540904,Low_spent_Small_value_payments,354.3334963,0,1.2676,0.363,1.7398,1.4428,-0.0171 +0x7dc5,CUS_0x1f2c,August,27,846-10-4542,Media_Manager,83722.16,7270.846667,3,3,0.288361749,2,"Not Specified, Home Equity Loan, and Not Specified",1.677031284,6,10.9,4,_,857.4051265,41.13356248,,No,157.9707494,588.6543865,High_spent_Large_value_payments,661.4960086,0,1.6857,-0.0869,-0.8216,-1.7637,0.1657 +0x7dd1,CUS_0x63e0,August,80,693-74-3562,Architect,42057.16,3348.763333,4,7,4,0,,,15.50759241,-1.82,5,Good,1664.710273,29.53710734,27 Years and 3 Months,No,26904,97.62183851,High_spent_Medium_value_payments,487.2544948,0,0.3491,0.5003,0.4658,1.7056,-0.9138 +0x7ddd,CUS_0x76c4,August,43,861-27-0906,Developer,17315.32,,8,8,21.06745738,2,"Payday Loan, and Student Loan",,8,,12,Standard,1951.930954,36.80581544,18 Years and 4 Months,Yes,23.80003882,88.64649663,Low_spent_Small_value_payments,302.8275099,0,0.3171,-1.4855,0.032,-0.1554,1.2151 +0x7de9,CUS_0x39c6,August,37,959-94-5192,_______,16833.355,1395.779583,7,3,5,2,"Payday Loan, and Not Specified",19.6953277,13,8.98,8,_,65.59,25.80874073,11 Years and 0 Months,Yes,19.78555752,156.2209717,Low_spent_Small_value_payments,253.5714292,0,0.2749,-0.1388,0.8294,-1.3841,1.3643 +0x7df5,CUS_0x6086,August,18,728-68-4575,Developer,41599.96,3240.663333,9,5,17.06745738,7,"Credit-Builder Loan, Payday Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Student Loan, and Auto Loan",38.08619763,21,21.66,6,Bad,3695.210954,30.2076231,1 Years and 5 Months,NM,237.9966166,137.1384317,Low_spent_Small_value_payments,212.2109971,0,0.3331,1.3756,0.4998,0.9246,2.3626 +0x7e01,CUS_0xc622,August,54,#F%$D@*&8,Engineer,114588.4,9338.033333,5,7,20,0,,21.93011939,17,13.21,5,Standard,941.85,31.75648981,33 Years and 5 Months,Yes,0,141.7403597,High_spent_Large_value_payments,1032.062974,0,0.0803,-0.7046,0.9262,0.5784,0.5257 +0x7e0d,CUS_0xeb6,August,24,495-96-8811,Developer,16472.87,,7,5,32,9,"Student Loan, Student Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,19.26104607,9.65,12,Bad,2340.418982,35.85750121,,Yes,69293,,Low_spent_Medium_value_payments,317.8272908,0,0.8605,0.7627,-1.0925,1.49,-0.0041 +0x7e19,CUS_0x4e0d,August,25,861-75-5653,Manager,18314.57,,6,7,19.06745738,2,"Payday Loan, and Not Specified",,10.92265349,9.57,11,Standard,1855.320327,32.00266331,13 Years and 8 Months,Yes,19.61210131,51.41090388,Low_spent_Small_value_payments,334.3781235,0,-0.0308,-0.4766,0.8091,-0.4516,0.9769 +0x7e25,CUS_0x16c4,August,18,365-26-7399,Mechanic,8473.795,,4,7,7,100,"Mortgage Loan, Personal Loan, and Not Specified",,14,12.78,10,Standard,1040.14,35.32789901,17 Years and 9 Months,Yes,16.79884713,25.57495899,!@9#%8,298.8411522,0,-2.3244,0.4838,-0.1631,-0.9677,-0.1351 +0x7e31,CUS_0x50ef,August,29,629-09-0735,Teacher,36794.54,3165.211667,7,4,9,0,,21.37820559,15,8.69,5,Standard,1117.63,38.13622549,8 Years and 10 Months,NM,0,40.65314199,High_spent_Large_value_payments,515.8680247,0,0.1357,-0.1248,-2.5702,-0.1716,0.5968 +0x7e3d,CUS_0xa366,August,51,232-50-6033,Doctor,68042.58,5728.215,4,7,7,0,,14.5704827,14.13647511,3.96,4,Standard,1299.661142,36.34264916,21 Years and 5 Months,NM,0,343.7452167,Low_spent_Small_value_payments,519.0762833,0,0.5368,0.6507,2.1278,0.0222,1.3707 +0x7e49,CUS_0x2e5f,August,40,067-86-9905,Musician,82668.24,6873.02,7,4,16,2,"Auto Loan, and Payday Loan",14.87434364,8.416075569,10.31,6,Standard,1822.319705,26.14944179,8 Years and 9 Months,Yes,113.1648417,10000,High_spent_Medium_value_payments,620.6762195,0,-0.9899,0.8527,0.9623,-0.9346,-1.4198 +0x7e55,CUS_0xae02,August,29,962-65-2926,Teacher,127052.04,,4,5,18,7,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",14.90327684,12,15.6,8,Standard,1339.15,32.67315786,16 Years and 3 Months,Yes,651.8947716,489.4512591,High_spent_Small_value_payments,155.4209694,0,1.02,-0.7902,0.0325,1.395,0.5464 +0x7e61,CUS_0xa99c,August,25,337-61-1276,Journalist,34742.74,2881.228333,6,4,20.06745738,3,"Not Specified, Debt Consolidation Loan, and Personal Loan",,12.45602216,16.19,9,Standard,3007.024649,35.84575059,10 Years and 4 Months,Yes,59.09737529,,Low_spent_Medium_value_payments,183.7149636,0,0.3719,-0.6376,0.7803,-1.6404,-0.2958 +0x7e6d,CUS_0x9177,August,40,860-92-3178,Musician,35971.51,,2,5,9,2,"Home Equity Loan, and Credit-Builder Loan",4.875221966,6,5.42,4,Good,1312.290388,31.05560471,30 Years and 10 Months,No,42.55376084,,!@9#%8,281.9783057,0,-1.3838,-0.8797,0.3266,0.0853,0.1689 +0x7e79,CUS_0x7eda,August,36,692-50-2240,Doctor,162053.08,13470.42333,1,7,10.28836175,0,Mortgage Loan,5.591093716,7,4.63,3,Good,1469.14,32.59866654,24 Years and 8 Months,No,96.07213048,10419.93746,Low_spent_Small_value_payments,122.6840912,0,-1.354,0.2795,-0.0589,-0.5099,-0.9924 +0x7e85,CUS_0x665a,August,39,274-38-8035,Engineer,33022.7,,6,6,19.06745738,2,"Student Loan, and Student Loan",35.41275448,24,7.26,7,_,2655.490954,30.73189811,6 Years and 11 Months,Yes,39.65054684,164.5833579,High_spent_Small_value_payments,331.134974,0,1.0375,0.8249,0.7909,1.2818,-0.629 +0x7e91,CUS_0x8766,August,23,682-79-9909,Manager,25622.61,,6,7,7,2,"Auto Loan, and Payday Loan",,,15.74,4,_,326.09,26.7009108,17 Years and 6 Months,NM,37.25286577,,High_spent_Medium_value_payments,398.4137799,0,-1.0575,1.7529,0.6185,-0.3875,-0.897 +0x7e9d,CUS_0xba13,August,18,206-40-8360,Architect,13032.705,,5,6,3,4,"Personal Loan, Student Loan, Payday Loan, and Student Loan",,19,2.11,0,Good,1497.16,28.09462259,25 Years and 11 Months,No,28.85989008,57.95288035,Low_spent_Small_value_payments,306.3931046,0,0.5345,-1.8889,-0.1113,-0.4584,0.748 +0x7ea9,CUS_0x356c,August,37,000-63-0442,Lawyer,67644.92,5465.076667,4,9,22.88954781,100,"Mortgage Loan, and Home Equity Loan",,21.6679723,14.03,11,_,1600.792287,28.46470481,8 Years and 9 Months,Yes,1426.268868,10000,High_spent_Medium_value_payments,585.6089581,0,-0.7135,1.3848,-2.1777,0.0347,-0.6973 +0x7eb5,CUS_0x54b2,August,24,225-34-3629,Scientist,16106.15,,8,3,10,3,"Not Specified, Auto Loan, and Home Equity Loan",,,7.52,5,_,109.59,36.95677912,19 Years and 9 Months,Yes,35.49095459,69.02434569,Low_spent_Large_value_payments,309.9026164,0,-1.1539,1.157,-0.2039,-1.4597,-0.3339 +0x7ec1,CUS_0x4534,August,37,551-95-2963,Media_Manager,20496.79,,3,3,6,2,"Credit-Builder Loan, and Debt Consolidation Loan",19.86973207,15,3.37,4,Standard,1165.77,25.55098959,25 Years and 2 Months,Yes,28.71256286,,High_spent_Medium_value_payments,343.0940911,0,0.2579,-0.5432,0.286,-0.5098,2.1694 +0x7ecd,CUS_0xac67,August,36,482-89-9000,Entrepreneur,19753.22,,6,6,26.06745738,8,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Student Loan, and Debt Consolidation Loan",38.02322893,20.87289664,,11,Bad,4808.35924,23.45429766,13 Years and 8 Months,Yes,111.0376358,177.2723248,Low_spent_Small_value_payments,126.9799182,0,0.5354,0.9104,2.3157,0.0315,-0.3999 +0x7ed9,CUS_0x7ab1,August,22,091-11-7082,Developer,23520.69,1746.0575,7,7,6,7,"Auto Loan, Student Loan, Mortgage Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",,10,8.21,6,Standard,1126.463802,40.41498532,10 Years and 4 Months,Yes,85.37459134,39.19566911,High_spent_Large_value_payments,295.5249326,0,-1.0464,1.043,-0.1251,0.1776,0.7094 +0x7ee5,CUS_0x52c8,August,42,691-39-2873,Architect,16896.19,,7,6,23,9,"Home Equity Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Personal Loan, and Auto Loan",,,4.1,9,_,1878.31,32.97598037,17 Years and 10 Months,Yes,36696,,Low_spent_Small_value_payments,229.1877495,0,-0.5945,0.0443,0.6101,-0.4748,-0.5009 +0x7ef1,CUS_0x7373,August,31,#F%$D@*&8,Accountant,44689.77,3741.1475,6,6,20,7,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",17.42166151,14.27703013,8.31,7,_,2511.714134,26.85888111,14 Years and 0 Months,Yes,202.0610805,502.8256545,Low_spent_Small_value_payments,,0,-1.7897,-0.088,-0.7975,1.3228,-0.6231 +0x7efd,CUS_0xa12e,August,39,131-41-2883,Media_Manager,17682.035,1343.502917,7,3,7,3,"Not Specified, Student Loan, and Home Equity Loan",20.368693,19,14.23,7,_,972.53,34.04497996,22 Years and 10 Months,NM,38.81691983,90.8171776,Low_spent_Small_value_payments,294.7161942,0,-1.4863,0.5955,0.2239,0.055,0.7056 +0x7f09,CUS_0x10aa,August,20,101-00-4424,Musician,114432.03,9272.0025,1,2,7,0,,7.921890844,9,7.98,4,Good,444.51,39.0147841,21 Years and 6 Months,No,0,101.6493026,High_spent_Large_value_payments,1065.550947,0,1.5031,-1.6489,0.2857,-0.5374,-1.4579 +0x7f15,CUS_0x6109,August,26,003-48-8065,Architect,19657.56,,4,3,15,2,"Student Loan, and Debt Consolidation Loan",19.16718423,13,8.74,5,Standard,1480.88,32.98198145,6 Years and 2 Months,Yes,21.24011733,32.31753318,High_spent_Large_value_payments,321.3553495,0,0.6094,1.9789,-0.9894,-0.089,0.531 +0x7f21,CUS_0xbb25,August,44,922-22-3171,Writer,31748.41,,7,6,14,0,,9.305587359,8,15.28,1,Standard,1134.85,36.37929733,32 Years and 2 Months,NM,163.1527128,,Low_spent_Large_value_payments,292.9561586,0,-1.424,-0.0044,0.5048,-0.926,-0.0258 +0x7f2d,CUS_0x8c7c,August,51,189-34-5628,Developer,19997.78,,5,5,20,2,"Not Specified, and Debt Consolidation Loan",20.17187343,13,4.87,2,Standard,427.06,27.15642608,,Yes,18.98379688,,Low_spent_Small_value_payments,340.8348783,0,0.8008,-0.2621,-0.3279,1.1041,-1.3066 +0x7f39,CUS_0x3475,August,27,271-20-5461,Musician,36783.38,3151.281667,10,5,17,7,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",29.36239378,22.3782754,23.35,12,Bad,5015.602151,22.81365003,2 Years and 0 Months,Yes,148.3581178,406.7804393,Low_spent_Small_value_payments,49.98960957,0,-0.2715,-1.1141,-0.6339,0.7979,-0.5785 +0x7f45,CUS_0x67de,August,23,451-00-6663,Journalist,32102.6,2958.216667,3,7,10,0,,19.12221784,15.66702738,11.36,5,Standard,1377.525423,27.25123644,19 Years and 2 Months,Yes,0,249.8338362,Low_spent_Small_value_payments,335.9878304,0,0.8909,0.2485,-0.8463,0.3584,-0.4644 +0x7f51,CUS_0x9647,August,37,954-95-9646,Lawyer,19667.89,,9,9,32,100,"Not Specified, Not Specified, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",22.66425445,17.02394749,12.91,6,Standard,1539.107324,32.48911706,18 Years and 3 Months,Yes,95.66654836,196.7455162,Low_spent_Small_value_payments,147.1870188,0,0.9154,1.6037,-0.5566,1.3129,-1.8051 +0x7f5d,CUS_0x8142,August,22,338-90-1524,Entrepreneur,31156.18,,7,4,15,5,"Not Specified, Not Specified, Auto Loan, Mortgage Loan, and Student Loan",11.38274636,12,19.65,7,Standard,159.08,25.20619093,18 Years and 11 Months,Yes,113.9011859,43.92786185,High_spent_Large_value_payments,329.0057856,0,-0.5909,0.8944,1.1925,0.2354,-0.4616 +0x7f69,CUS_0x1184,August,49,963-76-2464,Lawyer,19867.475,,3,5,11,3,"Student Loan, Mortgage Loan, and Payday Loan",8.231398551,9,6.74,4,Good,644.9765683,26.68978981,32 Years and 8 Months,No,42.60688196,,!@9#%8,313.5944657,0,-0.4006,-0.2931,-0.2642,-0.0376,0.8742 +0x7f75,CUS_0x6437,August,51,726-51-0453,Lawyer,28225.49,,1,4,5.288361749,0,,0,0,9.23,8,Good,227.8614015,33.86418997,21 Years and 11 Months,NM,0,625.1181586,Low_spent_Large_value_payments,327.4762636,0,-2.0858,0.2259,2.9861,-0.3761,-1.4303 +0x7f81,CUS_0x9a92,August,28,015-63-9321,Mechanic,28575.4,2603.283333,6,10,25.88954781,8,"Mortgage Loan, Student Loan, Student Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Payday Loan, and Personal Loan",32.36670378,15,16.07,17,Bad,2641.74,23.61913068,14 Years and 5 Months,Yes,1458.741545,,Low_spent_Large_value_payments,315.8691646,0,-0.3761,1.2061,-0.416,0.4385,0.0976 +0x7f8d,CUS_0x955b,August,44,696-78-4933,Media_Manager,12993.97,,6,6,14,7,"Payday Loan, Payday Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Payday Loan, and Student Loan",11.88025084,9,10.92,66,Standard,488.79,25.78599182,13 Years and 3 Months,Yes,64.89671412,,!@9#%8,218.3337144,0,0.6656,-2.1012,-0.3261,0.9366,-0.856 +0x7f99,CUS_0x4fc9,August,48,258-52-7665,Journalist,14274.54,,7,6,10,0,,17.62648018,14.3346326,8.13,5,Good,1434.353954,35.57645436,28 Years and 8 Months,No,0,130.1295481,Low_spent_Small_value_payments,259.1249519,0,-0.7949,0.7724,0.7881,-1.0498,-0.6822 +0x7fa5,CUS_0x1436,August,23,988-70-0775,Developer,167545.24,,5,4,1.288361749,2,"Personal Loan, Not Specified, and Student Loan",8.662997734,9,4.77,0,Good,449.5315445,25.48909364,16 Years and 3 Months,No,234.9597699,1368.92855,Low_spent_Small_value_payments,607.1697107,0,-1.1115,-0.2211,-1.0686,0.9178,0.2644 +0x7fb1,CUS_0x13de,August,35,298-78-5836,Lawyer,14192.12,1401.676667,4,3,19,4,"Personal Loan, Student Loan, Student Loan, and Home Equity Loan",,8,16.33,8,Standard,1483.6,38.49698951,17 Years and 3 Months,NM,45.18519184,58.02528806,Low_spent_Small_value_payments,326.9571868,0,-1.046,-1.024,-1.5167,0.6295,0.6723 +0x7fbd,CUS_0x617c,August,44,490-27-9036,Writer,101191.17,,6,6,17,3,"Personal Loan, Personal Loan, and Debt Consolidation Loan",31.75443807,21.31402995,16.56,4,_,1403.657295,33.37109522,25 Years and 9 Months,Yes,134.0481273,450.5335762,Low_spent_Medium_value_payments,536.5780466,0,0.6094,-1.5251,0.3207,0.1713,-0.7561 +0x7fc9,CUS_0x2d48,August,23,508-50-7959,Engineer,132180.24,,5,7,8,2,"Personal Loan, and Not Specified",3.38580532,6.06825687,-0.48,7,_,823.6106311,36.33566036,32 Years and 11 Months,No,155.1618339,207.0658473,High_spent_Medium_value_payments,999.6743188,0,-0.5444,-0.7969,0.3955,0.9723,0.3225 +0x7fd5,CUS_0x65cf,August,41,099-60-2680,Journalist,72145.32,,1,6,10,0,,9.676629518,11,3.14,0,Good,1285.49,39.85577611,27 Years and 5 Months,No,0,90.53505155,High_spent_Medium_value_payments,741.6759485,0,0.8696,0.7879,0.7856,0.4735,0.3748 +0x7fe1,CUS_0x1ef5,August,80,663-41-3108,Media_Manager,11189.065,,6,3,15,3,"Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",,11,17.09,9,_,761.18,23.70443943,11 Years and 0 Months,Yes,18.43980108,119.1888502,Low_spent_Small_value_payments,268.313557,0,-0.3653,1.4743,-1.2325,-0.3165,-1.0617 +0x7fed,CUS_0x87a,August,34,506-42-3465,Musician,20274.94,,1,6,5,1,Student Loan,1.667547265,3,2,3,Good,11.02,24.18876729,22 Years and 0 Months,No,14.55354317,131.2072463,Low_spent_Large_value_payments,287.1970439,0,2.5689,-0.6713,0.336,0.7785,2.5578 +0x7ff9,CUS_0x5bcb,August,33,543-33-4896,Developer,115484.2,9403.683333,5,6,4.288361749,0,,,7.073473802,1.64,3,Good,775.7746127,38.47274898,19 Years and 2 Months,No,0,1203.086473,Low_spent_Large_value_payments,427.2193212,0,-0.111,-1.2471,-0.9213,0.8862,0.1241 +0x8005,CUS_0x489,August,26,#F%$D@*&8,Writer,9388.27,,4,4,32,100,"Mortgage Loan, Not Specified, Credit-Builder Loan, and Student Loan",28.59052888,23.17841977,8.73,10,Standard,3069.135918,26.71600924,,Yes,18.49496408,31.98468761,High_spent_Small_value_payments,307.3559316,0,0.5859,0.9783,-1.7594,-0.9896,-0.7873 +0x8011,CUS_0x4c5a,August,41,589-58-1945,Media_Manager,49732.41,4274.3675,5,7,17.28836175,6,"Personal Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Student Loan",9.073277389,9.177334852,19.71,5,Standard,157.2620033,27.17793928,5 Years and 10 Months,Yes,212.3839109,580.7806154,High_spent_Medium_value_payments,304.2096847,0,0.4545,-2.2683,-0.6117,-1.0274,-0.1742 +0x801d,CUS_0x9c5b,August,30,604-13-8673,Mechanic,75488.16,6504.68,7,7,20,2,"Payday Loan, and Payday Loan",35.65700843,27.32971814,15.98,12,Bad,2131.715098,29.45763772,7 Years and 2 Months,Yes,85.45857271,,Low_spent_Medium_value_payments,238.5008024,0,-1.3881,0.9952,0.6436,-0.6426,-0.8378 +0x8029,CUS_0x3ddc,August,52,934-11-6218,Musician,23211.26,2136.271667,7,5,10,3,"Mortgage Loan, Mortgage Loan, and Personal Loan",23.83365157,16,15.14,1,Standard,361.52,26.31877986,25 Years and 5 Months,Yes,42.55771769,85.35596488,Low_spent_Large_value_payments,355.7134841,0,0.2218,1.8533,0.5473,-1.3362,0.0536 +0x8035,CUS_0x4b09,August,18,146-77-2738,Scientist,80657.84,6534.486667,7,7,13,3,"Mortgage Loan, Credit-Builder Loan, and Personal Loan",24.26171606,17,15.33,10,Standard,1017.73,27.54412133,21 Years and 5 Months,Yes,167.4967126,,Low_spent_Small_value_payments,,0,-0.9035,-0.6629,0.2462,0.1276,-0.2667 +0x8041,CUS_0x9f1a,August,23,211-56-2000,_______,66978.24,5473.52,8,4,11.28836175,2,"Debt Consolidation Loan, Personal Loan, and Payday Loan",11.02480758,12,10.37,0,Standard,462.74,23.6385828,24 Years and 0 Months,Yes,165.4941439,604.7052506,High_spent_Medium_value_payments,447.0900665,0,-1.0494,-1.5295,1.3656,-0.0476,-0.3854 +0x804d,CUS_0x1183,August,22,972-42-3182,_______,134393.73,10944.4775,1,3,12,2,"Credit-Builder Loan, and Mortgage Loan",0,1,11.49,3,Good,945.29,34.95128259,25 Years and 8 Months,No,136.0306305,178.1009964,High_spent_Medium_value_payments,1030.316123,0,1.1934,0.1094,0.631,0.6204,0.2101 +0x8059,CUS_0x61de,August,41,547-03-3727,Doctor,32152.32,,4,3,5,1,Personal Loan,25.85010829,17,2.57,3,Standard,1100.76,26.95434844,31 Years and 6 Months,No,22.75178378,80.56855757,High_spent_Medium_value_payments,394.2156587,0,0.1577,-1.5292,0.0662,-0.913,-0.3053 +0x8065,CUS_0x167a,August,48,851-45-6853,_______,17064.095,1541.007917,1,2,8,1,Credit-Builder Loan,0,1,0.7,4,Good,758.8097954,27.91576126,20 Years and 3 Months,No,10.80813118,196.0682216,Low_spent_Small_value_payments,259.437773,0,1.1397,-0.9495,-0.7534,-1.1766,1.1065 +0x8071,CUS_0xb499,August,45,180-24-3145,Scientist,33381.68,2482.806667,8,3,8,5,"Credit-Builder Loan, Auto Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",20.87606635,19,17.94,7,Standard,1403.84,25.718216,11 Years and 9 Months,Yes,114.7275457,,Low_spent_Large_value_payments,241.4496139,0,0.3799,0.0303,-0.7521,1.6121,0.1783 +0x807d,CUS_0xc53f,August,42,665-97-7596,Media_Manager,12705.77,1159.814167,6,6,17,2,"Auto Loan, and Auto Loan",19.87959034,11.58954206,2.89,5,Standard,342.7396,27.45686856,22 Years and 6 Months,Yes,14.58771653,,Low_spent_Small_value_payments,271.6268126,0,-0.2457,2.3986,0.5376,-0.6122,-1.4804 +0x8089,CUS_0x9b33,August,20,183-09-6257,Doctor,28021.64,2326.905191,7,4,33,6,"Auto Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Home Equity Loan, and Student Loan",,,19.11,14,Standard,1515.440593,39.06107304,7 Years and 4 Months,Yes,194.2706741,188.920684,!@9#%8,275.053784,0,-0.846,-0.7332,0.0835,1.2355,-0.4879 +0x8095,CUS_0x8d45,August,38,239-07-9719,Mechanic,18718.52,,6,9,17.06745738,100,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Mortgage Loan, and Home Equity Loan",,17.54962665,18.73,14,Bad,5320.339488,34.62946332,,Yes,126.4914892,47.58790023,High_spent_Medium_value_payments,227.6879893,0,-0.919,-0.3589,0.8219,-0.1201,0.1149 +0x80a1,CUS_0x6d28,August,39,034-49-6474,Teacher,44512.24,,8,4,13,3,"Personal Loan, Personal Loan, and Payday Loan",,9,18.8,8,Standard,939.29,28.52528401,22 Years and 11 Months,Yes,71.90679931,76.87242178,High_spent_Small_value_payments,481.3561122,0,-0.8569,-0.1748,-0.0799,0.5228,-1.6221 +0x80ad,CUS_0xa69e,August,34,#F%$D@*&8,Teacher,56663.16,,7,10,30.06745738,5,"Student Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, and Auto Loan",25.47730958,15,20.07,,Bad,3163.090954,31.04672045,11 Years and 5 Months,Yes,194.7025447,177.8858846,Low_spent_Large_value_payments,334.4842828,0,-0.1012,0.0594,-0.0418,-0.1631,1.7545 +0x80b9,CUS_0x89b2,August,41,389-15-8321,Media_Manager,143961.52,,4,3,12,4,"Auto Loan, Personal Loan, Auto Loan, and Payday Loan",19.42484842,13,5.7,3,_,1296.94,28.59368348,33 Years and 6 Months,No,247.0599169,495.8429167,Low_spent_Medium_value_payments,764.7764997,0,-1.4265,0.2045,-0.7863,-0.9413,0.9478 +0x80c5,CUS_0x383e,August,36,842-46-0151,_______,33045.79,2611.815833,4,3,10,0,,6.839147759,9,11.2,9,Good,1081.812309,37.72686833,26 Years and 3 Months,No,27141,,High_spent_Small_value_payments,445.9016465,0,0.9539,-0.0164,0.104,1.4925,-0.0383 +0x80d1,CUS_0x242a,August,45,662-87-9463,Entrepreneur,76374.93,5505.266544,8,7,12,2,"Home Equity Loan, and Mortgage Loan",10.97605967,7,3.8,3,Standard,963.1803344,39.01144677,29 Years and 10 Months,No,834.031361,144.8943141,High_spent_Large_value_payments,671.7235651,0,-2.4641,0.6143,-0.1632,-0.5185,0.5314 +0x80dd,CUS_0xc36d,August,35,676-55-8577,Entrepreneur,119433.42,10099.785,0,3,1.288361749,2,"Debt Consolidation Loan, Personal Loan, and Mortgage Loan",13.52754566,12,7.22,4,_,857.1339203,23.57228829,26 Years and 5 Months,No,256.3437451,,Low_spent_Medium_value_payments,99.34252186,0,-0.2839,0.0809,1.205,1.2413,-0.9499 +0x80e9,CUS_0x92e8,August,32,576-73-9678,Writer,12989.77,,4,4,7,6,"Credit-Builder Loan, Not Specified, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Student Loan",,15,14.37,9,Standard,1298.38,28.72453705,,NM,62.21461364,,Low_spent_Small_value_payments,249.2119336,0,-0.7342,-0.9086,0.1356,1.0581,-2.1216 +0x80f5,CUS_0xb69a,August,32,704-62-9013,Doctor,17282.31,,5,4,1,2,"Not Specified, and Mortgage Loan",,20.29466512,8.98,2,Good,214.6745641,32.40524412,29 Years and 10 Months,No,185.9205006,,Low_spent_Small_value_payments,256.1777265,0,1.698,-0.4523,-0.0331,-0.604,0.011 +0x8101,CUS_0x8443,August,44,553-51-4273,Teacher,80415.12,6472.26,6,7,16,6,"Home Equity Loan, Payday Loan, Home Equity Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",21.88049328,17,7.16,4,Standard,1210.762231,28.69170433,,Yes,269.1210392,184.2993932,High_spent_Large_value_payments,460.521958,0,1.3409,-0.1372,-0.7509,0.9752,1.5882 +0x810d,CUS_0x6a74,August,19,876-18-9837,Entrepreneur,134734.16,,7,7,11,2,"Payday Loan, and Not Specified",18.42051012,13,2.11,2,Standard,45.12,41.52313697,,NM,153.8139477,249.0177099,!@9#%8,975.653009,0,1.67,-0.2077,-0.7341,-0.6386,-1.6547 +0x8119,CUS_0x5558,August,42,173-57-0735,Architect,138188.84,11668.73667,7,7,7,6,"Home Equity Loan, Personal Loan, Payday Loan, Personal Loan, Not Specified, and Home Equity Loan",19.01022167,16,23.75,7,Standard,277.31,28.04317177,19 Years and 9 Months,Yes,648.9027424,128.9090925,High_spent_Medium_value_payments,639.0618318,0,0.896,0.5553,0.187,-0.4714,-0.4551 +0x8125,CUS_0x650f,August,46,015-91-3257,Accountant,12434.24,,6,1420,15,2,"Personal Loan, and Debt Consolidation Loan",,15,12.42,0,Standard,768.69,32.72408082,26 Years and 11 Months,Yes,11.24452942,87.99905114,Low_spent_Small_value_payments,276.2750861,0,1.6569,-0.7037,0.9486,-0.5842,1.965 +0x8131,CUS_0xa7c5,August,45,566-80-0785,Lawyer,37756.85,2865.404167,3,4,10.28836175,2,"Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",,12,9.31,0,_,320.2932804,26.13270163,33 Years and 5 Months,No,83.95989216,607.7664771,High_spent_Small_value_payments,294.5525655,0,-1.4727,-0.6801,2.1878,0.3242,0.6003 +0x813d,CUS_0x8727,August,24,999-92-7186,Architect,29020.78,2423.398333,8,3,10,0,,19.35322123,13,5.56,2,_,1290.3,39.71393367,26 Years and 2 Months,No,0,40.88652563,High_spent_Medium_value_payments,451.4533077,0,0.464,1.4604,-0.4593,-0.3384,0.3946 +0x8149,CUS_0x6640,August,37,636-48-6294,Doctor,19944.35,,8,9,30,5,"Student Loan, Mortgage Loan, Student Loan, Personal Loan, and Payday Loan",,25.06120014,4.7,9,Bad,2429.433887,23.69551795,14 Years and 2 Months,Yes,44.33687369,,Low_spent_Small_value_payments,237.54213,0,-0.489,-0.39,1.0693,-1.5124,-1.2459 +0x8155,CUS_0x87fe,August,37,029-54-7884,Media_Manager,32411.63,2752.969167,8,7,4456,2,"Personal Loan, and Mortgage Loan",,20,6.78,5,Standard,282.3591662,36.44529317,,No,27.84830407,174.062799,High_spent_Small_value_payments,358.2900839,0,-0.5851,0.6628,1.5508,0.4312,-0.2018 +0x8161,CUS_0xc1f7,August,38,136-72-4563,Entrepreneur,97826.07,8406.1725,5,3,15,4,"Mortgage Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,12,21.97,7,Standard,395.61,32.2460088,6 Years and 9 Months,NM,295.681168,554.9011682,Low_spent_Small_value_payments,280.0349138,0,0.066,0.5209,0.2982,-0.5366,1.3256 +0x816d,CUS_0x7b97,August,48,787-10-9379,Journalist,30760.15,2639.345833,4,1005,7,3,"Auto Loan, Personal Loan, and Mortgage Loan",19.44043201,11.83310288,11.5,6,_,157.3685327,28.9411839,27 Years and 8 Months,No,41.12529798,54.68315043,High_spent_Medium_value_payments,418.1261349,0,-0.8247,-0.6581,0.5387,0.5468,1.4026 +0x8179,CUS_0x5bdb,August,42,419-12-7067,Engineer,7866.91,,3,1498,11,7,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, and Payday Loan",90,2697,13.97,6,_,1076.09,37.38378382,11 Years and 6 Months,Yes,23.92606403,10000,!@9#%8,311.9382334,0,0.7998,0.9656,0.9515,-0.2986,-0.1182 +0x8185,CUS_0x7716,August,18,463-91-2032,Manager,13672037,3143.796667,8,10,29,5,"Not Specified, Auto Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",,18.53857282,22.49,11,Bad,3266.339399,35.5982169,10 Years and 0 Months,Yes,122.900223,,Low_spent_Small_value_payments,252.3859652,0,1.3228,0.2844,0.5613,0.4133,0.0304 +0x8191,CUS_0x5e61,August,25,615-93-9083,Teacher,16256.3,,3,3,7.288361749,4,"Personal Loan, Student Loan, Mortgage Loan, and Personal Loan",0,3,1.65,1,_,204.66,33.22115628,15 Years and 9 Months,No,29.89646505,478.3219558,High_spent_Small_value_payments,283.3882068,0,0.5638,1.5945,-1.1315,-0.4821,-0.869 +0x819d,CUS_0x691f,August,18,633-68-4376,Musician,16791.76,1648.313333,8,10,34.06745738,3,"Student Loan, Student Loan, and Personal Loan",26.7390817,13,16.13,9,Standard,2687.310954,29.19691843,16 Years and 8 Months,Yes,31.8113891,,High_spent_Large_value_payments,331.4971101,0,-1.2165,-0.8895,-0.4518,1.2729,-0.3267 +0x81a9,CUS_0xb867,August,39,972-48-4030,Accountant,86408.13,7257.6775,0,6,5.288361749,100,,15.92388589,,2.38,4,Good,646.89,40.19343018,,No,0,596.4468042,High_spent_Large_value_payments,789.2584068,0,1.1679,-0.9239,0.3748,1.0284,-0.5392 +0x81b5,CUS_0x8004,August,43,250-70-4756,Doctor,84379.82,,3,4,12,0,,,2,3.03,5,Good,498.02,38.06510297,27 Years and 4 Months,No,0,372.5215906,Low_spent_Medium_value_payments,602.043576,0,0.0017,2.5515,-1.659,1.8251,0.004 +0x81c1,CUS_0xa6f4,August,51,055-64-9665,Doctor,126091.71,,1,5,5.288361749,0,,0,3,5.38,2,Good,1284.117694,33.2411178,19 Years and 4 Months,No,0,1086.202806,Low_spent_Small_value_payments,746.2595623,0,0.7468,-0.7587,-1.3874,0.0172,0.2964 +0x81cd,CUS_0x8da2,August,56,968-20-8427,_______,118446.69,9708.5575,3,1,8,0,,0,2,9.12,6,Good,828.9209733,31.3734783,15 Years and 9 Months,No,0,132.0590743,!@9#%8,1094.959748,0,1.8963,0.3571,-0.0403,0.3782,-0.0759 +0x81d9,CUS_0x99c9,August,42,950-35-3123,Lawyer,65804.68,5639.723333,8,4,5,4,"Student Loan, Home Equity Loan, Student Loan, and Auto Loan",23.77491018,16,21.69,1,Standard,1068.77,27.15350385,31 Years and 10 Months,Yes,181.6034832,433.2858802,Low_spent_Small_value_payments,239.08297,0,-1.1316,0.1467,0.8296,0.7154,0.1715 +0x81e5,CUS_0x7347,August,43,611-53-0923,Teacher,8719,,9,5,20.06745738,6,"Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",22.9270665,11.56043299,15.58,14,Standard,2018.582282,36.96234758,8 Years and 11 Months,Yes,34.67191677,53.95399987,Low_spent_Small_value_payments,240.0121287,0,1.4233,-0.013,0.3243,0.7329,0.0837 +0x81f1,CUS_0x5ebd,August,26,883-40-7232,Doctor,20937.38,,8,8,31.06745738,3,"Personal Loan, Student Loan, and Home Equity Loan",,22.20324332,25.56,8,Standard,2172.471635,38.8672762,8 Years and 4 Months,Yes,52.14929737,48.55449014,Low_spent_Large_value_payments,307.6540912,0,-2.4291,-1.2008,-1.3458,-0.341,0.9401 +0x81fd,CUS_0x8e72,August,49,767-92-0166,Lawyer,37813.97,3233.164167,5,6,11,2,"Home Equity Loan, and Payday Loan",,5,4.91,4,Good,880.43,28.98867489,18 Years and 5 Months,No,36.01705179,10000,High_spent_Large_value_payments,496.3237684,0,-0.5169,-1.1187,-0.0302,0.3725,-0.457 +0x8209,CUS_0x3aa1,August,39,701-98-5720,_______,47888.94,4197.745,4,4,27,4,"Mortgage Loan, Student Loan, Home Equity Loan, and Not Specified",,18.55836232,8.84,8,Standard,2042.386104,36.19591193,14 Years and 6 Months,Yes,150.783745,95.94631215,High_spent_Large_value_payments,413.0444429,0,0.3902,1.4605,-0.3603,-1.0455,1.4045 +0x8215,CUS_0x9d51,August,32,189-87-7469,Musician,15361.995,1414.16625,8,6,10,5,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Personal Loan, and Student Loan",30.07532453,23,13.35,,Standard,440.92,29.91200631,10 Years and 6 Months,Yes,51.74325541,124.8189074,Low_spent_Small_value_payments,254.8544622,0,-1.2414,0.6675,0.0234,0.5687,0.6109 +0x8221,CUS_0x5048,August,21,986-86-6614,Doctor,172792.68,14189.39,4,5,10.28836175,100,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",2.157125223,5.759788792,11.61,7,Good,342.0551726,29.71446157,23 Years and 6 Months,No,356.9316469,732.5198371,High_spent_Small_value_payments,1009.424977,0,-0.0136,2.5928,-0.7707,-0.2772,-0.6959 +0x822d,CUS_0x6c6d,August,38,093-21-1258,Manager,73028.88,5955.74,7,6,34,8,"Mortgage Loan, Student Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Not Specified",,16,22.75,9,Bad,3641.51,23.15169819,14 Years and 5 Months,NM,425.5467784,,High_spent_Medium_value_payments,288.8459947,0,2.7213,-0.9257,0.3708,0.3702,-3.0057 +0x8239,CUS_0x224a,August,55,612-13-5545,Teacher,114929.01,9469.4175,794,3,1.288361749,2,"Personal Loan, Debt Consolidation Loan, and Payday Loan",0.620122341,3,2.08,,Good,742.14,30.58356871,26 Years and 9 Months,No,206.87483,10419.93746,Low_spent_Medium_value_payments,44.23472708,0,0.6725,0.5743,1.3572,-0.6454,0.4503 +0x8245,CUS_0x1e5e,August,34,464-14-7094,Engineer,28501.86,,4,2,10,2,"Home Equity Loan, and Auto Loan",0,0,10.78,0,Good,946.0330198,25.99184938,,No,29.15376484,180.443212,Low_spent_Medium_value_payments,335.4182194,0,0.9068,0.3644,-0.113,-0.9305,0.2033 +0x8251,CUS_0xa877,August,55,112-83-9854,Manager,18167.415,,1,7,5,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",0.778590563,3,5.99,4,Good,718.95,23.89019489,32 Years and 2 Months,No,24.44118001,88.25617833,Low_spent_Large_value_payments,307.6977667,0,-0.2195,0.3406,0.209,-0.3028,-0.1901 +0x825d,CUS_0x26ac,August,26,023-06-5608,Musician,90487.96,7330.663333,4,4,12,7,"Not Specified, Student Loan, Student Loan, Mortgage Loan, Payday Loan, Mortgage Loan, and Not Specified",17.60404484,13,15.62,13,Standard,1416.61,31.44380653,11 Years and 0 Months,Yes,482.3616914,,Low_spent_Large_value_payments,127.1101127,0,0.2274,-0.9495,0.7767,0.8485,1.0492 +0x8269,CUS_0xb5be,August,30,760-98-9558,Accountant,130597.17,10775.0975,2,4,5.288361749,2,"Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",6.559429753,7,7.23,5,Good,1295.716892,35.52988725,,No,236.2577301,1016.931648,Low_spent_Small_value_payments,589.0022808,0,1.0936,-1.1077,-0.757,-1.4394,-0.1301 +0x8275,CUS_0xa9c2,August,18,331-82-4019,Lawyer,9243.765,564.31375,9,8,19,2,"Auto Loan, and Mortgage Loan",34.14766973,19,4.1,6,Bad,1459.06,30.7470861,13 Years and 11 Months,NM,13.68289337,28.27386865,Low_spent_Medium_value_payments,294.474613,0,-0.2493,0.7042,-1.7694,0.1449,-0.448 +0x8281,CUS_0x299d,August,18,794-47-1465,Accountant,64159.53,,8,6,8,6,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",14.06965079,12,19.9,10,Standard,795.79,33.40041927,12 Years and 6 Months,Yes,250.417246,177.901082,High_spent_Small_value_payments,358.444422,0,-0.7174,-0.1842,1.122,0.3539,-0.1983 +0x828d,CUS_0xe2a,August,20,880-98-7602,Developer,88295.34,7224.945,5,2,939.2883617,0,,0,2,1.4,1,Good,723.63,30.32839201,30 Years and 4 Months,No,0,1164.372353,!@9#%8,258.0596077,0,0.6,-0.7912,-1.3948,-0.206,0.8248 +0x8299,CUS_0xc01a,August,56,084-85-3392,Teacher,28517.53,,1,4,8,4,"Debt Consolidation Loan, Auto Loan, Auto Loan, and Personal Loan",,7,-0.36,1,Good,229.9247803,25.28327293,16 Years and 5 Months,No,89.35557337,45.51491851,High_spent_Large_value_payments,325.7992216,0,-1.1068,-1.4049,-1.7743,-0.3476,0.808 +0x82a5,CUS_0x5f86,August,25,309-04-1544,Musician,17234.695,,7,3,7,3,"Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",11.83864522,10,11.63,2,Standard,901.12,30.98970667,28 Years and 8 Months,Yes,33.49155037,,Low_spent_Large_value_payments,282.1757723,0,0.1075,1.5879,-0.7152,0.6848,-0.6906 +0x82b1,CUS_0x4487,August,30,952-89-5647,Accountant,62848.88,4546.214822,7,7,8,5,"Not Specified, Mortgage Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",23.43969421,19,17.34,4,_,2421.524525,32.23065164,,Yes,767.947345,400.885273,Low_spent_Small_value_payments,207.5531718,0,-0.5836,-1.2777,-1.62,-0.5624,-0.5858 +0x82bd,CUS_0x631f,August,36,837-78-9503,Mechanic,15270.77,,10,9,32.95700519,6,"Debt Consolidation Loan, Student Loan, Payday Loan, Payday Loan, Payday Loan, and Payday Loan",42.78745958,24.86116058,4.46,8,Bad,3169.900985,28.68379592,6 Years and 3 Months,Yes,1375.985186,,High_spent_Small_value_payments,260.3021847,0,1.4443,-0.793,0.2855,-1.2595,0.295 +0x82c9,CUS_0x4db9,August,19,641-29-5684,Accountant,53587.86,4197.655,6,6,18,3,"Mortgage Loan, Home Equity Loan, and Personal Loan",17.31898088,12,16.99,6,Standard,636.73,30.79226073,15 Years and 5 Months,Yes,124.9151428,228.5205137,High_spent_Small_value_payments,326.3298435,0,-0.7154,-0.8368,0.4083,-0.6588,-0.9058 +0x82d5,CUS_0x9497,August,41,938-80-4362,_______,9920.795,743.7329167,1089,9,33.06745738,9,"Home Equity Loan, Not Specified, Home Equity Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Payday Loan",,20.24167182,22.34,9,Bad,3326.735619,28.31826516,6 Years and 4 Months,Yes,42.26743181,10000,Low_spent_Medium_value_payments,235.1852261,0,0.5696,0.3824,-0.0032,-0.7843,1.4279 +0x82e1,CUS_0x1281,August,22,728-18-4971,Writer,8780.975,435.7479167,5,4,20,6,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Not Specified, Student Loan, and Debt Consolidation Loan",11.71273341,9.179208009,14.82,4,Standard,924.0358776,38.9583947,11 Years and 3 Months,Yes,36.74831398,52.84878987,Low_spent_Small_value_payments,243.9776878,0,0.9615,-0.957,0.6998,1.6756,-1.0681 +0x82ed,CUS_0x352b,August,45,190-64-8072,Doctor,15148.98,,6,9,17,2,"Home Equity Loan, and Personal Loan",19.30136046,14.38971358,14.76,11,_,2835.437741,35.32272738,17 Years and 9 Months,Yes,25.18058929,115.5893608,Low_spent_Small_value_payments,277.2715499,0,0.6201,0.1082,0.6512,-2.1025,0.5133 +0x82f9,CUS_0x2af3,August,23,105-65-3952,Mechanic,80442.28,6995.523333,8,7,21,9,"Auto Loan, Home Equity Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",28.46071444,20,19.33,10,Bad,2738.93,34.79344311,1 Years and 4 Months,Yes,374.6506222,456.5683938,Low_spent_Medium_value_payments,148.3333173,0,0.8162,0.3503,1.9917,-0.3701,0.4771 +0x8305,CUS_0xc3a1,August,39,064-96-4304,_______,15106.33,1540.860833,6,9,16,8,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Not Specified, Mortgage Loan, Personal Loan, Not Specified, and Mortgage Loan",,19.37372873,3.98,13,Bad,1519.089119,23.0117189,8 Years and 3 Months,Yes,79.45377456,141.0392295,Low_spent_Large_value_payments,203.5930792,0,-1.9515,0.1343,0.9732,0.1785,-0.4027 +0x8311,CUS_0x3a3d,August,25,171-73-4099,Journalist,30555.87,,2,6,11,0,,5.855003771,9,7.33,5,Good,418.79,35.35793603,22 Years and 10 Months,No,0,128.4752614,Low_spent_Small_value_payments,439.1569886,0,-0.6622,-2.2144,0.8819,0.0932,-1.4479 +0x831d,CUS_0x60e8,August,18,#F%$D@*&8,Musician,49880.52,4239.71,4,6,6,3,"Student Loan, Home Equity Loan, and Auto Loan",,14,18.22,13,Standard,849.02,29.94298015,18 Years and 9 Months,Yes,111.3567314,,Low_spent_Small_value_payments,183.2638546,0,-1.1284,-1.5725,0.2533,-0.3671,1.2282 +0x8329,CUS_0x9e7a,August,26,993-26-5069,Musician,25610.67,,3,4,18.28836175,2,"Student Loan, and Credit-Builder Loan",18.77385861,16,2.24,1,_,46.58,33.38435981,24 Years and 11 Months,No,24.79970893,527.402485,High_spent_Small_value_payments,346.7575171,0,0.7128,-1.778,1.1739,0.3132,-0.0496 +0x8335,CUS_0x5775,August,48,410-75-4980,Accountant,16609.095,1488.09125,1,2,4,3,"Home Equity Loan, Credit-Builder Loan, and Student Loan",,4,8.81,3,Good,864,38.21875472,23 Years and 3 Months,No,22.41100577,146.9766852,Low_spent_Small_value_payments,269.421434,0,-1.0023,-0.1757,0.3284,-1.3949,-0.1669 +0x8341,CUS_0x7084,August,26,967-68-4738,Musician,30619.71,1965.121357,5,3,18,0,,24.51697012,16,10.06,11,Standard,614.0344827,26.19421381,24 Years and 10 Months,Yes,298.5211429,94.05924796,High_spent_Medium_value_payments,391.6656051,0,-1.3506,-1.0095,0.7384,0.0902,0.7336 +0x834d,CUS_0x46db,August,26,276-03-8497,Scientist,74837.12,6261.426667,4,3,17,6,"Home Equity Loan, Personal Loan, Mortgage Loan, Not Specified, Not Specified, and Personal Loan",21.33296814,16,12.14,10,_,1527.44,32.54682348,7 Years and 2 Months,Yes,362.2500409,457.6515168,Low_spent_Medium_value_payments,86.24110905,0,-0.6952,-1.2077,0.8665,-0.2212,-0.8812 +0x8359,CUS_0x4a51,August,18,658-15-9936,Scientist,18885.93,1591.8275,9,7,22,2,"Not Specified, and Auto Loan",29.31053651,21.30831684,7.55,8,Standard,1533.269911,27.97627106,10 Years and 0 Months,Yes,29.60456059,70.87432036,Low_spent_Large_value_payments,328.703869,0,1.1468,-0.5957,-1.6815,-0.5929,-0.3346 +0x8365,CUS_0xa682,August,53,276-56-8950,Mechanic,22933.45,,8,7,19,4,"Credit-Builder Loan, Mortgage Loan, Personal Loan, and Auto Loan",20.72540047,11,6.52,,Standard,328.94,35.2416349,20 Years and 5 Months,Yes,38.75600326,70.97280466,High_spent_Medium_value_payments,327.5832754,0,-0.4012,-0.1475,0.7351,-1.3685,-0.0838 +0x8371,CUS_0x1e16,August,53,443-08-6028,Journalist,40019,3401.916667,2,1,2,4,"Home Equity Loan, Home Equity Loan, Student Loan, and Personal Loan",0.210097775,4,3.58,6,Good,1445.81,34.60242342,20 Years and 6 Months,No,70.34034034,427.7105996,Low_spent_Small_value_payments,132.1407268,0,0.0253,-0.7807,1.3248,0.1658,1.7156 +0x837d,CUS_0x30ed,August,30,310-48-0958,Scientist,28634.88,,6,6,18.06745738,8,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Auto Loan",32.93912779,,8.34,10,Bad,3745.785381,24.67123832,7 Years and 4 Months,Yes,106.5034545,223.3785137,Low_spent_Medium_value_payments,167.6217438,0,1.3759,-2.4816,-0.3823,0.1022,0.8127 +0x8389,CUS_0x58ba,August,26,642-96-2535,Developer,57055.95,,4,4,9,4,"Mortgage Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",18.11463741,15,15.03,7,Standard,470.01,32.43936169,8 Years and 4 Months,Yes,174.286333,,High_spent_Medium_value_payments,361.3582351,0,-0.0862,-0.5954,-1.0244,0.4559,0.8604 +0x8395,CUS_0x684c,August,18,215-51-4680,Entrepreneur,33238.98,,7,8,28.06745738,2,"Mortgage Loan, and Mortgage Loan",35.9560976,21.70796143,4.84,15,Bad,2081.53336,30.30534381,14 Years and 4 Months,Yes,54.70127741,268.1688145,!@9#%8,189.0011202,0,0.5196,1.1143,-0.5765,-0.886,-0.7995 +0x83a1,CUS_0x1431,August,32,752-76-8063,Mechanic,110525.97,9471.4975,7,7,9,5,"Not Specified, Not Specified, Not Specified, Payday Loan, and Payday Loan",25.35832254,18.84665048,10.27,8,Standard,1132.929068,38.92767664,8 Years and 11 Months,Yes,267.3351804,142.0067414,High_spent_Medium_value_payments,787.8078282,0,-0.8489,-1.5649,0.7996,-0.2104,1.2535 +0x83ad,CUS_0x46ff,August,36,846-58-3098,Lawyer,72849.56,6118.796667,3,3,12,6,"Personal Loan, Payday Loan, Auto Loan, Personal Loan, Auto Loan, and Auto Loan",28.84528815,20,15.07,9,Standard,965.85,27.94902833,,Yes,230.4748559,373.9437855,Low_spent_Medium_value_payments,287.4610252,0,1.0849,0.7572,-0.0288,0.6189,-0.2096 +0x83b9,CUS_0x84a0,August,28,417-38-2507,Accountant,45783.32,3643.276667,7,7,18,0,,,15,10.25,6,Standard,608.27,28.02523426,,No,0,40.27800304,High_spent_Medium_value_payments,574.0496636,0,-1.24,-0.6798,-0.6831,-0.7386,-0.3462 +0x83c5,CUS_0xaa84,August,26,103-20-0690,Musician,33520.04,,8,6,13,4,"Home Equity Loan, Not Specified, Not Specified, and Not Specified",16.63104869,,5.58,3,Standard,673.04,38.72827944,21 Years and 9 Months,No,82.39694576,251.4380311,!@9#%8,206.8986898,0,-0.5341,0.1287,1.6193,-1.1821,0.3257 +0x83d1,CUS_0xb9d2,August,28,000-80-0683,Manager,79950.34,6393.528333,3,1,10,4,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Auto Loan",6.240419781,5,6.27,2,Good,464.7065605,24.95211951,24 Years and 10 Months,No,261.4747997,122.5483811,High_spent_Medium_value_payments,519.1153045,0,-0.7209,0.6593,-3.0522,0.6431,0.0282 +0x83dd,CUS_0x9f4c,August,28,148-87-5022,Teacher,14155.74,,10,5,23,9,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",28.40060021,18,2.14,15,_,1971.13,28.58608557,7 Years and 0 Months,Yes,60.47033609,50.53552373,Low_spent_Medium_value_payments,282.4586402,0,1.4787,0.7947,1.671,1.8156,-0.6563 +0x83e9,CUS_0x28a7,August,31,969-11-1053,Media_Manager,69502.12,,3,7,17,2,"Personal Loan, and Not Specified",10.40976909,9,7.86,10,Standard,1065.78,40.59266314,30 Years and 10 Months,Yes,96.18121645,109.2479789,High_spent_Large_value_payments,608.155138,0,-1.9686,-1.4893,-0.4891,0.6493,2.2139 +0x83f5,CUS_0x97dc,August,31,069-20-5974,Musician,99912.57,8615.0475,1,5,5,1,Home Equity Loan,7.443765603,5.652725671,1.13,1,Good,167.3719205,39.05147101,22 Years and 9 Months,No,64.37027168,240.4009871,High_spent_Medium_value_payments,806.7334912,0,-1.1396,0.5987,0.5105,-0.0001,-2.2428 +0x8401,CUS_0x1152,August,29,330-02-2598,Accountant,31316.47,2510.705833,0,2,6,2,"Payday Loan, and Personal Loan",,5,5.44,1,Good,737.3156877,36.45165605,18 Years and 6 Months,No,26959,140.1242836,High_spent_Small_value_payments,355.2718152,0,-0.8522,0.9553,0.3747,0.2184,-1.2946 +0x840d,CUS_0x7942,August,32,017-06-0145,Engineer,57852.3,4571.025,8,10,19.95700519,8,"Payday Loan, Auto Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Personal Loan",29.01687395,19.15575334,20.67,8,Bad,5445.842145,39.24020442,5 Years and 10 Months,Yes,1561.858359,148.2444359,High_spent_Medium_value_payments,275.9493358,0,1.4743,-0.4994,-1.2121,0.4355,-0.5174 +0x8419,CUS_0x644f,August,25,712-62-5103,_______,9988.76,,4,7,5,1,Credit-Builder Loan,,11,19.19,6,_,71.42,36.47076304,25 Years and 3 Months,Yes,4.865689677,62.84062094,High_spent_Small_value_payments,292.233356,0,-0.2329,0.1375,-1.577,-0.1961,-0.3246 +0x8425,CUS_0x5ee5,August,43,666-08-3263,Scientist,109864.47,9093.3725,8,6,15.28836175,0,,10.11701275,10,8.67,7,Standard,35.21,40.45186342,20 Years and 4 Months,Yes,0,630.5133199,High_spent_Large_value_payments,938.7613912,0,1.4273,-1.6512,0.2017,-0.4861,-0.1616 +0x8431,CUS_0x2555,August,24,373-90-7239,Doctor,33818.2,2879.183333,8,591,18,1,Credit-Builder Loan,30.1741228,21,,4,Standard,170.13,36.45898836,31 Years and 6 Months,NM,23.68594246,97.88706775,High_spent_Medium_value_payments,416.3453231,0,-0.869,-0.3956,0.5105,1.2894,0.7648 +0x843d,CUS_0x4044,August,39,#F%$D@*&8,Engineer,19151.85,1746.9875,8,9,25.06745738,2,"Personal Loan, and Home Equity Loan",,13,6.89,2190,Bad,2808.610954,34.85937368,15 Years and 3 Months,Yes,31.78078547,17.41270615,High_spent_Large_value_payments,338.7849704,0,0.4523,1.8739,-0.4546,0.8553,-1.2718 +0x8449,CUS_0x8cc9,August,18,340-05-3601,Media_Manager,8953.055,,3,10,30,5,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",23.94008733,17,15.76,7,Standard,1539.76,21.848104,17 Years and 8 Months,Yes,22.59698567,10000,Low_spent_Small_value_payments,262.4022672,0,0.3751,0.622,-2.577,-0.3284,0.2795 +0x8455,CUS_0x9d87,August,19,187-59-2688,Accountant,41200.26,3516.355,8,9,32.95700519,7,"Debt Consolidation Loan, Personal Loan, Payday Loan, Home Equity Loan, Not Specified, Not Specified, and Home Equity Loan",45.97398885,24.12678914,9.22,10,Bad,3220.039942,27.99286166,14 Years and 8 Months,Yes,1455.169348,,!@9#%8,167.3127703,0,-0.2163,0.1703,-0.8535,0.4521,1.1677 +0x8461,CUS_0x85e8,August,22,548-50-3919,Lawyer,126115.56,10304.63,8,7,19,4,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",,14,9.72,3,Standard,1106.804117,26.70552369,29 Years and 3 Months,No,389.0075114,1072.721403,Low_spent_Medium_value_payments,,0,0.9048,-0.0292,0.5851,0.3336,0.5157 +0x846d,CUS_0x6197,August,39,079-81-7123,Engineer,18610.89,1674.9075,6,8,22,5,"Credit-Builder Loan, Payday Loan, Student Loan, Auto Loan, and Payday Loan",36.9667733,17.28583973,8.52,8,Bad,2094.308754,36.25690694,8 Years and 4 Months,Yes,59.1208058,,Low_spent_Medium_value_payments,294.2616341,0,0.3685,-0.7266,-0.9047,0.7536,-0.7215 +0x8479,CUS_0x385d,August,38,647-38-7901,Teacher,18495.14,,3,3,7,4,"Auto Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",21.41608573,17,12.61,10,Standard,1110.59804,33.08035449,14 Years and 0 Months,Yes,39.64558521,123.6112225,Low_spent_Small_value_payments,323.0507126,0,-0.2874,0.904,-0.4513,-0.726,-0.3636 +0x8485,CUS_0x9bb0,August,48,815-47-0096,Developer,66120.99,5665.0825,1197,4,20,2,"Auto Loan, and Mortgage Loan",16.52942943,14,5.65,0,Standard,553.15,33.36276024,,NM,95.35810192,,High_spent_Medium_value_payments,652.2868676,0,1.1572,0.4214,-1.3634,-0.533,1.3112 +0x8491,CUS_0xeea,August,37,693-89-3430,Accountant,31909.18,,9,6,29,8,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Student Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",27.8489756,21,1.63,8,Bad,3409.48,29.52795354,8 Years and 11 Months,Yes,202.911972,124.0540781,High_spent_Small_value_payments,188.5437833,0,0.2553,2.0577,0.3759,0.6279,1.0158 +0x849d,CUS_0x7e18,August,26,682-78-8709,Manager,91836.48,7716.04,6,7,12,1,Mortgage Loan,,24.9067318,8.26,6,Good,185.5294745,36.74465595,18 Years and 10 Months,No,62.42521456,110.1750879,High_spent_Medium_value_payments,849.0036975,0,-0.907,1.0824,0.3292,0.9235,1.3511 +0x84a9,CUS_0xa666,August,38,587-63-0002,Media_Manager,31153.48,,2,5,9,3,"Debt Consolidation Loan, Home Equity Loan, and Payday Loan",9.549350647,9,5.96,5,Good,737.93,29.43325674,18 Years and 8 Months,No,68.46128853,105.862704,High_spent_Medium_value_payments,329.9883408,0,1.4932,0.6959,-0.7617,-1.6267,-1.7891 +0x84b5,CUS_0x6c85,August,26,920-99-0917,Architect,72576.04,5934.003333,5,3,6.288361749,4,"Credit-Builder Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",,14,2.27,1,Good,419.6693069,38.33170898,25 Years and 0 Months,No,197.0099318,575.87546,High_spent_Medium_value_payments,508.5345375,0,-1.3912,-2.0332,0.0601,0.224,0.415 +0x84c1,CUS_0x240e,August,37,944-76-1544,Writer,27476.99,2301.749167,7,4,20,4,"Not Specified, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,,12.8,7,_,566.21,27.82606731,22 Years and 9 Months,Yes,73.47853819,42.95200445,High_spent_Medium_value_payments,363.744374,0,0.5567,1.1057,0.6463,-1.1421,-0.4768 +0x84cd,CUS_0x5c87,August,40,144-83-3183,Developer,13115381,,9,8,30,5,"Credit-Builder Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Mortgage Loan",31.66183014,23,22.94,10,Bad,3026.97,27.50550908,9 Years and 6 Months,Yes,208.769613,306.8360158,Low_spent_Large_value_payments,361.8217045,0,0.6446,-0.6018,0.8601,2.5527,-0.796 +0x84d9,CUS_0x5313,August,21,378-22-0903,Entrepreneur,9584.875,643.7395833,6,1181,12.88954781,6,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",23.54208341,20,12.65,6,Standard,1414.03,34.05378564,14 Years and 8 Months,Yes,1348.191983,32.05445912,Low_spent_Small_value_payments,279.7974351,0,0.9749,0.1449,0.1455,0.7036,1.0858 +0x84e5,CUS_0x2e1d,August,18,408-57-4420,Accountant,53251.36,4636.613333,5,3,20,3,"Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",16.92567316,11,19.82,9,Standard,777.1461272,38.48759482,27 Years and 5 Months,Yes,128.2098442,,Low_spent_Medium_value_payments,373.5582175,0,0.1242,-0.7506,0.6001,0.1173,0.7031 +0x84f1,CUS_0x8b99,August,49,578-99-4316,Mechanic,32260.97,,1,4,2,3,"Student Loan, Not Specified, and Student Loan",7.681138859,7,4.7,4,Good,902.7974411,32.81182929,31 Years and 10 Months,NM,190.4936988,104.9599692,Low_spent_Large_value_payments,341.9384172,0,1.974,-0.7215,-0.707,0.2734,1.5249 +0x84fd,CUS_0xad55,August,30,985-38-7873,Engineer,58337.79,4697.4825,8,6,19,2,"Auto Loan, and Home Equity Loan",11.60092489,11.91449921,13.36,8,Standard,1466.167415,38.66390244,18 Years and 0 Months,Yes,86.26591449,193.0563356,Low_spent_Small_value_payments,480.4259999,0,0.3241,0.1837,-0.2132,-1.2854,-1.1197 +0x8509,CUS_0x7e3e,August,30,230-16-9822,Engineer,80932.92,6759.41,9,7,22,4,"Credit-Builder Loan, Payday Loan, Not Specified, and Payday Loan",54.03695206,28.19071729,7.22,6,_,2960.495713,30.19094014,16 Years and 4 Months,Yes,192.8108777,91.69376617,High_spent_Large_value_payments,631.4363561,0,-0.3098,0.1287,0.282,-0.3122,0.8869 +0x8515,CUS_0x7b1c,August,26,022-18-2145,Architect,121466.8,,0,7,7.288361749,2,"Personal Loan, and Student Loan",,12,2.1,2,Good,439.0078614,37.54432295,30 Years and 10 Months,No,178.1958737,588.7791841,High_spent_Medium_value_payments,935.8355414,0,-1.0852,1.6619,0.6159,0.974,0.3263 +0x8521,CUS_0xa4b3,August,36,482-29-3534,Accountant,61351.77,4997.6475,8,10,18,5,"Personal Loan, Payday Loan, Auto Loan, Home Equity Loan, and Payday Loan",41.61593733,26.41339188,13.27,9,Bad,2484.500225,26.00763383,17 Years and 5 Months,Yes,47697,137.0431523,High_spent_Medium_value_payments,429.3085682,0,-0.686,1.0614,-2.9977,-1.276,-0.2487 +0x852d,CUS_0xb013,August,22,607-56-0354,Developer,32667.1,,6,8,33.06745738,7,"Student Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Personal Loan",25.68188249,13,,7,Bad,4132.210954,39.87416214,1 Years and 6 Months,Yes,117.5504507,101.1866679,Low_spent_Small_value_payments,303.8684267,0,0.871,-0.0226,0.645,-0.5409,-0.7463 +0x8539,CUS_0xa201,August,22,926-53-0959,Scientist,104994.57,8635.5475,7,4,9,3,"Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",16.90417677,13,18.2,1,Standard,536.97,40.77074448,30 Years and 6 Months,Yes,187.304419,200.2783354,High_spent_Medium_value_payments,725.9719957,0,0.4523,-1.3431,0.2723,-0.522,0.3005 +0x8545,CUS_0x29ab,August,43,406-65-3278,Writer,20498.12,,7,6,32,2,"Home Equity Loan, and Payday Loan",19.99251592,15,10.58,11,Standard,1473.64,31.47475472,19 Years and 9 Months,Yes,31.91744658,131.786356,Low_spent_Small_value_payments,282.213864,0,0.733,1.9718,-0.6448,-0.7086,0.5818 +0x8551,CUS_0x9347,August,21,406-68-6740,_______,33832.58,,8,5,23.06745738,8,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Not Specified, and Student Loan",,25.3051472,3.42,12,_,4133.167077,26.18632221,0 Years and 10 Months,Yes,150.2708913,31.68887308,High_spent_Medium_value_payments,322.2581144,0,0.9099,-1.3752,-0.0023,-0.1343,-0.7704 +0x855d,CUS_0x2ffe,August,80,453-58-5804,Doctor,13913.795,1156.482917,7,4,12.06745738,3,"Debt Consolidation Loan, Student Loan, and Home Equity Loan",21.88009125,15,7.01,0,Standard,1693.720954,25.03107024,17 Years and 4 Months,NM,24.63645069,89.41213766,Low_spent_Small_value_payments,264.8794154,0,0.8427,0.7402,-0.3507,-0.4718,0.0011 +0x8569,CUS_0x85fd,August,42,575-74-4681,Teacher,40225.32,3609.11,0,5,11,1,Student Loan,0,1,8.02,8,Good,674.01,38.96306566,15 Years and 9 Months,No,18.37742156,,Low_spent_Medium_value_payments,375.1085559,0,0.672,-0.8274,0.1311,0.5943,-0.3252 +0x8575,CUS_0x2473,August,32,590-31-4442,Lawyer,66614.64,5704.22,6,4,27,7,"Not Specified, Student Loan, Payday Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Home Equity Loan",14.86531993,10,15.27,10,Standard,1287.55,38.3464368,12 Years and 6 Months,Yes,241.3714473,129.5153683,High_spent_Medium_value_payments,449.5351844,0,0.9589,1.3626,-0.4068,0.2104,0.1481 +0x8581,CUS_0x37cd,August,40,371-36-1042,Manager,15916.47,1317.3725,3,6,9,4,"Debt Consolidation Loan, Student Loan, Student Loan, and Personal Loan",32.66687551,22.76259835,10.05,6,_,1520.846577,24.69773443,12 Years and 11 Months,Yes,40.62841199,104.4842439,Low_spent_Medium_value_payments,266.6245941,0,-0.8663,0.1356,0.9448,0.7793,-0.7761 +0x858d,CUS_0x651d,August,34,689-46-1968,_______,40372.5,3466.375,5,4,11,4,"Personal Loan, Auto Loan, Mortgage Loan, and Auto Loan",,10,13.63,11,_,1000.07,37.64716651,9 Years and 0 Months,Yes,73.99500614,53.47795649,High_spent_Medium_value_payments,469.1645374,0,-1.5603,0.1036,0.6606,-0.2748,-0.4926 +0x8599,CUS_0x584e,August,33,#F%$D@*&8,Accountant,43600.04,,8,4,17,5,"Credit-Builder Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",17.9349189,16,,8,Standard,773.73,38.55204333,12 Years and 5 Months,Yes,178.1022658,104.2930592,High_spent_Medium_value_payments,355.6383417,0,0.4249,0.6967,1.7171,-1.4078,-1.3693 +0x85a5,CUS_0x4daf,August,55,387-41-1667,Lawyer,31438.12,2416.843333,1,4,8.288361749,0,Personal Loan,3.06968878,7,18.38,5,Good,71.40495094,38.93594245,33 Years and 4 Months,No,18.94534825,520.532781,High_spent_Medium_value_payments,384.393132,0,-0.7364,0.3379,-0.6813,-0.8673,-0.0684 +0x85b1,CUS_0x8785,August,21,786-21-8884,Doctor,175718.04,,4,4,2,1,Mortgage Loan,,11,8.62,3,Good,444.46,38.17123008,17 Years and 0 Months,No,145.952613,,Low_spent_Medium_value_payments,232.9437651,0,-0.0426,-0.4829,-0.4306,1.294,-0.5611 +0x85bd,CUS_0x2c18,August,22,057-91-9509,Mechanic,56183.79,4597.9825,6,9,22.88954781,6,"Home Equity Loan, Home Equity Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",35.73109106,18.15346592,13.22,15,_,2431.573888,27.60553216,7 Years and 5 Months,Yes,1536.794843,186.8934716,High_spent_Medium_value_payments,291.7798536,0,-0.6215,-0.115,-2.0204,-1.57,-0.8988 +0x85c9,CUS_0x8425,August,21,416-89-7777,Manager,29908.4,,1,4,5,4,"Payday Loan, Home Equity Loan, Not Specified, and Payday Loan",,9,10.21,3,Good,1045.11937,30.47609593,19 Years and 8 Months,No,54.91471649,118.2035601,High_spent_Medium_value_payments,348.1603449,0,2.1037,-1.0511,-0.5272,-0.0593,-0.3168 +0x85d5,CUS_0x9c22,August,30,552-02-1881,Developer,11203.125,,8,7,5,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",20.80245322,13,19.48,6,Standard,954.43,27.2638369,13 Years and 11 Months,Yes,35.8102866,37.9452804,Low_spent_Small_value_payments,308.103808,0,0.0376,-0.1378,0.6474,1.1269,0.8526 +0x85e1,CUS_0x977a,August,22,444-80-4079,Journalist,73713.48,6269.79,4,6,22,6,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Personal Loan",20.98474474,17.9236395,15.78,7,Standard,1609.840483,33.59898226,17 Years and 3 Months,Yes,321.9597775,120.9536638,High_spent_Large_value_payments,424.0655588,0,0.079,0.3564,0.5046,-1.3475,-1.1473 +0x85ed,CUS_0x185e,August,47,410-17-8287,Lawyer,21672.79,,0,133,1,3,"Student Loan, Mortgage Loan, and Personal Loan",0,1.165741434,2.65,3,Good,629.7942418,32.63279895,19 Years and 4 Months,No,46681,30.339014,High_spent_Large_value_payments,337.5518104,0,0.0167,-0.2584,1.3574,-0.2098,-0.6088 +0x85f9,CUS_0x4f51,August,26,977-36-4651,Writer,20488.9,,10,199,26.88954781,9,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Not Specified, Personal Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Not Specified",45.59135773,28.07179264,6.04,14,Bad,4087.238243,37.67218763,1 Years and 2 Months,Yes,1413.774462,,Low_spent_Small_value_payments,227.668146,0,0.2521,0.804,0.5005,-0.8794,-0.9337 +0x8605,CUS_0x652f,August,29,#F%$D@*&8,Journalist,69654,,6,10,26.88954781,6,"Credit-Builder Loan, Home Equity Loan, Not Specified, Not Specified, Student Loan, and Credit-Builder Loan",22.58091375,12,22.44,10,Bad,3002.69,29.34265772,12 Years and 0 Months,Yes,1500.257682,135.2301297,High_spent_Medium_value_payments,471.5321067,0,-0.3151,-0.4561,-0.4288,-1.282,1.4177 +0x8611,CUS_0x9d29,August,45,007-02-9848,Scientist,20468.75,,8,1374,20.95700519,6,"Student Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Auto Loan, and Mortgage Loan",25.1644795,16,5.59,10,Bad,3498.320954,33.62433282,3 Years and 6 Months,Yes,1387.98503,52.03416443,Low_spent_Small_value_payments,274.9033527,0,-1.711,-0.919,-0.1023,-0.0216,-0.3933 +0x861d,CUS_0xb98,August,32,483-44-1274,Doctor,85740.33,6871.0275,8,7,18,6,"Auto Loan, Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, and Not Specified",,16,11.64,9,Standard,561.74,24.19170612,11 Years and 11 Months,Yes,398.5896165,843.6204578,Low_spent_Small_value_payments,,0,0.0428,1.1147,-0.413,-0.8337,-0.0362 +0x8629,CUS_0x5f10,August,20,776-14-7936,Scientist,24238.03,,8,7,2915,1,Credit-Builder Loan,17.03538905,13,3.1,8,Standard,349.88,34.88472237,22 Years and 9 Months,No,15.19501014,212.9311817,Low_spent_Small_value_payments,275.7573915,0,-0.0802,0.7587,0.6834,1.147,1.596 +0x8635,CUS_0x2e0f,August,49,023-04-9631,Doctor,111940.64,9348.386667,3,7,5,1,Payday Loan,14.3124833,,7.69,4,Standard,598.18,32.52622227,30 Years and 11 Months,No,90.87489069,198.0371282,High_spent_Medium_value_payments,895.9266478,0,-0.0721,-1.8814,-1.984,-2.5012,0.7677 +0x8641,CUS_0x15f8,August,37,979-81-8610,Developer,69840.02,5874.001667,6,5,10,1,Payday Loan,,8,8.42,4,Good,603.2363674,40.27629316,19 Years and 2 Months,No,49.69735077,,!@9#%8,630.7955053,0,1.1446,-0.8423,-0.5507,0.6089,1.7423 +0x864d,CUS_0xa088,August,27,599-50-4906,Journalist,32012.57,,4,7,20,1,Personal Loan,24.75172915,16,13.81,5,_,87.33,32.04416691,32 Years and 10 Months,Yes,19.87326286,10000,Low_spent_Small_value_payments,404.9549232,0,0.3316,-0.6641,0.2337,0.0225,-0.5496 +0x8659,CUS_0xb276,August,46,#F%$D@*&8,Writer,64090.04,,4,7,7.288361749,2,"Auto Loan, and Debt Consolidation Loan",4.462346276,8,6.7,9,Good,353.1958287,23.71043936,19 Years and 6 Months,No,604.350994,535.6378665,High_spent_Medium_value_payments,572.3244935,0,-0.1961,-0.3951,0.2072,-0.0875,0.6256 +0x8665,CUS_0x4cf1,August,36,356-73-0844,Writer,7233.01,,10,8,30,5,"Payday Loan, Home Equity Loan, Auto Loan, Personal Loan, and Auto Loan",35.69851196,24.38796762,9.16,12,Bad,2492.572506,23.28424481,,NM,18.65990246,51.37568684,Low_spent_Small_value_payments,286.639494,0,1.2284,-0.395,-0.4094,1.2784,0.2079 +0x8671,CUS_0x7bb2,August,45,112-97-6129,Mechanic,73083.44,,8,9,28.88954781,6,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",30.06613465,17.49160184,1.48,6,Bad,2793.605548,24.94652327,6 Years and 0 Months,Yes,1555.808687,238.4578325,Low_spent_Medium_value_payments,417.832066,0,-1.0122,-1.8229,-0.558,-0.3337,0.064 +0x867d,CUS_0xc125,August,45,840-41-5035,Scientist,91869.45,7426.7875,5,4,7.288361749,2,"Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",16.29804285,,11.27,2,Good,135.37,26.51481055,31 Years and 2 Months,No,168.1982894,,Low_spent_Medium_value_payments,204.1856941,0,0.8052,0.0123,0.3711,-0.9723,0.8632 +0x8689,CUS_0x2ddd,August,23,297-78-3372,Manager,38443.42,,9,8,27,3,"Not Specified, Payday Loan, and Mortgage Loan",25.07061773,,,15,Standard,1703.99,25.92080191,5 Years and 9 Months,Yes,64.49968213,90.53928653,Low_spent_Medium_value_payments,416.8228647,0,-0.4046,-0.2483,2.0821,1.9054,-1.2777 +0x8695,CUS_0x51e0,August,18,044-07-2339,Lawyer,30355.35,2193.323151,6,3,12,4,"Home Equity Loan, Auto Loan, Personal Loan, and Mortgage Loan",,5,0.91,1,Standard,1170.159845,36.62383263,16 Years and 8 Months,No,178.7702934,11674.40846,High_spent_Small_value_payments,313.3140743,0,-1.9643,0.9412,1.1286,-1.423,-1.7323 +0x86a1,CUS_0x4503,August,53,667-99-2952,Developer,17839.11,,3,3,1,2,"Auto Loan, and Auto Loan",14.60022615,11,7.43,4,_,520.94,27.45995605,21 Years and 2 Months,No,23.58999365,,Low_spent_Small_value_payments,246.5625138,0,0.65,-0.8221,-2.369,-0.0403,-0.0493 +0x86ad,CUS_0xa153,August,31,610-15-3894,Accountant,136747.8,11484.65,4,3,6,2,"Mortgage Loan, and Auto Loan",,11,7.11,2,Standard,34.14966291,27.18191766,33 Years and 4 Months,NM,135.7637816,1013.084478,Low_spent_Medium_value_payments,374.67588,0,-0.6218,-0.536,-1.1895,-1.4063,1.6203 +0x86b9,CUS_0x408c,August,80,997-04-6413,Journalist,57107.52,4980.96,8,10,17.88954781,6,"Auto Loan, Payday Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Not Specified",,29.62989033,,9,Bad,2870.966316,37.58453752,13 Years and 9 Months,Yes,1478.191502,142.4045111,Low_spent_Large_value_payments,453.1699057,0,-0.1059,1.096,0.2367,0.2741,-0.6263 +0x86c5,CUS_0xa9ad,August,30,081-80-5156,Mechanic,7457.695,503.4745833,10,6,25.06745738,6,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",40.65076381,23,23.73,8,Bad,4960.140954,38.96423243,4 Years and 3 Months,Yes,34.63209748,44.87548834,Low_spent_Small_value_payments,234.1195846,0,1.4727,0.9649,-0.631,-0.7516,-0.0912 +0x86d1,CUS_0xbeaf,August,35,946-99-5854,Entrepreneur,12127.235,894.6029167,4,4,12.06745738,1,Home Equity Loan,34.9405625,22.73079119,6.96,5,Standard,886.430496,30.02149208,31 Years and 0 Months,Yes,5.629824417,62.59318533,Low_spent_Medium_value_payments,274.516994,0,-0.2456,0.5629,-0.0827,-0.2824,0.229 +0x86dd,CUS_0xbf43,August,18,616-52-0527,Developer,49639.2,4364.6,8,501,13,2,"Home Equity Loan, and Credit-Builder Loan",9.740447657,10,14.71,7,Standard,451.16,34.94454631,8 Years and 3 Months,Yes,45.02028607,177.630163,High_spent_Medium_value_payments,463.809551,0,0.1051,0.1756,-0.6106,-0.3018,-1.2393 +0x86e9,CUS_0x734d,August,45,#F%$D@*&8,Entrepreneur,109945.32,9122.11,3,1281,9,2,"Mortgage Loan, and Home Equity Loan",27.23548811,19,9.49,8,Standard,709.14,29.32911946,,Yes,110.4149553,,Low_spent_Large_value_payments,473.9561912,0,0.7524,0.6851,0.0025,-0.1779,-1.1861 +0x86f5,CUS_0x2c55,August,18,926-53-9407,Lawyer,13646.215,,8,4,21.06745738,3,"Auto Loan, Credit-Builder Loan, and Payday Loan",27.07017667,18,19.4,10,Standard,1154.250954,40.99814632,17 Years and 0 Months,Yes,31.80020032,,Low_spent_Large_value_payments,291.0136602,0,-2.2728,-0.7393,0.0997,-0.3,0.0021 +0x8701,CUS_0xf19,August,44,148-07-6236,Musician,76054.58,6198.881667,5,3,4,3,"Not Specified, Student Loan, and Credit-Builder Loan",4.761731704,7,5.22,7,Good,1383.11,26.59276124,,No,171.6011449,10000,High_spent_Medium_value_payments,558.0615107,0,-1.8043,1.7277,0.7971,-0.4097,0.0491 +0x870d,CUS_0x7853,August,26,329-90-9486,Writer,46010.31,3692.1925,7,8,15,3,"Credit-Builder Loan, Home Equity Loan, and Personal Loan",42.43670966,27.57338497,7.93,13,Bad,1568.497129,33.24730078,12 Years and 0 Months,NM,87.48268217,,High_spent_Small_value_payments,374.3439021,0,-0.4289,1.1894,-2.1318,-0.4693,1.3265 +0x8719,CUS_0x5aa2,August,29,121-25-0802,Entrepreneur,63788.88,,8,7,17,100,,17.04958593,11,0.68,3,Standard,1081.09,29.53034735,19 Years and 9 Months,No,0,,High_spent_Medium_value_payments,599.5736904,0,-0.8792,0.5209,0.321,-0.8968,-1.8033 +0x8725,CUS_0x133d,August,21,#F%$D@*&8,Musician,15307.26,,2,1,3,0,,0,1,4.89,3,Good,705.9,38.92848361,24 Years and 10 Months,No,0,,Low_spent_Small_value_payments,354.7082218,0,-0.1712,0.8786,0.4144,-1.053,-0.0895 +0x8731,CUS_0x349b,August,35,536-69-4106,Media_Manager,13571430,8170.53,5,4,10.28836175,2,"Student Loan, and Home Equity Loan",11.73000694,11.46273973,14.87,3,Good,606.0626293,41.70236677,25 Years and 4 Months,No,150.3072804,586.8207577,High_spent_Large_value_payments,739.8624229,0,1.5321,1.8379,-1.0127,-1.7817,0.1671 +0x873d,CUS_0x7d70,August,42,749-80-5139,Developer,14378.24,1311.186667,8,8,30.88954781,6,"Student Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Auto Loan, and Payday Loan",13.93270731,10,18.45,2241,_,1823.61,29.76612327,11 Years and 2 Months,Yes,1381.336945,84.64649158,High_spent_Small_value_payments,230.805149,0,-0.2972,0.542,-0.8567,0.2463,0.9859 +0x8749,CUS_0xcb9,August,32,879-60-3713,_______,22050.56,,5,4,12,1,Home Equity Loan,,13,17.75,9,Standard,33.25588636,27.76967925,32 Years and 10 Months,Yes,148.4676519,50.12904255,High_spent_Large_value_payments,363.9777255,0,0.2446,0.8914,0.1292,-0.6857,-0.1212 +0x8755,CUS_0xc00a,August,33,240-36-9482,Scientist,36926.92,,9,5,19.06745738,2,"Mortgage Loan, and Debt Consolidation Loan",,16,-0.78,11,Bad,2219.560954,36.00711473,14 Years and 3 Months,Yes,47.07890401,169.427958,Low_spent_Medium_value_payments,344.8971834,0,0.9839,0.8145,1.4564,-1.2255,-0.6655 +0x8761,CUS_0x5fd3,August,39,884-11-5710,Lawyer,15266.8,,5,6,18.06745738,7,"Student Loan, Personal Loan, Student Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Auto Loan",,19,14.24,9,Standard,1101.250954,38.28700826,16 Years and 8 Months,NM,79.94678082,65.6223618,Low_spent_Small_value_payments,217.7339028,0,-0.6495,-0.3284,0.8154,-0.9505,0.6154 +0x876d,CUS_0x506c,August,49,041-08-8352,Musician,27268.7,,3,5,5,0,,10.39479028,9,6.7,4,Standard,1446.21,38.64566656,31 Years and 8 Months,Yes,144.1794554,164.7174808,Low_spent_Small_value_payments,360.8216859,0,-1.2706,0.1236,-3.6102,0.1389,0.5008 +0x8779,CUS_0x65e1,August,20,498-47-7214,Accountant,34642.94,3180.911667,3,5,7,3,"Mortgage Loan, Credit-Builder Loan, and Payday Loan",21.51699,20,10.84,2,_,1079.65,22.76495502,26 Years and 11 Months,Yes,49.68527131,141.0166419,High_spent_Small_value_payments,387.3892534,0,-0.3208,0.7536,-0.0032,-1.1064,0.5324 +0x8785,CUS_0x9ed4,August,22,853-99-1297,Scientist,32493.04,,3,7,10.28836175,4,"Personal Loan, Mortgage Loan, Personal Loan, and Payday Loan",,9,10.71,8,Good,412.23,37.154249,27 Years and 11 Months,No,65.75647977,10419.93746,Low_spent_Large_value_payments,234.1220739,0,0.1898,0.3732,0.2025,-0.0196,-0.9142 +0x8791,CUS_0x376e,August,48,084-31-1205,Mechanic,104255.67,8571.9725,6,3,18,3,"Payday Loan, Credit-Builder Loan, and Auto Loan",8.152415187,8,2.46,6,_,992.62,40.30257392,15 Years and 10 Months,No,133.9910669,484.4252824,High_spent_Small_value_payments,498.7809007,0,0.2772,-0.8608,-1.6841,1.0409,-1.7746 +0x879d,CUS_0x4e03,August,34,527-33-9915,Media_Manager,161674.84,13667.90333,1,5,8,4,"Home Equity Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",2.355749534,3.390204529,7.01,4,_,1014.732336,25.31041334,16 Years and 5 Months,No,451.3280961,960.9851913,!@9#%8,234.4770459,0,0.0725,-0.8793,-0.8765,-0.8762,0.455 +0x87a9,CUS_0x6c0f,August,25,#F%$D@*&8,Media_Manager,48331.59,3847.419395,8,9,33.95700519,6,"Payday Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Student Loan, and Auto Loan",36.58978973,22,15.7,9,Bad,3218.569309,38.20530454,12 Years and 2 Months,Yes,1780.521461,,Low_spent_Small_value_payments,5.543434514,0,-0.0653,1.8321,0.7653,1.2578,-0.2256 +0x87b5,CUS_0xb46e,August,21,816-14-8532,Doctor,81744.76,6948.063333,10,6,15,7,"Not Specified, Payday Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Student Loan, and Student Loan",43.4679803,22.56787696,18.45,17,_,2468.390784,34.84798595,8 Years and 6 Months,Yes,434.9673574,10000,Low_spent_Medium_value_payments,,0,0.4438,0.3588,-0.0577,-1.1719,-1.1299 +0x87c1,CUS_0xc0f8,August,42,346-22-6698,Mechanic,134439.4,11030.28333,0,3,1.288361749,794,"Student Loan, and Auto Loan",,10,11.57,4,Good,199.96,38.48921351,23 Years and 5 Months,No,158.044048,,High_spent_Large_value_payments,1028.086132,0,-0.2469,-0.289,0.22,-0.4028,1.5176 +0x87cd,CUS_0xbf82,August,80,768-22-1294,Developer,122618.16,10062.18,3,7,348,1,Not Specified,,21,9.14,0,Standard,664.37,44.06259088,31 Years and 10 Months,No,62.38010038,216.7098077,High_spent_Small_value_payments,987.1280919,0,-0.7005,0.4787,-0.402,-0.2281,-1.3337 +0x87d9,CUS_0x3c21,August,18,599-76-2938,Teacher,30519.74,,10,9,21.95700519,6,"Debt Consolidation Loan, Payday Loan, Not Specified, Mortgage Loan, Payday Loan, and Personal Loan",22.68372876,,25.5,10,Bad,5015.930954,26.63161569,1 Years and 0 Months,NM,1527.935923,,Low_spent_Small_value_payments,240.7288479,0,0.7974,0.3769,-0.8571,-0.0078,-1.2689 +0x87e5,CUS_0x5a6d,August,21,954-02-4606,Scientist,39891.42,3246.285,4,4,22,6,"Auto Loan, Student Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",24.91783178,18.74218182,7.69,11,_,2660.556288,23.05423267,6 Years and 10 Months,Yes,195.2203691,,High_spent_Medium_value_payments,321.353299,0,0.2077,-0.1541,-0.2058,-0.5692,-0.3275 +0x87f1,CUS_0xa299,August,45,145-74-4512,Journalist,78569.9,6667.491667,3,5,2,0,,11.67330512,10,8.76,6,Good,1316.34,35.89579985,,No,0,156.4653981,High_spent_Large_value_payments,750.2837686,0,-0.851,0.6939,2.0621,0.541,-1.1652 +0x87fd,CUS_0x8bd4,August,56,652-47-0987,Mechanic,106251.21,8805.2675,0,4,7,3,"Mortgage Loan, Payday Loan, and Not Specified",,2,6.39,3,Good,513.1,36.64801394,28 Years and 11 Months,No,245.5260121,,High_spent_Large_value_payments,684.0545598,0,-1.061,0.4114,0.0253,0.293,0.9074 +0x8809,CUS_0xa0b6,August,44,990-17-6411,Writer,63354.36,5421.53,6,6,10,100,Not Specified,,16,12.2,7,_,895.41,29.09668489,17 Years and 4 Months,NM,27.55391999,272.5579871,Low_spent_Large_value_payments,512.0410929,0,0.2894,0.116,-1.1173,-0.7158,-1.128 +0x8815,CUS_0x545e,August,45,484-23-8650,Manager,23973.16,,7,7,10,2,"Mortgage Loan, and Student Loan",17.96613887,14,13.07,11,Standard,874.39,36.10850235,32 Years and 9 Months,Yes,30.13805346,40.07544313,High_spent_Large_value_payments,373.4628367,0,0.1552,-0.3292,1.6606,-1.0278,-0.4039 +0x8821,CUS_0xa2c5,August,38,216-22-6346,Teacher,10150.185,,6,7,29.06745738,7,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Not Specified, and Student Loan",,15,7.21,14,Bad,2897.350954,27.00482568,10 Years and 4 Months,Yes,30.90755321,84.6889207,Low_spent_Medium_value_payments,234.5681131,0,-0.3732,0.6461,2.1619,-1.3932,-0.4556 +0x882d,CUS_0x983a,August,53,866-48-7201,Teacher,74213.52,6072.087064,5,6,6,0,,9.973679086,9,5.65,3,Standard,180.144307,33.59344181,18 Years and 5 Months,No,333.372936,,High_spent_Medium_value_payments,636.5684145,0,-0.9662,1.4815,-0.6787,1.8972,0.7583 +0x8839,CUS_0x3a94,August,32,642-07-8250,Mechanic,22320.13,,5,6,19.06745738,2,"Credit-Builder Loan, and Not Specified",,11,18.5,7,Standard,1649.720954,38.39154185,20 Years and 0 Months,Yes,30.85524782,236.9528437,Low_spent_Small_value_payments,210.5727039,0,0.2357,0.252,0.3873,0.1357,-0.9278 +0x8845,CUS_0x5bd3,August,35,172-11-9220,Teacher,17646.25,,4,6,14,4,"Student Loan, Payday Loan, Auto Loan, and Not Specified",24.79821824,17,18.7,8,Standard,414.4,39.71588014,7 Years and 4 Months,Yes,40.65314276,,Low_spent_Medium_value_payments,270.8989647,0,1.3807,0.7176,-1.9509,2.2064,0.0693 +0x8851,CUS_0xbfa8,August,80,349-13-3796,Doctor,16210.85,,6,3,6,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",,21,2.49,5,_,188.36,25.8367738,29 Years and 6 Months,No,30.7389485,,Low_spent_Medium_value_payments,314.0954358,0,-0.2872,-0.2579,0.219,1.0861,1.1319 +0x885d,CUS_0xaa3b,August,36,940-15-6881,Accountant,31892.18,,5,3,20,2,"Credit-Builder Loan, and Auto Loan",28.22534142,21,4.14,5,Standard,507.01,24.80060058,,No,38.144027,,High_spent_Medium_value_payments,432.9022807,0,0.1334,1.0557,-0.1328,0.7357,2.0211 +0x8869,CUS_0x41f0,August,18,803-57-7987,Teacher,18507,1561.25,6,3,14,4,"Debt Consolidation Loan, Payday Loan, Not Specified, and Personal Loan",,13,7.07,5,_,1814.83,36.49618462,10 Years and 3 Months,Yes,34.03914632,71.64193475,Low_spent_Medium_value_payments,330.4439189,0,0.8828,-0.4843,-0.4184,1.3799,-0.366 +0x8875,CUS_0x5e3e,August,31,956-17-1632,_______,29020.27,,2,4,7,1,Home Equity Loan,5.165072865,7.840448628,8.29,3,_,586.2952579,24.60335705,32 Years and 0 Months,No,12.1274433,174.3939158,Low_spent_Small_value_payments,349.1142242,0,-2.4083,-1.4624,0.4344,-0.1589,1.8971 +0x8881,CUS_0x87d4,August,28,135-14-9967,Entrepreneur,91459.48,7076.774926,8,6,20,4,"Not Specified, Home Equity Loan, Not Specified, and Debt Consolidation Loan",26.09201814,18,11.79,3,Standard,1225.407509,41.22821328,29 Years and 11 Months,No,683.4115255,,High_spent_Large_value_payments,727.2322649,0,-0.9954,-0.2518,-0.8633,-0.0991,0.7573 +0x888d,CUS_0x24e4,August,37,#F%$D@*&8,Accountant,43108.4,3362.366667,3,6,8,0,,,14,11.49,5,Good,779.1912027,34.54781048,28 Years and 8 Months,No,0,,High_spent_Large_value_payments,510.2480972,0,2.3348,-0.3875,0.5009,-0.233,1.4083 +0x8899,CUS_0xbc1c,August,36,144-47-3324,Media_Manager,16769.58,,6,5,29.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",,18,8.87,11,Bad,2192.820954,41.13865034,7 Years and 6 Months,Yes,63.5484486,130.333056,Low_spent_Medium_value_payments,192.9447075,0,-0.229,0.723,-0.3039,0.9604,-0.8781 +0x88a5,CUS_0x8bb9,August,22,024-41-0864,Developer,38477.4,3374.45,9,8,22,3,"Credit-Builder Loan, Personal Loan, and Home Equity Loan",19.61785274,15,9.21,12,_,2343.6,30.20644801,12 Years and 8 Months,Yes,89.53664269,120.6394254,High_spent_Small_value_payments,387.2689319,0,-0.6538,0.3553,0.164,0.4213,0.175 +0x88b1,CUS_0x4c7d,August,20,165-68-6225,Manager,99194.19,,3,6,7,2,"Debt Consolidation Loan, and Home Equity Loan",19.67189672,13,18.75,11,_,573.52,34.49320038,9 Years and 5 Months,Yes,109.2107085,514.5329131,Low_spent_Medium_value_payments,509.2746284,0,0.5623,-0.292,-0.3821,0.1891,-0.7693 +0x88bd,CUS_0x1eff,August,29,788-07-1050,Developer,12410.005,,3,5,12.06745738,7,"Payday Loan, Home Equity Loan, Not Specified, Not Specified, Payday Loan, Mortgage Loan, and Payday Loan",27.87477047,19,19.5,6,Standard,1510.290954,27.06443529,19 Years and 0 Months,Yes,41.75602566,66.63673757,Low_spent_Small_value_payments,264.6036571,0,0.9936,1.291,-0.1596,-0.6073,-1.1795 +0x88c9,CUS_0x8669,August,47,247-85-1293,_______,170759.4,,2,1,9.288361749,2,"Home Equity Loan, Not Specified, and Student Loan",16.12150326,,3.15,8,_,12.65,33.74258934,26 Years and 2 Months,No,358.8601966,681.3761704,High_spent_Medium_value_payments,1024.496094,0,0.231,-0.0604,0.9367,1.9909,-1.9781 +0x88d5,CUS_0x61d4,August,22,554-77-7865,_______,94913.16,,7,5,10,3,"Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",10.40176112,8.112550374,1.51,1475,Standard,850.5595345,36.39570603,21 Years and 6 Months,No,131.998346,156.6098824,High_spent_Small_value_payments,784.2347717,0,-1.6914,-1.9311,0.0478,0.8057,-1.0577 +0x88e1,CUS_0x66df,August,41,584-61-3950,Lawyer,59977.98,,8,10,28.06745738,100,"Mortgage Loan, Payday Loan, Payday Loan, Home Equity Loan, Not Specified, Personal Loan, and Home Equity Loan",,20,19.17,10,Bad,4695.620954,41.09575576,7 Years and 9 Months,Yes,251.9325109,35.54398766,High_spent_Large_value_payments,442.9197135,0,0.1888,1.4063,1.4927,0.3579,-0.5511 +0x88ed,CUS_0xbabe,August,25,547-62-1545,Mechanic,19966.51,1768.875833,8,8,32.95700519,7,"Payday Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Credit-Builder Loan",,28.21560263,9.18,14,Bad,5598.406601,28.58231918,11 Years and 9 Months,Yes,1399.183516,110.609268,High_spent_Small_value_payments,206.0444305,0,0.4062,-0.183,-0.4051,-1.1631,-0.1069 +0x88f9,CUS_0x6b2,August,53,675-07-5555,Engineer,75893.07,,6,5,1,0,,20.70854234,16,3.37,1,Good,451.8720753,31.688561,19 Years and 10 Months,No,0,318.0745701,High_spent_Small_value_payments,611.044778,0,1.0873,-1.9154,-0.1219,-0.1629,1.2059 +0x8905,CUS_0x930d,August,38,878-21-7485,_______,69312.12,5956.01,8,6,6.288361749,4,"Mortgage Loan, Auto Loan, Payday Loan, and Student Loan",12.81829125,,8.43,8,Standard,192.6484557,27.09551588,16 Years and 8 Months,Yes,220.1614408,653.0867768,High_spent_Small_value_payments,402.2902435,0,-0.3198,0.1071,-0.4245,0.1844,0.055 +0x8911,CUS_0xb87,August,45,717-04-9189,Entrepreneur,31564.72,,6,6,13,4,"Not Specified, Home Equity Loan, Not Specified, and Personal Loan",19.10475288,17,15.99,6,Standard,1077.62,25.95448242,16 Years and 9 Months,Yes,73.39786305,20.78601434,High_spent_Large_value_payments,408.7554559,0,0.4794,2.7111,-0.4147,-0.0304,-2.9885 +0x891d,CUS_0x857e,August,21,251-46-1218,Entrepreneur,52410.92,4479.576667,3,4,5.288361749,4,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Personal Loan",20.93305416,18,8.63,4,Standard,361.32,36.64185367,18 Years and 0 Months,Yes,92.60129053,,Low_spent_Small_value_payments,187.9662371,0,0.3879,0.5488,0.0048,-1.0273,0.2108 +0x8929,CUS_0xacb7,August,28,420-47-3027,Developer,16054.15,1196.845833,8,5,30,8,"Payday Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",,21.52919179,27.12,14,Bad,4611.364254,33.27547982,10 Years and 5 Months,Yes,66.92608582,87.56819457,Low_spent_Medium_value_payments,245.1903029,0,-0.2925,-1.1359,-1.3527,-1.1632,-0.3407 +0x8935,CUS_0x97ca,August,25,822-60-2559,Developer,20616.95,,10,6,16.06745738,5,"Mortgage Loan, Home Equity Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,30.25549673,16.89,6,Bad,2148.461059,23.73487267,8 Years and 0 Months,Yes,48.0956134,70.53377488,Low_spent_Small_value_payments,292.2582404,0,0.9851,-1.253,1.3414,1.1381,1.9935 +0x8941,CUS_0x3adb,August,27,160-10-4534,Architect,103351.8,8465.65,3,7,8,2,"Personal Loan, and Student Loan",,9.256652881,10.03,8,Standard,1400.113627,29.53270436,8 Years and 10 Months,Yes,140.8582359,,Low_spent_Medium_value_payments,270.2141844,0,-0.4971,1.0709,1.3098,0.034,0.0479 +0x894d,CUS_0x2ae9,August,41,#F%$D@*&8,Engineer,41073.26,,8,10,26.06745738,3,"Home Equity Loan, Auto Loan, and Home Equity Loan",32.34147239,15,6.22,13,Bad,2669.730954,34.46565945,12 Years and 11 Months,Yes,87.32680436,69.38787434,High_spent_Medium_value_payments,435.3422,0,-0.3979,-0.4531,-0.6522,1.1451,2.0215 +0x8959,CUS_0x19d4,August,32,999-95-7259,_______,22751.59,1759.965833,7,5,12,4,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",20.83480006,17.02435564,6.75,3,_,1593.920582,26.18023249,20 Years and 10 Months,No,38.35028233,89.80981177,Low_spent_Medium_value_payments,327.8364892,0,0.4922,0.254,1.4597,1.385,1.4571 +0x8965,CUS_0xbe03,August,27,831-77-3712,Manager,62325.9,5033.970428,3,7,9,100,"Student Loan, Credit-Builder Loan, Payday Loan, and Student Loan",,9,12.92,4,Good,1123.592647,38.84130753,24 Years and 3 Months,NM,456.0519132,76.9913207,High_spent_Large_value_payments,501.2992488,0,-0.027,-1.9471,-0.0537,-1.2895,0.1119 +0x8971,CUS_0x3214,August,30,229-85-4742,Architect,37550.74,2930.228333,0,5,8.288361749,2,"Student Loan, and Debt Consolidation Loan",0,0,7.96,0,Good,379.1934376,32.87260689,22 Years and 11 Months,No,61.35582984,,Low_spent_Small_value_payments,313.139964,0,-0.4425,0.1899,-1.1122,0.1761,-0.3777 +0x897d,CUS_0xab0f,August,40,118-42-6441,Engineer,60031.96,5148.663333,10,9,23.95700519,9,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",55.98971037,29.87099838,28.85,6,Bad,4009.047786,31.50494991,,Yes,1585.651518,190.516945,Low_spent_Medium_value_payments,297.6475011,0,-0.0707,0.3997,-1.1811,0.3953,0.4502 +0x8989,CUS_0x5734,August,31,484-76-3179,Developer,135883,,6,7,7.288361749,0,Not Specified,10.83556567,10,16.73,2,Standard,122.4659039,26.69562169,23 Years and 5 Months,Yes,109.0751641,1283.586841,Low_spent_Small_value_payments,552.0478739,0,-0.7829,0.3557,-2.3028,0.0769,1.1527 +0x8995,CUS_0x695c,August,80,#F%$D@*&8,Teacher,67812.74,5821.061667,3,3,8,0,,,,6.32,8,Good,1201.316053,27.65162811,26 Years and 9 Months,No,0,566.7104293,Low_spent_Medium_value_payments,354.4340413,0,-0.4215,-0.8382,1.5019,-0.0873,-0.8409 +0x89a1,CUS_0xbaf8,August,55,572-88-7813,Manager,105667.62,8668.635,7,3,15,4,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",18.04243688,12,6.87,876,Standard,511.96,33.91542578,26 Years and 6 Months,No,318.5010526,178.4158204,High_spent_Large_value_payments,609.946627,0,1.1927,0.8679,-0.4538,-0.8935,-0.6348 +0x89ad,CUS_0x84f5,August,26,348-47-1523,Media_Manager,81462.18,7048.515,6,7,19,4,"Student Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",16.43462887,14,10.66,8,Standard,1200.63,25.61054326,31 Years and 6 Months,Yes,165.8188604,345.9886897,Low_spent_Medium_value_payments,473.04395,0,-1.2469,-0.6928,-1.5509,0.9368,0.0265 +0x89b9,CUS_0xa0dc,August,49,596-48-5931,Mechanic,19271.825,,0,4,6.288361749,0,,7.408765217,9,8.51,8,Good,101.1337059,36.71050585,18 Years and 4 Months,No,0,485.4901275,High_spent_Small_value_payments,391.3269956,0,0.2653,0.2349,1.6217,0.2597,3.6682 +0x89c5,CUS_0x27a3,August,40,#F%$D@*&8,Journalist,31357.42,,0,4,8,4,"Credit-Builder Loan, Student Loan, Mortgage Loan, and Not Specified",7.247661267,10,4.48,3,Good,1196.115691,26.68083583,28 Years and 5 Months,No,80.5133837,91.65961695,High_spent_Medium_value_payments,379.6488083,0,1.596,-0.4508,0.674,-1.8192,1.5609 +0x89d1,CUS_0x1139,August,32,952-67-5462,Scientist,94991.82,8144.985,7,6,13,0,,,16,24.45,6,_,1320.61,39.28777693,26 Years and 5 Months,Yes,0,105.98186,High_spent_Large_value_payments,948.51664,0,-0.3035,0.2389,-0.8095,-0.5504,-0.4432 +0x89dd,CUS_0x2c9f,August,18,469-09-7205,Teacher,52982.07,4344.1725,6,8,32.95700519,8,"Payday Loan, Payday Loan, Not Specified, Personal Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",29.67872878,15,18.37,8,_,4174.750954,33.80289317,8 Years and 11 Months,Yes,1595.125342,76.67527022,High_spent_Large_value_payments,281.5662689,0,0.988,1.4169,1.59,-0.1631,0.4402 +0x89e9,CUS_0x4423,August,80,675-66-2016,Scientist,15305.23,,8,5,3,4,"Auto Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",26.06463779,22.15441643,10.57,0,_,1568.382214,25.13851724,31 Years and 5 Months,No,189.9448731,53.40867269,Low_spent_Large_value_payments,299.9832878,0,1.3771,-1.3996,-0.6375,-1.2022,-0.3255 +0x89f5,CUS_0x4849,August,23,021-95-9989,Architect,15987.51,1155.2925,10,6,30,7,"Home Equity Loan, Not Specified, Not Specified, Student Loan, Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",44.79017694,25,21.98,10,Bad,2698.66,27.00784387,1 Years and 4 Months,Yes,67.96593726,57.47876006,Low_spent_Small_value_payments,280.0845527,0,-1.3404,1.0627,-0.9252,-0.3261,1.6662 +0x8a01,CUS_0x69c7,August,31,600-22-2209,Architect,17653.7,,10,8,20.88954781,6,"Personal Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",31.82622497,23.66084354,-1.95,13,Bad,2118.04405,36.47861125,13 Years and 4 Months,Yes,1377.684722,84.45349594,Low_spent_Small_value_payments,275.3458675,0,-0.8302,1.5881,0.1869,-1.4101,-1.0345 +0x8a0d,CUS_0x60d5,August,50,329-64-3575,Doctor,38217.6,3204.8,6,6,13,2,"Not Specified, and Auto Loan",18.7942046,,6.29,5,Standard,448.54,27.90713303,22 Years and 8 Months,No,57.88171693,111.3169965,High_spent_Medium_value_payments,401.2812866,0,-0.4836,-0.1665,-1.1506,0.1009,0.5956 +0x8a19,CUS_0xa9f5,August,26,739-75-2776,Teacher,15088.35,,7,8,30.06745738,3,"Credit-Builder Loan, Auto Loan, and Home Equity Loan",,21.81019015,8.88,,Bad,2524.797006,27.42003235,16 Years and 0 Months,Yes,37.10487867,102.2618442,Low_spent_Small_value_payments,247.0492391,0,-2.0218,0.8406,-0.2855,-0.9043,-1.0898 +0x8a25,CUS_0x68d8,August,18,#F%$D@*&8,Media_Manager,19784.23,,7,9,20.06745738,5,"Mortgage Loan, Payday Loan, Payday Loan, Student Loan, and Home Equity Loan",30.82606347,16,3.63,16,Bad,1492.370954,25.20228579,17 Years and 11 Months,Yes,66.81748257,16.44642199,High_spent_Large_value_payments,316.6843908,0,-1.4166,-3.0584,1.4946,-0.7163,1.5142 +0x8a31,CUS_0x46d5,August,26,416-55-5307,Doctor,14560.52,,6,8,30.88954781,9,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",,23,16.99,7,Bad,3831.31,32.45872808,8 Years and 9 Months,Yes,1391.21572,20.89375595,!@9#%8,262.5981095,0,-0.8173,-0.7477,-0.3422,1.1026,0.4512 +0x8a3d,CUS_0x18f7,August,41,498-86-5960,Musician,72508.86,5920.405,6,7,20,4,"Personal Loan, Home Equity Loan, Student Loan, and Mortgage Loan",16.53629617,14,8.74,0,Standard,1057.79,31.03648969,32 Years and 5 Months,No,171.6244797,,High_spent_Medium_value_payments,472.1000692,0,-0.1202,-0.7586,1.4955,0.3436,1.4104 +0x8a49,CUS_0x9a70,August,31,#F%$D@*&8,Mechanic,15264.39,1383.0325,1,4,5,0,,11.26726957,10,0.95,2,_,104.07,22.61820775,,No,0,56.26703626,!@9#%8,372.0362137,0,-0.305,-0.0361,-0.0216,0.4687,-1.2198 +0x8a55,CUS_0xb0f7,August,56,252-52-6324,Musician,30678.73,2615.560833,8,4,11,3,"Personal Loan, Home Equity Loan, and Auto Loan",,,1.84,5,Standard,1484.42,36.35920536,18 Years and 3 Months,Yes,69.33783255,129.1089051,Low_spent_Small_value_payments,353.1093457,0,2.1269,0.9031,2.3626,-2.2822,1.6529 +0x8a61,CUS_0xab2,August,25,979-70-2397,_______,41751.65,3442.304167,5,1,1.288361749,0,Debt Consolidation Loan,,,-3.68,6,Good,279.17,24.29592709,16 Years and 11 Months,No,32.80100638,554.3180247,!@9#%8,467.0488466,0,-0.5655,-1.6255,-0.345,-2.5558,-0.0926 +0x8a6d,CUS_0x21dc,August,48,241-53-8475,Developer,130125.04,10871.75333,5,2,11,2,"Mortgage Loan, and Debt Consolidation Loan",0,0,3.82,3,Good,1061.775612,30.53285251,16 Years and 6 Months,No,204.2856498,,High_spent_Large_value_payments,1009.323141,0,1.2362,0.6501,0.1442,0.781,-0.7294 +0x8a79,CUS_0x69f0,August,50,669-75-6091,Accountant,86638.52,7333.876667,1,4,3.288361749,4,"Debt Consolidation Loan, Personal Loan, Auto Loan, and Student Loan",10.87882346,11,5.37,1,_,892.1064298,32.54271271,27 Years and 8 Months,NM,241.8134483,494.4027251,High_spent_Large_value_payments,666.3667573,0,0.5231,-0.3575,1.6272,0.6122,0.2977 +0x8a85,CUS_0x3b2e,August,18,527-96-0772,_______,17609.57,1442.464167,6,10,17.06745738,5,"Mortgage Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",17.76398095,9,16.39,11,Standard,2837.310954,36.36422877,15 Years and 2 Months,Yes,61.70650327,60.5692986,Low_spent_Medium_value_payments,275.2503268,0,-2.3381,-0.4594,0.1179,1.4971,0.2084 +0x8a91,CUS_0x2595,August,38,508-13-1248,Writer,14688.4,,7,6,8,3,"Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,15,14.68,5,Standard,840.9336175,23.63467519,11 Years and 6 Months,Yes,24.35419767,55.28575623,High_spent_Small_value_payments,291.961683,0,-0.8087,-0.3283,0.6426,-0.2392,0.4195 +0x8a9d,CUS_0x70b,August,46,729-67-4171,Entrepreneur,109945.32,9287.11,8,3,11,100,,21.60976497,14,4.31,3,Standard,480.83,39.10133916,21 Years and 4 Months,No,0,214.1441949,High_spent_Medium_value_payments,964.5668051,0,-0.276,1.742,0.08,-0.362,0.9308 +0x8aa9,CUS_0xc6be,August,22,111-98-2664,Entrepreneur,44962.88,,3,2,10.28836175,0,Student Loan,7.452160432,8,9.04,0,Good,565.48,29.4015773,20 Years and 10 Months,No,18.86286845,744.0276845,Low_spent_Small_value_payments,299.2375747,0,1.1534,-0.4848,-0.3922,0.2411,0.8582 +0x8ab5,CUS_0x96a6,August,50,973-70-9064,Lawyer,90371.01,,3,4,2.288361749,4,"Not Specified, Credit-Builder Loan, Student Loan, and Credit-Builder Loan",2.050041963,5,7.26,8,_,850.5752593,38.0969329,25 Years and 5 Months,No,254.7579659,503.9938602,High_spent_Large_value_payments,671.6398858,0,1.5383,-0.2909,-0.187,0.121,0.6592 +0x8ac1,CUS_0x8b7a,August,26,809-40-8569,Scientist,8928.69,,9,10,16,5,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Auto Loan, and Not Specified",34.35784941,17.04044262,18.46,10,Bad,1664.297622,33.62945072,11 Years and 6 Months,Yes,27.30559528,44.58711391,Low_spent_Medium_value_payments,268.2130408,0,-0.5187,0.1853,0.7289,-0.7818,0.7517 +0x8acd,CUS_0x5534,August,40,246-34-3138,Developer,23200.82,,3,7,5,0,,27.89936566,18,12.73,6,Standard,987.07,28.00959701,17 Years and 11 Months,Yes,0,60.73967493,!@9#%8,397.0004917,0,0.8316,-0.9169,-0.1001,0.0673,-1.5768 +0x8ad9,CUS_0xa6f1,August,80,499-80-5776,_______,69865.22,5775.101667,3,294,7,0,,14.70480677,11,14.28,2,Standard,656.7,28.92350306,29 Years and 5 Months,Yes,0,364.6117878,Low_spent_Small_value_payments,502.8983788,0,-0.5191,0.3757,0.1663,-0.4895,1.6532 +0x8ae5,CUS_0xad75,August,27,164-86-6702,Teacher,14388.77,1060.064167,4,5,16,100,"Credit-Builder Loan, Auto Loan, and Home Equity Loan",10.14783096,12.08247161,18.17,9,Standard,2031.661316,31.23240051,6 Years and 0 Months,Yes,30.0950708,101.7267095,Low_spent_Small_value_payments,264.1846364,0,-0.3588,-1.596,0.0619,-0.9483,-0.2432 +0x8af1,CUS_0x8966,August,60,824-88-9636,Mechanic,103187.22,,0,3,5.288361749,0,,,8,4.07,4,_,717.4234089,41.54229503,22 Years and 6 Months,No,48352,11775.62722,High_spent_Medium_value_payments,910.7514833,0,0.0649,-0.2735,-1.737,0.5417,0.3049 +0x8afd,CUS_0x286a,August,18,#F%$D@*&8,Accountant,83218,6966.833333,8,6,18,5,"Auto Loan, Mortgage Loan, Not Specified, Student Loan, and Credit-Builder Loan",34.07590513,25,12.84,9,Bad,2159.69,38.33964324,11 Years and 4 Months,Yes,246.5636447,256.9134673,High_spent_Medium_value_payments,443.2062214,0,1.2224,0.6218,1.9494,-0.0606,-1.3319 +0x8b09,CUS_0x1b62,August,27,564-56-0485,Developer,8805.955,,6,5,19,4,"Credit-Builder Loan, Not Specified, Student Loan, and Credit-Builder Loan",18.32585916,,13.04,10,Standard,532.166161,27.77687691,10 Years and 2 Months,Yes,23.57735329,,Low_spent_Large_value_payments,257.5780155,0,0.8493,-0.2674,1.1932,1.0089,0.2952 +0x8b15,CUS_0x3a26,August,33,421-39-6944,Architect,83003.64,,8,8,26.88954781,6,"Student Loan, Personal Loan, Student Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,22,26.24,10,_,4171.563071,31.63971911,13 Years and 2 Months,Yes,2192.969556,575.5892528,Low_spent_Large_value_payments,60.41382285,0,-0.7031,-0.7739,-0.0173,0.678,1.3837 +0x8b21,CUS_0x3d71,August,38,133-11-8146,Media_Manager,128674.44,10551.87,1,7,2,0,,0,2.424573305,8.49,4,_,1035.387957,39.55415639,24 Years and 6 Months,No,0,593.9893053,Low_spent_Medium_value_payments,741.1976947,0,0.6415,0.0665,0.1367,-0.3419,1.6143 +0x8b2d,CUS_0xf3e,August,43,690-21-5356,Journalist,9846.55,,5,6,16,1,Credit-Builder Loan,14.253295,11.58753091,13.14,8,Standard,622.892822,34.47335871,18 Years and 9 Months,Yes,5.218466359,60.07997802,Low_spent_Small_value_payments,294.556139,0,-1.2465,-1.5945,-0.8359,-0.9806,-0.8866 +0x8b39,CUS_0x10c0,August,39,658-53-1756,Architect,49454.13,,8,5,23,2,"Payday Loan, and Auto Loan",,27.5304366,4.95,8,Bad,1573.922677,28.97842663,13 Years and 4 Months,NM,73.34635945,,Low_spent_Medium_value_payments,459.0780762,0,-1.0491,1.2291,0.9022,0.5502,0.9376 +0x8b45,CUS_0x3846,August,29,351-48-9736,Teacher,18019.14,,5,5,19,4,"Credit-Builder Loan, Auto Loan, Personal Loan, and Mortgage Loan",16.14026363,,18.17,8,Standard,1475.32,35.93877808,18 Years and 3 Months,NM,55.05032975,112.9436657,Low_spent_Small_value_payments,296.2655045,0,-0.3164,0.0231,0.5839,-1.3602,-0.5225 +0x8b51,CUS_0x79dd,August,21,432-18-9218,Teacher,73409.8,6202.483333,7,9,18,3,"Auto Loan, Student Loan, and Auto Loan",15.08265883,11,18.13,10,Standard,2529.51,24.30089964,18 Years and 9 Months,Yes,91.94082317,770.5660993,Low_spent_Small_value_payments,47.74141088,0,0.2484,0.7045,-0.7618,-0.6815,0.1512 +0x8b5d,CUS_0xc113,August,28,993-82-1651,Mechanic,65397.5,5287.791667,6,6,18,0,,13.6952617,11,3.76,7,Standard,1392.76,33.93453488,31 Years and 6 Months,Yes,0,658.3130568,Low_spent_Small_value_payments,160.4661099,0,0.0474,0.544,-0.2097,-1.1418,0.7948 +0x8b69,CUS_0x47e8,August,49,835-63-0464,Entrepreneur,39131.02,3001.918333,2,6,8.288361749,2,"Home Equity Loan, Home Equity Loan, and Auto Loan",0.147147838,4.507569508,0.8,6,_,48.05954971,37.81870982,,No,52.4099686,764.701255,Low_spent_Small_value_payments,193.0180707,0,-0.1693,-2.1143,-0.0564,-0.3012,0.6961 +0x8b75,CUS_0x1afd,August,35,662-00-3287,Teacher,100191.36,8058.28,4,7,6,2,"Student Loan, and Mortgage Loan",,21,13.61,,Standard,496.71,38.11465194,20 Years and 3 Months,No,145.5814448,274.7410649,Low_spent_Large_value_payments,655.5054902,0,2.0401,-0.3209,0.1267,-0.6745,-0.3878 +0x8b81,CUS_0xacaf,August,31,449-32-0792,Scientist,19431.83,,3,6,8,4,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Payday Loan",11.93773484,9,11.63,3,Standard,865.23,30.08891782,30 Years and 0 Months,Yes,49.3823642,37.08771157,High_spent_Small_value_payments,353.2618409,0,0.6851,-1.2882,-1.3903,0.5407,0.4412 +0x8b8d,CUS_0x5a72,August,26,551-70-7456,Architect,58144.56,,6,3,8,3,"Credit-Builder Loan, Not Specified, and Payday Loan",16.1236619,11.3632618,18.84,1726,Standard,2756.71904,30.11461839,19 Years and 0 Months,Yes,75.29088273,109.1520427,!@9#%8,544.6950745,0,0.0216,0.8196,1.116,1.9551,0.9912 +0x8b99,CUS_0x56b2,August,24,505-20-4361,Mechanic,30466.74,,6,4,15,7,"Credit-Builder Loan, Personal Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Auto Loan, and Not Specified",14.2257355,,10.53,7,Standard,670.48,27.96073325,13 Years and 0 Months,NM,114.5975537,42.54188232,High_spent_Large_value_payments,320.7500639,0,0.5241,-0.5154,-0.2795,-0.2102,0.5213 +0x8ba5,CUS_0xaa3a,August,51,107-75-7844,Developer,111059.94,,5,7,2,100,,,13,0.53,0,Good,418.69,31.11511495,30 Years and 9 Months,No,0,134.1692136,High_spent_Large_value_payments,1021.330286,0,0.4241,1.4496,1.2142,0.1823,0.5069 +0x8bb1,CUS_0xb00,August,38,585-13-6101,Writer,100284.24,8288.02,5,7,17.28836175,2,"Payday Loan, Mortgage Loan, and Credit-Builder Loan",6.4516882,8,2.1,4,Standard,333.25,30.8877254,30 Years and 8 Months,Yes,148.351807,10419.93746,High_spent_Large_value_payments,849.3378149,0,0.6925,1.3118,-0.1512,0.7377,1.0535 +0x8bbd,CUS_0x7d83,August,31,227-93-6471,Lawyer,74902.8,6272.9,8,8,33.88954781,9,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Auto Loan, Personal Loan, Payday Loan, and Home Equity Loan",,19.56865369,16.13,8,Bad,3316.600712,37.47393134,13 Years and 4 Months,Yes,1858.234978,364.202369,High_spent_Small_value_payments,,0,-0.8674,-0.4946,-0.0731,-1.087,1.5728 +0x8bc9,CUS_0x58f4,August,45,331-91-1785,Accountant,107360.1,9145.675,7,7,13,1,Payday Loan,23.4436361,19.65671649,8.04,5,Standard,1619.875586,35.35663418,17 Years and 2 Months,Yes,81.23913389,563.6891354,Low_spent_Medium_value_payments,549.6392307,0,2.0964,-0.0199,0.7779,1.1621,-1.9436 +0x8bd5,CUS_0x8ed,August,27,315-27-3562,Architect,42796.52,3461.376667,4,4,9,0,,,17,13.85,10,_,631.12,37.27115128,20 Years and 3 Months,Yes,0,,Low_spent_Small_value_payments,186.9591441,0,0.0767,1.2205,-0.3242,-0.6302,0.7782 +0x8be1,CUS_0xae7c,August,43,853-37-6310,Musician,35196.36,,10,7,19.06745738,2,"Personal Loan, and Home Equity Loan",,23.33618796,8.28,10,Standard,2398.950746,40.22150151,7 Years and 2 Months,Yes,48.25920998,94.61193694,High_spent_Small_value_payments,383.0115651,0,-0.8808,0.2082,-1.1803,0.3985,-1.0056 +0x8bed,CUS_0x9562,August,43,677-93-2447,Writer,28843.09,,5,6,15,2,"Mortgage Loan, and Home Equity Loan",,17,10.55,8,Standard,74.41,35.0078298,20 Years and 6 Months,NM,25.7834897,152.1989096,Low_spent_Small_value_payments,351.476684,0,-0.7633,1.4774,-0.5822,1.4588,-1.058 +0x8bf9,CUS_0x6b49,August,46,424-32-0755,Mechanic,31931.73,2652.9775,7,3,10,3,"Home Equity Loan, Personal Loan, and Payday Loan",22.01740746,19,8.16,2,Good,534.3163135,28.47541397,31 Years and 9 Months,No,77.81784184,84.45198756,High_spent_Medium_value_payments,361.8039533,0,0.2449,-0.4774,-0.0246,-0.7679,0.9024 +0x8c05,CUS_0xb82d,August,28,977-03-1207,Doctor,52475.7,,8,8,15.88954781,6,"Mortgage Loan, Student Loan, Student Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",41.18268138,30.11890237,22.13,9,_,3814.824536,22.2978897,7 Years and 10 Months,Yes,1573.487255,,Low_spent_Small_value_payments,81.29913328,0,0.5451,-0.2002,0.3685,-0.5105,0.1224 +0x8c11,CUS_0x6fea,August,36,444-51-2059,Entrepreneur,67854.3,,3,7,6.288361749,0,,8.366217203,9,3.38,,Good,543.4781593,24.78523073,31 Years and 4 Months,No,0,706.6561752,Low_spent_Small_value_payments,596.3893544,0,0.9895,1.5585,-0.0962,-0.7381,0.5226 +0x8c1d,CUS_0x30cf,August,80,489-98-9033,Scientist,18927.65,1779.304167,6,7,24,6,"Student Loan, Mortgage Loan, Auto Loan, Personal Loan, Home Equity Loan, and Personal Loan",21.53500693,18.00519784,3.61,12,Standard,2192.92826,38.606387,19 Years and 11 Months,Yes,62.5402524,48.10410273,High_spent_Medium_value_payments,317.2860615,0,-0.822,-0.65,1.409,-0.0488,-0.8602 +0x8c29,CUS_0x8bd3,August,26,428-88-1742,Journalist,14982.1,,8,10,19.88954781,6,"Payday Loan, Mortgage Loan, Student Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",,24.72026945,7.23,17,Bad,4853.407132,35.33483255,10 Years and 5 Months,Yes,1391.971608,,Low_spent_Medium_value_payments,242.5469236,0,-0.0098,1.5954,-0.5091,3.1416,0.2045 +0x8c35,CUS_0x2634,August,27,221-75-3766,Mechanic,9127.26,991.605,7,9,26,2,"Not Specified, and Debt Consolidation Loan",39.56326731,25,1.65,17,Bad,1399.89,27.08729446,8 Years and 10 Months,Yes,12.88116184,,Low_spent_Small_value_payments,247.9533516,0,0.0923,-0.1976,0.7166,-0.864,0.0895 +0x8c41,CUS_0x9146,August,45,845-07-7226,Writer,16989.6,1165.8,5,6,7,3,"Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,,10.09,6,Good,52.93265886,25.93614883,20 Years and 10 Months,No,29.19702392,52.89962994,High_spent_Medium_value_payments,292.2975387,0,2.4455,0.6168,0.1747,1.4871,0.2054 +0x8c4d,CUS_0xb7b1,August,21,607-46-9294,Mechanic,90827.68,,8,4,20,3,"Debt Consolidation Loan, Student Loan, and Auto Loan",15.9042315,11,-0.97,5,Standard,1167.05,35.06391592,23 Years and 0 Months,Yes,25130,157.0956778,High_spent_Large_value_payments,693.2958909,0,-1.1956,2.0172,-0.318,-0.3548,0.4743 +0x8c59,CUS_0xb0bd,August,37,744-86-5309,Accountant,26196.39,2139.0325,7,6,11,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",,13,16.97,3,Standard,459.1832156,35.47193323,30 Years and 0 Months,NM,48.53365138,59.01200378,High_spent_Medium_value_payments,362.0384142,0,-1.1114,-0.5062,1.6343,1.2652,0.6994 +0x8c65,CUS_0x6e65,August,32,963-16-7499,_______,120314,10039.16667,6,5,11,0,,27.744738,19.79643327,5.82,4,_,631.1195331,30.2163296,23 Years and 0 Months,No,0,344.1550114,High_spent_Medium_value_payments,909.7616553,0,0.0545,-0.1542,-0.3938,-0.8965,-0.0464 +0x8c71,CUS_0x2517,August,19,203-07-7505,Teacher,73099.84,,5,7,26,3,"Debt Consolidation Loan, Auto Loan, and Home Equity Loan",28.88569554,,8.12,14,Bad,2004.528248,36.50891297,7 Years and 9 Months,Yes,155.9817455,83.23027126,High_spent_Large_value_payments,608.3533166,0,0.7021,0.8558,1.2365,0.249,-0.5233 +0x8c7d,CUS_0x9079,August,44,732-80-4889,Lawyer,23211.7,,4,7,15,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",27.53400962,20,9.28,2,Standard,100.19,38.70637469,23 Years and 4 Months,No,58.5259866,147.8490014,!@9#%8,273.4558453,0,-0.1641,0.8725,2.2664,-0.132,-0.6106 +0x8c89,CUS_0x9a84,August,38,#F%$D@*&8,Scientist,60552.24,4794.02,7,5,19,4,"Student Loan, Not Specified, Home Equity Loan, and Not Specified",23.88793856,18,10.57,6,Standard,30.50843489,26.60993119,15 Years and 0 Months,Yes,168.846508,211.646883,High_spent_Medium_value_payments,378.804819,0,-1.7157,-0.5857,-0.1863,2.0879,0.3584 +0x8c95,CUS_0x5b57,August,32,763-87-9227,Accountant,81166.86,6735.905,194,4,7,2,"Payday Loan, and Mortgage Loan",18.52468565,14,7.5,10,_,1353.18,34.518073,12 Years and 0 Months,NM,135.1044836,,High_spent_Large_value_payments,651.4679409,0,0.63,-0.993,-0.8862,-0.7446,0.3277 +0x8ca1,CUS_0x339e,August,25,224-42-3295,Entrepreneur,86971.56,7053.63,8,5,4,1,Not Specified,32.94460546,22.07812129,2.98,4,_,372.2608609,31.70632126,20 Years and 10 Months,No,38.44517562,891.5717619,Low_spent_Small_value_payments,65.34606251,0,-0.4777,0.7996,0.1451,-1.0477,0.4547 +0x8cad,CUS_0x5f89,August,21,899-12-3125,Engineer,38963.38,3018.948333,6,7,28.06745738,6,"Auto Loan, Payday Loan, Not Specified, Mortgage Loan, Student Loan, and Credit-Builder Loan",41.06316962,22,10.25,13,Bad,4944.400954,31.63916435,13 Years and 2 Months,Yes,177.8434286,75.42865474,!@9#%8,281.9024621,0,-0.8638,-0.2058,-0.2338,-0.2881,0.2686 +0x8cb9,CUS_0x96ca,August,45,088-99-8644,Accountant,18849.1,,528,8,17.88954781,8,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,20,18.24,9,_,3327.28,32.67479869,13 Years and 9 Months,Yes,1399.131473,,Low_spent_Small_value_payments,144.5025139,0,-1.5487,0.3866,0.816,0.7296,0.0863 +0x8cc5,CUS_0x839b,August,49,403-71-6438,Lawyer,73119.46,5572.248969,4,3,5,4,"Personal Loan, Home Equity Loan, Not Specified, and Mortgage Loan",0.414325858,3,1.1,0,Good,1100.502786,37.08789724,26 Years and 0 Months,No,848.6793881,,!@9#%8,573.0619259,0,0.4554,0.13,0.7309,-0.8873,0.225 +0x8cd1,CUS_0x7fd9,August,56,#F%$D@*&8,Accountant,32946.22,2865.518333,0,7,10,2,"Student Loan, and Debt Consolidation Loan",14.8990139,,10.03,4,Good,1330.02,35.8710654,18 Years and 2 Months,NM,46.24458495,226.8737073,Low_spent_Small_value_payments,303.4335411,0,1.2068,0.1244,0.5218,-0.7359,0.8703 +0x8cdd,CUS_0x869b,August,34,576-94-1039,Architect,23814.73,2104.560833,3,4,10,4,"Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",17.26844535,10.18669026,13.05,8,Standard,950.9789785,29.97166448,6 Years and 6 Months,NM,76.39432093,108.8162451,High_spent_Small_value_payments,285.2455173,0,0.6565,2.5785,-0.0089,1.667,1.386 +0x8ce9,CUS_0x8f86,August,45,561-67-6184,Media_Manager,10613.34,,8,6,7,1,Not Specified,9.424351006,8.012189677,,0,_,1293.611348,23.2886408,27 Years and 6 Months,No,6.487867526,135.5427818,Low_spent_Small_value_payments,254.6138507,0,0.7496,-0.4593,1.2234,-0.9342,-0.2645 +0x8cf5,CUS_0x1ad9,August,22,625-37-5496,Journalist,19386.02,,4,4,7,3,"Payday Loan, Student Loan, and Credit-Builder Loan",,15,9.74,11,Standard,2438.26,39.70864326,15 Years and 0 Months,Yes,40.00925125,20.54877655,High_spent_Large_value_payments,365.2921389,0,1.9511,-1.2095,0.7199,-0.3645,-0.1102 +0x8d01,CUS_0x4131,August,42,508-52-1146,Media_Manager,28832.98,,7,7,7,3,"Mortgage Loan, Debt Consolidation Loan, and Auto Loan",,10,12.14,13,Standard,2576.04,27.42341988,16 Years and 4 Months,Yes,53.28671123,40.76597807,High_spent_Medium_value_payments,418.822144,0,0.0504,-1.1188,-1.6813,2.3324,0.1446 +0x8d0d,CUS_0x2df8,August,27,214-58-4052,Musician,10240.42,,10,9,24.95700519,9,"Mortgage Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Student Loan, Personal Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",43.69218397,25.89915479,9.13,10,Bad,1796.425867,26.77902146,7 Years and 8 Months,Yes,1366.457862,78.30573578,!@9#%8,217.9228659,0,2.4073,0.0331,0.5551,1.6864,0.838 +0x8d19,CUS_0x2b62,August,39,788-00-6739,Developer,110924.58,9113.715,4,7,2,0,,26.71325553,17.06583236,11.36,5,Good,1499.2037,38.71094442,20 Years and 6 Months,No,0,543.9537793,Low_spent_Small_value_payments,657.4177207,0,-0.6868,0.5879,-2.1746,-0.1406,0.1922 +0x8d25,CUS_0x9e5,August,21,873-59-6048,Media_Manager,97414.8,8134.9,8,3,12,2,"Not Specified, and Auto Loan",10.27058275,9,10.2,3,Standard,496.4,38.27654568,19 Years and 9 Months,NM,84.63705087,95.70067337,High_spent_Large_value_payments,873.1522758,0,1.1888,-0.4893,-0.5759,0.3724,0.8823 +0x8d31,CUS_0x24ef,August,44,856-24-1723,Writer,18110.7,1733.225,611,8,20,7,"Personal Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Student Loan",,21.65117258,4.09,14,Bad,2073.122805,36.11229773,6 Years and 4 Months,Yes,100.7314623,120.3662553,Low_spent_Large_value_payments,222.2247824,0,1.1561,1.1326,0.1007,0.3531,-0.5304 +0x8d3d,CUS_0x661f,August,42,857-27-1046,Media_Manager,150467.64,12642.97,2,5,10,4,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",14.07303804,12,2.96,5,_,1443.25,38.06591968,19 Years and 9 Months,No,80832,373.1558057,High_spent_Medium_value_payments,880.937844,0,0.4547,-1.4656,-1.7865,-1.2528,0.9986 +0x8d49,CUS_0x6c90,August,25,786-65-3651,Manager,52770.12,4633.51,6,1229,20.06745738,5,"Credit-Builder Loan, Home Equity Loan, Payday Loan, Student Loan, and Payday Loan",59.11126254,31.59844788,17.9,14,Bad,4734.516349,38.06271412,14 Years and 4 Months,Yes,191.8522573,42.88452675,High_spent_Large_value_payments,441.893928,0,1.4033,0.8686,0.9363,-0.3451,-0.157 +0x8d55,CUS_0xaa5,August,35,593-90-9236,Media_Manager,60493.08,4976.09,9,7,31.06745738,9,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",21.97507302,15,25,12,Bad,3904.030954,33.28457941,13 Years and 11 Months,Yes,432.5810337,298.3226387,Low_spent_Large_value_payments,9.985039651,0,-1.6922,-0.9597,-1.2135,0.8385,1.9775 +0x8d61,CUS_0x1f2e,August,26,049-84-5378,Entrepreneur,41012.42,3341.701667,5,4,27,7,"Payday Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Student Loan, Personal Loan, and Personal Loan",9.709094106,9,14.47,4,Standard,1690.55,30.68716331,7 Years and 11 Months,Yes,199.3678026,174.7952014,High_spent_Small_value_payments,220.0071627,0,1.2889,-0.4636,1.1442,-0.4206,-3.0369 +0x8d6d,CUS_0x5f81,August,80,054-65-4637,Entrepreneur,147517.36,,3,5,15.28836175,0,Not Specified,,20,4.79,6,_,292.9342719,38.86287566,32 Years and 4 Months,No,1626.169078,1001.933238,!@9#%8,948.330342,0,1.4627,0.9987,-0.8492,-0.6359,-0.655 +0x8d79,CUS_0x6c52,August,34,873-88-8377,Musician,100241.67,8121.4725,8,5,10,4,"Student Loan, Auto Loan, Not Specified, and Mortgage Loan",24.40039344,16.72993371,1.8,3,Good,230.0195864,41.9505305,21 Years and 11 Months,No,260.608105,72.39262088,High_spent_Large_value_payments,719.1465241,0,0.2085,0.5256,-0.8876,0.7095,0.4722 +0x8d85,CUS_0x42b1,August,21,468-45-3404,Entrepreneur,88463.25,,5,3,5.288361749,100,"Debt Consolidation Loan, Personal Loan, Student Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",,9,10.66,6,Standard,827.79,37.05022162,,Yes,243.3581693,727.0203505,Low_spent_Small_value_payments,500.5526912,0,0.1177,1.3745,-1.7133,-0.6362,0.1229 +0x8d91,CUS_0xbb79,August,18,648-47-1930,Engineer,22324.105,1723.342083,1,4,4,3,"Not Specified, Debt Consolidation Loan, and Not Specified",13.2367122,11,8.72,1,Good,781.3262282,31.06798756,31 Years and 5 Months,NM,45.02575122,91.51673511,Low_spent_Medium_value_payments,329.4590818,0,0.0302,0.9032,-0.0471,0.0872,-0.6127 +0x8d9d,CUS_0x769a,August,56,565-87-6956,Scientist,77469.6,,4,5,12,1,Student Loan,22.84702313,17,3.74,2,Good,529.13,35.17475506,26 Years and 6 Months,No,55.80907754,,Low_spent_Medium_value_payments,211.9176905,0,1.0187,0.165,-0.0336,-1.4696,0.3064 +0x8da9,CUS_0x5a03,August,18,811-09-5468,Teacher,60014.88,,5,9,26,2,"Credit-Builder Loan, and Auto Loan",22.06800967,15,19.57,9,_,2620.62,29.05097765,10 Years and 4 Months,Yes,288.1904128,440.7012683,Low_spent_Medium_value_payments,253.7797844,0,-0.5177,-0.0442,-0.0314,2.9924,-1.1652 +0x8db5,CUS_0x3a28,August,42,668-80-7236,Scientist,8833.225,,10,7,23,5,"Auto Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Auto Loan",29.05051059,,1.63,14,Bad,2987.52,37.43662167,8 Years and 0 Months,Yes,34.61951806,,Low_spent_Large_value_payments,286.5417226,0,1.7539,-0.158,-1.8431,-1.1098,0.3292 +0x8dc1,CUS_0xa6d4,August,44,231-06-2460,Journalist,35733.69,2953.8075,4,3,10.28836175,2,"Credit-Builder Loan, and Payday Loan",15.23088887,,2.71,2,Good,57.06677687,35.89603567,32 Years and 5 Months,No,44.65081871,526.446178,High_spent_Small_value_payments,416.8895583,0,0.2343,0.6539,-1.5588,-0.6579,-0.2924 +0x8dcd,CUS_0xb06e,August,43,575-22-9133,Accountant,15117.51,,6,5,28,7,"Not Specified, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Not Specified, and Personal Loan",,11.24967741,19.94,13,Standard,2285.387222,40.63186224,,Yes,78.69659138,47.39849892,!@9#%8,255.5841597,0,1.8518,-0.0112,0.078,-0.2783,0.5685 +0x8dd9,CUS_0x720a,August,27,093-22-4351,Mechanic,40624.94,3665.411667,7,9,21,4,"Credit-Builder Loan, Not Specified, Personal Loan, and Not Specified",38.61609112,17.5388376,12.06,14,_,1973.740084,28.51843622,14 Years and 6 Months,NM,73.02343359,,Low_spent_Small_value_payments,436.0375511,0,1.4477,0.3592,0.2287,0.141,-0.0974 +0x8de5,CUS_0x3925,August,20,236-45-3040,Journalist,81793.56,6769.13,6,7,19,3,"Auto Loan, Auto Loan, and Home Equity Loan",19.59985375,17,4.47,7,Standard,1208.29,29.33818803,29 Years and 11 Months,Yes,124.4591163,,Low_spent_Medium_value_payments,152.8885115,0,1.7616,-0.9412,0.4186,-0.2921,0.4323 +0x8df1,CUS_0x635d,August,39,308-00-9678,_______,80265.2,6596.766667,5,7,12,4,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Student Loan",10.94616243,8,13.86,5,Standard,636.92,30.25370558,10 Years and 2 Months,Yes,220.0650676,366.6025808,Low_spent_Medium_value_payments,353.0090183,0,-1.1192,0.7205,-0.7317,2.3342,-0.1816 +0x8dfd,CUS_0x3032,August,48,001-43-6015,Architect,38712.58,,2,3,4,3,"Debt Consolidation Loan, Payday Loan, and Home Equity Loan",,7,4.63,2,Good,924.3319831,32.9774438,25 Years and 3 Months,No,49.44864692,,Low_spent_Medium_value_payments,362.4700286,0,0.3234,1.7831,-0.6121,1.5775,-0.3206 +0x8e09,CUS_0xb0a5,August,26,242-18-3151,_______,15895.235,1268.602917,4,7,16,4,"Student Loan, Mortgage Loan, Auto Loan, and Student Loan",18.09333047,14,8.92,5,Standard,237.72,32.11896857,26 Years and 9 Months,NM,35.88598876,50.89921346,Low_spent_Small_value_payments,330.0750894,0,-1.3244,-0.3432,-0.9556,-0.5663,-0.1948 +0x8e15,CUS_0x9ce4,August,40,420-50-3636,Developer,32540.8,,10,10,29.88954781,9,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Student Loan, Auto Loan, and Credit-Builder Loan",46.17527722,30.14650563,16.54,6,Bad,2928.265327,28.86493323,6 Years and 2 Months,NM,27921.48344,43.21496308,High_spent_Large_value_payments,322.144842,0,-1.3152,-1.0064,0.0724,-0.132,-2.3947 +0x8e21,CUS_0x37ea,August,54,435-51-0275,Scientist,121107.9,9322.687972,0,7,5,0,,7.365351605,6,9.41,8,Good,1490.72,30.5765441,16 Years and 8 Months,No,657.6370276,614.3232517,Low_spent_Medium_value_payments,663.7092483,0,0.4657,0.6174,-0.426,-1.5292,0.6825 +0x8e2d,CUS_0x3e92,August,25,199-63-4034,Entrepreneur,23029.61,1981.671967,4,5,3,4,"Auto Loan, Personal Loan, Personal Loan, and Auto Loan",30.67422444,20.07751932,0.88,4,Good,469.0678298,38.53837805,29 Years and 4 Months,NM,100.0204572,30.44971301,High_spent_Medium_value_payments,375.4054462,0,-0.8206,-2.8522,0.4476,0.0053,1.1007 +0x8e39,CUS_0x3a69,August,34,961-04-7892,Doctor,62925.64,5109.803333,7,5,21,2,"Credit-Builder Loan, and Debt Consolidation Loan",,21.4609099,14.02,10,Standard,2267.391858,40.3102605,20 Years and 2 Months,Yes,94.35528887,283.7020362,Low_spent_Large_value_payments,402.9230083,0,0.7069,-0.5369,-0.4451,-0.3769,0.0671 +0x8e45,CUS_0xda6,August,29,719-64-1889,Manager,20194.19,,5,7,18.28836175,0,,14.42243976,13,7.85,7,_,189.79,24.00718123,29 Years and 9 Months,Yes,0,575.7734313,Low_spent_Large_value_payments,291.6489464,0,-0.3799,-0.88,1.2124,-0.6945,1.4777 +0x8e51,CUS_0x6347,August,35,903-20-5885,Writer,27403.02,,5,6,5,4,"Credit-Builder Loan, Personal Loan, Auto Loan, and Home Equity Loan",,8,7.25,2,Standard,955.0556187,30.96166969,29 Years and 11 Months,NM,75.22435917,94.96071427,High_spent_Medium_value_payments,296.4426466,0,0.3165,-1.7012,1.5347,-0.3635,0.5247 +0x8e5d,CUS_0xa83,August,18,644-26-1074,Teacher,19072.63,,8,7,25.06745738,4,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",24.37984838,10,18.16,17,_,1595.050954,38.84029324,,Yes,60.51420701,80.98844839,High_spent_Small_value_payments,254.91564,0,1.2346,0.9589,0.5853,-0.417,-0.9216 +0x8e69,CUS_0x787b,August,34,121-75-0461,Doctor,65538.64,,9,7,23,8,"Payday Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Home Equity Loan",,23.57002478,8.1,14,_,2041.647152,39.95556585,16 Years and 5 Months,Yes,359.2632373,,High_spent_Large_value_payments,320.0954392,0,1.8101,-1.4391,-1.3287,-1.0942,0.0406 +0x8e75,CUS_0x73c1,August,33,019-77-0295,Entrepreneur,19457.51,,7,5,27.06745738,9,"Auto Loan, Mortgage Loan, Not Specified, Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",,27.73648119,22.32,877,Bad,5481.885086,38.17505695,,Yes,75.80109831,,Low_spent_Small_value_payments,253.6040874,0,-1.5241,0.4838,-0.7115,0.3685,0.4724 +0x8e81,CUS_0x286f,August,22,915-80-8522,Developer,121644.6,9859.007563,1,1,12,2,"Credit-Builder Loan, and Student Loan",0,0,1.01,1,Good,924.21,39.68457777,15 Years and 9 Months,No,658.1925445,816.1036593,!@9#%8,394.4512334,0,-0.8647,0.1243,-1.156,-0.1473,-0.2552 +0x8e8d,CUS_0x5ab7,August,21,061-51-4957,Teacher,39024.34,3166.028333,4,5,33,2,"Mortgage Loan, and Auto Loan",,20,9.22,12,Standard,2201.24,40.13874776,13 Years and 4 Months,Yes,58.20110411,176.2039903,Low_spent_Medium_value_payments,362.1977389,0,-0.8833,1.6892,-0.0673,-0.5688,-0.2352 +0x8e99,CUS_0x5cff,August,18,173-86-1649,Mechanic,24931.39,,4,6,13,2,"Credit-Builder Loan, and Home Equity Loan",11.11832562,8,11.34,12,Standard,18.55,41.1815195,29 Years and 3 Months,NM,74926,54.27919299,!@9#%8,378.7805513,0,-0.561,-2.662,-0.1215,-0.4867,-1.2881 +0x8ea5,CUS_0x2d5a,August,22,864-98-6255,Engineer,35247.02,,9,7,28.06745738,2,"Not Specified, and Payday Loan",,26.22540461,9.12,7,Bad,2065.892371,28.31278062,13 Years and 2 Months,Yes,39.21200651,28.75144073,High_spent_Large_value_payments,433.0414315,0,1.6932,0.1667,0.1588,-0.8815,-0.6144 +0x8eb1,CUS_0x123d,August,31,736-67-4134,Architect,7703.635,651.9695833,6,8,19.95700519,6,"Auto Loan, Home Equity Loan, Student Loan, Home Equity Loan, Home Equity Loan, and Student Loan",43.78411051,22.26080789,16.05,15,Bad,3718.975189,27.72495562,2 Years and 8 Months,Yes,1355.564542,49.09496419,Low_spent_Small_value_payments,229.4870826,0,-0.9135,-0.1236,-1.9648,-0.1292,1.2641 +0x8ebd,CUS_0x45b6,August,40,973-20-0372,Media_Manager,58228.38,,4,1,3.288361749,0,Personal Loan,0,2,6.02,4,Good,179.9239631,28.70648079,29 Years and 3 Months,No,33.92926402,484.5752354,High_spent_Medium_value_payments,645.3818528,0,1.2925,-0.0325,0.2466,-0.0299,1.3338 +0x8ec9,CUS_0x5634,August,18,965-27-2454,Media_Manager,73425.16,,3,3,13,7,"Home Equity Loan, Mortgage Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",30.55894793,20,15.21,2444,_,1205.13,26.13484992,19 Years and 6 Months,NM,426.9718233,359.8424193,Low_spent_Medium_value_payments,103.5620907,0,-1.6639,1.8142,-0.0614,-1.173,-1.4813 +0x8ed5,CUS_0xc211,August,34,884-43-1819,Architect,22252.63,,8,6,1132,100,"Mortgage Loan, and Auto Loan",17.00573244,14,17.3,6,Standard,358.36,28.00497708,31 Years and 5 Months,Yes,28.04391197,54.57980226,High_spent_Medium_value_payments,350.0148691,0,0.1553,0.4742,-2.0183,-0.4539,1.2463 +0x8ee1,CUS_0x41ce,August,29,510-01-7946,Mechanic,11831.605,,6,4,20,4,"Student Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",,18,-0.87,5,Standard,746.3957579,34.92551006,28 Years and 8 Months,Yes,33.34467082,81.0956603,High_spent_Small_value_payments,266.1709096,0,0.7304,-0.5079,-0.6144,-2.6519,-0.9316 +0x8eed,CUS_0x211f,August,30,#F%$D@*&8,Doctor,15293.55,1251.4625,7,3,18,3,"Mortgage Loan, Auto Loan, and Personal Loan",18.67484444,13,17.87,7,Standard,939.47,25.06140065,,Yes,23.75468254,,Low_spent_Small_value_payments,308.4190483,0,-0.3508,0.3442,1.1179,0.2233,-0.2158 +0x8ef9,CUS_0x9b1f,August,26,373-86-3169,_______,47726.04,4007.17,7,8,18,2,"Student Loan, and Personal Loan",19.83745127,16,12.2,14,_,2519.86,26.18979779,15 Years and 3 Months,Yes,61.84755016,467.5018576,Low_spent_Small_value_payments,161.3675922,0,1.1027,-1.4439,-0.5808,-0.3354,-1.4031 +0x8f05,CUS_0xaac6,August,31,#F%$D@*&8,Musician,51938.04,4473.17,7,7,33,7,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Not Specified, Auto Loan, Student Loan, and Auto Loan",26.6960384,,6.62,11,Bad,1638.92,32.00999447,16 Years and 6 Months,Yes,196.378019,100.9481224,High_spent_Large_value_payments,389.9908586,0,0.5995,-1.3662,0.7119,1.3368,0.5531 +0x8f11,CUS_0x8c44,August,32,911-81-8555,_______,141000.84,,5,3,20,4,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Debt Consolidation Loan",13.66704755,9,8.25,3,Standard,256.7789688,29.88577124,24 Years and 9 Months,Yes,255.3987089,1201.448413,!@9#%8,192.6495281,0,-0.1227,1.4323,-0.5126,1.3118,0.537 +0x8f1d,CUS_0x2fa2,August,24,076-99-3069,Manager,19731.2,,6,6,11,0,,,19,1.53,5,Standard,424.32,38.54038038,17 Years and 8 Months,No,0,104.8483859,Low_spent_Small_value_payments,336.0782807,0,2.08,-0.6535,-0.0903,-0.9818,-0.0501 +0x8f29,CUS_0x7d64,August,37,423-88-6945,Entrepreneur,41772.18,3365.015,4,4,13,4,"Payday Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",,18,13.5,9,Standard,1383.84,30.8779686,,Yes,119.0880548,211.6055506,Low_spent_Medium_value_payments,285.8078946,0,-0.4684,1.5248,0.0791,0.1573,-1.2363 +0x8f35,CUS_0xb191,August,42,848-67-6653,Engineer,17158.43,1507.869167,8,7,2128.067457,7,"Credit-Builder Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",,27,28.45,6,Bad,4661.820954,31.39573493,8 Years and 6 Months,Yes,97.71693435,,Low_spent_Small_value_payments,176.6881476,0,-1.5384,-0.9332,-0.6065,-0.3558,0.01 +0x8f41,CUS_0xb160,August,51,077-78-3625,Scientist,35516.68,2729.723333,0,2,5201,4,"Auto Loan, Payday Loan, Payday Loan, and Payday Loan",,6,6.65,3,Good,981.33,36.57520121,16 Years and 8 Months,No,95.85926638,97.4688671,Low_spent_Large_value_payments,349.6441999,0,1.096,-2.97,-0.1677,-0.7205,-0.7255 +0x8f4d,CUS_0x3ca4,August,43,353-00-0111,Media_Manager,73910.61,5995.2175,3,7,12,0,,,18,10.18,2,Standard,1469.17,34.16779245,18 Years and 11 Months,Yes,0,229.5758767,High_spent_Medium_value_payments,619.9458733,0,-0.5457,-1.0148,2.2137,-1.3532,1.4711 +0x8f59,CUS_0x9cab,August,80,755-46-9784,Doctor,38186.84,3428.236667,8,6,20,100,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Student Loan, Payday Loan, and Personal Loan",23.04543565,16,17.03,11,Bad,3269.54,29.95143831,10 Years and 4 Months,Yes,282.3710469,,Low_spent_Small_value_payments,224.5493734,0,1.0204,-0.905,-1.5081,1.4913,0.572 +0x8f65,CUS_0xa276,August,34,789-12-3913,Accountant,24192.59,,3,7,19,2,"Mortgage Loan, and Student Loan",13.82828356,10,8.78,2,Standard,974.45,30.77832259,16 Years and 5 Months,Yes,34.50356089,43.50742173,High_spent_Small_value_payments,410.193934,0,-0.0177,-1.9552,-1.1533,1.4388,-0.7771 +0x8f71,CUS_0x5d14,August,24,666-63-9523,Scientist,38387.94,3079.995,8,5,20.06745738,8,"Debt Consolidation Loan, Payday Loan, Payday Loan, Auto Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Student Loan",,25,27.2,11,Bad,4085.860954,33.28591941,7 Years and 11 Months,Yes,171.7429823,88.67521225,Low_spent_Large_value_payments,290.8610175,0,1.0606,-0.0465,0.8919,0.555,0.0457 +0x8f7d,CUS_0x8ca3,August,20,169-53-4759,Accountant,31469.96,2622.496667,1065,9,27,5,"Home Equity Loan, Payday Loan, Student Loan, Not Specified, and Home Equity Loan",26.29672758,19,27.4,9,Bad,3858.12,24.61719709,2 Years and 0 Months,Yes,74.55748412,,Low_spent_Small_value_payments,265.3807254,0,-0.6643,0.2842,0.8439,-1.3409,0.9344 +0x8f89,CUS_0x3e91,August,42,973-32-5469,Developer,17775.71,1543.309167,8,5,34.06745738,8,"Home Equity Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",,15,19.2,8,_,2862.090954,35.14709328,1 Years and 5 Months,Yes,65.87536999,66.66150905,Low_spent_Small_value_payments,285.0737497,0,-0.1465,0.6257,0.1349,-0.5487,-1.0972 +0x8f95,CUS_0xa0eb,August,40,284-62-1369,Manager,65599.92,5680.66,9,7,27,3,"Personal Loan, Debt Consolidation Loan, and Personal Loan",17.09484277,9.272000661,19.83,10,Standard,1453.855958,24.39969698,12 Years and 8 Months,Yes,100.1998169,306.3553809,Low_spent_Small_value_payments,451.5108022,0,1.5417,-1.143,0.8331,0.6763,-0.0747 +0x8fa1,CUS_0x2ff3,August,35,475-78-3962,Mechanic,8949.35,,4,9,15.88954781,6,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",,20,15.96,14,Standard,2556.01,30.49259108,8 Years and 5 Months,Yes,1364.842714,43.71892976,!@9#%8,221.6861914,0,-0.9545,0.5626,-0.5344,0.5993,-1.1716 +0x8fad,CUS_0xa52e,August,37,902-32-6869,Teacher,7079.32,668.9433333,9,9,20.06745738,7,"Not Specified, Auto Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Not Specified, and Home Equity Loan",,19,27.26,13,Bad,3413.110954,42.38327864,14 Years and 6 Months,Yes,35.8510307,33.75752542,Low_spent_Medium_value_payments,250.5654893,0,1.2114,-0.9575,0.4826,0.2738,-1.1765 +0x8fb9,CUS_0xa86b,August,49,568-23-0854,Lawyer,26733.39,,8,6,9,4,"Mortgage Loan, Auto Loan, Student Loan, and Credit-Builder Loan",18.49827593,13,10.97,1,Good,1259.051252,34.35749965,26 Years and 2 Months,No,49.94217204,22.3311013,High_spent_Large_value_payments,377.0947146,0,-1.2514,-2.1816,-1.2786,-0.4924,-1.3102 +0x8fc5,CUS_0x18ac,August,39,749-91-6133,Scientist,18270.68,1348.556667,7,9,34.06745738,6,"Payday Loan, Personal Loan, Student Loan, Home Equity Loan, Student Loan, and Personal Loan",,21.43153597,15.49,8,Standard,2479.165868,38.7773438,,Yes,90.93654041,,Low_spent_Small_value_payments,220.4672657,0,-0.1678,0.9645,0.7158,0.8415,0.0746 +0x8fd1,CUS_0x6d70,August,28,059-15-8950,Accountant,68454.96,5820.58,8,9,19,5,"Payday Loan, Not Specified, Personal Loan, Auto Loan, and Payday Loan",39.63357386,18.00404712,8.08,16,_,2660.690345,32.60832883,19 Years and 3 Months,Yes,160.5136746,10000,Low_spent_Small_value_payments,311.2522007,0,0.8137,-0.9882,-0.8795,2.4472,-0.4399 +0x8fdd,CUS_0x9595,August,33,740-18-4590,Developer,17474415,9541.596667,0,5,9,2,"Student Loan, and Auto Loan",,1,9.14,3,_,261.326807,25.45450609,26 Years and 3 Months,No,166.9918084,878.3435142,Low_spent_Medium_value_payments,321.6681093,0,-0.0191,0.569,-0.4333,2.0599,-0.9086 +0x8fe9,CUS_0xbe4b,August,38,589-84-0344,Developer,19920.93,,8,3,11,2,"Credit-Builder Loan, and Not Specified",17.26910449,12,18.44,4,_,2645.5,33.17358214,15 Years and 2 Months,NM,21.04414154,10000,Low_spent_Medium_value_payments,333.4726512,0,0.5588,-1.5879,2.5053,1.6561,0.6802 +0x8ff5,CUS_0x76c1,August,80,763-06-9169,_______,66422.98,,8,7,5,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",16.47980593,11,24.32,5,_,153.99,39.55864846,11 Years and 5 Months,Yes,280.9275506,215.9597155,High_spent_Medium_value_payments,291.7375672,0,-0.3743,0.9782,1.7064,3.101,1.213 +0x9001,CUS_0x7997,August,25,287-47-9795,Entrepreneur,16568.58,,5,5,23,7,"Student Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",,19.05713719,20.05,,_,5187.91546,31.44769522,13 Years and 6 Months,Yes,80.97704531,,Low_spent_Small_value_payments,159.5354609,0,0.3981,-1.2184,-1.6649,-1.8601,-0.7864 +0x900d,CUS_0x1eea,August,29,957-07-5513,_______,8439.33,554.2775,6,9,16.06745738,6,"Credit-Builder Loan, Student Loan, Personal Loan, Not Specified, Payday Loan, and Auto Loan",,26.42789222,16.6,9,Bad,1752.046725,29.20364788,19 Years and 8 Months,Yes,35.34387474,10000,Low_spent_Medium_value_payments,246.5498091,0,0.0416,-0.2516,-0.9121,0.5561,0.6955 +0x9019,CUS_0x7f3c,August,44,427-34-4793,Architect,10244.8,1131.733333,8,5,19.06745738,8,"Debt Consolidation Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",,17.46650502,16.29,,Bad,5676.255856,39.34271812,10 Years and 2 Months,NM,37.75420493,10000,Low_spent_Medium_value_payments,234.8448334,0,0.2549,0.7325,1.1572,-0.5121,-1.7293 +0x9025,CUS_0x840b,August,31,068-07-3518,Scientist,9623.005,,7,9,29.06745738,5,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,17.97113714,5.13,11,Bad,2154.580902,27.7462798,18 Years and 3 Months,Yes,26.24081335,100.411954,Low_spent_Small_value_payments,232.7186531,0,-0.3862,1.0676,0.0446,0.9061,-2.6026 +0x9031,CUS_0x1e87,August,25,988-83-0517,Lawyer,167489.4,,1,1,10.28836175,2,"Not Specified, and Payday Loan",10.38280046,11,8.51,5,Good,1157.838892,35.86161273,26 Years and 11 Months,No,196.0304653,724.9034891,High_spent_Large_value_payments,1170.592107,0,0.0267,-0.5103,-0.7365,-1.0624,-1.081 +0x903d,CUS_0x8d7e,August,42,911-18-9186,Accountant,21490.82,1812.901667,3,5,5,4,"Payday Loan, Payday Loan, Payday Loan, and Auto Loan",9.584268047,6,8,5,Standard,377.9891937,27.28382738,26 Years and 5 Months,Yes,58.14835817,110.0359711,High_spent_Small_value_payments,285.1161798,0,-0.3447,1.3199,-1.6589,-0.4956,-0.2015 +0x9049,CUS_0x79b8,August,28,028-33-6202,Accountant,34392.44,,9,6,30,3,"Auto Loan, Payday Loan, and Credit-Builder Loan",,21.88680323,13.84,12,Standard,2758.22056,27.84975991,12 Years and 8 Months,NM,80.04324652,,Low_spent_Medium_value_payments,216.5604283,0,-1.1177,0.9023,0.8982,-1.8532,-2.4425 +0x9055,CUS_0xab2b,August,35,559-25-3277,Entrepreneur,31985.64,2537.47,5,6,11,4,"Not Specified, Auto Loan, Mortgage Loan, and Student Loan",27.71171881,21.38473377,15.35,7,_,2917.822772,31.56875006,5 Years and 10 Months,Yes,65.83466693,302.6406399,Low_spent_Small_value_payments,175.2716932,0,-0.0717,-0.0254,0.6298,2.1522,0.1259 +0x9061,CUS_0xa73b,August,41,341-87-3689,Scientist,26526.93,,4,7,13,4,"Student Loan, Not Specified, Home Equity Loan, and Auto Loan",9.653318343,9.567085407,5.3,1,Standard,973.395971,35.35611944,30 Years and 6 Months,Yes,76.55602868,142.2270684,Low_spent_Small_value_payments,291.1746529,0,0.7798,1.064,-0.0684,0.8785,0.6685 +0x906d,CUS_0xa980,August,34,787-43-5273,Mechanic,70360.58,6051.381667,3,6,12,1,Payday Loan,4.448375498,7,1.15,2,Good,946.96,40.06863539,18 Years and 2 Months,No,50.41366815,638.6316912,Low_spent_Small_value_payments,206.0928073,0,0.3036,-1.0083,0.1384,-1.3427,-0.0283 +0x9079,CUS_0x734a,August,22,549-24-0925,Developer,36349.28,2885.106667,6,8,26,4,"Auto Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",30.76208182,22.60904661,17.25,12,Bad,2425.939558,39.09992959,10 Years and 8 Months,Yes,72.66080283,234.3922888,Low_spent_Medium_value_payments,261.457575,0,-0.569,-0.1878,0.7351,0.7889,-0.0751 +0x9085,CUS_0x56c5,August,22,978-95-3432,Developer,17701.62,,5,4,13,4,"Home Equity Loan, Not Specified, Not Specified, and Personal Loan",16.93444554,13,9.37,11,_,816.95,29.18679553,13 Years and 11 Months,Yes,38.24882791,111.8982017,Low_spent_Medium_value_payments,264.3664704,0,0.916,1.3875,-1.0134,0.1368,0.9477 +0x9091,CUS_0x8924,August,40,343-62-3057,Lawyer,19008.32,1825.026667,4,3,7,2,"Personal Loan, and Student Loan",18.93890284,13,7.79,7,Standard,673.99,38.49185731,,No,31.09390071,165.2413235,Low_spent_Small_value_payments,276.1674424,0,-2.3916,-1.127,-0.5137,2.1807,-0.7317 +0x909d,CUS_0x9296,August,20,291-14-0882,Manager,8649.85,,7,10,35.06745738,5,"Payday Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,21,8.04,13,Bad,2512.790954,36.65437033,,NM,68.5454725,23.54436063,Low_spent_Medium_value_payments,280.5123686,0,0.1725,0.3054,0.1584,-0.1734,0.6335 +0x90a9,CUS_0x2d17,August,32,821-45-9270,Media_Manager,23401.58,,5,7,8,0,,,19,9.16,11,Standard,1433.84,29.4979287,16 Years and 6 Months,Yes,0,113.8352399,Low_spent_Small_value_payments,388.1779268,0,1.1274,-0.7269,-0.6217,0.0107,0.8391 +0x90b5,CUS_0x10c5,August,26,041-74-6785,_______,158623.16,,2,7,10,1,Payday Loan,5.151979031,5.799314511,6.04,0,Good,1243.143175,41.79680012,30 Years and 2 Months,No,91.03390498,282.7186891,High_spent_Medium_value_payments,1194.307073,0,0.5911,0.1225,-0.0055,-0.6488,0.1626 +0x90c1,CUS_0x3a9d,August,26,725-74-3647,Scientist,88726.46,7104.871667,2,3,6.288361749,100,"Personal Loan, Mortgage Loan, and Home Equity Loan",,4,8.92,4,_,425.9507949,37.13419122,31 Years and 9 Months,No,161.2242491,615.4202051,High_spent_Medium_value_payments,627.1544606,0,0.9862,-0.0144,-1.2961,0.3976,-1.2512 +0x90cd,CUS_0x938,August,25,#F%$D@*&8,Architect,12593.445,,4,4,6.288361749,2,"Personal Loan, and Credit-Builder Loan",,,8.42,5,Standard,43.68,37.82502778,16 Years and 10 Months,Yes,18.94454818,474.6141541,Low_spent_Small_value_payments,292.7241338,0,0.2375,-1.3877,-0.4393,-0.5125,-0.8908 +0x90d9,CUS_0x5184,August,22,998-89-8313,Architect,72757.26,5816.105,2,2,4,0,,16.46247309,,5.65,2,Good,522.38,39.00632557,22 Years and 10 Months,No,0,128.6418016,High_spent_Medium_value_payments,702.9686984,0,-1.0725,-0.8567,0.2785,-0.3238,1.2309 +0x90e5,CUS_0x45ab,August,42,#F%$D@*&8,_______,91111.98,,6,3,16,6,"Debt Consolidation Loan, Payday Loan, Not Specified, Auto Loan, Not Specified, and Credit-Builder Loan",16.9822553,12,14.91,7,Standard,729.0281407,40.37102102,11 Years and 3 Months,Yes,421.3789056,193.766861,High_spent_Medium_value_payments,410.5837303,0,0.6239,-1.4084,-0.5947,-0.1696,1.1318 +0x90f1,CUS_0x7e7f,August,45,171-52-8384,Doctor,73439.26,6144.938333,8,7,6,4,"Debt Consolidation Loan, Auto Loan, Auto Loan, and Auto Loan",18.29143794,16,10.71,5,Standard,613.92,26.13445109,18 Years and 3 Months,No,186.3811784,408.3665151,Low_spent_Small_value_payments,309.7461398,0,-1.4075,0.8956,-1.7882,-1.0674,1.2805 +0x90fd,CUS_0x16be,August,38,241-14-6353,Doctor,62983.02,5525.585,5,3,20,6,"Personal Loan, Mortgage Loan, Not Specified, Not Specified, Payday Loan, and Debt Consolidation Loan",7.61374084,8,13.14,5,Standard,1469.91,32.20993301,7 Years and 5 Months,Yes,199.4797293,589.2433377,Low_spent_Small_value_payments,53.83543306,0,-1.58,0.0469,-0.4975,0.3261,-0.5742 +0x9109,CUS_0x325f,August,34,153-16-9858,Architect,13840.485,,6,7,17,4,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Auto Loan",16.25605314,15,5.56,6,_,687,28.32687412,19 Years and 5 Months,Yes,35.08888572,80.71198479,Low_spent_Small_value_payments,279.4365045,0,-0.699,1.1247,-0.7017,-0.0937,0.0903 +0x9115,CUS_0x332c,August,36,#F%$D@*&8,Media_Manager,17693.62,,9,9,34.06745738,2,"Payday Loan, and Student Loan",,19.25817713,14.29,13,Standard,2944.120947,36.05420715,10 Years and 10 Months,Yes,20.00324805,10000,Low_spent_Small_value_payments,346.2131915,0,1.8893,-1.2241,0.6407,0.5653,1.9779 +0x9121,CUS_0xb163,August,42,085-73-7726,Architect,101029.59,,3,5,9,3,"Auto Loan, Not Specified, and Not Specified",18.09623533,12,10.02,5,_,237.9934592,38.93676352,14 Years and 2 Months,Yes,192.8950127,169.1896084,High_spent_Large_value_payments,722.7092461,0,0.3232,-0.5609,0.7442,0.3292,1.698 +0x912d,CUS_0x2467,August,20,772-51-2153,Media_Manager,61279.77,,6,3,17,5,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",12.86918701,11,12.39,9,Standard,1836.43,34.86639794,10 Years and 0 Months,Yes,430.716701,,!@9#%8,470.6528889,0,-2.0145,0.8076,-0.9987,-1.5166,-0.5196 +0x9139,CUS_0x4484,August,44,725-12-6374,Architect,38365.21,3258.100833,4,4,4.288361749,2,"Not Specified, and Student Loan",10.76869055,11,4.16,5,Good,108.2702235,37.5070227,29 Years and 2 Months,No,35.0070255,635.8287657,Low_spent_Large_value_payments,368.9293947,0,-1.1929,0.4213,0.6259,-0.7302,-1.1869 +0x9145,CUS_0x703c,August,55,537-15-0590,Architect,131113.28,,1,4,5.288361749,2,"Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",12.11002474,11,6.1,2,Good,864.5353848,26.71122664,17 Years and 2 Months,No,258.360226,690.6762977,High_spent_Large_value_payments,843.5661934,0,-0.588,-1.0044,-1.2498,0.7883,0.8671 +0x9151,CUS_0xadf2,August,24,098-99-7773,Architect,99663,,5,3,7,4,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",0,0,9.5,4,Good,89.74512419,31.83007542,21 Years and 0 Months,NM,293.3183174,,High_spent_Medium_value_payments,603.8739643,0,0.0182,-1.0692,-0.7401,-0.7906,-1.8813 +0x915d,CUS_0x5321,August,27,301-55-3014,Accountant,38897.52,3402.46,5,5,3,1,Student Loan,,7,7.01,2,Good,286.43,29.17689795,22 Years and 9 Months,No,76076,146.0576093,Low_spent_Small_value_payments,457.7253903,0,-0.5968,1.9948,0.38,-0.6707,1.4609 +0x9169,CUS_0x5f43,August,55,708-15-7663,Entrepreneur,29964.04,2223.739889,6,494,11.28836175,2,"Not Specified, Auto Loan, and Credit-Builder Loan",15.87620197,14,5.73,4,Standard,107.0133846,27.61915567,33 Years and 6 Months,NM,258.7692837,522.9457484,High_spent_Medium_value_payments,337.025363,0,-1.314,0.353,-2.4446,-1.1526,1.3723 +0x9175,CUS_0xae47,August,18,368-25-5594,Doctor,68657.76,5558.48,6,4,16,6,"Payday Loan, Auto Loan, Student Loan, Student Loan, Auto Loan, and Not Specified",14.60525332,14.4911929,11.06,9,Standard,1747.081962,27.89053924,17 Years and 9 Months,NM,282.6706473,107.6505563,High_spent_Medium_value_payments,415.5267964,0,-0.7568,0.1069,-1.7724,-0.3964,-1.5185 +0x9181,CUS_0x6117,August,28,478-07-5623,Lawyer,17570.58,,8,7,5,3,"Auto Loan, Debt Consolidation Loan, and Not Specified",10.13232163,8,8.77,10,Standard,884.54,31.07999974,15 Years and 2 Months,NM,42.47517658,12.91820434,High_spent_Medium_value_payments,314.0281191,0,-1.1347,-0.0759,1.0463,1.692,0.3593 +0x918d,CUS_0x1f4a,August,25,741-62-1913,Mechanic,102023.4,8535.95,6,5,6,0,,25.98522188,20,11.41,8,Good,271.96,28.98956697,22 Years and 6 Months,No,0,398.6561902,High_spent_Small_value_payments,714.9388098,0,0.6694,-1.427,-2.0589,0.8918,-0.9522 +0x9199,CUS_0x52d3,August,80,439-31-4578,Manager,93424.8,7549.4,8,7,15,1,Not Specified,,18,7.8,1,Standard,757.48,28.11922812,22 Years and 6 Months,No,46.95094517,,!@9#%8,897.4941972,0,0.0826,0.0201,1.1998,-1.8934,-0.7737 +0x91a5,CUS_0x29ae,August,46,899-22-2246,Mechanic,75723.81,5280.946608,5,7,1,0,,,20,-0.04,6,Good,1107.007304,40.92497844,33 Years and 6 Months,No,860.3708924,236.0145214,High_spent_Medium_value_payments,652.2814497,0,-1.9354,-0.7015,-1.1133,0.7675,-0.5178 +0x91b1,CUS_0xa514,August,38,896-84-1335,Media_Manager,15659.24,1469.232332,7,9,15,6,"Student Loan, Credit-Builder Loan, Student Loan, Payday Loan, Personal Loan, and Not Specified",47.10257761,32.59284797,12.03,9,_,2880.246542,37.4858598,10 Years and 6 Months,NM,149.1801156,,Low_spent_Medium_value_payments,243.965799,0,0.0107,-0.8677,0.5414,1.4795,0.2041 +0x91bd,CUS_0x6aec,August,36,#F%$D@*&8,Journalist,9290.25,,6,7,32,9,"Home Equity Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Not Specified",32.56902273,21.91076334,9.28,8,Bad,1866.592172,36.61160851,15 Years and 0 Months,Yes,40.85673733,36.77306304,!@9#%8,260.1889496,0,0.1721,1.3375,-1.1201,-0.4045,1.9931 +0x91c9,CUS_0x39d6,August,31,297-98-4713,_______,17416.5,,6,7,31,6,"Credit-Builder Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",5.181513338,8,7.9,12,_,2505.52,27.9442337,18 Years and 9 Months,Yes,65.22298549,126.1301757,Low_spent_Medium_value_payments,244.6843388,0,0.067,0.0485,0.2975,-0.6278,0.6299 +0x91d5,CUS_0x5e02,August,21,864-61-5672,Writer,21156.88,1643.073333,5,6,13,0,,10.16444369,7,14.12,5,Standard,386.38,28.7842902,16 Years and 9 Months,Yes,0,87.86265498,High_spent_Small_value_payments,336.4446783,0,0.3075,-1.9411,-0.0124,-0.1311,-1.0016 +0x91e1,CUS_0x842e,August,25,609-29-1019,_______,15881.58,1169.465,8,6,35.06745738,7,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Not Specified, Debt Consolidation Loan, and Payday Loan",,22.45472352,28.27,15,Bad,4141.272804,38.6969663,6 Years and 6 Months,Yes,67.15145011,22.66385125,High_spent_Large_value_payments,240.4109107,0,0.224,0.4945,1.0976,0.0854,0.4028 +0x91ed,CUS_0x3c9b,August,30,532-23-8409,Scientist,7199.325,,8,6,21,6,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",,22.69843077,16.46,9,_,5587.251531,27.08115381,3 Years and 5 Months,Yes,31.94138147,10.1075469,!@9#%8,268.8454466,0,0.0173,-1.6705,0.8087,-0.0273,1.9131 +0x91f9,CUS_0xb38b,August,20,700-56-1712,Accountant,80436.12,6643.01,3,4,13,6,"Not Specified, Debt Consolidation Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Not Specified",22.40687801,19,7.59,12,Standard,2409.33,24.51133648,7 Years and 8 Months,Yes,304.631707,550.4238115,Low_spent_Medium_value_payments,89.24548151,0,-1.2181,1.2122,-2.3653,-0.155,0.4642 +0x9205,CUS_0xa3fa,August,46,239-91-8699,Engineer,24282.15,,4,6,6,0,,19.34635535,14,4.92,0,Good,820.1337151,30.59498684,32 Years and 8 Months,NM,0,108.9965447,Low_spent_Large_value_payments,364.3607254,0,1.0331,0.3996,-1.1633,0.0495,0.2211 +0x9211,CUS_0x9281,August,36,114-10-2779,Engineer,46352.82,,6,9,33.06745738,4,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",,23.74912865,16.4,13,Bad,2888.459483,30.09695566,17 Years and 9 Months,Yes,93.10897495,229.252827,Low_spent_Medium_value_payments,330.9914101,0,-0.0824,0.2906,-0.4763,0.4007,0.6095 +0x921d,CUS_0x3a82,August,46,219-72-8338,Entrepreneur,20393.22,1803.435,7,7,12,7,"Payday Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",12.70120362,9,13.03,8,Standard,10.52,32.51695557,13 Years and 10 Months,Yes,99.81250237,88.73184481,Low_spent_Large_value_payments,261.7991528,0,-0.0735,-1.3239,-0.355,0.8364,-0.1358 +0x9229,CUS_0x8d90,August,41,#F%$D@*&8,Scientist,14826.93,916.7634182,6,6,17,9,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",,28,21.21,9,Bad,3732.22,27.56637507,7 Years and 10 Months,Yes,172.6672896,63.39586806,!@9#%8,224.6086741,0,1.366,2.1216,0.1533,-2.219,-0.1153 +0x9235,CUS_0xaed9,August,25,007-90-6393,Teacher,97566.81,8327.5675,0,3,6,3,"Student Loan, Auto Loan, and Not Specified",,4,3.68,2,Good,523.21,28.54222426,25 Years and 4 Months,No,203.4421695,194.5080928,High_spent_Large_value_payments,674.8064877,0,-1.2898,-1.3013,-0.3845,0.4467,0.4501 +0x9241,CUS_0x6e1e,August,38,#F%$D@*&8,Entrepreneur,61449.66,5333.805,8,8,25.88954781,6,"Student Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Payday Loan, and Student Loan",27.67407645,,7.25,,_,1501.861713,30.61472614,12 Years and 0 Months,Yes,1483.029858,102.9295579,High_spent_Medium_value_payments,503.0910026,0,-0.8617,0.7353,0.5663,-2.1746,0.0828 +0x924d,CUS_0x659b,August,18,061-02-5773,Writer,19980.36,,4,3,6,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,,14.44,8,Standard,1367.818374,40.32124464,22 Years and 5 Months,Yes,25.80543921,,Low_spent_Small_value_payments,348.6429032,0,-0.4871,-0.4014,1.1675,0.1389,-0.3411 +0x9259,CUS_0xa54d,August,39,022-66-6862,Writer,56047.34,4136.149386,3,6,1,4,"Not Specified, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",,8,6.27,4,Good,873.4303209,34.1340132,21 Years and 2 Months,No,402.2887999,204.1175006,Low_spent_Large_value_payments,414.8655262,0,0.254,0.6965,-0.7356,-1.2966,0.5393 +0x9265,CUS_0x9e3,August,18,795-25-5894,Developer,44756.64,3611.72,10,6,19,6,"Student Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,20.19671186,0.91,10,Bad,2003.711072,37.22180873,12 Years and 5 Months,Yes,116.6411474,171.2495224,Low_spent_Large_value_payments,343.2813302,0,-0.1352,0.2698,-1.4489,0.8725,-0.1451 +0x9271,CUS_0x2730,August,39,272-36-5834,Engineer,23289.74,,4,6,6,4,"Auto Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",,10,1.09,8,_,804.75,31.09736533,23 Years and 4 Months,No,40.09514487,115.984098,Low_spent_Large_value_payments,315.2019238,0,1.4923,1.8784,-0.9441,-1.342,1.3184 +0x927d,CUS_0xafbb,August,32,840-28-4257,Lawyer,26265.81,,3,3,17,4,"Credit-Builder Loan, Payday Loan, Personal Loan, and Debt Consolidation Loan",,19,18.48,6,Standard,1259.6,40.23352937,11 Years and 9 Months,Yes,46.66250172,52.43489151,High_spent_Medium_value_payments,397.3843568,0,-1.1301,0.3969,-1.0969,-1.1287,0.165 +0x9289,CUS_0xae92,August,26,978-16-2793,Teacher,94287.36,7823.28,4,4,13,2,"Student Loan, and Personal Loan",25.27315246,17,18.66,2,Standard,1261.99,24.30445667,16 Years and 2 Months,Yes,124.1430163,,Low_spent_Small_value_payments,231.3266575,0,-1.996,1.3705,1.5572,1.0414,0.2454 +0x9295,CUS_0x5e33,August,28,095-07-4805,Developer,14860.49,,10,8,24.95700519,100,"Mortgage Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",44.08747286,22.83396945,7.13,10,Standard,3215.52887,24.82207698,17 Years and 10 Months,Yes,1355.13399,81.21967493,Low_spent_Small_value_payments,273.2333824,0,-0.2508,1.0011,1.7159,-0.2746,0.1832 +0x92a1,CUS_0x5974,August,42,481-22-7460,Mechanic,81465.64,,10,6,34,7,"Home Equity Loan, Not Specified, Not Specified, Mortgage Loan, Personal Loan, Auto Loan, and Home Equity Loan",43.94984825,29.2797935,-5.01,10,Bad,5224.936341,38.8941306,11 Years and 9 Months,Yes,450.5851706,124.9358926,High_spent_Small_value_payments,354.4592701,0,0.3744,-1.5947,-0.0728,0.1671,-1.0907 +0x92ad,CUS_0xb7ca,August,29,869-43-2005,Developer,9550.435,,9,5,20.06745738,8,"Payday Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Mortgage Loan",23.07595279,15.61079207,1.85,14,Bad,2255.209803,24.3723158,12 Years and 8 Months,Yes,48.02113782,36.55743653,Low_spent_Large_value_payments,230.688096,0,-1.2883,-1.0217,0.2105,0.1321,-1.0523 +0x92b9,CUS_0xd88,August,40,819-73-4086,Journalist,11308893,,10,5,26,6,"Payday Loan, Not Specified, Student Loan, Payday Loan, Payday Loan, and Home Equity Loan",,22.29926525,10.33,16,Bad,1786.874818,39.19868046,,Yes,30.47353816,31.52473642,Low_spent_Small_value_payments,317.4457671,0,1.5835,-0.1293,0.589,-0.2722,-1.9335 +0x92c5,CUS_0x25b0,August,31,686-89-7086,Teacher,8819.74,866.9783333,10,8,21.95700519,6,"Auto Loan, Student Loan, Payday Loan, Payday Loan, Personal Loan, and Debt Consolidation Loan",,20.5582068,31.26,6,Bad,4671.550567,31.81249643,6 Years and 10 Months,NM,1345.688121,,Low_spent_Medium_value_payments,214.8694309,0,1.4193,0.2939,0.2597,-0.6229,-0.7999 +0x92d1,CUS_0x7623,August,19,315-73-7611,Musician,16518.68,,4,6,14,100,"Not Specified, Student Loan, Auto Loan, and Payday Loan",3.234030041,6,5.17,0,Standard,1277.8,33.74515609,,Yes,51.73970546,66.83964203,Low_spent_Small_value_payments,327.3763192,0,0.4128,-0.6152,0.0685,-0.1622,0.5294 +0x92dd,CUS_0xa72c,August,30,003-28-8343,Writer,32117.87,2720.489167,6,6,6,4,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",21.38116377,18,19.38,11,Standard,947.9177673,29.54125954,,NM,69.69259132,250.3552685,Low_spent_Large_value_payments,253.104915,0,-2.3135,-0.5069,-1.9369,0.8704,0.5589 +0x92e9,CUS_0x3870,August,26,758-17-1797,Manager,32720.38,,10,9,25.06745738,4,"Credit-Builder Loan, Student Loan, Personal Loan, and Payday Loan",37.26734091,22.87638105,6.77,6,_,2780.668135,41.86282069,7 Years and 0 Months,NM,75.89867167,170.0860147,High_spent_Small_value_payments,285.064859,0,1.0611,1.1184,0.8591,-0.3921,-0.3 +0x92f5,CUS_0xc9f,August,18,#F%$D@*&8,Scientist,21382.81,,7,5,14,2,"Debt Consolidation Loan, and Auto Loan",12.93231964,11,18.18,8,Standard,1059.86,33.04525145,7 Years and 5 Months,Yes,30.71014171,100.7011481,Low_spent_Small_value_payments,327.0787935,0,0.6422,-0.3628,-1.1142,1.4761,-1.5725 +0x9301,CUS_0x76ca,August,49,#F%$D@*&8,Mechanic,97010.16,8178.18,1,7,3,0,,0,1.167338482,-3.29,7,_,282.7035277,25.15909854,30 Years and 5 Months,No,0,10000,Low_spent_Medium_value_payments,659.928282,0,0.5921,0.3711,-0.4906,1.3421,2.2052 +0x930d,CUS_0x672c,August,19,450-62-5162,Manager,19569.27,,10,6,33,5,"Payday Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",30.86063971,20,26.03,7,Bad,3902.74,28.61206985,0 Years and 11 Months,NM,64.02497918,114.7529223,Low_spent_Large_value_payments,264.8993485,0,-1.4086,0.2104,0.1693,0.4278,-0.1231 +0x9319,CUS_0x909d,August,21,156-69-3703,Engineer,17686.19,,10,9,20.95700519,6,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Home Equity Loan",33.75653091,20.30252017,15.04,9,Bad,3532.49614,30.41897136,9 Years and 10 Months,Yes,1382.869141,,Low_spent_Small_value_payments,256.87034,0,-0.1597,-0.4955,0.0599,-0.7516,-0.2547 +0x9325,CUS_0x4ef0,August,23,797-45-1666,_______,7177.535,,9,9,16,5,"Payday Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Not Specified",,18.79432615,7.48,12,_,1488.889577,39.0545643,6 Years and 4 Months,NM,22.08428099,40.35012924,Low_spent_Small_value_payments,268.7783814,0,0.5962,0.9142,0.1282,-0.0965,-0.2376 +0x9331,CUS_0xacd6,August,42,333-29-1726,Engineer,83245.14,7037.095,2,3,8,1,Student Loan,3.309145517,5,5.47,9,Good,1229.4,29.88320712,21 Years and 0 Months,No,67.69217501,297.1735201,High_spent_Medium_value_payments,588.8438049,0,1.939,-1.121,1.0611,-0.3035,2.2728 +0x933d,CUS_0x49bf,August,31,067-13-9000,Musician,44056.29,3946.3575,4,5,29,5,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",20.85409566,19,14.55,13,Standard,1474.48,30.04858849,13 Years and 2 Months,Yes,139.3308661,263.0923104,High_spent_Small_value_payments,252.2125735,0,-0.813,-0.5848,-0.3426,-1.1552,0.2203 +0x9349,CUS_0x31ac,August,23,599-00-4004,Mechanic,20929.34,1838.111667,7,6,10,3,"Mortgage Loan, Personal Loan, and Mortgage Loan",8.383897799,8,8.28,8,Standard,695.45,32.49780755,14 Years and 5 Months,Yes,45.44267175,67.49512151,High_spent_Medium_value_payments,320.8733734,0,0.4075,0.5912,1.0766,-2.0823,-0.8331 +0x9355,CUS_0xaa62,August,45,059-43-1970,Teacher,19379.71,,8,5,19,4,"Payday Loan, Mortgage Loan, Personal Loan, and Student Loan",19.6582827,15,12.23,6,Standard,2010.92,39.9996911,14 Years and 2 Months,Yes,42.10086855,46.47211575,High_spent_Medium_value_payments,341.124599,0,1.0609,-0.7602,0.6502,-0.1362,0.518 +0x9361,CUS_0x1929,August,29,395-44-7800,Engineer,101586.12,,8,7,5772.288362,0,,6.626551415,8,2.28,7,Good,528.8747577,28.81657062,28 Years and 10 Months,No,0,1361.004114,Low_spent_Small_value_payments,272.3497011,0,-2.0101,-1.2965,-0.3165,-0.0389,0.3983 +0x936d,CUS_0x7703,August,39,401-95-5016,Writer,17129.91,1335.4925,5,1,5,3,"Auto Loan, Payday Loan, and Auto Loan",,7,9.36,6,Good,1307.4,32.24769999,26 Years and 10 Months,No,30.15286078,64.31665525,Low_spent_Small_value_payments,329.079734,0,0.5923,0.0259,1.1138,-0.4992,-0.4086 +0x9379,CUS_0xa387,August,27,959-82-5575,Writer,85303.08,6847.59,5,7,20,4,"Student Loan, Mortgage Loan, Personal Loan, and Payday Loan",13.02840257,11,15.37,3,Standard,1024.56,29.51711138,22 Years and 0 Months,Yes,264.2737027,825.7529114,Low_spent_Small_value_payments,,0,-1.8724,1.4708,1.0682,1.6667,-0.0759 +0x9385,CUS_0x51de,August,26,724-50-8362,Writer,66553.95,5581.1625,7,4,17,3,"Debt Consolidation Loan, Payday Loan, and Auto Loan",,17,11.59,6,Standard,574.55,38.68896533,10 Years and 4 Months,Yes,134.7539416,67.20471953,High_spent_Medium_value_payments,606.1575889,0,-0.2106,-1.0979,0.4154,1.7061,0.958 +0x9391,CUS_0x7a76,August,30,513-52-8804,Teacher,32795.94,2929.995,3,5,1,3,"Student Loan, Home Equity Loan, and Personal Loan",6.148261882,7,1.57,3,Good,654.3861941,29.44253114,23 Years and 4 Months,No,55.29188211,90.70973313,Low_spent_Large_value_payments,429.4379317,0,0.6031,0.0503,0.4885,-0.7677,0.238 +0x939d,CUS_0x8ce7,August,22,829-65-6560,Doctor,60610.14,5322.845,6,8,15.88954781,6,"Auto Loan, Student Loan, Not Specified, Student Loan, Payday Loan, and Student Loan",,,14.65,12,Standard,2096.742953,31.9578381,12 Years and 4 Months,Yes,1527.501517,168.9516237,High_spent_Medium_value_payments,391.501278,0,0.8698,0.9665,0.2163,-0.4813,0.3476 +0x93a9,CUS_0x97e3,August,48,830-60-4167,Doctor,10973.515,907.4595833,8,4,5,3,"Not Specified, Student Loan, and Payday Loan",14.96460876,14,16.88,6,Standard,927.55,34.19372025,28 Years and 8 Months,Yes,22.58008643,41.40029311,Low_spent_Small_value_payments,316.7655788,0,-0.0018,-0.94,1.3587,-0.5276,0.3492 +0x93b5,CUS_0xa4a5,August,35,378-19-5029,_______,66361.76,,10,10,25.88954781,9,"Student Loan, Mortgage Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Student Loan, and Payday Loan",23.37980368,19,9.46,11,Bad,2531.63,38.47452987,14 Years and 5 Months,Yes,1694.806358,109.7069107,High_spent_Medium_value_payments,329.2713166,0,-0.2244,0.5378,-0.1213,0.0825,0.7067 +0x93c1,CUS_0xb1c4,August,34,#F%$D@*&8,Accountant,14525.53,,10,8,29.88954781,6,"Not Specified, Debt Consolidation Loan, Payday Loan, Student Loan, Payday Loan, and Home Equity Loan",29.3836342,18,21.38,16,Bad,2607.995412,31.72623774,12 Years and 11 Months,Yes,1375.057289,51.45949663,High_spent_Small_value_payments,260.0251822,0,-0.0954,-0.0604,-0.0468,0.3952,-0.0894 +0x93cd,CUS_0xc181,August,37,675-08-7274,_______,25567.26,1970.605,3,7,15,3,"Debt Consolidation Loan, Payday Loan, and Personal Loan",12.68528541,8,9.5,6,Standard,1446.82,23.5237423,21 Years and 10 Months,Yes,44.83155236,145.3852203,Low_spent_Large_value_payments,276.8437274,0,1.3848,-0.508,0.8194,-0.5104,-0.0145 +0x93d9,CUS_0x15df,August,29,472-10-4696,Manager,162713.28,,2,3,422,1,Credit-Builder Loan,0.75140247,5,3.13,3,Good,640.07,29.74449753,29 Years and 9 Months,No,97.85936259,560.0343667,Low_spent_Medium_value_payments,989.3502707,0,0.6532,1.9214,0.1467,1.1187,1.5358 +0x93e5,CUS_0xbd64,August,27,488-49-1260,Manager,28749.39,2181.7825,7,3,10,4,"Mortgage Loan, Student Loan, Debt Consolidation Loan, and Not Specified",,18,-2.04,3,_,988.1393314,34.80159806,17 Years and 2 Months,No,93.13682412,194.1675333,Low_spent_Large_value_payments,223.267533,0,-0.8601,-0.5172,-0.0374,1.0702,0.2766 +0x93f1,CUS_0x181a,August,60,165-48-8166,Mechanic,34676.38,2592.248483,5,5,18,100,Student Loan,14.69081587,15,8.93,2,Standard,1190.084077,29.52694721,16 Years and 0 Months,Yes,200.8180757,228.1640516,Low_spent_Small_value_payments,340.4641683,0,0.2464,1.6931,0.2259,-1.0346,-0.7799 +0x93fd,CUS_0x922f,August,42,477-02-5379,Doctor,30243.64,2743.303333,10,7,23,6,"Payday Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",26.87486272,19.84817541,2.32,15,Bad,2305.680852,35.55670755,15 Years and 5 Months,NM,85.88494194,42.07894093,!@9#%8,386.3664505,0,0.2666,0.0116,0.7326,-0.4367,-0.5172 +0x9409,CUS_0x65ae,August,48,#F%$D@*&8,Journalist,41832.64,3713.053333,7,7,10,3,"Mortgage Loan, Student Loan, and Student Loan",,24.26320133,18.22,3,Standard,871.0586367,33.15286078,26 Years and 3 Months,Yes,17362,99.8884924,High_spent_Medium_value_payments,458.6751615,0,-0.223,-0.3389,-0.6433,-0.2891,-0.0528 +0x9415,CUS_0x8b06,August,40,414-76-2511,Journalist,20946.12,1955.51,10,9,18.88954781,7,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Not Specified, and Mortgage Loan",38.56868159,27,25.07,12,Bad,3093.39,34.3558775,1 Years and 8 Months,Yes,1427.558789,,Low_spent_Small_value_payments,116.5421992,0,-1.0507,1.4912,0.4104,1.0005,0.6099 +0x9421,CUS_0x6371,August,29,291-73-9080,Manager,9485.61,,10,579,35.06745738,9,"Mortgage Loan, Auto Loan, Personal Loan, Payday Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",35.58679945,19,9.98,7,Bad,2794.070954,32.81063519,16 Years and 6 Months,Yes,53.17130481,10000,Low_spent_Small_value_payments,272.0386691,0,-0.6594,-0.3319,1.6693,-0.392,-0.7266 +0x942d,CUS_0xbfd,August,39,828-42-8328,Mechanic,48518.88,,7,9,25,5,"Home Equity Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",15.97624757,,3.48,11,_,3771.66,29.79213872,12 Years and 11 Months,Yes,117.9504525,90.59778616,High_spent_Large_value_payments,452.7757614,0,0.267,0.5479,0.3875,-0.406,1.0015 +0x9439,CUS_0x965e,August,37,871-95-3874,Teacher,17116.05,,1,5,11,3,"Auto Loan, Payday Loan, and Personal Loan",1.631396451,5,6.18,3,Good,875.6570722,37.62886007,25 Years and 3 Months,No,22.96869166,77.76356584,Low_spent_Small_value_payments,339.0139413,0,-0.2622,0.5272,-0.6899,-0.9263,-0.8163 +0x9445,CUS_0x415f,August,22,563-25-4248,Manager,99384.72,8236.06,4,6,9.288361749,100,"Personal Loan, Payday Loan, Not Specified, and Personal Loan",13.00144984,14,9.61,1,_,199.26,39.39752482,20 Years and 5 Months,No,249.3459909,573.5276655,High_spent_Small_value_payments,680.6698046,0,-0.317,1.9126,-0.3049,0.0388,0.8828 +0x9451,CUS_0x641a,August,21,647-00-7060,Engineer,59431.26,5130.605,8,5,14,0,,,16,19.01,5,Standard,474.04,38.54155212,16 Years and 0 Months,Yes,0,418.0834052,Low_spent_Small_value_payments,384.9770948,0,0.9743,0.2801,0.1592,-0.1351,-0.5515 +0x945d,CUS_0xc29b,August,35,608-51-9169,Lawyer,19424.31,1689.6925,7,5,33,7,"Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Payday Loan, and Student Loan",,25.39195353,29.16,11,Bad,2897.714063,24.91911186,1 Years and 9 Months,Yes,103.3186275,181.1910841,Low_spent_Small_value_payments,174.4595385,0,-0.7523,1.4305,-0.3592,-0.1886,0.6969 +0x9469,CUS_0xb9d,August,21,030-76-7737,Mechanic,51506.55,,4,6,279,4,"Home Equity Loan, Auto Loan, Personal Loan, and Personal Loan",,,13.4,4,Standard,2681.39,27.91419516,8 Years and 10 Months,Yes,160.9924108,,Low_spent_Small_value_payments,261.2767968,0,0.9265,0.4158,-1.0628,1.7507,-0.36 +0x9475,CUS_0x6d9f,August,26,369-28-8057,Media_Manager,15658.16,,10,8,21.88954781,6,"Payday Loan, Auto Loan, Student Loan, Payday Loan, Personal Loan, and Credit-Builder Loan",,19.22698985,16.67,7,Standard,2857.374862,25.95870705,11 Years and 10 Months,Yes,1376.519349,105.487138,Low_spent_Small_value_payments,223.5480982,0,-0.76,0.152,0.117,1.3974,0.8 +0x9481,CUS_0xb04b,August,40,807-44-4970,Manager,170391.52,14096.29333,3,3,3.288361749,0,,5.467730976,7.245165222,11.98,1,Good,340.451544,41.9778982,30 Years and 8 Months,No,0,964.1905807,High_spent_Small_value_payments,1125.376214,0,1.4695,0.3088,-0.0435,0.5253,-0.6858 +0x948d,CUS_0x5a95,August,32,476-07-5355,Accountant,34188.81,,0,4,5,1,Home Equity Loan,0,0,10.22,1,Good,1076.67,39.79426622,23 Years and 10 Months,No,25.17859848,103.2494321,Low_spent_Small_value_payments,433.4787194,0,0.5572,0.2813,0.0235,1.8261,0.3594 +0x9499,CUS_0x1fd1,August,32,005-25-5327,Writer,33494.36,,10,9,29.95700519,8,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Student Loan, Not Specified, Home Equity Loan, Student Loan, and Payday Loan",,33.23189221,8.78,9,Bad,3808.813841,40.18211193,9 Years and 6 Months,Yes,1520.738977,,High_spent_Medium_value_payments,209.7463821,0,0.8446,-0.8036,1.6675,2.0936,-1.547 +0x94a5,CUS_0x7398,August,18,981-68-0892,Entrepreneur,43213.44,,7,7,17,8,"Auto Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",30.93468167,23,16.56,14,Bad,4525.41,26.69459732,14 Years and 4 Months,Yes,162.9720423,40.59797515,High_spent_Large_value_payments,419.1419825,0,-1.0156,-0.4928,0.5459,1.2312,0.9877 +0x94b1,CUS_0x96ad,August,28,345-00-0295,Engineer,15755.455,,8,4,8.288361749,0,,,15,12.17,3,Standard,132.378078,38.24062774,25 Years and 9 Months,Yes,0,530.4595911,Low_spent_Medium_value_payments,343.50235,0,-0.6616,-0.1576,1.0156,1.3067,-0.2404 +0x94bd,CUS_0x1e72,August,36,895-93-2668,Architect,26670.7,1996.558333,5,4,5,3,"Debt Consolidation Loan, Payday Loan, and Payday Loan",11.85700749,13,15.96,5,_,502.35,30.73318109,11 Years and 9 Months,Yes,38.9895816,38.5309103,High_spent_Small_value_payments,382.1353414,0,-0.5136,0.1347,0.0865,0.4412,0.6254 +0x94c9,CUS_0x8e35,August,31,310-24-3292,Engineer,51093.9,4347.825,9,5,26,4,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",36.8955488,23,7.44,11,Bad,1997.75,28.30963868,6 Years and 5 Months,Yes,23084,10000,!@9#%8,498.6833585,0,0.3581,-0.7876,1.5096,0.8271,0.8815 +0x94d5,CUS_0xbfe8,August,18,629-08-5018,Entrepreneur,15007.61,,6,6,28.06745738,4,"Credit-Builder Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",,21.52388287,22.28,13,Standard,3102.038783,29.46798642,16 Years and 4 Months,Yes,49.65825698,,!@9#%8,219.1657864,0,0.4822,-0.8704,0.2022,-1.3914,-0.5855 +0x94e1,CUS_0xc727,August,37,559-56-3897,Media_Manager,91686.69,,3,3,3,2,"Student Loan, and Mortgage Loan",0.65834344,1.188325552,6.69,1412,Good,659.8526681,30.27420165,18 Years and 5 Months,No,83.09116326,,Low_spent_Medium_value_payments,460.1803585,0,0.1519,1.3168,-1.055,0.8579,0.3348 +0x94ed,CUS_0xc38d,August,50,693-25-9938,Doctor,21196.23,,5,6,11,4,"Not Specified, Credit-Builder Loan, Student Loan, and Home Equity Loan",24.49384793,19,18.92,6,_,1383.67,34.36436713,16 Years and 2 Months,Yes,61.54129633,50.62715115,Low_spent_Large_value_payments,356.1668025,0,-1.4065,-0.1837,-0.5247,-1.7895,-0.7501 +0x94f9,CUS_0x46bf,August,40,155-04-1050,Scientist,18344.75,,6,6,32.06745738,6,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Mortgage Loan",33.26192261,17,12.39,10,Bad,2265.690954,35.74569178,16 Years and 0 Months,Yes,76.55205263,26.35766845,High_spent_Medium_value_payments,302.2429076,0,-2.2472,2.0677,-0.3857,-1.364,1.311 +0x9505,CUS_0x766b,August,58,586-93-2728,Manager,84094.1,,0,2,2.288361749,2,"Student Loan, Personal Loan, and Debt Consolidation Loan",,12,11.12,4,_,486.5089269,40.08013527,,No,185.232478,734.5443977,Low_spent_Large_value_payments,490.6007134,0,-0.9756,0.8562,-2.8287,0.0248,1.3748 +0x9511,CUS_0x52bf,August,46,331-26-0350,Manager,147334.32,12223.86,5,1,7,0,,,12,8.96,4,Good,1133.25,40.06625267,25 Years and 3 Months,No,0,690.4668649,Low_spent_Medium_value_payments,811.9191351,0,-0.7488,0.4141,-1.4725,-0.7368,-1.2408 +0x951d,CUS_0xc24c,August,21,242-49-5854,Engineer,56850.32,,3,6,5,4,"Auto Loan, Auto Loan, Student Loan, and Personal Loan",,9,11.94,584,_,201.22,38.5502869,,Yes,135.2489551,114.2766106,High_spent_Medium_value_payments,475.827101,0,0.4679,0.2115,-0.0368,0.4399,-0.7001 +0x9529,CUS_0x9a7,August,54,818-94-9241,Engineer,116941.71,9614.1425,0,7,6,0,,,2,10.03,2,Good,721.24,42.04216679,20 Years and 0 Months,No,0,10000,High_spent_Large_value_payments,1087.63597,0,-0.5003,1.2345,-0.9399,0.3046,0.8234 +0x9535,CUS_0x67c7,August,22,220-80-3397,Mechanic,41644.48,,6,7,22,8,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",,21.67058314,4.77,7,Bad,3472.330207,23.56884355,8 Years and 11 Months,Yes,188.1393658,,High_spent_Medium_value_payments,329.1326443,0,-0.5089,-0.6649,-0.819,0.1838,0.7573 +0x9541,CUS_0xb56c,August,19,106-83-0154,Accountant,60801.28,,3,1235,2,2,"Personal Loan, and Student Loan",11.2955956,11,7.39,3,Good,1179.956148,34.0528649,22 Years and 8 Months,NM,89.583483,11596.75564,High_spent_Medium_value_payments,506.033905,0,-0.5709,-0.6282,-0.679,0.4747,0.2023 +0x954d,CUS_0x424,August,22,180-42-9738,Architect,30758.43,,4,5,8,1,Credit-Builder Loan,20.4205318,16,7.47,6,Standard,471.15,29.94101729,30 Years and 6 Months,Yes,24.40311987,,High_spent_Medium_value_payments,440.1320161,0,1.3834,-1.0776,-0.6149,-0.247,0.284 +0x9559,CUS_0x5d77,August,20,305-67-0878,Mechanic,66886.28,,6,9,17,4,"Credit-Builder Loan, Payday Loan, Payday Loan, and Payday Loan",,25.39183976,14.43,11,Bad,2876.365148,37.33840759,16 Years and 8 Months,Yes,436.6439568,234.2489444,Low_spent_Medium_value_payments,409.1034626,0,-0.327,0.138,1.9753,1.764,-0.1465 +0x9565,CUS_0xc6fa,August,26,600-70-6095,Entrepreneur,29648.86,2229.265672,3,5,15,3,"Auto Loan, Home Equity Loan, and Not Specified",,20,17.93,11,Standard,554.0413566,35.34492109,29 Years and 11 Months,Yes,340.6947185,48.46866383,High_spent_Medium_value_payments,405.0915613,0,-0.197,-0.4614,-0.7953,-0.5183,-1.0423 +0x9571,CUS_0x1feb,August,47,098-21-5869,Engineer,31254.23,,0,6,4,4,"Credit-Builder Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",0.506110468,2,9.94,6,Good,783.52,36.80974644,30 Years and 2 Months,No,74.50361698,340.9873415,Low_spent_Small_value_payments,141.0609581,0,0.8344,-0.7391,0.1512,-0.6961,0.0811 +0x957d,CUS_0x9e41,August,23,039-89-0333,Mechanic,18417.19,1754.765833,9,10,5616.067457,5,"Debt Consolidation Loan, Auto Loan, Personal Loan, Student Loan, and Auto Loan",31.4752566,17,18.24,13,Bad,4906.030954,26.84598707,6 Years and 3 Months,Yes,53.69033545,96.03638576,!@9#%8,269.0295742,0,-2.2226,0.5773,0.2721,1.0167,-0.2976 +0x9589,CUS_0xc52a,August,46,601-99-6960,Writer,35032.66,2853.388333,10,6,33,7,"Credit-Builder Loan, Student Loan, Personal Loan, Mortgage Loan, Payday Loan, Payday Loan, and Student Loan",,21.91736964,2.52,10,Bad,2040.343431,25.08617646,11 Years and 5 Months,Yes,150.5000973,106.7356793,Low_spent_Small_value_payments,318.1030568,0,1.268,1.7527,1.0709,-1.6062,0.3782 +0x9595,CUS_0x8b3e,August,24,266-96-2968,Doctor,32835.4,,2,6,2,1,Payday Loan,18.89519244,,5.35,7,_,866.86,34.6964132,27 Years and 0 Months,No,14.03481796,66.03387917,Low_spent_Large_value_payments,458.9596362,0,0.5475,-0.2924,-0.0819,-0.4683,-0.1269 +0x95a1,CUS_0x4409,August,18,024-84-1689,Writer,82899.52,,6,5,29,9,"Payday Loan, Auto Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",42.66616459,23,1.96,12,Bad,2550.26,30.72200515,5 Years and 2 Months,Yes,575.2949267,10000,High_spent_Medium_value_payments,145.8215976,0,0.6656,0.4364,-0.9587,-0.5043,0.0204 +0x95ad,CUS_0x6ee1,August,49,119-35-9497,Entrepreneur,133868.52,11000.71,5,4,8,3,"Mortgage Loan, Not Specified, and Personal Loan",0.955373498,3.647421913,6.79,0,Good,588.9071171,40.6212322,30 Years and 3 Months,No,328.3347072,411.2168616,Low_spent_Medium_value_payments,640.5194312,0,0.6329,-1.1598,-0.6201,1.5783,-1.032 +0x95b9,CUS_0x2ce8,August,36,598-78-9078,Manager,28706.94,,4,4,12,0,,,12,7.33,1,Good,702.368554,37.44923499,16 Years and 9 Months,No,0,189.9167413,Low_spent_Small_value_payments,371.3420979,0,-2.085,0.7416,-1.9373,-0.9252,0.4403 +0x95c5,CUS_0x64a4,August,46,907-98-0707,Developer,35372.36,,8,5,25,100,"Home Equity Loan, Auto Loan, Mortgage Loan, Auto Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",29.59032044,23,36.97,9,_,3850.97,34.48340224,7 Years and 8 Months,Yes,173.2419659,77.47750358,High_spent_Medium_value_payments,285.8501972,0,0.8886,-0.0425,0.9605,-0.9832,-0.0665 +0x95d1,CUS_0x4881,August,38,803-60-0204,Media_Manager,37263.45,3156.2875,3,3,7,0,,,6,7.76,2,Good,1238.06,41.94393819,31 Years and 3 Months,NM,0,,High_spent_Medium_value_payments,500.1341852,0,-1.2349,-0.3308,-0.5388,1.2314,-0.6309 +0x95dd,CUS_0x4527,August,30,210-47-9099,Entrepreneur,32426.78,2999.231667,6,5,2,2,"Payday Loan, and Debt Consolidation Loan",,15,3.41,1,Good,929.8745857,23.26791857,22 Years and 6 Months,No,32.36628526,,High_spent_Small_value_payments,408.0234722,0,-1.6631,-0.9695,1.1094,0.1193,-0.2193 +0x95e9,CUS_0x6240,August,30,439-23-4642,Journalist,33439.39,,8,6,5.288361749,4,"Not Specified, Credit-Builder Loan, Personal Loan, and Personal Loan",10.4031268,11,10.58,3,Standard,372.17,25.7829743,15 Years and 10 Months,Yes,58.60518842,529.3992153,High_spent_Small_value_payments,381.2946407,0,-1.6362,-0.8991,-0.9089,1.1863,0.1462 +0x95f5,CUS_0xb9f9,August,30,155-23-5479,Writer,54231.16,4727.263333,6,3,18,4,"Payday Loan, Student Loan, Home Equity Loan, and Mortgage Loan",16.39749022,14,18.89,,Standard,1293.76,34.22144417,15 Years and 5 Months,Yes,129.7066303,,High_spent_Medium_value_payments,517.482936,0,-0.1015,-0.4376,0.2055,-0.0198,0.0438 +0x9601,CUS_0xbd09,August,24,#F%$D@*&8,Doctor,42122.28,3211.19,2,6,5,2,"Payday Loan, and Not Specified",0,4,0.53,7,Good,775.54,39.29933787,19 Years and 8 Months,No,61.36280292,56.25446375,High_spent_Medium_value_payments,453.5017333,0,1.2939,0.0833,0.1241,-0.3052,-0.1748 +0x960d,CUS_0x2f11,August,47,148-19-8466,Writer,28022.9,,5,7,5,1,Debt Consolidation Loan,12.84702427,11.70956256,12.79,9,Standard,420.209719,29.68447014,20 Years and 8 Months,NM,11.74467148,120.7733113,Low_spent_Small_value_payments,367.3061839,0,0.9306,1.3273,0.7837,-1.3679,0.7558 +0x9619,CUS_0x9bc8,August,40,676-02-7685,Musician,44812.78,3770.398333,3,6,12,0,,18.90110386,16,7.57,31,Good,628.32,29.96720463,31 Years and 2 Months,No,0,,Low_spent_Large_value_payments,555.1462634,0,1.2076,-1.9296,0.8215,-1.0951,-0.7708 +0x9625,CUS_0x1621,August,41,470-60-1304,Writer,18329.93,1312.494167,7,6,6,6,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",14.34990324,11,18.41,6,Standard,161.04,35.15460513,19 Years and 11 Months,NM,51.96709426,176.1227535,Low_spent_Small_value_payments,193.1595689,0,0.937,0.7573,1.404,1.5623,0.3991 +0x9631,CUS_0x33e0,August,25,655-15-0889,Entrepreneur,12427.74,767.645,6,6,11,4,"Payday Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",,12.42185564,9.61,1,Good,243.02341,30.35569492,27 Years and 5 Months,No,33.80826908,100.6794546,Low_spent_Small_value_payments,232.2767763,0,-2.3107,-1.0693,-1.6216,-0.7588,0.7855 +0x963d,CUS_0x376f,August,40,623-90-3707,Doctor,60575.7,4794.975,4,7,15,3,"Home Equity Loan, Personal Loan, and Credit-Builder Loan",,18,,4,Standard,832.55,37.61073057,30 Years and 3 Months,No,135.037723,,Low_spent_Small_value_payments,92.00204314,0,-0.7201,1.0981,0.2437,-0.5022,-0.1909 +0x9649,CUS_0x87e2,August,43,#F%$D@*&8,Teacher,62359.82,,4,5,11,1,Personal Loan,13.58019168,12,14.94,3,Standard,250.56,34.60504097,24 Years and 4 Months,Yes,29.76576296,550.0125352,Low_spent_Small_value_payments,222.2868685,0,-0.2327,1.9259,-2.5524,-0.4521,0.2833 +0x9655,CUS_0x2e50,August,37,363-62-6314,Journalist,9987.295,,8,5,23,7,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Personal Loan",,22.49281097,7.03,16,Bad,3247.27644,33.69444359,3 Years and 11 Months,Yes,47.26374474,21.5967247,Low_spent_Medium_value_payments,268.9669889,0,-0.6783,-1.3178,-0.8143,-0.8311,0.1167 +0x9661,CUS_0xb9cd,August,20,521-86-5620,Mechanic,33146.84,2704.236667,6,4,11,1,Student Loan,20.91690609,,10.83,5,Standard,168.46,26.99663405,31 Years and 8 Months,Yes,19.92112515,212.8740454,Low_spent_Small_value_payments,327.6284962,0,-1.6271,0.331,0.4329,-0.2419,-1.5894 +0x966d,CUS_0x51e3,August,47,603-82-8438,Writer,98803.47,8099.6225,0,3,2.288361749,2,"Not Specified, and Debt Consolidation Loan",4.205805798,6.909250315,-1.17,2,_,862.6481029,36.26709986,31 Years and 3 Months,No,120.1736897,1138.671172,Low_spent_Medium_value_payments,251.0548497,0,-0.472,-0.1228,0.4618,1.2047,0.4225 +0x9679,CUS_0x2e79,August,31,670-14-6375,Engineer,35059.2,2653.6,8,6,25,9,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Personal Loan, Auto Loan, and Not Specified",,20,22.42,10,Bad,2834.16,33.3597265,4 Years and 4 Months,Yes,200.3861549,129.781559,Low_spent_Small_value_payments,225.192286,0,-0.903,-0.5405,0.1058,0.3257,0.2471 +0x9685,CUS_0xc2ea,August,37,665-75-2844,Accountant,14392.84,,10,7,27,5,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",31.68177876,17.47833921,14.48,10,_,1732.599105,34.92732929,17 Years and 10 Months,Yes,55.62030247,,Low_spent_Small_value_payments,239.9676359,0,-0.4485,1.3964,-2.0997,1.0246,-0.1633 +0x9691,CUS_0x763c,August,54,028-40-4770,Accountant,12924.77,,5,7,5,2,"Personal Loan, and Personal Loan",22.94737235,17,12.7,4,_,149.02,30.80537976,33 Years and 2 Months,Yes,11.51526285,40.70261703,Low_spent_Small_value_payments,318.7885368,0,-0.884,-1.293,-0.1822,1.5067,2.0098 +0x969d,CUS_0x59c7,August,29,650-76-1704,Mechanic,33036.44,,4,3,17,6,"Payday Loan, Mortgage Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Home Equity Loan",23.71674835,16,13.76,7,Standard,1377.16,27.76909151,6 Years and 10 Months,NM,143.1403448,,Low_spent_Small_value_payments,200.9067401,0,0.8622,-0.1933,0.8261,-1.3071,-0.1847 +0x96a9,CUS_0x387d,August,33,761-53-5627,Doctor,102279.18,,7,5,9,5,"Payday Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",24.85293086,17,6.45,6,Standard,959.34,28.01173369,8 Years and 11 Months,Yes,339.675527,252.4827552,High_spent_Small_value_payments,546.9682178,0,-0.7419,-0.7398,1.2146,0.1038,-0.5559 +0x96b5,CUS_0xd35,August,44,168-20-8848,Engineer,37227.24,3006.27,8,7,28,2,"Mortgage Loan, and Auto Loan",20.52661734,10,7.32,,Standard,1309.53,23.19696616,17 Years and 5 Months,Yes,47.42556537,251.2206309,Low_spent_Small_value_payments,291.9808037,0,-0.7485,-0.4506,1.5337,1.1473,-0.4177 +0x96c1,CUS_0x7c66,August,18,046-49-7407,_______,8507.27,,8,535,17.88954781,8,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",,22,2.22,6,Bad,1409.04,39.33427692,,Yes,1366.327885,,Low_spent_Small_value_payments,213.5622535,0,1.2074,0.5134,0.4942,-1.0873,-0.4091 +0x96cd,CUS_0x878c,August,41,479-15-5308,Journalist,70847.52,5637.96,8,9,21.95700519,7,"Not Specified, Credit-Builder Loan, Student Loan, Not Specified, Payday Loan, Auto Loan, and Payday Loan",,27.27752473,,12,Bad,4756.504842,41.25401654,,Yes,1550.672211,,High_spent_Medium_value_payments,451.7272471,0,0.0683,1.7012,-0.991,0.0633,0.3419 +0x96d9,CUS_0x8261,August,49,946-68-5714,Engineer,18894.02,,0,3,7,2,"Personal Loan, and Not Specified",0,3,3.83,3,Good,501.22,25.7276628,24 Years and 0 Months,No,29.57994369,148.225496,Low_spent_Medium_value_payments,254.644727,0,0.7526,0.4779,-0.6155,2.32,-0.5388 +0x96e5,CUS_0x4eb6,August,45,930-91-3174,Media_Manager,134563.36,11153.61333,6,7,10,4,"Student Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",27.66513767,18,15.62,,_,402.25,29.66105923,17 Years and 9 Months,Yes,356.3315408,397.1549978,Low_spent_Large_value_payments,631.8747948,0,0.8677,-0.1958,-0.3947,-0.8669,-1.3479 +0x96f1,CUS_0x9c05,August,80,934-83-2341,Doctor,7453.305,,6,10,22.88954781,9,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Credit-Builder Loan",,26.19083042,16.6,10,Bad,3054.840537,34.8968479,1 Years and 4 Months,Yes,1363.923167,,High_spent_Small_value_payments,230.436101,0,-1.7038,-1.3304,1.1903,0.4918,1.9557 +0x96fd,CUS_0x7ffd,August,36,605-23-4684,Media_Manager,42247.17,3501.5975,10,8,21.95700519,9,"Mortgage Loan, Personal Loan, Student Loan, Student Loan, Not Specified, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",27.73849148,18.22444038,20.77,6,Bad,3314.397017,25.19318511,7 Years and 11 Months,Yes,1579.271197,58.28413925,High_spent_Medium_value_payments,241.5540444,0,-0.8731,0.3758,0.5322,1.0411,2.0699 +0x9709,CUS_0xc6f2,August,26,359-07-9611,Engineer,103515.51,,0,2,4.288361749,4,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",90,2222,6.2,4,_,55.80265065,34.86871657,29 Years and 6 Months,NM,211.6298822,496.5434919,High_spent_Large_value_payments,796.8435621,0,1.3287,0.1689,-0.59,1.9926,-1.8232 +0x9715,CUS_0xb153,August,42,417-39-7961,Lawyer,51340.92,4269.41,7,7,14,7,"Home Equity Loan, Personal Loan, Mortgage Loan, Student Loan, Not Specified, Payday Loan, and Payday Loan",,19.27442232,12.71,4,Standard,2404.588372,31.27733524,5 Years and 11 Months,Yes,289.2410451,168.6151232,High_spent_Medium_value_payments,219.0848317,0,-0.6669,1.8003,-0.7816,-0.5473,0.5707 +0x9721,CUS_0x1986,August,53,136-39-0495,Teacher,17707.46,,6,6,5,0,,23.02254715,17,16.37,3,Standard,1261.444838,32.30755057,26 Years and 11 Months,Yes,165.7288563,34.65984931,High_spent_Small_value_payments,374.5561754,0,0.2485,0.7561,-2.124,0.4639,-0.9646 +0x972d,CUS_0x6d41,August,45,794-86-1129,Journalist,22006.43,1655.869167,8,3,19,0,,26.0954376,21.15374473,9.21,4,_,1401.677723,25.73570999,22 Years and 3 Months,Yes,0,37.70176585,High_spent_Medium_value_payments,377.8851508,0,0.3891,1.1006,-0.4171,-0.4723,-1.0253 +0x9739,CUS_0xb82b,August,30,022-92-7129,Scientist,74023.53,,4,6,8,0,,,13,11.66,5,Standard,436.51,26.61518829,10 Years and 0 Months,Yes,0,147.4768455,High_spent_Medium_value_payments,736.0859045,0,-0.473,0.0569,-2.1041,1.4132,0.5092 +0x9745,CUS_0x5bf,August,26,712-86-4030,Scientist,9846.615,826.55125,8,5,20.06745738,8,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Student Loan, and Home Equity Loan",29.53945565,19.79939562,1.55,12,Bad,4925.128912,25.55554746,6 Years and 10 Months,Yes,33.1955523,22.76914495,Low_spent_Large_value_payments,269.9701398,0,0.6174,0.8615,-0.6391,-1.0384,1.8977 +0x9751,CUS_0xae82,August,50,129-82-2093,Architect,31080.36,,8,4,6,1,Personal Loan,20.14824555,13,8.92,5,Standard,512.07,33.25506129,32 Years and 6 Months,No,19.65614005,163.6921133,High_spent_Small_value_payments,316.0547467,0,-0.8486,0.375,0.1999,0.9842,-1.5582 +0x975d,CUS_0xa530,August,37,528-62-6036,Teacher,19078.52,,9,5,34,6,"Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Student Loan",,29.86301021,29.39,9,Bad,3298.680754,25.45521097,10 Years and 8 Months,Yes,83.35605779,35.60802947,High_spent_Medium_value_payments,300.8235794,0,0.8708,-1.8596,-1.3555,1.2742,1.1851 +0x9769,CUS_0xa7b7,August,41,052-14-7505,_______,83789.22,,8,6,2,2,"Home Equity Loan, and Not Specified",18.99107726,18,9.21,7,_,1185.23,23.63390994,31 Years and 8 Months,No,98.48607056,,Low_spent_Large_value_payments,321.2029983,0,0.2185,0.5973,0.6607,0.6695,0.3884 +0x9775,CUS_0x9673,August,25,713-38-9516,Architect,108702.09,8900.5075,3,4,12,4,"Not Specified, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",7.215020467,6,3.37,1,Good,364.81,30.86685869,26 Years and 8 Months,No,313.7135654,,High_spent_Small_value_payments,587.2399511,0,1.085,-0.3879,0.4906,-1.0311,0.096 +0x9781,CUS_0x4be2,August,44,431-73-9913,Manager,7201.505,488.1254167,6,5,29,5,"Credit-Builder Loan, Student Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",8.471260694,7.216139279,14.2,15,Standard,2671.956384,23.7023284,,Yes,24.90026851,17.80885898,High_spent_Small_value_payments,266.1034142,0,-0.0506,0.3991,-1.5104,-1.8135,1.0428 +0x978d,CUS_0x85b9,August,45,754-52-5757,Journalist,135445.2,11415.1,5,4,17,3,"Payday Loan, Not Specified, and Payday Loan",36.73078497,23.98850412,19.4,4,Standard,738.8219522,37.35350461,,Yes,222.9189043,693.0599434,Low_spent_Large_value_payments,495.5311523,0,1.1789,0.1317,0.577,0.2136,-0.3666 +0x9799,CUS_0x7c6d,August,27,889-77-4172,Accountant,39139.35,3414.6125,4,4,4,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Personal Loan",23.40641089,15.69495829,1.94,0,Good,1441.974922,38.06527385,16 Years and 8 Months,No,122.6212995,66.60256336,High_spent_Large_value_payments,392.2373871,0,0.7657,-0.6393,0.2321,-0.7565,0.3165 +0x97a5,CUS_0xbda6,August,29,619-50-3543,_______,68552.32,5618.693333,8,8,32.95700519,7,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",31.97498009,18,27.16,13,Bad,4497.500954,39.56152339,3 Years and 6 Months,Yes,1531.193702,245.9170572,High_spent_Small_value_payments,323.7082046,0,0.9693,0.3721,-0.4636,-1.0569,0.4639 +0x97b1,CUS_0x1768,August,37,738-21-7582,Writer,112080.48,9211.04,2,4,6.288361749,2,"Debt Consolidation Loan, and Payday Loan",11.7840236,12,11.69,3,Good,1360.45,26.61550641,21 Years and 4 Months,No,105.3645556,762.1931176,High_spent_Medium_value_payments,723.4837878,0,0.1412,-0.5338,-1.1861,1.71,-0.1244 +0x97bd,CUS_0x5198,August,36,805-09-7081,Doctor,14526.58,1318.548333,5,7,31,7,"Payday Loan, Student Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",16.65103412,,6.1,7,_,2795.172016,29.51494399,17 Years and 8 Months,Yes,83.96047516,10000,Low_spent_Small_value_payments,213.9657039,0,-0.873,-0.9238,-1.8078,-0.0706,1.8004 +0x97c9,CUS_0x9357,August,29,600-08-5694,Musician,36780.03,,5,6,5,2,"Auto Loan, and Personal Loan",1.09307089,3,-0.58,5,Good,195.07,27.64093139,33 Years and 2 Months,No,61.19963022,121.7924187,High_spent_Medium_value_payments,383.9082011,0,-0.449,-0.1817,0.5323,1.2901,-0.5693 +0x97d5,CUS_0x580e,August,48,357-06-5725,Manager,97174.44,,4,3,14,4,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",17.09433136,11,-5.7,3,Standard,137.68,32.28968153,24 Years and 4 Months,Yes,184.7522282,659.5742138,Low_spent_Large_value_payments,227.260558,0,-1.6809,1.1778,1.7188,-0.1831,-0.5027 +0x97e1,CUS_0x7a15,August,19,744-57-1972,Developer,62877.88,5485.823333,8,8,19.06745738,5,"Student Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Student Loan",,19,27.71,12,_,5016.030954,43.52817652,5 Years and 8 Months,Yes,169.5140972,106.2652589,High_spent_Medium_value_payments,496.0826893,0,-0.0832,-1.0821,-1.072,-0.5674,1.363 +0x97ed,CUS_0x54a3,August,18,225-90-9918,Teacher,39039.8,3397.316667,10,6,29,8,"Mortgage Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Personal Loan, Auto Loan, Personal Loan, and Auto Loan",,20,7.33,13,Bad,1913.06,33.84693278,15 Years and 8 Months,Yes,130.45662,140.8931825,!@9#%8,318.3818642,0,-0.9693,-0.2723,-1.0721,-0.2568,0.9828 +0x97f9,CUS_0xc390,August,47,243-16-4221,Teacher,11617.39,850.1158333,7,7,16,1,Home Equity Loan,23.05290045,16,17.01,7,Standard,816.39,26.63808329,32 Years and 5 Months,Yes,5.463308978,41.9750478,High_spent_Small_value_payments,297.5732266,0,1.32,0.6496,-0.0494,-0.6334,0.3817 +0x9805,CUS_0x2e98,August,50,818-27-8113,_______,43734.68,3650.556667,0,5,5,1,Mortgage Loan,,11,9.33,3,Good,879.2199426,37.60669831,24 Years and 8 Months,No,19.84423303,94.07375485,High_spent_Large_value_payments,501.393561,0,0.1295,-0.4117,-0.9278,-1.0456,0.6792 +0x9811,CUS_0xc050,August,26,634-03-2346,Scientist,20235.8,,8,7,7,2,"Personal Loan, and Mortgage Loan",,15,4.74,6,Standard,856.73,24.84726839,,No,28.31703254,108.5014278,High_spent_Small_value_payments,293.1132063,0,0.985,-0.3416,-0.1135,-0.6511,-0.1379 +0x981d,CUS_0x1705,August,52,176-22-5639,Media_Manager,43543.72,,3,3,7,1,Not Specified,0,0,6.7,3,_,175.4209735,35.23900633,23 Years and 10 Months,No,33.43804242,134.8905149,High_spent_Medium_value_payments,442.9181176,0,-0.4285,-1.1419,1.0312,-0.6188,-1.0097 +0x9829,CUS_0x7283,August,24,078-84-8943,Writer,53370.42,4618.535,6,7,7,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",23.62617524,17,8.68,7,Standard,240.27,29.37850259,20 Years and 11 Months,Yes,43528,356.7220982,Low_spent_Large_value_payments,278.5761313,0,0.0633,0.1378,0.6385,-2.5005,-0.8519 +0x9835,CUS_0x63de,August,43,684-76-8682,Developer,77613.39,,7,6,12,0,,10.1463296,10,9.01,6,Standard,321.59,30.51713599,30 Years and 10 Months,Yes,0,154.266331,Low_spent_Large_value_payments,734.011919,0,0.14,0.0611,-1.9675,0.9293,1.0151 +0x9841,CUS_0xb6e6,August,22,989-37-3565,Media_Manager,108680.19,,8,7,5,1,Mortgage Loan,9.939357912,10,12.26,5,_,1439.29,32.15801477,17 Years and 5 Months,Yes,60.64089801,260.6039712,High_spent_Medium_value_payments,857.0233808,0,-1.5358,0.4068,-1.6267,-1.0951,0.5744 +0x984d,CUS_0x87b4,August,43,151-39-5789,Musician,34114.43,,4,3,5,4,"Credit-Builder Loan, Auto Loan, Personal Loan, and Not Specified",12.84288386,13,8.32,4,Good,774.320114,39.61975533,19 Years and 8 Months,NM,80.10216969,,High_spent_Large_value_payments,421.3186331,0,1.2337,0.282,-0.9288,0.1574,0.875 +0x9859,CUS_0xac2b,August,41,080-40-4889,Teacher,15723.705,,7,3,6,4,"Credit-Builder Loan, Auto Loan, Personal Loan, and Mortgage Loan",,11,5.68,3,Standard,632.13,35.90360199,19 Years and 11 Months,No,29.31306813,,Low_spent_Small_value_payments,221.8635056,0,-0.1494,0.1658,-0.0013,-0.8887,1.7322 +0x9865,CUS_0x2d88,August,37,365-13-3951,Manager,97420.86,,6,7,20,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Student Loan",20.85176376,15,1.08,6,Standard,619.58,24.19217828,28 Years and 8 Months,No,179.0211463,381.6875128,Low_spent_Large_value_payments,493.1318409,0,-0.4445,-0.9245,0.2394,-0.1213,-1.9986 +0x9871,CUS_0x903f,August,40,686-12-7117,Media_Manager,67097.28,5132.226161,3,3,11,100,"Student Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",,,11.16,1387,Standard,995.9118564,23.57718784,23 Years and 0 Months,Yes,417.495569,154.0620935,!@9#%8,471.9274535,0,0.2556,0.631,-0.3134,-0.337,0.457 +0x987d,CUS_0xa692,August,22,732-31-3576,Architect,38029.86,3032.155,10,9,18,5,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",32.12072007,23.62708462,30.72,11,_,3274.55153,30.66390554,10 Years and 9 Months,Yes,111.504345,67.91664144,High_spent_Small_value_payments,383.7945135,0,1.2975,0.1443,-1.7111,-0.6309,0.5606 +0x9889,CUS_0xa60a,August,36,#F%$D@*&8,Manager,18508.07,,9,6,24.06745738,5,"Not Specified, Not Specified, Payday Loan, Not Specified, and Student Loan",,23,23.44,9,_,3242.580954,31.81381504,0 Years and 9 Months,NM,64.88860761,107.9318824,Low_spent_Small_value_payments,258.2931387,0,2.0502,0.8464,0.5321,-0.4841,1.1937 +0x9895,CUS_0x4cae,August,24,223-47-1067,Writer,77832.74,6234.061667,5,4,5,3,"Payday Loan, Not Specified, and Not Specified",,12,6.01,3,Good,454.41,29.16540761,25 Years and 2 Months,No,152.7340615,,High_spent_Large_value_payments,579.0398636,0,1.0552,-2.0757,-0.1764,0.3754,-0.6032 +0x98a1,CUS_0x1258,August,50,673-09-0668,Entrepreneur,44955.64,3878.303333,4,6,20,0,,14.20037322,9,17.2,4,Standard,766.63,38.79470513,17 Years and 3 Months,Yes,0,70.33669216,High_spent_Medium_value_payments,567.4936412,0,-2.1397,-0.3635,-0.1383,1.3277,0.714 +0x98ad,CUS_0x237d,August,33,297-24-1456,Developer,31632.32,,2,3,9,3,"Payday Loan, Payday Loan, and Mortgage Loan",5.855003771,9,3.7,6,Good,64.3406279,25.96230299,32 Years and 10 Months,No,59.02287401,85.69603456,High_spent_Medium_value_payments,357.85335,0,1.674,1.1515,2.284,1.3637,0.566 +0x98b9,CUS_0x6ea9,August,25,017-93-1533,Musician,140719.08,11580.59,3,1,7,0,,5.989386147,6,10.63,2,Good,985.1413767,33.71614235,16 Years and 5 Months,No,0,632.1231122,Low_spent_Medium_value_payments,888.4995674,0,-0.0647,-0.1255,0.3401,0.11,0.6281 +0x98c5,CUS_0x775d,August,46,347-38-4910,Entrepreneur,32146.13,2698.844167,0,7,11.28836175,100,Personal Loan,8.113995126,9,3.58,6,Good,65.89,28.79166462,29 Years and 3 Months,No,24.73686007,513.2971207,Low_spent_Medium_value_payments,431.7878969,0,0.5656,0.0728,0.5622,0.0688,-1.3419 +0x98d1,CUS_0x660b,August,21,712-12-7095,Accountant,118875.69,9939.3075,0,4,12,2,"Not Specified, and Auto Loan",0,3,9.5,1,Good,347.6032509,29.73018206,31 Years and 9 Months,No,99.33992627,195.6513817,High_spent_Medium_value_payments,969.3793242,0,1.4588,0.7909,-0.3862,1.233,0.3704 +0x98dd,CUS_0x88c,August,18,017-54-5930,Teacher,63845.4,5293.45,3,5,5,6,"Credit-Builder Loan, Payday Loan, Auto Loan, Student Loan, Home Equity Loan, and Mortgage Loan",13.5627557,11,14.57,8,Standard,596.67,28.43279346,14 Years and 6 Months,Yes,306.6610383,183.190594,High_spent_Medium_value_payments,289.4933677,0,0.494,-0.7076,-0.3087,1.929,0.6991 +0x98e9,CUS_0x2662,August,34,071-40-3808,Manager,35134.51,2824.875833,8,6,15,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",,17,3.16,6,Standard,1359.56,32.09393705,32 Years and 2 Months,NM,45.90645161,44.34095243,!@9#%8,442.2401793,0,0.5156,0.3723,-1.5452,-1.0532,0.0895 +0x98f5,CUS_0x3733,August,42,684-91-0976,Developer,12868.625,829.3854167,6,7,6.067457376,4,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",14.46430481,8,0.77,3,Standard,1061.260954,34.97541063,33 Years and 5 Months,Yes,39.26859785,,Low_spent_Small_value_payments,260.0944889,0,-0.7283,1.3957,-0.3221,-0.3453,0.5943 +0x9901,CUS_0x974f,August,49,114-41-4714,Developer,26025.94,,8,7,7,0,,,19.11804452,9.23,1,_,741.1791439,33.01357071,23 Years and 8 Months,Yes,0,,!@9#%8,250.4637776,0,-0.1439,-1.4716,0.669,-1.1754,0.4047 +0x990d,CUS_0xbed8,August,21,510-24-8765,Scientist,74449.44,6251.12,8,8,28.88954781,6,"Student Loan, Auto Loan, Personal Loan, Mortgage Loan, Student Loan, and Home Equity Loan",,17,25.97,13,Bad,2646,23.85093322,6 Years and 3 Months,Yes,1643.152964,687.4917604,Low_spent_Small_value_payments,,0,-0.4855,0.1503,-0.3331,-0.535,2.0046 +0x9919,CUS_0xb362,August,25,374-08-5763,Writer,71531.2,6170.933333,9,7,7.288361749,2,"Not Specified, Not Specified, and Auto Loan",12.9577552,12,-4.28,2,Standard,642.03,30.80543405,15 Years and 10 Months,No,162.9691033,1245.228378,Low_spent_Small_value_payments,,0,1.2491,-0.1192,-0.2879,-0.7352,-1.4172 +0x9925,CUS_0xc6e4,August,20,577-08-7180,Manager,15471.01,,6,9,21.06745738,5,"Mortgage Loan, Student Loan, Mortgage Loan, Payday Loan, and Student Loan",21.25529021,,13.76,8,Standard,2149.119194,29.68477018,13 Years and 0 Months,Yes,36.67392969,41.4999866,Low_spent_Large_value_payments,311.8308791,0,0.4305,1.0086,-0.4433,-0.1662,1.3382 +0x9931,CUS_0xb8da,August,34,882-30-4887,_______,89434.35,7281.8625,2,6,7,4,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Not Specified",6.95318012,8,6.31,2,_,537.46,36.50141991,28 Years and 10 Months,No,244.7423877,,High_spent_Large_value_payments,551.4379957,0,-0.945,0.1728,0.6818,-1.051,-0.3228 +0x993d,CUS_0x710e,August,44,840-65-9735,Doctor,41678.65,,2,5,7,4,"Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",2.993858179,5,5.31,3,_,1209.49,24.36083837,21 Years and 3 Months,No,76.05827117,48.55615702,High_spent_Medium_value_payments,492.6076551,0,0.1893,1.02,-0.024,-1.3829,1.3658 +0x9949,CUS_0x6e2a,August,40,251-61-8238,_______,53320.08,4387.34,8,7,2,2,"Student Loan, and Not Specified",,15.04840825,3.54,3,Good,661.0459853,31.4770822,20 Years and 2 Months,No,45.78996249,74.44891624,High_spent_Large_value_payments,558.4951213,0,-1.6002,0.7151,0.555,0.8481,0.4712 +0x9955,CUS_0x8029,August,56,435-10-7131,Architect,151303.88,12714.65667,3,1,1.288361749,0,,9.414774869,11,9.97,1,Good,1097.17,30.8688688,16 Years and 10 Months,No,0,1265.973898,Low_spent_Small_value_payments,715.4292298,0,0.7654,0.0683,0.0805,-0.7389,0.0203 +0x9961,CUS_0xab44,August,43,860-36-6944,Accountant,62109.24,5152.77,5,4,15,4,"Not Specified, Personal Loan, Auto Loan, and Home Equity Loan",18.51636432,11,7.63,7,_,1308.94,30.9216365,27 Years and 6 Months,Yes,166.1585477,653.9601338,Low_spent_Small_value_payments,,0,-0.9079,0.0113,0.7405,0.728,-0.0459 +0x996d,CUS_0x440a,August,59,854-64-6856,Musician,44789.64,,2,3,8,0,,3.287711914,5,8.99,2,Good,106.1895428,39.96437287,16 Years and 8 Months,No,0,191.458986,Low_spent_Medium_value_payments,480.0210313,0,-1.0291,0.6069,-0.717,2.4434,-1.4088 +0x9979,CUS_0x55f1,August,27,170-18-6434,Scientist,9898.6,,6,8,21.06745738,5,"Debt Consolidation Loan, Not Specified, Mortgage Loan, Payday Loan, and Payday Loan",21.58154804,,5.01,16,Bad,1719.599196,29.49839747,7 Years and 2 Months,Yes,40.66265593,106.2135176,Low_spent_Small_value_payments,202.6918719,0,-1.1251,0.062,-0.1415,-2.4917,0.7414 +0x9985,CUS_0xc218,August,18,856-65-2141,Media_Manager,37240.22,,6,10,16,3,"Payday Loan, Debt Consolidation Loan, and Mortgage Loan",31.86224949,24.91889426,13.23,8,Standard,1940.083996,33.12630577,8 Years and 8 Months,NM,58.2301877,90.28268454,High_spent_Medium_value_payments,432.8222944,0,-1.1532,-0.7717,-0.6783,0.1987,0.0856 +0x9991,CUS_0xc0f6,August,24,773-23-6801,Developer,177330.24,14601.52,2,5,8,3,"Auto Loan, Home Equity Loan, and Student Loan",,7,10.98,1375,Good,529.85,37.23282466,29 Years and 5 Months,No,435.3482727,245.8716232,High_spent_Medium_value_payments,1028.932104,0,-1.1713,0.4177,0.0168,0.7641,-0.6445 +0x999d,CUS_0xf4b,August,30,527-06-9414,_______,28485.71,,1,6,7,3,"Credit-Builder Loan, Not Specified, and Student Loan",0,2.261362037,9.33,1,Good,1079.594832,39.52022135,22 Years and 3 Months,No,51.28993104,92.61576858,!@9#%8,346.275217,0,1.4074,0.1619,1.9067,-0.608,-0.9337 +0x99a9,CUS_0xa42a,August,80,#F%$D@*&8,Developer,15974.84,,8,6,24.06745738,9,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,26.5085952,4.91,12,Bad,2702.413377,37.46098006,18 Years and 0 Months,Yes,180.855787,,Low_spent_Small_value_payments,227.167148,0,0.6598,0.55,1.9184,0.3281,0.767 +0x99b5,CUS_0x9263,August,30,939-68-0807,Manager,14369.5,962.4583333,7,7,20.06745738,9,"Not Specified, Credit-Builder Loan, Mortgage Loan, Auto Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",34.74391786,21,23.96,12,Bad,4720.180954,34.94023415,12 Years and 2 Months,Yes,79.50655235,39.49041336,High_spent_Small_value_payments,210.5285797,0,0.3669,-2.2316,2.0486,-0.1286,-0.0917 +0x99c1,CUS_0x3f3,August,44,422-13-0011,Writer,104142.56,,3,5,5,3,"Personal Loan, Auto Loan, and Auto Loan",18.66376022,14,15.28,692,Standard,1371.8,36.33950238,15 Years and 6 Months,Yes,257.738646,481.7990883,Low_spent_Medium_value_payments,383.8169323,0,0.3516,0.3625,0.874,0.4158,0.3863 +0x99cd,CUS_0x1c58,August,43,190-08-2429,Writer,35319.26,,4,3,6.288361749,4,"Mortgage Loan, Payday Loan, Payday Loan, and Credit-Builder Loan",0,3,6.66,3,Good,140.19,25.60950708,29 Years and 2 Months,No,112.7362381,,Low_spent_Small_value_payments,231.4415999,0,-0.8513,-1.3433,2.1854,0.564,1.6336 +0x99d9,CUS_0x5a4d,August,26,036-71-9071,Architect,10830.26,922.5216667,8,7,3,3,"Payday Loan, Student Loan, and Payday Loan",15.69823758,11,1.89,0,Standard,375.51,23.39441985,33 Years and 2 Months,No,13.54391811,28.25653987,Low_spent_Large_value_payments,320.4517087,0,-1.5592,-0.2513,1.336,-0.135,0.3651 +0x99e5,CUS_0x2796,August,23,123-92-7016,Scientist,8329.915,660.1595833,8,5,31.06745738,8,"Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Personal Loan, Payday Loan, Not Specified, and Auto Loan",26.26207543,,0.79,12,_,2531.510954,32.31904569,,Yes,31.26580197,,Low_spent_Small_value_payments,214.5870175,0,1.1429,-0.5253,0.4648,-2.23,-0.1782 +0x99f1,CUS_0xc2e2,August,18,327-46-6796,Architect,16891.04,1420.586667,7,7,21.06745738,9,"Student Loan, Home Equity Loan, Mortgage Loan, Not Specified, Not Specified, Payday Loan, Payday Loan, Home Equity Loan, and Not Specified",31.80160609,16,18.5,6,_,3181.870954,25.48463589,4 Years and 5 Months,Yes,112.1692222,,High_spent_Medium_value_payments,207.6768681,0,1.0695,-0.4124,2.5394,1.4189,0.564 +0x99fd,CUS_0x1f34,August,59,554-15-1394,_______,68041.56,5885.13,3,5,0.288361749,2,"Mortgage Loan, Home Equity Loan, and Student Loan",7.671626739,9,14.55,8,Good,751.4756493,32.1722012,27 Years and 11 Months,No,93.66877612,559.1490324,High_spent_Large_value_payments,611.6057847,0,0.6058,-0.2781,0.3371,0.3522,0.4927 +0x9a09,CUS_0x8fdf,August,23,312-56-4208,Scientist,107871.9,8816.325,3,4,8,100,"Student Loan, Mortgage Loan, and Credit-Builder Loan",19.09579137,,6.27,2,Standard,882.1311808,29.41952776,32 Years and 10 Months,No,227.241789,1231.449746,Low_spent_Small_value_payments,,0,0.3436,2.3113,-1.0413,-1.7478,1.2009 +0x9a15,CUS_0xba67,August,29,290-73-1416,Doctor,24795.16,,8,6,20,0,,14.69649774,9,6.26,0,_,664.38,32.32677812,27 Years and 10 Months,No,0,52.01965,Low_spent_Large_value_payments,398.7066833,0,-0.5976,-0.2354,0.9336,-1.0764,-1.0305 +0x9a21,CUS_0xb828,August,36,045-34-1946,Journalist,57074.58,,7,9,15,3,"Home Equity Loan, Auto Loan, and Student Loan",,28.20343986,2.79,8,Bad,2803.333555,32.62530104,8 Years and 0 Months,Yes,109.1532273,344.7251504,!@9#%8,304.0431223,0,-0.1802,-0.6048,1.0951,0.2566,-0.2817 +0x9a2d,CUS_0xb15d,August,18,495-07-8544,Teacher,16762.18,,5,6,21.06745738,3,"Home Equity Loan, Student Loan, and Student Loan",17.69662947,11,5.3,8,_,1228.660954,29.32005047,13 Years and 3 Months,Yes,36.24728808,68.47399621,Low_spent_Large_value_payments,280.5432611,0,0.8001,-0.6071,-0.6001,-0.3432,1.2988 +0x9a39,CUS_0x488b,August,26,504-16-8903,Engineer,39560.62,3247.718333,6,10,29.88954781,7,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",32.58617066,23.14940571,11.66,9,Standard,1644.979289,29.54048418,20 Years and 0 Months,Yes,1512.526253,119.10222,High_spent_Medium_value_payments,248.8132796,0,0.3151,-1.1871,-0.9242,-1.4862,-0.6322 +0x9a45,CUS_0x4454,August,22,025-39-9516,Doctor,63919.12,5067.593333,7,9,22,4,"Payday Loan, Student Loan, Not Specified, and Debt Consolidation Loan",27.43919067,17,19.44,9,Bad,1534.21,28.14051691,12 Years and 3 Months,NM,171.5747814,337.8008703,Low_spent_Large_value_payments,267.3836817,0,-0.0829,0.9364,0.4303,-0.0446,1.5929 +0x9a51,CUS_0x2976,August,27,011-81-5967,Manager,30155.09,,6,5,14,3,"Payday Loan, Mortgage Loan, and Auto Loan",21.02376037,19,9.75,4,Standard,972.35,32.19637941,29 Years and 2 Months,Yes,75.10935763,,!@9#%8,240.5409974,0,-1.3104,0.6561,0.5312,1.5724,-0.9838 +0x9a5d,CUS_0xa5be,August,54,735-68-3009,Entrepreneur,30084.89,2375.074167,5,5,7,3,"Student Loan, Student Loan, and Debt Consolidation Loan",,20,10.57,4,Standard,115.84,37.38439086,15 Years and 10 Months,Yes,52.09709631,,High_spent_Large_value_payments,400.4210737,0,0.5449,-0.0071,-0.249,0.0255,-0.3474 +0x9a69,CUS_0x7e5d,August,21,073-11-4561,Entrepreneur,14755.09,,6,6,17,2,"Debt Consolidation Loan, and Student Loan",39.70313321,20.27054981,15.65,13,Bad,2664.759448,34.70903795,9 Years and 4 Months,Yes,14.80384315,66.65223854,Low_spent_Large_value_payments,295.8030016,0,-0.4569,-0.3213,1.6945,0.2124,-1.6706 +0x9a75,CUS_0x6276,August,36,231-43-8275,Media_Manager,110147.52,8189.033389,6,5,9,3,"Debt Consolidation Loan, Mortgage Loan, and Personal Loan",23.56804114,17,13.69,6,Standard,1109.859153,32.82600506,17 Years and 0 Months,NM,27614,132.1699068,High_spent_Large_value_payments,802.1825776,0,0.6191,-0.3998,-1.1065,-1.8753,-0.0525 +0x9a81,CUS_0x1b3a,August,45,286-54-9844,Architect,15858.64,1414.553333,9,7,18.06745738,7,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Auto Loan, and Personal Loan",38.33736756,19,4.06,16,Bad,5098.180954,27.42675156,0 Years and 9 Months,Yes,53.11698769,,Low_spent_Small_value_payments,213.9656027,0,1.5361,-0.6219,0.3371,0.3448,1.8113 +0x9a8d,CUS_0xc0d9,August,34,762-52-2841,Accountant,17078.485,1256.207083,3,7,10,2,"Personal Loan, and Payday Loan",,12,,3,Good,1048.53,33.05000866,24 Years and 3 Months,No,22.18158195,57.76022818,Low_spent_Small_value_payments,335.6788982,0,-2.0681,-0.3047,-0.7779,-1.3488,0.0889 +0x9a99,CUS_0x5352,August,41,237-02-3551,Lawyer,15375.09,,6,4,27.06745738,9,"Home Equity Loan, Personal Loan, Payday Loan, Student Loan, Payday Loan, Personal Loan, Personal Loan, Not Specified, and Payday Loan",34.74397598,18,22.65,9,_,4872.820954,27.07255427,4 Years and 0 Months,NM,81.43213755,202.3610474,Low_spent_Small_value_payments,136.7122771,0,-2.4196,1.2419,-1.225,1.6665,-0.5105 +0x9aa5,CUS_0x9a88,August,25,792-12-6717,Journalist,31599.56,2528.626262,8,8,24.95700519,7,"Auto Loan, Student Loan, Mortgage Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",42.27818847,28.30657258,1.9,10,Bad,2949.527603,39.71232363,16 Years and 9 Months,Yes,1570.392382,51.93313552,High_spent_Large_value_payments,299.824185,0,-0.6765,-0.0335,-0.0968,-0.6782,1.6508 +0x9ab1,CUS_0xa2d5,August,36,#F%$D@*&8,Mechanic,18666.83,,7,5,28.06745738,9,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",31.7371381,17,24.89,12,Bad,4295.600954,30.23675248,10 Years and 5 Months,Yes,65376,138.4699585,Low_spent_Small_value_payments,185.653836,0,-1.3801,-0.4433,-1.2683,-0.2739,-0.2844 +0x9abd,CUS_0x910a,August,18,924-42-4638,Mechanic,16701.54,,7,6,26,5,"Not Specified, Personal Loan, Payday Loan, Not Specified, and Personal Loan",30.74556397,16,19.53,14,Bad,2917.234667,33.11301638,4 Years and 0 Months,NM,45.01267382,63.71210619,Low_spent_Large_value_payments,324.8042932,0,0.1363,-2.4636,-1.6845,-1.131,0.9992 +0x9ac9,CUS_0x97b0,August,32,361-41-1814,Mechanic,23635.39,,8,5,10,3,"Home Equity Loan, Debt Consolidation Loan, and Payday Loan",10.07447975,9,16.09,8,Standard,136.8104097,29.83302034,13 Years and 10 Months,Yes,46.91741255,59.49295602,High_spent_Medium_value_payments,374.0429659,0,1.4272,-0.9668,-1.6323,-1.3927,-1.6032 +0x9ad5,CUS_0xc4bd,August,31,740-66-1214,Accountant,15289.33,,8,6,12,7,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Payday Loan, Personal Loan, and Home Equity Loan",,16,11.29,8,Standard,12.9,27.61925236,7 Years and 10 Months,Yes,44.72054752,54.68489481,Low_spent_Small_value_payments,332.305641,0,-1.0665,-0.5214,-0.0282,0.588,-1.5725 +0x9ae1,CUS_0x5ca1,August,36,678-30-7197,Engineer,34323.26,,1,4,9,3,"Student Loan, Auto Loan, and Not Specified",,4,9.94,3,Good,330.1366625,30.48982191,25 Years and 3 Months,No,63.30212611,211.1054091,High_spent_Small_value_payments,287.0612061,0,0.6084,-1.3795,0.4844,0.0025,-1.821 +0x9aed,CUS_0x469a,August,29,059-20-5955,Teacher,11978.875,,4,6,11,4,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",19.6533958,15.31671585,3.3,3,Standard,460.3123603,34.83778834,25 Years and 3 Months,No,38.34096157,49.12553536,Low_spent_Large_value_payments,265.0574614,0,0.7526,0.1702,2.4507,0.5937,-0.5311 +0x9af9,CUS_0x7f72,August,49,700-08-5887,Doctor,40838.93,3440.244167,2,2,4,4,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",13.71175464,12,3.52,7,Good,417.0610612,29.96866562,29 Years and 0 Months,No,95.12531073,114.1691116,High_spent_Medium_value_payments,395.4906544,0,0.5146,-1.4077,-0.7384,1.3076,-0.5543 +0x9b05,CUS_0x1f1a,August,39,189-83-4148,Media_Manager,35139,,6,6,12,5,"Payday Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",,22.05774968,12.8,4,_,263.5891258,32.13257662,15 Years and 3 Months,NM,132.8653363,82.3414729,High_spent_Small_value_payments,309.8181908,0,1.0909,-0.7062,-1.4121,0.771,2.2805 +0x9b11,CUS_0x755b,August,51,601-45-5485,Scientist,69684.86,,0,7,11.28836175,2,"Debt Consolidation Loan, and Credit-Builder Loan",3.796684005,6,1.46,2,Good,596.1,24.36855349,23 Years and 10 Months,NM,83.13713352,595.4382024,High_spent_Medium_value_payments,578.5692918,0,0.0288,-1.7868,-0.1735,-1.0373,0.2048 +0x9b1d,CUS_0xc4de,August,26,611-21-4406,Developer,70897.32,,7,8,24.06745738,7,"Not Specified, Not Specified, Home Equity Loan, Student Loan, Not Specified, Personal Loan, and Not Specified",,22.34808403,29.02,13,Bad,4314.082753,39.97064586,13 Years and 8 Months,Yes,268.8336033,154.588546,High_spent_Large_value_payments,403.7685627,0,-0.0445,0.3119,0.154,0.1768,-0.7601 +0x9b29,CUS_0x4379,August,48,760-50-8474,Entrepreneur,19204.25,1660.354167,5,7,13,3,"Not Specified, Mortgage Loan, and Credit-Builder Loan",13.90628005,12,5.31,7,Standard,504.06,34.49942909,30 Years and 2 Months,No,35.1481234,157.3218419,Low_spent_Medium_value_payments,253.5654514,0,-0.3617,0.7109,-0.2062,-0.9223,0.756 +0x9b35,CUS_0xb903,August,18,979-13-5480,Lawyer,89869.72,7626.143333,3,7,15,5,"Auto Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Personal Loan",22.71886236,17,9.2,7,Standard,658.47,34.68634869,15 Years and 10 Months,Yes,263.1899625,,High_spent_Medium_value_payments,571.9398827,0,0.7145,1.3586,-0.3248,-0.0389,0.389 +0x9b41,CUS_0x4f44,August,28,496-79-9955,Writer,81320.88,6764.74,7,3,15,1,Auto Loan,,14,10.34,1,Standard,520.44,38.52680736,15 Years and 10 Months,No,48.35319696,454.8254846,Low_spent_Small_value_payments,463.2953185,0,-0.7648,0.8565,-0.254,0.2587,-0.6098 +0x9b4d,CUS_0x674e,August,45,017-96-2874,Manager,70413.48,5971.79,8,10,27.88954781,8,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",37.51744982,24.21473559,1.9,,Bad,3247.012189,36.07536081,,NM,1678.130609,271.5125917,Low_spent_Large_value_payments,223.205718,0,-1.8917,-1.3704,-1.0203,1.1616,0.7009 +0x9b59,CUS_0x612f,August,31,700-23-9385,Journalist,34775.16,,7,9,25,5,"Auto Loan, Mortgage Loan, Auto Loan, Payday Loan, and Not Specified",,20.82008668,17.16,11,Bad,3360.950552,36.21903217,13 Years and 8 Months,Yes,126.5968144,48.99415602,High_spent_Medium_value_payments,379.3020296,0,-1.0343,-0.8076,0.9954,-0.2756,-1.7254 +0x9b65,CUS_0x35b4,August,18,998-18-5319,Accountant,7912.96,751.4133333,7,6,22,100,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",,23,1.76,2362,_,2352.07,30.09482526,7 Years and 3 Months,Yes,12.95638859,,Low_spent_Small_value_payments,254.4805591,0,1.0555,0.5237,0.3391,0.2904,0.1144 +0x9b71,CUS_0x2d27,August,27,741-94-7341,Media_Manager,42277.83,3724.1525,8,4,14,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,4216,12.59,8,Standard,1469.21,26.40497546,20 Years and 6 Months,Yes,59.41160421,82.48482515,High_spent_Large_value_payments,470.5188206,0,0.2663,-0.6413,-2.0573,-0.3046,2.2633 +0x9b7d,CUS_0x29ef,August,32,560-72-1726,Entrepreneur,94545.75,7617.8125,0,6,8,0,,12.30544725,11,10.74,4,Good,384.8,29.90165393,,NM,12358,287.6358765,High_spent_Medium_value_payments,724.1453735,0,0.2367,-0.555,-0.4831,0.0791,-0.8268 +0x9b89,CUS_0x6ca8,August,52,515-45-8703,Doctor,33763.89,,4,3,8,100,"Payday Loan, and Mortgage Loan",,19,4.7,0,Standard,812.74,25.08582964,30 Years and 8 Months,No,30.02077907,,Low_spent_Medium_value_payments,253.2204722,0,0.5212,0.0108,0.7583,-1.0604,0.3202 +0x9b95,CUS_0x1e0f,August,55,198-49-3462,Lawyer,20660.16,1995.68,1,1,5424,2,"Mortgage Loan, and Credit-Builder Loan",6.154254987,9,6.59,4,_,501.1177916,36.80539886,,No,33.8787011,249.8178303,Low_spent_Small_value_payments,230.9602224,0,1.4002,-0.8031,1.5678,0.7735,0.2194 +0x9ba1,CUS_0x541a,August,29,279-55-9526,Scientist,44152.16,3831.346667,3,7,18,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",15.01062695,11,2.35,1,Standard,634.52,34.91669167,20 Years and 4 Months,No,107.9902331,154.5436308,Low_spent_Small_value_payments,410.6008028,0,-0.5612,0.8136,-0.8393,1.3125,-0.0755 +0x9bad,CUS_0x95d,August,24,055-19-9599,Media_Manager,8815.64,973.6366667,10,8,16.88954781,6,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Not Specified",20.81079396,18,24.57,6,Bad,3410.150802,24.72623524,2 Years and 4 Months,Yes,1364.589841,30.74319069,Low_spent_Medium_value_payments,291.9546881,0,-0.5101,-0.6022,-1.0126,0.9891,-0.9558 +0x9bb9,CUS_0xa08b,August,40,274-01-4475,Scientist,19206.92,,7,1223,20.06745738,5,"Credit-Builder Loan, Not Specified, Not Specified, Credit-Builder Loan, and Payday Loan",31.83514601,19,3.08,11,Bad,3823.470954,24.74541012,2 Years and 8 Months,Yes,65.19760799,58.0837658,Low_spent_Large_value_payments,257.3560049,0,-0.0459,0.3847,0.3119,1.3691,-0.37 +0x9bc5,CUS_0x5436,August,32,212-82-3845,Teacher,17166.71,,8,10,719.9570052,9,"Student Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",30.75834093,16,9.82,272,Bad,4748.680954,36.39810463,5 Years and 2 Months,Yes,1429.135104,38.82657363,Low_spent_Medium_value_payments,209.1438695,0,-1.3727,-1.8381,-0.1975,-1.1191,0.4003 +0x9bd1,CUS_0x49ff,August,23,363-74-1894,Engineer,50513.25,4051.4375,10,10,23,5,"Home Equity Loan, Student Loan, Payday Loan, Personal Loan, and Auto Loan",,20.61794677,20.55,9,Bad,3683.480068,32.32888985,,Yes,208.4454341,240.4398908,Low_spent_Large_value_payments,226.2584251,0,1.0573,0.1052,-0.9848,-0.9804,0.3398 +0x9bdd,CUS_0x974,August,42,063-51-6871,Teacher,152148.92,,1,3,8.288361749,100,,,4,2.45,1,Good,957.3162479,36.54283079,17 Years and 8 Months,No,0,675.0370051,High_spent_Large_value_payments,1307.441515,0,-1.7006,1.3088,-2.1982,0.2445,1.2091 +0x9be9,CUS_0x4549,August,30,116-49-8748,Accountant,79290.96,6646.58,7,6,34,7,"Auto Loan, Payday Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",20.51731593,,6.04,9,Bad,3809.37,27.19100846,9 Years and 0 Months,Yes,371.4364338,116.2215273,High_spent_Large_value_payments,417.0000388,0,-0.4918,-0.6068,-0.5493,0.4304,1.4238 +0x9bf5,CUS_0xc2da,August,32,376-12-9828,Media_Manager,18038,1534.166667,5,1,10,0,,2.155215955,6,5.4,4,Good,451.3847447,28.17316855,17 Years and 0 Months,No,0,72.34351026,Low_spent_Medium_value_payments,368.1558033,0,1.2916,-0.146,-0.543,-0.6778,-0.0866 +0x9c01,CUS_0x1db5,August,43,088-31-1690,_______,74092.04,,7,9,15,3,"Credit-Builder Loan, Mortgage Loan, and Student Loan",27.79998843,16,1.94,10,Bad,1531.49,30.51239085,13 Years and 9 Months,Yes,105.645995,284.6940064,Low_spent_Large_value_payments,482.5936652,0,-0.1866,-0.3246,0.172,-1.8036,2.2447 +0x9c0d,CUS_0x8e8b,August,30,990-02-5969,Scientist,18760.6,1531.383333,7,8,19.06745738,5,"Auto Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",39.02034731,22,16.3,15,Bad,4796.770954,26.99697302,7 Years and 0 Months,NM,71.4771647,47.34427356,Low_spent_Large_value_payments,277.5966071,0,0.7083,-2.0193,-0.53,-0.7284,0.4472 +0x9c19,CUS_0x361b,August,23,717-69-1968,Musician,42767.89,,1,7,11,1,Student Loan,2.873217298,6,2.63,3,Good,1413.55,40.44889629,26 Years and 6 Months,No,20.33801862,29.21902409,High_spent_Large_value_payments,532.5420406,0,-0.0605,-0.2145,1.3089,1.132,-1.3032 +0x9c25,CUS_0xd0c,August,24,191-87-1257,Musician,47953.86,3706.155,7,6,27,3,"Personal Loan, Payday Loan, and Auto Loan",31.21450508,22.46331314,8.48,8,Standard,1788.23766,36.8811259,7 Years and 6 Months,Yes,80.92386027,103.7872826,High_spent_Medium_value_payments,435.9043571,0,-0.9708,-0.0999,0.0476,-1.1724,1.7435 +0x9c31,CUS_0xb98d,August,29,134-03-4386,Journalist,24308.05,1762.670833,7,6,11,2,"Home Equity Loan, and Home Equity Loan",9.101310847,7,16.49,11,Standard,174.32,35.11246378,13 Years and 9 Months,Yes,21.12401651,158.2353003,Low_spent_Large_value_payments,266.9077665,0,0.2938,-1.5319,0.1402,-1.431,-0.1621 +0x9c3d,CUS_0x5a58,August,32,625-74-4024,Entrepreneur,42400.7,3627.391667,4,5,5,2,"Mortgage Loan, and Not Specified",3.464926094,1.13564872,6.54,7,Good,769.8827191,33.40132565,27 Years and 2 Months,No,45.77561819,,Low_spent_Medium_value_payments,249.5603828,0,0.3659,-0.4685,-2.2476,-1.8517,1.8962 +0x9c49,CUS_0x6c00,August,36,369-63-4486,Musician,55644.39,4715.0325,10,8,21.88954781,6,"Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Student Loan",,,2.24,10,Bad,2048.874535,33.78450677,,Yes,15386.48344,77.76326208,High_spent_Medium_value_payments,462.0016299,0,0.3558,0.8206,-0.0888,-0.1341,-0.7309 +0x9c55,CUS_0xc064,August,47,410-04-2124,Writer,14036.915,,0,6,3,0,,,5,8.66,2,_,586.2295589,38.05690077,,No,0,55.44602922,!@9#%8,382.439303,0,1.7288,2.1266,-0.183,-1.5893,-0.8225 +0x9c61,CUS_0x73c0,August,43,#F%$D@*&8,Writer,77004.92,6233.076667,10,5,22,6,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Home Equity Loan",,16.82838152,25.82,10,Bad,2790.142591,38.12568893,1 Years and 11 Months,Yes,370.6471223,156.3984133,High_spent_Medium_value_payments,346.2621311,0,0.2141,0.1001,0.0548,0.2423,-1.2235 +0x9c6d,CUS_0xace3,August,26,416-41-4485,Teacher,34902.43,3128.535833,7,3,6,3,"Credit-Builder Loan, Home Equity Loan, and Auto Loan",10.58643172,7,14.74,6,_,241.38,27.23077827,21 Years and 8 Months,Yes,44.14364379,86.84950528,High_spent_Medium_value_payments,431.8604343,0,-0.315,0.1354,-0.3134,1.1121,-1.4966 +0x9c79,CUS_0xbf0b,August,21,296-68-3706,Scientist,141420.92,,6,4,9,100,"Auto Loan, and Student Loan",27.84017175,19,7.27,2,Standard,367.22,42.15869134,31 Years and 5 Months,Yes,159.6233389,394.1343485,High_spent_Medium_value_payments,871.0499792,0,-0.0319,0.0964,0.3716,0.2027,0.4687 +0x9c85,CUS_0x43f1,August,54,222-18-8106,Teacher,62347.86,,8,7,7,0,,4.840644994,6,6.78,2,Standard,681.95,34.45323811,23 Years and 10 Months,No,0,116.3079285,High_spent_Medium_value_payments,635.3575715,0,-0.2924,-1.4399,-0.3013,1.0742,-0.8219 +0x9c91,CUS_0x321c,August,57,941-11-8492,Media_Manager,77165.86,6595.488333,0,4,11.28836175,0,Auto Loan,5.301041948,8,4.23,3,_,844.3557808,26.87763473,28 Years and 4 Months,No,47.81008995,,High_spent_Large_value_payments,750.71175,0,-0.6846,1.5502,1.0733,-0.4807,-0.7982 +0x9c9d,CUS_0x2d16,August,37,502-57-9756,Media_Manager,15335.895,,0,7,12,100,"Student Loan, Auto Loan, and Home Equity Loan",0,0,3.16,6,Good,556.5412601,36.31813568,23 Years and 8 Months,No,67968,,Low_spent_Small_value_payments,298.2553826,0,1.8776,-0.4626,0.7627,-0.0093,2.2073 +0x9ca9,CUS_0xa01,August,31,980-65-8757,Media_Manager,35455.23,2913.6025,0,4,1,2,"Mortgage Loan, and Student Loan",9.533037898,8,4.78,4,Good,29.85799658,39.32325229,16 Years and 6 Months,No,46.57969204,209.9590598,!@9#%8,350.1907605,0,-1.1903,-0.8785,-1.2877,-0.3747,1.6739 +0x9cb5,CUS_0x7e70,August,39,835-38-9326,Writer,34763.33,2907.944167,7,5,8,2,"Mortgage Loan, and Mortgage Loan",24.93543294,19,7.5,5,Standard,856.97,30.60067098,18 Years and 8 Months,Yes,39156,152.8954277,Low_spent_Small_value_payments,383.3166313,0,-1.4976,0.2853,0.6671,1.769,0.154 +0x9cc1,CUS_0x1cb0,August,50,459-13-4314,Teacher,59823.58,5220.298333,0,2,4.288361749,0,Not Specified,9.071088041,11,8.96,4,Good,350.5096827,41.22645594,22 Years and 11 Months,No,45.89219592,542.354144,High_spent_Medium_value_payments,620.7194886,0,-0.0488,-1.021,-1.6443,0.1555,0.2058 +0x9ccd,CUS_0x4196,August,43,622-70-4870,Engineer,58966.89,4628.9075,1540,5,7,0,,23.39903399,14,11.77,8,Standard,1452.98,33.3153181,19 Years and 2 Months,Yes,0,112.5898181,High_spent_Medium_value_payments,600.3009319,0,-0.6492,-0.0183,-2.0996,-0.8806,0.6729 +0x9cd9,CUS_0x4864,August,18,231-65-2394,Engineer,89507.07,7199.9225,4,6,8,5,"Student Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Home Equity Loan",25.01973072,20,,7,Standard,240.4,29.81848515,17 Years and 11 Months,Yes,250.9514287,323.9634256,Low_spent_Large_value_payments,415.0773957,0,-0.1977,-0.5786,-0.6877,1.2102,1.721 +0x9ce5,CUS_0x6809,August,23,936-38-8280,Journalist,41209.68,3413.14,6,7,31,7,"Mortgage Loan, Not Specified, Not Specified, Mortgage Loan, Student Loan, Auto Loan, and Credit-Builder Loan",45.08630176,25.46399983,9.23,10,Bad,1981.649825,36.56453918,7 Years and 3 Months,Yes,127.7477201,10000,High_spent_Large_value_payments,365.3603294,0,0.6784,-0.6541,-0.4674,1.3443,-0.2183 +0x9cf1,CUS_0x157a,August,18,103-88-8332,Media_Manager,59662.98,,7,4,16,3,"Auto Loan, Mortgage Loan, and Mortgage Loan",12.01880126,8,8.59,6,Standard,634.86,25.96965326,6 Years and 3 Months,Yes,85.60171471,10000,High_spent_Medium_value_payments,451.4414033,0,0.9099,0.9887,0.2746,-0.8471,-0.4962 +0x9cfd,CUS_0xcda,August,49,222-08-8611,Teacher,33153.69,2625.300546,4,5,1,1,Auto Loan,,1,7.37,4,Good,519.0105341,26.55657349,26 Years and 6 Months,No,404.025169,295.2941686,Low_spent_Large_value_payments,282.4395579,0,-0.4063,0.8177,-0.3987,1.7143,-0.9471 +0x9d09,CUS_0x6f69,August,44,737-19-5989,_______,42468.06,3355.005,0,7,11,2,"Auto Loan, and Payday Loan",15.39984331,14.11856894,3.01,1,Good,1316.746546,30.9132368,,No,41.94494612,,High_spent_Medium_value_payments,458.7743767,0,-0.695,-0.2149,-0.5338,-0.4902,-0.3358 +0x9d15,CUS_0xbcbc,August,53,889-47-7292,_______,30498.76,,3,4,15,3,"Not Specified, Credit-Builder Loan, and Credit-Builder Loan",15.37060043,13,18.79,2,Standard,1012.92,35.20788749,,Yes,45.4642679,202.8264052,!@9#%8,273.7656603,0,-0.4499,2.2148,0.2036,-0.9354,0.0981 +0x9d21,CUS_0x9046,August,42,985-91-4669,Engineer,30528.52,,1122,2,6,1,Auto Loan,,10,2.26,5,Good,3.68,36.56173306,19 Years and 3 Months,No,15.55732155,10000,Low_spent_Medium_value_payments,377.7346792,0,-0.9762,0.4892,-0.4865,-0.7964,0.2905 +0x9d2d,CUS_0x9f51,August,22,238-32-1687,Doctor,9675.845,1062.320417,8,10,35.95700519,8,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",37.23211737,19.31709404,17.17,9,Bad,4952.558608,33.62813654,11 Years and 0 Months,Yes,1374.527287,116.7345935,Low_spent_Small_value_payments,183.9197916,0,1.29,-0.01,0.5303,-0.3313,0.6097 +0x9d39,CUS_0x9d72,August,41,916-18-3437,Architect,27026.95,,4,3,11,2,"Not Specified, and Auto Loan",25.57707743,17,13.51,1,_,678.53,38.62172615,24 Years and 0 Months,Yes,38.26805817,131.9715666,Low_spent_Small_value_payments,320.8849585,0,0.0573,-1.6366,1.0729,-0.0983,1.9437 +0x9d45,CUS_0x1871,August,25,245-31-5920,Lawyer,83237.52,7162.46,8,7,16,7,"Credit-Builder Loan, Mortgage Loan, Not Specified, Not Specified, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,11,,8,Standard,2652.42,38.30530114,18 Years and 9 Months,Yes,419.6074347,693.698204,Low_spent_Medium_value_payments,,0,-0.8478,-1.3096,-0.8436,-0.4797,-1.61 +0x9d51,CUS_0x7da4,August,43,033-63-5379,Journalist,8126.595,872.21625,8,6,25,7,"Personal Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",7.114254935,6.991601137,8.27,8,_,1913.334519,22.09159366,11 Years and 2 Months,Yes,46.2671956,,Low_spent_Small_value_payments,237.9128394,0,-0.3269,0.7825,-0.3126,0.8837,0.1797 +0x9d5d,CUS_0x9506,August,38,878-67-4770,Lawyer,95713.28,7809.106667,5,5,20,4,"Not Specified, Auto Loan, Mortgage Loan, and Payday Loan",10.40326106,7,13.36,7,_,566.86,30.7059796,16 Years and 6 Months,Yes,215.5208034,247.7407038,Low_spent_Medium_value_payments,597.6491594,0,-0.9315,-0.3422,-1.6839,1.2136,-0.2507 +0x9d69,CUS_0x416d,August,37,573-33-2930,Media_Manager,44158.03,3733.835833,5,5,11,1,Mortgage Loan,0,3,7.33,0,Good,1205.63233,29.75069864,15 Years and 11 Months,No,30.46312347,266.4469881,Low_spent_Large_value_payments,377.5099049,0,-1.8116,0.0588,0.787,-0.4596,0.6866 +0x9d75,CUS_0x33b5,August,18,019-20-5348,Entrepreneur,78741.32,,9,10,33,6,"Debt Consolidation Loan, Student Loan, Payday Loan, Auto Loan, Payday Loan, and Not Specified",25.4568823,16,10.02,13,Standard,2011.92,26.30362068,17 Years and 2 Months,NM,12264,,Low_spent_Small_value_payments,14.40159349,0,0.1731,-0.1067,-0.1409,-0.2252,0.7991 +0x9d81,CUS_0x461f,August,55,352-50-3065,Media_Manager,108488.61,8773.7175,4,3,13.28836175,0,,16.99626374,17,4.99,6,Standard,1366.18,29.03379944,26 Years and 3 Months,Yes,0,531.5388309,High_spent_Large_value_payments,1005.77038,0,1.5909,-0.4477,-0.0925,-1.8204,-0.9636 +0x9d8d,CUS_0x43a3,August,26,954-99-5736,Media_Manager,121453.36,,1,6,11,2,"Not Specified, and Payday Loan",2.328520655,4.530584706,5.56,,Good,380.1071275,38.3567569,22 Years and 10 Months,No,142.6044434,111.3383763,High_spent_Large_value_payments,994.4685137,0,-1.8638,0.0438,-0.4142,0.9409,-0.1853 +0x9d99,CUS_0x9ae1,August,25,794-80-5794,Mechanic,82670.04,6775.17,9,9,31,6,"Personal Loan, Personal Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Student Loan",34.06182898,20.57769736,28.91,10,Bad,2829.380758,34.01534515,2 Years and 2 Months,Yes,388.6253064,140.4423499,High_spent_Large_value_payments,388.4493436,0,0.6284,-1.5318,-1.0553,0.2122,0.3297 +0x9da5,CUS_0x46dd,August,28,537-71-3800,Engineer,44572.43,3757.369167,2,4,9.288361749,0,,1.677031284,6,4.09,1,Good,198.87,28.35233039,15 Years and 8 Months,No,0,666.6833896,Low_spent_Small_value_payments,418.9909881,0,-0.3014,-0.0793,-0.1557,-0.3017,-0.6004 +0x9db1,CUS_0x38b2,August,30,379-55-6476,Media_Manager,26509.67,1820.106635,8,7,19.06745738,2,"Mortgage Loan, and Payday Loan",,24.02040218,14.37,4,Standard,1633.703471,27.9436007,24 Years and 6 Months,Yes,171.8100063,31.45732871,High_spent_Medium_value_payments,349.4588255,0,0.8793,0.5308,0.5851,0.7892,2.4519 +0x9dbd,CUS_0x637b,August,21,824-30-2794,Journalist,15115.04,1274.586667,7,7,24,2,"Auto Loan, and Personal Loan",,19.42035367,18.14,14,_,2432.720612,33.23847101,18 Years and 8 Months,Yes,20.63883931,45.1121101,High_spent_Small_value_payments,321.7077173,0,-1.3597,-0.3615,0.8164,-1.6452,1.2903 +0x9dc9,CUS_0x746e,August,54,551-33-8461,Scientist,78401.25,6475.4375,3,3,17,3,"Auto Loan, Debt Consolidation Loan, and Not Specified",14.11853903,10,3.97,0,_,444.02,27.63327704,18 Years and 8 Months,No,131.9938045,115.0219186,High_spent_Large_value_payments,640.5280269,0,-0.7824,-2.2395,0.9761,-0.311,0.8819 +0x9dd5,CUS_0xaff8,August,51,649-97-0569,Entrepreneur,34229.35,,3,2,12,4,"Home Equity Loan, Auto Loan, Mortgage Loan, and Payday Loan",,0,11.04,2,Good,1053.920685,31.06022348,30 Years and 6 Months,No,85.68697392,88.33048976,High_spent_Small_value_payments,381.1531561,0,-0.3665,-0.954,0.2586,0.4123,-0.5808 +0x9de1,CUS_0x5fd6,August,54,598-79-6237,Manager,17902.54,1669.878333,3,6,1,0,,0,1,8.87,5,_,1289.22,23.55719387,,NM,0,57.86276928,Low_spent_Medium_value_payments,389.1250641,0,3.1577,0.2873,1.2886,1.1449,-0.6006 +0x9ded,CUS_0x7a0b,August,25,417-25-2167,Developer,46650.9,4031.575,8,7,33,100,"Mortgage Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Not Specified, Personal Loan, Payday Loan, and Credit-Builder Loan",21.65771903,12,26.04,9,_,3555.25,23.05812703,12 Years and 2 Months,Yes,207.5520164,65.13109459,High_spent_Medium_value_payments,380.474389,0,-0.8916,-0.2664,1.0213,0.3288,0.4155 +0x9df9,CUS_0x55e3,August,21,908-25-9219,Accountant,31011.32,2810.276667,3,5,15,0,,23.3322802,17.41256093,12.37,5,_,1094.11195,38.44058075,19 Years and 5 Months,NM,0,100.6852337,Low_spent_Small_value_payments,470.342433,0,-0.1765,0.0385,0.2403,0.093,0.2866 +0x9e05,CUS_0x30b7,August,37,801-89-7511,Doctor,9491.025,768.91875,10,7,15,6,"Home Equity Loan, Mortgage Loan, Payday Loan, Student Loan, Payday Loan, and Home Equity Loan",29.69697429,16,17.46,9,Bad,3377.48,35.15253793,6 Years and 8 Months,Yes,28.87983089,84.00237426,Low_spent_Small_value_payments,254.0096699,0,-0.7139,-0.211,-0.1084,-0.6476,-0.4604 +0x9e11,CUS_0x1a2f,August,54,894-09-8608,Journalist,152340.56,,5,4,8,4,"Credit-Builder Loan, Student Loan, Student Loan, and Credit-Builder Loan",,12,7.66,6,_,283.7329818,37.67519601,26 Years and 10 Months,NM,422.7939489,313.1445677,High_spent_Large_value_payments,798.4149263,0,-0.0673,-2.1418,-0.7528,0.3665,2.8729 +0x9e1d,CUS_0x1647,August,19,747-79-7877,Lawyer,28608.65,2490.054167,1075,7,12,1,Personal Loan,14.28326793,,12.68,4,Good,130.4472771,29.42783602,17 Years and 8 Months,No,23.00844614,141.300033,Low_spent_Small_value_payments,395.1895115,0,-2.0129,0.9314,-0.9206,-0.8662,-0.9156 +0x9e29,CUS_0x1733,August,29,055-42-9873,Entrepreneur,46696.02,3811.335,8,4,33,3,"Credit-Builder Loan, Auto Loan, and Personal Loan",28.51826564,21.94188951,15.02,13,Standard,1780.677279,34.61613441,18 Years and 10 Months,Yes,89.91109044,196.77212,High_spent_Small_value_payments,354.4502895,0,-0.2402,-0.6805,-0.151,-0.8513,-0.3622 +0x9e35,CUS_0x7307,August,18,362-67-6890,Engineer,17157.47,1656.789167,10,7,23.06745738,6,"Student Loan, Auto Loan, Auto Loan, Student Loan, Auto Loan, and Mortgage Loan",,18,23.79,11,Bad,3602.817626,37.83818451,11 Years and 3 Months,Yes,44.45157465,97.75312909,High_spent_Small_value_payments,271.0553551,0,-0.7495,1.8116,-0.1238,0.6787,0.1356 +0x9e41,CUS_0xab5e,August,29,475-53-8980,Lawyer,57421.58,4522.131667,3,4,6,100,"Student Loan, Personal Loan, and Credit-Builder Loan",18.84584123,,9.89,3,_,287.31,39.39366833,24 Years and 4 Months,No,101.3815631,265.6601657,Low_spent_Large_value_payments,355.1714379,0,0.7052,0.3755,-0.3336,-0.7248,0.8453 +0x9e4d,CUS_0x8658,August,33,563-94-4382,Musician,21202.09,1943.840833,7,6,8,1,Credit-Builder Loan,21.66330915,15,9.29,4,Standard,192.21,36.14088924,28 Years and 9 Months,Yes,15.32320302,44.73343914,High_spent_Small_value_payments,394.3274412,0,-0.7825,-0.7831,1.8515,-0.9294,-1.0421 +0x9e59,CUS_0x3a40,August,29,833-84-9910,Architect,82831.68,7133.64,7,3,9,3,"Payday Loan, Payday Loan, and Home Equity Loan",15.56718542,,16.48,4,Standard,34.27,33.36777463,24 Years and 2 Months,Yes,113.7037937,,Low_spent_Medium_value_payments,473.178267,0,-0.1312,-1.0918,1.1778,0.4098,0.202 +0x9e65,CUS_0x376a,August,20,587-57-9576,Writer,56304.16,,5,7,13,5,"Payday Loan, Student Loan, Mortgage Loan, Personal Loan, and Mortgage Loan",16.68195523,14,8.8,8,Standard,1070.551453,26.08422511,16 Years and 4 Months,Yes,625.2852348,240.526394,Low_spent_Small_value_payments,366.9872259,0,-1.4523,1.7869,2.1049,-0.2005,-0.0347 +0x9e71,CUS_0xb17a,August,58,034-87-0785,Musician,36135.19,,3,4,11,100,"Auto Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",22.19737112,17,1.5,6,_,646.0414215,23.96824248,21 Years and 11 Months,NM,87.97703116,30.63987092,High_spent_Large_value_payments,414.864616,0,-0.5536,0.1982,-0.4932,0.3705,2.1795 +0x9e7d,CUS_0xb882,August,34,732-56-8461,Entrepreneur,55835.7,4617.975,9,5,24,8,"Auto Loan, Mortgage Loan, Not Specified, Personal Loan, Auto Loan, Mortgage Loan, Student Loan, and Payday Loan",,18,27.19,13,Bad,2802.64,40.0352073,8 Years and 8 Months,Yes,74787,53.45296216,!@9#%8,389.0910166,0,-0.2692,-0.8561,0.7459,1.0187,1.6473 +0x9e89,CUS_0xaf2e,August,18,294-75-3087,Media_Manager,73823.84,6130.986667,722,6,30,455,"Not Specified, Auto Loan, Credit-Builder Loan, Personal Loan, Auto Loan, and Auto Loan",29.5579551,13.013413,13.39,6,Standard,2183.69491,37.50734294,12 Years and 11 Months,Yes,356.3654785,65.04360274,High_spent_Large_value_payments,431.6895854,0,-0.1625,-0.2774,-0.7722,0.3578,0.4014 +0x9e95,CUS_0x4398,August,18,545-62-2882,Developer,14264.46,,7,7,14,6,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",24.56098719,15,14.54,,Standard,659.07,25.43954809,16 Years and 0 Months,Yes,60.27612821,10000,High_spent_Medium_value_payments,265.014498,0,0.0418,0.4497,-1.3216,-0.9698,-0.8745 +0x9ea1,CUS_0x18c6,August,42,719-44-4102,Engineer,35728.54,,7,7,11,3,"Mortgage Loan, Student Loan, and Not Specified",16.11885694,15,8.87,2,Standard,1229.33,36.41906572,22 Years and 9 Months,No,58.72947069,177.9675743,Low_spent_Small_value_payments,362.9407883,0,0.0181,-0.7574,1.1441,-0.391,0.3063 +0x9ead,CUS_0x2b2d,August,29,600-73-4577,Engineer,28119.52,2151.293333,3,6,17,0,,29.77323185,21.89018171,8.54,4,_,1004.810253,31.0959668,29 Years and 10 Months,Yes,0,123.4779841,Low_spent_Medium_value_payments,371.6513492,0,-1.1435,-1.0535,-0.4288,-1.8726,-2.039 +0x9eb9,CUS_0x49ae,August,58,846-52-5572,Manager,10243765,1938.303333,8,6,12,3,"Not Specified, Debt Consolidation Loan, and Not Specified",22.32925794,17,2.09,3,Good,156.3005185,30.4449837,,No,47.43011454,120.3336473,Low_spent_Small_value_payments,327.5145535,0,0.766,-1.8691,1.4489,-1.4267,0.6279 +0x9ec5,CUS_0x540e,August,31,238-20-2884,Mechanic,58224.1,4676.008333,2,2,10.28836175,2,"Payday Loan, and Home Equity Loan",,5,6.21,3,Good,635.4472279,37.34034914,23 Years and 6 Months,No,52.94349321,12092.11264,Low_spent_Large_value_payments,403.1605261,0,-0.1601,0.1574,-0.2705,-1.7727,-0.4005 +0x9ed1,CUS_0x94ac,August,35,960-78-7883,Writer,7765.195,,9,5,24.06745738,6,"Student Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",,25,30.64,10,_,4295.090954,36.19651819,4 Years and 11 Months,Yes,36.70242352,,Low_spent_Medium_value_payments,216.3294632,0,0.6926,1.095,-0.1548,-1.1712,2.1598 +0x9edd,CUS_0xc156,August,40,417-45-3942,Writer,31369.58,2607.131667,8,9,28.95700519,8,"Home Equity Loan, Not Specified, Not Specified, Personal Loan, Not Specified, Mortgage Loan, Mortgage Loan, and Personal Loan",32.43507932,22,19.7,,Bad,4483.320954,37.40574054,12 Years and 6 Months,Yes,1495.231862,44.99081105,High_spent_Medium_value_payments,249.4401243,0,-1.2491,0.0312,0.6136,1.805,-0.1222 +0x9ee9,CUS_0x53ad,August,32,842-95-1336,Entrepreneur,100268.73,,7,6,5.288361749,4,"Auto Loan, Payday Loan, Credit-Builder Loan, and Personal Loan",13.52418473,12,19.83,9,Standard,127.7663833,22.65112598,21 Years and 5 Months,Yes,491.3284202,1181.741353,Low_spent_Large_value_payments,146.1334792,0,-1.9189,-0.2574,-1.3412,0.9338,-0.2693 +0x9ef5,CUS_0x2cd1,August,44,503-47-3701,Accountant,7558.55,409.8791667,8,9,20.06745738,5,"Not Specified, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, and Personal Loan",,23.79940992,15.2,8,_,2474.703549,37.21153646,16 Years and 2 Months,Yes,16.99339529,10.92018009,Low_spent_Medium_value_payments,266.3540533,0,0.9057,-0.7818,1.378,-0.9299,-1.9938 +0x9f01,CUS_0x4dde,August,40,841-41-7313,Entrepreneur,63461.28,5109.44,3,4,6,4,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",14.8217178,15,13.39,6,Standard,1266.31,24.10362342,11 Years and 11 Months,Yes,176.6369654,208.1439866,Low_spent_Large_value_payments,396.163048,0,-1.0286,-0.1848,-0.8525,0.2059,-1.8844 +0x9f0d,CUS_0x841e,August,51,543-40-8050,Developer,88221.16,7113.763333,7,5,12,0,,16.64361632,15,14.98,7,Standard,988.12,38.93847485,27 Years and 3 Months,Yes,0,176.1791492,High_spent_Large_value_payments,775.1971842,0,0.9322,0.2387,-0.2907,-0.0397,0.0305 +0x9f19,CUS_0x8391,August,39,052-94-1839,Accountant,13300.535,,4,3,14,3,"Student Loan, Mortgage Loan, and Personal Loan",11.83559028,10,10.5,1,Standard,367.87,35.5731463,26 Years and 4 Months,Yes,18.41306923,76.85335809,Low_spent_Medium_value_payments,303.0713643,0,-0.1042,0.3346,-0.577,-0.7662,0.4851 +0x9f25,CUS_0x9557,August,21,202-25-0813,Doctor,14293.6,,6,5,33.06745738,6,"Student Loan, Payday Loan, Payday Loan, Home Equity Loan, Not Specified, and Not Specified",,25.38866476,8.01,11,_,4853.891817,36.98534529,13 Years and 5 Months,Yes,66.88854173,,Low_spent_Small_value_payments,199.1240052,0,-1.026,-0.6551,-0.4904,0.3764,-2.6474 +0x9f31,CUS_0x5fd8,August,48,147-85-0281,Musician,33388.1,,6,4,8,0,,,13,9.51,2,Standard,589.89,25.57882176,,Yes,0,60.18743503,High_spent_Large_value_payments,439.7467316,0,-1.7086,-1.3011,0.3895,-0.432,-1.1589 +0x9f3d,CUS_0x8934,August,41,992-21-0194,_______,60901.36,5351.113333,1,1,6.288361749,2,"Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",0,2,10.69,4,Good,475.75,22.42798315,20 Years and 6 Months,No,94.3359935,779.2459509,Low_spent_Small_value_payments,371.4668499,0,0.4159,-0.2777,0.3977,0.98,-0.7071 +0x9f49,CUS_0x37c4,August,44,036-85-4393,Teacher,30303.3,,6,6,6,4,"Payday Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",,15,6.74,0,_,102.53,26.69395321,32 Years and 9 Months,No,84.18037193,90.78392966,High_spent_Medium_value_payments,301.8631984,0,0.1994,-0.3047,1.4199,-0.4682,-0.2952 +0x9f55,CUS_0x789f,August,19,054-66-6794,_______,52882.77,,6,10,25.88954781,7,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",,20.44726428,9.95,11,Bad,2695.131466,37.78839561,,Yes,1482.239639,53.78699933,High_spent_Large_value_payments,455.2330301,0,0.7496,0.6776,0.4711,1.4784,0.6342 +0x9f61,CUS_0x2f39,August,27,533-29-8899,Manager,54881.55,4633.4625,9,10,22,7,"Auto Loan, Student Loan, Personal Loan, Auto Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",20.75682888,,5.24,11,_,5383.55636,40.25356975,3 Years and 4 Months,Yes,218.6546697,145.0581444,Low_spent_Large_value_payments,369.6334359,0,-1.4416,-1.4086,-0.1122,-1.8468,-0.5958 +0x9f6d,CUS_0x28b4,August,33,202-06-5346,Journalist,36945.28,3347.773333,7,4,2577,1,Debt Consolidation Loan,26.64724713,19,7.74,3,Standard,1465.01,32.37503461,24 Years and 6 Months,NM,16.01410496,249.4223224,Low_spent_Large_value_payments,339.340906,0,0.9868,1.1129,-1.251,-0.8907,0.9829 +0x9f79,CUS_0x1ee3,August,35,772-48-5860,Doctor,15950.66,1047.221667,10,8,27.95700519,9,"Auto Loan, Credit-Builder Loan, Student Loan, Student Loan, Payday Loan, Payday Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",,26.40456352,9.01,9,Bad,3033.636904,37.17401985,16 Years and 3 Months,Yes,1387.338845,134.3977682,Low_spent_Small_value_payments,151.9351838,0,0.4474,0.2771,-0.5683,0.4996,0.9957 +0x9f85,CUS_0x39ce,August,25,988-45-2984,Media_Manager,45852.8,3655.066667,5,5,9,3,"Auto Loan, Payday Loan, and Auto Loan",,20,5.69,4,Good,1249.64,32.53585143,33 Years and 4 Months,No,104.5891792,90.54556357,High_spent_Small_value_payments,430.3719239,0,-0.3668,-1.507,1.073,0.9214,0.6685 +0x9f91,CUS_0x77ec,August,28,597-68-4770,Engineer,8761.63,660.1358333,10,7,26,3,"Mortgage Loan, Debt Consolidation Loan, and Personal Loan",35.38589185,15.79188626,18.58,11,Standard,2129.211812,30.77770864,,Yes,12.85840377,,Low_spent_Medium_value_payments,276.9460168,0,0.6071,-0.6129,-0.2536,-1.2015,-1.1647 +0x9f9d,CUS_0x290d,August,23,#F%$D@*&8,Architect,34791.08,,6,6,9,3,"Credit-Builder Loan, Student Loan, and Credit-Builder Loan",23.78985464,18,13.83,1,Standard,1359.95439,41.14004648,29 Years and 3 Months,Yes,85.54661738,71.45353973,High_spent_Small_value_payments,426.4581446,0,-0.4145,-0.8407,0.2347,-0.7218,-0.7953 +0x9fa9,CUS_0x5a88,August,20,237-24-8008,Teacher,63340.32,5345.36,7,7,21,6,"Home Equity Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Mortgage Loan, and Home Equity Loan",18.97523179,10.87884866,7.72,6,Standard,1775.781902,33.96348014,19 Years and 11 Months,Yes,234.8938354,10000,High_spent_Large_value_payments,437.4696071,0,-0.456,-0.3523,0.9745,0.5336,-0.15 +0x9fb5,CUS_0x229d,August,18,131-92-1105,Mechanic,20082.65,,7,7,31,5,"Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",,24,7.06,10,Bad,1549.99,24.3800269,20 Years and 0 Months,Yes,52.58060232,187.9903511,Low_spent_Small_value_payments,196.4844633,0,0.6161,-0.3391,-0.4537,-1.2558,0.735 +0x9fc1,CUS_0x9919,August,39,848-55-2881,Mechanic,14365.54,,8,9,25.88954781,100,"Personal Loan, and Home Equity Loan",,23.9609265,5.49,12,_,2823.459753,25.88673029,19 Years and 4 Months,Yes,1339.752441,41.87586652,Low_spent_Large_value_payments,342.6544441,0,-0.7203,0.1208,0.2722,0.4577,-0.6058 +0x9fcd,CUS_0x2fab,August,27,411-00-6543,Manager,75804.94,6120.078333,0,1,9.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,7,7.89,5,Good,307.2272284,23.42749928,32 Years and 4 Months,NM,141.2894485,547.9826055,High_spent_Large_value_payments,594.5782445,0,-1.2817,0.6552,-0.4654,-0.5447,0.9568 +0x9fd9,CUS_0x8d7c,August,26,061-21-9925,Accountant,66176.67,,8,6,19,2,"Credit-Builder Loan, and Not Specified",,21,16.4,5,Standard,750.37,37.01577068,20 Years and 10 Months,NM,78.20935969,149.995604,High_spent_Medium_value_payments,602.7672863,0,2.0757,0.7912,-1.3199,-0.3966,-0.8678 +0x9fe5,CUS_0xa788,August,25,144-05-2864,Entrepreneur,29563.72,,8,7,17,5,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",40.61063716,21.84144923,10.05,11,Standard,1957.820268,29.29770312,13 Years and 5 Months,Yes,82.55306794,86.00996192,Low_spent_Large_value_payments,371.9013035,0,-0.0255,1.0835,0.5739,-1.832,2.3093 +0x9ff1,CUS_0x42c6,August,18,921-85-4898,Architect,20076.41,,8,9,30.06745738,6,"Auto Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",,26.19954921,22.67,,Bad,5591.042236,32.27019466,2 Years and 6 Months,Yes,65.22772759,,Low_spent_Medium_value_payments,287.0294778,0,-0.1434,-1.7724,-0.2673,-1.5167,1.4761 +0x9ffd,CUS_0x7967,August,28,810-09-6426,Manager,17379.785,1536.315417,0,1,1,4,"Not Specified, Payday Loan, Student Loan, and Payday Loan",1.413335027,4,5.61,7,Good,897.0362746,24.9010025,21 Years and 10 Months,No,29.42224655,47.61848809,High_spent_Small_value_payments,341.3275987,0,0.2214,0.8075,-0.2638,-1.4144,-1.1015 +0xa009,CUS_0x68d1,August,37,763-35-0890,Architect,20967.39,,7,6,29.06745738,8,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Not Specified",40.67510875,23.64372387,6.77,10,Bad,4738.635815,39.31175357,5 Years and 2 Months,Yes,99.51025967,25.85346135,High_spent_Medium_value_payments,291.144241,0,1.0248,-0.7113,0.0339,-0.4676,0.8428 +0xa015,CUS_0x5c9f,August,33,371-94-0530,Journalist,19890.19,1541.515833,6,5,28.06745738,6,"Auto Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Mortgage Loan",,24.35755599,,7,Bad,3587.88096,31.76105019,,Yes,54.93263676,132.8465552,Low_spent_Small_value_payments,229.6521034,0,-0.763,-0.3611,0.0563,-0.8831,-0.4998 +0xa021,CUS_0x2869,August,54,249-57-7977,Journalist,82146.63,6770.5525,5,3,6,3,"Student Loan, Personal Loan, and Auto Loan",,9,2.46,5,Good,804.62,39.45970293,29 Years and 6 Months,No,128.2930751,374.2520547,Low_spent_Medium_value_payments,454.5101202,0,-1.1347,-0.2222,-1.1778,-0.9107,0.3899 +0xa02d,CUS_0xa226,August,38,409-61-8014,_______,20700.455,1870.037917,3,4,5,3,"Student Loan, Student Loan, and Home Equity Loan",14.99590696,,,5,Good,1104.754767,22.45252704,18 Years and 9 Months,NM,38.726083,82.31599477,Low_spent_Large_value_payments,347.875621,0,-0.4142,0.613,0.536,1.6807,-0.3877 +0xa039,CUS_0x3117,August,33,914-03-5576,Mechanic,15789.99,1022.8325,1,4,5,4,"Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",0.717771957,3.645676663,1.8,5,Good,747.5435157,34.01623525,15 Years and 10 Months,No,50.30836757,,Low_spent_Small_value_payments,215.9305956,0,0.8253,-0.7378,-1.4585,-0.1273,0.1787 +0xa045,CUS_0x1329,August,50,525-33-6734,Entrepreneur,160573.56,13293.13,1,2,8,1,Mortgage Loan,2.1884324,3,2.01,4,Good,551.26,38.73971092,19 Years and 10 Months,No,121.1789374,386.7841063,High_spent_Medium_value_payments,1071.349956,0,0.5355,0.6354,-0.3848,-0.2281,0.6547 +0xa051,CUS_0x5225,August,27,317-61-9841,Journalist,14089.4,1046.116667,8,9,26.88954781,9,"Student Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Auto Loan",53.12895099,28.98075304,19.9,11,Bad,4505.91823,32.78294724,1 Years and 9 Months,NM,1426.132035,105.1000427,!@9#%8,169.0495078,0,-0.9697,-0.7931,-0.6258,-0.3174,0.3749 +0xa05d,CUS_0x575c,August,23,942-36-6717,Scientist,63561.98,5227.831667,4,1,6,1,Payday Loan,13.63517278,12,2.42,3,Good,877.9316097,34.54017767,22 Years and 5 Months,No,35.25643909,198.9438264,High_spent_Medium_value_payments,568.9186051,0,-1.4192,1.3693,0.4141,0.399,-1.6049 +0xa069,CUS_0x708e,August,29,360-92-7524,_______,97168.2,8002.35,7,6,8,100,"Personal Loan, and Student Loan",27.70619912,19.13918825,8.54,4,Standard,1378.100277,42.39062616,16 Years and 2 Months,Yes,95.99393137,,High_spent_Large_value_payments,801.6267734,0,0.3528,0.7865,0.0512,-1.1026,-1.1068 +0xa075,CUS_0x598f,August,42,955-11-8873,Accountant,20712.24,2007.02,3,3,30,7,"Student Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, and Auto Loan",12.24229923,12,8.43,6,Standard,2375.83,22.97007823,13 Years and 2 Months,Yes,84.77788282,74.94434692,High_spent_Small_value_payments,300.9797703,0,-0.4055,-1.5609,-1.1165,1.1866,-0.8194 +0xa081,CUS_0x3be2,August,33,857-38-4600,Scientist,72287.52,5910.96,4,10,30,4,"Mortgage Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",11.19379154,12,17.85,16,Standard,1802.44,35.77495701,17 Years and 4 Months,Yes,175.9651813,121.6297236,High_spent_Large_value_payments,533.5010951,0,-0.1705,0.0017,1.6506,-0.1634,-0.4957 +0xa08d,CUS_0x17fe,August,30,770-45-7126,Developer,31135.37,,3,5,9,0,,9.223213577,6,4.52,2,Good,1112.57,35.57921254,28 Years and 2 Months,NM,0,175.4047138,Low_spent_Small_value_payments,364.6567029,0,0.9885,0.3303,1.6262,-1.0012,0.6057 +0xa099,CUS_0x7b2c,August,25,805-29-2042,Manager,92091.87,7842.3225,5,4,8,1,Not Specified,5.059655332,5.697466894,,0,_,724.6216298,33.26301516,26 Years and 0 Months,No,49.0080968,110.5116656,High_spent_Large_value_payments,864.7124876,0,0.1547,-1.2009,0.4709,0.3284,1.1994 +0xa0a5,CUS_0x81cd,August,52,295-27-4404,Writer,107409.27,,8,7,13,1,Auto Loan,16.69653258,,12.3,1,Standard,550.22,34.00322264,27 Years and 6 Months,Yes,66.46230358,145.0460989,High_spent_Large_value_payments,903.0688475,0,-2.0559,0.032,-0.4087,-0.3964,1.4641 +0xa0b1,CUS_0x9d2c,August,27,002-65-6523,Scientist,23051.72,1873.976667,4,5,7,0,,26.91467531,20,4.53,3,_,649.2396064,38.50515916,,No,0,77.08464524,Low_spent_Small_value_payments,408.2265107,0,0.5075,-0.454,-0.8815,-0.4755,1.3618 +0xa0bd,CUS_0x635e,August,24,468-39-2500,Teacher,57619.53,4643.6275,4,6,7,2,"Payday Loan, and Auto Loan",25.75845199,21.25829655,10.63,2,Good,1398.356199,41.23647931,31 Years and 4 Months,No,81.52365105,88.54532294,High_spent_Medium_value_payments,544.293776,0,0.0677,0.2996,-1.0766,0.7929,0.1469 +0xa0c9,CUS_0xa49c,August,45,835-58-9367,Entrepreneur,55281.02,,3,5,9.288361749,100,"Student Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",,15,19.18,7,Standard,522.67,22.84487159,10 Years and 2 Months,Yes,99.25896307,732.88204,High_spent_Small_value_payments,319.1716246,0,-0.5093,-0.4897,0.8504,-0.257,-1.2176 +0xa0d5,CUS_0x2bdd,August,33,162-35-9568,Scientist,68090.85,,7,4,19.28836175,0,Auto Loan,12.50333495,13,2.43,9,Standard,791.78,37.82698923,23 Years and 0 Months,No,31.24593136,616.4948184,High_spent_Medium_value_payments,593.9204613,0,-0.56,-1.5161,0.3705,0.6343,1.5275 +0xa0e1,CUS_0x5de6,August,56,797-52-4322,Media_Manager,17741279,1507.335833,3,2,8,0,,12.66457901,11,4.73,6,Good,307.1728652,31.46411998,28 Years and 6 Months,No,0,131.6099544,Low_spent_Small_value_payments,328.0535296,0,0.495,-0.3355,-0.1681,0.8272,0.0677 +0xa0ed,CUS_0x663b,August,36,655-70-2468,Architect,81815.02,6884.918333,0,5,4,1,Mortgage Loan,0,2,5.18,5,Good,1273.245696,35.86704595,33 Years and 5 Months,No,53.9277855,170.5899916,High_spent_Large_value_payments,726.4087264,0,0.2225,-0.2172,-1.762,-0.0786,0.1794 +0xa0f9,CUS_0x38ce,August,26,220-55-9427,Lawyer,18283.91,1747.659167,6,10,29.88954781,6,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",30.84428784,19.81182404,3.87,13,Bad,2738.741643,23.85799057,10 Years and 2 Months,Yes,1378.204645,,!@9#%8,310.1287106,0,-0.3068,1.0306,-0.099,0.7244,-1.1238 +0xa105,CUS_0x6901,August,58,388-08-1184,Journalist,151696.32,12392.36,4,2,9.288361749,0,,6.230015196,9,12.05,3,Good,347.4643553,35.69300797,29 Years and 11 Months,No,0,2358.548315,Low_spent_Small_value_payments,,0,-0.9047,-2.3319,1.1152,-1.6992,1.6867 +0xa111,CUS_0x3f97,August,29,083-91-7118,Doctor,89190.57,7135.5475,3,4,19,3,"Credit-Builder Loan, Not Specified, and Credit-Builder Loan",16.53710758,13,2.18,0,Standard,1427.36,25.80820089,26 Years and 3 Months,Yes,165.4839039,361.8668846,Low_spent_Medium_value_payments,466.2039615,0,0.0703,0.2689,0.2163,1.2596,-1.1877 +0xa11d,CUS_0x62c7,August,22,485-54-9615,Musician,60460.92,,4,6,16,1,Payday Loan,6.259829685,5,9.3,8,Standard,1040.47,25.31485709,15 Years and 0 Months,Yes,40.27501432,485.1423521,!@9#%8,250.1236335,0,-1.4569,-0.5619,-1.5125,-0.1322,0.7005 +0xa129,CUS_0x8432,August,26,716-57-9686,Architect,14886.29,1379.524167,6,7,20,2,"Student Loan, and Personal Loan",,28.71198256,10.17,14,Bad,2799.839557,33.39150992,13 Years and 5 Months,Yes,17.63513531,,Low_spent_Small_value_payments,246.8905243,0,0.3788,-1.1833,0.2309,-1.6789,1.064 +0xa135,CUS_0x71a0,August,51,143-79-6232,Teacher,155916.32,12869.02667,6,6,1.288361749,2,"Debt Consolidation Loan, Personal Loan, and Not Specified",,1.201535398,1.26,4,Good,623.2711063,27.81600495,,No,249.104133,697.2276237,!@9#%8,1000.508371,0,-0.3001,1.5027,-0.3242,0.2418,0.8485 +0xa141,CUS_0x79ef,August,38,288-80-7664,Manager,14019.63,,9,8,19,6,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",,27.64755309,7.22,13,Bad,2439.222664,38.58173426,17 Years and 0 Months,Yes,69.87719095,67.95984486,Low_spent_Small_value_payments,283.6932142,0,-0.951,0.4116,0.5752,0.4513,-1.6883 +0xa14d,CUS_0x9f91,August,45,419-62-1555,_______,14155.67,1387.277278,6,110,15.88954781,8,"Mortgage Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Personal Loan",24.39377973,17,21.43,10,Bad,4896.28,27.93516539,14 Years and 2 Months,NM,1451.922561,,Low_spent_Small_value_payments,216.5590754,0,-2.9919,0.5297,-0.6625,0.2448,-1.9116 +0xa159,CUS_0x486d,August,43,288-92-4914,Journalist,9377.445,,5,3,12,6,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",,13,11.6,,Standard,1565.647023,36.5088329,7 Years and 4 Months,Yes,43.20952557,11737.71942,High_spent_Small_value_payments,264.4207566,0,-0.3513,0.9522,2.392,0.8679,0.7876 +0xa165,CUS_0x9ead,August,51,655-32-7007,Developer,100956.21,8658.0175,6,6,2,1,Student Loan,16.97613822,8.088985719,7.1,2,Standard,709.6215365,28.64032538,29 Years and 6 Months,No,53.08656992,292.293677,Low_spent_Medium_value_payments,800.4215031,0,-0.3723,0.7612,1.6302,-0.506,-1.5367 +0xa171,CUS_0x7023,August,34,#F%$D@*&8,_______,133439.76,,2,3,10.28836175,4,"Payday Loan, Auto Loan, Not Specified, and Credit-Builder Loan",0,3,2.21,1758,Good,744.5853488,29.87687741,30 Years and 11 Months,No,432.5213188,822.5277598,High_spent_Medium_value_payments,573.245053,0,-1.5988,1.1728,-0.3741,1.1177,-0.2289 +0xa17d,CUS_0x560d,August,35,285-43-4124,Lawyer,15967.505,1474.625417,3,5,7,2,"Payday Loan, and Debt Consolidation Loan",0,2,13.99,2,Good,393.892556,29.96763302,31 Years and 6 Months,No,16.52613638,214.9700367,Low_spent_Small_value_payments,235.914068,0,-0.6936,-0.342,2.5049,-1.8329,-0.8491 +0xa189,CUS_0x86b2,August,26,242-32-6684,Teacher,90182.31,7525.1925,1564,3,12,3,"Home Equity Loan, Auto Loan, and Not Specified",0,2.43796317,6.47,5,_,1387.65918,36.56340762,15 Years and 11 Months,No,139.3991845,249.9839032,Low_spent_Large_value_payments,633.1361623,0,-2.0531,0.4184,-0.0137,-0.0175,0.7564 +0xa195,CUS_0x2e73,August,45,667-70-4413,Accountant,7689.715,,6,5,30,8,"Not Specified, Payday Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Home Equity Loan",33.19059179,24.84335666,8.83,10,Bad,1510.326344,32.42345585,18 Years and 0 Months,Yes,39.72965111,0,High_spent_Medium_value_payments,255.955483,0,-0.8962,0.3249,-0.933,0.9162,-0.3613 +0xa1a1,CUS_0xb52d,August,41,856-39-9861,Manager,14241.48,,8,8,30.95700519,6,"Auto Loan, Home Equity Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,27.45368423,6.74,16,Bad,1949.911254,28.15547002,9 Years and 10 Months,Yes,1391.323666,,Low_spent_Small_value_payments,156.9356145,0,0.5525,-0.7231,-0.0561,-1.6011,0.2435 +0xa1ad,CUS_0x81e2,August,45,662-55-6547,Teacher,75042.72,6484.56,6,3,12.28836175,2,"Auto Loan, and Home Equity Loan",,12,15.65,7,_,417.62,36.51228827,17 Years and 10 Months,Yes,105.684175,861.9384433,Low_spent_Large_value_payments,370.7708427,0,-0.3233,-0.0011,-0.1983,0.3762,0.8492 +0xa1b9,CUS_0x6d6e,August,40,310-72-8518,Lawyer,114977.76,9641.48,1,6,8.288361749,4,"Personal Loan, Home Equity Loan, Home Equity Loan, and Personal Loan",0,3,-3.46,1,_,969.5840784,38.12812056,23 Years and 6 Months,No,245.0136839,1102.317871,Low_spent_Small_value_payments,420.8178347,0,0.5627,-0.4698,1.215,-0.8297,0.1925 +0xa1c5,CUS_0x20c4,August,43,352-92-3069,Manager,7435.16,,8,10,19.88954781,6,"Personal Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Personal Loan, and Auto Loan",25.6983748,17.83847752,29.79,11,_,4376.840214,27.24976603,5 Years and 2 Months,NM,1350.337464,,Low_spent_Small_value_payments,243.452434,0,-0.4756,0.815,-0.4609,0.0026,0.1336 +0xa1d1,CUS_0x440,August,30,144-45-0895,Accountant,10367.01,1095.9175,7,7,35.06745738,5,"Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, and Mortgage Loan",30.62285976,20,11.43,6,Standard,1791.900954,32.59782185,5 Years and 11 Months,Yes,37.90425467,,Low_spent_Large_value_payments,236.9913586,0,-0.0286,-0.501,-0.0882,0.1758,0.5844 +0xa1dd,CUS_0xaffc,August,42,104-15-4430,Accountant,30185.74,,4,6,11,0,,,0,12.38,2,Good,1403.95047,41.2351515,27 Years and 11 Months,No,314.0655567,10000,!@9#%8,467.9315393,0,0.6149,-0.9928,-1.3962,1.1267,-0.8823 +0xa1e9,CUS_0x8d74,August,51,157-46-1542,Teacher,69476.14,6016.678333,5,6,1,3,"Credit-Builder Loan, Credit-Builder Loan, and Not Specified",0,2,3.62,4,Good,1305.65,40.51631629,20 Years and 4 Months,No,106.6476117,93.01304824,High_spent_Medium_value_payments,652.0071734,0,-1.2538,0.3357,-2.1041,0.315,0.7046 +0xa1f5,CUS_0x1107,August,31,118-70-6277,Writer,28952.76,,8,9,22.95700519,8,"Personal Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",49.14121698,29.52915066,2.46,16,Bad,3170.742548,29.65284198,1 Years and 2 Months,Yes,1479.263433,,!@9#%8,216.7813936,0,0.8473,-0.0416,0.9477,1.1441,0.6977 +0xa201,CUS_0x182d,August,26,344-73-9102,Entrepreneur,18798.83,1721.569167,10,8,21.95700519,9,"Mortgage Loan, Not Specified, Not Specified, Personal Loan, Auto Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",29.65452019,20,21.73,13,Bad,4957.510954,40.485002,6 Years and 8 Months,Yes,1395.752163,36.18845,High_spent_Large_value_payments,259.1659341,0,-0.9974,-0.279,-0.0287,-1.063,-1.4185 +0xa20d,CUS_0x5e89,August,46,372-89-5474,Journalist,88348.8,,3,5,15,0,,16.49993843,14,1.7,9,Standard,261.93,27.40136152,26 Years and 3 Months,Yes,0,288.0456058,High_spent_Medium_value_payments,670.9943942,0,-0.7906,-0.431,0.1052,1.0128,-0.3906 +0xa219,CUS_0x735,August,44,542-75-5761,Architect,46076.49,,8,10,32.95700519,7,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",44.85686238,27.0208477,8.57,7,Bad,5661.992439,34.70164096,2 Years and 10 Months,Yes,1586.982549,186.382878,High_spent_Small_value_payments,121.4549534,0,1.3364,-0.0781,-0.3607,-0.7138,0.7339 +0xa225,CUS_0x453a,August,45,938-41-8427,Lawyer,22182.95,1937.579167,7,5,13,4,"Student Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",18.12253731,15,5.18,5,Standard,1170.58,29.48387553,6 Years and 3 Months,Yes,62.25704179,129.4477589,High_spent_Small_value_payments,262.053116,0,0.1231,0.5608,-0.3779,2.2472,0.1209 +0xa231,CUS_0x5e46,August,49,472-71-4758,Scientist,32357.41,2456.450833,5,3,9,0,,,19,8.89,8,Good,681.22,29.35079948,26 Years and 9 Months,No,0,,High_spent_Small_value_payments,450.463017,0,3.1892,0.6729,-1.0638,-0.2828,-1.435 +0xa23d,CUS_0xbb23,August,43,345-90-0825,_______,54601.74,4527.145,7,7,34.06745738,7,"Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Student Loan, Payday Loan, Student Loan, and Student Loan",,17.09135646,1.65,12,Bad,4359.019691,36.23243367,4 Years and 9 Months,NM,72690,,High_spent_Small_value_payments,289.9474346,0,0.6901,-0.0301,-0.5722,0.6279,0.1327 +0xa249,CUS_0x1938,August,24,059-09-5779,_______,31481.45,,4,3,8,0,,19.91557181,15,11.45,5,Good,599.362011,30.52247141,33 Years and 5 Months,No,0,89.84903496,High_spent_Medium_value_payments,452.8038559,0,-1.3865,-0.3194,-0.2454,0.2278,0.3855 +0xa255,CUS_0x4a5,August,38,867-41-1583,Teacher,85280.88,,3,3,1.288361749,0,,7.880378686,9,4.89,7,Good,825.18,37.06472956,29 Years and 10 Months,No,62337,548.6640611,High_spent_Large_value_payments,795.9473999,0,-0.0948,-1.1578,-1.861,1.3144,-0.2289 +0xa261,CUS_0xb583,August,43,035-00-5411,Journalist,34192.02,,1,1,7.288361749,2,"Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",0,0,5.91,5,Good,159.9885053,23.88330323,30 Years and 5 Months,No,61.64205859,525.8640519,High_spent_Medium_value_payments,380.4181037,0,0.2988,-0.9961,-0.5959,0.1233,0.0887 +0xa26d,CUS_0xc173,August,34,419-53-1975,Lawyer,40743.16,,6,9,20.06745738,5,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",32.12441842,22,29.12,10,Bad,3015.360954,30.00842322,6 Years and 3 Months,Yes,302.589439,,Low_spent_Small_value_payments,179.3940019,0,-0.3486,-0.6602,-2.6409,-0.3786,-0.9564 +0xa279,CUS_0x4db7,August,24,816-34-4526,Mechanic,15150.72,1336.56,7,5,14,6,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",29.85016268,21.98681399,7.58,5,Standard,1817.689278,33.34660194,6 Years and 0 Months,Yes,61.45405495,78.33852161,Low_spent_Small_value_payments,283.8634234,0,-0.989,-0.3376,1.6033,-1.8218,-0.8697 +0xa285,CUS_0x9b35,August,44,121-05-2056,Developer,76567.6,6322.633333,2,3,0.288361749,4,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",0,1,0.45,3,Good,953.4008356,25.35064038,19 Years and 9 Months,No,214.2405519,593.9564291,High_spent_Large_value_payments,501.200432,0,0.9584,1.4626,-0.351,-1.3231,2.2787 +0xa291,CUS_0x54d7,August,37,052-22-1460,Architect,119889.75,10174.8125,1,3,6,1,Payday Loan,15.24534452,,11.27,2,Good,441.4660295,35.65835987,17 Years and 0 Months,No,71.19272657,471.1748583,High_spent_Medium_value_payments,787.6896464,0,0.5075,-0.1545,-1.0287,0.4021,2.0523 +0xa29d,CUS_0x591b,August,49,061-35-8180,Manager,12593.765,,3,5,5,1,Payday Loan,12.02225408,11,11.43,2,_,1211.15,27.87110732,21 Years and 9 Months,Yes,6.786378095,52.23399488,High_spent_Small_value_payments,309.5276687,0,-0.3848,-2.2046,-1.4088,0.9033,0.8772 +0xa2a9,CUS_0x59dd,August,28,231-64-8594,Engineer,19370.48,,6,3,10,3,"Payday Loan, Mortgage Loan, and Auto Loan",17.36913329,16,3.58,6,Standard,482.47,35.17249943,21 Years and 8 Months,No,40.23889895,70.10832376,High_spent_Medium_value_payments,322.473444,0,-0.3976,-0.5392,0.3323,0.1979,1.4115 +0xa2b5,CUS_0x31ef,August,21,044-22-3761,Writer,8255.925,,9,5,16.06745738,5,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",,18,18.84,13,Standard,2843.220954,38.23407359,18 Years and 0 Months,NM,31.00373228,109.3446872,Low_spent_Small_value_payments,206.1306675,0,-1.9622,0.3488,0.2155,-0.1814,2.1255 +0xa2c1,CUS_0x1cfd,August,36,351-21-1003,Scientist,31994.01,2756.1675,3,7,8,2,"Credit-Builder Loan, and Home Equity Loan",,21,15.8,8,Standard,1197.22,22.64657555,16 Years and 8 Months,Yes,34.08151708,219.1725221,Low_spent_Small_value_payments,312.3627108,0,-1.0051,1.1615,1.0806,-1.749,-1.09 +0xa2cd,CUS_0xb3f4,August,26,553-09-5457,Entrepreneur,59534.16,,5,7,20,3,"Mortgage Loan, Student Loan, and Student Loan",,16,14.64,6,Standard,1350.67,27.46690707,10 Years and 8 Months,Yes,143.1834601,271.7730924,Low_spent_Small_value_payments,390.9614475,0,-0.6671,0.404,0.7128,-0.4496,0.2862 +0xa2d9,CUS_0x839e,August,23,378-13-1593,Scientist,14584.155,959.34625,4,6,4,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",,12,10.46,6,Standard,883.9,35.54383547,31 Years and 0 Months,NM,24.7128286,53.14761878,!@9#%8,298.0741776,0,-0.094,1.2043,-0.2885,0.5062,1.031 +0xa2e5,CUS_0x3615,August,27,959-59-4160,Accountant,122425.8,10001.15,4,4,6,2,"Student Loan, and Auto Loan",,20,16.19,2,Standard,1097.197672,32.94760155,23 Years and 11 Months,Yes,148.188179,924.493396,Low_spent_Large_value_payments,313.4266857,0,-0.517,-0.2515,0.6206,-0.3347,0.3854 +0xa2f1,CUS_0xa495,August,38,846-74-5800,Media_Manager,21206.82,1881.235,1,5,4,1,Credit-Builder Loan,9.080478968,10,4.5,4,Good,213.2476274,29.54393649,25 Years and 4 Months,No,14.43114591,58.61152372,High_spent_Medium_value_payments,371.8467804,0,-0.2811,-1.7519,-0.2873,-1.469,0.4559 +0xa2fd,CUS_0x18be,August,37,484-89-8097,Engineer,8393.5,517.4583333,9,7,29,5,"Student Loan, Student Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",33.24006368,24.97707158,2.92,2324,_,1922.634687,29.61663549,19 Years and 10 Months,Yes,28.7063974,55.76202234,Low_spent_Small_value_payments,257.2774136,0,1.4883,1.3265,-1.0729,0.2446,-1.3001 +0xa309,CUS_0x6e6f,August,18,314-01-7336,Musician,16801.22,,9,5,33.06745738,5,"Payday Loan, Student Loan, Personal Loan, Personal Loan, and Personal Loan",29.59739056,20,14.21,13,Standard,2668.250954,25.14739192,,NM,55.4487652,77.46387707,Low_spent_Small_value_payments,256.1772364,0,-0.7652,0.2366,2.6263,-0.631,-0.7352 +0xa315,CUS_0x41ac,August,45,051-82-4680,_______,44441.99,,2,3,8,1,Home Equity Loan,8.134463902,8,9.24,8,_,174.1089023,39.4213169,24 Years and 11 Months,No,20.33094567,35.44520972,High_spent_Large_value_payments,588.6643614,0,0.2844,-0.7684,-0.7809,1.4482,-1.0274 +0xa321,CUS_0xb863,August,55,#F%$D@*&8,Developer,23256.59,,6,7,7,4,"Payday Loan, Credit-Builder Loan, Student Loan, and Auto Loan",,22,3.41,4,_,1216.75,33.76269354,16 Years and 8 Months,Yes,56.05876752,126.884125,!@9#%8,296.2620241,0,0.1497,-0.6645,1.2111,1.9733,-0.5304 +0xa32d,CUS_0x4ef1,August,32,509-25-5550,Musician,113666.08,,8,7,8,4,"Personal Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",22.6081226,18,18.45,1346,Standard,883.26,34.2314234,20 Years and 3 Months,Yes,353.5609364,159.4405244,High_spent_Large_value_payments,690.7158726,0,-0.0581,-0.9397,1.6066,-1.0709,-1.2172 +0xa339,CUS_0x1a9f,August,19,391-61-3109,Writer,10062.82,696.5683333,10,7,19.06745738,55,"Not Specified, Personal Loan, Mortgage Loan, Mortgage Loan, and Student Loan",15.44623331,6.823428476,18.18,15,Standard,2540.803696,38.08776511,8 Years and 11 Months,NM,23.83120524,46.27606954,Low_spent_Large_value_payments,242.8292706,0,0.9895,1.2128,-1.4325,-1.2098,1.1267 +0xa345,CUS_0x9322,August,29,091-65-5683,Journalist,88601.46,7504.455,2,4,4.288361749,0,,16.04866001,,8.24,6,Good,683.6361272,42.63679397,25 Years and 2 Months,No,3828,759.9703093,High_spent_Medium_value_payments,703.7095385,0,0.3367,0.3404,0.4982,-0.5172,-0.8055 +0xa351,CUS_0x6c3b,August,41,507-21-0069,_______,11333.42,840.4516667,7,6,16.28836175,2,"Mortgage Loan, and Mortgage Loan",90,4042,12.18,7,Standard,111.4468066,23.25588407,24 Years and 2 Months,Yes,18.31565887,442.6073401,High_spent_Medium_value_payments,295.8372688,0,0.2537,-1.0501,0.3631,0.8564,-1.0797 +0xa35d,CUS_0x757d,August,26,522-28-0477,Lawyer,17135.33,1409.944167,6,8,19.88954781,6,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",25.18391108,17.37684226,21.61,10,Bad,5421.332605,28.37052903,14 Years and 4 Months,Yes,1380.959751,38.08526606,High_spent_Medium_value_payments,277.6193183,0,-1.1927,-0.2721,0.4498,0.7059,-1.2798 +0xa369,CUS_0x165b,August,25,639-95-8108,Mechanic,142717.44,11947.12,5,4,13,0,,21.91870797,14.82416809,17.99,9,Standard,1573.164048,39.01554454,16 Years and 11 Months,Yes,0,531.3412275,High_spent_Small_value_payments,923.3707725,0,-0.8974,0.1255,1.3577,-0.416,-0.1023 +0xa375,CUS_0x8d12,August,41,133-09-6880,Engineer,19269.565,,4,6,9,4,"Payday Loan, Auto Loan, Auto Loan, and Auto Loan",7.067274284,8,6.67,2047,_,578.31,38.56363105,28 Years and 3 Months,No,40.14952903,79.92585531,High_spent_Small_value_payments,274.304324,0,0.6456,-0.1712,1.9249,0.6717,0.607 +0xa381,CUS_0xb8b3,August,39,772-67-3885,Architect,29936.8,2302.733333,8,8,25.88954781,7,"Auto Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Not Specified, Personal Loan, and Credit-Builder Loan",36.19204649,26,17.63,8,_,4147.65,24.93325969,12 Years and 11 Months,Yes,1416.219429,53.04541874,High_spent_Medium_value_payments,316.6784043,0,-0.0068,-0.9859,-0.5677,-0.8395,1.1549 +0xa38d,CUS_0x8757,August,23,884-33-5995,Architect,9901.355,,7,5,21,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",26.4032647,20.13448214,10.54,11,Standard,2274.294401,25.766469,10 Years and 8 Months,Yes,51.74382561,95.30496501,Low_spent_Small_value_payments,266.0020379,0,-0.3354,1.943,-0.442,1.4053,-0.1419 +0xa399,CUS_0x68cc,August,49,919-02-0237,Manager,57197.04,4668.42,5,3,11,0,,18.18990961,11,11.36,3,Standard,1278.85,31.81082732,,NM,0,464.191115,Low_spent_Small_value_payments,292.650885,0,-1.2422,0.1072,1.466,-0.588,0.2601 +0xa3a5,CUS_0x21a3,August,33,185-07-6882,Journalist,17774.97,1281.184981,6,9,34.06745738,9,"Mortgage Loan, Student Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, and Not Specified",45.6018705,25,28.93,13,Bad,3407.090954,39.52411307,10 Years and 4 Months,Yes,78.77269746,,Low_spent_Medium_value_payments,135.2657264,0,-0.2032,1.3685,-0.8727,-0.1078,-0.6925 +0xa3b1,CUS_0x65e9,August,29,083-42-9959,Mechanic,81481.02,6973.085,3,4,6.288361749,2,"Auto Loan, and Student Loan",16.59820246,15,8.11,4,Standard,211.88,29.31905095,25 Years and 0 Months,No,69.3798369,598.8775066,High_spent_Large_value_payments,688.9886176,0,-0.7611,0.6807,-0.4715,0.1864,-1.7561 +0xa3bd,CUS_0xa66,August,19,889-69-4208,Manager,57994.96,4653.913333,3,5,1,2,"Not Specified, and Student Loan",0,1,9.56,6,Good,1096.7,39.45792217,18 Years and 8 Months,No,79153,,High_spent_Large_value_payments,546.6274012,0,-1.4052,1.537,0.9911,0.2291,0.8585 +0xa3c9,CUS_0x2ed4,August,39,766-84-9205,Architect,57473.58,4270.850879,2,854,4.288361749,2,"Payday Loan, Not Specified, and Debt Consolidation Loan",0,3,2.79,5,_,703.18,34.92760925,30 Years and 9 Months,No,402.1318926,912.793512,Low_spent_Small_value_payments,123.0726778,0,-0.347,0.7928,1.393,1.6713,1.3982 +0xa3d5,CUS_0xbfa1,August,54,576-86-0832,Architect,94525.68,,7,4,7.288361749,0,,18.19207667,17,6.65,46,Good,367.9017389,33.63288061,23 Years and 5 Months,No,1113.719713,12057.04277,High_spent_Medium_value_payments,899.9394966,0,1.1354,-0.394,-2.4288,-1.0452,0.0179 +0xa3e1,CUS_0x1bdf,August,24,568-57-0626,Mechanic,17163.15,1572.2625,7,5,21,9,"Home Equity Loan, Home Equity Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",18.19941187,,9.13,12,Bad,2491.33017,26.29007257,18 Years and 3 Months,Yes,104.7797525,74.1564505,!@9#%8,268.290047,0,0.9041,0.5425,-0.3896,-0.7008,0.7252 +0xa3ed,CUS_0x5604,August,41,358-38-0974,Developer,56195.04,4901.92,9,5,17,8,"Not Specified, Mortgage Loan, Home Equity Loan, Personal Loan, Payday Loan, Payday Loan, Auto Loan, and Personal Loan",27.80435118,17,11.78,16,Bad,1450.16,32.509724,15 Years and 6 Months,Yes,58140,118.4243663,High_spent_Large_value_payments,401.1264312,0,-2.0739,0.4889,-0.3375,-0.1707,-1.8513 +0xa3f9,CUS_0x3cc6,August,26,127-68-0039,Doctor,10279.305,,7,9,34,5,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Student Loan",,15.16824291,2.05,7,Bad,4627.537814,36.28302465,4 Years and 5 Months,Yes,42.45041549,43.77704588,Low_spent_Small_value_payments,299.3334136,0,0.3684,0.5735,3.1477,-0.0367,1.9607 +0xa405,CUS_0xbd37,August,50,225-80-8282,Architect,76072.76,6598.396667,6,6,12,0,,14.4367897,10,11.57,9,_,359.79,27.49995065,33 Years and 0 Months,No,0,252.3432178,High_spent_Small_value_payments,667.4964489,0,0.8824,1.1375,-0.7992,0.793,0.6169 +0xa411,CUS_0x5f37,August,37,472-20-2423,Accountant,32401.4,2742.116667,8,5,29,6,"Payday Loan, Mortgage Loan, Payday Loan, Payday Loan, Student Loan, and Personal Loan",37.45718002,22.13148115,9.62,8,Bad,5184.711161,23.30762112,9 Years and 6 Months,Yes,96.31286263,216.2833908,Low_spent_Small_value_payments,251.6154132,0,1.4052,-0.9257,-0.032,0.3435,-1.6294 +0xa41d,CUS_0x57a1,August,35,189-61-8704,Musician,88126.58,6601.061123,2,7,1,0,,6.680271305,6,9.57,5,_,237.935857,34.06542251,31 Years and 5 Months,No,649.8205433,254.585979,Low_spent_Large_value_payments,763.9646908,0,0.8518,0.8237,0.8901,-0.1774,0.3785 +0xa429,CUS_0x7223,August,55,053-71-7366,Musician,31049.93,,8,4,12,3,"Mortgage Loan, Auto Loan, and Mortgage Loan",,20,7.01,6,_,1217.19,32.22122811,24 Years and 8 Months,No,45.80279643,298.7288069,Low_spent_Small_value_payments,175.1178134,0,0.6331,-1.3873,-1.842,-0.9434,0.8657 +0xa435,CUS_0x20f8,August,30,252-54-0732,_______,87791.46,7176.955,6,4,15,1,Debt Consolidation Loan,27.87158093,19,4.34,3,Standard,510.1,40.24683014,24 Years and 2 Months,No,68.80725449,,High_spent_Large_value_payments,822.510421,0,1.2051,0.9899,0.035,-0.5139,-0.0652 +0xa441,CUS_0x7b14,August,54,650-65-4429,Developer,13966.77,,3,7,3,3,"Mortgage Loan, Student Loan, and Payday Loan",16.55387848,15,7.44,3,_,412.48,34.97837252,28 Years and 11 Months,No,127.4477382,38.75370455,Low_spent_Medium_value_payments,312.1841259,0,0.7608,-0.4626,0.7093,0.6504,-0.0725 +0xa44d,CUS_0x57c6,August,50,976-38-2581,Engineer,71660.3,5674.691667,4,366,6,1,Credit-Builder Loan,,19,4.86,0,Standard,1409.25,39.4500827,24 Years and 0 Months,Yes,39.33449899,,High_spent_Medium_value_payments,664.6777137,0,0.0489,-2.9608,0.7998,0.9199,0.7821 +0xa459,CUS_0x1fbb,August,45,891-52-4114,Engineer,70556.92,6078.743333,7,6,16,6,"Payday Loan, Student Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Not Specified",42.22069394,24,4.67,11,Bad,1260.11,31.20354862,,Yes,232.8516525,,High_spent_Large_value_payments,484.5371483,0,-1.3915,-0.6512,0.8627,0.0057,-0.406 +0xa465,CUS_0x622c,August,32,159-23-1271,Entrepreneur,34630.59,2654.8825,5,5,16,3,"Home Equity Loan, Home Equity Loan, and Auto Loan",,17,10.14,4,Standard,94.07023321,36.76333651,,No,85.658795,97.86756387,Low_spent_Large_value_payments,366.7300979,0,-0.2473,0.1973,-0.4532,0.9247,-1.3778 +0xa471,CUS_0x3f74,August,45,135-39-2875,Developer,48610.06,4238.838333,5,4,10,3,"Personal Loan, Home Equity Loan, and Payday Loan",,20,14.27,6,Standard,1032.945841,26.03715579,11 Years and 11 Months,Yes,74.05979386,,High_spent_Small_value_payments,397.3675822,0,-1.3873,-0.327,0.6746,-1.2348,-0.7562 +0xa47d,CUS_0xafc0,August,33,384-48-8170,_______,78363.06,5977.95249,5,5,5.288361749,4,"Not Specified, Mortgage Loan, Not Specified, and Home Equity Loan",5.696226141,8,10.37,10,Standard,23.67957827,26.74714142,17 Years and 3 Months,Yes,787.2121261,648.7692027,High_spent_Medium_value_payments,460.459421,0,0.8055,-0.4144,2.5495,-0.6908,0.6315 +0xa489,CUS_0x7906,August,80,277-33-1379,Media_Manager,32584.15,2863.345833,5,3,2.288361749,2,"Home Equity Loan, and Auto Loan",,5.693099354,8.23,1,Good,386.1111335,25.09584763,18 Years and 6 Months,No,42.41284562,491.9667778,High_spent_Small_value_payments,431.8924209,0,-1.1936,-0.71,-1.4686,-2.3521,0.1322 +0xa495,CUS_0x8149,August,30,846-26-8047,Writer,82293.24,6727.77,8,7,23.06745738,7,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Personal Loan, and Auto Loan",27.31305058,,19.71,11,Bad,5755.516088,42.30064119,9 Years and 3 Months,Yes,285.7450434,,!@9#%8,460.1083587,0,-0.2644,0.9323,0.3626,2.0763,-2.3256 +0xa4a1,CUS_0x26d4,August,39,331-38-2680,Lawyer,9493.125,662.09375,8,8,35.06745738,5,"Personal Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",40.27904016,24.81512227,8.3,8,Bad,1979.898503,32.99595959,11 Years and 4 Months,Yes,26.81750394,70.39253356,Low_spent_Small_value_payments,232.2790495,0,-1.104,0.1139,1.3013,-0.5288,1.2902 +0xa4ad,CUS_0x38a4,August,41,276-77-9532,Manager,32827.08,2597.59,7,3,10,2,"Not Specified, and Home Equity Loan",18.82475163,15,18.65,6,Standard,300.7,35.63749474,31 Years and 3 Months,Yes,29.60368126,105.7539635,High_spent_Medium_value_payments,374.4013552,0,-0.376,0.0638,0.3706,-2.4888,-0.9629 +0xa4b9,CUS_0xbdf7,August,41,698-60-8051,Teacher,20728.4,1506.366667,8,9,35.06745738,5,"Debt Consolidation Loan, Student Loan, Auto Loan, Auto Loan, and Not Specified",44.52897215,24,8.12,6,_,2341.440954,28.08440468,16 Years and 0 Months,Yes,44.18259681,,Low_spent_Medium_value_payments,250.7780637,0,-1.9253,0.1626,0.0439,0.7325,1.4256 +0xa4c5,CUS_0x4c8c,August,24,696-64-9504,Lawyer,15472.34,994.4958247,8,8,20.95700519,100,"Student Loan, and Debt Consolidation Loan",33.94445127,21.04255862,1.86,14,Bad,3192.583307,30.18339329,,Yes,1459.639252,86.14424659,Low_spent_Medium_value_payments,240.0681408,0,0.7138,1.4207,0.0577,0.0656,-1.3294 +0xa4d1,CUS_0x8b2d,August,19,#F%$D@*&8,Journalist,73928.78,,8,7,11,3,"Personal Loan, Not Specified, and Auto Loan",,16,13.54,8,Standard,1457.45,27.45918526,19 Years and 8 Months,Yes,150.5598197,237.8517348,High_spent_Medium_value_payments,484.0616121,0,-2.0878,1.4692,0.4927,-0.0656,-1.4711 +0xa4dd,CUS_0x2f4b,August,21,618-47-7413,Developer,29937.85,,0,1,2,1,Student Loan,,5,2.05,6,Good,642.7405208,37.61696588,18 Years and 11 Months,No,20.77941329,121.8492298,High_spent_Small_value_payments,396.504093,0,-0.0457,0.5017,-0.4557,-0.8257,-0.1121 +0xa4e9,CUS_0x427b,August,31,#F%$D@*&8,Engineer,48090.45,4039.5375,8,8,18.06745738,5,"Student Loan, Mortgage Loan, Auto Loan, Student Loan, and Mortgage Loan",29.00157536,18,24.87,12,_,3312.260954,38.33144961,0 Years and 10 Months,Yes,112.2037033,114.3293667,High_spent_Medium_value_payments,400.700392,0,0.5649,1.8332,-0.4028,-0.3911,-1.1593 +0xa4f5,CUS_0x5e44,August,20,324-95-7058,Media_Manager,29297.14,2004.667803,2,5,1,0,,,6,1.8,4,Good,1108.221921,26.87426222,22 Years and 11 Months,No,157.7605303,238.2769807,Low_spent_Medium_value_payments,286.024572,0,-1.0853,0.5655,-0.7831,-0.3628,-0.9417 +0xa501,CUS_0x2883,August,21,354-08-5738,Journalist,8264.75,,7,10,27.06745738,5,"Credit-Builder Loan, Home Equity Loan, Student Loan, Student Loan, and Credit-Builder Loan",36.91440513,20.30872049,1.35,11,_,3073.01015,31.09126558,15 Years and 2 Months,Yes,27.4585469,32.99178724,Low_spent_Small_value_payments,262.4022946,0,-0.178,-1.0161,0.0991,0.5818,-1.3153 +0xa50d,CUS_0xae9b,August,34,580-64-1142,Doctor,18514.195,,0,4,7.288361749,2,"Mortgage Loan, and Credit-Builder Loan",,2,5.23,3,Good,62.75,35.50969069,33 Years and 6 Months,No,20.05047356,489.8058483,Low_spent_Small_value_payments,371.4660975,0,-0.838,1.4159,-0.5521,0.1392,0.8848 +0xa519,CUS_0x2daf,August,18,023-84-7652,Developer,43270.47,3882.8725,3,4,19,2,"Home Equity Loan, and Student Loan",,15,15.01,9,Standard,1401.86,37.89178376,17 Years and 5 Months,Yes,71.75087621,99.94562064,!@9#%8,456.5907531,0,-1.2288,-0.7517,-1.9144,-1.8306,0.4734 +0xa525,CUS_0x8ed4,August,33,089-81-7594,_______,18380.15,1396.679167,5,5,11,4,"Mortgage Loan, Auto Loan, Not Specified, and Personal Loan",,14,16.2,4,Standard,1456.12,25.2080532,16 Years and 11 Months,Yes,46.08682421,132.6188284,Low_spent_Small_value_payments,250.962264,0,0.7323,-1.5212,-0.8924,0.713,-0.4024 +0xa531,CUS_0x49d5,August,32,373-75-0180,_______,51162.84,,7,10,34,5,"Mortgage Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",41.68997135,21.66614422,18.23,9,Bad,2091.691851,37.27045132,10 Years and 8 Months,Yes,178.7834235,169.0174348,High_spent_Small_value_payments,337.1561416,0,0.9874,-0.9535,-1.1252,-0.2957,1.4933 +0xa53d,CUS_0x1182,August,24,117-62-4809,Musician,176696.88,,5,7,11.28836175,4,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Not Specified",5.978161299,8,4.01,6,Good,402.4690203,40.84913882,17 Years and 2 Months,No,1169.809116,,High_spent_Large_value_payments,1022.736843,0,-0.7826,0.1698,-1.0608,-0.16,-1.2652 +0xa549,CUS_0x1b97,August,18,543-81-0130,Entrepreneur,28631.79,,3,3,11,3,"Credit-Builder Loan, Home Equity Loan, and Payday Loan",26.78610075,17,13.94,9,Standard,685.37,33.71095001,18 Years and 6 Months,Yes,65.28496332,232.4020986,Low_spent_Medium_value_payments,227.7111881,0,-0.9351,0.6574,-0.4572,2.2017,-1.0265 +0xa555,CUS_0x9228,August,39,907-49-9321,Developer,75004.05,,3,3,8,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",15.31979479,9,17.36,9,_,199.04,26.04544517,9 Years and 0 Months,Yes,161.4996802,251.8653433,Low_spent_Medium_value_payments,508.2687265,0,1.5741,-1.1143,-0.184,-1.6972,0.6432 +0xa561,CUS_0x7f08,August,36,597-26-2038,Writer,9888.7,,8,7,33,5,"Payday Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Not Specified",22.59550414,17,21.5,10,Standard,1416.74,28.00755549,7 Years and 2 Months,Yes,100.782846,26.86319217,High_spent_Medium_value_payments,284.704606,0,0.2499,1.2242,-0.7298,0.3756,-1.134 +0xa56d,CUS_0x23ff,August,28,846-25-0402,Architect,69050.52,5722.21,3,3,10,0,,22.45155526,18,8.1,3,Good,1274.419568,26.99983916,30 Years and 4 Months,NM,0,161.253723,High_spent_Medium_value_payments,683.5327043,0,-0.9179,-0.5037,-1.1574,-0.3606,-2.7723 +0xa579,CUS_0xaa6e,August,25,200-22-4622,Media_Manager,18412.85,,6,6,24.06745738,9,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Personal Loan",,26,23.03,11,Bad,4049.180954,24.35023662,12 Years and 0 Months,Yes,128.1553485,,Low_spent_Small_value_payments,112.3456418,0,-1.2289,0.008,0.0183,-0.8507,-0.2313 +0xa585,CUS_0x1367,August,45,434-08-1310,Engineer,142635.52,11708.29333,0,5,12,3,"Personal Loan, Auto Loan, and Mortgage Loan",13.86715753,12.1155442,8.45,5,Good,515.4669794,38.00911617,20 Years and 11 Months,No,308.4094298,86.4901234,High_spent_Large_value_payments,1015.92978,0,-1.3715,-0.1855,0.9104,-1.2065,-0.0574 +0xa591,CUS_0x1c12,August,20,644-02-4671,Musician,115177.32,9529.11,4,4,2,4,"Debt Consolidation Loan, Auto Loan, Not Specified, and Not Specified",,10,3.83,4,_,801.79,39.31693775,17 Years and 2 Months,No,293.9138436,168.39716,High_spent_Large_value_payments,730.5999964,0,1.9308,0.1957,-1.1324,0.4224,-0.2772 +0xa59d,CUS_0xa6bd,August,29,871-70-7348,Manager,76092.27,6055.0225,4,6,12,6,"Student Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Not Specified",5.901042231,8,14.25,8,Standard,1266.19,30.61871859,5 Years and 11 Months,Yes,208.996781,119.51553,High_spent_Medium_value_payments,526.989939,0,-0.6876,1.2711,0.6559,-0.199,-0.2853 +0xa5a9,CUS_0x68bb,August,53,565-48-2416,_______,103284.84,,2,4,8.288361749,2,"Home Equity Loan, and Not Specified",,6,-1.14,3,Good,256,37.27529796,32 Years and 6 Months,No,119.1377279,1219.696018,!@9#%8,210.2107148,0,0.3627,0.4619,-1.4475,-0.1918,-0.3098 +0xa5b5,CUS_0x4367,August,22,208-70-4954,Accountant,23312.22,1814.685,6,7,20,2,"Payday Loan, and Personal Loan",14.46157211,13,1.95,7,Standard,1067.99,26.17512664,31 Years and 6 Months,No,25.17433036,53.90544701,!@9#%8,352.3887226,0,-0.736,-0.0338,0.5588,-0.4963,0.6032 +0xa5c1,CUS_0x8b3,August,27,038-00-6125,Accountant,30093.32,2348.124388,2,4,10.28836175,0,Personal Loan,3.218321845,5,8.94,0,Good,22.88,33.48245096,26 Years and 10 Months,No,150.4276342,,!@9#%8,183.4607922,0,0.1254,-1.1295,1.6221,-0.1164,-0.0552 +0xa5cd,CUS_0xa7d4,August,42,363-17-2182,Journalist,132588.3,10918.025,5,4,3,2,"Mortgage Loan, and Home Equity Loan",6.79229333,4.777451718,1.61,6,Good,39.45938325,38.9779916,20 Years and 5 Months,No,130.1041062,495.2354338,High_spent_Small_value_payments,726.46296,0,0.75,-0.9961,-0.6693,-0.1236,0.2823 +0xa5d9,CUS_0x5255,August,46,917-67-4033,Engineer,29873.96,2477.496667,5,4,10,0,,,8.485636175,16.76,9,Good,1214.833511,39.05374036,26 Years and 6 Months,No,0,75.68106605,High_spent_Medium_value_payments,422.0686006,0,-0.7496,-1.6524,1.7543,-0.9225,0.004 +0xa5e5,CUS_0x96f7,August,43,531-78-9628,Lawyer,16544.455,1111.329223,1,3,11,0,,,3404,5.31,1,Good,217.92,32.34303108,,No,98.37536075,,Low_spent_Small_value_payments,258.7204589,0,1.2594,0.6374,-0.1209,0.0116,1.1076 +0xa5f1,CUS_0x5369,August,37,111-17-8056,Accountant,25899.18,2100.265,8,4,9,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",9.502261569,9,9.05,6,Standard,69.74,33.59246672,33 Years and 4 Months,Yes,64.20245915,,Low_spent_Large_value_payments,344.9226173,0,0.8964,-1.6523,-0.1551,-0.8577,-0.6959 +0xa5fd,CUS_0x62e4,August,61,336-90-0523,Mechanic,85954.42,7366.868333,0,7,5,3,"Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",16.07450969,,3.66,3,Good,708.6294063,24.7982093,30 Years and 9 Months,NM,128.5552334,203.9029911,High_spent_Large_value_payments,673.3628957,0,-0.7343,0.563,-1.3212,0.4854,1.3398 +0xa609,CUS_0xbcfa,August,40,556-18-4640,Journalist,58510.6,4540.174389,8,7,35.06745738,7,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Student Loan, and Personal Loan",32.05696847,20.33683096,9.25,12,Bad,4233.308414,25.40591277,3 Years and 6 Months,Yes,365.8933896,140.3244445,Low_spent_Large_value_payments,360.1591555,0,-1.3249,1.8325,-2.0197,0.3073,-0.3428 +0xa615,CUS_0x4e53,August,26,174-15-1334,Musician,44768.54,3535.711667,3,6,0.288361749,0,Debt Consolidation Loan,,10,-0.27,1,Standard,127.38,35.24937764,19 Years and 4 Months,No,20.83545848,606.870346,!@9#%8,425.8028232,0,-0.4018,0.0208,1.1816,1.2058,0.8666 +0xa621,CUS_0x9ed5,August,24,137-27-3761,Teacher,66914.37,5331.1975,8,6,18.28836175,4,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",,20.59049214,4.72,8,Standard,198.2445362,39.46054414,18 Years and 8 Months,No,204.9223095,,Low_spent_Large_value_payments,400.09645,0,1.6301,0.363,0.0032,1.7865,0.6046 +0xa62d,CUS_0x22d0,August,33,156-11-2163,Teacher,28108.17,2591.3475,2,3,18,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",14.09227525,9,5.9,7,_,597.44,37.60150675,15 Years and 0 Months,Yes,57.18198799,10000,Low_spent_Large_value_payments,233.4748424,0,0.2864,-0.2258,-0.0372,-1.7013,2.1426 +0xa639,CUS_0x442e,August,36,549-81-5604,Media_Manager,36857.22,2976.435,4,5,14,2,"Debt Consolidation Loan, and Auto Loan",15.66643886,12,8.9,6,Standard,1911.65,32.71157052,11 Years and 3 Months,NM,56.04252061,,Low_spent_Small_value_payments,155.4519954,0,-0.3916,0.0345,-0.021,-0.0238,-1.0498 +0xa645,CUS_0x12a8,August,44,036-08-3232,Doctor,103092.27,8311.0225,3,6,10,4,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",19.50635852,15,15.53,4,Standard,300.65,39.79152937,13 Years and 8 Months,Yes,328.6048364,65.92393373,High_spent_Large_value_payments,676.5734799,0,1.2891,-0.3483,-0.6738,0.6897,2.3555 +0xa651,CUS_0x4c2,August,19,068-99-0027,Lawyer,17569.69,1440.140833,6,7,5,4,"Student Loan, Home Equity Loan, Not Specified, and Not Specified",12.44059615,9,11.56,10,_,1135.31,33.9593929,18 Years and 4 Months,Yes,47.59909906,23.50837797,High_spent_Large_value_payments,312.9066063,0,-1.4626,1.0677,-1.4661,0.254,0.9695 +0xa65d,CUS_0x936d,August,38,703-48-3482,_______,100433.58,8074.465,1,5,10,2,"Student Loan, and Debt Consolidation Loan",4.034844132,5,11.59,6,Good,1023.93,32.47841194,20 Years and 10 Months,No,100.1634659,144.1842473,High_spent_Large_value_payments,803.0987868,0,-1.1872,-0.3591,-0.3444,-0.9251,0.7199 +0xa669,CUS_0x7712,August,32,835-41-5190,Developer,53751.21,,10,725,19.88954781,9,"Not Specified, Personal Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Payday Loan, Student Loan, Student Loan, and Not Specified",33.54175423,24.85664698,8.98,12,Bad,3705.979527,21.96731501,7 Years and 11 Months,Yes,1545.745002,458.197526,Low_spent_Small_value_payments,17.75414079,0,-0.0435,-1.0372,0.3316,-1.824,1.7287 +0xa675,CUS_0xa6e,August,27,219-05-9236,Musician,82823.92,7098.993333,4,5,18,2,"Payday Loan, and Not Specified",19.54890225,13.00287,11.59,7,Standard,191.8473772,30.65476405,13 Years and 3 Months,Yes,118.064832,521.2376917,Low_spent_Medium_value_payments,350.5968096,0,0.4056,0.6493,-0.1515,0.2409,-1.4117 +0xa681,CUS_0xa72,August,26,511-39-3582,Mechanic,20196.67,,9,9,17,7,"Not Specified, Personal Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, and Student Loan",40.40193363,21.99653815,26.96,11,Bad,3220.176018,24.65238099,6 Years and 2 Months,NM,66.81100361,,Low_spent_Large_value_payments,227.5803278,0,-0.3293,1.4157,0.3579,-1.581,-0.2512 +0xa68d,CUS_0x9bbd,August,50,217-52-9489,Media_Manager,107761.29,9047.1075,4,5,9,0,,,16,13.56,3,_,34.09,39.28781402,17 Years and 8 Months,Yes,0,429.1935626,High_spent_Small_value_payments,735.5171874,0,1.0772,-0.7524,1.7223,-0.4528,-0.9275 +0xa699,CUS_0x1252,August,28,938-09-5300,Entrepreneur,34132.87,,4,6,3.288361749,4,"Student Loan, Personal Loan, Not Specified, and Home Equity Loan",,13,10.89,2,Good,168.4014202,37.02735017,21 Years and 2 Months,No,100.0843179,863.2451577,Low_spent_Small_value_payments,108.21005,0,0.843,0.5196,1.326,0.2321,-0.5883 +0xa6a5,CUS_0xbaa6,August,24,062-43-3431,Architect,8102.765,,6,8,16.95700519,420,"Payday Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,21,26.54,13,Bad,2974.290954,37.70450449,10 Years and 9 Months,Yes,1352.976705,,Low_spent_Small_value_payments,200.3562156,0,1.7127,-0.3242,-0.3952,0.5033,-0.9025 +0xa6b1,CUS_0x3c61,August,49,020-98-6690,Musician,12153.69,886.8075,6,5,13,2,"Credit-Builder Loan, and Home Equity Loan",,19,9.97,5,Standard,116.0243064,22.34849414,,Yes,15.76815239,65.40649719,Low_spent_Medium_value_payments,296.4696399,0,-1.4507,0.2658,0.4214,1.8467,1.062 +0xa6bd,CUS_0xb340,August,18,059-35-4671,Mechanic,7619.09,,4,6,19.06745738,2,"Debt Consolidation Loan, and Auto Loan",26.52603081,18,11.5,13,Standard,2292.710954,26.49255543,16 Years and 0 Months,Yes,8.756593493,,!@9#%8,240.8000101,0,-0.9539,0.5659,0.4603,0.3929,0.4085 +0xa6c9,CUS_0xa1f1,August,28,907-78-2343,Musician,25664.86,,7,7,17,0,,15.99594153,13.14273951,0.9,2,Standard,4.143236131,28.60578081,26 Years and 2 Months,Yes,0,119.8154202,Low_spent_Small_value_payments,360.6584132,0,0.4286,0.9029,-0.4095,1.8868,-0.279 +0xa6d5,CUS_0xbe49,August,41,251-00-6756,Engineer,35615.68,,2,3,8,0,,13.70347769,8.291185624,5.05,5,Good,1643.833884,23.98761428,29 Years and 2 Months,No,0,105.017706,High_spent_Small_value_payments,422.7796273,0,0.04,0.4758,2.4417,-0.9753,-0.4997 +0xa6e1,CUS_0x2a8c,August,45,180-05-9282,Doctor,17296.38,,6,10,30,5,"Payday Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",23.62941496,18,17.34,9,Bad,4624.73,24.01929236,8 Years and 0 Months,Yes,49.36071018,117.3428318,Low_spent_Small_value_payments,271.332958,0,0.5915,-1.0359,1.6955,-1.0857,0.8793 +0xa6ed,CUS_0xacd7,August,25,171-88-1771,Musician,15701.03,1213.419167,8,10,30,9,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Auto Loan",,25.11679768,,9,Bad,1789.378447,30.03868318,19 Years and 3 Months,NM,60.44515193,67.76890495,Low_spent_Small_value_payments,283.1278598,0,-0.0614,2.8084,2.3332,-0.0485,3.1983 +0xa6f9,CUS_0x6e6b,August,51,424-23-9837,Accountant,177350.84,14615.23667,4,1,9.288361749,4,"Debt Consolidation Loan, Not Specified, Home Equity Loan, and Personal Loan",0,3,9.18,2,Good,256.54,23.73876087,29 Years and 5 Months,No,455.5984102,1279.890612,Low_spent_Large_value_payments,415.9721059,0,1.9851,-0.0102,0.2257,-0.326,-0.5422 +0xa705,CUS_0x7be,August,40,706-58-3472,Teacher,20282.38,1688.198333,3,7,4,1,Not Specified,13.98531883,,3.95,2,Good,1112.402451,32.18004567,24 Years and 8 Months,No,10.17939375,11440.79312,High_spent_Large_value_payments,387.3767178,0,-0.9821,-1.3314,0.0465,-0.7057,1.2065 +0xa711,CUS_0x4cb5,August,37,762-98-8448,Mechanic,49346.88,3593.222193,5,7,15,100,"Debt Consolidation Loan, Payday Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",63.64177402,47,16.99,7,Standard,198.5299555,26.3755174,7 Years and 6 Months,Yes,586.2382653,53.30458811,High_spent_Large_value_payments,375.5106533,0,-0.9152,-1.3189,-2.3492,1.8241,0.0532 +0xa71d,CUS_0x499d,August,41,573-37-4142,_______,8973.16,,6,8,16,5,"Home Equity Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,21,0.52,10,_,1483.24,30.95228531,14 Years and 6 Months,Yes,20.27801062,,Low_spent_Small_value_payments,269.3650533,0,-0.6699,0.6332,-1.3881,-0.55,-1.9527 +0xa729,CUS_0xa4f6,August,26,606-38-9646,_______,14810.545,1075.212083,6,7,2,100,Debt Consolidation Loan,23.89808643,19,8.03,4,_,862.5153196,33.05014228,26 Years and 9 Months,No,9.433937794,30.79098244,High_spent_Small_value_payments,330.7968998,0,0.1581,-1.4914,0.325,-0.103,2.1196 +0xa735,CUS_0x657e,August,55,#F%$D@*&8,Media_Manager,55929.32,4788.776667,7,6,5,0,,28.49387075,20,9.7,4,_,994.27,37.03351907,,No,0,,!@9#%8,560.810418,0,-0.7837,-1.2608,0.324,0.1844,0.4259 +0xa741,CUS_0x158e,August,34,208-03-8186,Writer,36638.43,,3,6,20,100,"Mortgage Loan, Personal Loan, Home Equity Loan, and Student Loan",16.71756192,,14.63,4,Standard,110.35,40.38555017,21 Years and 11 Months,Yes,120.7937025,96.74784653,High_spent_Medium_value_payments,313.178701,0,1.2852,-0.946,-2.0934,-0.6085,0.0767 +0xa74d,CUS_0x18c9,August,48,108-93-2981,_______,31183.16,,0,7,5,1,Mortgage Loan,18.51134959,17.86519791,2.46,1,_,950.2358431,26.62081573,,NM,23.72277458,76.39380256,!@9#%8,455.9430895,0,0.3715,-1.0338,-0.1215,0.9826,-0.0163 +0xa759,CUS_0x8ce,August,46,504-18-6493,Teacher,28956.72,2459.06,8,6,23.06745738,5,"Student Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",34.56415024,24,14.59,11,Bad,2768.450954,33.58551058,13 Years and 3 Months,Yes,98.63463842,,Low_spent_Small_value_payments,88.10165477,0,0.5269,0.0831,-0.3133,-0.0404,-2.2844 +0xa765,CUS_0x74c9,August,25,778-06-7158,Developer,28263.5,2514.291667,7,5,25.06745738,2,"Home Equity Loan, and Not Specified",19.52974905,13.05280047,9.34,8,Standard,2514.297933,35.02877748,14 Years and 11 Months,Yes,32.21531559,,High_spent_Medium_value_payments,367.8494692,0,-0.9242,-0.0959,-0.7374,-0.0445,-0.639 +0xa771,CUS_0x32d1,August,39,173-69-9224,Journalist,58267.23,4943.6025,8,6,17,4,"Student Loan, Student Loan, Not Specified, and Payday Loan",,10.37043902,17.98,7,Standard,2056.806615,34.92511586,15 Years and 4 Months,Yes,109.7203506,120.336101,High_spent_Small_value_payments,524.3037985,0,1.2519,-2.1006,-1.8539,-1.0293,1.0597 +0xa77d,CUS_0x81d3,August,41,939-81-7581,Architect,111112.76,,7,5,13,0,,28.25885209,18,19.75,6,_,261.78,31.00410687,22 Years and 11 Months,Yes,0,180.7281986,High_spent_Large_value_payments,956.9114681,0,-1.1553,0.9662,1.7424,0.2878,-0.3118 +0xa789,CUS_0x9c68,August,37,181-33-2849,Lawyer,19427.14,,4,6,16,6,"Debt Consolidation Loan, Student Loan, Auto Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",,15,11.4,7,Standard,696.13,29.00253675,11 Years and 2 Months,Yes,75.28872895,26.91216516,High_spent_Large_value_payments,278.2919392,0,0.4795,-0.1185,-0.0846,-1.8332,-0.3926 +0xa795,CUS_0x7ae,August,50,956-28-1881,Lawyer,87714.58,7483.548333,3,7,11,4,"Credit-Builder Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",7.347454555,7,3.97,4,_,53.4,24.00143072,16 Years and 9 Months,No,263.655491,629.3056772,Low_spent_Medium_value_payments,135.3936652,0,-0.0701,0.4295,1.4588,0.1718,-0.482 +0xa7a1,CUS_0x1676,August,22,408-02-4990,Mechanic,124436.4,10520.7,5,5,7,2,"Not Specified, and Debt Consolidation Loan",,7,2.82,1,Good,529.84,32.07150057,30 Years and 0 Months,No,164.0140823,398.5314393,!@9#%8,759.5244784,0,0.1205,-2.5005,0.638,3.0152,-1.3409 +0xa7ad,CUS_0x7251,August,31,516-69-1184,Developer,167860.16,13773.34667,3,7,3.288361749,2,"Home Equity Loan, and Home Equity Loan",5.930251149,9,11.19,4,Good,706.55,30.78219304,23 Years and 5 Months,No,218.3282682,657.268188,High_spent_Large_value_payments,1161.675672,0,-0.4797,-0.0808,0.5731,-0.1911,-1.2363 +0xa7b9,CUS_0x558e,August,58,351-09-5113,Scientist,5651693,2611.245,5,3,4.288361749,0,,,8,11.73,2,Good,1200.409172,27.57066718,26 Years and 3 Months,No,0,582.6890508,High_spent_Small_value_payments,377.2530581,0,0.6358,1.1085,-0.1786,-0.8598,0.1963 +0xa7c5,CUS_0x435a,August,59,295-35-0003,Architect,42103.18,3327.598333,4,2,754,100,"Payday Loan, and Payday Loan",12.81829125,,5,7,_,663.0495121,39.35744761,32 Years and 2 Months,No,42.46857923,251.6304822,!@9#%8,344.5399829,0,0.5744,1.1317,-1.6856,1.3832,2.2916 +0xa7d1,CUS_0x1c47,August,27,239-32-4017,Mechanic,15604.245,1554.35375,4,3,11,4,"Not Specified, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",7.159562112,8,1.64,3,Good,928.5521894,28.09477679,28 Years and 4 Months,NM,47.62919148,51.91429342,High_spent_Small_value_payments,321.9828004,0,0.3473,1.7074,2.2462,0.0097,1.4639 +0xa7dd,CUS_0x6908,August,27,979-88-4689,Accountant,15391.47,,7,7,19,3,"Not Specified, Auto Loan, and Payday Loan",,12,13.68,7,Standard,939.63,39.17326335,20 Years and 5 Months,Yes,114.7586613,60.97972126,Low_spent_Small_value_payments,322.2670756,0,-0.3492,0.1554,-0.5397,0.2444,0.7623 +0xa7e9,CUS_0x9853,August,21,355-95-9543,Musician,132897.24,11193.77,3,5,7,1,Not Specified,0,1,11.35,4,Good,1473.37,30.84577807,33 Years and 3 Months,No,67.30924983,,!@9#%8,1152.789934,0,-0.9957,0.7724,-0.1812,-0.4348,0.046 +0xa7f5,CUS_0x16a4,August,36,550-63-8553,Architect,31178.1,,6,9,25.06745738,6,"Student Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",,23.66125247,,10,_,5747.70422,31.68800985,6 Years and 2 Months,Yes,144.6297138,,Low_spent_Small_value_payments,54.62019143,0,-0.9088,1.1304,0.5153,0.3029,-0.1077 +0xa801,CUS_0x2363,August,25,380-39-9684,Mechanic,38038.59,3011.8825,2,3,10,2,"Personal Loan, and Credit-Builder Loan",0,0,8.63,4,Good,328.1757396,30.93988324,27 Years and 4 Months,NM,38.45595247,179.921998,Low_spent_Large_value_payments,352.8102995,0,-0.3701,-1.9777,0.7913,-0.3154,0.2332 +0xa80d,CUS_0x47e,August,47,821-33-2218,Writer,35539.56,2953.63,3,4,5,0,,10.00664156,8,3.4,2,Good,819.48,39.41336446,27 Years and 6 Months,No,0,20.63032454,High_spent_Large_value_payments,514.7326755,0,0.2423,-0.2777,1.4784,1.0673,1.2905 +0xa819,CUS_0x3e7e,August,25,132-80-5883,Accountant,83873.61,7034.4675,7,4,4.288361749,2,"Debt Consolidation Loan, Student Loan, and Home Equity Loan",18.17142068,16,7.53,7,Standard,90.93,37.3344167,5 Years and 9 Months,NM,171.4571987,838.9420836,High_spent_Small_value_payments,372.9849287,0,1.2544,0.6598,-0.4221,-0.4384,2.0952 +0xa825,CUS_0xa7a4,August,49,448-37-5187,Media_Manager,19042.55,1716.879167,3,7,14.28836175,0,,18.12038165,16,,3,_,36.36,34.27428214,22 Years and 9 Months,NM,0,492.1222883,High_spent_Medium_value_payments,349.5030894,0,0.1175,0.248,-0.1367,0.4584,0.5831 +0xa831,CUS_0xbe14,August,58,045-24-1440,Media_Manager,12975.45,,3,6,15,0,,16.04364933,15,15.91,4,_,523.7370903,38.98797826,26 Years and 9 Months,Yes,131.1338407,70.05031967,Low_spent_Small_value_payments,349.6962102,0,-0.3678,-0.1341,-0.8511,-0.5709,3.3239 +0xa83d,CUS_0xd46,August,26,366-52-8814,Entrepreneur,34693.86,,1,5,3,1,Credit-Builder Loan,2.97832185,4,10.99,7,Good,1400.6,32.82632288,28 Years and 2 Months,No,16.78352528,,Low_spent_Small_value_payments,200.9716111,0,0.9584,-0.7125,-1.5464,-0.7784,-0.8235 +0xa849,CUS_0xb01f,August,22,766-73-2626,Lawyer,28560.71,,4,7,11.28836175,0,Debt Consolidation Loan,,12,8.79,2,Good,24.57,39.87288008,28 Years and 6 Months,No,13.79706265,10419.93746,High_spent_Small_value_payments,381.629068,0,-0.2656,0.7824,0.6396,-1.0139,-1.8139 +0xa855,CUS_0x9c1f,August,28,818-95-8183,Teacher,55378.41,4665.8675,6,9,17,9,"Mortgage Loan, Payday Loan, Payday Loan, Personal Loan, Student Loan, Auto Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",,20,1.53,16,Bad,3911.65,32.38163927,4 Years and 8 Months,Yes,320.4510878,50.81393976,High_spent_Large_value_payments,335.3217225,0,-0.4862,-0.0893,0.0167,-0.132,-1.0654 +0xa861,CUS_0x22be,August,51,552-02-3722,Accountant,39296.5,3261.708333,4,0,0.288361749,4,"Payday Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",8.223592156,9,12.65,3,Good,167.8967535,34.34562836,27 Years and 8 Months,No,124.9486672,606.2349575,High_spent_Small_value_payments,295.901982,0,0.4929,0.0011,-1.2962,-0.5683,-0.12 +0xa86d,CUS_0x6080,August,34,773-11-0687,_______,16472.09,,4,3,6,0,,,7,7.4,9,Good,646.7957271,27.84903394,32 Years and 8 Months,No,0,87.48343122,Low_spent_Small_value_payments,370.970139,0,2.5565,0.1029,-1.6815,0.2655,-1.0518 +0xa879,CUS_0xa20f,August,35,042-35-5864,Journalist,21687.46,2003.288333,1,1,12,4,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, and Home Equity Loan",4.462346276,8,6.39,7,Good,1226.568251,24.49698881,21 Years and 9 Months,No,56.52993708,287.0843136,!@9#%8,174.3145523,0,-1.6278,-1.4399,-1.733,-0.0585,-0.5971 +0xa885,CUS_0x9aa1,August,40,375-38-2010,Architect,16517.795,1467.482917,5,6,11,0,,17.80695516,13,4.67,7,Standard,87.91,27.69237141,23 Years and 10 Months,Yes,0,122.1885304,Low_spent_Medium_value_payments,304.5597613,0,-0.3984,0.7953,-0.566,0.5122,-0.5654 +0xa891,CUS_0x1fdc,August,29,896-78-0268,Accountant,14189.3,,8,1499,23,2,"Mortgage Loan, and Student Loan",14.73066704,12.62055107,15.02,12,Standard,1436.742497,34.22719631,18 Years and 9 Months,NM,19.79281109,90.69247395,Low_spent_Small_value_payments,276.8588816,0,-0.4431,-0.3945,2.0161,1.6407,-1.2661 +0xa89d,CUS_0xf91,August,40,856-43-1180,Accountant,97384.44,8167.37,1,3,8,1,Debt Consolidation Loan,16.51880559,11.72088244,0.52,4,Good,461.8001074,29.92728141,28 Years and 4 Months,No,77.28494292,66.38998748,!@9#%8,913.0620696,0,-0.0835,-1.6798,-1.7914,0.6309,1.2649 +0xa8a9,CUS_0xd7c,August,40,#F%$D@*&8,Architect,36941.92,,8,7,24,9,"Personal Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",,17.82187736,0.74,6,Bad,2863.837539,26.70302067,12 Years and 11 Months,Yes,185.3588934,105.2146076,High_spent_Medium_value_payments,293.6758324,0,0.7552,-1.6352,0.9655,-0.0388,0.1631 +0xa8b5,CUS_0x5f97,August,27,568-79-7786,Lawyer,25322.83,,6,6,8,2,"Credit-Builder Loan, and Home Equity Loan",26.60113959,20,8.25,2,Good,247.013436,32.43761164,23 Years and 5 Months,NM,33.25945351,77.92389572,!@9#%8,334.1521629,0,-1.055,2.3305,0.3343,0.5747,-0.4576 +0xa8c1,CUS_0x2d94,August,48,525-03-2473,Journalist,19835.93,1531.994167,2,3,1,0,,4.429747007,6,3.09,0,Good,1385.49,27.15871505,25 Years and 8 Months,No,0,,Low_spent_Small_value_payments,244.7714188,0,-0.5861,1.0986,-0.0606,0.0871,-0.64 +0xa8cd,CUS_0x317a,August,37,123-72-0187,Developer,67049.66,,224,6,11,4,"Auto Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",18.61410677,12,17.27,13,Standard,1247.9,26.41324831,9 Years and 2 Months,Yes,139.3885777,170.0881897,!@9#%8,538.2703993,0,-0.2092,1.3018,0.411,1.5316,0.2383 +0xa8d9,CUS_0x603b,August,38,#F%$D@*&8,Scientist,86878.4,7336.866667,3,4,15,4,"Student Loan, Student Loan, Payday Loan, and Home Equity Loan",34.50258587,21.59583485,10.25,6,Standard,173.6383824,30.64502298,20 Years and 8 Months,No,210.5760447,250.132179,High_spent_Small_value_payments,532.978443,0,1.4023,-0.7606,-1.1933,-2.4749,1.3519 +0xa8e5,CUS_0x7963,August,31,820-04-5244,Engineer,39340.72,3534.393333,4,2,9,0,,0,2,5.98,3,Good,1336.832921,36.90480213,26 Years and 11 Months,No,0,285.9771066,Low_spent_Small_value_payments,391.9498882,0,0.6587,-0.508,0.0959,-0.6842,-1.2022 +0xa8f1,CUS_0x5876,August,43,593-61-6899,Writer,10003.495,,8,7,28.06745738,6,"Mortgage Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",38.95522476,23,19.76,14,Bad,3233.182254,24.48181508,1 Years and 5 Months,NM,38.50716227,86.53023446,Low_spent_Small_value_payments,234.864224,0,-0.9349,-0.7295,-0.4469,-0.6812,-0.1955 +0xa8fd,CUS_0x56f,August,20,451-16-8531,_______,45941.28,,6,4,4,3,"Credit-Builder Loan, Mortgage Loan, and Personal Loan",,20,1.57,7,Good,1279.96,39.66660658,28 Years and 4 Months,No,80.89486248,146.3712838,Low_spent_Large_value_payments,443.3778538,0,-0.9696,1.1406,0.655,1.3149,0.056 +0xa909,CUS_0x1b1a,August,80,025-91-0217,Accountant,29594.87,2493.239167,5,6,7,3,"Personal Loan, Student Loan, and Credit-Builder Loan",15.59289965,9,9.69,11,Standard,772.83,27.67907229,29 Years and 11 Months,Yes,70.19507834,36.10702816,High_spent_Medium_value_payments,393.0218102,0,-0.3276,-0.5019,0.7944,0.704,0.2319 +0xa915,CUS_0x79e4,August,38,369-89-2918,Architect,73348.2,5908.35,7,7,12,2,"Not Specified, and Student Loan",27.52563088,18,3.6,5,Good,790.6725418,30.229086,24 Years and 6 Months,No,11232,406.6149612,High_spent_Small_value_payments,368.9914812,0,0.1656,0.8626,0.3709,-1.567,-1.8079 +0xa921,CUS_0x5e0d,August,20,654-95-0851,Media_Manager,38415.69,,5,2,2735,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Not Specified",,6,2.42,2,Good,516.9885278,31.90354005,26 Years and 3 Months,No,117.8403031,103.467176,High_spent_Medium_value_payments,369.4357977,0,-0.4376,0.2256,0.1844,0.7749,-0.2992 +0xa92d,CUS_0x55c6,August,32,987-22-2665,Journalist,63022.2,5196.85,10,10,30.88954781,9,"Debt Consolidation Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Auto Loan, and Payday Loan",29.07606335,15,9.67,15,Bad,2955.49,37.72913211,6 Years and 4 Months,Yes,1614.936449,184.5176489,High_spent_Medium_value_payments,275.9008206,0,0.0948,-0.9294,-1.0282,1.2057,-1.5859 +0xa939,CUS_0x1119,August,36,596-61-5235,Entrepreneur,56301.9,,9,5,26,2,"Not Specified, and Not Specified",,20.42777873,14.73,14,_,2447.625018,37.38149611,14 Years and 6 Months,Yes,50.11934809,310.8444404,Low_spent_Medium_value_payments,378.4187115,0,-1.8803,-0.9554,1.7993,2.1195,0.4588 +0xa945,CUS_0x5eae,August,22,332-71-6850,Writer,114755.04,9114.102944,1,5,8.288361749,2,"Debt Consolidation Loan, and Payday Loan",,3,6.38,1,_,1025.620405,36.48499474,25 Years and 0 Months,No,677.3837977,601.8497499,High_spent_Medium_value_payments,935.0380863,0,-0.6902,-0.1167,-0.0925,0.3898,-0.6756 +0xa951,CUS_0x6cd2,August,20,863-39-0169,Media_Manager,22558.95,1991.9125,4,5,10.28836175,100,"Student Loan, Auto Loan, Personal Loan, and Mortgage Loan",13.37174894,14,17.74,5,_,141.14,31.98558309,31 Years and 6 Months,Yes,64.30119007,495.3546742,Low_spent_Medium_value_payments,339.4728467,0,-1.6133,-0.9203,-0.8852,0.7313,0.6133 +0xa95d,CUS_0xa26,August,42,604-83-5084,Lawyer,29377.62,2430.135,5,4,5,1,Debt Consolidation Loan,19.91844336,16,11.48,8,Standard,911.06,33.46273914,28 Years and 0 Months,Yes,17.32722005,53.74367914,High_spent_Large_value_payments,411.9426008,0,0.6271,-0.677,1.8431,-0.1529,-1.0409 +0xa969,CUS_0x17e0,August,31,739-05-3714,Lawyer,18250.52,1403.876667,9,8,34.06745738,8,"Auto Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Personal Loan, Home Equity Loan, Payday Loan, and Not Specified",,21,28.48,9,Bad,4681.010954,37.718372,,Yes,89.36053069,77.3491343,!@9#%8,206.9577137,0,-1.5745,1.6682,1.7641,0.5586,-0.6742 +0xa975,CUS_0x36a1,August,43,286-88-7128,Teacher,19214.965,1730.247083,0,4,11,100,,9.747869622,10,4.18,3,Good,445.053937,33.5976984,,No,0,73.56191672,High_spent_Medium_value_payments,357.9525963,0,-0.3612,-1.8584,-1.0878,-2.131,0.1472 +0xa981,CUS_0x47bb,August,22,#F%$D@*&8,Writer,18372.22,1486.018333,5,5,8,6,"Home Equity Loan, Student Loan, Payday Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",16.73720792,12,7.01,8,Standard,1517.44,26.81946573,19 Years and 0 Months,Yes,54.34722951,81.35040192,Low_spent_Small_value_payments,302.9042019,0,1.7135,-0.3712,0.7569,1.483,-0.1875 +0xa98d,CUS_0x1d08,August,80,075-72-5423,Doctor,79752.42,6348.035,5,3,6,2,"Debt Consolidation Loan, and Auto Loan",,20,4.61,1,Standard,1055.14,38.1984508,27 Years and 9 Months,No,109.8246394,58.02497082,High_spent_Large_value_payments,706.9538897,0,-0.1213,0.2963,-0.7174,-1.2901,0.7305 +0xa999,CUS_0xa260,August,35,645-88-6941,Journalist,33061.79,2752.149167,3,5,9,3,"Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,10,10.38,3,_,953.68,37.5502018,20 Years and 2 Months,No,81.98813542,60.47663821,High_spent_Medium_value_payments,382.750143,0,0.3948,0.2893,0.7723,0.6342,-0.6777 +0xa9a5,CUS_0x59c1,August,40,319-03-2071,Mechanic,62927.92,,7,5,31,4,"Personal Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,21.94911567,9.32,6,Standard,2625.979865,24.49092413,17 Years and 4 Months,Yes,193.8113755,,Low_spent_Large_value_payments,379.4501595,0,-0.769,-0.9256,-0.44,-0.5429,-0.5146 +0xa9b1,CUS_0x700f,August,25,197-74-0612,Mechanic,72896.12,5885.676667,5,1,12,4,"Home Equity Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",0,2,2.71,8,Good,1000.126291,38.88252851,,No,208.4931918,586.3555407,Low_spent_Large_value_payments,128.150765,0,1.1842,-0.5964,-0.0637,-0.0823,0.3836 +0xa9bd,CUS_0x66d,August,48,440-37-0746,Teacher,85840.34,7164.361667,1,5,1,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",0,3,2.32,1,_,270.42,26.54583035,23 Years and 11 Months,No,172.0550118,190.6673191,High_spent_Medium_value_payments,603.7138357,0,-0.2651,-0.2273,0.0629,0.5263,0.7355 +0xa9c9,CUS_0x52f3,August,52,323-41-6755,Teacher,72304.38,,8,7,14,2,"Auto Loan, and Home Equity Loan",10.36351058,8,8.94,2,_,1295.99,31.42183687,33 Years and 3 Months,Yes,64.06920215,309.2850876,Low_spent_Small_value_payments,526.5822102,0,-0.2944,0.3576,-0.377,-2.4873,-1.1476 +0xa9d5,CUS_0x20b8,August,39,187-58-8843,Architect,17090.225,,5,7,10,1,Student Loan,13.23523403,10,0.96,8,_,797.12,38.17206741,29 Years and 11 Months,NM,9.304233815,95.02604343,Low_spent_Small_value_payments,322.7882644,0,-0.6092,-0.849,-1.1719,2.1443,-1.4277 +0xa9e1,CUS_0x2513,August,32,470-35-3931,Architect,131990.84,,5,4,8,0,,24.35640261,15,10.07,0,_,647.15,34.60059157,22 Years and 4 Months,No,593.0166337,90.27996756,High_spent_Large_value_payments,1260.443699,0,0.9692,0.2965,-0.8087,0.3083,-0.3172 +0xa9ed,CUS_0x3e75,August,35,212-44-4567,Manager,34317.6,2794.8,5,3,7,0,,12.61926893,11,2.07,5,Good,386.33,29.147061,27 Years and 5 Months,NM,0,,Low_spent_Small_value_payments,195.3287515,0,0.7744,0.3104,0.8679,-0.0629,0.5093 +0xa9f9,CUS_0x2950,August,46,#F%$D@*&8,Accountant,33185.6,2629.466667,0,1207,5,1,Home Equity Loan,,6,5.5,1,Good,1340.52,38.15506319,33 Years and 4 Months,No,17.07939378,169.4699683,High_spent_Small_value_payments,336.3973046,0,-0.6161,-0.8526,0.3213,-1.7887,-0.2643 +0xaa05,CUS_0xc187,August,24,112-67-0429,Lawyer,19223.44,1476.953333,5,5,29.06745738,7,"Home Equity Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",20.1363164,11.34052925,7.56,8,Standard,2007.061242,28.25797849,13 Years and 4 Months,Yes,63.9858289,22.39377568,High_spent_Large_value_payments,274.5954408,0,-0.8938,-1.7535,0.7527,-0.5875,0.6911 +0xaa11,CUS_0x8ba4,August,18,124-32-2706,Engineer,35398.64,3123.886667,8,7,15,3,"Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",22.68829948,16.95798636,19.4,9,Standard,1686.482275,37.92501566,,Yes,86.56126134,126.2176461,High_spent_Medium_value_payments,349.6097592,0,0.5776,-0.6926,-1.5331,0.4653,-0.8976 +0xaa1d,CUS_0xbd9b,August,40,975-36-8835,Accountant,9989.875,,3,6,34,100,"Auto Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Auto Loan",14.87667096,12.74151284,13.36,10,Standard,1415.551538,37.36229694,19 Years and 5 Months,Yes,56.94747399,,Low_spent_Small_value_payments,253.2171256,0,-0.4012,-0.3816,-1.791,0.0904,0.9727 +0xaa29,CUS_0x7dab,August,20,745-71-9769,Writer,20456.57,1770.714167,10,10,30.06745738,5,"Mortgage Loan, Student Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",,20,22.91,11,Bad,4663.830954,28.72547785,1 Years and 4 Months,Yes,56.51776994,79.17898145,Low_spent_Small_value_payments,304.6543773,0,0.2135,-0.044,1.8376,0.2583,-0.0647 +0xaa35,CUS_0x13c7,August,34,305-39-6641,Teacher,69341.52,,3,3,11,1,Not Specified,17.62338295,,7.58,8,Standard,333.6687303,41.31044359,15 Years and 10 Months,No,54.60540123,328.3664527,!@9#%8,468.9741461,0,0.9679,-0.6842,-1.1853,-0.4076,0.0894 +0xaa41,CUS_0x42db,August,45,671-61-1523,Architect,70350.06,,5,131,2037,2,"Debt Consolidation Loan, and Debt Consolidation Loan",19.33030235,13,9.23,8,Standard,148.52,38.65318614,,Yes,78.48455053,72.23360085,High_spent_Large_value_payments,693.7323486,0,-0.0268,-1.8857,-0.1834,-1.4185,2.226 +0xaa4d,CUS_0xa4b6,August,31,571-19-8151,Journalist,13090136,,9,8,30,3,"Mortgage Loan, Auto Loan, and Payday Loan",18.63713075,,2.61,12,Bad,1868.46,31.7320722,10 Years and 2 Months,Yes,113.6499505,,Low_spent_Medium_value_payments,448.2620347,0,0.5418,0.9874,-2.1052,0.3187,0.4794 +0xaa59,CUS_0x8cc5,August,37,311-38-7874,Architect,77821.26,6619.105,1,1,12,1,Home Equity Loan,16.47443158,,5.58,3,Good,852.73,34.11615585,32 Years and 2 Months,No,51.55760108,126.2788328,High_spent_Small_value_payments,744.0740661,0,-1.3582,0.4174,0.7555,-1.5165,-0.8346 +0xaa65,CUS_0x2005,August,43,671-03-2737,Doctor,17063.595,1571.96625,7,7,16,0,,,14,16.53,2,_,486.79,24.76985798,26 Years and 2 Months,Yes,0,51.58852687,Low_spent_Medium_value_payments,385.6080981,0,0.2845,-0.6154,1.3014,0.599,-0.3386 +0xaa71,CUS_0x80d7,August,18,181-47-9455,Architect,19453.05,,3,6,10,6,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Auto Loan",25.00933281,18,19.86,11,Standard,731.24,29.79872335,17 Years and 3 Months,Yes,77.11008866,42.79711534,!@9#%8,321.801546,0,0.7375,-1.4387,-0.5563,-2.7735,-2.9123 +0xaa7d,CUS_0x8fd8,August,38,266-04-6005,Journalist,20417.71,,4,4,10,3,"Auto Loan, Personal Loan, and Debt Consolidation Loan",,24.17170328,19.7,8,_,564.3607053,25.59269062,12 Years and 11 Months,Yes,46.11577293,,Low_spent_Small_value_payments,318.6350838,0,1.2365,-0.1397,0.6825,-1.7119,1.4658 +0xaa89,CUS_0x8f9e,August,37,941-98-1752,Entrepreneur,20426.38,1653.198333,1,7,11,4,"Credit-Builder Loan, Payday Loan, Personal Loan, and Payday Loan",0,4,3.45,1,Good,622.66,26.68513221,32 Years and 4 Months,No,44.63949382,76.55828815,High_spent_Small_value_payments,304.1220514,0,-0.7225,0.8563,1.1929,1.0799,0.4638 +0xaa95,CUS_0x56a9,August,28,628-92-2669,Mechanic,24600.33,,4,4,13,4,"Personal Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",15.64177729,,1.26,8,_,1437.79,29.0636245,8 Years and 2 Months,Yes,45.43167275,156.5880885,Low_spent_Large_value_payments,271.4829887,0,-0.8941,-1.0645,0.1157,-0.0035,-1.1117 +0xaaa1,CUS_0x8f69,August,22,001-91-2742,Lawyer,31100.49,2456.7075,3,4,3,4,"Home Equity Loan, Mortgage Loan, Auto Loan, and Not Specified",,4.805184384,2.67,2,_,979.5502793,33.58046052,25 Years and 11 Months,No,82.7021934,43.33271356,!@9#%8,369.635843,0,0.6626,-1.1135,1.419,1.5457,-1.1377 +0xaaad,CUS_0x77ad,August,31,634-33-9227,Entrepreneur,26299.08,,3,7,9,3,"Credit-Builder Loan, Mortgage Loan, and Personal Loan",,13,5.07,3,Standard,353.2178396,29.91143223,,Yes,41.09867409,103.6218481,Low_spent_Small_value_payments,404.4188707,0,0.0446,0.4673,-0.8354,0.838,-1.3688 +0xaab9,CUS_0x350e,August,47,186-74-1693,Mechanic,106154.46,8961.205,1,2,10,1,Not Specified,0,1,5.38,2,Good,341.0536672,35.60255559,23 Years and 5 Months,No,47.7899986,594.1529652,Low_spent_Medium_value_payments,602.5088266,0,2.0667,-0.1651,-0.4939,1.0139,-0.8046 +0xaac5,CUS_0x9ae8,August,30,257-10-0042,Doctor,86058.54,7140.545,1,5,9,1,Student Loan,,1,7.77,2,Good,28.15,35.92244891,17 Years and 3 Months,NM,60.07540938,85.96596978,High_spent_Large_value_payments,808.0131208,0,-1.1773,-0.3342,-0.9864,0.4291,1.4298 +0xaad1,CUS_0x981a,August,26,201-19-1306,Lawyer,39693.86,3302.693122,0,2,1,2,"Credit-Builder Loan, and Payday Loan",10.03297626,12,1.69,4,_,274.4552163,34.78041518,18 Years and 5 Months,No,197.5362288,,High_spent_Medium_value_payments,463.9252726,0,-2.2277,-0.5522,-0.7925,0.0619,0.3416 +0xaadd,CUS_0xa60e,August,52,070-17-5614,Mechanic,134775.96,11379.33,0,3,11,3,"Auto Loan, Not Specified, and Debt Consolidation Loan",,2,0.95,4,Good,1185.900218,36.38109087,22 Years and 4 Months,No,276.8366335,974.9676473,!@9#%8,311.1166062,0,-0.7289,0.5978,1.1466,-0.7515,0.8192 +0xaae9,CUS_0x3998,August,43,066-70-0045,Journalist,34374.28,,5,7,15,7,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Auto Loan, and Home Equity Loan",,16,12.08,12,_,1530.430079,39.25434891,18 Years and 3 Months,Yes,167.6975258,118.4318291,!@9#%8,268.0351837,0,-0.8157,-0.7084,0.1499,-1.8739,-1.4987 +0xaaf5,CUS_0x9403,August,38,283-50-9155,Lawyer,82796.52,6927.71,3,5,6,1,Student Loan,30.65035125,21,18.06,7,_,966.79,28.99141299,19 Years and 8 Months,Yes,55.1214526,90.96229152,High_spent_Large_value_payments,786.6872559,0,0.5009,-0.1064,-0.3642,-1.6212,0.095 +0xab01,CUS_0xaaf8,August,38,181-79-7057,Teacher,79993.05,,7,3,18,4,"Student Loan, Student Loan, Not Specified, and Not Specified",19.94196374,18,5.72,3,Standard,1052.29,29.12740869,26 Years and 2 Months,No,188.6998751,10000,Low_spent_Medium_value_payments,114.0995467,0,0.6783,0.7997,0.4959,-1.9812,1.036 +0xab0d,CUS_0x94e8,August,18,961-22-4819,Doctor,64350.76,,10,5,18,9,"Auto Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,19,23.21,7,Bad,4055.26,39.35754072,11 Years and 10 Months,Yes,249.6308775,,Low_spent_Small_value_payments,33.53659125,0,-0.3027,0.8505,0.7895,0.1318,-0.5833 +0xab19,CUS_0x8f8f,August,29,437-93-6445,Journalist,101299.84,8403.653333,7,5,13,2,"Credit-Builder Loan, and Auto Loan",12.4022311,10,11.66,9,_,1473.68,37.37682137,32 Years and 8 Months,NM,113.5430522,94.20362627,High_spent_Medium_value_payments,882.6186548,0,-0.8875,-1.2994,1.2701,-0.1084,0.1669 +0xab25,CUS_0x4b5a,August,24,890-10-1820,Lawyer,24458.57,,4,4,7.288361749,2,"Not Specified, and Personal Loan",8.066094257,8,6.12,2,_,213.33,31.80420443,25 Years and 3 Months,No,29.79043267,599.3844665,Low_spent_Large_value_payments,287.8839785,0,0.5697,1.5048,0.2584,1.6539,-0.0748 +0xab31,CUS_0x10fd,August,29,119-33-7350,Developer,39576.59,3199.049167,0,7,2,4,"Personal Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",4.197944442,4.616200718,4.62,3,_,250.6769911,29.32616604,19 Years and 11 Months,No,124.3108391,104.7631642,High_spent_Medium_value_payments,340.8309134,0,-1.1129,-1.8332,0.8944,-0.2959,-1.4954 +0xab3d,CUS_0x8291,August,39,765-14-8559,Teacher,34826.32,,8,8,31.06745738,5,"Credit-Builder Loan, Not Specified, Mortgage Loan, Personal Loan, and Payday Loan",,17.33567674,20.72,9,_,4824.627303,39.10432927,1 Years and 10 Months,NM,119.9600422,,Low_spent_Large_value_payments,288.5174479,0,2.0301,1.6294,-0.1332,0.8643,-0.3305 +0xab49,CUS_0x4c89,August,39,978-02-8757,Entrepreneur,62805.48,5247.79,6,7,30,5,"Auto Loan, Mortgage Loan, Student Loan, Student Loan, and Debt Consolidation Loan",38.63133729,25.38753378,0.85,15,_,1768.055971,26.38858623,20 Years and 2 Months,Yes,134.0102882,128.467355,High_spent_Medium_value_payments,512.3013568,0,-1.177,-1.0322,1.0466,-0.7942,-2.3708 +0xab55,CUS_0x1934,August,42,170-20-9873,Entrepreneur,9085.09,,10,7,35.06745738,6,"Debt Consolidation Loan, Not Specified, Student Loan, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",47.59440566,26.08136951,20.04,15,Bad,4409.112877,39.02714434,14 Years and 2 Months,Yes,26.33955682,84.60564123,Low_spent_Medium_value_payments,240.3435973,0,-0.5739,-0.5445,0.1488,1.22,-0.1808 +0xab61,CUS_0x1cc0,August,27,957-41-7466,Media_Manager,95189.64,7924.47,5,3,1.288361749,4,"Student Loan, Payday Loan, Not Specified, and Student Loan",0,2,7.74,1,Good,627.3034185,24.031202,25 Years and 5 Months,No,203.6611796,487.6815381,High_spent_Large_value_payments,771.3649895,0,1.6613,0.0968,-0.5168,-0.9756,-0.7265 +0xab6d,CUS_0x2ed7,August,28,852-79-9264,Media_Manager,53460.93,4528.0775,8,10,27,6,"Not Specified, Credit-Builder Loan, Personal Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",25.22652223,18,8.31,7,Bad,1364.03,30.5114087,16 Years and 0 Months,Yes,251.8964338,46.01205238,High_spent_Large_value_payments,394.8992638,0,-1.4057,1.468,-0.9838,1.3645,0.7789 +0xab79,CUS_0x3731,August,35,#F%$D@*&8,Accountant,70137.8,,2,5,9,1,Not Specified,,14.53337383,0.99,4,Good,384.2964951,41.97232961,31 Years and 3 Months,No,48.2456714,73.43054989,High_spent_Large_value_payments,708.5054454,0,-0.7447,0.2513,-1.0202,0.4157,-1.6402 +0xab85,CUS_0x8c47,August,26,152-64-4162,Musician,128283.84,10873.32,1,7,8,4,"Payday Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",6.874887266,4.784196093,1.98,3,Good,1350.341529,43.32885468,19 Years and 3 Months,No,225.920391,345.6059598,!@9#%8,795.8056492,0,0.9412,-0.1767,-0.6011,-0.1577,-0.0131 +0xab91,CUS_0x33da,August,55,911-49-3124,Writer,35184.74,,6,654,13,2,"Home Equity Loan, and Home Equity Loan",,15,19.25,8,Standard,1036.03,41.12019764,26 Years and 0 Months,Yes,34.63006425,107.0195992,Low_spent_Large_value_payments,431.8565033,0,1.8929,1.3828,-1.0299,-0.4797,-0.9096 +0xab9d,CUS_0x3ae3,August,37,#F%$D@*&8,Mechanic,25040.59,,4,4,5709,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",,7,4.97,6,Standard,715.69,29.24702835,32 Years and 4 Months,No,53.57275099,92.75332831,High_spent_Medium_value_payments,331.545504,0,-0.1374,-0.6014,0.1861,1.7903,-0.7188 +0xaba9,CUS_0x5d24,August,23,624-33-5512,Doctor,20485.76,1950.146667,3,2,11,3,"Mortgage Loan, Not Specified, and Mortgage Loan",11.89016885,12,3.65,6,_,1234.170415,25.47388032,24 Years and 6 Months,NM,29.22649302,91.8143342,High_spent_Medium_value_payments,335.9968785,0,-0.4866,1.3111,2.3558,0.8041,0.2309 +0xabb5,CUS_0x3768,August,32,#F%$D@*&8,Journalist,17517.55,,8,7,4,0,,18.44834671,16,10.07,6,Good,1151.9683,25.46858239,15 Years and 8 Months,No,0,117.3958253,Low_spent_Small_value_payments,317.1377536,0,0.8137,-0.0241,-1.3137,-2.2304,0.4767 +0xabc1,CUS_0x4e6e,August,58,758-72-3397,Scientist,65598.44,5593.536667,1,3,10.28836175,0,Credit-Builder Loan,,,6.34,6,Good,264.1873106,26.44249461,33 Years and 2 Months,No,33.10606029,,High_spent_Small_value_payments,551.9788829,0,-1.949,-0.067,-0.8159,0.0444,0.2037 +0xabcd,CUS_0xa0ea,August,18,961-44-0305,_______,10347315,6872.15,8,7,27,9,"Auto Loan, Student Loan, Mortgage Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",36.18489507,22,20.55,13,_,4092.06,31.05535338,10 Years and 9 Months,Yes,317.9919727,704.5429024,Low_spent_Medium_value_payments,,0,1.2603,2.0722,0.4923,-0.3818,-0.9983 +0xabd9,CUS_0x6c2a,August,29,093-93-0051,Lawyer,102942.36,,3,5,18,2,"Student Loan, and Student Loan",18.76226678,13,18.28,5,Standard,76.07,34.7747885,14 Years and 4 Months,Yes,131.6009493,198.1036598,High_spent_Large_value_payments,756.3483909,0,-0.6505,-0.6379,-0.3129,-1.4396,-0.2456 +0xabe5,CUS_0x2a7d,August,32,852-92-6636,_______,15829.875,,4,2,4,1,Student Loan,,2,2.7,7,Good,968.61,35.17152764,20 Years and 3 Months,No,183.5424602,122.7272125,Low_spent_Medium_value_payments,274.7688775,0,-0.4424,-1.309,-0.3099,2.9008,-0.9199 +0xabf1,CUS_0xb97b,August,34,274-10-7458,Teacher,16706.97,1364.2475,6,7,29.06745738,100,"Home Equity Loan, Student Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",34.06895524,18.69114691,9.56,11,_,4656.37008,32.39228152,11 Years and 3 Months,Yes,70.36748553,,High_spent_Large_value_payments,255.6465698,0,0.3927,0.0247,-0.3418,-0.7299,-0.1098 +0xabfd,CUS_0xc0a4,August,50,696-32-3871,Developer,38095.88,2793.925287,1,3,7,0,,4.060936851,5,7.91,4,Good,484.8194927,39.5238515,23 Years and 2 Months,No,434.7313799,185.1444237,High_spent_Small_value_payments,419.7901675,0,0.433,-0.9418,-0.019,-2.6263,-0.6666 +0xac09,CUS_0x33ef,August,35,863-69-9979,Lawyer,82277.8,,10,10,32.88954781,7,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Payday Loan, Not Specified, and Auto Loan",32.84177917,15,17.71,7,Bad,2748.82,25.34526107,4 Years and 9 Months,Yes,1802.648746,140.8700678,High_spent_Medium_value_payments,294.7994379,0,0.0582,0.7771,0.0108,-1.1238,0.2615 +0xac15,CUS_0x8eb2,August,18,035-74-4421,_______,21695.12,,8,6,17,5,"Payday Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",,9,,7,Standard,1120.28,37.19518344,20 Years and 5 Months,Yes,253.3780218,39.38802448,High_spent_Medium_value_payments,294.0277065,0,0.2087,1.2116,1.244,0.3389,-0.1279 +0xac21,CUS_0xd3e,August,18,920-94-1868,Teacher,15971.125,,6,6,5,4,"Personal Loan, Credit-Builder Loan, Personal Loan, and Student Loan",26.52072318,18,11.58,5,Standard,335.98,24.32393596,12 Years and 8 Months,Yes,158.3758561,83.70657993,Low_spent_Small_value_payments,286.0664511,0,-0.5756,-0.2116,-0.0576,-1.538,-0.1996 +0xac2d,CUS_0x896f,August,35,815-92-5350,Architect,14271.95,1433.329167,6,6,17.06745738,2,"Home Equity Loan, and Payday Loan",29.5984631,,9.8,13,Standard,1983.217718,37.72120621,18 Years and 11 Months,Yes,18.56030163,57.91507895,Low_spent_Small_value_payments,330.1372481,0,-1.9758,-0.0622,-2.0794,0.2056,0.6151 +0xac39,CUS_0x965a,August,29,955-52-5577,Scientist,21353.19,1856.4325,4,7,5,0,,27.16773931,20,18.01,4,_,1198.13,40.39232315,33 Years and 6 Months,Yes,0,,High_spent_Medium_value_payments,372.6081188,0,-1.7145,-1.9056,-0.7644,-1.1522,0.003 +0xac45,CUS_0xb79c,August,19,633-61-0456,Architect,72000.7,,6,7,19,4,"Not Specified, Credit-Builder Loan, Home Equity Loan, and Student Loan",14.38799436,12,5.18,6,Standard,63.60377202,35.86446058,25 Years and 4 Months,No,325.0344856,129.2699329,!@9#%8,559.4584235,0,0.4344,0.4676,0.2251,1.4448,1.7546 +0xac51,CUS_0x9379,August,21,405-00-1795,Lawyer,61881.64,5266.803333,6,5,19,7,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",24.3795507,,5.81,8,Bad,4150.170622,38.74753655,1 Years and 3 Months,Yes,247.6331232,296.6235434,Low_spent_Medium_value_payments,262.4236667,0,0.4771,-0.8313,0.2489,0.0546,-1.5573 +0xac5d,CUS_0xb042,August,26,418-71-7160,Journalist,20368494,,5,6,31,5,"Payday Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",,23.30239485,11,6,Standard,1910.352463,24.89885038,5 Years and 11 Months,Yes,56.96234984,118.9592535,Low_spent_Medium_value_payments,250.1041467,0,1.3292,0.3256,0.9348,-0.9538,0.4552 +0xac69,CUS_0x72ce,August,18,062-16-4946,Teacher,16157.79,,6,4,9,7,"Payday Loan, Payday Loan, Payday Loan, Student Loan, Mortgage Loan, Payday Loan, and Personal Loan",,13,13.54,7,_,1665.02,37.1975388,17 Years and 0 Months,Yes,88.83505092,31.15388594,Low_spent_Medium_value_payments,275.9593131,0,-0.4561,1.7114,3.0196,0.2001,2.2134 +0xac75,CUS_0xb52b,August,23,998-53-5707,Manager,20290.79,1477.219538,6,8,23,5,"Student Loan, Personal Loan, Not Specified, Mortgage Loan, and Auto Loan",37.35326018,23,17.81,10,_,2727.69,28.75056575,,Yes,235.0543915,106.8883465,Low_spent_Large_value_payments,252.5268069,0,-0.0658,-1.3491,-0.8399,-1.129,1.3804 +0xac81,CUS_0x641f,August,35,568-09-2850,Writer,106077.6,8744.8,3,5,17,4,"Home Equity Loan, Home Equity Loan, Payday Loan, and Auto Loan",16.84277751,12.79332456,7.79,5,Standard,333.2175085,34.3560979,20 Years and 9 Months,NM,322.3022131,440.1985357,High_spent_Small_value_payments,371.9792512,0,-0.9455,0.9271,-0.9434,-1.4482,-1.8577 +0xac8d,CUS_0x198e,August,26,128-90-0444,Teacher,18140,1375.666667,9,5,33.06745738,6,"Student Loan, Auto Loan, Mortgage Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",,28.06619522,19.63,12,_,4756.735735,26.82539622,12 Years and 11 Months,Yes,87.66264139,,Low_spent_Small_value_payments,231.0184326,0,1.3612,0.6064,2.5316,-0.2754,-0.7411 +0xac99,CUS_0x6c91,August,21,995-34-4031,Architect,67518.81,5365.5675,8,5,8,1,Personal Loan,,17,8.88,5,Standard,264.7,28.53492449,22 Years and 10 Months,No,28.65858051,601.0948487,Low_spent_Small_value_payments,196.8033208,0,0.9075,-0.9921,-0.0893,1.0455,0.3221 +0xaca5,CUS_0x69aa,August,21,375-89-8205,Engineer,18925.44,1330.12,9,9,30.06745738,5,"Home Equity Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Mortgage Loan",,21,6.14,10,_,3080.740954,27.0124126,2 Years and 5 Months,Yes,44.74583078,61.86716759,Low_spent_Large_value_payments,269.6787137,0,-2.38,-3.0536,-0.1476,0.1559,0.5728 +0xacb1,CUS_0xc375,August,51,180-18-8849,Engineer,97577.28,7906.44,3,4,12,2,"Student Loan, and Credit-Builder Loan",3.06968878,7,6.75,5,Good,656.3210415,36.18979395,32 Years and 2 Months,No,92.86650661,148.2263164,High_spent_Medium_value_payments,814.1391603,0,-1.3401,-0.1243,-0.323,-1.567,0.0208 +0xacbd,CUS_0x7c7a,August,29,556-99-5288,Developer,33136.35,2681.3625,0,3,12,100,"Not Specified, and Payday Loan",0,1,2.34,455,Good,4.111457623,35.99152261,33 Years and 4 Months,No,31.92363404,256.1634877,Low_spent_Large_value_payments,275.5606081,0,-1.5622,-0.6662,1.4648,-1.5161,-0.5258 +0xacc9,CUS_0x69cd,August,24,254-46-7586,Engineer,18002.31,1645.1925,5,6,33,3,"Credit-Builder Loan, Auto Loan, and Mortgage Loan",16.1946839,13.03818031,12.7,12,Standard,2822.834015,25.62855116,20 Years and 0 Months,Yes,40.68737019,10000,High_spent_Medium_value_payments,310.9672241,0,-0.2858,0.658,-1.5286,0.2278,-0.0431 +0xacd5,CUS_0xbb73,August,37,685-41-4406,Lawyer,12029.15,,5,4,5,1,Student Loan,17.58139303,14,10.03,5,Standard,377.62,37.78099287,26 Years and 6 Months,No,6.518271071,79.81005643,Low_spent_Small_value_payments,325.0145892,0,-1.1057,-0.2364,-2.0417,-0.6085,-0.3573 +0xace1,CUS_0x7d65,August,43,029-29-2092,Developer,11381.825,,5,5,15,3,"Credit-Builder Loan, Mortgage Loan, and Not Specified",,17,11.06,4,Standard,256.61,34.49565756,26 Years and 5 Months,NM,14.88724078,83.97569575,Low_spent_Small_value_payments,291.4856051,0,0.1805,-2.0622,0.6057,-0.4571,0.5485 +0xaced,CUS_0x5dfa,August,45,471-52-7562,Entrepreneur,23834698,684.1579167,7,5,17,6,"Not Specified, Debt Consolidation Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,25,12.64,13,_,3766.44,40.24204335,11 Years and 6 Months,Yes,23.70618204,57.26212836,Low_spent_Medium_value_payments,267.4474813,0,0.4166,0.1911,0.3366,0.5731,-0.8188 +0xacf9,CUS_0x860,August,18,801-07-1693,Manager,24946.81,,8,4,13,3,"Personal Loan, Personal Loan, and Payday Loan",,17,11.71,6,Standard,72.27,39.35436165,12 Years and 9 Months,Yes,36.26961342,,High_spent_Medium_value_payments,348.3416295,0,-0.7469,-0.2936,-0.4579,-0.2636,0.4641 +0xad05,CUS_0xa19,August,44,308-90-5833,Entrepreneur,14773.38,,8,9,19.95700519,100,"Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Student Loan, and Personal Loan",28.81047094,19,4.34,10,Bad,2992.150954,24.88256171,4 Years and 9 Months,Yes,1366.784026,,Low_spent_Large_value_payments,220.6851832,0,0.822,0.0194,-1.6489,-0.2406,0.2393 +0xad11,CUS_0xbcca,August,40,844-59-1910,Writer,33262.2,,6,5,18,3,"Personal Loan, Payday Loan, and Not Specified",14.34345491,12,18.33,2,Standard,696.05,36.304856,29 Years and 10 Months,Yes,43.3251532,10000,Low_spent_Small_value_payments,245.9199786,0,-0.7903,-0.5979,0.7178,0.3011,0.2111 +0xad1d,CUS_0x67aa,August,22,517-97-5096,Doctor,45594.72,,7,4,18,6,"Personal Loan, Credit-Builder Loan, Personal Loan, Not Specified, Payday Loan, and Payday Loan",29.23805598,22,9.47,8,Standard,1256.49,28.62402048,16 Years and 3 Months,Yes,182.1071856,330.6920328,Low_spent_Medium_value_payments,148.0567816,0,0.1281,-1.1071,-1.0252,0.0309,-0.1146 +0xad29,CUS_0x5d01,August,50,279-85-1772,Engineer,25498.21,,4,3,12,100,Student Loan,9.877691553,8,7.85,3,Good,573.77,30.60639993,30 Years and 5 Months,NM,19.44372192,,High_spent_Small_value_payments,350.8963643,0,1.1055,0.5546,-0.4231,-0.8708,0.1752 +0xad35,CUS_0x3a02,August,35,243-14-8028,Engineer,14185.73,,0,7,11,3,"Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",0.601829311,4,-0.26,4,Good,717.0704854,25.46052374,31 Years and 3 Months,No,21.77352915,66.52550317,!@9#%8,306.4905149,0,-0.1229,-0.8707,0.0325,1.0827,-0.6298 +0xad41,CUS_0xae52,August,26,200-26-8708,Architect,17001.68,,10,7,19.06745738,6,"Debt Consolidation Loan, Payday Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Debt Consolidation Loan",,,8.19,11,Bad,4700.888237,40.06901416,13 Years and 0 Months,Yes,53.39197139,115.5318788,Low_spent_Small_value_payments,242.9365285,0,1.1203,0.6211,-0.6608,2.8978,-0.5631 +0xad4d,CUS_0x3172,August,31,570-35-6060,Lawyer,117724.16,9778.346667,1,5,10,2,"Auto Loan, and Home Equity Loan",11.87291413,11,10.26,5,Good,560.8,32.26778691,16 Years and 4 Months,No,156.3748762,218.6967135,!@9#%8,852.7630769,0,1.512,-0.4504,0.5695,0.5506,-0.636 +0xad59,CUS_0xc5d3,August,24,299-84-9786,Entrepreneur,119149.92,,4,4,10,3,"Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",16.00528509,10,2.3,1,Good,982.81,29.11738555,23 Years and 2 Months,No,246.0769175,304.6646181,High_spent_Medium_value_payments,706.5744643,0,2.3073,-0.134,-1.0391,0.2182,0.5779 +0xad65,CUS_0x4721,August,37,194-70-6848,Journalist,38392.96,3031.413333,8,10,26,2,"Personal Loan, and Student Loan",,20,7.88,10,Bad,1305.12,25.55260358,16 Years and 0 Months,Yes,46.91827939,168.9115937,High_spent_Small_value_payments,347.3114603,0,0.1108,1.4502,1.0617,-1.2012,-1.2455 +0xad71,CUS_0x5e3c,August,34,150-04-0811,_______,36607.63,,0,6,5,2,"Not Specified, and Credit-Builder Loan",4.085976083,4.644083467,0.98,7,Good,904.102863,33.07283818,29 Years and 6 Months,No,45.41123187,294.825723,Low_spent_Small_value_payments,248.4266284,0,0.1926,1.1828,1.1733,0.835,-0.4306 +0xad7d,CUS_0x352f,August,18,333-78-0103,Teacher,14015.32,1238.943333,8,3,11,6,"Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, Student Loan, and Mortgage Loan",26.56734295,20,23.01,7,_,1852.75,33.44427297,10 Years and 5 Months,Yes,54.00190509,42.05815899,Low_spent_Large_value_payments,297.8342693,0,-0.0567,1.5312,0.2619,-0.8286,-1.0802 +0xad89,CUS_0x318e,August,33,850-20-0083,Doctor,17488.905,,5,6,20,3,"Student Loan, Personal Loan, and Home Equity Loan",10.4314608,7,8.64,9,Standard,1169.13,24.07531091,25 Years and 0 Months,No,31.87466151,73.6546541,Low_spent_Small_value_payments,348.8115594,0,-1.3513,-0.1617,-1.0989,1.0173,-0.9079 +0xad95,CUS_0xb676,August,39,117-46-6530,Accountant,11562.215,,4,3,5,1,Mortgage Loan,,20,8.52,2,Standard,537.45,38.31478932,21 Years and 8 Months,Yes,4.916138542,,Low_spent_Small_value_payments,349.7559872,0,-0.5272,0.4989,-0.9264,-0.6406,1.0479 +0xada1,CUS_0x8b6f,August,53,565-35-9153,Lawyer,126982.68,9032.198037,0,6,1,0,,,9,7.26,4,Good,1240.731586,35.02575784,25 Years and 6 Months,No,1511.691963,333.3421084,High_spent_Medium_value_payments,1008.509091,0,1.2508,0.5374,0.9064,-1.6029,1.6365 +0xadad,CUS_0xb64a,August,38,408-06-4944,Engineer,104168.22,,3,5,14,0,,23.08892919,15,15.97,7,_,39.68,37.90603838,,No,0,310.7200033,High_spent_Medium_value_payments,804.8484967,0,0.1405,-0.8899,-0.2992,3.1847,0.9871 +0xadb9,CUS_0x8204,August,19,#F%$D@*&8,Developer,32414.96,2826.246667,6,5,16.06745738,6,"Mortgage Loan, Mortgage Loan, Student Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",25.73440393,15,9.06,16,_,2352.800954,28.51479308,14 Years and 4 Months,Yes,81.55170275,,Low_spent_Small_value_payments,350.1909379,0,0.1564,0.6472,-0.5677,0.8021,-1.5649 +0xadc5,CUS_0xc1fe,August,18,567-38-7886,Developer,39215.88,3419.99,5,6,13,6,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",27.1878475,21.69898917,23.1,5,Standard,2073.567128,30.74518569,,Yes,159.1221442,112.2139682,High_spent_Medium_value_payments,320.6628876,0,-0.3853,-2.5054,-0.2683,1.8322,-1.8841 +0xadd1,CUS_0xb48f,August,38,138-75-8407,Architect,100148.8,8175.733333,6,6,18,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Mortgage Loan",20.16070516,14,2.13,11,Standard,337.84,30.81128767,12 Years and 2 Months,Yes,194.6703165,,Low_spent_Medium_value_payments,620.6049495,0,-1.1852,-2.3895,-0.2272,-2.3311,-0.4955 +0xaddd,CUS_0xb8e5,August,18,940-35-3399,Teacher,84989.46,7314.455,7,7,6,0,,14.22791789,11,11.58,10,Standard,416.47,30.28688501,31 Years and 9 Months,Yes,12643,10000,High_spent_Medium_value_payments,838.4289113,0,1.4169,-0.3659,1.7545,-0.0891,0.8272 +0xade9,CUS_0x4c5c,August,44,636-39-1081,Doctor,8766.58,830.5483333,8,10,33.95700519,6,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Student Loan",,20,29.16,13,Bad,4828.400954,38.99973982,1 Years and 8 Months,Yes,1348.146975,108.0044762,Low_spent_Small_value_payments,195.8530129,0,0.8677,-0.0383,-1.398,0.9493,0.7238 +0xadf5,CUS_0xfa4,August,40,380-95-6875,Manager,15035.19,1214.9325,9,1180,1642.067457,5,"Not Specified, Payday Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",,21.60026448,10.98,13,Bad,1791.368405,24.53584584,12 Years and 11 Months,Yes,39.94969316,41.73804952,Low_spent_Small_value_payments,303.0852194,0,0.302,0.1491,0.8477,0.1498,1.3605 +0xae01,CUS_0x8ede,August,18,316-99-0677,Doctor,8359.475,,8,9,22.95700519,9,"Mortgage Loan, Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Not Specified",43.66754986,28.89910332,,1940,Bad,2612.677763,25.21653261,16 Years and 8 Months,Yes,1386.010705,41.79582755,Low_spent_Small_value_payments,216.0053903,0,-0.2054,1.6929,1.1447,1.369,-0.2492 +0xae0d,CUS_0xadeb,August,18,118-18-1829,Manager,41417.04,,7,5,18,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",,18,7.13,6,Standard,1486.49,34.5729508,14 Years and 9 Months,Yes,122.5038835,229.5523901,High_spent_Small_value_payments,251.8857264,0,-1.1201,-1.2185,-0.0091,-0.556,1.3858 +0xae19,CUS_0x41b2,August,32,624-65-3481,_______,74142.96,5909.58,0,2,11.28836175,2,"Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,0,2.45,4,Good,866.7656462,26.40802592,25 Years and 8 Months,No,164.8944435,,High_spent_Small_value_payments,520.7094356,0,0.8514,0.173,1.0318,0.8821,2.7189 +0xae25,CUS_0xb33a,August,19,005-38-9116,Teacher,16360.215,1410.35125,3,6,18,4,"Auto Loan, Credit-Builder Loan, Not Specified, and Not Specified",12.8128749,9,15.52,9,Standard,453.29,39.51115754,,Yes,38.79655821,96.6279487,Low_spent_Medium_value_payments,285.6106181,0,0.8305,-0.5241,-0.7846,0.6862,0.1424 +0xae31,CUS_0xad0e,August,26,739-57-5002,Doctor,20252.78,,8,8,28.88954781,7,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Debt Consolidation Loan",43.06149322,22.38252575,27.51,17,Bad,5233.940685,36.68431924,13 Years and 4 Months,Yes,1434.67026,,Low_spent_Medium_value_payments,231.826517,0,-0.23,-1.0927,1.5005,2.6107,-1.2091 +0xae3d,CUS_0x2c42,August,52,826-94-0529,Teacher,38147.38,,4,5,7,3,"Auto Loan, Home Equity Loan, and Auto Loan",12.84381714,8,16.99,1,_,857.12,33.49634108,21 Years and 11 Months,Yes,92.35285095,,Low_spent_Large_value_payments,198.3140134,0,-0.095,-1.0119,-1.202,-0.5945,-0.8237 +0xae49,CUS_0x1591,August,20,352-06-6563,Writer,150746.88,12589.24,0,5,10.28836175,0,,0,4,1.31,3,Good,696.58,35.98027587,30 Years and 2 Months,No,0,1523.293936,Low_spent_Medium_value_payments,435.5675253,0,0.3471,0.216,0.2851,-0.7634,-3.0792 +0xae55,CUS_0x4797,August,51,278-73-1001,Media_Manager,114998.64,,4,4,8.288361749,0,,,11,7.87,3,Good,325.3170515,35.48173619,18 Years and 9 Months,No,0,,Low_spent_Medium_value_payments,344.0186453,0,-0.0611,-0.5284,1.1996,1.2166,-1.8102 +0xae61,CUS_0x5bf2,August,22,#F%$D@*&8,_______,9945.42,800.785,4,7,15,5,"Not Specified, Student Loan, Not Specified, Personal Loan, and Auto Loan",,2590,18.6,12,Standard,1432.28,36.31015715,,Yes,32.85335322,13.0610355,High_spent_Large_value_payments,274.1641113,0,-0.5952,0.3236,0.3109,0.904,0.8315 +0xae6d,CUS_0x5ebe,August,50,889-60-8908,Mechanic,19731.16,1887.263333,7,4,12,4,"Student Loan, Auto Loan, Debt Consolidation Loan, and Home Equity Loan",16.15045612,15,17.01,3,Standard,341.3224565,40.16551442,19 Years and 5 Months,Yes,34.15673384,49.83624215,!@9#%8,370.3002616,0,-1.5654,0.1946,-0.8601,-0.2855,-0.7444 +0xae79,CUS_0x4b30,August,40,291-04-0774,Architect,72608.32,5855.693333,5,6,8.288361749,0,Payday Loan,,,7.78,3,Good,369.1063399,27.57787542,25 Years and 4 Months,No,43.5696154,606.2768471,High_spent_Medium_value_payments,605.6603318,0,0.2466,-0.7337,-2.3173,-0.0542,1.127 +0xae85,CUS_0x1f87,August,30,835-81-4593,Journalist,29111.07,,8,6,11,2,"Debt Consolidation Loan, and Mortgage Loan",24.18090241,18,13.43,10,Standard,279.95,25.34140881,10 Years and 10 Months,Yes,29.9419307,73.12210255,High_spent_Medium_value_payments,397.1282167,0,1.0215,-1.5335,-1.5318,-0.493,-0.5016 +0xae91,CUS_0x3ea3,August,42,717-18-8612,Teacher,59924.96,4816.746667,6,10,23.95700519,8,"Credit-Builder Loan, Auto Loan, Auto Loan, Student Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",27.82658976,,28.8,13,_,3416.748041,33.24437892,5 Years and 3 Months,Yes,1708.354685,,!@9#%8,179.3470246,0,0.4245,1.6601,-0.7183,1.0906,-1.2067 +0xae9d,CUS_0xdd9,August,56,107-35-7882,Musician,70978.78,5792.898333,0,3,2.288361749,2,"Payday Loan, Payday Loan, and Mortgage Loan",10.93686712,12,6.13,3,_,873.521107,28.39308306,33 Years and 4 Months,No,143.8699706,,High_spent_Small_value_payments,472.0540201,0,-0.1897,0.7208,1.1743,1.0959,-1.3296 +0xaea9,CUS_0x6069,August,18,294-99-9171,_______,31327.28,2427.606667,9,7,19,3,"Not Specified, Home Equity Loan, and Home Equity Loan",30.02507766,18,13.97,6,Standard,1819.09,29.40009195,13 Years and 11 Months,Yes,65.64066392,165.3742467,Low_spent_Small_value_payments,301.745756,0,0.1879,0.7972,0.8126,0.1578,-0.6205 +0xaeb5,CUS_0x57a,August,48,300-81-0244,Teacher,126530.4,10535.2,1,5,4.288361749,2,"Credit-Builder Loan, and Auto Loan",,4,3.54,8,Good,825.1225978,37.71715622,28 Years and 4 Months,NM,140.4924024,11435.61167,High_spent_Large_value_payments,930.4965591,0,-0.1789,-0.1787,0.6593,0.2066,0.5937 +0xaec1,CUS_0x23c1,August,27,338-33-2496,Media_Manager,113207.36,9137.946667,1,5,2.288361749,2,"Mortgage Loan, Not Specified, and Student Loan",0.864824832,4,7.96,4,_,1139.427589,33.31408063,30 Years and 0 Months,NM,221.7456272,518.798053,High_spent_Large_value_payments,844.5918269,0,-1.2105,0.2197,-0.0031,-0.0892,-0.2643 +0xaecd,CUS_0x4842,August,37,748-99-7670,Scientist,43287.85,3769.320833,4,4,5,1,Personal Loan,0,2,1.13,5,Good,1182.481832,28.12553259,20 Years and 4 Months,No,33.86127275,11498.26159,Low_spent_Large_value_payments,308.7871254,0,-1.7073,1.1576,-0.3645,-1.8057,-0.114 +0xaed9,CUS_0xc4a7,August,36,009-76-0533,Accountant,104045.91,,5,7,9,2,"Student Loan, and Mortgage Loan",,9,18.61,6,_,1.33,33.96378988,20 Years and 0 Months,Yes,93.70923447,139.8808532,High_spent_Medium_value_payments,888.2591624,0,-0.7481,-0.6075,-0.3547,-0.7629,0.6161 +0xaee5,CUS_0x59f1,August,30,529-44-0590,Engineer,114450.72,9430.56,7,3,5,0,,26.90462823,19,1.61,2,Standard,739.1275135,25.22572603,28 Years and 9 Months,No,0,945.6824042,Low_spent_Medium_value_payments,395.878346,0,1.1708,-1.1485,0.7462,0.7052,0.6721 +0xaef1,CUS_0x7820,August,37,301-59-7638,Engineer,34974.3,2986.525,6,9,33.88954781,6,"Home Equity Loan, Mortgage Loan, Personal Loan, Not Specified, Home Equity Loan, and Home Equity Loan",26.58306687,21,16.49,10,_,4624.51,28.13726003,2 Years and 4 Months,Yes,1457.742508,110.3718096,High_spent_Medium_value_payments,286.2081013,0,-0.2173,-0.7223,2.8798,0.5668,-0.5021 +0xaefd,CUS_0x159f,August,34,554-38-9690,Engineer,26625.58,,6,6,9,6,"Not Specified, Not Specified, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,10,18.59,4,Standard,1186.471246,40.83997776,11 Years and 0 Months,Yes,122.6345201,106.8557986,High_spent_Small_value_payments,260.4287552,0,-1.1242,-0.7041,0.8978,1.0793,0.509 +0xaf09,CUS_0x5268,August,55,300-94-2533,Entrepreneur,21818.285,,2,2,12,2,"Student Loan, and Student Loan",2.892003089,6,7.53,3,Good,818.31,25.63188672,25 Years and 2 Months,No,30.13313322,36.23345015,High_spent_Large_value_payments,361.0524583,0,0.6203,1.6418,-0.5294,0.4646,0.8423 +0xaf15,CUS_0x4d92,August,32,957-12-0539,Entrepreneur,56795.28,4303.629378,6,7,8,4,"Personal Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",10.53967742,8,14.31,10,Standard,1248.287996,28.17860673,22 Years and 11 Months,NM,365.2066651,121.4418529,High_spent_Medium_value_payments,444.8864999,0,-0.2494,1.1646,-0.0486,-0.5886,-0.5668 +0xaf21,CUS_0x20f1,August,26,741-54-1843,Journalist,68585.44,,7,5,34,5,"Home Equity Loan, Auto Loan, Student Loan, Auto Loan, and Student Loan",,24.72069236,19.2,11,Bad,2670.272501,23.32166965,10 Years and 0 Months,Yes,164.1164087,739.1053481,Low_spent_Small_value_payments,,0,0.242,0.1416,-0.9572,0.6023,-0.3751 +0xaf2d,CUS_0x3336,August,52,190-33-8702,Manager,29648.76,2740.73,0,2,10,0,,1.019601016,4,4.85,8,Good,963.1099957,25.67575217,,No,0,181.9946046,Low_spent_Medium_value_payments,397.8779004,0,-2.0956,-1.9314,-0.0154,0.6953,0.1438 +0xaf39,CUS_0x20da,August,33,090-34-7836,Mechanic,102447.39,,5,4,3.288361749,0,,8.23986969,9,8.54,5,_,190.48,28.6326705,33 Years and 3 Months,No,0,618.5754388,High_spent_Large_value_payments,876.0902722,0,-0.375,-1.0793,-0.9634,-0.0612,0.1821 +0xaf45,CUS_0x133e,August,41,914-49-0079,Entrepreneur,16626.25,1096.520833,0,2,5,0,,6.150124398,7,6.39,0,Good,989.0875465,25.3062199,22 Years and 10 Months,No,0,60.14876784,Low_spent_Small_value_payments,346.2658914,0,0.3425,-0.3445,-0.3381,0.1137,0.8589 +0xaf51,CUS_0xabb5,August,21,229-98-1275,Architect,85163.31,6902.9425,5,3,5.288361749,4,"Debt Consolidation Loan, Student Loan, Auto Loan, and Payday Loan",,18,-4.77,7,Standard,64.87,29.91302239,21 Years and 6 Months,No,271.9245644,,!@9#%8,424.5372034,0,0.0433,1.0716,-0.678,-1.7472,-0.8866 +0xaf5d,CUS_0x9404,August,26,461-85-8005,Engineer,105453.39,8759.7825,6,5,18.28836175,2,"Mortgage Loan, Not Specified, and Not Specified",19.83153707,18,8.19,0,Standard,831.24,25.51333359,19 Years and 4 Months,No,260.0720856,745.462981,High_spent_Medium_value_payments,540.3806445,0,-0.6038,-0.1463,1.2784,1.1713,0.0718 +0xaf69,CUS_0x5a90,August,52,264-53-1943,Engineer,29728.31,,3,4,6,2,"Student Loan, and Student Loan",0.24429647,2,4.81,7,Good,829.0801569,37.95895023,32 Years and 3 Months,No,34.4964452,297.2934504,Low_spent_Small_value_payments,241.9259073,0,-0.27,0.1243,-1.3681,1.9072,-1.1546 +0xaf75,CUS_0x3929,August,31,255-57-5980,Scientist,16164.77,1406.064167,6,3,8,4,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",21.67086472,,15.72,6,Standard,179.19,37.2077986,20 Years and 6 Months,Yes,53.45154389,31.09501283,!@9#%8,306.0598599,0,-0.3748,-0.4784,0.5268,-0.9097,-2.0724 +0xaf81,CUS_0x8062,August,80,#F%$D@*&8,Lawyer,86914.41,6957.8675,8,5,16,3,"Personal Loan, Mortgage Loan, and Auto Loan",11.45443611,9,,7,Standard,1084.06,34.16312373,32 Years and 0 Months,NM,142.5317779,681.1686331,Low_spent_Medium_value_payments,152.086339,0,-0.1855,1.3792,0.1472,0.0054,1.3579 +0xaf8d,CUS_0x23ad,August,46,993-95-0461,_______,42072.75,3263.0625,3,6,9,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",3.195957362,4,10.97,6,Good,689.65,38.16731369,31 Years and 2 Months,No,87.08162159,59.43630442,High_spent_Large_value_payments,419.788324,0,-0.1605,-0.6881,-0.6209,1.8995,0.0944 +0xaf99,CUS_0x4d25,August,41,303-85-3647,Engineer,118845.76,9877.813333,0,7,10,0,,1.800607308,6,9.38,6,Good,92.23701947,34.95964008,31 Years and 8 Months,No,0,242.7927679,High_spent_Large_value_payments,1017.286054,0,0.7165,0.5395,1.8384,0.0294,-0.8536 +0xafa5,CUS_0xf8f,August,44,975-64-8693,Scientist,68236.12,5542.343333,7,10,34,5,"Student Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",23.88194239,13.92278926,15.28,9,Standard,2776.702621,28.79349356,16 Years and 5 Months,Yes,232.5557584,490.0839167,!@9#%8,101.5946583,0,-0.9825,0.5343,-0.3544,-0.7339,-2.7553 +0xafb1,CUS_0x4498,August,44,#F%$D@*&8,Media_Manager,132856.92,,3,5,8,0,,22.00644954,14,10.22,3,_,998.5381482,36.98992164,19 Years and 5 Months,NM,11711,,Low_spent_Small_value_payments,188.186445,0,-0.4983,0.1644,0.3712,2.3781,-0.5212 +0xafbd,CUS_0x24d9,August,18,522-84-7788,Architect,108884.76,8805.73,8,4,16,6,"Personal Loan, Mortgage Loan, Mortgage Loan, Not Specified, Payday Loan, and Not Specified",16.44796643,11,6.48,9,_,769.81,37.99606971,5 Years and 10 Months,Yes,352.3227907,256.7802281,High_spent_Medium_value_payments,521.4699812,0,-0.9145,-1.5426,0.1303,2.1415,0.1946 +0xafc9,CUS_0x1109,August,43,410-39-6091,Lawyer,76284.72,6451.06,6,10,18.88954781,6,"Home Equity Loan, Credit-Builder Loan, Auto Loan, Not Specified, Payday Loan, and Mortgage Loan",20.6139303,14.06605896,6.69,11,Standard,2235.530672,29.36443367,,Yes,1546.442446,,High_spent_Medium_value_payments,490.6840032,0,0.0651,-0.0415,1.5197,0.24,0.4432 +0xafd5,CUS_0x3974,August,26,420-10-9235,Teacher,8007.85,897.3208333,8,7,25.06745738,7,"Mortgage Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",35.99380859,19,29.98,12,Bad,3138.090954,26.85805153,6 Years and 6 Months,Yes,36.22285933,45.38950219,Low_spent_Medium_value_payments,261.3994339,0,-0.4124,-0.2532,1.3406,0.3351,1.0007 +0xafe1,CUS_0x5c89,August,18,#F%$D@*&8,_______,8435.625,714.96875,7,6,17.06745738,4,"Mortgage Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",26.14971007,17.02249236,16.54,10,Standard,1977.858653,32.42790836,9 Years and 4 Months,Yes,15.22934287,46.70774049,Low_spent_Small_value_payments,272.8395037,0,-0.8429,0.5314,-0.1583,-0.4222,-0.273 +0xafed,CUS_0x8a62,August,39,024-46-1152,Developer,64427.3,,3,4,5,2,"Debt Consolidation Loan, and Personal Loan",,5,7.21,6,Good,1147.602497,31.09664263,16 Years and 2 Months,No,104.4603417,467.4318628,Low_spent_Large_value_payments,256.3008294,0,0.4585,0.222,0.0388,-1.3457,-0.0637 +0xaff9,CUS_0x42bc,August,32,440-19-7005,Developer,11533.485,786.12375,4,3,20,7,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Personal Loan, Personal Loan, and Home Equity Loan",,14,18.29,5,Standard,1278.39,38.91584844,16 Years and 0 Months,Yes,44.6185557,,High_spent_Small_value_payments,250.5496891,0,-0.2988,-1.6516,0.5217,-0.5296,-0.2954 +0xb005,CUS_0x7025,August,34,198-39-8199,Writer,20945.23,1552.435833,1240,7,20,9,"Credit-Builder Loan, Home Equity Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",,30.10109648,23.42,13,_,5084.556357,27.83146127,2 Years and 10 Months,NM,151.2004602,116.9846517,Low_spent_Medium_value_payments,167.0584714,0,0.8578,-1.3179,-0.0105,0.6496,-0.1041 +0xb011,CUS_0xa7e1,August,23,894-16-1581,Musician,44006.56,3432.213333,3,3,6.288361749,2,"Payday Loan, and Student Loan",0,2,3.96,3,_,186.6,24.67747677,,No,36.80825112,723.7087388,Low_spent_Small_value_payments,292.6418045,0,0.9022,-1.6,-0.0395,1.3863,-0.9499 +0xb01d,CUS_0x3763,August,52,862-21-8256,Journalist,32871.96,,5,6,14,2,"Auto Loan, and Personal Loan",,10,9.59,0,Standard,748.45,26.51501032,20 Years and 0 Months,No,31.64996493,181.2022705,Low_spent_Medium_value_payments,329.2807646,0,1.5369,-1.2693,0.1943,0.588,-0.8278 +0xb029,CUS_0x568,August,39,487-77-3167,Journalist,114867.4,9805.283333,8,3,12.28836175,0,Payday Loan,13.12455751,11.71420206,15.16,1,Standard,797.3620124,31.54242094,16 Years and 11 Months,No,95.21677348,511.8701491,High_spent_Large_value_payments,1033.378872,0,-1.2043,-1.5161,0.1647,-0.1783,2.3498 +0xb035,CUS_0x6968,August,52,323-77-7209,Teacher,46683.12,,7,7,19,1,Credit-Builder Loan,29.01435943,22,11.72,0,Standard,230.77,27.62583614,32 Years and 11 Months,Yes,27.72498144,156.2835743,High_spent_Medium_value_payments,446.6174443,0,-0.4433,0.083,-0.586,-0.1274,-1.3319 +0xb041,CUS_0x6698,August,28,164-76-2281,_______,168878.08,,5,5,6,1,Credit-Builder Loan,6.694736026,5,4.7,6,_,700.71,38.52621425,28 Years and 5 Months,NM,98.71209749,,High_spent_Medium_value_payments,1135.455138,0,-1.9071,-0.3782,-0.1887,0.2519,-0.674 +0xb04d,CUS_0xc0f3,August,42,734-44-8987,Musician,90438.88,,8,6,10,3,"Payday Loan, Debt Consolidation Loan, and Student Loan",,,11.89,0,Standard,898.09,33.17125091,33 Years and 4 Months,Yes,176.2534284,90.73868974,High_spent_Large_value_payments,717.0652152,0,-1.7562,-0.3975,1.7918,-0.0745,-0.4258 +0xb059,CUS_0x6b0b,August,27,206-94-5126,Doctor,20958.75,,9,9,22.06745738,8,"Home Equity Loan, Home Equity Loan, Personal Loan, Personal Loan, Student Loan, Mortgage Loan, Student Loan, and Mortgage Loan",58.59925478,30.09586847,1.67,11,_,1713.279923,35.09421341,18 Years and 8 Months,Yes,130.528737,,Low_spent_Large_value_payments,188.3340503,0,0.7472,0.6672,2.4299,-3.3724,0.6743 +0xb065,CUS_0x6a7,August,44,358-96-4237,Lawyer,50043.26,4014.271667,5,5,9,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",19.88908422,14,4.39,13,Standard,1208.82,30.29775996,7 Years and 11 Months,Yes,142.2408761,53.62576316,High_spent_Large_value_payments,445.5605274,0,0.8913,1.6728,0.76,0.0438,-0.4397 +0xb071,CUS_0x1ac0,August,37,728-34-9997,Doctor,7011.685,680.3070833,8,9,31,100,"Personal Loan, Auto Loan, Not Specified, and Student Loan",30.77812384,22,1.83,10,_,2425.02,36.49948716,17 Years and 9 Months,NM,18.872923,66.32463808,Low_spent_Small_value_payments,272.8331472,0,0.3635,1.4273,-1.9265,-0.1349,-1.0027 +0xb07d,CUS_0x7869,August,80,926-77-2617,Engineer,59710.88,,4,5,11,1,Personal Loan,16.99656195,,6.02,1,Standard,36.28,36.4764137,22 Years and 0 Months,No,41.77648534,396.4656201,Low_spent_Medium_value_payments,341.3485613,0,-0.5412,-2.0021,0.0716,-0.5876,-1.0932 +0xb089,CUS_0x544d,August,29,590-20-7080,Scientist,7139.64,451.97,10,8,31.95700519,6,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",,,4.46,9,_,2075.70771,29.65011626,19 Years and 0 Months,Yes,1345.078746,25.54760636,Low_spent_Small_value_payments,243.5202786,0,0.5528,0.8424,0.8114,1.0167,-0.5525 +0xb095,CUS_0x705e,August,27,958-88-2066,Entrepreneur,17621.705,,8,7,7,1,Debt Consolidation Loan,16.43320501,15,11.82,8,Standard,776.59,30.57047057,,Yes,10.38246434,125.5259394,Low_spent_Small_value_payments,287.6391379,0,0.62,-0.8076,0.8333,-0.7397,1.7497 +0xb0a1,CUS_0xbbb5,August,31,214-54-8925,Entrepreneur,35989.5,3039.125,7,6,26,7,"Mortgage Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Not Specified",17.8810085,,8.66,11,Standard,1754.71,31.67893359,9 Years and 2 Months,Yes,184.385193,49.98983583,High_spent_Large_value_payments,309.5374711,0,-0.7275,-1.2458,2.8963,0.0955,1.5567 +0xb0ad,CUS_0x8225,August,33,355-03-6809,Doctor,26992.21,2181.350833,8,4,3,3,"Auto Loan, Payday Loan, and Payday Loan",19.97685893,,10.11,4,Good,865.86,29.10822242,25 Years and 6 Months,No,45.0003195,52.25923721,High_spent_Medium_value_payments,370.8755266,0,0.3145,2.2682,-0.2434,0.682,0.239 +0xb0b9,CUS_0x9553,August,46,848-79-4549,Media_Manager,38797.22,3281.101667,6,4,5,3,"Home Equity Loan, Auto Loan, and Auto Loan",20.01561937,15,4.95,3,Standard,465.86,31.72435954,20 Years and 2 Months,No,62.08426992,145.1917549,Low_spent_Medium_value_payments,400.8341419,0,-0.7413,-1.177,1.0107,-0.5924,1.4305 +0xb0c5,CUS_0xc4ee,August,42,224-66-9981,Architect,110529.93,9049.8275,5,6,0.288361749,0,,11.2440914,11,2.19,0,Good,731.46,32.17044629,16 Years and 5 Months,No,0,808.0088229,!@9#%8,786.9113881,0,-1.0986,0.126,-0.5276,0.1028,0.8328 +0xb0d1,CUS_0x7258,August,19,942-66-7166,Entrepreneur,58982.64,,8,9,29,5,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,27.90843535,9.76,16,Bad,2703.274718,28.95261163,6 Years and 6 Months,NM,222.1754761,232.7747556,High_spent_Small_value_payments,273.5717683,0,-1.1548,1.3618,0.4861,-0.2027,-0.0904 +0xb0dd,CUS_0x64c6,August,27,995-72-8382,Scientist,97868.73,8272.7275,6,5,10.28836175,2,"Not Specified, and Student Loan",19.12229069,17,4.68,8,Good,355.24,28.57476268,32 Years and 9 Months,No,156.0553592,1220.193049,Low_spent_Medium_value_payments,150.9618032,0,-0.0188,2.45,0.2562,0.6657,0.5956 +0xb0e9,CUS_0x4d41,August,39,097-33-1673,Engineer,14293.9,,10,9,28.06745738,5,"Credit-Builder Loan, Personal Loan, Not Specified, Personal Loan, and Mortgage Loan",,10.91747181,7.14,8,Standard,3014.485716,37.94159133,,Yes,43.26439993,182.1545413,Low_spent_Small_value_payments,177.2766042,0,0.7223,1.2627,0.5808,0.6061,-1.1198 +0xb0f5,CUS_0xb2cc,August,25,037-63-8524,Accountant,14672.87,,9,10,29.06745738,4,"Payday Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",24.26018946,14.15000343,16.81,14,_,2607.127027,26.06184956,13 Years and 11 Months,Yes,48.66960493,72.59753865,Low_spent_Small_value_payments,270.1864851,0,0.5924,-0.4701,0.2396,0.3276,-0.1276 +0xb101,CUS_0x8acf,August,36,075-04-7112,Scientist,163255.64,13397.63667,0,4,11.28836175,2,"Home Equity Loan, Home Equity Loan, and Auto Loan",5.597808477,8,11.22,3,Good,370.6641069,24.14517774,24 Years and 5 Months,No,325.049504,1966.23086,Low_spent_Medium_value_payments,,0,-2.9891,-0.0649,1.3357,0.7725,0.7269 +0xb10d,CUS_0x6c17,August,23,536-43-4104,Developer,124955.08,,3,6,15,3,"Credit-Builder Loan, Not Specified, and Auto Loan",20.34712664,16,6.55,2,Standard,826.98,38.89562809,33 Years and 5 Months,Yes,205.8336847,211.2015625,High_spent_Medium_value_payments,856.3570862,0,0.7022,1.9503,-0.4665,1.3923,0.1246 +0xb119,CUS_0x9c3c,August,33,196-39-2777,Accountant,85543,,5,8,2,4,"Credit-Builder Loan, Student Loan, Student Loan, and Home Equity Loan",8.98621901,9.542691413,8.44,3,Good,1165.368927,40.05426176,28 Years and 11 Months,No,269.2390404,107.8345666,!@9#%8,545.8847263,0,0.8366,-1.5614,-1.4942,0.8755,1.2917 +0xb125,CUS_0xb936,August,29,466-13-8474,Writer,34898.52,,3,5,15,6,"Auto Loan, Personal Loan, Student Loan, Auto Loan, Personal Loan, and Not Specified",24.72429569,19.19574009,10.83,4,Standard,1746.517688,26.74350836,14 Years and 11 Months,Yes,91.84864713,,High_spent_Small_value_payments,345.2584449,0,0.8363,0.4631,2.321,-0.4109,-1.2888 +0xb131,CUS_0x4ce8,August,26,441-23-6569,Musician,18138,,9,6,29.06745738,5,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Auto Loan, and Student Loan",39.210135,24.32557103,15.1,10,Bad,4683.486531,39.02556361,3 Years and 10 Months,Yes,45.99505329,90.49889825,Low_spent_Medium_value_payments,263.2357605,0,1.2592,0.352,0.2141,-0.3976,-2.1235 +0xb13d,CUS_0x3d37,August,23,160-06-3935,Manager,17096.48,,3,4,5,0,,9.729899972,10,0.97,7,Good,662.4566295,29.83745356,21 Years and 9 Months,No,0,37.29824111,High_spent_Small_value_payments,374.061104,0,1.233,-0.1085,-0.4297,0.8559,0.2629 +0xb149,CUS_0x7df6,August,39,589-71-0854,Scientist,14085.15,1330.7625,3,3,8,3,"Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",17.40853287,14,12.66,4,Standard,298.5,38.09065919,16 Years and 8 Months,No,31.30907093,64.64795897,Low_spent_Large_value_payments,307.1192201,0,0.6241,1.3847,-0.4446,0.8452,0.4502 +0xb155,CUS_0x4ea4,August,36,826-95-8297,Lawyer,36729.93,,2,1,12,0,,,11,6.64,4,_,921.03,39.85465075,28 Years and 3 Months,No,0,162.5222401,Low_spent_Medium_value_payments,431.0605099,0,0.5542,-0.8991,0.2569,0.785,1.2703 +0xb161,CUS_0xb9d8,August,28,220-53-7123,Musician,51950.28,4218.19,7,8,5198,7,"Debt Consolidation Loan, Auto Loan, Student Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Not Specified",,12,11.71,9,Standard,1723.13,25.08004238,,Yes,235.1353203,78.94645627,High_spent_Medium_value_payments,357.7372234,0,-0.0608,0.8794,-1.866,-1.0196,0.0042 +0xb16d,CUS_0x4357,August,29,652-71-9457,Architect,17187.48,,6,5,9,0,,,13,17.98,9,Standard,1453.63,38.78288329,11 Years and 0 Months,Yes,0,100.0246404,Low_spent_Small_value_payments,360.7043596,0,-0.0614,2.2909,-0.512,0.4896,-0.6325 +0xb179,CUS_0x6969,August,56,183-53-8906,Writer,124623.9,,5,2,10,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Personal Loan",10.61550447,12,5.76,2,Good,895.5502653,43.41874608,26 Years and 3 Months,No,321.0802541,,High_spent_Medium_value_payments,681.4384495,0,-0.2075,-0.0532,0.7997,0.069,2.3414 +0xb185,CUS_0x3d44,August,29,534-16-1512,Media_Manager,23557.5,,7,4,6,4,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",,20,,0,Standard,7.51,40.62018933,28 Years and 5 Months,No,41.41703603,,High_spent_Large_value_payments,359.9968535,0,0.4076,-1.1129,-0.3675,0.2729,-0.4446 +0xb191,CUS_0x2493,August,46,468-04-0031,Teacher,30592.38,2583.365,6,7,8,0,,20.91142825,15.76507418,0.58,2,Standard,1437.878351,26.91367033,19 Years and 6 Months,No,9733,,Low_spent_Small_value_payments,358.5170635,0,0.1768,1.1876,-1.3388,0.3263,-0.3605 +0xb19d,CUS_0x74fc,August,22,011-70-3590,Musician,25655.23,2081.935833,7,5,6,1,Debt Consolidation Loan,26.16545725,20,6.3,6,Standard,1115.06,28.19109518,19 Years and 8 Months,Yes,15.08079606,159.4141193,!@9#%8,323.698668,0,-0.6255,-1.5008,0.9017,-1.0694,-1.6294 +0xb1a9,CUS_0x66c7,August,27,192-92-9184,Mechanic,42884.84,3578.736667,4,6,7,0,,4.127180414,2.295636344,1.73,2,Good,1449.532883,38.30045483,30 Years and 6 Months,No,0,87.17307237,High_spent_Large_value_payments,510.7005943,0,1.4478,0.1865,-0.9052,0.2571,-1.3417 +0xb1b5,CUS_0xb14f,August,33,996-73-7266,Writer,27694.66,2404.902618,7,4,10,2,"Auto Loan, and Debt Consolidation Loan",27.51449995,20,6.69,5,Standard,1275.496795,29.57872244,24 Years and 11 Months,Yes,131.361029,109.8431161,Low_spent_Small_value_payments,396.4710444,0,0.0516,-0.4864,-1.5773,-1.6593,-0.1737 +0xb1c1,CUS_0xad3c,August,27,886-35-0858,Media_Manager,24898.5,,3,3,16.28836175,0,Home Equity Loan,11.51576175,12,8.25,1,_,143.27,34.67330202,32 Years and 2 Months,Yes,28795,607.8061009,Low_spent_Medium_value_payments,292.9544957,0,0.4139,0.021,0.9027,1.0489,-1.2864 +0xb1cd,CUS_0x84e7,August,32,314-40-3453,Developer,169229.44,13892.45333,2,4,11,4,"Student Loan, Personal Loan, Payday Loan, and Payday Loan",2.850765976,4,10.36,4,Good,708.42,29.62104962,26 Years and 6 Months,No,305.0743098,395.8919797,Low_spent_Large_value_payments,958.2790439,0,0.2761,0.6429,-0.3602,-1.3693,1.1925 +0xb1d9,CUS_0x7656,August,34,515-31-7948,_______,19197.3,,8,8,23.95700519,7,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Student Loan, Personal Loan, and Home Equity Loan",33.64891839,18,16.65,8,Bad,4050.160954,37.57832975,2 Years and 2 Months,Yes,1394.876189,107.2919449,Low_spent_Large_value_payments,210.8589968,0,0.5435,0.5143,0.888,0.2137,-1.6155 +0xb1e5,CUS_0xb8d4,August,33,362-15-7400,Entrepreneur,158311.12,,2,7,6.288361749,4,"Not Specified, Personal Loan, Home Equity Loan, and Auto Loan",4.125959505,7,2.31,1,Good,285.28,38.82650995,31 Years and 0 Months,No,360.0177123,,Low_spent_Small_value_payments,163.4620021,0,-0.6506,0.0152,-0.3143,1.8684,-0.112 +0xb1f1,CUS_0x90e0,August,30,922-30-2893,Mechanic,65247.82,,3,5,12,2,"Personal Loan, and Personal Loan",,6,3.1,1,Good,301.9301932,38.31041889,17 Years and 8 Months,No,105.0187865,124.5709879,High_spent_Large_value_payments,589.6888319,0,-0.5626,0.0084,-1.9264,-0.8533,0.0287 +0xb1fd,CUS_0x59a9,August,28,#F%$D@*&8,Entrepreneur,135871.68,,3,2,5.288361749,2,"Not Specified, and Mortgage Loan",,11,1.21,4,Good,1331.460907,40.78853721,22 Years and 4 Months,No,174.8965293,952.8448415,Low_spent_Large_value_payments,773.024985,0,1.4225,0.7973,0.6186,-0.8423,-0.1481 +0xb209,CUS_0x5c44,August,39,290-76-5626,Scientist,10413.6,576.8,3,6,5,5,"Personal Loan, Payday Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",,17,,9,_,1098.56,37.0776761,19 Years and 10 Months,Yes,40.71403163,49.89442082,Low_spent_Small_value_payments,257.0715476,0,0.4817,-0.7284,-1.5106,0.112,0.3019 +0xb215,CUS_0x16d3,August,22,619-06-9383,Entrepreneur,34204.91,,4,5,10,3,"Credit-Builder Loan, Home Equity Loan, and Student Loan",6.499477915,3.525876962,,4,Good,1492.363915,28.1503461,32 Years and 9 Months,No,73.3462592,115.0294175,High_spent_Medium_value_payments,367.26524,0,-0.2302,-1.9282,-0.5042,-0.4491,1.8863 +0xb221,CUS_0xb5ae,August,48,264-30-0705,Developer,62170.26,4987.855,5,7,13,4,"Student Loan, Student Loan, Student Loan, and Auto Loan",,,12.04,8,Standard,1456.07,31.16562283,21 Years and 9 Months,NM,197.8103066,207.42994,Low_spent_Large_value_payments,363.5452534,0,-0.4287,0.4831,-0.1142,-0.3465,-1.0207 +0xb22d,CUS_0xe32,August,45,433-26-2777,Doctor,86902.59,7005.8825,5,4,12,4,"Payday Loan, Student Loan, Home Equity Loan, and Payday Loan",,9,7.85,,Standard,746.14,30.26680461,,Yes,170.6488172,505.3328877,Low_spent_Small_value_payments,314.6065451,0,-0.8287,0.0796,0.306,-0.5905,0.5481 +0xb239,CUS_0x926b,August,27,016-34-5925,Manager,38272.58,2980.381667,6,6,14,2,"Payday Loan, and Home Equity Loan",17.24578458,15,9.44,12,Standard,974.34,27.72895189,20 Years and 3 Months,Yes,63.27051683,90.90577079,High_spent_Small_value_payments,403.8618791,0,-0.6407,0.387,0.4527,1.9102,0.9695 +0xb245,CUS_0x6f02,August,44,638-18-9662,Entrepreneur,16358.97,,10,9,24.95700519,9,"Home Equity Loan, Payday Loan, Student Loan, Student Loan, Student Loan, Personal Loan, Student Loan, Payday Loan, and Auto Loan",,28.85425135,3.14,13,Bad,3414.332834,25.26983527,14 Years and 5 Months,Yes,1433.614995,115.2917236,Low_spent_Small_value_payments,181.1676623,0,-0.4192,-1.3978,-1.9586,0.3834,0.607 +0xb251,CUS_0x4669,August,44,023-38-3760,Architect,106271.13,8663.9275,4,7,13,2,"Not Specified, and Auto Loan",18.7228305,15,1.62,3,_,492.06,34.99274869,21 Years and 6 Months,NM,126.9306082,851.6721439,Low_spent_Small_value_payments,177.789998,0,-0.1665,-0.1569,-0.0474,-0.5155,0.5189 +0xb25d,CUS_0x6e7,August,34,636-33-5615,Engineer,95745.88,,7,6,18,3,"Payday Loan, Payday Loan, and Student Loan",17.45492983,13,10.17,8,_,738.41,35.02422714,21 Years and 5 Months,Yes,142.2807709,497.3087177,Low_spent_Large_value_payments,410.3928448,0,-0.6279,-0.3036,1.0376,-0.4774,1.1653 +0xb269,CUS_0x1b85,August,44,912-30-2671,Entrepreneur,36228.12,3105.01,3,7,3,2,"Credit-Builder Loan, and Not Specified",0,3,11.62,5,_,1292.653959,33.74617364,27 Years and 9 Months,No,39.04583087,119.4400208,Low_spent_Medium_value_payments,449.7308433,0,1.2717,0.567,-1.028,2.1996,1.5292 +0xb275,CUS_0x5d65,August,28,958-85-9128,Developer,65500.84,5457.403333,4,3,18,4,"Personal Loan, Auto Loan, Student Loan, and Auto Loan",12.88982207,13,4.26,4,Standard,1088.57,27.1973779,,No,197.5670856,102.6279122,!@9#%8,505.5453355,0,0.2333,2.627,-0.1432,-1.2344,-0.2122 +0xb281,CUS_0x8eaa,August,34,274-64-8413,Developer,16518.87,,10,8,28,100,"Not Specified, Not Specified, Auto Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, Mortgage Loan, and Personal Loan",22.07105004,17.18044339,10,8,Bad,2810.921811,30.02059157,10 Years and 10 Months,Yes,65.70517937,24.34212054,High_spent_Medium_value_payments,287.9099501,0,-1.5833,0.5654,-1.2836,0.7746,1.0442 +0xb28d,CUS_0x987a,August,27,528-33-3356,Mechanic,17181.105,,4,4,17,4,"Student Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",24.2627134,20,12.72,9,_,323.74,28.99372211,18 Years and 9 Months,Yes,34.004072,31.36312198,High_spent_Large_value_payments,346.408681,0,0.7756,-0.7074,-0.5925,-0.0736,0.9006 +0xb299,CUS_0x7972,August,80,065-29-8457,Engineer,46717.32,4072.11,9,6,25,7,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Payday Loan, Mortgage Loan, and Mortgage Loan",33.53905771,20.93669344,8.85,9,Bad,3048.716547,38.63337879,8 Years and 10 Months,NM,176.1264053,54.96583939,!@9#%8,426.1187553,0,1.2893,1.4881,-2.7728,-0.5749,0.8994 +0xb2a5,CUS_0x5975,August,38,711-80-8414,_______,44849.79,,10,7,18.06745738,5,"Mortgage Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",36.27337659,24,12.32,7,Bad,2607.320954,27.80703392,16 Years and 2 Months,Yes,164.7087422,503.6621957,Low_spent_Small_value_payments,,0,-2.199,-0.3499,-0.3322,0.4988,-1.6815 +0xb2b1,CUS_0x197f,August,39,334-38-7121,Writer,35669.97,,5,7,19,100,"Student Loan, and Home Equity Loan",,16,14.45,6,Standard,657.81,36.66679653,16 Years and 6 Months,Yes,57.64795768,60.27649453,High_spent_Medium_value_payments,451.7252978,0,-3.1193,-1.4219,1.0165,2.0661,1.2577 +0xb2bd,CUS_0xa478,August,27,289-96-2635,Musician,125222.6,,1,5,1.288361749,2,"Payday Loan, and Student Loan",0,1,3.47,5,Good,188.33,26.66456716,17 Years and 11 Months,No,205.6343261,606.9201423,High_spent_Large_value_payments,868.2046592,0,-0.7474,-0.8474,1.0431,0.4169,0.729 +0xb2c9,CUS_0x22f8,August,35,089-37-2681,Developer,89417.16,,7,4,19,0,,15.64066444,12,14.97,4,Standard,289.7429216,38.87475589,25 Years and 10 Months,Yes,0,835.101969,Low_spent_Medium_value_payments,280.006198,0,-1.6133,0.1285,-0.5138,0.2245,1.0166 +0xb2d5,CUS_0x25f2,August,23,956-42-0011,Manager,78426.52,6383.543333,8,4,9,0,,,9,7.66,4,_,1221.49,38.34229546,15 Years and 8 Months,Yes,0,,High_spent_Small_value_payments,761.284522,0,-1.5283,0.8724,1.0928,0.3372,0.5395 +0xb2e1,CUS_0x6f7d,August,22,419-63-0128,Developer,78839.48,6358.956667,7,4,3510,100,Mortgage Loan,25.0333909,16,4.21,5,_,1041.42,42.91540889,32 Years and 10 Months,Yes,39.35327288,96.92725237,High_spent_Large_value_payments,739.6151414,0,-1.4202,-0.188,-0.5661,0.0951,0.6345 +0xb2ed,CUS_0x35ba,August,34,458-07-0171,Engineer,95287.17,,1,6,12,3,"Credit-Builder Loan, Home Equity Loan, and Not Specified",6.810885395,6,3.98,7,Good,815.62,31.37857618,,No,236.755666,116.4598939,High_spent_Medium_value_payments,704.34419,0,0.624,-0.4861,-0.5369,1.0607,1.6154 +0xb2f9,CUS_0x6448,August,28,#F%$D@*&8,Media_Manager,35933.67,2728.4725,5,4,6.288361749,100,,4.492942005,7,5.95,4,Good,98.89,31.69067612,15 Years and 8 Months,No,0,528.0398793,Low_spent_Medium_value_payments,444.7448317,0,0.7089,-0.0846,0.5844,-0.8137,-1.217 +0xb305,CUS_0xc524,August,42,367-57-7593,Journalist,34216.85,,4,5,12,0,,30.05402588,19,18.41,11,Standard,1283.78,38.77414907,22 Years and 2 Months,Yes,0,69.00777875,High_spent_Medium_value_payments,452.8326379,0,-1.3543,-1.3838,1.0342,-1.0097,-0.3918 +0xb311,CUS_0x9438,August,25,397-81-3808,_______,7156.425,,10,6,32.06745738,5,"Home Equity Loan, Not Specified, Not Specified, Not Specified, and Student Loan",38.0027697,18.63182408,6.27,6,Bad,1833.191177,29.84028568,11 Years and 11 Months,Yes,18.88157799,10.92486948,Low_spent_Medium_value_payments,264.8101396,0,1.1584,-0.3979,0.1189,0.8935,1.0688 +0xb31d,CUS_0xa055,August,31,957-89-9722,Accountant,107157.12,9178.76,8,6,9,0,,,19,5.9,2,_,182.91,41.38483524,26 Years and 5 Months,NM,0,295.6267538,Low_spent_Medium_value_payments,902.2492462,0,0.082,-0.3803,1.2664,-0.1939,0.2562 +0xb329,CUS_0xa5a4,August,19,810-65-1317,Mechanic,135452.08,11212.67333,0,3,2,1,Not Specified,10.75868133,11,1.21,4,Good,257.19,42.09977414,20 Years and 11 Months,No,69.23716234,432.0669978,High_spent_Medium_value_payments,869.9631732,0,1.475,0.5834,-0.7265,0.2425,-0.528 +0xb335,CUS_0xc6d6,August,46,324-16-4438,Scientist,21229.73,1709.144167,5,4,10,2,"Debt Consolidation Loan, and Auto Loan",0,1,16.78,3,_,659.72,25.24734529,26 Years and 2 Months,No,28.88093048,20.29563815,High_spent_Large_value_payments,361.737848,0,1.2182,0.0878,-0.2051,0.2937,0.4469 +0xb341,CUS_0x43c0,August,41,264-92-2394,Musician,70064.92,,8,10,16.88954781,8,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Home Equity Loan, Personal Loan, Personal Loan, and Debt Consolidation Loan",42.66583979,21.60860295,26.61,7,Bad,4175.401358,29.79876362,13 Years and 3 Months,Yes,1713.726736,,Low_spent_Large_value_payments,221.3395157,0,-0.2035,1.1859,-0.9062,0.5955,-1.1178 +0xb34d,CUS_0x9dff,August,26,571-72-1744,Manager,17482.49,1181.874167,6,6,29,5,"Auto Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",,27.37579003,15.18,9,_,3185.633411,25.33423308,6 Years and 3 Months,Yes,51.83320723,58.28167091,Low_spent_Large_value_payments,278.0725385,0,-0.1688,0.6673,-0.4965,0.8348,-0.781 +0xb359,CUS_0x9d86,August,29,675-88-7269,Doctor,120091.92,10239.66,0,2,5,1,Credit-Builder Loan,,12,-4.45,5,Good,1132.46,41.24490282,23 Years and 11 Months,NM,84.40523007,,Low_spent_Medium_value_payments,700.4974333,0,0.4064,-0.0343,-0.1767,-0.8842,-2.2236 +0xb365,CUS_0xc118,August,30,626-84-2639,Journalist,56693.96,4662.496667,7,5,24,100,"Auto Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,22,9.24,13,Bad,1974.3,26.14632482,,Yes,113.5511309,432.8902826,Low_spent_Medium_value_payments,199.8082532,0,-0.975,-1.655,1.1028,-1.1564,-0.6959 +0xb371,CUS_0x5049,August,44,461-78-8318,Manager,171873.32,14285.77667,3,5,10.28836175,0,,,5,4.03,2,Good,817.3703838,25.5950404,,No,0,2080.858128,Low_spent_Medium_value_payments,290.6828522,0,-1.3095,0.727,-0.8222,-0.0987,-0.5671 +0xb37d,CUS_0x548b,August,44,542-92-9333,_______,66522.06,5409.505,8,4,7,3,"Student Loan, Not Specified, and Home Equity Loan",19.32573492,13,15.95,,Standard,561.13,27.84501992,15 Years and 10 Months,Yes,117.0880048,291.6330122,Low_spent_Small_value_payments,422.2294831,0,-1.5953,1.7888,0.1237,0.3928,-0.2605 +0xb389,CUS_0x1a18,August,18,800-90-7191,Lawyer,16724.855,1490.737917,7,4,11,2,"Credit-Builder Loan, and Mortgage Loan",,17,,5,Standard,917.9083709,37.28378928,20 Years and 0 Months,Yes,18.49257096,87.02021694,Low_spent_Large_value_payments,324.3287013,0,-1.8102,0.6667,-0.9812,0.0597,0.9889 +0xb395,CUS_0x600e,August,50,121-87-3090,Manager,120030.68,9972.556667,7,6,7,1,Personal Loan,14.11558766,11,4.28,,Standard,1247.79,31.9082788,21 Years and 2 Months,No,91.31136471,232.2785275,High_spent_Small_value_payments,933.6657745,0,-2.5355,0.8741,0.0591,-0.0508,-2.2905 +0xb3a1,CUS_0xbba9,August,24,984-62-2785,Engineer,175796.6,,3,7,11,3,"Auto Loan, Credit-Builder Loan, and Personal Loan",2.155696108,3.648133988,1.46,3,Good,1366.409113,28.34307787,30 Years and 10 Months,No,366.7589326,1477.500217,Low_spent_Small_value_payments,,0,0.4241,0.8946,-1.0444,0.1152,-0.4104 +0xb3ad,CUS_0xc45d,August,39,232-02-1071,Writer,61348.98,5038.415,5,7,9,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",16.16234627,11,11.19,5,Standard,1240.49,32.76834213,27 Years and 9 Months,No,168.595419,295.9175061,Low_spent_Medium_value_payments,319.3285749,0,-1.5761,0.7338,0.8795,-0.2043,3.0108 +0xb3b9,CUS_0x5b37,August,40,599-63-0212,Lawyer,9159.02,,6,8,19.06745738,4,"Home Equity Loan, Student Loan, Personal Loan, and Home Equity Loan",26.97009783,17.89000279,8.6,655,Standard,1985.638615,32.84868537,11 Years and 9 Months,Yes,22.08918973,94.52385454,Low_spent_Small_value_payments,235.3918345,0,0.982,1.0789,0.2768,-0.7836,0.864 +0xb3c5,CUS_0x2b9f,August,80,564-64-3020,_______,141816.36,,3,6,11.28836175,0,,12.51808697,13.78443782,9.2,5,_,594.1172085,34.33227922,31 Years and 4 Months,No,0,577.1405164,High_spent_Large_value_payments,1283.099945,0,1.2499,-0.8522,-0.7475,0.7749,1.1982 +0xb3d1,CUS_0xb8c,August,28,146-11-7370,Writer,78867.52,,8,7,33,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",32.08713448,18.21323888,18.1,12,Bad,1948.293459,38.77032362,6 Years and 0 Months,Yes,144.7774683,176.875715,High_spent_Medium_value_payments,606.2761501,0,-0.0961,0.4355,1.3646,1.4698,-1.4648 +0xb3dd,CUS_0x20e5,August,38,107-23-3924,Manager,99845.4,8600.45,1,1,10.28836175,2,"Mortgage Loan, and Not Specified",,2,4.84,1,Good,778.1,35.02341972,21 Years and 0 Months,No,136.474227,494.7385724,High_spent_Large_value_payments,888.7696616,0,0.4563,-0.4389,0.9296,-0.8395,1.8879 +0xb3e9,CUS_0x4c61,August,35,167-60-9343,Teacher,22373.535,2137.46125,5,5,10,2,"Not Specified, and Home Equity Loan",5.855003771,9,10.24,0,Good,1347.316431,26.13743819,25 Years and 2 Months,No,31.94779906,323.9004189,!@9#%8,185.2564609,0,-0.354,-0.3374,-1.7531,1.9372,0.4027 +0xb3f5,CUS_0x94a6,August,26,990-54-3184,Accountant,104616.9,8481.075,7,6,14,4,"Debt Consolidation Loan, Mortgage Loan, Student Loan, and Not Specified",19.08197345,14.35009008,1.59,7,Standard,1617.772546,38.83017954,,No,334.0983436,303.0713091,Low_spent_Medium_value_payments,490.9378472,0,-0.0434,-1.914,0.8931,-0.3351,-0.1935 +0xb401,CUS_0x2f7b,August,44,879-63-4182,Mechanic,15451.69,1271.640833,6,7,19,6,"Personal Loan, Personal Loan, Student Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",10.7597781,10,19.55,8,Standard,1620.67,36.99376724,13 Years and 2 Months,Yes,40.91557148,101.1671586,Low_spent_Medium_value_payments,265.0813533,0,1.4345,1.431,0.1921,-0.6214,-0.6172 +0xb40d,CUS_0xc1b9,August,40,098-04-5169,Lawyer,152483.32,12747.94333,5,4,0.288361749,2,"Student Loan, and Home Equity Loan",0,0,4.72,5,Good,678.31,29.85007007,28 Years and 5 Months,No,209.4921085,632.4805266,High_spent_Medium_value_payments,1102.759159,0,-0.5619,0.0401,0.1189,-0.6369,-0.5128 +0xb419,CUS_0x4846,August,23,670-60-0491,Musician,30494.3,2330.191667,9,7,31.06745738,8,"Student Loan, Payday Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",,27.5922036,18.42,9,_,5329.732315,27.6773912,14 Years and 0 Months,Yes,185.1153863,34.21861726,!@9#%8,226.9648751,0,0.6788,-1.6411,0.4062,0.3269,-0.5704 +0xb425,CUS_0x51f,August,56,910-56-2718,Lawyer,32937.83,2519.819167,8,6,11,4,"Debt Consolidation Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",18.94722603,14,4.95,0,_,134.09,31.58007492,18 Years and 4 Months,No,79.58570855,157.1391655,High_spent_Small_value_payments,275.2570427,0,0.6042,-0.4567,1.5877,1.6538,0.3714 +0xb431,CUS_0x5933,August,30,375-51-3125,Journalist,132705.63,,4,2,2478,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",1.677031284,6,5.55,4,Good,675.3626301,37.83098404,,No,364.3907233,102.0929629,High_spent_Large_value_payments,904.6506386,0,0.3837,0.025,-0.4125,-0.3195,-0.9074 +0xb43d,CUS_0x2694,August,20,708-87-0866,Lawyer,8952.155,,6,3,14,2,"Payday Loan, and Mortgage Loan",14.7262855,10.59312917,11.26,11,Standard,2228.896072,26.73215724,,Yes,11.55251699,32.49628077,Low_spent_Medium_value_payments,282.5524939,0,0.6888,-1.541,-0.4158,-0.1026,1.5374 +0xb449,CUS_0x3d77,August,29,691-72-0444,Architect,58301.44,,3,7,19,4,"Mortgage Loan, Student Loan, Personal Loan, and Credit-Builder Loan",14.92330782,13,7.44,0,Standard,352.44,25.13867165,26 Years and 11 Months,Yes,169.9120689,134.5746391,High_spent_Medium_value_payments,445.3586253,0,-2.0481,-1.6834,-0.7447,0.3273,2.1574 +0xb455,CUS_0xf9e,August,43,252-30-3555,Teacher,142475.32,12013.94333,8,5,11,2,"Mortgage Loan, and Home Equity Loan",26.44512836,18,1.65,3,_,628.57,42.34432204,30 Years and 8 Months,No,124.4000074,81.77875327,High_spent_Large_value_payments,1235.215573,0,0.547,-0.4188,-1.9545,-0.176,0.4199 +0xb461,CUS_0x2f53,August,39,772-95-6980,_______,38580.05,2928.576763,0,5,3.288361749,0,Payday Loan,2.708681867,5,2.73,4,Good,211.92,22.70163829,28 Years and 6 Months,No,472.6526137,,Low_spent_Small_value_payments,412.32435,0,1.0918,-0.6877,0.9401,0.5626,0.2614 +0xb46d,CUS_0x58d8,August,18,600-58-1259,Journalist,19135.35,,5,5,17,2,"Home Equity Loan, and Auto Loan",15.31372128,10.36200121,18.4,8,Standard,1216.402225,31.50632312,24 Years and 3 Months,Yes,60290,105.735346,Low_spent_Small_value_payments,340.0945725,0,0.0846,2.8542,-0.1994,-0.1077,-1.4122 +0xb479,CUS_0xa138,August,26,873-85-5247,Developer,126664.28,10474.35667,7,7,18,2,"Auto Loan, and Mortgage Loan",,8.990849915,8.84,12,Standard,301.427478,37.08311223,32 Years and 9 Months,Yes,149.1805718,286.7874656,Low_spent_Medium_value_payments,891.4676292,0,-1.4714,0.2108,-1.4938,-0.8284,0.0945 +0xb485,CUS_0xc28c,August,27,573-42-4273,Developer,19899.64,1759.303333,5,3,6,2,"Student Loan, and Auto Loan",13.10444976,12.95989028,4.85,4,Good,802.7037212,22.73033747,27 Years and 11 Months,No,17.12581198,28.71177859,High_spent_Medium_value_payments,380.0927428,0,0.0918,1.7959,-0.0897,-0.4622,1.0374 +0xb491,CUS_0x2794,August,26,457-70-4452,Developer,7542.5,818.5416667,8,5,20,6,"Not Specified, Personal Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",20.73180971,18,15.57,8,Standard,1916.7,33.90063518,14 Years and 2 Months,Yes,22.99932342,43.12893914,Low_spent_Medium_value_payments,295.7259041,0,-0.1598,1.3569,-0.5285,-0.8491,0.2882 +0xb49d,CUS_0xbe32,August,28,979-89-1794,Lawyer,64294.77,,6,4,7,1,Auto Loan,,14,13.11,1,Standard,1052.1,29.27702117,23 Years and 6 Months,No,37.73270214,117.0833929,High_spent_Large_value_payments,629.4736549,0,-0.6637,-0.3794,-0.6752,0.5765,0.652 +0xb4a9,CUS_0x1195,August,31,822-48-3629,Manager,30429.91,2808.825833,4,6,16,2,"Auto Loan, and Auto Loan",23.4262573,17,1.67,1549,Standard,362.48,33.34905039,28 Years and 11 Months,No,29.91407646,82.87878578,Low_spent_Large_value_payments,438.0897211,0,-0.4744,-0.6906,0.5291,0.2108,-0.5542 +0xb4b5,CUS_0x9ec7,August,22,223-21-1439,Teacher,34512.78,,3,5,7,2,"Payday Loan, and Payday Loan",4.920547846,5,11.36,4,Good,394.52,33.8252898,28 Years and 11 Months,No,36.11736925,76.21702748,High_spent_Medium_value_payments,427.8721033,0,0.5147,0.3995,-0.57,0.2162,-0.3059 +0xb4c1,CUS_0xdea,August,25,735-58-7826,Teacher,23522.97,,3,7,7,1,Debt Consolidation Loan,20.49830336,14,3.81,1,_,1343.0714,39.46619882,21 Years and 11 Months,NM,18.66644511,91.84014726,High_spent_Medium_value_payments,351.0295625,0,-0.6142,-1.9433,3.1534,0.2674,-1.5036 +0xb4cd,CUS_0x7fb0,August,39,433-96-3729,_______,29785.28,,8,4,7,100,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Personal Loan, and Personal Loan",19.0202098,,7.94,12,Standard,66.95,32.01509532,7 Years and 10 Months,Yes,116.3611122,211.9472284,Low_spent_Large_value_payments,181.502326,0,-0.1405,1.4787,0.373,-0.6311,1.3718 +0xb4d9,CUS_0x3809,August,53,060-56-1128,Journalist,108397.59,,3,5,10,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",,,0.84,2,Good,1299.953254,31.87508237,30 Years and 3 Months,No,182.7498648,,High_spent_Large_value_payments,758.2408019,0,0.0385,0.9275,0.2201,-0.5008,-1.2815 +0xb4e5,CUS_0xadd7,August,42,378-88-5726,Architect,71690.42,6001.201667,1,3,4,4,"Credit-Builder Loan, Student Loan, Home Equity Loan, and Home Equity Loan",,2589,2.24,5,Good,1217.03,39.98631886,16 Years and 11 Months,No,180.2505463,,!@9#%8,523.9354837,0,0.3169,1.0721,-0.7065,-0.3812,0.4921 +0xb4f1,CUS_0xa24a,August,44,752-76-8237,Developer,96108.54,,5,4,12,0,,0,2,0.52,5,Good,1477.46,40.56383532,20 Years and 3 Months,No,0,415.7883507,Low_spent_Medium_value_payments,642.7161493,0,-0.3698,-0.9177,1.0799,0.5307,0.0886 +0xb4fd,CUS_0x5528,August,22,#F%$D@*&8,Lawyer,20701.48,,8,9,25.88954781,8,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",41.65082455,24.02116897,24.5,10,Bad,3644.724917,38.99247065,10 Years and 8 Months,Yes,1443.22031,34.57223525,High_spent_Medium_value_payments,268.7897068,0,1.2348,-1.896,0.9903,0.768,-1.3301 +0xb509,CUS_0x22bc,August,22,588-02-4459,Manager,21129.11,,5,5,6,0,,19.53330567,,5.91,1,_,977.4871541,38.71219765,21 Years and 9 Months,No,0,163.9155225,Low_spent_Small_value_payments,311.3603942,0,0.9182,-1.3897,0.8049,-0.1108,0.0517 +0xb515,CUS_0xc1dc,August,42,516-83-0790,Writer,61355.12,,6,7,8,0,,14.73359033,8,4.86,2,Standard,428.61,33.41522144,21 Years and 10 Months,No,33914,209.2970727,High_spent_Medium_value_payments,558.7955939,0,-0.2255,0.3389,-0.6886,0.0418,-0.4787 +0xb521,CUS_0xbe29,August,31,970-80-4101,Architect,28993.75,2459.145833,2,4,12,1,Personal Loan,0,2,6.74,0,Good,822.72,33.82857351,20 Years and 4 Months,No,18.34558544,94.31949059,Low_spent_Small_value_payments,423.2495073,0,-0.3226,0.4723,-0.5626,1.2757,1.2457 +0xb52d,CUS_0xbbec,August,32,273-71-2807,Writer,30962.65,2711.220833,8,4,11,0,,18.58485793,13,5.4,,_,716.42,28.76477042,23 Years and 11 Months,No,0,10000,Low_spent_Small_value_payments,422.8772234,0,-0.3588,2.3155,-0.1372,0.6319,-1.1137 +0xb539,CUS_0x1f57,August,45,679-39-8293,Lawyer,19547.065,,3,2,8,3,"Student Loan, Credit-Builder Loan, and Mortgage Loan",14.77782951,12,5.14,5,Good,746.1685538,29.13058368,32 Years and 5 Months,No,46.36255909,71.66873511,Low_spent_Small_value_payments,329.414046,0,0.6582,0.085,2.3873,2.2144,-0.7651 +0xb545,CUS_0x1e95,August,24,540-71-5162,Developer,103943,8812.916667,5,6,11,2,"Auto Loan, and Payday Loan",20.87766262,18,8.21,5,Standard,1195.826346,28.4506005,30 Years and 0 Months,Yes,113.9982869,508.581225,Low_spent_Large_value_payments,602.2338519,0,-0.3997,1.2775,1.224,0.5944,1.0845 +0xb551,CUS_0xb060,August,39,309-06-5437,Manager,20695.58,,2,2,3,4,"Home Equity Loan, Personal Loan, Personal Loan, and Not Specified",6.162428002,7,11,2,_,1240.925376,25.73772151,19 Years and 11 Months,NM,253.5833674,187.509496,Low_spent_Medium_value_payments,265.0676598,0,0.4131,1.5523,1.7651,-1.1863,-0.1934 +0xb55d,CUS_0x37e6,August,23,491-70-1469,Architect,25846.78,,7,3,16,4,"Payday Loan, Not Specified, Home Equity Loan, and Personal Loan",12.59001317,12,11.92,1,Standard,1.23,32.24314916,24 Years and 6 Months,No,85.27657308,33.63162279,High_spent_Medium_value_payments,322.0816375,0,-0.064,0.457,0.8783,-0.8495,0.6166 +0xb569,CUS_0x3374,August,25,128-48-7511,Manager,73134.06,5913.505,5,4,12,4,"Not Specified, Not Specified, Student Loan, and Auto Loan",15.53209359,10,4.63,4,Standard,382.91,28.39894513,33 Years and 6 Months,NM,156.9209564,124.5931178,High_spent_Large_value_payments,549.8364259,0,0.2256,-0.0228,0.7999,1.0122,0.2457 +0xb575,CUS_0x48b7,August,25,233-46-6078,Doctor,67394.92,5844.243333,4,3,21,7,"Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Auto Loan, Payday Loan, Auto Loan, and Payday Loan",,19.8499526,9.77,10,Standard,1843.070757,30.84720836,9 Years and 8 Months,NM,341.5669033,604.4168873,Low_spent_Medium_value_payments,,0,-0.1217,-0.1028,-1.1912,-2.4949,1.6527 +0xb581,CUS_0x4abb,August,26,425-97-4776,Media_Manager,70171.29,,3,7,13,6,"Personal Loan, Student Loan, Mortgage Loan, Auto Loan, Student Loan, and Payday Loan",23.54962475,19,5.81,9,Standard,686.85,25.73018511,19 Years and 6 Months,Yes,268.672953,202.6586206,Low_spent_Large_value_payments,407.8291764,0,1.466,-2.5187,-1.7658,-0.7902,1.1724 +0xb58d,CUS_0x42dc,August,29,517-51-2372,Writer,28397.31,,7,4,7,2,"Student Loan, and Not Specified",,10,9.4,4,_,1398.33,40.37160675,27 Years and 3 Months,No,27.7670242,157.4787524,Low_spent_Small_value_payments,316.6984734,0,-0.1517,-0.386,1.5017,-0.1751,0.5562 +0xb599,CUS_0x953d,August,24,884-63-2579,Engineer,37419.7,,1,7,5,4,"Student Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",0,0,7.69,0,Good,653.66,31.92502871,22 Years and 3 Months,No,76.18253576,129.8357012,Low_spent_Small_value_payments,401.4125963,0,-0.5941,-0.5382,1.2106,0.5143,0.4059 +0xb5a5,CUS_0x902d,August,35,#F%$D@*&8,Architect,117680.84,10057.73667,5,5,10,2,"Debt Consolidation Loan, and Auto Loan",,17,15.32,0,Standard,217.1576349,41.04985083,18 Years and 2 Months,Yes,183.4525866,413.3757441,High_spent_Medium_value_payments,713.1512089,0,-0.6534,-1.2254,1.9622,0.7469,-0.7118 +0xb5b1,CUS_0x3eed,August,35,018-83-9065,Engineer,15833.7,,5,914,13,2,"Payday Loan, and Auto Loan",17.26449152,,15.02,6,Standard,2343.292083,34.84636576,12 Years and 8 Months,Yes,40320,47.96243244,High_spent_Medium_value_payments,318.2823721,0,-0.4623,0.2396,-0.2192,-0.2491,-0.669 +0xb5bd,CUS_0x1a23,August,51,092-81-2077,Lawyer,35205.45,,3,7,7,3,"Personal Loan, Personal Loan, and Home Equity Loan",8.670022171,9,9.06,4,Good,671.94,26.90904027,,No,57.51493672,122.3931214,High_spent_Small_value_payments,396.6706919,0,-1.1804,0.0729,-1.5376,-0.3252,-1.481 +0xb5c9,CUS_0x96da,August,30,777-66-9324,_______,15891.115,,0,4,5,3,"Personal Loan, Student Loan, and Mortgage Loan",8.069552814,9,10.6,4,Good,453.9158377,27.05155598,24 Years and 5 Months,No,82.47324663,45.54456142,Low_spent_Large_value_payments,324.2470747,0,-2.5471,0.4173,-0.3972,2.1148,-1.1637 +0xb5d5,CUS_0x88fb,August,38,069-08-9575,Architect,126680.84,10547.73667,7,7,8,7,"Personal Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",23.0938401,16,13.23,11,Standard,124.18,26.52665056,13 Years and 4 Months,Yes,565.128007,178.9199289,High_spent_Large_value_payments,550.7257307,0,-1.3828,-0.004,-2.171,-0.3359,0.8459 +0xb5e1,CUS_0x3f42,August,25,214-44-4143,Journalist,77224.88,6221.406667,2,1,11.28836175,4,"Student Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",8.680453053,9,0.47,6,Good,809.539041,28.54273727,24 Years and 4 Months,No,224.1707891,,Low_spent_Medium_value_payments,124.8121809,0,1.1353,1.1195,0.183,-0.6864,-0.333 +0xb5ed,CUS_0x46e8,August,21,084-77-0393,Architect,47631.96,3640.396464,5,4,17,5,"Debt Consolidation Loan, Payday Loan, Auto Loan, Mortgage Loan, and Not Specified",15.52030704,15,11.91,8,_,1203.002256,31.17118174,10 Years and 0 Months,Yes,565.1074777,280.4870098,Low_spent_Medium_value_payments,278.4147754,0,-1.0811,0.1426,-0.4558,-2.0426,1.5377 +0xb5f9,CUS_0xa041,August,55,216-08-7192,Doctor,148678.44,12353.87,3,4,0.288361749,0,Mortgage Loan,,6,7.66,0,Good,830.1408371,37.86961808,15 Years and 11 Months,No,109.1743903,625.8748828,High_spent_Large_value_payments,1186.678989,0,-0.5207,-0.049,1.1221,0.3931,-0.0276 +0xb605,CUS_0x8822,August,21,164-20-1767,Journalist,26697.27,,4,7,10,4,"Credit-Builder Loan, Personal Loan, Student Loan, and Credit-Builder Loan",,19,13.85,9,Standard,942.4,26.69601962,28 Years and 10 Months,Yes,72.56008125,158.5964249,Low_spent_Large_value_payments,266.7207438,0,-0.7988,0.8489,0.6438,-0.3157,1.9376 +0xb611,CUS_0xb6a5,August,20,986-22-2853,Architect,71633.48,5783.456667,5,4,2.288361749,0,,2.381965213,4,9.18,6,Good,157.93,26.49095167,33 Years and 2 Months,No,0,,Low_spent_Small_value_payments,93.85395294,0,0.9405,-1.2801,-1.8954,0.6547,-0.4846 +0xb61d,CUS_0x8d56,August,37,063-47-6931,Engineer,43395.09,,1,3,4,3,"Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",8.3865494,9,6,9,_,1103.7,33.04229314,33 Years and 0 Months,No,74.86925046,39.60267116,High_spent_Medium_value_payments,491.7538284,0,-0.9951,0.4291,0.4086,0.2043,0.066 +0xb629,CUS_0x6e43,August,46,409-83-0158,Scientist,19956.6,,6,5,15,0,,,18,5.77,11,Standard,415.74,35.53837165,26 Years and 4 Months,Yes,0,165.1973472,Low_spent_Small_value_payments,285.8076528,0,-2.0015,1.3354,0.6404,1.4004,1.1563 +0xb635,CUS_0xa23e,August,18,266-46-9280,Developer,71625.2,6031.766667,4,2,2,0,,0,3,0.74,4,Good,461.75,38.11510211,21 Years and 2 Months,No,0,,Low_spent_Medium_value_payments,534.78864,0,-0.6398,0.1001,0.9737,-1.1118,-0.3637 +0xb641,CUS_0x880b,August,24,790-45-5982,_______,7830.03,775.5025,8,7,30,5,"Payday Loan, Home Equity Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",,25.03507547,0.92,10,Bad,1386.148008,33.39744669,5 Years and 11 Months,Yes,31.59359991,,High_spent_Medium_value_payments,287.5668453,0,-1.3033,-0.2462,0.8063,-0.9526,-1.0519 +0xb64d,CUS_0x3911,August,23,#F%$D@*&8,Doctor,61839.26,5162.271667,4,5,12,0,,0,1,-2.73,0,Good,1014.5,36.46171356,23 Years and 5 Months,No,0,108.0628657,High_spent_Medium_value_payments,658.1643009,0,-0.0042,-0.1849,-0.8213,0.3475,-0.8379 +0xb659,CUS_0x2e7f,August,18,246-36-2777,Manager,123242.36,,5,3,9,2,"Student Loan, and Not Specified",24.08005622,18,11.73,6,Standard,37.69,28.01673189,24 Years and 8 Months,Yes,180.1007912,240.8140683,High_spent_Large_value_payments,870.5048072,0,-0.835,0.5721,0.9226,0.4127,0.9496 +0xb665,CUS_0x1b02,August,57,683-17-8939,Architect,12743.995,,3,4,8,2,"Student Loan, and Personal Loan",17.29833494,12,7.22,6,Standard,872.9956848,26.19808897,24 Years and 2 Months,No,12.86726798,53.30118493,Low_spent_Medium_value_payments,347.5029022,0,-0.8444,1.7893,-1.4503,-0.2199,0.0927 +0xb671,CUS_0x718a,August,24,981-14-9909,Teacher,18001.59,,7,9,32.06745738,2,"Credit-Builder Loan, and Mortgage Loan",32.24624467,21.55069983,16.34,12,Bad,2690.589045,32.02189006,20 Years and 3 Months,Yes,24.98644681,97.60876861,Low_spent_Small_value_payments,266.4977466,0,0.7105,-0.8822,-1.3536,-1.6989,1.0147 +0xb67d,CUS_0x1b9a,August,20,195-20-9615,_______,29892.37,,7,3,13,2,"Credit-Builder Loan, and Credit-Builder Loan",7.041495636,8,16.11,5,Standard,604.5238715,24.44201616,31 Years and 9 Months,Yes,29.95982727,76.38477012,High_spent_Medium_value_payments,420.7483847,0,-1.7414,-0.545,-2.1626,-0.0559,1.371 +0xb689,CUS_0xbd59,August,50,436-61-5981,Teacher,105226.98,8744.915,1,2,8,4,"Student Loan, Payday Loan, Auto Loan, and Home Equity Loan",6.162461028,6,6.67,8,Good,1010.06,36.40985256,26 Years and 10 Months,No,210.2506732,179.9967038,High_spent_Large_value_payments,724.244123,0,0.2565,0.515,1.6171,0.3955,-1.0667 +0xb695,CUS_0x1b0a,August,35,777-41-6594,Writer,30988.61,,5,3,11,0,,0.711017028,3,7.32,3,_,820.56,33.85552425,17 Years and 9 Months,No,0,35.98683832,High_spent_Medium_value_payments,492.6515783,0,-0.2126,-0.1133,-0.0773,0.3616,-0.5814 +0xb6a1,CUS_0xab3a,August,24,858-31-4023,Developer,86304.38,6471.440652,5,2,11.28836175,0,Debt Consolidation Loan,9.487404453,10,2.67,1,Good,5.851488757,31.98122019,32 Years and 10 Months,No,748.2370373,938.9911103,High_spent_Small_value_payments,461.3151365,0,0.1211,0.9642,-0.4567,0.7981,0.8265 +0xb6ad,CUS_0x6f74,August,40,519-80-5348,Teacher,18623.41,1764.950833,8,7,22.06745738,4,"Not Specified, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",33.70482068,15.01353157,15.41,13,Standard,2879.048061,35.71055384,20 Years and 4 Months,Yes,58.51794308,48.10813944,High_spent_Small_value_payments,303.1487129,0,-0.3406,-1.2316,-0.2832,0.3788,-0.6072 +0xb6b9,CUS_0x2468,August,45,733-64-4265,Journalist,10386.83,1095.569167,7,10,16.06745738,5,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Personal Loan",,25.44200533,24.51,15,Bad,4566.041143,33.03574022,13 Years and 4 Months,Yes,35.00271392,97.8088994,Low_spent_Small_value_payments,240.0250154,0,1.9689,1.3902,-0.7033,1.7185,1.0891 +0xb6c5,CUS_0x5edf,August,54,#F%$D@*&8,Lawyer,34476.64,,5,6,19,2,"Personal Loan, and Student Loan",6.080654651,9,7.44,2,Standard,697.4092846,24.41138211,24 Years and 0 Months,Yes,164.9956286,,Low_spent_Medium_value_payments,235.8594247,0,0.5243,-1.7561,0.7615,0.4059,-1.0438 +0xb6d1,CUS_0x6225,August,36,340-01-9048,Musician,144342.52,,0,1,11.28836175,0,Auto Loan,7.617026699,10,10.61,1,Good,1123.41,36.39854067,33 Years and 0 Months,No,104.5798686,597.8972739,High_spent_Large_value_payments,1169.414652,0,-1.2587,-0.2371,-1.2236,-1.2834,1.172 +0xb6dd,CUS_0x12fc,August,18,439-29-4580,Manager,128450.32,10943.19333,1,5,4,3,"Home Equity Loan, Student Loan, and Personal Loan",0,2,6.66,4,Good,22.08030069,29.21807,30 Years and 9 Months,NM,161.4875316,989.7211057,Low_spent_Medium_value_payments,367.7654207,0,-1.5106,-0.0315,-0.0983,-0.2069,-2.4679 +0xb6e9,CUS_0x53aa,August,39,291-32-9772,Writer,55139.82,4703.985,3,4,5,100,"Auto Loan, Auto Loan, Student Loan, and Mortgage Loan",23.33794924,,8.4,11,_,95.73,24.01618614,25 Years and 4 Months,Yes,110.39204,286.0075597,Low_spent_Medium_value_payments,353.9989003,0,-0.7768,-1.2523,0.3337,-0.8192,0.0544 +0xb6f5,CUS_0x5d1c,August,19,204-41-9068,Accountant,92497.5,7899.125,3,3,2.288361749,0,,0,2,0.52,0,Good,406.94,33.86470025,29 Years and 8 Months,No,0,561.0933255,High_spent_Large_value_payments,888.7566355,0,-0.402,-1.6423,-0.7655,0.2578,-0.4028 +0xb701,CUS_0x5a89,August,22,574-51-2436,Developer,28405.61,,7,7,6,3,"Student Loan, Auto Loan, and Personal Loan",,17,8.42,4,Standard,582.97,25.93954353,23 Years and 4 Months,No,45371,39.36913886,High_spent_Medium_value_payments,418.1853028,0,2.76,-0.6766,0.5947,-0.9657,-2.7061 +0xb70d,CUS_0x6f2a,August,36,268-16-4575,Journalist,151295.4,12378.40377,2,7,3,4,"Home Equity Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",90,2529,0.03,6,_,153.31,33.70775067,28 Years and 2 Months,No,729.4903435,,Low_spent_Medium_value_payments,180.8384863,0,1.0124,-0.7668,1.4227,0.0208,0.042 +0xb719,CUS_0xa062,August,44,048-21-3119,Doctor,63079.46,4966.621667,2,4,11,4,"Personal Loan, Payday Loan, Personal Loan, and Not Specified",12.53365115,13,0.72,0,_,776.4749236,35.7140234,,No,110.2345173,127.6782585,High_spent_Large_value_payments,515.9799979,0,0.2828,-0.5762,-0.6344,-0.0979,1.6853 +0xb725,CUS_0xb14a,August,20,493-18-7194,Developer,18084.08,1740.006667,7,5,29,3,"Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",,25.52911786,9.86,8,Bad,2626.758479,26.23481171,,Yes,42.92277704,81.64598023,Low_spent_Small_value_payments,339.4319094,0,-0.968,2.7662,0.6916,0.81,0.1457 +0xb731,CUS_0xad5e,August,32,467-83-2406,Lawyer,15769.54,,8,6,2023,2,"Credit-Builder Loan, and Home Equity Loan",25.04565204,19.0732993,7.02,14,_,1750.147339,32.01979444,6 Years and 8 Months,Yes,18.98573219,99.5911638,Low_spent_Small_value_payments,315.2359373,0,0.0931,0.3489,0.2269,-0.2273,-0.2855 +0xb73d,CUS_0x6b79,August,31,594-68-8045,Doctor,33656.12,2821.676667,9,8,28.06745738,8,"Student Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",41.84881758,25,6.42,9,Bad,2405.390954,35.54481434,15 Years and 9 Months,NM,215.3526595,111.6899126,!@9#%8,208.4048067,0,-0.4827,0.8484,0.8274,-0.9297,-0.2628 +0xb749,CUS_0x9e21,August,35,359-87-6453,Media_Manager,62168.04,5224.67,3,6,12.28836175,4,"Home Equity Loan, Personal Loan, Auto Loan, and Mortgage Loan",18.84994459,16,11.46,4,Standard,135.72,27.50940849,16 Years and 4 Months,NM,177.2141847,743.6608694,Low_spent_Large_value_payments,291.529407,0,0.821,0.2781,0.457,-0.0676,1.4988 +0xb755,CUS_0x6256,August,31,483-56-8418,Musician,17251,1226.583333,10,6,19,100,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Not Specified, and Student Loan",,22,28.05,10,_,4537.36,38.28457714,,Yes,49.92020787,88.42326239,Low_spent_Large_value_payments,254.3148631,0,0.0345,-0.612,0.9736,1.1482,0.8783 +0xb761,CUS_0x2ec3,August,32,499-61-1229,Teacher,116690.94,,2,4,5.288361749,2,"Auto Loan, Payday Loan, and Personal Loan",,11,6.14,6,Good,1096.42,36.77491689,28 Years and 6 Months,No,233.5025052,1484.643285,Low_spent_Small_value_payments,,0,1.0023,-1.0617,-2.0837,0.3613,0.8694 +0xb76d,CUS_0x269f,August,35,890-67-9419,Writer,140964.08,,5,7,1.288361749,2,"Debt Consolidation Loan, Auto Loan, and Home Equity Loan",13.81959288,12.52312381,11.96,113,Good,1197.268671,39.77150542,24 Years and 9 Months,No,292.7015662,590.324938,High_spent_Large_value_payments,951.8116234,0,1.8156,-0.2317,0.6021,1.9056,1.7247 +0xb779,CUS_0x4ebb,August,43,494-02-8633,_______,67583.2,5884.933333,8,8,19.95700519,8,"Debt Consolidation Loan, Payday Loan, Not Specified, Home Equity Loan, Home Equity Loan, Payday Loan, Payday Loan, and Not Specified",,18.52722256,9.85,17,Bad,4822.681518,35.89330556,6 Years and 6 Months,Yes,1724.82793,128.3674686,High_spent_Medium_value_payments,264.2475653,0,-0.3877,1.1571,1.6521,0.666,-0.5101 +0xb785,CUS_0xec3,August,28,063-94-6538,Scientist,9347.59,812.9658333,10,5,20.06745738,4,"Personal Loan, Student Loan, Credit-Builder Loan, and Auto Loan",,26.30923502,13.48,12,Bad,2273.821712,38.06327242,16 Years and 11 Months,Yes,15.79665189,44.82167763,Low_spent_Medium_value_payments,273.9579659,0,-1.2979,-0.7737,-0.4436,0.7973,1.0987 +0xb791,CUS_0x35fe,August,32,074-52-8105,Lawyer,31429.85,2879.154167,6,5,5,2,"Mortgage Loan, and Not Specified",26.79366252,20,9.03,2,Standard,817.9708839,28.58162601,17 Years and 0 Months,NM,48.43796806,82.58831615,High_spent_Large_value_payments,405.52424,0,-1.7703,0.2433,0.9943,-1.4848,0.1459 +0xb79d,CUS_0xc38e,August,19,780-64-9115,Journalist,61567.05,,8,5,31,5,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",28.25477848,16.98165042,5.15,7,Bad,1681.169292,29.47072151,11 Years and 5 Months,Yes,153.7755245,190.547079,Low_spent_Medium_value_payments,452.0361464,0,-1.621,-0.1523,0.8259,-0.8195,-0.3806 +0xb7a9,CUS_0x67bb,August,34,952-70-2786,Architect,86567.96,6326.657281,3,7,0.288361749,0,Debt Consolidation Loan,8.921455953,10,0.87,2,Good,807.8856742,28.2611201,24 Years and 11 Months,No,698.5065572,478.1846572,High_spent_Large_value_payments,820.0527865,0,-0.1728,0.3604,0.1378,-0.9146,0.1641 +0xb7b5,CUS_0x8a70,August,41,957-97-1235,Teacher,87603.24,,0,7,8,4,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",,1,-0.64,6,Good,194.3728175,35.29752993,20 Years and 4 Months,No,290.6612436,302.7827551,High_spent_Medium_value_payments,429.3347875,0,-1.9824,1.9819,-0.3769,1.5747,0.1433 +0xb7c1,CUS_0x6fb9,August,24,918-42-3999,Manager,20027.29,,6,9,27.06745738,5,"Debt Consolidation Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,11.89073824,19.3,12,Standard,2606.337559,33.04861704,7 Years and 0 Months,Yes,52.27417786,23.28897177,!@9#%8,296.9106458,0,0.2148,-1.4715,0.6878,-0.5191,1.2145 +0xb7cd,CUS_0x9de2,August,58,568-59-4064,Entrepreneur,31923.73,2506.310833,7,6,14.28836175,0,,10.00969233,10,10.37,1,Standard,51.34550189,26.54634116,29 Years and 6 Months,Yes,0,665.9644193,Low_spent_Large_value_payments,297.8437443,0,-0.8034,-0.5734,-0.3169,0.6656,-0.34 +0xb7d9,CUS_0x2541,August,27,842-08-3305,_______,14411.34,,10,9,29,9,"Home Equity Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Not Specified, Auto Loan, and Personal Loan",38.43912731,22,19.77,7,Bad,4716.04,36.16611707,,Yes,56.01518548,60.10897156,Low_spent_Medium_value_payments,257.770343,0,-2.3127,0.0585,-0.7735,-0.4034,-0.1111 +0xb7e5,CUS_0x57c,August,26,796-76-1915,Accountant,52984.53,4272.3775,8,7,17.06745738,8,"Student Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",,23,26.85,13,Bad,3752.290954,40.10165767,12 Years and 5 Months,Yes,291.209144,160.4409073,High_spent_Medium_value_payments,198.8674107,0,-0.0661,-0.3015,-1.3513,-1.0979,-0.7678 +0xb7f1,CUS_0x1414,August,46,960-30-9698,Journalist,51093.12,4080.76,8,9,25.88954781,6,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Payday Loan",,22,27.67,12,Bad,3628.5,30.71488668,11 Years and 2 Months,Yes,1569.57204,330.9223634,Low_spent_Small_value_payments,103.2515158,0,0.1762,-1.1355,-0.0369,-0.0905,-1.0923 +0xb7fd,CUS_0x646d,August,26,660-74-0810,Writer,45230.85,3471.2375,7,7,26,6,"Mortgage Loan, Mortgage Loan, Personal Loan, Auto Loan, Home Equity Loan, and Not Specified",,20.26757855,10.23,10,Standard,1941.936906,33.65509734,8 Years and 6 Months,Yes,212.6730074,363.4851423,Low_spent_Small_value_payments,60.96560031,0,2.0553,-0.4173,-0.8342,0.6964,0.5509 +0xb809,CUS_0xac56,August,29,565-66-0493,Lawyer,120889.62,10100.135,3,6,7,0,,,1.133196158,0.97,3,Good,1355.899506,41.41234588,20 Years and 8 Months,No,0,226.7611175,High_spent_Medium_value_payments,1033.252382,0,-2.2329,0.142,1.1341,-0.8447,0.0157 +0xb815,CUS_0x67c6,August,21,#F%$D@*&8,Musician,18246.25,1410.520833,4,4,4,2,"Credit-Builder Loan, and Personal Loan",7.879717756,8.162677789,5.46,4,Good,931.9858164,31.99108211,31 Years and 11 Months,No,25.20632569,181.514154,Low_spent_Small_value_payments,224.3316036,0,0.6578,-0.8701,2.096,-0.0478,-0.1371 +0xb821,CUS_0x599f,August,42,#F%$D@*&8,Doctor,34352.2,2573.683333,6,6,26.06745738,6,"Mortgage Loan, Personal Loan, Student Loan, Not Specified, Student Loan, and Auto Loan",,15,26.68,8,_,3807.540954,24.86834423,7 Years and 6 Months,Yes,140.5507562,329.5726454,Low_spent_Small_value_payments,50.52464377,0,-1.1556,-0.0785,-0.7131,0.3854,0.7503 +0xb82d,CUS_0x29fa,August,23,087-05-4939,Musician,35248.41,2683.3675,6,5,11.28836175,4,"Payday Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",20.50392142,18,8,1,Standard,430.56,24.84235813,26 Years and 0 Months,Yes,96.59653294,481.6103022,High_spent_Large_value_payments,350.0673759,0,1.1953,1.7238,-0.5491,-0.3796,-0.4349 +0xb839,CUS_0x7b3,August,32,676-41-8343,Accountant,20121.97,,8,6,21.06745738,9,"Personal Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Payday Loan, Home Equity Loan, Auto Loan, Auto Loan, and Student Loan",44.31188413,29.78361135,22.36,11,Bad,5796.852596,37.485361,9 Years and 3 Months,Yes,121.5196296,,Low_spent_Small_value_payments,144.2109515,0,0.97,0.3693,-1.378,0.7585,0.0416 +0xb845,CUS_0x73e8,August,39,124-68-9447,Writer,9500.235,,4,3,11,3,"Student Loan, Home Equity Loan, and Student Loan",17.57845182,,2.3,4,_,416.6716033,32.86709009,31 Years and 3 Months,No,17.71699643,105.3084654,Low_spent_Small_value_payments,274.4082169,0,0.5069,-0.6829,-0.2976,-0.5113,1.9201 +0xb851,CUS_0xaed6,August,45,768-75-7275,Lawyer,16096.54,,3,4,13,1,Credit-Builder Loan,11.28741914,11,11.84,3,Standard,815.4599199,27.96402459,28 Years and 4 Months,Yes,12.5675806,37.09278415,High_spent_Small_value_payments,341.0759221,0,-1.3604,0.4748,0.486,1.0261,0.9101 +0xb85d,CUS_0x7570,August,29,389-19-4125,Architect,146090.64,12283.22,3,7,11,0,,,8,6.08,1,Standard,909.23,40.82670371,21 Years and 10 Months,No,0,235.8910791,High_spent_Large_value_payments,1232.430921,0,-1.069,-1.1027,-0.8548,-0.3922,1.41 +0xb869,CUS_0x19a5,August,27,#F%$D@*&8,Doctor,8493710,3136.363333,4,4,7,1,Credit-Builder Loan,17.0819801,16,13.03,0,Standard,90.37,34.47893561,25 Years and 6 Months,Yes,28.44768635,,Low_spent_Medium_value_payments,434.8834419,0,2.8148,0.4424,-0.5153,0.0206,0.5406 +0xb875,CUS_0xbe46,August,20,257-88-2315,Architect,68369.88,,4,5,11,2,"Payday Loan, and Auto Loan",,20,9.66,2,Standard,40.13,35.92646916,16 Years and 6 Months,No,40101,,Low_spent_Small_value_payments,152.4667086,0,1.0774,1.5394,1.3733,-0.2172,1.77 +0xb881,CUS_0x6075,August,19,008-47-5004,Musician,29223.35,2611.279167,5,3,18,3,"Auto Loan, Auto Loan, and Auto Loan",27.92634637,19,8.83,3,Standard,436.64,36.69114223,,No,64.13026798,167.4554665,Low_spent_Large_value_payments,299.5421821,0,0.3837,-0.2723,-0.3805,-0.2872,-0.8418 +0xb88d,CUS_0xa9bb,August,24,#F%$D@*&8,Entrepreneur,84408.16,7211.013333,4,5,18,3,"Credit-Builder Loan, Student Loan, and Payday Loan",,13.56699842,13.29,8,Standard,710.2651288,37.05399994,7 Years and 9 Months,NM,174.7990344,165.2564269,High_spent_Medium_value_payments,631.045872,0,-0.6048,-0.2447,0.2912,0.368,0.1775 +0xb899,CUS_0x2176,August,37,308-31-8537,Writer,94053.57,,4,4,14,3,"Auto Loan, Personal Loan, and Not Specified",17.25614446,12,11.96,0,Standard,815.38,34.65891648,26 Years and 11 Months,No,197.1324869,89.31598569,High_spent_Medium_value_payments,759.0312774,0,0.1096,0.0206,0.0942,-0.4712,1.9783 +0xb8a5,CUS_0x4b7f,August,25,373-88-8828,Architect,15936.77,,6,8,25.06745738,7,"Payday Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",,24,,11,Bad,3157.680954,30.76799207,11 Years and 3 Months,Yes,53.92352059,142.7343093,Low_spent_Small_value_payments,183.0282989,0,1.6435,0.928,0.2412,0.3179,0.0101 +0xb8b1,CUS_0x3c82,August,55,145-41-0611,Architect,26877.26,2081.771667,4,6,12,0,,14.84672797,12,10.65,2,Standard,274.99,40.270568,23 Years and 6 Months,Yes,0,196.990047,Low_spent_Small_value_payments,301.1871197,0,1.2645,-1.8845,0.9257,0.1638,-0.617 +0xb8bd,CUS_0x699d,August,27,508-05-9026,Developer,73431.2,6296.266667,3,7,9,4,"Student Loan, Not Specified, Auto Loan, and Student Loan",14.30877427,12,16.44,8,Standard,1965.63,39.14265414,6 Years and 8 Months,Yes,200.3052304,211.8488309,High_spent_Medium_value_payments,467.4726054,0,-0.6434,0.6135,0.6443,0.8671,0.4502 +0xb8c9,CUS_0x1b21,August,31,382-04-7153,_______,134928.36,11197.03,1,5,6,0,,,11,7.25,7,_,532.0501892,38.59693287,21 Years and 5 Months,No,0,419.4714171,Low_spent_Medium_value_payments,1027.086622,0,-1.1317,-1.2635,0.4891,-0.9817,0.2292 +0xb8d5,CUS_0xa0c3,August,59,355-23-1301,Lawyer,101112.6,8600.05,8,6,4,2,"Auto Loan, and Mortgage Loan",,20,1.42,2,Good,364.4278965,36.51615971,29 Years and 3 Months,No,143.8567345,151.775738,High_spent_Large_value_payments,824.0774429,0,-0.0994,0.1526,-0.0672,0.6886,-0.2501 +0xb8e1,CUS_0x26b0,August,46,286-29-0244,_______,14584.2,,8,9,16.06745738,4,"Mortgage Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",21.5673931,9,19.9,12,_,1778.640954,34.97496835,,Yes,46.13828287,,High_spent_Small_value_payments,244.1089895,0,-1.6651,-0.3026,0.4096,-0.9549,0.8533 +0xb8ed,CUS_0x34ad,August,23,344-23-8384,Engineer,107334.88,8883.573333,8,5,7.288361749,0,,14.62006506,13,18.52,6,Standard,508.85,41.30587841,23 Years and 9 Months,Yes,0,618.9832105,High_spent_Medium_value_payments,939.3115838,0,-0.504,0.4974,0.4049,0.5071,0.0375 +0xb8f9,CUS_0xc305,August,27,656-31-5843,Media_Manager,42098.93,3220.244167,4,6,3,3,"Not Specified, Debt Consolidation Loan, and Personal Loan",12.4678772,8.131435891,11.73,5,Good,1058.137691,35.40127711,19 Years and 9 Months,No,63.69184783,165.2517532,Low_spent_Medium_value_payments,373.0808156,0,0.7968,0.0323,-1.0624,-1.0603,0.9617 +0xb905,CUS_0x8f7b,August,35,220-96-8677,Lawyer,163032.6,,4,3,5,1,Student Loan,6.793307257,6,8.3,3,Good,16.81997697,23.20386543,20 Years and 4 Months,No,120.6482115,1388.110096,Low_spent_Medium_value_payments,244.518242,0,-0.0337,-0.7871,0.6697,-1.152,0.1618 +0xb911,CUS_0xc2b5,August,19,733-62-4701,Scientist,69736.92,6091.41,6,10,26,5,"Credit-Builder Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",22.71341548,18,16.16,8,Bad,4401.517743,39.53156426,6 Years and 11 Months,Yes,186.2731752,,High_spent_Large_value_payments,508.1087779,0,-0.2218,0.9411,-0.8696,-0.1872,1.9628 +0xb91d,CUS_0xc3f2,August,20,#F%$D@*&8,Engineer,76909.76,,10,8,32,9,"Mortgage Loan, Credit-Builder Loan, Payday Loan, Not Specified, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",25.38565207,,18.45,12,Bad,4779.36,28.2078113,11 Years and 0 Months,Yes,576.2792649,647.5883187,Low_spent_Medium_value_payments,,0,0.385,-0.2382,1.1039,0.9489,0.1517 +0xb929,CUS_0x62b7,August,45,055-47-7711,Musician,41811.51,,4,4,3,3,"Auto Loan, Personal Loan, and Home Equity Loan",0,0,9.16,4,Good,1137.64,25.3876653,32 Years and 9 Months,No,68.27704539,30.46806328,High_spent_Large_value_payments,485.3841413,0,-0.4088,1.6856,-0.7544,0.2557,0.157 +0xb935,CUS_0x56d7,August,44,015-14-5182,Manager,40678.44,3631.87,8,4,19,1,Credit-Builder Loan,,18,12.93,7,Standard,1301.75,26.53693141,13 Years and 4 Months,Yes,32.86685373,206.5546733,Low_spent_Large_value_payments,393.765473,0,-1.1188,0.3187,0.7011,-0.1668,-0.5264 +0xb941,CUS_0x5537,August,42,160-41-2527,Scientist,14807.4,1030.955151,10,7,22,9,"Not Specified, Credit-Builder Loan, Student Loan, Not Specified, Not Specified, Auto Loan, Auto Loan, Payday Loan, and Payday Loan",30.87220967,19,25.32,7,Bad,3959.86,33.66751722,10 Years and 10 Months,Yes,120.1660519,,High_spent_Medium_value_payments,254.0697774,0,0.1765,-0.8753,0.5165,-0.739,1.3566 +0xb94d,CUS_0x7c06,August,51,494-74-7035,Accountant,61683.18,4941.265,4,3,3,4,"Credit-Builder Loan, Student Loan, Auto Loan, and Credit-Builder Loan",5.754827167,6,8.29,3,Good,553.0165228,24.14289714,22 Years and 6 Months,No,128.3843569,163.7537693,High_spent_Medium_value_payments,467.2378672,0,-0.7659,1.6056,1.4662,-0.062,0.1731 +0xb959,CUS_0x83fe,August,24,479-47-1083,Scientist,79284.92,6426.076667,8,5,15,100,"Auto Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Not Specified",,27.9022641,23.72,,Bad,3094.577155,26.154001,1 Years and 9 Months,Yes,374.3950465,222.3840084,Low_spent_Medium_value_payments,325.8286117,0,-0.7589,0.5347,-0.9435,-0.5773,-1.2521 +0xb965,CUS_0x4cad,August,35,179-19-0691,Architect,49131.42,3864.285,10,9,25.88954781,7,"Mortgage Loan, Personal Loan, Student Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",40.67830456,26.88324641,19.9,12,Bad,5046.815576,25.06981095,9 Years and 5 Months,Yes,1488.779752,,Low_spent_Small_value_payments,205.6963726,0,-1.5463,0.7048,-1.9314,0.6952,0.1178 +0xb971,CUS_0x5540,August,31,371-69-7764,Lawyer,17486.55,1389.2125,9,5,35.06745738,2,"Personal Loan, and Student Loan",47.35259477,26.44125075,2.82,12,Bad,2886.294619,26.8554783,6 Years and 8 Months,Yes,24.14454259,,Low_spent_Small_value_payments,237.5384575,0,1.2927,0.602,0.5023,-1.6568,0.7883 +0xb97d,CUS_0x79d7,August,21,060-18-9691,Developer,36319.38,2915.615,10,5,30.06745738,5,"Not Specified, Not Specified, Mortgage Loan, Payday Loan, and Personal Loan",47.26399347,23.66774454,-3.52,10,Bad,2926.932312,41.00254327,9 Years and 11 Months,Yes,113.6170148,64.09581046,High_spent_Large_value_payments,327.1283868,0,0.6215,-0.771,-1.9297,0.0187,0.9552 +0xb989,CUS_0x78f8,August,50,#F%$D@*&8,_______,14831.815,1096.984583,5,5,6,2,"Mortgage Loan, and Auto Loan",,14,8.17,4,Standard,1490.48,33.22155198,28 Years and 5 Months,Yes,22.61391464,55.1603044,Low_spent_Small_value_payments,321.9242393,0,-1.2146,0.2859,1.4978,-1.0364,-0.1425 +0xb995,CUS_0x9f08,August,37,214-00-2112,Journalist,10091.225,759.9354167,5,6,18,2,"Mortgage Loan, and Not Specified",21.50005496,16,4.21,4,Standard,855.24,27.28621921,21 Years and 6 Months,No,16.39534166,50.85376614,Low_spent_Small_value_payments,298.7444339,0,1.5744,-0.0778,0.3662,2.0922,0.4415 +0xb9a1,CUS_0x522d,August,48,833-66-4735,Media_Manager,30092.13,,1,3,8.288361749,2,"Payday Loan, and Auto Loan",0,3,1.58,4,Good,187.8035964,23.45049969,30 Years and 10 Months,No,35.75619336,632.3417577,Low_spent_Large_value_payments,274.3314517,0,0.7251,-0.9149,-0.3631,0.6741,1.393 +0xb9ad,CUS_0x16fd,August,34,953-21-5076,Architect,10227.53,987.2941667,9,6,23.06745738,6,"Payday Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",,22.98740974,2.38,8,_,2050.589948,37.62866288,8 Years and 4 Months,Yes,42.27073229,,Low_spent_Medium_value_payments,235.3924728,0,-0.7741,0.1976,0.1653,-0.9984,0.3213 +0xb9b9,CUS_0x34fa,August,35,#F%$D@*&8,Mechanic,60303.3,4756.275,10,6,25,2,"Personal Loan, and Auto Loan",22.8951607,14.08021718,11.78,6,Standard,2891.719344,36.23377311,13 Years and 8 Months,Yes,63.9508919,154.8386136,High_spent_Medium_value_payments,506.8379945,0,-0.5078,-1.9001,1.1661,-1.1484,-0.8372 +0xb9c5,CUS_0xb69d,August,39,719-93-0101,Architect,68876.12,5499.676667,3,7,16,7,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Payday Loan",,,12.58,8,Standard,1420.340868,29.21447332,20 Years and 3 Months,NM,275.2282431,,Low_spent_Medium_value_payments,77.73744324,0,-1.9867,-0.4353,1.6656,-0.565,-0.2006 +0xb9d1,CUS_0x6fa4,August,20,945-98-1078,Manager,20049.97,,8,5,18.06745738,6,"Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Student Loan, and Debt Consolidation Loan",23.90304834,16.31228373,1.75,7,_,2213.855869,32.78619827,16 Years and 5 Months,Yes,93.3227717,27.6935215,High_spent_Medium_value_payments,248.5465022,0,-1.2259,-0.1459,-1.3809,1.1724,1.4494 +0xb9dd,CUS_0x1032,August,40,620-58-8045,Lawyer,60410.94,5274.245,4,7,17,4,"Student Loan, Home Equity Loan, Not Specified, and Payday Loan",11.37217608,9,10.65,9,Standard,1852.86,31.80839554,16 Years and 3 Months,Yes,149.9263874,481.4927769,!@9#%8,176.0053357,0,-1.1964,-0.3143,-0.0398,0.5357,-1.2533 +0xb9e9,CUS_0x643b,August,30,669-61-1409,Architect,176572.12,,3,1125,9.288361749,0,Payday Loan,5.855003771,9,0.98,2,Good,1284.88,33.88142321,16 Years and 4 Months,No,135.0707336,10419.93746,Low_spent_Small_value_payments,,0,0.4707,-0.5358,2.1594,-0.8256,-0.612 +0xb9f5,CUS_0x3756,August,33,207-29-0604,Teacher,16046.46,,4,4,19,3,"Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",5.235805268,5,17.38,8,Standard,1925.94,27.68915958,8 Years and 9 Months,Yes,36.94910155,41.4408791,High_spent_Medium_value_payments,293.4305193,0,0.3521,0.4061,-0.2337,-0.2335,0.7462 +0xba01,CUS_0xb744,August,50,778-78-5622,Engineer,130169.92,11110.49333,8,6,17,1,Debt Consolidation Loan,16.56915986,12,9.62,2,Standard,354.32,34.62314385,33 Years and 4 Months,Yes,91.75812808,172.0346351,High_spent_Medium_value_payments,1097.25657,0,-0.3939,-0.4314,1.0067,0.3511,1.0025 +0xba0d,CUS_0x7e0e,August,36,694-08-8573,Entrepreneur,113616.93,9715.0775,1,5,6.288361749,0,,,1,0.93,7,_,1034.247477,37.6799165,16 Years and 4 Months,NM,0,,Low_spent_Large_value_payments,472.3432366,0,-1.7517,-2.6651,0.1075,-0.0336,-0.0108 +0xba19,CUS_0x7b94,August,19,449-05-9106,Media_Manager,107427.99,8868.3325,8,3,20,1,Not Specified,,,5.76,,Standard,1124.02,38.17590127,,No,55.65910097,152.5520616,High_spent_Large_value_payments,918.6220874,0,0.3507,-0.4193,-0.2102,-0.3524,0.1073 +0xba25,CUS_0xa905,August,45,964-12-7807,Scientist,55473.18,4873.765,6,5,29,5,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Payday Loan, and Personal Loan",,28.25938146,28.72,11,Bad,3115.542198,39.88865693,5 Years and 6 Months,Yes,155.7531447,116.6939527,High_spent_Medium_value_payments,464.9294026,0,-0.9243,-0.3052,0.8792,-0.375,-0.952 +0xba31,CUS_0x4fb5,August,46,143-26-2300,Writer,15371.47,909.4252075,9,10,28.06745738,4,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Student Loan",21.11599707,11.63996888,12.6,13,Standard,1996.167999,39.2309516,6 Years and 0 Months,Yes,120.744677,,Low_spent_Small_value_payments,255.1901187,0,-0.8431,0.974,-1.1719,-0.5399,-0.4476 +0xba3d,CUS_0x2ad2,August,33,193-63-6325,Journalist,34947.63,3022.3025,3,7,20,4,"Not Specified, Home Equity Loan, Personal Loan, and Auto Loan",5.940332111,8,2.49,3,Standard,936.29,21.94516736,16 Years and 10 Months,No,77.86290674,10000,!@9#%8,278.5516154,0,0.164,-0.0827,0.6157,-1.3594,1.0598 +0xba49,CUS_0xbee4,August,39,832-11-8325,Writer,19769.99,,6,5,23,5,"Not Specified, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",18.47739461,14.07975976,19.38,15,Standard,1886.848068,28.68806198,7 Years and 9 Months,Yes,81.97653726,10000,Low_spent_Medium_value_payments,257.1914396,0,-0.2554,0.3392,-0.5611,0.0836,-0.2979 +0xba55,CUS_0xa977,August,22,863-63-0669,Teacher,15812.43,,10,8,16,5,"Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",27.66617991,20,25.17,7,Bad,3297.76,25.6544384,10 Years and 10 Months,Yes,98.7221197,92.34422787,Low_spent_Small_value_payments,269.4203426,0,-0.2388,1.9116,0.9198,0.6761,0.8573 +0xba61,CUS_0x660c,August,20,256-36-1361,Engineer,61936,5018.333333,10,8,29.06745738,8,"Personal Loan, Student Loan, Mortgage Loan, Student Loan, Not Specified, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",27.35330493,,17.03,13,Bad,3816.740954,25.33944767,9 Years and 4 Months,Yes,280.3936682,,High_spent_Small_value_payments,179.3061239,0,0.4653,0.5986,-0.7749,1.2886,0.4352 +0xba6d,CUS_0xc617,August,21,135-33-6057,_______,73798.76,6422.896667,6,4,8.288361749,4,"Personal Loan, Student Loan, Credit-Builder Loan, and Student Loan",12.86168998,13,18.32,3,Standard,757.01,39.74781824,28 Years and 5 Months,Yes,194.0499142,497.994231,High_spent_Large_value_payments,610.1829825,0,0.5197,-0.5576,-0.3067,-0.4491,0.0174 +0xba79,CUS_0x5c94,August,28,319-65-7987,_______,20734.16,1984.846667,7,5,20.06745738,1,Personal Loan,,15.40915493,10.51,5,Standard,1702.331625,40.94668827,23 Years and 6 Months,Yes,12.65310947,104.8842445,Low_spent_Medium_value_payments,334.2270247,0,-0.5548,0.428,-1.0801,0.3904,0.3257 +0xba85,CUS_0xbb7e,August,80,567-05-3763,Doctor,14515.84,,6,5,5,3,"Not Specified, Debt Consolidation Loan, and Mortgage Loan",22.56577275,17,14.36,5,_,1470.11,39.70018165,8 Years and 8 Months,Yes,34.8678013,145.5203838,Low_spent_Small_value_payments,221.9771483,0,-0.4167,2.0972,0.8816,0.081,-1.7038 +0xba91,CUS_0x7ae9,August,31,786-60-9786,Scientist,20611.96,,7,3,23,3,"Auto Loan, Not Specified, and Mortgage Loan",,9,11.23,11,Standard,1948.98,38.12698813,11 Years and 10 Months,Yes,50.21472817,167.45545,Low_spent_Small_value_payments,216.7961551,0,1.4732,-0.7627,-0.1984,-0.9338,-1.4004 +0xba9d,CUS_0x3d8e,August,20,382-00-6048,Writer,73026.92,,2,3,5.288361749,2,"Auto Loan, Debt Consolidation Loan, and Personal Loan",12.89375754,13,4.43,4,Good,98.77,24.9942129,21 Years and 8 Months,No,158.9594673,843.743602,Low_spent_Medium_value_payments,320.5920583,0,-0.0012,-0.2602,0.0458,0.1371,-0.8466 +0xbaa9,CUS_0x6b6a,August,28,800-83-7927,_______,29249.41,,8,4,12,3,"Debt Consolidation Loan, Not Specified, and Not Specified",17.4372272,11,11.76,7,Standard,439.34,22.22572889,11 Years and 11 Months,Yes,66.78069533,,!@9#%8,240.354507,0,-1.8061,0.6151,-0.2145,-1.9212,0.8265 +0xbab5,CUS_0x7910,August,35,995-60-4305,Developer,118645.8,,2,5,4.288361749,2,"Debt Consolidation Loan, Auto Loan, and Mortgage Loan",,10,5.56,4,Good,1480.89,34.62674298,29 Years and 3 Months,No,861.9171986,622.5425272,High_spent_Large_value_payments,840.5423591,0,-1.3359,0.2277,-0.0141,0.7543,-0.0065 +0xbac1,CUS_0x43c3,August,42,984-54-0054,Mechanic,14424.97,,7,3,11,4,"Debt Consolidation Loan, Student Loan, Personal Loan, and Auto Loan",,15.74238763,18.59,9,Standard,902.6263811,29.86248142,16 Years and 0 Months,NM,43.79255347,105.2668101,Low_spent_Small_value_payments,289.1487198,0,-1.2905,-0.2904,-0.7553,-1.1109,-0.3462 +0xbacd,CUS_0x5d7c,August,53,277-42-4936,Teacher,37921.22,2987.101667,0,7,4,3,"Debt Consolidation Loan, Payday Loan, and Personal Loan",0.30543355,4,6.92,5,Good,1077.93,24.1474428,,NM,56.65847858,217.2333077,Low_spent_Large_value_payments,294.8183804,0,-0.034,0.4737,0.1283,0.1658,-1.1189 +0xbad9,CUS_0x4905,August,25,279-96-5726,Doctor,34238.4,2586.2,7,3,8,1,Credit-Builder Loan,19.99326634,,17.02,6,Standard,322.94,36.03917028,,Yes,23.27391442,54.45233766,High_spent_Large_value_payments,420.8937479,0,-0.5801,-0.055,-1.6282,-0.2017,-0.7196 +0xbae5,CUS_0xa8ab,August,43,284-07-3579,Engineer,9956.91,575.7425,10,7,27.06745738,5,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",,19.39693362,21.3,12,Bad,5167.133146,36.41696213,0 Years and 10 Months,NM,27.10831559,57.55891009,Low_spent_Small_value_payments,236.1867364,0,1.8366,0.3046,-2.1966,-0.1004,-1.0719 +0xbaf1,CUS_0x5b0f,August,35,054-05-1824,Teacher,75908.66,6220.721667,4,4,11.28836175,4,"Student Loan, Student Loan, Debt Consolidation Loan, and Not Specified",7.064390522,9,8.49,3,Good,52.67175971,31.87685549,33 Years and 0 Months,No,186.2573969,699.3231495,Low_spent_Medium_value_payments,464.2518824,0,1.7774,-1.6424,0.6724,1.5774,0.1328 +0xbafd,CUS_0x7bf,August,32,330-17-2088,Engineer,17464.64,1720.386667,6,5,5,7,"Payday Loan, Student Loan, Mortgage Loan, Home Equity Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",,,16.89,9,Standard,257.0994681,37.54490532,18 Years and 10 Months,Yes,72.58155411,23.69853001,High_spent_Medium_value_payments,328.5484413,0,0.8619,-1.1868,1.8091,0.7633,0.5228 +0xbb09,CUS_0x9e3c,August,18,968-16-4399,Doctor,33579.27,,6,5,20,3,"Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",19.24021879,14,13.51,7,Standard,517.8,23.88385219,21 Years and 4 Months,Yes,70.92850704,105.5876486,High_spent_Medium_value_payments,325.8110944,0,-0.542,0.1502,1.8084,-0.1095,-0.6972 +0xbb15,CUS_0x4e38,August,20,209-58-8295,Scientist,121471.44,9960.62,1070,3,3,2,"Payday Loan, and Mortgage Loan",1.815491248,3,1.37,2,Good,736.68,43.58606843,26 Years and 8 Months,No,161.1631987,,High_spent_Medium_value_payments,865.6944244,0,-1.7214,0.8181,0.1492,-0.0051,1.4559 +0xbb21,CUS_0xbcdf,August,49,939-13-4346,Developer,68721.08,5560.756667,5,7,4,1,Home Equity Loan,11.94893912,12,8.55,7,Good,130.89,33.79426995,23 Years and 4 Months,No,47.83572622,181.6517022,High_spent_Small_value_payments,586.5882383,0,-1.6093,0.3506,0.462,2.481,-0.2046 +0xbb2d,CUS_0x71d2,August,53,585-04-2598,Doctor,20830.8,,8,3,19,1,Home Equity Loan,19.21871863,16,11.67,2,Standard,449.39,36.71745073,30 Years and 10 Months,Yes,12.3899666,41.37691543,!@9#%8,373.023118,0,1.507,0.2123,1.0147,0.5831,0.6043 +0xbb39,CUS_0x53cb,August,33,054-73-6887,Teacher,16072.1,1585.341667,8,4,16.06745738,7,"Not Specified, Personal Loan, Student Loan, Mortgage Loan, Student Loan, Payday Loan, and Home Equity Loan",8.395641545,5,13.21,10,Standard,1687.050954,24.6286729,14 Years and 4 Months,Yes,54.74915666,195.6492824,Low_spent_Small_value_payments,171.4154397,0,-1.5076,0.954,2.3004,0.2564,1.1952 +0xbb45,CUS_0x4a7,August,80,865-33-5347,Architect,45342.24,,6,8,32,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",,29.418862,8.74,9,Bad,2237.165569,34.0492861,17 Years and 11 Months,Yes,61.78736078,72.05702271,High_spent_Medium_value_payments,517.5076165,0,-0.0192,-1.108,0.3542,-1.971,-0.514 +0xbb51,CUS_0xc1b8,August,28,539-37-7476,Entrepreneur,59377.14,5040.095,8,3,15,7,"Mortgage Loan, Auto Loan, Mortgage Loan, Not Specified, Home Equity Loan, Mortgage Loan, and Mortgage Loan",,14.67686116,15.84,15,Standard,1458.795191,29.17162187,13 Years and 2 Months,Yes,214.1651086,10000,High_spent_Small_value_payments,393.3460964,0,0.5243,-1.2844,-0.3454,-1.8774,-0.573 +0xbb5d,CUS_0xb339,August,38,307-29-9070,Media_Manager,10363.95,786.6625,10,8,26.06745738,2,"Student Loan, and Mortgage Loan",33.22584447,16.84107542,12.24,12,Standard,2645.742054,34.90497268,10 Years and 2 Months,Yes,11.45128167,,!@9#%8,224.5759373,0,1.4885,0.8292,0.2223,-0.9307,-2.0008 +0xbb69,CUS_0x7542,August,33,103-81-5015,Doctor,26347.02,,4,7,17,2,"Personal Loan, and Home Equity Loan",,9,1.18,,Standard,409.12,39.58238183,19 Years and 2 Months,No,40.1496265,33.73819181,High_spent_Large_value_payments,372.1706817,0,-0.2568,0.1437,1.388,1.1046,0.1039 +0xbb75,CUS_0x3f7d,August,35,739-02-3276,_______,16676.72,1629.726667,9,6,22,8,"Student Loan, Personal Loan, Personal Loan, Payday Loan, Payday Loan, Home Equity Loan, Payday Loan, and Payday Loan",,19,,15,Bad,2255.57,39.3625191,19 Years and 10 Months,Yes,110.535576,81.98621436,High_spent_Small_value_payments,230.4508763,0,-0.2373,-1.8107,0.5146,1.7737,-1.3553 +0xbb81,CUS_0x35e4,August,38,643-80-3274,Entrepreneur,14453.63,1250.469167,9,6,23,4,"Payday Loan, Personal Loan, Mortgage Loan, and Student Loan",,23.53086023,2.67,12,Bad,1483.413488,37.29120917,13 Years and 9 Months,Yes,36.85546967,113.9080074,Low_spent_Small_value_payments,264.2834396,0,-0.1571,0.9594,-1.2997,-0.6892,-0.7043 +0xbb8d,CUS_0x6397,August,28,206-27-6666,Journalist,50885.37,,10,10,31,7,"Payday Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",43.03088086,29.0920766,5.75,12,Bad,2132.282908,26.73371101,11 Years and 0 Months,Yes,273.9898393,350.2221701,Low_spent_Large_value_payments,91.03274065,0,0.7069,0.1544,0.318,-0.6984,-0.9185 +0xbb99,CUS_0xaad,August,18,775-21-5508,Developer,38644.16,,6,8,29.06745738,5,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Auto Loan",30.44105748,20.49154881,26.19,13,Bad,3152.411134,31.79065887,9 Years and 4 Months,Yes,88.10659877,,Low_spent_Small_value_payments,81.40080001,0,0.3168,-0.2639,-0.0919,1.4743,-0.8892 +0xbba5,CUS_0x2358,August,40,914-64-8225,Musician,35760.12,2904.01,8,8,33.88954781,6,"Personal Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Student Loan",21.07785455,16,-0.39,12,Bad,1656.52,38.54629057,12 Years and 5 Months,NM,1423.335804,70.27836624,High_spent_Medium_value_payments,352.4567487,0,-2.065,0.0983,-1.6799,-0.7831,0.7783 +0xbbb1,CUS_0xa833,August,52,529-70-9876,Manager,17357.205,1588.43375,1,4,1,4,"Home Equity Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",6.052457001,9,2.07,2,Good,1076.46,34.41875233,30 Years and 3 Months,No,40.97949325,103.3183651,Low_spent_Medium_value_payments,294.5455166,0,-1.2924,0.7809,-0.5525,-2.1646,-0.0384 +0xbbbd,CUS_0x873b,August,32,261-27-4967,Doctor,99854.67,8263.2225,4,6,15.28836175,4,"Mortgage Loan, Auto Loan, Payday Loan, and Not Specified",16.45209731,16,1.13,2,Standard,871.36,25.46886282,19 Years and 11 Months,NM,255.8694112,1173.915558,Low_spent_Medium_value_payments,96.47474232,0,-0.9188,1.0102,0.1047,0.3517,0.3369 +0xbbc9,CUS_0xaa56,August,41,754-89-1562,Manager,57258.28,4694.523333,4,6,25,7,"Payday Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,16.11274613,15.71,10,Standard,2597.401482,39.19713137,10 Years and 10 Months,Yes,320.2972698,107.2253871,High_spent_Medium_value_payments,291.9296765,0,-1.0145,-0.36,0.3688,-0.1846,0.0394 +0xbbd5,CUS_0x5e3d,August,38,839-54-5661,Musician,26508.58,2500.048333,5,7,12,3,"Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",25.42679496,20,10.54,4,Good,1356.64,38.66065164,27 Years and 0 Months,NM,35.37256937,10000,!@9#%8,263.2188514,0,-0.0422,0.0519,-0.4716,1.3473,-0.9202 +0xbbe1,CUS_0xa193,August,33,469-56-9848,Lawyer,110912.79,9392.7325,4,7,9.288361749,0,Auto Loan,0,3,8.75,3,Good,31.72461216,25.396222,,No,80.20521512,971.2778329,Low_spent_Small_value_payments,666.9463391,0,-0.6543,-0.7477,-1.1149,-0.8801,0.9025 +0xbbed,CUS_0x5f6e,August,24,074-69-5563,Lawyer,10358.88,921.9691512,7,7,19.06745738,6,"Payday Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",34.85367373,20,5.03,13,_,2724.490954,32.90492741,11 Years and 6 Months,Yes,126.1435246,72.05054309,Low_spent_Large_value_payments,239.8804932,0,-0.2368,-0.7374,-0.4538,-0.1514,0.9292 +0xbbf9,CUS_0xa664,August,56,792-91-5385,Architect,35940.94,2718.078333,5,3,11,1,Student Loan,,8,10.86,0,Good,215.0239499,29.4416614,30 Years and 6 Months,No,17.84299552,,High_spent_Medium_value_payments,423.9316502,0,0.6572,0.1531,0.0864,0.2099,-1.576 +0xbc05,CUS_0x7473,August,39,681-19-5707,Lawyer,95329.23,7863.1025,4,1,8,1,Personal Loan,0.541554431,2,5.74,0,Good,759.528274,37.527294,30 Years and 3 Months,No,78.19902291,140.0786398,High_spent_Large_value_payments,825.037587,0,1.563,0.5184,0.8098,1.3634,-1.9653 +0xbc11,CUS_0x97da,August,43,087-23-2406,Media_Manager,17399.84,,8,10,27.88954781,6,"Personal Loan, Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, and Mortgage Loan",18.53312647,13.69675724,18.03,14,Standard,2191.866078,23.66104479,15 Years and 10 Months,Yes,1367.867337,94.32105886,Low_spent_Medium_value_payments,268.3801891,0,-0.1461,1.3967,0.5294,0.6458,-0.7237 +0xbc1d,CUS_0x31e3,August,54,202-11-6489,_______,90398.96,7022.25396,7,6,11,0,,19.42291686,,8.73,1,_,535.5493924,42.43177776,23 Years and 0 Months,No,612.9927069,109.1526412,High_spent_Large_value_payments,910.7389455,0,1.6168,0.6367,1.7595,0.5344,-0.7408 +0xbc29,CUS_0x4904,August,34,662-96-6567,Media_Manager,67327.32,5551.61,5,3,7,3,"Student Loan, Personal Loan, and Payday Loan",15.3141915,9.683412243,18.25,7,Standard,537.0579809,39.05349876,18 Years and 2 Months,Yes,125.0155077,10000,Low_spent_Medium_value_payments,417.3422856,0,0.6593,-0.6937,0.6204,-0.3578,-0.5685 +0xbc35,CUS_0xb1dd,August,56,061-81-4991,Doctor,12151.75,1187.645833,5,3,10,1,Personal Loan,17.13706343,,-5.21,2,_,1011.03,23.07618547,23 Years and 5 Months,No,7.249926182,,Low_spent_Small_value_payments,276.7267986,0,-1.5613,0.9165,0.4623,-0.0592,-0.3303 +0xbc41,CUS_0x9466,August,50,168-77-9086,Doctor,61269.16,5295.763333,6,4,9,2,"Not Specified, and Home Equity Loan",24.67487059,19.26252999,4.45,5,Good,421.4652922,38.8700241,19 Years and 9 Months,No,55.59378877,676.1072665,Low_spent_Small_value_payments,87.87527802,0,-0.7138,-0.4778,0.0253,-1.1785,1.9708 +0xbc4d,CUS_0xa7b6,August,36,714-91-2569,Writer,67845.56,5177.606477,3,5,20,4,"Auto Loan, Payday Loan, Mortgage Loan, and Auto Loan",23.75281597,17,19.63,11,Standard,1478.49,26.68052093,19 Years and 0 Months,Yes,767.6307489,741.7565496,!@9#%8,0.382557979,0,0.5932,0.0116,-0.3727,-0.7739,-1.1525 +0xbc59,CUS_0x8ba3,August,33,861-70-9309,Architect,105080.76,8488.73,5,5,7,1,Payday Loan,16.44793611,13.01963114,12.62,2,Standard,409.4049559,43.59631921,,Yes,41407,10000,High_spent_Medium_value_payments,928.8964297,0,-0.9736,0.6211,-0.5232,-0.0023,-1.4894 +0xbc65,CUS_0x3e6d,August,46,747-47-1632,Journalist,111204.78,9270.065,0,2,1.288361749,4,"Not Specified, Payday Loan, Auto Loan, and Payday Loan",0,1,9.51,1,_,1103.999562,23.98721316,32 Years and 6 Months,No,22409,795.6551377,High_spent_Small_value_payments,511.9461281,0,-0.9141,1.1873,-0.014,1.4931,1.3723 +0xbc71,CUS_0x6f84,August,28,200-85-7540,Doctor,60238.56,4907.88,10,8,17.88954781,7,"Home Equity Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",33.65128485,18,5.97,10,Bad,1825.6,23.22459979,10 Years and 5 Months,Yes,1625.889945,246.4393211,Low_spent_Large_value_payments,194.1286529,0,-0.2945,-0.5277,-0.7415,-0.9326,0.7207 +0xbc7d,CUS_0x5632,August,20,664-67-8147,Accountant,42512.31,3361.6925,7,5,14,7,"Student Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Personal Loan, Not Specified, and Credit-Builder Loan",8.410929559,10,19.51,4,Standard,1810.72,33.36364835,,Yes,169.9457403,224.4859296,Low_spent_Small_value_payments,231.7375801,0,0.551,0.679,-0.5305,-1.0906,-1.3413 +0xbc89,CUS_0xc530,August,31,367-64-2250,Teacher,31751.78,2712.981667,7,3,11,1070,,,1884,0.61,4,Standard,581.67,25.78943412,25 Years and 6 Months,NM,0,124.4645203,High_spent_Small_value_payments,406.8336464,0,-1.5111,0.204,-0.7222,-1.3958,2.1698 +0xbc95,CUS_0x272a,August,25,444-95-6664,Teacher,29633.99,2370.499167,7,4,15,2,"Not Specified, and Mortgage Loan",24.66224602,18,9.95,9,Standard,113.42,32.85418038,6 Years and 5 Months,Yes,32.22601307,,High_spent_Small_value_payments,343.8469882,0,-0.4446,1.6558,1.4811,1.5587,0.8789 +0xbca1,CUS_0x8d9a,August,19,643-01-6771,Doctor,23489.78,,7,5,12,4,"Mortgage Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",14.8663166,13,6.54,0,Standard,467.5455485,37.77373981,25 Years and 4 Months,NM,49.04865314,155.11615,Low_spent_Small_value_payments,328.4816335,0,-0.8966,0.1818,0.1059,-1.1527,1.6527 +0xbcad,CUS_0x481d,August,37,021-95-8924,Musician,15328.665,,5,7,1,0,,11.45445029,12,6.1,3,Good,1279.471748,32.65793537,23 Years and 4 Months,No,0,102.934877,Low_spent_Large_value_payments,276.356044,0,-0.2622,-1.9209,-0.2812,-1.0939,-1.7425 +0xbcb9,CUS_0xbf8,August,18,959-11-1329,Media_Manager,7946.09,883.1741667,7,10,17,5,"Personal Loan, Mortgage Loan, Not Specified, Payday Loan, and Auto Loan",43.34586845,24,7.36,12,Bad,1572.64,27.16288116,15 Years and 11 Months,Yes,3316,43.29637392,Low_spent_Medium_value_payments,295.0010997,0,0.055,0.3851,0.9606,0.6807,-0.6732 +0xbcc5,CUS_0x2d93,August,34,713-04-5687,Architect,9613.62,564.135,8,10,29.06745738,2,"Credit-Builder Loan, and Debt Consolidation Loan",,11.80207523,9.65,10,_,2463.706957,38.77563171,14 Years and 5 Months,Yes,15.9482031,,Low_spent_Large_value_payments,255.6702782,0,0.0738,0.9952,-1.9102,0.7314,0.144 +0xbcd1,CUS_0x3b9e,August,41,887-13-6197,Journalist,23900.41,,3,5,20,4,"Auto Loan, Home Equity Loan, Not Specified, and Personal Loan",7.599077042,9,11.54,5,Standard,234.73,30.53778843,20 Years and 0 Months,Yes,68.03837552,20.40646448,High_spent_Large_value_payments,328.3252433,0,2.2495,0.6688,-1.1636,1.0716,-0.9528 +0xbcdd,CUS_0x64c8,August,24,451-53-6179,Manager,52032.16,,3,3,5,1,Personal Loan,,13,11.32,6,Standard,1255.37,34.57981615,31 Years and 5 Months,No,33.30013996,66.36458062,High_spent_Large_value_payments,551.9366127,0,1.4397,0.5959,1.0088,-0.8064,-0.6491 +0xbce9,CUS_0xc2fd,August,21,897-92-2253,Lawyer,11798.555,,6,5,15,5,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",18.92885198,15,17.76,11,Standard,679.1187706,40.11107362,6 Years and 11 Months,Yes,30.40323344,107.066197,Low_spent_Small_value_payments,266.8485152,0,0.2113,-0.2332,-1.1418,-0.6667,0.0049 +0xbcf5,CUS_0xaef8,August,26,570-73-5343,Scientist,95844.33,,1,3,4,4,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",,0,6.27,7,Good,536.6416328,40.47613927,18 Years and 0 Months,No,264.7650239,,High_spent_Medium_value_payments,486.1814453,0,0.4101,0.4024,0.972,-1.6994,-0.629 +0xbd01,CUS_0x367d,August,38,#F%$D@*&8,Entrepreneur,114467.67,,1,3,4,3,"Payday Loan, Auto Loan, and Personal Loan",12.67002546,13.24987943,0.76,4,_,966.5613728,33.20146974,19 Years and 3 Months,No,200.9517717,229.111539,High_spent_Large_value_payments,790.3339392,0,1.5536,-0.9962,-1.0731,-0.2788,-0.5044 +0xbd0d,CUS_0x316a,August,27,425-42-7056,Musician,14925.68,,8,10,22.95700519,7,"Personal Loan, Student Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",16.41623113,8,15.75,13,Standard,2671.010954,32.25642751,20 Years and 6 Months,Yes,1374.546217,180.0261718,Low_spent_Small_value_payments,162.457909,0,1.5876,-1.8161,0.353,-0.2376,-0.6033 +0xbd19,CUS_0x3bac,August,21,601-70-2993,_______,120479.64,9968.97,2,7,8,2,"Not Specified, and Payday Loan",0,2,6.98,8,Good,522.2449147,38.85880282,17 Years and 11 Months,No,129.1780028,,!@9#%8,179.6728766,0,-0.5741,1.4725,2.3594,-0.995,-0.8745 +0xbd25,CUS_0x4602,August,25,480-01-0903,Entrepreneur,60189.06,5138.755,10,8,31.06745738,5,"Not Specified, Personal Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",36.75113424,18.26389374,27.13,16,Bad,4725.872881,26.47350962,12 Years and 10 Months,Yes,221.0248385,190.0670511,!@9#%8,336.0633224,0,0.7545,0.9601,0.8835,0.4853,0.7986 +0xbd31,CUS_0x17ec,August,43,853-62-7450,Architect,30813.68,2109.205491,3,3,8,4,"Auto Loan, Student Loan, Student Loan, and Home Equity Loan",,10,6.93,2,_,1196.652895,35.38005532,18 Years and 10 Months,No,236.6567313,231.9988668,Low_spent_Large_value_payments,243.9998877,0,1.4147,0.4053,-1.6275,-0.5357,-1.0162 +0xbd3d,CUS_0xa10f,August,35,670-86-3211,Writer,20057.57,,10,6,24.06745738,9,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Student Loan, and Not Specified",31.72002081,,-2.25,10,_,3920.334545,36.68212795,9 Years and 11 Months,NM,133.6574299,,Low_spent_Small_value_payments,83.90191103,0,0.1362,-0.1504,2.0094,0.6403,-1.1966 +0xbd49,CUS_0x7bee,August,29,601-19-6338,Teacher,23631.2,,4,4,18,3,"Mortgage Loan, Not Specified, and Auto Loan",18.59027218,,11.7,1,_,903.96,36.89704394,27 Years and 3 Months,Yes,34.30784055,154.887065,Low_spent_Medium_value_payments,280.0317611,0,0.8885,-0.3935,-0.1863,2.0103,-2.1402 +0xbd55,CUS_0x301b,August,23,171-02-3830,_______,70383,,9,5,27.06745738,7,"Not Specified, Student Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",,23,26.82,17,Bad,4663.750954,39.06153005,,Yes,254.7977968,173.4580219,!@9#%8,416.9488933,0,0.4022,1.2075,-0.2218,-0.6153,0.165 +0xbd61,CUS_0xb3f2,August,38,198-29-0316,Writer,16099.62,,3,6,14,0,,10.61125654,9,9.14,7,Standard,1042.78,24.41930331,8 Years and 10 Months,Yes,0,51.26326363,Low_spent_Large_value_payments,329.9002364,0,-0.7426,1.1157,-0.5643,-0.924,1.7739 +0xbd6d,CUS_0xbe62,August,43,281-78-9721,Teacher,45070.56,,10,8,16.95700519,7,"Mortgage Loan, Not Specified, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Personal Loan",27.34784892,16.86136644,17.78,11,Bad,4943.394448,31.77333423,13 Years and 0 Months,Yes,1489.780149,161.9862492,High_spent_Small_value_payments,250.9712329,0,-0.1003,-0.2439,-0.4392,0.2984,0.8393 +0xbd79,CUS_0x83e,August,18,#F%$D@*&8,Teacher,16295.73,,10,10,28.06745738,4,"Not Specified, Debt Consolidation Loan, Not Specified, and Mortgage Loan",,12,19.55,10,Standard,2440.030954,28.28594862,6 Years and 0 Months,Yes,41.27243975,,Low_spent_Small_value_payments,178.9632564,0,0.3691,-0.3818,0.4602,0.3917,-1.1414 +0xbd85,CUS_0x5bd2,August,31,647-63-9696,Architect,70922.08,5794.122643,10,9,27.88954781,8,"Home Equity Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Not Specified",22.50606138,16,8.81,10,Bad,1801.3,24.18472035,11 Years and 4 Months,Yes,2133.869599,,High_spent_Medium_value_payments,195.2742292,0,-0.7017,0.7583,-1.0208,-0.2619,-0.6614 +0xbd91,CUS_0x644e,August,43,#F%$D@*&8,Writer,68213.38,,7,5,10,3,"Auto Loan, Credit-Builder Loan, and Home Equity Loan",19.31299378,,7.82,5,Standard,769.47,31.81374336,28 Years and 11 Months,No,141.4805053,531.8675635,Low_spent_Small_value_payments,212.3967645,0,1.1436,-0.4547,0.2864,-0.8862,-0.7174 +0xbd9d,CUS_0x918d,August,32,214-34-0125,Developer,17025.51,,0,3,3.288361749,2,"Credit-Builder Loan, and Debt Consolidation Loan",7.327135448,9,1.02,,_,42.85,26.65513183,17 Years and 10 Months,No,25279,529.4704779,Low_spent_Small_value_payments,274.1613174,0,0.8313,0.7526,-0.5594,0.3723,-0.7266 +0xbda9,CUS_0x28a4,August,29,012-37-7206,Writer,104075.52,8745.96,3,5,7,1,Student Loan,18.76490247,16,8.45,9,Standard,1371.49,36.82036095,20 Years and 6 Months,Yes,73.11669738,587.2816388,High_spent_Small_value_payments,474.1976639,0,-0.8871,2.2387,-0.6974,0.1885,-0.026 +0xbdb5,CUS_0x40a3,August,43,088-74-4900,Lawyer,60224.34,,1,8,5,0,,,,3.83,4,Good,1372.622856,30.11428478,23 Years and 3 Months,No,0,107.9192242,High_spent_Large_value_payments,634.9502758,0,-1.5124,0.4672,0.1741,2.1606,0.8508 +0xbdc1,CUS_0x3e54,August,47,923-35-3568,Accountant,78039.48,,5,7,4,4,"Student Loan, Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",19.37271952,15,-2.41,5,Good,1056.229401,23.4811925,29 Years and 0 Months,No,236.239616,,Low_spent_Small_value_payments,326.4007261,0,2.566,0.0336,-0.1533,-0.5055,-1.619 +0xbdcd,CUS_0x8245,August,48,302-98-4223,Journalist,109652.7,9317.725,2,4,328,2,"Auto Loan, and Mortgage Loan",,6,-1.21,1,Good,1056.45,30.02375505,32 Years and 10 Months,No,97.6275312,167.3978828,High_spent_Large_value_payments,906.747086,0,-0.1803,-0.1046,-0.7739,0.8358,1.6175 +0xbdd9,CUS_0x939a,August,80,517-26-6799,Lawyer,16499.63,,179,6,29,2,"Auto Loan, and Payday Loan",,29.25129445,9.27,10,Bad,2496.216087,29.36037666,6 Years and 10 Months,Yes,16.83970627,69.9441313,Low_spent_Small_value_payments,334.9130791,0,0.0446,-0.6221,-1.0544,-0.0939,0.3104 +0xbde5,CUS_0x1699,August,29,916-34-3895,Lawyer,59962.52,4976.876667,3,7,28,5,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Not Specified",21.80810975,14.25248154,,11,Standard,2909.971844,34.17064055,17 Years and 3 Months,Yes,140.2628376,120.5693002,!@9#%8,506.8555288,0,0.0482,-0.5763,-0.4163,0.8457,0.9034 +0xbdf1,CUS_0x843d,August,41,134-80-6824,Teacher,56911.28,4474.606667,10,9,35.95700519,7,"Not Specified, Payday Loan, Mortgage Loan, Mortgage Loan, Student Loan, Student Loan, and Credit-Builder Loan",24.56662707,16,29.98,13,Bad,5016.170954,37.37753668,1 Years and 9 Months,Yes,1609.441289,268.8426527,Low_spent_Medium_value_payments,128.1263555,0,0.2344,0.0357,-1.2075,0.8139,0.2173 +0xbdfd,CUS_0x7d48,August,18,652-47-0781,Media_Manager,61115.16,,6,5,30,7,"Student Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Payday Loan",30.67688709,,2.39,10,_,1990.909474,38.15945733,11 Years and 8 Months,Yes,233.0886466,572.9101556,Low_spent_Small_value_payments,,0,1.5018,-0.9473,0.1986,-1.1872,-1.6423 +0xbe09,CUS_0xa96d,August,36,819-31-7344,Mechanic,21892.96,1539.413333,0,3,8,1,Auto Loan,15.01824613,11.77462766,7.09,1,Good,701.6011418,39.27941486,30 Years and 3 Months,No,16.22560788,98.28538354,Low_spent_Small_value_payments,329.4303419,0,0.9886,0.0477,0.1475,-0.6404,-2.1907 +0xbe15,CUS_0xaef3,August,43,635-56-4059,Developer,163978.4,13830.86667,2,2,6.288361749,0,Student Loan,,1,-4.06,6,Good,690.4758065,39.81746467,18 Years and 6 Months,No,121.3960257,1178.616228,High_spent_Small_value_payments,850.2035652,0,2.4088,1.2381,0.8712,1.2123,-1.8397 +0xbe21,CUS_0x98c3,August,30,008-79-8963,_______,37313.32,3045.443333,8,8,33.95700519,6,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",31.83813783,21.25048313,9.51,11,Bad,5624.617986,29.45916611,10 Years and 9 Months,NM,1494.135342,270.4317893,Low_spent_Small_value_payments,108.926833,0,0.3943,0.8582,1.4637,0.7343,-0.0574 +0xbe2d,CUS_0x7fa8,August,29,541-30-9168,Journalist,42109.41,3299.1175,7,5,34,7,"Debt Consolidation Loan, Student Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Student Loan",38.60704355,25.60758665,4.26,11,Bad,3017.928871,34.0591879,3 Years and 9 Months,Yes,128.2122618,71.23504914,High_spent_Large_value_payments,370.4644391,0,0.2213,-1.3763,0.042,0.0314,1.7223 +0xbe39,CUS_0x43f8,August,33,847-59-9614,Doctor,14917.845,,1,7,6,2,"Not Specified, and Payday Loan",,3,-4.32,9,_,609.71,24.91179631,17 Years and 10 Months,No,17.70781612,55.60117247,Low_spent_Small_value_payments,368.9063864,0,-0.7993,-0.5805,1.3524,-0.1078,-1.2753 +0xbe45,CUS_0xc24a,August,31,504-49-1795,_______,35520.48,,3,5,4,100,,6.921839623,9,8.63,6,Good,877.031649,27.71277725,33 Years and 0 Months,NM,0,194.1028352,!@9#%8,383.1655185,0,-0.2221,-0.0758,-1.1206,-0.9002,1.9222 +0xbe51,CUS_0x6359,August,19,250-09-4400,Media_Manager,34746.02,,4,4,17,1,Debt Consolidation Loan,32.62091166,23,3.36,3,Standard,1258.88,36.14239985,18 Years and 9 Months,No,18.86077319,10000,Low_spent_Large_value_payments,420.0003211,0,-0.7279,0.3393,-1.8001,0.4888,0.25 +0xbe5d,CUS_0xad69,August,41,634-66-6400,Accountant,71187.56,5911.296667,4,6,6,4,"Home Equity Loan, Payday Loan, Personal Loan, and Auto Loan",23.76869976,16,3.36,7,Standard,96.68,31.47022446,,No,225.9554164,241.3345076,High_spent_Medium_value_payments,373.8397426,0,0.4638,0.2607,-0.5419,0.7406,0.4147 +0xbe69,CUS_0xa8ec,August,42,752-84-4249,Mechanic,126217.6,9015.652514,8,7,14,1,Mortgage Loan,6.046367365,7,5.34,5,Standard,917.364181,33.64873058,18 Years and 5 Months,No,1486.325808,141.286055,High_spent_Medium_value_payments,1097.793463,0,0.6657,1.2034,-0.3386,-0.189,0.5561 +0xbe75,CUS_0xa2a7,August,18,933-76-2305,Architect,17715.66,1486.305,6,5,23,6,"Not Specified, Home Equity Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",30.86805056,,15.48,14,Bad,5226.513361,39.42858857,8 Years and 6 Months,NM,21833,80.71123,Low_spent_Small_value_payments,305.2093379,0,0.6321,-1.2726,-0.9286,-1.8219,0.6417 +0xbe81,CUS_0x1f43,August,45,428-62-5470,Lawyer,21075.82,,8,3,10,1,Personal Loan,22.47036923,19,8.87,2,_,749.5,25.27137235,16 Years and 4 Months,Yes,14.22944411,36.3437405,High_spent_Medium_value_payments,369.5586487,0,-0.1577,-0.957,-1.451,0.079,-0.1544 +0xbe8d,CUS_0x617b,August,33,841-56-3771,Media_Manager,14049.075,1213.75625,4,7,4,1,Student Loan,0,1,6.69,5,Good,1409.86,37.81729924,18 Years and 3 Months,No,10.8487871,27.85439952,High_spent_Small_value_payments,342.6724384,0,1.4292,0.1179,1.1299,-0.3172,-0.038 +0xbe99,CUS_0x6d37,August,42,452-65-2361,Engineer,7103.73,,8,7,2349.067457,5,"Payday Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",30.60032016,15,13.05,13,_,5028.280954,39.19964053,,Yes,24.21577973,21.09939908,Low_spent_Small_value_payments,259.9622832,0,-0.6458,-0.9533,-0.6943,-2.2015,-1.6974 +0xbea5,CUS_0x1ab3,August,41,446-10-6070,Entrepreneur,81831.72,6910.31,6,5,1,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",2.806354204,4,5.14,4,Good,446.42,24.95649491,18 Years and 4 Months,No,234.5093959,145.2648816,High_spent_Large_value_payments,551.2567225,0,-0.194,-0.1367,-0.5093,-0.7036,1.0848 +0xbeb1,CUS_0x2924,August,18,366-25-1922,Musician,48151.86,,4,5,20,4,"Credit-Builder Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",11.56399308,9,14.94,8,_,2083.32,28.67872731,17 Years and 9 Months,Yes,80.82314161,40.47188977,High_spent_Large_value_payments,528.5704686,0,-0.2606,-0.2996,1.3118,0.6194,-0.4815 +0xbebd,CUS_0xbc50,August,49,538-29-9544,Lawyer,35482.43,,8,5,13,1,Auto Loan,3.027209833,6,16.84,8,Standard,64.61256974,29.32733748,26 Years and 3 Months,Yes,208.4252759,50.33583552,High_spent_Large_value_payments,444.7728124,0,0.0019,0.1539,1.6684,0.512,-0.5602 +0xbec9,CUS_0x38c6,August,34,697-65-7859,Teacher,12629.6,941.4666667,7,3,17,2,"Not Specified, and Auto Loan",,20,19.97,7,Standard,1090.8,33.11408567,15 Years and 11 Months,Yes,17.80923342,23.41659902,Low_spent_Large_value_payments,322.9208342,0,-1.0953,-0.7298,1.2828,0.7146,0.5483 +0xbed5,CUS_0x6799,August,26,572-41-8270,Architect,49215.3,3962.275,229,3,20,5,"Auto Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, and Not Specified",12.63818352,10.27086999,9.59,5,Standard,2974.54934,31.40995029,19 Years and 10 Months,Yes,158.3709313,113.0145757,High_spent_Medium_value_payments,374.841993,0,-1.2056,0.228,0.7679,-0.405,0.6598 +0xbee1,CUS_0x2be1,August,32,463-18-6967,Media_Manager,17623.09,,10,5,17.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Payday Loan, and Not Specified",,19,12.7,11,Bad,3070.650954,32.38681254,,Yes,68.13723211,,Low_spent_Small_value_payments,222.4664812,0,0.0893,0.5823,-0.7748,1.1162,1.6523 +0xbeed,CUS_0x34b6,August,26,358-29-5619,Musician,30726.96,2304.58,10,10,16,6,"Not Specified, Student Loan, Student Loan, Payday Loan, Mortgage Loan, and Payday Loan",17.64257128,14,3.92,12,Bad,4381.33,35.74996055,8 Years and 11 Months,Yes,100.6085184,100.1104929,Low_spent_Small_value_payments,319.7389888,0,-0.4087,2.0085,-0.6311,-0.9947,-0.3634 +0xbef9,CUS_0x4795,August,46,896-78-3151,Entrepreneur,66341.46,5369.455,5,3,9,4,"Credit-Builder Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",28.65497514,20,8.66,5,Standard,276.5,31.3315373,33 Years and 2 Months,No,155.4559648,357.1197097,High_spent_Small_value_payments,284.3698255,0,-0.5051,0.2486,-0.8273,0.1347,0.3734 +0xbf05,CUS_0x3c24,August,32,654-90-4605,Musician,16758266,,6,7,7,2,"Auto Loan, and Student Loan",18.6233146,16,6.02,3,Standard,1187.38,27.253597,29 Years and 11 Months,Yes,61.46342568,82.27956924,High_spent_Large_value_payments,737.5031717,0,0.1719,-0.5089,-0.3034,-1.0629,0.9519 +0xbf11,CUS_0x319c,August,36,592-03-8932,Musician,58145.22,,4,7,8.288361749,2,"Mortgage Loan, and Personal Loan",,3,6.76,4,_,158.7961654,35.87613525,29 Years and 5 Months,NM,82.44172214,479.2131693,High_spent_Medium_value_payments,571.5829358,0,0.3947,-1.1042,0.3752,-1.227,-0.2997 +0xbf1d,CUS_0x7b38,August,30,738-27-7124,Musician,101696.19,8432.6825,5,7,10,100,"Not Specified, and Student Loan",,20.82339901,7.53,1,Standard,619.0024591,29.7571633,27 Years and 2 Months,NM,6626,206.6678207,High_spent_Large_value_payments,764.6239173,0,-0.2939,-0.679,-1.4423,0.7168,-1.5292 +0xbf29,CUS_0x4329,August,27,845-73-4848,Doctor,28385.62,,4,6,9.288361749,6,"Student Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Not Specified",6.797848022,9.047859964,7.48,7,Standard,71.02367367,36.72822691,17 Years and 6 Months,Yes,88.63125778,537.5897194,Low_spent_Medium_value_payments,323.7633172,0,-1.0088,0.0989,-1.4648,1.1067,1.1671 +0xbf35,CUS_0x1595,August,40,132-58-0299,Accountant,30509.4,2321.45,5,7,8,4,"Debt Consolidation Loan, Not Specified, Mortgage Loan, and Mortgage Loan",14.47519047,14,10.95,6,_,1496.06,24.82668375,20 Years and 5 Months,Yes,66.36791773,,!@9#%8,343.4839168,0,-0.0434,-0.1296,-1.1581,-0.3676,0.5508 +0xbf41,CUS_0x7bf8,August,53,431-22-5697,_______,15820.155,1033.34625,8,7,15,2,"Student Loan, and Not Specified",12.21282161,9,11.67,1,Standard,1155.293912,29.3262873,32 Years and 5 Months,Yes,21.24455158,,High_spent_Medium_value_payments,296.4107088,0,-0.0191,-0.3238,0.7913,1.6493,0.1696 +0xbf4d,CUS_0x4967,August,27,675-75-3709,Doctor,16594.51,,10,8,18.88954781,8,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Not Specified, Payday Loan, Mortgage Loan, and Student Loan",,22.72944901,7.54,13,Bad,3701.902019,37.05985398,10 Years and 6 Months,Yes,1391.732335,,Low_spent_Small_value_payments,234.3789065,0,0.0999,0.9481,1.971,-0.4008,1.1653 +0xbf59,CUS_0x4ceb,August,40,517-27-6284,Accountant,64927.34,5059.777766,6,3,8,6,"Payday Loan, Auto Loan, Not Specified, Home Equity Loan, Not Specified, and Credit-Builder Loan",7.219521174,7,13.38,7,_,462.4444692,21.48488992,18 Years and 10 Months,Yes,667.0654312,788.600738,Low_spent_Small_value_payments,,0,0.0069,-0.0903,0.3349,0.5453,-0.6167 +0xbf65,CUS_0x13e4,August,80,652-14-9122,Doctor,62475.57,5307.2975,7,7,28,5,"Mortgage Loan, Student Loan, Student Loan, Home Equity Loan, and Personal Loan",,16,20.37,11,Bad,3523.03,38.93791341,14 Years and 8 Months,NM,177.6339566,134.7976913,High_spent_Large_value_payments,458.2981021,0,1.3058,0.3771,-0.5163,-1.0279,1.3981 +0xbf71,CUS_0xaf8d,August,49,745-63-1071,Architect,98518.68,,8,5,17.28836175,2,"Payday Loan, and Home Equity Loan",19.83303661,18,10.35,2,_,128.35,36.23784298,29 Years and 5 Months,Yes,153.4435514,,High_spent_Large_value_payments,796.2329544,0,0.3394,-0.2076,1.726,0.2523,0.2642 +0xbf7d,CUS_0x1b29,August,30,634-57-5757,Media_Manager,92362.68,,3,4,7.288361749,4,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Auto Loan",8.2734084,9,18.26,8,_,747.28,23.13300982,,Yes,155.3304165,1001.428687,Low_spent_Large_value_payments,276.9673575,0,-2.4686,0.5671,0.577,-1.0674,0.7724 +0xbf89,CUS_0x5c0f,August,21,050-21-1213,Musician,116336.32,9553.693333,3,3,11,0,,7.430126911,8.045737878,3,2,Good,1219.230726,41.18784255,,No,0,351.2922805,!@9#%8,874.0770529,0,0.2514,-0.6328,0.5069,-0.625,-0.6936 +0xbf95,CUS_0xae0a,August,26,662-79-7638,Manager,38635.95,3048.6625,2,2,3.288361749,4,"Credit-Builder Loan, Student Loan, Student Loan, and Credit-Builder Loan",9.145528384,10,14.63,4,Good,485.2857796,38.00568708,30 Years and 9 Months,No,66.37896276,609.7335855,Low_spent_Small_value_payments,365.0143019,0,0.5176,-0.3489,-1.9698,-0.4914,1.3937 +0xbfa1,CUS_0x697a,August,24,508-44-2013,Mechanic,19722.7,1625.558333,4,5,25,7,"Not Specified, Auto Loan, Auto Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Student Loan",21.70043267,15,9.83,11,Standard,2227.91,25.15131159,6 Years and 10 Months,Yes,85.2286893,177.0601241,Low_spent_Small_value_payments,190.2670199,0,-0.3004,0.9163,-0.3721,-1.9464,0.3844 +0xbfad,CUS_0x6000,August,30,280-96-0502,Developer,25203.1,2234.258333,5,7,17,2,"Auto Loan, and Credit-Builder Loan",7.770808509,9,2.61,3,Standard,344.9806766,23.55495817,30 Years and 5 Months,Yes,39.27024717,80.39718623,High_spent_Medium_value_payments,364.9458788,0,0.0003,1.079,-0.3594,-0.242,-1.0625 +0xbfb9,CUS_0x54a7,August,18,#F%$D@*&8,Writer,84446.2,7061.183333,6,3,7,100,"Payday Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Student Loan",24.65772496,15,17.96,13,Standard,28.15,41.12208427,19 Years and 6 Months,Yes,423.5393016,,High_spent_Medium_value_payments,279.8865626,0,-0.518,1.2741,-0.057,-0.3755,-1.0564 +0xbfc5,CUS_0xa69,August,34,189-86-7222,Scientist,32510.12,,1051,8,32,2,"Not Specified, and Credit-Builder Loan",20.57887483,,14.44,8,Standard,2305.08,38.41667411,13 Years and 8 Months,Yes,35.0635408,53.35924463,High_spent_Medium_value_payments,429.3948812,0,0.4497,-0.2028,-0.941,1.5792,-0.8989 +0xbfd1,CUS_0x512e,August,42,171-22-0944,Architect,19218.21,1669.5175,10,6,28.06745738,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Personal Loan",40.03047054,23,15.39,11,Standard,2552.810954,40.39437436,7 Years and 10 Months,Yes,53.97582252,130.6170923,Low_spent_Small_value_payments,245.6385473,0,-1.507,-0.9647,0.2695,0.8448,0.0746 +0xbfdd,CUS_0xaeec,August,46,225-91-1718,Media_Manager,7207.44,625.62,9,5,15,6,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Credit-Builder Loan",15.28146674,10.6129516,15.11,10,Standard,2514.62589,28.00310526,7 Years and 11 Months,NM,35.07605126,29.33183824,Low_spent_Small_value_payments,288.1541105,0,1.2159,0.1971,-2.1659,-0.1833,0.0147 +0xbfe9,CUS_0x128e,August,19,827-28-8015,Mechanic,20232.11,1918.009167,5,3,6,5,"Mortgage Loan, Payday Loan, Auto Loan, Not Specified, and Mortgage Loan",24.46386724,20,15.86,7,Standard,1104.6,29.79703172,9 Years and 4 Months,Yes,48.65776555,126.7879694,Low_spent_Large_value_payments,286.3551817,0,-0.194,0.8025,-2.2131,-0.5185,0.6366 +0xbff5,CUS_0x7d18,August,20,094-43-5058,Developer,37654.18,,8,10,28.88954781,9,"Payday Loan, Personal Loan, Home Equity Loan, Student Loan, Personal Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",28.36699413,20,8.72,11,_,1853.53,35.68514327,19 Years and 6 Months,NM,1529.203362,,High_spent_Medium_value_payments,241.3633265,0,0.9549,-0.1487,0.7661,-1.0559,0.328 +0xc001,CUS_0x59b6,August,56,315-03-3600,_______,111090.06,,0,4,10.28836175,2,"Payday Loan, Credit-Builder Loan, and Auto Loan",0,4,11.99,1,Good,530.8034744,39.25560506,28 Years and 0 Months,No,149.0796583,780.9446954,Low_spent_Large_value_payments,726.8561391,0,-0.388,0.7936,-0.0244,-0.1361,0.9328 +0xc00d,CUS_0x773,August,32,827-38-6871,Lawyer,44498.78,3748.231667,4,5,18,3,"Mortgage Loan, Student Loan, and Payday Loan",14.74533135,11,11.73,209,_,1131.03,33.15792685,24 Years and 9 Months,Yes,92.44447273,80.29180518,High_spent_Small_value_payments,462.0868888,0,-1.277,0.9018,0.8143,-0.4505,0.4499 +0xc019,CUS_0x42ab,August,46,230-60-1144,Scientist,57993.84,,7,8,22,8,"Credit-Builder Loan, Student Loan, Payday Loan, Personal Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Home Equity Loan",33.99284824,23.92434422,8.08,11,_,2030.371414,30.21203207,6 Years and 2 Months,Yes,234.4392139,175.0826458,High_spent_Medium_value_payments,329.0601404,0,-0.8137,0.0577,-0.6577,0.709,-1.0576 +0xc025,CUS_0x4bfb,August,44,352-16-8068,Mechanic,59479.26,4833.605,7,5,13,6,"Student Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",,12,12.95,8,Standard,1995.960123,21.68428129,11 Years and 6 Months,NM,166.119757,,Low_spent_Small_value_payments,39.74013819,0,0.6393,0.1244,0.1921,0.6606,0.7651 +0xc031,CUS_0x57ca,August,32,089-30-5268,Journalist,101628.12,8730.01,3,7,14,0,,11.92271164,10.10642894,18.25,11,_,270.5100704,32.42695094,13 Years and 3 Months,Yes,0,156.3124566,High_spent_Large_value_payments,956.6885434,0,-1.2079,-0.3388,0.2891,0.8226,1.0873 +0xc03d,CUS_0x76ed,August,46,776-21-6006,Mechanic,133455.93,11060.3275,0,3,4.288361749,2,"Not Specified, Auto Loan, and Payday Loan",3.350498846,6,1.47,3,Good,708.9396848,34.80907896,22 Years and 5 Months,No,284.9565831,11990.18838,High_spent_Large_value_payments,854.7965491,0,-0.9873,-0.1526,-1.3803,0.4243,-1.4144 +0xc049,CUS_0x6e23,August,37,344-34-3762,Scientist,66560.22,5369.685,5,7,20,2,"Payday Loan, and Student Loan",29.6440708,18.89277804,8.93,0,_,907.5343486,28.97550435,30 Years and 11 Months,Yes,80.29199979,54.47751516,High_spent_Large_value_payments,642.198985,0,1.5132,0.4409,-0.6257,-2.7374,0.1556 +0xc055,CUS_0x460a,August,33,680-98-1219,Engineer,66571.4,5600.616667,7,1250,34,3,"Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",39.86933456,24,16.55,7,Bad,2383.13,27.2159835,20 Years and 0 Months,Yes,144.5986348,116.4719737,High_spent_Small_value_payments,558.9910582,0,-2.0659,0.4337,-1.316,0.6916,2.2515 +0xc061,CUS_0xba8,August,26,777-03-1147,Manager,18327.97,,10,5,35.06745738,3,"Personal Loan, Home Equity Loan, and Home Equity Loan",,10.73610619,13.63,12,Standard,2840.873806,25.82702315,18 Years and 6 Months,Yes,23.82311055,,Low_spent_Large_value_payments,230.8281907,0,1.6657,1.2768,1.5243,0.5951,0.6267 +0xc06d,CUS_0xa95d,August,47,783-87-1945,Architect,38690.04,3074.17,5,3,16,2,"Student Loan, and Auto Loan",,14,12.39,7,Standard,590.94,33.0324059,31 Years and 0 Months,Yes,40.09533732,204.4626589,High_spent_Small_value_payments,322.8590038,0,-0.1543,-1.5355,0.144,-1.9056,0.3693 +0xc079,CUS_0x7091,August,19,230-80-0322,Architect,60909.15,5079.7625,3,6,9,5,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,22.80065114,10.8,8,Standard,1606.29294,31.18861234,7 Years and 4 Months,NM,131.1667361,545.6643718,Low_spent_Small_value_payments,121.1451422,0,-0.704,0.207,-0.8414,1.5721,0.9807 +0xc085,CUS_0x589c,August,24,919-16-2222,Lawyer,22705.83,,4,6,4,2,"Auto Loan, and Not Specified",17.4603406,12,4.53,8,Good,854.1,30.80187406,32 Years and 4 Months,No,22.6708027,,Low_spent_Small_value_payments,296.180034,0,-0.7482,2.681,-0.3425,-1.3716,0.16 +0xc091,CUS_0x8907,August,33,885-60-3879,Architect,163904.56,,3,5,1.288361749,0,,0,3,16.13,1,Good,26.80684193,39.93958052,16 Years and 5 Months,No,0,1127.087496,Low_spent_Medium_value_payments,1014.173394,0,-0.2342,-0.5134,0.3389,0.3792,1.9551 +0xc09d,CUS_0x41c1,August,29,824-78-7820,_______,20282.42,,4,4,14,4,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",24.70445894,17,7.82,4,Standard,489.03,27.51359132,16 Years and 8 Months,Yes,35.38627374,104.189723,Low_spent_Small_value_payments,296.4441699,0,0.2921,-0.915,-0.5228,-1.1592,-1.5419 +0xc0a9,CUS_0xb971,August,50,644-26-7468,Journalist,28891.26,,5,7,11,0,,,7,3.17,4,Good,457.4069437,40.55790947,22 Years and 4 Months,No,146.4484841,161.684553,!@9#%8,348.1969726,0,-0.0654,0.3412,-1.2259,1.5024,-0.668 +0xc0b5,CUS_0x6ea0,August,18,966-14-9295,Lawyer,8969.985,,9,6,23.06745738,8,"Mortgage Loan, Auto Loan, Student Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",37.43549186,21,18.73,9,_,4549.000954,37.91397945,10 Years and 2 Months,NM,39.62196691,19.00503684,High_spent_Medium_value_payments,226.4025833,0,-1.0026,0.0048,2.5834,0.6632,0.706 +0xc0c1,CUS_0x4237,August,46,846-96-5203,Developer,26918.38,,6,5,10,2,"Debt Consolidation Loan, and Student Loan",19.51595852,16,5.48,6,Standard,1054.9,40.6360781,26 Years and 0 Months,Yes,43.92660965,91.11438389,High_spent_Small_value_payments,369.1788398,0,-0.9462,-0.4816,0.2063,1.6627,0.1738 +0xc0cd,CUS_0x2aff,August,36,995-63-5427,Lawyer,34483.9,,8,7,30.06745738,9,"Credit-Builder Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",29.08138176,14,2.12,10,Bad,4609.940954,34.10365741,13 Years and 0 Months,Yes,183.9947235,10000,!@9#%8,236.3586838,0,-0.414,-0.5149,1.503,1.7618,0.7034 +0xc0d9,CUS_0x288d,August,55,970-19-8342,Lawyer,30748.93,2572.410833,1,6,12,2,"Payday Loan, and Home Equity Loan",,3,4.21,9,_,860.97,32.18941777,19 Years and 6 Months,No,43.72777399,269.9842239,Low_spent_Small_value_payments,233.5290854,0,1.1334,-0.0112,0.3696,-0.2865,-1.2883 +0xc0e5,CUS_0x4565,August,43,239-95-8894,Entrepreneur,19818.56,1801.546667,8,9,24.88954781,9,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Payday Loan, Personal Loan, Not Specified, and Student Loan",25.7891011,19,21.7,6,Bad,4534.32,31.82648545,14 Years and 2 Months,Yes,1464.598592,,Low_spent_Small_value_payments,236.3378875,0,0.4849,1.8888,-1.2516,0.0371,-0.153 +0xc0f1,CUS_0x5764,August,24,672-84-3682,Media_Manager,14469.88,,10,10,30.95700519,9,"Debt Consolidation Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Student Loan, Auto Loan, and Auto Loan",,30.44460826,5.35,15,Bad,3865.921919,28.73687632,8 Years and 6 Months,Yes,1385.126167,124.9311087,Low_spent_Large_value_payments,177.1746886,0,1.1297,-1.2567,0.6469,-1.438,-0.2289 +0xc0fd,CUS_0x65d7,August,18,974-54-9648,Teacher,37720.58,3212.381667,6,9,24,5,"Credit-Builder Loan, Mortgage Loan, Not Specified, Not Specified, and Personal Loan",,23.17697863,1.14,11,_,1790.926289,39.12474647,10 Years and 11 Months,Yes,128.9414089,30.27304256,High_spent_Large_value_payments,402.0237152,0,-2.7536,1.3683,0.069,0.2159,0.7336 +0xc109,CUS_0x837f,August,18,636-75-9520,Entrepreneur,48356.66,4233.721667,3,4,16,2,"Personal Loan, and Not Specified",7.638607124,8,17.01,8,Standard,1323.42,25.06419706,16 Years and 4 Months,Yes,45.44154274,259.6105653,Low_spent_Large_value_payments,388.3200586,0,-0.2798,-2.322,-3.5365,-0.8354,-0.6718 +0xc115,CUS_0x9748,August,49,772-52-0737,Scientist,112021.6,9452.133333,7,6,4.288361749,0,,,12.19481443,6.88,2,Standard,1431.739052,36.23854984,27 Years and 11 Months,No,0,716.7041429,High_spent_Small_value_payments,908.4466514,0,2.3813,-0.0947,0.8866,0.0542,0.1666 +0xc121,CUS_0xb131,August,46,999-52-5088,Journalist,17708.33,1692.694167,8,9,24.95700519,7,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",38.31961411,25.37500408,7.81,11,Bad,2731.937305,36.62070232,14 Years and 8 Months,Yes,1387.506504,44.60782407,High_spent_Medium_value_payments,266.104719,0,-0.8739,0.5467,-0.3151,1.5272,0.9306 +0xc12d,CUS_0xab77,August,54,686-29-2615,Musician,41736.66,3330.055,3,3,9,100,"Personal Loan, Auto Loan, and Payday Loan",0,2,5.25,1,Good,1269.073232,25.07291087,18 Years and 8 Months,No,98.01563851,82.82572222,High_spent_Small_value_payments,420.1569164,0,0.6195,2.5114,-0.5524,-0.4501,-0.2803 +0xc139,CUS_0x4ddb,August,49,#F%$D@*&8,Architect,40457.96,,0,6,6,0,,,6.978773408,5.86,0,_,386.5058712,38.7713643,21 Years and 9 Months,No,0,76.32164797,High_spent_Large_value_payments,483.4280187,0,0.2386,-0.584,-0.48,1.4246,0.0839 +0xc145,CUS_0x4517,August,55,052-90-2364,Teacher,40023.81,3214.3175,2,5,5,100,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Student Loan",3.771670542,6,0.8,4,Good,1045.629612,33.64987942,27 Years and 11 Months,No,122.9857763,176.0405336,High_spent_Small_value_payments,308.3977893,0,1.224,-3.5817,-0.4089,0.1018,0.6024 +0xc151,CUS_0xb9fd,August,57,714-66-9926,Musician,9389456,11228.895,3,5,10.28836175,0,Home Equity Loan,0,0,-1.17,4,Good,274.1833141,41.60537301,29 Years and 0 Months,No,77.63386827,,Low_spent_Medium_value_payments,926.9052382,0,1.6945,0.3884,0.1953,0.097,-0.9919 +0xc15d,CUS_0x36a0,August,80,881-20-6457,Media_Manager,35976.97,3126.080833,2,3,12,3,"Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",0,0,,4,Good,491.9603523,30.6127367,31 Years and 9 Months,No,53.68632881,149.2900035,High_spent_Medium_value_payments,381.4008247,0,-0.4341,1.0465,1.4069,-0.1206,0.7063 +0xc169,CUS_0x6883,August,20,513-15-4094,Entrepreneur,28287.18,,4,4,2,1,Auto Loan,12.21678418,12,6.87,1,_,907.4485424,26.70065595,17 Years and 11 Months,No,15.15922383,304.9661744,Low_spent_Small_value_payments,239.079472,0,-1.0776,0.7343,-0.7123,1.6578,0.0836 +0xc175,CUS_0xb222,August,41,804-28-7310,_______,77641.56,6180.13,4,6,20,4,"Not Specified, Student Loan, Not Specified, and Debt Consolidation Loan",,3102.196302,11.3,17,Standard,2959.173037,40.69405074,13 Years and 0 Months,Yes,182.85013,172.1909916,Low_spent_Medium_value_payments,542.9718784,0,1.2588,-0.933,-2.4142,0.6013,1.2754 +0xc181,CUS_0xa922,August,43,375-11-4912,Writer,25740.18,,5,6,1,1,Mortgage Loan,11.79261271,10,2.77,,Standard,1273.88,28.11026107,21 Years and 10 Months,No,19.46604343,10000,!@9#%8,371.8360622,0,1.9536,-0.1079,-0.489,0.0239,0.5239 +0xc18d,CUS_0x50a2,August,36,850-58-9504,Musician,64173.56,5163.796667,7,4,11,2,"Student Loan, and Credit-Builder Loan",,17,6.66,3,_,497.23,33.28953713,30 Years and 4 Months,No,68.34879901,,Low_spent_Small_value_payments,62.58601163,0,0.8083,0.2686,-1.9609,-0.6201,-0.5391 +0xc199,CUS_0xa9d2,August,19,#F%$D@*&8,Mechanic,17190.62,1591.551667,4,3,6,4,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",,16,15.94,6,_,1646.72,29.11106369,14 Years and 6 Months,Yes,29.95122537,76.88976585,Low_spent_Small_value_payments,342.3141754,0,1.0783,0.1155,-1.171,-0.6102,-1.9541 +0xc1a5,CUS_0xabd,August,41,283-39-0778,Lawyer,129569.52,10831.46,8,7,17.28836175,4,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",11.1669104,11,17.76,7,Standard,641.47,34.18570665,9 Years and 5 Months,Yes,383.1808701,10419.93746,Low_spent_Small_value_payments,,0,-0.7842,0.0454,1.2064,-1.8744,-1.3012 +0xc1b1,CUS_0x7f10,August,33,015-58-0092,Teacher,16436.66,,10,9,34,6,"Student Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",,26.61033885,6.58,10,Bad,2926.12767,32.7114631,7 Years and 3 Months,Yes,77.91293447,122.8872426,!@9#%8,226.4719896,0,-0.7688,1.2854,-0.9007,-1.0002,-0.9074 +0xc1bd,CUS_0xaa80,August,43,313-02-7200,Writer,55242.99,4660.5825,10,9,22.95700519,9,"Payday Loan, Mortgage Loan, Payday Loan, Credit-Builder Loan, Not Specified, Payday Loan, Student Loan, Credit-Builder Loan, and Auto Loan",,23,26.39,7,Bad,4397.300954,34.7895863,2 Years and 11 Months,Yes,1689.521302,146.4227686,High_spent_Medium_value_payments,159.0638101,0,0.2732,0.9989,-0.4274,-0.0745,-0.4001 +0xc1c9,CUS_0x3b9a,August,32,983-37-5040,Doctor,30819.56,2547.296667,7,3,9,4,"Payday Loan, Student Loan, Not Specified, and Home Equity Loan",9.561294973,10,7.68,5,Standard,401.26,31.21249545,14 Years and 8 Months,Yes,96.8485909,54.30216475,High_spent_Small_value_payments,363.578911,0,-0.6365,-0.5726,0.6587,-0.0714,0.6321 +0xc1d5,CUS_0x9cec,August,31,766-16-0803,Musician,9390.68,,9,7,31,9,"Debt Consolidation Loan, Not Specified, Auto Loan, Payday Loan, Payday Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",42.4944217,32.84861728,17.2,13,Bad,5226.352134,31.07455737,6 Years and 5 Months,Yes,45.55676019,46.55519524,Low_spent_Medium_value_payments,256.5437112,0,-0.1564,1.3349,-1.4432,-1.2904,-0.8927 +0xc1e1,CUS_0xa8d7,August,52,583-63-4832,Architect,79847.97,6831.9975,6,4,20,0,,23.66868789,20.36681362,14.57,2,_,1636.646545,34.63527682,16 Years and 10 Months,Yes,0,207.590711,Low_spent_Medium_value_payments,755.609039,0,-0.5699,0.7264,0.7487,-0.1701,0.6136 +0xc1ed,CUS_0xa587,August,53,879-08-9684,Writer,17525.87,,6,3,19,2,"Credit-Builder Loan, and Debt Consolidation Loan",11.88410339,13.12261544,17.76,4,Standard,1013.356412,40.59790792,30 Years and 8 Months,Yes,22.97305053,140.5771265,Low_spent_Small_value_payments,252.5987396,0,-0.7069,-0.1412,2.1134,-0.2441,0.6351 +0xc1f9,CUS_0x868,August,32,760-71-1258,Journalist,19014.19,,3,8,32,5,"Debt Consolidation Loan, Student Loan, Student Loan, Student Loan, and Home Equity Loan",,14.13373421,,13,Standard,2215.217495,35.64873703,17 Years and 4 Months,Yes,4760,145.4488044,Low_spent_Small_value_payments,209.6067469,0,0.235,-0.8625,0.5735,-0.0002,0.4689 +0xc205,CUS_0x7633,August,24,806-84-5565,_______,27910.59,,3,7,14,2,"Payday Loan, and Personal Loan",29.40995168,19.18747158,6.96,5,Standard,250.6321491,29.11887199,29 Years and 2 Months,Yes,36.62873393,,Low_spent_Small_value_payments,338.3354143,0,0.4995,0.4557,-0.8158,-1.9679,0.5029 +0xc211,CUS_0x46d1,August,33,#F%$D@*&8,Media_Manager,35849.77,,3,3,8,2,"Personal Loan, and Personal Loan",,18,14.2,5,_,566.08,38.48344641,20 Years and 4 Months,Yes,58.05787092,244.3154076,!@9#%8,290.2748048,0,-0.0201,0.4365,0.6715,-0.4863,-0.7624 +0xc21d,CUS_0x1354,August,28,432-99-3925,Entrepreneur,78498.72,6568.56,8,5,17,0,,15.75542018,10.77381493,8.82,7,Standard,1032.376189,25.32467874,9 Years and 11 Months,Yes,0,70.04196387,High_spent_Medium_value_payments,836.8140361,0,-1.3439,-1.191,2.4771,0.6523,-0.354 +0xc229,CUS_0x7380,August,22,665-54-1424,Mechanic,16135.12,,5,4,12,2,"Not Specified, and Mortgage Loan",,9,4.8,4,Standard,1091.33,40.74589924,29 Years and 10 Months,Yes,14.21294487,104.6553527,!@9#%8,333.4910358,0,-0.0347,1.3712,1.7226,-0.1485,2.1939 +0xc235,CUS_0xb2bf,August,29,575-99-4175,Developer,15649.3,1469.108333,5,7,15,2,"Student Loan, and Mortgage Loan",,17,23.32,4,_,1960.58,34.94045575,18 Years and 6 Months,NM,14.5614621,,!@9#%8,357.0211632,0,1.1234,0.3732,0.0449,0.6702,-0.7985 +0xc241,CUS_0x1fb5,August,39,474-15-7091,Scientist,51031.6,4180.633333,4,6,16,3,"Payday Loan, Not Specified, and Mortgage Loan",90,960,10.54,1,Standard,1437.83,24.73971041,17 Years and 4 Months,NM,113.1596428,44.87345738,High_spent_Large_value_payments,500.0302332,0,-0.2568,0.5856,-0.1365,-0.4677,0.2293 +0xc24d,CUS_0x9a06,August,30,048-78-0484,Manager,84659.22,6757.935,8,5,6,1,Home Equity Loan,19.2826731,13,12.55,4,Standard,704.53,27.52895818,18 Years and 3 Months,Yes,67.03772849,269.6820738,High_spent_Medium_value_payments,589.0736977,0,0.2803,0.65,0.4445,1.5992,0.3555 +0xc259,CUS_0x98a8,August,49,#F%$D@*&8,_______,44190.3,3695.525,7,6,17.28836175,2,"Debt Consolidation Loan, and Personal Loan",,14,10.74,7,Standard,476.56,38.2015081,33 Years and 3 Months,No,51.2728535,534.3902973,High_spent_Medium_value_payments,453.8268102,0,0.7865,-0.0768,1.1844,-1.9958,-0.4476 +0xc265,CUS_0xbbc6,August,27,122-43-5969,Accountant,38624.06,,0,5,11,100,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",9.200941786,10,4.19,6,Good,1394.46,25.27757687,16 Years and 0 Months,No,78.45202561,79.14388258,!@9#%8,416.7712585,0,-0.2328,-1.1875,2.0263,1.683,0.5605 +0xc271,CUS_0x250b,August,28,919-44-2707,Accountant,91018.76,7746.896667,4,7,11,2,"Personal Loan, and Credit-Builder Loan",,18.00151935,,4,Good,744.8569336,39.27750421,23 Years and 10 Months,No,118.6941571,228.082649,High_spent_Medium_value_payments,677.9128605,0,1.3273,0.5035,1.567,-0.2145,0.1835 +0xc27d,CUS_0xafe1,August,56,915-74-7492,Mechanic,36512.4,,1,3,3,4,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",,11,16.66,6,Good,545.2986309,30.48254683,24 Years and 11 Months,No,110.9599658,88.94858246,High_spent_Medium_value_payments,384.7170524,0,0.5199,0.5887,0.0087,-0.0959,-1.0964 +0xc289,CUS_0x526a,August,19,094-69-2245,Musician,34317.21,2702.7675,3,6,18,2,"Auto Loan, and Home Equity Loan",,20,18.82,13,_,1164.47,25.8640548,6 Years and 11 Months,NM,53.4566523,180.6446212,Low_spent_Small_value_payments,326.1754765,0,1.7692,0.4472,0.184,-2.4113,-2.1362 +0xc295,CUS_0x89d0,August,26,537-67-2894,Teacher,20317.12,,7,6,17,4,"Mortgage Loan, Auto Loan, Personal Loan, and Student Loan",,11.4146044,17.72,10,Standard,3088.466421,31.82078071,6 Years and 10 Months,Yes,59.69878768,26.44798041,High_spent_Large_value_payments,323.5625652,0,1.706,-1.5138,-1.8139,-0.1347,-0.685 +0xc2a1,CUS_0x5fc2,August,47,821-16-9505,Scientist,10285.71,1036.1425,8,7,6,1,Student Loan,12.37200098,9.028888702,7.49,3,Standard,1485.296384,33.59040409,29 Years and 3 Months,Yes,7.897074074,50.00437196,Low_spent_Small_value_payments,335.712804,0,-0.0436,-0.1488,0.3166,0.0035,-0.2138 +0xc2ad,CUS_0x8e9c,August,48,746-01-3836,Teacher,32500.35,2728.017745,2,6,6,1,Home Equity Loan,3.095022623,6,7,78,Good,1117.184028,28.09359214,24 Years and 5 Months,No,140.4736463,434.5218018,Low_spent_Small_value_payments,174.7440002,0,-0.0381,1.0052,-0.9325,-0.0855,1.5051 +0xc2b9,CUS_0x7611,August,56,587-14-1089,Entrepreneur,93125.48,7769.456667,4,5,7.288361749,0,,16.34580911,,8.76,0,_,461.72,37.75634277,20 Years and 4 Months,Yes,0,10419.93746,High_spent_Small_value_payments,541.1863153,0,0.4733,0.6044,-1.504,-0.0716,-0.8463 +0xc2c5,CUS_0x6237,August,42,527-37-8444,Musician,62879.96,5343.996667,8,10,2626,2,"Payday Loan, and Student Loan",38.40822067,20.57958162,7.9,9,_,1930.318369,26.16038562,19 Years and 4 Months,Yes,78.33841368,375.2464004,Low_spent_Medium_value_payments,360.8148526,0,0.6719,0.2078,-0.0641,-1.46,-0.666 +0xc2d1,CUS_0x7b75,August,40,146-07-7868,Accountant,8759.74,812.9783333,6,7,19,100,"Payday Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",36.0534753,25.78580972,23.37,6,Bad,4626.158907,29.97271386,12 Years and 6 Months,Yes,43.49571773,,Low_spent_Small_value_payments,226.6512784,0,-0.4225,1.3441,0.4125,-0.9001,-0.0449 +0xc2dd,CUS_0xed8,August,25,542-81-2536,Engineer,15847.06,,4,4,8,6,"Auto Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, and Student Loan",16.83546819,11,10.78,10,Standard,412.71,35.95457245,8 Years and 6 Months,Yes,45.68108361,10000,Low_spent_Small_value_payments,240.9122054,0,0.9559,-0.6772,-1.2701,-1.2675,0.9289 +0xc2e9,CUS_0x1416,August,20,036-32-2011,Accountant,29651.23,2460.935833,6,5,6,2,"Home Equity Loan, and Not Specified",18.20959733,15,1.62,2,Standard,1057.363656,23.16531585,27 Years and 10 Months,No,37.90300631,42.6040976,High_spent_Large_value_payments,411.5810589,0,-1.787,-1.3255,-0.2487,1.0627,1.2125 +0xc2f5,CUS_0x1b8a,August,33,577-72-6050,_______,44927.86,3687.988333,4,6,6,3,"Not Specified, Personal Loan, and Debt Consolidation Loan",6.716446015,8,5.55,0,Good,671.7263644,33.03308334,21 Years and 4 Months,No,102.1903288,86.45035929,High_spent_Medium_value_payments,438.1706496,0,0.9266,0.9925,-1.3404,0.7595,0.6233 +0xc301,CUS_0x1a2a,August,26,227-46-3036,Architect,72002.56,,8,7,13,2,"Mortgage Loan, and Credit-Builder Loan",21.89552861,18,13.53,7,Standard,1021.82,39.13621871,19 Years and 5 Months,Yes,92.23327755,70.74701327,!@9#%8,686.6410425,0,-0.5903,-1.8356,-0.1409,-0.9592,-0.8712 +0xc30d,CUS_0x413,August,23,851-32-4418,Manager,41806.16,,2,7,7,1,Personal Loan,1.539297785,4,6.04,5,Good,265.4450596,33.91505579,26 Years and 9 Months,NM,21.86468206,141.0443636,High_spent_Medium_value_payments,457.5458864,0,-0.1495,0.5809,-1.2865,-0.9298,0.5025 +0xc319,CUS_0x403d,August,49,067-11-8097,Manager,71421.15,6118.7625,7,7,18.28836175,0,,,10,11.3,0,Standard,566.98,34.61645679,17 Years and 10 Months,NM,0,528.9213605,High_spent_Medium_value_payments,752.8923505,0,-0.6018,2.2081,-0.4818,1.232,-0.2571 +0xc325,CUS_0x2997,August,20,012-07-2943,Journalist,64514.31,5353.1925,7,6,14,3,"Student Loan, Payday Loan, and Debt Consolidation Loan",,8,12.88,12,Standard,374.51,37.21220851,18 Years and 5 Months,Yes,98.00331867,90.86337818,High_spent_Medium_value_payments,596.4525532,0,-0.1284,0.707,-0.8626,0.7445,-0.5201 +0xc331,CUS_0x23eb,August,28,929-73-1862,Musician,109905.96,,8,4,8,1,Personal Loan,,22.18432794,5.07,1,Standard,169.3767749,40.60455533,20 Years and 8 Months,Yes,90.58286628,272.9301148,Low_spent_Medium_value_payments,826.1700189,0,1.1707,-0.7912,0.3672,-1.2798,0.8105 +0xc33d,CUS_0x46bd,August,42,791-21-8450,Scientist,156356.52,13152.71,4,7,7,2,"Not Specified, and Debt Consolidation Loan",16.19129582,10.29274359,8.31,3,Good,552.9628109,41.34289814,29 Years and 8 Months,No,245.7717773,,Low_spent_Large_value_payments,576.3381956,0,0.2066,-0.6809,0.1941,0.1337,1.4851 +0xc349,CUS_0x7be2,August,44,880-25-9026,Journalist,71889.08,6266.756667,7,8,22,3,"Debt Consolidation Loan, Payday Loan, and Personal Loan",17.72650978,9,18.49,15,_,2461.32,39.66957472,,Yes,109.660777,,High_spent_Large_value_payments,609.4361306,0,1.9547,0.7076,-0.9173,-0.053,1.0912 +0xc355,CUS_0xa3b4,August,18,734-47-5830,Scientist,19648.09,1890.340833,7,3,14,4,"Home Equity Loan, Mortgage Loan, Personal Loan, and Student Loan",20.57685128,16,10,7,_,2052.35,26.97706993,12 Years and 4 Months,Yes,39.66410354,27.07545092,High_spent_Medium_value_payments,372.2945289,0,-1.2046,-0.2739,-0.4679,0.758,-0.1949 +0xc361,CUS_0x7f3f,August,19,380-39-4930,Lawyer,7842.3,528.525,10,10,22.06745738,8,"Not Specified, Credit-Builder Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Not Specified, and Auto Loan",,15,23.06,9,Bad,3644.500954,37.13569888,2 Years and 4 Months,Yes,40.96970272,,Low_spent_Small_value_payments,243.5735848,0,-0.5916,1.0707,-0.0644,0.3564,-0.6213 +0xc36d,CUS_0x6947,August,19,#F%$D@*&8,Media_Manager,14051.56,,10,9,31.88954781,8,"Not Specified, Auto Loan, Home Equity Loan, Payday Loan, Payday Loan, Student Loan, Mortgage Loan, and Not Specified",,22.19816116,16.54,12,Bad,4778.324061,36.8734564,8 Years and 3 Months,Yes,1398.642346,,Low_spent_Medium_value_payments,215.3856863,0,0.534,0.3358,-0.6182,-0.3502,2.2515 +0xc379,CUS_0x4da0,August,41,195-55-5376,Scientist,73451.94,6309.995,5,7,9,3,"Payday Loan, Auto Loan, and Auto Loan",32.35204868,21,9.13,2,Good,965.51,41.60831393,23 Years and 8 Months,No,114.2405652,231.2654964,Low_spent_Large_value_payments,555.4934385,0,-0.5245,0.4702,-0.3212,0.8621,0.6652 +0xc385,CUS_0x3def,August,48,684-00-2977,Media_Manager,43360.74,3647.395,2,6,11.28836175,2,"Student Loan, and Credit-Builder Loan",6.373060631,8,1.56,6,_,262.0657112,25.62327739,30 Years and 11 Months,No,57.6589505,531.7086797,High_spent_Medium_value_payments,457.0792848,0,-0.9729,-0.2708,0.7124,-0.9968,0.6404 +0xc391,CUS_0x972d,August,47,#F%$D@*&8,Doctor,71605,6011.083333,2,5,0.288361749,2,"Mortgage Loan, and Not Specified",8.018427702,8,9.38,1,Good,519.84,32.03225807,27 Years and 5 Months,No,71.25191113,473.1176969,!@9#%8,716.6761864,0,-1.5482,-2.0534,-1.7879,0.7467,0.7938 +0xc39d,CUS_0x3815,August,39,#F%$D@*&8,_______,22457.51,,0,3,11,0,,0.603302392,0,2.68,3,Good,901.1363075,36.8311684,28 Years and 5 Months,No,200.5995938,105.616566,Low_spent_Medium_value_payments,350.7293506,0,-0.1103,1.0891,1.3974,-1.5017,0.0416 +0xc3a9,CUS_0x2f08,August,29,468-82-8711,Mechanic,37577.82,,8,5,24,7,"Not Specified, Payday Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, and Not Specified",22.79864827,16,3.56,12,Bad,1518.65,32.26242949,6 Years and 10 Months,Yes,198.0002783,,High_spent_Small_value_payments,179.0508231,0,-0.4032,1.4251,0.7801,-1.1053,0.7731 +0xc3b5,CUS_0x9ffa,August,41,337-76-8130,Manager,35218.52,3195.876667,1,2,3,2,"Home Equity Loan, and Credit-Builder Loan",11.17051439,12,4.03,0,_,874.2424998,23.13135888,24 Years and 2 Months,No,38.68319085,238.6732104,High_spent_Small_value_payments,324.216651,0,-0.1054,-0.8846,0.2764,-2.6669,0.6897 +0xc3c1,CUS_0x3e35,August,48,031-13-0139,Scientist,16988.435,1531.702917,0,1,10,1,Payday Loan,0,1,1.55,0,_,953.48625,37.33046729,29 Years and 8 Months,No,12.76159006,43.72679191,High_spent_Large_value_payments,341.619448,0,-0.6396,-1.5576,1.1445,1.5837,0.2692 +0xc3cd,CUS_0x6034,August,39,367-81-5174,Media_Manager,28838.96,,3,1,9.288361749,0,Credit-Builder Loan,14.30326357,,4.45,5,Good,221.7,29.24952648,31 Years and 3 Months,No,21.19455448,505.8319357,High_spent_Medium_value_payments,380.8356375,0,0.7494,0.3837,0.7907,-0.3223,-1.076 +0xc3d9,CUS_0x935b,August,32,814-23-1843,Developer,10616.07,,5,6,14,5,"Student Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",21.63948935,20,17.36,7,_,765.97,28.72982191,,Yes,28.71775192,,High_spent_Medium_value_payments,278.2759463,0,0.3432,1.1319,-0.1697,-1.2547,-0.5817 +0xc3e5,CUS_0x6473,August,32,116-72-1150,Lawyer,50686.32,,5,4,2891,2,"Auto Loan, and Personal Loan",15.39510063,10,14.01,9,Standard,145.46,22.32212042,9 Years and 11 Months,Yes,61.68673695,283.8907405,Low_spent_Large_value_payments,369.6085225,0,0.9567,-1.6495,2.5813,1.0929,0.3472 +0xc3f1,CUS_0xc2d8,August,49,389-75-2054,Engineer,16221.07,,0,3,3,2,"Auto Loan, and Home Equity Loan",4.133331836,6,5.39,2,Good,197.05,35.73684156,16 Years and 6 Months,No,19.25199559,25.27297493,High_spent_Medium_value_payments,356.5506128,0,-0.6033,-1.0395,-0.1977,-0.3142,0.8292 +0xc3fd,CUS_0x452f,August,43,024-28-2627,Writer,127614.78,,5,6,6.288361749,4,"Personal Loan, Credit-Builder Loan, Payday Loan, and Payday Loan",11.9996104,11.8684698,1.9,4,Good,1446.185416,34.5604407,26 Years and 4 Months,No,326.7097896,1155.955486,Low_spent_Medium_value_payments,258.2286859,0,-3.8931,0.4617,0.2878,-1.9025,-0.7197 +0xc409,CUS_0x7b2d,August,23,504-65-9658,Scientist,83181.88,,3,4,4.288361749,2,"Auto Loan, Personal Loan, and Payday Loan",0,0,,0,Good,322.3926669,33.6717999,21 Years and 8 Months,NM,173.817388,707.8766078,High_spent_Medium_value_payments,507.5981614,0,-1.1078,1.3155,0.3243,0.9987,-1.051 +0xc415,CUS_0x5e34,August,39,028-39-5974,Journalist,14696.62,,9,7,21.06745738,2,"Student Loan, and Home Equity Loan",34.82453933,21,7.35,11,Bad,2890.040954,28.5725146,,Yes,17.44148222,10000,High_spent_Medium_value_payments,278.180269,0,-0.3035,1.0509,0.5612,1.2217,0.1481 +0xc421,CUS_0x17ff,August,21,280-03-3060,Scientist,17574.745,1344.562083,4,3,7,3,"Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",,9,16.26,,Standard,766.72,37.63876297,24 Years and 2 Months,Yes,27.0251795,52.03243599,Low_spent_Large_value_payments,325.3985928,0,-0.8208,0.9249,-0.4351,1.779,1.6069 +0xc42d,CUS_0x3e9c,August,44,785-01-9853,Lawyer,31364.96,2573.746667,6,5,10,100,,12.2728299,9,14.47,7,Standard,948.01,35.25291124,16 Years and 2 Months,Yes,0,260.9354543,Low_spent_Small_value_payments,286.4392124,0,1.268,0.5623,-1.9032,-0.6656,-0.5177 +0xc439,CUS_0x8783,August,21,420-30-6739,Journalist,35793.61,,7,6,18,1,Not Specified,21.09207751,15,12.06,8,Standard,720.19,25.86179065,21 Years and 6 Months,Yes,28.21269044,200.0870333,High_spent_Small_value_payments,329.9803596,0,-0.0196,0.4973,-0.3072,-0.9579,0.865 +0xc445,CUS_0x2934,August,34,929-54-9881,Lawyer,40067.1,,3,6,11,100,Debt Consolidation Loan,5.121874024,8,10.33,0,_,999.8621045,25.59120415,32 Years and 5 Months,No,18.86285317,99.20852414,High_spent_Medium_value_payments,469.2646329,0,-0.5073,0.5777,-0.4968,-0.1633,-1.0962 +0xc451,CUS_0x71bc,August,35,432-65-2200,Engineer,31004.1,,9,7,25.06745738,5,"Personal Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",38.87098302,26.51401814,6.15,11,Bad,2023.297031,37.17487605,8 Years and 5 Months,Yes,77.96875781,68.48685922,Low_spent_Large_value_payments,362.591595,0,-0.3105,-0.3931,0.8217,-0.7115,-0.6134 +0xc45d,CUS_0x1968,August,18,259-84-4594,Accountant,7588.46,,9,9,29,5,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",21.37050497,17.22973533,26.46,11,Bad,4446.589685,27.79662523,7 Years and 8 Months,Yes,27.10999475,82.84561824,Low_spent_Small_value_payments,246.3815537,0,0.1261,-1.0055,-0.4829,1.8572,1.9422 +0xc469,CUS_0x7238,August,41,185-47-7772,Teacher,32530.44,,10,6,25,3,"Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,20,20.29,11,Bad,1560.96,34.23827369,13 Years and 3 Months,Yes,41.29297955,53.93264313,High_spent_Medium_value_payments,448.3613773,0,-0.4021,-0.3583,1.5395,-1.5914,-1.1042 +0xc475,CUS_0xc09f,August,22,832-22-5121,Engineer,53085.12,,8,8,15,3,"Auto Loan, Mortgage Loan, and Payday Loan",18.28245888,10,11.95,17,Standard,1918.192545,35.94773989,14 Years and 4 Months,Yes,411.0639773,65.81592747,High_spent_Large_value_payments,476.3141454,0,3.1594,-0.075,0.698,-0.7949,-2.8136 +0xc481,CUS_0x94ea,August,53,415-55-2149,Mechanic,160664.8,13235.73333,3,5,7,1,Mortgage Loan,6.084459088,5.713751454,11.76,7,Good,276.3356758,30.23591,21 Years and 6 Months,No,123.7901742,514.5870251,High_spent_Medium_value_payments,935.196134,0,-1.9621,1.8039,1.251,-0.6394,-0.4353 +0xc48d,CUS_0xbd32,August,33,722-77-7445,Scientist,34617.12,,7,7,33,6,"Not Specified, Payday Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Auto Loan",,22.11145221,11.4,,Standard,1773.196862,31.60140974,13 Years and 9 Months,Yes,94.90687019,133.4418778,Low_spent_Small_value_payments,332.127252,0,0.4408,-0.7851,-1.488,0.6766,-0.7789 +0xc499,CUS_0x48a4,August,38,977-59-9173,Teacher,133779.72,,0,5,2,1,Debt Consolidation Loan,0.522114085,2,8.06,2,Good,891.64,30.88234319,32 Years and 6 Months,No,92.93776256,239.6727778,High_spent_Small_value_payments,1026.92046,0,-0.1585,-1.8037,-1.0469,-0.2357,1.0476 +0xc4a5,CUS_0x4a6,August,26,879-08-8721,Entrepreneur,104744.88,,1,4,8,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Mortgage Loan",14.34166873,9.537801477,6.69,3,_,796.3088065,29.25531472,27 Years and 5 Months,No,195.0234166,177.2764797,!@9#%8,776.6741038,0,0.4108,0.0111,-0.565,0.891,0.6893 +0xc4b1,CUS_0x4a43,August,24,586-22-7224,Media_Manager,54889.92,,6,3,17,6,"Payday Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, and Student Loan",17.19086764,9.604004768,16.48,5,Standard,1737.38352,27.85087705,11 Years and 10 Months,Yes,147.0473711,84.49761292,High_spent_Medium_value_payments,469.671016,0,-0.0183,-0.7114,0.4062,2.0349,1.0481 +0xc4bd,CUS_0xad1b,August,28,801-37-4228,Writer,90562.83,7299.9025,3,4,0.288361749,2,"Home Equity Loan, and Debt Consolidation Loan",4.038861805,7,6.38,2,_,1080.907967,32.33710738,17 Years and 8 Months,No,147.2207735,625.9307044,High_spent_Large_value_payments,647.1767065,0,-0.8878,0.1043,1.019,-1.633,1.1758 +0xc4c9,CUS_0x4de6,August,32,232-71-0852,Lawyer,28256.63,,7,7,5,1,Payday Loan,23.12152011,17,3.93,1,Good,59.22134968,37.02703197,22 Years and 5 Months,No,12.34245979,263.4574459,Low_spent_Medium_value_payments,288.3699905,0,0.0852,0.923,0.1317,0.0131,0.5589 +0xc4d5,CUS_0x4a3d,August,34,351-61-7995,Architect,33755.94,,6,10,22.88954781,8,"Student Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",31.53486668,18,28.85,14,_,4503.42,23.94920544,10 Years and 8 Months,Yes,1503.452039,304.1364899,Low_spent_Small_value_payments,64.68088962,0,-0.1212,-0.3123,1.7346,-0.8291,0.2103 +0xc4e1,CUS_0x3e47,August,40,818-53-8754,Doctor,62901.08,5025.756667,4,6,10,3,"Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",19.06176808,16,18.58,6,Standard,228.25,27.40360948,,Yes,81.64127029,104.5068894,High_spent_Large_value_payments,556.4275069,0,-0.1285,1.3241,-1.4816,-1.0332,-0.362 +0xc4ed,CUS_0x2064,August,20,431-84-9907,Scientist,67928.84,5832.736667,5,5,12,0,,4.508807402,8,11.22,4,Good,1219.026747,31.76130326,31 Years and 3 Months,No,0,194.423752,High_spent_Medium_value_payments,661.0176033,0,0.5578,1.3167,0.4456,-0.7781,0.316 +0xc4f9,CUS_0x26d2,August,51,321-93-4142,Architect,119848.77,10224.3975,5,2,10,1,Personal Loan,10.91027194,10,5.75,6,Good,971.0763394,31.50488337,18 Years and 2 Months,No,55.85943763,,High_spent_Large_value_payments,1069.560407,0,-0.1641,-1.2298,1.5198,0.3085,2.7169 +0xc505,CUS_0x9ee5,August,24,043-79-7391,Teacher,11426.59,,4,7,5,0,,26.08803071,15.12273913,10.56,11,Standard,504.5173438,33.5389991,17 Years and 3 Months,NM,0,103.4825359,Low_spent_Small_value_payments,280.0390474,0,1.0839,0.7918,0.6141,-0.5264,0.4191 +0xc511,CUS_0x4395,August,34,861-88-4379,Scientist,45345.12,3737.76,8,7,20.06745738,5,"Student Loan, Credit-Builder Loan, Student Loan, Not Specified, and Home Equity Loan",31.28254071,20.07929635,20.45,11,Bad,4450.912884,37.0782452,1 Years and 0 Months,Yes,142.0302559,452.2634328,Low_spent_Small_value_payments,42.76202333,0,0.3761,-0.5057,-0.2678,0.2286,-0.9952 +0xc51d,CUS_0x697f,August,40,367-66-5050,Entrepreneur,62148,4949,9,7,24,5,"Mortgage Loan, Personal Loan, Payday Loan, Personal Loan, and Home Equity Loan",55.62402127,30.26691698,9.39,12,Bad,2705.017132,28.5875444,16 Years and 11 Months,Yes,258.8488611,174.0208581,!@9#%8,322.0302808,0,0.5341,-1.4183,1.0224,-0.8286,-1.1659 +0xc529,CUS_0xc730,August,24,076-13-6508,Journalist,9608.03,735.6691667,8,1213,10.88954781,6,"Student Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",11.29893142,11,12.44,5,Standard,1494.17,31.37025172,13 Years and 10 Months,Yes,1348.951443,40.11120027,Low_spent_Small_value_payments,280.1741925,0,1.4411,1.5853,-1.3218,-0.6241,0.6044 +0xc535,CUS_0xc39d,August,35,194-07-0591,Media_Manager,167883.84,13990.32,5,6,2.288361749,0,Payday Loan,0.314870498,4,11.72,4,Good,948.18,29.36061692,30 Years and 9 Months,No,86.95168098,980.8164837,Low_spent_Medium_value_payments,1031.201296,0,0.4307,0.7885,-0.3535,1.284,0.2025 +0xc541,CUS_0x214c,August,40,551-77-8269,Musician,20877.19,,7,6,20,5,"Not Specified, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",27.4009341,20,15.69,16,Standard,1324.1,27.87158539,16 Years and 5 Months,Yes,58.02206477,155.0404193,Low_spent_Large_value_payments,234.9140993,0,-1.0331,0.9573,-3.0182,2.8164,-0.7652 +0xc54d,CUS_0x8b1f,August,53,687-84-7697,_______,58280.72,4760.726667,5,7,11.28836175,0,Home Equity Loan,,4,7.78,4,Good,407.6834337,40.47282087,31 Years and 10 Months,NM,37.41121768,,High_spent_Medium_value_payments,540.0885713,0,-1.3437,0.0893,0.9532,0.1116,1.6505 +0xc559,CUS_0x1d3d,August,48,#F%$D@*&8,Doctor,60284.16,5153.68,0,4,2,2,"Student Loan, and Home Equity Loan",0,4.546392091,4.4,9,_,1500.36255,34.32494122,30 Years and 9 Months,No,67.9295751,367.7898487,Low_spent_Large_value_payments,349.6485762,0,1.0687,-1.2291,-1.402,-0.7569,0.1118 +0xc565,CUS_0xe98,August,39,663-43-9394,Journalist,68392.18,,0,5,12,3,"Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",3.985004809,5,10.78,5,Good,622.4282946,31.81827173,27 Years and 9 Months,No,21656,533.2052944,Low_spent_Small_value_payments,269.6394932,0,0.3749,0.6617,-1.0677,-0.2353,-0.594 +0xc571,CUS_0x6e3e,August,28,951-49-3710,Writer,16189.12,1535.093333,9,8,26,5,"Not Specified, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",45.63104785,28.57790657,16.54,13,_,3434.32433,38.82332505,4 Years and 9 Months,Yes,49.58333623,128.2659449,Low_spent_Small_value_payments,265.6600522,0,0.1359,0.9643,-0.0499,-0.9402,-0.9758 +0xc57d,CUS_0x5117,August,35,825-01-6145,Journalist,77604.32,6300.026667,1,7,4.288361749,2,"Payday Loan, Payday Loan, and Debt Consolidation Loan",,14.22690009,4.51,6,Good,626.6637057,30.00538896,21 Years and 8 Months,No,153.3254139,633.2212062,High_spent_Medium_value_payments,513.3935076,0,-0.4564,-3.0151,0.2835,-1.4402,-0.1791 +0xc589,CUS_0x1087,August,51,620-14-7570,Doctor,42153.13,,5,4,10,3,"Payday Loan, Not Specified, and Payday Loan",,9,4.81,7,Good,1027.64,26.34447695,28 Years and 5 Months,No,79.29961146,80.6249024,High_spent_Small_value_payments,437.8515695,0,-0.3904,-0.7363,1.7481,-0.0744,0.6005 +0xc595,CUS_0xa7be,August,43,901-06-2888,Journalist,61503.66,4972.305,7,4,11,4,"Mortgage Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",20.59766818,19,11.89,2,Good,1020.557371,26.87289945,33 Years and 5 Months,NM,179.6433416,,High_spent_Large_value_payments,484.7865954,0,0.5274,-1.3888,1.525,0.1757,1.4239 +0xc5a1,CUS_0x10a9,August,41,514-08-4156,Journalist,17603.265,,8,6,4,0,,14.32777341,12,10.27,4,_,774.4331876,41.7925525,15 Years and 9 Months,No,102.9927716,23.34115953,High_spent_Large_value_payments,362.1593857,0,0.6474,0.4387,0.8725,0.0383,-1.2896 +0xc5ad,CUS_0x2aa8,August,33,357-25-7547,Media_Manager,97009.44,8257.12,1413,7,1.288361749,0,,,7,7.53,3,Good,416.7245048,35.816271,21 Years and 9 Months,No,0,881.7492164,High_spent_Small_value_payments,682.3720836,0,1.0083,0.2044,0.0622,1.2601,1.1377 +0xc5b9,CUS_0x6f88,August,18,791-16-1444,Writer,38126.94,3373.245,8,9,29,9,"Payday Loan, Mortgage Loan, Student Loan, Personal Loan, Home Equity Loan, Auto Loan, Auto Loan, Home Equity Loan, and Not Specified",50.95540399,28.78345789,4.13,15,Bad,1808.882042,36.03203206,,Yes,168.5211474,94.4762808,High_spent_Medium_value_payments,324.3270718,0,0.2234,-2.1915,1.0591,0.9623,0.6981 +0xc5c5,CUS_0x5ee7,August,51,674-29-2346,Developer,92127.24,7849.27,5,7,6,3,"Not Specified, Not Specified, and Credit-Builder Loan",24.25306902,,-4.75,2,Good,530.4453888,34.56317563,21 Years and 3 Months,No,175.9159443,52.51875773,High_spent_Large_value_payments,796.492298,0,0.4826,1.0509,0.2588,-0.1605,-1.6517 +0xc5d1,CUS_0x236b,August,25,575-63-7039,Manager,18393.51,1689.693737,9,10,30.06745738,5,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",33.19851614,16,21.02,10,_,2827.500954,33.20461577,4 Years and 10 Months,Yes,115.303694,,Low_spent_Large_value_payments,203.3093776,0,0.73,0.5133,1.5093,-1.7865,-2.1836 +0xc5dd,CUS_0x75ff,August,43,817-58-4886,Doctor,60040.5,5258.375,8,10,34.88954781,7,"Personal Loan, Credit-Builder Loan, Personal Loan, Personal Loan, Auto Loan, Student Loan, and Home Equity Loan",44.85574247,25.53111567,29.37,15,Bad,4340.872569,25.55369602,13 Years and 5 Months,Yes,1636.474965,10000,!@9#%8,339.3817631,0,-0.0014,-0.0641,1.2992,0.1792,0.9236 +0xc5e9,CUS_0xbf99,August,38,744-68-1419,Media_Manager,28023.75,2023.243167,5,7,18,1,Debt Consolidation Loan,23.72818095,18,14.24,7,Standard,373.1411003,33.18187825,22 Years and 0 Months,Yes,296.1038342,,High_spent_Large_value_payments,417.2885849,0,-1.5381,1.7787,-0.613,0.8239,0.8208 +0xc5f5,CUS_0x273e,August,44,564-52-2141,Writer,42811.36,3825.613333,5,3,18,4,"Personal Loan, Personal Loan, Not Specified, and Personal Loan",21.07802902,14.2239991,,5,Standard,829.8864821,28.68945475,25 Years and 10 Months,No,74.60694981,,Low_spent_Small_value_payments,134.3679064,0,1.2742,-1.2922,-0.4834,-0.5597,1.3439 +0xc601,CUS_0x1769,August,30,416-99-1698,Musician,40651.74,3238.645,3,4,3.288361749,4,"Mortgage Loan, Payday Loan, Student Loan, and Personal Loan",0,3,10.69,5,Good,208.4305643,23.5236722,30 Years and 10 Months,No,133.1009612,503.9966628,High_spent_Large_value_payments,356.4688053,0,0.4355,-0.231,1.1439,1.7047,0.4963 +0xc60d,CUS_0x41f4,August,30,622-63-2657,Manager,19129.65,,7,6,31,7,"Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Auto Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",40.56600525,19.91950761,21.36,7,Bad,3525.433653,31.71808402,8 Years and 11 Months,NM,60.15333666,,High_spent_Small_value_payments,248.5307803,0,1.2262,1.0654,0.5051,-0.3171,0.777 +0xc619,CUS_0x894e,August,38,170-66-8219,Accountant,36841.39,,0,5,3.288361749,0,Student Loan,8.192553297,10,3.16,4,_,414.56,34.73247878,16 Years and 8 Months,No,29.83576249,,High_spent_Small_value_payments,409.4225931,0,0.5655,-1.2461,0.8829,-0.5584,0.0363 +0xc625,CUS_0x42eb,August,18,161-54-7964,Writer,20616.96,,9,10,24.06745738,3,"Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",45.63306664,28.77107156,12.97,9,Bad,3304.313682,29.45996448,15 Years and 0 Months,Yes,29.75642125,122.2540352,Low_spent_Large_value_payments,279.4772556,0,1.4187,-1.2978,-1.1496,-1.4992,0.8097 +0xc631,CUS_0x1e52,August,28,767-28-6057,Media_Manager,67059.18,,8,6,18,4,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",22.92344187,18,11.57,8,Standard,221.1647252,31.98804152,6 Years and 3 Months,Yes,167.1239995,,Low_spent_Large_value_payments,174.7057842,0,-0.139,1.1314,0.3239,-0.723,0.9742 +0xc63d,CUS_0x72b7,August,36,456-62-9690,Architect,128141.19,10812.4325,4,340,3,2,"Not Specified, and Credit-Builder Loan",8.637028531,10,11.42,0,Good,198.77,40.09395259,,No,121.5777072,263.6765768,High_spent_Medium_value_payments,945.988966,0,-0.1323,0.8254,-0.1796,-0.5143,1.4314 +0xc649,CUS_0xf7d,August,27,633-98-5342,Engineer,57437.4,4916.45,9,5,31,7,"Mortgage Loan, Auto Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",33.70802935,19.23998474,15.85,7,_,2851.530419,27.15541054,9 Years and 5 Months,NM,175.0096264,,High_spent_Medium_value_payments,476.3923525,0,0.6046,1.6228,0.749,1.1929,0.5713 +0xc655,CUS_0x6579,August,18,563-27-3202,Engineer,19536.45,1611.0375,10,7,23.06745738,8,"Student Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Student Loan, Student Loan, Credit-Builder Loan, and Personal Loan",37.67782304,22.99760912,8.37,12,Bad,3072.00176,32.84647544,6 Years and 3 Months,NM,101.5647387,157.3758669,Low_spent_Medium_value_payments,155.4428565,0,-0.7399,-0.656,-0.2937,-0.8612,1.0449 +0xc661,CUS_0x6d1a,August,18,619-06-7912,Scientist,76041.16,6078.763333,6,6,15,3,"Student Loan, Mortgage Loan, and Payday Loan",10.02508417,10.83879229,15.46,11,Standard,2677.881834,40.22838158,19 Years and 3 Months,Yes,184.7226306,288.1582117,Low_spent_Large_value_payments,404.9954911,0,-1.1492,0.8262,0.4103,-0.6041,-1.9638 +0xc66d,CUS_0x24f6,August,27,557-51-8001,Manager,65017.26,5248.105,5,7,12,4,"Payday Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",5.587482967,8,7.1,5,Standard,978.14,37.43559999,31 Years and 5 Months,No,168.3919056,163.6516651,!@9#%8,442.7669292,0,-1.0956,-0.4082,-0.3305,-2.006,1.0562 +0xc679,CUS_0x90be,August,35,444-07-8109,Mechanic,10466.825,,9,10,31.06745738,4,"Payday Loan, Student Loan, Auto Loan, and Debt Consolidation Loan",35.77134613,19,8.54,9,Standard,1743.120954,29.11052704,12 Years and 4 Months,Yes,96.86755288,44.26963115,!@9#%8,237.7789259,0,0.9369,-1.2516,-0.7383,-0.1971,-0.1035 +0xc685,CUS_0x6ab5,August,21,626-07-4067,Teacher,81995.32,7087.943333,3,7,5,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Mortgage Loan",13.77581098,10,9.47,9,_,193.78,32.94783593,20 Years and 0 Months,Yes,175.9027801,634.1400912,Low_spent_Small_value_payments,188.7514621,0,-0.4119,0.4453,1.3582,-1.106,-0.5456 +0xc691,CUS_0x63b1,August,50,181-37-1532,Writer,100686.12,,6,3,9,3,"Payday Loan, Student Loan, and Auto Loan",,16,,4,Standard,91.91,29.44393772,18 Years and 10 Months,NM,234.0551774,81.99036141,High_spent_Large_value_payments,792.0054612,0,0.2702,1.7332,0.7568,-0.1394,0.0024 +0xc69d,CUS_0x804e,August,45,424-56-2527,Teacher,67749.5,5381.791667,5,6,8,2,"Student Loan, and Payday Loan",26.07603634,17,14.77,13,_,1437.3,36.37460579,8 Years and 5 Months,Yes,75.3199965,194.2859378,Low_spent_Medium_value_payments,548.5732324,0,-0.2926,0.7011,1.0439,-1.0264,0.5577 +0xc6a9,CUS_0xae42,August,56,166-16-7587,Entrepreneur,29490.49,,2,4,6,4,"Debt Consolidation Loan, Payday Loan, Payday Loan, and Auto Loan",,6,8.41,6,Good,591.33,36.22790879,31 Years and 6 Months,NM,90.93073451,117.6044139,Low_spent_Medium_value_payments,296.0189349,0,0.0895,0.1397,1.6421,0.5937,1.8861 +0xc6b5,CUS_0x4e0e,August,58,798-36-9685,Doctor,164956.96,13601.41333,1,4,1,3,"Personal Loan, Auto Loan, and Personal Loan",,6,2.01,2,Good,712.1385268,34.37884145,23 Years and 10 Months,No,335.5410252,800.9683304,Low_spent_Medium_value_payments,621.8621506,0,0.2298,-0.7186,-0.5187,1.5775,0.869 +0xc6c1,CUS_0x73cf,August,50,404-87-5996,Scientist,105308.68,8538.723333,6,4,10,3,"Payday Loan, Debt Consolidation Loan, and Credit-Builder Loan",,20.25083502,10.65,5,Good,1016.960278,28.76062552,29 Years and 5 Months,No,200.4744119,239.371936,Low_spent_Medium_value_payments,694.0259855,0,-1.2594,-1.5122,-0.1434,-0.1603,-1.4772 +0xc6cd,CUS_0xc2e8,August,40,243-24-5828,Architect,38325.88,2942.823333,3,7,22,7,"Auto Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Home Equity Loan",,22.94642358,15.88,9,Standard,2019.795972,25.24829933,9 Years and 10 Months,Yes,173.6950345,102.1846682,High_spent_Medium_value_payments,268.4026306,0,0.7039,1.6001,-0.7584,-0.1123,0.3907 +0xc6d9,CUS_0x83c3,August,45,432-73-7397,Writer,109061.96,,8,4,13,4,"Credit-Builder Loan, Not Specified, Mortgage Loan, and Payday Loan",16.31228543,11.43735205,18.09,9,Standard,1081.518719,27.83254442,16 Years and 3 Months,Yes,273.4533889,117.5718351,High_spent_Large_value_payments,764.6244427,0,1.3268,-0.6303,-0.1815,0.6121,0.7457 +0xc6e5,CUS_0x2312,August,55,308-25-6929,Manager,44708.14,3653.678333,3,169,10.28836175,0,,,1,11.55,4,Good,323.6041308,29.50893664,21 Years and 0 Months,NM,0,561.3997742,High_spent_Medium_value_payments,494.5651266,0,-1.134,0.0934,-3.0702,1.9712,-0.3012 +0xc6f1,CUS_0x73d5,August,26,282-90-3051,Journalist,66022.26,5382.855,1,4,11.28836175,2,"Payday Loan, Mortgage Loan, and Mortgage Loan",,8,10.47,7,Good,851.7663203,31.80435272,,No,94.4961378,772.3014175,Low_spent_Medium_value_payments,414.7653146,0,-1.5519,1.1551,-0.0772,0.1289,1.3821 +0xc6fd,CUS_0xaf81,August,44,759-23-7670,Entrepreneur,57180.88,4584.073333,3,4,9,0,,12.17479411,13.31459938,3.89,2,Good,1250.808874,34.86255305,19 Years and 11 Months,No,0,385.2952135,Low_spent_Medium_value_payments,353.1121198,0,0.4308,-0.0773,0.412,-1.5879,0.8523 +0xc709,CUS_0x9cd7,August,23,211-57-8303,_______,62892.92,5461.076667,7,6,33,5,"Not Specified, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",27.00447643,16.97589516,3.58,,Bad,2761.512327,25.7599137,18 Years and 2 Months,Yes,211.7964619,184.8201753,High_spent_Medium_value_payments,399.4910294,0,-1.0588,-0.8375,-0.8299,-2.2394,-1.2027 +0xc715,CUS_0x48d4,August,20,775-84-9829,Engineer,56039.7,4899.975,2,5,9,4,"Personal Loan, Auto Loan, Student Loan, and Payday Loan",14.45806327,12,7.64,4,Good,895.2,25.6743428,18 Years and 3 Months,No,128.6409987,177.3165584,High_spent_Medium_value_payments,434.039943,0,1.4187,0.0518,-0.6317,0.0755,-0.854 +0xc721,CUS_0x2c15,August,18,389-41-3683,Developer,17790.73,,9,7,23.06745738,7,"Personal Loan, Student Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Student Loan",,25,17.22,17,Bad,4596.980954,39.82194396,8 Years and 5 Months,Yes,80.71470876,37.52138308,High_spent_Medium_value_payments,251.1997035,0,0.1339,-2.0709,1.3581,0.7227,0.5341 +0xc72d,CUS_0x2ee0,August,26,372-70-7552,Media_Manager,31731.94,2629.328333,5,6,10,3,"Payday Loan, Student Loan, and Credit-Builder Loan",17.42362371,12,11.51,3,Standard,889.42,33.63265079,,No,75.00231065,81.08476234,High_spent_Small_value_payments,366.8457603,0,-0.0789,0.7479,-0.7082,-2.2765,1.4 +0xc739,CUS_0xc106,August,80,957-59-3053,Teacher,28081.94,2406.161667,5,6,2,1,Personal Loan,90,758,12.99,0,Good,209.1093006,36.46413633,20 Years and 3 Months,No,18.29235536,78.2890501,High_spent_Small_value_payments,411.2990438,0,-0.0471,0.7494,0.4382,2.5693,0.0032 +0xc745,CUS_0x8894,August,32,347-33-6352,Manager,18976.46,1481.371667,8,7,23.06745738,7,"Auto Loan, Not Specified, Home Equity Loan, Mortgage Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",31.66390522,15,27.54,10,_,4761.440954,34.18141061,1 Years and 11 Months,Yes,60.38266673,64.93729986,Low_spent_Large_value_payments,266.0969121,0,1.3845,-1.8332,0.3449,-0.9519,-0.4806 +0xc751,CUS_0x9019,August,35,748-07-9339,Architect,16748.19,1252.6825,803,5,18,2,"Auto Loan, and Mortgage Loan",34.00984693,26.43657658,13.85,10,Standard,1736.045895,29.88302095,17 Years and 2 Months,Yes,14.3196618,28.9337833,High_spent_Large_value_payments,322.0148049,0,-0.5686,0.5448,0.9218,-0.1442,-0.0441 +0xc75d,CUS_0x937d,August,34,385-63-1732,Journalist,12167.22,,5,7,15,0,,,8,7.83,7,Standard,114.520239,36.39566418,18 Years and 2 Months,NM,97.31708751,162.3208636,Low_spent_Small_value_payments,267.403544,0,1.4289,-1.8794,0.5092,1.0502,1.2583 +0xc769,CUS_0xade3,August,49,#F%$D@*&8,Entrepreneur,165076.44,13822.37,1,6,2.288361749,2,"Personal Loan, and Credit-Builder Loan",,2,6.71,5,_,712.94,44.04352058,18 Years and 6 Months,No,273.1747174,614.9079619,High_spent_Medium_value_payments,1164.091782,0,0.0749,-0.6282,-0.0452,0.2725,0.4735 +0xc775,CUS_0x4d9c,August,29,059-80-7682,Manager,69753.12,,6,10,27,2,"Not Specified, and Payday Loan",30.64593523,21.87151442,7.92,7,Bad,2843.95907,27.20352766,14 Years and 4 Months,Yes,94.17278444,275.9519279,High_spent_Small_value_payments,442.0512876,0,0.322,0.8814,-0.5046,-0.5188,0.7688 +0xc781,CUS_0x98a,August,40,714-91-7378,Entrepreneur,20524.7,1791.391667,10,10,25.95700519,9,"Mortgage Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Payday Loan, Not Specified, Mortgage Loan, and Auto Loan",,28.30682779,8.86,12,Bad,4817.820256,36.10257635,8 Years and 11 Months,Yes,1403.28251,108.070193,High_spent_Small_value_payments,206.7360947,0,0.553,-0.3611,0.822,-0.2722,1.814 +0xc78d,CUS_0x2c2d,August,29,#F%$D@*&8,Mechanic,101173.8,,4,3,13,2,"Credit-Builder Loan, and Debt Consolidation Loan",4.462346276,8,8.09,4,Standard,85.31,42.60181794,20 Years and 6 Months,No,142.7062527,155.8640553,High_spent_Small_value_payments,775.644692,0,-0.4887,-0.9702,-1.1546,-1.5741,0.508 +0xc799,CUS_0xb471,August,43,091-55-3723,Developer,17638.12,1371.838441,4,5,31,7,"Auto Loan, Mortgage Loan, Auto Loan, Personal Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",19.55843442,16.30543282,18.06,11,Standard,2324.046205,36.5294587,16 Years and 2 Months,Yes,78.68786211,96.2896377,Low_spent_Medium_value_payments,262.0117254,0,0.0206,-1.2157,-0.0675,1.0964,-0.3697 +0xc7a5,CUS_0xb4c5,August,52,873-29-1123,Journalist,61358.82,4923.235,7,7,13.28836175,0,,18.3096373,16,5.99,3,Standard,537.91,26.92478958,,No,0,,High_spent_Large_value_payments,694.8497158,0,1.1006,-0.001,0.6229,-0.3134,-0.7358 +0xc7b1,CUS_0x510d,August,28,056-29-1977,Architect,38212.84,3306.403333,8,10,23.88954781,8,"Auto Loan, Not Specified, Not Specified, Auto Loan, Mortgage Loan, Home Equity Loan, Payday Loan, and Personal Loan",35.85213069,24,0.4,8,_,1384.44,39.76695194,8 Years and 4 Months,Yes,1472.148169,138.7142949,High_spent_Medium_value_payments,275.4477878,0,1.9014,0.9111,0.2815,0.3706,-0.0256 +0xc7bd,CUS_0x4f2a,August,40,807-03-5415,Engineer,22136920,,1,6,1,2,"Auto Loan, and Not Specified",,6,9.49,6,_,995.2756155,38.2785182,22 Years and 10 Months,No,196.5873212,386.0705478,High_spent_Medium_value_payments,758.1550423,0,0.8233,-0.305,-0.1895,-0.7795,-1.0842 +0xc7c9,CUS_0xb7d4,August,45,621-69-4420,Developer,147521.76,12586.48,1,1,1.288361749,0,Credit-Builder Loan,0,2,0.57,7,Good,90.35869285,27.93139828,18 Years and 4 Months,No,122.3425952,1521.171402,!@9#%8,421.3358752,0,0.0476,-0.2374,0.1807,-0.5471,-0.0865 +0xc7d5,CUS_0x3121,August,36,709-67-5219,Entrepreneur,42847.79,,4,7,2,100,"Home Equity Loan, and Credit-Builder Loan",,7,9.81,9,Good,164.7554888,40.5132142,21 Years and 2 Months,No,52.27619537,,High_spent_Large_value_payments,535.8641136,0,-0.32,-0.3432,0.0731,0.0237,1.2548 +0xc7e1,CUS_0xc3cd,August,18,398-19-9402,Musician,36818.29,,6,6,11,7,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Not Specified, Not Specified, and Home Equity Loan",9.396652569,9,19.92,7,Standard,563.84,38.52085749,13 Years and 6 Months,Yes,195.5092874,323.9156268,Low_spent_Small_value_payments,71.29416912,0,0.0121,0.9569,1.6992,-1.9349,0.1142 +0xc7ed,CUS_0x6191,August,41,714-80-5369,_______,20171.07,,9,7,26,7,"Payday Loan, Auto Loan, Personal Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",,32.1835299,17.81,12,Bad,3193.966015,37.63108639,3 Years and 9 Months,Yes,72.12381186,114.4481973,Low_spent_Small_value_payments,299.7202409,0,0.4095,-0.4046,0.9212,-0.9351,-1.3701 +0xc7f9,CUS_0xa65,August,45,156-18-7147,Architect,51647.07,,6,8,19.88954781,100,"Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",,,12.46,15,Standard,2429.698799,40.48303326,10 Years and 4 Months,Yes,1441.210511,232.5921041,Low_spent_Small_value_payments,352.4595536,0,0.6611,0.8287,0.6185,0.4219,1.0854 +0xc805,CUS_0xaf4c,August,48,056-43-1372,Architect,43787.09,,1,3,1,0,,5.607157578,7,6.75,2,Good,615.05,40.62087622,18 Years and 6 Months,No,0,94.8887177,!@9#%8,492.503699,0,1.0272,0.8019,0.7839,-1.2859,-0.1452 +0xc811,CUS_0x90cf,August,53,058-50-1241,Media_Manager,106234.11,8699.8425,4,5,16,1495,"Student Loan, Credit-Builder Loan, and Home Equity Loan",19.81120066,17,11.21,4,Standard,939.4,36.00942238,,No,201.1134901,625.8471561,Low_spent_Large_value_payments,313.0236038,0,1.2498,1.7363,0.2672,-0.3615,1.067 +0xc81d,CUS_0x686c,August,36,666-90-8248,Developer,10143.89,684.3241667,4,7,15.06745738,3,"Payday Loan, Debt Consolidation Loan, and Mortgage Loan",27.46529885,19,9.67,12,Standard,1230.739261,29.52817261,20 Years and 5 Months,Yes,22.88653282,,High_spent_Small_value_payments,254.3884724,0,1.2717,0.1818,-0.3518,0.2455,0.2175 +0xc829,CUS_0xad30,August,27,777-21-8079,Scientist,38076.6,3059.05,10,8,24,4,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",25.32878725,,11.26,16,Bad,1784.721737,29.19599192,6 Years and 3 Months,Yes,120.2991342,79.24473992,High_spent_Large_value_payments,346.3611259,0,1.79,-1.3075,0.1389,1.8553,-0.1943 +0xc835,CUS_0x58c5,August,27,780-95-9123,Lawyer,77677.38,6476.115,3,7,7,2,"Not Specified, and Payday Loan",,12,8.42,1833,Standard,78.81795497,40.70796734,27 Years and 3 Months,No,118.6305429,584.1508443,Low_spent_Small_value_payments,289.2051094,0,-0.5889,0.967,-0.1164,-0.9213,-0.3409 +0xc841,CUS_0x60c8,August,45,051-56-0904,Entrepreneur,48052.7,4266.391667,4,5,17,2,"Payday Loan, and Student Loan",26.68306114,19,15.89,7,Standard,346.41,29.1282356,10 Years and 2 Months,Yes,59.89857017,68.07389413,High_spent_Large_value_payments,538.6667024,0,0.3479,2.598,-2.2853,-0.1782,0.5776 +0xc84d,CUS_0x3aa8,August,24,730-30-0827,Engineer,20426.41,,6,5,16,5,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",,28.02251525,6.65,7,Bad,1800.645231,27.29360185,7 Years and 8 Months,Yes,57.88334831,211.7532666,Low_spent_Small_value_payments,184.3834685,0,2.0892,-0.3497,0.0576,-1.5177,0.0272 +0xc859,CUS_0x8a89,August,50,524-13-7174,Musician,152895.44,,0,5,4.288361749,2,"Not Specified, and Not Specified",8.809041783,9,,1,_,205.4430919,40.07397183,19 Years and 9 Months,NM,245.552918,699.7882691,High_spent_Large_value_payments,1022.224649,0,1.602,-0.1094,-0.4166,-2.417,0.0972 +0xc865,CUS_0xc190,August,26,876-14-5901,Developer,48537.12,3810.76,9,5,24.06745738,7,"Payday Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",46.98653552,24.02076383,6.39,13,Bad,4005.667135,39.27669234,10 Years and 9 Months,NM,255.5173338,,!@9#%8,270.9394406,0,1.5209,-0.6845,-1.6163,0.8976,-1.4758 +0xc871,CUS_0x9eb6,August,24,590-47-8337,Accountant,166692,13599,0,2,4,4,"Mortgage Loan, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",1.836565877,6,4.54,4,Good,779.1167718,24.00722982,23 Years and 10 Months,No,533.5631965,1289.652336,Low_spent_Medium_value_payments,,0,-0.3389,2.1163,0.0657,-0.5103,-0.2263 +0xc87d,CUS_0x56d3,August,19,869-43-5002,Media_Manager,16916.38,,3,7,24.06745738,5,"Debt Consolidation Loan, Not Specified, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",,20.42434521,12.77,13,Standard,2081.63157,40.43719368,,Yes,57.36799441,10000,High_spent_Small_value_payments,277.5856056,0,0.3404,1.2147,0.864,1.0646,3.0911 +0xc889,CUS_0x5105,August,51,834-61-1097,Mechanic,80191.38,6293.827869,2,3,3,4,"Student Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",0.599021884,4,11.94,7,Good,1269.969706,25.20188087,27 Years and 8 Months,No,762.638055,379.9834829,Low_spent_Small_value_payments,477.8661642,0,-0.7316,-0.333,1.0456,0.8535,-0.4579 +0xc895,CUS_0xabf0,August,39,831-41-5115,Manager,62428.53,5330.3775,10,8,18.95700519,6,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",50.9096589,31.12376499,21.38,9,Bad,4633.691701,25.94251828,,Yes,1569.094703,203.2014104,High_spent_Medium_value_payments,289.6912674,0,-0.9729,-1.0567,0.5701,-0.4383,0.045 +0xc8a1,CUS_0x2c34,August,18,748-96-2438,Scientist,86492.88,7075.74,7,5,16.28836175,2,"Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",14.87831984,,5.16,1,Standard,269.63,39.14468572,30 Years and 8 Months,No,172.3465509,644.7709876,High_spent_Medium_value_payments,560.3939225,0,-1.323,-1.0232,-0.0938,0.6478,-0.9678 +0xc8ad,CUS_0x8593,August,28,738-92-6385,Scientist,122490.3,10090.525,1,2,7.288361749,0,,15.8784091,15,0.7,2,Good,874.85,33.39595131,32 Years and 3 Months,No,0,557.3984115,High_spent_Medium_value_payments,1121.591549,0,-1.212,-1.4556,-1.0564,-0.7351,1.6096 +0xc8b9,CUS_0x30ae,August,22,808-52-5403,Scientist,40512,3091,8,8,15.88954781,9,"Payday Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",35.25167778,22.6982819,22.04,10,_,4565.910292,34.88176273,13 Years and 10 Months,Yes,1492.969945,118.4236274,Low_spent_Small_value_payments,293.3763466,0,0.8549,1.2981,0.0607,1.6209,-0.4827 +0xc8c5,CUS_0x533b,August,43,720-31-3769,Musician,21265.79,,6,6,5,2,"Debt Consolidation Loan, and Student Loan",25.62067414,17,10.99,2,Standard,515.14,32.88791846,21 Years and 5 Months,NM,19.35336205,10000,High_spent_Medium_value_payments,392.3807543,0,0.1913,0.4497,0.4408,0.6747,-0.4826 +0xc8d1,CUS_0x3b22,August,22,825-82-8472,Engineer,48179.67,4047.9725,3,3,13,3,"Not Specified, Auto Loan, and Not Specified",14.057739,10,12.08,5,Standard,2346.34,40.98786298,14 Years and 8 Months,NM,89.97133651,68.28476317,High_spent_Medium_value_payments,496.5411503,0,-0.286,-0.9603,0.4638,0.336,0.6286 +0xc8dd,CUS_0x46c3,August,52,299-88-0862,Entrepreneur,16257.915,,3,7,2,0,,20.3695949,16,4.03,3,Standard,1340.504853,35.22785144,22 Years and 2 Months,No,0,52.63325133,High_spent_Medium_value_payments,347.2375305,0,-0.7515,-0.033,-0.4256,-0.9468,0.237 +0xc8e9,CUS_0xa2c1,August,56,264-85-9135,_______,35094.85,2968.570833,0,3,6,2,"Auto Loan, and Auto Loan",0,3,8.41,1,Good,968.42,39.9999417,26 Years and 5 Months,No,37.44772466,,High_spent_Small_value_payments,361.3380767,0,-1.8116,0.3841,-0.2784,0.6693,2.0218 +0xc8f5,CUS_0xa294,August,55,527-12-0695,Teacher,39558.72,,9,7,13,3,"Home Equity Loan, Credit-Builder Loan, and Student Loan",14.41875866,9,9.5,4,Standard,957.41,25.83700339,19 Years and 6 Months,Yes,89.41511036,141.2167061,Low_spent_Large_value_payments,343.7241836,0,-0.0269,-1.6999,1.469,-0.6918,1.3881 +0xc901,CUS_0x8a63,August,35,945-10-6206,Media_Manager,85172.7,6428.92952,1,3,2.288361749,0,Home Equity Loan,,10,3.63,7,Good,345.8865093,28.5862389,20 Years and 4 Months,No,593.5502399,,Low_spent_Large_value_payments,707.5212035,0,-0.2677,-0.3734,-0.5215,-0.5367,1.2858 +0xc90d,CUS_0x8d5e,August,22,360-78-4610,Musician,33189.56,3030.796667,122,7,32,8,"Personal Loan, Student Loan, Payday Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",30.37933739,17.97623926,4.47,15,Bad,4688.67131,30.09014368,10 Years and 10 Months,Yes,195.2795765,246.9926721,Low_spent_Large_value_payments,130.8074181,0,-0.3237,0.0984,-0.6072,0.6873,0.0726 +0xc919,CUS_0x80bb,August,22,246-41-3277,Engineer,18998.52,1761.21,6,10,26.95700519,9,"Payday Loan, Not Specified, Student Loan, Not Specified, Personal Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Auto Loan",22.8545621,,6.5,13,Bad,5272.412331,32.28599428,8 Years and 0 Months,Yes,1461.191186,163.2241977,Low_spent_Large_value_payments,100.6552474,0,0.3146,-1.4993,0.4591,1.3275,0.1644 +0xc925,CUS_0x3e73,August,43,935-36-8161,Developer,21591.9,,4,3,1,4,"Student Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,17,4.59,8,Standard,618.8485493,32.50370985,31 Years and 8 Months,No,62.81359026,,Low_spent_Small_value_payments,253.4057226,0,-0.0709,0.5909,-0.999,-0.7043,0.7816 +0xc931,CUS_0x3fe8,August,46,289-73-0089,Teacher,55062.87,4801.5725,10,8,18.88954781,6,"Home Equity Loan, Personal Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Student Loan",,17.62664431,4.01,1104,Bad,1787.731543,41.57609589,,Yes,1466.344561,72.52697701,High_spent_Medium_value_payments,496.955631,0,0.4883,0.0481,-0.7457,1.1438,-0.395 +0xc93d,CUS_0x8998,August,51,886-31-5570,Accountant,85768.98,,2,1,7.288361749,0,,0,1,3.25,2,Good,681.5271864,29.04427231,23 Years and 5 Months,No,0,1150.292504,Low_spent_Medium_value_payments,335.9345021,0,-1.1341,0.4664,0.7024,-0.1405,-0.2763 +0xc949,CUS_0x82e5,August,22,342-77-9174,_______,15116.91,1005.7425,5,2,10,100,"Student Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Not Specified, and Auto Loan",,16,13.84,9,Standard,391.93,27.06926445,16 Years and 2 Months,Yes,75.32554729,,High_spent_Large_value_payments,243.1694624,0,1.4947,1.5603,0.9919,-1.0063,-0.1468 +0xc955,CUS_0x23f3,August,37,817-24-5272,Lawyer,19054.15,,3,3,18.06745738,6,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Student Loan, and Not Specified",18.09828193,10.60758803,15.61,8,Standard,2547.085817,25.86252962,12 Years and 5 Months,Yes,86.85026831,151.0119481,Low_spent_Medium_value_payments,172.2020789,0,1.2199,-1.3279,-0.8735,-0.9127,-1.3111 +0xc961,CUS_0x8d3,August,18,561-11-9757,Writer,20661.14,,8,8,18.88954781,7,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",9.842703588,9,20.29,6,Standard,1870.54,32.16299413,19 Years and 11 Months,Yes,1403.995297,,Low_spent_Small_value_payments,269.7497994,0,0.383,0.4341,-0.1452,0.5927,-0.7722 +0xc96d,CUS_0x994c,August,45,592-27-7551,Manager,50063.36,3574.256592,5,7,9,4,"Auto Loan, Mortgage Loan, Student Loan, and Not Specified",18.75170958,15,3.38,3,Standard,543.9598059,38.44330079,24 Years and 4 Months,NM,463.0696879,136.7507674,Low_spent_Medium_value_payments,424.4367575,0,1.3162,1.1727,-0.6234,-0.6853,0.0796 +0xc979,CUS_0xc566,August,80,703-64-8535,Teacher,127118.72,10850.22667,5,4,7,4,"Mortgage Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",19.04572273,13,10.27,3,_,853.09,29.1385929,22 Years and 11 Months,NM,247.2106191,390.8619585,High_spent_Medium_value_payments,696.950089,0,1.0558,0.5224,0.4612,0.2155,-1.4184 +0xc985,CUS_0x8109,August,25,845-68-5410,Musician,179068.04,14978.33667,5,6,6,4,"Mortgage Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",,12.59591359,11.86,2,Good,552.6927487,37.12567508,17 Years and 9 Months,No,501.2124042,364.4749586,High_spent_Large_value_payments,872.1463039,0,-1.4006,2.0986,0.3895,0.0252,0.4508 +0xc991,CUS_0xaf3a,August,34,078-94-7620,Mechanic,58110.06,,8,8,30.88954781,6,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",46.63818738,22.54621136,6.26,8,Bad,1789.89985,34.00485746,14 Years and 2 Months,Yes,1600.971596,,Low_spent_Medium_value_payments,139.5143166,0,0.2664,-0.4719,-0.7188,-0.2413,-0.8165 +0xc99d,CUS_0x10b3,August,48,293-45-3004,Mechanic,136150.6,11127.88333,1,5,9,3,"Student Loan, Student Loan, and Auto Loan",1.218509647,3,10.72,3,_,238.9777673,35.95859451,27 Years and 4 Months,NM,177.6540722,1507.186603,Low_spent_Small_value_payments,,0,0.8761,-0.2677,1.0043,0.2727,-1.957 +0xc9a9,CUS_0x86a,August,37,588-91-6598,Doctor,59072.52,4824.71,832,9,28.88954781,6,"Not Specified, Debt Consolidation Loan, Student Loan, Payday Loan, Mortgage Loan, and Not Specified",,20.67353518,19.2,13,_,3125.4991,31.76780845,10 Years and 8 Months,Yes,1542.990442,93.04907134,High_spent_Large_value_payments,392.1014051,0,0.5656,1.0795,1.1848,0.6791,-1.4364 +0xc9b5,CUS_0x423c,August,26,735-93-2088,Architect,26976.43,2525.035833,7,7,7,4,"Mortgage Loan, Personal Loan, Payday Loan, and Not Specified",15.32609584,10,15.26,3,_,377.8197695,27.8051168,,Yes,62.53029961,48.47987286,High_spent_Medium_value_payments,396.8831336,0,0.8923,0.9372,-0.5813,0.2304,-1.2914 +0xc9c1,CUS_0x5b28,August,19,806-77-5618,Teacher,72637.48,6064.123333,6,5,4751,4,"Not Specified, Credit-Builder Loan, Home Equity Loan, and Auto Loan",23.05804128,16.88282763,8.41,10,_,2164.466036,36.92508106,11 Years and 9 Months,Yes,174.4273555,152.7338244,High_spent_Large_value_payments,519.2511534,0,0.0555,0.2913,0.2142,-0.552,0.872 +0xc9cd,CUS_0xae4b,August,44,357-08-4783,Teacher,10952.32,631.733362,6,4,6,1,Debt Consolidation Loan,21.19796528,16,17.64,9,Standard,1270.54,28.46932502,24 Years and 5 Months,No,65.87314109,88.60898023,Low_spent_Small_value_payments,262.4471834,0,1.0298,-0.2882,0.9821,-1.6554,-1.4206 +0xc9d9,CUS_0x7977,August,23,974-79-8370,Teacher,121223.96,9864.996667,5,7,3,0,,,,3.36,2,_,1338.42,38.63633312,19 Years and 6 Months,No,68575,831.6646992,Low_spent_Medium_value_payments,434.8349675,0,-0.8178,1.1355,1.044,1.1655,1.0609 +0xc9e5,CUS_0xc7c,August,21,188-41-5955,Entrepreneur,23917.38,,7,4,6,3,"Personal Loan, Debt Consolidation Loan, and Auto Loan",,16,9.98,2,Standard,888.53,28.11501393,29 Years and 10 Months,Yes,35.50828907,46.87031082,Low_spent_Large_value_payments,360.0329001,0,1.0619,0.3625,0.2553,-0.3178,0.7755 +0xc9f1,CUS_0x4a94,August,41,515-69-0297,Architect,9093.815,782.8179167,3,4,27,100,"Payday Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Personal Loan, Personal Loan, and Home Equity Loan",22.28200076,16.83884956,8.46,9,Standard,2070.310499,36.20546952,16 Years and 9 Months,Yes,49.26630707,58.37763071,Low_spent_Small_value_payments,260.6378539,0,-0.175,0.6291,0.5892,0.9507,-0.2528 +0xc9fd,CUS_0x1134,August,49,#F%$D@*&8,Doctor,15279.545,1517.791627,0,5,7.288361749,2,"Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",,4,6.99,7,Good,145.8541223,26.68114621,30 Years and 10 Months,No,76.53930322,,!@9#%8,349.8139285,0,-0.8873,0.4053,0.0797,0.0393,0.6636 +0xca09,CUS_0xbfb4,August,37,885-74-8162,Media_Manager,17983.02,1522.585,5,6,9,4,"Payday Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",,1,4.92,5,Good,349.0097063,27.75004027,23 Years and 2 Months,No,36.67945595,,Low_spent_Large_value_payments,245.7629765,0,-0.5265,0.2967,-0.5853,0.066,-0.5008 +0xca15,CUS_0x7884,August,42,438-88-2167,Developer,17562.41,,7,9,31,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",35.42396942,21.32720783,8.94,8,Standard,2467.659074,28.66828701,,Yes,46.13293785,85.32295551,Low_spent_Large_value_payments,306.8975233,0,0.2781,-0.4261,-0.0151,0.636,-1.1369 +0xca21,CUS_0x9b30,August,23,497-57-8631,Architect,61793.46,,10,8,35.06745738,5,"Payday Loan, Auto Loan, Student Loan, Mortgage Loan, and Payday Loan",43.94446449,27.0786121,21.92,12,Bad,4323.05016,28.08826678,6 Years and 8 Months,Yes,257.445742,124.2370064,!@9#%8,368.1424637,0,-0.0907,0.8347,0.31,-1.582,2.598 +0xca2d,CUS_0x302f,August,30,971-08-8220,Accountant,88714.41,7504.8675,4,4,11.28836175,100,Mortgage Loan,0,3,9.12,3,Good,573.6727568,21.91742998,16 Years and 0 Months,No,47.81724752,1028.461413,High_spent_Small_value_payments,446.3417113,0,0.3465,-0.7227,-0.8138,-0.1318,-0.4554 +0xca39,CUS_0xaa8c,August,24,308-59-4171,Doctor,24713.49,2049.4575,3,3,17,100,,12.23057823,8,-4.22,4,Standard,106.33,34.79024831,32 Years and 11 Months,Yes,0,45.75416107,High_spent_Medium_value_payments,409.1915889,0,0.5022,0.1762,0.5877,-1.1884,-1.0818 +0xca45,CUS_0x93c8,August,37,549-93-1720,Manager,53935.11,4590.5925,7,10,24,5,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",,27.96320596,27.22,12,_,5136.593976,29.17206666,11 Years and 0 Months,NM,190.119287,,High_spent_Small_value_payments,220.9000394,0,0.3947,0.2936,0.096,-0.4703,0.229 +0xca51,CUS_0xacca,August,24,822-50-8118,Architect,38600.74,,6,7,28.06745738,7,"Personal Loan, Student Loan, Payday Loan, Auto Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",38.83356126,22,7.47,11,Bad,4687.960954,31.27975497,1 Years and 8 Months,Yes,145.659311,74.4447306,High_spent_Large_value_payments,334.2485038,0,-1.6879,-1.7995,-1.3917,0.2817,-0.1112 +0xca5d,CUS_0x3364,August,36,839-41-9606,Accountant,14132.32,,6,9,35.06745738,8,"Not Specified, Home Equity Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",,19.1613403,23.75,,Bad,5469.010296,37.47459138,1 Years and 10 Months,Yes,51.74926525,,Low_spent_Small_value_payments,176.6647658,0,1.1125,0.6761,-2.0199,-0.8505,-0.4431 +0xca69,CUS_0x90f0,August,36,996-57-7443,Teacher,28010.02,,9,7,27.06745738,4,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",,17.12245091,5.33,13,Bad,2187.62281,34.9897816,10 Years and 11 Months,Yes,49.87501653,140.4708915,Low_spent_Small_value_payments,280.1506373,0,-1.6907,-1.2995,-1.1215,-0.444,-0.3278 +0xca75,CUS_0xabf2,August,18,009-06-4377,Engineer,41781.42,3217.785,8,7,31,8,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Personal Loan",45.33623262,25,6.37,8,Bad,1570.42,32.62026378,9 Years and 2 Months,Yes,226.5679369,,High_spent_Medium_value_payments,258.8684639,0,-0.908,-0.3343,-0.0112,0.6223,0.7858 +0xca81,CUS_0xb413,August,23,235-59-4475,Musician,75454.2,6445.85,5,1497,8,4,"Credit-Builder Loan, Payday Loan, Auto Loan, and Payday Loan",7.873096684,9,9.51,5,Good,1270.920869,30.95888838,32 Years and 6 Months,No,247.2188065,497.6040211,Low_spent_Medium_value_payments,244.3314426,0,-0.183,-0.4835,-0.8175,1.6645,-0.4682 +0xca8d,CUS_0x7b27,August,18,590-91-2232,Lawyer,57858.3,4868.525,6,6,25,5,"Mortgage Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",28.01452995,21,19.39,9,Standard,2298.46,29.61275991,10 Years and 0 Months,Yes,226.7060075,304.4367754,Low_spent_Large_value_payments,225.7097171,0,-0.2758,-1.2241,-0.4648,1.2518,0.4126 +0xca99,CUS_0xb138,August,18,787-35-4659,Architect,19966.31,,6,1123,34.06745738,9,"Auto Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",,19,27.36,6,_,3008.860954,35.1200427,5 Years and 5 Months,Yes,135.3946781,,Low_spent_Small_value_payments,175.2364653,0,0.6956,-0.3285,-0.3579,-0.0323,1.0458 +0xcaa5,CUS_0x1220,August,31,#F%$D@*&8,Architect,128494.52,10580.87667,4,4,8.288361749,2,"Student Loan, and Mortgage Loan",0,0,10.33,3,Good,639.5457537,30.31780762,28 Years and 8 Months,No,176.9046097,11501.65989,High_spent_Large_value_payments,995.2348626,0,0.9789,1.5848,-0.5004,-1.8621,-0.3671 +0xcab1,CUS_0xabff,August,28,270-03-5678,Doctor,97881.44,8138.786667,5,7,4,3,"Not Specified, Credit-Builder Loan, and Mortgage Loan",,12,1.01,3,Good,1263.584981,36.74247568,27 Years and 0 Months,No,217.4601966,433.3752069,Low_spent_Medium_value_payments,491.4969744,0,0.4498,2.0486,0.3212,0.9687,0.5968 +0xcabd,CUS_0xb3ab,August,38,927-37-9220,Mechanic,33492.57,2348.297189,7,4,20,2,"Credit-Builder Loan, and Mortgage Loan",14.30047845,11,9.55,10,Standard,1183.604466,28.62029272,7 Years and 8 Months,NM,396.7141693,258.3843702,Low_spent_Small_value_payments,274.1928184,0,0.8818,-2.4288,-0.6477,0.6483,-2.6649 +0xcac9,CUS_0x8b4,August,23,046-73-4372,Journalist,32239.36,,4,6,4223,1,Student Loan,0,3,1.31,8,_,735.5761892,39.9802103,33 Years and 4 Months,No,18.53861236,81.42734305,Low_spent_Large_value_payments,447.0979184,0,-1.0807,-0.8347,-0.8219,-0.255,1.0968 +0xcad5,CUS_0x6939,August,34,633-98-1570,Accountant,14822.81,,8,7,17.06745738,6,"Auto Loan, Personal Loan, Payday Loan, Auto Loan, Personal Loan, and Payday Loan",36.46430688,25,26.48,12,Bad,3144.570954,30.12834945,8 Years and 5 Months,NM,51.83455348,,Low_spent_Small_value_payments,234.3347856,0,0.5188,0.1646,0.9766,-0.093,0.7632 +0xcae1,CUS_0x89d3,August,28,#F%$D@*&8,Accountant,7711.54,,8,7,25.06745738,9,"Not Specified, Home Equity Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, and Mortgage Loan",,,17.27,7,Bad,3451.13715,39.18189921,3 Years and 2 Months,Yes,44.85358883,32.46297714,Low_spent_Small_value_payments,263.9259794,0,0.8967,-0.594,0.6499,1.8092,0.7325 +0xcaed,CUS_0x976a,August,29,429-46-2010,Mechanic,122069.01,,4,5,5.288361749,4,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",,11,5.71,4,Good,883.42,32.01572575,,No,276.6254904,828.6481676,!@9#%8,576.205553,0,-0.9447,0.6453,0.6427,0.5777,1.8475 +0xcaf9,CUS_0x76dc,August,41,#F%$D@*&8,Mechanic,21088.46,,933,7,8,2,"Debt Consolidation Loan, and Credit-Builder Loan",10.67593289,11,4.85,0,Good,733.4018184,34.01591325,31 Years and 4 Months,No,33.44654409,143.903393,Low_spent_Large_value_payments,265.0846663,0,0.3527,0.1551,0.8049,-1.0169,0.3806 +0xcb05,CUS_0x13eb,August,30,110-23-1785,Journalist,9335.19,844.9325,7,564,26,6,"Mortgage Loan, Payday Loan, Student Loan, Payday Loan, Credit-Builder Loan, and Student Loan",,22.32518206,18.18,12,Standard,2084.626952,36.57530166,13 Years and 10 Months,Yes,41.49926737,82.41954502,Low_spent_Small_value_payments,250.5744376,0,0.0455,0.2444,-0.8232,0.8317,1.7176 +0xcb11,CUS_0x8447,August,32,457-60-5836,Media_Manager,17004.86,1231.071667,10,10,19.06745738,2,"Personal Loan, and Payday Loan",23.51963176,16,3.49,12,_,1485.000954,34.37609426,13 Years and 0 Months,Yes,25.02276876,70.63354517,Low_spent_Medium_value_payments,280.7305648,0,0.6175,-1.3038,2.3048,-1.7275,0.5548 +0xcb1d,CUS_0xa46c,August,45,372-17-9242,Teacher,54876.2,4760.016667,3,4,7.288361749,4,"Payday Loan, Credit-Builder Loan, Student Loan, Auto Loan, and Not Specified",,14,11.01,7,Standard,310.47,29.11415344,14 Years and 10 Months,Yes,145.624243,601.2404653,High_spent_Medium_value_payments,399.0744194,0,0.7115,-0.2177,-0.5929,0.7423,-0.6223 +0xcb29,CUS_0x6c27,August,22,297-05-8610,Journalist,56797.38,4784.115,6,4,18,5,"Mortgage Loan, Personal Loan, Not Specified, Student Loan, and Personal Loan",21.10092148,16.9594121,10.72,12,_,2493.647708,35.35651412,16 Years and 6 Months,NM,141.7218354,171.5219391,Low_spent_Small_value_payments,455.1677255,0,-1.082,0.7306,1.1042,1.1202,-0.6701 +0xcb35,CUS_0x2767,August,44,749-94-3595,Media_Manager,19251.265,,0,2,10,0,,3.645829249,6,10.51,2,_,199.5173496,22.69101791,27 Years and 10 Months,NM,0,85.44428596,!@9#%8,357.1512173,0,0.269,0.2689,-0.8468,-1.3398,0.8662 +0xcb41,CUS_0x487b,August,29,709-05-6923,Architect,58484.22,,8,5,16,7,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",29.53116497,21.8970133,7.95,5,Standard,2624.161137,28.92045703,12 Years and 5 Months,Yes,199.5641298,178.8934383,High_spent_Medium_value_payments,375.910932,0,-1.4124,1.9994,-2.1753,-0.9002,-0.166 +0xcb4d,CUS_0x667a,August,34,072-36-2011,Teacher,32045.78,,6,9,30.88954781,7,"Not Specified, Auto Loan, Student Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",15.54959905,14.57832448,17.19,11,Standard,1532.502148,37.51904478,6 Years and 9 Months,Yes,1493.253818,54.02723162,High_spent_Large_value_payments,266.1370358,0,-0.3951,-0.466,-0.4751,-0.4695,0.7525 +0xcb59,CUS_0x13ec,August,55,840-30-6552,Engineer,61934.52,5308.21,7,5,15,0,,,9,15.31,5,Standard,107.55,27.02541612,33 Years and 4 Months,Yes,0,117.1066162,High_spent_Medium_value_payments,663.7143838,0,0.3184,1.3414,-3.3539,0.6601,0.6041 +0xcb65,CUS_0x3a0b,August,49,618-96-2558,Writer,158871.12,12962.26,0,171,8,1,Home Equity Loan,,1,1.17,4,Good,576.48,24.75397025,19 Years and 6 Months,No,86.90586037,973.4921688,Low_spent_Large_value_payments,505.8279708,0,0.094,-1.2817,0.5048,0.1557,-0.1628 +0xcb71,CUS_0x219b,August,41,040-12-6776,Accountant,48072.27,4151.0225,7,5,15,9,"Not Specified, Not Specified, Personal Loan, Student Loan, Student Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, and Student Loan",37.37317154,18.6278976,7.37,15,Bad,1599.583311,25.83673339,7 Years and 3 Months,NM,305.0590761,84.03462657,High_spent_Large_value_payments,266.0085473,0,0.4963,0.1528,-0.8727,-0.389,1.2753 +0xcb7d,CUS_0xbf60,August,25,262-11-1783,Media_Manager,49649.73,4144.4775,7,6,25.06745738,100,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",30.45217128,17.29658546,7.57,9,Bad,2827.594898,33.83198169,6 Years and 11 Months,Yes,203.2380884,103.3376531,Low_spent_Large_value_payments,351.1517205,0,0.6434,-0.6845,-0.1187,0.3054,0.7275 +0xcb89,CUS_0x17fc,August,26,833-42-2182,Entrepreneur,71102.8,,2,1,5,0,,0.694939481,2,8.73,2,Good,719.9978562,33.22173362,21 Years and 0 Months,No,0,585.558984,Low_spent_Small_value_payments,404.5119069,0,0.0346,0.1145,0.0597,0.0443,-0.7923 +0xcb95,CUS_0x69d9,August,41,445-53-7249,Lawyer,72389.88,6020.49,4,4,15,4,"Payday Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,13,12.11,4,Standard,1144.45,37.35814985,5 Years and 10 Months,Yes,144.7824119,77.41174473,High_spent_Large_value_payments,619.8548434,0,-0.7039,0.6714,-0.7295,0.7117,0.2651 +0xcba1,CUS_0xc52c,August,26,418-53-6185,Developer,30827.58,,5,4,6,0,,20.53294547,16,0.65,4,_,687.4031863,30.05499376,26 Years and 9 Months,No,384.7002822,40.32631964,High_spent_Medium_value_payments,496.6414813,0,0.8137,-0.2581,-0.541,0.0831,-0.0605 +0xcbad,CUS_0x7d82,August,25,550-59-0151,Lawyer,19134.77,,8,5,24,7,"Credit-Builder Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Personal Loan",21.22456388,,19.18,7,_,2074.84607,36.69332708,8 Years and 6 Months,Yes,66.1584213,124.4748212,Low_spent_Medium_value_payments,270.3231742,0,-0.8169,0.5293,-1.4158,0.1661,1.0822 +0xcbb9,CUS_0xedd,August,80,888-82-5609,Engineer,125468.44,10445.70333,4,4,10,4,"Payday Loan, Credit-Builder Loan, Personal Loan, and Student Loan",,13,,4,Standard,1136.85,39.05375953,19 Years and 10 Months,Yes,338.0924087,590.0212862,High_spent_Small_value_payments,376.4566384,0,-0.8312,0.4002,0.6834,-0.9401,0.1206 +0xcbc5,CUS_0xa5e0,August,22,590-80-7797,Teacher,25312.34,1857.361667,4,7,5,2,"Mortgage Loan, and Mortgage Loan",23.83802094,19,10.54,2,_,893.13,27.40506514,20 Years and 9 Months,Yes,37.09182446,210.1289279,Low_spent_Small_value_payments,228.5154143,0,0.6544,2.383,-0.6102,-0.1544,-1.3392 +0xcbd1,CUS_0x5ede,August,28,881-30-7249,_______,11610.355,790.5295833,7,1441,16,2,"Credit-Builder Loan, and Auto Loan",,17,19.27,7,_,196.64,38.61679476,21 Years and 10 Months,Yes,18.76794286,45.14002207,Low_spent_Small_value_payments,305.1449934,0,-0.2431,0.8399,0.074,1.4305,-1.5516 +0xcbdd,CUS_0x60c3,August,51,448-88-3614,Scientist,70291.16,5428.547726,3,5,13,4,"Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",21.16248252,16,9.92,1906,Standard,386.752713,35.21794975,23 Years and 5 Months,No,623.2478902,171.6460923,!@9#%8,581.1592243,0,1.0006,-1.7667,1.0101,-1.2783,-0.7025 +0xcbe9,CUS_0x2344,August,19,709-46-6663,Doctor,54838.44,4336.87,9,5,31,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",,13.5206006,17.56,11,Standard,2305.772323,38.18248021,9 Years and 3 Months,NM,108.6263953,264.6435536,Low_spent_Small_value_payments,350.417051,0,0.5601,0.4537,-0.5378,-0.2406,1.5274 +0xcbf5,CUS_0x2803,August,34,438-68-7137,Media_Manager,37159,,5,4,15,4,"Personal Loan, Not Specified, Student Loan, and Mortgage Loan",,20,13.43,8,Standard,957.6608289,36.50958287,16 Years and 4 Months,Yes,74.6034267,30.85000358,High_spent_Large_value_payments,468.6191647,0,-0.035,0.7842,0.9828,-0.2518,0.5041 +0xcc01,CUS_0xaa35,August,39,857-42-2339,Mechanic,67703.85,5492.9875,6,4,17,2,"Home Equity Loan, and Student Loan",23.29550035,16,8.03,5,Standard,1325.112447,38.18900418,25 Years and 0 Months,No,79.79713621,316.596825,Low_spent_Large_value_payments,453.9010525,0,0.4948,-0.8415,1.4877,0.5841,0.7963 +0xcc0d,CUS_0x50df,August,36,117-43-4570,Lawyer,15845.47,1039.455833,5,10,26,6,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Payday Loan",23.60369759,16,,12,Standard,1275.75,32.67815024,6 Years and 10 Months,Yes,73.23949445,15.81314509,High_spent_Medium_value_payments,264.8929438,0,0.0207,-1.4188,3.0855,0.0882,-1.181 +0xcc19,CUS_0x2c32,August,37,329-04-9809,Mechanic,7823.985,,6,5,35.06745738,3,"Not Specified, Not Specified, and Home Equity Loan",52.93616212,28.45730855,8.53,11,Bad,2674.607194,29.36035583,14 Years and 9 Months,Yes,11.42685819,,Low_spent_Medium_value_payments,269.398375,0,-0.7977,-1.6203,-1.3364,-0.6662,-1.3558 +0xcc25,CUS_0x34b5,August,46,370-04-7463,Engineer,139383.6,,4,6,10,2,"Debt Consolidation Loan, and Personal Loan",20.70211075,14,8.14,5,_,1132.1,26.66536635,28 Years and 10 Months,No,163.1294566,,Low_spent_Small_value_payments,165.4785689,0,1.4007,1.887,-0.8403,0.6035,0.745 +0xcc31,CUS_0xbdc7,August,25,445-15-2674,Lawyer,21697.64,2088.136667,3,7,8,2,"Auto Loan, and Personal Loan",12.48078389,13,10.65,4,Standard,431.39,28.3304453,19 Years and 5 Months,Yes,36.14252866,66.43001631,High_spent_Medium_value_payments,356.2411217,0,-2.2511,1.2707,0.3067,0.1311,-1.505 +0xcc3d,CUS_0x2032,August,33,543-06-7157,_______,56622.69,4825.5575,6,7,20.06745738,8,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Student Loan",50.87874638,25.26732285,20.46,14,Bad,4561.862077,37.5751894,3 Years and 10 Months,Yes,348.6732714,81.59445649,!@9#%8,275.5677342,0,-1.5076,-0.8534,-0.6926,-0.4199,0.2621 +0xcc49,CUS_0xa34d,August,43,450-69-9081,Developer,71732.72,6020.726667,4,3,7,3,"Not Specified, Personal Loan, and Student Loan",9.543566675,9,19.8,5,Standard,632.16,28.42488812,6 Years and 11 Months,Yes,129.9330194,,Low_spent_Medium_value_payments,234.2011613,0,0.0277,-0.3314,0.1918,-1.1218,-0.6446 +0xcc55,CUS_0xb5e2,August,28,743-93-2407,Writer,19841,1756.416667,6,10,17,5,"Not Specified, Home Equity Loan, Student Loan, Student Loan, and Mortgage Loan",,25.32729118,17.88,11,_,2798.591255,35.92263022,5 Years and 9 Months,Yes,79.74213529,74.8799687,Low_spent_Large_value_payments,291.0195627,0,0.3656,0.0343,-0.916,-0.2245,1.1453 +0xcc61,CUS_0x9c19,August,26,470-98-3389,Scientist,79556.12,,8,6,9,7,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Mortgage Loan, and Auto Loan",15.54225109,11.90994478,10.09,5,Standard,2660.215425,27.26960341,,Yes,406.7656952,78.25506944,High_spent_Large_value_payments,435.046902,0,1.6875,-0.3137,-0.3068,1.285,0.3488 +0xcc6d,CUS_0x7e39,August,41,056-92-6979,Accountant,31134.22,2556.518333,7,6,5,3,"Debt Consolidation Loan, Auto Loan, and Payday Loan",14.19476733,11.73377997,17.23,8,Standard,1941.428423,30.92023929,19 Years and 6 Months,Yes,44.84666562,228.8713317,Low_spent_Large_value_payments,251.933836,0,1.5332,0.0043,-1.322,0.8771,-0.0331 +0xcc79,CUS_0x9bae,August,24,237-85-5444,_______,70981.16,,8,9,25.88954781,7,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",42.23902342,25.57777215,1.91,8,Bad,4909.45057,28.42885793,2 Years and 0 Months,Yes,1537.003832,112.7356186,High_spent_Large_value_payments,486.8401352,0,-0.4579,1.2456,-1.5083,0.2628,1.1198 +0xcc85,CUS_0xbcd8,August,26,906-84-9410,Doctor,21673.57,,7,3,16,1,Credit-Builder Loan,18.03075061,15,9.66,3,Standard,551.81,36.13834995,,No,14.53965123,,High_spent_Small_value_payments,301.3381462,0,0.8763,1.3254,-0.653,0.546,-1.1826 +0xcc91,CUS_0x6250,August,21,356-64-7629,Scientist,57986.32,4740.193333,3,5,2,3,"Mortgage Loan, Personal Loan, and Not Specified",,7,1.36,2,Good,222.83,37.56148776,,No,132.9673406,359.3902263,Low_spent_Small_value_payments,271.6617664,0,0.2025,1.0932,-1.0057,0.5706,0.8262 +0xcc9d,CUS_0x4075,August,32,208-19-2290,Engineer,81008.58,6728.715,8,6,5,0,,23.47889538,18,7.34,4,Standard,249.08,34.52229839,23 Years and 2 Months,Yes,0,249.4250384,High_spent_Medium_value_payments,673.4464616,0,-0.6862,-0.7221,1.8178,0.2303,-1.0007 +0xcca9,CUS_0x6d8,August,27,997-08-4281,Journalist,17919.81,1474.3175,8,6,26.06745738,5,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",29.23160623,19.11806395,19.82,10,Bad,2991.109273,35.44806189,7 Years and 4 Months,NM,62.53662542,170.2141549,Low_spent_Small_value_payments,177.9606817,0,1.5014,-1.9008,-0.121,0.8178,-0.8512 +0xccb5,CUS_0xa27a,August,56,972-80-2405,_______,49790.5,4060.208333,6,5,15,2,"Auto Loan, and Auto Loan",15.26267992,9,3.34,4,Standard,1021.5,32.045022,17 Years and 2 Months,No,63.0784179,98.9077759,High_spent_Large_value_payments,484.0346395,0,-0.0501,-1.9748,0.4218,0.231,-0.6105 +0xccc1,CUS_0x21f7,August,44,379-35-1984,Manager,131040.42,,3,1,6.288361749,0,,11.52952437,11,2.88,8,Good,591.8468524,38.13251077,19 Years and 3 Months,No,0,1297.173756,Low_spent_Medium_value_payments,639.19769,0,0.6404,-1.3422,-0.8763,0.4581,-1.1823 +0xcccd,CUS_0x3e2e,August,38,407-02-3314,Scientist,9365.44,617.4533333,9,5,22,4,"Credit-Builder Loan, Payday Loan, Personal Loan, and Home Equity Loan",14.51446758,10.95604503,7.28,12,Standard,1955.974651,33.08769386,14 Years and 9 Months,Yes,17.84200816,76.44601497,Low_spent_Small_value_payments,257.4573102,0,-1.6996,0.8231,0.1961,-0.4977,1.3024 +0xccd9,CUS_0x1535,August,25,600-38-3364,Musician,31396.36,2469.363333,2,3,12,3,"Not Specified, Mortgage Loan, and Not Specified",,3.425763218,11.13,8,_,1437.04488,28.19579487,,No,70.75495153,,Low_spent_Small_value_payments,218.3093672,0,-1.0764,0.2234,0.5989,0.4781,0.7278 +0xcce5,CUS_0x6afc,August,32,406-97-9286,Journalist,48070.3,4233.858333,5,5,2,0,,19.48006576,14,2.58,2,Good,1025.3,36.93164776,18 Years and 6 Months,No,0,188.9707865,Low_spent_Large_value_payments,504.4150468,0,-0.0341,0.4536,-1.1265,-1.047,-0.8693 +0xccf1,CUS_0xbc4b,August,24,121-37-4752,Developer,121622.84,,0,3,757,2,"Not Specified, and Personal Loan",,0,12.02,1,Good,1204.698132,36.38246349,20 Years and 8 Months,NM,173.2882999,109.121104,High_spent_Large_value_payments,978.5601235,0,-0.2736,0.6891,-1.3826,-1.33,3.4266 +0xccfd,CUS_0x1de6,August,18,024-88-0191,_______,40445.44,3152.453333,8,6,33,6,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,24.75575974,19.06,14,Bad,3784.465293,22.82657691,11 Years and 10 Months,Yes,123.1006768,,Low_spent_Small_value_payments,331.5844845,0,-0.0753,-1.0015,-0.7628,-0.1365,0.4493 +0xcd09,CUS_0x826e,August,26,878-71-9136,Scientist,41294.92,3215.243333,8,8,23.88954781,100,"Payday Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",32.61307904,,22.02,2399,Standard,1805.983956,25.7130383,13 Years and 9 Months,Yes,1478.227273,223.8179335,Low_spent_Small_value_payments,215.1490459,0,-0.5791,-1.0504,-0.5371,-1.1441,-1.7587 +0xcd15,CUS_0x4590,August,28,265-27-8321,Entrepreneur,28056.94,,4,6,10,2,"Credit-Builder Loan, and Personal Loan",,12,16.43,6,Standard,822.94,34.38230323,14 Years and 5 Months,Yes,41.74919161,17.97191748,High_spent_Large_value_payments,391.7867242,0,0.9248,0.0294,0.8628,0.1708,-0.2915 +0xcd21,CUS_0xa437,August,26,248-20-6693,Architect,54811.56,4510.63,4,5,11,6,"Home Equity Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",17.3234224,11,11.74,8,Standard,2170.62,29.92181668,19 Years and 2 Months,Yes,171.3413998,,Low_spent_Large_value_payments,200.7652422,0,0.2397,0.6646,-1.5116,-1.9326,-0.0892 +0xcd2d,CUS_0xbdd9,August,18,491-09-0120,Scientist,31785.1,2410.758333,8,9,28.95700519,9,"Personal Loan, Student Loan, Payday Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Personal Loan, Not Specified, and Credit-Builder Loan",,16,27.75,7,_,4074.918708,39.61414536,,Yes,1502.257604,180.7721998,Low_spent_Small_value_payments,143.707209,0,0.6365,0.5542,0.015,-1.9298,1.1438 +0xcd39,CUS_0x5f3d,August,35,289-24-3310,Doctor,51729.75,4565.8125,275,6,28,8,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",38.28439693,21.31927703,-5.19,13,_,2542.125231,35.64988126,10 Years and 3 Months,Yes,247.4006535,152.893944,High_spent_Medium_value_payments,306.2866525,0,-0.5193,-0.9522,0.3445,0.6952,-1.2821 +0xcd45,CUS_0x67bc,August,26,872-34-3009,Writer,12255.61,868.3008333,8,6,19,2,"Mortgage Loan, and Auto Loan",,19,8.23,5,Standard,494.31,25.28227026,,Yes,11.63732296,,Low_spent_Small_value_payments,320.9653368,0,1.0831,-0.335,0.9565,-0.3944,0.3038 +0xcd51,CUS_0x628d,August,25,173-51-3586,Engineer,33477.64,,7,6,24.06745738,6,"Student Loan, Payday Loan, Personal Loan, Auto Loan, Payday Loan, and Student Loan",,29.04215244,6.83,13,Bad,2335.32224,27.90181668,9 Years and 9 Months,NM,113.2192819,,Low_spent_Large_value_payments,262.967873,0,-0.9322,0.8905,-0.1293,1.9215,-0.9214 +0xcd5d,CUS_0x4b64,August,35,478-55-2676,Musician,38460.28,,6,9,17.95700519,7,"Personal Loan, Personal Loan, Home Equity Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",30.57238467,14,20.71,13,_,4329.910954,36.00207181,6 Years and 8 Months,Yes,1502.619265,166.7468966,High_spent_Small_value_payments,193.6858023,0,1.4488,-0.6043,-1.7375,0.1109,-0.4011 +0xcd69,CUS_0xa7ea,August,38,219-21-6108,Developer,15229.35,,10,10,28.06745738,5,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",,17,24.28,10,Bad,4275.240954,39.29074624,14 Years and 3 Months,Yes,40.57723364,68.97510003,Low_spent_Large_value_payments,235.8386284,0,0.8834,-0.5136,-0.0536,-2.1368,0.8224 +0xcd75,CUS_0xa87f,August,40,446-92-6533,Musician,102460.44,,5,5,10,1,Home Equity Loan,19.49892322,14,3.22,5,Standard,505.1617282,35.95549983,32 Years and 8 Months,Yes,887.4515846,1155.633273,Low_spent_Small_value_payments,31.47692823,0,0.5723,-0.5622,-1.6806,-0.5896,-0.0695 +0xcd81,CUS_0x699f,August,28,105-56-5438,Writer,32595.22,2606.268333,3,3,7,2,"Personal Loan, and Not Specified",9.941049497,10,9.72,1,Good,796.88,28.25345191,16 Years and 5 Months,No,50.30543332,196.9709808,Low_spent_Small_value_payments,303.3504192,0,-0.492,1.4773,-0.989,1.8832,-1.7593 +0xcd8d,CUS_0x4982,August,19,405-29-5229,Mechanic,20403.52,1755.293333,1,7,12,100,Debt Consolidation Loan,1.620067128,5,6.85,4,Good,397.38,30.96007001,32 Years and 5 Months,NM,13.89072634,85.24033204,Low_spent_Medium_value_payments,356.398275,0,0.4274,-0.2766,-0.4157,0.2112,-1.047 +0xcd99,CUS_0x9916,August,80,797-89-1729,Journalist,69591.18,5708.265,5,1,2,2,"Mortgage Loan, and Not Specified",0,0,4.02,6,Good,957.8719479,29.71550125,32 Years and 0 Months,No,73.60641908,180.6509085,High_spent_Medium_value_payments,590.2994167,0,0.349,-0.1829,0.5377,1.3934,-2.0612 +0xcda5,CUS_0x2b06,August,20,991-63-5601,Manager,71614.2,6102.85,0,7,2,2,"Student Loan, and Personal Loan",12.56577696,11,5.13,7,Good,1273.45,37.55410927,23 Years and 8 Months,No,114.6443451,,High_spent_Large_value_payments,691.3315324,0,0.5234,2.0798,-1.0979,1.5961,0.2922 +0xcdb1,CUS_0x9344,August,19,197-74-8431,_______,19126.65,,8,8,29.06745738,3,"Auto Loan, Not Specified, and Home Equity Loan",,21.88527971,1.93,14,Bad,3227.231602,40.32795898,18 Years and 11 Months,Yes,36.1616583,71.87457086,High_spent_Small_value_payments,293.6322329,0,0.0557,-0.7425,-1.6295,-0.9362,-0.453 +0xcdbd,CUS_0xbfb6,August,28,097-12-0730,_______,33684.42,,6,9,18,5,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",33.55844677,17,16.82,11,_,1329.97,31.98555996,13 Years and 3 Months,Yes,116.4179386,34.44361219,High_spent_Large_value_payments,368.3419492,0,1.2652,-0.0302,0.0025,-0.6392,-0.1361 +0xcdc9,CUS_0x63d8,August,19,393-92-0996,Manager,11436.15,933.0125,4,7,14,4,"Mortgage Loan, Payday Loan, Not Specified, and Mortgage Loan",11.39151712,10,17.33,8,Standard,339.47,33.71320768,19 Years and 5 Months,Yes,23.05957931,17.25092051,High_spent_Small_value_payments,312.9907502,0,-0.2395,0.7953,0.421,-1.679,-0.8498 +0xcdd5,CUS_0x8cd9,August,32,897-73-7005,_______,96141.48,,6,4,12,4,"Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",18.79375421,,18.95,5,Standard,1084.42,40.21649603,19 Years and 10 Months,Yes,243.6287575,68.42901433,High_spent_Large_value_payments,732.7212281,0,0.0358,-1.7762,-0.6018,-0.874,0.0931 +0xcde1,CUS_0x23e2,August,38,563-99-3300,Musician,57035.58,,3,7,12,0,,15.87554699,12,16.04,4,_,550.23,23.8424499,21 Years and 9 Months,No,0,84.56898553,High_spent_Large_value_payments,637.8275145,0,1.6604,-0.0781,-0.6793,-1.0281,-1.193 +0xcded,CUS_0xb4a,August,31,418-09-0995,Entrepreneur,71830.44,6110.87,7,3,19,3,"Not Specified, Auto Loan, and Personal Loan",12.33056084,11,7.48,3,Standard,647.2938985,36.92924694,27 Years and 4 Months,NM,119.4534418,387.8906959,High_spent_Small_value_payments,413.8843199,0,0.5158,-0.5973,1.1506,-1.3146,-0.4883 +0xcdf9,CUS_0x5417,August,80,488-18-2117,Manager,17830.73,1757.894167,8,5,1232,7,"Credit-Builder Loan, Student Loan, Not Specified, Payday Loan, Payday Loan, Auto Loan, and Credit-Builder Loan",27.15554435,,24.21,12,Bad,4730.61,34.9283996,10 Years and 2 Months,Yes,100.6833567,44.75743504,High_spent_Medium_value_payments,280.3486249,0,2.0863,-0.5237,1.0283,0.272,-1.0954 +0xce05,CUS_0x9375,August,28,486-51-9479,Developer,31815.94,,7,7,27,7,"Personal Loan, Student Loan, Payday Loan, Personal Loan, Auto Loan, Not Specified, and Student Loan",,15.79426065,20.65,11,_,4625.792762,36.77109298,1 Years and 3 Months,Yes,169.9491914,,High_spent_Medium_value_payments,245.1513175,0,-1.7259,0.4038,-1.7668,0.0022,0.5397 +0xce11,CUS_0x79ad,August,47,976-11-4359,Accountant,29814.97,2731.580833,4,3,17,1,Student Loan,26.17626844,18,1.09,4,Standard,25.6585201,29.81660568,33 Years and 3 Months,No,14.34532334,93.9800247,High_spent_Medium_value_payments,426.769519,0,-1.6484,0.3341,-1.5956,0.2291,-2.1851 +0xce1d,CUS_0x952a,August,30,179-17-6232,Accountant,14710.215,1334.033854,2,5,9,2,"Mortgage Loan, and Debt Consolidation Loan",0,2,8.33,4,Good,1373.93,28.06034772,17 Years and 4 Months,No,163.2857975,,!@9#%8,367.5018974,0,-0.5785,1.7436,-0.4205,0.8367,-0.0504 +0xce29,CUS_0xfaf,August,27,153-48-5124,Architect,39255.54,3546.295,4,3,5.288361749,2,"Not Specified, and Payday Loan",0,2,4.14,5,Good,487.3385842,28.9728799,33 Years and 8 Months,No,46.03458606,482.6765658,High_spent_Large_value_payments,494.8977282,0,-0.0813,2.6468,0.486,0.6559,-0.0036 +0xce35,CUS_0x80c0,August,20,252-31-6813,Lawyer,35787.86,2820.321667,9,7,32.06745738,100,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",,27,1.3,6,Bad,2709.910954,32.70165044,20 Years and 5 Months,Yes,76.88428434,70.45365825,High_spent_Large_value_payments,347.9739361,0,-0.4304,-1.4474,-0.3093,1.3807,1.9229 +0xce41,CUS_0x2731,August,54,721-95-6535,Teacher,43885.43,3596.119167,1,2,11,2,"Payday Loan, and Debt Consolidation Loan",6.718201191,8,1.99,0,Good,168.53,30.81345626,,No,51.65583324,123.5287602,High_spent_Medium_value_payments,434.4273232,0,-2.0229,-2.6472,0.165,0.5403,-0.3137 +0xce4d,CUS_0xb52f,August,43,764-12-4443,Accountant,61804.34,5228.361667,4,7,11.28836175,2,"Student Loan, Debt Consolidation Loan, and Home Equity Loan",,12,10.39,5,Good,179.87,34.57286615,15 Years and 10 Months,No,147.0159495,940.9241647,Low_spent_Small_value_payments,144.8335135,0,-1.429,-1.2588,0.2,0.1217,-0.2704 +0xce59,CUS_0x969b,August,38,782-58-3379,Musician,17442.09,,8,6,6.067457376,2,"Mortgage Loan, and Mortgage Loan",,20,16.34,6,_,2183.830954,25.92874154,19 Years and 6 Months,Yes,14.63779048,,Low_spent_Small_value_payments,277.0938436,0,-0.5076,-1.6918,0.2728,0.4129,0.2831 +0xce65,CUS_0x6f55,August,54,923-48-1651,Writer,18579.36,,0,4,2,2,"Home Equity Loan, and Student Loan",7.426120911,10,10.14,1,Good,1329.98,37.89779003,29 Years and 10 Months,No,22409,10.05376835,High_spent_Large_value_payments,343.5993744,0,0.647,-0.1793,-0.0053,-1.4715,-0.3472 +0xce71,CUS_0x2855,August,52,406-13-8367,Musician,34185.14,2659.761667,3,7,5,4,"Credit-Builder Loan, Not Specified, Student Loan, and Debt Consolidation Loan",,17.3575478,9.56,1,_,1644.1583,32.83177539,28 Years and 8 Months,No,103.4015698,,Low_spent_Medium_value_payments,356.8143708,0,-1.1035,0.5445,-0.9271,0.7738,0.0664 +0xce7d,CUS_0x9e8d,August,35,348-93-6719,Entrepreneur,20299.4,,9,6,23.06745738,6,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",32.36087481,19,26.12,10,Bad,4141.230954,35.34296454,2 Years and 3 Months,Yes,75.7736552,161.9159344,Low_spent_Medium_value_payments,191.3517891,0,-0.3438,-0.2571,0.6754,-2.8294,-1.5768 +0xce89,CUS_0x48a3,August,41,695-91-4434,Entrepreneur,11629.69,1263.140833,7,3,4,0,,25.11931817,19,8.42,7,Good,457.912764,25.21632278,28 Years and 2 Months,NM,0,,Low_spent_Medium_value_payments,306.1424463,0,-0.0099,2.1853,-1.071,1.9973,-0.9055 +0xce95,CUS_0x5ef3,August,29,933-56-0293,Lawyer,27559.56,2253.63,6,7,2.288361749,2,"Auto Loan, Payday Loan, and Not Specified",20.48803849,18,11.69,2,Good,160.02,24.36288524,27 Years and 0 Months,No,41.1675361,436.5724916,High_spent_Large_value_payments,407.5604333,0,-0.5494,0.3648,1.3417,-0.7874,2.2283 +0xcea1,CUS_0x6709,August,50,373-51-1419,Entrepreneur,94369.64,8164.136667,4,7,19,4,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",,23.96129622,2.99,,Standard,524.23024,32.36659681,24 Years and 0 Months,Yes,210.7093407,61.10101338,!@9#%8,784.6033126,0,1.7298,1.9522,0.889,0.7545,-0.7881 +0xcead,CUS_0xb312,August,25,#F%$D@*&8,Architect,61746.99,5167.5825,8,8,16.95700519,6,"Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Mortgage Loan",,28.38341878,4.27,11,Bad,4947.269092,37.24336476,7 Years and 9 Months,NM,1481.522353,,Low_spent_Small_value_payments,0,0,0.7937,-1.6327,-0.596,1.4987,-0.7652 +0xceb9,CUS_0x5629,August,36,784-17-0426,Journalist,33465.57,2820.7975,0,5,10,2,"Debt Consolidation Loan, and Student Loan",0.096854288,2.36654719,4.62,1,Good,601.547209,39.24389055,31 Years and 2 Months,No,40.22460349,53.91386332,High_spent_Small_value_payments,447.9412832,0,-1.6014,0.7283,0.6812,0.8671,0.5531 +0xcec5,CUS_0x6891,August,24,781-08-4133,Architect,132325.88,,6,5,8,2,"Personal Loan, and Credit-Builder Loan",22.84991836,15.04654838,3.43,4,Standard,602.6821097,30.18696501,,No,175.7895143,146.3441753,!@9#%8,1013.981977,0,-0.853,-0.1795,0.9791,0.2385,0.8455 +0xced1,CUS_0xc555,August,32,680-58-3774,Entrepreneur,14214.46,,4,7,19,4,"Mortgage Loan, Auto Loan, Mortgage Loan, and Personal Loan",8.218806775,9,12.7,12,Standard,908.46,30.42045282,,Yes,41.88616646,43.68660504,Low_spent_Medium_value_payments,284.2810618,0,0.4049,-0.4681,0.0584,-0.1322,-1.8896 +0xcedd,CUS_0x1e2d,August,55,028-71-5831,Media_Manager,10967.735,,334,6,5,0,,,15,19.36,0,Standard,1314.16,25.01704834,28 Years and 6 Months,Yes,0,37.3117075,High_spent_Small_value_payments,296.5860842,0,0.0162,1.0338,-0.6857,-0.2964,-0.516 +0xcee9,CUS_0xb108,August,38,888-27-8587,Musician,57449.79,4907.4825,8,8,27.95700519,6,"Payday Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",54.4215456,27.41745732,5.64,14,_,4739.633797,25.82098029,7 Years and 0 Months,Yes,1602.387639,590.7974188,Low_spent_Small_value_payments,,0,-0.1623,-1.1883,0.5287,0.7719,0.5524 +0xcef5,CUS_0x8d0,August,29,592-74-4196,Writer,81112,,5,7,28,7,"Personal Loan, Not Specified, Not Specified, Auto Loan, Home Equity Loan, Not Specified, and Payday Loan",45.01611581,25.93206135,24.94,8,_,3788.840368,37.91507208,12 Years and 8 Months,Yes,250.6906511,404.3465632,Low_spent_Small_value_payments,329.796119,0,0.5282,-0.5265,-1.3486,1.3195,1.1795 +0xcf01,CUS_0x34d7,August,38,065-57-1268,Mechanic,36821,,1169,6,7,0,,18.12002126,15,2.04,8,_,551.85,35.79637677,27 Years and 0 Months,No,80983,60.7893338,High_spent_Medium_value_payments,523.6523329,0,1.6162,0.3963,-0.119,-1.6873,-0.6128 +0xcf0d,CUS_0x8da1,August,46,360-75-0836,_______,15608.695,,7,3,12,4,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Payday Loan",,19,12.35,10,_,488.34,34.86090102,,Yes,92.91440921,128.7394575,Low_spent_Medium_value_payments,261.1551721,0,-0.4606,-0.4296,-1.1846,0.3345,-0.9929 +0xcf19,CUS_0x3105,August,39,358-01-3272,Manager,42804.4,,8,4,7,0,,18.55557582,14,10.27,4,Standard,1389.65,39.11583129,18 Years and 9 Months,NM,0,,Low_spent_Large_value_payments,342.1512623,0,0.1136,1.5707,1.9477,-0.5964,0.195 +0xcf25,CUS_0x4e11,August,24,620-12-8571,_______,17361.38,,10,9,3648.957005,7,"Personal Loan, Credit-Builder Loan, Not Specified, Auto Loan, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",30.97114313,20,10.16,12,Bad,2467.570954,26.44328532,15 Years and 11 Months,Yes,1375.442689,,High_spent_Large_value_payments,279.8340802,0,1.0863,0.1669,-1.9671,-0.3995,-0.8744 +0xcf31,CUS_0x8ec5,August,80,118-72-1060,Developer,18207.57,1369.2975,5,7,24,100,"Debt Consolidation Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",31.10415077,21.63224584,9.7,14,Standard,2564.884585,34.40096689,7 Years and 4 Months,Yes,68.36676227,130.9508921,Low_spent_Medium_value_payments,217.6120956,0,0.079,-0.6984,-1.1946,-1.2699,0.1227 +0xcf3d,CUS_0xa13f,August,52,332-09-6552,Engineer,37547.68,,4,6,8,1,Mortgage Loan,9.907134054,6.899839559,0.89,1,Good,1465.795525,29.79894757,22 Years and 5 Months,NM,24.84007251,208.8952654,Low_spent_Small_value_payments,385.5619954,0,1.5572,-0.0049,0.5671,0.2974,0.2144 +0xcf49,CUS_0x4143,August,22,341-30-9753,Manager,68056.4,5805.366667,8,9,24,5,"Home Equity Loan, Auto Loan, Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",,26.26152455,7.74,14,Bad,2365.527896,29.15509755,12 Years and 4 Months,Yes,172.5034567,,High_spent_Medium_value_payments,499.3139826,0,0.2394,-0.1978,2.643,1.0005,-0.6429 +0xcf55,CUS_0x564e,August,29,867-73-3888,Scientist,18208.19,,10,6,33.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",,23.82369926,2.91,7,Bad,2543.239226,35.81209501,17 Years and 11 Months,Yes,66.01536959,161.239805,Low_spent_Large_value_payments,188.0594541,0,0.7072,-1.7499,-1.0957,0.4261,0.2137 +0xcf61,CUS_0x6c5c,August,51,#F%$D@*&8,Doctor,118228.38,10121.365,5,5,4254.288362,2,"Not Specified, Mortgage Loan, and Personal Loan",0,0,7.54,0,Good,310.9730053,33.62644304,27 Years and 3 Months,No,271.1209091,646.9785761,High_spent_Large_value_payments,779.8174825,0,0.634,-0.8355,1.4691,0.8052,0.394 +0xcf6d,CUS_0x2c81,August,44,754-48-5368,Doctor,14954.745,1331.22875,6,4,20,6,"Not Specified, Mortgage Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Student Loan",15.52266688,13,14.91,6,_,255.76,39.05727426,18 Years and 2 Months,Yes,54.3677416,,Low_spent_Small_value_payments,289.7542246,0,-0.2751,0.1954,0.1217,0.5822,0.9197 +0xcf79,CUS_0xa23d,August,44,458-00-2343,Developer,36886.49,,4,7,20,0,,,14,16.54,9,Standard,1251.85,36.4937369,,Yes,0,,High_spent_Small_value_payments,475.0811649,0,-0.2154,-1.7087,-0.1735,-0.037,1.9187 +0xcf85,CUS_0x2293,August,36,403-42-4176,Engineer,101641.14,8283.095,5,3,13,3,"Student Loan, Not Specified, and Payday Loan",20.21199021,13,19.97,9,Standard,631.4,38.56997725,13 Years and 9 Months,Yes,171.9384727,213.435,High_spent_Large_value_payments,682.9360272,0,-0.8019,1.8144,0.4913,-0.8411,1.6828 +0xcf91,CUS_0x13a9,August,52,920-85-0637,Manager,19473209,4618.901667,3,7,5,3,"Credit-Builder Loan, Auto Loan, and Mortgage Loan",14.13603773,12,2.03,7,Good,125.5499145,31.80644929,28 Years and 8 Months,No,92.50592257,127.486518,High_spent_Medium_value_payments,505.112639,0,-0.323,1.5416,-0.9658,-2.2231,0.3443 +0xcf9d,CUS_0x1c2a,August,45,473-13-5730,Accountant,33410.45,3059.204167,4,6,19,0,,22.58738025,15,10.91,1,Standard,693.39,36.86902906,28 Years and 2 Months,Yes,0,129.8622569,Low_spent_Small_value_payments,466.0581598,0,0.1861,-2.2012,0.2027,-1.2063,0.6875 +0xcfa9,CUS_0x333e,August,25,689-18-8933,Accountant,54843.69,4438.3075,6,7,33.06745738,9,"Auto Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",41.00473649,22,17.83,8,Bad,5119.410954,41.9344178,9 Years and 9 Months,Yes,81194,10000,High_spent_Large_value_payments,288.8595482,0,0.2399,0.5761,-0.7471,-0.5493,0.3273 +0xcfb5,CUS_0x3ed1,August,48,263-56-4879,Engineer,64874.08,5460.173333,3,5,8,0,,17.05615082,,0.89,3,Good,759.8696365,40.92906365,18 Years and 6 Months,NM,0,181.8165414,High_spent_Medium_value_payments,614.2007919,0,0.2161,0.9422,-0.857,1.0417,-1.5151 +0xcfc1,CUS_0x6b82,August,25,775-60-4225,Musician,58208.24,,10,9,26.88954781,100,"Debt Consolidation Loan, Not Specified, Personal Loan, Personal Loan, Personal Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",36.72535675,22.38834494,2.24,17,Bad,2846.80721,29.00089008,10 Years and 8 Months,Yes,1547.403535,53.53602403,!@9#%8,429.5990267,0,-0.1176,1.5329,-1.514,0.7012,1.7466 +0xcfcd,CUS_0x48e4,August,45,#F%$D@*&8,Engineer,28497.43,2086.785833,0,6,1,3,"Payday Loan, Personal Loan, and Payday Loan",2.480969724,4,8.51,0,Good,1089.995908,39.81362495,32 Years and 10 Months,No,46.0961934,82.75752877,High_spent_Medium_value_payments,342.4267997,0,-0.6992,-0.0043,0.1291,0.7975,0.4882 +0xcfd9,CUS_0x439a,August,33,259-01-6271,Engineer,164401.8,13674.15,4,1,10,1,Not Specified,12.34770001,10,2.44,3,_,716.9321303,44.95801491,25 Years and 2 Months,No,110.2575267,565.0924169,Low_spent_Medium_value_payments,1048.309277,0,-0.0021,0.2403,-1.0388,0.5145,-1.0066 +0xcfe5,CUS_0x759c,August,30,609-56-4412,Writer,70205.02,5650.418333,0,4,1.288361749,0,,1.953121403,5,0.37,5,Good,132.2204877,28.10353778,32 Years and 10 Months,No,0,,Low_spent_Small_value_payments,101.695951,0,0.5299,0.7795,-2.0071,-0.9834,2.0357 +0xcff1,CUS_0xbb69,August,22,278-17-1333,_______,28910.14,2441.178333,8,6,11,100,"Personal Loan, Payday Loan, Auto Loan, and Personal Loan",21.45853769,19,7.67,3,_,496.03,37.38469817,22 Years and 5 Months,No,75.1242701,,High_spent_Medium_value_payments,348.3461031,0,1.2622,1.3442,2.1565,0.029,-0.4929 +0xcffd,CUS_0x592a,August,28,800-89-3447,Doctor,17116.42,,8,6,23.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Mortgage Loan, and Student Loan",,23.79712737,3.64,15,Bad,3154.312384,36.63505,19 Years and 2 Months,Yes,89.7506862,,Low_spent_Medium_value_payments,186.764579,0,1.0084,0.2605,2.044,-0.2218,0.1821 +0xd009,CUS_0x3ef,August,48,964-81-2710,Manager,21212.91,,3,888,10,3,"Home Equity Loan, Mortgage Loan, and Student Loan",28.62616488,21.8182031,5.13,1,Standard,1125.049406,38.91186247,,No,45.74570037,118.5424461,Low_spent_Small_value_payments,275.3861035,0,0.5854,-2.3176,0.2085,1.6449,1.7139 +0xd015,CUS_0x6b45,August,41,645-19-1721,Manager,36964.22,,10,10,22.88954781,6,"Auto Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Student Loan, and Student Loan",,21.62536592,25.83,6,Bad,4359.091921,27.2247075,8 Years and 11 Months,Yes,1430.398871,127.7024356,High_spent_Medium_value_payments,300.1037784,0,0.5998,-0.0614,-0.546,0.0688,-0.9402 +0xd021,CUS_0x9f52,August,39,492-36-7041,Scientist,36993.94,,1,7,9,2,"Auto Loan, and Mortgage Loan",6.577669188,3.555302545,2.91,9,Good,306.9644999,36.25364256,23 Years and 0 Months,No,55.70168877,175.9504152,Low_spent_Medium_value_payments,385.9307294,0,1.3441,-2.1823,-2.2417,-0.7343,-0.7193 +0xd02d,CUS_0x50b5,August,30,452-15-2521,Scientist,31577.16,,10,6,15,2,"Personal Loan, and Payday Loan",32.17387886,21.84023461,,9,_,1673.068468,32.44600621,19 Years and 2 Months,NM,40.24901952,81.89082649,High_spent_Small_value_payments,430.303154,0,2.1069,1.8889,-0.717,0.0994,0.5574 +0xd039,CUS_0x4a65,August,38,399-59-9340,Architect,32009.81,,5,7,8.288361749,0,Credit-Builder Loan,7.675397899,8,14.92,7,Standard,310.76,35.93970398,19 Years and 6 Months,NM,65594,520.0614361,High_spent_Medium_value_payments,387.0836864,0,-0.1953,1.9893,-0.4011,-0.3655,0.0171 +0xd045,CUS_0x1fe3,August,28,458-63-0201,Manager,76386.04,6515.503333,8,7,24,7,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",36.86495889,16.8613525,8.02,10,Bad,4268.718201,28.87141869,8 Years and 11 Months,Yes,354.233485,879.5268059,Low_spent_Small_value_payments,,0,-0.1086,-0.66,-0.1582,0.0768,0.0897 +0xd051,CUS_0x8636,August,33,644-42-8469,Mechanic,101342.2,,2,3,14,2,"Payday Loan, and Mortgage Loan",25.0613319,19,14.46,9,Standard,828.02,32.6281559,7 Years and 5 Months,Yes,114.3299888,,High_spent_Large_value_payments,839.5750604,0,-0.62,-0.8405,-1.309,1.0871,-0.5602 +0xd05d,CUS_0x8090,August,35,560-15-3729,Musician,22311.08,1561.256667,4,3,7,4,"Payday Loan, Payday Loan, Not Specified, and Credit-Builder Loan",22.23518114,16,1.34,4,Standard,318.78,24.21793164,24 Years and 5 Months,No,58.98276404,79.93800145,Low_spent_Medium_value_payments,297.2049012,0,-1.1473,0.0468,-2.1326,0.5714,-0.0624 +0xd069,CUS_0x2617,August,38,048-98-3271,Architect,179072.36,,2,2,4.288361749,4,"Mortgage Loan, Auto Loan, Personal Loan, and Home Equity Loan",13.58896232,14,8.82,3,Good,269.2,26.05050636,17 Years and 2 Months,No,457.5856834,2397.263563,Low_spent_Small_value_payments,,0,-0.0184,1.4121,0.6063,2.1602,-1.1284 +0xd075,CUS_0x6fb2,August,25,244-19-0739,Lawyer,17277.78,,9,8,19,9,"Home Equity Loan, Home Equity Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",,30.15612101,-1.92,10,Bad,1967.837911,41.1125238,15 Years and 3 Months,Yes,72.31335766,34.60500039,Low_spent_Medium_value_payments,294.3631419,0,-1.4767,-0.4126,-1.2376,-0.5848,-1.9806 +0xd081,CUS_0x39e0,August,52,512-16-6054,Architect,80393.48,,3,4,6,100,"Home Equity Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",3.705414106,4,9.99,8,Good,329.74,24.45286787,32 Years and 6 Months,No,187.6645565,98.32748116,High_spent_Large_value_payments,618.553629,0,0.2769,-1.4037,0.4104,0.7263,-0.4134 +0xd08d,CUS_0x4328,August,55,775-15-3565,Teacher,15414.675,,5,5,11,0,,0,1,8.96,7,Good,508.81,37.18250461,23 Years and 6 Months,No,0,149.5130859,Low_spent_Small_value_payments,285.4425391,0,0.7356,0.4246,1.5483,-0.3928,0.2454 +0xd099,CUS_0x8ff8,August,28,765-92-4564,Developer,58246.4,4780.866667,6,5,18,2,"Payday Loan, and Debt Consolidation Loan",36.91721357,22,16.79,8,_,2534.49,38.29480963,8 Years and 11 Months,NM,55.39520153,299.266561,Low_spent_Small_value_payments,413.4249041,0,-0.5919,1.9945,2.0616,1.6131,-0.313 +0xd0a5,CUS_0x2372,August,41,304-34-0889,Scientist,62086.53,5316.8775,7,4,16,2,"Payday Loan, and Auto Loan",18.4565704,16,4.08,7,Standard,1286.42,35.04137956,33 Years and 2 Months,NM,57.40295877,36.92546354,!@9#%8,677.3593277,0,0.7566,0.8902,0.6137,-0.6215,0.2907 +0xd0b1,CUS_0x6572,August,45,594-42-1364,Doctor,99475.83,8108.6525,7,6,10,1,Home Equity Loan,21.6165524,,3.84,1423,Standard,587.9,30.21059586,28 Years and 0 Months,No,49.27572405,544.8765652,Low_spent_Small_value_payments,506.7129608,0,-0.4456,-0.4087,-0.9769,-0.4748,0.0497 +0xd0bd,CUS_0x9f43,August,21,367-85-2447,Manager,31152.06,,4,5,16,4,"Auto Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",13.78541253,12,1.31,6,_,593.4532983,24.89459984,28 Years and 5 Months,No,65.04548038,73.35547011,High_spent_Small_value_payments,364.600198,0,0.5143,-0.0245,-0.4552,0.4887,-0.0002 +0xd0c9,CUS_0x3518,August,32,744-42-7253,Writer,38250.71,2941.559167,1,7,8,3,"Auto Loan, Personal Loan, and Mortgage Loan",,1,0.76,7,Good,1464.74,26.50961059,25 Years and 6 Months,No,91.48681025,,Low_spent_Small_value_payments,127.2999202,0,0.9126,-1.2281,-0.3969,0.253,2.0279 +0xd0d5,CUS_0xba90,August,46,458-00-2231,Developer,59873.88,4836.49,3,5,9,3,"Credit-Builder Loan, Student Loan, and Credit-Builder Loan",0,2,3.11,3,Good,1017.45,32.58233246,17 Years and 10 Months,No,117.107326,262.2647972,Low_spent_Large_value_payments,374.2768768,0,-0.0866,1.2619,0.9877,-0.5464,1.5989 +0xd0e1,CUS_0xd4d,August,36,544-63-7260,Entrepreneur,23163.38,,4,3,8,5,"Payday Loan, Not Specified, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",18.58768222,14,9.38,8,Standard,506.3,32.43302173,,Yes,68.5564294,98.49000007,Low_spent_Small_value_payments,322.4817372,0,-0.9499,0.3175,-1.286,0.5325,-0.7741 +0xd0ed,CUS_0x72fe,August,44,969-12-8865,Doctor,70347,5913.25,8,9,31,4,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",,24.69521917,13.79,8,Bad,2868.873326,35.14605003,20 Years and 8 Months,Yes,207.9665065,10000,High_spent_Large_value_payments,552.0344206,0,-1.3954,1.1908,-0.3741,1.1277,-1.7851 +0xd0f9,CUS_0x23a8,August,40,023-13-3332,Media_Manager,47523,,6,9,4254.889548,7,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",19.19900201,14,7.64,8,Standard,2101.96,27.61283485,,Yes,1596.825349,517.7383937,Low_spent_Small_value_payments,,0,0.424,0.4815,0.479,-0.7558,0.9765 +0xd105,CUS_0x420f,August,37,750-75-7327,Musician,116569.62,,4,4,7,3,"Mortgage Loan, Credit-Builder Loan, and Personal Loan",13.82227069,14,11.5,8,Good,757.7,44.68387595,,No,149.5974624,123.1135016,High_spent_Medium_value_payments,976.402536,0,0.4487,0.3266,2.3548,-1.6744,0.0372 +0xd111,CUS_0x3420,August,36,411-61-2585,Musician,11482.565,1128.880417,4,3,10,3,"Debt Consolidation Loan, Student Loan, and Personal Loan",23.8265334,18,2.05,7,_,517.07,39.2009769,15 Years and 11 Months,NM,15.37086273,32.08959009,High_spent_Medium_value_payments,315.4275889,0,1.1166,0.3256,1.2535,0.1263,0.0212 +0xd11d,CUS_0x2d1e,August,32,613-01-1107,Engineer,44590.1,3605.841667,5,5,7.288361749,0,Auto Loan,3.434858583,7,-4.49,2,Good,509.0021349,25.19838111,21 Years and 11 Months,NM,33.79719283,,High_spent_Large_value_payments,486.0310191,0,-1.5197,2.0174,0.1386,0.6306,-1.1721 +0xd129,CUS_0x1f15,August,23,296-58-9430,Engineer,73378.32,,7,8,26,5,"Payday Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",37.63500008,28.03319702,9.76,9,Bad,2371.739443,24.91791103,10 Years and 8 Months,Yes,187.0729499,628.3738418,Low_spent_Small_value_payments,57.83920829,0,-0.8494,0.4447,-0.0281,0.049,-1.1152 +0xd135,CUS_0xb689,August,19,944-24-4212,Scientist,33806.55,2671.2125,4,6,8,0,,,23,5,0,_,208.25,37.88518626,28 Years and 4 Months,No,0,184.1408962,Low_spent_Small_value_payments,372.9803538,0,-0.0066,-1.2945,0.4672,0.712,0.7772 +0xd141,CUS_0x7551,August,18,926-03-8333,Writer,10353.13,,7,5,35.06745738,8,"Auto Loan, Home Equity Loan, Student Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,25,3.5,11,Bad,2461.400954,39.42230114,20 Years and 3 Months,NM,55.30319447,27.44456568,Low_spent_Small_value_payments,248.3080352,0,0.624,-1.0549,0.037,1.4385,1.4291 +0xd14d,CUS_0x8858,August,26,466-53-4101,Architect,114695.44,9612.953333,2,7,4,4,"Debt Consolidation Loan, Personal Loan, Not Specified, and Student Loan",6.496113484,4.645956216,4.98,1,_,1136.707118,30.23570396,29 Years and 3 Months,No,350.7441879,221.4576418,High_spent_Large_value_payments,629.0935037,0,-1.0588,-0.1482,-1.1144,0.35,-0.0733 +0xd159,CUS_0x1a57,August,49,185-32-4152,_______,63383.1,,6,3,8,3,"Student Loan, Auto Loan, and Auto Loan",,18.10670293,7.54,5,Standard,600.1952183,37.17231215,31 Years and 2 Months,Yes,151.4342489,,Low_spent_Small_value_payments,117.6107713,0,-0.4151,-2.621,-2.9313,-0.5236,-0.2177 +0xd165,CUS_0xb16,August,30,728-01-3765,Manager,10302.935,,3,4,12,3,"Payday Loan, Payday Loan, and Credit-Builder Loan",13.54536416,10,7.89,2,_,786.85,34.59266464,21 Years and 6 Months,Yes,19.15773109,73.85987281,Low_spent_Small_value_payments,291.9401878,0,-0.3794,-0.5187,-0.6806,0.1121,0.5329 +0xd171,CUS_0x94c5,August,36,195-25-3991,Writer,19419.65,1485.304167,8,6,25,5,"Auto Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Personal Loan",37.29508574,23,20.22,14,Bad,4525.71,29.24382162,8 Years and 11 Months,Yes,78.8888497,,Low_spent_Small_value_payments,177.76079,0,1.3265,-0.0993,0.7669,-0.6447,-0.2859 +0xd17d,CUS_0xae62,August,29,726-89-7592,Musician,23216.36,,6,3,9,3,"Student Loan, Auto Loan, and Payday Loan",,,13.37,10,_,861.44,36.40268559,9 Years and 3 Months,Yes,56.00199301,10000,Low_spent_Small_value_payments,279.0438947,0,0.0897,0.3527,-0.8052,1.0489,0.8816 +0xd189,CUS_0x5e1b,August,51,691-88-4829,Mechanic,151160.64,12758.72,1,6,0.288361749,0,,,7,3.45,4,Good,1139.22,29.43239473,,No,0,632.7799242,High_spent_Medium_value_payments,1313.029537,0,-1.1832,-1.0616,-1.5989,-0.193,1.6847 +0xd195,CUS_0x8ac8,August,22,751-26-7144,Teacher,10037.735,871.4779167,8,7,30,5,"Mortgage Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, and Home Equity Loan",,15,17.17,13,Bad,3052.44,37.2245457,,Yes,36.66766176,,High_spent_Medium_value_payments,264.3083904,0,0.0376,-1.4497,-0.5864,0.5419,0.0092 +0xd1a1,CUS_0x7b2f,August,33,445-64-4433,Writer,16114.17,1160.8475,3,6,13,2,"Student Loan, and Credit-Builder Loan",21.77854503,15,14.99,11,Standard,1246.74,27.88638674,,Yes,25.77988712,151.1781713,Low_spent_Small_value_payments,229.1266915,0,-0.2019,-0.6257,-0.3883,-0.6278,-2.6971 +0xd1ad,CUS_0x6349,August,45,884-18-7863,Scientist,22555.52,1995.626667,6,3,15.06745738,100,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",22.17602788,14.53523981,6.79,2,Standard,1815.727864,32.34759736,,No,55.00709724,143.4712822,!@9#%8,264.3639993,0,-1.5498,-0.3283,-2.07,-1.9385,0.6072 +0xd1b9,CUS_0x1b09,August,40,507-03-3969,Entrepreneur,96522,8334.5,4,4,2.288361749,4,"Personal Loan, Personal Loan, Not Specified, and Mortgage Loan",0,3,3.7,1,Good,1022.38,33.49551488,23 Years and 5 Months,No,247.9498725,,High_spent_Large_value_payments,641.1104434,0,0.5001,0.8686,-0.3617,-1.5972,0.756 +0xd1c5,CUS_0x7976,August,32,616-00-4975,Lawyer,67629.14,5479.761667,0,3,9.288361749,0,Auto Loan,0,0,4.69,2,Good,177.03,30.42830471,32 Years and 5 Months,No,25119,,Low_spent_Medium_value_payments,307.3510544,0,1.7894,0.1423,-1.0078,-1.1691,0.2782 +0xd1d1,CUS_0x5b5,August,39,027-27-7758,Mechanic,33480.02,2775.001667,8,10,20.95700519,9,"Payday Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, Personal Loan, Payday Loan, Student Loan, and Personal Loan",40.1947102,19.92351011,8.73,8,Bad,4841.221648,27.97834273,3 Years and 11 Months,Yes,1451.57915,254.2320987,Low_spent_Large_value_payments,120.6385489,0,-0.1827,-1.0184,0.3836,0.7511,0.507 +0xd1dd,CUS_0xb63e,August,37,646-59-8591,Engineer,16480.5,1669.375,8,6,15.28836175,6,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Not Specified, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",17.6515141,16,12.82,7,Standard,201.57,34.50241442,,Yes,85.124863,460.9715566,High_spent_Small_value_payments,300.7785414,0,2.2405,-1.4037,0.2696,0.4814,0.9598 +0xd1e9,CUS_0x1c5d,August,19,084-74-2355,Musician,19121.21,,8,7,15,7,"Debt Consolidation Loan, Not Specified, Not Specified, Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",19.45388907,,13.94,6,Standard,448.39,39.24866033,15 Years and 4 Months,Yes,79.71165235,56.52354783,!@9#%8,293.9082165,0,0.2153,0.8077,-0.1586,0.4148,-0.1466 +0xd1f5,CUS_0x2de3,August,55,053-51-0661,Manager,20515.94,1649.661667,7,5,15,2,"Mortgage Loan, and Payday Loan",27.50642865,19,7.47,6,Standard,878.79,33.40137779,15 Years and 8 Months,No,20.77430631,64.20784408,Low_spent_Small_value_payments,369.9840163,0,-0.4468,1.1299,-1.6037,-0.8854,0.188 +0xd201,CUS_0x2b7d,August,18,324-44-7622,Accountant,14771.43,,6,7,33.06745738,6,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Personal Loan",51.93533341,27.414046,8.59,10,_,2093.904463,32.94985107,9 Years and 2 Months,NM,51.56522936,,Low_spent_Small_value_payments,213.1247855,0,0.7522,-1.0721,-1.1587,0.5664,-0.0179 +0xd20d,CUS_0x2c08,August,31,918-15-6457,Manager,66357.14,5688.761667,8,4,8,1,Student Loan,21.85434378,16.93316745,9.66,2,Standard,1559.476475,28.70987071,20 Years and 2 Months,No,47.08813642,126.2718171,High_spent_Medium_value_payments,645.5162132,0,-0.9237,-1.0417,-0.6192,1.3424,0.6123 +0xd219,CUS_0x97f7,August,29,847-52-4156,Scientist,141897.84,,4,7,6,7,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Home Equity Loan, and Student Loan",,11,16.09,10,Standard,1348.77,35.25217013,7 Years and 4 Months,Yes,647.1602647,552.0077323,!@9#%8,259.614003,0,-2.0041,0.5691,-0.6256,-0.1886,2.4497 +0xd225,CUS_0x8f05,August,18,261-87-4617,Engineer,14569.27,,10,8,20.88954781,7,"Not Specified, Not Specified, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Not Specified",20.18196552,15,27.71,12,Bad,2321.844692,30.8121337,12 Years and 11 Months,Yes,1478.809675,,High_spent_Large_value_payments,250.7442993,0,1.0263,-0.4157,1.8175,-0.336,0.4736 +0xd231,CUS_0x910e,August,50,220-91-4662,Developer,10943.535,,6,4,8,2,"Auto Loan, and Credit-Builder Loan",26.27121252,21.91018379,5.88,2,Good,653.3750532,24.85943878,31 Years and 6 Months,No,16.71590243,92.63047176,Low_spent_Small_value_payments,273.8497508,0,0.9943,-0.9084,0.408,-0.2604,1.1895 +0xd23d,CUS_0xc000,August,31,292-78-1234,Media_Manager,35883.18,,6,5,8,4,"Not Specified, Auto Loan, Not Specified, and Auto Loan",17.24151362,,7.63,5,Good,68.84482406,35.70743541,31 Years and 3 Months,No,115.8024297,151.0761703,High_spent_Medium_value_payments,322.6589164,0,0.7263,-1.5642,-0.6618,-0.7911,-0.2475 +0xd249,CUS_0x2a09,August,40,271-31-5302,Architect,10296.705,,8,6,26,7,"Not Specified, Payday Loan, Personal Loan, Not Specified, Payday Loan, Home Equity Loan, and Auto Loan",31.14195353,22,25.58,12,_,3632.53,38.66583673,12 Years and 3 Months,NM,38.53878272,39.93788104,High_spent_Small_value_payments,294.5292112,0,0.1866,0.249,-0.2518,-0.321,0.9496 +0xd255,CUS_0x62ad,August,45,178-27-9290,Accountant,15915.73,1461.310833,5,7,24,100,"Personal Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",15.19596335,13.97694603,12.05,14,Standard,1751.608962,28.35591085,11 Years and 10 Months,Yes,50.66026354,,Low_spent_Large_value_payments,327.3184324,0,-0.3955,1.2102,1.0648,-1.7211,0.3945 +0xd261,CUS_0x2217,August,29,303-33-5518,Musician,28481.67,2441.4725,0,3,8.288361749,2,"Home Equity Loan, and Student Loan",,,7.45,3,Good,104.85,36.43031382,31 Years and 2 Months,No,46.99155012,486.6207858,Low_spent_Medium_value_payments,410.4723751,0,-0.4849,-1.4182,0.5699,1.3173,-0.6902 +0xd26d,CUS_0xb736,August,54,868-99-0276,Developer,25609.04,2233.086667,6,7,6,4,"Auto Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",16.31447571,16,19.55,2,Standard,1121.06,31.17662155,18 Years and 8 Months,Yes,74.36016971,63.53778062,High_spent_Small_value_payments,345.4107163,0,0.3303,-0.6018,-0.4039,0.0016,0.1949 +0xd279,CUS_0x9e51,August,24,941-84-3892,Accountant,23363.33,,5,3,19,2,"Student Loan, and Student Loan",11.03864686,11,8.38,2,Standard,1105.47,23.58802262,32 Years and 10 Months,No,38.08515391,81.67850197,High_spent_Small_value_payments,342.1307608,0,0.5421,-0.0822,1.16,-1.5647,-0.5539 +0xd285,CUS_0x2fca,August,50,279-66-3207,Musician,126769.86,10265.155,5,4,5.288361749,0,Credit-Builder Loan,2.485767227,5,6.63,1,Good,349.8093898,32.74058978,24 Years and 5 Months,No,79.73353789,546.1046222,High_spent_Large_value_payments,1073.433049,0,0.6323,0.4725,0.5381,-2.0728,0.9226 +0xd291,CUS_0x2483,August,37,468-18-1488,Media_Manager,10086.965,711.5804167,6,6,27,3,"Auto Loan, Credit-Builder Loan, and Student Loan",24.10616571,20,12.23,5,Standard,1689.61,38.98461712,8 Years and 3 Months,NM,18.99022286,27.95551672,Low_spent_Large_value_payments,294.2123021,0,-0.9025,1.382,0.1338,0.4246,-0.6119 +0xd29d,CUS_0xc517,August,44,036-05-5721,Writer,17302.08,1355.84,8,8,21.88954781,9,"Credit-Builder Loan, Payday Loan, Mortgage Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Payday Loan, Student Loan, and Student Loan",24.57604913,16,29.37,12,_,4570.87,38.15016499,4 Years and 0 Months,Yes,1391.443031,55.14901709,Low_spent_Large_value_payments,264.6618704,0,0.3803,-0.9227,1.5041,1.5676,-0.031 +0xd2a9,CUS_0x8f6f,August,29,108-42-4223,Musician,38713.36,,2,4,10.28836175,0,,0,1,3.56,7,Good,128.7351786,27.61848114,22 Years and 9 Months,No,0,688.9921638,Low_spent_Medium_value_payments,368.9820946,0,-1.286,1.3143,1.2736,-0.1051,0.6189 +0xd2b5,CUS_0xa86a,August,21,605-98-8733,Media_Manager,45953.94,3887.495,3,7,14,3,"Debt Consolidation Loan, Mortgage Loan, and Payday Loan",19.32727959,15,7.64,8,Standard,1237.97,38.6740135,18 Years and 4 Months,No,92.41505378,58.73229487,High_spent_Large_value_payments,477.6021514,0,0.3998,1.1488,-2.7892,-0.6665,0.7941 +0xd2c1,CUS_0xafdf,August,53,584-22-6688,Manager,121966.28,10161.85667,2,4,8.288361749,0,,7.934840515,9,7.51,5,Good,1467.6,36.81676159,28 Years and 2 Months,No,0,,!@9#%8,1086.054734,0,0.4778,-0.7262,-0.1864,0.7379,1.1061 +0xd2cd,CUS_0x7067,August,50,383-61-8635,Architect,173650.68,,4,4,1.288361749,100,"Auto Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",0,1,1.55,,Good,965.6309843,33.93977343,27 Years and 8 Months,No,28540,697.5081976,High_spent_Large_value_payments,1035.789892,0,1.2809,0.8394,-0.3312,0.8948,-0.2625 +0xd2d9,CUS_0x6b9d,August,46,390-39-5965,Doctor,9697.29,,4,3,9,4,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,17.2423024,12.95,9,Standard,574.2879936,30.83906109,8 Years and 8 Months,Yes,28.77453606,66.08474099,Low_spent_Small_value_payments,281.2514729,0,-0.4207,-0.1992,-0.6476,1.3911,0.7323 +0xd2e5,CUS_0x6a33,August,33,857-00-0192,Scientist,23808.75,1993.0625,8,7,8,0,,,15.57939948,19.79,1,Standard,8.91998969,37.1903114,,Yes,0,251.7137956,Low_spent_Small_value_payments,237.5924544,0,1.4999,0.1681,2.434,-0.854,-0.9469 +0xd2f1,CUS_0x7a24,August,41,409-59-5476,Teacher,10234.39,881.8658333,4,6,6,4,"Student Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",17.8209613,13,6.7,4,Standard,627.2,34.56433451,16 Years and 6 Months,No,26.99631558,22.8752816,Low_spent_Medium_value_payments,318.3149862,0,0.9808,-0.7218,-1.1312,1.6497,1.0269 +0xd2fd,CUS_0x4e52,August,38,983-62-4894,Lawyer,82583.61,6785.9675,6,4,9.288361749,2,"Personal Loan, Personal Loan, and Home Equity Loan",18.27406366,16,18.51,5,Standard,1072.11,32.26147243,25 Years and 10 Months,Yes,172.8137708,10419.93746,Low_spent_Large_value_payments,379.6650203,0,0.0843,0.335,0.9382,-1.3025,0.0136 +0xd309,CUS_0x4425,August,18,821-88-7412,Doctor,59788.89,5053.4075,9,9,20,7,"Student Loan, Student Loan, Debt Consolidation Loan, Not Specified, Student Loan, Student Loan, and Not Specified",,28.77129233,18.13,10,Bad,4030.016845,36.43254042,7 Years and 5 Months,Yes,188.5787132,274.1835572,Low_spent_Small_value_payments,332.5784796,0,0.9722,-1.2669,1.0772,-1.4459,-2.0374 +0xd315,CUS_0x9e4d,August,25,827-69-2109,Engineer,28823.03,2293.919167,7,6,0.288361749,2,"Not Specified, and Auto Loan",10.81553991,10,9.22,5,Standard,51.26,29.8903676,33 Years and 3 Months,No,39.34837245,532.5654811,High_spent_Small_value_payments,337.4155242,0,-1.8288,0.7601,-1.7983,-0.2312,0.05 +0xd321,CUS_0xad7d,August,28,561-15-5381,Architect,28338.43,,6,3,7.288361749,0,Home Equity Loan,21.59901578,18,21.1,7,Standard,135.5,25.41051719,19 Years and 3 Months,Yes,12.80528125,652.4874697,Low_spent_Small_value_payments,261.7982934,0,0.8261,-1.8557,-2.6358,0.7238,0.1036 +0xd32d,CUS_0x70b3,August,20,183-82-0629,Manager,32246.4,,5,4,10,0,,5.821010593,6,19.96,5,Standard,1396.38,34.38949338,23 Years and 3 Months,Yes,0,10000,Low_spent_Small_value_payments,221.2781415,0,-0.7045,1.2569,-0.7689,0.8219,0.6733 +0xd339,CUS_0x4fc2,August,50,#F%$D@*&8,Scientist,85770.33,7275.5275,5,5,5,100,"Home Equity Loan, Payday Loan, and Not Specified",16.50960788,12.43163991,5.25,3,Good,1467.078118,26.19098345,18 Years and 3 Months,No,144.4293021,383.4921544,Low_spent_Medium_value_payments,479.6312935,0,-1.5197,0.2433,-0.5959,1.2839,0.0874 +0xd345,CUS_0x53d6,August,39,368-56-4250,Mechanic,44826.54,3953.545,2,3,10,0,,,9,2.52,6,_,952.04,30.36977071,29 Years and 0 Months,No,0,157.7124176,High_spent_Medium_value_payments,487.6420824,0,0.6278,1.3132,1.0323,-0.1515,1.1373 +0xd351,CUS_0x96e8,August,27,928-09-7220,Musician,17484.02,1491.001667,5,5,33,3,"Debt Consolidation Loan, Not Specified, and Mortgage Loan",24.46623046,21.75312326,17,,Standard,2832.905772,27.15670952,20 Years and 6 Months,Yes,43.67294417,165.5688186,Low_spent_Small_value_payments,229.8584039,0,1.296,-0.0757,-1.8598,-0.1165,0.2386 +0xd35d,CUS_0x8680,August,32,381-06-3417,Mechanic,17455.36,1222.613333,8,10,1730.957005,7,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",,19.04957951,1.49,17,Bad,2064.224412,25.61942078,10 Years and 2 Months,Yes,1382.279665,80.07496079,Low_spent_Small_value_payments,228.8563383,0,-1.4851,0.7571,-2.0801,-0.2258,0.0663 +0xd369,CUS_0x37db,August,18,585-94-4096,Entrepreneur,19559.45,,5,4,20,4,"Student Loan, Personal Loan, Mortgage Loan, and Home Equity Loan",,21,13.77,2136,Standard,1115.06,33.42681801,19 Years and 5 Months,Yes,38.28721653,99.56806627,Low_spent_Small_value_payments,318.7401339,0,-2.0029,0.4975,0.365,-0.0551,-0.1299 +0xd375,CUS_0x4f31,August,18,586-32-9609,Journalist,54420.45,4237.48752,3,4,19,3,"Student Loan, Student Loan, and Home Equity Loan",20.89060932,17,12.5,11,Standard,597.9388612,33.90649358,16 Years and 2 Months,Yes,564.7840976,81.40793829,High_spent_Large_value_payments,516.7782877,0,-0.0613,-0.7726,-0.6054,-0.0747,-0.6285 +0xd381,CUS_0x16d4,August,44,132-82-7348,Developer,174353,14739.41667,2,4,6,3,"Debt Consolidation Loan, Payday Loan, and Student Loan",11.45488036,10,8.75,2,Good,405.65,36.92759723,29 Years and 5 Months,No,380.7224903,,!@9#%8,1048.402959,0,-1.1316,-0.2484,0.6506,0.5846,0.3705 +0xd38d,CUS_0xb363,August,37,227-96-9535,Entrepreneur,32470.08,,6,6,19,2,"Student Loan, and Mortgage Loan",19.77720522,16.52494706,17.11,11,Standard,1658.523937,37.9264449,17 Years and 6 Months,Yes,51.98769345,10000,Low_spent_Small_value_payments,152.1044129,0,0.0424,0.3254,1.1877,0.0063,-0.007 +0xd399,CUS_0x6cd9,August,26,478-01-7375,Teacher,16653.5,,3,2,7,2,"Debt Consolidation Loan, and Payday Loan",10.4130231,11,11.5,8,Good,513.8312921,36.01885311,16 Years and 2 Months,No,20.63424501,130.9546269,Low_spent_Small_value_payments,262.6782889,0,0.2227,-0.4254,-1.963,-1.3629,1.4218 +0xd3a5,CUS_0x3e65,August,50,190-85-0373,Media_Manager,103695.12,,3,4,10.28836175,0,,7.168108602,8,,4,Standard,939.25,27.17050021,19 Years and 4 Months,No,0,599.7077189,High_spent_Medium_value_payments,904.4557421,0,-0.5482,0.4838,1.598,1.0994,1.698 +0xd3b1,CUS_0x69e0,August,27,888-50-5438,Scientist,49847.55,3884.9625,9,5,18,3,"Home Equity Loan, Personal Loan, and Student Loan",29.77225349,21.30543628,2.77,12,Bad,2483.565961,28.48490752,20 Years and 0 Months,Yes,71.67569993,47.73377121,High_spent_Medium_value_payments,519.0867789,0,1.4463,0.698,-1.3052,0.2783,-1.3558 +0xd3bd,CUS_0x1589,August,36,618-91-2082,Doctor,71282.14,5807.178333,2,4,11,1,Home Equity Loan,,4,5.98,5,Good,1328.861773,36.60865463,32 Years and 11 Months,No,37.78886657,114.1472467,High_spent_Medium_value_payments,693.4347008,0,0.4047,1.2174,0.2417,-0.5024,0.9442 +0xd3c9,CUS_0x9c24,August,31,858-57-6580,Doctor,12285.14,991.7616667,7,4,9,3,"Credit-Builder Loan, Payday Loan, and Personal Loan",14.19824605,13,3.47,5,Standard,850.79,24.42672343,16 Years and 6 Months,No,19.8509267,66.73705047,Low_spent_Small_value_payments,302.5881895,0,0.3221,0.8841,0.1219,1.1359,-0.6594 +0xd3d5,CUS_0x4df9,August,18,643-21-3304,Architect,54832.83,4564.4025,6,9,24,3,"Mortgage Loan, Payday Loan, and Auto Loan",33.18135037,19.48439854,18.03,10,Standard,2075.642682,30.08431826,20 Years and 5 Months,NM,121.3524007,251.4444393,Low_spent_Medium_value_payments,363.64341,0,-0.3881,-0.1321,-0.7882,0.8368,-0.9801 +0xd3e1,CUS_0x91c4,August,32,537-73-6299,Teacher,118568.6,,8,7,6,7,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",,16,7.54,8,Standard,95.38,29.71098818,7 Years and 5 Months,Yes,575.528253,10000,Low_spent_Large_value_payments,,0,-1.4425,-1.0424,-0.1673,0.5796,0.149 +0xd3ed,CUS_0xc4f4,August,34,#F%$D@*&8,Musician,129561.96,10827.83,2,3,11,3,"Home Equity Loan, Payday Loan, and Home Equity Loan",3.783668845,1.121900326,6.65,2,Good,0.586834905,38.38491658,33 Years and 6 Months,No,220.5877276,133.6563478,High_spent_Large_value_payments,968.5389246,0,-0.4336,0.5265,-1.2414,-0.1965,-0.4485 +0xd3f9,CUS_0x54bc,August,18,425-82-8832,Entrepreneur,110116.64,9161.386667,7,5,9,438,"Auto Loan, Student Loan, and Payday Loan",22.43788902,16,7.57,3,Standard,324.69,33.84884691,32 Years and 3 Months,No,202.922584,,Low_spent_Large_value_payments,198.0197052,0,-1.5587,1.1371,-0.3911,1.6493,-2.5662 +0xd405,CUS_0x25f8,August,18,309-78-5676,_______,15686.54,1291.211667,3,5,8,4,"Auto Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",10.75400757,11,16.12,9,Standard,1657.45,28.60008606,14 Years and 6 Months,Yes,28.17472788,124.5581935,Low_spent_Small_value_payments,266.3882453,0,-0.3878,-0.5936,-0.0175,0.0569,0.0585 +0xd411,CUS_0x4aa6,August,42,532-79-6405,_______,13924.125,,489,3,10,0,,19.88237186,14,7.55,4,Good,1270.5,26.76513773,29 Years and 5 Months,No,0,91.90408951,Low_spent_Medium_value_payments,283.3302855,0,0.5224,1.5799,-1.2034,0.834,-0.6178 +0xd41d,CUS_0x5e8f,August,31,332-50-9349,Musician,16608.8,,10,6,16.06745738,6,"Student Loan, Payday Loan, Payday Loan, Mortgage Loan, Not Specified, and Home Equity Loan",,3533,16.64,9,Bad,3327.380954,39.2143817,,Yes,76.36770221,58.5982725,High_spent_Small_value_payments,225.220404,0,0.0385,-0.058,0.9436,-1.5339,0.9381 +0xd429,CUS_0x66e3,August,18,619-90-6478,Doctor,10279.675,,3,4,20,4,"Home Equity Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",25.59083032,19,16.68,6,Standard,2099.89,34.38098282,,Yes,19.72832589,52.34785984,Low_spent_Medium_value_payments,283.3877726,0,-0.7252,0.4646,0.2021,0.0921,-1.4703 +0xd435,CUS_0x6ae7,August,25,799-75-6587,Scientist,20837.54,1704.461667,4,6,4,1,Debt Consolidation Loan,0,1.129482475,10.49,2,Good,1320.44712,25.09937311,23 Years and 8 Months,No,16.86816554,114.3497553,High_spent_Small_value_payments,299.2282458,0,-0.6366,0.1307,1.2607,0.8083,0.4928 +0xd441,CUS_0x69eb,August,30,860-78-9875,Lawyer,14773.62,,5,3,23,5,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",16.32620721,13.8402882,12.16,11,Standard,2586.356303,37.7319214,13 Years and 6 Months,Yes,42.99065078,23.86437633,High_spent_Small_value_payments,301.6584729,0,-0.3569,-0.0269,0.4546,0.8667,-0.1895 +0xd44d,CUS_0x1d33,August,40,697-07-9858,Journalist,39294.3,,9,10,30,3,"Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",,23.752462,7.14,11,_,1466.021191,30.48575226,,Yes,60.74439251,129.7396727,Low_spent_Small_value_payments,428.7684348,0,0.9742,-1.3804,0.0447,1.1804,0.7776 +0xd459,CUS_0x6503,August,21,163-57-5111,Lawyer,29949.1,2419.758333,3,3,6,7,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Mortgage Loan",21.25904202,17,9.87,5,Standard,1316.19,31.92804148,20 Years and 3 Months,Yes,148.9974444,82.85996832,Low_spent_Large_value_payments,280.1184206,0,-1.4639,0.6815,-0.2821,-0.6798,0.4728 +0xd465,CUS_0x4488,August,35,#F%$D@*&8,Scientist,14489.475,,5,4,8,0,,3.06968878,7,1.58,2,Good,759.09,33.46971333,18 Years and 11 Months,No,0,154.8714359,Low_spent_Small_value_payments,280.8741891,0,-0.8117,0.8855,0.2334,0.359,-0.2962 +0xd471,CUS_0x15dd,August,80,794-51-3706,Architect,13351.83,1256.6525,6,3,13,2,"Auto Loan, and Payday Loan",16.10305774,13,19.48,1,_,303.84,26.12263729,23 Years and 5 Months,Yes,13.91394401,50.06530935,Low_spent_Medium_value_payments,341.6859966,0,-1.232,-0.8113,0.924,0.6802,1.4887 +0xd47d,CUS_0x8af8,August,38,823-92-1569,Developer,101718.63,8457.5525,3,3,12,0,,4.576720551,6,3.35,1,Good,668.1656855,33.34122644,,No,0,959.4623881,Low_spent_Medium_value_payments,304.0710719,0,0.1405,0.2856,1.11,-0.6186,1.239 +0xd489,CUS_0x7b61,August,18,132-42-7088,Developer,18216.63,,7,9,19.06745738,9,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,15,15.69,8,Bad,3136.154939,40.37014758,4 Years and 8 Months,Yes,105.6476073,,!@9#%8,203.2848378,0,1.0037,-1.3494,1.0838,-0.0254,-0.4851 +0xd495,CUS_0x90e7,August,25,#F%$D@*&8,_______,9978.995,,8,7,34.06745738,9,"Auto Loan, Student Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",,24,24.12,9,Bad,2973.140954,34.09052696,3 Years and 0 Months,Yes,65.14209981,50.35619123,Low_spent_Small_value_payments,240.8397127,0,0.6741,1.3038,1.2831,-0.611,0.6039 +0xd4a1,CUS_0x6054,August,29,024-19-5485,Developer,19296.24,1669.02,2,7,2,2,"Mortgage Loan, and Payday Loan",15.51686192,,8.76,8,Good,763.0259084,24.56533537,20 Years and 2 Months,No,25.3290433,59.70627568,Low_spent_Medium_value_payments,370.2043614,0,0.9576,-0.3963,1.7405,-0.5623,-0.8526 +0xd4ad,CUS_0x4779,August,20,448-73-9626,Teacher,16744.76,,10,5,16.06745738,7,"Not Specified, Credit-Builder Loan, Payday Loan, Home Equity Loan, Auto Loan, Not Specified, and Home Equity Loan",,17.11219417,13.65,16,_,3169.318471,39.90858635,13 Years and 5 Months,Yes,84.5729681,124.3910623,Low_spent_Small_value_payments,178.8553483,0,-0.048,-0.6727,0.5954,-0.1299,-1.1773 +0xd4b9,CUS_0x4cdd,August,19,865-79-1559,_______,40854.02,3552.501667,2,4,4689,1,Debt Consolidation Loan,,0,9.58,2,_,401.1273019,28.39011327,27 Years and 3 Months,No,26.26179386,167.5091298,High_spent_Medium_value_payments,434.84951,0,-0.5204,-1.3548,1.8846,0.249,-0.0586 +0xd4c5,CUS_0x5000,August,33,149-70-0580,Entrepreneur,39799.4,3049.616667,5,7,12,3,"Payday Loan, Home Equity Loan, and Home Equity Loan",1.948887374,5.789326099,10.06,1,Good,1281.687364,38.75080519,16 Years and 9 Months,No,54.9424937,,High_spent_Large_value_payments,441.4668731,0,-0.975,0.0661,-0.016,-1.5855,1.1465 +0xd4d1,CUS_0x9ab4,August,35,969-17-4818,Scientist,96650.64,8197.22,3,7,12,100,"Home Equity Loan, Auto Loan, Personal Loan, and Not Specified",,16,2.18,2,Standard,1198.559741,38.67116448,32 Years and 10 Months,No,223.1505599,142.2160499,High_spent_Large_value_payments,708.612668,0,-0.452,-0.1445,-0.0836,1.5804,-0.1179 +0xd4dd,CUS_0x5387,August,25,158-97-6900,Scientist,51191.4,4551.95,9,7,25.06745738,9,"Not Specified, Payday Loan, Not Specified, Student Loan, Student Loan, Student Loan, Mortgage Loan, Mortgage Loan, and Student Loan",27.10540428,18,19.65,10,_,3512.070954,26.67344912,9 Years and 2 Months,Yes,238.6368962,532.9161179,Low_spent_Small_value_payments,,0,0.6763,0.719,-1.8125,-0.5637,-0.5476 +0xd4e9,CUS_0x6b6,August,35,486-98-7856,Writer,14243.265,,1,1,7,1,Auto Loan,,,5.06,6,Good,900.6205005,39.34252359,26 Years and 6 Months,NM,11.73209087,74.14942129,!@9#%8,342.2976131,0,1.1077,0.2195,-1.4584,0.801,-1.9873 +0xd4f5,CUS_0x5d4c,August,41,920-96-4683,Lawyer,61314.12,5279.51,0,3,8,3,"Not Specified, Payday Loan, and Not Specified",0,1,,4,Good,829.54,29.03505994,,No,92.4219112,71.54109455,High_spent_Large_value_payments,603.9879943,0,-0.1751,0.352,0.6722,0.5433,1.1166 +0xd501,CUS_0x765,August,28,282-28-8981,Media_Manager,50940.09,4106.0075,8,7,8,5,"Student Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",,16,16.11,8,Standard,2414.34,23.28808509,12 Years and 9 Months,Yes,67469,,Low_spent_Medium_value_payments,76.10062505,0,-1.1553,0.7194,0.5551,-1.175,0.2425 +0xd50d,CUS_0x70bc,August,18,864-23-5531,Architect,46152.92,,3,3,7,4,"Home Equity Loan, Mortgage Loan, Student Loan, and Home Equity Loan",7.431747893,8,10.99,12,Standard,1294.2,36.62358877,,Yes,147.9637829,55.20429709,High_spent_Medium_value_payments,452.6395867,0,-1.6116,0.1692,-1.0498,0.0767,-0.4447 +0xd519,CUS_0x2951,August,27,598-57-4270,Entrepreneur,19441.41,1386.1175,9,8,32.06745738,2,"Mortgage Loan, and Debt Consolidation Loan",35.08353527,22,3.43,10,Bad,2800.760954,29.92306909,16 Years and 10 Months,Yes,22.39031486,,Low_spent_Medium_value_payments,272.3827503,0,0.0656,-0.9692,-0.0743,-0.5677,0.5205 +0xd525,CUS_0x2bfe,August,28,212-17-1520,Scientist,29376.07,,4,4,5,3,"Auto Loan, Mortgage Loan, and Student Loan",3.243922134,4,8.28,6,_,1439.6,34.13901141,32 Years and 3 Months,No,68.11743128,34.65850022,High_spent_Large_value_payments,353.1246518,0,0.7662,1.1135,-1.0885,0.7343,-0.996 +0xd531,CUS_0x9c82,August,38,139-07-1195,Lawyer,14450.43,1155.2025,9,6,21,9,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Personal Loan, Student Loan, Auto Loan, Student Loan, and Home Equity Loan",,20,23.96,9,_,3252.14,31.09750395,8 Years and 10 Months,Yes,72.81281954,,Low_spent_Small_value_payments,265.4309709,0,0.1312,1.6908,-0.1261,-2.3771,0.4519 +0xd53d,CUS_0x2a8f,August,26,381-55-9671,Media_Manager,7424.24,599.6866667,10,5,34.06745738,5,"Debt Consolidation Loan, Auto Loan, Not Specified, Mortgage Loan, and Personal Loan",,16,24.41,6,Bad,4940.560954,28.93072969,9 Years and 3 Months,Yes,23.35261734,78.35654799,!@9#%8,221.5392134,0,-0.3147,-0.6514,-0.0978,0.669,0.4244 +0xd549,CUS_0x8466,August,27,745-34-3416,Entrepreneur,60485.13,,9,7,15,8,"Student Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",,21,3.15,15,Bad,1746.37,39.66034555,14 Years and 9 Months,Yes,297.1648727,192.0442542,High_spent_Medium_value_payments,278.7336231,0,0.0986,-0.4997,0.2087,-1.4643,-0.445 +0xd555,CUS_0x451e,August,36,773-49-8622,Engineer,38323.46,,3,3,24,2,"Payday Loan, and Auto Loan",13.72104776,13.20371984,21.19,6,Standard,2342.703776,32.76536256,20 Years and 0 Months,Yes,42.21977824,149.9795903,High_spent_Small_value_payments,358.5627981,0,0.0626,0.3616,0.1785,0.9413,0.742 +0xd561,CUS_0xae07,August,47,495-04-7396,Teacher,21450.3,1752.525,830,6,7,4,"Mortgage Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",,,0.85,5,Good,422.8455533,39.4814663,29 Years and 5 Months,No,59.40297607,221.407365,!@9#%8,211.9547157,0,1.2975,-1.0971,-0.0023,0.6651,1.4786 +0xd56d,CUS_0x169d,August,20,282-18-9852,Musician,8637.095,,5,7,14,4,"Home Equity Loan, Home Equity Loan, Personal Loan, and Home Equity Loan",13.16074631,11,9.25,7,_,2039.13,37.53093748,7 Years and 10 Months,Yes,27.44717941,18.8964074,Low_spent_Medium_value_payments,298.1322049,0,0.4193,0.1515,-1.1524,-1.3491,-0.2004 +0xd579,CUS_0x7453,August,27,978-82-9151,Engineer,18569.39,1650.66255,10,5,18,8,"Student Loan, Not Specified, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Student Loan, and Credit-Builder Loan",29.35444711,20.67620053,19.43,8,Bad,4155.96151,32.96822217,12 Years and 0 Months,Yes,130.6366442,44.15297562,High_spent_Medium_value_payments,263.1419131,0,1.4463,-0.6051,-1.4614,1.9127,0.6332 +0xd585,CUS_0x6963,August,27,958-37-1518,Lawyer,56270.8,4540.233333,6,5,23,5,"Student Loan, Personal Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",25.6247268,,26.19,11,Bad,3991.601434,38.35256151,12 Years and 0 Months,Yes,129.0856837,151.7509734,High_spent_Medium_value_payments,423.1866762,0,0.7555,-0.5706,-0.0637,-0.1534,0.3652 +0xd591,CUS_0x46ea,August,19,150-70-3630,Teacher,14974.765,1240.897083,4,5,6,4,"Credit-Builder Loan, Not Specified, Student Loan, and Auto Loan",,13,7.53,4,_,1292.04,24.61135992,25 Years and 2 Months,Yes,32.17664706,59.83730131,!@9#%8,322.07576,0,0.3412,0.0277,0.3696,2.5875,0.7427 +0xd59d,CUS_0xb2ba,August,40,428-72-2041,Accountant,29079.95,,3,4,14,4,"Payday Loan, Home Equity Loan, Auto Loan, and Payday Loan",22.15044958,,9.4,6,_,1234.91,35.32055807,15 Years and 11 Months,No,68.11381307,46.36953088,High_spent_Small_value_payments,410.9495727,0,0.0174,-0.9154,0.5642,1.7847,0.3393 +0xd5a9,CUS_0x6c92,August,33,395-77-5456,Teacher,14513.88,,10,948,34.06745738,6,"Personal Loan, Auto Loan, Not Specified, Personal Loan, Home Equity Loan, and Mortgage Loan",38.17309288,24.41884472,24.45,11,Bad,3602.904638,33.6344362,11 Years and 0 Months,Yes,65.43734738,37.83936556,High_spent_Small_value_payments,236.7519991,0,-0.2595,0.353,0.4174,1.5271,-2.2137 +0xd5b5,CUS_0x4a7a,August,44,725-15-5087,Writer,71735.48,6021.956667,8,3,8,3,"Not Specified, Not Specified, and Student Loan",,20,15.07,2,Standard,940.19,38.16362416,20 Years and 0 Months,Yes,144.5400605,73.56393934,High_spent_Large_value_payments,624.0916669,0,-0.4147,0.2062,0.2527,0.2038,0.486 +0xd5c1,CUS_0x90fa,August,51,581-40-0575,Doctor,36918.96,,3,5,6,2,"Personal Loan, and Debt Consolidation Loan",,12,11.33,9,Standard,1190.58,33.24281266,18 Years and 9 Months,No,41.24441839,,Low_spent_Large_value_payments,292.4074841,0,-0.2267,0.7956,0.6078,0.679,0.6077 +0xd5cd,CUS_0xbb02,August,29,404-71-8835,Developer,43067.01,3488.9175,8,6,29.06745738,9,"Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",41.22621472,26.43641355,23.35,13,Bad,5031.626066,33.38576032,14 Years and 2 Months,NM,258.9188046,,Low_spent_Large_value_payments,106.4234473,0,-0.037,-0.3955,-0.4507,0.2503,0.1476 +0xd5d9,CUS_0x94b,August,18,140-03-1325,Journalist,31606.46,2402.871667,4,7,19,2,"Not Specified, and Personal Loan",25.60153352,19.38362189,15.79,12,Standard,2770.407971,39.72589005,12 Years and 10 Months,Yes,47.28812309,123.333766,High_spent_Small_value_payments,329.6652776,0,0.7848,2.235,-0.6192,0.5932,-0.2355 +0xd5e5,CUS_0x6669,August,35,845-20-9787,Journalist,19466.45,,8,10,20.95700519,8,"Personal Loan, Not Specified, Payday Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Auto Loan",44.48324337,24.57688641,31.07,13,Bad,4057.723725,25.46950882,13 Years and 0 Months,Yes,26853.48344,55.69026748,Low_spent_Medium_value_payments,302.9597703,0,-1.8178,0.8352,-1.957,-0.867,0.2167 +0xd5f1,CUS_0x9087,August,43,298-63-8112,Teacher,81142.96,6614.913333,3,5,8.288361749,4,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Payday Loan",0,2,9.72,4,Good,580.94,33.59420441,32 Years and 10 Months,No,207.5845304,655.0118349,Low_spent_Medium_value_payments,498.8324291,0,1.8312,-0.4071,-1.1339,-1.3859,1.2626 +0xd5fd,CUS_0x628,August,44,350-60-2048,_______,17889.405,1244.78375,1,728,4,4,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",0.428820401,5,0.93,7,_,892.7404012,27.65971934,27 Years and 11 Months,NM,57.33850242,74.09451062,Low_spent_Small_value_payments,292.08755,0,-1.7531,-1.6038,0.5973,0.6568,0.5063 +0xd609,CUS_0x98e2,August,26,994-46-5382,Scientist,148306.2,,0,7,11.28836175,4,"Personal Loan, Auto Loan, Home Equity Loan, and Auto Loan",13.96717378,,4.93,0,Good,1283.38,38.19787625,21 Years and 4 Months,No,281.6947736,700.261936,High_spent_Large_value_payments,890.3657514,0,-0.3123,-0.0056,-1.0566,-1.858,1.2727 +0xd615,CUS_0x9dc5,August,35,587-62-8474,Musician,32181.66,,3,3,7,4,"Debt Consolidation Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",4.51430006,5,3.66,2,Good,962.5153207,28.51303276,28 Years and 4 Months,No,63.8335462,19.2554605,High_spent_Large_value_payments,402.7638265,0,0.4412,0.6754,0.0014,-1.5753,0.8507 +0xd621,CUS_0x485e,August,22,550-38-9232,Scientist,108691.17,,4,2,1.288361749,0,,,7,1.42,4,Good,1115.05121,34.49377716,32 Years and 3 Months,No,0,11940.64241,High_spent_Medium_value_payments,843.3694685,0,-0.1561,1.4151,-1.456,1.1455,0.387 +0xd62d,CUS_0x43cf,August,33,480-06-1614,Scientist,34474.82,,10,7,22.06745738,6,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",36.75499791,25,23.59,10,Bad,3597.670954,23.6009447,1 Years and 4 Months,NM,143.5810172,254.0424132,Low_spent_Large_value_payments,150.7464484,0,0.2379,0.3072,0.9356,-1.4946,-1.0159 +0xd639,CUS_0x55d3,August,18,382-60-5077,Media_Manager,18474.665,1623.555417,6,4,9.067457376,4,"Not Specified, Student Loan, Auto Loan, and Mortgage Loan",16.42151099,9.330013172,17.81,5,Standard,1410.013179,32.71972235,27 Years and 3 Months,Yes,41.7787667,152.1723409,Low_spent_Small_value_payments,231.6841462,0,0.2935,-0.5218,-0.7877,-0.8212,-0.0104 +0xd645,CUS_0x4588,August,25,392-39-3654,Entrepreneur,20247.61,1733.300833,8,3,15,4,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",10.75745936,11,18.87,1,_,1300.16,33.55277845,26 Years and 4 Months,NM,46.61068524,161.7128363,!@9#%8,255.0065617,0,0.0672,1.3601,0.9877,-0.9275,2.6438 +0xd651,CUS_0xac16,August,20,573-34-6305,Media_Manager,8269.135,752.0945833,8,7,23.06745738,8,"Personal Loan, Personal Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,23,27.27,6,Bad,3890.930954,34.38957951,4 Years and 0 Months,Yes,32.46196845,0,High_spent_Large_value_payments,247.8283472,0,1.3166,1.3333,-1.0137,1.0909,0.9342 +0xd65d,CUS_0x6236,August,80,267-72-4028,Manager,18683.75,,8,8,29.88954781,7,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Not Specified",33.05393691,24.06348378,20.96,6,Bad,4030.875017,34.11500331,2 Years and 9 Months,Yes,1424.545396,177.6774317,!@9#%8,175.445008,0,-0.7666,0.1026,1.0483,0.337,-0.9819 +0xd669,CUS_0x5036,August,80,#F%$D@*&8,Architect,33191.11,,7,5,17,0,,11.40810209,10,16.67,1,_,908.33,32.8680863,23 Years and 9 Months,Yes,0,42.37241507,High_spent_Medium_value_payments,468.1201683,0,-1.2449,0.6509,-1.0535,0.7284,-0.3103 +0xd675,CUS_0x8fac,August,28,019-79-1629,Doctor,103026.8,8754.566667,7,6,16,6,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, Not Specified, Home Equity Loan, and Not Specified",25.79509522,18,11.75,8,_,253.63,31.46633414,8 Years and 5 Months,NM,414.1968017,137.3105832,High_spent_Medium_value_payments,573.9492818,0,-0.0903,0.0364,-0.2661,1.1354,-0.781 +0xd681,CUS_0x6ebb,August,49,549-17-7822,Media_Manager,31781.22,,2,5,11.28836175,0,,6.076035713,8,0.83,0,Good,67.52293006,24.7270429,20 Years and 9 Months,NM,289.5902198,528.4334725,High_spent_Medium_value_payments,427.2336386,0,1.759,-0.0156,-0.0756,0.2859,1.2948 +0xd68d,CUS_0x8880,August,38,849-38-1681,Entrepreneur,25628.96,2121.746667,3,7,6,4,"Personal Loan, Payday Loan, Auto Loan, and Not Specified",,8,9.89,8,_,69.21,37.53715051,19 Years and 5 Months,Yes,78.42622592,93.25214707,Low_spent_Large_value_payments,310.4962937,0,0.2123,1.2134,1.2158,-0.7346,-1.0875 +0xd699,CUS_0x6d0e,August,25,551-23-5741,Teacher,34898.9,,7,4,6.288361749,2,"Payday Loan, and Credit-Builder Loan",20.07889669,17,15.48,8,Standard,182.0234717,25.43751799,21 Years and 2 Months,Yes,325.153632,692.1788207,Low_spent_Large_value_payments,302.843446,0,0.4729,0.9075,-1.2441,-0.2112,0.5098 +0xd6a5,CUS_0xb7c7,August,26,879-63-2807,Teacher,56420.52,4919.71,7,5,21,5,"Home Equity Loan, Student Loan, Payday Loan, Home Equity Loan, and Not Specified",,20.73073643,15.37,9,Bad,1556.443805,28.60009318,14 Years and 6 Months,Yes,165.9995775,10000,High_spent_Small_value_payments,315.3327768,0,-0.8771,1.3285,0.4759,-0.6253,0.3236 +0xd6b1,CUS_0x5e29,August,24,984-68-5298,Musician,163851.12,13815.26,5,5,7.288361749,2,"Personal Loan, and Home Equity Loan",0,3,10.39,6,_,480.5567597,30.85174738,,No,139.1229366,1065.280852,High_spent_Medium_value_payments,919.7092835,0,-0.1305,-0.7459,0.1901,1.2695,-0.0423 +0xd6bd,CUS_0x2efd,August,20,637-80-3236,Writer,38860.98,3478.415,5,7,17,1,Mortgage Loan,,,13.32,8,Standard,1008.6,38.54655177,31 Years and 4 Months,Yes,24.20816982,114.2219862,High_spent_Medium_value_payments,459.411344,0,0.6394,0.3176,1.1076,0.3853,-0.4522 +0xd6c9,CUS_0x9987,August,29,249-07-7888,Doctor,16440.63,1105.0525,3,3,28,7,"Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Student Loan",22.09423103,15.50124552,13.87,6,Standard,2106.613969,35.57720249,9 Years and 8 Months,Yes,47.99206968,,Low_spent_Small_value_payments,314.2003482,0,1.5216,-1.6377,0.0137,-0.7826,-0.1681 +0xd6d5,CUS_0x99ab,August,48,522-12-5089,Lawyer,19592.49,1671.7075,8,5,12.28836175,4,"Personal Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",19.63729243,18,13.52,2,_,59.17,29.4716716,21 Years and 6 Months,Yes,37.78179999,,Low_spent_Small_value_payments,209.937442,0,0.4842,0.2094,0.6997,-1.216,-1.3332 +0xd6e1,CUS_0x35a2,August,19,421-32-3631,Developer,114447.09,,4,7,0.288361749,2,"Credit-Builder Loan, Credit-Builder Loan, and Not Specified",14.1222975,14,9.97,3,Good,1036.033317,25.24576341,22 Years and 2 Months,No,180.6409031,500.4267025,High_spent_Large_value_payments,957.0192564,0,-0.5257,0.2339,-0.9614,-2.125,-0.9345 +0xd6ed,CUS_0x12ce,August,42,460-15-2731,Accountant,9795.07,,7,8,30.06745738,6,"Debt Consolidation Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",36.24340076,15.79792302,4.01,15,Bad,2537.214624,30.06612124,5 Years and 11 Months,Yes,42.60531717,24.42508054,Low_spent_Small_value_payments,254.8748977,0,0.4833,-0.7132,0.036,-0.385,0.5328 +0xd6f9,CUS_0xbfd5,August,53,452-29-0142,Musician,42372.36,3448.03,4,7,6,3,"Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",7.129253003,9,7.01,3,Good,143.04,24.57699924,17 Years and 3 Months,No,77.14638149,92.92886842,High_spent_Medium_value_payments,424.7277501,0,1.195,-1.4669,0.2001,0.4545,-1.4177 +0xd705,CUS_0xbf2e,August,80,555-91-9225,Mechanic,136597.12,11166.09333,5,4,17,4,"Student Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",,14,4.35,0,_,843.65,30.03252947,30 Years and 4 Months,Yes,252.1050708,549.5042245,Low_spent_Medium_value_payments,595.000038,0,2.1908,1.6198,1.068,1.1556,0.1302 +0xd711,CUS_0x5ab,August,20,671-04-1709,Manager,40216.62,3176.323732,0,5,10,2,"Auto Loan, and Personal Loan",,7,8.02,5,Good,323.03,25.18265205,27 Years and 3 Months,No,12039,251.0115661,Low_spent_Large_value_payments,338.361461,0,-1.1447,-2.1875,2.6462,0.2881,-0.6206 +0xd71d,CUS_0xc74,August,24,474-28-4743,Entrepreneur,65294.18,5406.181667,3,2,12,1,Payday Loan,14.17971168,11,9.78,4,Good,911.08,37.42860122,30 Years and 8 Months,No,34.69980106,431.2777472,Low_spent_Small_value_payments,364.6406184,0,-0.5364,-0.2824,-2.0102,-1.4744,0.2518 +0xd729,CUS_0x2777,August,32,613-13-4444,Engineer,58873.05,4896.0875,4,4,16,7,"Student Loan, Personal Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, and Mortgage Loan",,9,18.07,10,Standard,1039.2,30.64492023,13 Years and 10 Months,Yes,203.8548687,52.48825147,High_spent_Large_value_payments,473.2656299,0,1.2941,-0.802,0.4724,0.358,0.7259 +0xd735,CUS_0x81f2,August,32,294-53-3416,Accountant,134038.64,,6,3,18,2,"Payday Loan, and Credit-Builder Loan",18.27908084,,8.99,6,Standard,1031.51,34.34172706,18 Years and 3 Months,Yes,187.9711116,563.4787717,High_spent_Small_value_payments,596.4387834,0,-0.5358,1.9908,0.3236,-0.6165,-0.7051 +0xd741,CUS_0xc204,August,25,805-67-9755,Lawyer,33610.36,,5,5,27,7,"Auto Loan, Personal Loan, Mortgage Loan, Not Specified, Payday Loan, Personal Loan, and Student Loan",26.7233672,19.98489517,15.91,14,Standard,2428.01238,34.73475697,8 Years and 2 Months,Yes,162.7668725,,Low_spent_Large_value_payments,171.8525978,0,1.3907,-1.8062,1.0335,1.0835,0.4677 +0xd74d,CUS_0xa2d2,August,22,652-10-5543,Lawyer,77818.98,,5,6,8,4,"Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",17.48676146,15,13.86,4,_,1066.38,38.36266832,,Yes,143.1858005,293.9339092,High_spent_Small_value_payments,480.2717903,0,-0.9053,-0.6545,-0.3323,0.1078,0.6568 +0xd759,CUS_0x2bc0,August,31,337-33-1709,Manager,124490.36,10209.19667,4,7,10,5,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,18,8.62,6,_,177.03,30.1458831,7 Years and 3 Months,Yes,369.7424643,181.7223656,High_spent_Large_value_payments,709.4548368,0,-1.7946,1.4855,1.2061,0.8764,0.1971 +0xd765,CUS_0x23bf,August,28,520-85-4444,Engineer,69806.76,6055.23,3,4,19,0,,26.40520577,19,0.49,8,_,192.43,33.15803508,19 Years and 0 Months,Yes,0,406.5695363,High_spent_Small_value_payments,458.9534637,0,-0.32,-1.8231,0.8604,-0.4981,0.399 +0xd771,CUS_0x31e9,August,20,906-34-0441,Scientist,18567.28,,4,6,19.06745738,6,"Personal Loan, Not Specified, Auto Loan, Payday Loan, Auto Loan, and Credit-Builder Loan",19.19792849,12.97521555,11.95,8,_,2463.061064,25.09696104,17 Years and 8 Months,Yes,85.03643929,,Low_spent_Medium_value_payments,220.7775841,0,1.1397,-2.0026,-0.5936,-0.897,0.6402 +0xd77d,CUS_0x6203,August,32,775-73-7155,_______,89477.92,,1,4,7,0,,7.515940222,8,1.89,7,Good,1176.75,31.13845326,16 Years and 0 Months,No,0,,!@9#%8,425.4355259,0,-0.0289,-0.2363,-1.2084,2.1308,-0.5791 +0xd789,CUS_0x6a5f,August,23,915-55-5034,Accountant,44464.37,3133.795926,0,5,11,0,,20.4072187,,12.31,5,Good,713.44,23.69729911,22 Years and 2 Months,No,344.5682408,,High_spent_Medium_value_payments,519.4522014,0,-0.828,-0.7083,-0.6849,-0.8623,-1.2139 +0xd795,CUS_0xbfdb,August,31,839-16-3066,Musician,35600.2,,0,3,9,3,"Student Loan, Home Equity Loan, and Credit-Builder Loan",9.556506318,10,6.63,4,Good,532.0488411,30.20097254,32 Years and 6 Months,No,50.64859983,73.71911668,High_spent_Medium_value_payments,447.5172534,0,-0.2698,0.5919,-1.3694,-0.9501,1.9977 +0xd7a1,CUS_0x4ce7,August,40,794-11-8994,Musician,36585.12,2765.774156,6,10,28.88954781,8,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, and Home Equity Loan",28.53599564,,4.59,14,Bad,1471.01,29.0721529,13 Years and 11 Months,Yes,1701.60954,191.2632156,High_spent_Small_value_payments,148.4590075,0,0.4375,-0.286,-3.1859,0.9067,-0.5054 +0xd7ad,CUS_0x7de1,August,35,589-59-5230,Developer,14916088,4619.37,10,8,31.88954781,7,"Not Specified, Payday Loan, Personal Loan, Not Specified, Personal Loan, Student Loan, and Credit-Builder Loan",34.67857349,,22.23,16,Bad,3615.399233,23.12514729,6 Years and 2 Months,Yes,1527.788309,163.9426216,Low_spent_Medium_value_payments,355.8759878,0,-2.2012,0.3203,-2.1439,-1.808,-1.8026 +0xd7b9,CUS_0x31b8,August,30,585-66-1321,Manager,110439.56,9224.296667,3,7,15,4,"Personal Loan, Payday Loan, Not Specified, and Not Specified",20.87036073,16,6,7,Standard,1218.92,26.44091018,27 Years and 6 Months,NM,348.9438197,86.38870329,High_spent_Large_value_payments,727.0971437,0,-3.1282,-0.6055,0.3205,1.2261,-1.1685 +0xd7c5,CUS_0x8388,August,29,617-55-4327,_______,60177.04,,7,1413,10.28836175,2,"Personal Loan, Payday Loan, and Not Specified",23.27128568,19,17.55,3,Standard,765.97,27.72718714,21 Years and 2 Months,Yes,142.7507076,693.4431205,Low_spent_Medium_value_payments,373.1189662,0,0.9021,0.432,0.2861,-0.5294,0.87 +0xd7d1,CUS_0x26fd,August,37,982-46-6532,Scientist,178328.88,,4,3,6.288361749,0,,5.571428062,8,7.55,5,Good,630.2264844,30.24760553,16 Years and 8 Months,No,0,1774.067668,Low_spent_Medium_value_payments,590.9313555,0,0.7383,0.0379,0.1488,1.396,1.0084 +0xd7dd,CUS_0x8d46,August,80,433-03-7131,Mechanic,18248.5,,7,7,26,2,"Not Specified, and Not Specified",26.35927375,9.658826071,14.17,12,Standard,1890.131033,35.77512053,16 Years and 0 Months,Yes,24.89370172,,!@9#%8,352.0692062,0,-0.0182,-1.5543,1.739,1.1128,-0.6199 +0xd7e9,CUS_0xcf5,August,80,766-36-8676,Entrepreneur,124900.86,,0,6,12,4,"Home Equity Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",0,0,1.7,3,_,562.56,43.42492991,26 Years and 2 Months,No,324.5956103,70.71816847,High_spent_Large_value_payments,857.1267213,0,-1.5153,1.8941,-0.283,2.0616,-1.873 +0xd7f5,CUS_0xb3e3,August,41,694-38-0048,Teacher,142639.96,11787.66333,5,4,16,1,Personal Loan,,13,7.69,528,Standard,1246.87119,37.16007915,15 Years and 9 Months,Yes,60.28510487,1284.15033,Low_spent_Medium_value_payments,300.7202133,0,0.4166,-0.2676,-1.9326,1.824,1.2623 +0xd801,CUS_0x3215,August,34,400-46-0837,Developer,9871.225,,10,5,26,7,"Auto Loan, Debt Consolidation Loan, Not Specified, Not Specified, Auto Loan, Student Loan, and Personal Loan",,27,26.03,15,Bad,3114.620352,27.83936351,8 Years and 5 Months,Yes,123.0507209,,High_spent_Medium_value_payments,269.6271684,0,0.1254,-0.424,-0.4949,-1.2626,1.1936 +0xd80d,CUS_0x44e,August,22,915-39-1230,Doctor,100681.41,8608.1175,5,4,8,2,"Auto Loan, and Student Loan",23.17953698,14,8,3,Standard,476.37,38.02263359,24 Years and 8 Months,Yes,145.9967511,,High_spent_Small_value_payments,378.3838709,0,2.2451,1.4167,-0.2166,1.6493,1.3376 +0xd819,CUS_0xb14d,August,27,949-99-1331,_______,32904.13,2885.010833,2,7,2,2,"Mortgage Loan, and Home Equity Loan",,2,1.43,3,Good,719.2036017,31.52703173,16 Years and 4 Months,No,46.03318158,317.7559802,Low_spent_Small_value_payments,247.6673099,0,-0.6675,-0.008,0.4819,-1.8146,0.7347 +0xd825,CUS_0x2be8,August,80,932-31-3250,Mechanic,73938.68,6438.556667,4,6,16,100,"Personal Loan, and Payday Loan",21.17591248,19,17.89,7,_,2596.08,27.78863536,12 Years and 3 Months,Yes,67.30138505,,High_spent_Large_value_payments,708.2764495,0,0.9009,-0.8265,0.3011,-1.5478,-1.0711 +0xd831,CUS_0xc206,August,26,941-20-6495,Lawyer,42787.44,,7,10,22.06745738,100,"Home Equity Loan, and Mortgage Loan",31.78641403,,21.26,15,Bad,3103.082832,38.68895303,15 Years and 3 Months,NM,71.18545976,118.6335262,High_spent_Small_value_payments,423.7227261,0,-0.8444,-1.195,0.605,2.4167,-1.5958 +0xd83d,CUS_0x589f,August,40,086-01-8876,Architect,47589.24,4145.333091,10,7,27.06745738,9,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",,,15.36,10,Bad,4107.370954,37.16582506,8 Years and 5 Months,Yes,319.5492326,73.36096031,High_spent_Large_value_payments,217.783428,0,1.7334,-1.4958,0.0091,1.5355,1.3654 +0xd849,CUS_0x3d10,August,44,318-77-7985,Manager,82346.16,6928.18,6,9,18,7,"Payday Loan, Mortgage Loan, Auto Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Personal Loan",,24,3.67,10,Bad,2341.16,35.33375993,7 Years and 0 Months,Yes,390.7054359,336.5313822,Low_spent_Large_value_payments,235.5811819,0,1.8288,-0.5887,0.1182,0.3824,0.8793 +0xd855,CUS_0x8353,August,80,140-25-3790,Architect,17235.115,,0,1,1,1,Payday Loan,11.86535223,10,11.37,,Good,446.4163325,33.8720093,26 Years and 0 Months,No,13.58017668,118.8513231,Low_spent_Small_value_payments,343.740373,0,-0.4197,1.2885,0.2261,0.4047,-0.4022 +0xd861,CUS_0x1e41,August,34,084-34-7268,Lawyer,133646.04,11429.17,4,5,10.28836175,2,"Mortgage Loan, and Personal Loan",16.16970054,,2.43,3,_,1290.92,35.57138253,33 Years and 5 Months,No,114.2482426,568.8185461,High_spent_Large_value_payments,1119.787672,0,-0.8855,0.9627,0.4979,-0.4198,0.5821 +0xd86d,CUS_0x7bff,August,21,084-18-2608,Manager,44286.36,3561.53,6,6,31,2,"Credit-Builder Loan, and Home Equity Loan",,14.55025717,7.5,13,_,2312.963566,35.76174599,11 Years and 9 Months,Yes,57.97158147,,Low_spent_Large_value_payments,362.4428549,0,0.9059,-0.79,0.9713,2.3455,-0.5104 +0xd879,CUS_0x5d34,August,47,582-59-3484,Accountant,69557.68,5570.473333,6,7,8,1,Credit-Builder Loan,,21,9.4,3,Standard,503.35,43.08198021,21 Years and 3 Months,Yes,47.3799986,114.0658814,High_spent_Medium_value_payments,645.6014533,0,-1.0763,-2.1675,0.7669,-0.8039,0.4675 +0xd885,CUS_0x1bef,August,51,160-43-6314,Doctor,121675.68,,2,6,2.288361749,0,Credit-Builder Loan,0,4,8,1,Good,984.27,27.97956016,,No,95.85734696,590.6405432,High_spent_Medium_value_payments,992.0035709,0,-1.5686,-0.3405,-1.9481,0.23,-0.067 +0xd891,CUS_0x7d45,August,31,380-39-2451,Mechanic,77561.64,6604.47,7,4,16,4,"Personal Loan, Student Loan, Home Equity Loan, and Payday Loan",22.77059607,15,10.36,7,_,613.6051424,37.64977853,17 Years and 11 Months,No,141.7648261,396.1689408,High_spent_Small_value_payments,430.5132744,0,-1.2876,-1.0666,-0.6116,0.7507,-0.7715 +0xd89d,CUS_0xac7e,August,51,592-74-1031,Scientist,91516.44,7844.37,2,4,12,4,"Student Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",,6,11.73,4,Good,226.23,25.85441943,16 Years and 11 Months,No,237.865417,112.4928265,High_spent_Large_value_payments,674.0787566,0,0.7876,-0.488,-0.4664,1.385,0.2844 +0xd8a9,CUS_0x7279,August,45,891-67-3760,Entrepreneur,41015.31,,3,2,1970,2,"Auto Loan, and Payday Loan",,8,8.32,3,Good,1246.056654,32.41948646,24 Years and 0 Months,No,41.53546802,58.0017883,!@9#%8,515.6235465,0,0.2486,-0.772,1.3695,-0.3584,0.8959 +0xd8b5,CUS_0x2d3a,August,34,767-72-8687,Engineer,8933809,,1,3,10,1,Home Equity Loan,8.777396061,8,1.4,4,Good,64.38,36.26817887,28 Years and 0 Months,No,52.80792695,,Low_spent_Medium_value_payments,249.6578183,0,-0.9388,0.1571,0.1597,-0.9565,0.9718 +0xd8c1,CUS_0x871,August,25,956-78-8536,Engineer,7189.54,,3,5,20,7,"Payday Loan, Payday Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,16,16.79,7,Standard,1808.655323,34.90192876,,Yes,34.07201429,0,High_spent_Large_value_payments,233.8633701,0,-0.7177,0.1032,0.0638,0.3009,-2.6528 +0xd8cd,CUS_0x8750,August,55,775-62-8217,Accountant,14544.485,,5,5,11,4,"Credit-Builder Loan, Not Specified, Mortgage Loan, and Auto Loan",,,-0.27,0,_,788.41,38.14977407,22 Years and 10 Months,No,36.51848954,52.9101139,Low_spent_Medium_value_payments,312.9754382,0,-0.6388,0.5148,1.0753,0.9007,-0.9898 +0xd8d9,CUS_0x85e7,August,35,959-37-3158,Doctor,102207.42,,2,3,7,0,,,6,11.07,2,_,839.8164146,41.25741654,23 Years and 11 Months,No,0,,High_spent_Medium_value_payments,954.6597939,0,-0.2215,1.7921,-1.3964,1.6431,0.8351 +0xd8e5,CUS_0x3acd,August,40,953-94-3809,Entrepreneur,49211.16,4048.93,4,5,15,7,"Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Mortgage Loan, Student Loan, and Mortgage Loan",18.00620134,9.517737637,13.42,17,Standard,2046.014196,29.56503267,,Yes,257.059377,,High_spent_Medium_value_payments,235.1256063,0,1.8027,0.527,1.8523,-0.4987,0.3312 +0xd8f1,CUS_0xc461,August,39,705-32-5842,Scientist,135994.36,11191.86333,9,6,16,2,"Debt Consolidation Loan, and Personal Loan",25.38204285,19,5.98,4,Standard,1280.06,36.36659212,28 Years and 4 Months,Yes,219.9554482,908.6939096,Low_spent_Medium_value_payments,270.5369755,0,0.1944,0.7855,1.4773,0.1334,-0.9953 +0xd8fd,CUS_0x890,August,39,439-56-8696,Journalist,19453.42,1861.118333,10,10,17.88954781,6,"Mortgage Loan, Personal Loan, Personal Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",,24.29990421,27.13,9,Bad,3735.899354,39.47152795,4 Years and 8 Months,Yes,1374.18528,36.54190859,High_spent_Medium_value_payments,331.0545632,0,-1.2465,0.1819,-0.0879,0.4077,-0.3067 +0xd909,CUS_0x58f7,August,50,890-01-3579,Doctor,81066.72,6639.56,8,3,17.28836175,2,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",20.53537174,17,6.14,6,_,651.2128342,28.15338963,29 Years and 9 Months,Yes,170.8293274,633.7802823,Low_spent_Large_value_payments,580.0918868,0,2.088,0.0934,1.0626,-0.3315,1.2498 +0xd915,CUS_0x25f5,August,18,357-54-0484,Mechanic,29905.94,2362.161667,10,8,34.88954781,6,"Payday Loan, Not Specified, Personal Loan, Credit-Builder Loan, Not Specified, and Not Specified",18.66010887,13,20.79,13,Bad,2987.02,39.30091313,9 Years and 10 Months,Yes,1446.580884,211.9360748,Low_spent_Medium_value_payments,163.3691264,0,0.8768,-0.0811,-0.0316,-0.629,0.0357 +0xd921,CUS_0x2594,August,26,691-55-1000,Manager,156687.16,,2,3,6.288361749,0,Payday Loan,,6.043732567,-0.48,7,_,542.2712419,42.97055606,33 Years and 0 Months,No,80.57653206,1027.502022,Low_spent_Small_value_payments,911.3852406,0,0.4305,0.8792,-0.1915,-0.4388,0.9248 +0xd92d,CUS_0x4674,August,37,963-53-1744,Doctor,15211.94,1366.661667,10,10,20.95700519,8,"Personal Loan, Personal Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Student Loan",46.26398515,24,12.36,12,_,1669.550954,36.43530814,11 Years and 0 Months,Yes,1380.231121,16.05473034,High_spent_Large_value_payments,259.329946,0,-1.4821,0.0629,0.7581,-0.957,-1.5369 +0xd939,CUS_0x5a2,August,21,#F%$D@*&8,Scientist,15410.19,1554.1825,10,5,28,100,"Auto Loan, Payday Loan, Payday Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",,30.07550923,4.69,11,Bad,1424.762959,30.9146868,14 Years and 4 Months,Yes,39.62811682,121.2357557,Low_spent_Large_value_payments,264.5543775,0,0.6851,0.3676,0.0467,-1.8913,0.3046 +0xd945,CUS_0x35c8,August,20,056-54-2895,Musician,73947.24,6008.27,9,8,1172,7,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",,23.60473777,2.6,6,Bad,3021.662697,27.00243565,14 Years and 2 Months,NM,306.6170153,209.6622884,Low_spent_Large_value_payments,354.5476963,0,0.7114,0.367,0.0613,1.1046,0.6776 +0xd951,CUS_0x87d0,August,22,018-45-3826,Doctor,74380.96,6374.413333,4,6,27,4,"Not Specified, Mortgage Loan, Debt Consolidation Loan, and Student Loan",10.71138977,9.160079088,16.51,7,_,1938.973394,25.63392414,19 Years and 10 Months,Yes,50639,172.0971788,High_spent_Medium_value_payments,512.2618467,0,1.1211,-1.5659,-1.3254,-0.1312,-0.0595 +0xd95d,CUS_0x48f2,August,31,568-82-5596,Scientist,18317.26,,6,9,15,3,"Not Specified, Not Specified, and Student Loan",,21,3.26,8,Bad,1611.27,36.39656394,8 Years and 0 Months,Yes,92.21290263,37.00993219,High_spent_Medium_value_payments,360.7954251,0,-0.2428,1.4066,-0.6505,-0.7714,0.2462 +0xd969,CUS_0x2eb4,August,39,936-12-2774,Engineer,14784.45,,8,7,20.06745738,9,"Mortgage Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",43.65623678,27.44504476,28.9,11,Bad,4189.032165,34.64927188,10 Years and 10 Months,Yes,103.5513277,,!@9#%8,215.1249454,0,2.2994,1.4089,0.0656,0.3287,-0.2424 +0xd975,CUS_0x7863,August,34,091-61-1869,_______,60573.96,4868.83,6,10,34,7,"Credit-Builder Loan, Not Specified, Mortgage Loan, Home Equity Loan, Not Specified, Auto Loan, and Student Loan",25.5519304,13.14893506,17.28,9,Standard,2372.084501,35.46277669,15 Years and 10 Months,NM,211.2229278,288.377818,Low_spent_Large_value_payments,257.2822542,0,0.8217,0.0893,1.277,1.2527,0.9051 +0xd981,CUS_0x9d89,August,28,576-38-5212,Entrepreneur,18413.795,1524.482917,5,7,14.28836175,0,,11.9564199,11,7.36,3,Standard,99.41,35.56200816,32 Years and 6 Months,NM,0,483.9402259,High_spent_Small_value_payments,348.4455268,0,1.187,-0.2865,1.9183,-0.6318,-0.7302 +0xd98d,CUS_0xc045,August,20,281-30-1712,Media_Manager,30622.73,2366.384852,4,2,10.28836175,4,"Credit-Builder Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",0.988385725,3,4.87,1,Good,349.5970117,35.83980764,29 Years and 11 Months,No,225.8448067,505.9102358,!@9#%8,366.289038,0,-2.6934,-0.1159,0.3238,-0.2347,-0.1483 +0xd999,CUS_0x932c,August,25,952-71-6906,Journalist,15968.78,1499.731667,8,7,8,6,"Home Equity Loan, Auto Loan, Not Specified, Mortgage Loan, Not Specified, and Personal Loan",,22.73841602,15.43,10,Standard,302.7182831,38.81592095,16 Years and 9 Months,NM,41.78674943,193.211921,Low_spent_Small_value_payments,204.9744963,0,1.0815,2.53,0.8409,-0.3414,-0.2292 +0xd9a5,CUS_0x1f33,August,18,183-30-3638,Architect,69860.18,5620.681667,4,5,10.28836175,2,"Personal Loan, Credit-Builder Loan, and Auto Loan",16.38753169,,9.85,8,Standard,859.03,41.62331936,11 Years and 9 Months,Yes,92.55897801,10419.93746,High_spent_Medium_value_payments,534.716045,0,0.4545,1.1415,-0.237,0.0919,-1.6053 +0xd9b1,CUS_0xc70,August,30,540-26-9440,Scientist,40566.32,3498.526667,4,7,20,3,"Student Loan, Auto Loan, and Personal Loan",,20,8.92,10,_,1366.41,31.8478783,18 Years and 9 Months,Yes,78.29005322,95.15481627,High_spent_Medium_value_payments,426.4077972,0,-0.8461,0.8308,0.2951,-0.3316,-0.0774 +0xd9bd,CUS_0xb0c9,August,35,095-06-9651,Developer,80364.48,6578.04,7,10,15,2,"Home Equity Loan, and Mortgage Loan",,11.6735567,6.31,10,_,2094.773217,37.43208831,6 Years and 5 Months,Yes,72.59131204,163.3520612,High_spent_Medium_value_payments,671.8606267,0,-2.1648,-0.3095,0.0628,-0.1654,2.3588 +0xd9c9,CUS_0x3bb8,August,36,855-98-5797,_______,41077.12,,9,7,29,100,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Payday Loan",,27.24876012,1.19,12,Bad,1675.093374,39.83429282,10 Years and 0 Months,Yes,199.5840004,10000,Low_spent_Large_value_payments,150.2802313,0,-2.1245,1.0116,-1.4696,1.0959,0.3809 +0xd9d5,CUS_0x11c0,August,19,534-48-4062,Media_Manager,14527.455,964.62125,3,3,4,4,"Debt Consolidation Loan, Student Loan, Auto Loan, and Home Equity Loan",2.347813719,3,6.31,2,Good,282.1909065,32.3885564,19 Years and 10 Months,No,41.69544479,58.09683302,Low_spent_Small_value_payments,295.3835812,0,-0.2774,1.3992,-1.3288,1.4428,-0.0447 +0xd9e1,CUS_0x92ec,August,23,538-01-3643,Manager,104183.46,,4,5,8,1,Student Loan,,11,5.89,5,Standard,244.23,41.5149241,27 Years and 0 Months,No,72.7527745,139.1302429,High_spent_Large_value_payments,911.2124826,0,0.9297,-0.2418,-0.3503,2.4029,-0.5047 +0xd9ed,CUS_0x7edb,August,26,858-91-7016,Lawyer,34660.86,2782.405,8,7,6,100,,17.64379483,12,5.63,9,Standard,901.74,39.72863939,15 Years and 9 Months,No,0,84.6562893,High_spent_Small_value_payments,453.5842107,0,1.9626,0.2243,2.0822,-1.5534,0.7093 +0xd9f9,CUS_0x7c79,August,53,011-03-4037,Mechanic,63051.86,,2,5,3,1,Payday Loan,11.83397129,12,4.68,5,Good,1006.09,26.88255217,,NM,47.52570014,154.8202311,!@9#%8,586.5862354,0,-1.1473,0.2072,-1.1533,-0.8617,1.2264 +0xda05,CUS_0x9485,August,39,710-98-3724,Mechanic,21949.16,1927.096667,4,6,4,0,,7.250159316,9.376920808,4.53,6,_,1541.87152,39.20683255,33 Years and 4 Months,No,0,62.23769344,High_spent_Small_value_payments,390.4719732,0,-1.3333,1.7685,1.5613,-1.8191,0.4628 +0xda11,CUS_0x50ee,August,34,057-95-4768,Engineer,58295.16,4590.93,10,7,18,100,"Auto Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",41.88155307,28.48221863,21.04,10,Bad,2754.141827,25.84976157,7 Years and 8 Months,Yes,203.3793006,382.6394802,Low_spent_Large_value_payments,143.0742193,0,-1.4916,-0.9259,1.2224,-0.91,-0.1096 +0xda1d,CUS_0xbfed,August,24,133-46-8895,Engineer,42082.91,,4,4,4828,3,"Auto Loan, Student Loan, and Debt Consolidation Loan",8.062449756,10.47129676,9.17,5,Good,904.1661819,33.67426292,20 Years and 10 Months,No,87.56433607,193.6606924,Low_spent_Small_value_payments,361.5658882,0,-0.5703,0.3827,2.3217,0.1141,0.4611 +0xda29,CUS_0x2507,August,30,#F%$D@*&8,Architect,12186.425,,6,5,8,1,Personal Loan,,22,8.95,6,Good,176.84,29.23482872,18 Years and 6 Months,No,9.584437904,99.39829827,!@9#%8,280.1708055,0,0.2176,-0.6033,-1.0745,0.805,1.8331 +0xda35,CUS_0x3e36,August,26,758-48-3253,Doctor,21508.72,1898.393333,1,4,6,0,,,10.69865967,-3.14,5,Good,1204.878863,39.89849468,28 Years and 9 Months,No,0,,Low_spent_Large_value_payments,374.8322908,0,-1.5723,-0.183,-0.2169,0.9739,0.7935 +0xda41,CUS_0x7872,August,29,#F%$D@*&8,Manager,64247.12,5330.926667,8,10,29.88954781,6,"Auto Loan, Mortgage Loan, Student Loan, Not Specified, Personal Loan, and Personal Loan",41.91171609,24.27366926,,10,Bad,1969.471403,29.75105517,9 Years and 4 Months,Yes,1504.825776,132.9816245,High_spent_Large_value_payments,440.955185,0,-1.3163,0.4683,-0.486,-0.9604,-0.276 +0xda4d,CUS_0x8417,August,20,941-02-3149,Lawyer,34253.08,,4,9,25.88954781,6,"Student Loan, Auto Loan, Not Specified, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",12.20952619,12,11.66,12,Standard,1485.7,28.74235237,,Yes,1457.327257,134.060162,High_spent_Small_value_payments,276.8248334,0,-0.6306,0.6947,-2.0704,0.0782,-0.9035 +0xda59,CUS_0x26f5,August,36,452-24-7475,Writer,41547.99,3192.3325,0,7,8,100,"Debt Consolidation Loan, Auto Loan, and Auto Loan",12.49602984,8,11.38,2,_,1156.82,35.28850247,24 Years and 4 Months,No,78.79997469,50.40258835,High_spent_Medium_value_payments,440.030687,0,-0.3688,1.0017,0.8918,1.4432,1.6924 +0xda65,CUS_0x5c6d,August,25,954-51-3032,Engineer,101238.57,8199.5475,1,3,6,4,"Mortgage Loan, Personal Loan, Payday Loan, and Personal Loan",0,1,3.05,5,Good,816.04,40.81429334,32 Years and 8 Months,No,172.6530623,150.2501621,High_spent_Large_value_payments,737.0515256,0,-0.0373,0.7618,-0.119,-1.7785,-0.4858 +0xda71,CUS_0x99f7,August,55,090-43-5198,Lawyer,21434.275,,1,5,2.288361749,2,"Mortgage Loan, Credit-Builder Loan, and Student Loan",0,3,4.54,3,Good,151.5550236,39.02360367,16 Years and 2 Months,No,49.59958595,498.7041969,Low_spent_Large_value_payments,332.5759235,0,0.0276,-0.5244,-1.6426,0.8924,-0.2399 +0xda7d,CUS_0x14f5,August,41,497-15-6333,Doctor,36348.06,3265.005,6,5,33.06745738,9,"Payday Loan, Not Specified, Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",46.35248666,25.09794953,5.07,9,Bad,5899.494587,34.63481025,3 Years and 11 Months,Yes,149.3999182,305.4816042,Low_spent_Medium_value_payments,124.8986897,0,1.7368,-0.6555,0.3924,-0.7963,-0.8469 +0xda89,CUS_0xb351,August,53,091-82-8016,Manager,77906.25,6399.1875,3,5,5,4,"Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",,17,14.47,4,Good,583.4,33.19597296,18 Years and 9 Months,No,173.5685577,,Low_spent_Small_value_payments,177.4127241,0,0.9135,1.4577,2.2704,-0.5424,-0.191 +0xda95,CUS_0x4f10,August,26,123-72-1445,Manager,70778.4,5849.2,9,5,18,7,"Mortgage Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",16.76876739,,27.73,6,Bad,4416.92189,39.06318037,14 Years and 5 Months,NM,239.6463576,240.4563852,!@9#%8,364.8172572,0,-0.1596,1.3745,-0.2022,0.7153,-1.1987 +0xdaa1,CUS_0xa463,August,19,878-26-9046,Engineer,172085.28,,4,4,1,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",1.180597665,3,11.6,2,Good,956.27,32.59424819,29 Years and 4 Months,No,253.1936917,352.6823959,High_spent_Medium_value_payments,1072.867912,0,-0.8868,-1.0764,-2.4114,-0.4258,-0.7435 +0xdaad,CUS_0x2fbe,August,53,723-79-5455,Teacher,79370.76,,8,3,19,3,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",19.70681434,16,7.59,7,Standard,715.18,40.24735172,30 Years and 10 Months,No,115.4856033,279.1839944,High_spent_Medium_value_payments,540.2534022,0,-0.2598,1.0371,0.974,-0.554,0.2301 +0xdab9,CUS_0x7ad8,August,26,614-62-5951,Accountant,8079.46,,7,7,23,5,"Mortgage Loan, Mortgage Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",29.88824616,20.52247353,11.76,13,Standard,1668.239111,38.29127465,13 Years and 9 Months,Yes,25.58542635,25.15980542,Low_spent_Medium_value_payments,271.5836016,0,-1.0053,-0.8039,0.4479,-2.5275,-0.0746 +0xdac5,CUS_0xc1a1,August,31,858-87-0851,Manager,112460.88,,2,4,9,1,Debt Consolidation Loan,22.94474753,14.54273254,10.04,2,Good,232.2620162,40.61149367,16 Years and 0 Months,No,86.6108701,301.4954136,Low_spent_Medium_value_payments,813.2677163,0,-1.1388,1.6562,0.3805,-0.0949,-1.1364 +0xdad1,CUS_0x69d5,August,25,322-87-0892,Engineer,40554.44,3380.536667,8,10,25.95700519,7,"Auto Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",,29.31234771,29.86,11,Bad,3531.538056,25.68936545,11 Years and 4 Months,Yes,1483.418458,331.3444784,!@9#%8,92.24036066,0,0.5593,1.0084,-0.1697,-0.1368,-1.934 +0xdadd,CUS_0x38c0,August,33,083-35-9736,Musician,15660.15,,9,10,24.06745738,5,"Not Specified, Not Specified, Personal Loan, Personal Loan, and Debt Consolidation Loan",,17.73383215,2.46,,Bad,1739.887356,39.21249366,,Yes,57.29067943,125.0706369,Low_spent_Large_value_payments,197.2196457,0,0.9612,0.2493,0.025,-0.6507,-1.3532 +0xdae9,CUS_0x447b,August,36,107-71-0612,Musician,58599.48,,7,5,30,5,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",38.85838411,21.71869922,,12,Bad,2736.240687,25.12124911,8 Years and 3 Months,Yes,474.9229307,207.6609755,Low_spent_Small_value_payments,375.7728915,0,-0.167,0.3041,0.8328,0.1408,-1.3848 +0xdaf5,CUS_0x2cd4,August,26,585-10-9106,Engineer,18115.21,,10,8,18.88954781,6,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Not Specified, Student Loan, and Student Loan",14.6663015,11.70382382,9.18,11,Standard,1596.149152,36.85624211,19 Years and 5 Months,Yes,1386.33016,46.32971141,!@9#%8,295.7701302,0,-0.9085,-0.573,0.1461,-1.392,1.1662 +0xdb01,CUS_0xa396,August,18,144-58-9585,Entrepreneur,18249.16,1677.763333,4,7,6,2,"Home Equity Loan, and Student Loan",,11,10.09,9,Standard,496.55,27.94713857,10 Years and 0 Months,Yes,21.58400546,63.75703117,High_spent_Medium_value_payments,332.4352967,0,0.2214,1.5902,-1.1656,0.0931,0.3131 +0xdb0d,CUS_0x17d7,August,41,768-24-1090,Scientist,141789.84,,6,6,19,1,Not Specified,22.86612939,17,4.02,1,Standard,1194.16,26.37778502,32 Years and 4 Months,Yes,85.74180593,634.9142649,Low_spent_Medium_value_payments,725.0259291,0,-1.3074,-2.2414,0.1116,-0.047,-0.1947 +0xdb19,CUS_0xc13,August,43,667-64-6394,Developer,30366.16,2329.513333,7,4,18,4,"Not Specified, Auto Loan, Auto Loan, and Debt Consolidation Loan",10.56292302,9.120304247,14.11,2,Standard,910.2371359,28.59937212,20 Years and 6 Months,Yes,62.00134474,64.02979697,High_spent_Medium_value_payments,356.9201916,0,-1.2984,1.2676,-1.0605,-0.9596,-1.1637 +0xdb25,CUS_0xc1b4,August,25,130-22-5184,Teacher,128675.76,9204.888026,4,4,6,2,"Credit-Builder Loan, and Not Specified",10.4769466,11,7.8,4,Good,47.98584648,36.10087762,32 Years and 10 Months,No,1466.973964,480.748283,!@9#%8,675.5226998,0,0.4814,-1.173,-0.0474,-0.3731,-1.2301 +0xdb31,CUS_0xb61d,August,48,212-25-3020,Journalist,34962.32,,3,639,9,3,"Student Loan, Credit-Builder Loan, and Mortgage Loan",6.82882086,7,1.49,1,Good,1470.65,26.43086648,17 Years and 3 Months,No,74.32387167,213.3383074,Low_spent_Small_value_payments,280.4904876,0,-1.0516,2.1557,0.9624,1.5499,-1.5129 +0xdb3d,CUS_0xbd46,August,29,255-94-3242,Architect,64918.54,5704.878333,8,7,8,2,"Auto Loan, and Debt Consolidation Loan",13.62673004,11,9.98,5,Good,916.93,41.46719244,23 Years and 6 Months,No,71.21983735,10000,High_spent_Medium_value_payments,528.1519622,0,0.4359,0.2087,-1.7656,0.3632,0.2597 +0xdb49,CUS_0x2a91,August,39,751-83-3561,Journalist,42070.96,,7,1130,17,2,"Student Loan, and Debt Consolidation Loan",25.14308506,18,9.02,7,_,330.7441509,26.20219398,17 Years and 9 Months,Yes,296.7457293,106.3020402,High_spent_Small_value_payments,485.7795155,0,-0.9259,2.5216,0.6678,0.9016,-0.9311 +0xdb55,CUS_0x4036,August,34,940-07-3149,Musician,8056.13,,10,5,33.06745738,8,"Student Loan, Home Equity Loan, Student Loan, Personal Loan, Not Specified, Auto Loan, Auto Loan, and Debt Consolidation Loan",,16,18.64,6,Bad,4453.450954,41.5404485,9 Years and 4 Months,Yes,37.58269379,65.97219224,Low_spent_Small_value_payments,212.7592427,0,-1.1282,-0.7693,-0.0231,0.0062,-0.4171 +0xdb61,CUS_0x7447,August,26,403-81-2155,Writer,71703.22,5888.268333,7,5,7,0,,,19,8.76,9,Standard,641.99,28.23133656,17 Years and 3 Months,Yes,0,67.94578348,High_spent_Medium_value_payments,770.8810498,0,-0.6489,0.6042,0.4468,0.9133,2.3353 +0xdb6d,CUS_0x468b,August,40,483-58-2227,Mechanic,21018,2011.5,8,4,17,0,,18.25415583,15.03142738,16.1,4,Standard,112.5166214,30.53798539,27 Years and 6 Months,Yes,81171,164.3459241,Low_spent_Medium_value_payments,316.8040759,0,1.0297,0.5186,-1.925,-0.0374,-1.4475 +0xdb79,CUS_0x7bc3,August,45,914-85-2580,Doctor,7636.4,884.3666667,6,9,20.88954781,7,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, Mortgage Loan, and Home Equity Loan",,17,20.33,8,Bad,2614.48,27.99031655,9 Years and 6 Months,Yes,1355.594791,10000,Low_spent_Small_value_payments,276.6313744,0,1.1581,-0.1041,-0.4639,0.3059,1.743 +0xdb85,CUS_0x8f3a,August,45,474-03-7921,Accountant,70566.82,6070.568333,8,1084,14,1,Personal Loan,24.60838888,14.49621764,12.43,0,_,1389.751343,37.35198839,20 Years and 6 Months,Yes,30.09371437,229.984676,Low_spent_Medium_value_payments,626.9784429,0,0.0081,0.8766,-0.8953,1.1648,-1.3165 +0xdb91,CUS_0x2d1a,August,53,174-58-5556,Musician,93451.41,7802.6175,3,7,15,2,"Home Equity Loan, and Student Loan",24.84231718,18,7.98,0,Standard,1048.87,29.28487559,26 Years and 4 Months,No,121.4791361,202.5604426,High_spent_Large_value_payments,696.2221713,0,-0.527,0.107,0.9716,-0.7291,-1.1731 +0xdb9d,CUS_0xa962,August,18,964-23-6499,Engineer,9511.795,,6,7,21.06745738,7,"Student Loan, Auto Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",32.17355369,15,1.62,14,Bad,2567.840954,36.29074079,13 Years and 4 Months,Yes,28.82527022,0,High_spent_Large_value_payments,243.3467604,0,0.9257,-0.8702,-1.3749,-0.1997,-0.0971 +0xdba9,CUS_0x78ab,August,52,534-36-8603,Accountant,65493.78,5196.815,3,7,8,3,"Debt Consolidation Loan, Personal Loan, and Personal Loan",,13,10.05,8,_,1255.36,28.41132303,32 Years and 5 Months,NM,57736,495.2148141,Low_spent_Medium_value_payments,155.0167949,0,-0.0508,-0.9304,-1.2051,1.219,-0.2896 +0xdbb5,CUS_0x27e8,August,26,821-62-6142,Accountant,61219.47,4860.6225,10,6,16,6,"Debt Consolidation Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,19.00560305,4.11,14,_,2733.884604,27.41948179,,Yes,263.2945306,,High_spent_Large_value_payments,414.4675625,0,-1.6871,1.3491,-0.6066,-1.5671,0.5052 +0xdbc1,CUS_0x17b5,August,51,714-28-0746,Doctor,110468.49,8934.7075,0,7,6.288361749,0,Auto Loan,,5,7.23,,Good,1096.492548,23.64370878,32 Years and 0 Months,No,52.45822349,1413.83142,Low_spent_Medium_value_payments,241.3171431,0,1.7093,0.0041,0.9874,0.3545,0.7798 +0xdbcd,CUS_0x614e,August,46,342-14-0940,Manager,8087.76,,8,9,23,3,"Credit-Builder Loan, Payday Loan, and Mortgage Loan",31.99911984,20,9.46,11,_,1810.49,28.22402449,,Yes,14.36421193,12.71220277,High_spent_Medium_value_payments,307.4215853,0,-1.3774,-0.781,0.3973,0.8374,0.0985 +0xdbd9,CUS_0x1234,August,24,101-01-2307,Musician,64996.98,5215.415,3,5,12,2,"Not Specified, and Auto Loan",,12,19.69,6,Standard,340.81,42.01869963,32 Years and 5 Months,Yes,97.54060256,,High_spent_Large_value_payments,577.8538451,0,-2.7356,0.8725,-0.5114,-0.5185,0.1592 +0xdbe5,CUS_0x19a3,August,41,719-96-4265,Lawyer,15636.605,,8,7,3,4,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",20.47780994,12.07560706,1.75,4,Standard,645.6104166,33.46180747,33 Years and 8 Months,No,43.51634815,57.44539889,Low_spent_Small_value_payments,346.5432946,0,-0.5508,-0.4262,0.2092,0.4052,0.2596 +0xdbf1,CUS_0x9886,August,26,797-91-9284,Journalist,164580.36,13871.03,5,3,9.288361749,2,"Student Loan, Credit-Builder Loan, and Mortgage Loan",8.179966603,9,8.37,6,_,803.5508727,33.17287247,20 Years and 3 Months,No,352.2489976,816.6893366,High_spent_Small_value_payments,953.8825896,0,0.5517,0.0754,-0.7418,0.2284,1.7334 +0xdbfd,CUS_0xb32c,August,24,655-50-2780,Mechanic,113788.47,9454.3725,129,5,0.288361749,4,"Not Specified, Mortgage Loan, Auto Loan, and Payday Loan",0,4,3.03,9,Good,466.36,33.09192035,26 Years and 5 Months,No,269.4651141,600.6426417,High_spent_Large_value_payments,735.2669552,0,-2.4036,0.0083,1.408,0.0128,1.116 +0xdc09,CUS_0xb734,August,49,021-51-1139,Manager,107512.29,,4,5,10,3,"Student Loan, Auto Loan, and Student Loan",12.72852361,11,10.39,4,Good,1325.35,32.95482278,19 Years and 5 Months,No,205.5899643,436.1366966,Low_spent_Small_value_payments,529.2090891,0,0.7493,-0.4292,-0.6662,-0.784,0.8307 +0xdc15,CUS_0x6f9b,August,25,#F%$D@*&8,Architect,31568.54,,7,3,10,2,"Personal Loan, and Auto Loan",,10,3.21,3,Standard,1044.92,38.76552265,18 Years and 10 Months,No,45.78709809,91.26626276,High_spent_Small_value_payments,401.5178058,0,0.4397,2.0883,-1.3788,0.6748,-0.1883 +0xdc21,CUS_0x64b,August,44,553-83-5204,Accountant,24693.09,2256.7575,4,5,4.288361749,2,"Credit-Builder Loan, Personal Loan, and Home Equity Loan",,14,8.34,0,Standard,251.4,37.5092866,31 Years and 6 Months,NM,46.78463899,624.3555201,Low_spent_Small_value_payments,264.473052,0,0.4046,-0.3325,0.8721,0.8682,-0.3709 +0xdc2d,CUS_0x5aa1,August,30,467-98-5147,Entrepreneur,19721.21,1633.434167,6,8,21.88954781,9,"Not Specified, Payday Loan, Mortgage Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Payday Loan",35.56434782,23,6.56,11,_,3200.09,23.27344653,8 Years and 8 Months,Yes,1433.733495,32.32646899,High_spent_Large_value_payments,242.9533715,0,0.92,0.693,-0.3472,0.6358,-2.0129 +0xdc39,CUS_0x982e,August,52,252-80-5274,Musician,24353.63,1851.469167,6,7,11,1,Mortgage Loan,15.9590111,11,17.24,4,_,806.4,36.48539266,23 Years and 10 Months,Yes,15.46594646,191.791674,Low_spent_Small_value_payments,267.8892962,0,1.1555,0.374,1.5156,-0.1428,-1.5393 +0xdc45,CUS_0x16f5,August,53,138-08-3421,Scientist,119396.91,9949.7425,1,5,7,3,"Auto Loan, Home Equity Loan, and Payday Loan",0,2,7.51,1,_,431.5436058,40.43102574,29 Years and 11 Months,No,214.0383411,176.8712038,High_spent_Large_value_payments,867.1264221,0,0.9896,1.2095,-1.0739,-0.6351,-0.3339 +0xdc51,CUS_0x19c1,August,43,246-36-9292,Teacher,14188.48,1312.373333,10,10,23.95700519,7,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",26.46974907,17.02920481,4.53,7,_,1667.187766,33.26196977,20 Years and 6 Months,Yes,1370.311397,90.67283038,Low_spent_Small_value_payments,239.2027363,0,-0.1123,-0.2221,-2.0198,-0.4864,1.0055 +0xdc5d,CUS_0xbfc1,August,42,449-42-3493,Engineer,27392.76,,3,3,17,3,"Personal Loan, Not Specified, and Personal Loan",,10,17.33,10,Standard,1148.91,28.54409079,33 Years and 0 Months,Yes,42.54851456,68.9070818,High_spent_Medium_value_payments,394.2174036,0,0.8843,-0.1009,-0.0395,0.4742,-1.8762 +0xdc69,CUS_0xc63b,August,28,563-40-6433,Media_Manager,32928.36,,5,6,20,0,,,13,,0,_,781.1,38.91835126,30 Years and 0 Months,Yes,0,191.2010338,Low_spent_Medium_value_payments,389.4019662,0,-0.7379,1.3398,1.2297,-0.387,1.4713 +0xdc75,CUS_0x84d1,August,44,094-32-7985,Accountant,19609.38,1531.482636,9,7,23,8,"Payday Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Auto Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",27.00864125,21,18.1,15,Bad,3817.315041,33.22902568,5 Years and 9 Months,NM,230.9139078,65.08101549,High_spent_Small_value_payments,283.280955,0,-1.3748,0.1502,-1.8676,0.3126,-0.1639 +0xdc81,CUS_0xb910,August,38,173-92-4344,Musician,29644.12,2073.882744,8,3,18,1,Credit-Builder Loan,28.92809754,20,9.87,5,_,15.81319418,40.03239315,23 Years and 6 Months,Yes,14226,41.35855428,High_spent_Medium_value_payments,433.6346699,0,-0.7889,0.4047,0.428,-0.2673,0.3922 +0xdc8d,CUS_0x9215,August,33,749-11-6940,Media_Manager,36196.52,3201.376667,8,7,33,5,"Payday Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Auto Loan",28.78652892,19,21.53,15,Bad,4329.090995,32.98998275,13 Years and 3 Months,Yes,108.575866,51.64401714,High_spent_Large_value_payments,407.6621417,0,0.241,0.2213,0.9767,-0.1123,0.3305 +0xdc99,CUS_0x7f67,August,61,167-84-0564,Engineer,74457.8,,0,4,9.288361749,0,Payday Loan,,6,6.41,4,Good,73.38692245,41.98255463,24 Years and 5 Months,No,41.17896525,,High_spent_Large_value_payments,768.6301476,0,0.2892,0.8016,-0.0684,1.2586,-0.2476 +0xdca5,CUS_0x744c,August,34,195-92-0874,Musician,39912.02,3440.001667,6,7,11,0,,,12,4.86,3,Standard,780.21,26.51086719,30 Years and 6 Months,No,0,65.27849882,High_spent_Medium_value_payments,528.7216678,0,1.0542,-0.9358,-1.4728,-0.1986,-0.292 +0xdcb1,CUS_0x2ccb,August,52,470-93-6587,Journalist,100100.22,8291.685,5,4,7,0,,9.430756194,8,3.94,6,Good,1472.32,37.60751317,24 Years and 4 Months,No,0,275.5459837,High_spent_Medium_value_payments,803.6225163,0,0.056,0.2985,0.3285,-0.8178,0.2153 +0xdcbd,CUS_0xae0b,August,23,428-26-9400,Entrepreneur,8037.285,,5,3,30.06745738,5,"Auto Loan, Personal Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",25.49199818,17.28794059,13.66,11,_,3156.205361,30.95034943,9 Years and 4 Months,Yes,19.03590965,62.49248242,Low_spent_Small_value_payments,274.228695,0,0.5521,-0.6523,0.7042,-0.1808,-0.9095 +0xdcc9,CUS_0x93c9,August,33,#F%$D@*&8,Architect,21884.21,,3,7,9,0,,11.40316032,9,1.99,5,Standard,847.15,29.85962955,28 Years and 5 Months,No,0,197.1923719,Low_spent_Small_value_payments,255.8760448,0,0.581,0.8104,1.19,-0.1194,-0.903 +0xdcd5,CUS_0x1470,August,24,541-60-3931,Accountant,14156.88,1251.74,3,4,4,4,"Mortgage Loan, Not Specified, Payday Loan, and Home Equity Loan",5.367724325,8,8.86,4,Good,602.3,31.11071542,27 Years and 0 Months,No,57803,91.45229451,Low_spent_Small_value_payments,287.0636961,0,-1.5263,-1.2592,1.1042,0.4618,-1.7065 +0xdce1,CUS_0x44e0,August,50,663-26-0839,Musician,91426.95,7840.9125,7,3,14,103,,22.88438499,17,4.29,3,_,1011.38,27.88709392,32 Years and 2 Months,NM,0,279.126697,Low_spent_Medium_value_payments,784.964553,0,-2.2152,-0.0107,0.2362,0.6943,-1.2046 +0xdced,CUS_0x5451,August,32,941-92-4783,Journalist,176044.04,13654.48174,3,6,5.288361749,0,Auto Loan,11.96571947,11,2.63,0,Good,631.1429605,27.42695965,24 Years and 8 Months,No,1435.127574,1852.721741,!@9#%8,415.8971255,0,0.019,-1.8999,1.3005,-0.7434,-0.3658 +0xdcf9,CUS_0x12a9,August,44,583-20-9758,Media_Manager,44822.21,3555.184167,1,4,2,4,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",6.034664964,7,1.03,0,Good,730.64,30.05812456,,No,135.0442856,100.0534213,High_spent_Medium_value_payments,370.4207098,0,0.6189,-0.8774,-0.9356,-1.1357,-0.3552 +0xdd05,CUS_0x1cb8,August,53,550-64-9594,Mechanic,53003.18,4275.931667,6,6,6,4,"Payday Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",18.79603815,15,2.84,4,Standard,1387.17,29.25996022,,Yes,175.3544553,82.22125251,High_spent_Large_value_payments,410.0174588,0,-1.3126,0.0235,-0.4111,0.8207,1.5481 +0xdd11,CUS_0x3221,August,36,450-93-8421,Mechanic,18426.245,,5,4,13.28836175,4,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",,14,5.7,5,Standard,223.38,25.82870777,10 Years and 3 Months,Yes,147.5522416,472.6031568,Low_spent_Large_value_payments,331.3463797,0,-0.5304,-1.1658,1.337,-1.8014,0.2053 +0xdd1d,CUS_0x289d,August,54,983-41-0016,Journalist,15913.015,,6,7,17,0,,,17,16.14,1,Standard,1347.17,33.73401011,29 Years and 11 Months,Yes,0,133.2971229,Low_spent_Large_value_payments,291.6113354,0,-0.7535,-0.158,-1.8679,0.162,-0.7908 +0xdd29,CUS_0x7640,August,45,522-55-7850,Accountant,34257.69,3111.8075,809,5,9,3,"Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",19.28029617,16,5.38,6,Standard,777.19,24.78195866,19 Years and 4 Months,No,50.9925216,55.313054,High_spent_Medium_value_payments,454.8751744,0,-2.1282,-1.9846,0.8012,-0.5679,-0.1272 +0xdd35,CUS_0x8763,August,27,038-13-2033,Scientist,7536.015,589.00125,4,6,25,5,"Personal Loan, Mortgage Loan, Not Specified, Auto Loan, and Personal Loan",,20.67932506,12.24,9,Standard,1410.452767,29.11509024,20 Years and 4 Months,Yes,17.85292695,58.90196045,Low_spent_Medium_value_payments,262.1452376,0,0.55,0.257,0.0447,0.3361,-1.7471 +0xdd41,CUS_0x4dd1,August,18,092-62-2632,_______,57302.3,3896.514394,3,5,11.28836175,0,,,1,5.67,4,Good,502.73,24.32557525,27 Years and 0 Months,NM,604.677273,782.9740726,Low_spent_Large_value_payments,357.0825551,0,-1.6851,-0.5924,-0.35,-0.3008,0.1341 +0xdd4d,CUS_0xb5c6,August,40,174-39-8329,_______,79501.56,6836.13,7,5,12,2,"Not Specified, and Home Equity Loan",,12,19.94,6,Standard,533.41,27.3673286,16 Years and 8 Months,Yes,82.80383764,465.0817906,Low_spent_Medium_value_payments,415.7273717,0,-1.3675,-0.4253,-0.9153,-0.7594,0.0337 +0xdd59,CUS_0x58d4,August,57,190-54-2903,Architect,108057.12,8067.312667,1,4,8.288361749,4,"Student Loan, Student Loan, Home Equity Loan, and Not Specified",9.042027409,10,0.92,7,Good,149.9193297,26.28617121,20 Years and 6 Months,No,1042.25204,937.9385205,Low_spent_Medium_value_payments,367.9475943,0,1.15,0.7155,-1.289,-0.3799,-0.7481 +0xdd65,CUS_0x4c80,August,29,328-34-5200,Architect,37580.34,,5,2,6.288361749,4,"Student Loan, Not Specified, Student Loan, and Personal Loan",14.7008446,15,8.88,2,Good,417.2786993,30.25161766,31 Years and 6 Months,No,93.474333,634.6308467,Low_spent_Medium_value_payments,281.0100191,0,-2.5337,1.2923,-0.6977,0.9693,0.5565 +0xdd71,CUS_0xb7a7,August,32,243-73-8549,Developer,14368478,5845.9225,3,3,10,2,"Credit-Builder Loan, and Payday Loan",26.88587075,20,,3,Standard,312.59,28.09074405,26 Years and 0 Months,No,5322,192.2636481,!@9#%8,593.0298707,0,0.6618,0.6104,-0.1605,-0.7045,-0.5158 +0xdd7d,CUS_0xa0cd,August,50,870-09-1756,Mechanic,21209.33,,7,7,8,100,Credit-Builder Loan,17.16003048,12,18.7,7,Standard,138.94,24.6171151,24 Years and 9 Months,NM,17.30350889,,Low_spent_Large_value_payments,340.082584,0,0.6933,-1.6175,-0.0505,0.0715,-1.2388 +0xdd89,CUS_0xc23c,August,39,034-97-5921,Media_Manager,16647.05,,10,10,21.88954781,6,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",,29.23051445,-1.86,10,_,4236.141136,27.91312218,4 Years and 9 Months,Yes,1390.933691,50.71217267,Low_spent_Small_value_payments,263.749472,0,-0.0817,-2.244,-0.2707,-0.0007,1.0638 +0xdd95,CUS_0x1f74,August,19,588-75-5901,Architect,37539.84,3404.32,0,5,12,0,,10.11611791,9,2.34,5,Good,31.11,38.98210676,,No,0,41.34953039,High_spent_Medium_value_payments,549.0824696,0,-0.8677,0.5777,-1.23,-0.9759,0.6405 +0xdda1,CUS_0x72a8,August,24,812-06-2042,_______,52860.62,4676.051667,6,7,8,3,"Home Equity Loan, Not Specified, and Payday Loan",7.840815443,7,7.36,2,Standard,1453.24,30.50178294,17 Years and 3 Months,No,121.7858852,195.3587162,High_spent_Medium_value_payments,400.4605653,0,1.0672,-0.7717,-0.3454,-2.1047,-0.3132 +0xddad,CUS_0x4491,August,38,699-79-1235,Media_Manager,29588.18,,3,4,0.288361749,2,"Student Loan, Payday Loan, and Personal Loan",5.876533653,9,-4.27,3,Good,193.06,27.54706811,20 Years and 6 Months,No,61.70950161,,Low_spent_Large_value_payments,244.3966295,0,-1.3252,0.5869,-1.2586,1.1998,0.4774 +0xddb9,CUS_0x6cf3,August,24,716-15-1048,Doctor,45499.89,3659.411208,8,8,34.06745738,5,"Personal Loan, Student Loan, Not Specified, Debt Consolidation Loan, and Student Loan",27.18632264,18,20.41,9,Bad,4877.880954,36.15031534,7 Years and 2 Months,Yes,355.3469959,10000,High_spent_Medium_value_payments,350.8683557,0,0.1864,0.6021,1.6395,1.441,-1.3899 +0xddc5,CUS_0xb127,August,48,442-92-9205,Architect,17980.355,1522.362917,3,4,4.288361749,0,Mortgage Loan,5.977186676,7,3.7,1,_,162.87,30.18069878,25 Years and 8 Months,No,33556,549.6258125,Low_spent_Small_value_payments,304.9099845,0,0.7879,0.3712,0.0735,1.4376,-1.076 +0xddd1,CUS_0x49b8,August,26,#F%$D@*&8,Developer,19798.93,,6,8,17,4,"Student Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",,23,-3.09,15,Bad,1250.46,31.74753838,5 Years and 11 Months,Yes,61.25335493,79.72625305,Low_spent_Small_value_payments,307.0114754,0,2.2071,0.2385,-0.6518,-0.1993,0.3539 +0xdddd,CUS_0x627f,August,47,662-89-9566,Entrepreneur,83408.52,6812.71,4,5,3,2,"Home Equity Loan, and Mortgage Loan",,4.703134399,5.17,3,Good,218.0444667,39.72045507,31 Years and 6 Months,No,123.4884992,,Low_spent_Medium_value_payments,177.5805706,0,1.5504,-0.6648,-0.2407,-1.3227,1.0699 +0xdde9,CUS_0x48c5,August,30,#F%$D@*&8,Mechanic,7206.845,,3,4,15.06745738,4,"Auto Loan, Credit-Builder Loan, Student Loan, and Student Loan",32.50417176,20.79564456,17.42,5,Standard,1714.111855,33.01986207,15 Years and 5 Months,Yes,19.35518461,,Low_spent_Small_value_payments,226.8004539,0,1.7941,0.4276,-2.8469,0.1543,0.643 +0xddf5,CUS_0x38e6,August,23,055-82-9638,Accountant,38649.08,3402.756667,6,9,23,5,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",43.74522777,21.49482781,21.49,11,Bad,3990.563266,32.77064934,7 Years and 4 Months,Yes,115.3718495,23.77627488,High_spent_Large_value_payments,441.1275423,0,0.1297,0.213,1.5083,0.0521,-0.9428 +0xde01,CUS_0x387e,August,37,926-26-5893,Mechanic,118244.84,10055.73667,7,3,15,1,Credit-Builder Loan,20.27275582,16,3.03,9,Standard,1379.72,30.14122294,22 Years and 0 Months,Yes,50.8178128,212.8526446,High_spent_Large_value_payments,981.9032093,0,-2.4959,0.5408,1.8064,0.4761,1.3507 +0xde0d,CUS_0x2d84,August,27,565-71-0473,Architect,44171.71,3716.975833,1,7,9.288361749,4,"Mortgage Loan, Student Loan, Credit-Builder Loan, and Student Loan",13.10055309,12.5679779,1.58,4,Good,383.2816874,26.98858166,32 Years and 3 Months,No,101.3690441,484.0366556,High_spent_Medium_value_payments,456.2293447,0,1.4808,-0.9242,-0.3125,0.6088,0.2297 +0xde19,CUS_0x3f0,August,37,802-19-4704,Developer,33540.43,,6,3,17,0,,18.28211935,13,14.11,10,Standard,1138.97,23.68388954,24 Years and 11 Months,Yes,0,165.2044355,Low_spent_Large_value_payments,370.2991479,0,-0.7878,1.5313,-0.8537,-0.331,-0.6224 +0xde25,CUS_0x3597,August,41,471-78-7619,Musician,53466.6,4156.55,9,6,26,3,"Auto Loan, Home Equity Loan, and Credit-Builder Loan",23.98475627,18,9.76,13,_,1402.55,36.47133495,10 Years and 4 Months,NM,90.88752347,147.8835482,High_spent_Small_value_payments,436.8839283,0,-1.4404,-0.0494,-0.8695,0.5998,-0.8717 +0xde31,CUS_0x4845,August,22,623-80-6676,Mechanic,172259,,1,5,7.288361749,0,,0,0,0.57,8,Good,361.7573632,27.04902593,19 Years and 11 Months,No,0,1790.143316,Low_spent_Medium_value_payments,507.2762601,0,-0.3454,1.0285,1.7726,-1.4936,0.7112 +0xde3d,CUS_0x5ae1,August,43,393-43-4214,_______,68713.48,5526.123333,8,9,18.88954781,6,"Home Equity Loan, Not Specified, Not Specified, Credit-Builder Loan, Auto Loan, and Not Specified",46.79704637,25.93917369,9.88,10,Bad,3390.871342,28.58109777,6 Years and 4 Months,Yes,1629.561346,570.0481007,!@9#%8,,0,-1.7246,0.9734,-0.5778,1.2161,-0.9188 +0xde49,CUS_0x7a50,August,51,815-15-5821,Journalist,170374.76,14176.89667,5,2,4.288361749,2,"Student Loan, Mortgage Loan, and Home Equity Loan",7.308769846,8,2.98,1,_,179.42,32.47882383,18 Years and 2 Months,No,281.6314504,672.1076603,High_spent_Medium_value_payments,1133.888017,0,-0.3664,-0.9959,1.224,-0.3983,-1.8349 +0xde55,CUS_0x4ad9,August,38,849-86-8009,Mechanic,29310.85,,8,4,20,4,"Auto Loan, Home Equity Loan, Student Loan, and Student Loan",31.68143851,25.89035849,9.3,4,_,1319.92241,34.67524815,,No,93.77119067,30.35924005,High_spent_Large_value_payments,368.1266526,0,-0.2354,-1.3507,-0.3786,0.0857,-1.0403 +0xde61,CUS_0xc65a,August,45,867-19-1382,Media_Manager,33588.38,,2,1,12,2,"Payday Loan, and Mortgage Loan",8.640318763,11,8.24,4,Good,802.8193949,23.83082743,27 Years and 0 Months,No,51.64482836,37.88911377,High_spent_Large_value_payments,418.022198,0,-0.0213,0.6321,-1.1657,0.2466,-0.8988 +0xde6d,CUS_0xbef7,August,37,511-48-7019,Doctor,10186.205,,8,10,18.88954781,8,"Payday Loan, Home Equity Loan, Payday Loan, Home Equity Loan, Payday Loan, Student Loan, Home Equity Loan, and Payday Loan",33.41115602,18.21152979,23.03,10,Bad,3960.229817,37.98954104,1 Years and 9 Months,Yes,1360.636869,10000,Low_spent_Small_value_payments,239.4129794,0,1.1594,0.3369,0.5996,0.2335,-0.0771 +0xde79,CUS_0xb50f,August,43,319-70-2154,Engineer,11300.335,940.6945833,6,5,14.06745738,7,"Payday Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Home Equity Loan",31.26816702,21,15.1,9,Standard,873.8809543,29.20353234,,Yes,49.24349164,,Low_spent_Small_value_payments,272.3261115,0,0.2509,1.5569,1.4986,-0.6026,0.2569 +0xde85,CUS_0x2808,August,19,224-39-4670,Scientist,43279.04,3308.586667,1,5,4.288361749,4,"Mortgage Loan, Not Specified, Student Loan, and Student Loan",9.470141592,11,2.57,0,_,331.5199548,30.47551796,23 Years and 5 Months,No,103.1866505,501.3149814,High_spent_Medium_value_payments,407.5691654,0,-1.3493,0.3352,0.0564,-0.3612,-0.0629 +0xde91,CUS_0x2a60,August,31,564-00-4532,Entrepreneur,19042.82,,6,5,18,1,Not Specified,22.84989595,18.01632592,3.12,1,Standard,712.6012006,29.42462142,24 Years and 4 Months,No,10.90877619,68.62950012,Low_spent_Small_value_payments,374.0518904,0,1.2422,1.6728,-1.2823,-0.1096,0.2704 +0xde9d,CUS_0xa2b8,August,19,565-86-1115,Accountant,134809.28,10506.75093,2,3,6,2,"Auto Loan, and Payday Loan",5.89355743,5,7.34,5,_,309.3,42.55324455,24 Years and 11 Months,NM,1119.722927,134.658894,High_spent_Large_value_payments,1144.384579,0,0.4947,-0.695,1.6496,-1.1259,0.2512 +0xdea9,CUS_0x3c5f,August,39,002-45-6541,Musician,75839.22,6438.935,7,4,11,2,"Auto Loan, and Credit-Builder Loan",,9,2.95,3,_,717.83,33.24764101,22 Years and 5 Months,NM,122.1777442,210.5451789,High_spent_Medium_value_payments,561.170577,0,-0.2535,-0.9669,-0.6713,1.5701,0.0089 +0xdeb5,CUS_0x25c0,August,19,942-65-9443,Architect,13737.65,1238.804167,3,3,1615,100,,,,3.55,8,_,331.6499295,30.87732583,18 Years and 10 Months,Yes,0,,Low_spent_Small_value_payments,254.4602592,0,0.8517,0.4088,-0.4281,0.4574,1.0163 +0xdec1,CUS_0x5548,August,30,505-47-4262,Architect,108767.37,,5,4,4.288361749,2,"Student Loan, Auto Loan, and Mortgage Loan",2.720764748,5,2.5,2,Good,425.9485673,24.240924,16 Years and 4 Months,No,62084,,Low_spent_Medium_value_payments,265.0367428,0,-0.8517,0.3285,-0.5622,-2.4217,1.3245 +0xdecd,CUS_0x3650,August,37,581-79-3977,Journalist,60965.31,5012.4425,7,4,12.28836175,0,Not Specified,13.39911967,14,3.85,6,Standard,287.4,35.44202972,29 Years and 5 Months,No,28.65026857,467.7443062,High_spent_Large_value_payments,664.7871362,0,0.7385,1.2107,0.8291,0.8558,-1.6656 +0xded9,CUS_0x2e1a,August,40,982-30-1908,Architect,47390.28,3865.19,8,4,14,2,"Auto Loan, and Personal Loan",23.26315838,17,9.87,12,Standard,938.85,31.5522837,8 Years and 6 Months,Yes,41.95345502,97.44073088,High_spent_Small_value_payments,507.1248141,0,1.677,-0.1109,-0.3575,0.9842,1.3363 +0xdee5,CUS_0xaadb,August,24,165-61-8880,_______,35577.23,,8,4,5,172,,24.10890595,16,15.76,10,Standard,20.94,27.70447905,25 Years and 11 Months,Yes,0,90.49641613,Low_spent_Large_value_payments,482.0805005,0,0.0492,0.5406,1.9195,0.0082,0.402 +0xdef1,CUS_0x3331,August,27,190-23-4331,Mechanic,52243.56,,4,7,27,100,"Payday Loan, Personal Loan, Credit-Builder Loan, Not Specified, and Auto Loan",,17.49119505,8.06,12,Standard,2930.346907,41.3046319,13 Years and 0 Months,Yes,126.4426662,62.20982607,High_spent_Medium_value_payments,504.6105077,0,0.1879,1.8679,0.3198,0.3584,-0.7511 +0xdefd,CUS_0x2c5b,August,23,138-72-0416,Scientist,24812,,7,4,10,6,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",,20,8.15,7,_,930.13,23.42176377,16 Years and 9 Months,Yes,88.3694253,119.8581016,Low_spent_Large_value_payments,257.9391397,0,-0.1338,1.238,-1.0059,0.4394,1.094 +0xdf09,CUS_0xab0e,August,21,313-71-1125,Doctor,118386.4,10126.53333,4,6,1,0,,0,1,15.71,4,Good,0.77,26.55371692,26 Years and 3 Months,No,0,806.5904935,Low_spent_Large_value_payments,476.0628398,0,-1.5314,0.3202,-0.9124,-0.251,0.0025 +0xdf15,CUS_0x5382,August,37,272-92-4691,Teacher,47091.42,3962.285,5,5,16,4,"Mortgage Loan, Mortgage Loan, Home Equity Loan, and Not Specified",16.18342114,,19.67,6,Standard,629.67,39.37406185,9 Years and 10 Months,Yes,146.4743853,131.7406528,High_spent_Medium_value_payments,368.0134619,0,0.2993,-2.2115,-0.9362,-0.4826,-0.8363 +0xdf21,CUS_0x2996,August,53,575-10-2764,Mechanic,41027.94,,4,5,2,1,Payday Loan,0,2,1.52,9,Good,639.3883258,40.68252724,24 Years and 10 Months,No,31.72911294,147.5371131,!@9#%8,404.3666377,0,1.676,-0.4264,0.3395,-0.515,0.7254 +0xdf2d,CUS_0x544f,August,38,358-15-3403,_______,28585.38,,9,7,19,2,"Not Specified, and Personal Loan",,21.46904972,9.62,9,Bad,2750.000732,25.11688063,17 Years and 4 Months,Yes,43.83329423,133.0898124,Low_spent_Small_value_payments,346.6883934,0,1.5038,1.1282,1.5153,-0.5246,-1.2964 +0xdf39,CUS_0x4068,August,22,096-81-0180,Entrepreneur,102137.1,,5,5,8,0,,29.56150386,23.00161593,1.15,5,Good,456.7949312,31.07537318,28 Years and 6 Months,No,0,303.7363516,High_spent_Medium_value_payments,825.8061484,0,0.8745,0.925,0.1569,-2.0597,-0.1479 +0xdf45,CUS_0xb970,August,18,210-36-3488,Engineer,19253.02,,3,3,17,7,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Student Loan, and Not Specified",5.028037135,8,8.08,8,Standard,1264.11,29.79470767,6 Years and 8 Months,Yes,78.30239062,203.8558178,Low_spent_Small_value_payments,166.9836249,0,1.3124,-1.1297,0.9112,0.228,-1.1981 +0xdf51,CUS_0x1b42,August,43,073-79-8798,Musician,168899.44,14211.95333,4,4,4,1,Home Equity Loan,6.403591332,8,0.96,0,_,826.84,29.78880021,30 Years and 11 Months,No,71.8515742,514.0159662,Low_spent_Large_value_payments,1105.327793,0,-1.1058,-2.1301,0.218,0.7371,-0.2954 +0xdf5d,CUS_0xa3b8,August,19,653-49-1055,Developer,109726.14,9131.845,3,3,10,2,"Credit-Builder Loan, and Mortgage Loan",,15,,5,Standard,704.91,43.58911612,24 Years and 0 Months,No,138.5931851,219.7808583,High_spent_Large_value_payments,794.8104566,0,0.3888,0.781,-1.8693,-0.9618,-0.5922 +0xdf69,CUS_0x3f7,August,25,966-78-9490,Entrepreneur,26104.48,1995.373333,4,4,14,7,"Personal Loan, Mortgage Loan, Not Specified, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",16.76012589,14,10.51,9,_,377.32,38.67417513,,Yes,87.21995048,33.62535017,High_spent_Medium_value_payments,328.6920327,0,-0.8012,0.8754,0.1186,-1.8803,0.8991 +0xdf75,CUS_0x9ac5,August,47,232-20-2845,Lawyer,112423.8,9485.65,1,3,4,3,"Student Loan, Home Equity Loan, and Payday Loan",9.333655099,10.71391813,6.04,4,Good,746.5764569,39.68500257,27 Years and 4 Months,No,158.4753662,140.6663416,!@9#%8,899.4232922,0,0.123,0.4715,-0.0342,1.5805,0.3344 +0xdf81,CUS_0x69bb,August,27,273-48-2717,Lawyer,20940.02,1931.001667,9,10,16.06745738,5,"Auto Loan, Mortgage Loan, Auto Loan, Auto Loan, and Mortgage Loan",,24.18033792,1.24,7,Bad,3128.081124,28.61712543,8 Years and 9 Months,Yes,47.16396888,65.06973016,Low_spent_Medium_value_payments,334.1461797,0,-2.1313,0.0239,1.4349,-1.0496,-1.6862 +0xdf8d,CUS_0x2000,August,25,159-91-7430,_______,66227.56,5699.963333,10,9,31,2,"Mortgage Loan, and Debt Consolidation Loan",,17.13336842,,10,Bad,2071.626734,35.86519826,,Yes,77.13000491,100.4815816,High_spent_Medium_value_payments,642.3847468,0,-0.2574,0.6693,-0.9556,-0.3568,0.1439 +0xdf99,CUS_0x58ed,August,35,384-92-1465,Doctor,57707.74,,3,3,20,4,"Payday Loan, Payday Loan, Student Loan, and Payday Loan",25.24910074,16,10.01,12,_,1223,38.61145642,26 Years and 10 Months,Yes,117.1583173,133.9759646,High_spent_Medium_value_payments,470.4635514,0,0.7041,0.2681,-0.3639,1.1042,1.1782 +0xdfa5,CUS_0x92f0,August,19,147-69-1388,Writer,17496.35,,3,4,19,5,"Personal Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",21.12024676,17.46844277,9.59,12,_,1472.739593,27.03548575,7 Years and 3 Months,Yes,47.41790563,50.7062881,Low_spent_Large_value_payments,321.3787229,0,-1.9987,0.2685,0.7929,0.5443,-0.4806 +0xdfb1,CUS_0xa8c9,August,25,655-69-8443,Teacher,137428.16,,3,5,4.288361749,2,"Credit-Builder Loan, and Personal Loan",5.253514449,7,10.88,2,Good,1151.71,36.0269983,26 Years and 4 Months,NM,139.8255412,669.7010193,High_spent_Large_value_payments,985.9455672,0,-1.3734,1.7093,-0.8567,-0.2176,1.5678 +0xdfbd,CUS_0x7cc7,August,41,016-31-3693,Doctor,54052.82,,4,6,10.28836175,2,"Mortgage Loan, Home Equity Loan, and Mortgage Loan",16.60440369,16,13.75,4,Standard,281.77,29.0871288,26 Years and 4 Months,Yes,130.8433895,909.0431537,Low_spent_Small_value_payments,147.7910845,0,-1.5883,0.8428,1.2816,-0.1553,0.2147 +0xdfc9,CUS_0x58e3,August,45,531-24-4222,Accountant,15573910,1711.24,6,6,10,0,,18.61525435,12,0.57,4,Standard,560.11,31.02109402,29 Years and 4 Months,Yes,0,,High_spent_Small_value_payments,334.9029556,0,0.1392,1.2359,0.1159,-0.5958,-0.1389 +0xdfd5,CUS_0xc57,August,35,750-79-0475,Accountant,38027.68,3214.973333,5,6,9.288361749,4,"Auto Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",7.864611221,8,15.04,8,Standard,286.94,27.3759379,26 Years and 6 Months,NM,99.32828048,525.6643012,!@9#%8,366.4422127,0,0.4987,0.2233,0.5414,0.6243,-0.0974 +0xdfe1,CUS_0x57a7,August,18,187-24-6312,Scientist,14291.24,,6,10,33.06745738,6,"Not Specified, Personal Loan, Student Loan, Personal Loan, Student Loan, and Payday Loan",24.79137437,17,2.66,10,Bad,2751.250954,39.82664675,16 Years and 11 Months,Yes,68.47067908,66.2681374,Low_spent_Medium_value_payments,247.7345622,0,1.8154,1.3033,-0.0614,0.2983,0.9646 +0xdfed,CUS_0x6d55,August,31,191-05-3072,Writer,70421.78,5621.481667,6,6,14,2,"Debt Consolidation Loan, and Home Equity Loan",,10,13.07,7,Standard,171.4354337,37.25076986,14 Years and 5 Months,NM,75.01776899,137.3115208,High_spent_Medium_value_payments,619.9153595,0,1.1009,1.013,0.4736,-0.4336,0.6862 +0xdff9,CUS_0x4798,August,36,265-88-4094,Accountant,43287.28,3839.273333,7,6,13,4,"Personal Loan, Home Equity Loan, Not Specified, and Not Specified",15.48052592,11,14.15,3,_,1393.19,32.15530664,30 Years and 10 Months,Yes,111.3621465,56.29193932,High_spent_Medium_value_payments,466.2732475,0,0.7834,1.631,0.0866,-0.9786,0.4189 +0xe005,CUS_0x3c46,August,18,671-83-0137,_______,71933.7,6091.475,3,1307,12,2,"Home Equity Loan, and Home Equity Loan",,11,18.78,,Standard,661.9,38.11526119,20 Years and 6 Months,Yes,62.45662091,,Low_spent_Large_value_payments,498.8678784,0,1.3621,0.5257,1.3325,0.2201,-1.1998 +0xe011,CUS_0x103e,August,40,155-72-8070,Scientist,98690.8,,4,6,8.288361749,0,Student Loan,17.44232664,17,10.76,4,Good,706.96,25.93969011,26 Years and 11 Months,No,55.00440757,1333.41878,Low_spent_Small_value_payments,147.7376071,0,0.8008,-0.5391,-0.2461,-0.9073,0.1085 +0xe01d,CUS_0x71aa,August,25,632-01-7252,Lawyer,20574.71,,8,9,25.88954781,6,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,24.64468055,7.36,8,_,2880.334232,38.0150309,,Yes,1412.243419,96.05333377,High_spent_Small_value_payments,238.7290829,0,1.1524,-0.0446,-0.3923,0.4468,0.2614 +0xe029,CUS_0x8e1a,August,53,375-18-5371,Manager,114389.24,9637.436667,4,3,18.28836175,0,,8.525119562,9,0.06,1,Standard,8.11,35.53771731,27 Years and 5 Months,No,0,1117.8441,Low_spent_Medium_value_payments,545.8370272,0,2.0358,-0.1249,-0.1311,-0.9353,-0.2408 +0xe035,CUS_0x825b,August,34,#F%$D@*&8,Media_Manager,27592.7,2357.391667,8,7,12,100,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Student Loan",26.00923548,19,4.45,4,Standard,1217.125087,35.95528496,29 Years and 8 Months,No,61.62016243,160.0471977,!@9#%8,306.8060581,0,1.5953,0.3633,-0.3408,-0.8831,0.2881 +0xe041,CUS_0x8e88,August,29,528-98-7663,Engineer,58074.15,,8,6,24,8,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",33.10774029,23,26.76,13,Bad,2829.78,29.52777665,10 Years and 3 Months,Yes,207.6693429,,Low_spent_Small_value_payments,1.77998453,0,-0.5717,-1.5647,-0.1984,0.0911,0.557 +0xe04d,CUS_0x987c,August,33,567-00-4734,Developer,19786.36,,7,275,33.06745738,8,"Not Specified, Auto Loan, Not Specified, Not Specified, Credit-Builder Loan, Payday Loan, Student Loan, and Not Specified",,22.79624808,26.28,15,_,4832.86915,31.28359164,5 Years and 10 Months,Yes,102.2872859,,High_spent_Small_value_payments,243.7041431,0,0.3787,0.15,1.6356,0.0642,-1.388 +0xe059,CUS_0x2255,August,29,692-78-0444,Developer,64650.48,,8,7,31,5,"Auto Loan, Personal Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",28.70176493,,4.26,11,Bad,3259.605377,37.90487205,,NM,234.0066434,177.4626321,High_spent_Medium_value_payments,403.6847245,0,-0.9402,-0.8111,1.1962,-0.6106,-0.156 +0xe065,CUS_0x846a,August,52,603-04-5885,Media_Manager,111295.16,9209.596667,3,4,18,1,Home Equity Loan,21.64742301,15,5.23,3,Standard,416.4860072,30.59054093,24 Years and 2 Months,Yes,60.2312605,72.89126999,High_spent_Large_value_payments,1035.789652,0,-1.2123,-2.7205,-1.3489,0.7603,-1.3593 +0xe071,CUS_0xc127,August,43,596-27-6018,Mechanic,15762.82,1216.568333,3,5,7,3,"Not Specified, Personal Loan, and Student Loan",,14,10.18,2,Standard,537.23,28.54777839,30 Years and 8 Months,No,19.77809011,111.7294723,!@9#%8,270.149271,0,-0.3309,1.6782,0.3905,1.6306,-1.1575 +0xe07d,CUS_0x9b85,August,18,178-07-7586,Musician,104658.75,8434.5625,4,7,11,1,Not Specified,,16.08014915,17.76,9,Standard,1368.855944,39.52908321,29 Years and 0 Months,Yes,52.07193108,439.1156292,Low_spent_Large_value_payments,622.2686897,0,0.9775,-0.4413,-2.1433,-0.0507,-1.715 +0xe089,CUS_0x6808,August,43,687-82-5938,Mechanic,16523.08,1497.923333,9,5,28.06745738,8,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Not Specified, Personal Loan, Personal Loan, and Personal Loan",,30.38566271,30.39,11,Bad,5776.217213,29.57071297,13 Years and 6 Months,Yes,109.35109,102.0489629,Low_spent_Small_value_payments,201.6719925,0,-0.4448,1.2201,1.9415,0.5582,0.7402 +0xe095,CUS_0x906a,August,37,912-15-8539,Lawyer,34978.29,,3,6,13,4,"Payday Loan, Student Loan, Debt Consolidation Loan, and Student Loan",15.45487436,13,15.4,6,Standard,1219.82,29.76650899,16 Years and 11 Months,NM,79.50245627,,!@9#%8,182.9430922,0,0.2768,-0.189,0.6768,-1.4896,-0.3082 +0xe0a1,CUS_0xb1bc,August,35,267-50-6833,Mechanic,19194.75,,6,8,23,2,"Personal Loan, and Credit-Builder Loan",30.85027079,21.79647022,-4.95,6,_,2685.325507,28.39299587,7 Years and 8 Months,Yes,28.38685362,46.81440222,High_spent_Large_value_payments,351.8549942,0,-0.0727,-0.2128,0.6465,-1.5442,0.3254 +0xe0ad,CUS_0x4b42,August,38,030-87-0045,Musician,16201.47,1623.1225,4,6,20,2,"Personal Loan, and Debt Consolidation Loan",19.45196553,16.11025684,12.34,4,Standard,1562.373379,34.27723546,15 Years and 6 Months,NM,21.02467887,90.43067318,Low_spent_Small_value_payments,340.8568979,0,-0.446,-2.4161,0.0206,-1.196,1.6144 +0xe0b9,CUS_0x847b,August,43,115-16-8280,Manager,19331.53,,885,7,27,2,"Credit-Builder Loan, and Mortgage Loan",35.82595406,18.53797103,15.47,8,Standard,1437.849216,31.67287365,,Yes,21.28260906,97.0040513,Low_spent_Small_value_payments,313.509423,0,-0.9506,-0.9271,-1.1922,-0.0455,-0.0444 +0xe0c5,CUS_0x66a1,August,39,425-34-3402,Writer,18625.74,1601.145,9,7,16.06745738,8,"Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Personal Loan",,22,6.59,11,Bad,4082.390954,34.32143241,14 Years and 3 Months,Yes,93.08625731,90.05671076,High_spent_Small_value_payments,210.251244,0,-1.4432,0.2505,-0.1131,-0.6261,0.4258 +0xe0d1,CUS_0x61a6,August,31,918-55-2997,Doctor,77476.68,6235.39,4,1269,10,3,"Personal Loan, Credit-Builder Loan, and Not Specified",11.38532338,10,11.19,,Standard,711.7727388,40.45087735,31 Years and 5 Months,No,112.6382564,,Low_spent_Medium_value_payments,229.0673976,0,-0.3263,-1.936,0.3193,-0.1719,-0.0549 +0xe0dd,CUS_0x1a56,August,29,804-47-6828,Entrepreneur,16662.535,1464.544583,4,5,19,7,"Mortgage Loan, Student Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Auto Loan, and Student Loan",22.93151987,17,13.17,6,_,1384.8,23.18410655,11 Years and 4 Months,Yes,88.45540374,76.9869352,Low_spent_Small_value_payments,271.0121194,0,1.7804,1.6077,-0.2881,0.0555,0.0355 +0xe0e9,CUS_0x1d9a,August,18,986-27-1625,Lawyer,28547.56,,10,9,31.95700519,7,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, and Not Specified",31.1346745,17,27.29,8,Bad,4245.710954,38.84027009,7 Years and 6 Months,Yes,1411.361402,92.69758471,Low_spent_Medium_value_payments,310.2869777,0,-1.1217,0.203,1.7204,0.9071,-1.2742 +0xe0f5,CUS_0x424c,August,22,237-56-1887,Developer,92599.26,,0,3,2.288361749,0,,13.48887982,,5.61,1,Good,454.4,38.69312149,,NM,0,878.8855244,Low_spent_Large_value_payments,605.3124366,0,-0.7684,0.4913,0.0555,-0.6679,0.3929 +0xe101,CUS_0x5a5a,August,20,422-77-3211,Accountant,64692.7,,3,7,4.288361749,2,"Student Loan, Payday Loan, and Not Specified",5.806583743,7,11.58,4,Good,380.81,25.31839834,20 Years and 2 Months,No,129.3266373,622.0618579,Low_spent_Large_value_payments,453.5547991,0,2.322,0.5647,0.6364,0.8126,-0.5581 +0xe10d,CUS_0x3c09,August,18,548-06-7219,Musician,33687.46,2395.611465,4,3,20,5,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",18.41826845,15,9.24,8,Standard,702.57,27.16432861,19 Years and 11 Months,Yes,405.6014746,27.2442442,High_spent_Large_value_payments,375.2599829,0,-1.3173,0.6299,0.1701,-1.1736,0.2617 +0xe119,CUS_0x75c4,August,36,487-66-3786,Entrepreneur,9828.82,,10,9,25.88954781,8,"Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, Student Loan, Personal Loan, Auto Loan, and Student Loan",21.63862819,16.90862624,5.36,12,Bad,3738.016852,25.25128749,3 Years and 10 Months,Yes,18768.48344,55.37565242,Low_spent_Large_value_payments,228.3922898,0,0.8463,-0.5494,-0.5537,0.8227,0.9069 +0xe125,CUS_0x70d0,August,46,186-22-4112,Entrepreneur,68081.28,,7,5,10,2,"Home Equity Loan, and Debt Consolidation Loan",16.58544188,10,6.72,6,Standard,502.86,29.61495986,19 Years and 11 Months,No,95.81290819,97.70873983,High_spent_Medium_value_payments,607.422352,0,0.2233,-1.9057,-0.412,-1.4574,0.6671 +0xe131,CUS_0x362a,August,21,086-54-0486,Teacher,81491.94,6497.995,3,3,8.288361749,4,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",,2,8.51,9,Good,859.6,28.27158953,25 Years and 3 Months,No,231.0697623,10419.93746,!@9#%8,360.271829,0,1.5768,-0.3813,-0.5238,0.036,0.5746 +0xe13d,CUS_0x53e0,August,37,540-51-4829,Developer,104653.62,9004.135,0,2,4.288361749,4,"Payday Loan, Not Specified, Student Loan, and Debt Consolidation Loan",6.471075578,9,0.61,1,Good,1221.03,34.63127574,18 Years and 11 Months,No,198.374695,1053.213431,Low_spent_Medium_value_payments,348.7628352,0,-1.5278,0.8694,-0.8585,-0.026,0.1057 +0xe149,CUS_0xac31,August,28,580-52-0449,Engineer,43531.45,3678.620833,0,3,8.288361749,2,"Auto Loan, and Home Equity Loan",6.49146497,9,5.94,0,_,336.3908142,32.95416879,19 Years and 6 Months,NM,53.72127284,583.986324,High_spent_Medium_value_payments,419.1246674,0,1.7404,-2.5407,-0.8449,-1.6794,0.0323 +0xe155,CUS_0x6928,August,40,293-19-9209,Architect,18944.84,,7,6,25.06745738,8,"Student Loan, Student Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Auto Loan, and Home Equity Loan",,27.65627916,3.5,10,Bad,1845.813103,33.06946646,8 Years and 8 Months,Yes,116.9879795,16.50912619,High_spent_Large_value_payments,241.4562731,0,0.5144,-1.0817,-1.3279,-0.3508,0.0545 +0xe161,CUS_0xe18,August,80,260-70-2118,_______,16854.42,1664.535,3,8,32,3,"Credit-Builder Loan, Payday Loan, and Personal Loan",22.20836394,19.18298686,19.53,11,_,1400.720036,25.84108973,,Yes,36.18230816,114.7869643,High_spent_Small_value_payments,275.4842275,0,-0.4347,0.4476,-1.5788,-0.8732,0.4133 +0xe16d,CUS_0xaed2,August,42,169-61-6035,Manager,62825.9,5404.491667,6,6,3,0,,24.42176857,18.42438094,6.16,5,Good,184.0654151,41.73651832,32 Years and 10 Months,No,0,140.4811929,High_spent_Small_value_payments,659.9679738,0,0.596,-0.3492,-0.2958,1.2418,0.8947 +0xe179,CUS_0x88a6,August,38,119-65-1556,Mechanic,15040.47,,3,9,19,7,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Not Specified",,20.29510441,11.32,11,Standard,2596.086294,38.26219349,6 Years and 10 Months,Yes,52.95800884,,Low_spent_Small_value_payments,249.7103307,0,1.4424,1.5194,-0.8042,0.0153,0.9028 +0xe185,CUS_0x798f,August,40,001-41-8258,Journalist,21139.23,,5,5,7,4,"Personal Loan, Not Specified, Student Loan, and Payday Loan",12.82050135,8.223005893,2.75,4,_,341.8932763,28.22245317,,NM,66.90259343,,High_spent_Small_value_payments,260.7652085,0,0.3946,-0.9469,0.9622,0.7224,1.4862 +0xe191,CUS_0x64ae,August,34,074-14-2917,_______,31963.96,,7,9,33,2,"Payday Loan, and Personal Loan",30.68116402,,14,9,Bad,1470.74,29.64942905,7 Years and 8 Months,NM,304.8513259,184.6648892,High_spent_Small_value_payments,308.5911556,0,-1.3341,1.4434,-2.2093,1.5104,0.1628 +0xe19d,CUS_0x1ed5,August,31,025-32-3903,Teacher,18965.35,1317.445833,10,7,20,3,"Debt Consolidation Loan, Student Loan, and Student Loan",,21.08929604,7.33,6,Bad,1655.581395,27.23774144,8 Years and 0 Months,Yes,43.93610991,121.1414863,Low_spent_Small_value_payments,256.6669871,0,1.5464,-0.4439,0.2316,0.1663,-0.2533 +0xe1a9,CUS_0x853f,August,21,991-68-2510,Entrepreneur,113826.68,,3,1,6,4,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, and Not Specified",8.317178171,7,2.78,4,Good,304.21,28.61398904,18 Years and 8 Months,No,293.102834,299.9760923,!@9#%8,583.1767404,0,-0.3358,1.7099,1.0979,0.1124,-0.4186 +0xe1b5,CUS_0xa319,August,38,151-11-5554,Writer,95401.47,8171.1225,7,7,20,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",16.94065658,11,19.38,2,Standard,921.31,39.67275561,19 Years and 2 Months,Yes,230.0957676,552.0545071,Low_spent_Large_value_payments,304.9619753,0,0.2696,-0.3237,-0.5661,0.2722,-0.272 +0xe1c1,CUS_0x6d40,August,46,696-39-6251,Entrepreneur,85432.84,7279.403333,5,4,15.28836175,0,Not Specified,12.15062467,11,4.62,5,Standard,295.87,40.48448847,33 Years and 0 Months,Yes,41.12289025,736.3929411,Low_spent_Small_value_payments,660.361963,0,-2.0939,1.4812,0.2285,0.0348,-1.5373 +0xe1cd,CUS_0x3b4c,August,19,119-63-5471,Teacher,32130.51,2734.5425,3,7,9,6,"Not Specified, Auto Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",,19,15.86,8,Standard,1233.41,31.64328544,17 Years and 8 Months,Yes,84.15915489,83.86483904,Low_spent_Medium_value_payments,385.4302561,0,0.1004,-1.4934,0.9341,-0.4047,-0.1996 +0xe1d9,CUS_0x1b6d,August,26,503-24-1934,Engineer,16753.63,,6,9,24.95700519,9,"Credit-Builder Loan, Student Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",,28.9189468,2.86,7,_,4097.717338,32.85781866,12 Years and 11 Months,Yes,1409.042347,62.76192586,Low_spent_Small_value_payments,253.558941,0,-1.0198,1.2364,-0.068,1.289,0.5409 +0xe1e5,CUS_0x7736,August,40,697-71-5438,Musician,8930.885,842.2404167,10,6,17,8,"Home Equity Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",26.96507644,21,24.52,10,_,3138.495148,28.08906733,1 Years and 4 Months,Yes,33.59607244,29.44247994,Low_spent_Medium_value_payments,304.5577221,0,-0.4586,-0.7056,0.3995,-0.1285,0.9297 +0xe1f1,CUS_0xb928,August,51,#F%$D@*&8,Scientist,28880.56,,3,1371,10,1,Personal Loan,,10,17.66,7,_,412.8,23.4785297,25 Years and 9 Months,Yes,20.96972938,40.25466552,High_spent_Medium_value_payments,439.0469384,0,-0.5627,-0.8519,-0.2505,0.5344,-1.2562 +0xe1fd,CUS_0xb805,August,18,681-00-8612,Engineer,34471.16,2682.596667,8,6,13,2,"Credit-Builder Loan, and Debt Consolidation Loan",,14,17.84,6,Standard,561.18,37.9051661,14 Years and 2 Months,Yes,36.58553432,84.51297821,High_spent_Medium_value_payments,397.1611541,0,-0.4387,-0.4077,-2.4312,0.3635,0.9378 +0xe209,CUS_0x3b52,August,46,139-21-1407,Manager,55910.68,,5,3,11,0,,15.59181152,,9.76,2,_,6.778036715,40.20412382,29 Years and 10 Months,No,354.2949081,191.5587362,High_spent_Small_value_payments,557.9572024,0,-1.38,0.73,0.7629,-1.0664,-0.0089 +0xe215,CUS_0x6112,August,41,572-59-5510,Journalist,65677.38,5343.115,3,1,3.288361749,4,"Student Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,8,10.78,3,Good,356.2258975,36.06106288,26 Years and 11 Months,No,217.6167117,815.2531412,Low_spent_Small_value_payments,255.6786854,0,-0.4,0.9774,1.0071,1.4567,1.3191 +0xe221,CUS_0xa011,August,24,#F%$D@*&8,Developer,31408.15,,5,3,18,2,"Mortgage Loan, and Personal Loan",24.7660777,21.71700014,19.13,12,_,1533.932474,22.1952291,20 Years and 11 Months,Yes,30.79188324,245.9086343,Low_spent_Small_value_payments,274.2340658,0,-2.1447,-0.5867,-0.05,-0.6038,-1.7136 +0xe22d,CUS_0x4c44,August,80,872-37-6177,Journalist,20917.51,,6,5,23.06745738,9,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Student Loan, Not Specified, Auto Loan, and Home Equity Loan",21.6806782,14.65750454,3.92,7,_,2134.615736,33.61370249,18 Years and 11 Months,Yes,151.4146988,,Low_spent_Small_value_payments,57.54685607,0,0.2082,-0.2516,0.2162,1.0226,-0.5312 +0xe239,CUS_0x925d,August,37,053-50-1042,Mechanic,16415.38,,6,8,16,9,"Auto Loan, Payday Loan, Home Equity Loan, Not Specified, Student Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",,23.21314425,0.49,12,_,1786.096315,38.28901297,13 Years and 8 Months,Yes,95.15753444,,Low_spent_Small_value_payments,180.3972101,0,-0.7519,-0.4327,0.9526,-0.2101,1.6528 +0xe245,CUS_0xc283,August,43,768-07-9404,Manager,16012.64,,8,5,24,4,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",,30.41582745,14.49,11,Bad,1650.060054,28.98738005,17 Years and 9 Months,Yes,31.33212205,86.68432609,Low_spent_Large_value_payments,262.8222185,0,0.4944,-1.1992,-1.4244,0.3081,-0.4903 +0xe251,CUS_0x5447,August,30,611-61-5605,Entrepreneur,13214.895,1109.281854,795,4,7,6,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Personal Loan, and Payday Loan",22.16627767,16,15.36,8,Standard,825.6470793,33.449704,15 Years and 4 Months,Yes,65.3176088,,High_spent_Small_value_payments,231.1364432,0,1.1628,0.6495,0.9165,0.6223,0.2838 +0xe25d,CUS_0xccf,August,45,444-22-2741,_______,49349.64,3987.47,5,477,15,5,"Student Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Home Equity Loan",16.05007191,11.21122803,10.3,6,Standard,2074.074321,24.89102968,18 Years and 11 Months,NM,149.4695292,,Low_spent_Small_value_payments,147.4915648,0,0.3281,1.7155,1.4002,1.2294,0.8219 +0xe269,CUS_0x3586,August,38,201-39-3947,Lawyer,17476.72,,8,7,5,2,"Auto Loan, and Personal Loan",14.7001621,,13.23,5,Standard,1470.22,36.08948571,,NM,24.91418627,104.3872607,Low_spent_Medium_value_payments,305.6378864,0,-0.0677,-1.3811,0.3072,-1.2289,-0.6819 +0xe275,CUS_0x83fb,August,18,016-56-4100,Manager,11687.925,1212.99375,3,4,11,3,"Not Specified, Home Equity Loan, and Student Loan",,20,17.43,,Standard,991.78,32.44350434,10 Years and 8 Months,Yes,18.07906349,58.54462227,!@9#%8,304.6756892,0,-1.7796,-1.9799,-0.3984,1.0657,-0.9888 +0xe281,CUS_0x6754,August,43,221-68-3307,Musician,15469.21,1156.100833,10,9,32.06745738,4,"Credit-Builder Loan, Payday Loan, Not Specified, and Personal Loan",,21.76193231,10.38,12,Bad,2277.433069,35.89473784,9 Years and 11 Months,Yes,38.6767959,52.37501339,Low_spent_Small_value_payments,287.8379861,0,-1.5218,-0.5321,0.4966,-1.8743,-0.7132 +0xe28d,CUS_0x2fb0,August,28,855-00-3668,Architect,42162.24,3782.52,6,6,1,2,"Debt Consolidation Loan, and Payday Loan",19.03462238,,7.13,2,Standard,664.7,30.9410051,,No,56.148421,236.9816622,Low_spent_Large_value_payments,355.1219168,0,0.0344,0.0854,0.5781,0.0904,-0.4717 +0xe299,CUS_0xb60f,August,38,590-07-4139,Architect,119877.15,9942.7625,0,5,10,3,"Student Loan, Mortgage Loan, and Home Equity Loan",1.432577341,3,4.69,4,_,152.07,39.49153175,,No,239.7093039,388.6556088,High_spent_Small_value_payments,625.9113372,0,-0.2486,0.9735,-0.8272,-0.8208,1.9165 +0xe2a5,CUS_0x6d15,August,45,572-76-1796,_______,41550.06,3000.939039,9,7,25.06745738,2,"Home Equity Loan, and Not Specified",33.43432071,19,8.28,8,Bad,2731.340954,30.69085155,9 Years and 2 Months,Yes,239.1287801,187.7326422,Low_spent_Small_value_payments,346.1347506,0,0.2759,-0.9283,-0.4722,-1.0233,-0.6618 +0xe2b1,CUS_0x4037,August,33,022-20-2822,Engineer,92509.38,,7,4,12,0,,10.39124623,7,9.92,5,Good,1167.56,33.05856736,18 Years and 0 Months,No,0,246.7222468,High_spent_Medium_value_payments,790.8892532,0,-0.9485,-1.0541,0.5622,0.9113,0.914 +0xe2bd,CUS_0x7c59,August,22,788-42-3871,Architect,36298.36,2842.863333,3,4,9,2,"Personal Loan, and Mortgage Loan",10.00923046,10,4.38,6,Good,922.1180671,35.334859,29 Years and 8 Months,No,42.79523131,71.78842436,High_spent_Large_value_payments,418.2091578,0,1.0292,0.848,1.4597,0.0922,-0.9326 +0xe2c9,CUS_0x464f,August,43,631-96-5803,Entrepreneur,22298.54,,5,3,6,4,"Mortgage Loan, Auto Loan, Not Specified, and Not Specified",11.1108746,10,11.61,10,_,727.07,28.30749442,19 Years and 8 Months,Yes,52.42507017,,High_spent_Small_value_payments,332.8707021,0,-0.0154,-0.9855,-1.401,0.2672,0.0956 +0xe2d5,CUS_0x38cd,August,29,121-15-1586,Accountant,35856.82,,2,5,20,1,Payday Loan,16.56376211,,16.02,5,Standard,1212.78,34.50968156,25 Years and 10 Months,NM,20.55212296,,Low_spent_Medium_value_payments,365.9106821,0,0.8312,1.0166,-2.0673,0.853,-0.4881 +0xe2e1,CUS_0xc165,August,80,200-20-5107,Musician,16518.585,,1,5,9,4,"Student Loan, Home Equity Loan, Payday Loan, and Student Loan",7.247661267,10,11.67,6,Good,246.8394866,28.85557189,30 Years and 2 Months,No,47.62333141,88.97386167,!@9#%8,288.4970429,0,-0.6809,-1.2716,-0.0041,1.7172,0.005 +0xe2ed,CUS_0x7231,August,21,897-52-0754,Mechanic,61923.66,,9,9,29,2,"Home Equity Loan, and Auto Loan",,23.36483563,8.03,15,Standard,2533.878893,26.51510383,7 Years and 4 Months,Yes,53.17181692,177.6068016,High_spent_Medium_value_payments,543.7518815,0,-1.0561,-0.0048,-0.0463,0.1309,0.2853 +0xe2f9,CUS_0xc70e,August,80,937-90-1635,Scientist,97583.43,,7,7,9,1,Credit-Builder Loan,19.77799752,16,1.92,2,Good,1120.037942,29.02739174,30 Years and 0 Months,No,46.51178913,772.1132077,Low_spent_Medium_value_payments,338.2251097,0,0.213,0.3514,0.106,-0.6586,-0.407 +0xe305,CUS_0x6e98,August,25,096-42-8765,Accountant,16063.455,1142.62125,8,6,7,2,"Credit-Builder Loan, and Mortgage Loan",17.55540312,,15.79,9,_,355.79,32.15943092,16 Years and 5 Months,Yes,72151,90.19694192,Low_spent_Medium_value_payments,282.0055324,0,-0.1864,1.5356,-0.8848,0.7127,-0.6819 +0xe311,CUS_0x6aea,August,27,289-76-4615,Architect,54150.09,4595.5075,7,8,30,7,"Not Specified, Student Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",21.68879201,16.88966364,24.54,12,Bad,4724.885285,36.58300972,10 Years and 0 Months,Yes,211.3872219,72.99992053,High_spent_Large_value_payments,415.1636075,0,0.3279,1.5158,-0.2391,-1.0635,1.1079 +0xe31d,CUS_0x5ea7,August,31,930-79-9858,Entrepreneur,7682.515,,6,6,33.06745738,7,"Payday Loan, Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Personal Loan",17.39320806,9.663771246,9.59,15,Standard,1839.548184,29.07798012,9 Years and 0 Months,Yes,31.01695061,,Low_spent_Large_value_payments,250.5833237,0,0.1518,-2.585,0.3723,-1.9517,-0.1925 +0xe329,CUS_0xa660,August,22,752-72-1728,Doctor,7895.565,,5,10,34,5,"Student Loan, Not Specified, Not Specified, Auto Loan, and Auto Loan",16.35208448,15,,15,Standard,2659.39,33.7718681,19 Years and 4 Months,Yes,26.66209872,23.40997455,High_spent_Large_value_payments,281.1243017,0,1.0927,-1.5085,0.3652,1.3924,1.9037 +0xe335,CUS_0x9e48,August,18,191-96-6402,Teacher,74956.2,6151.35,9,7,34.06745738,6,"Debt Consolidation Loan, Home Equity Loan, Student Loan, Payday Loan, Payday Loan, and Payday Loan",,22,24.9,11,Bad,5165.600954,28.30741674,6 Years and 8 Months,Yes,281.8871266,144.6877503,High_spent_Large_value_payments,401.8398352,0,0.5063,-0.7266,0.0752,-2.6824,-0.0272 +0xe341,CUS_0x7a8d,August,46,921-21-5382,Architect,130232.25,10750.6875,5,3,6.288361749,0,Credit-Builder Loan,,6,4.05,3,Good,1077.66,36.2383901,19 Years and 4 Months,No,60.03972732,581.2482052,High_spent_Medium_value_payments,1103.718279,0,0.1997,-2.0189,-1.368,-0.1768,0.201 +0xe34d,CUS_0x180f,August,29,568-54-3190,_______,30028.29,,3,6,10,4,"Personal Loan, Student Loan, Personal Loan, and Home Equity Loan",,19,17.65,11,Standard,1410.84,35.26048981,7 Years and 3 Months,Yes,76.32040533,10000,Low_spent_Medium_value_payments,255.0243354,0,0.1543,-0.4635,-1.6718,0.3213,-0.2019 +0xe359,CUS_0x52b7,August,80,090-51-5624,Accountant,53331.48,4255.29,10,5,26,9,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",46.71878515,23.55350083,16.23,15,Bad,3198.954111,26.38668838,2 Years and 5 Months,Yes,230.3405624,460.0510617,Low_spent_Small_value_payments,25.13737595,0,0.8357,0.8059,2.207,0.4097,0.0437 +0xe365,CUS_0x6635,August,44,225-86-3141,Doctor,59359.04,4961.586667,10,10,29.95700519,6,"Payday Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",24.40155716,16.13981579,15.28,10,Bad,4058.582187,35.64673761,5 Years and 11 Months,Yes,1610.572294,648.9799928,Low_spent_Small_value_payments,,0,0.1423,-0.1324,-0.4399,-0.144,-2.4314 +0xe371,CUS_0x5162,August,34,653-06-1500,Manager,30771.54,,4,6,18,7,"Auto Loan, Student Loan, Mortgage Loan, Mortgage Loan, Student Loan, Student Loan, and Mortgage Loan",23.55186265,18,19.25,4,Standard,246.06,32.46018538,9 Years and 5 Months,Yes,162.4018137,,Low_spent_Medium_value_payments,190.7665625,0,-0.6362,-0.4048,1.3985,0.7144,0.5223 +0xe37d,CUS_0xbd5b,August,28,652-29-5461,_______,31040.14,2474.678333,833,5,16,2,"Auto Loan, and Mortgage Loan",5.17170684,8,13.77,5,Standard,1288.66,26.95388295,30 Years and 0 Months,Yes,44.31614813,111.2736691,Low_spent_Small_value_payments,381.8780161,0,-1.2039,0.3652,1.3128,0.5764,0.0415 +0xe389,CUS_0x66f5,August,24,430-15-0729,Mechanic,17414.3,,3,7,35.06745738,1257,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,13.031387,15.92,9,Standard,3083.472767,41.82501661,15 Years and 4 Months,Yes,61.1695887,34.90477785,High_spent_Small_value_payments,265.7245122,0,-1.2611,-1.0332,0.071,-0.5937,0.0526 +0xe395,CUS_0x24e0,August,39,068-83-7239,Entrepreneur,46248.72,3884.06,8,7,14,7,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,7,18.43,9,_,214.72,25.90256142,,Yes,207.8468579,,High_spent_Medium_value_payments,310.2995229,0,0.7719,0.3189,-1.0309,-0.4296,0.9689 +0xe3a1,CUS_0x35c6,August,53,521-19-2395,_______,21051.145,,1,6,8,1,Auto Loan,,9,7.38,2,Good,90.3,28.24899761,17 Years and 5 Months,No,15.49550054,,Low_spent_Small_value_payments,245.9338326,0,2.5751,0.4334,1.7999,0.6137,-2.5212 +0xe3ad,CUS_0x9014,August,24,561-30-9378,Engineer,59502.28,,2,620,0.288361749,4,"Auto Loan, Student Loan, Home Equity Loan, and Student Loan",0,2,11.21,,Good,346.0673394,29.06165096,25 Years and 8 Months,No,188.6943212,643.4783882,High_spent_Medium_value_payments,364.7487634,0,1.0365,-0.4923,-0.2693,-1.4861,0.2129 +0xe3b9,CUS_0x3e4d,August,30,265-51-7271,Mechanic,7567.505,749.6254167,6,7,22.06745738,5,"Mortgage Loan, Mortgage Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",,26.78584942,26.4,12,Bad,5067.243978,36.16715024,11 Years and 6 Months,Yes,25.53319096,64.00785957,Low_spent_Small_value_payments,248.7012032,0,1.2852,1.0084,0.1701,0.5492,0.5239 +0xe3c5,CUS_0x78c2,August,29,682-92-8819,Lawyer,93169.92,7794.16,6,7,18,172,"Mortgage Loan, and Payday Loan",12.05315022,12,19.62,2,Standard,1003.08679,24.25779772,27 Years and 2 Months,Yes,112.3402977,1158.0353,Low_spent_Small_value_payments,,0,0.3439,-0.6188,0.6633,-0.0125,-0.2102 +0xe3d1,CUS_0x30ee,August,18,237-56-8072,Lawyer,92084.4,7728.7,3,3,14,4,"Student Loan, Mortgage Loan, Student Loan, and Not Specified",20.52895757,16,18.09,9,Standard,1265.51,33.56713796,16 Years and 3 Months,Yes,180.5883652,,High_spent_Large_value_payments,775.6282141,0,0.9437,-2.0242,-0.4148,1.1643,0.4568 +0xe3dd,CUS_0x6b1d,August,20,971-49-5241,Musician,58225.78,,5,7,15,100,,26.61187837,18,1.77,3,_,152.123258,36.96425528,25 Years and 4 Months,No,696.2149441,498.7785218,Low_spent_Large_value_payments,324.6971347,0,2.0344,0.5027,1.3214,0.2576,-0.198 +0xe3e9,CUS_0xb5b9,August,80,893-75-4053,Lawyer,125943.63,10448.3025,3,5,5.288361749,0,Credit-Builder Loan,,4,2.19,4,Good,853.94,37.09087464,23 Years and 8 Months,No,90.8293526,,Low_spent_Medium_value_payments,506.1486197,0,1.3611,-0.9003,-0.1872,0.4773,0.252 +0xe3f5,CUS_0x2d22,August,27,911-53-5148,Accountant,16083.84,1488.32,7,4,11,100,"Payday Loan, and Home Equity Loan",28.80584539,21.77413458,7.92,0,_,590.2973643,30.90923201,17 Years and 2 Months,NM,14.68681221,51.11384559,Low_spent_Small_value_payments,373.0313422,0,0.3574,-0.7009,1.3354,-0.0616,-1.5606 +0xe401,CUS_0x25cd,August,28,050-78-7339,Entrepreneur,67512.6,5804.05,7,6,31,3,"Student Loan, Credit-Builder Loan, and Home Equity Loan",16.61164291,10.25986039,13.48,15,Standard,2663.053243,38.97144081,10 Years and 4 Months,Yes,88.99393704,270.9728041,Low_spent_Small_value_payments,510.4382589,0,1.8601,-1.1817,0.5814,0.7759,1.747 +0xe40d,CUS_0x38f3,August,18,110-21-0161,Mechanic,143703.4,12099.28333,8,3,6,2,"Not Specified, and Auto Loan",,14,11.53,11,Standard,418.85,30.7015149,,Yes,168.7055047,306.6047378,High_spent_Small_value_payments,994.6180908,0,0.0418,-1.1836,0.1712,1.4171,-0.2789 +0xe419,CUS_0x5e53,August,22,982-11-1159,Teacher,19742.24,,7,6,32,4,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",21.39034644,15.40817626,9.55,9,Standard,1566.789778,29.40476876,,Yes,52.09095848,41.77613239,Low_spent_Large_value_payments,338.0515758,0,0.3409,1.2099,0.8863,-0.5553,-0.9208 +0xe425,CUS_0x54fd,August,49,761-60-3177,_______,32027.38,,6,3,14,0,,,16,-0.54,2,Standard,990.39,29.42242578,23 Years and 8 Months,No,0,,Low_spent_Large_value_payments,411.740212,0,-0.7925,-0.0993,-0.9526,-0.5059,-1.6966 +0xe431,CUS_0x7f47,August,42,746-02-0586,Journalist,32424.62,2867.051667,4,7,3.288361749,0,,5.695755824,8,5.25,3,Good,404.3912389,34.00464757,23 Years and 4 Months,No,0,528.9147858,High_spent_Medium_value_payments,438.1214063,0,-0.5601,-0.0679,1.151,-1.0819,-0.4788 +0xe43d,CUS_0x3c3a,August,38,014-29-7065,_______,8499.645,,8,7,21.06745738,8,"Student Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, Not Specified, Auto Loan, Payday Loan, and Home Equity Loan",25.40419292,17,5.65,9,Bad,2796.510954,29.24432287,16 Years and 0 Months,Yes,34.70069003,,High_spent_Large_value_payments,252.9088172,0,-0.1534,0.3942,-0.9866,-2.0914,0.2047 +0xe449,CUS_0x8511,August,29,541-42-1348,Developer,43115.38,,4,4,6,4,"Not Specified, Student Loan, Payday Loan, and Auto Loan",11.15681244,10,7.86,0,Good,681.3531746,30.87897888,16 Years and 8 Months,No,118.4402088,66.51538452,High_spent_Medium_value_payments,453.987183,0,-1.2803,-0.3739,-1.0969,-0.9889,0.38 +0xe455,CUS_0x6cce,August,27,283-37-4594,Media_Manager,16038.69,,8,7,17.06745738,7,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Mortgage Loan",20.3439299,13.74180525,13.5,9,Standard,2477.294467,34.25335385,16 Years and 9 Months,Yes,79.94205891,,Low_spent_Medium_value_payments,221.9519905,0,0.8517,1.2488,-0.0294,-1.5017,-0.1294 +0xe461,CUS_0x7d6,August,44,554-10-7651,Journalist,7885.605,,8,7,24.06745738,5,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",38.77299236,23,1.64,12,Bad,1557.500954,32.17712069,10 Years and 3 Months,Yes,30.60062828,,Low_spent_Small_value_payments,231.8019933,0,-1.0277,-0.4746,-0.5408,-0.7634,1.9647 +0xe46d,CUS_0x390d,August,30,423-32-4754,Musician,10366.83,568.9025,8,3,6,4,"Home Equity Loan, Not Specified, Not Specified, and Debt Consolidation Loan",19.78468279,14,7.92,5,Standard,0.95,21.94129847,20 Years and 8 Months,Yes,24.41334705,41.7568451,!@9#%8,280.7200578,0,0.8212,-0.0465,-0.0868,-0.0332,-1.2879 +0xe479,CUS_0x903b,August,35,908-24-4478,Entrepreneur,82203.45,6655.2875,6,5,12,2,"Credit-Builder Loan, and Home Equity Loan",25.58589103,20,4.86,4,_,667.13,28.16081275,22 Years and 6 Months,Yes,104.3200658,,Low_spent_Large_value_payments,239.0597799,0,2.5037,-0.7193,-0.7092,0.3906,0.4013 +0xe485,CUS_0x17d1,August,22,#F%$D@*&8,Architect,27767.57,,5,7,20,0,,,17,9.81,4,Standard,1262.27,39.48528551,23 Years and 6 Months,Yes,0,,High_spent_Medium_value_payments,459.8231183,0,-0.6607,0.9909,-0.9315,-1.3249,0.6071 +0xe491,CUS_0x9185,August,31,295-97-5420,_______,48101.13,3798.949791,7,8,31.06745738,9,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Not Specified, Credit-Builder Loan, Personal Loan, Mortgage Loan, Not Specified, and Student Loan",30.91991034,19,27.14,12,Bad,4097.178107,23.79906051,6 Years and 5 Months,Yes,315.0737758,317.1466469,Low_spent_Large_value_payments,121.9497583,0,0.3991,0.1788,0.695,1.0831,-1.1572 +0xe49d,CUS_0x7181,August,45,413-36-1087,Scientist,9093.865,621.8220833,7,9,27,4,"Home Equity Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",26.05236214,18,15.75,11,Bad,2196.35,35.04738311,9 Years and 11 Months,Yes,25.63158429,48.58626708,Low_spent_Small_value_payments,277.964357,0,-1.2267,-0.9092,1.3603,0.5757,0.4261 +0xe4a9,CUS_0x9570,August,23,897-31-4273,Accountant,59214.6,5120.55,7,10,27,9,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Not Specified, Personal Loan, Debt Consolidation Loan, Personal Loan, and Auto Loan",33.87637132,21,25.47,11,Bad,2814.81,36.70086322,3 Years and 5 Months,Yes,388.1756412,521.4185407,Low_spent_Small_value_payments,,0,0.6718,0.3636,-1.648,-0.5245,0.9488 +0xe4b5,CUS_0x5df7,August,22,324-19-5816,Mechanic,8285.085,592.42375,6,6,33,5,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",,19.06352088,18.56,7,Bad,2021.372236,39.27355361,,Yes,18.84763609,40.26050413,Low_spent_Medium_value_payments,280.1342348,0,-0.4424,-0.421,-0.0314,-1.4418,-1.1197 +0xe4c1,CUS_0x6f62,August,27,155-15-5096,_______,104880.68,8771.056667,7,7,12,0,,,11.82916581,10.16,5,Standard,1169.437444,43.45473243,32 Years and 9 Months,Yes,0,177.6345244,High_spent_Medium_value_payments,949.4711422,0,-0.3637,1.1122,0.0772,-0.7805,-0.6369 +0xe4cd,CUS_0xa8b1,August,27,086-29-1667,Doctor,38036.61,3180.7175,2,3,2,2,"Debt Consolidation Loan, and Payday Loan",5.35789593,5,4.84,8,Good,241.07,34.79700222,17 Years and 4 Months,No,33.31106411,249.7729573,Low_spent_Large_value_payments,304.9877286,0,0.9727,-0.3579,-1.3793,-0.7415,-1.2505 +0xe4d9,CUS_0x262e,August,27,#F%$D@*&8,Journalist,8983.565,,6,4,6,2,"Credit-Builder Loan, and Auto Loan",20.75535353,18.02031154,11.25,8,Standard,1450.488489,25.42816663,15 Years and 3 Months,Yes,9.885124977,61.96396627,Low_spent_Small_value_payments,282.7139504,0,0.7735,-0.6446,-0.3717,-1.5485,2.2059 +0xe4e5,CUS_0xb2c,August,50,784-78-7776,Media_Manager,80302.47,6391.8725,5,5,20,0,,14.66233212,12.78643495,11.71,5,Standard,1075.279942,35.13812679,23 Years and 6 Months,Yes,0,142.9868364,High_spent_Medium_value_payments,746.2004136,0,1.4337,-2.3544,0.2083,-0.257,0.2248 +0xe4f1,CUS_0x328b,August,39,191-30-7869,Doctor,28279.12,2300.593333,4,7,13,0,,21.13717109,15,13.74,8,Standard,329.28,33.14476057,19 Years and 0 Months,Yes,0,,High_spent_Small_value_payments,394.5734835,0,-0.5336,0.6129,0.4513,-0.0259,0.1392 +0xe4fd,CUS_0x6831,August,24,897-28-5647,Engineer,28256.16,,8,7,22,9,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Personal Loan, Personal Loan, and Not Specified",35.38540522,24.93168783,8.95,11,Bad,1878.057607,29.5781708,10 Years and 8 Months,Yes,195.867181,184.0598737,!@9#%8,160.1409454,0,-0.5646,-1.6936,-0.7147,-0.2215,1.3312 +0xe509,CUS_0x22cf,August,35,693-76-8377,Journalist,14075.83,,7,10,19,5,"Not Specified, Student Loan, Credit-Builder Loan, Student Loan, and Student Loan",37.32917302,26.34276948,17.14,17,Bad,1477.679556,23.95753729,13 Years and 10 Months,Yes,31.00524599,63.19206708,Low_spent_Large_value_payments,263.5012703,0,0.7117,-0.575,1.0341,-0.0715,-0.4244 +0xe515,CUS_0xd07,August,24,958-58-8885,Teacher,30608.63,,3,6,9,1,Mortgage Loan,15.37647937,14,17.04,9,Standard,729.74,36.87501919,24 Years and 8 Months,Yes,12.91911988,,!@9#%8,427.9629172,0,-1.4761,-0.065,1.494,1.3902,-0.0189 +0xe521,CUS_0xb01a,August,30,442-12-0514,Accountant,15714.98,,10,1018,16.88954781,9,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Payday Loan, Not Specified, and Auto Loan",25.98587253,19.50301625,6.98,,_,2049.654993,28.97561033,7 Years and 11 Months,Yes,51360.48344,33.2947327,High_spent_Small_value_payments,264.6219926,0,0.4962,0.3166,-1.899,1.794,-0.3121 +0xe52d,CUS_0xabd8,August,31,143-65-6732,Media_Manager,55663.5,4932.625,5,4,30,7,"Student Loan, Personal Loan, Mortgage Loan, Not Specified, Payday Loan, Personal Loan, and Debt Consolidation Loan",21.82446988,15.74138316,7.39,6,Standard,1517.60662,29.41069626,6 Years and 0 Months,Yes,223.5445482,300.9042869,Low_spent_Large_value_payments,238.8136648,0,-0.5345,-1.7729,0.5134,0.9736,1.1447 +0xe539,CUS_0x6ced,August,34,563-01-6338,Accountant,19071.07,,7,6,21.06745738,4,"Personal Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",,31.91338629,7.06,13,Bad,1911.951449,31.8312874,13 Years and 2 Months,Yes,52.15717234,151.088927,Low_spent_Small_value_payments,248.759196,0,-0.0578,0.5837,-1.2442,0.1109,-0.3795 +0xe545,CUS_0x1ae8,August,48,302-22-0779,Entrepreneur,32019.94,,4,5,7,3,"Credit-Builder Loan, Student Loan, and Not Specified",15.57072055,14,1.79,1,Good,712.9214219,38.98785202,17 Years and 2 Months,No,41.77294001,141.8466591,High_spent_Small_value_payments,349.1527822,0,0.7276,-0.6737,0.9332,0.2066,1.151 +0xe551,CUS_0x8d6b,August,43,275-55-2149,Scientist,104118.69,8853.5575,5,7,5,3,"Mortgage Loan, Debt Consolidation Loan, and Personal Loan",22.44319467,15,8.65,9,_,555.27,39.44680168,21 Years and 11 Months,Yes,163.6445971,224.9203197,High_spent_Large_value_payments,736.7908332,0,-0.1758,-0.4143,-0.1383,1.9989,-0.0191 +0xe55d,CUS_0x24f8,August,42,429-74-0774,Writer,20562.56,1651.546667,5,6,31,2,"Not Specified, and Credit-Builder Loan",,13,11.16,9,Standard,2491.07,39.43457724,11 Years and 3 Months,Yes,28.58876933,112.0159375,Low_spent_Large_value_payments,294.5499598,0,-1.2688,-0.6473,-1.647,-0.8368,-1.0472 +0xe569,CUS_0x8b98,August,44,901-85-5314,Lawyer,34014.64,,4,4,21,7,"Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",15.25857285,11,15.58,9,Standard,1706.37,31.99192834,9 Years and 4 Months,Yes,99.50967879,129.8140334,Low_spent_Small_value_payments,334.9316212,0,0.0383,-0.5463,0.5633,-0.4436,0.4065 +0xe575,CUS_0x5786,August,39,166-30-9233,Teacher,20372.43,1411.7025,10,5,17,7,"Personal Loan, Not Specified, Home Equity Loan, Personal Loan, Mortgage Loan, Student Loan, and Payday Loan",22.09258475,,23.96,15,_,3857.801265,30.70813373,3 Years and 6 Months,Yes,108.1344183,10000,Low_spent_Medium_value_payments,219.3711231,0,-0.2141,0.9944,-0.2144,0.619,-0.9743 +0xe581,CUS_0x2a11,August,25,#F%$D@*&8,Lawyer,167787.16,13952.26333,5,4,9.288361749,2,"Personal Loan, Not Specified, and Not Specified",0,0,8.56,1,Good,1357.9,27.71730046,16 Years and 4 Months,No,413.5720378,695.0153185,High_spent_Large_value_payments,946.5764381,0,-0.1922,0.5157,-1.1196,-0.1255,0.6199 +0xe58d,CUS_0xa04b,August,31,401-21-4779,Journalist,135807.12,,7,7,12,3,"Student Loan, Not Specified, and Debt Consolidation Loan",,,5.1,3,_,1032.13,33.74245227,17 Years and 10 Months,Yes,214.3614518,1031.128621,Low_spent_Medium_value_payments,179.1359275,0,0.5921,0.2399,0.6365,0.6574,0.3754 +0xe599,CUS_0xc38f,August,38,324-29-0824,Scientist,69228.92,5752.076667,9,8,18,7,"Not Specified, Student Loan, Student Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Student Loan",35.08739089,18.78301141,5.84,15,_,5134.529049,34.83070282,2 Years and 2 Months,Yes,316.1501011,10000,Low_spent_Small_value_payments,197.6995236,0,-0.0944,0.1644,-0.0064,-0.1606,0.4362 +0xe5a5,CUS_0x9ede,August,43,544-06-8073,Scientist,17758.44,1403.87,8,3,13,1,Mortgage Loan,9.846185975,10,15.64,4,Standard,908.52,31.31924951,23 Years and 4 Months,Yes,11.66697227,,Low_spent_Small_value_payments,261.6795534,0,0.1375,-0.442,-0.7183,-0.6501,-2.0632 +0xe5b1,CUS_0x5f90,August,18,323-98-0014,Engineer,12680.815,1334.734583,4,5,15.06745738,0,,21.02077439,12.64551224,15.79,9,Standard,1023.503567,34.74389853,18 Years and 3 Months,Yes,0,41.2115188,!@9#%8,345.5416516,0,-1.0105,0.1075,-0.7994,-1.5401,0.1606 +0xe5bd,CUS_0x8bde,August,47,536-54-7101,Journalist,16943.505,1382.95875,4,6,11,1,Mortgage Loan,22.33441936,16,8.93,5,Good,857.7661097,39.35551916,25 Years and 10 Months,No,11.20324446,191.011041,Low_spent_Small_value_payments,254.7490027,0,-1.4043,0.7475,0.8103,-0.2011,-1.3989 +0xe5c9,CUS_0x1d2c,August,42,281-15-6845,Architect,118636.88,9865.406667,8,6,3058,100,Auto Loan,19.69942128,15,4.94,4,_,1097.71,36.41520197,,NM,86.54293081,632.5705692,Low_spent_Medium_value_payments,547.4271667,0,1.9057,0.0063,0.644,-1.331,-0.4454 +0xe5d5,CUS_0x9db8,August,34,#F%$D@*&8,Lawyer,90403.77,7433.6475,4,6,2,0,,8.296506534,7,0.84,3,_,575.68,31.32323933,20 Years and 5 Months,No,0,246.3218269,Low_spent_Medium_value_payments,777.0429231,0,-0.1729,1.3606,-0.5983,-0.7935,-0.0837 +0xe5e1,CUS_0xa1ec,August,52,987-26-7773,Teacher,171292.56,,1,5,9,3,"Payday Loan, Auto Loan, and Debt Consolidation Loan",,1,5.49,4,Good,342.9644391,40.14631225,32 Years and 4 Months,No,1779.103254,571.377789,High_spent_Medium_value_payments,869.9251357,0,0.3866,-0.4571,-0.8473,-0.352,1.7882 +0xe5ed,CUS_0x337d,August,51,199-25-7327,Manager,33768.99,2904.0825,5,4,4.288361749,0,,0,2.372406493,6.06,3,Good,235.1530865,26.72504397,17 Years and 2 Months,No,0,635.3297719,!@9#%8,365.0159391,0,-1.3651,1.78,1.2346,-0.6073,0.0015 +0xe5f9,CUS_0xada1,August,37,194-63-3140,Manager,78164.36,6553.696667,0,4,3.288361749,4,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Student Loan",1.895048903,4,9.35,3,_,379.9896139,37.13844517,,No,162.4884483,,Low_spent_Small_value_payments,232.1919903,0,0.3784,-0.4564,-0.5918,1.3369,1.2289 +0xe605,CUS_0xa90d,August,38,087-22-0110,Lawyer,7261.91,393.1591667,5,7,12,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Personal Loan, and Not Specified",24.47998256,17,22.98,12,Standard,808.5005012,33.75052613,8 Years and 11 Months,NM,35.46180125,17.86606066,High_spent_Medium_value_payments,237.6552598,0,0.2646,-1.7776,1.1119,0.8474,-0.0495 +0xe611,CUS_0x6ec7,August,41,166-55-7075,Scientist,114150.75,,5,4,7.288361749,0,,,,9.13,318,_,399.84,37.43016676,,No,0,584.1987142,High_spent_Medium_value_payments,1052.594997,0,-1.3615,-1.1105,-0.4169,-0.6813,1.8002 +0xe61d,CUS_0xb448,August,29,353-39-6535,_______,44219.46,,6,7,12,7,"Mortgage Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, and Payday Loan",16.23749776,10.67287698,18.21,7,Standard,1823.106023,35.16410183,7 Years and 11 Months,NM,206.3210389,89.76074339,High_spent_Medium_value_payments,339.5137177,0,2.3391,-1.2807,0.5301,1.584,0.2487 +0xe629,CUS_0x846e,August,33,152-12-7444,Musician,18848.995,1364.749583,3,6,10,0,,9.855503934,10.1046196,7.76,7,Good,183.0111966,38.42046162,29 Years and 4 Months,No,0,55.70334978,Low_spent_Small_value_payments,370.7716086,0,-0.9662,-1.3055,-0.015,-0.063,-1.1984 +0xe635,CUS_0xbad6,August,38,547-04-1695,Musician,41486.98,2959.217697,3,2,4,4,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",0,1,9.18,3,Good,728.4550923,35.9299302,24 Years and 0 Months,No,444.8342744,,Low_spent_Large_value_payments,320.965845,0,0.0765,0.511,0.1723,0.782,-0.3777 +0xe641,CUS_0x1efc,August,35,254-10-3672,Accountant,77463.99,6388.3325,7,6,15,2,"Auto Loan, and Debt Consolidation Loan",,,2.42,1761,Standard,451.63,33.76708825,17 Years and 3 Months,No,80.87723029,621.3233238,Low_spent_Medium_value_payments,216.6326959,0,0.6675,0.022,0.9603,-0.5077,0.2757 +0xe64d,CUS_0x8a68,August,41,#F%$D@*&8,Media_Manager,44456.6,,4,3,6,2,"Student Loan, and Not Specified",12.12643983,13.2486265,2.25,4,_,1358.055123,29.67238425,17 Years and 5 Months,No,42123,125.3952631,High_spent_Small_value_payments,453.6281464,0,1.3043,-0.5728,-0.7889,-0.5989,0.6308 +0xe659,CUS_0x4f3e,August,47,341-94-5301,_______,17766.93,1219.5775,5,6,11,1,Payday Loan,0,0,12.56,2,_,195.48,33.16403173,30 Years and 9 Months,No,9.712735563,97.94780902,!@9#%8,294.2972054,0,-0.4268,0.5796,0.707,0.8465,-0.3044 +0xe665,CUS_0x2697,August,55,711-21-3388,Scientist,98796.84,8206.07,1,3,4,2,"Auto Loan, and Mortgage Loan",2.041421901,2,4.31,3,Good,324.1,35.13095622,23 Years and 11 Months,No,110.2833807,241.9845135,High_spent_Medium_value_payments,718.3391058,0,1.8537,-1.3493,0.5798,0.0272,0.1 +0xe671,CUS_0x85e9,August,45,288-62-7562,Musician,20929.295,1704.107917,5,3,9,3,"Student Loan, Payday Loan, and Debt Consolidation Loan",4.342472773,5,1.99,9,_,858.09,29.55957894,22 Years and 0 Months,No,40.39817496,66.71879471,Low_spent_Medium_value_payments,343.293822,0,-0.1734,-0.1939,0.1245,0.3517,-0.223 +0xe67d,CUS_0x379e,August,46,870-05-0089,Lawyer,36742.54,,3,6,9,4,"Not Specified, Auto Loan, Debt Consolidation Loan, and Not Specified",18.66745549,14,19.73,9,Standard,1149.65,27.79648569,6 Years and 4 Months,Yes,80.43489216,260.8402319,Low_spent_Small_value_payments,238.1127093,0,1.4884,-0.05,0.2277,-0.3471,0.1403 +0xe689,CUS_0x4b82,August,28,#F%$D@*&8,Manager,41803.08,3685.59,3,3,13,2,"Debt Consolidation Loan, and Credit-Builder Loan",21.39579421,14,9.66,0,Standard,1204.07,29.42141864,28 Years and 10 Months,Yes,49.7525098,25.78441853,High_spent_Large_value_payments,533.0220717,0,1.0443,0.8432,1.824,-0.5695,-0.1362 +0xe695,CUS_0x3c8b,August,26,473-81-1618,Journalist,35384,2960.666667,9,6,33.06745738,9,"Payday Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",32.56400764,20.183135,,9,Bad,4977.249858,25.51333165,4 Years and 2 Months,Yes,214.3342971,186.2246672,Low_spent_Small_value_payments,158.7874144,0,0.2881,0.4317,-0.2946,1.3912,-0.7537 +0xe6a1,CUS_0xe5b,August,23,990-04-1542,Doctor,17488375,,5,7,4.288361749,0,Not Specified,,,2.25,4,Good,1389.9,29.02206553,28 Years and 0 Months,No,27.81626112,541.736762,High_spent_Medium_value_payments,485.6581046,0,-0.5693,-1.7978,-0.4817,-1.3663,-0.7869 +0xe6ad,CUS_0xac28,August,19,881-32-0506,Developer,10332.74,608.0616667,5,4,6,3,"Debt Consolidation Loan, Not Specified, and Mortgage Loan",,12,-3.81,1,Standard,820.75,27.88853932,25 Years and 6 Months,No,13.48292115,29.66221424,Low_spent_Small_value_payments,307.6610313,0,0.183,-0.0556,-1.1153,-0.8762,0.106 +0xe6b9,CUS_0x745a,August,46,414-00-8777,Teacher,37089.86,2983.821667,7,10,31,6,"Personal Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Mortgage Loan",,17,7.65,15,Standard,1950.21,38.16092666,20 Years and 2 Months,Yes,152.4813613,,Low_spent_Small_value_payments,199.5414797,0,0.1596,-1.1801,0.024,-1.056,-0.013 +0xe6c5,CUS_0x21e4,August,28,677-77-2825,Entrepreneur,93390.44,7538.536667,6,5,18,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",19.73357738,13,10.28,0,Standard,1036.26,31.73986965,18 Years and 4 Months,No,117.4871616,,High_spent_Medium_value_payments,749.5627425,0,0.1829,-1.1053,1.3022,-0.9626,0.1046 +0xe6d1,CUS_0x7527,August,38,913-79-8046,Journalist,7863.04,,7,3,24,4,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Home Equity Loan",,17.47534888,17.53,9,Standard,2617.969083,35.8854172,13 Years and 6 Months,NM,23.60905669,,Low_spent_Small_value_payments,284.0273251,0,1.2582,-1.0901,0.2805,-0.952,1.595 +0xe6dd,CUS_0x18e2,August,23,215-30-2338,Architect,16906.81,1167.900833,10,8,34.95700519,9,"Credit-Builder Loan, Personal Loan, Personal Loan, Not Specified, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",,21,3.43,6,Bad,1782.570954,37.24926928,13 Years and 6 Months,Yes,1434.272071,,High_spent_Large_value_payments,190.841586,0,-0.7489,-1.2091,-0.0667,1.8998,-0.3079 +0xe6e9,CUS_0x74c7,August,51,103-65-8314,_______,87853.56,7527.13,4,1,3.288361749,2,"Credit-Builder Loan, and Debt Consolidation Loan",0,2,9.99,4,Good,440.1189128,26.91654609,17 Years and 4 Months,No,142.3909189,494.4834362,High_spent_Large_value_payments,785.0480407,0,-0.3504,0.2649,2.3946,-0.3437,1.0485 +0xe6f5,CUS_0x34ce,August,37,284-14-5932,Architect,29827.76,,8,8,17.06745738,5,"Payday Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Payday Loan",22.81880109,,16.31,6,Bad,3875.664183,25.51846925,11 Years and 11 Months,Yes,118.9429454,64.08715685,!@9#%8,278.8142765,0,-0.4006,1.8087,0.7541,-1.1096,3.3399 +0xe701,CUS_0x3fc5,August,28,912-40-0813,Engineer,61389.18,5085.765,10,6,34,6,"Not Specified, Home Equity Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",33.73998125,20.23530684,24.77,10,_,3372.310917,35.64092893,9 Years and 6 Months,Yes,156.440598,184.6093133,High_spent_Medium_value_payments,417.5265887,0,0.1272,0.13,-1.3721,-0.7129,0.4102 +0xe70d,CUS_0x9c99,August,43,065-84-0454,Scientist,74424.6,6025.05,9,8,21,6,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",40.40042797,22.06987146,4.36,13,_,1821.567169,27.51466153,16 Years and 3 Months,Yes,243.2995324,,Low_spent_Medium_value_payments,150.6295826,0,1.1254,-0.4528,-1.1772,-0.3903,-1.0463 +0xe719,CUS_0x8a20,August,55,304-63-8182,Journalist,85038.87,6836.5725,0,2,5.288361749,2,"Home Equity Loan, Personal Loan, and Not Specified",4.462346276,8,3.86,2,Good,877.6862561,22.93160349,23 Years and 4 Months,No,154.4102475,,High_spent_Large_value_payments,594.2698549,0,-1.0447,2.2718,-1.0011,-0.9167,-0.1609 +0xe725,CUS_0x55cd,August,47,613-69-6896,_______,19705.74,1377.145,5,4,10,2,"Home Equity Loan, and Personal Loan",12.36698228,11,11.98,0,Standard,39.75,32.07344389,,Yes,22.96687928,152.2436847,Low_spent_Small_value_payments,252.503936,0,0.8025,0.5046,-0.747,-0.0692,-0.4571 +0xe731,CUS_0x47b,August,23,258-71-7950,Scientist,17863.15,,6,7,25.06745738,7,"Auto Loan, Personal Loan, Student Loan, Personal Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,25,18.84,12,_,4116.420954,34.07831351,13 Years and 5 Months,Yes,96.18186282,12.30693139,High_spent_Large_value_payments,280.3505012,0,1.4612,-2.0054,0.2884,-0.3092,0.522 +0xe73d,CUS_0x5b84,August,44,911-65-6359,Writer,10207.5,842.3276364,7,7,22,5,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",17.47543158,15.70987628,19.19,7,Standard,2654.82351,35.15398639,12 Years and 5 Months,Yes,82.52658446,,Low_spent_Large_value_payments,292.340982,0,-0.5215,1.2292,0.7234,0.2134,0.7277 +0xe749,CUS_0xb196,August,50,160-70-2253,Media_Manager,118297.6,10026.13333,2,1,9,3,"Payday Loan, Debt Consolidation Loan, and Auto Loan",0,0,10.97,7,Good,1446.83,28.80056398,31 Years and 0 Months,No,264.0927462,906.8334387,!@9#%8,101.6871484,0,-0.4929,-0.6607,-0.3068,-1.0081,-1.0214 +0xe755,CUS_0x6e5d,August,39,238-58-8923,Entrepreneur,39962.38,3151.198333,6,7,22,5,"Mortgage Loan, Payday Loan, Mortgage Loan, Auto Loan, and Auto Loan",,22.27623945,15.82,10,Standard,1598.676453,39.36220813,9 Years and 9 Months,NM,89.76177618,10000,High_spent_Medium_value_payments,403.59738,0,0.4935,1.3379,2.0138,-1.7036,0.3493 +0xe761,CUS_0x4314,August,43,088-74-9171,Writer,80562.56,,4,3,6.288361749,2,"Auto Loan, Personal Loan, and Personal Loan",,1673,0.79,5,Good,88.98,37.59178409,31 Years and 11 Months,No,136.8869538,667.5547479,High_spent_Medium_value_payments,524.250426,0,1.5807,1.1589,-0.1056,0.8587,-1.2093 +0xe76d,CUS_0x754c,August,44,899-74-8440,Entrepreneur,9897.565,,10,10,26.95700519,9,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, Mortgage Loan, and Personal Loan",34.33836536,20,21.83,14,_,2770.160954,29.27378701,,NM,1391.621952,50.39099319,High_spent_Small_value_payments,204.3163941,0,2.4217,-0.7934,-0.5603,1.1863,-1.6726 +0xe779,CUS_0xab1f,August,29,725-01-4124,Doctor,34052.56,2930.713333,7,6,19.06745738,6,"Credit-Builder Loan, Not Specified, Home Equity Loan, Personal Loan, Home Equity Loan, and Credit-Builder Loan",34.66793508,24.14432282,3.44,11,Bad,2573.12561,29.46396449,14 Years and 10 Months,Yes,162.3864425,66.30787725,High_spent_Small_value_payments,297.6567257,0,0.1707,-0.0599,0.2434,0.6008,-1.4032 +0xe785,CUS_0x2816,August,23,799-35-8165,Musician,62160.87,4940.0725,7,5,22,7,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",,21.00398846,9.92,,Bad,2588.574838,32.80160796,15 Years and 3 Months,Yes,323.5306728,,Low_spent_Large_value_payments,27.50899416,0,-0.8607,1.8664,0.2529,0.5005,0.3104 +0xe791,CUS_0xbca4,August,54,736-57-1275,Entrepreneur,82015.88,6907.656667,0,5,2,2,"Credit-Builder Loan, and Mortgage Loan",12.14816039,11,3.26,5,Good,1259.34,32.01927887,16 Years and 0 Months,No,115.4731023,287.6074154,Low_spent_Medium_value_payments,567.685149,0,-0.6812,0.7235,0.2475,0.8901,-0.6023 +0xe79d,CUS_0x6983,August,49,#F%$D@*&8,Architect,89495.67,7417.9725,1,4,9,2,"Student Loan, and Not Specified",,3.383178928,6.84,4,_,1556.082693,38.15991571,23 Years and 4 Months,No,87.14621471,462.8746074,High_spent_Small_value_payments,451.7764279,0,-2.2459,0.7887,-0.6931,-1.0179,-1.0054 +0xe7a9,CUS_0x7c2f,August,80,641-03-7701,Developer,15982.36,,7,5,34.06745738,7,"Not Specified, Payday Loan, Auto Loan, Not Specified, Not Specified, Payday Loan, and Mortgage Loan",36.14663888,17.67490497,17.08,8,Bad,5090.799508,38.18036541,13 Years and 0 Months,Yes,58.6229418,0,High_spent_Large_value_payments,272.8268882,0,0.1484,-0.664,0.4082,1.0559,-1.3741 +0xe7b5,CUS_0x1a03,August,28,692-28-2431,_______,34552.7,,6,3,9,0,,30.8565276,20,8.68,4,Standard,577.4,24.38575855,32 Years and 5 Months,NM,0,260.9597818,Low_spent_Large_value_payments,298.6793849,0,-0.8692,0.3246,0.1657,1.1704,-0.857 +0xe7c1,CUS_0x6ada,August,56,034-00-7974,Manager,44280.31,,4,3,8,2,"Student Loan, and Credit-Builder Loan",0.941694807,1,7.23,4,Good,1046.3,35.01624766,24 Years and 2 Months,No,72.68864733,70.94872434,High_spent_Medium_value_payments,493.6652117,0,-1.079,-0.3084,-0.5959,1.1458,-0.7852 +0xe7cd,CUS_0xab61,August,30,289-57-5410,Teacher,27099.11,2110.259167,8,4,334,0,,,13,,2,Standard,186.93,28.39292814,,No,0,97.11234101,Low_spent_Small_value_payments,403.9135757,0,0.6185,-0.8509,-1.8727,-2.2421,0.1856 +0xe7d9,CUS_0x11e2,August,39,809-04-1419,Musician,44986.55,,6,5,11,1,Credit-Builder Loan,0,4,10.26,3,Good,698.7722787,25.58628564,20 Years and 0 Months,No,23.26713548,49.60409892,High_spent_Large_value_payments,542.5171477,0,0.5297,0.1499,-0.239,-0.3785,2.2118 +0xe7e5,CUS_0x14ea,August,48,298-76-0431,Teacher,89338.36,,4,5,9.288361749,2,"Home Equity Loan, Payday Loan, and Auto Loan",0.446980857,3,2.3,3,Good,848.609816,34.13915147,19 Years and 10 Months,No,561.1987989,579.5594411,High_spent_Small_value_payments,741.0281745,0,-1.9846,0.4097,-0.6547,-0.2629,0.1745 +0xe7f1,CUS_0xa127,August,49,122-29-7699,_______,31534.94,2426.911667,5,6,1,0,,0,2.338329377,4.99,4,Good,1386.881992,23.22428865,29 Years and 10 Months,No,0,,High_spent_Medium_value_payments,410.7230809,0,-1.5645,0.6199,-0.3476,-0.9672,1.9917 +0xe7fd,CUS_0xabc0,August,42,993-68-8022,Developer,21336.9,,3,5,6,1,Debt Consolidation Loan,,,21.75,7,_,1338.82,25.41662737,10 Years and 11 Months,Yes,11.23033244,56.0509041,Low_spent_Small_value_payments,388.3262635,0,-1.5555,-1.1717,0.0878,-0.8422,0.2003 +0xe809,CUS_0x3e51,August,31,052-80-3776,Accountant,16486.52,1221.876667,4,7,16,0,,24.78890336,19.61335356,1.79,4,Standard,1196.546562,32.84940284,27 Years and 5 Months,Yes,0,57.32648622,Low_spent_Small_value_payments,354.8611804,0,-0.7495,-0.0338,-0.3473,-0.6871,-0.2173 +0xe815,CUS_0x2a45,August,19,021-52-4642,Architect,8459.02,997.9183333,7,7,14,3,"Debt Consolidation Loan, Mortgage Loan, and Not Specified",30.41589192,22,10.36,10,Standard,789.89,33.61806724,13 Years and 2 Months,Yes,18.89415692,,Low_spent_Small_value_payments,336.9680174,0,-0.504,-0.071,0.9054,0.4925,0.8597 +0xe821,CUS_0x5fab,August,38,578-05-9422,Engineer,48254.04,4215.17,3,6,16,3,"Payday Loan, Debt Consolidation Loan, and Auto Loan",17.39291755,11,16.92,8,Standard,210.78,35.16302082,24 Years and 11 Months,NM,72.33336184,209.3976258,High_spent_Small_value_payments,399.7860124,0,-0.1813,-0.1168,2.5572,-1.7504,0.7713 +0xe82d,CUS_0x211c,August,22,859-11-2732,Writer,20628.55,,4,4,9,4,"Debt Consolidation Loan, Payday Loan, Payday Loan, and Mortgage Loan",9.593393363,10,10.69,5,Standard,1276.97,29.85449609,33 Years and 3 Months,Yes,52.37594367,137.6136587,!@9#%8,233.914981,0,0.2583,-1.5536,1.7558,-1.0617,0.9449 +0xe839,CUS_0x30db,August,44,247-06-9289,Journalist,24744.78,2101.065,3,7,5,3,"Payday Loan, Student Loan, and Not Specified",,21,23.95,2,_,134.1,31.44241818,25 Years and 10 Months,Yes,61.4963184,46.3296393,High_spent_Medium_value_payments,352.2805423,0,0.405,-0.8514,0.7116,0.8016,0.4262 +0xe845,CUS_0x1833,August,49,277-68-3924,Architect,11527.73,,3,7,14,1,Auto Loan,12.00394145,12,1.39,3,Standard,532.86,23.33033014,23 Years and 11 Months,NM,5.913472082,43.23742384,Low_spent_Large_value_payments,304.8135207,0,1.8202,-0.0356,-1.4247,0.1096,1.7191 +0xe851,CUS_0x15e7,August,18,948-92-5850,Media_Manager,57407.04,,3,3,18,4,"Payday Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",16.94549859,11,9.64,7,Standard,895.05,28.88395093,16 Years and 0 Months,Yes,128.5306877,105.4021997,!@9#%8,463.1591125,0,-1.0641,2.2081,-1.0665,0.0007,0.5645 +0xe85d,CUS_0x32e4,August,47,470-50-6712,Musician,84378.96,7142.58,6,4,7.288361749,2,"Not Specified, and Debt Consolidation Loan",0.056663251,3.463610867,10.95,1,Good,40.39231232,25.51843693,24 Years and 4 Months,No,122.6797787,501.4997956,High_spent_Medium_value_payments,760.0158867,0,1.5944,1.0267,-0.5702,-1.2368,0.6787 +0xe869,CUS_0xa182,August,44,552-47-8695,Engineer,64794.64,,7,5,31,5,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Payday Loan",37.89591043,20,10.35,12,Bad,2080.18,27.11960926,17 Years and 3 Months,Yes,267.9417566,137.5662222,High_spent_Large_value_payments,401.0473545,0,0.8308,0.1052,-0.6135,-0.3302,0.7498 +0xe875,CUS_0x2fa7,August,28,440-12-8308,Developer,14785.12,,6,9,17,5,"Not Specified, Payday Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",47.38814111,24.84852523,22.41,17,Bad,5312.573537,27.69242966,1 Years and 11 Months,Yes,43.96605325,99.3682226,Low_spent_Medium_value_payments,273.1750575,0,0.3027,2.4838,-0.9475,-1.1762,-0.4357 +0xe881,CUS_0x5e59,August,18,607-24-1113,_______,15303.58,,8,1452,24.95700519,7,"Mortgage Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Not Specified, and Personal Loan",28.1232655,15,5.86,7,_,1825.680954,29.14888404,18 Years and 4 Months,Yes,1391.724764,,High_spent_Medium_value_payments,228.7080048,0,1.4426,-0.4002,0.602,2.4174,0.0933 +0xe88d,CUS_0xb7e,August,24,395-85-0199,Mechanic,14441.54,1369.461667,9,5,23.06745738,6,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",27.92297091,19,9.87,11,Bad,2400.340954,31.07485971,,Yes,47.79952575,103.6749918,Low_spent_Large_value_payments,228.7513612,0,-1.8417,0.7615,0.3747,1.7061,-0.8114 +0xe899,CUS_0x9bef,August,34,722-46-7243,Architect,31641.76,,5,2,3,0,,8.551059998,9,8.06,5,Good,1159.728659,33.43234035,18 Years and 0 Months,No,0,115.7440891,High_spent_Medium_value_payments,390.7738604,0,-0.7309,-0.5357,1.4845,-0.4062,1.9893 +0xe8a5,CUS_0xc47,August,54,449-91-5348,Engineer,55644.14,4908.011667,5,3,6,4,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Payday Loan",31.6550452,21,3.64,4,Standard,147.64,36.43645259,20 Years and 10 Months,No,181.7764245,316.4318837,High_spent_Small_value_payments,252.5928585,0,0.9635,0.1086,0.9793,2.0714,-0.0153 +0xe8b1,CUS_0x8af0,August,27,341-50-0808,Engineer,16050.73,,8,3,10,4,"Auto Loan, Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",13.51085509,9.278140795,12.76,7,Standard,1694.726933,36.92994721,,Yes,51.66243324,37.51320359,Low_spent_Medium_value_payments,322.3804465,0,0.2019,-0.9324,0.4334,-1.4151,0.8998 +0xe8bd,CUS_0x7429,August,30,378-86-7375,Manager,38861.72,3511.476667,4,5,11,1,Mortgage Loan,,1,3.83,9,Good,95.63649081,39.33208652,31 Years and 3 Months,No,26.06920391,138.2693311,High_spent_Medium_value_payments,452.7505505,0,-1.2985,-0.2834,-1.3572,-0.0424,-0.3823 +0xe8c9,CUS_0xa899,August,41,077-54-4259,Accountant,38764.8,2974.4,10,6,34.06745738,2,"Personal Loan, and Personal Loan",,,6.83,16,Bad,2460.546382,28.5847522,8 Years and 11 Months,Yes,73367,65.7341993,!@9#%8,402.0657277,0,-0.2843,1.9508,-1.4892,-0.6323,1.2778 +0xe8d5,CUS_0x23cc,August,39,798-10-4126,_______,85020.54,6962.045,0,5,7,3,"Personal Loan, Mortgage Loan, and Not Specified",11.4619659,9.302830876,4.74,3,Good,1072.87706,38.7345842,,No,205.2113345,198.4297897,High_spent_Small_value_payments,552.5633758,0,-0.3754,-2.862,0.3945,0.0318,-0.0893 +0xe8e1,CUS_0x40c5,August,42,266-57-9907,Journalist,34913.58,2867.648796,4,4,4,4,"Mortgage Loan, Student Loan, Mortgage Loan, and Auto Loan",0,0,5.76,2,Good,758.31,24.66386669,25 Years and 6 Months,No,267.6440927,214.0170547,Low_spent_Small_value_payments,324.8015568,0,-2.1294,0.3955,0.9344,-2.1167,-0.9137 +0xe8ed,CUS_0x2df7,August,18,804-07-5195,Doctor,122915.96,10003.99667,6,6,17,2,"Personal Loan, and Student Loan",17.09136738,14,7.89,3,_,478.02,42.25796267,32 Years and 5 Months,No,123.9844735,323.6015435,High_spent_Medium_value_payments,802.8136496,0,-0.0415,0.0139,-1.6047,0.4781,-0.9042 +0xe8f9,CUS_0x781a,August,37,176-88-1274,Engineer,41770.21,3652.850833,0,7,4,2,"Credit-Builder Loan, and Home Equity Loan",5.458603716,7,11.13,1,_,1083.398064,31.99594321,19 Years and 5 Months,No,51.92273431,299.9091595,Low_spent_Medium_value_payments,337.1525722,0,1.4563,0.8778,2.4063,-1.9115,-0.3467 +0xe905,CUS_0x54bd,August,80,389-25-0255,Journalist,167753.52,,3,3,12,3,"Personal Loan, Not Specified, and Mortgage Loan",,6,-3.38,2,Good,960.4141701,29.18915266,29 Years and 3 Months,No,1190.730221,605.1863891,High_spent_Small_value_payments,859.3178066,0,-1.5513,-1.1379,2.1136,0.1044,1.2596 +0xe911,CUS_0x8f0c,August,42,293-28-7372,Developer,50243.22,,8,3,19,3,"Personal Loan, Auto Loan, and Not Specified",19.10940222,14,12.19,2,_,1161.1,31.7797375,27 Years and 5 Months,Yes,62.89923429,,High_spent_Medium_value_payments,471.4245362,0,0.8232,0.2578,0.6701,1.2025,1.0736 +0xe91d,CUS_0xa1a2,August,25,906-36-6727,Media_Manager,40207.94,3068.661667,7,5,27.06745738,6,"Auto Loan, Student Loan, Not Specified, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",33.16774453,22.27006502,5.07,14,Bad,2315.519562,31.64394673,14 Years and 0 Months,Yes,159.6921422,,Low_spent_Small_value_payments,249.5370319,0,-0.3081,2.8906,-0.3906,-0.5623,-0.703 +0xe929,CUS_0x97e1,August,28,028-51-8765,Writer,8113.06,,9,5,35.06745738,7,"Debt Consolidation Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",36.53618504,18.48330513,20.65,9,Bad,3930.526617,23.97505173,7 Years and 8 Months,Yes,56627,32.01323395,Low_spent_Small_value_payments,264.4183177,0,0.3614,-2.0675,-2.4377,-1.1313,-0.8438 +0xe935,CUS_0x6b8,August,30,011-05-8096,Scientist,13499.855,1026.987917,7,3,1044,2,"Auto Loan, and Debt Consolidation Loan",5.533544152,8,-3.08,0,Standard,453.75,24.03138645,21 Years and 8 Months,NM,12.00028048,128.7636849,Low_spent_Small_value_payments,251.9348263,0,-0.3244,-1.4438,2.4949,0.1011,-1.0206 +0xe941,CUS_0x3149,August,27,271-04-2423,_______,20602.02,1727.835,10,183,23,7,"Debt Consolidation Loan, Auto Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",29.55972525,21.66147758,4.49,13,Bad,5624.191984,33.58771255,3 Years and 4 Months,Yes,93.60095036,,Low_spent_Small_value_payments,260.4907618,0,0.437,-0.9416,0.7755,-0.5398,-0.4474 +0xe94d,CUS_0x44aa,August,48,907-66-8700,Entrepreneur,85656.28,7161.023333,1,3,3,1,Personal Loan,0,1,9.32,1,Good,400.1341144,35.3757981,30 Years and 5 Months,No,52.55004411,,High_spent_Small_value_payments,749.2636329,0,1.2376,0.7766,-1.6845,-0.0028,-1.1115 +0xe959,CUS_0x3ae7,August,44,884-25-9290,Architect,41702.9,3249.241667,7,8,28.06745738,6,"Mortgage Loan, Home Equity Loan, Auto Loan, Not Specified, Not Specified, and Debt Consolidation Loan",,24.32673951,6.31,10,Bad,2844.196938,36.06274311,,Yes,145.6395523,178.8061609,High_spent_Small_value_payments,233.7581654,0,-1.7616,0.892,-0.2492,-0.3965,1.6182 +0xe965,CUS_0x66bc,August,22,864-70-6001,Writer,61266.63,5296.5525,4,6,15,2,"Debt Consolidation Loan, and Mortgage Loan",19.21931793,14.994868,12.45,12,_,648.7091717,33.26013118,10 Years and 0 Months,Yes,74.69387361,249.4992673,Low_spent_Small_value_payments,495.4621091,0,0.4383,-0.7656,0.6076,-0.701,-0.9583 +0xe971,CUS_0x2907,August,21,#F%$D@*&8,Scientist,14125.04,,5,4,7,2,"Mortgage Loan, and Home Equity Loan",4.624445913,7,3,0,Good,446.31,25.4420221,18 Years and 5 Months,No,14.53965628,101.6404006,Low_spent_Small_value_payments,294.0286098,0,-1.9412,0.4737,0.3688,-1.0112,-1.1065 +0xe97d,CUS_0x8207,August,27,459-97-4062,Doctor,34677.86,2725.821667,6,5,16,7,"Student Loan, Student Loan, Not Specified, Mortgage Loan, Payday Loan, Not Specified, and Not Specified",38.76229983,26.74260899,5.57,6,Bad,2639.848081,30.94079909,16 Years and 3 Months,NM,182.5851835,98.36317773,Low_spent_Small_value_payments,281.6338054,0,-0.1635,0.5931,0.6525,-0.9756,0.7349 +0xe989,CUS_0xb725,August,33,755-81-8384,Lawyer,28206.96,2294.58,7,7,26.06745738,7,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Personal Loan, Home Equity Loan, and Personal Loan",40.454002,20.56508975,8.74,15,Bad,2198.291051,36.30501267,14 Years and 6 Months,Yes,135.1337992,20.81628731,!@9#%8,286.7876256,0,-0.8618,0.905,1.2281,-1.2951,0.2254 +0xe995,CUS_0xb446,August,27,477-55-3999,Musician,51627.39,4132.2825,4,7,19,2,"Debt Consolidation Loan, and Debt Consolidation Loan",12.97647,11.95340133,16.03,11,Standard,2772.408491,36.29125449,17 Years and 4 Months,Yes,58.65782244,144.9855087,High_spent_Small_value_payments,469.5849189,0,-0.6157,-0.0413,1.6883,1.1502,1.782 +0xe9a1,CUS_0xba51,August,24,362-65-1233,Scientist,170751.96,,3,4,6,4,"Student Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",,0,7.78,7,Good,1076.56,32.59321806,32 Years and 11 Months,No,443.1054536,,!@9#%8,1119.38533,0,-1.714,-0.2695,-0.0986,2.4098,-0.9964 +0xe9ad,CUS_0x2e4c,August,20,354-71-3215,Lawyer,37679.14,3267.928333,10,6,18.06745738,5,"Mortgage Loan, Mortgage Loan, Payday Loan, Auto Loan, and Payday Loan",28.74743462,18,22.42,7,Bad,5081.280954,38.21806152,10 Years and 9 Months,Yes,95.41117062,69.38248207,High_spent_Small_value_payments,395.2788927,0,0.8226,-0.0791,-0.4594,0.3178,-0.5389 +0xe9b9,CUS_0x3a03,August,31,966-46-5658,Teacher,19435.6,1523.633333,5,4,19,4,"Debt Consolidation Loan, Not Specified, Home Equity Loan, and Auto Loan",21.00196399,17,10.36,11,Standard,652.5460734,28.73627682,13 Years and 4 Months,Yes,44.64073068,71.04393605,High_spent_Medium_value_payments,294.3956228,0,0.6327,-1.4679,-0.5992,-1.962,2.0934 +0xe9c5,CUS_0xdd3,August,41,536-31-0878,Accountant,30802.79,2522.149511,5,5,4.288361749,2,"Personal Loan, Mortgage Loan, and Personal Loan",4.909510935,7,9.18,2,Good,342.4159971,35.21213365,,NM,242.6128566,626.3451939,High_spent_Small_value_payments,276.4394132,0,0.4644,-0.2405,-0.8915,0.4613,-1.3227 +0xe9d1,CUS_0x77da,August,27,134-97-7756,Architect,57294.2,4699.516667,6,3,34,6,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",18.24056656,10.92227968,15.84,11,Standard,1478.893925,22.48354786,18 Years and 5 Months,Yes,253.7824797,,High_spent_Small_value_payments,232.4814239,0,-0.4266,-0.1984,0.8031,0.3332,-0.4323 +0xe9dd,CUS_0x4154,August,34,088-79-9555,Writer,46887.99,4167.3325,7,6,26.06745738,3,"Payday Loan, Not Specified, and Personal Loan",38.71421235,20,7.63,14,_,2869.800954,38.52814193,18 Years and 5 Months,Yes,66.41377765,,Low_spent_Small_value_payments,111.4988304,0,0.8357,-2.5599,0.552,-1.5013,1.2757 +0xe9e9,CUS_0x9449,August,51,574-97-8796,Manager,16857.295,1056.522397,0,5,12,3,"Not Specified, Not Specified, and Payday Loan",14.86991707,9.412654144,4.23,1,Good,815.7266951,33.20831607,22 Years and 9 Months,No,94.86173706,35.22844402,Low_spent_Large_value_payments,317.3394636,0,-1.4699,0.9803,0.7415,0.7643,-0.6385 +0xe9f5,CUS_0x5067,August,33,087-60-1097,Lawyer,35104.32,,3,5,10,4,"Home Equity Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",13.85428222,8.249219874,7.85,7,Good,1278.609707,39.09726347,24 Years and 2 Months,No,75.22465524,260.6715881,!@9#%8,221.0397567,0,-1.1057,2.2445,-0.103,0.1301,-1.2157 +0xea01,CUS_0x3c55,August,18,#F%$D@*&8,Engineer,39234.08,3201.506667,8,9,32.06745738,4,"Payday Loan, Auto Loan, Personal Loan, and Debt Consolidation Loan",34.09778425,19,4.94,14,Bad,2399.430954,30.16395809,,Yes,14203,,Low_spent_Small_value_payments,331.3870915,0,-0.7124,1.4681,-1.924,0.3901,-0.5339 +0xea0d,CUS_0x61d1,August,25,#F%$D@*&8,Entrepreneur,16562.01,1240.1675,7,7,24,2,"Not Specified, and Credit-Builder Loan",23.38525378,15.80607352,23.04,11,Standard,2803.286112,23.58445689,20 Years and 6 Months,Yes,25.54949775,110.0069346,Low_spent_Large_value_payments,258.4603176,0,-0.113,1.3519,-0.9638,-2.2106,0.5632 +0xea19,CUS_0xc4f9,August,43,084-06-5674,Lawyer,92200.68,,2,6,1,1,Auto Loan,8.414701318,6.04816484,4.67,3,Good,1022.192006,36.83737478,28 Years and 3 Months,No,52.43366677,193.6617029,High_spent_Small_value_payments,754.3436303,0,-0.0474,0.3085,1.1909,-0.2219,-0.8489 +0xea25,CUS_0x4af1,August,38,708-55-1426,_______,162955.92,,5,6,2.288361749,2,"Credit-Builder Loan, and Student Loan",4.462346276,8,1.77,0,Good,345.4068338,33.29719501,32 Years and 4 Months,No,175.5876843,813.9175732,High_spent_Large_value_payments,1059.286116,0,0.4524,-0.2517,0.0334,0.7996,0.0641 +0xea31,CUS_0x627a,August,52,564-44-2836,Media_Manager,99776.28,8051.69,4,6,6,4,"Not Specified, Student Loan, Home Equity Loan, and Student Loan",22.24537237,18,-1.66,8,Good,655.1947043,30.13225725,30 Years and 8 Months,No,296.5228181,473.5578742,High_spent_Small_value_payments,339.3195931,0,1.2479,0.2899,0.6982,-1.2217,0.853 +0xea3d,CUS_0x33b8,August,30,659-40-4348,Engineer,16362.68,1536.556667,10,5,19.06745738,6,"Home Equity Loan, Student Loan, Home Equity Loan, Payday Loan, Student Loan, and Credit-Builder Loan",51.51886903,27.50670606,3.36,15,Bad,3170.408622,36.23360634,8 Years and 5 Months,Yes,77.71339407,,Low_spent_Small_value_payments,164.980307,0,-0.1798,-0.3446,-0.9108,-1.5324,1.0725 +0xea49,CUS_0x89a6,August,39,762-87-0890,Entrepreneur,35284.57,,3,4,9,100,"Debt Consolidation Loan, and Personal Loan",0,1,3.92,4,Good,1019.862084,28.72975512,31 Years and 11 Months,No,38.38173942,212.2610979,Low_spent_Medium_value_payments,341.7656123,0,-2.0391,-0.9662,0.2964,2.2005,0.4086 +0xea55,CUS_0x3201,August,26,199-10-2467,Doctor,35336.77,2893.730833,4,5,16,2,"Payday Loan, and Student Loan",16.35034766,14,4.76,2,Standard,1172.87,33.64996741,32 Years and 9 Months,No,31.40243804,,High_spent_Large_value_payments,473.6781972,0,-0.0352,0.5479,-0.3286,-0.1177,-0.9756 +0xea61,CUS_0x4717,August,33,096-05-5633,Developer,11550.325,,5,148,15,2,"Auto Loan, and Credit-Builder Loan",27.19481832,19,1.46,2,Standard,626.7834937,33.08064367,17 Years and 11 Months,No,10.29088528,30.72007101,High_spent_Medium_value_payments,308.2031053,0,0.6954,0.2704,-1.4617,-0.508,-1.15 +0xea6d,CUS_0x70f7,August,39,199-34-7264,Media_Manager,94092.36,7644.03,3,6,17,4,"Mortgage Loan, Payday Loan, Not Specified, and Payday Loan",26.47442315,19,14.93,10,Standard,1338.47,31.74162359,26 Years and 8 Months,Yes,299.5763411,,High_spent_Large_value_payments,629.2773522,0,-1.0865,-0.2384,-0.5481,0.3711,0.7886 +0xea79,CUS_0x8009,August,21,101-91-5657,Mechanic,31598.5,2517.208333,9,7,28.06745738,5,"Payday Loan, Auto Loan, Personal Loan, Not Specified, and Home Equity Loan",,16,18.79,8,Bad,4795.420954,35.38225307,2 Years and 2 Months,Yes,127.8986143,51.05689158,High_spent_Medium_value_payments,296.0450395,0,1.1079,-0.2595,1.5731,-0.2906,-1.0812 +0xea85,CUS_0x355f,August,21,601-12-1746,Architect,18822.02,1821.501667,4,3,19,2,"Debt Consolidation Loan, and Student Loan",18.36657317,16,9.63,10,_,1464.16,36.7942762,16 Years and 3 Months,NM,16.42968449,65.6163237,High_spent_Medium_value_payments,350.1041585,0,0.0318,-0.1823,0.7809,-0.3419,0.1965 +0xea91,CUS_0xb875,August,53,972-49-2910,_______,61203.18,4911.265,7,3,5,777,"Home Equity Loan, Not Specified, Auto Loan, and Student Loan",25.92639763,19,8.29,7,Good,1050.116542,29.07303391,24 Years and 2 Months,No,133.6059354,,Low_spent_Small_value_payments,87.06820251,0,-1.1704,0.6447,1.1031,-1.0343,-1.5463 +0xea9d,CUS_0xcb3,August,38,899-28-6694,Manager,83601.84,7235.82,9,5,30.06745738,7,"Not Specified, Not Specified, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",38.6927581,20,11.87,11,Bad,4514.130954,34.9024859,6 Years and 3 Months,Yes,439.0918486,,Low_spent_Small_value_payments,105.9421717,0,-1.7636,-0.4981,-0.5493,-0.4049,0.7444 +0xeaa9,CUS_0x96a2,August,30,#F%$D@*&8,_______,11586.525,,5,6,18,2,"Mortgage Loan, and Mortgage Loan",20.43552033,15,12,1,Standard,498.68,32.9683489,,Yes,15.46654664,81.66618466,Low_spent_Small_value_payments,287.2216437,0,0.7927,1.2907,0.1558,-0.5106,0.5418 +0xeab5,CUS_0x97fc,August,48,861-65-3607,Doctor,80953.2,,6,3,8,100,"Personal Loan, and Home Equity Loan",,9,5.14,4,_,597.32,38.84564656,23 Years and 2 Months,Yes,111.7287964,106.1433698,High_spent_Medium_value_payments,704.3378338,0,1.7694,-0.0346,-1.5697,1.4727,0.7061 +0xeac1,CUS_0x9395,August,48,147-24-9906,Lawyer,102260,8580.666667,5,5,7,3,"Payday Loan, Credit-Builder Loan, and Mortgage Loan",19.61473856,13,16.08,6,Standard,407.46,24.30390757,,Yes,233.3445043,642.0952483,Low_spent_Medium_value_payments,262.626914,0,0.0801,1.3436,-0.2698,0.4345,0.672 +0xeacd,CUS_0xa8ed,August,27,899-63-9269,Teacher,74866.6,5964.883333,5,4,32,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Payday Loan, and Home Equity Loan",21.41437865,15.24454709,10.3,10,_,2052.296887,32.09618787,8 Years and 2 Months,Yes,277.4580436,,Low_spent_Large_value_payments,221.9495147,0,1.8746,0.0772,0.5197,1.3599,-0.0131 +0xead9,CUS_0x8a31,August,41,767-27-3999,Mechanic,147510.76,,3,7,8,0,,,1.165997853,4.97,3,Good,1667.716589,35.31221074,16 Years and 6 Months,No,0,582.9344225,Low_spent_Small_value_payments,955.3219108,0,-1.0978,1.3187,-0.7696,1.3285,0.4884 +0xeae5,CUS_0xb6aa,August,42,751-09-8599,Doctor,16678.98,,8,7,24.06745738,2,"Home Equity Loan, and Not Specified",29.59139241,13,9.36,9,Standard,2418.860954,28.93846348,7 Years and 8 Months,Yes,14.49060092,132.1709855,Low_spent_Small_value_payments,240.0096256,0,0.3927,0.5158,0.7292,0.0314,0.1471 +0xeaf1,CUS_0x6160,August,28,748-02-2384,Entrepreneur,129233.52,,6,4,7.288361749,0,Student Loan,10.79484938,10.34553402,,0,Standard,1156.299398,32.98519916,26 Years and 10 Months,No,75.60222093,563.8186967,High_spent_Medium_value_payments,1131.662543,0,-1.5031,-0.6558,-0.7794,-1.2407,-1.3779 +0xeafd,CUS_0x529c,August,32,071-87-6290,Manager,110347.2,9184.6,5,3,7.288361749,0,Payday Loan,0,2,3.23,0,_,383.2889023,27.96831724,23 Years and 10 Months,NM,62.73363985,627.9519172,High_spent_Medium_value_payments,918.4178086,0,0.4098,0.0813,-1.3258,0.7005,-0.0484 +0xeb09,CUS_0x7486,August,43,152-01-9858,Lawyer,108129.44,8776.786667,4,3,8,2,"Personal Loan, and Credit-Builder Loan",,14.34244882,19.7,7,Standard,1026.077035,39.70856186,24 Years and 10 Months,NM,144.3196738,343.9408311,High_spent_Medium_value_payments,639.4181618,0,2.0535,-1.1943,-0.2169,0.0759,1.3356 +0xeb15,CUS_0x320e,August,21,011-23-7847,Media_Manager,9812.96,875.7466667,8,3,9,100,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Not Specified, Not Specified, and Debt Consolidation Loan",14.69383192,13,12.39,5,Standard,727.39,28.5245246,,Yes,57.01337983,48.64118836,Low_spent_Medium_value_payments,261.9200985,0,0.3946,-0.813,-0.3091,0.1706,0.1799 +0xeb21,CUS_0x98e6,August,42,792-35-6886,Lawyer,53226.52,,7,4,17,2,"Student Loan, and Auto Loan",17.11770831,14,23.84,4,Standard,816.31,25.37630064,17 Years and 11 Months,NM,60.92730313,98.58578786,High_spent_Large_value_payments,523.7412423,0,-1.5759,0.4913,0.4567,0.124,1.6163 +0xeb2d,CUS_0x3003,August,31,843-29-2146,Developer,15129.9,,7,9,29.06745738,9,"Auto Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",35.8447936,16,8.73,8,_,2025.200954,32.30599335,17 Years and 5 Months,Yes,70.5054541,98.71312196,Low_spent_Small_value_payments,210.743636,0,-0.6188,1.0702,0.0232,-0.5429,-1.2956 +0xeb39,CUS_0x39ad,August,31,149-63-5296,Mechanic,63525.64,5409.803333,4,7,9,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",,5,10.73,2,Good,895.8835114,40.75835198,30 Years and 9 Months,NM,145.92956,,High_spent_Medium_value_payments,540.7695108,0,2.0855,-1.289,0.7628,-0.414,0.8767 +0xeb45,CUS_0x6ef,August,26,574-48-5259,Engineer,21613.57,1716.130833,4,7,18,7,"Debt Consolidation Loan, Not Specified, Personal Loan, Home Equity Loan, Student Loan, Personal Loan, and Payday Loan",,11,18.42,5,Standard,878.38,36.78939845,14 Years and 6 Months,NM,99.97414137,79.74033835,Low_spent_Large_value_payments,261.8986036,0,0.5008,-0.2275,0.5453,-0.0909,-0.069 +0xeb51,CUS_0x64d6,August,33,560-35-4678,Lawyer,20040.64,1508.053333,3,6,9,2,"Debt Consolidation Loan, and Payday Loan",17.12101233,11.95660224,10.68,5,Good,1429.103216,23.23624795,32 Years and 8 Months,No,32.71828748,95.14376283,Low_spent_Medium_value_payments,302.943283,0,0.9879,2.1064,0.0873,2.5566,0.0153 +0xeb5d,CUS_0x4574,August,26,115-33-9294,Mechanic,40341.16,3602.763333,2,5,1,4,"Debt Consolidation Loan, Payday Loan, Auto Loan, and Payday Loan",10.81975689,11,8.33,4,Good,1183.73,32.13925263,20 Years and 5 Months,No,113.0211027,389.6969803,Low_spent_Small_value_payments,147.5582503,0,0.3037,-1.0071,0.7509,0.1666,-0.6941 +0xeb69,CUS_0x7348,August,49,230-65-4556,Journalist,88859.37,7517.9475,5,4,7.288361749,0,Personal Loan,15.59158617,14,-0.51,4,Good,473.15,38.04843684,22 Years and 10 Months,NM,49.22129745,535.6884411,High_spent_Large_value_payments,826.8224725,0,-0.5573,-0.058,-0.5864,-0.0927,1.4709 +0xeb75,CUS_0x81f4,August,39,798-70-4000,Writer,29485.2,,8,8,20.88954781,7,"Debt Consolidation Loan, Personal Loan, Student Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",37.22102463,26.0582607,15.33,6,_,4485.791589,32.08048195,2 Years and 6 Months,Yes,1476.89752,128.9878449,Low_spent_Small_value_payments,213.9945534,0,0.1302,1.2973,1.9229,-1.6145,0.4696 +0xeb81,CUS_0xc702,August,28,559-27-4003,Manager,31959.4,,8,10,29.95700519,9,"Student Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Auto Loan, Credit-Builder Loan, Payday Loan, and Student Loan",,22,29.29,9,Bad,2976.860954,35.26286516,6 Years and 4 Months,Yes,1464.42016,100.0584039,High_spent_Small_value_payments,161.3170634,0,1.0193,-1.0322,0.1987,-0.0791,-0.8388 +0xeb8d,CUS_0x51bf,August,51,684-71-5126,Writer,88716.28,7476.023333,5,1308,5.288361749,2,"Payday Loan, and Personal Loan",18.45395074,17,18.75,3,Standard,58.82,24.06004568,20 Years and 10 Months,Yes,144.1698681,826.914682,Low_spent_Medium_value_payments,476.4552443,0,0.559,0.1484,-1.3705,1.9122,2.1306 +0xeb99,CUS_0x290b,August,29,833-02-7565,Scientist,18508.39,1461.834895,7,7,33,2,"Home Equity Loan, and Student Loan",25.40073726,,8.48,8,Bad,2384.609577,31.34993835,19 Years and 3 Months,Yes,133.6133238,,!@9#%8,318.2727761,0,-0.0625,0.416,0.7307,0.4234,-0.9531 +0xeba5,CUS_0x4b89,August,22,920-87-0240,Lawyer,8996.265,740.68875,4,5,20.06745738,2,"Personal Loan, and Home Equity Loan",26.26406416,17,15.07,5,Standard,2623.410954,29.08898402,15 Years and 4 Months,Yes,12.37170524,44.45767213,Low_spent_Small_value_payments,280.5192097,0,-0.5903,0.1071,-1.2745,-0.3608,-1.5321 +0xebb1,CUS_0xb7c4,August,28,581-05-4994,Engineer,39700.24,3080.353333,10,5,25.06745738,5,"Personal Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",44.40701656,21.59628622,9.98,7,Bad,3161.313385,26.83579859,12 Years and 5 Months,Yes,136.5763611,49.96735888,High_spent_Large_value_payments,334.7713254,0,-0.9924,-2.6898,-0.2432,0.2377,0.2898 +0xebbd,CUS_0xaa5b,August,27,964-98-3019,Entrepreneur,18671.92,1546.993333,2,7,11,4,"Payday Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",,,7.71,,Good,493.4649157,26.43142997,21 Years and 8 Months,No,57.15643422,,Low_spent_Medium_value_payments,246.2889833,0,-0.0929,1.4289,-1.2226,-0.4643,-1.5964 +0xebc9,CUS_0x569b,August,36,563-39-5850,_______,16435.27,,10,8,29.88954781,8,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",29.29831675,19,8.01,9,Bad,3414.12,29.65909252,10 Years and 9 Months,Yes,1398.972338,168.322128,Low_spent_Small_value_payments,181.0360365,0,-0.0652,-0.9104,-0.0294,-2.3371,-0.3989 +0xebd5,CUS_0x1d6f,August,18,197-05-2509,_______,17438.8,,8,11,16,5,"Not Specified, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,18,20.68,9,Bad,2635.91,30.58534347,9 Years and 9 Months,Yes,44.2353255,,Low_spent_Small_value_payments,218.8468092,0,-0.8573,2.7456,-0.4956,-1.1408,0.8159 +0xebe1,CUS_0x792b,August,28,535-06-2184,Engineer,43518.87,3567.5725,8,7,7,6,"Student Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",17.3298515,11,14.82,5,Standard,1284.78,34.76479904,8 Years and 8 Months,Yes,183.1832666,10000,High_spent_Large_value_payments,341.7287787,0,-0.5465,-1.6856,1.4112,1.636,0.6111 +0xebed,CUS_0x6689,August,39,538-47-6608,Entrepreneur,35996.23,,4,6,17,6,"Not Specified, Credit-Builder Loan, Auto Loan, Not Specified, Not Specified, and Payday Loan",23.08820954,17,16.81,7,Standard,767.11,40.28621908,15 Years and 6 Months,Yes,143.5268258,213.8300702,Low_spent_Small_value_payments,212.7116873,0,-0.2974,-0.9363,-0.8451,-0.5523,0.0983 +0xebf9,CUS_0x6ba3,August,25,531-12-1324,Developer,35310.83,,5,5,5,2,"Debt Consolidation Loan, and Not Specified",,9,9.74,1,_,813.8775904,25.60107563,31 Years and 3 Months,No,31.42723883,108.4274715,High_spent_Small_value_payments,442.4367623,0,-0.8561,0.1671,-0.9473,-0.9144,0.4632 +0xec05,CUS_0xbce2,August,44,968-51-7695,_______,68380.29,5448.3575,4,4,18,3,"Auto Loan, Debt Consolidation Loan, and Home Equity Loan",21.10196773,14,4.74,9,Standard,1293.3,39.99516911,19 Years and 11 Months,No,105.8878371,,High_spent_Small_value_payments,591.7307463,0,0.6855,-0.2788,-0.7975,0.3045,-1.0856 +0xec11,CUS_0xbc05,August,30,563-94-0929,Entrepreneur,20870.46,,8,8,17.95700519,7,"Mortgage Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",37.45846233,24.64405081,13.34,10,Bad,3179.910212,41.49142553,15 Years and 10 Months,Yes,1439.620863,,Low_spent_Small_value_payments,75.43698145,0,-0.5969,-0.3176,-0.5016,1.5008,0.9364 +0xec1d,CUS_0x5b22,August,43,810-51-7808,Accountant,81764.54,,1,6,7,4,"Personal Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",,1.209369101,9.28,2,Good,854.8275176,26.70791153,30 Years and 11 Months,No,475.4367995,305.2816619,Low_spent_Medium_value_payments,488.8282779,0,-0.6084,0.5634,-1.877,-0.0938,-0.0451 +0xec29,CUS_0x995d,August,22,586-31-9261,Doctor,44418.54,3626.545,9,7,33,8,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, Student Loan, Not Specified, and Personal Loan",33.6221922,,4.85,13,Bad,1490.443235,24.7544437,8 Years and 5 Months,NM,233.6362078,10000,Low_spent_Small_value_payments,44.07641174,0,-0.8081,0.3079,2.011,0.6831,-0.8462 +0xec35,CUS_0x82bd,August,38,199-83-0023,Scientist,171280.88,14157.40667,2,6,11,1,Mortgage Loan,10.61210999,10,5,3,Good,382.7880491,35.79160618,16 Years and 6 Months,No,115.3288918,1291.977819,Low_spent_Large_value_payments,408.8364114,0,0.7503,-0.5118,0.4798,0.2213,-0.2684 +0xec41,CUS_0x56c,August,41,646-03-4153,Mechanic,30385.07,,6,7,7,0,,,12,9.44,6,Standard,951.4,37.0070073,17 Years and 0 Months,No,0,294.6710344,Low_spent_Small_value_payments,271.7378823,0,-0.7179,-2.0147,0.2994,-0.818,2.3507 +0xec4d,CUS_0xb743,August,80,688-56-1839,Mechanic,34652.7,2975.725,6,7,14,3,"Payday Loan, Personal Loan, and Personal Loan",17.76473735,16,9.56,4,Standard,1096.33,38.34088887,20 Years and 4 Months,NM,64.6803123,,High_spent_Medium_value_payments,362.4525677,0,-0.8904,1.6193,0.3616,0.5246,0.4608 +0xec59,CUS_0x53f7,August,54,623-92-8926,Lawyer,62773.2,5370.1,3,4,18.28836175,2,"Payday Loan, and Mortgage Loan",3.6598195,6,11.22,7,Standard,746.09,22.91397186,28 Years and 3 Months,Yes,92.25412507,,High_spent_Small_value_payments,530.6858693,0,1.6477,-0.1103,0.2594,0.1672,0.6645 +0xec65,CUS_0x1d72,August,18,034-71-6292,Mechanic,54027,4269.25,6,4,8,2,"Home Equity Loan, and Not Specified",,11,7.2,4,Good,482.08,31.63309526,32 Years and 2 Months,No,53.26088663,85.33767763,High_spent_Small_value_payments,548.3264357,0,1.225,0.24,-2.044,-1.6218,-0.4167 +0xec71,CUS_0xa0c8,August,80,704-21-2271,Writer,16489.74,,4,3,10,3,"Mortgage Loan, Auto Loan, and Personal Loan",18.40790588,,18.18,5,Standard,1188.695005,40.41244981,12 Years and 6 Months,Yes,103.5215101,53.00604553,High_spent_Small_value_payments,299.9262548,0,-0.1153,-0.1827,-1.661,0.4219,-1.0264 +0xec7d,CUS_0x9297,August,31,#F%$D@*&8,Doctor,37823.27,2994.939167,3,5,11.28836175,2,"Student Loan, and Not Specified",12.2295557,12,7.14,8,Good,459.4544987,25.04854301,24 Years and 9 Months,No,59.0391824,580.2867131,High_spent_Small_value_payments,364.2960873,0,-1.1143,-0.0808,1.1767,-0.1359,-0.0181 +0xec89,CUS_0x848d,August,30,243-02-6463,Media_Manager,143469.16,11690.76333,4,1172,10,0,,,,7.94,5,Standard,858.9582655,34.69545495,27 Years and 6 Months,Yes,0,102.4051989,High_spent_Large_value_payments,1306.671134,0,0.052,-1.3489,-1.3594,1.6788,-0.9282 +0xec95,CUS_0x8159,August,44,891-07-9515,Mechanic,10728.4,720.0333333,6,3,4651,100,,,9,10.95,4,Good,1277.928694,34.01710114,16 Years and 9 Months,No,0,80.90233955,Low_spent_Medium_value_payments,279.8770688,0,-0.9032,1.2072,-1.3622,0.003,-1.3024 +0xeca1,CUS_0x30c6,August,31,044-69-2702,Musician,68469.6,,7,6,33,5,"Auto Loan, Student Loan, Mortgage Loan, Student Loan, and Home Equity Loan",37.39252157,19,5.16,11,Bad,1865.28,32.72195055,6 Years and 4 Months,Yes,230.3927541,144.7640661,High_spent_Medium_value_payments,424.9231798,0,-0.5456,0.5699,2.1047,-0.1233,0.206 +0xecad,CUS_0x6fbe,August,27,941-39-0627,Musician,27032.89,,6,4,17,3,"Student Loan, Debt Consolidation Loan, and Auto Loan",24.61301842,20,12.61,7,Standard,1181.93,24.87190016,25 Years and 4 Months,Yes,55.08103675,252.4140071,!@9#%8,181.0790395,0,2.2024,0.2257,0.4694,-1.0534,0.4977 +0xecb9,CUS_0x6dfc,August,80,858-22-2150,Lawyer,108952.35,9203.3625,4,4,6.288361749,2,"Personal Loan, Personal Loan, and Debt Consolidation Loan",7.548222707,8,6.04,1793,Standard,544.75,39.31811692,28 Years and 6 Months,No,230.6536457,509.9546249,High_spent_Large_value_payments,839.6654404,0,-0.9295,-1.6259,0.0383,0.2185,-0.2905 +0xecc5,CUS_0x498a,August,45,155-92-8974,Scientist,18990.85,1531.570833,6,6,30,8,"Debt Consolidation Loan, Student Loan, Auto Loan, Mortgage Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",18.34023772,,28.71,9,Bad,2878.45,29.45011031,13 Years and 3 Months,Yes,89.32400429,205.5481702,Low_spent_Small_value_payments,148.2849089,0,-2.0762,0.973,-0.9701,0.1392,-0.4202 +0xecd1,CUS_0xa2b0,August,30,785-25-4393,Accountant,30536.26,,4,1,7,0,,7.894385302,9,0.24,3,Good,419.2803765,31.01326904,32 Years and 3 Months,No,0,205.1365589,High_spent_Small_value_payments,347.3614779,0,-3.8304,0.127,0.4681,-2.268,-1.4505 +0xecdd,CUS_0x4269,August,19,686-50-2172,_______,73888.42,6077.368333,4,5,17,4,"Student Loan, Credit-Builder Loan, Not Specified, and Auto Loan",17.55959075,,10.81,4,Standard,604.85,34.42810778,27 Years and 3 Months,Yes,244.2649025,90.71501561,High_spent_Medium_value_payments,522.7569152,0,0.763,-0.0243,-0.0469,-0.4692,-1.383 +0xece9,CUS_0xc6f9,August,18,370-42-6142,Teacher,8763.22,,5,7,1272,6,"Mortgage Loan, Mortgage Loan, Auto Loan, Student Loan, Payday Loan, and Payday Loan",17.17681415,13.81263247,11.28,8,Standard,2433.678183,35.62348055,10 Years and 5 Months,Yes,22.51717724,55.44589959,Low_spent_Medium_value_payments,273.2637565,0,0.0559,0.7294,0.4068,-0.3763,2.1775 +0xecf5,CUS_0x9648,August,33,185-10-0638,Doctor,136435.2,,4,3,5,3,"Student Loan, Debt Consolidation Loan, and Student Loan",24.18290745,19,17.78,9,_,232.6553451,32.57022859,26 Years and 9 Months,NM,236.7443535,349.3868196,High_spent_Medium_value_payments,863.3879977,0,-0.8069,-0.1617,-0.1073,1.4541,-0.3142 +0xed01,CUS_0x57f7,August,28,#F%$D@*&8,Mechanic,14906.56,,6,6,20,2,"Student Loan, and Payday Loan",34.95495912,19.77585708,7.63,12,_,2950.859091,34.0574903,10 Years and 3 Months,Yes,20.69254628,74.95404368,!@9#%8,300.3747434,0,-1.3989,2.2054,0.0849,-0.47,0.1837 +0xed0d,CUS_0xbc23,August,39,474-38-7638,Entrepreneur,69779.8,5695.983333,3,6,12,5,"Mortgage Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Mortgage Loan",20.46433521,,18.99,7,Standard,2349.79,38.7669578,15 Years and 6 Months,NM,254.9681947,627.5291028,Low_spent_Small_value_payments,,0,0.0299,0.4464,0.3747,-0.2854,1.1299 +0xed19,CUS_0x7b62,August,22,722-22-8364,Doctor,13848.89,1152.074167,4,4,18,2,"Mortgage Loan, and Debt Consolidation Loan",17.21265011,11.81976996,5.77,2,Standard,70.77993454,29.4210158,26 Years and 11 Months,No,12.6634447,70.1456535,Low_spent_Small_value_payments,322.3983185,0,-2.0081,-0.7348,-0.4106,-0.284,-1.102 +0xed25,CUS_0x71ab,August,45,#F%$D@*&8,Media_Manager,7226.435,662.2029167,8,5,20,3,"Mortgage Loan, Student Loan, and Not Specified",16.19290308,14,8.72,9,Standard,1533.48,32.23947012,10 Years and 5 Months,Yes,16.19350655,18.6870462,Low_spent_Medium_value_payments,311.3397389,0,0.4675,-0.5852,-0.8442,0.2879,0.8273 +0xed31,CUS_0x4a97,August,34,886-52-2198,Writer,33765.68,,0,5,8,1,Payday Loan,9.355867245,10,1.27,1,Good,434.8888419,30.08457338,21 Years and 2 Months,No,22.33879869,333.357079,Low_spent_Small_value_payments,225.3500584,0,-1.0566,0.1953,0.4987,-2.0513,0.8656 +0xed3d,CUS_0x253c,August,35,399-03-5425,Developer,49128.9,4231.075,8,3,29,6,"Not Specified, Payday Loan, Personal Loan, Home Equity Loan, Personal Loan, and Auto Loan",,,18.88,7,Standard,2574.1,37.83616703,14 Years and 5 Months,Yes,169.5292211,98.50778274,High_spent_Medium_value_payments,405.0704962,0,0.7491,0.1703,-0.2788,0.6252,0.3435 +0xed49,CUS_0x2527,August,24,420-33-6964,Musician,7567.595,,10,5,21.06745738,5,"Student Loan, Home Equity Loan, Home Equity Loan, Personal Loan, and Not Specified",36.51584077,21,22.65,11,Bad,4917.350954,29.2964121,13 Years and 3 Months,Yes,27.51958814,,Low_spent_Medium_value_payments,275.2348471,0,-2.0129,0.7203,-0.7679,-0.2201,-0.0249 +0xed55,CUS_0x989e,August,37,131-36-4638,Teacher,19047.38,1430.281667,6,8,27.06745738,6,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",,23.03527129,29.54,8,Bad,3537.272602,29.23353019,2 Years and 10 Months,Yes,55.99002101,26.55836793,High_spent_Large_value_payments,273.7594898,0,0.739,-0.2695,1.5398,0.1004,0.626 +0xed61,CUS_0x33ba,August,19,179-95-2570,Scientist,79878.52,6535.543333,3,1,7,2,"Not Specified, and Personal Loan",6.930817737,9,7.42,8,Good,171.4357904,36.04322266,25 Years and 3 Months,No,81.1699913,552.5856435,!@9#%8,383.2818469,0,-0.908,0.5394,0.3661,-0.2909,1.8599 +0xed6d,CUS_0x7f73,August,46,342-72-4971,Architect,31329.83,2598.819167,5,3,6,0,,23.96320161,19,5.25,4,Good,628.91,32.2877332,27 Years and 11 Months,No,0,164.9415871,!@9#%8,374.9403296,0,0.3526,-0.0828,0.6629,0.0064,0.0754 +0xed79,CUS_0x8049,August,36,744-05-2416,Media_Manager,65891.85,5326.9875,4,4,5,4,"Mortgage Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",22.26960659,17,10.83,3,Standard,454.19,27.31180446,,Yes,118.882674,50.49215253,High_spent_Large_value_payments,603.3239235,0,-0.5216,-2.4533,-0.3278,0.5175,1.9989 +0xed85,CUS_0x76af,August,31,332-27-4330,_______,9955.255,,3,7,19,4,"Auto Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",,20,6.34,10,Standard,447.15,28.77570688,26 Years and 11 Months,Yes,18.4367866,80.50004376,Low_spent_Medium_value_payments,264.523628,0,0.7984,0.2151,0.0988,-0.117,-0.3364 +0xed91,CUS_0xaf47,August,29,078-24-5894,Accountant,127273.88,,8,4,14,1,Mortgage Loan,19.97907506,14,8.27,,Standard,506.0528972,43.41045958,25 Years and 9 Months,No,60.43215334,11095.58002,Low_spent_Large_value_payments,838.1212643,0,0.2472,1.2261,-1.0711,-0.4291,-1.5425 +0xed9d,CUS_0x5cd2,August,26,130-39-6294,Doctor,39318.5,3170.541667,6,9,26.06745738,6,"Credit-Builder Loan, Personal Loan, Payday Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",40.07412281,25.50954944,25.03,14,Bad,3717.293739,31.75998735,5 Years and 10 Months,Yes,137.4278479,104.857105,High_spent_Medium_value_payments,298.0489258,0,-0.4163,0.3385,-0.4216,0.1885,0.2902 +0xeda9,CUS_0x9f8a,August,26,572-19-4724,Writer,8361.59,,10,7,34.06745738,7,"Personal Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",,23.0332643,9.35,6,_,2258.268229,36.04234655,17 Years and 11 Months,Yes,27.87815482,10000,Low_spent_Small_value_payments,253.5700404,0,-1.4306,0.1251,0.069,-0.9534,-1.0063 +0xedb5,CUS_0x1249,August,32,851-75-4209,Teacher,9529.855,688.1545833,9,8,26,3,"Not Specified, Payday Loan, and Auto Loan",,15,7.2,10,Bad,1818.36,35.67904963,7 Years and 2 Months,Yes,12.01094253,50.63203546,Low_spent_Small_value_payments,296.1724803,0,0.26,0.0868,0.9161,-0.286,-0.4067 +0xedc1,CUS_0x5c92,August,24,515-12-7106,Doctor,19681.08,,4,4,16,3,"Not Specified, Mortgage Loan, and Payday Loan",,9.4531953,10.41,1,Standard,1251.780329,27.72035106,18 Years and 11 Months,Yes,33.87070847,,!@9#%8,258.9217274,0,-0.1047,-0.0068,0.402,-0.8904,0.0398 +0xedcd,CUS_0x35b9,August,18,854-53-4727,Developer,57943.41,4732.6175,8,8,20.95700519,6,"Mortgage Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",,24,21.78,15,Bad,5113.480954,41.79579429,10 Years and 11 Months,Yes,1524.177498,164.3426497,!@9#%8,323.6912332,0,0.6702,2.0128,0.1249,-0.4195,0.0783 +0xedd9,CUS_0x2219,August,40,453-62-6215,Architect,161007.32,13305.27667,4,2,11,4,"Payday Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",0,1,-2.55,3,Good,615.92,30.22221054,,No,421.1804078,232.9534266,High_spent_Large_value_payments,916.3938322,0,1.3886,-0.3338,0.9366,-1.406,-0.4579 +0xede5,CUS_0xa1c1,August,80,564-34-1623,_______,18760.69,1331.390833,10,10,22.95700519,9,"Not Specified, Auto Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",52.54120188,30.27775219,7.96,6,Bad,1730.890101,29.55461537,15 Years and 0 Months,Yes,1424.635672,37.934895,High_spent_Medium_value_payments,199.5181468,0,0.0021,-1.1113,-1.2769,0.0179,-0.0597 +0xedf1,CUS_0xa843,August,80,#F%$D@*&8,Writer,76804.72,5942.743352,10,9,16.88954781,8,"Payday Loan, Not Specified, Credit-Builder Loan, Student Loan, Mortgage Loan, Personal Loan, Student Loan, and Payday Loan",90,2587,25.93,8,Bad,4811.23,34.22130241,1 Years and 6 Months,NM,2097.931761,249.2783903,High_spent_Medium_value_payments,361.149082,0,-1.7677,-1.0168,0.0464,-0.4297,0.7119 +0xedfd,CUS_0x228d,August,35,848-58-5437,Musician,23357.87,,4,5,8.067457376,4,"Payday Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",20.94936585,13,17.38,5,Standard,1513.470954,27.8011382,6 Years and 5 Months,Yes,44.87283728,79.07626401,High_spent_Medium_value_payments,300.1795274,0,-0.1789,0.9579,-0.9175,0.307,-2.2235 +0xee09,CUS_0x3d57,August,26,833-70-3589,Writer,45834.57,3816.5475,7,7,19,2,"Student Loan, and Mortgage Loan",,19.40422728,15.07,8,_,2749.215941,38.61901989,15 Years and 10 Months,Yes,54.29309306,111.7789611,High_spent_Medium_value_payments,465.5826959,0,-0.0161,0.9558,0.1245,-0.1097,-0.6944 +0xee15,CUS_0x810,August,39,666-51-5857,Accountant,68470.86,,7,4,12,5,"Not Specified, Mortgage Loan, Not Specified, Student Loan, and Student Loan",15.17611902,12,18.49,10,Standard,965.14,36.30424055,16 Years and 10 Months,Yes,226.9156156,60.34071593,High_spent_Large_value_payments,541.2341685,0,-0.8762,-1.0407,-0.1368,0.7509,-0.7254 +0xee21,CUS_0x60e3,August,31,351-59-3736,Journalist,53945.85,,7,6,23,2,"Payday Loan, and Not Specified",39.50748703,24,11.82,11,_,2352.38,30.34380438,9 Years and 2 Months,Yes,71.11290618,10000,High_spent_Medium_value_payments,556.683271,0,0.2498,-1.7738,1.5891,0.6307,-1.4266 +0xee2d,CUS_0xc216,August,19,011-44-1570,Scientist,19028.45,1497.704167,10,10,16.95700519,7,"Credit-Builder Loan, Auto Loan, Personal Loan, Student Loan, Auto Loan, Personal Loan, and Student Loan",25.7941657,,16.16,6,Bad,3160.146343,33.94251232,12 Years and 11 Months,Yes,1402.332577,,Low_spent_Small_value_payments,116.5982273,0,-1.0203,-1.3774,-0.4407,-0.7194,-1.3278 +0xee39,CUS_0x6df9,August,24,859-34-6416,Developer,11486.08,1067.173333,8,7,11,3,"Mortgage Loan, Payday Loan, and Home Equity Loan",,13,11.73,9,Standard,550.98,39.19834044,17 Years and 4 Months,Yes,23.08311051,43.76780955,Low_spent_Medium_value_payments,319.8664133,0,0.994,0.6379,-0.6659,-1.5354,1.0541 +0xee45,CUS_0x6ad2,August,40,025-76-6023,Media_Manager,35643.6,3046.3,4,3,9,100,"Auto Loan, Personal Loan, Auto Loan, and Personal Loan",28.51858317,19,16.48,12,Standard,151.7942498,34.8313927,6 Years and 4 Months,Yes,60.03954017,89.30267123,High_spent_Medium_value_payments,413.5422472,0,1.556,0.6598,-1.8292,0.1697,0.1838 +0xee51,CUS_0x48f7,August,20,989-32-0623,Lawyer,35699.53,2864.960833,6,5,1293,0,,20.08635813,13,,5,Standard,397.35,24.18918022,30 Years and 11 Months,Yes,0,153.6561902,Low_spent_Large_value_payments,402.8398931,0,-0.7287,-1.0075,0.0926,-1.4751,0.2245 +0xee5d,CUS_0x4caa,August,18,715-08-6034,Scientist,53611.71,4733.6425,6,5,8,3,"Mortgage Loan, Student Loan, and Credit-Builder Loan",,15,20.82,8,Standard,1458.84,31.65969226,7 Years and 9 Months,Yes,87.35712884,75.11073091,High_spent_Large_value_payments,550.8963902,0,-1.266,1.5259,2.001,0.4884,-1.1756 +0xee69,CUS_0x7d6e,August,19,#F%$D@*&8,Journalist,15508.43,,4,4,16,4,"Home Equity Loan, Home Equity Loan, Student Loan, and Not Specified",18.35609693,,3.07,1,Standard,1193.492576,33.1089272,30 Years and 8 Months,Yes,43.05789457,,Low_spent_Medium_value_payments,335.5944642,0,0.6262,1.5868,0.634,-0.6452,-0.7353 +0xee75,CUS_0xb545,August,31,148-27-1804,Architect,52977,4595.75,8,9,24.88954781,7,"Not Specified, Debt Consolidation Loan, Auto Loan, Auto Loan, Student Loan, Student Loan, and Not Specified",,22,7.72,6,Bad,2578.67,31.68303978,7 Years and 6 Months,Yes,1572.627719,329.280166,!@9#%8,133.3370341,0,1.7336,1.9376,0.1415,-1.8128,2.5397 +0xee81,CUS_0x5e05,August,28,559-07-5598,Teacher,29283.91,,3,5,8,2,"Mortgage Loan, and Not Specified",4.55438533,4,12.33,2,_,309.61,27.58653662,31 Years and 3 Months,No,36.20844627,,Low_spent_Medium_value_payments,338.4424819,0,2.13,-0.4305,0.7923,0.8727,-1.7424 +0xee8d,CUS_0x48fe,August,22,#F%$D@*&8,Writer,71843.52,5836.96,7,6,10,0,,17.49118085,11,13.82,8,_,369.7,41.29231886,13 Years and 5 Months,NM,0,248.2689759,Low_spent_Small_value_payments,625.4270241,0,0.2421,-0.0032,-0.019,-1.1303,0.5307 +0xee99,CUS_0x54bf,August,28,542-71-6415,Doctor,7153.435,,8,9,25.06745738,2,"Personal Loan, and Personal Loan",27.57277533,13.08683396,16.98,10,Standard,1660.866891,32.32952168,14 Years and 2 Months,Yes,7.054436355,68.34597181,Low_spent_Small_value_payments,241.0912622,0,-0.2085,0.6333,-0.3677,0.4166,1.5876 +0xeea5,CUS_0x3dd5,August,18,853-66-3280,Mechanic,15862.67,,374,10,29.06745738,6,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Payday Loan, Auto Loan, and Not Specified",20.54509532,,18.36,13,Bad,4987.070954,27.02703627,8 Years and 0 Months,NM,76.60381293,88.92315434,Low_spent_Small_value_payments,202.4416614,0,-0.7479,0.615,0.7518,0.0275,0.5728 +0xeeb1,CUS_0x8627,August,38,896-61-5112,Mechanic,12549.985,828.8320833,7,5,13,1,Not Specified,17.66372405,15,3.87,6,Standard,803.44,31.30995226,32 Years and 3 Months,No,9.947697793,30.31723326,Low_spent_Large_value_payments,312.6182773,0,0.0027,0.0172,1.0431,0.5307,0.9664 +0xeebd,CUS_0xacb2,August,26,505-98-5428,Scientist,74478.72,6439.56,8,6,21,100,"Auto Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",42.90245019,27.7746836,24.36,8,Bad,4224.058102,32.52476224,14 Years and 5 Months,Yes,499.7320248,657.7577214,Low_spent_Small_value_payments,,0,0.4057,0.6746,-0.6357,0.3035,-0.7529 +0xeec9,CUS_0x9244,August,43,481-35-7248,Scientist,48818.1,4293.175,8,6,21.06745738,6,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Not Specified, and Not Specified",,24.7200361,1.43,12,Bad,2748.62591,32.98870521,17 Years and 5 Months,Yes,162.3432228,177.4752134,High_spent_Medium_value_payments,312.7787758,0,-0.2285,1.3145,-0.4129,0.4903,1.4849 +0xeed5,CUS_0x3881,August,43,354-99-3306,Engineer,98459.7,8165.975,3,7,9,4,"Personal Loan, Payday Loan, Auto Loan, and Auto Loan",11.62792114,12,1.8,3,Good,24.1,30.80000189,27 Years and 0 Months,No,196.5613025,694.7113861,Low_spent_Medium_value_payments,205.3248114,0,0.2099,0.4592,-1.5219,-0.0165,2.5569 +0xeee1,CUS_0x40d0,August,29,372-92-8319,_______,60462.44,5081.536667,7,7,26,7,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Payday Loan, Student Loan, Student Loan, and Student Loan",,19.50743761,8.19,10,Standard,1607.229143,31.81819817,7 Years and 11 Months,NM,319.7903879,355.5141781,Low_spent_Large_value_payments,102.8491006,0,-0.0521,1.4031,0.2734,1.0423,-0.9778 +0xeeed,CUS_0x4ace,August,26,719-15-2592,Media_Manager,19280.73,,5,9,33.06745738,2,"Auto Loan, and Not Specified",19.89931951,12.95512842,10.67,10,_,2831.687246,33.074476,9 Years and 11 Months,NM,17.67703579,10000,Low_spent_Medium_value_payments,278.5818579,0,-0.3435,0.1503,-2.003,1.3359,1.4957 +0xeef9,CUS_0x4900,August,34,518-03-9456,Teacher,17666.82,,8,5,3,2,"Mortgage Loan, and Debt Consolidation Loan",,21.83126253,2.77,0,Good,385.7826058,34.55108371,26 Years and 5 Months,No,18.33757707,73.27047443,High_spent_Small_value_payments,329.2154485,0,-3.0102,0.0128,0.0879,0.1087,-0.7344 +0xef05,CUS_0xa3a1,August,26,852-20-0763,_______,31757.98,,6,8,24.95700519,9,"Payday Loan, Auto Loan, Auto Loan, Personal Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",33.94235104,22,24.05,10,Bad,4253.161163,37.71372899,5 Years and 9 Months,Yes,1457.386236,152.9957621,!@9#%8,253.2968275,0,-0.4353,-2.2833,1.778,0.9989,-0.2854 +0xef11,CUS_0x1820,August,27,654-71-1742,Engineer,39123.42,3020.285,6,5,14.28836175,2,"Not Specified, Student Loan, and Home Equity Loan",23.23218949,20.38400226,7.47,5,Standard,151.7835143,26.17588885,15 Years and 11 Months,Yes,64.49842309,565.0588995,Low_spent_Small_value_payments,382.4086384,0,0.5565,1.5033,-0.8244,-0.2835,-0.6698 +0xef1d,CUS_0xa4de,August,19,#F%$D@*&8,_______,35844.02,2703.001667,3,7,13,1,Mortgage Loan,20.54233675,19,14.17,10,Standard,1072.28,30.48810979,20 Years and 10 Months,Yes,24.56853694,239.8543268,Low_spent_Small_value_payments,295.877303,0,-0.1702,0.0353,1.7961,-0.582,-0.174 +0xef29,CUS_0x48dc,August,80,414-76-9835,Developer,15169.51,,3,7,13.06745738,4,"Home Equity Loan, Not Specified, Personal Loan, and Personal Loan",,22,12.14,5,Standard,1403.360954,26.68054018,13 Years and 11 Months,Yes,33.0736202,,Low_spent_Large_value_payments,228.071608,0,0.4654,-1.087,-1.6121,-0.9108,0.2223 +0xef35,CUS_0xc4c7,August,35,653-23-4587,Writer,134139.48,11352.29,2,5,11,4,"Auto Loan, Student Loan, Mortgage Loan, and Mortgage Loan",3.066210534,2.395451196,11.14,1,Good,1623.753776,27.68189622,16 Years and 0 Months,No,416.3605236,,High_spent_Large_value_payments,732.5139124,0,0.5819,-1.0467,-0.0991,0.1573,0.3914 +0xef41,CUS_0x1286,August,80,456-37-9366,Entrepreneur,33642.07,,7,3,12,2,"Debt Consolidation Loan, and Not Specified",,8,0.14,8,Standard,696.57,32.07386883,22 Years and 11 Months,No,29.56393249,10000,High_spent_Medium_value_payments,430.5489706,0,0.7045,0.0152,0.9563,-0.9627,-0.3699 +0xef4d,CUS_0x1a71,August,19,708-94-5712,Engineer,15580.41,,10,9,16.88954781,9,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",32.64129459,16,30.57,13,_,4319.35,23.56799975,6 Years and 4 Months,Yes,1435.997165,,Low_spent_Small_value_payments,216.3928471,0,-0.5436,-0.0775,-0.6667,-0.4903,0.3893 +0xef59,CUS_0x48e5,August,46,195-08-6361,Accountant,107068.92,8657.41,3,3,5,3,"Student Loan, Mortgage Loan, and Home Equity Loan",,13,11.69,7,Standard,122.31,38.61206228,18 Years and 4 Months,Yes,211.8709282,127.2212409,High_spent_Large_value_payments,766.6488308,0,0.2184,0.502,-0.5832,0.5869,1.3153 +0xef65,CUS_0xa651,August,27,722-69-2109,Developer,73802.24,,8,10,17.88954781,8,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Not Specified, Payday Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",33.73683015,17.9032476,24.61,7,_,4170.977179,25.10929123,6 Years and 5 Months,Yes,1810.786257,549.7996275,Low_spent_Small_value_payments,,0,0.3114,-0.1852,0.5818,0.0311,-0.2599 +0xef71,CUS_0xa4d9,August,37,616-58-0746,Mechanic,43956.23,3820.019167,3,4,4,0,,0,1,7.16,4,_,964.4486942,30.46817834,30 Years and 4 Months,No,0,339.3653893,Low_spent_Large_value_payments,362.7935847,0,-0.8516,-0.2561,-1.1825,-0.638,-0.3786 +0xef7d,CUS_0x38b0,August,23,328-93-5711,Entrepreneur,80411.04,6694.92,8,4,11,1,Payday Loan,,10,5.71,5,Good,1292.102336,31.7622003,15 Years and 10 Months,No,65.73904985,180.9064773,High_spent_Large_value_payments,683.9167257,0,1.4591,0.4953,1.0296,-0.7146,-0.2576 +0xef89,CUS_0x2b1c,August,47,843-09-7358,Teacher,39305.86,,7,6,5,2,"Debt Consolidation Loan, and Student Loan",21.95861456,15,13.33,3,_,1365.29,34.81649721,20 Years and 4 Months,NM,64.40514455,83.14636466,High_spent_Medium_value_payments,450.8973241,0,0.2416,0.3146,-0.0458,-0.4963,0.8065 +0xef95,CUS_0x4db5,August,18,424-73-9223,Engineer,46417.56,3606.13,6,7,30.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Auto Loan",42.74197794,20.01699471,17.65,13,Bad,5116.739761,36.06203418,13 Years and 6 Months,Yes,150.6176887,169.417399,Low_spent_Small_value_payments,303.8576244,0,-0.8576,-0.9212,1.0398,-0.0901,0.4702 +0xefa1,CUS_0x5849,August,49,792-63-2492,Musician,44595.18,,3,3,10,1,Debt Consolidation Loan,,8.279180973,8.22,4,Good,884.8478164,35.71230547,21 Years and 0 Months,No,24.35688898,43.56466747,High_spent_Medium_value_payments,545.3049436,0,-0.5642,0.0523,1.2366,-0.6501,-1.2596 +0xefad,CUS_0x478,August,42,880-82-1203,Doctor,42757.81,3556.150833,0,5,3,3,"Mortgage Loan, Student Loan, and Home Equity Loan",2.047549878,6,,9,Good,580.1570062,29.21351612,32 Years and 6 Months,No,102.8095687,219.241101,Low_spent_Medium_value_payments,343.6756435,0,0.4168,-0.0435,-1.3462,1.8141,-2.5497 +0xefb9,CUS_0x446a,August,39,886-76-5266,Scientist,119902.4,,5,4,10.28836175,0,Payday Loan,,7,0.82,0,Good,1037.85,36.10568181,31 Years and 2 Months,No,93.33678291,1152.734388,Low_spent_Large_value_payments,464.1529572,0,0.1249,0.3568,-0.0089,-0.1348,-0.036 +0xefc5,CUS_0x80e5,August,42,254-17-0513,Writer,46410.42,3973.535,8,6,18.06745738,9,"Mortgage Loan, Student Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, and Not Specified",44.840513,25.93095984,18.19,8,_,3591.19689,35.4959374,7 Years and 4 Months,Yes,282.150245,305.7925185,Low_spent_Medium_value_payments,62.6904486,0,-2.0337,-1.531,0.8665,-2.2066,-0.8858 +0xefd1,CUS_0x5b5a,August,45,531-46-1872,Engineer,40894.22,,5,5,4272,0,,0,3,3.07,4,Good,1149.831035,27.31350238,33 Years and 4 Months,No,0,126.3198208,High_spent_Medium_value_payments,460.8462446,0,-1.5978,0.7183,1.7095,0.1185,-0.8436 +0xefdd,CUS_0x7f5d,August,29,#F%$D@*&8,Teacher,20615.79,,7,7,21,7,"Credit-Builder Loan, Auto Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",33.68655813,15.61809881,10.01,8,Standard,2156.261803,37.84495184,12 Years and 4 Months,Yes,72.10578358,,Low_spent_Small_value_payments,212.345118,0,0.4373,-1.7597,-0.3753,-0.7387,-0.1255 +0xefe9,CUS_0xbbe4,August,25,162-52-7725,Scientist,38673.64,,5,6,4,4,"Not Specified, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",1.588005583,5,8.38,7,Good,1047.272098,32.45338241,33 Years and 0 Months,No,88.28333171,428.9873472,Low_spent_Small_value_payments,153.5384564,0,-0.6129,0.086,-0.7865,1.2845,0.556 +0xeff5,CUS_0x347c,August,33,497-94-5245,_______,66460.6,,8,10,17.95700519,6,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",47.70633243,30.6191413,6.15,15,Bad,5578.06331,39.08446545,12 Years and 2 Months,Yes,1601.563407,669.5967778,Low_spent_Small_value_payments,,0,0.2854,1.8788,-0.6134,-0.1471,-1.7526 +0xf001,CUS_0x53eb,August,38,840-67-6481,Lawyer,127720.4,,5,6,12,0,,5.947005268,8,1.82,3,Good,330.7701058,34.57533671,,NM,0,1254.257063,Low_spent_Medium_value_payments,251.2721036,0,-0.651,-1.0034,0.6064,-0.3151,0.6406 +0xf00d,CUS_0x48a8,August,40,955-63-6307,Writer,18116.1,1552.675,3,9,34,7,"Payday Loan, Personal Loan, Auto Loan, Not Specified, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",14.28990051,10.21702071,7.43,13,Standard,1977.846948,22.64714643,11 Years and 4 Months,Yes,62.40101612,,Low_spent_Small_value_payments,175.015237,0,1.7775,-1.5275,1.484,0.5762,-0.2508 +0xf019,CUS_0x17e9,August,42,616-94-7076,Accountant,67841.78,,8,3,14,4,"Payday Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",24.62103683,17,2.35,3,Standard,1475.39,36.4708924,27 Years and 4 Months,NM,177.3507897,214.0251561,!@9#%8,424.8722209,0,0.1646,1.3789,-0.7624,1.6686,0.7681 +0xf025,CUS_0x5781,August,25,661-47-2868,Entrepreneur,31439.6,2846.966667,5,7,18,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,8,15.51,8,Standard,1283.46,36.65631568,,Yes,104.2731009,90.76627694,High_spent_Medium_value_payments,339.6572888,0,0.5695,-0.6559,-0.7152,-0.0163,-0.4769 +0xf031,CUS_0x9867,August,32,#F%$D@*&8,Architect,104506.98,8986.915,5,1,2.288361749,4,"Not Specified, Mortgage Loan, Personal Loan, and Home Equity Loan",5.926424458,8,10.61,2,Good,603.5699308,32.81506055,33 Years and 8 Months,No,340.1049572,1150.345964,!@9#%8,219.6601142,0,0.9241,0.6633,0.6669,-1.0237,0.893 +0xf03d,CUS_0x8506,August,41,543-15-5889,Manager,19078.99,1867.915833,9,9,28,5,"Payday Loan, Student Loan, Auto Loan, Auto Loan, and Student Loan",,,5.75,11,Bad,1367.42,27.08396604,12 Years and 3 Months,NM,44.88120482,47.74020451,High_spent_Medium_value_payments,344.170174,0,1.1496,0.6616,0.3087,-0.5908,-0.4849 +0xf049,CUS_0x8958,August,29,689-37-1106,Lawyer,14129.42,,5,4,28.06745738,5,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Not Specified",17.73939996,9.378827279,8.63,11,Standard,3047.379313,39.92463872,17 Years and 8 Months,Yes,55.22550618,35.93056796,Low_spent_Medium_value_payments,264.8688046,0,0.8516,-2.0321,0.6274,1.1693,1.3719 +0xf055,CUS_0x4ddf,August,31,004-98-8424,Lawyer,40984.4,3655.366667,3,5,7,2,"Payday Loan, and Personal Loan",3.991198825,1.181153956,9,5,Good,327.2302304,28.35298122,22 Years and 0 Months,No,56.96645846,399.4505955,Low_spent_Small_value_payments,199.1196127,0,0.4298,0.0569,1.0864,-0.6277,-0.0781 +0xf061,CUS_0xc56a,August,28,625-55-2056,Developer,15985.29,1210.985828,6,657,27.06745738,2,"Not Specified, and Personal Loan",13.39792643,8,11.85,15,Standard,1559.880954,35.2364986,14 Years and 0 Months,NM,101.9792214,,Low_spent_Small_value_payments,206.4942736,0,-0.2372,1.3099,0.0937,-0.3168,0.7357 +0xf06d,CUS_0x3ff8,August,29,537-63-5135,Media_Manager,25810.93,1916.910833,5,3,14,3,"Not Specified, Auto Loan, and Credit-Builder Loan",,15,16.53,5,_,976.702568,30.4300467,17 Years and 5 Months,Yes,51.42495074,149.8550566,High_spent_Small_value_payments,267.7941772,0,1.745,0.3161,-1.2986,0.8731,0.4776 +0xf079,CUS_0xbd23,August,31,985-30-0728,Writer,53699.7,4382.975,8,5,13,0,,,9,9.6,0,Standard,1422.8,36.52462779,27 Years and 2 Months,No,0,420.6979865,Low_spent_Medium_value_payments,297.5995135,0,-0.0254,0.5296,-2.4151,-0.2588,-0.2381 +0xf085,CUS_0xc122,August,49,225-25-3228,Scientist,112056.36,9485.03,5,6,12,2,"Personal Loan, and Credit-Builder Loan",,22.18420837,,1,Standard,903.3697909,31.93222397,,NM,117.2399282,239.5247038,High_spent_Medium_value_payments,841.7383679,0,-0.3926,-0.23,0.9046,0.9768,-0.514 +0xf091,CUS_0xab13,August,27,#F%$D@*&8,_______,45367.94,,4,4,3.288361749,2,"Auto Loan, and Not Specified",22.90552911,19,7.6,3,Standard,43.92,31.22427569,31 Years and 2 Months,No,68.77066952,649.8862171,!@9#%8,364.4467411,0,0.2523,0.7963,-0.4494,1.3918,-1.4398 +0xf09d,CUS_0x871c,August,24,243-66-3824,Developer,32737.58,2729.131667,0,5,6,3,"Not Specified, Payday Loan, and Personal Loan",11.56671977,11,3.43,,_,568.77,31.69391075,30 Years and 9 Months,No,78.59702321,107.6920134,Low_spent_Medium_value_payments,366.6241301,0,0.3462,-0.2085,0.0353,0.0385,-0.5679 +0xf0a9,CUS_0x2d52,August,22,566-07-5369,Journalist,126971,,0,7,6,3,"Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,1.132641377,11.83,1,Good,859.0556924,26.4017758,18 Years and 4 Months,No,293.5288822,541.6190535,High_spent_Small_value_payments,492.1437309,0,0.1444,0.6262,-0.5489,-0.0272,0.0312 +0xf0b5,CUS_0x87f,August,54,684-26-1191,Architect,37171.29,,1,6,0.288361749,4,"Personal Loan, Auto Loan, Personal Loan, and Personal Loan",0,2,5.48,8,_,103.82,26.37159575,,No,64.24998249,10419.93746,High_spent_Small_value_payments,378.6181214,0,-0.2451,0.9985,-0.6876,-0.3183,-0.6432 +0xf0c1,CUS_0x4b11,August,32,037-81-2575,Manager,8840.48,773.7066667,6,10,26.95700519,8,"Not Specified, Auto Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Auto Loan",32.28132431,20.73440757,25.69,14,_,4163.218616,36.00214143,7 Years and 6 Months,Yes,1371.179522,75.05584855,Low_spent_Small_value_payments,200.0849267,0,-0.0211,1.0896,-1.3329,1.49,-1.2486 +0xf0cd,CUS_0x4fd2,August,33,443-79-4577,Architect,77905.92,6635.16,6,4,8,3,"Auto Loan, Auto Loan, and Personal Loan",,18,16.62,5,Standard,1358.16,31.70239381,10 Years and 6 Months,Yes,150.0268422,73.25029894,High_spent_Large_value_payments,680.2388588,0,-0.2928,0.2066,-0.9039,-1.6264,0.3184 +0xf0d9,CUS_0xab1c,August,33,#F%$D@*&8,Lawyer,8781.955,949.8295833,8,4,5,7,"Personal Loan, Mortgage Loan, Mortgage Loan, Not Specified, Auto Loan, Not Specified, and Credit-Builder Loan",19.31617633,,8.15,,Standard,1711.1,30.98883221,8 Years and 10 Months,Yes,33.36482846,81.21853072,Low_spent_Large_value_payments,250.3995992,0,-0.219,-0.748,-1.1085,-0.5518,-0.7281 +0xf0e5,CUS_0xb213,August,80,359-92-4028,Manager,42921.75,3304.807427,2,4,4,4,"Home Equity Loan, Student Loan, Personal Loan, and Auto Loan",,13.71677017,8.87,0,Good,241.7390569,32.67809402,17 Years and 10 Months,No,203.5509381,,!@9#%8,195.9054343,0,0.3131,-1.5884,-0.1603,0.7567,0.0666 +0xf0f1,CUS_0x4067,August,36,230-06-8689,Teacher,17101.62,,6,9,17,4,"Student Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",19.69294706,9.239044708,14.34,12,Standard,1911.092395,31.30687585,12 Years and 3 Months,Yes,33.12879518,94.16752813,!@9#%8,297.7171767,0,1.39,-1.826,0.2502,0.3674,0.0206 +0xf0fd,CUS_0x670d,August,18,255-06-7657,Lawyer,72471.32,,8,10,30.88954781,100,"Auto Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Not Specified, Home Equity Loan, and Personal Loan",,23.08127823,9.4,11,Bad,4832.881755,25.06532124,3 Years and 3 Months,Yes,1717.628102,,High_spent_Small_value_payments,98.99581964,0,1.1479,-0.5504,-0.1059,0.5802,2.2436 +0xf109,CUS_0x4e26,August,20,207-53-4847,Manager,43430.88,,6,70,12,1,Not Specified,23.27731331,16,8.54,4,Standard,1288.94,33.05922414,18 Years and 2 Months,No,20.44081762,79.7122993,High_spent_Medium_value_payments,491.6708831,0,-0.1202,-1.3357,0.5579,-0.085,0.002 +0xf115,CUS_0x8d17,August,48,097-55-6135,Architect,16730157,,3,6,115,3,"Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,19,4.01,0,Standard,587.67,28.6659668,19 Years and 10 Months,NM,26.25172433,14.67420218,!@9#%8,331.7483235,0,2.1,1.9996,0.2341,-2.2634,0.4119 +0xf121,CUS_0x6c5f,August,25,811-75-8093,Mechanic,44864.55,,4,7,1.288361749,4,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",0,1,12.34,1,Good,441.24,39.1552655,32 Years and 5 Months,No,107.49008,,Low_spent_Medium_value_payments,214.3616477,0,-1.7094,0.5681,0.0411,-1.1309,1.6466 +0xf12d,CUS_0x562f,August,80,624-52-7163,Entrepreneur,23809.46,1916.121667,3,4,14,5,"Payday Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",,11,12.7,8,Standard,677.77,31.91593771,20 Years and 0 Months,Yes,85.01185405,10000,Low_spent_Large_value_payments,221.9809665,0,1.1269,-1.0891,0.8508,-1.3687,0.3823 +0xf139,CUS_0x8dbe,August,34,305-35-3845,Developer,16112.185,,3,3,19,1,Auto Loan,28.0223916,19,10.66,5,Standard,308.39,36.28533152,33 Years and 5 Months,Yes,11.92898539,59.18973664,Low_spent_Small_value_payments,352.0494863,0,0.7092,0.6098,1.5404,-0.2411,-0.8598 +0xf145,CUS_0x36f3,August,39,782-09-3485,Architect,57786.48,,3,6,20,2,"Student Loan, and Student Loan",,15,16.33,8,Standard,197.09,33.87287997,15 Years and 9 Months,Yes,81.78005165,81.92755679,High_spent_Large_value_payments,533.2463916,0,-0.0132,-0.2434,0.5001,-2.0882,0.5417 +0xf151,CUS_0x6b9,August,30,549-93-8055,Scientist,85486.14,,7,5,13,3,"Not Specified, Student Loan, and Not Specified",11.81033832,8,5.01,3,Standard,380.26,39.19627824,26 Years and 8 Months,Yes,177.1724304,457.0921757,Low_spent_Small_value_payments,396.9198939,0,-1.5647,0.2643,-1.618,0.3674,0.1795 +0xf15d,CUS_0x4334,August,18,403-45-6666,Scientist,17590.83,1531.9025,10,10,35.06745738,7,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",,,1.66,15,_,3024.793548,40.80261818,,NM,83.89104684,,Low_spent_Small_value_payments,229.439706,0,-0.7206,0.0022,-0.358,0.4421,-0.836 +0xf169,CUS_0x5f7a,August,36,813-61-9127,Media_Manager,32597.48,2734.456667,1,2,2,2,"Auto Loan, and Credit-Builder Loan",10.32996722,10,6.3,2,Good,1175.663331,31.44095262,19 Years and 11 Months,No,45.05338491,252.2458356,Low_spent_Small_value_payments,295.5596454,0,2.1282,-0.0113,-0.3733,-0.5267,0.6164 +0xf175,CUS_0x6d2c,August,22,207-09-4100,Scientist,18226.13,,8,3,15,5,"Student Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",30.30825001,22.64755224,15.9,4,Standard,1248.799373,29.41262581,19 Years and 6 Months,Yes,61.35256822,131.5757011,Low_spent_Small_value_payments,235.4561473,0,-1.246,-0.3962,-2.9058,1.5851,-2.6338 +0xf181,CUS_0xd91,August,41,242-15-8827,Musician,93939.36,8023.28,5,6,5,1,Payday Loan,5.952574479,9,1.72,2,Standard,202.3609932,37.45311207,29 Years and 9 Months,Yes,71.12946358,152.3988895,High_spent_Large_value_payments,841.913762,0,-0.9584,1.3107,-0.0144,-1.4389,-0.0184 +0xf18d,CUS_0x815c,August,20,796-47-4372,_______,42373.7,3742.141667,0,6,4,3,"Payday Loan, Debt Consolidation Loan, and Student Loan",2.280256365,4,10.84,2,Good,1391.5,27.19764271,28 Years and 9 Months,No,88.86030124,87.66821335,High_spent_Medium_value_payments,447.6856521,0,0.4751,1.2711,1.5999,0.0956,0.3467 +0xf199,CUS_0x65c6,August,26,802-57-8351,Entrepreneur,20300.56,1609.713333,4,4,13,2,"Debt Consolidation Loan, and Home Equity Loan",23.32259624,16.1627512,-0.41,3,Standard,1520.079589,28.69123634,23 Years and 3 Months,No,20.1102902,113.5369101,Low_spent_Small_value_payments,317.324133,0,0.0948,0.3654,0.3584,0.5041,-0.0355 +0xf1a5,CUS_0x986c,August,32,388-30-1508,Engineer,21298.53,1971.8775,4,5,16.28836175,4,"Not Specified, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",23.0999401,19,4.69,0,Standard,116.4281991,33.99535885,20 Years and 4 Months,NM,31875,474.8084845,High_spent_Medium_value_payments,334.1765262,0,-0.3466,-0.6795,1.0917,1.6278,-0.6038 +0xf1b1,CUS_0x3709,August,26,517-49-0617,Writer,18967.25,,9,6,17,6,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,21,27.31,10,Bad,3583.51,35.74695382,2 Years and 6 Months,NM,48.53938439,20.89315817,High_spent_Medium_value_payments,367.9278741,0,-0.4192,-1.6285,0.3563,-0.7742,0.8725 +0xf1bd,CUS_0x44fa,August,28,186-24-4468,Doctor,34175.26,,4,5,11,2,"Auto Loan, and Credit-Builder Loan",,14,4.5,4,Standard,654,31.38084221,23 Years and 5 Months,Yes,37.63755167,74.96517298,Low_spent_Medium_value_payments,443.5911087,0,0.3618,-0.4706,-0.3462,-0.2621,0.0697 +0xf1c9,CUS_0xadcf,August,43,024-47-8084,Accountant,29227.64,,8,6,18.06745738,7,"Home Equity Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",,31.32496499,,15,Bad,4511.465336,38.65889007,2 Years and 8 Months,Yes,114.1907588,,Low_spent_Small_value_payments,260.5707395,0,1.7515,-1.8036,-0.2345,-0.1657,0.1376 +0xf1d5,CUS_0x4f26,August,45,676-59-1699,Media_Manager,72200.76,5720.73,7,6,12,2,"Not Specified, and Auto Loan",,20,7.61,4,Standard,843.12,27.35102798,33 Years and 4 Months,NM,65.7791767,67.75414698,High_spent_Medium_value_payments,688.5396763,0,2.0346,0.2626,-0.631,0.9999,-1.0316 +0xf1e1,CUS_0x61fd,August,33,172-34-6874,Entrepreneur,7622.665,,8,6,25.06745738,5,"Credit-Builder Loan, Payday Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",34.23276425,23,6.17,9,Bad,2363.890954,28.42226173,14 Years and 4 Months,Yes,31.66156842,57.24755844,High_spent_Small_value_payments,229.1927935,0,-0.0053,-0.7816,1.0965,1.0785,-1.1187 +0xf1ed,CUS_0x7b32,August,24,461-94-1279,Developer,56455.35,4511.6125,10,9,21.95700519,9,"Credit-Builder Loan, Personal Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Student Loan, Mortgage Loan, and Auto Loan",36.09481073,24,22.15,12,Bad,4692.220954,37.46318891,6 Years and 5 Months,Yes,1739.090677,129.327118,!@9#%8,111.6930855,0,2.3975,-0.4986,0.6383,-0.2456,0.6062 +0xf1f9,CUS_0xc18e,August,45,355-28-4498,Musician,172205.96,14293.49667,2,2,6.288361749,2,"Personal Loan, and Home Equity Loan",,4,6.62,4,Good,1062.166706,36.8386054,25 Years and 6 Months,NM,175.6037638,866.048348,High_spent_Medium_value_payments,1117.127916,0,0.5789,-1.4578,-2.5985,0.1711,-1.2474 +0xf205,CUS_0x922e,August,41,044-84-7684,Scientist,10322.13,1056.233012,5,4,10,100,"Not Specified, and Payday Loan",9.481398139,8,18.48,7,Standard,1964.689518,33.55655557,6 Years and 6 Months,Yes,67987,11521.60584,!@9#%8,315.8577352,0,-1.1376,0.54,-0.3952,-0.4249,-1.0753 +0xf211,CUS_0x2bed,August,25,630-87-7057,Accountant,104177.61,,3,6,0.288361749,2,"Auto Loan, and Payday Loan",0,1.140910416,4.22,3,Good,633.372721,41.51461507,25 Years and 0 Months,No,141.6961458,531.9967057,High_spent_Medium_value_payments,863.3913596,0,0.2814,0.6851,1.7606,-0.5987,0.3396 +0xf21d,CUS_0x9b5a,August,29,178-77-0439,Media_Manager,22017.78,1576.815,3,7,11,2,"Credit-Builder Loan, and Payday Loan",20.71353312,18,14.49,9,Standard,1175.88,33.23745498,26 Years and 2 Months,Yes,32.85181287,89.68474176,Low_spent_Medium_value_payments,315.1449454,0,-0.464,-1.0639,0.4058,0.4134,1.7437 +0xf229,CUS_0xf74,August,19,355-58-6584,Doctor,17111.35,,10,6,3869.067457,7,"Personal Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",44.83325962,25,12.92,2446,Bad,1986.890954,26.74798297,19 Years and 0 Months,Yes,95.73400081,55.60022588,Low_spent_Medium_value_payments,237.9403464,0,0.0509,-0.1837,-0.1122,0.5251,-0.2085 +0xf235,CUS_0x5859,August,38,278-10-7087,Accountant,29943.55,,4,5,6,3,"Debt Consolidation Loan, Not Specified, and Personal Loan",1.256482589,5,11.1,3,Good,348.19,29.87908137,26 Years and 5 Months,No,62.41637498,10000,Low_spent_Large_value_payments,339.4115911,0,0.6112,-0.6093,0.2629,0.2352,-0.8363 +0xf241,CUS_0x6399,August,28,087-38-7228,Lawyer,77603.48,6214.956667,10,6,26,7,"Home Equity Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",27.74030714,14,21.26,13,_,3016.53,32.0489922,7 Years and 2 Months,Yes,317.8528394,53.13736209,High_spent_Large_value_payments,490.5054652,0,0.7262,-0.3995,0.0769,2.0332,0.3446 +0xf24d,CUS_0x8959,August,42,287-63-0588,Scientist,72618.32,6295.526667,5,6,14,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",18.44535102,17,17.02,1,Standard,805.95,29.7677873,27 Years and 11 Months,No,127.5007289,208.3576016,Low_spent_Large_value_payments,563.6943363,0,-0.3006,-2.0039,-1.2634,-0.5308,-0.5422 +0xf259,CUS_0x2618,August,48,#F%$D@*&8,Scientist,11458.24,,4,7,13,3,"Payday Loan, Mortgage Loan, and Personal Loan",,14,3.01,8,_,1227.03,34.57890371,33 Years and 3 Months,No,20.89483925,25.40579332,High_spent_Small_value_payments,332.2847008,0,-0.1482,-0.3528,-0.0402,0.5657,1.858 +0xf265,CUS_0x73a5,August,25,759-19-6701,Developer,50291.22,,7,9,22,4,"Not Specified, Not Specified, Auto Loan, and Payday Loan",38.20017553,18.07041348,18.06,9,Bad,1911.868644,37.17837204,,Yes,139.6537516,120.4678335,High_spent_Small_value_payments,399.8719149,0,1.1997,-1.4722,0.1145,1.9426,0.5837 +0xf271,CUS_0x64e7,August,38,556-17-3791,Accountant,141733.08,11570.09,5,5,20,6,"Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, Not Specified, and Auto Loan",,20,10.15,8,_,291.88,37.01407462,20 Years and 0 Months,Yes,495.8394914,182.3476479,High_spent_Medium_value_payments,728.8218607,0,-0.4442,-2.2518,1.3845,0.4497,0.9683 +0xf27d,CUS_0x6556,August,39,#F%$D@*&8,Developer,161063.8,,3,3,6.288361749,2,"Student Loan, Home Equity Loan, and Payday Loan",,11,9.77,3,Good,1193.64,46.17180795,20 Years and 5 Months,No,229.2862559,569.1555332,High_spent_Large_value_payments,1230.494005,0,-0.5874,-0.4296,-0.3169,-1.134,0.0834 +0xf289,CUS_0xace0,August,37,#F%$D@*&8,Writer,10275.925,,7,3,20,2,"Payday Loan, and Not Specified",,,15.32,7,Standard,159.73,40.6483979,27 Years and 11 Months,Yes,9.869009467,22.87751251,Low_spent_Medium_value_payments,317.4861864,0,-1.2332,-0.339,0.8059,-0.3937,-1.024 +0xf295,CUS_0x5197,August,49,036-41-0068,Lawyer,10328.58,,6,4,12.06745738,1,Not Specified,,18,8.49,1,Standard,1360.530954,27.31897744,,Yes,4.462837467,,Low_spent_Small_value_payments,257.3256644,0,0.376,-1.3975,-1.1337,0.0174,0.3496 +0xf2a1,CUS_0x4eef,August,47,328-98-9359,Doctor,33022.95,2975.9125,3,5,3,0,,4.073224518,4.551876497,10.27,1,Good,367.3415026,39.16179104,19 Years and 8 Months,No,0,186.5225722,Low_spent_Large_value_payments,381.0686778,0,-0.0477,-0.1314,-0.7293,1.202,1.8409 +0xf2ad,CUS_0xb995,August,22,578-26-6547,_______,52566.39,,8,9,23,5,"Not Specified, Payday Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",,23.32003295,25.02,1294,Bad,5706.629174,32.34893799,,NM,139.8521255,35.6468028,High_spent_Large_value_payments,526.2543216,0,-0.8718,-0.6187,-0.1406,0.0012,-0.2085 +0xf2b9,CUS_0xa4ba,August,39,063-71-0993,Writer,34126.19,,5,7,10,3,"Auto Loan, Personal Loan, and Auto Loan",13.90245531,13,9.51,9,Standard,963.43,28.12691846,12 Years and 8 Months,NM,50.64709903,222.0569187,Low_spent_Small_value_payments,279.280899,0,2.5749,-1.0322,0.0972,-1.867,1.944 +0xf2c5,CUS_0x9a6b,August,38,422-30-7649,Journalist,15954.72,,8,6,34.06745738,6,"Auto Loan, Student Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Personal Loan",19.07001476,8,,13,Standard,2382.630954,31.07326967,12 Years and 6 Months,Yes,45.36846286,66.80938404,Low_spent_Large_value_payments,270.6578652,0,0.1969,-0.4443,1.1269,2.4337,0.0429 +0xf2d1,CUS_0x78d3,August,41,790-07-2648,Journalist,17773.775,1388.147917,3,1,2,2,"Home Equity Loan, and Debt Consolidation Loan",0,2,4.57,4,Good,638.7054338,31.7603322,26 Years and 6 Months,No,28.23975347,111.6591182,Low_spent_Small_value_payments,305.3850409,0,0.2189,-0.9424,-0.8093,0.6266,1.7203 +0xf2dd,CUS_0xba11,August,43,925-91-1270,Musician,18942.005,,1,3,9.288361749,0,Credit-Builder Loan,13.18478018,12,1.88,2,Good,156.54,30.99078447,17 Years and 10 Months,No,14.04081043,556.65917,Low_spent_Medium_value_payments,264.1875222,0,2.7613,0.0975,-0.752,0.3908,0.1281 +0xf2e9,CUS_0x81b9,August,49,398-46-1818,Engineer,19646.255,1831.187917,3,6,10,2,"Mortgage Loan, and Debt Consolidation Loan",,1.15139526,6.7,1,Good,667.7819906,38.38042205,29 Years and 6 Months,No,30.11897656,,Low_spent_Small_value_payments,328.5724501,0,1.5364,0.7957,-0.0259,0.5868,-0.2112 +0xf2f5,CUS_0x17ef,August,21,339-70-9719,Journalist,83947.72,7167.643333,5,4,9,3,"Not Specified, Student Loan, and Payday Loan",,1,4.19,0,_,954.9,39.79534936,27 Years and 3 Months,No,176.4837183,237.8918892,Low_spent_Medium_value_payments,582.3887259,0,-1.1297,0.1345,0.083,0.1918,0.8902 +0xf301,CUS_0x9b8b,August,41,963-35-0135,Journalist,8940.14,,3,4,8,5,"Payday Loan, Not Specified, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",16.62644779,16,8.12,5,Standard,1159.946158,28.93186193,7 Years and 11 Months,Yes,35.22170251,19.85658874,High_spent_Large_value_payments,280.1858124,0,0.8233,0.6861,0.3779,-0.7189,0.2694 +0xf30d,CUS_0x9f5,August,34,526-02-8810,Media_Manager,55245.88,,3,3,12,2,"Mortgage Loan, and Payday Loan",26.75109228,21,11.32,10,Standard,119.7570356,23.02947083,10 Years and 8 Months,Yes,54.55618079,,High_spent_Medium_value_payments,480.5938535,0,0.0903,-0.717,1.4666,-2.2103,-0.7448 +0xf319,CUS_0x6664,August,33,395-24-4865,_______,38334.61,2966.550833,3,4,12,2,"Mortgage Loan, and Not Specified",0.289475989,2,4.35,3,_,1143.920344,33.56180864,20 Years and 11 Months,NM,41.07297101,193.4772446,Low_spent_Large_value_payments,361.3576584,0,-0.4712,-0.7079,0.2794,-1.3069,0.6032 +0xf325,CUS_0x9e81,August,18,215-20-8854,Teacher,17774.32,,0,4,6,3,"Student Loan, Credit-Builder Loan, and Credit-Builder Loan",1.437999193,2,1.19,1,Good,1026.7,26.04141763,25 Years and 8 Months,No,40.29685738,35.78882834,Low_spent_Medium_value_payments,324.4336476,0,0.0012,1.4894,-0.4441,-0.9699,1.2671 +0xf331,CUS_0x9a1d,August,37,763-78-0517,Journalist,7493.29,,5,5,5,6,"Not Specified, Payday Loan, Payday Loan, Payday Loan, Personal Loan, and Mortgage Loan",19.54078843,17,12.67,12,Standard,2179.63,30.51123869,13 Years and 3 Months,Yes,25.89105236,,Low_spent_Small_value_payments,243.5947257,0,-0.2172,-1.2922,1.3818,-1.4837,-0.2769 +0xf33d,CUS_0x5146,August,36,324-50-3753,Entrepreneur,63195.21,5318.2675,4,7,6,0,,,14,7.6,4,_,1113.92,34.82843523,32 Years and 4 Months,No,0,440.0241352,Low_spent_Small_value_payments,381.8026148,0,-0.4778,-0.4873,-0.1976,-0.7175,-0.1339 +0xf349,CUS_0x9a86,August,21,279-40-2641,Manager,29827.36,,4,5,17,2,"Student Loan, and Credit-Builder Loan",21.46133039,17.01298202,10.56,6,Standard,2142.030969,24.50726715,6 Years and 9 Months,Yes,31.49667415,152.9007634,!@9#%8,347.8638958,0,0.9089,1.7689,-1.4786,-0.4525,0.032 +0xf355,CUS_0x41b8,August,18,393-98-4443,_______,8597.69,,7,6,33.06745738,7,"Debt Consolidation Loan, Payday Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",36.05143023,22,10.59,9,Bad,1919.040954,27.88594089,7 Years and 3 Months,Yes,45.9638188,60.81793297,Low_spent_Medium_value_payments,216.0453769,0,0.8542,-0.972,1.0352,0.7808,-0.8163 +0xf361,CUS_0x54d0,August,24,754-96-9860,Musician,36641.86,3008.488333,6,6,15,2,"Mortgage Loan, and Student Loan",24.2883202,14,,7,_,1467.95,35.12167465,29 Years and 11 Months,Yes,37.41635946,,High_spent_Large_value_payments,464.6738748,0,1.4385,0.3144,-1.0207,0.4651,0.6483 +0xf36d,CUS_0x1b66,August,34,444-26-5685,Accountant,50538.58,4054.548333,6,7,9,4,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Payday Loan",,21,9.09,6,Standard,1205.13,23.56096,9 Years and 0 Months,NM,164.8074702,256.2464555,Low_spent_Large_value_payments,254.4009077,0,-0.5748,-0.9986,-0.2534,-0.4087,-0.0207 +0xf379,CUS_0x1bfd,August,40,882-93-1200,Writer,19186.4,,6,10,25.06745738,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,17.71305807,11.98,11,Standard,2151.532121,31.9470686,8 Years and 10 Months,Yes,47.83430931,92.97065272,Low_spent_Large_value_payments,267.0614167,0,-0.5278,0.4351,0.7816,0.4296,-0.7017 +0xf385,CUS_0xbfbc,August,35,429-04-9751,Architect,30371.74,,3,4,2.288361749,4,"Credit-Builder Loan, Not Specified, Not Specified, and Not Specified",10.19764617,10,3.48,3,Good,202.55,27.30907241,28 Years and 10 Months,NM,96.88485648,538.9877805,Low_spent_Small_value_payments,328.7626573,0,-0.279,0.8043,2.0428,0.6629,3.1273 +0xf391,CUS_0x835,August,44,036-30-8679,Journalist,132986.73,,4,6,8.288361749,0,,0,2,,0,_,272.8303783,38.50016155,20 Years and 8 Months,No,0,936.9824138,High_spent_Medium_value_payments,896.8928678,0,-0.7045,-1.5858,0.9348,-0.9446,0.4162 +0xf39d,CUS_0x8771,August,51,562-85-4128,Developer,150043.56,,5,3,916.2883617,2,"Mortgage Loan, Home Equity Loan, and Mortgage Loan",,8,9.93,1560,_,704.2081263,34.19808711,20 Years and 10 Months,No,1621.144915,1275.36267,Low_spent_Medium_value_payments,472.9193926,0,0.169,0.7851,0.4153,0.6857,-0.1291 +0xf3a9,CUS_0x2a4e,August,54,897-53-0248,Doctor,61236.86,,3,2,8,1,Not Specified,0.325446743,3,3.13,6,_,1305.649399,25.17111537,26 Years and 0 Months,No,32.21650598,529.0352861,Low_spent_Small_value_payments,321.145301,0,0.1377,0.0571,-1.1784,0.1791,0.4083 +0xf3b5,CUS_0x7711,August,40,339-01-5731,Mechanic,72814.86,6035.905,2,5,3.288361749,0,,2.068804079,4,2.43,4,Good,488.6645502,33.2511538,26 Years and 6 Months,No,0,723.0493891,Low_spent_Large_value_payments,615.3847656,0,1.1581,0.6363,0.6417,0.7402,1.1542 +0xf3c1,CUS_0x9636,August,80,025-09-5519,Teacher,18058.635,,3,3,1,4,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",12.32891852,11,1.55,3,_,357.6689809,24.19045951,29 Years and 8 Months,No,13951,159.2347764,Low_spent_Medium_value_payments,254.8826852,0,0.2113,0.5757,1.4929,0.3652,-0.1869 +0xf3cd,CUS_0x7ef5,August,53,354-51-2466,Musician,41115.08,3378.256667,3,7,12,1,Payday Loan,,19,1.92,,Standard,393.39,24.54178125,25 Years and 0 Months,No,31.42012808,76.15865539,High_spent_Medium_value_payments,480.2468832,0,0.7397,0.5312,-0.014,-0.116,0.1908 +0xf3d9,CUS_0x5a6b,August,40,567-66-4662,Architect,16952875,1935.375,4,3,13.28836175,4,"Home Equity Loan, Not Specified, Mortgage Loan, Payday Loan, and Payday Loan",21.21259209,17.92097803,12.3,10,Standard,1320.860993,37.25856066,18 Years and 4 Months,Yes,56.36501611,549.7339466,Low_spent_Small_value_payments,297.3759983,0,-0.2485,1.0317,-0.6896,0.5294,1.962 +0xf3e5,CUS_0x4b18,August,44,162-64-7150,Architect,106815.54,9125.295,5,5,11,1,Auto Loan,10.46460696,8,3.55,,Standard,529.87,28.84266381,26 Years and 5 Months,No,69.42193739,369.5394636,High_spent_Medium_value_payments,723.568099,0,1.0444,-1.3928,0.2412,1.457,1.2289 +0xf3f1,CUS_0xa37,August,30,577-49-4086,Musician,8721.605,,6,7,20,2,"Auto Loan, and Debt Consolidation Loan",,15.97335448,6.48,7,Standard,2892.479548,35.78565131,11 Years and 4 Months,Yes,12.86795149,38.66643863,Low_spent_Small_value_payments,331.2456515,0,-0.0375,0.1168,-1.2036,0.8262,-0.3333 +0xf3fd,CUS_0x8006,August,18,947-14-5076,Musician,13699.52,,6,7,7,4,"Payday Loan, Student Loan, Auto Loan, and Payday Loan",21.28277972,17,13.76,4,Standard,608.16,28.13462941,27 Years and 11 Months,Yes,32.11802132,32.379759,High_spent_Large_value_payments,308.2648863,0,0.1057,-1.5489,0.4236,0.9745,1.3679 +0xf409,CUS_0x5845,August,36,187-79-6590,Teacher,57295.88,4520.656667,4,7,5,0,,,11.60374229,9.19,5,Good,1215.00551,37.74248854,33 Years and 2 Months,NM,0,126.0375155,High_spent_Small_value_payments,586.0281512,0,0.376,0.4787,-0.2924,-1.1624,-1.661 +0xf415,CUS_0x5b62,August,27,386-34-3584,Journalist,31454.22,2618.185,8,8,28.88954781,6,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",,22,18.63,8,Bad,1996.6,38.77083427,11 Years and 4 Months,Yes,48427.48344,47.51731443,High_spent_Large_value_payments,295.1059453,0,-0.8716,-1.6758,2.2407,-1.4877,0.1406 +0xf421,CUS_0xc3a6,August,28,660-58-0563,Developer,27647.08,,7,6,13,5,"Not Specified, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",8.967149717,8,8.37,10,_,159.63,36.26917395,5 Years and 9 Months,Yes,100.7402032,10000,High_spent_Medium_value_payments,312.3613142,0,-1.2545,-0.0804,-0.8729,0.5824,0.1226 +0xf42d,CUS_0x73ef,August,41,428-80-8157,Journalist,64259.04,5060.92,6,6,5485,2,"Debt Consolidation Loan, and Not Specified",,16,18.69,10,Standard,1443.54,38.36489091,31 Years and 5 Months,NM,79.58757945,192.8130388,High_spent_Small_value_payments,493.6913818,0,0.4154,0.1051,0.9304,-1.9037,0.9994 +0xf439,CUS_0xc1c,August,48,518-63-7829,Journalist,32123.85,,1,3,8.288361749,0,Payday Loan,,4,4.84,3,_,106.9,27.74561887,29 Years and 9 Months,No,15.00750926,585.0377057,High_spent_Small_value_payments,375.090996,0,0.4238,0.3696,0.0012,0.86,-0.3202 +0xf445,CUS_0x44c8,August,27,381-88-6356,Architect,85461.63,7210.8025,5,7,11,0,,17.50523435,14,4.94,6,_,566.74,26.00741822,20 Years and 5 Months,Yes,0,440.6704713,High_spent_Small_value_payments,540.4097787,0,0.8361,-1.0194,-0.2709,0.0956,-0.8837 +0xf451,CUS_0x7b58,August,36,505-69-4727,Doctor,172510.48,14464.87333,5,5,6,100,Auto Loan,9.160176062,8,-2.65,3,Good,738.8392525,42.70327044,16 Years and 4 Months,No,82.59172082,689.5093814,Low_spent_Large_value_payments,1027.170348,0,-0.943,1.4577,-0.6601,-0.0014,-0.211 +0xf45d,CUS_0x15b9,August,23,824-34-8358,Writer,32023.64,,7,10,20.06745738,2,"Auto Loan, and Debt Consolidation Loan",24.84964048,16,9.43,6,Standard,2741.510954,38.62368189,12 Years and 10 Months,Yes,29.98949551,62.94868182,High_spent_Medium_value_payments,385.3052014,0,0.4419,-1.0039,-0.262,-0.1315,1.3896 +0xf469,CUS_0x7c01,August,18,036-74-6711,Lawyer,93220.71,7647.3925,3,7,9,5,"Not Specified, Mortgage Loan, Not Specified, Credit-Builder Loan, and Not Specified",,20,9.25,8,Standard,174.3228136,34.90607818,13 Years and 6 Months,Yes,238.2872692,350.454646,High_spent_Medium_value_payments,463.3549655,0,0.8567,1.5178,0.6743,0.3498,1.379 +0xf475,CUS_0xb8eb,August,80,818-38-8989,Developer,45243.21,,7,7,21,3,"Not Specified, Mortgage Loan, and Student Loan",58.49675962,31.3149264,0.9,6,Bad,2689.863128,31.68470014,13 Years and 8 Months,Yes,89.29681596,,High_spent_Medium_value_payments,421.7352523,0,-0.3725,-1.3098,0.3248,-0.9185,-0.0706 +0xf481,CUS_0x2e19,August,18,849-48-9283,Architect,55070.19,4747.1825,8,9,18.95700519,9,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Student Loan, Home Equity Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",,22,17.83,9,Bad,3235.670954,32.72007192,4 Years and 11 Months,Yes,1632.529817,,High_spent_Small_value_payments,246.3352241,0,0.2273,-1.269,0.8437,-0.0266,0.173 +0xf48d,CUS_0x43a2,August,35,721-56-6330,Doctor,8990.5,,10,9,33,3,"Payday Loan, Payday Loan, and Home Equity Loan",45.26074667,25.07862987,5.98,12,Bad,2884.518933,37.56851148,13 Years and 0 Months,Yes,14.74431653,72.14459638,!@9#%8,288.0319204,0,-0.6405,-0.6309,2.2798,-0.1492,0.0343 +0xf499,CUS_0xc393,August,36,514-45-2224,Developer,10466.16,,8,6,16.06745738,100,"Payday Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",29.15655975,14,15.07,10,Standard,2165.340954,33.64851381,9 Years and 5 Months,Yes,56.19108495,134.3785061,Low_spent_Small_value_payments,180.728121,0,-0.7706,-0.1478,1.6711,-0.0507,-1.7656 +0xf4a5,CUS_0x9178,August,20,#F%$D@*&8,Lawyer,14681.68,,6,7,23.06745738,6,"Auto Loan, Not Specified, Mortgage Loan, Personal Loan, Home Equity Loan, and Student Loan",,25,26.52,16,Bad,3141.530954,27.30539296,5 Years and 3 Months,Yes,54.2416451,,Low_spent_Small_value_payments,228.1729357,0,-1.5753,2.0922,0.5012,3.1561,-0.0779 +0xf4b1,CUS_0x7aae,August,80,701-33-6545,Architect,60860.1,4803.675,8,6,30,2,"Not Specified, and Mortgage Loan",,13.10361235,17.09,10,Standard,3015.454899,29.68213623,10 Years and 2 Months,Yes,94.24666239,205.3717376,Low_spent_Medium_value_payments,460.7491,0,1.5396,-0.5621,1.3253,0.1193,-1.5369 +0xf4bd,CUS_0x3f4a,August,34,613-12-9026,Engineer,39418.47,3099.8725,5,4,0.288361749,2,"Home Equity Loan, Personal Loan, and Mortgage Loan",,1,-0.44,0,Good,473.5335471,22.76419761,28 Years and 11 Months,No,69.72618323,857.2649479,Low_spent_Small_value_payments,145.4020681,0,-1.2024,0.0276,-0.4035,1.1477,0.383 +0xf4c9,CUS_0x1fbe,August,29,325-49-4807,Writer,29482.06,2395.838333,8,3,9,2,"Payday Loan, and Home Equity Loan",,22,14.09,,Standard,668.5,30.41158408,,Yes,28.81989404,41.47686283,High_spent_Medium_value_payments,419.2870765,0,0.1672,0.5793,-0.0038,0.0903,0.8386 +0xf4d5,CUS_0x8afa,August,34,053-77-1617,Entrepreneur,55516.29,4445.3575,8,10,18.88954781,8,"Credit-Builder Loan, Mortgage Loan, Payday Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",42.76814877,22,17.81,8,Bad,3871.02,31.98639941,9 Years and 5 Months,Yes,1675.142624,347.5347409,Low_spent_Small_value_payments,17.52830387,0,0.9869,2.2603,0.0742,0.708,0.0642 +0xf4e1,CUS_0x1b00,August,38,638-65-2500,Lawyer,59939.52,4721.96,3,5,16,0,,13.61529584,,12.23,4,Standard,1184.94217,30.6132493,31 Years and 10 Months,Yes,0,88.36044737,High_spent_Medium_value_payments,644.466311,0,-0.128,-2.4292,0.7041,-1.6585,0.8449 +0xf4ed,CUS_0x2c6a,August,39,580-22-5888,Journalist,99995.22,8560.935,0,3,7.288361749,0,Debt Consolidation Loan,,4.645623923,11.32,6,Good,583.5167247,33.75913391,32 Years and 3 Months,No,66.42833764,583.415049,High_spent_Medium_value_payments,876.1875744,0,0.193,1.0021,-0.8428,0.8773,0.132 +0xf4f9,CUS_0x38f1,August,25,908-12-2506,Scientist,16822.58,1584.881667,9,6,16.06745738,3,"Mortgage Loan, Auto Loan, and Debt Consolidation Loan",,29.90540803,12.03,12,Bad,3123.94787,26.55380749,,Yes,25.56347652,61.1067013,Low_spent_Small_value_payments,335.0977009,0,-1.6662,0.3665,0.1004,-0.7277,-0.495 +0xf505,CUS_0x7670,August,30,559-25-3382,Architect,11128.91,,4,7,8.067457376,4,"Debt Consolidation Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",27.46096065,18,10.64,2,_,1425.390954,40.63930874,24 Years and 0 Months,No,33.95560304,,Low_spent_Medium_value_payments,228.4567262,0,2.0752,-0.4356,1.3759,-1.2879,-0.0533 +0xf511,CUS_0x6575,August,33,368-18-7048,Entrepreneur,128754.04,10568.50333,3,4,6,4,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Auto Loan",10.39469284,9,4.5,9,Good,20.88,34.65427907,28 Years and 10 Months,No,342.0384504,281.5183221,High_spent_Medium_value_payments,683.2935609,0,0.2652,-0.8221,-0.3864,-0.4686,-0.9752 +0xf51d,CUS_0x68f6,August,32,176-81-8343,Media_Manager,32187.36,,4,3,8.288361749,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",18.67341025,16.54664462,1.4,7,Good,400.9008729,28.00685168,27 Years and 9 Months,No,106.8219395,537.76036,High_spent_Small_value_payments,277.6831615,0,0.5414,0.0671,-1.2901,1.1282,0.8644 +0xf529,CUS_0xbe26,August,29,956-82-3205,Mechanic,10046.24,926.1866667,6,6,16,5,"Debt Consolidation Loan, Student Loan, Not Specified, Home Equity Loan, and Payday Loan",27.4152391,19.07111,0.65,9,_,2715.2734,34.2706622,15 Years and 9 Months,Yes,37.81532035,61.82274065,Low_spent_Small_value_payments,282.9806057,0,-0.2682,-0.5369,2.0062,1.3131,-0.0883 +0xf535,CUS_0xc2ff,August,28,929-86-3226,Architect,33235.35,,3,5,19,0,,20.70538423,14,4.86,4,_,212.69,37.39768319,18 Years and 11 Months,Yes,0,57.0994081,!@9#%8,473.9618419,0,-1.0036,-0.2838,-2.4737,0.2289,-0.4524 +0xf541,CUS_0xbae3,August,25,741-46-5842,Manager,13268.945,,5,3,17,1,Mortgage Loan,,13,5.88,4,Standard,469.9821541,38.71796159,29 Years and 10 Months,Yes,9.576857834,,Low_spent_Small_value_payments,284.3578193,0,-0.1201,-1.0992,1.3498,-0.1409,-0.7478 +0xf54d,CUS_0x2879,August,42,461-85-2828,Engineer,8796.905,545.0754167,10,10,19.88954781,8,"Student Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Personal Loan",34.5194376,,24.37,12,_,5237.608773,39.26222062,3 Years and 4 Months,Yes,1372.974172,34.2287634,Low_spent_Small_value_payments,242.9745247,0,-1.1288,-1.1552,-0.5673,0.1727,1.0923 +0xf559,CUS_0xbe9,August,51,307-02-5111,_______,10648580,1054.075833,5,4,5,1,Not Specified,,8.021184894,0.75,4,_,220.5815966,35.29545881,31 Years and 2 Months,No,10.4218038,108.274568,Low_spent_Medium_value_payments,266.7112116,0,0.7684,-0.6822,-0.4809,-0.2079,-0.6809 +0xf565,CUS_0x2258,August,54,218-85-8418,Developer,29822.12,,4,4,7,4,"Payday Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",13.91517387,9,4.9,4,_,21.07,23.34204908,28 Years and 3 Months,No,77.97289803,56.01506817,Low_spent_Large_value_payments,358.3297005,0,0.2208,-1.2455,0.2106,0.3271,-1.8725 +0xf571,CUS_0x795,August,25,514-27-6028,Media_Manager,14517.44,,10,8,30.88954781,6,"Not Specified, Home Equity Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Personal Loan",49.7277511,25.38864322,4.73,6,Bad,1540.09833,23.99456913,16 Years and 10 Months,Yes,1363.621534,,Low_spent_Small_value_payments,248.1682317,0,-0.1765,-2.9995,1.2076,0.1132,-1.603 +0xf57d,CUS_0xa27d,August,23,160-93-9816,Engineer,20275.97,,9,9,16,2,"Auto Loan, and Mortgage Loan",,23.83545925,15.32,13,Standard,2019.650533,33.24592215,19 Years and 9 Months,Yes,26.11313897,86.91612594,Low_spent_Small_value_payments,339.3371518,0,0.2092,1.8136,-0.2205,0.4212,1.99 +0xf589,CUS_0xbb7,August,19,780-64-0604,Journalist,20067.05,1653.254167,10,5,34,6,"Payday Loan, Personal Loan, Student Loan, Not Specified, Credit-Builder Loan, and Auto Loan",32.9024068,24,17.94,16,Bad,4097.1,29.10206873,1 Years and 3 Months,Yes,62.46075236,129.7929474,Low_spent_Small_value_payments,263.0717169,0,0.6104,-0.5915,0.7613,0.0506,-0.0916 +0xf595,CUS_0x32f5,August,41,149-20-2571,Media_Manager,48297.48,,8,3,10,0,,,16,11.77,2,Standard,1323.54,39.26781238,33 Years and 2 Months,No,0,66.38390228,!@9#%8,567.9950977,0,-0.7728,-0.6082,2.0139,-0.4578,0.5546 +0xf5a1,CUS_0xae93,August,19,319-77-2947,Journalist,19357.89,,8,10,16.95700519,6,"Personal Loan, Not Specified, Mortgage Loan, Payday Loan, Student Loan, and Credit-Builder Loan",43.08286999,26.33315074,21.46,9,Bad,4844.312454,36.61358347,11 Years and 2 Months,Yes,1414.206959,,Low_spent_Small_value_payments,201.6482836,0,-0.8818,-0.663,-0.6865,0.7092,1.2339 +0xf5ad,CUS_0x6a82,August,27,468-95-0630,Mechanic,21498.365,1628.530417,3,3,8,4,"Student Loan, Payday Loan, Payday Loan, and Home Equity Loan",5.678699428,3.533296551,6.46,2,_,531.6198916,35.75888921,22 Years and 10 Months,NM,49.80052403,60.77908389,High_spent_Medium_value_payments,302.2734338,0,-1.8543,0.2369,-1.6116,1.3509,-0.6374 +0xf5b9,CUS_0x18f5,August,54,169-46-3515,Accountant,41801.68,,4,3,18,3,"Not Specified, Debt Consolidation Loan, and Not Specified",,9,5.11,1,Standard,140.6,29.74924091,19 Years and 4 Months,Yes,71.7170531,360.485265,Low_spent_Small_value_payments,185.8450152,0,-1.0721,-0.2416,0.5614,1.9651,1.0297 +0xf5c5,CUS_0xc134,August,38,494-80-1634,Accountant,86529.48,7463.79,7,5,18.28836175,2,"Mortgage Loan, and Credit-Builder Loan",10.44875425,12,7.22,1,Standard,1102.41,34.29542424,19 Years and 9 Months,No,86.59765165,872.4264438,Low_spent_Small_value_payments,497.2923655,0,-0.0679,-0.8082,-1.0661,0.0145,-0.191 +0xf5d1,CUS_0x3feb,August,29,872-56-1047,Manager,14445.76,,10,440,2993.889548,9,"Not Specified, Mortgage Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Payday Loan, Home Equity Loan, and Student Loan",33.76035737,24.31024274,16.46,14,Bad,4628.158495,32.02674878,3 Years and 0 Months,Yes,1417.350312,116.9468633,Low_spent_Small_value_payments,165.4540768,0,-0.0326,-0.7469,-0.0916,-0.9161,-1.2771 +0xf5dd,CUS_0x864e,August,33,345-95-5018,Media_Manager,28806.44,,4,3,6,5,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Payday Loan",,19,12.26,2069,Standard,332.57,31.63825559,13 Years and 3 Months,Yes,112.6350485,61.67655286,High_spent_Small_value_payments,321.8420653,0,0.6008,1.599,0.6513,0.7602,-1.093 +0xf5e9,CUS_0xa2ce,August,23,144-81-4947,Accountant,79626.93,6564.5775,4,3,18,3,"Not Specified, Student Loan, and Home Equity Loan",23.57013111,18,13.41,9,_,584.53,35.04530144,,Yes,150.6526992,510.9455303,!@9#%8,264.8595205,0,0.327,0.1326,1.2575,1.2202,-0.1418 +0xf5f5,CUS_0xb9e6,August,23,860-04-7636,Journalist,9092.87,,6,6,16,5,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Not Specified",,17,15.8,12,Standard,1968.857509,39.60371141,8 Years and 3 Months,Yes,30.73349689,28.64192569,Low_spent_Medium_value_payments,271.1382033,0,0.1974,-2.088,1.5741,-0.7982,0.2403 +0xf601,CUS_0x7b5a,August,23,137-81-2602,Journalist,78133.6,6636.133333,5,7,17,100,"Debt Consolidation Loan, Payday Loan, Auto Loan, and Personal Loan",,8,12.88,6,Standard,1055.06,41.09849801,14 Years and 9 Months,Yes,172.4891123,83.95356917,High_spent_Large_value_payments,647.1706519,0,-1.2699,1.3234,-1.9297,0.912,-0.2913 +0xf60d,CUS_0x643c,August,39,629-29-5016,Teacher,10426.61,,5,4,6.067457376,1,Auto Loan,90,3845,11.35,6,Standard,811.6578793,29.43972385,31 Years and 8 Months,Yes,49593,53.2376435,High_spent_Small_value_payments,264.7879945,0,-0.3903,0.6864,0.5054,-1.515,0.0268 +0xf619,CUS_0x697d,August,21,096-94-6781,Writer,56971.5,4717.059451,7,7,17,3,"Not Specified, Debt Consolidation Loan, and Auto Loan",15.93952524,12,8.53,11,Standard,142.2622936,25.8970326,24 Years and 9 Months,Yes,264.059658,325.7471068,Low_spent_Medium_value_payments,353.995923,0,-0.8726,0.9967,0.0104,1.2301,0.8402 +0xf625,CUS_0x7e94,August,32,446-63-0451,Engineer,46162.62,3548.885,10,5,16,2,"Personal Loan, and Debt Consolidation Loan",,19,6.45,7,Bad,1788.63,37.63822163,16 Years and 0 Months,Yes,65.95681941,128.1718173,High_spent_Medium_value_payments,410.7598633,0,1.4533,-0.4224,-0.5352,-0.7529,1.1006 +0xf631,CUS_0x9525,August,40,#F%$D@*&8,Writer,21457.185,,1,5,9,1,Debt Consolidation Loan,,3.600073276,5.74,2200,Good,827.1610266,32.21852976,,No,8.970576329,147.455812,Low_spent_Large_value_payments,298.1834867,0,0.0859,0.3054,0.6187,-0.2792,-0.6865 +0xf63d,CUS_0x893e,August,42,879-80-0822,Media_Manager,20997.075,1895.75625,0,2,8,0,,15.14203183,,0.7,5,Good,654.8057732,36.43885164,26 Years and 9 Months,No,0,,High_spent_Medium_value_payments,382.5638717,0,-0.96,-0.5449,-0.4812,1.2437,-1.0298 +0xf649,CUS_0xa766,August,23,476-50-2025,Engineer,36580.66,2926.388333,8,5,15,0,,12.63294013,11,4.21,3,Standard,716.33,38.14041724,17 Years and 6 Months,NM,0,147.4934988,Low_spent_Large_value_payments,415.1453345,0,0.4532,0.705,3.055,-1.0821,-1.3673 +0xf655,CUS_0x64aa,August,21,819-41-4042,Journalist,15961.545,,5,2,10.28836175,2,"Credit-Builder Loan, and Not Specified",2.466590304,6,2.88,0,Good,23.47303233,33.35720663,20 Years and 8 Months,NM,21.24850834,617.5434974,Low_spent_Small_value_payments,225.7207248,0,-1.2156,1.5067,2.3903,-0.3958,-0.3301 +0xf661,CUS_0xb4b7,August,31,252-13-8738,Journalist,39538.62,3540.885,10,5,23,3,"Credit-Builder Loan, Not Specified, and Student Loan",24.53693874,13.02598667,14.71,8,_,2007.979359,30.33917098,18 Years and 6 Months,Yes,54.20136422,148.6092836,High_spent_Medium_value_payments,401.2778522,0,-0.2617,-0.142,-1.1229,0.853,-0.5035 +0xf66d,CUS_0xad02,August,37,532-10-0243,Media_Manager,31244.71,2443.725833,3,4,8,0,,,11,2.63,0,Good,1066.16849,32.28136699,16 Years and 9 Months,No,0,39.40054895,High_spent_Large_value_payments,450.8568072,0,1.6095,-0.5703,-1.7438,0.2648,1.6991 +0xf679,CUS_0x3710,August,41,981-14-0079,Architect,28012.42,,5,7,14,3,"Not Specified, Payday Loan, and Payday Loan",21.51762739,15,3.93,8,Standard,1346.44,26.4992504,24 Years and 8 Months,Yes,68.83965451,86.5817067,Low_spent_Large_value_payments,371.0154721,0,-0.4573,-0.7372,-1.1892,1.5315,0.0251 +0xf685,CUS_0x6fca,August,35,#F%$D@*&8,Lawyer,27905.8,,3,5,13,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",13.25090422,12,7.77,2,Standard,775.81,34.81141642,17 Years and 5 Months,Yes,74.73459778,135.7602123,Low_spent_Large_value_payments,308.6535233,0,1.0783,1.4719,0.5504,1.2595,-0.9004 +0xf691,CUS_0x2f91,August,21,#F%$D@*&8,Developer,14719.33,1289.070193,4,5,9,7,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",26.18368406,21.65232073,10.31,626,_,2742.791921,35.29443105,15 Years and 10 Months,Yes,148.1081923,,Low_spent_Small_value_payments,208.433513,0,-0.3311,0.5664,-0.4513,-0.8067,-0.0544 +0xf69d,CUS_0x9e8f,August,23,879-49-6052,Lawyer,28769.52,,4,7,2,0,,18.60478038,14,9.39,4,Good,367.3776971,32.82642565,24 Years and 4 Months,No,0,168.9801152,High_spent_Small_value_payments,368.7494521,0,-0.3611,1.6236,1.2195,-1.4714,-2.1845 +0xf6a9,CUS_0x2abb,August,32,285-74-9089,Media_Manager,68898.56,5549.546667,9,7,30,9,"Credit-Builder Loan, Home Equity Loan, Not Specified, Auto Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Payday Loan",,12,22.8,8,Bad,3234.47,26.51008845,1 Years and 0 Months,Yes,498.0651868,,High_spent_Medium_value_payments,230.3269739,0,-1.6618,0.9062,-1.1671,-0.3151,-0.7176 +0xf6b5,CUS_0xde1,August,24,719-61-2924,Entrepreneur,21453.93,1600.8275,6,4,9,0,,21.69035466,14,10.96,1,Standard,162.76,30.82307303,33 Years and 0 Months,No,0,53.80543535,Low_spent_Large_value_payments,376.2773146,0,-0.6899,0.0405,-1.2638,-0.0585,-1.7799 +0xf6c1,CUS_0x94e1,August,23,370-39-7588,Scientist,33531.19,,7,3,10,2,"Personal Loan, and Home Equity Loan",19.04165148,17,2.75,4,Good,720.3966825,34.26469816,28 Years and 3 Months,No,35.33500711,,High_spent_Medium_value_payments,404.1806296,0,1.5297,0.7482,-1.3016,0.1871,-1.2996 +0xf6cd,CUS_0xbf07,August,44,859-46-5880,Media_Manager,17191.27,,9,7,27.06745738,9,"Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Auto Loan, Not Specified, Personal Loan, Home Equity Loan, and Home Equity Loan",,19,5.26,10,Bad,4646.950954,39.25994814,9 Years and 6 Months,Yes,94.57430456,,High_spent_Small_value_payments,230.2469086,0,1.1129,0.3337,0.302,1.3771,-0.0237 +0xf6d9,CUS_0x5b7,August,44,135-89-9498,Scientist,20721.78,,9,8,27,5,"Home Equity Loan, Personal Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",40.18419429,24.83978868,15.33,8,Bad,5225.916498,32.47984314,13 Years and 9 Months,Yes,75.36737085,161.785135,Low_spent_Medium_value_payments,202.4289941,0,0.8726,1.1816,1.0128,0.1704,0.2222 +0xf6e5,CUS_0x4d0f,August,30,542-51-9266,Entrepreneur,14602.16,1222.846667,10,8,33,7,"Payday Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",36.63887232,21,18.02,8,_,4205.7,24.66908738,3 Years and 8 Months,Yes,80.65111898,,Low_spent_Medium_value_payments,225.0643712,0,1.8821,1.9956,1.8222,-0.4558,-1.42 +0xf6f1,CUS_0x5c75,August,34,045-05-9944,Doctor,61869.04,,3,680,16,1,Debt Consolidation Loan,14.37611035,11,7.57,1825,Standard,1065.89,24.08796539,33 Years and 0 Months,No,50.85183516,141.3588481,High_spent_Medium_value_payments,567.6646501,0,-0.0222,-0.8566,-0.2288,1.6593,-0.8178 +0xf6fd,CUS_0x7a7f,August,46,555-12-0749,Engineer,35707.45,3124.620833,8,4,5,3,"Mortgage Loan, Payday Loan, and Auto Loan",14.29479448,,-2.14,8,Good,835.6484096,31.69412781,19 Years and 6 Months,No,75.50815554,73.29676329,High_spent_Small_value_payments,431.2081649,0,0.988,-1.6047,-0.6903,0.6743,0.5501 +0xf709,CUS_0x1881,August,36,580-26-8686,Entrepreneur,39755.36,3188.946667,10,10,27.88954781,9,"Mortgage Loan, Not Specified, Auto Loan, Mortgage Loan, Personal Loan, Not Specified, Student Loan, Not Specified, and Debt Consolidation Loan",51.48262784,28.90440473,4.05,13,Bad,1935.901537,25.42839797,9 Years and 8 Months,Yes,1477.711656,325.1063186,Low_spent_Medium_value_payments,101.7466112,0,1.1507,1.2854,-0.487,0.24,-0.3781 +0xf715,CUS_0x92c6,August,18,010-56-2501,Mechanic,29388.66,2353.055,6,5,19.06745738,9,"Personal Loan, Student Loan, Student Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Not Specified, Student Loan, and Not Specified",,15,17.16,8,Bad,4001.090954,40.03346256,1 Years and 4 Months,Yes,139.9889874,83.09808818,Low_spent_Medium_value_payments,265.4981365,0,0.8365,-0.1467,-0.3445,-0.6455,1.1307 +0xf721,CUS_0xba06,August,46,679-48-2124,Developer,7464.64,,7,10,25,5,"Payday Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",20.93193416,15,27.98,17,Bad,3802.67,32.34021377,9 Years and 6 Months,Yes,21.84576228,13.88302836,Low_spent_Small_value_payments,293.3765427,0,1.671,0.1805,-1.142,0.4486,-0.4693 +0xf72d,CUS_0x9491,August,38,#F%$D@*&8,Scientist,31608.12,,10,8,34.88954781,6,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Student Loan, and Not Specified",38.24424239,21.4668795,28.69,11,Bad,3797.348691,34.65508139,7 Years and 0 Months,Yes,1406.574824,,High_spent_Small_value_payments,348.5625499,0,0.1204,-0.2242,-0.9031,-0.4916,0.452 +0xf739,CUS_0x13d6,August,44,502-34-9558,Engineer,94158.69,,1,4,3,4,"Credit-Builder Loan, Mortgage Loan, Student Loan, and Payday Loan",9.496102604,5.953641231,9.52,4,Good,1606.00814,30.93572141,33 Years and 3 Months,No,204.3445224,323.5919943,High_spent_Small_value_payments,506.4192333,0,0.3318,-1.6488,0.0991,-0.0642,0.86 +0xf745,CUS_0x5c07,August,32,568-80-8390,Architect,35694.33,2990.5275,8,7,19,4,"Auto Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",21.24069519,15,19.05,5,Standard,119.49,27.79894583,,Yes,64.7114171,229.4048844,Low_spent_Large_value_payments,274.9364485,0,-0.9339,-0.1894,-0.3624,-0.4411,0.856 +0xf751,CUS_0xa384,August,44,389-02-2888,Doctor,33030.03,,3,5,4,1,Debt Consolidation Loan,8.377423695,8,10.59,3,_,1193.066969,31.54090348,16 Years and 6 Months,No,22.90157865,237.94709,Low_spent_Large_value_payments,297.1210493,0,1.0565,-0.9623,0.5591,0.6807,0.0638 +0xf75d,CUS_0x65b9,August,23,532-72-1174,Engineer,28686.15,,4,563,2,0,,0,0,8.41,4,Good,707.7460918,29.22777227,19 Years and 9 Months,NM,0,174.8960413,Low_spent_Small_value_payments,375.9127755,0,1.411,-1.8429,1.9396,0.5862,-0.8709 +0xf769,CUS_0xa8c,August,25,988-02-0605,Scientist,29212.86,,5,4,6.288361749,0,Credit-Builder Loan,7.987332924,8,11.16,4,Good,33.1453008,25.08587196,19 Years and 6 Months,No,19.328972,708.6343414,Low_spent_Small_value_payments,270.2080191,0,-0.6331,-1.9855,-1.7641,-0.9553,1.7727 +0xf775,CUS_0xaf6,August,18,784-61-9362,Journalist,8684.39,987.6991667,6,5,16.06745738,5,"Auto Loan, Payday Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",15.11349702,9.753721258,17.07,8,_,3040.728139,40.43816052,7 Years and 6 Months,Yes,29.98360352,,Low_spent_Small_value_payments,260.800352,0,0.875,0.6813,0.7786,-0.1292,-0.6452 +0xf781,CUS_0x52ad,August,29,398-97-2081,Writer,19220.61,,6,7,31.06745738,100,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",44.6212952,26.79530636,2.21,10,Bad,3288.200252,23.95832722,,Yes,66.54971871,,Low_spent_Large_value_payments,239.7691103,0,-1.2113,0.5123,0.5431,1.999,0.426 +0xf78d,CUS_0x130c,August,43,187-00-5211,Engineer,9203.725,,10,5,18,7,"Student Loan, Mortgage Loan, Not Specified, Home Equity Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",,24.13427854,1.8,11,_,2671.934289,24.21894227,8 Years and 8 Months,NM,31.49706645,,Low_spent_Large_value_payments,248.9163493,0,-0.3095,-0.3362,-0.3098,0.9129,1.2391 +0xf799,CUS_0x9520,August,23,927-06-6848,Engineer,88014.39,,4,5,17,2,"Credit-Builder Loan, and Payday Loan",14.70719141,13,16.02,5,Standard,1221.97,43.36026659,15 Years and 8 Months,Yes,125.4664843,87.65994508,High_spent_Large_value_payments,744.1268206,0,0.2618,0.1787,0.6685,2.2097,-1.249 +0xf7a5,CUS_0x45df,August,22,632-93-2072,Musician,40762.39,3442.865833,4,5,1,1,Payday Loan,6.95799845,8,6.05,9,Good,1069.368742,34.13466962,25 Years and 2 Months,No,24.23683312,,High_spent_Medium_value_payments,480.7559224,0,-0.3243,2.3034,0.1539,-0.4103,-0.6522 +0xf7b1,CUS_0x8fa9,August,28,176-38-4467,Media_Manager,28381.96,2236.163333,8,825,26.95700519,7,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Student Loan, Not Specified, and Mortgage Loan",22.7602721,13.80470006,14.17,7,Standard,2528.08661,40.08319881,17 Years and 5 Months,NM,1465.31654,151.2800303,High_spent_Small_value_payments,145.9693937,0,0.1605,-0.867,-0.2305,0.3992,-0.2782 +0xf7bd,CUS_0xbd0f,August,48,209-71-4397,_______,121844.2,,6,6,16,2,"Student Loan, and Mortgage Loan",7.708559717,6,15.3,4,Standard,1265.84,26.97779984,20 Years and 10 Months,Yes,162.6681386,567.5719152,High_spent_Small_value_payments,556.3282795,0,-0.2741,0.3097,0.0333,1.7328,0.7016 +0xf7c9,CUS_0x1ad6,August,18,127-10-3342,Lawyer,133444.08,10847.34,5,3,13,7,"Payday Loan, Not Specified, Home Equity Loan, Student Loan, Home Equity Loan, Home Equity Loan, and Not Specified",,15,17.04,11,Standard,217.91,37.25856856,15 Years and 3 Months,NM,24753,845.3280407,Low_spent_Small_value_payments,,0,0.8966,-1.0629,-0.6557,0.0316,-0.1463 +0xf7d5,CUS_0x4d2a,August,18,770-44-2270,Writer,32511.02,,7,1493,7,5,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",6.739051327,5,14.67,8,_,2336.737308,24.35548392,15 Years and 6 Months,Yes,117.8684149,380.5345294,Low_spent_Small_value_payments,109.6790338,0,-0.2916,-0.3125,-0.4347,0.4684,-1.3616 +0xf7e1,CUS_0xa0b8,August,32,339-52-4612,Mechanic,15026.04,,10,5,28,6,"Payday Loan, Auto Loan, Personal Loan, Personal Loan, Student Loan, and Credit-Builder Loan",,20.59087543,8.79,8,_,4659.19099,36.80929994,12 Years and 8 Months,Yes,39.47601127,79.65258848,Low_spent_Large_value_payments,256.7884003,0,-0.0892,0.9392,0.9709,-1.4862,-0.2487 +0xf7ed,CUS_0x3208,August,30,119-34-1742,Developer,165333.72,,1,3,7.288361749,2,"Mortgage Loan, and Mortgage Loan",0,1,10.46,,_,791.399344,23.57996699,,No,189.4662099,1926.834997,Low_spent_Medium_value_payments,148.6410197,0,0.3179,0.0053,1.224,1.9008,1.253 +0xf7f9,CUS_0xba21,August,21,156-60-0442,Teacher,45491.7,3753.444587,3,7,1459,3,"Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",27.24512993,20,15.3,7,Standard,577.5195114,26.99792787,27 Years and 2 Months,Yes,381.9317546,11478.11923,Low_spent_Small_value_payments,301.6835726,0,0.9373,-0.2636,-0.4974,0.0816,-0.5751 +0xf805,CUS_0x5e96,August,45,502-14-1939,_______,20780.41,1643.700833,7,7,751,2,"Student Loan, and Student Loan",12.60756649,10.48111696,18.95,9,Standard,2414.703325,25.63582696,10 Years and 8 Months,Yes,20.13365241,,Low_spent_Small_value_payments,233.7010297,0,-1.3962,-0.4034,0.8204,-0.9742,-0.5829 +0xf811,CUS_0x909a,August,36,676-42-2158,_______,17283.9,1360.325,182,3,6,4,"Auto Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",17.6979096,16,16.41,8,Standard,759.22,28.19699523,19 Years and 0 Months,Yes,55.01570933,176.8515991,Low_spent_Small_value_payments,194.1651916,0,-1.8204,1.3445,0.72,0.8717,-0.2599 +0xf81d,CUS_0x3ae5,August,42,708-01-2723,Manager,127770.52,10430.54333,4,3,1,1,Credit-Builder Loan,12.33918495,11,7.68,6,Good,1092.213563,37.26686965,,No,92.2519242,382.7235438,High_spent_Medium_value_payments,857.4708154,0,0.7075,-0.2471,-0.1572,-0.177,-0.6457 +0xf829,CUS_0x7167,August,20,942-81-5299,Writer,9067.12,637.5933333,10,5,30,6,"Mortgage Loan, Credit-Builder Loan, Student Loan, Personal Loan, Student Loan, and Personal Loan",30.51298227,22,20.79,16,_,2563,39.04745424,3 Years and 3 Months,Yes,39.71022377,,Low_spent_Small_value_payments,237.2178917,0,-1.0666,-1.9703,-0.0282,0.568,-1.9708 +0xf835,CUS_0x784,August,25,981-82-3993,_______,12302.195,822.1829167,7,7,7,0,,25.02057359,21,5.54,1,Standard,419.95,25.53616716,20 Years and 6 Months,No,0,80.73798493,Low_spent_Medium_value_payments,281.4803067,0,0.458,-0.0772,0.7985,-0.4516,-0.2585 +0xf841,CUS_0x84c,August,30,211-24-6887,Scientist,39141.08,3134.756667,5,3,3,3,"Personal Loan, Not Specified, and Payday Loan",5.487049265,8,8.99,4,_,1226.61,30.06769087,,No,58.38249154,85.16683554,Low_spent_Large_value_payments,439.9263396,0,0.0264,-0.8721,-0.0116,-0.411,2.0753 +0xf84d,CUS_0x2b77,August,21,006-36-0111,Doctor,15167.62,,4,5,3,1,Credit-Builder Loan,13.27047616,,13.36,7,Good,761.2787579,30.59976928,,No,9.930809054,106.5029487,Low_spent_Medium_value_payments,323.631745,0,-0.0734,-1.2267,0.7481,-0.8518,-0.1823 +0xf859,CUS_0x8459,August,57,958-07-1852,Teacher,27316.86,1985.405,3,3,20,3,"Mortgage Loan, Mortgage Loan, and Mortgage Loan",,21,10.05,8,Standard,701.6813713,35.71520324,26 Years and 8 Months,Yes,56.83239035,222.4472466,Low_spent_Small_value_payments,234.7677051,0,0.682,0.7093,-0.8397,1.3806,-0.7063 +0xf865,CUS_0x1e06,August,50,318-14-7292,Mechanic,29605.9,,8,6,16,3,"Payday Loan, Home Equity Loan, and Payday Loan",12.22488051,8,,8,Standard,786.55,34.80814805,31 Years and 2 Months,Yes,53.92845732,198.1506088,Low_spent_Small_value_payments,295.8367672,0,-0.2087,-0.9022,0.0807,-0.8387,-0.2659 +0xf871,CUS_0x4dff,August,23,464-42-3681,Scientist,27131.57,,4,4,11,2,"Auto Loan, and Auto Loan",19.05727329,15,8.02,8,Standard,783.37,31.25506092,17 Years and 9 Months,NM,23.08465896,32.20387167,High_spent_Large_value_payments,412.107886,0,2.1413,-0.5333,-1.8528,-1.5512,-0.2912 +0xf87d,CUS_0x20a6,August,47,011-41-0287,Media_Manager,7879.85,,8,9,21.88954781,9,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Personal Loan",18.47832536,13,25.43,12,Bad,2681.976564,33.28373458,13 Years and 0 Months,Yes,1380.922705,32.30583601,Low_spent_Large_value_payments,252.5885052,0,1.6163,-1.405,0.3694,-0.6534,1.0533 +0xf889,CUS_0x8ddd,August,28,991-28-5753,Writer,16439.24,,8,5,6,2,"Home Equity Loan, and Credit-Builder Loan",12.739148,10,19.21,6,_,699.36,30.31647441,7 Years and 9 Months,Yes,25.14660818,,Low_spent_Small_value_payments,247.5635312,0,-0.0675,0.1203,0.288,0.6502,-0.1464 +0xf895,CUS_0x87c9,August,26,484-33-0701,Manager,17142.64,1200.553333,8,10,29.88954781,6,"Mortgage Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",19.92467858,,,13,Standard,1734.054706,32.175367,10 Years and 5 Months,Yes,1404.466055,,High_spent_Large_value_payments,244.9633313,0,0.223,0.3914,-0.8598,0.5737,-0.6508 +0xf8a1,CUS_0x148e,August,45,942-00-5565,Accountant,19911.77,,5,5,17,7,"Not Specified, Credit-Builder Loan, Auto Loan, Personal Loan, Student Loan, Home Equity Loan, and Home Equity Loan",17.49792691,15,21.01,6,Standard,1864.825577,27.76849157,20 Years and 5 Months,Yes,95.50358441,64.46266966,High_spent_Medium_value_payments,279.7210451,0,-1.702,-0.3863,-0.0971,0.3623,0.0126 +0xf8ad,CUS_0x604a,August,80,345-45-3616,Engineer,94529.82,8153.485,3,5,10,100,,90,2128,13.32,8,Standard,640.1912831,32.21196822,26 Years and 11 Months,Yes,0,1031.421444,Low_spent_Small_value_payments,215.1481145,0,0.9043,-2.1397,-0.0392,0.4944,-0.3941 +0xf8b9,CUS_0x7129,August,23,865-88-5717,Lawyer,22019.77,1790.980833,0,5,9.067457376,3,"Payday Loan, Debt Consolidation Loan, and Payday Loan",22.61169786,,8.94,4,Good,1890.769413,26.75431513,21 Years and 10 Months,NM,42.07563553,86.48880465,Low_spent_Large_value_payments,293.8133552,0,-1.3569,-0.8225,0.3472,-0.1099,1.8003 +0xf8c5,CUS_0x2959,August,40,294-46-8269,Writer,38095.16,,9,6,26.06745738,2,"Credit-Builder Loan, and Not Specified",21.4049814,14.28124203,8.62,13,Standard,3273.705581,41.32803596,8 Years and 6 Months,Yes,59.76101723,132.2765893,High_spent_Medium_value_payments,370.0017722,0,-0.0814,0.0708,-1.0838,-1.381,-0.7819 +0xf8d1,CUS_0x1441,August,22,150-43-9697,Journalist,78604.47,,6,5,4,1,Payday Loan,14.10313178,12,1.45,1,Good,995.2371481,29.57462929,27 Years and 10 Months,NM,63.58226733,402.5848432,Low_spent_Medium_value_payments,514.3643632,0,2.6752,-0.172,-1.7864,-2.258,-0.9829 +0xf8dd,CUS_0xbae6,August,43,441-32-5477,Accountant,57153.63,4641.8025,4,4,9,2,"Debt Consolidation Loan, and Not Specified",10.85372426,9,13.23,2,_,487.1141332,40.39858816,16 Years and 5 Months,Yes,86.21990832,,High_spent_Medium_value_payments,576.464343,0,-0.1411,1.0185,-0.4744,0.7758,0.3519 +0xf8e9,CUS_0x9199,August,26,149-67-5279,Journalist,60787.32,,6,6,29.06745738,100,"Home Equity Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",46.72611096,23.88149831,24.93,13,Bad,5643.017878,36.18986902,1 Years and 10 Months,NM,279.4056539,,Low_spent_Medium_value_payments,4.186503271,0,-0.3901,-0.7743,-0.3168,-0.5795,0.1932 +0xf8f5,CUS_0x1269,August,22,755-70-8952,Manager,42031.09,3762.590833,2,1,7.288361749,2,"Not Specified, Debt Consolidation Loan, and Auto Loan",0.284373788,5,14.11,2,Good,74.05646325,23.14461612,17 Years and 3 Months,No,66.50617973,543.0580638,High_spent_Medium_value_payments,450.897046,0,0.3133,-0.8241,1.9517,0.6328,-0.9559 +0xf901,CUS_0xbed9,August,35,516-43-1005,Teacher,168647.08,14098.92333,2,5,1,2,"Credit-Builder Loan, and Credit-Builder Loan",16.71805642,,10.48,,Good,1296.900781,36.77025032,26 Years and 2 Months,No,242.2964535,304.5150982,High_spent_Medium_value_payments,1142.421291,0,-0.196,0.6068,-1.2285,-0.8496,1.0725 +0xf90d,CUS_0x2ca8,August,22,531-62-7802,Doctor,126026.19,10704.1825,0,7,2,100,"Credit-Builder Loan, Personal Loan, and Student Loan",,3,8.61,4,Good,1475.49,40.68960532,29 Years and 11 Months,No,250.116972,85.42924812,High_spent_Large_value_payments,974.8720299,0,1.7518,1.4421,0.0052,-0.7427,-0.1016 +0xf919,CUS_0x2283,August,21,786-14-0940,Media_Manager,18053.32,1231.443333,5,6,13,7,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Not Specified",16.82053528,13,12.06,9,_,1262.85,27.23018469,7 Years and 4 Months,Yes,57.00609769,,Low_spent_Small_value_payments,192.9610946,0,2.9306,1.6457,-0.7612,1.6578,-0.5927 +0xf925,CUS_0xf42,August,45,306-13-0709,Accountant,39225.32,3265.776667,8,5,23,2,"Personal Loan, and Personal Loan",,22.09715546,13.2,12,Bad,2235.037943,31.0894549,9 Years and 4 Months,Yes,37.03676633,202.3655471,Low_spent_Small_value_payments,377.1753532,0,-0.1022,0.4476,-1.2032,1.7111,0.8327 +0xf931,CUS_0x247c,August,48,478-48-3295,Developer,119321.84,9694.486667,2,4,19,4,"Auto Loan, Personal Loan, Mortgage Loan, and Payday Loan",27.47814141,19,8.85,1,Standard,149.44,28.01020492,18 Years and 10 Months,No,344.5781453,473.934985,Low_spent_Large_value_payments,420.9355364,0,0.5767,-1.4843,0.3167,-1.0469,0.3987 +0xf93d,CUS_0x10eb,August,56,#F%$D@*&8,Journalist,28315.95,,4,7,10,2,"Student Loan, and Payday Loan",6.23692493,8,10.34,4,Good,618.8169889,26.9123235,20 Years and 5 Months,No,30.23099627,155.158725,Low_spent_Small_value_payments,368.2864188,0,1.807,-0.544,0.9296,0.3196,-0.8257 +0xf949,CUS_0x355c,August,80,244-48-6204,Lawyer,18750.54,,10,9,28,4,"Auto Loan, Credit-Builder Loan, Personal Loan, and Payday Loan",23.87045937,18,12.89,2553,Standard,1668.49,23.217184,6 Years and 10 Months,Yes,54.07931766,50.93855155,High_spent_Small_value_payments,319.9366308,0,-0.7472,2.7046,0.164,0.303,0.4603 +0xf955,CUS_0x802f,August,28,647-94-9183,Engineer,40334.7,3313.225,9,7,26,2,"Not Specified, and Debt Consolidation Loan",,20.20493154,2.6,14,Bad,1403.05208,33.40916123,15 Years and 0 Months,Yes,45.34140137,297.5908671,!@9#%8,278.3902315,0,-0.3917,-0.3858,0.0667,-0.3755,-0.9058 +0xf961,CUS_0x634d,August,40,023-02-7424,Engineer,17594.015,1485.441223,0,3,11,0,,7.247661267,10,8.52,5,Good,576.75,27.17277479,28 Years and 6 Months,No,171.7266939,,High_spent_Medium_value_payments,381.5626836,0,0.5846,0.5867,0.9,-1.3825,1.3464 +0xf96d,CUS_0x7d3b,August,45,582-95-6911,Musician,71148.94,,1,3,0.288361749,0,,9.10351533,9,7.84,3,Good,518.43,24.8770273,23 Years and 9 Months,No,20392,544.4603301,!@9#%8,722.6849642,0,-0.6363,-0.0016,0.1405,0.1554,-0.3054 +0xf979,CUS_0x2a8b,August,50,441-09-7559,Architect,32570.85,2936.2375,6,7,16,2,"Auto Loan, and Payday Loan",20.53397149,18,11.32,5,Standard,542.2030199,36.54206477,16 Years and 2 Months,Yes,50.16601483,202.5664036,Low_spent_Large_value_payments,340.5468294,0,0.2985,-0.255,-1.2108,-0.5824,0.2081 +0xf985,CUS_0x1e8e,August,18,584-46-9934,Entrepreneur,27007.19,2193.599167,3,7,19.28836175,0,,,10,16.24,5,Standard,171.9030409,22.09545143,22 Years and 10 Months,Yes,0,484.1453716,High_spent_Small_value_payments,424.7111861,0,0.8212,-1.2005,0.952,0.4433,0.8372 +0xf991,CUS_0x64a5,August,42,681-01-0375,Scientist,29386.9,,4,4,28.06745738,6,"Auto Loan, Student Loan, Personal Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",24.69986784,17,9.17,12,Standard,2351.190954,28.94431421,17 Years and 2 Months,Yes,100.4863748,,High_spent_Small_value_payments,248.5593872,0,-2.4698,0.4225,0.7574,-0.3975,-0.0239 +0xf99d,CUS_0x2a6b,August,80,#F%$D@*&8,Accountant,44308.67,,5,3,9,0,,9.578371712,9,4.3,9,Good,1221.140359,27.26515677,,No,0,,Low_spent_Large_value_payments,527.5524405,0,1.9321,0.7727,-0.0523,1.2537,0.1953 +0xf9a9,CUS_0xa618,August,47,418-01-6196,_______,118988.19,9680.6825,5,3,2.288361749,2,"Auto Loan, Credit-Builder Loan, and Not Specified",7.083647782,9,4.26,1,Good,619.4042786,23.57201869,31 Years and 8 Months,No,198.14711,1709.12003,Low_spent_Small_value_payments,,0,-1.1618,-0.3032,1.3025,0.3737,1.0292 +0xf9b5,CUS_0x7d0a,August,40,017-46-9829,Architect,27217.23,2057.1025,3,5,11,7,"Auto Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",17.62351205,15,10.78,11,Standard,901.34,36.65247457,,Yes,145.7568677,50.62706787,High_spent_Large_value_payments,249.3263144,0,-1.8712,0.1147,1.1199,-0.3968,-0.059 +0xf9c1,CUS_0x460c,August,23,647-87-5349,_______,7019.435,711.9529167,6,5,20,6,"Not Specified, Not Specified, Auto Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",15.03858295,11,10.42,5,Standard,328.81,24.22986567,7 Years and 0 Months,Yes,25.23987455,0,High_spent_Large_value_payments,279.2470081,0,-1.7544,0.6051,-0.6218,0.3168,0.7657 +0xf9cd,CUS_0x4dba,August,25,057-73-9369,Engineer,14688.84,1030.584113,4,6,18,1,Credit-Builder Loan,18.92835201,15,5.56,6,Standard,1459.05,31.31979839,20 Years and 6 Months,No,121.9257023,154.4891519,Low_spent_Small_value_payments,241.4780327,0,-0.5968,-1.7123,2.2779,0.9435,1.2044 +0xf9d9,CUS_0x69a6,August,31,675-99-1025,Mechanic,130289.46,10677.455,0,4,3,1,Home Equity Loan,,3,0.88,5,Good,1035.987662,37.61427484,28 Years and 5 Months,No,76.06073445,351.3051132,High_spent_Medium_value_payments,940.5921848,0,0.0115,-2.3996,-1.6295,0.4416,0.4582 +0xf9e5,CUS_0x4e3,August,31,389-73-1750,Lawyer,65383.72,5522.643333,8,10,1562.889548,100,"Student Loan, and Payday Loan",13.96063076,9.351069315,9.09,16,Standard,2781.415429,27.43777135,,Yes,1394.246602,400.0945041,Low_spent_Medium_value_payments,343.5931455,0,-0.7625,0.5787,-0.7672,-0.2235,0.741 +0xf9f1,CUS_0xa2a3,August,40,004-73-7665,Entrepreneur,19278.72,,10,10,23.95700519,6,"Auto Loan, Student Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Student Loan",,22,28.3,10,_,3259.510954,31.99459468,2 Years and 5 Months,Yes,1395.379013,,Low_spent_Medium_value_payments,158.8534501,0,-0.025,-0.729,-1.2671,-0.6902,2.6262 +0xf9fd,CUS_0x6a8a,August,18,672-99-7085,Developer,21826.18,,3,5,6.288361749,4,"Not Specified, Personal Loan, Home Equity Loan, and Mortgage Loan",,19,9.86,11,Standard,72.03,35.03365115,27 Years and 11 Months,Yes,40.76315786,591.8046117,Low_spent_Small_value_payments,235.3545248,0,-0.128,1.6114,-0.5627,0.3627,-2.3075 +0xfa09,CUS_0x6a7e,August,32,715-62-4980,Scientist,40035.02,3205.251667,9,6,23.06745738,9,"Payday Loan, Not Specified, Student Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Student Loan, and Personal Loan",,25,19.79,11,Bad,3898.250954,35.38050704,12 Years and 4 Months,Yes,216.5099108,70.53822145,High_spent_Small_value_payments,266.7567465,0,0.6893,0.341,0.5683,0.9907,1.9956 +0xfa15,CUS_0x6853,August,45,777-91-5121,Manager,8305.15,,7,5,32,9,"Debt Consolidation Loan, Student Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Not Specified, Not Specified, and Personal Loan",29.11469991,,1.97,9,Bad,4299.232434,29.86722945,3 Years and 0 Months,Yes,48.91599115,81.78719698,Low_spent_Small_value_payments,221.3063952,0,0.4401,-0.8523,1.8294,-0.8686,-0.3285 +0xfa21,CUS_0x41c,August,50,#F%$D@*&8,Developer,18808.34,,1,5,10,0,,10.66966443,11,7.59,2,Good,1035.88,37.86705482,22 Years and 8 Months,No,0,93.07892998,Low_spent_Small_value_payments,358.7572367,0,0.1372,-0.5112,-0.637,-0.5132,-0.0825 +0xfa2d,CUS_0x4efc,August,37,981-75-4926,Musician,18350.255,,5,6,19,5,"Not Specified, Personal Loan, Auto Loan, Personal Loan, and Mortgage Loan",,21.74958203,7.75,6,Standard,556.9474592,23.42897591,10 Years and 10 Months,Yes,58.17802473,155.8244734,Low_spent_Small_value_payments,215.9162935,0,0.446,-0.4578,0.0651,-0.6462,0.4502 +0xfa39,CUS_0xc22c,August,19,076-84-5319,Developer,69428.72,5721.726667,10,8,18,4,"Mortgage Loan, Payday Loan, Payday Loan, and Student Loan",90,2585,2.94,12,Bad,2474.96,39.77797065,11 Years and 5 Months,Yes,178.0578629,45.28023393,High_spent_Large_value_payments,588.8345698,0,0.0721,-0.288,-0.8401,1.6625,1.7797 +0xfa45,CUS_0xb264,August,54,442-80-9610,Journalist,28867.01,,2,3,3,0,,5.535580283,2,7.78,6,Good,51.54,31.4473265,19 Years and 6 Months,No,0,95.75856334,High_spent_Medium_value_payments,423.4998533,0,1.3999,1.1348,-0.1298,1.4924,0.7082 +0xfa51,CUS_0x1ff5,August,43,313-93-6872,Accountant,147292.28,12261.35667,4,3,16,4,"Auto Loan, Student Loan, Mortgage Loan, and Auto Loan",26.33410752,17,10.61,5,Standard,1133.79,29.15789966,16 Years and 9 Months,No,246.2621915,93.2500006,High_spent_Large_value_payments,1126.623475,0,-1.7363,-0.5487,0.3967,0.3639,-0.937 +0xfa5d,CUS_0x9828,August,27,889-61-7625,Musician,17535.65,,8,7,29,6,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, and Home Equity Loan",29.05730657,20.52078479,19.11,10,Standard,1671.764573,38.00063661,20 Years and 8 Months,Yes,81.70490745,90.39512448,High_spent_Small_value_payments,236.9303847,0,-0.5699,1.1247,0.0329,1.1619,-0.6837 +0xfa69,CUS_0x23f8,August,26,004-44-2584,Scientist,40019.64,3049.97,7,6,16,9,"Mortgage Loan, Payday Loan, Not Specified, Home Equity Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",23.51985089,19,20.31,15,Bad,4187.21,27.82109665,,Yes,290.9728955,204.2752761,!@9#%8,79.74882841,0,1.292,0.5168,1.0119,-0.485,-1.2106 +0xfa75,CUS_0x9d7e,August,54,664-67-7834,Writer,106598.84,8639.236667,8,7,13,100,"Auto Loan, Not Specified, Mortgage Loan, and Mortgage Loan",14.46562128,9,3.06,5,_,1299.415955,33.87222894,29 Years and 2 Months,No,320.8929515,101.1539851,High_spent_Large_value_payments,693.7657309,0,-1.8085,1.7924,1.0475,-0.7233,1.7915 +0xfa81,CUS_0x4d1c,August,32,264-08-8572,Doctor,82892.4,6685.7,8,9,29.88954781,9,"Student Loan, Payday Loan, Student Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Mortgage Loan, and Not Specified",33.13327928,24,27.96,11,_,3885.46,31.03812132,,Yes,1756.009197,447.575631,Low_spent_Large_value_payments,40.65509064,0,2.1461,0.9176,1.0469,0.6805,-1.3612 +0xfa8d,CUS_0x1ebe,August,52,721-47-3071,Media_Manager,72195.24,6270.27,3,7,5,1,Personal Loan,,10,9.44,7,Standard,1248.19,26.65464014,21 Years and 6 Months,Yes,47.06610259,113.9439473,High_spent_Large_value_payments,706.0169501,0,1.9541,1.1748,-0.6959,0.2939,0.1723 +0xfa99,CUS_0x31b7,August,42,303-30-5170,Lawyer,31200.24,,2,3,0.288361749,100,"Not Specified, Personal Loan, and Student Loan",2.78563396,5,16.64,4,Good,12.79091502,34.26092841,23 Years and 2 Months,No,71.67124257,671.4532302,Low_spent_Small_value_payments,263.7447964,0,-0.7052,-0.8637,0.6371,0.1713,-0.9213 +0xfaa5,CUS_0x72b2,August,31,603-40-5139,Entrepreneur,33669.7,,5,7,14,6,"Credit-Builder Loan, Payday Loan, Not Specified, Student Loan, Home Equity Loan, and Auto Loan",19.08347706,18,15.59,7,Standard,795.19,38.55029524,14 Years and 8 Months,Yes,159.990097,,Low_spent_Large_value_payments,152.8877069,0,-0.567,-0.186,-1.3408,-0.2062,-0.2798 +0xfab1,CUS_0xa453,August,46,932-45-0249,Lawyer,33427.13,,4,2,4,0,,,6,5.51,4,Good,828.32,26.96893936,31 Years and 0 Months,No,0,342.2318725,Low_spent_Small_value_payments,218.6275442,0,0.1521,0.0075,-2.9266,0.2257,-0.3051 +0xfabd,CUS_0xff6,August,19,541-92-8371,Doctor,117639.92,9727.326667,5,6,1,2,"Home Equity Loan, and Auto Loan",,7,10.4,2,Good,301.4546541,32.87185347,24 Years and 11 Months,No,126.6384533,608.0087221,Low_spent_Medium_value_payments,592.0056862,0,1.7618,-1.5886,1.2431,1.0977,-1.2583 +0xfac9,CUS_0x8684,August,33,575-25-6683,Entrepreneur,22233.98,,5,6,3,4,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Auto Loan",0,0,10.24,2,Good,1320.47,36.96899063,29 Years and 4 Months,No,39.59802419,195.6957709,Low_spent_Small_value_payments,248.0893716,0,-1.9591,2.2492,0.9755,1.2625,-2.1392 +0xfad5,CUS_0x24d7,August,34,894-86-2765,Developer,58166.6,,6,8,29.95700519,9,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Not Specified, Personal Loan, Auto Loan, Not Specified, Student Loan, and Credit-Builder Loan",22.43241234,,29.19,9,Bad,3554.950954,30.85405465,,Yes,1642.597083,,!@9#%8,0,0,-0.8967,-0.3331,-0.0805,0.79,-0.3297 +0xfae1,CUS_0xbec0,August,20,186-66-2426,Writer,78006.32,6399.526667,9,5,24.06745738,6,"Auto Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Payday Loan, and Auto Loan",,,17.9,12,Bad,5022.950954,40.76711646,1 Years and 3 Months,Yes,274.4334182,82.68168839,High_spent_Large_value_payments,496.1172721,0,1.2945,0.8753,-0.6622,1.4968,0.9311 +0xfaed,CUS_0x99cf,August,43,043-69-4345,Accountant,22224.03,2145.0025,8,5,20,4,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",22.9695081,16,17.5,8,Standard,1418.03,38.63078905,7 Years and 4 Months,Yes,56.92474699,18.63897263,High_spent_Large_value_payments,378.9365304,0,-0.5632,0.0307,-0.2021,0.7489,0.4202 +0xfaf9,CUS_0x524f,August,56,562-64-3862,Musician,51150.64,,8,5,17,3,"Personal Loan, Personal Loan, and Home Equity Loan",27.0679881,19,15.74,2,Standard,1228.48,28.60468765,27 Years and 11 Months,Yes,127.2491976,10000,!@9#%8,437.9069728,0,0.4016,0.7515,1.9791,-2.2833,-1.6565 +0xfb05,CUS_0x5b04,August,18,811-53-2257,Entrepreneur,18608.17,1774.680833,7,8,30,6,"Personal Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",,16,21.87,13,_,4228.95,28.71220158,9 Years and 9 Months,Yes,55.15482121,,High_spent_Small_value_payments,258.7247566,0,0.1117,0.7377,0.5537,0.0332,1.5002 +0xfb11,CUS_0x4313,August,80,903-92-2277,Journalist,19051.66,,10,8,16.95700519,6,"Personal Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",38.1738489,18.06876669,7.74,10,Bad,3112.400985,38.34583015,,Yes,1464.786535,151.399159,Low_spent_Small_value_payments,178.0862392,0,0.219,-0.175,-0.3205,0.8052,0.011 +0xfb1d,CUS_0xa7b8,August,42,915-93-5464,Entrepreneur,25856.84,,3,7,1,3,"Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",15.28756356,,6.22,5,Good,586.46,26.49518913,18 Years and 0 Months,No,58.72646602,57.71918256,Low_spent_Large_value_payments,351.4280181,0,-1.0523,-1.6127,-2.0185,0.404,0.9482 +0xfb29,CUS_0x593c,August,49,184-32-0632,Developer,18464.08,,8,7,8,7,"Debt Consolidation Loan, Student Loan, Not Specified, Not Specified, Debt Consolidation Loan, Payday Loan, and Payday Loan",28.13349507,20,19.68,5,Standard,2290.537834,28.16033137,7 Years and 2 Months,NM,95.71838286,39.93408283,High_spent_Large_value_payments,278.9772688,0,1.145,0.5836,0.2183,-1.3287,-1.4044 +0xfb35,CUS_0x28e7,August,39,669-94-9890,Engineer,10395.46,1160.288333,6,8,24.95700519,9,"Personal Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Payday Loan",42.85549089,25,15.39,9,_,2004.980954,32.14907693,14 Years and 9 Months,Yes,1392.417827,35.01792738,High_spent_Medium_value_payments,217.5427096,0,0.2461,-0.4768,0.9662,0.3007,0.0143 +0xfb41,CUS_0x301f,August,38,743-99-6874,Accountant,138715.04,11841.58667,5,3,15,1,Not Specified,,17,14.11,2,Standard,551.75,35.93310161,21 Years and 0 Months,Yes,71.74642025,258.329745,High_spent_Large_value_payments,1094.082501,0,-1.9447,0.1808,1.3943,1.9013,0.4693 +0xfb4d,CUS_0x8de0,August,43,906-56-2463,Doctor,9375.245,,8,9,29.88954781,100,"Not Specified, Payday Loan, Personal Loan, Auto Loan, and Student Loan",,20.73350744,18.21,6,Bad,4804.886276,33.81183706,,Yes,1347.765142,25.59703675,Low_spent_Small_value_payments,285.4347812,0,-2.3795,1.2403,-2.4289,-0.2607,-0.2674 +0xfb59,CUS_0xaab7,August,40,110-58-2517,Entrepreneur,103744.83,8398.4025,6,6,18,3,"Not Specified, Payday Loan, and Debt Consolidation Loan",25.63830161,17,0.78,6,Standard,484.98,34.43477222,27 Years and 0 Months,No,160.970391,,Low_spent_Large_value_payments,527.8895722,0,-0.726,0.5547,1.1487,0.3569,-1.1636 +0xfb65,CUS_0x6275,August,19,926-55-7800,Architect,30355.01,,4,2,2,100,Student Loan,6.87460433,7,9.37,4,Good,710.0863837,40.53998072,28 Years and 9 Months,No,20.51068136,263.1200915,!@9#%8,283.9633984,0,1.8839,1.0593,1.4838,-1.2256,-0.742 +0xfb71,CUS_0xace2,August,20,444-33-6428,Accountant,22120.69,1809.390833,7,4,14,6,"Payday Loan, Student Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",9.950685394,8,17.94,7,Standard,67.23,30.79790053,13 Years and 5 Months,Yes,74.11808217,121.6788765,Low_spent_Small_value_payments,275.1421247,0,-0.435,0.0668,1.3396,2.0648,1.8001 +0xfb7d,CUS_0x85bd,August,32,055-00-5463,Scientist,49768.71,4045.3925,7,5,18,6,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",16.82959361,11.48222075,,11,Standard,1631.655154,28.00878187,14 Years and 6 Months,Yes,225.6934909,50.0365481,High_spent_Large_value_payments,368.809211,0,0.0181,-0.8719,-1.1426,0.5412,-1.5707 +0xfb89,CUS_0x4862,August,18,#F%$D@*&8,Mechanic,59703.75,,7,9,18.06745738,9,"Student Loan, Personal Loan, Not Specified, Auto Loan, Payday Loan, Personal Loan, Payday Loan, Student Loan, and Not Specified",,15,18.56,8,Bad,4478.190954,39.5951761,3 Years and 6 Months,Yes,410.2494796,238.6672959,High_spent_Small_value_payments,63.09418659,0,-1.65,0.1573,-1.201,-0.8847,-1.7416 +0xfb95,CUS_0xaf93,August,50,842-21-5410,Developer,97889.1,8205.425,1,7,9,3,"Payday Loan, Auto Loan, and Mortgage Loan",1.82562888,4.801657208,15.6,7,Good,1488.873876,37.90689544,18 Years and 5 Months,NM,132.4438582,120.9501379,High_spent_Medium_value_payments,817.148504,0,2.089,0.3952,0.3244,-0.2935,-1.2818 +0xfba1,CUS_0xbc74,August,18,235-99-8671,Accountant,17509,1657.083333,10,9,21.06745738,4,"Payday Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",29.18563964,19.04192305,,,Bad,2995.352118,32.81958299,,Yes,53.88071323,81.3279896,Low_spent_Small_value_payments,293.7793426,0,-0.3381,0.7266,-0.6712,0.7352,0.1297 +0xfbad,CUS_0x8563,August,18,762-82-6147,Teacher,67503.36,,7,5,17.28836175,0,Payday Loan,20.1470314,17,9.52,6,Standard,323.93,32.69986246,19 Years and 5 Months,No,36.81702733,10419.93746,Low_spent_Large_value_payments,609.6354467,0,1.6433,0.6074,-1.1592,0.2189,1.6181 +0xfbb9,CUS_0x82ff,August,24,276-50-0369,Musician,35366.38,2816.198333,9,5,29,8,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Student Loan, Mortgage Loan, and Not Specified",,24,18.35,8,Bad,4456.34,25.93645038,10 Years and 3 Months,Yes,140.7618722,186.7857514,Low_spent_Medium_value_payments,234.0722098,0,-0.1393,-0.2734,-1.8902,1.7529,0.0228 +0xfbc5,CUS_0x47e5,August,40,334-74-9570,Mechanic,40806.35,,3,7,12,2,"Auto Loan, and Auto Loan",,5,0.96,3,Good,595.2,31.72441156,,No,44.19786861,157.6842667,High_spent_Small_value_payments,419.9707814,0,-0.5618,0.5629,-1.1576,-0.3735,-0.6464 +0xfbd1,CUS_0x5ba1,August,32,803-91-4307,Scientist,45472.95,3676.4125,9,6,18,5,"Debt Consolidation Loan, Payday Loan, Personal Loan, Auto Loan, and Auto Loan",26.63866052,14,8.69,9,Bad,1814.78,29.55714767,16 Years and 10 Months,NM,119.6257476,200.6691118,!@9#%8,307.3463906,0,-1.42,-0.1889,-1.0021,1.5274,1.5438 +0xfbdd,CUS_0x312c,August,19,650-51-5112,Architect,56531.6,4643.966667,7,6,23,6,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",37.88369391,28.36497782,9.39,6,_,4236.116376,27.21929214,12 Years and 3 Months,Yes,192.8933297,56.21254343,High_spent_Large_value_payments,455.2907935,0,-1.7542,-0.7006,-0.8039,1.6616,0.0281 +0xfbe9,CUS_0xb51d,August,37,129-24-9664,_______,40174.36,,5,3,11.28836175,2,"Credit-Builder Loan, and Credit-Builder Loan",,,12.32,2,Standard,499.0398458,32.39284837,18 Years and 8 Months,NM,64.40131451,11854.88378,High_spent_Large_value_payments,448.0622694,0,-0.6336,-1.4361,0.5224,0.3572,0.9027 +0xfbf5,CUS_0x8919,August,34,412-59-9079,Scientist,76891,,6,782,19,4,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Payday Loan",38.58742369,20,6.79,12,Bad,1999.24,30.59272488,14 Years and 8 Months,Yes,362.184652,81.2993753,High_spent_Large_value_payments,676.5017984,0,2.4106,-0.0463,-0.097,-0.2731,-0.3975 +0xfc01,CUS_0x52cf,August,29,444-79-5421,_______,13511.76,,6,6,18,4,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",8.982903569,10,10.07,2,_,97.99,32.22777758,23 Years and 8 Months,No,25.0378665,15.84289309,High_spent_Large_value_payments,322.9172404,0,1.0147,-0.4883,-0.6842,-0.9873,2.0989 +0xfc0d,CUS_0xc526,August,41,938-07-0903,_______,112202.72,9144.226667,4,3,18.28836175,2,"Credit-Builder Loan, Student Loan, and Home Equity Loan",11.02129753,12,7,4,Standard,455.29,27.7613827,,Yes,223.8923924,911.9295194,High_spent_Small_value_payments,458.5382158,0,0.5374,-2.0742,-2.0385,2.2036,-2.2204 +0xfc19,CUS_0xa8d,August,39,685-12-6865,Lawyer,74063.28,,3,6,4.288361749,2,"Payday Loan, and Auto Loan",19.38722138,17,13.91,10,Standard,909.3378892,35.1773006,18 Years and 4 Months,Yes,117.4361398,937.3955011,Low_spent_Medium_value_payments,329.433266,0,0.6646,1.8456,1.1298,-1.7624,-0.8497 +0xfc25,CUS_0x6073,August,37,#F%$D@*&8,Teacher,107595.68,,8,4,4257,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",,17,10.1,8,Standard,225.86,40.71134643,11 Years and 2 Months,Yes,346.143121,,Low_spent_Large_value_payments,505.0545329,0,1.0021,0.1027,0.7839,-0.8336,0.3159 +0xfc31,CUS_0x53fc,August,39,777-57-0144,Engineer,60437.28,4948.44,6,4,8,4,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",20.16153231,12.97578,19.55,11,Standard,2386.758907,33.93301666,16 Years and 10 Months,Yes,129.3874628,189.2735912,High_spent_Medium_value_payments,426.182946,0,-0.0322,1.2354,1.7325,0.5254,-0.6522 +0xfc3d,CUS_0x74bd,August,24,510-77-7142,Media_Manager,29663.44,2676.953333,5,6,18,2,"Not Specified, and Credit-Builder Loan",7.585221155,9,17.76,8,Standard,598.51,36.43438682,17 Years and 6 Months,Yes,49.34591127,183.5826868,Low_spent_Small_value_payments,324.7667353,0,1.0062,1.1523,0.6091,-0.7644,0.7539 +0xfc49,CUS_0xbea3,August,18,127-36-3685,_______,23445.47,1870.789167,4,5,18,6,"Home Equity Loan, Auto Loan, Mortgage Loan, Not Specified, Student Loan, and Payday Loan",21.95157896,19,8.77,5,Standard,1339.754954,23.04403732,16 Years and 0 Months,Yes,109.7921401,129.2920593,Low_spent_Small_value_payments,252.5487549,0,-1.5068,-0.5246,-0.5679,-0.5798,-1.4068 +0xfc55,CUS_0x4db6,August,49,321-45-2585,Lawyer,60125.18,,3,5,3.288361749,2,"Not Specified, and Not Specified",10.03297626,12,3.95,4,Good,582.8605356,32.83517542,30 Years and 10 Months,NM,82.29577728,638.5826111,High_spent_Medium_value_payments,502.9294775,0,0.6966,0.7301,-1.4304,0.9997,0.7662 +0xfc61,CUS_0xa00f,August,41,436-51-1042,Writer,105950.76,8905.23,6,5,12,1,Not Specified,23.45121235,17,10.18,8,Standard,746.19,31.59455138,30 Years and 4 Months,No,46.54472119,72.46380996,High_spent_Large_value_payments,1011.514469,0,1.0388,-1.2808,0.5126,0.4344,-0.3886 +0xfc6d,CUS_0x109f,August,41,283-32-0255,Teacher,130435.86,,4,846,9,2,"Home Equity Loan, and Home Equity Loan",0,1,12.85,0,Good,942.71,34.78470398,29 Years and 11 Months,NM,188.1861332,,Low_spent_Medium_value_payments,81.141936,0,1.4872,-0.159,-0.112,1.9132,-0.2847 +0xfc79,CUS_0x32e2,August,44,162-29-6785,_______,31172.1,,6,10,17.06745738,5,"Not Specified, Not Specified, Student Loan, Auto Loan, and Student Loan",41.62291935,24,26.93,7,Bad,3596.311113,38.53729209,10 Years and 4 Months,Yes,106.0456042,,High_spent_Small_value_payments,213.2975793,0,0.0499,-0.6364,1.3268,0.038,-1.7575 +0xfc85,CUS_0x3175,August,18,800-82-2401,Developer,36776.48,,6,5,21.06745738,6,"Payday Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",33.64383956,15,6.43,11,Bad,2641.780954,31.1709219,14 Years and 11 Months,NM,105.9182821,,Low_spent_Small_value_payments,299.3402829,0,0.6204,-0.8754,-1.3712,-1.6392,0.8141 +0xfc91,CUS_0x38aa,August,42,132-95-9102,Media_Manager,10363.34,844.6116667,4,4,9,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",18.36716832,13,17.95,8,_,64.53,29.15269971,,Yes,13.9653729,48.54607514,High_spent_Small_value_payments,281.9497186,0,-0.1655,0.9234,-1.3846,-1.5825,0.9396 +0xfc9d,CUS_0xc016,August,37,850-47-2557,Entrepreneur,44793.34,3677.778333,0,5,2.288361749,0,,0,3,10.69,3,Good,506.7074022,23.09108448,25 Years and 9 Months,No,0,544.7381835,High_spent_Medium_value_payments,507.7401136,0,1.0498,1.4714,1.0088,0.7675,-0.7236 +0xfca9,CUS_0xc5fd,August,50,302-88-2882,Engineer,53876.66,4247.721667,3,4,12,0,,17.60883843,14,5.38,6,Standard,808.8,25.98589245,24 Years and 2 Months,No,0,68.89006067,High_spent_Medium_value_payments,605.882106,0,-0.3833,1.3266,0.2635,-0.3101,-1.1942 +0xfcb5,CUS_0x424f,August,33,352-32-4006,Developer,142285.72,,2,3,1,3,"Not Specified, Personal Loan, and Personal Loan",,1,-0.32,4,Good,985.1351911,31.02879122,32 Years and 6 Months,No,268.2087002,253.1379577,High_spent_Large_value_payments,929.3943866,0,-0.2438,-1.5863,0.9993,-1.6253,0.07 +0xfcc1,CUS_0x233a,August,39,077-98-9745,Manager,20062.86,,7,7,17,1,Not Specified,12.17460704,12,8.68,1,Standard,769.51,34.57488658,,Yes,8.56128096,47.63929772,Low_spent_Medium_value_payments,367.1899213,0,-0.5142,0.9947,0.7121,1.0059,1.2478 +0xfccd,CUS_0x732b,August,18,035-11-0443,Accountant,19860.55,,6,3,16,2,"Home Equity Loan, and Credit-Builder Loan",,17,11.07,5,Standard,1101.26,25.21502257,14 Years and 6 Months,Yes,18.539143,146.148397,Low_spent_Large_value_payments,274.4170434,0,-0.2463,-1.8639,0.3618,-1.49,-0.3327 +0xfcd9,CUS_0x1d00,August,44,185-89-0354,Teacher,14638.54,1134.878333,6,9,17,8,"Debt Consolidation Loan, Payday Loan, Student Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Home Equity Loan",39.73630682,22.45445164,26.3,14,Bad,3551.965287,37.55926354,12 Years and 4 Months,Yes,80.00617265,44.69070234,Low_spent_Small_value_payments,278.7909583,0,1.3342,-0.4244,0.6419,1.0412,0.3717 +0xfce5,CUS_0x346e,August,30,056-47-2468,Media_Manager,121684.36,9845.363333,4,6,1.288361749,2,"Payday Loan, Not Specified, and Not Specified",,,-4.5,3,Good,1047.718493,22.82096714,23 Years and 10 Months,No,190.0648044,,Low_spent_Small_value_payments,208.1176817,0,0.4712,0.999,-1.4902,-0.497,-0.8065 +0xfcf1,CUS_0xae09,August,20,224-67-6532,Musician,57377.16,4651.43,9,5,34,6,"Credit-Builder Loan, Personal Loan, Auto Loan, Payday Loan, Auto Loan, and Auto Loan",,,8.56,8,_,2117.187325,38.71734851,6 Years and 9 Months,NM,284.1447939,52.25778352,High_spent_Large_value_payments,368.7404226,0,-0.7823,-1.0281,1.029,0.3573,-0.6133 +0xfcfd,CUS_0x516c,August,47,324-60-4563,Accountant,38391.66,2921.305,4,1,1,1,Mortgage Loan,0,2,7.08,5,Good,271.61,33.21429611,24 Years and 8 Months,No,24.36219265,240.056172,Low_spent_Large_value_payments,297.7121354,0,-0.7216,1.0948,1.3467,-0.4131,1.5681 +0xfd09,CUS_0x9573,August,39,546-00-3244,Teacher,18025.17,,4,3,12,3,"Debt Consolidation Loan, Auto Loan, and Credit-Builder Loan",,1.211729472,10.28,8,_,750.7194835,28.25696354,16 Years and 4 Months,No,26.15464153,122.9258175,Low_spent_Medium_value_payments,290.829291,0,-0.6815,-0.6845,-0.2029,-0.5585,-0.195 +0xfd15,CUS_0x9daa,August,52,789-15-7049,Entrepreneur,36137.59,,3,4,2,4,"Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",14.03232718,,7.21,2,Good,1261.71,29.18755446,27 Years and 9 Months,No,73.14084221,109.297229,High_spent_Medium_value_payments,355.2085121,0,1.8642,-0.1978,-0.5553,0.2985,-0.2491 +0xfd21,CUS_0x70e,August,20,216-87-5046,Developer,120986.25,10288.1875,3,4,4.288361749,0,Not Specified,0,2,4.63,0,Good,1010.15,31.47740825,22 Years and 0 Months,No,53.78228479,1130.463196,Low_spent_Large_value_payments,534.5107304,0,-0.0034,1.3161,-0.5064,0.6195,-0.1482 +0xfd2d,CUS_0xc282,August,19,092-89-2578,Musician,18980.76,,7,5,16.06745738,7,"Not Specified, Not Specified, Personal Loan, Not Specified, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",36.25130152,21.84440169,16.86,7,_,5182.195389,38.54404068,0 Years and 11 Months,Yes,102.9896424,63.90731409,High_spent_Small_value_payments,241.3557556,0,-2.0541,-1.0356,-0.0115,2.2056,0.6041 +0xfd39,CUS_0x1d7b,August,24,512-27-0955,Engineer,70414.1,,2,1407,8.288361749,4,"Personal Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",11.23554882,11,9.24,4,Good,389.8751986,35.34035908,23 Years and 6 Months,No,221.0836457,553.3489795,High_spent_Large_value_payments,515.7299997,0,1.4627,0.7917,-0.7126,-1.1186,0.5101 +0xfd45,CUS_0x669f,August,42,329-48-8705,Engineer,15551.68,1542.973333,7,9,32,7,"Personal Loan, Mortgage Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",29.48824934,,1.99,15,Bad,1660.2,26.44505929,,NM,86.8039398,32.57780358,High_spent_Large_value_payments,274.9155899,0,1.0909,-0.7409,0.6589,0.0406,-0.9172 +0xfd51,CUS_0x6020,August,18,940-70-3305,Writer,58012.88,,7,4,8,6,"Home Equity Loan, Not Specified, Not Specified, Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",24.62453165,19,10.34,,Standard,168.33,31.88060947,18 Years and 9 Months,Yes,181.0265825,,Low_spent_Medium_value_payments,375.6666309,0,-1.6442,0.9766,-0.8944,1.1296,0.2998 +0xfd5d,CUS_0xa773,August,22,123-87-3291,Developer,42803.1,3628.925,5,7,23.06745738,4,"Personal Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",35.67564989,22.79294638,18.93,,Standard,2831.98832,29.13407471,17 Years and 10 Months,NM,73.78777939,79.37840488,!@9#%8,423.0060278,0,-1.0686,-0.7671,-1.3148,1.4103,0.8104 +0xfd69,CUS_0xb453,August,36,002-04-1319,Doctor,37485.37,,5,6,0.288361749,100,,0.841173556,3,4.79,4,Good,313.7678702,33.27938986,18 Years and 3 Months,No,0,11879.63929,Low_spent_Large_value_payments,372.7613272,0,-0.9422,0.0858,0.2682,0.1641,-0.8755 +0xfd75,CUS_0x3dd8,August,25,851-44-4923,Entrepreneur,32928.14,2948.011667,0,2,5,0,,,1,8.63,5,_,929.04,33.89946926,30 Years and 2 Months,No,0,149.1397544,Low_spent_Medium_value_payments,425.6614123,0,0.0533,-0.7445,-1.032,0.6146,-1.3775 +0xfd81,CUS_0x30e3,August,24,780-97-4667,Developer,9691.165,,8,6,29.06745738,6,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",27.35807908,13.01572478,9.22,11,Standard,2045.072385,29.13842066,19 Years and 10 Months,Yes,38.46153447,80.57082799,Low_spent_Small_value_payments,213.2070579,0,-0.6037,0.368,-2.004,1.3872,0.4637 +0xfd8d,CUS_0x133b,August,33,072-54-2150,Lawyer,44261.65,3317.27951,4,1,4.288361749,0,Debt Consolidation Loan,10.19563075,12,-1.64,2,_,452.2,34.56900621,30 Years and 3 Months,No,460.3113893,767.9964762,Low_spent_Large_value_payments,277.5680017,0,-0.0607,-0.5707,0.4072,-0.0298,-1.0251 +0xfd99,CUS_0x681c,August,29,446-41-8323,Scientist,19801.99,,3,3,17,4,"Not Specified, Mortgage Loan, Auto Loan, and Auto Loan",,18.15812505,10.84,11,Standard,2175.834789,28.09687327,,NM,52.36934009,,Low_spent_Small_value_payments,253.958258,0,0.4429,0.9988,-0.109,-1.722,-0.3619 +0xfda5,CUS_0x48ee,August,40,328-26-2142,Scientist,23756.68,1730.723333,8,7,7,0,,,11,16.37,2,_,612.93,33.88706992,20 Years and 11 Months,Yes,0,72.0371776,!@9#%8,361.0351557,0,0.9939,0.3911,-0.2161,-0.2728,-1.3508 +0xfdb1,CUS_0x14d9,August,36,225-59-9039,Writer,76082.25,6082.1875,6,5,13,3,"Credit-Builder Loan, Not Specified, and Payday Loan",16.40824427,15,7.8,4,Standard,847.11,24.93558654,33 Years and 0 Months,Yes,186.4647829,10000,Low_spent_Small_value_payments,,0,2.1301,1.0444,0.8128,-1.1688,-0.3301 +0xfdbd,CUS_0x4aee,August,43,795-12-4901,Architect,42956.58,3665.715,5,3,2,0,,8.906788014,8,1.16,4,Good,466.0870846,36.44947043,22 Years and 5 Months,No,0,11594.65853,High_spent_Medium_value_payments,502.1036213,0,-0.1603,-2.039,-1.5874,-0.4904,1.5001 +0xfdc9,CUS_0x291b,August,29,711-53-7330,Lawyer,24613.73,,8,3,11,100,"Mortgage Loan, Student Loan, and Mortgage Loan",,,8.18,4,Good,576.5049794,25.40602583,25 Years and 6 Months,No,56.50145629,263.1083082,!@9#%8,225.9051378,0,1.3549,-1.2745,0.9272,-0.7795,1.4937 +0xfdd5,CUS_0xb801,August,49,602-62-4745,Musician,162259.96,13239.66333,1,5,5.288361749,4,"Student Loan, Auto Loan, Not Specified, and Student Loan",0,1,7.33,6,Good,164.7832163,32.27778623,17 Years and 5 Months,NM,343.5778739,,Low_spent_Medium_value_payments,29.00554781,0,1.0022,0.0163,0.907,0.1049,0.3936 +0xfde1,CUS_0xa88c,August,22,#F%$D@*&8,Manager,14403.86,,4,4,14.06745738,0,,,10,5.08,4,_,1655.030954,28.41153592,31 Years and 8 Months,Yes,0,61.3034348,Low_spent_Small_value_payments,305.2084439,0,0.8539,-2.0989,-0.7349,0.3872,1.0218 +0xfded,CUS_0x63d,August,21,010-09-9927,Developer,19566.15,1888.5125,5,7,5,7,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Not Specified, and Home Equity Loan",,9,7.93,8,_,556.73,32.35308082,9 Years and 8 Months,Yes,31546,67.40975798,Low_spent_Medium_value_payments,343.0817551,0,0.1287,-0.0991,-0.597,0.5016,-0.5089 +0xfdf9,CUS_0x54a8,August,18,207-34-4989,Doctor,16055942,,8,3,31.28836175,2,"Home Equity Loan, and Payday Loan",7.99012898,10.14832093,9.79,,Standard,1883.656355,29.73817823,11 Years and 6 Months,Yes,21.59014348,517.2915031,Low_spent_Small_value_payments,355.4536478,0,-0.1123,-0.8445,0.595,1.0639,-0.1554 +0xfe05,CUS_0x2a68,August,46,835-40-7901,Musician,31029.7,,6,7,4,4,"Not Specified, Payday Loan, Home Equity Loan, and Student Loan",15.31969921,11,10.74,4,Good,1068.045232,30.29773652,19 Years and 9 Months,No,96.46996501,87.6315588,High_spent_Small_value_payments,337.5316128,0,-0.2355,0.5361,0.4495,3.5084,0.8784 +0xfe11,CUS_0x1718,August,43,047-16-1543,Architect,29062.92,2318.91,6,3,8,1,Credit-Builder Loan,,14.86911595,13.94,4,Standard,54.53890931,25.76550961,20 Years and 8 Months,Yes,14.51622313,150.3390913,High_spent_Small_value_payments,327.0356855,0,0.3673,1.0923,-0.4004,1.3754,0.3487 +0xfe1d,CUS_0xa6e8,August,24,766-02-6429,Scientist,33349.63,,4,1,3,2,"Home Equity Loan, and Auto Loan",17.03459934,,1.59,2,Good,230.2272682,24.68555897,18 Years and 8 Months,No,45.89836362,321.9762301,Low_spent_Small_value_payments,249.6297257,0,0.4803,0.437,-0.2736,2.0522,2.1634 +0xfe29,CUS_0x8395,August,25,374-03-0670,Engineer,14839.245,,3,2,10,2,"Home Equity Loan, and Credit-Builder Loan",,7,8.06,6,Good,1248.98407,28.78065787,30 Years and 2 Months,No,13.41811414,,Low_spent_Small_value_payments,246.9749371,0,-0.8285,-0.1088,-0.1076,0.2932,-2.387 +0xfe35,CUS_0xa66d,August,22,625-76-9061,Scientist,18743.8,,4,284,24,3,"Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",18.06047618,15,13.24,6,_,2019.55,29.86848014,11 Years and 6 Months,Yes,44.7635214,82.12982485,Low_spent_Small_value_payments,318.2049871,0,-0.1862,0.1841,1.0451,-2.3317,-1.2929 +0xfe41,CUS_0x5bac,August,32,182-39-6597,Lawyer,34612.26,,3,5,5.288361749,2,"Auto Loan, and Not Specified",,7,7.48,1,Good,122.92,37.28533814,16 Years and 6 Months,No,40.5640343,496.5340136,High_spent_Small_value_payments,417.3749131,0,-0.4085,0.3166,0.9077,2.2448,-0.9431 +0xfe4d,CUS_0x7baf,August,41,792-88-1863,Lawyer,44678.57,3502.214167,3,360,9,1,Credit-Builder Loan,12.21792811,10,10.41,5,Good,834,34.83393236,30 Years and 9 Months,No,25.15786633,40.62503286,High_spent_Large_value_payments,524.4385175,0,-0.0875,-0.2442,0.1464,-0.0473,-0.5142 +0xfe59,CUS_0x79ac,August,40,833-71-1983,Writer,46645.86,4056.155,4,3,5,2,"Auto Loan, and Auto Loan",8.812587255,10,10.89,9,Standard,1157.31,36.32677837,11 Years and 5 Months,Yes,61.79532,392.2930265,Low_spent_Small_value_payments,241.5271535,0,-0.3716,-0.5668,-0.5967,-0.1688,0.0851 +0xfe65,CUS_0x3c2c,August,42,557-07-3973,Scientist,85494.5,7336.541667,1,4,3,1,Mortgage Loan,3.075964239,7,13.81,1,Good,1351.71,33.21257837,15 Years and 11 Months,No,35.74525071,81.76325984,High_spent_Large_value_payments,856.1456561,0,0.5297,0.5461,1.3711,0.2854,-1.1019 +0xfe71,CUS_0x5d67,August,39,162-17-7776,Engineer,39136.42,3512.368333,4,3,4,0,,,0,12.29,2,Good,493.42,37.45061892,,No,0,55.28382262,High_spent_Medium_value_payments,545.9530107,0,1.3028,-0.2121,1.4214,-2.3346,0.9539 +0xfe7d,CUS_0x183d,August,19,259-11-0934,Writer,7005.93,835.8275,10,7,30,6,"Student Loan, Payday Loan, Home Equity Loan, Payday Loan, Auto Loan, and Student Loan",13.7657681,10.50232204,8.49,9,Standard,1858.896762,26.1786963,,NM,18.67290936,92.44429644,Low_spent_Small_value_payments,262.4655442,0,1.3675,-0.7789,0.0964,-0.5366,-0.3194 +0xfe89,CUS_0x85c0,August,41,475-80-5537,Manager,53698.44,4293.87,7,5,29,5,"Mortgage Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Auto Loan",34.58131956,22,23.44,12,Bad,3436.19,27.90484195,13 Years and 5 Months,NM,143.3166864,212.9620546,!@9#%8,333.108259,0,-0.371,-0.334,0.7992,0.1463,-1.1013 +0xfe95,CUS_0xfb4,August,47,159-51-7992,Writer,13982.725,931.2270833,7,6,12,4,"Student Loan, Payday Loan, Mortgage Loan, and Auto Loan",15.46621121,14,10.45,4,Standard,1458.61,29.66647919,30 Years and 2 Months,Yes,37.98336294,25.80070521,High_spent_Small_value_payments,289.3386402,0,-0.9857,-0.889,0.1508,-0.0114,-0.1777 +0xfea1,CUS_0x9278,August,22,424-53-6443,_______,20521.75,1632.145833,3,4,16,4,"Payday Loan, Auto Loan, Credit-Builder Loan, and Student Loan",,9,14.07,6,Standard,306.23,38.30999821,11 Years and 4 Months,Yes,48.1108143,26.96251797,!@9#%8,328.1412511,0,0.1837,0.1918,0.5887,-0.5705,-0.8597 +0xfead,CUS_0x7423,August,58,866-11-3352,Musician,42274.96,,3,7,1,0,,,8,11.79,2,Good,634.2169578,38.68158075,31 Years and 5 Months,No,0,260.9142759,Low_spent_Medium_value_payments,381.5470298,0,0.2672,0.2238,0.0412,0.1129,0.7888 +0xfeb9,CUS_0x6287,August,24,850-06-1322,Doctor,41026.38,,5,7,9,6,"Student Loan, Student Loan, Student Loan, Personal Loan, Mortgage Loan, and Student Loan",21.09123168,18,17.24,7,Standard,1241.69,27.29228229,13 Years and 5 Months,Yes,181.8040227,183.8521096,High_spent_Small_value_payments,211.0303677,0,-0.545,-1.7392,-1.0347,-1.1261,-1.5259 +0xfec5,CUS_0x5711,August,35,703-04-8420,Teacher,7708.69,,8,747,2631.067457,5,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",,15,28.96,13,Bad,4370.990954,35.1412417,2 Years and 3 Months,Yes,26.58831431,36.10871395,Low_spent_Medium_value_payments,228.5217671,0,0.495,-0.0752,1.0412,0.2291,0.7992 +0xfed1,CUS_0xb66c,August,56,168-03-6392,Writer,126615.04,10726.25333,3,4,12,0,,20.06038471,14,7.57,4,Standard,1468.46,32.6762492,29 Years and 9 Months,No,0,409.5670614,Low_spent_Medium_value_payments,943.0582719,0,0.4874,-1.2913,0.1657,-1.9339,-0.5006 +0xfedd,CUS_0x4824,August,31,188-94-9368,Musician,26794.85,,4,7,18,7,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",27.19333345,22.76737665,10.57,5,Standard,1680.100568,34.20585454,13 Years and 2 Months,Yes,148.8925604,,Low_spent_Small_value_payments,79.03631013,0,0.6056,0.6745,0.3152,0.5127,-0.8479 +0xfee9,CUS_0x4ab7,August,39,707-77-3263,Mechanic,54236.86,4427.738333,3,6,7,0,,21.42553521,14,6.82,4,_,1126.89,32.05568104,18 Years and 3 Months,No,0,52.38397418,High_spent_Medium_value_payments,640.3898592,0,-0.2798,-0.511,-0.6853,-0.2629,0.087 +0xfef5,CUS_0x9e1e,August,27,273-83-6467,Manager,19253.6,1823.466667,8,6,333.0674574,9,"Payday Loan, Auto Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Not Specified, Not Specified, Auto Loan, and Personal Loan",40.0485655,20.49139822,6.42,13,Bad,4219.51628,35.72031372,5 Years and 0 Months,Yes,125.9126095,152.9122036,Low_spent_Small_value_payments,166.8015656,0,-0.0095,-1.0735,-3.1727,-0.2542,-1.5224 +0xff01,CUS_0x34f2,August,26,008-83-1454,Accountant,40108.06,3554.338333,10,6,17,4,"Student Loan, Personal Loan, Auto Loan, and Personal Loan",14.19190695,10.12594005,11.44,13,Standard,1449.704072,27.0341887,10 Years and 10 Months,NM,121.2611842,26.61196009,High_spent_Large_value_payments,447.560689,0,0.8177,-1.1164,-0.4172,0.5345,-0.115 +0xff0d,CUS_0x16d5,August,32,434-00-3122,Mechanic,14313.74,1334.811667,7,6,32.06745738,100,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Payday Loan",28.96230512,17,26.71,15,Bad,4274.100954,36.67317826,11 Years and 8 Months,Yes,42.01506674,110.9400376,Low_spent_Small_value_payments,243.8057744,0,1.5983,0.5209,0.725,-0.1462,0.4779 +0xff19,CUS_0x3e79,August,30,578-88-1975,Mechanic,9956.155,780.6795833,7,10,35.06745738,5,"Payday Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",33.41574586,23.2030884,29.3,11,Bad,4859.449561,32.61166035,8 Years and 4 Months,Yes,38.86248876,,Low_spent_Small_value_payments,233.2570126,0,-0.1907,-0.1444,-0.638,0.8221,0.2863 +0xff25,CUS_0x9f1c,August,23,117-10-2190,Writer,18097.46,,8,10,18.88954781,6,"Credit-Builder Loan, Not Specified, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",19.58989561,,3.5,10,Bad,2794.588184,26.38920348,17 Years and 2 Months,Yes,1381.064041,107.7445633,Low_spent_Small_value_payments,255.073481,0,-0.479,0.3953,-2.5512,0.6821,-0.3121 +0xff31,CUS_0x7db4,August,37,825-38-8081,Engineer,17955.38,,3,7,2.288361749,0,Home Equity Loan,,,8.5,2,Good,136.2379517,27.68570983,,No,12.11580258,559.003341,Low_spent_Small_value_payments,302.3388244,0,-0.4139,-0.3013,1.4534,0.1287,-1.2576 +0xff3d,CUS_0x7db2,August,27,331-77-3147,Writer,43755.33,3828.2775,0,4,4,0,,,7,2.67,1,Good,1143.181431,41.68051333,29 Years and 3 Months,No,0,57.68618965,High_spent_Medium_value_payments,583.809105,0,0.1313,-0.1033,2.284,0.1811,0.8215 +0xff49,CUS_0x12a6,August,25,191-09-1571,Manager,18158.33,1325.194167,7,9,25,4,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",29.47053466,18.55218641,16.52,11,Bad,1516.671818,30.40442384,17 Years and 8 Months,Yes,39.76786259,142.0480554,!@9#%8,240.7034986,0,-0.6573,0.0232,-0.8045,-0.2411,-1.0199 +0xff55,CUS_0x7e3a,August,30,263-62-1641,Architect,37827.77,3116.314167,4,1,5,3,"Auto Loan, Mortgage Loan, and Not Specified",0.421258541,5,10.96,2,Good,271.88,37.0164203,32 Years and 4 Months,No,91.636884,219.4417076,Low_spent_Medium_value_payments,280.5528251,0,-0.6748,0.6922,-2.0582,-0.8282,0.4759 +0xff61,CUS_0x8197,August,31,607-50-9283,Entrepreneur,30661.16,2338.096667,4,5,15,3,"Home Equity Loan, Payday Loan, and Mortgage Loan",19.86697812,17,12.61,5,Standard,1210.376738,33.29931702,21 Years and 10 Months,Yes,52.38766844,69.55622518,High_spent_Large_value_payments,362.197398,0,-1.2631,0.0766,-0.6554,-2.1668,0.7048 +0xff6d,CUS_0xbf64,August,44,667-48-1315,_______,41122.99,3661.915833,2,3,6.288361749,0,Debt Consolidation Loan,13.28017689,,4.15,6,_,390.6718975,27.34813511,26 Years and 4 Months,No,29.87624054,,Low_spent_Small_value_payments,214.17297,0,0.1278,0.6265,0.5119,1.3995,0.6049 +0xff79,CUS_0x71e2,August,49,#F%$D@*&8,Engineer,28074.06,,1,6,1,1,Debt Consolidation Loan,1.939436979,6,4.98,0,Good,524.0523846,40.04541863,31 Years and 9 Months,No,15.50016292,52.85535839,High_spent_Large_value_payments,393.6462566,0,1.1198,1.8755,0.9859,-0.8495,-0.3987 +0xff85,CUS_0x8247,August,18,597-93-5210,Scientist,9670.15,,8,6,19,5,"Mortgage Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",43.93490381,24,3.06,11,Bad,3566.81,30.0009816,4 Years and 9 Months,Yes,35.31974339,,Low_spent_Small_value_payments,248.3829767,0,-0.8111,-1.5258,-0.824,-0.4919,-0.4298 +0xff91,CUS_0x46b1,August,29,364-59-7993,Mechanic,20399.82,1790.985,9,5,15,5,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",,18,27.72,9,Bad,4531.3,22.50189534,,Yes,64.3062989,85.4745104,Low_spent_Small_value_payments,319.3176907,0,0.5286,0.0603,1.9616,-0.5024,-0.0549 +0xff9d,CUS_0x1894,August,33,721-51-0373,Entrepreneur,20063.03,,3,5,15,3,"Student Loan, Payday Loan, and Credit-Builder Loan",,,8.55,10,Standard,1598.32,31.13213961,10 Years and 2 Months,Yes,36.89906434,103.6448356,Low_spent_Large_value_payments,275.5480167,0,0.2276,-2.2266,-0.2923,0.4499,0.0425 +0xffa9,CUS_0x1340,August,42,868-01-7823,Architect,40600.61,,4,7,6,2,"Credit-Builder Loan, and Home Equity Loan",,,5.5,2,Good,1198.96,33.44434002,21 Years and 3 Months,No,63.61485153,75.54045342,High_spent_Small_value_payments,462.8831117,0,-0.8159,1.3963,-0.9422,0.5301,0.8391 +0xffb5,CUS_0x4939,August,35,980-86-1679,Writer,16770.6,,5,6,25,2,"Auto Loan, and Payday Loan",33.00888772,20.72597204,7.44,4,Standard,2244.248417,30.5992567,10 Years and 0 Months,Yes,26.86920934,85.7189572,Low_spent_Medium_value_payments,316.2668335,0,0.7585,-0.0525,-0.144,-0.4201,-0.0508 +0xffc1,CUS_0x94e2,August,38,697-13-7537,Entrepreneur,30411.89,2443.654131,1,911,3,1,Debt Consolidation Loan,17.39829676,,7.97,2,Good,453.0990472,26.59004247,20 Years and 4 Months,No,251.1247438,81.46861874,!@9#%8,440.1582246,0,-2.2581,-2.2596,-1.4408,0.1057,0.0827 +0xffcd,CUS_0x89c2,August,51,420-82-9596,Teacher,18128.1,,3,3,12,4,"Home Equity Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",22.2993216,20,11.91,4,Standard,372.17,35.59262784,21 Years and 8 Months,Yes,56.64915907,71.04254824,High_spent_Medium_value_payments,295.2757927,0,-0.5718,-1.676,0.0864,0.0815,-0.74 +0xffd9,CUS_0x3b36,August,44,814-35-2546,Scientist,79205.36,,1,7,4,0,,0,0,10.59,9,Good,1379.14,27.76686664,25 Years and 5 Months,No,0,434.0748752,High_spent_Small_value_payments,477.9697915,0,-0.3036,1.6404,2.1302,-0.2776,-0.2464 +0xffe5,CUS_0xc062,August,55,856-61-9232,Writer,141219.08,11761.25667,5,7,10.28836175,0,,,8,7.15,6,Good,1028.440655,39.39914048,,No,0,11587.14534,Low_spent_Small_value_payments,461.9257503,0,0.42,0.7583,0.906,-2.3605,-0.2017 +0xfff1,CUS_0xabcf,August,44,257-31-1398,Musician,67857.8,,8,10,32,3,"Mortgage Loan, Personal Loan, and Student Loan",34.39988119,20.56572097,13.71,9,Standard,1625.067163,42.6286796,17 Years and 0 Months,Yes,116.0557763,41.92911826,High_spent_Large_value_payments,631.8967721,0,-1.6288,1.1457,0.8389,-1.775,-0.1511 +0xfffd,CUS_0x1a4b,August,23,490-54-0863,Doctor,19958.32,,1279,7,26,7,"Auto Loan, Student Loan, Home Equity Loan, Payday Loan, Payday Loan, Student Loan, and Debt Consolidation Loan",,24,1.9,6,Bad,4753.48,37.12801989,4 Years and 11 Months,Yes,94.81042935,,!@9#%8,187.989837,0,-1.117,0.3191,-0.8052,-0.5577,-0.6232 +0x10009,CUS_0x54c3,August,29,764-29-3740,Engineer,18354.805,1457.567083,0,3,9.067457376,1,Personal Loan,21.13649677,,5.85,4,Good,1199.674496,26.74335914,17 Years and 9 Months,No,13.9159062,67.84391295,Low_spent_Medium_value_payments,317.2766012,0,0.5225,-0.2498,-0.4342,0.0403,0.5401 +0x10015,CUS_0xab6e,August,44,391-34-0662,Developer,20974.05,1914.8375,8,8,27.88954781,6,"Auto Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",25.7566678,,14.54,12,Standard,1628.097373,30.38122577,12 Years and 11 Months,Yes,1407.246691,80.05399087,Low_spent_Small_value_payments,299.8529872,0,0.5312,-0.2178,0.9611,0.1918,-0.6083 +0x10021,CUS_0xa7cc,August,21,495-58-1191,_______,9602.285,,6,6,11,100,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Personal Loan",,20,14.82,11,Standard,512.05,32.0276452,12 Years and 10 Months,Yes,37.40299004,82.80183318,Low_spent_Small_value_payments,259.5142184,0,0.0289,-0.3326,-0.2184,-1.6657,-0.4444 +0x1002d,CUS_0x3f12,August,18,710-29-0360,Mechanic,15419.66,1451.971667,4,5,24,7,"Not Specified, Personal Loan, Not Specified, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",,11,17.1,1905,Standard,1852.93,28.7959645,13 Years and 6 Months,Yes,75.57783969,,High_spent_Small_value_payments,248.3149426,0,0.8822,-1.6696,1.0716,0.1991,-0.0092 +0x10039,CUS_0x8ea,August,29,069-74-8043,Journalist,16228.17,1374.3475,8,7,19.06745738,4,"Debt Consolidation Loan, Credit-Builder Loan, Student Loan, and Not Specified",27.7265795,19,8.37,13,_,2920.590954,29.50677558,19 Years and 6 Months,Yes,47.8740135,,Low_spent_Small_value_payments,221.852012,0,-0.4171,-0.9522,0.8512,-1.9033,-0.9263 +0x10045,CUS_0xbe4c,August,19,#F%$D@*&8,Lawyer,61778.7,4955.225,7,4,18,4,"Personal Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",17.51674536,10,3.06,2,_,519.01,33.62604012,15 Years and 11 Months,NM,131.983825,244.1298884,Low_spent_Small_value_payments,409.4087866,0,0.1839,1.1232,1.2999,-0.3715,-0.722 +0x10051,CUS_0x72c0,August,18,046-25-3960,Teacher,116522.68,8986.315953,3,4,16,6,"Home Equity Loan, Mortgage Loan, Payday Loan, Student Loan, Not Specified, and Mortgage Loan",11.68117843,7,16.74,11,_,272.6,26.25438211,5 Years and 11 Months,Yes,1042.674209,571.6997364,Low_spent_Medium_value_payments,293.4557673,0,0.5511,1.2784,1.0565,0.8293,-0.053 +0x1005d,CUS_0x3d6c,August,30,815-82-2603,Media_Manager,43894.24,,4,7,16,4,"Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",13.49774987,14,12.69,3,Standard,1422.84,25.56312961,32 Years and 8 Months,Yes,142.9634478,,High_spent_Large_value_payments,418.91767,0,-0.087,0.399,0.0971,-0.6461,-0.9715 +0x10069,CUS_0x41be,August,35,700-01-5042,Musician,72583.32,,7,3,10,781,"Auto Loan, and Personal Loan",20.50113233,14,7.66,5,Standard,1019.44,27.04114487,18 Years and 9 Months,Yes,104.0167304,338.7845504,High_spent_Small_value_payments,426.5597192,0,0.3912,-1.0358,0.5919,-1.0099,1.043 +0x10075,CUS_0xaea6,August,34,824-37-3261,Architect,9185.545,,7,6,22,4,"Student Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",16.04957098,13.76269413,11.91,4,Standard,2286.785887,22.56665751,9 Years and 10 Months,Yes,29.99716518,,Low_spent_Medium_value_payments,248.7105654,0,-0.3384,-0.8945,1.7988,-0.7608,-0.1629 +0x10081,CUS_0x3059,August,26,019-53-5460,Engineer,15671.96,1400.996667,10,5,35.06745738,2,"Debt Consolidation Loan, and Mortgage Loan",45.2801303,22.79346833,2.43,10,Bad,2289.072993,32.86826907,13 Years and 3 Months,Yes,13.24337105,78.92680495,Low_spent_Small_value_payments,311.2092027,0,-0.7374,0.1553,0.2251,-0.5665,-1.0554 +0x1008d,CUS_0xb804,August,48,005-21-1851,Musician,15649.26,,4,6,8,1,Personal Loan,,1,1.15,6,Good,195.62,38.86776354,,No,7.85394641,88.01244381,Low_spent_Small_value_payments,336.1441098,0,-1.3734,1.5401,1.2448,-0.3196,-1.7846 +0x10099,CUS_0x48e6,August,55,248-30-7023,Writer,52042.32,3780.98806,3,7,7,1,Not Specified,20.39776961,,6.86,0,_,1061.255681,29.42155095,22 Years and 4 Months,No,389.1598077,102.3214545,High_spent_Medium_value_payments,535.2201885,0,0.657,0.304,-0.8179,-0.2789,-1.075 +0x100a5,CUS_0x4c43,August,38,265-13-5943,Architect,104158.68,8387.89,4,3,14.28836175,2,"Auto Loan, Auto Loan, and Home Equity Loan",16.19232116,14,13.78,0,Standard,330.7,27.63822066,29 Years and 11 Months,No,225.653802,,Low_spent_Medium_value_payments,241.0319039,0,0.4621,0.0134,2.3857,-0.0969,-1.1013 +0x100b1,CUS_0x7197,August,44,727-45-8294,Musician,48824.14,,8,4,16,3,"Payday Loan, Debt Consolidation Loan, and Student Loan",22.90729494,15,10.55,5,Standard,651.27,28.51851222,18 Years and 11 Months,NM,496.375963,,Low_spent_Small_value_payments,245.0979264,0,-0.8209,0.0438,0.5454,-1.4772,0.1796 +0x100bd,CUS_0x34e9,August,45,282-35-3231,Manager,34323.86,3113.321667,10,8,28,2,"Not Specified, and Personal Loan",29.93345202,23.51378594,5.07,9,Bad,1490.82546,29.67552717,7 Years and 6 Months,Yes,34.40873143,60.63561652,High_spent_Large_value_payments,456.2878187,0,-0.053,0.3441,1.1348,0.8242,0.7596 +0x100c9,CUS_0x3afc,August,37,#F%$D@*&8,_______,120389.55,,1,7,7.288361749,0,,0,3,3.37,1,_,846.65,26.53333738,27 Years and 11 Months,No,0,10419.93746,Low_spent_Medium_value_payments,958.0305243,0,0.2974,-0.4488,-1.6349,1.2015,2.161 +0x100d5,CUS_0x1911,August,39,#F%$D@*&8,_______,66509.88,,1,4,3.288361749,0,Not Specified,0,3,0.9,0,Good,398.3223394,24.2233415,19 Years and 5 Months,NM,30.37073526,494.7678393,High_spent_Large_value_payments,712.8182776,0,0.78,0.4787,0.7244,-0.2692,0.3441 +0x100e1,CUS_0x5cdb,August,37,358-85-5659,Lawyer,12338.465,738.2054167,5,5,2,1,Student Loan,,17,13.52,4,Good,352.92,34.367667,32 Years and 3 Months,No,10.21851076,10000,High_spent_Small_value_payments,302.8923858,0,0.0016,0.5334,0.7398,0.8572,-1.4756 +0x100ed,CUS_0x1e76,August,20,600-30-3371,Musician,35361.27,3112.7725,4,6,7,0,,0,2,5.91,5,Good,982.38,33.25465023,,No,0,199.1975554,High_spent_Small_value_payments,372.0796946,0,0.0975,-0.2555,0.8226,-0.8796,-0.4832 +0x100f9,CUS_0x41d5,August,25,525-66-4602,Entrepreneur,17738.09,1384.951779,7,7,22.06745738,5,"Not Specified, Personal Loan, Home Equity Loan, Student Loan, and Not Specified",36.38303216,19,0.63,8,Bad,2511.450954,29.58019139,,Yes,207.5025323,10000,Low_spent_Small_value_payments,199.465883,0,-1.363,-0.4633,-2.4294,1.0555,0.3277 +0x10105,CUS_0x6f2d,August,48,474-41-2078,Lawyer,71503.76,5672.646667,3,4,9,3,"Student Loan, Home Equity Loan, and Credit-Builder Loan",27.35975716,19.17101622,7.37,3,Standard,1391.171033,32.61694239,27 Years and 5 Months,Yes,110.8505841,332.1493158,Low_spent_Small_value_payments,414.2647668,0,0.5011,-0.0176,-1.2741,0.4462,-1.3549 +0x10111,CUS_0x7953,August,45,281-10-4083,_______,46150.65,4052.8875,10,8,21.88954781,6,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Auto Loan",32.81389509,22.9572075,18.71,9,Bad,5520.024292,25.42591417,12 Years and 8 Months,Yes,76886.48344,348.2018217,Low_spent_Small_value_payments,177.9060375,0,-0.4769,1.5256,-1.6323,1.0135,0.5421 +0x1011d,CUS_0xb966,August,27,750-13-9718,Manager,14483.14,,9,5,22,6,"Auto Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Personal Loan",49.73739743,24.17101652,5.73,16,Bad,2194.816765,35.26846521,17 Years and 0 Months,Yes,54.9270727,,Low_spent_Large_value_payments,245.9741339,0,0.5253,-0.054,-0.5317,1.4446,0.8735 +0x10129,CUS_0x375e,August,19,575-48-0526,Entrepreneur,17683.37,,8,8,16.88954781,7,"Personal Loan, Not Specified, Auto Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Not Specified",28.43023804,20.71154549,11.88,11,Standard,2814.105671,26.61432865,7 Years and 2 Months,Yes,1413.400073,48.36815518,Low_spent_Large_value_payments,259.3631068,0,2.2595,-0.0584,-0.357,-0.2095,-0.7992 +0x10135,CUS_0x1096,August,43,228-65-4194,Lawyer,12931.56,,4,4,9,3,"Not Specified, Debt Consolidation Loan, and Home Equity Loan",32.5679047,23.73346492,18.51,3,Standard,823.0332317,27.70974959,21 Years and 4 Months,Yes,20.57915471,105.5666125,Low_spent_Small_value_payments,298.7172328,0,-0.0706,0.7419,-0.7754,0.1595,-0.2798 +0x10141,CUS_0x8dc4,August,39,331-36-8753,Scientist,53225.37,4526.4475,6,7,30,2,"Payday Loan, and Mortgage Loan",27.10429693,17.8522871,13.4,4,_,2333.293972,24.27344997,,NM,81257,107.0060783,High_spent_Medium_value_payments,550.4729541,0,2.6809,-0.0023,1.3117,-0.6316,0.4939 +0x1014d,CUS_0xbc5f,August,22,883-06-0841,Media_Manager,34498.62,3168.885,5,6,1,0,,4.891015246,4,7.21,5,Good,1238.7,38.04908748,27 Years and 3 Months,No,0,252.2154097,!@9#%8,354.6730903,0,1.2607,0.0689,0.1516,-1.4118,-1.7186 +0x10159,CUS_0x9878,August,27,770-90-1146,Manager,72412.74,,5,6,5.288361749,0,Credit-Builder Loan,20.50049347,17.08313664,6.76,4,Standard,891.1919078,37.55550664,,No,31.05332615,741.9710748,Low_spent_Medium_value_payments,556.35256,0,-1.4591,0.1165,1.0356,0.0184,-0.4979 +0x10165,CUS_0x3e7b,August,29,956-13-1252,Lawyer,15648.785,,1,6,2,4,"Student Loan, Student Loan, Student Loan, and Home Equity Loan",,11.39029067,1.99,850,Good,153.9811516,35.87443167,19 Years and 6 Months,No,40.58258195,138.1833451,Low_spent_Small_value_payments,234.2406146,0,1.0838,-0.0165,0.7689,-0.2112,1.3956 +0x10171,CUS_0x485d,August,37,748-22-1056,Lawyer,17678.47,1194.205833,6,6,29,4,"Home Equity Loan, Home Equity Loan, Personal Loan, and Auto Loan",24.57756552,17,12.09,12,Bad,2440.65,36.64340753,10 Years and 6 Months,Yes,31.32115354,,Low_spent_Small_value_payments,219.3377025,0,-0.8729,-0.489,0.4895,1.7729,-0.6596 +0x1017d,CUS_0xabf6,August,39,391-94-1112,Mechanic,37421.88,3060.49,2,4,9,3,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",5.32259953,8,3.14,1307,_,996.3374773,40.75187573,,No,59.18879735,314.5295206,Low_spent_Large_value_payments,243.7765461,0,-1.8241,-0.6193,1.0426,0.1054,0.6231 +0x10189,CUS_0x23b4,August,35,255-74-3717,Developer,68690.08,5588.173333,8,8,19.88954781,9,"Debt Consolidation Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",,26.98642236,3.63,10,_,2273.271291,36.75872115,20 Years and 0 Months,Yes,1704.271518,193.6007943,High_spent_Medium_value_payments,216.6149393,0,0.2238,1.2732,-1.65,0.9938,-0.7277 +0x10195,CUS_0x9974,August,35,112-88-4961,Manager,36130.89,,5,7,20,2,"Payday Loan, and Payday Loan",,10,2.13,6,Standard,1395.65,24.63013131,28 Years and 11 Months,No,32.5897949,55.07268166,High_spent_Large_value_payments,471.6282734,0,1.4384,2.0285,0.7559,-0.5109,-1.2759 +0x101a1,CUS_0x53bf,August,30,855-87-2352,Journalist,19916.14,,6,5,23.06745738,7,"Not Specified, Home Equity Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",,28.68853676,0.9,7,Bad,5194.085566,23.4505661,13 Years and 11 Months,Yes,76.85648948,166.8692945,!@9#%8,183.6217614,0,1.0634,-0.834,-0.1028,2.1311,-0.4221 +0x101ad,CUS_0xa806,August,18,577-56-0449,Musician,35733.63,2883.8025,5,3,11,6,"Personal Loan, Payday Loan, Not Specified, Personal Loan, Personal Loan, and Mortgage Loan",26.34921127,19,11.78,4,Standard,781.34,39.11782073,8 Years and 8 Months,Yes,96.60188431,120.6166362,Low_spent_Large_value_payments,341.1617295,0,0.454,0.6505,-0.6852,0.8314,-0.5392 +0x101b9,CUS_0x7af7,August,36,802-67-7093,Entrepreneur,141025.92,,5,5,9.288361749,0,Mortgage Loan,13.83965554,13,4.32,4,Good,730.5363236,28.94888801,,No,117.5147099,1225.186142,Low_spent_Medium_value_payments,650.9801859,0,-0.4077,-0.0844,-1.1184,0.1192,-0.7135 +0x101c5,CUS_0xb767,August,54,977-86-3066,Media_Manager,176783.92,14754.99333,0,1,2831,2,"Personal Loan, and Payday Loan",7.507701115,8,10.42,6,Good,1315.795738,34.51356968,32 Years and 4 Months,No,262.0930502,1945.392642,Low_spent_Small_value_payments,,0,-0.2476,-0.2594,-0.7207,1.5047,-0.2027 +0x101d1,CUS_0x3752,August,38,466-47-3467,Writer,98874.63,,6,5,12,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",,16,10.08,6,Good,681.2549958,21.65476613,31 Years and 4 Months,No,325.2833888,1112.692773,Low_spent_Small_value_payments,,0,-0.1549,0.8634,0.321,-1.3565,1.1979 +0x101dd,CUS_0x1358,August,22,967-90-7262,Teacher,59304.2,,10,10,24,3,"Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",54.99357003,29.02560631,2.47,16,Bad,2230.462687,28.25358622,13 Years and 0 Months,Yes,54454,430.309851,Low_spent_Small_value_payments,280.0165338,0,-1.0338,0.6692,0.6271,-0.238,-0.0469 +0x101e9,CUS_0x9d64,August,28,706-23-5738,Accountant,116114.76,9541.23,5,3,18,0,,,10,9.96,7,Standard,37.71,36.45815305,16 Years and 4 Months,Yes,0,1178.440329,Low_spent_Small_value_payments,65.68267087,0,0.8904,-0.5831,-1.6472,0.3789,0.6067 +0x101f5,CUS_0x3382,August,80,835-49-5730,Journalist,14799.91,,1,5,8,0,,4.727301221,6,9.78,5,Good,385.3518803,32.18629775,21 Years and 3 Months,No,0,71.98636959,Low_spent_Medium_value_payments,364.2486966,0,-0.6357,1.2195,2.1883,-0.604,-0.6167 +0x10201,CUS_0xc6d1,August,35,069-44-1610,Doctor,9548.815,,4,3,107,2,"Debt Consolidation Loan, and Home Equity Loan",18.07300569,13,8.8,5,_,1651.16,32.97294745,17 Years and 6 Months,Yes,8.693717318,36.49701147,Low_spent_Large_value_payments,278.3827295,0,0.8855,-0.3682,1.7163,0.4275,0.5938 +0x1020d,CUS_0x503f,August,37,912-49-8079,Musician,18180.43,,9,9,18.06745738,9,"Auto Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Student Loan, Personal Loan, and Home Equity Loan",30.66189804,,8.6,14,Bad,2552.700954,24.02532706,14 Years and 6 Months,Yes,116.0815943,26.27898319,High_spent_Medium_value_payments,253.4227179,0,-0.9009,-1.2366,-0.2371,0.1561,-1.9808 +0x10219,CUS_0x2dd5,August,53,142-91-7890,Manager,76476.66,6536.055,1,2,9.288361749,100,"Not Specified, and Auto Loan",0,4,-1.22,3,Good,881.435398,35.42507845,21 Years and 0 Months,No,108.9613683,12107.78592,Low_spent_Medium_value_payments,507.4921368,0,-0.8655,0.7572,1.4324,0.4971,-0.3138 +0x10225,CUS_0xb3b,August,23,763-19-2217,Writer,38714.36,3222.196667,6,8,25,6,"Student Loan, Payday Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",24.06869348,17.36948599,6.58,8,Bad,3734.336187,27.78692654,,NM,105.58041,140.0504989,High_spent_Small_value_payments,336.5887578,0,0.9688,0.522,0.134,-0.7264,-1.7952 +0x10231,CUS_0x9173,August,31,852-21-2835,Manager,16923.73,,10,7,20.06745738,9,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Mortgage Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",29.30353101,19,25.76,8,Bad,3105.910954,31.35089143,3 Years and 8 Months,Yes,93.94932532,,Low_spent_Small_value_payments,160.5539816,0,-0.0975,-1.3487,0.792,0.5808,-0.8309 +0x1023d,CUS_0x4da1,August,49,562-85-5806,Accountant,33797,,2,3,3.288361749,2,"Auto Loan, and Personal Loan",11.85557806,12,3.61,4,_,415.4479224,34.42464273,24 Years and 5 Months,No,39.77565866,620.4578757,High_spent_Small_value_payments,333.3786121,0,-0.4565,0.2759,2.2579,-0.318,0.0466 +0x10249,CUS_0x62cd,August,36,240-82-8070,Lawyer,33206.26,2519.188333,0,3,7,1,Debt Consolidation Loan,10.28149259,12,9.2,3,_,1027.77,30.01508358,26 Years and 5 Months,No,17.96255597,46.17751812,High_spent_Small_value_payments,447.7787592,0,-1.3219,0.4095,1.4257,0.1611,0.3786 +0x10255,CUS_0x98b5,August,42,699-05-8261,_______,117878.55,,3,3,5.288361749,2,"Home Equity Loan, Auto Loan, and Auto Loan",7.380653132,8,7.72,0,Good,84.22,27.02175307,,No,259.2369983,500.7697207,!@9#%8,883.551992,0,-1.1405,2.5228,-1.2333,-1.8464,0.2718 +0x10261,CUS_0x7df0,August,23,575-37-4253,Doctor,16520.79,,3,1069,11,1,Personal Loan,0,0,8.57,2,_,489.96,30.51262922,15 Years and 11 Months,No,13.63552717,115.6357449,Low_spent_Small_value_payments,271.801978,0,0.1292,-0.1446,-0.5877,1.913,1.0095 +0x1026d,CUS_0x3e83,August,35,661-87-8665,Architect,33857.41,,3,3,20,4,"Not Specified, Payday Loan, Home Equity Loan, and Credit-Builder Loan",28.05064383,19,17.52,5,_,899.22,27.68618343,18 Years and 2 Months,NM,89.43153714,68.12073935,Low_spent_Large_value_payments,380.7928068,0,-0.798,-0.9447,0.5766,1.599,2.2856 +0x10279,CUS_0x5fe6,August,32,121-06-9658,Mechanic,29349,,7,6,17,2,"Payday Loan, and Mortgage Loan",29.01258883,19,9.88,2,Standard,1419.52,24.94000022,20 Years and 2 Months,No,45.31352648,84.80217399,!@9#%8,404.1592995,0,0.0807,0.3747,-0.6535,0.0203,-0.1198 +0x10285,CUS_0xb66f,August,25,886-59-6339,Doctor,9748.985,,10,9,25,2,"Personal Loan, and Personal Loan",30.74406528,14.88438442,8.47,15,Standard,2468.508192,31.9802562,18 Years and 10 Months,Yes,16.09692534,63.51297765,Low_spent_Small_value_payments,271.4316387,0,0.2316,1.7666,-0.4576,-0.2895,0.3228 +0x10291,CUS_0x9b4f,August,32,074-24-4830,Teacher,93352.86,,5,3,9,1,Mortgage Loan,0.337019766,4,5.08,5,Good,483.78,26.95706411,17 Years and 6 Months,No,51.76975259,475.0911685,High_spent_Small_value_payments,496.0795789,0,-0.409,-1.2516,-1.6326,0.7858,-0.3416 +0x1029d,CUS_0x9620,August,37,337-56-9724,Architect,8242.335,,8,9,30.95700519,6,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Auto Loan",43.15501624,26.43913942,9.9,13,Bad,3207.870017,33.77029471,19 Years and 2 Months,Yes,73516.48344,,Low_spent_Large_value_payments,216.1865783,0,0.1994,-0.8002,1.0165,-2.0609,0.1144 +0x102a9,CUS_0x1ffc,August,35,808-28-9660,Teacher,33089.51,3019.459167,4,3,10,1,Not Specified,,10,9.32,4,Standard,557.02,28.03164819,27 Years and 9 Months,Yes,15.65412884,43.78067084,High_spent_Medium_value_payments,492.511117,0,0.7448,-0.4742,2.2223,1.6639,-1.9174 +0x102b5,CUS_0xa3bf,August,30,951-65-0782,Scientist,21551.57,,4,7,7.067457376,3,"Credit-Builder Loan, Personal Loan, and Personal Loan",,20.59400807,6.07,0,Good,1348.744573,28.19887235,16 Years and 0 Months,NM,49.27280925,28.74604677,High_spent_Medium_value_payments,322.7572727,0,-0.2511,0.2638,0.7587,1.1421,-1.2362 +0x102c1,CUS_0x797,August,19,691-34-0849,Developer,42846.39,,8,6,22,7,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",22.26460251,19,5.44,10,Standard,1745.53,32.8452275,12 Years and 9 Months,Yes,146.5273031,75.54641176,High_spent_Large_value_payments,384.9795351,0,-1.4835,-0.8408,0.1257,-0.8589,0.9266 +0x102cd,CUS_0x501d,August,41,381-39-3121,Accountant,31236.52,,8,9,30.88954781,7,"Student Loan, Not Specified, Mortgage Loan, Not Specified, Credit-Builder Loan, Student Loan, and Personal Loan",24.89225151,18,20.01,14,Bad,3596.37,38.81139833,10 Years and 8 Months,Yes,1483.876369,30.50917899,High_spent_Medium_value_payments,303.4887036,0,1.2442,-1.6068,-0.8329,-1.4479,-0.6669 +0x102d9,CUS_0xb795,August,27,321-16-3378,Manager,39343.02,3049.585,4,4,4.288361749,2,"Mortgage Loan, and Student Loan",24.08116765,20,8.04,6,Standard,347.48,39.37883946,28 Years and 9 Months,No,64.28243643,552.8112409,Low_spent_Large_value_payments,377.8022837,0,-0.3184,1.4273,1.3479,-1.0563,-1.1593 +0x102e5,CUS_0xb1aa,August,33,276-61-0743,Writer,60243.46,,6,5,16,3,"Personal Loan, Payday Loan, and Debt Consolidation Loan",,11,0.61,8,Standard,854.02,37.31990028,22 Years and 4 Months,No,76.82031354,212.9457879,Low_spent_Medium_value_payments,497.2627319,0,0.4851,0.4522,1.1266,-0.2875,-0.6016 +0x102f1,CUS_0x8aff,August,38,641-58-7727,_______,145994.28,12333.19,3,6,7,3,"Payday Loan, Auto Loan, and Home Equity Loan",,18,4.92,2,Standard,896.1,27.21703326,27 Years and 3 Months,Yes,272.5895259,275.538068,High_spent_Large_value_payments,925.1914061,0,1.6071,1.2264,0.83,-1.0695,-0.8225 +0x102fd,CUS_0x9ed1,August,48,397-13-1501,Journalist,15641.73,,1,4,8,4,"Home Equity Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",0.132190551,4,11.73,3,Good,1260.541258,38.17074149,21 Years and 11 Months,No,30.88270742,51.06547607,Low_spent_Medium_value_payments,323.67516,0,1.4233,-0.9221,-0.1278,2.3923,0.0766 +0x10309,CUS_0xc2b7,August,36,740-55-3863,Lawyer,8892.36,,8,595,34.88954781,8,"Home Equity Loan, Auto Loan, Payday Loan, Student Loan, Student Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",23.53020884,,29.89,13,Bad,3167.155751,28.95912804,10 Years and 11 Months,Yes,1359.161465,,Low_spent_Small_value_payments,250.5499218,0,1.0057,2.3882,-0.7385,-0.4824,0.3835 +0x10315,CUS_0x1cc4,August,47,541-42-6554,Lawyer,45034.34,4021.861667,4,7,8,2,"Home Equity Loan, and Mortgage Loan",13.74190554,13,6.3,0,Good,33.61819546,26.65762741,23 Years and 5 Months,No,33977,156.9942692,High_spent_Medium_value_payments,464.3767869,0,-1.2331,1.4266,0.2196,-1.3567,1.5187 +0x10321,CUS_0x944c,August,26,768-90-2112,Scientist,83206.72,,10,10,25.88954781,7,"Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Personal Loan, and Home Equity Loan",,25.90112532,3.81,6,Bad,1530.225684,32.59603714,7 Years and 2 Months,Yes,1795.968465,230.7512315,Low_spent_Medium_value_payments,259.3395552,0,0.7271,-1.0993,-1.7164,-0.3433,-0.3855 +0x1032d,CUS_0x897f,August,24,821-96-4140,_______,57136.44,4954.37,9,6,27,6,"Payday Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Student Loan, and Personal Loan",25.47361212,21,25.89,11,Bad,3811.31,24.95969129,2 Years and 4 Months,Yes,234.1594872,200.9699166,High_spent_Medium_value_payments,310.3075962,0,-0.8367,-1.9917,-0.05,0.5307,-0.7566 +0x10339,CUS_0xa80,August,46,264-57-8681,Accountant,17938268,1319.825833,7,4,10,7,"Not Specified, Credit-Builder Loan, Student Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",24.99724006,19,7.07,6,Standard,119.94,27.58786453,10 Years and 2 Months,Yes,64.32450334,130.6090842,Low_spent_Medium_value_payments,217.0489958,0,0.6433,-0.7447,2.0695,1.6412,0.445 +0x10345,CUS_0x68d5,August,24,856-14-7201,Entrepreneur,130402.88,,4,5,6.288361749,0,Auto Loan,,6,12.81,3,Good,856.0059942,35.80420164,,No,686.9800418,995.6556557,High_spent_Small_value_payments,782.8056733,0,1.4311,-0.7319,0.4915,-0.374,0.3926 +0x10351,CUS_0x4b41,August,48,467-48-3022,Musician,121486.92,10314.91,3,5,12,3,"Home Equity Loan, Student Loan, and Student Loan",6.482958326,5,1.95,4,Good,605.65,31.50676905,16 Years and 9 Months,No,217.1600114,135.3505856,High_spent_Large_value_payments,918.980403,0,0.8161,-1.1116,0.3422,-2.6575,0.293 +0x1035d,CUS_0x3d82,August,45,980-61-8289,Media_Manager,21642.845,,4,4,8,3,"Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",2.401247524,5,11.62,3,Good,1145.77,37.13383321,18 Years and 3 Months,No,39.01525509,50.0990753,High_spent_Small_value_payments,342.1427113,0,-1.3223,0.624,0.4112,0.6244,-1.1427 +0x10369,CUS_0x4c62,August,39,149-32-6460,Doctor,35586.4,2796.533333,5,5,6,6,"Personal Loan, Auto Loan, Student Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",,17,14.68,10,Standard,1355.24,29.60292799,18 Years and 3 Months,Yes,137.655894,,Low_spent_Large_value_payments,178.9279644,0,-0.4167,0.6526,-0.4108,-0.337,0.5661 +0x10375,CUS_0x4a2b,August,37,226-58-1620,Journalist,31230.98,,6,4,13,3,"Payday Loan, Auto Loan, and Payday Loan",13.04429713,12.15147134,9.71,8,Standard,754.8269937,24.72004783,8 Years and 0 Months,Yes,67.11533198,125.5160135,Low_spent_Medium_value_payments,368.3268212,0,1.5265,-0.7624,-1.9842,-1.6146,0.0239 +0x10381,CUS_0x9586,August,21,510-43-4054,Manager,8967.46,,8,7,17,5,"Personal Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Student Loan",35.29592649,16,28.66,10,Bad,4303,28.9199331,10 Years and 8 Months,Yes,34.45915838,39.35475656,Low_spent_Small_value_payments,314.6149184,0,0.8485,-1.0479,-0.9076,-1.2048,-0.4331 +0x1038d,CUS_0x9556,August,43,328-44-4511,Accountant,73394.12,,9,9,23,5,"Personal Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",,17,19.85,11,_,2704.68,29.90696353,8 Years and 8 Months,Yes,168.1767811,107.9166209,High_spent_Small_value_payments,580.7242646,0,0.1013,-1.2913,-1.2852,-0.0642,-2.2528 +0x10399,CUS_0x55c7,August,32,617-11-1965,Accountant,33643.54,,4,6,20,860,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",19.4609894,17,8.56,8,Standard,1300.7,33.24611472,15 Years and 11 Months,Yes,70.53606363,195.863353,High_spent_Small_value_payments,298.4634167,0,-0.5427,-0.1753,0.2168,-1.913,-0.004 +0x103a5,CUS_0x725f,August,33,112-81-8919,Architect,17044.23,,6,9,34,3,"Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",38.07948414,28.10973624,3.33,11,Bad,2660.050404,28.12421682,14 Years and 5 Months,NM,31.74690149,23.09987124,High_spent_Medium_value_payments,362.2884773,0,1.2019,0.1712,-0.6496,-1.3741,-1.4301 +0x103b1,CUS_0x7040,August,43,317-93-9186,Entrepreneur,30547.98,,7,3,5,3,"Personal Loan, Personal Loan, and Payday Loan",22.45392328,19,2.54,4,Standard,687.69,34.09840456,24 Years and 2 Months,Yes,55.52452793,64.35081779,Low_spent_Medium_value_payments,395.4911543,0,1.4865,2.6995,-0.5649,-0.3752,0.6269 +0x103bd,CUS_0x2c1a,August,42,502-32-2431,Journalist,8609.79,511.4825,8,8,28.88954781,6,"Home Equity Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Student Loan, and Payday Loan",30.7354174,23,24.1,7,Bad,3688.7,38.05695507,6 Years and 10 Months,NM,1358.314551,33.3937959,!@9#%8,245.109822,0,-0.2742,-0.1369,0.6323,1.8336,-0.5731 +0x103c9,CUS_0x63f3,August,34,079-74-4911,Architect,14353.89,,10,9,24.88954781,6,"Credit-Builder Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",,18.75482682,17.4,11,Bad,3598.672058,32.71228384,2 Years and 8 Months,Yes,1394.541416,,Low_spent_Medium_value_payments,269.6211391,0,-0.6667,-0.809,0.3205,-1.3857,-0.5296 +0x103d5,CUS_0x9b37,August,40,642-81-6284,_______,35865.45,,6,5,7,0,,9.086343464,9,3.27,7,Standard,1270.06,24.07401575,18 Years and 5 Months,No,0,33.27987056,High_spent_Large_value_payments,479.3988794,0,-0.6703,0.0821,-0.3734,-0.1594,1.2126 +0x103e1,CUS_0x4fcc,August,48,448-43-9417,Engineer,19339.08,1729.59,0,3,11,2,"Student Loan, and Not Specified",,8,10.64,3,Good,150.14,27.34071145,24 Years and 8 Months,No,28.4989489,76.7383698,Low_spent_Small_value_payments,357.7216813,0,-2.046,0.776,-0.2151,0.3174,-0.0906 +0x103ed,CUS_0x509,August,56,545-56-4628,Engineer,21596.24,1962.686667,4,6,5.288361749,2,"Home Equity Loan, and Mortgage Loan",4.1320146,6,9.06,4,_,118.6026879,35.31873493,16 Years and 9 Months,No,34.93664091,,Low_spent_Small_value_payments,232.5997234,0,-1.3228,1.5399,-0.1039,-2.1537,0.774 +0x103f9,CUS_0x3f49,August,56,860-62-7728,Accountant,123375.18,,2,5,6.288361749,4,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",,0,8.99,4,Good,31.28632143,35.64968623,23 Years and 4 Months,No,260.1840192,602.6972022,High_spent_Medium_value_payments,854.7187105,0,0.1555,0.9311,-1.1044,-1.5178,1.0761 +0x10405,CUS_0x5a59,August,23,346-22-5248,Engineer,17347.04,,6,8,15,5,"Home Equity Loan, Not Specified, Personal Loan, Not Specified, and Personal Loan",13.05228121,10.65622977,4.62,8,Standard,2986.149041,33.58079785,13 Years and 6 Months,Yes,38.51620311,,Low_spent_Small_value_payments,245.6953757,0,-0.7241,0.9623,0.1894,0.248,-1.9044 +0x10411,CUS_0x8b90,August,36,236-26-0276,Manager,102343.68,8736.64,6,5,10,4,"Personal Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",28.66083643,19,11.17,6,Standard,450.66,40.26711153,16 Years and 4 Months,Yes,240.3514811,190.1671088,High_spent_Large_value_payments,683.1454101,0,-0.9708,0.225,-1.2258,1.4545,0.9637 +0x1041d,CUS_0x24f9,August,31,323-09-1618,Manager,15828.15,,8,5,18,5,"Debt Consolidation Loan, Payday Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",12.54855123,13,18.23,8,Standard,1333.84,39.75794563,18 Years and 8 Months,Yes,35.23571969,121.4271195,Low_spent_Medium_value_payments,271.3384108,0,1.8809,0.3592,-1.858,0.4389,-1.8096 +0x10429,CUS_0x7745,August,25,154-95-3212,_______,60983.72,5162.976667,1,7,6,1,Auto Loan,0.93897361,0,11.18,3,Good,532.715754,27.67335411,27 Years and 2 Months,No,34.2282674,265.3439275,Low_spent_Large_value_payments,486.7254718,0,-0.2238,-0.1532,0.7834,0.5715,1.0413 +0x10435,CUS_0xa6a7,August,26,778-76-2369,Scientist,17816.75,1657.729167,10,7,30.06745738,9,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Auto Loan",,26.63079536,1.6,17,Bad,2987.944201,31.61667064,16 Years and 4 Months,Yes,68.75110038,,Low_spent_Small_value_payments,175.9946723,0,1.6971,1.518,1.6059,-0.2747,-0.0466 +0x10441,CUS_0xbf03,August,44,889-89-7508,Doctor,30231.09,2610.2575,3,6,3,3,"Student Loan, Debt Consolidation Loan, and Home Equity Loan",0,1,4.09,2,Good,1263.11,38.10959243,33 Years and 8 Months,No,55.943907,65.31443873,High_spent_Large_value_payments,379.7674043,0,0.5169,0.5046,-0.5885,0.6971,2.041 +0x1044d,CUS_0x806f,August,31,370-38-5926,Journalist,154352,,1,7,8,2,"Student Loan, and Home Equity Loan",0.771207086,4,2.83,3,Good,601.76,28.65145205,,No,47449,860.9124961,Low_spent_Medium_value_payments,455.9166306,0,0.4299,-2.0673,1.3431,0.9721,-0.9854 +0x10459,CUS_0x9c08,August,31,084-92-7120,Developer,139582.6,11353.88333,4,7,3.288361749,2,"Personal Loan, Credit-Builder Loan, and Auto Loan",,8,4.64,7,Good,976.8563904,35.53386731,17 Years and 10 Months,No,300.07611,822.9712092,High_spent_Medium_value_payments,743.0507199,0,-0.9033,0.9896,-1.1599,-0.7317,-0.2935 +0x10465,CUS_0x4d7e,August,44,078-92-8871,Developer,18293.52,,6,5,17.06745738,6,"Not Specified, Not Specified, Payday Loan, Student Loan, Mortgage Loan, and Student Loan",25.45132936,17,23.53,14,Bad,3169.330954,40.20404995,9 Years and 9 Months,Yes,46.50896766,19.86203085,High_spent_Medium_value_payments,320.3547135,0,1.4331,0.442,0.8026,0.4137,-1.7394 +0x10471,CUS_0x80b4,August,31,638-28-1217,Journalist,51371.13,,9,5,26.06745738,8,"Credit-Builder Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",46.95915078,25.86964443,6.96,10,_,2951.99063,40.72094944,6 Years and 0 Months,Yes,225.5710755,,Low_spent_Small_value_payments,220.3959574,0,0.0506,-0.7946,0.1125,-2.2635,-0.0721 +0x1047d,CUS_0x243e,August,41,807-09-3439,Accountant,14542.23,,7,5,17.06745738,100,"Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",31.76852335,15,15.08,13,Bad,1705.870954,28.85770623,16 Years and 8 Months,Yes,18.26578153,100.0996848,Low_spent_Medium_value_payments,241.9994958,0,-0.4186,1.2734,0.6137,1.945,-0.3749 +0x10489,CUS_0x7071,August,23,331-61-1751,Lawyer,34094.94,,8,5,16.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Not Specified",42.77207037,20.16984341,28.73,12,Bad,3225.207286,26.04908514,11 Years and 11 Months,Yes,169.8552986,,High_spent_Small_value_payments,148.574685,0,0.4882,1.0497,1.3091,-0.1654,0.524 +0x10495,CUS_0xa106,August,25,026-50-1269,Manager,30470.59,,3,5,12,100,"Auto Loan, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0.778062626,5,11.82,3,Good,495.8592985,33.76281696,25 Years and 11 Months,No,82.25597157,136.7896758,Low_spent_Medium_value_payments,325.5738786,0,-0.7166,0.3921,0.687,1.8083,-1.0839 +0x104a1,CUS_0xae70,August,41,948-24-6997,Journalist,67942.9,,5,3,19,6,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",28.29869386,21.76557079,11.98,5,Standard,1138.632601,33.27188792,14 Years and 6 Months,Yes,236.5161818,82.45756428,High_spent_Medium_value_payments,516.8170873,0,0.3265,0.7748,-0.9972,1.0784,1.5129 +0x104ad,CUS_0xac04,August,34,250-68-8351,Mechanic,71508.27,5994.0225,7,6,13,4,"Payday Loan, Student Loan, Not Specified, and Not Specified",,16,10.47,4,Standard,1266.04,40.28624009,26 Years and 2 Months,Yes,132.0968469,54.91811006,High_spent_Large_value_payments,652.387293,0,0.8668,-0.7572,0.572,-0.1735,-1.3223 +0x104b9,CUS_0x240c,August,37,481-23-2602,Manager,32364.58,,9,10,19.06745738,5,"Not Specified, Home Equity Loan, Personal Loan, Student Loan, and Personal Loan",45.05215452,20.65949413,17.15,11,Bad,3110.066427,26.04722361,9 Years and 10 Months,Yes,16581,193.5837233,Low_spent_Large_value_payments,193.7721234,0,2.0803,-0.6413,2.4187,0.329,-1.1899 +0x104c5,CUS_0x3672,August,37,398-41-4421,Mechanic,70709.04,,7,6,19.28836175,6,"Home Equity Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Not Specified",19.93947555,17,18.68,10,Standard,805.64,34.25545388,,Yes,260.8835124,581.5493968,Low_spent_Medium_value_payments,416.7465518,0,-0.383,-1.4161,-1.5709,-1.0094,-1.3308 +0x104d1,CUS_0x9afb,August,25,027-88-1476,_______,40341.16,,5,1436,15,7,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",,15.89013215,15.34,1202,Standard,2600.682096,34.24253624,18 Years and 6 Months,Yes,164.4472593,76.45406861,High_spent_Small_value_payments,372.0750054,0,1.5998,1.8091,-0.3817,-0.3133,-0.2094 +0x104dd,CUS_0x1155,August,41,189-76-0870,Developer,158483.48,12927.95667,2,1,1507.288362,2,"Home Equity Loan, Payday Loan, and Personal Loan",0,3,2.65,1442,Good,409.7725771,30.54188628,28 Years and 3 Months,NM,347.5354596,1429.16439,Low_spent_Large_value_payments,344.4600594,0,-1.2897,-0.8296,1.8613,0.5685,1.0611 +0x104e9,CUS_0xb1f8,August,47,410-81-2659,Writer,95858.31,,3,6,6,2,"Auto Loan, and Not Specified",,8,6.89,3,_,345.07,36.70808038,25 Years and 0 Months,No,149.8009201,,!@9#%8,759.7905322,0,0.3424,-1.774,0.2177,0.3931,2.1841 +0x104f5,CUS_0x145c,August,80,448-30-5081,Writer,41588.74,3201.728333,5,3,7,2,"Debt Consolidation Loan, and Personal Loan",7.741246347,7.124313761,8.95,6,Good,681.6869573,37.95536601,26 Years and 11 Months,No,61.94286576,48.67601884,High_spent_Medium_value_payments,459.5539487,0,-0.9472,-0.2686,-0.499,-1.9519,1.0624 +0x10501,CUS_0x6582,August,30,708-36-1676,Manager,75299.36,6367.946667,3,3,9,0,,,3.539512286,1.16,6,Good,1158.10305,38.85472438,,No,0,112.9338717,High_spent_Medium_value_payments,773.860795,0,0.1732,-0.4119,0.1732,0.3219,-0.3806 +0x1050d,CUS_0x8b02,August,28,512-93-1332,Accountant,108462.87,9313.5725,0,5,11,4,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",7.695433663,9.584898704,7.01,2,Good,38.0882474,33.47491446,18 Years and 2 Months,No,349.9197478,480.0562103,Low_spent_Medium_value_payments,381.3812918,0,-2.011,1.7195,-0.9427,0.145,-0.8273 +0x10519,CUS_0x472e,August,34,544-51-0603,Architect,81969.24,6707.77,210,8,15,4,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",22.94167962,,10.56,2348,_,1811.392274,32.49322807,20 Years and 6 Months,Yes,188.5425068,972.747346,Low_spent_Small_value_payments,,0,-1.3512,0.6979,0.8111,0.1389,-0.6515 +0x10525,CUS_0x3fee,August,31,#F%$D@*&8,Media_Manager,87095.61,,0,670,6.288361749,2,"Credit-Builder Loan, Student Loan, and Payday Loan",8.330500764,9,-0.23,4,Good,877.9971343,33.16056865,33 Years and 4 Months,No,158.7098857,509.7774116,High_spent_Large_value_payments,706.4437929,0,-1.1593,-1.2111,-1.1275,-1.1378,-1.0056 +0x10531,CUS_0xac54,August,32,077-81-3204,Accountant,35149.91,2703.159167,4,6,15,0,,12.07046999,9,8,1,Standard,476.09,38.82680537,22 Years and 0 Months,Yes,0,97.39083288,Low_spent_Small_value_payments,462.9250838,0,0.6158,-1.5786,-1.154,0.9446,-0.6956 +0x1053d,CUS_0x2200,August,45,932-35-5942,Musician,41647.6,3411.633333,9,8,33,5,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",,23.90438839,10.66,12,Bad,1454.6885,33.15135335,15 Years and 4 Months,Yes,170.4329237,212.9848566,Low_spent_Small_value_payments,247.745553,0,0.4597,2.3204,-1.6105,-0.8553,0.2057 +0x10549,CUS_0xba5,August,47,745-22-0093,Teacher,34343.83,3144.985833,3,5,16,0,,25.71754876,19,13.37,1,Standard,319.99,37.68288629,23 Years and 9 Months,NM,0,62.71671098,High_spent_Small_value_payments,511.7818724,0,-0.2292,-0.0975,0.5109,-1.6238,-1.3795 +0x10555,CUS_0x99b,August,20,373-66-6828,Media_Manager,71522.2,6107.183333,8,8,29.95700519,6,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Student Loan",,19,31.04,13,Bad,3907.390954,35.18262213,13 Years and 10 Months,Yes,1567.903518,,Low_spent_Medium_value_payments,209.8621826,0,0.4319,-0.9626,-0.2257,1.7478,-1.2687 +0x10561,CUS_0x9ae,August,33,121-14-9806,Engineer,14093.08,,4,3,23.06745738,4,"Payday Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",25.34559906,16.85663321,7.3,9,_,1674.853648,25.01566312,15 Years and 0 Months,Yes,42.11098305,144.1948575,Low_spent_Small_value_payments,201.6162048,0,1.1428,-0.1083,1.5161,0.9521,-0.424 +0x1056d,CUS_0x849d,August,36,730-96-4622,Media_Manager,174826.76,,5,7,10.28836175,2,"Not Specified, and Payday Loan",15.90425257,,15.5,0,Good,819.92,38.38483721,,No,279.604894,,Low_spent_Medium_value_payments,385.9053078,0,0.1561,1.0441,-0.2721,-0.9533,0.1336 +0x10579,CUS_0x7e10,August,37,924-66-5952,Manager,15509.88,,9,6,24.06745738,6,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Student Loan",42.7037461,22.49486885,18.16,10,Standard,3133.172289,37.52068317,10 Years and 9 Months,Yes,74.04113293,137.1587042,Low_spent_Small_value_payments,167.8288749,0,0.2061,0.3724,0.1624,0.5355,-0.6054 +0x10585,CUS_0x9d83,August,22,466-27-9258,Doctor,53627.01,,10,8,30,7,"Payday Loan, Personal Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Auto Loan, and Student Loan",,24.16477114,19.73,12,Bad,4166.268695,25.11995175,5 Years and 8 Months,Yes,186.1061962,,Low_spent_Large_value_payments,176.1690008,0,-1.7528,0.0604,0.0554,-0.1243,1.1163 +0x10591,CUS_0x1108,August,25,183-66-5001,Accountant,117499.47,,4,5,8,0,,9.658372024,9.753038688,8.32,4,Good,377.3932097,30.61812257,30 Years and 8 Months,No,0,,Low_spent_Medium_value_payments,923.6642729,0,0.1899,0.6019,-0.1968,-1.2885,0.695 +0x1059d,CUS_0x4ee4,August,31,498-04-7341,Mechanic,36210.3,3029.525,9,8,31.06745738,4,"Auto Loan, Credit-Builder Loan, Mortgage Loan, and Auto Loan",40.04719201,20.26084822,4.18,8,_,2186.996319,29.87416837,19 Years and 4 Months,Yes,106.0394772,255.2442577,Low_spent_Medium_value_payments,194.9484771,0,-1.1709,0.7785,-1.4807,1.0062,-2.271 +0x105a9,CUS_0x8cdf,August,39,691-71-2474,Lawyer,100831.95,8599.6625,0,1,2.288361749,2,"Personal Loan, Auto Loan, and Student Loan",0,3,6,6,Good,204.0386652,22.93996823,19 Years and 5 Months,NM,250.5993115,11714.88635,!@9#%8,325.0075136,0,-0.4661,-1.2646,0.2206,-0.5771,0.1774 +0x105b5,CUS_0xb5fd,August,39,178-59-4165,Architect,45051.24,3874.27,6,6,6,3,"Student Loan, Not Specified, and Payday Loan",21.31506909,16,10.3,11,Standard,1014.25,25.24828962,32 Years and 2 Months,Yes,73.94070822,151.3928512,High_spent_Small_value_payments,422.0934405,0,-0.0723,0.0315,0.6249,0.016,0.5806 +0x105c1,CUS_0x3934,August,36,898-97-1307,Writer,14787.01,1524.250833,7,7,34.06745738,5,"Student Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",26.68429658,16,28.77,11,Bad,3198.570954,24.26089075,5 Years and 6 Months,Yes,48.33910161,96.20988192,Low_spent_Medium_value_payments,261.1558119,0,-1.1883,1.2231,-0.2178,1.0411,0.8356 +0x105cd,CUS_0x5012,August,30,#F%$D@*&8,Accountant,82332.68,6814.056667,6,9,20.88954781,7,"Student Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Personal Loan, Student Loan, and Payday Loan",,18.8057627,9.25,10,Standard,1752.264324,25.48235411,6 Years and 9 Months,Yes,1612.838998,235.3039078,Low_spent_Medium_value_payments,418.9326797,0,1.0525,1.4769,0.5744,0.3613,1.1894 +0x105d9,CUS_0x4213,August,37,593-78-2658,Architect,28496.3,2357.691667,7,10,21,2,"Payday Loan, and Mortgage Loan",23.26817249,18,3.06,12,_,1513.71,32.60520807,20 Years and 5 Months,NM,45.56510699,213.829166,Low_spent_Large_value_payments,246.3748937,0,-2.0653,0.5559,-0.1573,1.8541,-0.1557 +0x105e5,CUS_0x9796,August,30,447-03-4867,_______,24813.21,,6,4,18,3,"Student Loan, Debt Consolidation Loan, and Personal Loan",25.41010025,20,2.35,8,_,573.77,31.31835403,29 Years and 3 Months,Yes,31.60556576,10000,Low_spent_Small_value_payments,379.2531217,0,1.0072,0.1329,0.4907,-0.9423,-1.3749 +0x105f1,CUS_0x6aeb,August,42,381-73-9446,Journalist,83669.52,6869.46,8,6,17,3,"Home Equity Loan, Personal Loan, and Auto Loan",,,15.22,4,Standard,1234.99,27.43864522,17 Years and 0 Months,Yes,179.5255377,,Low_spent_Large_value_payments,241.6232926,0,-0.1009,-0.666,0.0053,-0.5609,-1.1406 +0x105fd,CUS_0x5bff,August,31,731-35-0994,Lawyer,119113.71,9694.1425,4,7,3.288361749,2,"Auto Loan, and Personal Loan",0,3,5.85,0,Good,569.5125947,27.15180802,25 Years and 10 Months,No,139.7991968,862.0477632,High_spent_Medium_value_payments,696.1062084,0,1.7796,0.0246,0.1485,1.2765,-0.6292 +0x10609,CUS_0x4899,August,33,175-12-3231,Mechanic,19487.77,1338.980833,6,8,16,6,"Student Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",52.08557694,30.43187098,6.54,12,Bad,2246.111448,35.70847604,10 Years and 9 Months,Yes,97.37555546,96.63005204,Low_spent_Small_value_payments,229.8924758,0,-1.0337,-0.1298,-1.1758,0.2087,3.0811 +0x10615,CUS_0x20a1,August,23,212-13-0498,Manager,82339.36,,7,3,19,4,"Personal Loan, Mortgage Loan, Mortgage Loan, and Not Specified",21.80938124,19,18.2,7,Standard,1017.528049,31.3142758,28 Years and 9 Months,Yes,180.8383382,144.8391819,High_spent_Medium_value_payments,632.5917596,0,0.357,-0.4498,-0.0132,-1.7868,1.389 +0x10621,CUS_0x2f56,August,41,605-63-4252,Engineer,71766.06,5968.505,8,4,1091,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,11,,4,Standard,845.6658845,34.37733404,22 Years and 6 Months,NM,198.3090539,228.3324546,High_spent_Medium_value_payments,447.1758498,0,0.6296,-0.0091,0.9107,0.5449,2.3207 +0x1062d,CUS_0x9ec8,August,33,#F%$D@*&8,Engineer,29020.31,,0,4,6,2,"Personal Loan, and Debt Consolidation Loan",0,4,9.78,4,Good,863.0863014,26.42112627,23 Years and 3 Months,No,31.81302219,77.16868406,High_spent_Medium_value_payments,368.983796,0,-1.5386,0.8296,-0.7791,0.4433,0.4626 +0x10639,CUS_0xbfe0,August,25,413-35-4318,Doctor,7201.155,,8,10,33.95700519,7,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, Not Specified, Personal Loan, Student Loan, and Not Specified",,20.42300801,15.99,11,Bad,2314.325652,39.52590401,13 Years and 11 Months,Yes,1359.348146,54.63600871,Low_spent_Large_value_payments,199.9751011,0,1.0842,0.3292,0.6263,-1.3196,0.0645 +0x10645,CUS_0x4f1a,August,44,380-53-7048,Entrepreneur,7097.015,500.4179167,10,9,23.95700519,7,"Not Specified, Home Equity Loan, Payday Loan, Student Loan, Payday Loan, Mortgage Loan, and Student Loan",,27.3841214,23.84,11,Bad,4567.364931,31.15707929,2 Years and 11 Months,Yes,1357.493903,57.84064922,Low_spent_Small_value_payments,203.6568706,0,0.5286,-0.0704,0.059,1.1203,-1.4833 +0x10651,CUS_0x5815,August,32,172-09-0251,Engineer,12550732,4690.305,7,8,33,2,"Credit-Builder Loan, and Personal Loan",,20.94821103,15.73,6,Bad,2528.291103,36.60094213,12 Years and 3 Months,Yes,67.3343982,,Low_spent_Small_value_payments,82.85616041,0,0.2781,-1.226,0.6568,-0.3473,-1.0905 +0x1065d,CUS_0xb2b8,August,37,708-90-6151,Lawyer,20634.78,1572.565,5,3,18,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Auto Loan",19.22614072,13,17.98,17,Standard,2483.98,32.61511387,7 Years and 11 Months,Yes,55.57719291,10000,High_spent_Medium_value_payments,285.9745284,0,-0.8753,-0.1551,0.1012,-0.2582,1.8112 +0x10669,CUS_0xbe1,August,22,592-80-5739,Architect,55188.52,4876.043333,5,4,8,0,,25.35313889,16,5.84,4,_,299.91,37.47471599,21 Years and 10 Months,NM,0,,High_spent_Medium_value_payments,606.213842,0,0.3841,0.1025,-2.1103,-0.1668,0.1275 +0x10675,CUS_0xc506,August,18,598-44-8256,Architect,10499.56,995.9633333,8,3,11,7,"Student Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Student Loan, Home Equity Loan, and Mortgage Loan",11.27563474,8,7.86,5,_,2469.98,32.94947596,17 Years and 8 Months,Yes,40.53744009,47.62610949,Low_spent_Small_value_payments,301.4327838,0,-0.2845,-0.36,0.6258,-1.3779,-1.5285 +0x10681,CUS_0x6612,August,51,101-38-4991,Doctor,30924.04,2647.003333,4,1,11.28836175,2,"Payday Loan, and Mortgage Loan",,8,6.2,3,Good,1.13561961,22.61404624,28 Years and 8 Months,No,38.00148869,665.8554359,Low_spent_Large_value_payments,281.2757359,0,1.3005,0.5365,0.566,2.2079,-0.6606 +0x1068d,CUS_0x51ff,August,28,022-22-0975,Accountant,158952.84,13056.07,5,5,1.288361749,0,Payday Loan,4.462346276,8,4.03,4,Good,829.69,39.43666995,23 Years and 5 Months,No,87.446663,701.2501545,High_spent_Small_value_payments,1196.847643,0,0.6917,-0.1433,0.8014,0.9149,0.4987 +0x10699,CUS_0xacd9,August,29,#F%$D@*&8,Architect,64840.32,,6,7,18,6,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",15.20807005,9.406529452,13.14,12,Standard,2834.771149,28.71579473,9 Years and 5 Months,Yes,190.8036634,,High_spent_Medium_value_payments,446.5153269,0,0.1842,1.1162,-0.4272,0.1632,-0.6749 +0x106a5,CUS_0xf4d,August,20,855-72-4023,Lawyer,20985.48,1574.79,7,3,9,4,"Payday Loan, Not Specified, Debt Consolidation Loan, and Payday Loan",3.482462901,7,12.37,12,Standard,714.54,27.76290018,12 Years and 3 Months,Yes,38.21648467,10000,High_spent_Large_value_payments,323.2537825,0,-0.773,0.6453,-0.1572,0.8064,-1.4767 +0x106b1,CUS_0x194f,August,44,254-39-4934,_______,29503.65,,5,5,13.28836175,2,"Not Specified, Home Equity Loan, and Credit-Builder Loan",10.33542296,12,1.09,2,Standard,329.02,37.11867448,21 Years and 6 Months,No,50.98220999,556.5906383,High_spent_Small_value_payments,303.3283627,0,-1.2492,-0.3665,0.3648,0.2773,1.4917 +0x106bd,CUS_0x3854,August,21,774-91-6471,Manager,40100.45,3280.704167,0,4,7,0,,15.03531275,14,7.16,4,Good,821.74,25.01059515,32 Years and 11 Months,No,0,175.7190876,Low_spent_Large_value_payments,422.3513291,0,-0.0881,0.5671,0.2639,0.1442,0.2064 +0x106c9,CUS_0x74fa,August,47,230-43-6105,Entrepreneur,33647.34,,8,5,9,4,"Not Specified, Not Specified, Debt Consolidation Loan, and Mortgage Loan",13.19764662,9,11.07,4,Standard,1152.93,31.34897371,24 Years and 5 Months,NM,102.5575559,118.9902631,High_spent_Medium_value_payments,308.946681,0,-0.8189,0.513,0.0387,0.2223,-2.171 +0x106d5,CUS_0x2f78,August,50,#F%$D@*&8,Entrepreneur,90409.32,,7,5,9,4,"Payday Loan, Mortgage Loan, Payday Loan, and Not Specified",25.07900688,14.6597154,2.17,5,Standard,398.1163639,30.1665624,22 Years and 10 Months,Yes,167.030738,639.5224951,Low_spent_Large_value_payments,239.2577669,0,-0.4282,-0.1273,-2.7556,-0.7441,0.6007 +0x106e1,CUS_0x5543,August,34,819-22-3330,Writer,31225.44,2643.905594,8,5,10.28836175,0,Auto Loan,13.96055958,13,5.42,6,Standard,150.49,33.83800766,23 Years and 3 Months,No,155.7477115,746.2500092,Low_spent_Small_value_payments,215.5661466,0,-0.4778,-0.3831,0.3017,0.8898,0.5913 +0x106ed,CUS_0x146a,August,35,473-27-3479,Architect,25744.12,1923.343333,6,4,14,1,Debt Consolidation Loan,23.43281689,19,7.16,1,Standard,1118.51,24.68769241,25 Years and 9 Months,NM,12.3320131,80.1221651,Low_spent_Medium_value_payments,379.8801551,0,-0.2219,0.4839,-1.4023,-0.259,0.5529 +0x106f9,CUS_0x4f41,August,38,702-76-0398,Mechanic,16398.56,,10,6,26.06745738,5,"Payday Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",48.13745614,26.43782041,8.52,16,Bad,5453.435805,34.36560007,7 Years and 2 Months,Yes,58.56284722,,High_spent_Medium_value_payments,256.6116272,0,-0.26,-0.4474,1.1792,0.636,-0.502 +0x10705,CUS_0xa267,August,52,242-22-1951,Doctor,129727.4,,3,4,19,2,"Personal Loan, and Student Loan",21.83081464,15,11.68,5,Standard,1019.445626,27.51862731,31 Years and 6 Months,NM,175.0563407,808.6371744,Low_spent_Medium_value_payments,482.144226,0,-1.2314,1.0833,0.3118,0.389,-0.0534 +0x10711,CUS_0xbe63,August,30,046-41-7217,Teacher,63473.6,5385.466667,5,7,20,5,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",25.64009025,17,16.93,11,Standard,1029.31,28.67746133,14 Years and 3 Months,NM,163.3085564,,Low_spent_Medium_value_payments,212.539387,0,1.1921,0.0564,2.226,-3.5898,-0.0213 +0x1071d,CUS_0x4197,August,24,923-04-3411,Lawyer,59103.06,4806.255,8,6,7,0,,,9,2.57,7,Good,1428.53,28.02877629,16 Years and 2 Months,NM,0,181.2893433,High_spent_Medium_value_payments,549.3361567,0,0.3543,1.8607,1.0583,-0.5934,0.271 +0x10729,CUS_0x5591,August,35,191-72-1156,Media_Manager,18371.27,,10,10,28.06745738,5,"Home Equity Loan, Home Equity Loan, Auto Loan, Payday Loan, and Mortgage Loan",43.54400229,19.17354568,8.17,9,Standard,2762.17433,24.09668231,10 Years and 11 Months,Yes,52.0012016,83.27692226,Low_spent_Small_value_payments,257.5955049,0,-0.1965,1.2829,-1.1865,-0.0625,-1.2337 +0x10735,CUS_0xbfea,August,45,531-40-7694,Scientist,44258.1,3867.175,2,6,10.28836175,0,Debt Consolidation Loan,,996,-1.36,3,Good,345.23,34.98655196,32 Years and 6 Months,NM,23.66105445,717.2584727,Low_spent_Small_value_payments,355.7354339,0,0.93,-0.3488,0.6089,-1.6551,-0.1823 +0x10741,CUS_0x7266,August,24,063-49-8444,Teacher,46422.1,4085.508333,8,6,9,2,"Personal Loan, and Payday Loan",15.82043289,12,3.5,0,Standard,832.68,40.67267648,,No,66.49089007,49.98367161,!@9#%8,532.0762717,0,0.0284,-0.1563,-0.451,-1.5461,0.0474 +0x1074d,CUS_0xafce,August,43,779-14-8458,Engineer,40063.22,3305.601667,2,5,11,3,"Personal Loan, Payday Loan, and Student Loan",10.65009943,10,11.37,2,_,781.138131,33.54905056,28 Years and 3 Months,No,90.56267751,120.7985873,!@9#%8,384.2266929,0,-0.2139,0.4028,0.0568,0.4299,1.6001 +0x10759,CUS_0xb756,August,38,#F%$D@*&8,Developer,17625.61,1406.800833,10,10,19.95700519,7,"Debt Consolidation Loan, Not Specified, Not Specified, Payday Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",45.47243185,28,25.94,12,Bad,4714.630954,34.11967118,3 Years and 6 Months,Yes,1411.356973,77.13645038,Low_spent_Large_value_payments,201.136291,0,0.2296,-0.6606,0.3979,0.4589,-0.3473 +0x10765,CUS_0x89a9,August,27,049-07-7538,Media_Manager,32428.98,,6,5,23,5,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Debt Consolidation Loan",35.14818675,25,21.88,11,Bad,4903.14,32.81095113,11 Years and 0 Months,NM,109.2732961,92.08098132,Low_spent_Medium_value_payments,329.8872226,0,0.5269,0.5508,1.2264,0.1556,-0.1266 +0x10771,CUS_0x7ac7,August,31,080-03-1929,Media_Manager,10457.88,,6,8,30.06745738,8,"Not Specified, Personal Loan, Home Equity Loan, Payday Loan, Auto Loan, Student Loan, Payday Loan, and Credit-Builder Loan",30.72183414,18.21396845,6.9,562,Bad,1631.196274,30.35960658,13 Years and 2 Months,Yes,68.54844529,,Low_spent_Small_value_payments,182.9781289,0,0.0242,-0.6578,1.5689,1.1896,0.7553 +0x1077d,CUS_0x4198,August,35,268-15-0119,Entrepreneur,93536.04,,6,6,20,0,,24.44031773,18,11.83,3,Standard,863.78,41.94719894,27 Years and 3 Months,Yes,0,299.0513746,High_spent_Medium_value_payments,707.5156254,0,-0.8505,-0.2789,0.6606,0.4949,-0.3787 +0x10789,CUS_0xb728,August,27,042-89-6909,_______,81823.28,6776.606667,8,6,31,7,"Payday Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Student Loan, Not Specified, and Credit-Builder Loan",,20.51547375,3.08,9,Bad,2932.300515,35.05469607,18 Years and 3 Months,Yes,306.1548544,438.2045357,Low_spent_Large_value_payments,203.3012766,0,-0.5019,-0.1378,-0.4685,-0.3714,-0.2642 +0x10795,CUS_0x10df,August,27,279-20-3097,Musician,9929.235,,4,8,23,3,"Not Specified, Auto Loan, and Student Loan",,21.18104024,11.5,14,Standard,2587.811991,36.50926646,7 Years and 2 Months,Yes,18.12096644,,Low_spent_Small_value_payments,260.9159335,0,-0.6039,0.177,-1.6778,-0.9764,-0.3219 +0x107a1,CUS_0x7b09,August,25,#F%$D@*&8,Musician,24148.54,1780.378333,4,4,14,4,"Credit-Builder Loan, Payday Loan, Mortgage Loan, and Not Specified",,15,3.03,5,_,157.98,39.76217737,22 Years and 0 Months,No,72.79827943,,High_spent_Small_value_payments,316.287939,0,-0.8805,0.3576,-1.281,-0.6181,-1.2099 +0x107ad,CUS_0x3279,August,41,837-88-8352,Writer,18762.55,1710.545833,8,6,25.06745738,6,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Auto Loan",,25.86682662,22.51,14,Bad,4455.32286,25.62054818,2 Years and 3 Months,Yes,54.0572108,40.88696982,High_spent_Small_value_payments,309.3901148,0,-0.1017,-0.1723,-0.9165,0.7667,-1.7554 +0x107b9,CUS_0x5209,August,30,708-44-3082,Doctor,457224,3201.483333,6,6,18,6,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, and Student Loan",,22.16821937,26.07,6,Bad,5120.295103,35.74226442,2 Years and 2 Months,Yes,195.6607339,10000,Low_spent_Small_value_payments,136.9331204,0,1.3445,1.5354,-1.2626,1.1531,-0.3928 +0x107c5,CUS_0xabbd,August,24,#F%$D@*&8,Scientist,83990.68,6776.223333,7,5,18,5,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",45.70272254,25.02495693,1.89,9,Bad,5566.083687,29.66289637,11 Years and 11 Months,Yes,336.5829611,,High_spent_Small_value_payments,186.1703376,0,-0.5212,-0.641,1.2913,-1.0023,0.6835 +0x107d1,CUS_0x585c,August,39,212-80-7573,Teacher,16154.255,,6,3,7,3,"Debt Consolidation Loan, Personal Loan, and Home Equity Loan",19.21579273,17,5.11,5,Standard,1232.63,32.58308681,17 Years and 9 Months,Yes,24.02784249,51.69708013,Low_spent_Small_value_payments,364.893869,0,0.9431,-1.0191,-1.107,0.3742,-0.188 +0x107dd,CUS_0xbd89,August,40,137-80-9734,Scientist,11100.59,1087.049167,6,5,13,4,"Personal Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",,19,6.67,5,Standard,465.87,37.65393152,19 Years and 0 Months,Yes,23.37810897,59.80329246,Low_spent_Large_value_payments,295.5235152,0,0.0236,-0.9454,0.5535,0.0852,2.2641 +0x107e9,CUS_0x81b8,August,50,161-97-7894,Mechanic,21964843,1553.835,3,5,14,3,"Credit-Builder Loan, Home Equity Loan, and Personal Loan",,20,10.14,2,Standard,1472.07,38.94598026,21 Years and 3 Months,Yes,31.71556317,144.781148,Low_spent_Small_value_payments,268.8867889,0,0.2934,0.324,-0.1314,-0.9358,-0.1819 +0x107f5,CUS_0x1cee,August,60,541-87-1826,Teacher,59782,,0,5,7,4,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",2.87260937,3,8.2,3,Good,238.3117945,40.00394259,24 Years and 5 Months,No,155.9091432,67.96582148,!@9#%8,544.6996376,0,-0.542,1.1697,-0.6464,1.352,1.0671 +0x10801,CUS_0xa8d1,August,44,596-68-6198,Accountant,32777.51,,5,4,1,100,"Mortgage Loan, Personal Loan, and Student Loan",8.348241636,9,4.22,2,Good,605.4999832,35.40825698,26 Years and 4 Months,No,64.9759091,32.68400372,High_spent_Large_value_payments,415.8612405,0,-0.6396,-1.5613,0.7973,1.302,2.2452 +0x1080d,CUS_0xa1cb,August,49,149-07-4465,Musician,43090.57,3787.880833,3,4,8,1,Mortgage Loan,11.59457864,12.05181968,6.55,4,Good,1250.382351,32.98807388,33 Years and 3 Months,No,34.76528019,,Low_spent_Medium_value_payments,341.4040499,0,0.3468,0.12,0.621,-0.6101,1.0492 +0x10819,CUS_0x53e8,August,34,988-17-8179,Teacher,9863.53,,6,7,30.06745738,8,"Student Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, and Auto Loan",36.98209938,24.67408577,25.06,9,Bad,5571.125408,28.83072917,5 Years and 0 Months,Yes,45.42488737,90.48614592,Low_spent_Small_value_payments,231.2647621,0,-0.2322,0.5204,0.6666,0.0008,0.8623 +0x10825,CUS_0x27a6,August,26,296-46-9959,Musician,47268.22,4058.018333,6,4,19,5,"Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",8.319547215,5,10.53,1807,_,914.7,31.51899831,14 Years and 11 Months,Yes,194.6771009,494.9295339,Low_spent_Small_value_payments,6.195198584,0,-0.2268,1.7507,-0.5184,-0.8407,0.015 +0x10831,CUS_0xa990,August,22,920-89-6435,Architect,9276.99,741.0825,10,5,26.06745738,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",39.94896498,26.88762063,24.2,7,Bad,3954.423555,27.66503014,9 Years and 0 Months,Yes,28.18064196,38.26350198,Low_spent_Small_value_payments,270.9438181,0,-0.9688,0.6644,0.554,0.9392,-2.0032 +0x1083d,CUS_0x2d38,August,25,975-00-7794,Musician,48409.17,4021.0975,8,6,12,4,"Personal Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",24.40743912,18,16.38,8,Standard,2120.2,35.79532366,14 Years and 5 Months,Yes,98.65879183,68.19762983,High_spent_Large_value_payments,475.2533283,0,-2.3743,-0.4688,1.7826,-0.1262,-0.3875 +0x10849,CUS_0x66e0,August,18,287-30-3523,Accountant,20256.39,1971.0325,8,6,22.06745738,7,"Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, Not Specified, Student Loan, and Payday Loan",32.48017658,17,14.89,15,Bad,2027.180954,34.81112123,9 Years and 8 Months,Yes,70.63605834,225.0701398,Low_spent_Small_value_payments,164.6767639,0,0.5067,-0.939,-2.0131,-0.9572,-1.2319 +0x10855,CUS_0xa1bb,August,29,484-76-2971,Mechanic,34225.79,,4,3,9,2,"Home Equity Loan, and Payday Loan",18.78231473,16,11.59,2,Standard,592.68,36.3702522,31 Years and 0 Months,No,37.17522467,82.68001888,High_spent_Medium_value_payments,405.1596731,0,-0.2694,0.1651,0.3274,-0.7358,-0.3959 +0x10861,CUS_0x3ff4,August,36,#F%$D@*&8,Scientist,18241.11,1387.232104,6,6,13,2,"Home Equity Loan, and Debt Consolidation Loan",9.16874982,9,3.13,12,_,2181.17,26.17050737,9 Years and 2 Months,Yes,215.7203824,52.83923084,Low_spent_Large_value_payments,354.5100326,0,0.5075,-0.4074,-0.5232,1.1804,1.1208 +0x1086d,CUS_0x2bb0,August,55,881-91-3553,Mechanic,44318.92,3491.243333,6,6,8,0,,9.113925217,9,15.55,4,_,998.3566507,34.74490346,29 Years and 0 Months,Yes,0,,High_spent_Medium_value_payments,505.4695798,0,-1.3528,0.1793,0.6152,0.0573,-0.2308 +0x10879,CUS_0xb873,August,43,622-15-4188,Accountant,61262.76,5054.23,6,9,20,5,"Auto Loan, Not Specified, Mortgage Loan, Student Loan, and Auto Loan",37.34881056,27.99882147,7.2,9,Bad,2647.597912,32.88710374,6 Years and 11 Months,Yes,250.5968425,132.7437633,High_spent_Small_value_payments,382.0823942,0,-1.5642,0.3812,-0.5306,1.856,0.1969 +0x10885,CUS_0x182b,August,47,736-28-6339,Doctor,105015.76,8719.313333,8,4,9,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Payday Loan",,18,17.52,3,Standard,715.37,29.54299504,26 Years and 8 Months,Yes,344.2124388,,High_spent_Small_value_payments,494.6596432,0,-1.3849,1.5262,1.1163,1.0597,0.6248 +0x10891,CUS_0x536b,August,32,805-19-9682,Journalist,53320.98,4343.415,7,6,20,4,"Payday Loan, Student Loan, Not Specified, and Home Equity Loan",,,7.95,3,Standard,167.15,29.09593503,,Yes,93.09327867,279.1028348,Low_spent_Medium_value_payments,342.1453865,0,0.0673,-0.8472,0.562,-1.8486,-0.5739 +0x1089d,CUS_0x1a44,August,44,990-15-5111,Mechanic,14435.435,1376.697641,3,5,20,4,"Credit-Builder Loan, Student Loan, Home Equity Loan, and Auto Loan",22.45270566,19,2.2,4,Standard,799.07,32.36903798,17 Years and 0 Months,NM,86.29587661,30.12764152,High_spent_Medium_value_payments,317.7270489,0,0.5357,-0.0825,2.0048,-0.1803,0.0871 +0x108a9,CUS_0x62c3,August,46,960-26-5577,Entrepreneur,17132.905,1283.742083,1,5,5,2,"Personal Loan, and Credit-Builder Loan",0,2,2.16,0,Good,992.6318149,29.68699273,22 Years and 2 Months,No,15.40179215,95.22351058,Low_spent_Large_value_payments,298.9548622,0,0.2077,0.5914,-1.553,0.7121,1.4883 +0x108b5,CUS_0x9944,August,39,359-31-4000,Teacher,7314.675,,10,7,30.06745738,7,"Personal Loan, Auto Loan, Home Equity Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,25.78797537,6.89,7,Bad,2668.328258,33.69435804,18 Years and 8 Months,Yes,25.15933031,0,Low_spent_Large_value_payments,242.4729805,0,-1.3823,1.088,-1.1101,-0.2255,0.3884 +0x108c1,CUS_0x5052,August,21,103-91-9926,Musician,47557.02,3715.085,4,3,17,6,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",,18.00194129,11.34,6,Standard,2512.18052,39.73822571,7 Years and 2 Months,Yes,122.8800057,313.2254448,Low_spent_Medium_value_payments,215.4030496,0,1.3832,-0.8774,-1.5936,0.1299,1.2108 +0x108cd,CUS_0x66d9,August,25,289-20-3745,Teacher,36401.36,,4,5,33,6,"Not Specified, Student Loan, Auto Loan, Not Specified, Student Loan, and Payday Loan",,12.36997891,13.55,6,Standard,2488.406941,37.48261506,13 Years and 10 Months,Yes,129.3361785,242.2722054,Low_spent_Large_value_payments,221.5362828,0,-0.9911,0.2225,2.0146,-1.5032,0.0739 +0x108d9,CUS_0x8814,August,26,257-81-4862,Engineer,33518.12,,6,9,24.95700519,7,"Not Specified, Home Equity Loan, Auto Loan, Mortgage Loan, Student Loan, Not Specified, and Student Loan",30.14351074,15.60770615,15.18,10,_,2123.194312,32.63787802,18 Years and 9 Months,Yes,80726.48344,370.9547733,!@9#%8,0,0,-0.3813,-2.0555,0.9852,1.3011,0.6757 +0x108e5,CUS_0x9633,August,37,693-09-9868,Entrepreneur,56274.24,4518.52,616,6,26,100,"Debt Consolidation Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",,20.64290646,16.82,14,_,1843.699959,25.81531394,11 Years and 3 Months,Yes,152.8345181,506.5393524,Low_spent_Small_value_payments,82.47812953,0,-0.754,-0.3612,0.2906,-0.0871,0.4422 +0x108f1,CUS_0x6077,August,31,#F%$D@*&8,Musician,57742.86,,10,5,31,7,"Payday Loan, Personal Loan, Home Equity Loan, Student Loan, Student Loan, Auto Loan, and Credit-Builder Loan",44.9482708,26,2.61,10,_,1758.91,30.11885946,12 Years and 8 Months,Yes,291.6415272,,High_spent_Small_value_payments,130.4057567,0,-0.8586,0.7535,-0.5581,-0.1926,1.7723 +0x108fd,CUS_0xbb70,August,22,809-62-3183,Musician,25971.13,,386,4,2,4,"Not Specified, Payday Loan, Not Specified, and Not Specified",8.132681202,9,3.35,4,_,700.6617457,38.93155656,,No,240.4295748,159.6365104,Low_spent_Small_value_payments,291.7087314,0,1.1414,0.191,-0.6007,1.4232,1.5966 +0x10909,CUS_0x8a3,August,19,641-10-7375,Accountant,34039.54,2728.628333,5,4,17,4,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",,15,14.17,1,_,197.39,33.00647782,23 Years and 6 Months,Yes,83.74554106,40.08779017,High_spent_Medium_value_payments,399.0295021,0,-0.5674,1.2941,1.4593,1.1275,0.2466 +0x10915,CUS_0x753d,August,32,651-76-8170,Lawyer,28694.16,,8,9,16.95700519,8,"Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",43.50573213,26.01694095,6.52,10,Bad,2943.089212,31.9457839,5 Years and 9 Months,NM,1447.187839,160.4634662,Low_spent_Medium_value_payments,205.7163252,0,0.024,-0.6747,-0.7759,-0.5359,1.0687 +0x10921,CUS_0x76f6,August,39,070-14-2190,Mechanic,88325.58,7486.465,0,4,7,3,"Not Specified, Student Loan, and Payday Loan",3.641091535,5,0.66,7,Good,475.5408024,34.73488739,27 Years and 9 Months,No,207.5639791,108.4964845,High_spent_Large_value_payments,683.0827502,0,-2.7529,0.4836,0.863,-0.55,-0.9637 +0x1092d,CUS_0xbdf,August,40,728-61-7997,_______,66489.74,,4,4,17,3,"Not Specified, Not Specified, and Credit-Builder Loan",12.97897742,9,10.18,7,Standard,819.57,29.41824992,31 Years and 2 Months,No,118.3344012,164.8125536,High_spent_Small_value_payments,534.4342118,0,-0.7597,1.4998,-0.2256,0.4223,1.1425 +0x10939,CUS_0xb303,August,27,286-26-8637,_______,7169.585,,8,7,33,5,"Student Loan, Not Specified, Student Loan, Debt Consolidation Loan, and Personal Loan",,19.07638234,19.18,7,Standard,1781.584716,38.93306178,,Yes,18.76056409,23.74628366,High_spent_Medium_value_payments,294.2396939,0,-0.0958,-0.9489,2.2388,0.0179,0.1338 +0x10945,CUS_0x7b6,August,39,666-80-2835,Scientist,82988.08,,4,4,10,3,"Mortgage Loan, Auto Loan, and Mortgage Loan",90,787,15.52,8,Standard,1036.93,38.45876591,18 Years and 9 Months,Yes,182.4249206,114.9656739,High_spent_Large_value_payments,652.6767388,0,1.8258,-1.1742,-1.9081,0.8177,-0.8626 +0x10951,CUS_0x2ba4,August,28,373-18-8417,Mechanic,70618.62,5775.885,8,5,15,5,"Personal Loan, Personal Loan, Not Specified, Payday Loan, and Payday Loan",21.73627555,,15.67,11,Standard,1471.433459,25.5367841,11 Years and 2 Months,Yes,267.8599513,247.792501,High_spent_Small_value_payments,321.9360477,0,-2.273,-0.0671,1.057,0.1758,1.7508 +0x1095d,CUS_0x1deb,August,25,334-90-6536,Entrepreneur,98436.6,8079.05,8,6,10,0,,24.60614215,16,10.28,3,Good,299.4539174,42.53460976,21 Years and 0 Months,No,0,282.5873318,High_spent_Medium_value_payments,810.8984396,0,0.2935,0.8243,0.8174,1.1776,-1.524 +0x10969,CUS_0x4079,August,45,344-37-9577,Mechanic,16858.01,1600.834167,9,6,21,3,"Personal Loan, Not Specified, and Credit-Builder Loan",25.83874219,13.44920073,12.95,13,Standard,2650.277974,25.78652442,11 Years and 9 Months,Yes,24.93265118,51.19932249,Low_spent_Large_value_payments,353.951443,0,-0.7123,-0.5688,1.6956,0.5999,-0.4262 +0x10975,CUS_0x68ce,August,80,#F%$D@*&8,Manager,19019.1,,5,3,8,4,"Not Specified, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,15,7.79,4,Good,878.69,40.23118151,17 Years and 9 Months,No,38.8376848,99.54181409,!@9#%8,315.4130011,0,-0.5124,0.8096,-0.8499,-0.4714,-0.7549 +0x10981,CUS_0x9093,August,29,967-62-7659,Manager,38158.8,2846.477896,6,8,31.95700519,8,"Student Loan, Not Specified, Auto Loan, Home Equity Loan, Not Specified, Auto Loan, Payday Loan, and Payday Loan",32.41921145,16,29.34,12,Bad,2902.260954,35.45176096,6 Years and 8 Months,Yes,1718.345168,,High_spent_Medium_value_payments,185.9789817,0,-0.0946,-0.3775,-0.4264,-0.7272,1.558 +0x1098d,CUS_0x3adc,August,46,#F%$D@*&8,Journalist,63539.66,5032.971667,6,7,19,4,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Personal Loan",10.99724337,10.87346554,15.15,5,Standard,197.0364002,28.96280245,19 Years and 6 Months,Yes,206.8674348,,Low_spent_Small_value_payments,157.5974543,0,0.7487,-0.8946,1.0127,-0.3665,1.0088 +0x10999,CUS_0x136c,August,53,158-74-4274,Lawyer,120644.88,10043.74,4,6,7,4,"Student Loan, Student Loan, Not Specified, and Credit-Builder Loan",,7.012173337,10.49,1,Good,1582.3011,41.94258015,,No,257.8997926,80.47305213,High_spent_Large_value_payments,906.0011553,0,0.5029,-0.7295,0.6323,0.3848,-0.0026 +0x109a5,CUS_0x3bdb,August,49,145-16-1646,Mechanic,129982.41,,3,2,11.28836175,4,"Not Specified, Mortgage Loan, Credit-Builder Loan, and Student Loan",3.230441567,5,14.6,8,_,395.78,39.05802232,29 Years and 2 Months,No,278.0421664,539.3531031,High_spent_Large_value_payments,907.9289415,0,0.6968,-0.1471,0.3675,1.7572,0.1213 +0x109b1,CUS_0x25be,August,22,136-25-7844,Media_Manager,8213.68,,5,4,14,6,"Student Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, Not Specified, and Not Specified",,8,16.84,11,Standard,2685.31,34.82388294,14 Years and 10 Months,NM,33.64236741,96.44766852,Low_spent_Small_value_payments,252.5572974,0,-1.9799,-1.3933,0.0718,-0.2822,-0.9682 +0x109bd,CUS_0x8121,August,45,958-40-2996,Journalist,64688.84,,6,10,31.95700519,7,"Home Equity Loan, Home Equity Loan, Not Specified, Mortgage Loan, Student Loan, Student Loan, and Mortgage Loan",23.92672982,16,19.34,12,Bad,3775.930954,38.65754978,11 Years and 0 Months,Yes,1545.125463,362.5207618,High_spent_Small_value_payments,196.7770729,0,0.3855,-0.6216,-1.165,-1.3901,0.7341 +0x109c9,CUS_0x14d5,August,37,476-48-0347,Engineer,71814.28,5976.523333,3,5,10,0,,13.62233978,13,6.93,4,Good,1434.97,26.42172835,33 Years and 3 Months,No,0,168.316671,High_spent_Medium_value_payments,679.3356623,0,-0.0107,0.4468,0.3603,-0.9303,-0.0493 +0x109d5,CUS_0x2441,August,38,558-95-8969,_______,38117.06,3245.421667,8,5,34,6,"Credit-Builder Loan, Mortgage Loan, Payday Loan, Student Loan, Student Loan, and Not Specified",38.21537545,27.07774445,26.16,15,Bad,2921.224838,27.50140338,8 Years and 6 Months,Yes,143.5088553,,High_spent_Medium_value_payments,335.1064397,0,-1.2097,-1.5855,0.8287,-1.5566,-2.4892 +0x109e1,CUS_0xc3d,August,23,263-96-1708,Writer,30549.55,,1,3,10,2,"Home Equity Loan, and Student Loan",13.02791496,,,8,Good,483.5848287,30.08392961,19 Years and 2 Months,No,46.87507161,,Low_spent_Small_value_payments,195.3070486,0,0.825,-0.7505,0.1349,-0.8499,1.8077 +0x109ed,CUS_0x3913,August,28,#F%$D@*&8,Writer,101203,8675.583333,8,4,6,4,"Not Specified, Payday Loan, Credit-Builder Loan, and Mortgage Loan",19.40931926,13,3.08,1,_,598.94,23.33954316,24 Years and 6 Months,No,278.9073204,593.907888,!@9#%8,274.7431249,0,-0.8252,-1.4608,-1.5142,-0.4066,-0.7729 +0x109f9,CUS_0x944f,August,26,120-63-8432,Media_Manager,35006.57,3203.214167,5,7,9.288361749,4,"Auto Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",10.8305247,11,18.95,5,Standard,246.13,33.65591288,16 Years and 4 Months,Yes,76.98345911,521.0479885,High_spent_Medium_value_payments,392.22743,0,1.1394,-0.1505,0.6682,0.3574,-0.3928 +0x10a05,CUS_0xb300,August,49,378-77-5875,Manager,41617.68,3350.14,2,5,1.288361749,4,"Auto Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",8.881638059,10,7.49,1,Good,201.05,38.38071373,30 Years and 5 Months,No,94.46144161,10419.93746,!@9#%8,400.6563571,0,-0.168,0.3638,-0.6216,-1.9689,-0.4604 +0x10a11,CUS_0xa26b,August,27,703-94-0835,Accountant,99657.51,,7,3,8,4,"Not Specified, Payday Loan, Home Equity Loan, and Mortgage Loan",28.02991686,20.37133966,19.24,4,Standard,128.92629,35.29066098,27 Years and 0 Months,Yes,307.5263812,525.069934,Low_spent_Medium_value_payments,263.8829348,0,0.5335,0.8634,-0.3006,1.5175,-1.1086 +0x10a1d,CUS_0xc1c6,August,32,807-95-9558,Manager,134504.68,11187.72333,0,2,1337,1,Credit-Builder Loan,4.988064955,7,3.21,8,Good,1085.4093,38.42146486,32 Years and 10 Months,No,72.81102835,203.1045589,High_spent_Large_value_payments,1104.614705,0,1.8103,0.1711,-1.1313,-0.4065,0.9225 +0x10a29,CUS_0xb96b,August,47,046-69-1325,Manager,63068.88,5406.74,2,5,11,3,"Auto Loan, Mortgage Loan, and Student Loan",8.080185074,7.846961361,11.47,5,Good,387.6474004,26.85299506,21 Years and 4 Months,No,97.05733789,10000,Low_spent_Large_value_payments,562.8980029,0,-0.5904,-0.5301,0.0247,1.2775,0.2902 +0x10a35,CUS_0x5215,August,38,#F%$D@*&8,Musician,71285,6207.416667,0,5,4,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",,7,5.28,2,Good,1129.742611,38.48058706,24 Years and 4 Months,No,159.2071227,97.40123938,High_spent_Large_value_payments,616.5466495,0,-0.0712,-0.8251,0.214,-0.5336,-0.6011 +0x10a41,CUS_0x87e4,August,21,175-54-4117,Mechanic,19582.95,,4,4,31,6,"Payday Loan, Not Specified, Payday Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",22.17175928,19,8.63,10,Standard,2556.35,27.6086802,12 Years and 5 Months,Yes,241.0019004,71.78957419,Low_spent_Small_value_payments,288.8555035,0,-1.206,-1.2382,0.9927,-1.5532,-0.1181 +0x10a4d,CUS_0x4ef2,August,48,342-22-4742,Developer,57080.22,,6,4,2.288361749,2,"Mortgage Loan, Personal Loan, and Payday Loan",,11,0.75,0,Good,505.8223985,33.42741707,,No,116.5307469,500.5475853,High_spent_Medium_value_payments,522.5112029,0,0.6795,-0.2737,0.1627,1.6901,0.64 +0x10a59,CUS_0xbac4,August,49,582-35-5018,Manager,37367.34,,2,7,10,3,"Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",0.389818688,2.405568166,3.4,4,Good,501.0122673,26.28004881,,No,63.48696611,31.30949452,High_spent_Large_value_payments,475.5980394,0,-1.2636,0.0221,-0.5283,-0.5302,1.8718 +0x10a65,CUS_0xb6b1,August,46,667-44-5475,Entrepreneur,36647.46,,3,5,9,4,"Auto Loan, Personal Loan, Personal Loan, and Payday Loan",21.57689325,16,10.74,1,Good,1342.328242,33.86183753,16 Years and 6 Months,No,90.14748567,240.4807382,Low_spent_Medium_value_payments,282.9994104,0,0.9953,-1.3226,2.0725,0.2441,-0.5096 +0x10a71,CUS_0xc0e7,August,37,361-44-7164,Accountant,28468.13,,3,1,3,3,"Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",6.416384539,6,3.8,5,Good,875.4717639,33.47637245,20 Years and 11 Months,No,64.5192148,172.9112736,Low_spent_Medium_value_payments,325.8669773,0,0.9051,1.6083,0.2407,1.6731,0.2868 +0x10a7d,CUS_0x72b6,August,38,334-23-3707,Doctor,15195492,,10,8,31.88954781,8,"Mortgage Loan, Mortgage Loan, Not Specified, Mortgage Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Payday Loan",,23,16.28,11,Bad,4192.67,24.19783705,10 Years and 10 Months,Yes,1722.635663,,High_spent_Small_value_payments,168.7490281,0,-1.7891,0.2346,-0.1956,-0.9019,0.1187 +0x10a89,CUS_0x36b6,August,21,423-46-8663,Scientist,17918.66,,6,5,20,2,"Payday Loan, and Mortgage Loan",9.745161402,10,11.32,10,_,1761.39,38.09940291,9 Years and 0 Months,Yes,21.22002266,37.95193146,High_spent_Medium_value_payments,342.7502125,0,0.1283,0.3174,-0.3724,-0.2269,1.2648 +0x10a95,CUS_0x5501,August,33,019-80-1571,Accountant,58382,,6,7,32,5,"Student Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Payday Loan",,17.73658857,10.23,15,Standard,2159.565086,40.32537146,12 Years and 4 Months,Yes,241.320409,,High_spent_Medium_value_payments,401.1362344,0,0.0176,1.2652,-0.2925,2.8167,-1.5871 +0x10aa1,CUS_0x27e0,August,34,626-64-3775,Media_Manager,17945.77,,6,8,24.06745738,9,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Auto Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",,17,22.54,13,Bad,4719.450954,36.09157183,13 Years and 4 Months,Yes,108.4588277,,Low_spent_Large_value_payments,211.4338939,0,-0.8068,0.0764,1.6217,1.8424,-1.0161 +0x10aad,CUS_0xaaea,August,42,062-58-8737,Teacher,21833.79,,5,4,6,4,"Mortgage Loan, Mortgage Loan, Auto Loan, and Payday Loan",,11,5.53,8,_,12.84053581,27.05167547,24 Years and 5 Months,No,71.28000559,94.2199373,High_spent_Small_value_payments,285.6618853,0,0.2615,-0.2889,-0.2886,-0.9874,0.5598 +0x10ab9,CUS_0xaafc,August,52,427-21-8086,Lawyer,19799.73,1915.9775,7,4,11.28836175,2,"Student Loan, and Payday Loan",23.24399029,20,5.89,3,Good,112.2421039,29.35217105,33 Years and 4 Months,NM,18.15333812,,Low_spent_Medium_value_payments,311.2716355,0,-1.6493,1.404,-0.9528,0.6843,-0.7138 +0x10ac5,CUS_0x575e,August,40,368-58-5181,Developer,112985.56,9176.463333,4,470,15,2,"Payday Loan, and Debt Consolidation Loan",19.67747989,15,18.56,7,Standard,1050.97,36.75686749,8 Years and 10 Months,Yes,98.83261072,114.7431292,High_spent_Large_value_payments,944.0705934,0,-0.6281,-0.1744,-0.462,-0.6187,-0.2955 +0x10ad1,CUS_0x1383,August,19,000-58-0568,Developer,80206.64,6766.886667,5,4,20,5,"Student Loan, Payday Loan, Not Specified, Payday Loan, and Payday Loan",18.65074477,16,7,6,Standard,1129.87,32.07508945,8 Years and 8 Months,Yes,260.4189799,522.9770603,Low_spent_Medium_value_payments,173.2926265,0,0.4287,-0.0823,-0.7504,-0.3769,-0.8011 +0x10add,CUS_0xa70c,August,25,528-20-9045,Teacher,31380.64,,2,1450,4,3,"Student Loan, Personal Loan, and Debt Consolidation Loan",0,1,7.18,6,Good,938.6215688,39.04795448,25 Years and 6 Months,No,74.05278677,105.6542232,High_spent_Small_value_payments,330.8155011,0,-2.4001,-0.1005,-1.3294,-0.7842,0.0068 +0x10ae9,CUS_0xa022,August,22,706-02-3826,Entrepreneur,29727.93,2678.3275,6,6,14,1,Not Specified,,13,11.87,8,Standard,1237.42,23.70490268,29 Years and 6 Months,Yes,12.90851112,53.75033961,!@9#%8,451.1738993,0,0.7498,-0.6297,-1.2427,1.2315,-0.3924 +0x10af5,CUS_0x5172,August,36,293-53-8143,Doctor,18496.49,1802.374167,7,8,28.06745738,4,"Not Specified, Student Loan, Not Specified, and Credit-Builder Loan",48.25334927,30.21994561,4.48,12,Bad,1959.793502,32.15111697,19 Years and 9 Months,NM,56019,,Low_spent_Small_value_payments,147.9771325,0,-0.2377,0.4088,-1.2947,-0.6836,1.106 +0x10b01,CUS_0x6b24,August,39,215-10-3907,Lawyer,17594.78,,10,6,29,7,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Not Specified, Auto Loan, and Personal Loan",,27.6272853,5.55,15,Bad,2695.318273,35.98613071,18 Years and 11 Months,Yes,74.00056718,68.96089918,Low_spent_Medium_value_payments,285.1617003,0,0.7241,1.5317,0.0627,0.9799,-0.2761 +0x10b0d,CUS_0x7e51,August,41,272-41-5715,_______,13986.835,,6,3,15,2,"Debt Consolidation Loan, and Debt Consolidation Loan",18.05556111,17,0.21,6,_,482.88,36.06639971,16 Years and 6 Months,No,20.52757539,68.65588323,High_spent_Small_value_payments,311.9734997,0,1.5043,-1.4347,-1.5158,0.4837,1.5422 +0x10b19,CUS_0x26b1,August,42,071-50-1701,Architect,160052.2,13580.68333,4,25,9.288361749,2,"Not Specified, and Student Loan",5.396627924,8,0.51,7,Good,1020.40726,37.63667903,21 Years and 11 Months,No,207.8648075,1382.585761,High_spent_Small_value_payments,576.5303465,0,0.3911,-0.2702,-1.9006,0.6602,-0.9974 +0x10b25,CUS_0x39bd,August,36,799-65-8344,_______,79323.96,,9,8,17,8,"Debt Consolidation Loan, Mortgage Loan, Student Loan, Payday Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",36.81312873,22,23.77,12,Bad,3393.48,31.96132459,14 Years and 4 Months,Yes,423.1495504,,High_spent_Medium_value_payments,253.5610857,0,-0.03,-0.6185,1.4021,0.6101,-0.1538 +0x10b31,CUS_0x28cb,August,35,365-00-4133,Entrepreneur,128423.36,,6,4,11.28836175,4,"Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, and Not Specified",9.813632158,10,17.32,10,Standard,527.06,28.27165489,15 Years and 4 Months,Yes,339.1128757,,High_spent_Medium_value_payments,622.2397524,0,-1.7651,-1.1773,1.6276,-0.5454,0.1082 +0x10b3d,CUS_0x6c9d,August,50,856-49-0070,Engineer,34281.92,,1,7,9,4,"Home Equity Loan, Payday Loan, Not Specified, and Credit-Builder Loan",4.610129273,6,10.35,0,Good,935.85,29.32914858,19 Years and 9 Months,No,76.11284282,10000,High_spent_Medium_value_payments,337.5388032,0,0.1401,-0.1398,-1.3619,-0.3359,-0.4504 +0x10b49,CUS_0xa408,August,28,359-29-7978,_______,41167.6,3596.633333,7,3,7,0,,14.30952861,8.966953771,9.92,2,_,1001.439459,26.5501893,27 Years and 2 Months,No,0,78.72025584,High_spent_Medium_value_payments,530.9430775,0,-0.2019,-0.5321,-0.5517,0.9904,1.9661 +0x10b55,CUS_0x190e,August,21,455-09-3994,Developer,39734.74,,3,6,8,0,,5.886132617,8,1.75,0,_,933.4682282,37.21701645,18 Years and 3 Months,No,0,194.5842005,High_spent_Small_value_payments,434.7634142,0,-1.1659,1.7064,-1.1415,-0.0637,0.6336 +0x10b61,CUS_0x37bf,August,49,242-04-7296,Writer,38750.41,,1,5,6.288361749,100,"Credit-Builder Loan, Payday Loan, Student Loan, and Home Equity Loan",0,1,8.39,1,Good,2.090280113,25.51687001,,No,121.7266406,,Low_spent_Small_value_payments,69.32638628,0,-0.1236,0.1478,-0.3469,-1.752,0.7686 +0x10b6d,CUS_0xc271,August,50,871-72-6391,Developer,35871.34,,4,5,5,1,Student Loan,0,0,9.48,9,Good,525.01,37.87816956,24 Years and 8 Months,No,25.04916042,,High_spent_Medium_value_payments,464.5590613,0,0.2779,-1.1142,0.4341,0.0769,-0.3744 +0x10b79,CUS_0x8d9d,August,33,835-67-2782,Manager,24206.09,,7,3,9,3,"Auto Loan, Student Loan, and Student Loan",,,4.61,1,Good,919.4114474,37.03586951,31 Years and 4 Months,NM,147.521791,72.98615336,High_spent_Medium_value_payments,306.3667558,0,0.254,-0.8697,-1.0641,1.511,-0.1913 +0x10b85,CUS_0x40e8,August,41,#F%$D@*&8,Lawyer,19543.58,1400.631667,8,9,25.95700519,6,"Student Loan, Not Specified, Student Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",34.93045348,23.39296812,9.08,10,Bad,1695.622004,28.83714748,,Yes,1417.711353,108.6654519,Low_spent_Medium_value_payments,172.6359929,0,0.1377,0.2557,-0.5821,-1.4013,0.5102 +0x10b91,CUS_0x18f3,August,40,838-71-4191,Manager,43826.51,3584.209167,2,6,11.28836175,4,"Mortgage Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",0,2,11.9,4,Good,420.4764247,29.26236269,21 Years and 2 Months,No,130.4424952,549.0062826,High_spent_Medium_value_payments,365.0553782,0,-0.1135,-1.162,1.0444,0.6648,-0.465 +0x10b9d,CUS_0x7ad7,August,44,398-13-1916,Journalist,17728.55,,3,6,12,7,"Auto Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Personal Loan",21.95707215,15,15.91,6,Standard,1493.28,23.68063831,7 Years and 10 Months,Yes,63.72201054,108.0599732,Low_spent_Small_value_payments,274.755933,0,0.656,-0.01,-0.9908,-0.443,1.7477 +0x10ba9,CUS_0x5b05,August,21,872-74-2423,Engineer,7622.805,,4,4,9,6,"Student Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",9.785785838,10.23107824,19.67,7,Standard,2740.64249,36.80238466,19 Years and 4 Months,Yes,19.88956429,55.36133022,Low_spent_Small_value_payments,292.3724805,0,0.8413,-0.3732,-0.716,0.1039,-2.0226 +0x10bb5,CUS_0x78f3,August,37,077-35-4768,Accountant,80539.08,6103.54266,6,6,18,6,"Payday Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",,18,4.61,10,Bad,2160.91,29.33008547,7 Years and 11 Months,NM,741.950206,254.1114333,High_spent_Small_value_payments,357.2447008,0,-0.8883,0.361,-1.8455,-0.3474,0.0715 +0x10bc1,CUS_0x3e89,August,25,598-55-8096,Media_Manager,36408.04,,7,3,9,0,,9.874035468,6,9.39,6,Standard,903.14,35.06594619,18 Years and 11 Months,No,0,173.6414744,Low_spent_Small_value_payments,428.658859,0,-1.0874,0.5693,-0.3032,-0.6494,0.8155 +0x10bcd,CUS_0x8c77,August,39,854-57-9544,Writer,86163.52,7133.293333,6,7,6,100,"Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",7.897280549,5,,5,Good,647.3195221,30.31725543,32 Years and 0 Months,No,184.8242354,,Low_spent_Medium_value_payments,148.2843692,0,0.2337,2.5586,-2.1063,0.2156,-1.0884 +0x10bd9,CUS_0x73f9,August,38,607-70-9148,Media_Manager,58873.64,,4,5,5,7,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Payday Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",19.32154715,13,19.73,5,Standard,2452.62,30.83497987,16 Years and 8 Months,Yes,197.3143324,230.1565371,High_spent_Small_value_payments,320.0427972,0,1.6312,-0.7291,-0.1367,1.1714,-0.7368 +0x10be5,CUS_0x9c03,August,22,511-89-6968,_______,81760,6988.333333,8,5,24,3,"Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",26.80770841,,7.71,12,Bad,2943.672042,29.31710388,14 Years and 2 Months,Yes,125.1786319,290.4584942,Low_spent_Small_value_payments,573.1962072,0,-1.7848,0.9949,-1.1951,0.7547,0.5995 +0x10bf1,CUS_0xbd11,August,36,843-26-6643,Doctor,16264.7,1095.391667,7,8,27.06745738,9,"Payday Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Student Loan, Mortgage Loan, Payday Loan, and Not Specified",31.20151643,18.18715873,21.81,9,Bad,4041.569862,31.58476947,5 Years and 0 Months,Yes,81.57426045,,Low_spent_Small_value_payments,229.6605962,0,-0.5425,0.8848,0.8837,0.1137,-0.5195 +0x10bfd,CUS_0x4e35,August,45,358-02-4914,Engineer,41552.77,3482.730833,3,4,2,1,Credit-Builder Loan,,2,6.6,9,Good,28.85,35.62195391,21 Years and 11 Months,NM,27.06386791,104.5891841,Low_spent_Large_value_payments,486.6200313,0,-1.3096,0.3722,-1.0068,-0.4033,0.3831 +0x10c09,CUS_0x9535,August,19,178-60-8209,_______,14187.13,,3,4,23.06745738,3,"Auto Loan, Debt Consolidation Loan, and Auto Loan",32.93594175,21.72256759,18.35,10,Standard,1925.57823,27.7292276,11 Years and 6 Months,NM,64.54102018,73.23746005,Low_spent_Small_value_payments,297.3457694,0,-1.667,-2.2303,0.4196,-0.5947,-0.1451 +0x10c15,CUS_0xc254,August,31,133-79-2442,Developer,33818.63,,4,3,1,4,"Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",16.31038712,,5.81,2,Good,596.5021147,38.29478359,16 Years and 10 Months,No,68.08220369,56.56086669,High_spent_Large_value_payments,375.4154391,0,-0.954,0.0638,0.8978,-0.2679,0.6777 +0x10c21,CUS_0x11ae,August,22,032-97-5902,Architect,14550.52,,8,10,26.95700519,9,"Personal Loan, Not Specified, Home Equity Loan, Home Equity Loan, Personal Loan, Auto Loan, Home Equity Loan, Auto Loan, and Personal Loan",33.74859671,20,23.08,6,_,4668.400954,26.59278662,11 Years and 0 Months,Yes,1419.394474,,Low_spent_Small_value_payments,165.6707794,0,-0.2263,1.0068,0.7451,-0.2307,1.7225 +0x10c2d,CUS_0x87c2,August,53,802-97-1200,Architect,77439.87,6504.3225,3,4,13,2,"Debt Consolidation Loan, and Student Loan",10.94126817,9,3.34,2,Standard,879.87,24.4370897,15 Years and 9 Months,No,71.515841,,Low_spent_Medium_value_payments,364.9804503,0,-1.5806,-0.677,-0.5007,0.5851,0.2294 +0x10c39,CUS_0xab1e,August,28,752-72-2018,Teacher,175191.4,13891.399,2,3,3,1,Mortgage Loan,17.62447755,12,-0.2,7,Good,436.11,39.64583591,20 Years and 6 Months,No,1094.601613,168.382804,High_spent_Large_value_payments,1434.128246,0,0.2295,1.3413,0.9998,-0.3317,0.3059 +0x10c45,CUS_0x4711,August,18,725-84-0667,Architect,32430.82,,10,9,21.88954781,8,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",26.03695716,19,34.85,12,Bad,2532.02,36.87448244,13 Years and 10 Months,Yes,1451.492569,,Low_spent_Large_value_payments,160.1036353,0,-0.8058,0.2382,0.7271,0.5394,0.6516 +0x10c51,CUS_0x45bd,August,32,356-66-2055,Mechanic,80213.4,6919.45,3,3,8,3,"Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",5.88099823,6,8.61,7,Good,792.61,27.8610602,31 Years and 8 Months,No,200.3507017,,Low_spent_Medium_value_payments,418.1159493,0,-0.2121,0.6914,-0.4295,-0.2997,-0.3521 +0x10c5d,CUS_0xc08,August,35,266-42-7784,Scientist,20017.24,1481.103333,8,9,30,8,"Payday Loan, Debt Consolidation Loan, Not Specified, Student Loan, Personal Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,21.53322492,7.81,8,Bad,4718.931841,25.13007844,5 Years and 0 Months,Yes,109.0151652,66.49085722,Low_spent_Small_value_payments,262.6043109,0,-2.9057,0.6423,-1.1039,-0.347,-0.3519 +0x10c69,CUS_0xa3e4,August,38,013-06-9077,Accountant,30348.01,2572.000833,1,6,12,3,"Student Loan, Not Specified, and Mortgage Loan",0.824941477,4,2.87,0,_,564.9923544,24.1390404,19 Years and 9 Months,No,67.81742449,,Low_spent_Small_value_payments,166.2127202,0,-0.207,0.1279,0.4854,0.1961,-0.4582 +0x10c75,CUS_0xa9b1,August,18,043-16-9013,Scientist,61437,5114.75,8,9,18,3,"Payday Loan, Not Specified, and Debt Consolidation Loan",34.58361482,24.42687122,7.01,9,Bad,1560.253386,33.54781186,11 Years and 3 Months,Yes,126.7984327,119.9553111,!@9#%8,514.7212562,0,-0.5144,1.1912,0.7519,-0.1977,1.0693 +0x10c81,CUS_0x9e82,August,35,691-36-8661,Mechanic,19854.12,1425.51,5,4,15.06745738,100,"Mortgage Loan, Student Loan, and Not Specified",21.77329987,,17.25,12,Standard,1437.210954,28.39854534,10 Years and 3 Months,NM,48.20742189,,Low_spent_Medium_value_payments,219.8276406,0,-0.0711,1.6192,1.4085,-0.3645,-1.5189 +0x10c8d,CUS_0x6fc4,August,20,137-76-6084,Manager,87247.62,7005.635,3,1,10.28836175,0,,,7,5.3,0,Good,238.9656172,23.66304322,26 Years and 6 Months,No,0,759.0138984,Low_spent_Large_value_payments,669.0613887,0,-0.7479,-0.514,0.5007,0.8533,1.44 +0x10c99,CUS_0x61c2,August,23,008-17-0608,Lawyer,88752.26,,5,6,3,1,Mortgage Loan,3.439522002,6,5.02,8,Good,1180.26,29.43628938,18 Years and 9 Months,No,72.52444301,291.7123691,Low_spent_Large_value_payments,616.6653546,0,0.6964,-0.1436,0.8572,-0.188,1.309 +0x10ca5,CUS_0xb794,August,50,916-66-2598,Lawyer,20222.09,,4,6,6,3,"Student Loan, Personal Loan, and Not Specified",0,1,9.27,1,Good,1084.12,32.62041383,22 Years and 8 Months,NM,31.81502403,81.86048923,Low_spent_Medium_value_payments,352.7419034,0,-0.4015,1.6026,0.0997,-2.6245,1.4628 +0x10cb1,CUS_0xab18,August,29,272-52-5234,Developer,34378.87,,6,5,6,0,,22.56689372,21,8.7,10,Standard,1020.66,37.46040498,16 Years and 11 Months,Yes,0,228.972029,Low_spent_Medium_value_payments,352.5185543,0,0.3289,0.7948,-1.2109,-0.2161,0.4433 +0x10cbd,CUS_0x2108,August,32,223-81-4626,Musician,40306.66,3532.888333,8,7,26.06745738,9,"Auto Loan, Student Loan, Auto Loan, Auto Loan, Home Equity Loan, Personal Loan, Not Specified, Payday Loan, and Credit-Builder Loan",44.42097749,26.02626282,5.82,13,Bad,2572.135307,31.2970921,5 Years and 11 Months,NM,200.1075781,10000,Low_spent_Medium_value_payments,296.8011592,0,-1.2801,2.1927,-1.251,0.8151,0.5848 +0x10cc9,CUS_0xaa52,August,45,394-74-4000,Mechanic,19013.285,,1,5,2.288361749,0,Credit-Builder Loan,9.067459535,10,5.11,2,Good,175.8587083,33.23522444,18 Years and 8 Months,No,150.6873298,,Low_spent_Medium_value_payments,312.49999,0,-0.3043,1.8659,1.9292,-1.1129,-1.6081 +0x10cd5,CUS_0xa401,August,40,085-04-0051,Writer,156153.24,,1,5,7,1,Debt Consolidation Loan,9.022860846,7,3.08,2,Good,1074.05,23.35591047,29 Years and 5 Months,No,87.50153102,1272.70131,Low_spent_Medium_value_payments,225.6741593,0,0.2087,-0.7951,-0.031,0.5188,0.5569 +0x10ce1,CUS_0x8706,August,34,255-21-5817,_______,88556.7,7158.725,1,3,7.288361749,0,Debt Consolidation Loan,,14,2.17,5,Good,658.1175306,33.56055009,24 Years and 3 Months,No,60.7362588,,Low_spent_Medium_value_payments,485.5829092,0,0.0618,-0.7709,0.2919,-0.656,0.541 +0x10ced,CUS_0x958b,August,41,776-67-3495,Accountant,57700.16,4864.346667,8,11,22,5,"Mortgage Loan, Home Equity Loan, Auto Loan, Not Specified, and Payday Loan",47.58919207,24.22934604,16.2,1179,Bad,1983.397592,24.91924379,19 Years and 0 Months,Yes,221.763278,10000,Low_spent_Small_value_payments,,0,0.9017,-0.1669,0.5763,1.6431,0.6809 +0x10cf9,CUS_0x1355,August,30,858-73-0131,Entrepreneur,9474.16,745.5133333,7,6,31.06745738,2,"Not Specified, and Home Equity Loan",,17.60021133,17.57,9,Bad,2884.333299,36.16558151,9 Years and 11 Months,Yes,15.00342698,,Low_spent_Medium_value_payments,275.3146707,0,-1.1044,-0.7871,1.8244,-0.67,-1.4923 +0x10d05,CUS_0xb18d,August,41,#F%$D@*&8,Musician,109621.56,9335.13,4,5,5.288361749,0,Not Specified,,8,1.06,6,Standard,668.2004768,34.12935171,28 Years and 3 Months,NM,86.74756689,900.2440993,Low_spent_Large_value_payments,706.3972911,0,2.2732,0.4111,-1.4096,-1.1337,0.6337 +0x10d11,CUS_0x9eb2,August,18,930-93-7239,Writer,19647.55,1858.295833,4,7,15,6,"Personal Loan, Debt Consolidation Loan, Personal Loan, Student Loan, Auto Loan, and Not Specified",24.1591394,17,25.07,4,Standard,1207.31,36.60270147,15 Years and 2 Months,NM,82.20111714,10000,High_spent_Small_value_payments,289.4071773,0,-0.4402,-1.1595,-1.3603,-0.2654,-1.4799 +0x10d1d,CUS_0x48e1,August,23,738-31-5725,Media_Manager,37990.27,3247.855833,1,3,10,2,"Not Specified, and Student Loan",1.618843923,3,6.58,2,Good,1394.62,34.91611609,29 Years and 11 Months,No,41.33430324,203.6815799,High_spent_Small_value_payments,339.7697002,0,-0.892,-0.7952,1.1001,-2.8104,1.0487 +0x10d29,CUS_0xc664,August,80,433-68-8862,Developer,17517.69,1373.8075,8,6,29,6,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Auto Loan, and Student Loan",31.44267802,22.7865547,15.53,7,Standard,2849.609691,30.67407717,12 Years and 10 Months,Yes,45.70526666,84.21647702,Low_spent_Medium_value_payments,287.4590063,0,-1.3975,0.5569,-0.2492,-0.0375,-0.6866 +0x10d35,CUS_0xc4f5,August,26,062-13-0532,Musician,117551.96,,8,3,20,4,"Auto Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",,21.65779304,7.59,8,Standard,1082.542828,37.11935712,18 Years and 4 Months,Yes,344.1666003,275.1179231,Low_spent_Large_value_payments,622.7151433,0,-0.6814,-0.9641,-0.1903,-0.5462,0.2506 +0x10d41,CUS_0x27ab,August,30,626-43-7937,Media_Manager,134993.79,11462.4825,1,6,1292,3,"Debt Consolidation Loan, Student Loan, and Personal Loan",9.879173765,10,10.64,5,_,629.16,35.29101682,16 Years and 3 Months,No,280.8381171,1030.304472,Low_spent_Small_value_payments,125.1056614,0,-0.3145,-0.3817,1.6003,0.5552,-0.0477 +0x10d4d,CUS_0x13ee,August,31,497-59-7351,Doctor,11826.655,836.5545833,8,6,7.067457376,3,"Auto Loan, Mortgage Loan, and Student Loan",,,3.97,6,Standard,896.5509543,37.2616297,26 Years and 9 Months,No,25.23020182,95.83668148,Low_spent_Small_value_payments,225.8682871,0,-0.0867,-1.3105,-0.843,1.0762,0.1135 +0x10d59,CUS_0x2037,August,28,346-73-6994,Mechanic,15806.695,,1,1,6,2,"Auto Loan, and Student Loan",10.02909128,10,5.99,5,Good,1073.920967,29.70483776,31 Years and 8 Months,No,18.13762993,,Low_spent_Small_value_payments,238.8643488,0,1.3013,-0.4699,-1.5861,-0.115,-1.2325 +0x10d65,CUS_0xa39c,August,80,555-83-3357,Doctor,15148.68,,10,10,28,5,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",31.59813986,21.74764647,9.39,16,_,4551.647865,35.42314228,13 Years and 5 Months,Yes,49.08309253,,Low_spent_Large_value_payments,230.4903929,0,-0.0341,2.3576,0.4793,-0.2353,-0.2051 +0x10d71,CUS_0x86bc,August,23,796-04-1973,Architect,30821.3,2808.441667,4,3,11,3,"Mortgage Loan, Auto Loan, and Home Equity Loan",18.00328348,17,3.86,0,_,603.03,31.00168644,25 Years and 4 Months,NM,60.78632609,145.1761534,Low_spent_Small_value_payments,364.8816872,0,0.8211,0.4731,2.7479,0.7165,-0.3954 +0x10d7d,CUS_0xc56b,August,25,175-96-1739,Musician,74780.48,6340.706667,7,6,24,4,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,18.2289283,15.72,7,Standard,2224.15154,36.18706694,,NM,226.9975812,414.2559982,Low_spent_Small_value_payments,282.8170873,0,0.3804,-0.2641,-2.8006,0.5317,0.4269 +0x10d89,CUS_0xb209,August,30,547-23-1873,Musician,10300.895,,3,7,17,2,"Debt Consolidation Loan, and Not Specified",11.63827891,12,2.08,5,Standard,833.93,38.18574446,20 Years and 11 Months,No,15.10057115,,Low_spent_Small_value_payments,259.1635709,0,0.2578,-0.5306,0.5317,-0.4795,-1.7615 +0x10d95,CUS_0x5073,August,27,279-29-4520,Manager,27286.53,,6,3,18,0,,,13,1.33,8,Standard,302.21,36.12135997,16 Years and 3 Months,No,0,104.4691001,Low_spent_Small_value_payments,413.5186499,0,-1.3819,-0.2031,-0.0393,-0.1792,-1.8212 +0x10da1,CUS_0x24df,August,35,944-82-4384,_______,101275.8,8537.65,4,7,6,0,,,8,16.71,10,Standard,543.0125679,24.45664718,32 Years and 8 Months,Yes,0,859.0578692,Low_spent_Large_value_payments,344.3688744,0,-0.3367,-0.7768,0.2043,-0.4205,1.0958 +0x10dad,CUS_0x3a55,August,23,951-37-4835,Media_Manager,15786.96,,6,7,27,9,"Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Personal Loan, and Payday Loan",,16,20.24,11,_,3008.98,23.14268925,7 Years and 6 Months,Yes,101.9709023,,!@9#%8,234.2290565,0,-2.9805,-1.0616,0.5892,0.1819,-0.9802 +0x10db9,CUS_0x8a5,August,46,875-61-5832,Media_Manager,36779.9,2854.991667,5,4,10,0,,7.06914333,4,3.34,6,Good,1015.81,30.71464401,26 Years and 6 Months,No,0,137.5971136,Low_spent_Small_value_payments,437.902053,0,0.4479,-0.8429,-1.3975,-1.5406,0.8115 +0x10dc5,CUS_0xdac,August,34,771-98-9835,Scientist,15375.98,1348.331667,2,5,3,0,,13.1622281,12,3.93,5,Good,680.6239395,23.65241759,32 Years and 0 Months,No,0,11065.80921,Low_spent_Large_value_payments,367.8716141,0,-0.0784,-0.0187,3.2691,0.7224,-0.3246 +0x10dd1,CUS_0x2194,August,34,986-52-3729,Scientist,8086.375,,8,8,25.06745738,6,"Personal Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Personal Loan, and Student Loan",43.24448388,25,27.16,9,Bad,4110.010954,24.54128065,8 Years and 3 Months,Yes,24.83994814,,Low_spent_Small_value_payments,257.9574496,0,-0.4101,0.6977,-0.2839,0.2818,-1.5233 +0x10ddd,CUS_0x6972,August,42,926-84-8661,Musician,67321.96,5834.163333,2,3,2,2,"Debt Consolidation Loan, and Mortgage Loan",4.462346276,8,3.37,0,Good,1254.76,42.67994663,28 Years and 6 Months,No,70.7629071,49.18483873,High_spent_Large_value_payments,703.4685875,0,2.2727,1.719,0.3139,0.087,0.8028 +0x10de9,CUS_0x90e6,August,18,880-56-9524,Writer,82329.56,6765.796667,5,3,15,2,"Mortgage Loan, and Debt Consolidation Loan",15.76005801,13,,8,_,61.40856083,27.49139331,6 Years and 2 Months,Yes,92.0660155,,High_spent_Large_value_payments,677.405649,0,-0.6415,-1.036,0.9076,0.3591,0.1671 +0x10df5,CUS_0x87f0,August,43,827-51-8922,Mechanic,44964.22,3898.018333,6,1153,15,3,"Credit-Builder Loan, Student Loan, and Mortgage Loan",,20,13.04,3,_,210.15,36.46915409,33 Years and 5 Months,Yes,75.40796961,,High_spent_Medium_value_payments,431.3123561,0,-1.3637,0.4247,0.2524,0.5326,0.7884 +0x10e01,CUS_0x583b,August,28,236-13-4647,Manager,32853.95,,2,3,2,100,Auto Loan,7.857302898,8,10.73,3,_,918.3194232,22.65397298,31 Years and 0 Months,No,361.3783132,,Low_spent_Small_value_payments,177.8675501,0,-0.9742,-0.5719,1.952,0.575,-1.1478 +0x10e0d,CUS_0x135c,August,41,594-39-3524,_______,134947.24,11293.60333,933,6,16,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",19.33799242,18,8.34,6,Standard,1085.51,35.1303233,19 Years and 2 Months,Yes,321.2256555,362.6725148,High_spent_Medium_value_payments,695.4621631,0,-0.3639,-0.7457,-0.4476,-0.0214,-0.6628 +0x10e19,CUS_0x8c2d,August,26,333-11-9700,Media_Manager,35165.46,,5,6,18,0,,17.97813576,,8.21,3,Standard,953.2228996,26.73125284,20 Years and 4 Months,No,0,168.5499633,High_spent_Small_value_payments,380.3095941,0,1.2923,0.8586,-0.7211,1.3825,0.3614 +0x10e25,CUS_0x911e,August,38,430-60-9262,Architect,30321.95,,1,2,6,4,"Payday Loan, Student Loan, Mortgage Loan, and Student Loan",11.66833335,10,5.02,6,Good,305.09,29.97230516,17 Years and 6 Months,No,70.46849009,,Low_spent_Medium_value_payments,299.1044004,0,0.5845,0.1646,-0.0439,0.8402,-0.2423 +0x10e31,CUS_0x4098,August,18,422-50-2476,Doctor,18153.18,,10,8,34,5,"Personal Loan, Student Loan, Personal Loan, Payday Loan, and Home Equity Loan",,15,18.15,14,Bad,3830.47,34.16858862,9 Years and 0 Months,NM,66.61860403,92.11154292,Low_spent_Small_value_payments,304.8463531,0,0.3357,0.2544,-0.8553,0.6328,0.9104 +0x10e3d,CUS_0x8449,August,47,571-35-3463,Teacher,112938.08,9562.506667,2,7,9,1,Not Specified,4.199738235,7,9.48,0,Good,1398.69,32.81447351,27 Years and 2 Months,NM,91.36662006,164.9544896,High_spent_Large_value_payments,939.929557,0,0.1266,-0.6897,-0.2143,1.2813,-1.7583 +0x10e49,CUS_0x7051,August,31,940-15-4402,Doctor,120922.26,,2,2,3.288361749,2,"Not Specified, and Payday Loan",,2,3.37,6,_,1059.788826,40.02531607,21 Years and 6 Months,No,126.7274276,,High_spent_Large_value_payments,890.3445382,0,0.265,0.9058,-0.6654,0.2746,-0.2175 +0x10e55,CUS_0x3d53,August,29,341-94-4616,Developer,75524.26,6118.688333,2,5,10,4,"Home Equity Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",13.65116907,10,7.14,0,_,852.62,34.94749563,,No,167.2879146,481.011067,Low_spent_Medium_value_payments,243.5698517,0,0.3596,-1.3701,0.1175,-0.2424,-0.6928 +0x10e61,CUS_0x1979,August,31,661-25-5123,Doctor,87843.69,,1,4,1.288361749,2,"Personal Loan, Mortgage Loan, and Payday Loan",0,3,0.64,3,Good,879.2827835,25.11144435,15 Years and 11 Months,No,66581,955.0634272,Low_spent_Small_value_payments,408.6296946,0,-0.1784,0.8371,0.4701,1.7497,-0.3954 +0x10e6d,CUS_0xa262,August,22,579-46-3006,Lawyer,67639.38,5679.615,3,2,7,2,"Debt Consolidation Loan, and Home Equity Loan",8.946581606,10,10.23,0,Good,423.26,36.06750527,,No,96.24654424,10000,Low_spent_Large_value_payments,415.2877388,0,-0.612,-0.0463,1.3486,-1.654,0.6961 +0x10e79,CUS_0xb17b,August,55,722-93-1767,Teacher,91965.63,7151.015425,0,6,8.288361749,0,Student Loan,,4,3.12,4,_,820.86,42.89304538,19 Years and 8 Months,No,423.8739664,570.687436,High_spent_Large_value_payments,779.5433833,0,0.7259,0.8439,0.6993,0.9656,-2.3424 +0x10e85,CUS_0xbaee,August,41,015-50-7138,Journalist,66349.96,5333.163333,6,9,16,4,"Payday Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,14,8.58,17,_,1740.14,37.17792708,12 Years and 4 Months,Yes,165.0255187,283.4990671,High_spent_Small_value_payments,344.7917475,0,0.1165,-0.7583,-0.0678,-0.1213,0.4513 +0x10e91,CUS_0x8bf5,August,37,487-63-4849,Musician,21762134,3891.161667,203,5,4,3,"Debt Consolidation Loan, Auto Loan, and Student Loan",,18,5.63,,Standard,316.87,25.24278077,17 Years and 11 Months,No,93.83436677,75.71793301,High_spent_Medium_value_payments,469.5638669,0,-1.7765,-0.0376,1.8307,-0.046,1.0836 +0x10e9d,CUS_0x97d7,August,51,071-40-6343,_______,29043.12,,5,3,12,100,,13.21150184,8,19.47,3,Standard,489.94,25.12342478,25 Years and 2 Months,Yes,0,35.02097814,High_spent_Medium_value_payments,429.9050219,0,-0.1625,0.0072,-1.3857,0.5064,2.0326 +0x10ea9,CUS_0x2f1d,August,25,730-26-3997,Writer,15139.13,1459.594167,7,7,18.06745738,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Personal Loan, and Credit-Builder Loan",23.80168972,,15.02,11,Bad,3391.780954,38.56763914,,Yes,79.27214727,,Low_spent_Large_value_payments,177.2029534,0,0.8965,-0.595,1.1224,-0.986,1.4122 +0x10eb5,CUS_0x86da,August,35,#F%$D@*&8,Manager,19294.46,,10,5,23.06745738,8,"Personal Loan, Not Specified, Home Equity Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",41.03132402,21.37945876,2.06,9,_,2645.758341,28.19018881,19 Years and 5 Months,Yes,86.26888579,106.9134743,Low_spent_Small_value_payments,209.3845186,0,0.2575,0.3506,1.2564,0.4073,0.748 +0x10ec1,CUS_0xc04f,August,31,037-08-1260,Manager,54734,4607.166667,5,3,8,4,"Not Specified, Mortgage Loan, Personal Loan, and Auto Loan",25.93549076,17.15106971,2.18,,Standard,1375.694241,27.80408311,18 Years and 8 Months,Yes,155.367042,167.33384,Low_spent_Small_value_payments,428.0157847,0,-0.7457,-0.8927,-0.249,0.5394,0.8928 +0x10ecd,CUS_0x5157,August,36,561-50-6583,Writer,19012.94,1805.411667,8,6,31,2,"Debt Consolidation Loan, and Auto Loan",21.6254755,17,15.81,8,Standard,2670.43,35.08334484,8 Years and 5 Months,Yes,25.16027051,126.3149466,Low_spent_Large_value_payments,299.0659496,0,-1.5048,-1.4687,-1.4557,0.7112,-0.2337 +0x10ed9,CUS_0x6743,August,40,#F%$D@*&8,_______,37840.64,,6,5,5,2,"Debt Consolidation Loan, and Mortgage Loan",27.00788727,19.2205148,19.54,7,Standard,2991.096216,32.30958218,15 Years and 5 Months,Yes,60.6803605,239.3270774,!@9#%8,261.3312288,0,1.2016,-0.164,-0.2071,0.3027,-0.081 +0x10ee5,CUS_0xaf67,August,61,210-84-4357,Developer,91432.44,7840.37,4,2,8.288361749,2,"Not Specified, Not Specified, and Debt Consolidation Loan",,10,5.06,4,Good,1127.948502,38.79241423,30 Years and 8 Months,No,183.2068408,760.3152787,High_spent_Medium_value_payments,560.7123081,0,-0.5648,0.4084,1.7789,1.2388,0.5941 +0x10ef1,CUS_0x8fec,August,19,026-74-9990,Architect,45559.59,,10,7,25.06745738,5,"Mortgage Loan, Payday Loan, Student Loan, Payday Loan, and Personal Loan",31.2792425,15,13.28,7,Standard,2886.840954,39.17891932,16 Years and 4 Months,Yes,138.81007,242.8237296,High_spent_Small_value_payments,237.7091625,0,1.0488,-0.0564,0.721,0.1152,-0.5665 +0x10efd,CUS_0xa4ab,August,40,047-81-1032,Scientist,22115.435,,2,1,8,4,"Home Equity Loan, Student Loan, Payday Loan, and Credit-Builder Loan",0.080967003,4,11.5,2,Good,300.3454401,27.53772955,33 Years and 2 Months,No,60.84692726,85.63714773,!@9#%8,327.1584425,0,1.9145,-0.0391,0.5215,-0.0473,1.6806 +0x10f09,CUS_0x3a71,August,80,662-21-2846,Accountant,8865.63,670.8025,8,972,16,3,"Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",11.37593599,11.40157817,10.22,7,Standard,8.629456306,35.52151731,11 Years and 6 Months,NM,13.33840834,56.86163989,!@9#%8,276.8802018,0,-0.1587,0.0684,0.957,0.5122,0.7671 +0x10f15,CUS_0xb8d5,August,48,276-46-7680,Architect,42843.65,3403.304167,0,7,4,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,5,1.61,7,Good,1101.71,34.62859821,20 Years and 5 Months,No,83.59187417,173.7501598,Low_spent_Large_value_payments,352.9883827,0,0.9693,-0.4869,-0.4069,-0.0786,1.7898 +0x10f21,CUS_0x7334,August,37,196-83-8490,Lawyer,115661.32,9349.443333,8,3,13,2,"Not Specified, and Home Equity Loan",23.14114819,18,0.72,2,_,59.91,39.90870785,32 Years and 4 Months,No,115.0422592,103.6909977,High_spent_Medium_value_payments,966.2110765,0,-0.4518,-0.6809,-1.7291,0.8789,-0.5595 +0x10f2d,CUS_0x406c,August,33,744-01-6955,Scientist,14560.43,,6,6,20,6,"Student Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",15.64785539,14.89232967,16.05,8,Standard,2706.43741,23.91743199,13 Years and 10 Months,Yes,47.6316408,75.30669686,High_spent_Small_value_payments,262.098579,0,1.0119,1.0667,0.3295,1.3017,-1.7431 +0x10f39,CUS_0x7ea8,August,32,915-19-9718,Developer,18237.78,,10,7,20.06745738,7,"Student Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Student Loan, Personal Loan, and Personal Loan",51.45839837,27.96219165,3.4,11,_,1777.139409,29.91998518,16 Years and 9 Months,Yes,87.99910743,102.3057235,Low_spent_Large_value_payments,200.5563811,0,0.2671,1.1018,0.5207,-0.1927,-0.5114 +0x10f45,CUS_0x1190,August,48,#F%$D@*&8,Media_Manager,44134.06,,4,4,9,3,"Personal Loan, Auto Loan, and Student Loan",,19,0.9,5,Good,717.2417956,33.94352557,,NM,551.2715539,109.5826239,Low_spent_Large_value_payments,467.1587557,0,0.5287,-0.6785,0.0604,-0.9262,1.5538 +0x10f51,CUS_0xb16c,August,23,427-56-9280,Architect,38261.7,3088.475,6,4,12,4,"Auto Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",21.08924568,14,4.59,0,Standard,1194.12,34.69955216,26 Years and 4 Months,No,84.70736007,145.2722908,High_spent_Small_value_payments,338.8678491,0,1.1356,-0.0932,-2.0927,-0.9951,1.6564 +0x10f5d,CUS_0x41b3,August,20,305-82-4727,Manager,127285.41,10507.1175,4,3,5.288361749,0,Debt Consolidation Loan,2.124091117,5,7.97,4,Good,1141.72,30.33318291,28 Years and 5 Months,No,66.37784009,,High_spent_Small_value_payments,750.7501429,0,-1.0112,1.9157,1.2714,-0.5733,-0.1844 +0x10f69,CUS_0xb949,August,53,275-16-8434,Journalist,93163.52,7828.626667,5,5,9,3,"Payday Loan, Auto Loan, and Personal Loan",12.39070226,11,9.51,5,Standard,13.57,43.28644694,26 Years and 5 Months,NM,149.0727654,111.894109,High_spent_Medium_value_payments,771.8957923,0,-0.9684,0.1056,0.478,0.3243,3.0059 +0x10f75,CUS_0xe6c,August,26,172-24-1577,Entrepreneur,125597.52,9367.500187,1,3,11.28836175,4,"Debt Consolidation Loan, Not Specified, Student Loan, and Debt Consolidation Loan",,9,9.89,4,Good,1168.060776,29.40328371,30 Years and 5 Months,NM,1278.186251,1513.141379,Low_spent_Medium_value_payments,,0,-0.5262,-0.0083,-1.2056,0.247,-0.6169 +0x10f81,CUS_0x9f06,August,53,934-81-9974,Scientist,94187.25,7696.9375,4,5,3.288361749,0,Credit-Builder Loan,10.03297626,12,6.99,5,_,1005.254711,41.70951588,20 Years and 8 Months,No,41.72758325,934.93611,Low_spent_Medium_value_payments,541.6240207,0,0.1559,-1.8252,-0.8823,0.148,-0.4802 +0x10f8d,CUS_0x3d68,August,19,#F%$D@*&8,Musician,7650.145,910.5120833,10,664,30.95700519,6,"Not Specified, Personal Loan, Not Specified, Not Specified, Payday Loan, and Credit-Builder Loan",,26.19578055,3.7,9,Bad,1695.933025,34.59167649,12 Years and 6 Months,Yes,1351.597608,,Low_spent_Small_value_payments,209.5160198,0,0.6069,0.8792,0.4829,-0.4179,-0.2388 +0x10f99,CUS_0x8398,August,23,590-91-7790,Scientist,15937.74,1144.145,9,9,34.06745738,3,"Not Specified, Auto Loan, and Credit-Builder Loan",31.95396228,22,19.26,12,Bad,2655.500954,37.08707013,12 Years and 11 Months,Yes,38.41751661,61.0387962,High_spent_Small_value_payments,248.2378992,0,0.1876,-1.7769,0.8461,1.1826,-0.8638 +0x10fa5,CUS_0xc131,August,44,910-05-8770,Writer,7893.875,900.8229167,8,8,18.06745738,5,"Student Loan, Payday Loan, Not Specified, Credit-Builder Loan, and Payday Loan",44.14525678,22.09503632,18.22,6,Standard,2310.30869,30.47000045,12 Years and 5 Months,Yes,24.00024644,27.09649587,High_spent_Small_value_payments,272.2652614,0,-0.5429,-1.52,0.9912,-0.7567,-0.349 +0x10fb1,CUS_0x5b4e,August,27,589-66-2211,Musician,35880.37,3057.030833,4,1,7.288361749,2,"Debt Consolidation Loan, and Home Equity Loan",,0,7.12,,Good,101.9781899,38.25036141,21 Years and 5 Months,No,55.68093578,,!@9#%8,402.7219495,0,0.9706,-0.7191,1.0724,-0.9564,2.7458 +0x10fbd,CUS_0x443a,August,27,#F%$D@*&8,Teacher,7598.185,,5,4,10,3,"Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",11.01131993,8,15.18,9,Standard,1237.88,28.39911562,18 Years and 9 Months,Yes,71630,31.75106505,Low_spent_Small_value_payments,320.2617635,0,-1.3732,0.3119,0.9059,-3.3391,0.3489 +0x10fc9,CUS_0x13b0,August,33,724-94-0404,Entrepreneur,73417.48,6001.123333,7,4,20,4,"Auto Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",30.15031956,19,14.53,5,Standard,2402.05,29.14792309,11 Years and 11 Months,Yes,163.7130565,101.0783065,High_spent_Large_value_payments,575.3209704,0,-0.6013,1.7457,0.2097,-0.6672,0.7179 +0x10fd5,CUS_0x3097,August,33,228-53-9703,Architect,174098.52,14496.21,5,3,3,4,"Payday Loan, Student Loan, Auto Loan, and Not Specified",,1,1.48,3,Good,24.41529009,39.15906318,20 Years and 3 Months,No,535.592385,530.8036742,High_spent_Medium_value_payments,687.8956784,0,0.5528,-1.41,-0.5797,-2.2969,-1.1475 +0x10fe1,CUS_0x861c,August,29,654-98-3234,Doctor,58539.84,,6,7,32,8,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Student Loan, Mortgage Loan, Payday Loan, Payday Loan, and Not Specified",,21,19.56,10,Bad,2735.13,39.49402297,6 Years and 2 Months,Yes,79792,176.9470064,Low_spent_Small_value_payments,355.9226658,0,-0.158,0.9329,0.6658,-0.1149,-0.2968 +0x10fed,CUS_0x5a48,August,49,549-86-5251,Scientist,51410.98,,4,7,16,0,,16.37401593,15.84364576,1.49,6,Standard,804.8132128,27.5720589,27 Years and 2 Months,No,0,178.0219733,Low_spent_Medium_value_payments,503.2028601,0,-0.0057,0.5711,-0.5637,-1.5919,0.2492 +0x10ff9,CUS_0x6eec,August,48,184-10-9959,_______,34960.25,,6,7,4578,0,,13.45800042,13,8.04,1,Standard,1266.886694,31.40630938,23 Years and 11 Months,No,0,252.8961754,Low_spent_Small_value_payments,368.4062048,0,0.0528,0.639,0.8863,-0.5606,-1.1372 +0x11005,CUS_0x24f1,August,28,526-11-1825,Developer,17685.79,1186.815833,6,9,22,3,"Not Specified, Student Loan, and Personal Loan",20.9575447,15,12.98,7,Standard,2382.63,32.74355112,13 Years and 5 Months,Yes,40.26046357,144.7554489,Low_spent_Small_value_payments,223.6656709,0,0.4214,-1.4693,0.1701,-0.3646,-0.0479 +0x11011,CUS_0x2647,August,37,667-52-0666,Scientist,18618.23,,5,5,16,4,"Credit-Builder Loan, Mortgage Loan, Auto Loan, and Payday Loan",,10.26506227,8.88,7,Standard,2851.650208,27.6942174,18 Years and 3 Months,Yes,55.72718523,87.09017284,Low_spent_Large_value_payments,292.6345586,0,-0.8147,0.7562,-1.079,-0.8163,-1.1215 +0x1101d,CUS_0x9614,August,28,892-09-1255,_______,8044.13,,7,7,29,5,"Not Specified, Not Specified, Mortgage Loan, Home Equity Loan, and Not Specified",45.85171048,25.26425915,5.86,,Bad,2817.091426,39.79163657,19 Years and 6 Months,Yes,32.80291462,,Low_spent_Large_value_payments,251.9724749,0,0.606,0.4527,0.3642,-0.0426,0.9494 +0x11029,CUS_0xde4,August,30,733-85-7446,Architect,75402.52,,2,4,2.288361749,2,"Not Specified, Auto Loan, and Mortgage Loan",0.76584185,5,4.46,2,Good,656.1154417,26.85401727,,No,177.2089052,500.919091,!@9#%8,615.2286342,0,0.2119,-0.1411,-1.4242,0.5753,1.2868 +0x11035,CUS_0x1663,August,39,773-73-1932,Lawyer,14184.935,1038.077917,5,5,6,3,"Debt Consolidation Loan, Personal Loan, and Payday Loan",3.780484973,5,6.66,4,Good,752.1148364,35.13548146,21 Years and 5 Months,No,26.37107576,36.42948793,High_spent_Medium_value_payments,295.2341436,0,1.204,-1.0904,-1.4861,-0.6024,0.6652 +0x11041,CUS_0x2d6f,August,49,011-31-9656,Teacher,81815.31,7036.9425,4,6,3,1,Mortgage Loan,19.92521525,14,5.34,0,Standard,437.82,27.09960694,,No,39.67611651,138.8739325,High_spent_Large_value_payments,765.144201,0,-0.9891,1.9777,0.0935,0.6685,-0.0922 +0x1104d,CUS_0xb250,August,24,924-55-4713,Musician,19803.82,,7,7,26.06745738,5,"Payday Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Auto Loan",37.37244025,22.63001159,4.06,12,_,2380.837928,36.19180834,12 Years and 8 Months,Yes,73.58321011,125.039559,Low_spent_Small_value_payments,217.2887763,0,-0.0279,-1.2179,-0.2432,-1.0553,-1.1599 +0x11059,CUS_0xafa3,August,26,484-09-6362,Engineer,28347.68,2091.306667,0,2,8,0,,3.622503329,5,5.05,2,Good,643.8999938,33.05492769,27 Years and 4 Months,No,0,210.9806602,Low_spent_Small_value_payments,310.3038068,0,-0.5211,-2.5467,-1.2142,0.7999,0.2082 +0x11065,CUS_0x63ac,August,22,959-51-8089,Teacher,28699.48,2434.623333,4,7,19,2,"Home Equity Loan, and Home Equity Loan",21.17423622,20,17.86,8,Standard,813.45,24.00614899,8 Years and 0 Months,Yes,37.19278656,42.45473245,High_spent_Small_value_payments,423.8148143,0,0.7067,0.0836,0.8594,-0.697,0.0809 +0x11071,CUS_0x405,August,31,913-61-3427,Writer,20942.88,1671.24,10,10,32.88954781,6,"Payday Loan, Mortgage Loan, Student Loan, Not Specified, Payday Loan, and Home Equity Loan",33.07184287,25,28.82,12,Bad,4247.08,22.01054386,2 Years and 6 Months,NM,1387.637756,52.6449805,High_spent_Small_value_payments,292.5111823,0,1.0426,-0.5894,-0.7004,-1.0146,0.2341 +0x1107d,CUS_0x87fa,August,32,500-80-2670,Doctor,115362.96,,1,3,2,4,"Personal Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",12.43676062,9.615530363,4.76,4,Good,55.05153941,41.41102101,19 Years and 11 Months,No,248.1565802,191.5996255,!@9#%8,786.7017944,0,-1.1644,-1.5327,1.0002,-0.7344,0.2869 +0x11089,CUS_0xaa5a,August,21,622-18-5455,Doctor,19355.62,,6,7,9,2,"Mortgage Loan, and Home Equity Loan",23.80173209,19,11.38,4,_,1294.09,30.15459981,5 Years and 11 Months,Yes,25.54526965,108.1425818,Low_spent_Small_value_payments,329.2089818,0,-1.1285,1.0311,1.923,0.1135,0.7751 +0x11095,CUS_0xaba4,August,49,526-99-9750,Engineer,19462.925,1496.152099,1,1,8,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",,13,5.51,7,Good,141.7400638,26.49418773,32 Years and 4 Months,No,160.8225489,,Low_spent_Small_value_payments,337.0902563,0,0.2892,-0.454,-0.2575,-1.3813,-0.0477 +0x110a1,CUS_0x4750,August,28,028-65-6849,Accountant,9434.835,,7,10,35.06745738,5,"Personal Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, and Personal Loan",,30.3069844,7.28,15,Bad,2039.408136,27.55157071,13 Years and 6 Months,Yes,33.3295989,,Low_spent_Medium_value_payments,229.434271,0,0.0941,0.6884,-1.0132,-0.9255,0.9016 +0x110ad,CUS_0x7801,August,23,492-06-3147,Engineer,151515.68,,1,6,11,3,"Home Equity Loan, Auto Loan, and Student Loan",,11,2.68,4,_,1078.49,31.27701938,18 Years and 5 Months,No,1322.519529,857.1133438,Low_spent_Medium_value_payments,348.9923515,0,1.3941,-1.437,0.2946,0.8825,-0.9031 +0x110b9,CUS_0xb565,August,37,987-88-0910,_______,33905.67,,8,6,16,4,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",,10,15.03,,Standard,1425.2,36.03967106,17 Years and 3 Months,Yes,67.14186027,45.8439369,!@9#%8,381.1614528,0,-0.6068,0.2973,0.8448,1.4505,0.0939 +0x110c5,CUS_0x5afd,August,80,163-05-8880,Musician,128275.84,,8,6,16.28836175,0,,18.05647963,16,2.87,3,Standard,1171.85,28.17556607,16 Years and 9 Months,No,0,630.2063206,High_spent_Medium_value_payments,1078.796474,0,-0.6572,0.6126,1.3786,0.5756,0.5433 +0x110d1,CUS_0xa28,August,25,808-48-5118,Developer,19043.09,,8,4,20,3,"Student Loan, Personal Loan, and Credit-Builder Loan",40.46760359,25.0971254,5.49,13,_,2220.197764,27.47645712,5 Years and 10 Months,Yes,45.04345454,64.61901958,!@9#%8,320.3299425,0,-0.8573,-1.73,0.3367,0.0095,-0.641 +0x110dd,CUS_0xb461,August,42,981-15-5977,Teacher,63248.98,5456.748333,5,4,3.288361749,2,"Debt Consolidation Loan, Personal Loan, and Auto Loan",13.16318387,11.84208743,1.48,8,Good,481.1152691,27.81677696,24 Years and 9 Months,NM,119.4755026,576.6183987,High_spent_Medium_value_payments,519.5183931,0,-1.3319,-0.005,-1.2452,-1.1467,-0.5794 +0x110e9,CUS_0x5afa,August,35,447-42-6480,Accountant,20576.69,,10,5,27,7,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Student Loan",,27.91511719,2.24,10,Bad,3459.44159,35.92754464,9 Years and 8 Months,Yes,68.07893419,180.7552106,Low_spent_Small_value_payments,240.4382719,0,0.1478,0.5971,1.6615,-0.2804,0.2776 +0x110f5,CUS_0xae36,August,35,756-20-3064,Manager,31433.97,,3,3,16,0,,,16,6.99,3,Standard,188.89,35.83703816,33 Years and 2 Months,No,0,206.2355141,Low_spent_Small_value_payments,363.6142359,0,0.5234,-0.6665,-0.2904,2.08,-0.0938 +0x11101,CUS_0x3385,August,26,#F%$D@*&8,Mechanic,11308032,2836.380833,5,4,15,1,Not Specified,23.46577299,19,14.46,,_,982.98,38.31601298,21 Years and 2 Months,Yes,24.55212742,57.39333233,High_spent_Medium_value_payments,451.6926236,0,1.0133,0.3833,-0.738,0.2209,0.8293 +0x1110d,CUS_0x140e,August,41,622-11-3102,Engineer,90894.08,7744.506667,5,5,0.288361749,4,"Personal Loan, Student Loan, Student Loan, and Payday Loan",,15.09886608,10.12,5,Good,54.02725747,36.59735711,,No,259.7470406,657.8027774,High_spent_Medium_value_payments,526.8383096,0,-0.4197,0.0298,-0.6741,-0.1748,0.0287 +0x11119,CUS_0x2acc,August,48,091-30-2808,Manager,108171.63,9095.3025,3,4,7,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",16.68129802,13.30702978,5.24,4,Good,516.5383227,28.54100619,29 Years and 10 Months,No,145.8706334,691.5581939,Low_spent_Large_value_payments,342.1014227,0,-1.0921,0.6166,-0.3858,-0.1187,1.3736 +0x11125,CUS_0x4f7c,August,19,695-95-0589,Engineer,164861.36,13461.44667,4,3,10.28836175,0,,0,2,6.83,1,Good,455.55,35.35705856,18 Years and 11 Months,No,0,929.0282535,Low_spent_Small_value_payments,1127.053874,0,2.4233,-0.4763,0.0796,0.0275,-0.7153 +0x11131,CUS_0x3943,August,30,845-14-7462,Lawyer,18859.38,,6,4,5,4,"Auto Loan, Payday Loan, Auto Loan, and Payday Loan",20.12327611,15,9.41,6,Standard,330.26,35.71868611,13 Years and 9 Months,Yes,40.29201027,,Low_spent_Small_value_payments,224.4856574,0,-0.0681,-0.5165,-0.1648,1.7078,-0.1134 +0x1113d,CUS_0x4f62,August,47,082-15-0381,Journalist,84045.99,6800.8325,0,3,5,0,,6.310370705,8,3.07,7,_,1124.24,29.20385557,20 Years and 5 Months,No,0,319.0072546,Low_spent_Large_value_payments,631.0759954,0,-0.0284,-2.4486,-2.0394,-0.0458,0.668 +0x11149,CUS_0x8a78,August,25,579-14-0774,Accountant,63010.84,5550.903333,1,5,6,1,Payday Loan,15.21286718,12,8.19,1,Good,180.51,39.66339027,25 Years and 11 Months,No,34.69273627,102.2876284,High_spent_Large_value_payments,658.1099687,0,-0.2563,-0.4168,0.1259,-0.5081,-0.1717 +0x11155,CUS_0x6a4b,August,25,886-47-6166,Mechanic,22115.475,1830.95625,4,6,1,2,"Home Equity Loan, and Student Loan",,13,11.25,5,Good,510.55,32.40940007,22 Years and 8 Months,No,29.4299489,44.09378973,Low_spent_Large_value_payments,379.5718864,0,1.593,0.4318,-0.2523,0.1798,-0.7412 +0x11161,CUS_0x1799,August,47,069-90-4166,Mechanic,17098.88,1555.906667,7,4,9,4,"Debt Consolidation Loan, Payday Loan, Personal Loan, and Payday Loan",,20,7.14,5,Standard,1408.73,38.87421077,26 Years and 4 Months,Yes,51.67002068,122.3672289,Low_spent_Small_value_payments,271.5534171,0,-2.3033,1.4222,-2.3412,-0.151,-1.0381 +0x1116d,CUS_0x8f3,August,41,280-61-0137,Scientist,17493.02,,6,7,19.06745738,9,"Auto Loan, Mortgage Loan, Personal Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Payday Loan",30.24098794,17,6.8,13,Bad,2766.170954,40.3740184,,Yes,101.6215472,100.7213269,Low_spent_Medium_value_payments,209.7120046,0,-0.2256,0.5055,0.9917,-0.1959,-0.1136 +0x11179,CUS_0x2ca3,August,18,033-64-6829,Scientist,17075.64,,4,9,23.88954781,6,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Personal Loan, Auto Loan, and Student Loan",11.82825888,9.305541837,11.07,14,Standard,2934.773015,35.2367339,,NM,1515.623622,151.008172,!@9#%8,189.3801192,0,2.0736,0.7932,0.0718,-1.0506,0.5451 +0x11185,CUS_0x8d96,August,33,671-41-2038,Engineer,156429.52,,5,3,2.288361749,2,"Auto Loan, and Debt Consolidation Loan",4.130131151,5.641709482,11.73,6,Good,1295.118599,30.90461549,20 Years and 0 Months,No,179.1760689,732.6811564,High_spent_Large_value_payments,1043.659569,0,-0.1888,-0.2533,-0.3762,-0.6685,2.0169 +0x11191,CUS_0xbd5,August,53,893-14-9648,Media_Manager,105870.6,8763.55,7,3,5,4,"Student Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",,13,,7,Standard,1174.48,31.94683531,24 Years and 3 Months,Yes,205.6522687,620.3748364,Low_spent_Small_value_payments,340.3278949,0,-1.5272,-0.8564,-0.9194,-0.3781,0.7823 +0x1119d,CUS_0x23b0,August,39,040-53-8435,Scientist,73905.76,,2,4,10,0,,5.461325911,6,7.01,4,Good,1344.31,28.83388802,27 Years and 2 Months,No,0,132.3825212,High_spent_Large_value_payments,731.7988121,0,1.0608,0.9748,-0.5095,1.7313,0.6065 +0x111a9,CUS_0x435f,August,50,229-91-0496,Teacher,127430.52,,4,5,2,0,,,1,9.24,2,Good,913.955886,36.81765994,25 Years and 3 Months,No,0,84.92570644,High_spent_Large_value_payments,1251.974666,0,-1.1473,-0.8683,0.2163,0.4138,0.7066 +0x111b5,CUS_0xb88c,August,53,309-02-3479,Accountant,159058.44,12240.56231,5,2,1,1,Credit-Builder Loan,12.98967201,11,4.83,5,_,892.56,37.05515143,28 Years and 9 Months,NM,1247.05325,109.1128705,High_spent_Large_value_payments,1356.728572,0,-0.5403,-0.2316,1.3238,-0.0048,0.3419 +0x111c1,CUS_0xa082,August,34,737-67-1879,Manager,36068.94,,8,5,13,4,"Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",26.61655004,17,24.99,10,Standard,2208.99,36.47651695,19 Years and 3 Months,Yes,89.06747692,,High_spent_Medium_value_payments,349.4658748,0,-0.9146,-0.41,1.15,-0.4856,-0.6631 +0x111cd,CUS_0x5b42,August,20,513-25-2787,Manager,59110.83,4408.843427,6,8,29.95700519,8,"Credit-Builder Loan, Personal Loan, Auto Loan, Payday Loan, Personal Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",,21,22.23,1113,Bad,4329.270954,35.29560302,3 Years and 9 Months,Yes,1929.015108,141.7479377,High_spent_Medium_value_payments,329.235908,0,-1.084,1.3175,1.2896,0.4145,-0.8113 +0x111d9,CUS_0x90d7,August,22,737-92-9457,Mechanic,76941.6,6540.8,6,4,16.28836175,6,"Mortgage Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Personal Loan, and Auto Loan",19.18927956,17,14.13,8,_,23,38.45999053,20 Years and 0 Months,Yes,203.9809002,477.2876009,!@9#%8,632.7489599,0,-1.7282,0.7318,0.0896,0.9302,-0.66 +0x111e5,CUS_0x3f3e,August,33,030-62-1209,Engineer,39791.2,,6,9,29,100,"Personal Loan, and Not Specified",,27.41467931,15.55,7,Bad,1472.144961,23.23358066,,NM,58.03885575,231.2086768,Low_spent_Small_value_payments,349.9458008,0,-2.3704,-1.776,1.4755,-0.4741,-0.2518 +0x111f1,CUS_0x8f7f,August,25,184-07-3420,Architect,14475.63,1092.3025,7,7,10,2,"Student Loan, and Credit-Builder Loan",16.15139786,12.0489245,19.97,10,_,1859.625257,33.83367467,6 Years and 9 Months,NM,15.77701815,35.81739775,High_spent_Small_value_payments,317.6358341,0,0.1089,-2.5784,-1.2806,-0.0067,0.9113 +0x111fd,CUS_0x7e0b,August,37,333-61-5851,Media_Manager,30685.78,2591.148333,916,10,19.06745738,5,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Auto Loan, and Home Equity Loan",,26.47512161,16.67,6,_,3157.013509,39.23734856,9 Years and 5 Months,Yes,91.77083175,56.01374489,High_spent_Medium_value_payments,334.6099688,0,-1.025,-0.7321,0.8797,1.6919,0.2523 +0x11209,CUS_0x204b,August,31,893-44-1748,Mechanic,52256.67,4322.7225,10,5,21,3,"Home Equity Loan, Personal Loan, and Personal Loan",,27.56355214,19.69,13,Bad,2306.933768,30.40407103,,Yes,82.84402266,51.15649067,High_spent_Medium_value_payments,548.2717367,0,-2.2501,0.5551,-0.6647,-0.6224,-0.4741 +0x11215,CUS_0xaf18,August,26,627-46-2774,Lawyer,28174.7,,7,6,15,2,"Home Equity Loan, and Payday Loan",39.42540574,28.75570341,8.91,9,Bad,2310.735532,28.31311092,10 Years and 6 Months,NM,70320,99.77596459,Low_spent_Large_value_payments,354.001725,0,-2.2789,0.3355,0.3288,-0.4848,-0.8022 +0x11221,CUS_0xb021,August,30,628-82-4300,Scientist,64674.2,5675.516667,9,7,17,6,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Mortgage Loan, and Personal Loan",48.17296695,26.37774371,1.71,12,Bad,2598.516161,26.14761345,11 Years and 6 Months,Yes,197.226883,,Low_spent_Large_value_payments,293.433612,0,-0.3201,-0.6562,-0.3217,-0.6237,1.6404 +0x1122d,CUS_0x9840,August,45,286-21-0279,Teacher,8540.855,,10,10,27.06745738,3,"Payday Loan, Credit-Builder Loan, and Student Loan",,21.48839475,13.54,7,Standard,2747.207745,28.81317273,8 Years and 2 Months,Yes,12.15120062,,Low_spent_Medium_value_payments,258.462071,0,-1.1813,-1.0122,-0.243,0.3372,-0.6161 +0x11239,CUS_0x181e,August,36,949-56-8430,Doctor,29555.14,2663.928333,7,3,13,5,"Personal Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",24.62309686,17,9.04,6,Standard,1488.29,26.74922824,12 Years and 9 Months,Yes,81.46542677,30.05859982,!@9#%8,394.8688067,0,0.541,-0.0857,-0.9151,1.102,-0.6126 +0x11245,CUS_0x1fcc,August,27,515-77-3276,Media_Manager,125866.24,10420.85333,5,4,17,3,"Auto Loan, Payday Loan, and Debt Consolidation Loan",18.41611307,14,17.46,10,_,717.86,27.51216431,6 Years and 11 Months,Yes,253.1964894,,!@9#%8,806.2934314,0,0.2966,0.2044,1.4999,-1.8908,-0.239 +0x11251,CUS_0x1440,August,19,807-69-2993,Teacher,7780.49,,8,5,34.06745738,7,"Personal Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, and Not Specified",,17,25.55,6,Bad,4331.830954,36.1705688,12 Years and 9 Months,Yes,38.1078711,19.93089827,Low_spent_Large_value_payments,222.0783593,0,0.7614,0.1332,1.0488,-0.948,0.1967 +0x1125d,CUS_0xdfb,August,37,080-47-2722,Journalist,19366.73,1550.894167,7,3,20,2,"Not Specified, and Personal Loan",19.20399943,,13.18,7,Standard,990.39,31.40927086,24 Years and 11 Months,Yes,26.48480665,164.3712926,Low_spent_Small_value_payments,254.2333175,0,0.3651,0.5818,-0.1466,-1.1447,1.3038 +0x11269,CUS_0x63f1,August,37,677-88-8959,_______,7077.87,670.8225,4,3,17,7,"Payday Loan, Student Loan, Payday Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",14.98481669,,9.44,6,Standard,1923.54,38.59192646,6 Years and 5 Months,Yes,24.74499015,,Low_spent_Medium_value_payments,297.9361359,0,0.2909,-0.555,0.48,0.7242,-0.5998 +0x11275,CUS_0x2b99,August,41,208-85-4934,Lawyer,99858.15,8310.5125,3,8,8,4,"Auto Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",11.83135373,10.10330802,9.43,5,Good,1575.478635,25.77887695,23 Years and 5 Months,NM,190.6142563,70.75494162,High_spent_Large_value_payments,809.6820521,0,-0.883,0.082,-1.9652,0.5963,0.0467 +0x11281,CUS_0x270c,August,34,218-40-1399,Architect,9822.235,,10,5,23.06745738,6,"Student Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,17.24451213,20.99,13,Bad,5618.034925,32.64581307,12 Years and 10 Months,Yes,44.08872736,71.07795364,Low_spent_Small_value_payments,253.8649894,0,-0.2267,-2.6144,0.6657,-1.0259,-2.0774 +0x1128d,CUS_0x1eb6,August,35,459-21-0411,Mechanic,19755.43,,7,6,20,8,"Payday Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Personal Loan, and Not Specified",30.92319888,17,23.89,6,Bad,3671.84,34.87640875,12 Years and 2 Months,Yes,96.40455499,128.6855654,Low_spent_Small_value_payments,238.3384629,0,-0.4414,-0.3677,1.1577,-0.2629,0.2416 +0x11299,CUS_0x1b59,August,19,491-45-7607,Media_Manager,15400.91,1206.409167,6,5,13,4,"Student Loan, Auto Loan, Personal Loan, and Mortgage Loan",23.95955122,22,16.22,6,Standard,854.43,37.71858314,18 Years and 5 Months,Yes,71669,89.54611845,Low_spent_Medium_value_payments,273.9183433,0,-0.6741,-0.2932,-1.2621,1.9215,-0.963 +0x112a5,CUS_0xbe83,August,40,398-65-6897,Journalist,19675.36,,9,4,14,4,"Not Specified, Payday Loan, Student Loan, and Auto Loan",11.3612093,9.420496333,13.31,9,Standard,1179.551813,33.54280354,12 Years and 2 Months,Yes,40.55941023,97.13288507,Low_spent_Small_value_payments,296.369038,0,0.56,-0.1502,1.1776,-0.7996,2.8309 +0x112b1,CUS_0x1cbd,August,25,982-51-6725,_______,36412.86,,7,4,7,3,"Personal Loan, Mortgage Loan, and Credit-Builder Loan",25.86283734,19,4.06,0,_,1485.18,39.59519093,26 Years and 4 Months,No,71.17851039,60.1318479,High_spent_Medium_value_payments,424.1301417,0,0.5016,0.891,0.56,0.1124,-2.6448 +0x112bd,CUS_0xa903,August,42,607-91-4945,Lawyer,93871.89,7849.6575,5,3,7,2,"Auto Loan, and Home Equity Loan",4.428287103,5,1.78,0,Good,1020.080128,25.23863058,31 Years and 11 Months,NM,93.60161743,,Low_spent_Medium_value_payments,245.0566914,0,-0.5947,1.0815,0.0338,0.6917,0.2126 +0x112c9,CUS_0xa714,August,35,713-49-1176,Media_Manager,27412.03,,6,7,15,3,"Not Specified, Credit-Builder Loan, and Payday Loan",15.0499414,13,8.74,6,_,80.06,30.30141453,10 Years and 0 Months,Yes,56.2474427,140.8460403,Low_spent_Small_value_payments,342.8401003,0,-1.1744,-1.8778,-0.7873,1.3458,-0.0222 +0x112d5,CUS_0x4cb3,August,32,812-19-9012,Journalist,79748.92,,5,3,14,1,Payday Loan,17.70105765,,4.2,4,Standard,1069.89,34.29128549,18 Years and 6 Months,NM,55.83916081,554.9267062,Low_spent_Small_value_payments,367.6084663,0,1.605,1.1348,0.4835,0.5468,-0.8931 +0x112e1,CUS_0x3c87,August,49,972-92-2021,Entrepreneur,19179.165,,1,7,5,0,,,,4.35,4,Good,1391.31,25.68630837,28 Years and 8 Months,No,0,20.73593826,High_spent_Large_value_payments,390.2904367,0,0.4483,-0.9122,0.294,-0.0827,0.0619 +0x112ed,CUS_0xbf9c,August,23,704-52-3281,Accountant,10628.735,,4,6,10,2,"Auto Loan, and Not Specified",11.56479775,11,10.64,3,Standard,1185.56,31.3512736,22 Years and 6 Months,NM,11.915153,,Low_spent_Small_value_payments,307.015261,0,-1.0427,-0.3989,-0.4508,-2.9259,1.8087 +0x112f9,CUS_0xb7fb,August,30,352-53-0656,Entrepreneur,16752.69,1666.0575,8,6,27.06745738,6,"Student Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",40.83105607,25.81527011,6.88,13,Bad,2888.853783,29.9804742,7 Years and 4 Months,Yes,73.69989744,67.24878743,High_spent_Medium_value_payments,248.9367772,0,-0.1732,0.2892,-2.3056,0.5646,-0.5411 +0x11305,CUS_0x3cfb,August,32,637-69-3471,_______,59393.36,4870.446667,8,5,15,0,,14.21763457,,20.61,9,Standard,945.8578721,27.41121604,21 Years and 2 Months,Yes,0,174.9987425,High_spent_Medium_value_payments,579.3223092,0,-0.6774,0.4583,0.1575,1.5213,-0.3255 +0x11311,CUS_0x42c0,August,54,957-02-1372,Manager,67712.58,5549.715,3,5,15,1,Mortgage Loan,,3107,4.92,1,_,588.81,34.01341184,30 Years and 9 Months,No,31.29783539,188.7932807,High_spent_Medium_value_payments,584.8803839,0,0.1714,0.5554,-0.3539,0.8944,1.0601 +0x1131d,CUS_0x6213,August,38,678-86-0516,Musician,7343.865,,3,5,11,3,"Personal Loan, Auto Loan, and Credit-Builder Loan",13.9764607,10,11.66,7,Standard,116.26,23.85313989,,Yes,10.43387199,26.1157173,Low_spent_Small_value_payments,322.7492857,0,0.8277,1.0481,-0.3981,1.0191,0.7482 +0x11329,CUS_0x1972,August,30,888-62-8786,Engineer,54858.75,4327.5625,7,7,16,5,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",,21.91048658,11.74,5,Standard,2412.842662,36.64016446,20 Years and 0 Months,Yes,144.2991584,170.1765369,High_spent_Medium_value_payments,368.2805548,0,0.6136,0.8063,-0.3641,-0.9523,-1.338 +0x11335,CUS_0x543,August,45,269-07-0699,Media_Manager,20813.98,1484.498333,3,7,12,7,"Credit-Builder Loan, Not Specified, Personal Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",,12,12.66,5,_,720.08,28.99231001,18 Years and 0 Months,Yes,83.33123677,,Low_spent_Small_value_payments,181.5391079,0,-0.6546,-1.1023,0.5211,0.6505,-0.3542 +0x11341,CUS_0x2ed5,August,26,488-95-0151,Manager,76577.84,6597.486667,4,4,19,7,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, and Personal Loan",,22.76616027,13.01,10,Standard,2481.477041,31.05006349,8 Years and 8 Months,Yes,286.8245358,,High_spent_Large_value_payments,487.8378449,0,0.3669,1.4006,-0.9589,0.1997,-1.4317 +0x1134d,CUS_0x4d48,August,31,306-78-6269,Scientist,137123.88,11198.99,2,1,6,3,"Home Equity Loan, Home Equity Loan, and Auto Loan",,,15.38,,_,1371.453227,43.37116121,,No,299.9941207,260.8101866,High_spent_Small_value_payments,819.0946928,0,0.258,-1.0105,-0.7798,-0.3231,-0.1721 +0x11359,CUS_0x3777,August,56,948-27-5814,Scientist,35012.78,,8,4,9,2,"Credit-Builder Loan, and Credit-Builder Loan",21.92058035,15,10.06,0,Standard,279.53,36.31157696,31 Years and 9 Months,Yes,61218,244.8053165,Low_spent_Large_value_payments,280.2597901,0,-0.9105,0.4196,0.4839,0.3495,-1.6829 +0x11365,CUS_0x625d,August,46,656-18-8525,_______,9654.91,,6,3,16.06745738,2,"Mortgage Loan, and Not Specified",18.8846609,12,6.23,11,Standard,1191.750954,37.63632996,19 Years and 9 Months,NM,11.63328284,10000,Low_spent_Large_value_payments,284.9888755,0,-1.045,1.4718,-1.2772,-0.3224,-0.4614 +0x11371,CUS_0x380d,August,25,571-79-3290,Teacher,17510.655,,4,6,19,100,,13.33732754,10,5.6,6,_,1215.11,33.49820662,22 Years and 9 Months,No,0,70.51195394,High_spent_Small_value_payments,310.9101711,0,0.9434,1.9965,-0.4848,0.2382,0.1644 +0x1137d,CUS_0x56ab,August,80,313-72-1529,Writer,34508.66,,8,7,2622.067457,5,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Home Equity Loan, and Auto Loan",26.84919279,16,26.14,10,Bad,3047.240954,36.50921364,2 Years and 2 Months,Yes,97.2131205,103.5414424,High_spent_Medium_value_payments,284.2973158,0,-0.4816,0.1564,0.5231,-0.1663,2.2372 +0x11389,CUS_0x4cab,August,80,423-70-9474,Entrepreneur,55384.41,4825.3675,6,8,34,8,"Home Equity Loan, Credit-Builder Loan, Not Specified, Auto Loan, Auto Loan, Auto Loan, Auto Loan, and Not Specified",43.39579609,25,23.26,8,Bad,4151.04,27.71133989,10 Years and 0 Months,Yes,205.4880489,282.1178837,Low_spent_Large_value_payments,264.9308174,0,0.318,1.6891,0.2845,-1.3579,-0.1896 +0x11395,CUS_0x8359,August,43,448-22-5128,Writer,10418.315,672.5714365,7,5,28,6,"Auto Loan, Payday Loan, Personal Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",18.1924937,,6.51,11,Bad,2484.72,28.94192821,15 Years and 3 Months,NM,62.72004896,39.93703316,Low_spent_Medium_value_payments,262.8836897,0,0.6774,2.1611,1.6843,-0.2364,0.3916 +0x113a1,CUS_0x7974,August,28,792-49-9231,Entrepreneur,75257.64,6312.47,7,3,19,4,"Payday Loan, Debt Consolidation Loan, Auto Loan, and Credit-Builder Loan",10.73125509,9,6.37,5,Standard,499.04,25.47590434,11 Years and 10 Months,Yes,129.3281085,265.2921775,High_spent_Medium_value_payments,486.626714,0,2.155,-0.0472,1.2072,0.8927,0.2854 +0x113ad,CUS_0x3c72,August,21,#F%$D@*&8,Accountant,111642.18,,5,5,5.288361749,2,"Payday Loan, and Auto Loan",9.293818521,10,2.29,5,Good,1148.920553,39.05530562,16 Years and 0 Months,No,93.64865177,671.383603,High_spent_Large_value_payments,849.5838166,0,1.1939,-0.6187,1.5048,-0.5033,0.4601 +0x113b9,CUS_0x710a,August,26,065-10-1785,Entrepreneur,76855.56,6700.63,10,8,29.88954781,8,"Not Specified, Mortgage Loan, Student Loan, Student Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",90,4352.654853,,11,Bad,2889.69451,24.89618429,13 Years and 6 Months,Yes,1798.810224,140.6142775,High_spent_Medium_value_payments,286.3084172,0,-0.0752,-0.3976,-0.6858,0.5797,0.4828 +0x113c5,CUS_0x1e48,August,48,962-07-8770,Architect,73639.72,6119.643333,6,7,18,0,,21.52533704,13,15.06,3,Standard,1433.03,40.64687937,19 Years and 9 Months,NM,0,,High_spent_Medium_value_payments,718.7973943,0,-0.8859,0.8212,-1.195,-0.0184,-0.3824 +0x113d1,CUS_0xa2eb,August,43,733-40-5119,_______,56366.58,4897.215,5,3,19.28836175,2,"Mortgage Loan, and Payday Loan",23.87120932,20,,5,Standard,327.8,41.1407641,23 Years and 9 Months,Yes,65.36005762,,!@9#%8,490.8603632,0,-1.7342,1.3058,1.2579,2.1035,0.2565 +0x113dd,CUS_0x8a48,August,27,005-97-6679,Engineer,22709.94,,6,7,13,4,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Debt Consolidation Loan",12.99515913,13,11.59,5,_,994.73,26.92758502,21 Years and 11 Months,No,44.98950839,61.58239489,High_spent_Medium_value_payments,349.1775967,0,0.5654,-0.4177,0.0725,1.3558,0.7686 +0x113e9,CUS_0x8bcf,August,44,191-80-9435,Teacher,27794.43,,7,3,9,2,"Student Loan, and Personal Loan",,11,15.25,5,_,371.41,38.50027651,11 Years and 9 Months,Yes,137.4515639,92.39593418,!@9#%8,359.0208862,0,-1.0969,0.3457,0.861,0.4068,-1.1985 +0x113f5,CUS_0xa29a,August,38,609-19-3347,Engineer,84609.78,6579.689941,5,4,1,3,"Credit-Builder Loan, Payday Loan, and Not Specified",18.89492021,,3.82,0,_,227.721482,38.52590167,23 Years and 0 Months,No,797.5888866,190.8301798,High_spent_Medium_value_payments,658.0249645,0,-0.9052,0.6018,-0.0865,-0.1903,0.9567 +0x11401,CUS_0x78af,August,37,365-11-8309,Teacher,88827.54,7199.295,5,5,6.288361749,4,"Mortgage Loan, Mortgage Loan, Auto Loan, and Payday Loan",,,15.78,4,Standard,512.09,35.29044556,11 Years and 9 Months,Yes,277.043609,503.8385612,High_spent_Large_value_payments,598.9847908,0,0.5093,-1.485,0.8007,-0.0965,1.6075 +0x1140d,CUS_0x2bb5,August,29,766-17-4484,Architect,8241.75,843.8125,8,6,19,2,"Credit-Builder Loan, and Personal Loan",39.82390523,26.49713199,8.89,16,Bad,2873.247005,40.1294497,17 Years and 2 Months,Yes,12.41053935,38.7109236,Low_spent_Medium_value_payments,313.2597871,0,-0.3223,-1.1842,-0.3485,-1.0808,0.4047 +0x11419,CUS_0x7d93,August,40,695-08-9117,Engineer,52820.16,,6,4,5,2,"Debt Consolidation Loan, and Debt Consolidation Loan",7.970606458,10,1.27,0,_,1081.961249,27.10789618,29 Years and 0 Months,No,81.53346235,193.35758,High_spent_Medium_value_payments,446.7747789,0,-1.0643,-1.7567,-1.5695,2.7118,0.3715 +0x11425,CUS_0x6b52,August,27,556-49-4379,Media_Manager,88412.01,7495.6675,1,4,11,100,"Payday Loan, Credit-Builder Loan, and Mortgage Loan",12.80263503,9.005408962,0.55,5,Good,1046.391459,41.48649415,31 Years and 2 Months,No,199.4929765,173.6998509,High_spent_Large_value_payments,616.3739226,0,1.359,-1.0209,0.6142,-0.269,-0.3634 +0x11431,CUS_0x892d,August,18,148-15-1292,Manager,9427.945,,6,6,29.06745738,7,"Home Equity Loan, Credit-Builder Loan, Student Loan, Not Specified, Credit-Builder Loan, Auto Loan, and Payday Loan",,,9.67,11,Bad,2581.980954,35.92569169,8 Years and 3 Months,Yes,48.09471194,,Low_spent_Small_value_payments,257.2426984,0,-0.0805,0.0233,-1.3108,-1.1652,-0.9546 +0x1143d,CUS_0x5641,August,49,333-43-6398,Accountant,56609.58,,8,3,10,2,"Mortgage Loan, and Debt Consolidation Loan",,11,10.59,0,Standard,490.8703985,40.26314563,19 Years and 3 Months,Yes,73.9334745,165.985183,High_spent_Small_value_payments,515.2315664,0,-0.9518,0.3587,1.1897,-0.5202,0.0562 +0x11449,CUS_0x4f05,August,22,089-63-1676,Musician,33390.92,3068.576667,8,10,20.95700519,9,"Payday Loan, Student Loan, Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",,19.15192308,23.73,11,_,4259.849982,30.90076093,13 Years and 9 Months,Yes,1501.5755,121.5047479,High_spent_Medium_value_payments,212.7270496,0,1.4798,1.2738,0.3002,-1.6591,-1.9083 +0x11455,CUS_0x8bcd,August,34,948-09-0109,Teacher,50778.48,4501.54,6,6,18,7,"Personal Loan, Not Specified, Mortgage Loan, Payday Loan, Home Equity Loan, Not Specified, and Mortgage Loan",,19.03412789,13.52,6,Standard,1701.078401,37.09861815,17 Years and 6 Months,Yes,152.9570457,309.0674241,Low_spent_Medium_value_payments,268.1295302,0,1.0585,0.7916,-2.0859,0.7118,-0.699 +0x11461,CUS_0x3b90,August,24,699-86-7977,Writer,16413.23,1262.769167,6,10,31.88954781,6,"Payday Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",,25,,8,Bad,2547.35,28.8916774,12 Years and 10 Months,Yes,1397.643624,,Low_spent_Small_value_payments,248.9473843,0,-2.46,-1.0878,0.1734,0.6514,0.8311 +0x1146d,CUS_0x3257,August,40,970-71-1911,Developer,78595.6,6642.633333,9,7,17,6,"Mortgage Loan, Mortgage Loan, Student Loan, Student Loan, Home Equity Loan, and Auto Loan",26.10238854,17,11.4,9,Bad,1421.43,34.47287752,12 Years and 3 Months,Yes,366.9658733,604.4922495,Low_spent_Medium_value_payments,,0,-1.5795,-0.0205,0.1693,-2.0655,-0.3999 +0x11479,CUS_0x25ed,August,54,#F%$D@*&8,Writer,57365.73,4420.592439,8,4,8,2,"Payday Loan, and Mortgage Loan",11.31104393,8,13.82,4,Standard,910.8276349,38.10285022,17 Years and 6 Months,Yes,387.2760672,173.2180528,High_spent_Medium_value_payments,496.9384725,0,-0.2367,0.3684,-2.2098,-1.2718,-0.8543 +0x11485,CUS_0x6dec,August,42,918-46-9849,Developer,16511.395,1528.949583,2,5,8,2,"Student Loan, and Student Loan",0,0,7.91,4,Good,1206.07,33.84499978,29 Years and 2 Months,No,14.48345459,,Low_spent_Small_value_payments,246.7584024,0,-0.9754,-0.0752,0.1716,-0.7285,0.6618 +0x11491,CUS_0x3d60,August,24,127-22-3098,Teacher,40289.79,3073.4825,5,6,10,2,"Mortgage Loan, and Home Equity Loan",7.78975374,8,0.89,3,Good,1073.74,36.46549173,16 Years and 5 Months,No,38.97639029,10000,High_spent_Small_value_payments,374.9843353,0,-0.667,-0.48,1.3668,0.473,-1.0659 +0x1149d,CUS_0x269b,August,43,615-23-3582,Teacher,82757.96,,6,9,31.95700519,6,"Home Equity Loan, Payday Loan, Personal Loan, Home Equity Loan, Mortgage Loan, and Mortgage Loan",,21.51063319,19.09,14,Bad,5033.260916,35.54620335,5 Years and 6 Months,Yes,1708.235188,,Low_spent_Large_value_payments,123.1881437,0,0.013,0.5365,1.2763,1.0964,-0.3582 +0x114a9,CUS_0x91dd,August,36,947-53-5559,Writer,79062.44,6854.536667,8,6,5,4,"Student Loan, Not Specified, Credit-Builder Loan, and Auto Loan",22.56689372,21,15.63,4,Standard,426.07,33.70666286,9 Years and 3 Months,Yes,182.5895499,,Low_spent_Medium_value_payments,199.9553469,0,-0.1787,0.2304,-0.1959,-0.5749,0.1144 +0x114b5,CUS_0x7036,August,18,991-19-9986,Entrepreneur,34506.14,3032.511667,10,7,1254.067457,5,"Credit-Builder Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",,26.77793594,,10,_,4204.06457,36.20089196,11 Years and 10 Months,Yes,116.6601959,78.51446672,High_spent_Medium_value_payments,331.3562161,0,-0.068,-1.5627,0.0499,0.3049,-0.2276 +0x114c1,CUS_0x2ca6,August,46,477-91-2380,Lawyer,17502.19,,7,5,6,5,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",,13,15.32,4,_,251.99,35.09734654,13 Years and 10 Months,Yes,52.99951406,53.72523603,High_spent_Small_value_payments,291.3268332,0,-0.5081,0.3226,0.1514,-0.9456,1.42 +0x114cd,CUS_0x8852,August,34,723-55-9485,Journalist,129591.32,10667.27667,4,5,1.288361749,0,,,3,2.91,8,Good,1202.126136,38.8818919,32 Years and 6 Months,No,0,1244.234703,Low_spent_Medium_value_payments,611.9286819,0,-0.3548,0.3974,-0.7168,-1.3797,0.4218 +0x114d9,CUS_0xc0c8,August,20,150-91-6941,Developer,16594.59,1497.8825,82,7,35.06745738,2,"Auto Loan, and Mortgage Loan",21.54096363,10,23.02,10,Standard,2360.230954,32.83940339,19 Years and 4 Months,Yes,15.5443983,,!@9#%8,233.8665484,0,0.6149,-0.7993,1.4289,0.3662,0.5856 +0x114e5,CUS_0x340e,August,39,460-11-1786,Writer,106119.68,9128.306667,3,5,18,3,"Auto Loan, Student Loan, and Mortgage Loan",,14,16.95,5,Standard,336.54,33.39604424,15 Years and 8 Months,Yes,256.3297434,,Low_spent_Medium_value_payments,128.9122552,0,-2.2125,1.368,0.8542,-0.3057,-1.6404 +0x114f1,CUS_0x4c9c,August,26,324-91-7263,Accountant,83962.92,7148.91,6,7,26,6,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Personal Loan",44.65806691,20.76979659,2.97,11,Bad,2240.262122,25.08681651,12 Years and 10 Months,Yes,416.6088072,,Low_spent_Small_value_payments,66.92082864,0,2.6312,0.9586,-0.6921,-0.3562,0.4443 +0x114fd,CUS_0x2040,August,26,420-67-6873,Entrepreneur,10287.56,788.2966667,5,5,21,4,"Home Equity Loan, Student Loan, Auto Loan, and Not Specified",,26.77179506,10.66,4,_,2958.329609,36.61436192,9 Years and 10 Months,Yes,32.83336912,71.00567121,Low_spent_Small_value_payments,264.9906263,0,0.1232,-0.3164,-0.2808,1.5028,-0.4648 +0x11509,CUS_0x7755,August,49,669-85-5930,Musician,22313.78,1936.481667,1,3,1,0,,90,3423.576514,10.16,6,Good,1011.39789,24.61208419,24 Years and 2 Months,NM,0,152.1661268,Low_spent_Medium_value_payments,321.4820399,0,-0.6783,0.9086,-0.7863,3.4476,-1.1606 +0x11515,CUS_0x411d,August,26,956-90-9886,Media_Manager,15134.06,,7,7,30.06745738,7,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",32.88306246,17.82750873,4.03,9,Bad,2995.677308,38.6415564,7 Years and 9 Months,Yes,71.76209771,63.22845272,High_spent_Small_value_payments,200.1063283,0,0.0352,-1.2659,-1.1045,-1.8437,-1.8733 +0x11521,CUS_0x28ee,August,42,875-31-2310,Manager,34855.08,,5,7,23,5,"Payday Loan, Mortgage Loan, Payday Loan, Payday Loan, and Credit-Builder Loan",20.07777191,16.6244383,8.22,11,_,1859.830386,28.87735558,17 Years and 5 Months,Yes,136.5426719,59.91366754,High_spent_Medium_value_payments,338.3026605,0,0.1903,0.432,0.5973,1.2013,0.9835 +0x1152d,CUS_0x9be7,August,26,544-13-9805,Engineer,30789.35,,5,4,7,4,"Auto Loan, Home Equity Loan, Not Specified, and Personal Loan",,6,5.72,6,_,1106.11,29.16604286,20 Years and 6 Months,No,73.86569999,267.6623378,Low_spent_Medium_value_payments,212.3498789,0,-0.7741,0.3328,2.0309,-0.6863,-0.5215 +0x11539,CUS_0xb4b4,August,19,698-29-6212,Media_Manager,32629.08,2672.09,7,5,30,7,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",,26.21062088,9.27,9,Bad,2288.474848,34.99605688,8 Years and 5 Months,Yes,147.6795542,,Low_spent_Large_value_payments,316.0323061,0,0.6717,1.2742,1.2364,0.8843,-1.6781 +0x11545,CUS_0x6a52,August,58,073-61-1093,Musician,21700.68,,5,7,10,0,,15.16808843,11,9.73,,Good,387.3027028,26.09463761,26 Years and 9 Months,No,212.3144929,144.4298604,Low_spent_Large_value_payments,332.1827796,0,0.809,-0.3297,-1.4767,0.0891,0.107 +0x11551,CUS_0xe91,August,34,377-80-4073,Doctor,33777.11,,7,7,14,2,"Home Equity Loan, and Not Specified",25.39060673,17,3.49,0,Standard,619.29,28.71000504,24 Years and 3 Months,No,33.53558863,108.6847882,High_spent_Small_value_payments,409.6555398,0,-1.361,0.1247,0.1225,-1.7065,-0.377 +0x1155d,CUS_0x57e7,August,20,670-11-1080,Scientist,17196.13,,9,7,33.06745738,7,"Student Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",,20.90814619,17.45,11,Bad,4152.298793,34.53505891,,Yes,74.73334891,67.05680106,Low_spent_Small_value_payments,269.5906454,0,0.6339,0.8637,0.5738,1.7527,1.2159 +0x11569,CUS_0x9acf,August,19,305-54-1601,Scientist,22433.66,1574.471667,7,5,13,0,,,11,16.59,8,Standard,1013.53,34.10304786,16 Years and 9 Months,Yes,0,45.10212879,!@9#%8,382.3450379,0,0.98,1.1351,-0.5453,2.2632,-1.0156 +0x11575,CUS_0x153d,August,20,365-79-1629,Accountant,8538.405,,7,5,31.06745738,6,"Payday Loan, Not Specified, Payday Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",34.22036609,23,24.73,9,Bad,4394.500954,30.35176617,1 Years and 9 Months,Yes,27.17578271,35.10347977,Low_spent_Small_value_payments,300.2538246,0,1.8106,0.8949,1.0741,0.9138,1.0076 +0x11581,CUS_0x1a87,August,35,365-77-3067,Mechanic,106030.05,,7,3,14,100,"Student Loan, Mortgage Loan, and Home Equity Loan",15.93570138,14,9.51,8,_,136.53,41.35312563,10 Years and 8 Months,Yes,10979,80.59227045,High_spent_Large_value_payments,885.7982341,0,0.7983,-0.2975,-1.0809,-0.0308,-0.1693 +0x1158d,CUS_0x3169,August,45,292-18-7679,Scientist,31287.48,2858.29,10,5,22,8,"Home Equity Loan, Student Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Not Specified, Personal Loan, and Credit-Builder Loan",,22,19.93,6,Bad,4712.1,23.84689435,7 Years and 6 Months,Yes,129.4984665,50.36966255,High_spent_Large_value_payments,345.9608709,0,-0.6269,1.7814,-2.8036,-0.0171,-0.8651 +0x11599,CUS_0x1640,August,28,386-11-7632,Teacher,102910.11,,7,6,11,2,"Home Equity Loan, and Mortgage Loan",28.39205161,18.11304161,19.1,8,Standard,1051.019002,32.17915605,20 Years and 4 Months,Yes,166.0483202,649.9143328,Low_spent_Medium_value_payments,334.821597,0,0.3586,-0.9814,0.351,0.5797,-1.0622 +0x115a5,CUS_0xbab,August,34,708-47-0256,Writer,40032.16,3465.013333,5,5,3,2,"Personal Loan, and Auto Loan",5.198200989,6,5.08,6,Good,933.6937934,30.9965866,21 Years and 11 Months,No,64.38721912,99.34548095,High_spent_Large_value_payments,432.6873152,0,0.5263,0.3663,-0.78,-1.1761,-1.3675 +0x115b1,CUS_0x9fea,August,44,#F%$D@*&8,Media_Manager,38377.92,,4,5,5,0,,11.85705127,10.85310733,10.54,1,Good,626.928336,37.2289101,31 Years and 10 Months,NM,0,421.8243378,Low_spent_Small_value_payments,192.2916622,0,-0.7617,0.6816,0.5759,1.8029,0.9707 +0x115bd,CUS_0x29f9,August,24,806-26-2787,Media_Manager,9691.01,622.5841667,8,7,18,9,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",,21,21.7,7,Bad,3416.97,22.25017279,3 Years and 2 Months,Yes,66.96393607,24.10240942,Low_spent_Small_value_payments,261.1920712,0,-0.3444,0.1785,-0.1481,0.2395,0.5577 +0x115c9,CUS_0x5c2d,August,49,241-31-0106,Manager,73400.58,5957.715,1,7,11,0,,,7,-4.36,6,Good,1025.71,38.26086746,20 Years and 11 Months,No,0,,High_spent_Small_value_payments,693.5679337,0,-0.1997,-0.6706,-0.2274,1.7936,0.4825 +0x115d5,CUS_0x5af1,August,38,620-05-5524,Doctor,40026.12,3074.173535,6,10,22.88954781,7,"Home Equity Loan, Payday Loan, Auto Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",31.80254667,19,3.64,8,Bad,1472.86,24.81680492,18 Years and 2 Months,Yes,1638.943694,99.03710756,High_spent_Medium_value_payments,256.3765821,0,0.2087,0.0928,-0.1734,1.7063,-2.1391 +0x115e1,CUS_0x6c8e,August,19,672-18-8236,Manager,19098.69,1509.5575,8,10,22.88954781,9,"Mortgage Loan, Not Specified, Home Equity Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Personal Loan",,,26.84,154,Bad,4964.77,38.36595309,12 Years and 3 Months,Yes,1418.906837,161.8768037,Low_spent_Small_value_payments,165.8420276,0,-0.1578,0.6832,-0.0701,0.4041,-0.0765 +0x115ed,CUS_0xc010,August,48,843-92-4425,Media_Manager,31086.42,,5,6,11,0,,,20,2.07,262,Good,1057.47,27.75028385,20 Years and 11 Months,No,0,100.9945971,Low_spent_Small_value_payments,442.4589029,0,-0.6249,0.0094,0.7018,1.0583,-0.3682 +0x115f9,CUS_0x60c5,August,39,078-88-7853,Manager,36238.86,,8,7,11,3,"Not Specified, Mortgage Loan, and Student Loan",17.18732138,15,7.18,,_,1025.234965,32.80125738,,No,60.77391436,,Low_spent_Small_value_payments,206.627714,0,0.5153,0.237,-1.1595,0.0783,0.6828 +0x11605,CUS_0xa878,August,51,300-54-4627,Engineer,117851.07,9870.9225,1,6,7,0,,5.682130857,1.141733921,4.97,1,Good,688.3525994,34.04173337,21 Years and 0 Months,No,0,467.4158246,High_spent_Small_value_payments,779.6764254,0,1.5272,-0.0742,1.1751,-0.6259,-1.5657 +0x11611,CUS_0x997e,August,40,491-56-9204,Accountant,9084.52,,8,7,34.06745738,6,"Auto Loan, Auto Loan, Not Specified, Personal Loan, Payday Loan, and Student Loan",34.31534887,23,6,11,Bad,2727.170954,36.9672537,16 Years and 2 Months,Yes,38.26306838,,High_spent_Medium_value_payments,244.3237823,0,0.0828,-0.8667,-0.5247,0.0472,0.9015 +0x1161d,CUS_0x6320,August,45,442-44-5714,Scientist,72309.42,6135.785,1,5,1.288361749,0,,,11,4.29,1,Good,493.99,38.32581421,,No,0,491.3962739,High_spent_Large_value_payments,782.1196871,0,1.4195,-0.6229,-1.3748,1.4119,-0.5303 +0x11629,CUS_0x23d6,August,19,708-94-3434,Journalist,172074.88,14238.57333,2,6,11,3,"Payday Loan, Payday Loan, and Mortgage Loan",11.00026432,10,11.6,5,Good,59.21,36.7502529,22 Years and 0 Months,No,391.6293696,227.6754345,High_spent_Medium_value_payments,1054.552529,0,1.3779,1.1988,-1.1535,2.2468,1.7441 +0x11635,CUS_0x6fa1,August,42,144-60-9780,Teacher,32854.74,2452.895,7,10,31,5,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,18,27.6,12,Bad,4192.94,27.51566142,5 Years and 3 Months,Yes,76.21535155,294.5594522,Low_spent_Small_value_payments,164.5146963,0,-1.0918,2.262,0.5438,-1.0988,-1.1817 +0x11641,CUS_0x50ab,August,42,585-78-0085,Mechanic,39231.42,3202.285,6,9,23,3,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",18.81959811,9.544070624,12.33,8,Standard,1869.321332,41.02997092,15 Years and 4 Months,NM,49.07273644,97.24089629,High_spent_Medium_value_payments,423.9148673,0,-2.0392,0.8419,-1.6181,0.0879,0.7081 +0x1164d,CUS_0xbb2,August,51,#F%$D@*&8,_______,43249.78,3538.148333,5,5,5,3,"Mortgage Loan, Payday Loan, and Home Equity Loan",5.00495677,6.04660037,11.43,5,_,1631.407198,26.86328495,32 Years and 5 Months,No,97.25829537,33.9122136,High_spent_Large_value_payments,462.6443244,0,0.8768,-0.0308,0.4908,0.3589,-0.4974 +0x11659,CUS_0x38a1,August,44,180-47-5273,Mechanic,79980.52,6712.043333,8,9,24.88954781,7,"Not Specified, Mortgage Loan, Payday Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",23.30516492,,18.72,16,Bad,3921.14,34.17933883,4 Years and 8 Months,Yes,1611.420515,264.3287438,High_spent_Medium_value_payments,351.1249931,0,0.0682,2.0561,-0.7395,-1.7133,-1.8345 +0x11665,CUS_0xa224,August,26,645-72-5423,Accountant,9166.465,,9,5,22,3,"Home Equity Loan, Payday Loan, and Personal Loan",,23.49858163,15.76,12,Bad,2098.676646,24.60541963,12 Years and 11 Months,Yes,21.38599662,44.26356006,Low_spent_Small_value_payments,276.1376517,0,1.2968,0.1884,0.3412,-0.3037,-0.3464 +0x11671,CUS_0x7f31,August,54,630-24-4636,Mechanic,69388.26,,2,4,6,0,,0,1.197924699,8.16,5,Good,910.8371556,40.37836232,22 Years and 2 Months,No,0,,High_spent_Medium_value_payments,719.0133528,0,-0.6108,-0.9488,1.1255,-0.3747,1.8631 +0x1167d,CUS_0x9ed7,August,36,590-63-3545,Architect,85325.24,7395.436667,3,4,10,1,Not Specified,17.72062277,15,5.5,7,Standard,1168.002839,29.77231297,22 Years and 9 Months,NM,65.2452399,,High_spent_Large_value_payments,829.6243116,0,0.9327,0.1154,-0.0903,1.5048,0.0112 +0x11689,CUS_0x52cb,August,43,062-24-3926,Developer,93189.93,8037.8275,2,2,3,3,"Mortgage Loan, Not Specified, and Personal Loan",15.20252784,14,10.65,3,Good,104.8619101,33.7075701,32 Years and 9 Months,No,144.6709472,144.0514551,High_spent_Large_value_payments,770.1265408,0,-0.9787,-0.761,0.0271,-1.5088,-0.6197 +0x11695,CUS_0xaeb1,August,18,342-76-9390,Scientist,61707.72,,10,10,27,4,"Payday Loan, Personal Loan, Mortgage Loan, and Auto Loan",16.6222289,9,19.84,15,Standard,1626.82,35.68449227,15 Years and 6 Months,Yes,690.6418059,354.3777325,Low_spent_Large_value_payments,241.790834,0,1.1267,-0.1413,-0.086,2.3039,0.5749 +0x116a1,CUS_0x5cfd,August,29,697-06-5938,Writer,40972.04,3623.336667,8,6,26,5,"Credit-Builder Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Student Loan",18.99946008,13,16.88,12,_,1803.13,39.39962045,,Yes,147.8958519,34.14097963,!@9#%8,420.2968352,0,0.2191,-1.0251,0.4224,-1.2539,-0.909 +0x116ad,CUS_0x7aa8,August,80,990-79-6246,Media_Manager,14383.03,,8,10,30.06745738,5,"Student Loan, Payday Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",48.12854407,27.61836726,8.03,7,Bad,2793.348172,29.22606143,12 Years and 0 Months,Yes,51.36447607,94.3625856,Low_spent_Large_value_payments,208.5112337,0,1.08,0.434,0.1397,-1.3469,0.1998 +0x116b9,CUS_0xa160,August,44,118-84-2966,Media_Manager,20889.64,1616.803333,10,10,23.95700519,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",21.20453465,,4.42,13,_,3106.034854,36.39625699,11 Years and 11 Months,Yes,1426.614529,,High_spent_Small_value_payments,165.8220362,0,0.1245,-0.9548,0.233,1.1872,-1.1921 +0x116c5,CUS_0xa4ae,August,38,824-23-5571,Journalist,13315.2,1307.6,8,5,16,0,,13.96604534,12,7.84,7,_,1233.74,31.07646614,18 Years and 3 Months,No,0,27.09546533,High_spent_Large_value_payments,343.6645347,0,-0.6111,-0.7144,0.8332,1.9332,-0.2597 +0x116d1,CUS_0x2ef3,August,50,741-45-4523,Mechanic,21751.53,,1741,3,7,4,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",9.369247324,9,4.02,3,Standard,1211.85,35.28286852,16 Years and 10 Months,No,48.50039995,114.8314521,High_spent_Small_value_payments,296.930898,0,-0.5355,-2.0111,0.0653,-1.508,0.435 +0x116dd,CUS_0x95eb,August,27,514-75-9214,Journalist,9852.775,,7,8,25,9,"Not Specified, Auto Loan, Auto Loan, Mortgage Loan, Auto Loan, Payday Loan, Student Loan, Payday Loan, and Mortgage Loan",27.04390147,19,5.59,7,Bad,4887.73,39.66415036,,Yes,61.10009748,,High_spent_Small_value_payments,271.9162132,0,-0.1852,-0.0353,0.577,2.3021,-2.1503 +0x116e9,CUS_0x5337,August,31,823-52-8448,Scientist,42122.43,3451.2025,7,10,16.06745738,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",36.22267514,20,21.3,7,_,2812.720954,34.14689872,14 Years and 0 Months,Yes,114.8871329,176.0427622,High_spent_Small_value_payments,287.4700669,0,-0.8343,-0.0994,0.8412,0.1359,-2.429 +0x116f5,CUS_0x6da8,August,25,566-95-6703,Accountant,37607.28,2842.94,3,6,17,3,"Home Equity Loan, Auto Loan, and Not Specified",22.01330217,15.98486504,21,9,Standard,1540.111783,33.16398472,,NM,81.81690607,170.9383407,High_spent_Small_value_payments,291.5387532,0,0.7162,0.9553,0.2893,0.1346,-0.7922 +0x11701,CUS_0x7330,August,36,528-66-6277,Doctor,59658.09,5250.5075,8,6,8,5,"Not Specified, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",15.1855501,11,10.6,6,_,2034.67,33.63099576,8 Years and 8 Months,Yes,235.4214889,139.0060877,High_spent_Small_value_payments,410.6231734,0,-1.0896,1.7203,-1.0103,1.0021,0.9395 +0x1170d,CUS_0x35e6,August,40,968-59-1967,_______,34625.24,3006.436667,560,6,10,5,"Payday Loan, Student Loan, Personal Loan, Personal Loan, and Payday Loan",20.50938987,15.28886744,12.87,7,_,2721.895976,32.2398144,18 Years and 0 Months,NM,117.7523204,50.36181722,High_spent_Medium_value_payments,382.529529,0,1.2882,-0.4242,0.0356,0.9067,0.2399 +0x11719,CUS_0xac08,August,33,200-48-2687,Doctor,19068.01,1413.000833,8,1155,31.88954781,7,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Mortgage Loan",10.33470854,9.197250854,19,5,_,1764.841468,29.12999115,20 Years and 0 Months,Yes,1380.637364,92.49429745,Low_spent_Small_value_payments,263.8383401,0,-1.3947,-0.5727,1.6059,-0.3183,0.4954 +0x11725,CUS_0x8ea8,August,55,406-21-5977,Engineer,29616.72,,2,1,3,2,"Home Equity Loan, and Auto Loan",1.264015224,4,5.83,7,Good,164.1644728,25.80297239,,No,27.90432343,222.6669974,Low_spent_Large_value_payments,260.9013757,0,0.0956,0.9419,0.6714,-0.6615,-0.3056 +0x11731,CUS_0x244e,August,26,684-71-0736,Mechanic,32835.91,,1,3,1,0,,2.37448126,4,11.27,3,Good,671.88,36.37577441,19 Years and 11 Months,No,0,79.22314055,High_spent_Medium_value_payments,420.7094428,0,-0.8691,0.2224,0.0396,0.29,0.8274 +0x1173d,CUS_0x8fea,August,30,826-06-5646,Engineer,19159.565,,1,6,11,2,"Not Specified, and Mortgage Loan",,10,1.8,3,Good,677.58,32.63547852,26 Years and 11 Months,No,24.53485516,43.38098462,Low_spent_Large_value_payments,340.6472019,0,0.9999,-1.012,-0.799,1.904,-0.8105 +0x11749,CUS_0x155b,August,26,642-53-3146,_______,18309.54,1301.795,3,5,22,2,"Mortgage Loan, and Debt Consolidation Loan",14.18833132,14.38351412,18.15,711,Standard,2132.801052,24.35821769,20 Years and 3 Months,NM,21.25323932,112.0815276,Low_spent_Medium_value_payments,276.8447331,0,0.9894,0.9964,0.8491,-0.0044,-0.3643 +0x11755,CUS_0x628e,August,43,199-27-9186,Accountant,80754.16,,6,9,20.88954781,100,"Student Loan, Student Loan, Credit-Builder Loan, Auto Loan, Student Loan, Not Specified, and Credit-Builder Loan",,14,8.19,12,_,2587.15,37.54537775,15 Years and 6 Months,Yes,1715.653647,581.6604032,Low_spent_Large_value_payments,,0,0.0843,0.7493,-0.8402,-0.4287,0.0339 +0x11761,CUS_0x6d85,August,38,771-46-0192,Doctor,14951.22,,7,10,18.06745738,8,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Mortgage Loan",,22,28.79,10,Bad,3493.800954,28.38812987,7 Years and 9 Months,Yes,51.84110548,,Low_spent_Small_value_payments,270.6476358,0,0.6295,-0.0661,-1.4998,-0.5689,0.4116 +0x1176d,CUS_0x470e,August,40,402-32-6834,Media_Manager,15723.515,1173.292917,6,7,8,2,"Home Equity Loan, and Student Loan",23.06031196,,17.98,12,Standard,700.2,33.63017609,22 Years and 10 Months,Yes,20.89883028,15.66175188,High_spent_Medium_value_payments,330.7687095,0,-0.7507,-0.8337,-0.169,-0.9864,-0.1534 +0x11779,CUS_0x7740,August,39,945-15-9683,Architect,14497.4,,6,10,26.06745738,6,"Debt Consolidation Loan, Personal Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, and Personal Loan",42.73637476,25,19.54,12,Bad,4754.091947,40.57691366,4 Years and 11 Months,Yes,43.40016621,102.3240302,Low_spent_Large_value_payments,215.6158186,0,-1.8023,0.0826,0.3367,1.6198,-0.913 +0x11785,CUS_0xb107,August,28,191-99-1702,Accountant,34946.42,,4,1,4,0,,7.243719872,9,15.32,2,Good,860.37,33.98683451,29 Years and 10 Months,No,0,213.4462294,Low_spent_Medium_value_payments,330.0739372,0,-0.2088,-0.6364,-0.6609,-1.4107,0.8115 +0x11791,CUS_0xb585,August,35,280-11-4476,Manager,16253,1620.416667,8,570,25.95700519,9,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",,19.09112224,7.54,6,Bad,1867.756174,30.57563623,16 Years and 3 Months,Yes,1398.620066,,!@9#%8,257.4706886,0,2.3762,-1.4128,-1.1208,0.5514,1.0971 +0x1179d,CUS_0x4661,August,22,245-45-4597,Architect,35304.41,,8,6,16,7,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Not Specified, and Auto Loan",,14,8.16,11,_,290.39,37.18783749,13 Years and 11 Months,Yes,201.3256675,197.7559741,High_spent_Small_value_payments,174.1217751,0,0.6651,-0.9679,0.3895,0.3363,1.2152 +0x117a9,CUS_0x77e2,August,29,143-90-2973,Media_Manager,66823.12,5368.593333,7,9,19,6,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",,20.03772231,5.87,,Bad,1729.028792,35.96618541,19 Years and 11 Months,Yes,250.8476646,122.9823398,!@9#%8,413.029329,0,2.1181,1.1511,0.4421,0.0158,-0.8375 +0x117b5,CUS_0x4d16,August,32,169-51-5624,Doctor,18514.92,,9,5,19.06745738,6,"Debt Consolidation Loan, Personal Loan, Payday Loan, Student Loan, Payday Loan, and Personal Loan",,14.66623224,15.3,16,Bad,3474.694741,40.47348576,10 Years and 8 Months,Yes,49.67025367,,Low_spent_Small_value_payments,219.1833927,0,0.4477,0.1405,-0.3371,2.1938,0.8699 +0x117c1,CUS_0xbacd,August,38,704-18-6692,Manager,87246.15,7564.5125,4,3,10,2,"Debt Consolidation Loan, and Auto Loan",25.60634829,18,6.63,5,_,494.16,34.4714912,21 Years and 0 Months,No,116.9798297,181.5398289,!@9#%8,697.9315914,0,0.5156,-1.9234,0.5008,-0.0769,-2.1923 +0x117cd,CUS_0x4f57,August,18,504-94-9465,Doctor,10181.5,,4,4,18,0,,10.06393214,8,8.9,7,_,458.36,37.52050801,30 Years and 5 Months,Yes,0,40.89255161,Low_spent_Large_value_payments,298.0532817,0,-0.3057,-1.356,0.2353,-2.7552,0.6822 +0x117d9,CUS_0x1185,August,25,238-50-2115,Accountant,18963.65,,4,8,29,6,"Student Loan, Payday Loan, Not Specified, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",,7,13.04,11,Standard,2422.18,26.01558081,7 Years and 0 Months,Yes,64.12529497,60.75560556,High_spent_Medium_value_payments,304.5495161,0,-0.8763,0.7723,-1.0247,0.6447,1.7408 +0x117e5,CUS_0x755e,August,28,472-41-4865,Accountant,19127.84,,7,10,24.06745738,5,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, and Mortgage Loan",34.66604303,23,29.71,12,Bad,2846.610954,38.48895232,6 Years and 8 Months,Yes,63.97034096,,Low_spent_Large_value_payments,229.4168416,0,-0.305,1.0018,-0.3244,0.398,0.0225 +0x117f1,CUS_0x9538,August,22,852-24-3101,Entrepreneur,85019.76,5782.894507,5,7,4.288361749,0,,8.124241748,9,9.89,3,Good,1072.83,37.20698303,16 Years and 0 Months,No,1006.085493,,High_spent_Medium_value_payments,811.9097105,0,-0.8146,-0.0694,-0.157,2.0084,2.1316 +0x117fd,CUS_0xb239,August,47,047-63-7779,_______,84907.68,6642.952277,3,5,7.288361749,2,"Not Specified, Debt Consolidation Loan, and Auto Loan",9.347870778,9,-1.2,4,_,14.03030381,39.46026172,26 Years and 2 Months,No,700.8930943,,High_spent_Large_value_payments,666.1435358,0,-1.1986,0.6621,-0.0612,-0.6193,-0.1652 +0x11809,CUS_0x25ad,August,37,543-36-7249,Teacher,19744.64,1451.386667,3,6,34,3,"Not Specified, Debt Consolidation Loan, and Student Loan",15.80986729,11.36538475,11.1,6,Standard,1398.453479,32.7322838,18 Years and 4 Months,NM,28.52127591,38.86611121,Low_spent_Medium_value_payments,357.7512795,0,0.5267,0.1221,1.1371,-0.3944,-0.7532 +0x11815,CUS_0x130b,August,31,049-83-9018,Writer,79005,6860.75,5,7,19.28836175,2,"Not Specified, and Student Loan",13.45972655,13,2.74,7,Standard,778.6114166,37.05494075,27 Years and 4 Months,No,68.49550493,778.5223941,High_spent_Small_value_payments,568.802346,0,-1.5792,0.6734,0.5778,-1.3784,1.0105 +0x11821,CUS_0x5ed7,August,45,951-28-5056,Writer,65558.36,5715.196667,10,8,18.88954781,9,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Not Specified",56.50698698,33.84201129,6.4,10,_,2493.837804,36.24349808,8 Years and 6 Months,Yes,1592.475239,276.0053333,Low_spent_Medium_value_payments,288.7090133,0,-0.5513,1.5331,-0.7,0.008,-0.9649 +0x1182d,CUS_0x147a,August,20,947-32-0844,Writer,14384.4,1218.7,3,7,19,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",22.48510356,17,11.11,5,Standard,1465.3,35.84786534,7 Years and 3 Months,Yes,65.49708377,10.79480579,High_spent_Large_value_payments,285.5781104,0,0.7874,-1.0427,-1.086,-1.0293,1.4498 +0x11839,CUS_0x5a5e,August,26,120-69-3385,Manager,107437.53,,4,4,9,1,Credit-Builder Loan,7.482427444,4.551448868,9.37,8,Good,56.41108914,40.16813281,15 Years and 11 Months,No,53479,154.5190409,High_spent_Medium_value_payments,906.9166059,0,-0.4676,0.0792,-0.1293,-0.5896,1.2181 +0x11845,CUS_0x2b09,August,46,485-08-1506,Engineer,7630.57,,5,5,20,6,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",39.99040492,19.17465402,19.96,13,_,3571.815013,27.85867234,2 Years and 8 Months,Yes,28.12958333,78.2001904,Low_spent_Small_value_payments,274.7583096,0,1.3481,1.0678,-0.2105,0.1227,1.2516 +0x11851,CUS_0x6b61,August,41,073-93-9541,_______,16734.13,,0,6,6,1,Debt Consolidation Loan,3.939833468,7,5.71,0,Good,1418.31,37.71791047,28 Years and 3 Months,No,15325,25.43481552,High_spent_Small_value_payments,367.6060798,0,-1.6739,1.0254,-0.9328,-0.387,-0.2238 +0x1185d,CUS_0xc49c,August,41,207-68-9585,Engineer,121813.72,9866.143333,5,1,9.288361749,100,Personal Loan,5.414351688,8,11.14,8,_,203.170025,26.52794293,,No,57.1433571,712.4743236,High_spent_Medium_value_payments,925.8689014,0,-0.9962,-1.0362,-1.4581,0.4369,-0.0101 +0x11869,CUS_0x5952,August,19,#F%$D@*&8,_______,58307.97,,7,10,22.06745738,5,"Debt Consolidation Loan, Student Loan, Auto Loan, Personal Loan, and Home Equity Loan",24.99354828,,21.3,11,Bad,5108.320391,29.55179965,5 Years and 3 Months,Yes,208.5992921,71.71667441,!@9#%8,423.8634956,0,-1.307,-0.003,-0.2405,-0.5035,-0.5004 +0x11875,CUS_0x957c,August,31,271-98-0952,Journalist,130782.4,10773.53333,6,38,9.288361749,4,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",16.81377479,16,9.95,4,Standard,492.86,29.63126,17 Years and 10 Months,No,359.2959398,1079.500495,Low_spent_Small_value_payments,348.4943598,0,1.0371,-0.7488,-0.0513,0.0151,0.4861 +0x11881,CUS_0x311a,August,47,381-74-5902,Media_Manager,48698.78,3865.231667,8,3,11,4,"Home Equity Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,20,10.06,8,Standard,850.37,37.66809782,20 Years and 3 Months,No,143.351366,97.2287133,High_spent_Medium_value_payments,395.9430874,0,1.4691,-0.1559,0.0159,0.8803,0.7621 +0x1188d,CUS_0x35a4,August,39,200-57-9926,Engineer,81199.04,6683.586667,6,7,28,7,"Auto Loan, Not Specified, Student Loan, Home Equity Loan, Mortgage Loan, Auto Loan, and Auto Loan",14.29503382,11,10.3,9,Standard,2436.17,30.47153374,19 Years and 5 Months,NM,427.6528891,118.4796054,High_spent_Medium_value_payments,372.2261722,0,0.2305,0.2962,1.3714,0.2299,0.6317 +0x11899,CUS_0xc4b0,August,41,684-87-0292,_______,31490.63,2766.219167,7,5,17,0,,9.375427116,8,7.39,2,_,708.5,29.63024914,,Yes,0,196.5539161,Low_spent_Medium_value_payments,360.0680005,0,2.1832,-1.9697,-0.0112,0.1967,0.0165 +0x118a5,CUS_0xb70f,August,42,745-06-4072,Lawyer,42708.16,3595.013333,0,4,9,100,"Personal Loan, and Not Specified",6.599549724,9,3.67,7,Good,1180.614158,23.33928321,,No,55.48764122,,!@9#%8,230.4098682,0,1.5513,0.0521,-0.9865,0.2571,-1.5884 +0x118b1,CUS_0xecb,August,21,899-79-3678,_______,141688.28,11574.35667,5,6,2,2,"Home Equity Loan, and Credit-Builder Loan",,12,4.19,5,Good,1030.440723,35.42106619,29 Years and 11 Months,No,145.9531129,1073.877831,Low_spent_Small_value_payments,354.6848342,0,0.6776,0.5842,0.2401,0.5746,-1.6163 +0x118bd,CUS_0x9e9d,August,41,904-32-3540,Developer,19125.48,,10,7,31,6,"Not Specified, Home Equity Loan, Student Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",25.66033657,14.93979241,12.75,,Standard,1578.238365,28.65134674,6 Years and 3 Months,NM,57.88700145,75.57120334,Low_spent_Medium_value_payments,303.9207952,0,-0.726,0.3106,0.3732,0.4912,1.0828 +0x118c9,CUS_0x54e8,August,36,115-27-3103,Lawyer,17501.4,1351.45,9,6,30.06745738,2,"Student Loan, and Debt Consolidation Loan",,18,,7,Standard,1612.940954,36.24653133,5 Years and 10 Months,Yes,24.57920733,10000,Low_spent_Large_value_payments,245.840279,0,-0.9215,-0.3065,-0.6986,1.7491,-1.3453 +0x118d5,CUS_0x6ed7,August,45,759-77-2479,Media_Manager,44915.91,3138.630939,3,6,20,3,"Auto Loan, Auto Loan, and Personal Loan",15.54485057,12.11496475,17.53,7,Standard,1941.571217,27.17414417,15 Years and 2 Months,NM,537.0395603,80.2325557,High_spent_Large_value_payments,449.5886949,0,-1.8409,1.4068,0.3305,0.4324,-0.1183 +0x118e1,CUS_0x5a1a,August,80,#F%$D@*&8,Journalist,32599.32,,3,6,7,1,Auto Loan,,6,6.61,1,Good,1158.546594,25.69727442,32 Years and 0 Months,No,27.13278731,85.84936974,High_spent_Medium_value_payments,393.3939527,0,2.1754,-1.7561,-0.5067,0.6423,-1.2414 +0x118ed,CUS_0x56e7,August,18,476-63-4984,Lawyer,14581.315,,8,4,10,6,"Auto Loan, Payday Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",,19,7.67,8,Standard,471,29.04057767,,NM,61.62907954,57.84578065,Low_spent_Medium_value_payments,267.8360981,0,-0.2632,-0.2106,0.7674,-0.6802,-0.3938 +0x118f9,CUS_0xebd,August,38,528-72-4824,Engineer,7183.53,,2,2,15,6,"Student Loan, Personal Loan, Debt Consolidation Loan, Student Loan, Payday Loan, and Student Loan",29.26762371,21.8467855,8.23,11,Standard,2374.913721,33.7447273,18 Years and 5 Months,NM,35.27023227,,Low_spent_Small_value_payments,248.5437318,0,1.76,-0.5405,-0.0626,0.6083,-0.1657 +0x11905,CUS_0x875,August,53,182-17-1231,Entrepreneur,21568.28,1606.356667,3,6,9,0,,,19,2.26,2,Standard,1039.53,34.74075985,19 Years and 6 Months,No,0,,Low_spent_Small_value_payments,256.0949691,0,-1.3228,0.7565,0.3571,-2.1739,0.6106 +0x11911,CUS_0x1864,August,43,165-11-0805,Journalist,485755,8238.57,2,5,2.288361749,4,"Not Specified, Mortgage Loan, Personal Loan, and Mortgage Loan",0.397603,5,17.32,1,Good,128.48,38.08155488,28 Years and 6 Months,No,177.5035855,719.7805599,Low_spent_Small_value_payments,636.5103156,0,-0.5526,0.417,-1.7655,0.9608,-0.398 +0x1191d,CUS_0xa7d5,August,43,795-17-8225,Accountant,16595.94,,7,5,28.06745738,4,"Auto Loan, Home Equity Loan, Credit-Builder Loan, and Student Loan",22.36811522,15,18.35,6,Standard,1970.570954,29.59053704,7 Years and 2 Months,Yes,40.69342046,81.28054359,Low_spent_Medium_value_payments,248.905248,0,-1.5644,2.4089,0.2246,-0.7484,-1.3347 +0x11929,CUS_0x5a3d,August,25,266-30-4842,Musician,51711.96,4094.33,7,7,22.06745738,8,"Debt Consolidation Loan, Student Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Not Specified",,25.37972443,8.95,17,Bad,3227.167147,29.81696238,,NM,289.527895,,Low_spent_Small_value_payments,193.8773107,0,-1.1066,0.5366,0.4375,-1.0055,-0.8424 +0x11935,CUS_0xf15,August,26,881-11-1453,Developer,45652.17,,8,6,12.28836175,6,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Payday Loan, and Credit-Builder Loan",10.75776454,10,17.94,8,_,28.54,25.92565891,10 Years and 11 Months,Yes,160.4733036,574.4083254,Low_spent_Medium_value_payments,353.890582,0,0.3336,-0.5335,1.2698,0.5601,-1.3942 +0x11941,CUS_0x2297,August,43,#F%$D@*&8,Teacher,16084.71,,7,10,25,6,"Student Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Personal Loan",27.85842981,21,29.57,12,Bad,3647.98,26.83654032,7 Years and 0 Months,Yes,60.13711991,119.9011713,Low_spent_Medium_value_payments,251.4009588,0,0.3186,-0.1014,1.3562,-0.5579,-1.8313 +0x1194d,CUS_0x6587,August,28,#F%$D@*&8,Architect,118763,,0,7,7.288361749,4,"Payday Loan, Student Loan, Payday Loan, and Not Specified",5.785763637,8,2.78,3,Good,293.1572269,36.11871219,29 Years and 4 Months,No,269.2018929,,High_spent_Medium_value_payments,813.3547286,0,-0.3639,-0.467,-0.3499,0.2316,-0.4301 +0x11959,CUS_0x1fec,August,49,#F%$D@*&8,Media_Manager,26440.13,,5,6,12,4,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",23.78963482,16,6.79,5,Good,62.65244539,29.84760394,24 Years and 6 Months,NM,61.18174858,155.3732074,High_spent_Small_value_payments,282.9047606,0,-0.9316,0.325,-1.3598,0.9872,0.7346 +0x11965,CUS_0x15a9,August,39,827-07-8942,Writer,10737.365,,8,4,14,4,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",,16,16.61,8,Standard,1126.18,38.02931709,19 Years and 0 Months,Yes,19.50258106,28.45240848,High_spent_Small_value_payments,300.5230521,0,-0.4664,0.6921,2.3886,-1.3606,0.8662 +0x11971,CUS_0x1612,August,38,147-97-2500,Media_Manager,143823.12,11901.26,7,4,10,4,"Home Equity Loan, Payday Loan, Home Equity Loan, and Auto Loan",13.58403545,11,14.6,7,Standard,1436.53,39.49249398,31 Years and 10 Months,NM,373.970156,743.3793492,Low_spent_Medium_value_payments,352.7764948,0,-0.0855,0.0819,-0.3625,-1.6167,-1.3045 +0x1197d,CUS_0xb096,August,23,249-75-5523,Writer,20172.2,1612.987484,8,7,3213,100,"Auto Loan, Home Equity Loan, and Debt Consolidation Loan",22.99054381,16,6.03,0,_,778.09,31.12292936,24 Years and 4 Months,No,105.2917837,10000,High_spent_Small_value_payments,272.8368188,0,-0.7296,1.0281,-1.4233,0.2536,0.9832 +0x11989,CUS_0xab32,August,42,177-21-7542,Doctor,38873.66,3239.471667,10,5,17.06745738,7,"Personal Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Auto Loan",30.70945285,18,14.54,9,Bad,3597.260954,29.11296463,12 Years and 2 Months,Yes,225.6107082,44.15158478,High_spent_Medium_value_payments,277.4645857,0,-0.8824,0.1795,-0.4382,1.0862,0.5585 +0x11995,CUS_0xa3e1,August,46,943-92-4350,Scientist,19267.27,,10,8,26.95700519,6,"Home Equity Loan, Auto Loan, Payday Loan, Not Specified, Auto Loan, and Not Specified",,24.59299667,18.7,9,Bad,4506.767532,28.68740883,10 Years and 10 Months,Yes,1402.438269,,High_spent_Small_value_payments,208.951809,0,0.2561,-0.3926,0.9679,-1.0921,-1.1641 +0x119a1,CUS_0xbbd5,August,25,707-39-3944,Media_Manager,50391.24,4466.27,6,10,27,8,"Not Specified, Mortgage Loan, Home Equity Loan, Not Specified, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",,29.5263546,2.97,7,Bad,1944.478604,33.09392646,13 Years and 6 Months,Yes,306.74498,41.50071056,High_spent_Large_value_payments,338.3813094,0,-0.476,0.313,-1.0359,0.2578,1.168 +0x119ad,CUS_0x67b5,August,25,802-54-8603,Architect,42918.75,,0,5,2,2,"Payday Loan, and Personal Loan",,6,2.75,3,Good,370.57,33.04853087,23 Years and 9 Months,No,55.2429391,10000,High_spent_Medium_value_payments,391.9281462,0,-1.176,-0.8246,-0.2126,-0.1445,1.5365 +0x119b9,CUS_0x4250,August,30,042-68-7991,Doctor,59018.58,4383.318042,6,5,22,8,"Not Specified, Home Equity Loan, Personal Loan, Auto Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",39.34806705,21,24.98,8,Bad,2700.12,32.79908759,6 Years and 3 Months,Yes,509.4786166,184.3947972,!@9#%8,336.4450445,0,1.6301,0.4154,0.8782,-0.1459,-0.2682 +0x119c5,CUS_0xa222,August,26,151-84-0483,Manager,66376.28,5723.356667,3,5,5371,3,"Home Equity Loan, Auto Loan, and Payday Loan",17.25017021,12,7.14,3,_,1311.862799,29.53115693,33 Years and 5 Months,Yes,104.6317754,127.6516911,High_spent_Large_value_payments,594.5740762,0,-0.6629,0.927,0.202,0.461,1.9816 +0x119d1,CUS_0x536e,August,24,859-44-9371,Doctor,13100.02,,7,5,6,5,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",30.12311123,24.39632653,10.64,13,Standard,793.3609712,37.33240419,11 Years and 3 Months,Yes,41.17713179,95.54954898,Low_spent_Small_value_payments,277.9401526,0,1.5188,-0.4676,0.5158,1.8531,-1.9539 +0x119dd,CUS_0x57dc,August,35,019-51-4007,Musician,99955.08,8388.59,8,4,20,4,"Home Equity Loan, Mortgage Loan, Student Loan, and Student Loan",9.575591766,8,4.86,7,Standard,132.59,31.66642219,29 Years and 2 Months,Yes,174.4718574,167.0295041,High_spent_Large_value_payments,737.3576385,0,-2.3508,0.3637,-0.4109,-0.1786,-0.5843 +0x119e9,CUS_0x863b,August,33,834-96-0538,Manager,56978.79,4742.2325,10,6,30,6,"Credit-Builder Loan, Personal Loan, Auto Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",33.75183052,23.24697916,10.62,8,Standard,1486.557651,24.99731566,7 Years and 4 Months,Yes,251.7241859,,!@9#%8,250.2325273,0,-1.2029,-0.6947,1.4748,-0.9277,1.1611 +0x119f5,CUS_0x4274,August,21,062-44-0758,Engineer,132174.64,10999.55333,3,5,6,1,Home Equity Loan,0.985433858,2,9.77,2,_,898.45,28.68148182,33 Years and 0 Months,No,95.09938772,551.449696,Low_spent_Medium_value_payments,733.4062496,0,0.0431,-0.2828,-0.7607,1.3079,-0.2832 +0x11a01,CUS_0x104a,August,37,#F%$D@*&8,Mechanic,14981.39,1461.449167,2,7,5,4,"Mortgage Loan, Auto Loan, Not Specified, and Payday Loan",,6,0.63,4,Good,1122.46,39.64164182,32 Years and 3 Months,No,38.11596752,164.8891815,Low_spent_Small_value_payments,233.1397677,0,0.2195,0.8025,1.4717,0.7619,0.7782 +0x11a0d,CUS_0x7e62,August,35,192-82-4192,Developer,88940.76,7406.73,0,5,3,1,Not Specified,,6.030343881,2.16,5,_,1610.484847,24.74628818,31 Years and 9 Months,No,67.64255419,,Low_spent_Large_value_payments,420.4398057,0,0.3557,-0.2905,-0.6368,1.431,0.8167 +0x11a19,CUS_0x7dec,August,19,871-76-8159,Journalist,72245.76,5549.529946,9,10,20.06745738,5,"Not Specified, Mortgage Loan, Not Specified, Home Equity Loan, and Payday Loan",,27,1.79,9,Bad,4552.530954,38.44272117,2 Years and 9 Months,Yes,857.3577219,217.7050106,High_spent_Medium_value_payments,334.5150334,0,0.1824,-0.8998,-0.2955,1.2367,-0.8737 +0x11a25,CUS_0xc4bc,August,37,497-31-5365,Writer,28455.14,2524.261667,6,4,10,4,"Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",,9,7.89,5,_,784.87,28.91788982,18 Years and 0 Months,No,69.2844669,83.76932083,High_spent_Medium_value_payments,349.3723789,0,-0.175,-0.0881,0.5182,-0.0872,-1.0558 +0x11a31,CUS_0xbf94,August,40,#F%$D@*&8,Manager,159032.52,,0,1,10,3,"Payday Loan, Debt Consolidation Loan, and Mortgage Loan",11.5496189,10,2.21,3,Good,1292.52,39.19384564,32 Years and 8 Months,No,388.0236417,,High_spent_Large_value_payments,983.5621722,0,0.0932,-0.9841,1.6447,0.4409,0.9618 +0x11a3d,CUS_0x770a,August,35,288-28-5813,Entrepreneur,29327.1,,6,6,18,5,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Home Equity Loan",26.86842013,21.66718861,4.18,14,Standard,1565.895545,32.46800343,18 Years and 11 Months,NM,74.11511962,,Low_spent_Large_value_payments,253.1008928,0,-0.4311,-0.3233,-0.9933,-1.7256,-0.5809 +0x11a49,CUS_0xc323,August,33,568-14-9758,Manager,40550.16,3333.18,6,7,26,5,"Auto Loan, Payday Loan, Home Equity Loan, Payday Loan, and Not Specified",38.56438238,19.97136359,4.51,14,Bad,5361.644047,38.80136197,4 Years and 3 Months,NM,85.25108556,,High_spent_Medium_value_payments,356.8512757,0,0.2916,0.3176,0.8163,-0.5003,0.5582 +0x11a55,CUS_0xa00a,August,18,221-91-6056,Writer,176295,14960.25,5,2,9,2,"Home Equity Loan, and Auto Loan",9.734963023,10,1.32,1,Good,39.07255889,33.25142407,18 Years and 3 Months,No,158.3737327,11654.69222,!@9#%8,1376.326693,0,0.6319,-0.1934,0.0612,2.3107,0.5487 +0x11a61,CUS_0x3a39,August,39,105-23-4167,Journalist,18692.02,,2,4,1,1,Mortgage Loan,0,3,2.43,4,Good,1087.08861,34.53180092,16 Years and 10 Months,NM,8.616123308,166.054446,Low_spent_Medium_value_payments,283.297825,0,-0.6158,0.2892,-0.3868,1.2981,0.7321 +0x11a6d,CUS_0x6119,August,45,388-77-7201,Scientist,1379874,1548.300833,8,9,31.88954781,9,"Mortgage Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",32.26054312,19,31.94,11,Bad,3106.79,28.7742898,6 Years and 3 Months,Yes,1427.948948,,High_spent_Medium_value_payments,264.0841829,0,1.2957,0.4836,-1.4562,-0.0689,-0.7509 +0x11a79,CUS_0x2b61,August,41,255-12-4906,Teacher,33606.82,,7,5,19,100,,11.92015828,9,4.36,2,Standard,1295.38,35.51170532,24 Years and 5 Months,Yes,0,70.81388506,!@9#%8,471.7429483,0,0.8436,-0.3795,0.1124,0.6917,1.2708 +0x11a85,CUS_0x675c,August,30,457-87-2144,Media_Manager,17905.56,,6,5,28,6,"Debt Consolidation Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",23.78579957,9.697526222,9.52,,Standard,2214.57142,28.12561532,8 Years and 2 Months,Yes,53.29406263,46.10582459,High_spent_Small_value_payments,305.6131128,0,-0.4869,-2.1783,-0.2382,-0.3729,-0.0108 +0x11a91,CUS_0x5f06,August,42,873-56-8770,Doctor,8835.54,,4,6,29,7,"Mortgage Loan, Student Loan, Mortgage Loan, Not Specified, Auto Loan, Home Equity Loan, and Home Equity Loan",18.16423406,16.38868835,19.33,8,Standard,2189.308906,30.89088672,6 Years and 8 Months,Yes,40.03825896,58.76782262,Low_spent_Medium_value_payments,251.8234184,0,0.7722,0.3641,1.9971,0.7032,-0.7533 +0x11a9d,CUS_0x563c,August,40,366-24-0480,Mechanic,58416.36,,6,6,29,5,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",44.86234249,25,8.2,11,_,1300.14,30.54114517,11 Years and 10 Months,Yes,224.2047013,181.8786451,High_spent_Medium_value_payments,331.6196536,0,1.1565,1.0354,0.487,0.4738,0.1026 +0x11aa9,CUS_0x7f4b,August,30,785-54-6479,Accountant,31920.78,2690.065,1,3,10,1,Student Loan,12.81829125,,0.97,2,Good,310.0968596,24.23058235,17 Years and 11 Months,No,15.34406131,,Low_spent_Large_value_payments,442.5124946,0,-0.1404,0.67,-1.516,0.5541,-0.4059 +0x11ab5,CUS_0x5471,August,80,661-55-5194,Doctor,17535694,2811.215833,3,4,1.288361749,2,"Payday Loan, and Mortgage Loan",19.02529619,17,16.62,4,Good,57.35029397,34.51009976,16 Years and 9 Months,NM,38.48182907,510.1430046,High_spent_Medium_value_payments,416.0388718,0,1.7287,-0.387,-0.7438,1.5212,-0.3976 +0x11ac1,CUS_0x99b3,August,32,815-96-4134,Entrepreneur,7230.615,,9,6,3664,8,"Not Specified, Student Loan, Student Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Home Equity Loan, and Student Loan",,22,5.04,15,Bad,4492.18,31.55258355,14 Years and 6 Months,Yes,42.54340334,16.30867587,High_spent_Large_value_payments,263.3030458,0,0.6173,0.4636,-1.4834,-0.2239,-0.5677 +0x11acd,CUS_0x2c87,August,55,800-16-9117,Journalist,33103.85,2512.654167,3,3,14,3,"Credit-Builder Loan, Payday Loan, and Student Loan",26.57007175,19,10.39,3,_,521.92,27.77846892,25 Years and 8 Months,Yes,73.93236798,135.345118,Low_spent_Small_value_payments,331.9879307,0,-0.9554,0.0703,0.0669,-0.4549,-0.417 +0x11ad9,CUS_0x7058,August,32,176-82-9202,Architect,16276.325,,5,5,11,1,Not Specified,2.500459776,4.711264295,8.47,5,_,811.1292464,32.92296297,33 Years and 0 Months,NM,12.57618492,114.6680007,Low_spent_Small_value_payments,283.791856,0,-0.3321,0.5852,-0.4176,-1.3196,0.7576 +0x11ae5,CUS_0xa9e,August,37,644-91-0094,Architect,80247.24,6622.27,7,6,21,4,"Payday Loan, Payday Loan, Not Specified, and Payday Loan",22.5159443,17,12.7,12,Bad,1266.03,38.47198378,19 Years and 0 Months,Yes,164.4474383,657.0438778,Low_spent_Medium_value_payments,120.7356839,0,-0.2141,0.2439,2.3233,0.1331,-1.044 +0x11af1,CUS_0xc5cb,August,26,179-93-9579,Journalist,31113.36,2780.78,313,5,7,3,"Mortgage Loan, Auto Loan, and Personal Loan",,12,10.46,7,Standard,1151.7,30.01106567,13 Years and 8 Months,Yes,70749,101.309798,Low_spent_Medium_value_payments,383.6152192,0,-0.2524,0.3791,-0.1669,-0.8987,0.5567 +0x11afd,CUS_0x629c,August,49,797-28-8508,Journalist,81254.12,6696.176667,3,5,15,0,,,9,6.97,7,Standard,442.23,29.39411087,22 Years and 5 Months,Yes,0,238.6851026,Low_spent_Medium_value_payments,710.932564,0,0.1081,-0.2853,1.0537,0.5148,1.2047 +0x11b09,CUS_0x854f,August,20,124-72-9354,Media_Manager,8963.99,,8,10,27.88954781,9,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",38.73530692,18.21841371,25.25,9,Bad,4397.325861,37.32542494,11 Years and 9 Months,Yes,1375.540075,,Low_spent_Small_value_payments,255.3480875,0,0.3919,1.919,-0.6734,-0.595,1.3855 +0x11b15,CUS_0x3bde,August,45,262-48-5505,Journalist,34980.94,,1,5,7,3,"Home Equity Loan, Mortgage Loan, and Mortgage Loan",11.36405369,11,4.66,3,Good,641.6625813,27.29515905,17 Years and 3 Months,NM,52.92380656,,High_spent_Large_value_payments,430.0863884,0,-1.785,-0.3714,-1.4208,-1.0896,1.0696 +0x11b21,CUS_0x954e,August,31,437-48-1667,_______,95187.6,,4,7,14.28836175,0,,14.5459929,,3.29,2,_,1084.179652,36.873693,30 Years and 10 Months,Yes,0,556.1245172,High_spent_Large_value_payments,912.3043177,0,1.1487,-0.3026,0.9388,-0.145,-0.1954 +0x11b2d,CUS_0x34be,August,30,120-52-3028,Engineer,129800.32,11104.69333,8,6,20,1,Credit-Builder Loan,,9,12,1,_,358.85,38.63263023,24 Years and 5 Months,No,105.7173158,,High_spent_Medium_value_payments,1113.024058,0,-1.6409,-1.646,0.8669,-0.6968,0.5873 +0x11b39,CUS_0xad97,August,49,302-64-7091,Scientist,44835.39,3538.2825,3,4,4,4,"Student Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",24.18631199,14.39028628,7.53,9,Good,1065.914378,36.64618578,15 Years and 10 Months,No,96.92470263,116.7089434,High_spent_Medium_value_payments,390.194604,0,-0.2117,-0.0112,0.7242,0.6682,0.3847 +0x11b45,CUS_0x6e61,August,21,974-44-7143,Teacher,44806.6,,0,3,7,4,"Student Loan, Personal Loan, Not Specified, and Personal Loan",,7.197485119,11.87,0,Good,195.9096743,38.51611643,21 Years and 11 Months,No,109.5558085,10000,High_spent_Large_value_payments,494.5102571,0,0.9154,-1.0086,2.1855,-0.6649,-0.0484 +0x11b51,CUS_0xb63c,August,19,147-90-5013,Engineer,39503.02,3525.918333,3,4,7,4,"Payday Loan, Payday Loan, Mortgage Loan, and Payday Loan",19.50841299,18,10.3,8,Standard,1092.71,34.60750731,27 Years and 11 Months,Yes,114.2710467,,Low_spent_Small_value_payments,169.3864286,0,-0.9451,-0.3483,-0.7428,0.7219,-0.7711 +0x11b5d,CUS_0x9378,August,27,272-50-2716,Media_Manager,7055.84,,6,6,32,6,"Not Specified, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",36.38269917,24.89706927,19.46,11,Bad,4173.958903,33.71993398,2 Years and 3 Months,NM,32.77675141,57.59229556,Low_spent_Small_value_payments,272.9296197,0,0.2848,1.6397,-0.684,-1.7374,0.2208 +0x11b69,CUS_0x7e63,August,49,926-75-5141,Mechanic,18622.57,,3,3,11.28836175,2,"Payday Loan, Home Equity Loan, and Credit-Builder Loan",,1,4.85,4,Good,103.5307545,25.89584442,32 Years and 6 Months,No,30.63571778,12059.00972,Low_spent_Medium_value_payments,288.2808501,0,-1.0052,-0.0381,-1.0698,1.0439,0.5867 +0x11b75,CUS_0x7e06,August,21,013-51-5521,Musician,64662.04,5532.503333,1,2,2,3,"Not Specified, Mortgage Loan, and Not Specified",9.306591575,9,2.41,4,Good,1223.568773,38.23672476,,No,83.84218529,,Low_spent_Small_value_payments,98.245212,0,1.2557,-1.5014,-0.6882,-0.9877,-0.8736 +0x11b81,CUS_0x5cb6,August,43,361-21-7377,Scientist,11115.32,,7,3,8,4,"Credit-Builder Loan, Student Loan, Student Loan, and Credit-Builder Loan",16.14491516,11,15.38,4,Standard,1138.26,27.5204811,,Yes,31.91085382,55.00765409,Low_spent_Medium_value_payments,257.9091588,0,1.3827,0.7598,-1.239,0.5507,0.7802 +0x11b8d,CUS_0xa67d,August,31,094-71-6973,Teacher,16972.37,,6,10,17,5,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",,18,27.2,15,Bad,4348.66,23.11142231,8 Years and 6 Months,Yes,48.91655728,19.15136559,High_spent_Large_value_payments,309.7684938,0,1.0076,0.7159,0.025,1.2994,-0.7074 +0x11b99,CUS_0x17c3,August,25,530-88-6920,Writer,144423.72,11953.31,2,7,0.288361749,2,"Not Specified, Personal Loan, and Mortgage Loan",13.52695898,12.58080639,10.6,9,Good,1398.814306,33.25537127,23 Years and 3 Months,No,294.8831636,1360.448745,!@9#%8,239.9365523,0,-0.4026,0.5276,-0.5765,-2.1751,0.5509 +0x11ba5,CUS_0xec4,August,53,910-16-3301,Mechanic,38041.56,2972.13,5,1108,10,3,"Not Specified, Home Equity Loan, and Personal Loan",0.172726455,3,10.97,4,Good,682.46,34.72187218,32 Years and 11 Months,No,78.74374981,158.0626821,Low_spent_Small_value_payments,350.4065681,0,0.4292,-0.7172,-0.6199,-1.3419,-0.6203 +0x11bb1,CUS_0xbdac,August,26,238-72-7105,Writer,35913.64,,7,6,32,2,"Mortgage Loan, and Mortgage Loan",21.44532307,15,5.4,8,Bad,1898,35.14173265,15 Years and 5 Months,Yes,33.91419525,291.8449068,Low_spent_Medium_value_payments,255.8212312,0,-0.2047,1.6325,0.9183,-0.0856,1.1136 +0x11bbd,CUS_0x8eb6,August,38,794-83-9230,Writer,14025.885,876.82375,4,5,6,100,"Not Specified, Debt Consolidation Loan, Personal Loan, and Payday Loan",20.40664113,13,-3.53,9,Standard,447.92,22.10323516,,No,38.254822,62.7176231,Low_spent_Small_value_payments,276.7099299,0,1.0233,-0.6448,-0.7244,1.287,1.081 +0x11bc9,CUS_0x4f4f,August,36,914-56-5754,Architect,40327.81,3450.650833,1,3,7,3,"Auto Loan, Personal Loan, and Auto Loan",11.7210479,10,1.76,1139,Good,424.5,36.68552503,24 Years and 0 Months,No,87.96659057,130.0351654,High_spent_Medium_value_payments,377.0633274,0,0.4249,2.35,-0.3216,-1.1986,-0.0357 +0x11bd5,CUS_0x5262,August,32,541-53-3205,Developer,78339.66,6562.305,3,4,18,2,"Credit-Builder Loan, and Not Specified",18.49470665,14,6.66,6,Standard,285.36,37.28796243,19 Years and 5 Months,No,87.23420832,10000,Low_spent_Medium_value_payments,262.9250773,0,0.0829,-0.003,1.7425,0.6565,-0.2153 +0x11be1,CUS_0x40f9,August,46,455-57-8774,Architect,122364.84,10078.07,8,4,9.288361749,0,,15.15176308,,4.6,4,Standard,1063.73,37.33995137,33 Years and 4 Months,No,0,10419.93746,Low_spent_Medium_value_payments,787.9504781,0,-0.2592,-0.4926,0.099,0.6145,0.9528 +0x11bed,CUS_0x6331,August,38,664-06-1739,Lawyer,38554.72,3083.893333,2,7,10.28836175,100,,12.50495605,13,5.58,1,Good,428.6169086,25.73994379,24 Years and 0 Months,No,0,697.1777982,!@9#%8,334.3910753,0,-0.9268,-1.0184,0.1497,-0.2929,-1.4556 +0x11bf9,CUS_0x3da0,August,47,670-72-0248,Journalist,59775.24,5259.27,4,6,16,0,,22.65906338,15,2.69,9,Standard,787.76,38.66367295,20 Years and 6 Months,No,0,200.254931,High_spent_Medium_value_payments,575.672069,0,-0.3601,-0.9389,0.4028,0.9773,-0.5492 +0x11c05,CUS_0x6cd4,August,43,818-10-5790,Musician,27265.17,2101.653319,3,6,1010,0,,15.52366796,10,1.08,2,_,424.7435812,25.32293513,32 Years and 6 Months,Yes,309.4441809,,Low_spent_Small_value_payments,372.0059701,0,0.75,-2.8872,0.2626,0.6312,0.9095 +0x11c11,CUS_0x26d0,August,45,018-39-9919,_______,56705.7,,3,6,4.288361749,2,"Credit-Builder Loan, and Auto Loan",1.934157369,6,11.4,4,Good,207.43,25.10822812,17 Years and 10 Months,No,61.27521832,487.6731898,!@9#%8,616.5365529,0,-0.2923,0.0077,0.4894,0.9594,0.4444 +0x11c1d,CUS_0xc1e9,August,23,582-29-9428,Scientist,38535.5,3208.342954,7,9,33.06745738,2,"Credit-Builder Loan, and Student Loan",27.55594649,18,2.96,10,Bad,2361.180954,38.4026228,5 Years and 9 Months,Yes,256.3746045,42.43073817,High_spent_Medium_value_payments,480.6522485,0,0.1078,0.1269,-0.5489,-0.2298,1.2973 +0x11c29,CUS_0xe2b,August,19,078-20-5154,Journalist,10172.08,997.6733333,7,8,20.06745738,6,"Mortgage Loan, Payday Loan, Not Specified, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,,,8,Bad,3762.800954,39.67225943,14 Years and 3 Months,Yes,44.08367949,72.13318234,Low_spent_Small_value_payments,246.8301836,0,-0.3105,-0.6278,-0.5302,-0.4388,-0.3424 +0x11c35,CUS_0x2479,August,44,#F%$D@*&8,Musician,8083.345,,4,8,32,4,"Payday Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",18.49806818,16.31993892,14.15,8,Standard,2040.429278,27.64275942,19 Years and 4 Months,Yes,11023,,Low_spent_Small_value_payments,253.596993,0,0.1698,-1.2034,2.0179,-0.0224,1.1952 +0x11c41,CUS_0x3b89,August,19,119-87-9175,Manager,17923.05,,10,8,20.95700519,7,"Payday Loan, Not Specified, Auto Loan, Payday Loan, Home Equity Loan, Personal Loan, and Personal Loan",28.87434389,19,6.54,13,_,3773.120954,28.0240446,14 Years and 5 Months,NM,1386.638851,34.62791565,High_spent_Small_value_payments,284.0416146,0,-0.6651,-0.2596,0.0532,0.4208,-0.5123 +0x11c4d,CUS_0xbcfc,August,27,121-11-2540,Lawyer,36963.89,2902.324167,0,4,1,2,"Auto Loan, and Auto Loan",17.19561429,11.95446435,6.47,5,_,1357.483409,30.1455296,16 Years and 10 Months,No,46.4591139,100.4973455,Low_spent_Small_value_payments,433.2759572,0,-0.926,-0.1405,-0.4172,0.2664,-0.5609 +0x11c59,CUS_0x437,August,48,069-62-7151,Developer,105816.45,,4,3,11,100,Debt Consolidation Loan,,9,11.37,8,_,1342.14,36.72678618,20 Years and 9 Months,Yes,79.4959716,10000,Low_spent_Small_value_payments,629.5889219,0,-1.1703,0.8345,0.3111,-0.8985,-1.1564 +0x11c65,CUS_0xb4c4,August,52,842-39-5844,Entrepreneur,36064.74,2711.395,5,752,13,0,,,15,9.21,4,Standard,884.11,39.4057618,30 Years and 0 Months,Yes,0,275.7456473,Low_spent_Small_value_payments,285.3938527,0,-0.0673,0.8507,-1.0346,0.6748,1.2795 +0x11c71,CUS_0x376b,August,25,915-69-8780,_______,81779.54,,3,7,7,0,,,3.49125936,4.36,2,Good,905.0462051,36.19943627,,No,0,162.7306478,High_spent_Large_value_payments,737.4655189,0,-1.1082,0.4818,-1.1905,-1.1514,0.777 +0x11c7d,CUS_0x251a,August,26,849-10-1285,Mechanic,59112.81,4802.0675,5,7,8,3,"Not Specified, Not Specified, and Personal Loan",7.725033639,8,10.12,8,Standard,1421.95,24.63274315,22 Years and 8 Months,Yes,112.1915134,312.6407154,Low_spent_Medium_value_payments,335.3745212,0,-0.1954,-1.7487,-0.4298,-0.674,0.4369 +0x11c89,CUS_0x2226,August,31,428-65-5300,Engineer,35300.5,,3,5,14,4,"Payday Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",,11,12.08,6,_,404.81,27.24384924,14 Years and 4 Months,Yes,106.1040777,231.3295266,Low_spent_Small_value_payments,249.837229,0,-1.847,-1.1462,0.0273,-0.2973,-0.5041 +0x11c95,CUS_0xb98f,August,44,220-62-2638,Developer,82920.2,7201.016667,4,7,7,3,"Student Loan, Payday Loan, and Auto Loan",6.020550759,8,2.04,3,Good,1197.23,26.06113046,27 Years and 4 Months,No,163.0465911,189.1886592,Low_spent_Medium_value_payments,647.8664164,0,0.2631,0.1127,1.5394,1.0188,-1.5646 +0x11ca1,CUS_0x9fa9,August,51,057-69-4857,Entrepreneur,102737.64,8497.47,7,6,16,4,"Payday Loan, Home Equity Loan, Credit-Builder Loan, and Not Specified",16.63611372,10,16.46,8,Standard,484.79,28.85583568,29 Years and 11 Months,Yes,298.6968172,10000,!@9#%8,446.0777258,0,-2.2425,-0.6232,2.2877,-0.5973,-0.336 +0x11cad,CUS_0x26aa,August,20,639-27-1679,Journalist,52104,,9,6,27,9,"Mortgage Loan, Mortgage Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Auto Loan, and Auto Loan",44.80132396,25,18.75,9,Bad,4598.96,37.26980988,5 Years and 11 Months,Yes,308.7622748,,Low_spent_Large_value_payments,121.4113675,0,1.0492,1.0341,0.9375,-0.2238,-1.6835 +0x11cb9,CUS_0x4771,August,36,786-95-9000,Teacher,144051.84,11992.32,5,6,18,7,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",33.75225886,23.65986346,15.96,8,_,1435.730822,24.35913236,11 Years and 0 Months,Yes,585.8299976,10000,High_spent_Large_value_payments,622.5364409,0,0.3362,0.2386,0.1885,-0.1,1.1169 +0x11cc5,CUS_0x1869,August,30,716-60-2791,Developer,30643.51,,0,5,7,0,,13.53284098,12,1.74,5,_,1364.66,29.78164185,31 Years and 9 Months,No,0,10000,High_spent_Medium_value_payments,451.3866753,0,-0.5134,0.7972,1.3747,1.5466,0.2105 +0x11cd1,CUS_0x218e,August,18,687-39-9703,Accountant,14428.91,,6,8,29.06745738,5,"Not Specified, Mortgage Loan, Auto Loan, Not Specified, and Credit-Builder Loan",51.50155682,29.73540411,8.5,12,Bad,2207.131069,33.1015914,17 Years and 4 Months,Yes,39.76141223,45.76305678,Low_spent_Small_value_payments,280.6961597,0,-0.4836,0.2476,-0.7178,-0.6883,-1.9599 +0x11cdd,CUS_0x109d,August,45,260-21-1290,Writer,49140.87,4377.0725,10,6,28.06745738,6,"Not Specified, Not Specified, Mortgage Loan, Mortgage Loan, Payday Loan, and Payday Loan",,18,16.66,11,Bad,3174.210954,32.18708934,6 Years and 6 Months,NM,154.1724263,301.5937949,Low_spent_Small_value_payments,245.2207408,0,-1.5162,0.5152,0.5161,1.2269,-0.3437 +0x11ce9,CUS_0x92c8,August,31,703-48-9983,_______,16892.1,,3,2,5,2,"Not Specified, and Credit-Builder Loan",16.90609675,,9.17,5,Good,1063.31,33.80249227,29 Years and 0 Months,No,25.28560558,64.36059675,Low_spent_Large_value_payments,346.6212977,0,0.6158,-0.4265,1.1322,-1.0425,0.4889 +0x11cf5,CUS_0x1dc1,August,52,287-97-2627,Musician,30834.28,2471.523333,4,5,1,2,"Home Equity Loan, and Home Equity Loan",2.991766898,4.490243302,7.65,1,Good,1250.938536,25.67691141,25 Years and 3 Months,No,41.93027625,147.7971188,High_spent_Small_value_payments,317.4249383,0,1.0992,0.3953,0.3429,1.491,-0.5088 +0x11d01,CUS_0xbdcf,August,41,737-15-2835,Accountant,68291.7,,8,5,5,2,"Personal Loan, and Not Specified",,12,2.69,,Standard,1210.72,40.46921772,32 Years and 4 Months,Yes,62.35247097,118.3042553,High_spent_Medium_value_payments,610.8407737,0,-0.6613,-0.6104,-2.5866,-0.9443,0.6932 +0x11d0d,CUS_0x4034,August,53,224-53-0917,Doctor,26766.06,,7,5,9,3,"Mortgage Loan, Student Loan, and Auto Loan",13.22507042,11,14.6,2,Standard,530.27,38.10610591,22 Years and 4 Months,Yes,36.49758797,143.8549125,High_spent_Small_value_payments,315.2979995,0,0.2745,-1.3893,-0.2433,-1.8642,-1.0902 +0x11d19,CUS_0x77ca,August,26,851-21-4688,Lawyer,40031.94,3473.995,7,6,20,6,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Personal Loan",19.10619557,12,19.06,9,_,328.83,40.759207,18 Years and 9 Months,Yes,180.6347829,108.554592,High_spent_Medium_value_payments,308.2101252,0,-0.093,0.7477,0.2247,-0.4681,-1.2564 +0x11d25,CUS_0x5569,August,37,506-52-7572,Scientist,101565.68,8435.806667,4,7,11.28836175,4,"Mortgage Loan, Payday Loan, Auto Loan, and Personal Loan",19.10676752,16,2.39,3,_,825.71,32.92613118,19 Years and 10 Months,NM,181.4625427,602.495319,High_spent_Large_value_payments,719.560266,0,-2.1743,0.0478,-0.0834,1.0021,1.6692 +0x11d31,CUS_0x5bbc,August,27,720-10-7383,Lawyer,97900.4,8279.366667,3,5,18,1,Home Equity Loan,,17,7.9,5,Standard,891.71,32.28126634,28 Years and 4 Months,No,53.59226292,533.4485302,Low_spent_Medium_value_payments,520.8958736,0,0.2279,0.5528,-0.1639,0.6333,1.1071 +0x11d3d,CUS_0x619d,August,44,#F%$D@*&8,Doctor,32119.36,,3,5,12,7,"Not Specified, Payday Loan, Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",28.47189848,19.32934645,19.22,4,Standard,1130.656666,34.57824113,,Yes,109.3446515,107.79814,Low_spent_Small_value_payments,341.7185418,0,-1.094,-0.1563,0.4278,-0.5438,0.684 +0x11d49,CUS_0x6d35,August,38,908-27-4797,Mechanic,70058.88,,7,4,9,0,,26.79825039,18,9.63,1,Standard,289.82,26.8128579,31 Years and 11 Months,No,608.5196787,124.6198022,High_spent_Large_value_payments,714.4041978,0,0.3053,-0.6644,1.9884,1.5936,0.3149 +0x11d55,CUS_0x43af,August,20,751-81-2966,Architect,18214.08,,4,7,5,5,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",22.9164697,20,15.24,7,Standard,1581.51,27.50492641,12 Years and 8 Months,Yes,45.83789901,182.0140887,Low_spent_Small_value_payments,235.9320123,0,-0.8068,1.7659,0.1201,-1.0341,0.0132 +0x11d61,CUS_0xdda,August,26,446-78-2504,Engineer,14058.75,1367.5625,7,4,16,5,"Debt Consolidation Loan, Not Specified, Not Specified, Payday Loan, and Student Loan",,19.6495779,0.89,9,_,2192.64637,32.76381607,10 Years and 5 Months,Yes,45.9420573,,Low_spent_Small_value_payments,243.1168702,0,-0.6408,-0.1375,-0.276,-0.7367,-0.4219 +0x11d6d,CUS_0x59bd,August,41,792-25-6275,Architect,18823.32,,8,5,16,8,"Credit-Builder Loan, Not Specified, Not Specified, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",40.72926895,25.26725841,4.87,10,Bad,2966.551661,34.59992317,6 Years and 5 Months,Yes,103.0973299,,Low_spent_Small_value_payments,232.8633581,0,0.0115,-1.1763,-0.6648,1.6104,-0.6124 +0x11d79,CUS_0xb59c,August,53,878-43-3267,_______,28101.46,,5,7,8,3,"Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",14.33085571,11,1.85,4,_,391.5154872,31.31094631,26 Years and 10 Months,No,268.2680116,125.8219485,High_spent_Small_value_payments,336.5819096,0,-0.4347,2.483,1.0997,1.7378,-0.8179 +0x11d85,CUS_0xc4f2,August,33,525-81-0658,Musician,26886.51,2517.5425,5,3,9,6,"Student Loan, Personal Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Payday Loan",,9.021700523,11.88,6,Standard,1228.485784,25.64297826,17 Years and 0 Months,Yes,106.6325664,,Low_spent_Small_value_payments,186.2566854,0,-1.0466,1.5023,0.0758,-0.7332,0.3045 +0x11d91,CUS_0x820c,August,20,464-41-9296,Developer,18642.75,,9,6,24.06745738,9,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Personal Loan, and Credit-Builder Loan",24.92604191,17,29.69,16,Bad,4080.070954,41.75832027,5 Years and 6 Months,Yes,75.66762658,,High_spent_Large_value_payments,282.5856063,0,0.3918,-0.5196,1.4399,-0.0692,0.6237 +0x11d9d,CUS_0x8c36,August,20,243-75-6208,Engineer,16437.83,,9,7,31.06745738,6,"Not Specified, Payday Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",37.58966412,25.34295938,18.25,11,Bad,5322.51313,39.937287,13 Years and 8 Months,Yes,87.7753406,134.8249225,Low_spent_Small_value_payments,196.0278013,0,-0.109,0.2019,0.7702,-0.4063,-0.3071 +0x11da9,CUS_0x43b8,August,43,435-15-9519,Engineer,59695.36,5119.613333,6,8,23.06745738,6,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Not Specified",30.72915724,18,20.61,14,_,4671.650954,35.75820207,2 Years and 10 Months,Yes,274.9595753,61.60159905,High_spent_Medium_value_payments,398.6798711,0,-1.0042,-1.2343,-0.7296,-0.9402,-1.2908 +0x11db5,CUS_0xc2bf,August,19,514-00-5729,Entrepreneur,20138.87,1373.078949,3,5,6,3,"Payday Loan, Home Equity Loan, and Mortgage Loan",14.59777165,12,9.74,808,Standard,13.59,35.73347085,23 Years and 5 Months,Yes,194.4964439,120.8204171,Low_spent_Small_value_payments,278.2672731,0,0.3655,1.4069,0.2885,1.8922,-0.1659 +0x11dc1,CUS_0x51e5,August,31,001-11-0655,Teacher,8535.405,,7,5,35.06745738,2,"Not Specified, and Not Specified",,20.56645035,15.18,10,Standard,1951.585319,27.92966445,20 Years and 0 Months,Yes,7.981570049,,Low_spent_Small_value_payments,251.9868947,0,0.9427,-0.2576,1.3211,0.2611,-2.0877 +0x11dcd,CUS_0xb9da,August,37,562-36-1556,Entrepreneur,59665.2,,6,6,15,4,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Not Specified",46.54797126,26.48252049,9.49,15,_,2484.670346,34.98446468,,Yes,113.9663889,,High_spent_Medium_value_payments,486.1427229,0,0.1114,-0.4969,-0.2667,1.6106,0.3041 +0x11dd9,CUS_0x2452,August,18,144-82-6902,_______,65806.24,5626.853333,4,7,20,7,"Mortgage Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",19.84446823,18,12.26,11,Standard,2301.51,35.60031329,11 Years and 9 Months,Yes,229.4222204,477.5910084,Low_spent_Medium_value_payments,135.6721046,0,-0.5782,-0.6819,-1.2926,2.7162,-0.0575 +0x11de5,CUS_0x879a,August,44,056-87-0146,Manager,20957.27,,8,5,30,9,"Student Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",22.64551883,18,13.38,12,Bad,4912.34,37.20482572,11 Years and 11 Months,Yes,113.6460283,45.00825714,!@9#%8,280.3896312,0,-0.0804,0.3319,0.1966,-0.6,0.1583 +0x11df1,CUS_0x8892,August,31,226-34-4667,Writer,59730.57,5167.5475,4,3,5,3,"Student Loan, Mortgage Loan, and Home Equity Loan",,13,1.13,0,Standard,335.22,37.93236986,18 Years and 0 Months,No,109.3994769,373.5565809,Low_spent_Large_value_payments,303.7986922,0,-0.9222,-1.3896,1.7525,-1.6039,2.6688 +0x11dfd,CUS_0x2e97,August,47,898-69-7665,Entrepreneur,25759.24,,4,5,6,1,Home Equity Loan,,18,-0.31,5,Standard,766.58,29.1482858,33 Years and 5 Months,No,19.75971673,,Low_spent_Small_value_payments,223.4518434,0,0.9409,-0.5753,0.6398,-0.5143,-1.622 +0x11e09,CUS_0xb017,August,42,542-27-9387,Doctor,15766.76,1288.896667,8,6,26.06745738,8,"Not Specified, Not Specified, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Not Specified, and Student Loan",26.82853523,16,30.49,8,_,3703.300954,38.20347968,11 Years and 6 Months,Yes,76.95304496,171.0125407,Low_spent_Small_value_payments,144.203793,0,-0.181,-0.5314,-0.7443,-0.5421,-0.1577 +0x11e15,CUS_0x48a0,August,25,283-50-9361,Scientist,43239.81,,9,10,21,9,"Payday Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Not Specified, and Auto Loan",,27.70946227,25.37,15,Bad,4146.978002,30.90127986,6 Years and 10 Months,Yes,295.1759241,,High_spent_Medium_value_payments,199.8943989,0,-0.1689,-0.1761,0.6898,0.5706,0.1991 +0x11e21,CUS_0x756e,August,41,200-01-5537,_______,8128.965,,8,7,18,6,"Credit-Builder Loan, Home Equity Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Student Loan",26.44290358,17,9.63,11,Standard,1973,24.23084516,9 Years and 2 Months,Yes,33.01390638,,Low_spent_Small_value_payments,289.4143156,0,1.156,0.4176,-0.4446,0.5868,1.1334 +0x11e2d,CUS_0x65ab,August,39,310-13-3662,Entrepreneur,19592.58,1405.715,5,7,21,4,"Home Equity Loan, Student Loan, Home Equity Loan, and Personal Loan",24.35586871,17.57386514,8.82,12,Standard,2637.319161,31.86416789,13 Years and 2 Months,Yes,40.49688242,67.2754654,High_spent_Small_value_payments,292.7991522,0,-0.1369,0.7917,-1.0595,1.0739,-0.3547 +0x11e39,CUS_0x7793,August,28,800-26-8308,Journalist,35842.83,3172.9025,3,4,1,0,,,7,11.6,3,Good,1132.38,26.4238459,18 Years and 6 Months,No,0,304.6040354,Low_spent_Medium_value_payments,292.6862146,0,-0.0971,0.8293,0.5133,-0.7424,-2.1487 +0x11e45,CUS_0x90f,August,28,#F%$D@*&8,Developer,63455.1,5327.925,4,6,16,4,"Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",21.11924744,15,9.3,5,_,419.67,31.91728976,18 Years and 0 Months,Yes,205.6091496,147.4985688,High_spent_Medium_value_payments,429.6847817,0,-0.2896,-0.3106,-0.6506,0.1599,1.6367 +0x11e51,CUS_0x66e5,August,20,932-28-3481,Media_Manager,71892.94,,5,7,18,3,"Debt Consolidation Loan, Mortgage Loan, and Personal Loan",,11,9.85,7,Standard,1025.88,39.35858675,15 Years and 6 Months,NM,34004,237.2542276,High_spent_Medium_value_payments,463.4907,0,1.2194,-1.9068,-1.7899,-0.93,1.5133 +0x11e5d,CUS_0x6088,August,42,617-51-1535,Developer,18668.09,1735.674167,7,6,29,5,"Payday Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Mortgage Loan",,17.74258004,17.07,8,Standard,2569.289027,35.72551621,6 Years and 9 Months,Yes,72.98938875,38.08892512,High_spent_Small_value_payments,322.4891028,0,0.7761,-1.6323,1.2387,0.8489,0.0776 +0x11e69,CUS_0x98f5,August,31,078-09-2980,Accountant,30000.82,2213.068333,8,7,32,5,"Not Specified, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",17.95773976,,17.4,15,Standard,1557.420401,29.43869842,6 Years and 2 Months,Yes,80.47769164,,High_spent_Small_value_payments,247.7368873,0,1.321,1.3075,-0.4088,-1.1613,0.2102 +0x11e75,CUS_0x9533,August,40,596-51-3326,Media_Manager,136812.04,11572.00333,2,6,12,332,"Mortgage Loan, and Not Specified",0,0,11.91,4,Good,703.0209001,38.49498446,28 Years and 9 Months,No,165.4837962,583.5989988,Low_spent_Small_value_payments,767.1817816,0,1.1878,-0.3999,0.249,-0.1435,-0.143 +0x11e81,CUS_0xc10,August,21,643-78-7692,Teacher,127464.8,10572.06667,7,4,14,1,Home Equity Loan,,20.57210175,10.98,2,_,1017.491191,36.70877143,18 Years and 10 Months,Yes,85.26475732,483.6996178,Low_spent_Small_value_payments,778.2422915,0,-0.4308,-1.658,-2.5042,-0.9122,-0.0914 +0x11e8d,CUS_0x9081,August,22,008-89-2880,Scientist,71507.36,6072.946667,8,6,20,1,Not Specified,,15,25.05,8,Standard,1223,26.7852809,16 Years and 2 Months,Yes,50.18137687,132.9766798,High_spent_Large_value_payments,664.13661,0,-0.6191,-0.3771,0.5584,-0.8396,-0.6166 +0x11e99,CUS_0x1db4,August,38,218-60-8559,Mechanic,116798.36,9912.196667,8,7,7,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,13,6.51,0,Standard,1399.73,30.17807141,26 Years and 8 Months,Yes,256.2166164,481.5950262,Low_spent_Small_value_payments,543.408024,0,0.8125,1.1765,0.4816,-1.0843,-1.4608 +0x11ea5,CUS_0x3fcf,August,37,204-93-4852,Mechanic,71565.54,6161.795,8,5,10,3,"Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",20.68901983,17,10.64,4,Good,603.0702217,30.46391594,,No,140.5834784,947.8252898,Low_spent_Small_value_payments,,0,-0.9314,-0.8773,-0.4534,0.1361,0.6642 +0x11eb1,CUS_0x7837,August,43,051-86-5042,Media_Manager,33343.64,3042.636667,8,10,23.88954781,6,"Home Equity Loan, Personal Loan, Payday Loan, Payday Loan, Auto Loan, and Home Equity Loan",,27.05186706,0.56,13,_,5456.163388,31.88809386,0 Years and 9 Months,Yes,1411.844626,232.5918234,Low_spent_Large_value_payments,235.4971363,0,-1.1931,0.3807,-1.2518,-2.3319,0.92 +0x11ebd,CUS_0x3102,August,42,124-41-1150,Manager,40612.16,,3,4,8.288361749,0,,,11,5.84,4,Good,314.79,39.24880799,26 Years and 0 Months,No,0,533.6529981,High_spent_Medium_value_payments,496.2191296,0,0.9261,-0.2995,0.3727,-0.2118,-1.1633 +0x11ec9,CUS_0x2cab,August,41,245-98-9656,Architect,58651.88,4621.656667,9,8,26,2,"Payday Loan, and Auto Loan",48.41073684,27.05061287,7.19,11,_,1957.224789,26.48398633,6 Years and 11 Months,Yes,79.91358365,10000,Low_spent_Medium_value_payments,407.8924135,0,0.9024,-0.5742,-2.256,-0.913,1.4404 +0x11ed5,CUS_0xa347,August,22,423-71-7489,Lawyer,17585.29,,7,7,34.06745738,5,"Personal Loan, Personal Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",19.25263464,12.16047613,18.86,12,Standard,3086.939253,25.79466818,8 Years and 10 Months,Yes,44.78245156,,High_spent_Small_value_payments,236.6689054,0,1.6252,-1.086,-0.9028,0.9231,-0.929 +0x11ee1,CUS_0x42a5,August,45,013-16-5858,Manager,15191.03,1523.919167,6,6,21.06745738,5,"Not Specified, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",12.9906354,8,9.34,11,Standard,1647.470954,23.03297843,16 Years and 9 Months,Yes,48.6266581,33.22345953,High_spent_Medium_value_payments,293.8215111,0,0.5708,0.6633,-1.2717,0.7194,1.0086 +0x11eed,CUS_0x604,August,21,962-03-7975,Lawyer,65984.28,5278.69,8,3,24,4,"Personal Loan, Payday Loan, Home Equity Loan, and Auto Loan",18.15465635,,12.88,17,Standard,1573.325755,27.03287184,,Yes,169.7972369,405.1793377,Low_spent_Small_value_payments,242.8924254,0,-0.2937,-0.418,-1.228,0.136,-0.8131 +0x11ef9,CUS_0x3a57,August,39,058-04-9742,Teacher,83418.18,7113.515,0,4,6,1,Personal Loan,,3.455694278,11.9,2,Good,1081.551558,35.84877412,30 Years and 4 Months,No,42518,84.13479927,High_spent_Large_value_payments,807.6328199,0,-0.9504,0.4533,-0.9199,0.5588,-0.1815 +0x11f05,CUS_0x5128,August,18,273-66-6843,Entrepreneur,36471.78,,4,4,9,4,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",18.29115055,12,11.87,8,_,514.68,36.02524741,24 Years and 10 Months,Yes,87.05268918,120.7146971,High_spent_Medium_value_payments,354.2641138,0,0.9709,-1.8225,1.9839,-0.2532,1.5404 +0x11f11,CUS_0x68df,August,80,#F%$D@*&8,Developer,20422.48,1442.873333,5,7,5,0,,14.32926113,10,16.33,2,Standard,1283.736947,33.42750975,32 Years and 8 Months,Yes,0,37.9327254,High_spent_Small_value_payments,370.6410023,0,-0.763,-0.8942,1.1755,0.0688,1.6604 +0x11f1d,CUS_0x7341,August,36,227-87-8495,Journalist,16633.78,,5,3,9.288361749,2,"Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0.182881527,3,7.2,4,Good,101.5044352,28.43969749,21 Years and 8 Months,No,40.15058774,521.3519017,Low_spent_Large_value_payments,300.2600376,0,1.2312,0.8761,1.6358,1.0002,-0.3105 +0x11f29,CUS_0x88b6,August,31,978-01-9354,Journalist,93256.68,7697.39,5,7,19,1,Credit-Builder Loan,23.09765974,17,16.79,8,Standard,1125.67,26.2977011,18 Years and 8 Months,Yes,69.62122211,124.4802623,High_spent_Large_value_payments,815.6375155,0,0.2179,1.3192,-0.1968,0.7109,0.8977 +0x11f35,CUS_0x7e02,August,39,971-95-2589,Lawyer,68131.8,5801.65,8,10,19.88954781,7,"Payday Loan, Credit-Builder Loan, Student Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",22.94816531,17,26.04,12,Bad,4100.98,24.74424217,4 Years and 5 Months,Yes,1586.546483,550.6054211,Low_spent_Small_value_payments,38.68301485,0,0.9627,-0.9723,0.0651,0.0223,0.1992 +0x11f41,CUS_0x7aba,August,18,095-35-2056,Journalist,31136.8,,4,7,18,4,"Student Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",19.23792129,17,13.73,10,Standard,930.08,28.96232398,,NM,88.99986636,126.7239959,High_spent_Small_value_payments,305.5494711,0,0.3086,0.207,-1.9045,-0.5878,-0.5341 +0x11f4d,CUS_0xa520,August,36,861-14-7221,Musician,38555.62,3292.968333,2,3,4,4,"Not Specified, Not Specified, Home Equity Loan, and Student Loan",6.394157078,9,5.03,3,Good,316.2566695,27.58306815,20 Years and 5 Months,No,75.80655421,124.5857652,Low_spent_Large_value_payments,414.6035753,0,-0.1451,-0.4398,1.0619,0.2368,-0.5353 +0x11f59,CUS_0x3bbe,August,34,017-53-1609,Lawyer,102215.61,8482.9675,2,5,9.288361749,0,Mortgage Loan,,4,9.9,8,Good,73.94165659,37.1472244,30 Years and 9 Months,No,60.56736079,1356.175994,Low_spent_Small_value_payments,279.7387262,0,1.5125,0.6471,-0.7857,-1.3539,-0.414 +0x11f65,CUS_0xc6c7,August,53,367-39-2487,Manager,85498.65,,3,3,13.28836175,2,"Not Specified, Mortgage Loan, and Credit-Builder Loan",19.96261562,17,5.38,6,_,397.93,36.00451951,17 Years and 2 Months,Yes,151.7952771,664.4670094,High_spent_Medium_value_payments,585.0639244,0,-0.8154,0.6883,1.2726,0.4318,0.0081 +0x11f71,CUS_0x8d60,August,34,296-94-3235,Scientist,15330.755,,3,5,15,1,Auto Loan,28.10016148,17.58814156,19.47,10,Standard,1189.819068,32.09721521,12 Years and 10 Months,Yes,12.49941028,43.5701012,Low_spent_Small_value_payments,342.8867802,0,0.6841,-0.9975,0.5893,-1.1933,-0.9165 +0x11f7d,CUS_0x3c95,August,53,655-62-7433,Developer,138806.88,11661.24,6,6,7.288361749,0,,11.68414266,11,6.78,1,Standard,448.22,37.44825557,33 Years and 2 Months,Yes,0,700.4775317,!@9#%8,1125.583929,0,-0.4352,0.2263,-0.2793,0.3777,0.7747 +0x11f89,CUS_0x806c,August,40,944-68-1538,Entrepreneur,61228.6,4876.383333,10,7,33,4,"Student Loan, Payday Loan, Payday Loan, and Payday Loan",,3182.651979,16.16,16,_,2548.571287,28.0466723,18 Years and 0 Months,Yes,108.993644,201.7740746,Low_spent_Small_value_payments,466.8706147,0,-1.566,1.881,-0.0393,0.2879,1.1338 +0x11f95,CUS_0x47fe,August,22,740-19-9586,Teacher,7085.39,,9,7,16,6,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Student Loan, Personal Loan, and Credit-Builder Loan",33.94294816,18,22.03,10,Bad,3988.68,22.92132523,13 Years and 8 Months,Yes,82.70339407,82.25107892,Low_spent_Small_value_payments,248.6047278,0,-0.3762,-0.1584,1.9428,-0.9027,0.4957 +0x11fa1,CUS_0xa973,August,21,793-25-6763,Mechanic,20638.155,,2,5,5.067457376,0,,,2,3.16,3,_,1571.580954,36.55433647,27 Years and 8 Months,No,0,,High_spent_Medium_value_payments,353.5486071,0,-0.5919,-0.0194,-0.0901,-0.0003,0.0225 +0x11fad,CUS_0x689b,August,24,915-45-3725,Mechanic,20336.52,1587.71,4,5,19,5,"Personal Loan, Auto Loan, Auto Loan, Student Loan, and Personal Loan",27.1159127,17.96300059,13.05,5,Standard,1513.621518,37.31138024,15 Years and 5 Months,Yes,59.6606957,25.05555832,High_spent_Large_value_payments,314.054746,0,0.1011,0.6608,1.588,-0.1526,1.8942 +0x11fb9,CUS_0x4973,August,43,128-30-2776,_______,12291.445,,5,5,7.067457376,3,"Payday Loan, Credit-Builder Loan, and Home Equity Loan",19.11026595,13,20.49,4,_,1481.000954,29.7207058,21 Years and 9 Months,Yes,21.86769179,101.6879336,Low_spent_Small_value_payments,232.052795,0,0.3043,-0.6513,1.1614,-1.2604,-0.2988 +0x11fc5,CUS_0xadb2,August,42,807-07-8104,_______,142001.12,10508.05846,7,3,20,2,"Not Specified, and Payday Loan",18.86543652,15,9.64,11,Standard,237.3117666,32.41246895,13 Years and 11 Months,Yes,1701.955013,,High_spent_Medium_value_payments,846.5600838,0,1.3049,-0.8839,0.5449,0.2189,0.7383 +0x11fd1,CUS_0x3a41,August,42,745-44-6523,Musician,63473.68,5237.473333,0,4,6,0,,7.40675442,7,10.71,3,_,622.68,39.21831477,23 Years and 4 Months,No,0,43.4007407,!@9#%8,720.3465926,0,0.4892,1.4896,-0.015,2.1486,2.1148 +0x11fdd,CUS_0x2c10,August,32,561-72-0012,Engineer,51715.68,4529.64,8,8,15.88954781,7,"Home Equity Loan, Not Specified, Personal Loan, Personal Loan, Student Loan, Auto Loan, and Personal Loan",,24,28.99,11,Bad,3812.9,37.69605489,8 Years and 6 Months,Yes,45710.48344,184.1964897,High_spent_Medium_value_payments,332.4360381,0,0.3888,0.1028,0.1583,2.2034,0.9027 +0x11fe9,CUS_0x805b,August,45,511-47-4198,Journalist,37618.3,3285.858333,4,7,3,3,"Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",2.121863351,4,0.85,4,_,736.0917193,30.85200673,31 Years and 2 Months,No,79.93901796,150.235826,High_spent_Small_value_payments,379.5608832,0,-0.5503,-0.7686,-1.3897,-0.6451,-0.9187 +0x11ff5,CUS_0x86f4,August,20,607-39-4006,Architect,59923.89,,10,10,15,2,"Not Specified, and Payday Loan",26.88139948,14,15.47,11,_,2497.36,28.85833082,18 Years and 8 Months,Yes,94.81682821,195.4185132,Low_spent_Large_value_payments,458.1304086,0,-0.549,2.1889,-1.2142,0.3604,0.7391 +0x12001,CUS_0x82d,August,25,678-05-1602,_______,8167.74,,9,10,19,5,"Personal Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Student Loan",31.91573596,17,24.7,11,Bad,4335.7,35.93670465,8 Years and 5 Months,Yes,23.12936388,73.01020131,Low_spent_Small_value_payments,271.0249348,0,1.9932,-0.9305,-0.8056,1.7227,-1.3278 +0x1200d,CUS_0x5129,August,32,041-56-2811,Scientist,57150.74,,4,4,17.28836175,0,Personal Loan,,22.76825306,15.69,12,Standard,482.4773145,38.43583251,6 Years and 9 Months,Yes,24.21929847,,Low_spent_Small_value_payments,115.9820574,0,-0.2006,-0.459,1.0719,-1.1588,-0.3892 +0x12019,CUS_0x61ec,August,23,164-25-3351,Teacher,8749.465,,6,9,33.88954781,7,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Not Specified, and Debt Consolidation Loan",31.17128379,24,19.57,8,Bad,4676.17,23.71385692,11 Years and 0 Months,Yes,1354.518287,34.56488243,Low_spent_Small_value_payments,265.0989574,0,-0.3032,-1.6691,-0.0857,-1.4166,0.5479 +0x12025,CUS_0x15da,August,24,283-09-7565,Doctor,127014.28,10870.52333,7,6,14,3,"Payday Loan, Student Loan, and Not Specified",,13,,9,_,245.63,36.14219109,,Yes,215.3848503,323.4306765,Low_spent_Medium_value_payments,828.2368065,0,0.9449,-0.7228,-0.1957,-0.3371,-0.4428 +0x12031,CUS_0x7955,August,33,294-52-2292,Entrepreneur,42250.77,,0,4,3,0,,0,1,9.69,0,Good,1056.56,28.91385844,16 Years and 2 Months,No,0,111.8879746,High_spent_Medium_value_payments,474.5017754,0,-0.2474,-1.2991,0.8237,0.947,0.3229 +0x1203d,CUS_0x6d04,August,24,837-11-4072,Scientist,20734.2,1970.85,5,662,1.288361749,2,"Mortgage Loan, Auto Loan, and Auto Loan",0,1,5.23,3,Good,129.9747127,24.95276642,26 Years and 11 Months,No,32.92147168,518.4055815,High_spent_Medium_value_payments,330.5055727,0,-0.3698,-0.5073,0.1417,1.8444,1.5053 +0x12049,CUS_0x105c,August,80,998-18-7252,Journalist,127617.6,,0,4,5,3,"Not Specified, Mortgage Loan, and Payday Loan",2.855694172,6,12.22,0,Good,542.91,39.87736764,24 Years and 4 Months,No,211.054606,10000,High_spent_Medium_value_payments,861.6006704,0,1.837,-0.0107,-0.7795,-1.6189,-0.9855 +0x12055,CUS_0x6083,August,35,018-04-5329,Lawyer,17572.045,,5,5,0.288361749,100,"Credit-Builder Loan, Home Equity Loan, Auto Loan, and Payday Loan",,6,5.93,4,Good,109.83,23.62659261,,No,31.63069188,576.5147801,Low_spent_Small_value_payments,262.2256973,0,-0.6845,-1.4056,0.0728,-0.3877,1.3557 +0x12061,CUS_0xa7ab,August,23,307-59-3845,Teacher,71010.44,5667.536667,3,7,15,0,,15.30554235,12,8.24,11,Standard,1472.81,29.96383826,19 Years and 8 Months,NM,0,216.5436798,Low_spent_Small_value_payments,640.2099869,0,-1.7972,1.2697,1.3704,-0.1628,0.3645 +0x1206d,CUS_0x1370,August,32,710-06-0138,Writer,10216.36,,10,8,22,5,"Mortgage Loan, Personal Loan, Student Loan, Student Loan, and Personal Loan",36.36297564,27.38198068,19.55,6,Bad,4031.510645,29.4567378,,Yes,121.2297293,26.72371667,High_spent_Medium_value_payments,262.3304037,0,-1.1407,0.0934,0.2187,1.7019,-0.5366 +0x12079,CUS_0x8cbe,August,39,236-25-0124,Manager,76644.16,,5,4,9,3,"Student Loan, Student Loan, and Payday Loan",15.84416799,10,0.68,4,Standard,1234.9635,35.40526979,28 Years and 4 Months,No,932.564832,212.8498541,!@9#%8,580.0285075,0,-0.0392,0.1581,-0.7043,0.4807,-0.3074 +0x12085,CUS_0x5180,August,18,268-03-1866,Scientist,45245.52,3533.46,5,3,16,3,"Payday Loan, Personal Loan, and Personal Loan",23.9138581,16,14.02,11,Standard,2057.39,28.41345842,6 Years and 9 Months,Yes,86.08896255,,High_spent_Large_value_payments,425.3860694,0,1.5568,-1.36,-1.4564,0.7936,-0.1751 +0x12091,CUS_0xfb6,August,21,668-25-6453,Accountant,42165.91,3658.825833,4,3,7,0,,,11,7.73,6,_,981.66,26.85332895,30 Years and 8 Months,NM,0,,High_spent_Medium_value_payments,511.1070848,0,-0.1683,-2.0472,-0.9894,0.0075,-0.3756 +0x1209d,CUS_0x5525,August,45,832-59-7756,Doctor,80815.4,6862.616667,8,3,9,0,,20.84007382,14,6.37,2,Standard,575.33,34.57211716,33 Years and 0 Months,Yes,0,119.859764,High_spent_Large_value_payments,806.4019027,0,-0.4989,2.3715,0.3145,1.8254,-0.0013 +0x120a9,CUS_0x59d0,August,47,411-83-5846,Doctor,120171.48,9933.29,5,5,1.288361749,2,"Personal Loan, and Personal Loan",15.6672846,,,5,_,883.91,27.78404176,,No,139.7103732,895.2033045,Low_spent_Medium_value_payments,658.3527833,0,-0.5643,2.4193,1.3737,-2.3722,0.0652 +0x120b5,CUS_0xc76,August,43,916-79-7706,Mechanic,10227.655,,8,10,16.06745738,3,"Payday Loan, Personal Loan, and Payday Loan",44.15370073,24,7.56,12,_,2007.940954,25.77130266,19 Years and 4 Months,Yes,18.09524427,52.15534786,Low_spent_Small_value_payments,270.1595783,0,-1.3169,0.7638,-0.5438,0.3342,-1.1884 +0x120c1,CUS_0x39b2,August,29,215-58-5257,_______,81892.68,,6,6,20,4,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",37.26976653,26.90264493,16.22,8,_,2171.160676,24.02645205,10 Years and 9 Months,Yes,198.1620763,296.1309376,Low_spent_Small_value_payments,506.9459861,0,-1.8874,0.6546,0.0229,0.2507,-0.4749 +0x120cd,CUS_0x346d,August,33,049-22-6295,Manager,36136.49,,6,3,18,2,"Home Equity Loan, and Auto Loan",24.69834548,14,18.91,6,_,453.4,29.29616489,33 Years and 4 Months,Yes,42.4739898,219.4628038,Low_spent_Small_value_payments,331.1006231,0,0.3368,-1.1482,0.3337,1.0386,-0.2245 +0x120d9,CUS_0x9aef,August,47,632-70-4061,Scientist,67361.38,5497.448333,2,4,1,0,,1.298127594,4,11.47,6,Good,1013.66,25.92738544,17 Years and 3 Months,No,0,,Low_spent_Large_value_payments,601.0444132,0,0.7741,-0.3695,2.1475,1.1039,1.0515 +0x120e5,CUS_0xb2b5,August,32,824-84-8056,Mechanic,43985.8,,5,4,5,0,,21.46692725,19,5.56,3,Standard,715.46,26.82660425,25 Years and 5 Months,Yes,0,289.5431718,Low_spent_Small_value_payments,390.3051616,0,-0.3653,1.542,0.9713,0.1802,0.6541 +0x120f1,CUS_0x1d8d,August,24,306-63-6042,_______,17137.57,1617.130833,8,7,34,9,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,22.94040578,25.45,16,_,4105.660134,33.98647118,9 Years and 4 Months,Yes,119.532032,182.6730479,Low_spent_Small_value_payments,149.5080035,0,0.902,1.7206,-0.7325,-1.0986,1.577 +0x120fd,CUS_0xc5aa,August,46,#F%$D@*&8,_______,74106.94,5902.578333,4,5,9,0,,15.47910508,,2.06,4,Good,11.49,38.94201306,,No,66949,10000,High_spent_Small_value_payments,685.445191,0,-0.6031,-0.6578,1.5434,-1.092,0.2951 +0x12109,CUS_0x3948,August,29,450-87-5620,Mechanic,80235.27,6684.2725,7,7,9,2,"Debt Consolidation Loan, and Credit-Builder Loan",22.98569326,18,19.8,6,Standard,291.72,43.04394331,19 Years and 4 Months,Yes,91.17655185,108.8375017,High_spent_Large_value_payments,708.4131964,0,-1.9709,-0.6898,0.3805,0.8946,0.7752 +0x12115,CUS_0x6dc9,August,18,431-16-9515,Musician,17171.56,,6,3,16,3,"Mortgage Loan, Home Equity Loan, and Student Loan",21.44139112,17,16.25,8,Standard,146.6,40.03588928,9 Years and 3 Months,Yes,27.05387316,47.06704142,!@9#%8,336.3754187,0,-0.1648,0.5239,-0.4029,-0.0161,1.1928 +0x12121,CUS_0x5cc8,August,33,283-52-5386,Entrepreneur,118080.4,9899.033333,5,3,11,1,Credit-Builder Loan,,13,8.17,1,Standard,1201.75,34.81749682,23 Years and 0 Months,Yes,81.48586055,779.647304,Low_spent_Medium_value_payments,408.7701688,0,1.2868,-0.6529,0.5624,-0.2359,-1.0194 +0x1212d,CUS_0x3b72,August,48,708-35-4000,Manager,134533.32,11114.11,7,4,6,3,"Mortgage Loan, Debt Consolidation Loan, and Auto Loan",,20,0.97,5,Standard,434.36,23.13389208,16 Years and 3 Months,No,251.9882793,803.4681667,Low_spent_Small_value_payments,345.954554,0,-0.0647,-1.8667,1.0244,-0.1538,-0.4416 +0x12139,CUS_0x3f1d,August,21,540-99-5377,Musician,88434.96,,7,4,1002,2,"Student Loan, and Mortgage Loan",15.02660789,12,7.64,10,Standard,189.1,32.34216972,23 Years and 3 Months,Yes,143.6363938,163.403845,High_spent_Large_value_payments,680.8177612,0,-0.6744,-0.1691,2.0392,-0.7783,0.4066 +0x12145,CUS_0x1ebc,August,43,657-98-2592,Manager,122307.96,10230.33,1,5,5.288361749,0,,13.48803711,,2.31,5,Good,630.24,29.38102558,27 Years and 3 Months,No,0,,High_spent_Large_value_payments,1103.286335,0,0.8533,-1.3455,-0.2088,-0.5815,1.7327 +0x12151,CUS_0x504f,August,31,235-75-1663,_______,15548.34,1291.695,7,10,34.06745738,5,"Payday Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Personal Loan",,29.99528491,15.71,14,_,1763.312913,30.04640293,17 Years and 10 Months,NM,58.1549859,55.80894367,Low_spent_Medium_value_payments,268.4852825,0,0.1153,1.0539,-0.6688,0.5918,-0.1198 +0x1215d,CUS_0x9f95,August,26,166-65-6805,Mechanic,93106.05,,0,4,3,0,,10.12634188,8,9.96,2,Good,1454.68,43.37570194,18 Years and 2 Months,NM,0,241.4594613,Low_spent_Medium_value_payments,801.5242887,0,-1.0449,1.8846,2.0829,-1.2799,0.6322 +0x12169,CUS_0x2d7e,August,50,626-32-5386,Journalist,84673.2,,3,5,2,3,"Home Equity Loan, Student Loan, and Not Specified",1.372143826,5,2.09,1,Good,679.0999412,35.47935467,29 Years and 2 Months,No,130.5014997,285.6902209,High_spent_Medium_value_payments,577.7500441,0,1.0226,-0.1732,-1.0849,-0.2177,-0.5256 +0x12175,CUS_0xa36e,August,49,640-30-2701,Architect,36377.09,3146.424167,1,5,3,4,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Auto Loan",0,1,9.42,3,Good,822.54,33.41086199,16 Years and 2 Months,No,117.2794841,10000,!@9#%8,279.0054991,0,-0.1861,1.4558,0.476,0.7507,0.5461 +0x12181,CUS_0x94cf,August,37,168-36-8575,Entrepreneur,11403141,1237.526667,8,4,14,1,Auto Loan,23.2864525,18,6.13,2,Standard,1498.41,26.65164164,30 Years and 5 Months,No,13.03293872,75.89021739,Low_spent_Medium_value_payments,314.8295106,0,0.856,-1.0643,1.8156,-0.3043,-0.7226 +0x1218d,CUS_0x879d,August,25,788-22-2192,Manager,51557.73,4479.4775,10,7,22,3,"Debt Consolidation Loan, Payday Loan, and Mortgage Loan",27.22622647,15.12064923,6.04,9,Standard,1771.193623,28.6412053,10 Years and 9 Months,Yes,107.6469142,99.02300559,High_spent_Large_value_payments,481.2778302,0,0.5607,0.2838,0.1404,-0.6811,-0.3844 +0x12199,CUS_0x6fa7,August,80,162-09-1542,Developer,99403.32,8347.61,0,3,11,3,"Payday Loan, Mortgage Loan, and Home Equity Loan",9.496632727,9,0.72,1,_,904.93,39.07447004,23 Years and 11 Months,No,130.6197106,118.7304913,High_spent_Medium_value_payments,835.4107981,0,1.308,-0.4883,0.4568,-0.2949,-0.926 +0x121a5,CUS_0x6cda,August,80,780-03-4283,Writer,16586.58,1470.215,6,5,33.06745738,3,"Mortgage Loan, Not Specified, and Payday Loan",42.43072095,22.36960346,4.6,7,Bad,3003.265213,31.96926218,,Yes,22.91432794,80.64524755,Low_spent_Medium_value_payments,296.7416366,0,0.5477,-0.253,-0.2604,-0.8468,-0.9099 +0x121b1,CUS_0x799b,August,34,280-45-0102,Engineer,22007.11,,3,4,15.06745738,4,"Credit-Builder Loan, Personal Loan, Payday Loan, and Auto Loan",,14,2.48,2,Standard,1554.110954,36.461857,29 Years and 0 Months,Yes,45.12757853,145.078789,Low_spent_Medium_value_payments,261.4659278,0,0.2297,0.1651,-0.5876,-0.4796,0.9886 +0x121bd,CUS_0xab9d,August,35,976-87-8587,Musician,8391.185,,6,7,17,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Home Equity Loan",22.61179861,17.38084607,19.32,11,Standard,1721.124533,38.4787831,12 Years and 4 Months,Yes,21.83222707,,Low_spent_Small_value_payments,271.0723286,0,0.4595,0.7578,0.9579,0.0346,-0.0197 +0x121c9,CUS_0x2822,August,53,579-02-1738,_______,68763.14,5520.261667,5,2,1,2,"Home Equity Loan, and Home Equity Loan",2.317324553,6,6.72,5,_,1124.47284,38.54986692,24 Years and 0 Months,No,72.94696155,255.131777,High_spent_Medium_value_payments,503.3512424,0,1.176,0.2739,-0.2281,0.7682,-1.0227 +0x121d5,CUS_0x67b1,August,46,039-00-8391,Doctor,34209.8,,3,1,7,0,,6.811168101,7,13.51,,Good,905.9975005,33.78842954,26 Years and 2 Months,No,0,207.1295216,Low_spent_Small_value_payments,387.5626492,0,-0.9475,-0.3678,0.5757,0.9242,0.1935 +0x121e1,CUS_0xed4,August,80,329-84-6942,Architect,84738.63,,6,7,5.288361749,0,Personal Loan,16.41015295,14,19.72,10,Standard,381.11,39.99329172,18 Years and 11 Months,Yes,38.36419065,467.6054886,High_spent_Large_value_payments,883.2230318,0,-0.275,1.3624,-0.279,1.0464,0.0061 +0x121ed,CUS_0xc3c7,August,24,278-45-8598,Entrepreneur,41153.9,3322.491667,5,3,10,2,"Payday Loan, and Personal Loan",7.509925902,8,8.24,4,Good,775.8081264,39.16426925,26 Years and 6 Months,No,42.98560342,131.3369401,Low_spent_Large_value_payments,442.9149654,0,-1.6318,-0.1465,0.2912,1.7411,1.5558 +0x121f9,CUS_0x8293,August,23,588-86-8947,Mechanic,89254.77,7227.8975,8,5,18,1,Auto Loan,18.27677503,11,3.45,,Standard,997.64,29.06404197,25 Years and 9 Months,No,63.25482346,459.6111675,Low_spent_Small_value_payments,489.923759,0,0.1984,-0.2384,-0.4222,-0.2938,0.7068 +0x12205,CUS_0xb975,August,52,988-43-7974,Accountant,15308303,6301.5,3,6,19,100,"Student Loan, and Personal Loan",17.3404264,12,13.64,0,Standard,644.74,27.51352369,18 Years and 4 Months,Yes,92.88055091,,High_spent_Medium_value_payments,662.8151722,0,-0.0544,0.5434,-0.7424,0.2926,-0.0052 +0x12211,CUS_0x4c96,August,53,961-65-0909,Teacher,99868.83,8332.4025,2,3,1.288361749,2,"Auto Loan, Credit-Builder Loan, and Auto Loan",9.590547641,11,9.11,1,Good,617.4197553,32.8641957,22 Years and 6 Months,No,146.7012526,764.7821079,High_spent_Medium_value_payments,625.6221168,0,-0.7104,0.6426,-1.7846,-1.7973,-0.7747 +0x1221d,CUS_0x4ef6,August,39,164-29-1651,Scientist,31372.54,,8,6,28,7,"Auto Loan, Debt Consolidation Loan, Student Loan, Student Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",27.09101094,17.67791707,22.82,11,Bad,3540.909066,35.45463897,2 Years and 5 Months,NM,121.9598011,,Low_spent_Small_value_payments,222.4116025,0,-0.4902,-1.4633,0.5536,-0.8659,-1.7882 +0x12229,CUS_0x8fa7,August,29,427-09-7472,Mechanic,20024.17,1544.680833,4,5,10,4,"Home Equity Loan, Student Loan, Student Loan, and Personal Loan",20.85040479,16,13.93,12,Standard,698.93,39.79728081,8 Years and 4 Months,NM,35.90346971,,Low_spent_Medium_value_payments,253.8334394,0,0.4172,0.6015,0.4009,0.0348,-0.6172 +0x12235,CUS_0x46b5,August,21,491-92-4340,Entrepreneur,62717.24,,6,6,29,9,"Auto Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",51.63188278,28.79826069,10.82,7,Bad,2844.917028,28.18930539,18 Years and 3 Months,Yes,370.0219456,88.79484552,High_spent_Large_value_payments,284.7268755,0,-1.0042,-0.5701,-0.137,-0.8575,0.3559 +0x12241,CUS_0x211a,August,20,371-22-9085,Writer,56192.32,4676.693333,10,6,22.06745738,8,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, and Debt Consolidation Loan",36.23389037,21,14.07,7,Bad,4000.510954,26.81709923,11 Years and 6 Months,Yes,282.1903992,,High_spent_Small_value_payments,251.2723706,0,0.1965,-0.2999,1.1668,1.7774,-0.796 +0x1224d,CUS_0x27c2,August,18,534-04-9143,Teacher,98534.22,8050.185,6,6,8,0,,17.87383884,16,13.1,,Standard,1110.26,35.72364931,27 Years and 0 Months,Yes,0,10000,High_spent_Medium_value_payments,926.0349211,0,1.1404,-0.2011,-0.0623,0.597,-0.2033 +0x12259,CUS_0x6c65,August,28,#F%$D@*&8,_______,62276.37,,5,8,29,2,"Payday Loan, and Payday Loan",10.77390617,10.43649062,18.89,12,Standard,1541.573585,24.48805159,17 Years and 9 Months,Yes,70.05445943,294.3637204,High_spent_Small_value_payments,420.5515702,0,0.6532,-1.5146,0.7291,-2.0609,-1.0547 +0x12265,CUS_0x1f66,August,19,042-09-5105,Musician,67730,5697.166667,4,5,7.288361749,0,,,3,1.63,3,Good,626.34,31.98583365,27 Years and 11 Months,NM,0,618.9254201,High_spent_Medium_value_payments,620.7287076,0,0.1892,-0.3043,0.5869,0.2788,-1.8785 +0x12271,CUS_0x552f,August,20,828-39-5792,Architect,132842.56,9717.936208,6,5,16.28836175,0,Credit-Builder Loan,6.913413019,8,7.41,7,Standard,756.9347665,29.49769889,21 Years and 8 Months,NM,1645.529388,782.0995063,High_spent_Medium_value_payments,996.1280328,0,0.9762,-0.5651,-0.0386,-1.277,0.1782 +0x1227d,CUS_0x6d54,August,26,433-84-2151,_______,114224.24,9459.686667,5,6,15,3,"Credit-Builder Loan, Payday Loan, and Auto Loan",21.57679979,16,14.27,8,Standard,1216.94,37.87845628,23 Years and 9 Months,Yes,275.7179758,299.6856018,High_spent_Medium_value_payments,620.5650891,0,0.2832,1.8309,-0.7779,1.2286,-0.8399 +0x12289,CUS_0x930a,August,42,212-95-0341,Scientist,178969.48,14647.12333,0,5,1,4,"Debt Consolidation Loan, Not Specified, Student Loan, and Mortgage Loan",,7,2.87,9,Good,667.15,25.18805669,21 Years and 8 Months,No,554.1672741,857.3213065,Low_spent_Medium_value_payments,333.2237528,0,-1.4831,0.4388,-0.1249,-0.0325,1.4524 +0x12295,CUS_0x5e28,August,19,545-26-7513,Entrepreneur,87746.92,7411.243333,5,4,5.288361749,100,"Payday Loan, Not Specified, Personal Loan, and Personal Loan",24.03359935,20,14.78,7,Standard,864.67,25.76789239,16 Years and 11 Months,NM,152.8638892,767.0281079,High_spent_Small_value_payments,501.1697973,0,-0.5002,-0.1649,1.8481,0.6045,1.8936 +0x122a1,CUS_0xab7d,August,49,844-45-6184,Architect,58366.22,5041.851667,5,5,1,1,Credit-Builder Loan,26.79455795,19,1.37,3,Good,383.3,31.60339118,23 Years and 3 Months,NM,36.11027678,148.3549115,High_spent_Small_value_payments,579.7199784,0,-0.2543,-0.1155,0.0849,0.6084,0.8912 +0x122ad,CUS_0x5e9d,August,42,313-23-9282,Developer,12877209,1131.460417,7,6,10,1,Payday Loan,30.6263114,21.99534185,4.41,3,Standard,1650.770377,25.49709138,17 Years and 0 Months,NM,13.70987958,87.31344488,Low_spent_Medium_value_payments,292.1227172,0,0.8971,-1.9326,-0.4102,3.7287,-0.5248 +0x122b9,CUS_0x3d58,August,41,093-70-9090,Teacher,95846.49,8264.2075,8,4,9,0,,,19,19.38,7,Standard,1333.366633,37.39136527,30 Years and 11 Months,NM,0,345.5217382,High_spent_Medium_value_payments,775.8812404,0,0.1981,0.385,0.431,0.2497,0.5092 +0x122c5,CUS_0xad6d,August,29,026-97-5057,Journalist,42316.4,3627.366667,7,4,15,2,"Not Specified, and Auto Loan",12.75110487,9,14.59,2,Standard,1188.1,31.72367115,22 Years and 8 Months,Yes,53.58450436,,!@9#%8,229.3959389,0,-0.7408,0.3328,0.7438,-0.7297,-0.1022 +0x122d1,CUS_0xb39f,August,43,262-96-1321,Developer,18648.38,,4,9,22,4,"Student Loan, Auto Loan, Payday Loan, and Auto Loan",12.31298289,11.99611646,13.5,12,Standard,2348.938206,31.39242937,17 Years and 11 Months,Yes,34.45954512,10000,Low_spent_Small_value_payments,264.7061602,0,0.5717,0.9477,-0.6312,-0.9913,0.0905 +0x122dd,CUS_0x962b,August,22,956-84-8881,Mechanic,17655551,11879.53667,6,6,6,6,"Personal Loan, Home Equity Loan, Student Loan, Student Loan, Personal Loan, and Student Loan",26.06710838,16,13.29,7,Standard,1108.01,28.77466049,15 Years and 3 Months,Yes,553.5518785,107.7978509,High_spent_Large_value_payments,766.6039372,0,0.8555,-1.0387,-0.0391,0.6577,0.7573 +0x122e9,CUS_0x57da,August,40,098-89-7391,Accountant,31407.1,,7,7,29,8,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",21.99764774,,24.16,11,Bad,3239.664328,28.46864585,6 Years and 9 Months,Yes,115.2068732,71.29617515,High_spent_Medium_value_payments,325.0227849,0,0.0357,0.833,-1.6722,1.0415,1.4571 +0x122f5,CUS_0x99e5,August,29,146-62-6806,Manager,9183.32,769.2766667,6,8,19.88954781,6,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",40.81094698,22.64290249,2.81,10,Bad,2300.308444,23.28286899,6 Years and 2 Months,Yes,1356.884203,75.33209084,!@9#%8,240.3812911,0,0.0922,0.1822,-0.1407,0.2832,-0.2712 +0x12301,CUS_0x9b80,August,24,155-73-5444,Journalist,31227.35,,4,6,6,3,"Auto Loan, Payday Loan, and Home Equity Loan",,15,14.71,7,Standard,1257.27,28.08954227,11 Years and 5 Months,Yes,58.00291414,88.33803572,Low_spent_Large_value_payments,378.3869668,0,0.7265,0.9638,-0.4139,1.6265,1.93 +0x1230d,CUS_0x7ac9,August,43,122-02-5419,Journalist,10462.585,,4,6,5,4,"Payday Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",21.65978895,18,20.64,4,_,2057.65,36.52010401,12 Years and 5 Months,Yes,27.46489101,60.45315989,Low_spent_Small_value_payments,291.4701574,0,0.8996,-0.6071,-0.0026,-0.3688,1.1718 +0x12319,CUS_0x1c3b,August,39,596-35-8824,Media_Manager,79357.14,6703.095,2,3,8,100,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Mortgage Loan",,15.11977982,4.08,2,Good,1276.644263,37.07777743,18 Years and 4 Months,No,171.9987355,85.44689333,High_spent_Medium_value_payments,662.8638711,0,-0.49,0.0367,-2.0217,-0.2061,1.0167 +0x12325,CUS_0x9b22,August,31,565-34-6703,Architect,88533.27,,4,4,10.28836175,2,"Payday Loan, Student Loan, and Debt Consolidation Loan",23.1369356,21,3.23,3,Standard,364.08,36.02448662,30 Years and 10 Months,No,183.6890271,499.8175235,High_spent_Large_value_payments,708.8081603,0,0.8695,0.9279,-2.1732,1.3698,0.2723 +0x12331,CUS_0x584a,August,53,229-58-9523,Scientist,39487.82,,7,4,20,1,Payday Loan,22.07819787,16.97199713,2.48,0,_,394.2225294,29.58845616,,Yes,25.6641357,51.20459168,High_spent_Medium_value_payments,506.4964393,0,0.3266,-0.9332,-1.1891,1.1142,0.1234 +0x1233d,CUS_0x79d9,August,38,091-80-3722,_______,19010.58,1762.819195,9,7,17,3,"Personal Loan, Mortgage Loan, and Home Equity Loan",,,12.16,10,Bad,1519.25,24.93518231,6 Years and 3 Months,Yes,118.8242906,205.4811229,Low_spent_Small_value_payments,232.6118918,0,0.1207,2.5553,0.0941,-0.3524,-0.7321 +0x12349,CUS_0xaa14,August,42,057-84-6299,Engineer,33287.12,2844.926667,7,238,9,2,"Mortgage Loan, and Personal Loan",13.4951462,10,16.64,6,Standard,1137.16,37.31535721,16 Years and 9 Months,No,45.78583997,51.18416408,High_spent_Medium_value_payments,437.5226626,0,0.0688,-0.269,-1.6325,-1.7998,-1.1489 +0x12355,CUS_0x9d23,August,35,670-67-9282,Engineer,25042.69,,5,6,7,1,Not Specified,9.638926745,8,14.37,4,Good,332.8528865,22.19438467,29 Years and 4 Months,No,18.46866243,199.7015885,Low_spent_Large_value_payments,293.2869818,0,0.2704,1.1041,0.2407,-0.692,-0.2116 +0x12361,CUS_0x6032,August,20,741-59-1064,Media_Manager,9307.915,581.6595833,8,10,18.88954781,6,"Not Specified, Personal Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",,28.07169233,14,17,Bad,3197.472249,29.53118505,14 Years and 6 Months,Yes,1358.755114,48.12562848,Low_spent_Small_value_payments,246.9551347,0,-0.2361,0.027,0.3708,1.5226,0.8359 +0x1236d,CUS_0x4424,August,18,930-89-7190,Architect,105150.2,8836.516667,8,3,13,4,"Debt Consolidation Loan, Auto Loan, Student Loan, and Home Equity Loan",,19,14.46,7,_,1265.73,38.97951329,18 Years and 10 Months,Yes,323.443243,138.2767167,High_spent_Large_value_payments,661.931707,0,-0.5986,1.078,1.0017,0.7103,0.5434 +0x12379,CUS_0x65d0,August,31,259-61-9535,Doctor,27354.48,,6,6,12,0,,17.57803111,16,2.48,2,Standard,80.73,28.38299794,25 Years and 2 Months,No,0,63.99601756,Low_spent_Large_value_payments,458.6579824,0,0.8927,-0.6202,0.309,0.4069,0.4102 +0x12385,CUS_0x841f,August,32,666-99-6722,Journalist,135107.76,,6,4,12,3,"Mortgage Loan, Payday Loan, and Student Loan",,14,7.13,4,Standard,763.74,36.0245278,24 Years and 10 Months,No,193.8838417,287.6775627,High_spent_Large_value_payments,886.1365956,0,-0.6195,-1.375,-0.8634,0.7546,0.563 +0x12391,CUS_0x8018,August,52,456-03-1565,Mechanic,49937.4,,3,3,7,2,"Payday Loan, and Not Specified",9.342804275,8,18.53,4,Standard,933.1661746,33.5213342,16 Years and 5 Months,Yes,455.8673145,447.0536828,Low_spent_Large_value_payments,250.8434336,0,0.1131,1.3614,1.3637,-0.4753,0.634 +0x1239d,CUS_0x3e32,August,29,566-57-6637,Scientist,87902.13,,4,7,7,5,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",25.18117085,19,7.22,12,_,777.56,25.81441548,8 Years and 8 Months,Yes,283.9462698,514.2356285,Low_spent_Medium_value_payments,228.9358517,0,0.6115,-0.8028,-0.9581,-0.8903,-1.0011 +0x123a9,CUS_0xab43,August,31,466-71-2863,Manager,20625.07,,10,10,32,3,"Mortgage Loan, Auto Loan, and Home Equity Loan",35.30824045,24.86740082,16.31,9,_,2552.662672,29.88962035,14 Years and 2 Months,Yes,38.9631883,63.99532387,High_spent_Medium_value_payments,309.0170712,0,0.3683,-0.3034,1.3708,0.1291,-0.4137 +0x123b5,CUS_0x3713,August,41,660-31-3335,Developer,99340.08,8506.34,3,1,7.288361749,100,,4.381828717,6,7.91,5,Good,1028.59,36.686768,30 Years and 3 Months,No,0,711.5752521,Low_spent_Large_value_payments,828.996209,0,-0.1574,1.6719,-0.0519,0.3605,-1.5116 +0x123c1,CUS_0x821a,August,26,916-57-9650,_______,122705.73,10049.4775,5,6,6,3,"Auto Loan, Auto Loan, and Mortgage Loan",13.8451807,12,6.34,5,_,1004.82,40.86826383,21 Years and 3 Months,No,200.3156921,135.2151905,High_spent_Large_value_payments,909.4168674,0,-0.3283,1.0045,0.5171,1.8608,-0.0263 +0x123cd,CUS_0x9398,August,54,426-87-7817,Scientist,134790.56,,4,982,14,1,Mortgage Loan,20.06705802,14,2.93,7,Standard,349.04,35.51203079,30 Years and 11 Months,Yes,111.9133257,1212.957885,!@9#%8,70.48345626,0,-0.5832,-0.3319,0.1057,0.9942,-1.3046 +0x123d9,CUS_0x64d4,August,51,842-53-1233,Accountant,14730.78,,5,2,10,0,,21.2297688,16,5.76,7,Good,655.01,39.59591838,18 Years and 0 Months,No,0,173.4697127,Low_spent_Small_value_payments,267.2867873,0,1.1485,1.3444,-1.0275,-1.7096,0.9939 +0x123e5,CUS_0x6cb4,August,25,196-11-8284,Doctor,114948,9541.662004,3,6,11,7,"Student Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, and Student Loan",,10.60993831,7.01,10,Standard,1619.981933,26.57899519,,Yes,682.2537785,,High_spent_Large_value_payments,673.7187312,0,0.6274,0.4641,-0.9342,-0.6783,-0.0581 +0x123f1,CUS_0x8d48,August,26,968-82-9543,Developer,10813.53,1149.1275,4,4,10,4,"Auto Loan, Credit-Builder Loan, Payday Loan, and Not Specified",,16,11.12,6,_,862.42,28.85794804,28 Years and 0 Months,Yes,24.05878365,90.09791879,Low_spent_Small_value_payments,290.7560476,0,-0.2709,0.0606,1.6563,-0.2561,-0.9192 +0x123fd,CUS_0x537,August,42,#F%$D@*&8,Accountant,75776.55,,5,4,14.28836175,0,Debt Consolidation Loan,19.43542132,17,13.86,1543,Standard,1.37,27.23363346,26 Years and 0 Months,NM,60.27778126,,High_spent_Medium_value_payments,767.2608201,0,1.1151,0.2035,1.3631,1.0124,-0.3415 +0x12409,CUS_0x3f69,August,27,420-51-6685,Journalist,18515.18,,8,8,29.06745738,5,"Debt Consolidation Loan, Auto Loan, Student Loan, Not Specified, and Student Loan",,21.26400071,19.91,12,Bad,2911.572036,38.95608269,,Yes,59.19647163,12.6253738,High_spent_Large_value_payments,306.6510333,0,1.8591,-0.0255,1.5274,0.5019,0.0748 +0x12415,CUS_0x81ac,August,23,872-11-8915,Entrepreneur,33494.58,2754.215,8,5,12,3,"Not Specified, Student Loan, and Payday Loan",17.30803189,16,17.8,8,_,1257.38,31.62556084,8 Years and 6 Months,Yes,70.03545947,75.81192187,Low_spent_Medium_value_payments,409.5741187,0,2.618,-0.4118,-1.3833,-0.2248,0.1475 +0x12421,CUS_0x2a15,August,37,107-09-2657,_______,86771.08,7174.923333,8,3,18,5,"Personal Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",33.00038418,21.41602121,19.24,8,Standard,93.89987516,35.0178287,13 Years and 6 Months,Yes,218.8193142,281.9049341,Low_spent_Small_value_payments,506.7680851,0,-0.3786,-0.0003,-0.3056,-0.9411,1.021 +0x1242d,CUS_0x9dc2,August,37,#F%$D@*&8,Engineer,57227.04,4561.92,10,9,4801.957005,7,"Not Specified, Credit-Builder Loan, Auto Loan, Home Equity Loan, Auto Loan, Auto Loan, and Auto Loan",36.28098375,23,18.64,9,_,4126.380954,27.96117037,8 Years and 6 Months,Yes,1543.760258,73.5247158,High_spent_Medium_value_payments,367.8566572,0,0.051,-0.3304,0.1225,0.647,-0.0866 +0x12439,CUS_0x4a82,August,46,711-75-2709,Developer,21426.07,,5,7,16,7,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Payday Loan",,20,8.79,439,Standard,1024.27,35.61436157,15 Years and 8 Months,Yes,117.2667865,,High_spent_Small_value_payments,200.8171754,0,-2.1053,1.2459,-0.6568,0.8065,1.9135 +0x12445,CUS_0x8c68,August,20,203-97-2628,_______,7689.5,806.7916667,9,9,21.06745738,9,"Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",,23,23.95,13,Bad,3726.580954,36.13134382,,Yes,53.05905222,50.72951419,Low_spent_Small_value_payments,240.1703123,0,-0.2909,1.5706,0.6358,0.2923,0.7628 +0x12451,CUS_0xa814,August,49,167-27-0881,Accountant,143961.64,12106.80333,4,5,16,2,"Home Equity Loan, and Credit-Builder Loan",8.448757293,10,2.95,6,Standard,202.76,31.6773981,22 Years and 4 Months,Yes,215.3274884,656.6461838,Low_spent_Medium_value_payments,618.7066611,0,0.1831,-0.5356,0.1756,1.031,0.0144 +0x1245d,CUS_0x4596,August,49,432-19-3861,Accountant,89427.12,7485.26,6,5,9,0,,,15,18.15,2,Standard,1286.5,31.53012949,30 Years and 0 Months,Yes,0,100.7387609,High_spent_Medium_value_payments,897.7872391,0,-0.3184,-1.2263,-1.254,-1.069,-0.4039 +0x12469,CUS_0x968a,August,42,553-92-5790,Lawyer,18280.185,1498.34875,5,7,17,1,Debt Consolidation Loan,,16,8.53,7,Standard,556.78,32.85629803,16 Years and 9 Months,Yes,13.45356846,54.5610985,High_spent_Medium_value_payments,331.820208,0,0.2972,-0.6909,-0.9867,3.8446,0.8555 +0x12475,CUS_0x2f7a,August,36,407-98-9957,Entrepreneur,77883.54,6290.295,3,7,6,0,,,9,,6,Good,566.829853,39.26750338,30 Years and 8 Months,No,0,159.8512227,High_spent_Large_value_payments,725.4300201,0,-1.3458,-0.2274,-0.9881,1.051,1.0656 +0x12481,CUS_0x6f91,August,42,466-54-2527,Engineer,7020.545,,5,3,30,6,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Mortgage Loan",,10.41148935,18.34,7,Standard,1716.480336,35.43189323,15 Years and 4 Months,Yes,25.56488488,0,High_spent_Small_value_payments,269.6282071,0,0.3866,0.4575,2.1275,0.9834,-3.3794 +0x1248d,CUS_0x510f,August,50,#F%$D@*&8,Writer,39398.74,3002.228333,2,3,9,3,"Student Loan, Mortgage Loan, and Personal Loan",0.68539411,2.323731351,-0.62,6,Good,71.53630174,32.75013322,25 Years and 0 Months,No,82.98423268,233.9429172,Low_spent_Small_value_payments,273.2956834,0,-0.3396,-0.2328,-2.5154,1.3746,-0.0161 +0x12499,CUS_0xbbda,August,50,598-28-8368,Manager,72099.14,,4,3,2,4,"Payday Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",0.268021053,1,11.27,4,Good,1290.666013,35.96043451,28 Years and 2 Months,NM,426.7970767,478.5331715,Low_spent_Small_value_payments,290.8918608,0,0.9879,0.0485,0.3916,0.6929,1.8226 +0x124a5,CUS_0x86c0,August,22,176-63-8953,Scientist,14273.35,1387.445833,9,7,25.06745738,8,"Not Specified, Not Specified, Home Equity Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Personal Loan",38.71996687,22.33417905,9.16,9,Bad,4193.777045,31.86206618,8 Years and 11 Months,Yes,81.23849769,,Low_spent_Small_value_payments,236.1430356,0,0.2983,-1.5653,-1.9629,-0.4672,-0.3574 +0x124b1,CUS_0x92e5,August,54,122-80-2393,Accountant,63402.48,5574.54,5,7,2,2,"Auto Loan, and Mortgage Loan",7.979925013,9,1.86,0,_,707.85,28.82223531,16 Years and 5 Months,No,55.21913469,,High_spent_Small_value_payments,544.2033445,0,0.0281,1.7496,0.9061,-1.264,-0.474 +0x124bd,CUS_0x33bf,August,40,239-94-3241,Lawyer,155673.16,13044.76333,3,6,3,2,"Debt Consolidation Loan, and Auto Loan",9.078106851,6.912244916,2.59,4,Good,1361.016302,32.87315745,26 Years and 5 Months,No,185.0498564,,High_spent_Large_value_payments,1100.483198,0,-1.6751,1.3174,-0.5654,1.0631,-0.5403 +0x124c9,CUS_0x9000,August,80,844-17-9667,_______,10503.925,986.3270833,3,7,19,4,"Home Equity Loan, Credit-Builder Loan, Not Specified, and Payday Loan",,15,5.98,0,Standard,431.78,40.16821237,21 Years and 10 Months,NM,17.60819157,,Low_spent_Small_value_payments,241.6741033,0,-0.1243,-0.2545,0.9482,-0.549,-1.6648 +0x124d5,CUS_0x92ff,August,26,424-24-7936,Mechanic,88215.03,,7,3,11.28836175,2,"Not Specified, and Not Specified",17.95310026,17,16.36,5,Standard,1128.68,38.85645968,,Yes,100.415822,476.2741693,High_spent_Large_value_payments,818.8727198,0,-1.0381,1.1655,0.1105,0.6319,-0.2925 +0x124e1,CUS_0xa614,August,28,174-10-7823,Scientist,18184.99,,7,6,35.06745738,6,"Credit-Builder Loan, Not Specified, Student Loan, Student Loan, Mortgage Loan, and Student Loan",47.57689017,25,14.74,9,Bad,1718.400954,39.91507611,15 Years and 8 Months,Yes,88.56159526,127.4594971,Low_spent_Medium_value_payments,170.9002031,0,0.7673,-0.3336,-0.774,-0.6993,1.7036 +0x124ed,CUS_0x780c,August,26,879-19-2481,Lawyer,49125.57,4177.7975,8,8,32.88954781,7,"Home Equity Loan, Student Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",20.59333237,15,21.88,9,Bad,2575.83,33.12501143,14 Years and 8 Months,Yes,1491.76954,,High_spent_Medium_value_payments,415.6160931,0,0.4894,0.7364,-0.4309,0.7977,0.8756 +0x124f9,CUS_0x1f8d,August,51,486-78-3816,Entrepreneur,109600.95,9336.4125,4,7,1,3,"Mortgage Loan, Payday Loan, and Personal Loan",2.97542964,4,0.93,3,Good,141.08,27.71191906,19 Years and 0 Months,No,252.46481,197.0306414,High_spent_Medium_value_payments,734.1457986,0,0.075,-0.5313,-2.9229,-0.9348,0.2674 +0x12505,CUS_0xc249,August,55,043-21-5017,Doctor,24057.73,2279.810833,3,7,13,3,"Home Equity Loan, Not Specified, and Home Equity Loan",12.02104043,12,11.73,,Standard,548.3349241,37.8511189,20 Years and 0 Months,No,50.04247097,224.8879804,Low_spent_Medium_value_payments,259.8009164,0,-1.0888,0.071,-0.4048,0.3594,-0.3071 +0x12511,CUS_0x8d22,August,50,785-29-2037,Accountant,16476.04,,1,3,11,0,,9.658755745,9.540910552,8.94,4,Good,343.3020692,24.72938964,16 Years and 6 Months,No,0,67.47016704,Low_spent_Small_value_payments,333.1301663,0,-0.0092,1.6415,-0.2477,0.2162,0.6049 +0x1251d,CUS_0xb03b,August,42,005-71-5332,Entrepreneur,18869.78,,9,5,32,6,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, and Home Equity Loan",,24.24486466,6.27,11,Bad,2120.034769,34.09602621,9 Years and 8 Months,Yes,56.84102936,56.16880458,High_spent_Small_value_payments,324.0383327,0,-1.1682,-1.0776,-0.5573,-0.2761,0.368 +0x12529,CUS_0x6b7,August,31,756-02-2173,Lawyer,19632.64,1537.053333,5,5,12,5,"Debt Consolidation Loan, Payday Loan, Not Specified, Home Equity Loan, and Payday Loan",,12,10.95,8,Standard,2157.76,34.32032845,18 Years and 10 Months,Yes,42226,46.71234376,High_spent_Medium_value_payments,302.5096989,0,0.0003,0.9896,-0.1623,-0.2375,-0.4005 +0x12535,CUS_0x2b73,August,36,712-45-6575,Entrepreneur,17263.94,,10,10,24.06745738,8,"Auto Loan, Payday Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Mortgage Loan",26.83592526,18,27.15,10,Bad,4373.170954,26.55749929,13 Years and 9 Months,Yes,96.95386319,55.97987445,Low_spent_Small_value_payments,272.5121411,0,-2.094,0.0665,0.1427,0.4829,-2.9325 +0x12541,CUS_0xb38d,August,39,307-67-5773,Teacher,18409.79,1594.149167,7,10,17.06745738,5,"Auto Loan, Payday Loan, Personal Loan, Payday Loan, and Not Specified",,29.38218139,5.16,11,Bad,1914.430425,34.90244352,,Yes,57.47276726,,Low_spent_Small_value_payments,185.5337844,0,0.5688,2.8991,-1.585,-1.344,-0.0495 +0x1254d,CUS_0x2709,August,37,221-76-9774,Engineer,67556.8,,3,5,10,3,"Student Loan, Credit-Builder Loan, and Auto Loan",27.64108292,18,19.44,2,Standard,762.85,31.78837545,28 Years and 0 Months,Yes,118.348636,,Low_spent_Small_value_payments,133.6867159,0,-0.4011,-0.4956,-1.1908,-0.3452,-0.2658 +0x12559,CUS_0xa075,August,30,362-78-8068,Accountant,42900.21,3480.0175,8,5,17,4,"Personal Loan, Payday Loan, Mortgage Loan, and Auto Loan",21.19695175,15.81559384,10.47,6,Standard,3041.729025,37.32940036,10 Years and 4 Months,Yes,111.2093108,64.16691581,High_spent_Medium_value_payments,422.6255234,0,-0.6659,-0.7689,-0.8367,-0.6794,2.36 +0x12565,CUS_0x872f,August,19,442-30-8588,_______,31041.46,,5,2,5,1,Home Equity Loan,4.749043875,8,9.13,0,_,267.800365,34.40567449,33 Years and 3 Months,No,21.02118004,27.81306287,!@9#%8,445.3986916,0,-1.2002,-1.3954,0.5306,-0.018,-0.4189 +0x12571,CUS_0x6a79,August,23,#F%$D@*&8,Lawyer,173668.84,14293.40333,3,6,2,3,"Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0,0,-5.12,0,_,710.17,27.34960834,23 Years and 2 Months,No,310.1594183,552.8812388,Low_spent_Large_value_payments,836.2996763,0,-0.8272,-0.5337,-1.1926,-0.381,-0.6145 +0x1257d,CUS_0xac5d,August,26,376-28-6303,Writer,89956.16,7650.346667,5,6,19,5,"Not Specified, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",,11,10.3,8,Standard,1239.81,32.70446337,,Yes,299.497486,197.7562307,High_spent_Medium_value_payments,517.78095,0,-0.3524,-0.5429,-0.6039,0.6995,0.8087 +0x12589,CUS_0xad53,August,37,903-50-0305,Lawyer,64829.94,,5,6,19,2,"Student Loan, and Auto Loan",,9,4.71,5,Standard,169.28,41.97320325,21 Years and 3 Months,No,56.89300216,333.4808973,Low_spent_Small_value_payments,456.7756005,0,-0.5316,0.3823,0.9539,-0.3289,-0.0275 +0x12595,CUS_0x11b1,August,28,347-47-6952,_______,34819.83,,312,3,10,1,Student Loan,,12,7.69,4,_,905.89,37.69816887,18 Years and 10 Months,Yes,22.79539612,125.5996058,High_spent_Small_value_payments,380.5702481,0,-0.3589,-0.76,0.2388,-0.0575,0.4291 +0x125a1,CUS_0x3260,August,40,750-67-7525,Accountant,10897.385,1029.115417,5,6,16,2,"Auto Loan, and Credit-Builder Loan",22.28733377,18,17.66,1288,Standard,401.56,37.84989449,15 Years and 11 Months,Yes,12.98533866,,Low_spent_Small_value_payments,257.1438697,0,-0.6501,-0.9717,-0.2565,0.8575,-0.9853 +0x125ad,CUS_0x26bf,August,40,339-34-1758,Lawyer,77631.28,5852.639122,0,3,4,0,,12.92470895,,2.94,5,Good,1041.430342,32.35960121,22 Years and 6 Months,NM,557.6342115,254.7494104,High_spent_Medium_value_payments,660.9283449,0,0.0653,-1.632,0.6337,1.5424,-0.286 +0x125b9,CUS_0x10b6,August,49,439-76-5364,Journalist,5691341,,7,3,19,3,"Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",,,1.23,1,Standard,277.93,40.27854126,18 Years and 4 Months,No,37.99637813,65.37216415,High_spent_Small_value_payments,327.9283744,0,-2.6282,-0.2988,0.7816,0.3355,-1.5976 +0x125c5,CUS_0x56f1,August,36,377-07-9836,Mechanic,18910.83,1609.9025,1,4,8.067457376,0,,14.37369616,9.37237694,2.88,8,Good,1251.565625,34.95645573,25 Years and 5 Months,No,0,127.5855135,Low_spent_Medium_value_payments,286.6844485,0,0.5134,0.9155,-2.8158,1.6985,0.8144 +0x125d1,CUS_0x6a9e,August,35,139-41-1213,Entrepreneur,69601.24,5908.103333,7,7,29,5,"Credit-Builder Loan, Student Loan, Home Equity Loan, Payday Loan, and Student Loan",,11.94595383,15.25,10,_,2770.450424,35.08156855,7 Years and 2 Months,Yes,247.9727698,148.9962189,High_spent_Medium_value_payments,443.8413446,0,-0.3505,-0.5382,1.0396,0.6908,-0.6566 +0x125dd,CUS_0x3525,August,24,746-59-7879,Journalist,20324.355,,3,4,7,3,"Not Specified, Debt Consolidation Loan, and Payday Loan",7.866521455,8,10.81,4,Good,1396.07,25.04405913,,No,36.9330031,,Low_spent_Large_value_payments,259.805673,0,-0.5891,-0.385,-2.0115,-0.3857,-1.8256 +0x125e9,CUS_0x7f9c,August,32,349-56-0936,Developer,35452.34,,7,6,12,2,"Home Equity Loan, and Student Loan",,,19.97,7,Standard,1442.31,26.11450823,16 Years and 3 Months,Yes,46.37675344,130.7755295,High_spent_Small_value_payments,403.7838838,0,-0.294,-0.6079,0.2054,-1.1454,1.0962 +0x125f5,CUS_0x4999,August,33,#F%$D@*&8,Accountant,21366.12,1769.51,4,5,11,4,"Personal Loan, Payday Loan, Student Loan, and Not Specified",,14,7.98,4,_,830.5918892,38.18894713,29 Years and 5 Months,Yes,65.08973173,43.37380029,High_spent_Medium_value_payments,324.8627096,0,-1.2178,1.1173,-1.0778,-0.9653,-0.2329 +0x12601,CUS_0x2353,August,26,496-79-8901,Architect,31937.62,,5,3,15,2,"Student Loan, and Mortgage Loan",15.14238186,12.87922512,17.37,10,Standard,2177.650354,34.28741678,10 Years and 4 Months,Yes,35.38951471,42.22156175,High_spent_Small_value_payments,421.8357569,0,1.1899,0.5313,1.955,0.7165,-0.9804 +0x1260d,CUS_0x584b,August,27,462-03-5379,Accountant,92565.81,7870.8175,4,5,14,1,Personal Loan,,14,10.95,0,Standard,1236.76,42.87032688,16 Years and 6 Months,No,55.26199672,160.1289796,High_spent_Medium_value_payments,821.6907737,0,0.4977,-1.5889,-0.4958,0.2594,0.9895 +0x12619,CUS_0x2788,August,49,024-45-5113,Writer,97164.6,8167.05,3,5,17.28836175,2,"Credit-Builder Loan, Payday Loan, and Student Loan",25.9190518,21.39586522,13.53,1,_,1210.84792,35.26195965,28 Years and 10 Months,Yes,124.3399436,512.2553395,High_spent_Large_value_payments,840.0471779,0,-0.4604,-0.8369,-1.4333,1.369,0.441 +0x12625,CUS_0x631e,August,19,838-51-8043,Lawyer,129780.44,11034.03667,5,3,18,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",35.52843306,23.46885187,11.25,10,Standard,1266.115562,26.73813705,22 Years and 5 Months,Yes,250.190735,682.2991323,Low_spent_Medium_value_payments,450.9137994,0,-0.19,0.3821,0.6012,0.7466,-0.711 +0x12631,CUS_0x463,August,18,442-69-4443,Teacher,140875.88,11490.65667,6,4,16,4,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",,,7.91,6,_,299.78,39.56499242,27 Years and 8 Months,Yes,392.4273995,532.2332768,!@9#%8,514.4049903,0,-0.4275,1.0843,0.182,0.2187,-1.1958 +0x1263d,CUS_0x9650,August,23,579-04-4808,Accountant,16827.645,,7,4,6,1,Mortgage Loan,14.98241801,11,15.34,12,Standard,626.14,28.49424409,19 Years and 10 Months,Yes,73.76576666,97.64164009,High_spent_Small_value_payments,303.7002115,0,0.028,-0.805,0.4016,0.5752,1.4351 +0x12649,CUS_0xf30,August,29,#F%$D@*&8,Journalist,81610.44,,6,3,14,1,Student Loan,13.57642569,13,12.91,10,Standard,1080.855026,27.09629494,25 Years and 10 Months,Yes,56.98919005,765.6960035,Low_spent_Medium_value_payments,219.2658804,0,0.3109,0.3513,-0.6509,-0.1415,0.2125 +0x12655,CUS_0x7ed8,August,21,875-39-6024,Manager,68380.02,5427.646732,5,4,10,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Mortgage Loan",29.28264777,20,20.43,11,Standard,432.6860009,33.97281897,18 Years and 3 Months,NM,593.1509303,270.8661869,High_spent_Medium_value_payments,369.5622333,0,-0.2657,0.697,-0.0285,-1.8201,0.1577 +0x12661,CUS_0x727e,August,44,838-91-3677,Teacher,19675.25,1450.604167,5,3,1,0,,4.498149967,7,7.9,3,Good,755.7934189,31.66186712,33 Years and 5 Months,No,0,69.40200447,Low_spent_Medium_value_payments,362.5025936,0,0.0318,-0.3972,0.5785,-1.3642,-0.2573 +0x1266d,CUS_0x51a4,August,23,500-92-8739,Engineer,56390,4743.166667,7,6,28,8,"Not Specified, Student Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Payday Loan",17.61977184,,4.8,10,Bad,5019.911843,29.40196137,13 Years and 6 Months,Yes,329.3984894,,High_spent_Small_value_payments,264.3161639,0,0.902,1.2019,0.2875,0.0805,0.2375 +0x12679,CUS_0xb168,August,55,542-45-6915,Accountant,39323.54,3160.961667,4,1,10,3,"Not Specified, Credit-Builder Loan, and Not Specified",8.439857457,9,10.67,2082,Good,719.3635381,38.35743624,32 Years and 4 Months,No,81.21272918,88.45005564,!@9#%8,425.4006644,0,-0.039,-0.3165,1.8729,-1.5618,-1.9289 +0x12685,CUS_0x1542,August,43,946-39-9629,Engineer,70580.16,5991.68,5,3,4,4,"Mortgage Loan, Not Specified, Personal Loan, and Credit-Builder Loan",,3,9.93,3,Good,1218.994413,31.79808585,31 Years and 10 Months,No,221.770361,630.7528366,Low_spent_Small_value_payments,123.8210439,0,-0.5764,-1.126,0.5229,-1.8754,-1.2341 +0x12691,CUS_0x434c,August,46,659-53-9925,Doctor,87792.39,7448.0325,3,7,6,2,"Personal Loan, and Student Loan",,2,-2.66,8,_,630.2694238,36.91373248,20 Years and 9 Months,No,101.2059457,65.69562077,High_spent_Large_value_payments,824.4025697,0,-0.0214,0.0226,0.7609,-1.8475,-0.4048 +0x1269d,CUS_0x901c,August,23,311-01-2257,Engineer,15577.01,1383.084167,6,5,24,4,"Student Loan, Credit-Builder Loan, Student Loan, and Personal Loan",,20.86912548,10.63,12,Bad,2380.334316,38.16743663,6 Years and 0 Months,Yes,50.87262731,103.7135288,Low_spent_Small_value_payments,273.7222606,0,-0.0883,0.2023,-0.0081,-0.4844,-0.8426 +0x126a9,CUS_0x315f,August,57,940-94-4342,Mechanic,41794.32,,0,5,7,3,"Home Equity Loan, Payday Loan, and Payday Loan",10.27819838,12,3.78,4,Good,277.8555548,27.86227939,26 Years and 4 Months,No,89.81563465,418.8793553,Low_spent_Small_value_payments,163.005985,0,0.0213,0.0724,-0.9173,-0.6087,0.3386 +0x126b5,CUS_0x3d42,August,18,098-96-4178,Engineer,70582,5643.833333,8,5,31,100,"Student Loan, and Not Specified",,,6.35,9,Standard,2242.028889,26.83861362,9 Years and 0 Months,Yes,96.26348533,206.9556088,High_spent_Small_value_payments,521.1642392,0,-1.6657,-0.3294,-0.492,-1.6368,0.2128 +0x126c1,CUS_0xab56,August,54,401-73-3467,Doctor,43609.13,3058.989127,2,3,11,1,Personal Loan,0,1,2.5,5,Good,1312.58,30.5678561,24 Years and 6 Months,No,386.072643,,High_spent_Medium_value_payments,506.4376241,0,0.9013,0.6944,-0.369,-1.5576,-0.0261 +0x126cd,CUS_0x40bd,August,53,681-32-9435,Architect,110443.2,,8,3,8,2,"Auto Loan, and Personal Loan",22.69710919,15,11.16,5,Standard,1330.29,34.58468914,31 Years and 9 Months,Yes,183.6849156,65.36942552,High_spent_Large_value_payments,930.8056589,0,-0.2128,0.2218,0.5308,-1.142,0.2543 +0x126d9,CUS_0x5ef2,August,20,556-28-1765,_______,17804.96,1246.746667,4,4,13,2,"Not Specified, and Personal Loan",,18,6.17,4,Standard,1120.790096,36.59887855,18 Years and 6 Months,No,20.93658105,59.15022133,High_spent_Medium_value_payments,303.2829757,0,-2.5687,-0.2227,-1.2241,1.1523,1.77 +0x126e5,CUS_0xc2a7,August,25,790-76-9764,Developer,39323.36,3467.946667,7,3,34,3,"Home Equity Loan, Auto Loan, and Debt Consolidation Loan",21.63018158,14.57250973,5.39,7,Standard,1555.871228,25.20031334,12 Years and 2 Months,Yes,58.67403813,145.1194869,High_spent_Medium_value_payments,393.0011416,0,2.1579,0.6785,-0.7718,-1.781,0.9815 +0x126f1,CUS_0x1c3a,August,32,298-29-8622,Accountant,43450.25,,0,3,4,2,"Credit-Builder Loan, and Debt Consolidation Loan",0,0,7.47,2,Good,588.59,29.72616359,23 Years and 6 Months,No,41.39964367,154.5352047,High_spent_Medium_value_payments,425.2505683,0,-0.4896,0.6311,0.5001,2.2302,0.0395 +0x126fd,CUS_0x78e9,August,80,716-17-7548,Developer,43904.46,3934.705,4,4,15,7,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",9.871949194,10.36132336,16.18,9,Standard,1592.845974,25.90794225,17 Years and 3 Months,Yes,250.366653,104.7618151,High_spent_Medium_value_payments,288.3420319,0,-1.7763,0.0155,3.2438,-1.5754,1.4955 +0x12709,CUS_0x5749,August,18,277-59-7271,Writer,35374.6,3027.891753,3,6,25,2,"Home Equity Loan, and Mortgage Loan",9.508733337,10,9.6,6,Standard,2303.35,36.80177189,16 Years and 9 Months,Yes,161.4846618,,High_spent_Medium_value_payments,485.5418567,0,1.0492,1.6425,-1.5174,-0.9137,-0.4778 +0x12715,CUS_0x752c,August,37,483-01-4711,Media_Manager,99952.32,8120.36,3,6,2.288361749,2,"Credit-Builder Loan, Auto Loan, and Home Equity Loan",2.137855998,4,8.74,0,Good,162.01,31.39190682,27 Years and 0 Months,No,224.2379725,947.6938215,Low_spent_Large_value_payments,330.041667,0,-0.5294,-0.3723,0.4463,0.177,0.8528 +0x12721,CUS_0x90e2,August,40,767-53-7638,Architect,27377.06,,5,7,15,4,"Mortgage Loan, Not Specified, Debt Consolidation Loan, and Auto Loan",11.99045594,8,12.48,10,Standard,912.0868939,31.24881656,19 Years and 2 Months,Yes,57.31669544,48.00068508,High_spent_Large_value_payments,338.5307303,0,0.3054,-0.0203,-0.9057,0.5677,1.3584 +0x1272d,CUS_0x8800,August,35,154-71-8470,Scientist,15815.22,1241.935,6,10,19,5,"Auto Loan, Student Loan, Personal Loan, Payday Loan, and Home Equity Loan",,23.85718695,7.89,9,Bad,2685.97264,31.81285045,14 Years and 3 Months,Yes,63.78234222,15.62851225,High_spent_Large_value_payments,284.7826455,0,-0.9229,-0.307,1.8649,-0.3596,1.2285 +0x12739,CUS_0xbc0e,August,44,175-37-1300,Manager,16231.115,,6,7,15,0,,,15,11.92,8,Standard,1375.66,32.94169309,29 Years and 2 Months,No,0,,Low_spent_Small_value_payments,257.8138194,0,-0.0982,0.4364,-0.6256,-0.5785,0.2282 +0x12745,CUS_0x30bd,August,51,922-14-6752,Media_Manager,20199.46,1520.288333,3,3,6,4,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",3.985125847,5,8.56,2,Good,1207.63905,35.67993107,19 Years and 11 Months,No,60.04279174,,High_spent_Small_value_payments,315.0770691,0,-0.1382,0.741,-1.2589,0.6389,-0.846 +0x12751,CUS_0x43fd,August,23,235-91-8341,Mechanic,71096.02,6140.668333,6,3,18,1,Mortgage Loan,9.043938361,5,3.26,5,Standard,1494.93,29.8694142,24 Years and 8 Months,NM,10808,127.3320781,High_spent_Medium_value_payments,705.5424224,0,1.0638,-1.0206,0.1144,1.638,1.2693 +0x1275d,CUS_0x6779,August,18,632-25-2193,Developer,20394.2,1696.516667,4,6,17,5,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",,14,15.11,4,_,517.96,37.37440563,,Yes,58440,31.21858311,High_spent_Medium_value_payments,310.1120411,0,-0.563,-1.102,-1.0558,-1.4369,0.7188 +0x12769,CUS_0x2958,August,19,571-79-5091,Teacher,130045.95,11053.1625,5,1,3,3,"Payday Loan, Personal Loan, and Student Loan",90,2508,9.99,4,_,611.1447652,23.81862467,20 Years and 0 Months,No,237.0220798,1486.961448,Low_spent_Small_value_payments,,0,-1.2376,-1.2491,1.124,-1.2294,0.7067 +0x12775,CUS_0x72f9,August,49,868-83-8678,Teacher,83718.12,6744.51,4,5,9,0,,20.66742003,15,5.36,2,Good,572.2936094,29.4593229,30 Years and 8 Months,No,0,420.1763836,Low_spent_Small_value_payments,600.2362714,0,0.4033,1.3701,0.6531,-0.0354,0.0189 +0x12781,CUS_0x1c57,August,45,661-66-4873,Engineer,66940.62,5717.385,3,4,13.28836175,4,"Home Equity Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",,10,19.9,6,Standard,352.97,29.62872943,31 Years and 6 Months,Yes,164.2113668,520.5188367,High_spent_Medium_value_payments,556.9457575,0,1.3329,-0.0418,0.9307,0.7014,0.6493 +0x1278d,CUS_0x3b20,August,53,#F%$D@*&8,Journalist,36849.91,3355.825833,4,6,4,3,"Student Loan, Home Equity Loan, and Mortgage Loan",0,2,8.57,4,Good,660.89,31.26461007,,No,68.45114592,187.3319496,High_spent_Small_value_payments,339.7994878,0,-0.5253,1.5505,0.871,-0.9181,-0.489 +0x12799,CUS_0x50d5,August,19,783-40-0022,Engineer,62337.42,5236.785,3,5,6,100,Credit-Builder Loan,14.56426397,11,13.31,5,Standard,788.73,29.68871709,19 Years and 8 Months,Yes,40.39552173,300.4637722,Low_spent_Small_value_payments,472.819206,0,2.1342,-0.4307,-0.2542,-0.4067,-0.2712 +0x127a5,CUS_0x883b,August,44,436-25-6139,Mechanic,19092.585,1300.04875,0,65,12,1,Home Equity Loan,0,0,11.11,6,Good,136.25,22.91545611,17 Years and 2 Months,No,9.390404494,21.23605088,High_spent_Large_value_payments,339.3784196,0,-0.2929,-1.4593,0.0813,-0.9385,1.2484 +0x127b1,CUS_0x6ba2,August,43,041-16-8306,Mechanic,20877.69,1855.8075,8,3,16,4,"Mortgage Loan, Student Loan, Mortgage Loan, and Auto Loan",23.02270269,16,6.89,5,Standard,510.9294188,37.87136237,24 Years and 0 Months,No,58.42224632,41.70931489,High_spent_Small_value_payments,350.9120975,0,-0.7748,1.846,-0.5974,-0.1362,-0.7186 +0x127bd,CUS_0x5b41,August,22,#F%$D@*&8,Architect,37755.92,2979.326667,8,6,24.06745738,2,"Personal Loan, and Credit-Builder Loan",,19,17.69,12,Bad,2589.650954,41.09273999,8 Years and 6 Months,NM,46.85805209,,Low_spent_Medium_value_payments,416.7112318,0,-1.0786,0.931,1.2528,-0.4684,-0.6955 +0x127c9,CUS_0x2fb7,August,18,145-34-6936,Lawyer,71480.44,5883.703333,8,6,12.28836175,6,"Personal Loan, Debt Consolidation Loan, Student Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",7.548998953,9,7.92,8,Standard,315.42,36.47012923,18 Years and 6 Months,NM,40651,,Low_spent_Medium_value_payments,59.24584276,0,0.2726,-1.3997,0.1661,1.0228,0.083 +0x127d5,CUS_0x44b9,August,54,886-35-3071,_______,20867.67,1695.9725,6,6,5,3,"Not Specified, Payday Loan, and Mortgage Loan",22.30725917,19,8.34,2,Standard,912.86,24.40718779,22 Years and 5 Months,No,46.66752108,28.02706878,High_spent_Large_value_payments,334.9026601,0,0.5725,-0.4375,0.8568,2.3299,2.3278 +0x127e1,CUS_0x460f,August,33,540-34-2378,Writer,73615.36,5998.613333,6,9,16.06745738,9,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",,20.63407402,6.48,8,Bad,5503.124184,39.50337976,,NM,364.5136571,485.7944966,Low_spent_Large_value_payments,0,0,2.0384,1.9732,0.178,1.0929,0.3183 +0x127ed,CUS_0x165a,August,36,863-16-0608,Architect,56831.76,4627.98,5,6,6,1,Mortgage Loan,26.75123139,18,1.17,2,Standard,1179.08,25.53736592,29 Years and 6 Months,NM,37.50499252,182.6413954,Low_spent_Medium_value_payments,522.651612,0,1.6195,-0.2296,-0.0453,0.3926,0.8769 +0x127f9,CUS_0x7032,August,31,826-68-6064,Doctor,36463.21,,6,5,11,0,,22.78503169,20,,6,_,791.8147223,37.82989835,22 Years and 10 Months,Yes,0,83.65053769,High_spent_Large_value_payments,459.1238239,0,-0.208,-1.0297,0.0393,-0.1951,0.7872 +0x12805,CUS_0xa79,August,45,777-13-0214,Architect,80392.84,6633.403333,10,10,20.95700519,6,"Home Equity Loan, Payday Loan, Student Loan, Student Loan, Credit-Builder Loan, and Auto Loan",,24.43314497,13.35,14,Bad,5077.212259,41.42591457,2 Years and 8 Months,Yes,1526.04968,130.8582648,High_spent_Medium_value_payments,535.3820196,0,-2.0065,-1.1715,-0.7471,-1.5642,0.5014 +0x12811,CUS_0x416,August,25,275-79-7518,Musician,17641.46,,8,5,5,2,"Credit-Builder Loan, and Not Specified",20.49884775,12,11.63,4,Standard,322.43,31.44375614,6 Years and 9 Months,Yes,15.35727659,155.2723492,Low_spent_Small_value_payments,289.6825409,0,0.1553,0.2905,-0.6156,0.0361,0.1777 +0x1281d,CUS_0x8a1,August,33,022-55-1988,Musician,29101.2,,8,10,28,2,"Debt Consolidation Loan, and Home Equity Loan",34.07642884,17.29088433,-0.04,7,Bad,1456.137603,32.83065365,19 Years and 2 Months,Yes,43.28898385,10000,Low_spent_Large_value_payments,423.5409041,0,-0.419,0.3603,0.6805,0.0196,0.7871 +0x12829,CUS_0x5f1b,August,31,813-35-1407,Scientist,19167.22,1786.268333,6,10,26.06745738,9,"Auto Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",27.26108998,17,19.36,12,Bad,4120.170954,24.90066608,10 Years and 11 Months,Yes,135.9630381,,Low_spent_Medium_value_payments,150.6432013,0,-0.8016,0.4713,-0.1596,1.3322,0.8834 +0x12835,CUS_0x3767,August,48,324-83-7736,Mechanic,130832.37,,4,6,11.28836175,2,"Mortgage Loan, and Debt Consolidation Loan",,12,8.99,6,Good,83.91,31.38037267,26 Years and 11 Months,No,208.3674164,657.2077835,High_spent_Medium_value_payments,905.1320112,0,-0.116,0.8434,0.5439,0.3052,1.6801 +0x12841,CUS_0xbc56,August,55,234-31-6101,Scientist,117955.38,9859.615,3,2,4.288361749,2,"Personal Loan, Home Equity Loan, and Home Equity Loan",0,1,8.28,7,Good,885.9674803,28.73272931,33 Years and 6 Months,No,229.883528,1924.274892,Low_spent_Small_value_payments,,0,-0.2432,1.0274,-0.7083,0.2415,-1.0214 +0x1284d,CUS_0x1821,August,20,045-81-4729,Teacher,15157.25,,8,10,24,5,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Personal Loan",48.5598615,27.24546592,6.01,6,Bad,1649.212642,34.15370795,5 Years and 9 Months,Yes,41.93568919,95.69219921,Low_spent_Small_value_payments,261.5825283,0,-1.1805,0.0483,-0.1553,-0.4315,2.3187 +0x12859,CUS_0x838a,August,51,925-05-6508,Developer,30373.35,2495.1125,3,5,4,3,"Mortgage Loan, Auto Loan, and Personal Loan",9.779410522,9,11.51,1,Good,791.4,31.86377886,31 Years and 9 Months,No,55.61424998,,Low_spent_Small_value_payments,236.369931,0,1.0967,-1.0961,0.9887,0.4716,1.0063 +0x12865,CUS_0x21c0,August,50,385-18-5335,Media_Manager,22084.56,,0,7,9,0,,12.69587835,12.50552345,11.24,4,Good,1408.929623,33.56795502,29 Years and 10 Months,No,0,72.60876148,Low_spent_Medium_value_payments,381.7292385,0,-0.5716,-1.3122,-0.0379,0.9157,0.6276 +0x12871,CUS_0xa9a2,August,28,230-52-2154,Media_Manager,18735.98,,6,9,20,3,"Home Equity Loan, Auto Loan, and Debt Consolidation Loan",38.75270777,27.34457207,9.54,9,_,1725.540161,27.50096292,10 Years and 0 Months,Yes,37.32814249,84.73411286,Low_spent_Medium_value_payments,335.5709113,0,0.3219,-0.4094,-1.6291,1.0462,0.1025 +0x1287d,CUS_0xa84b,August,18,447-43-9811,Manager,24278.95,,8,3,13,100,"Personal Loan, Payday Loan, Personal Loan, Payday Loan, Payday Loan, Credit-Builder Loan, and Mortgage Loan",25.09435377,17.42824215,7.63,12,Standard,1641.518925,27.81489177,19 Years and 8 Months,Yes,980,229.5263608,Low_spent_Small_value_payments,183.9621523,0,0.4884,-1.086,0.5159,0.8223,0.2828 +0x12889,CUS_0x4d03,August,27,531-69-9619,Teacher,88400.97,,3,7,19,5,"Payday Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",23.90385977,17,9.13,9,Standard,1214.05,33.3152603,11 Years and 2 Months,Yes,279.6012644,,High_spent_Medium_value_payments,471.456007,0,-0.7401,0.1116,0.0734,0.2006,-0.4091 +0x12895,CUS_0x1e8d,August,23,545-44-8112,Doctor,29146.6,,4,3,11.28836175,2,"Payday Loan, and Payday Loan",,9,2.79,7,_,179.48,34.1390338,18 Years and 4 Months,No,26.24171487,597.6874043,Low_spent_Large_value_payments,322.1966752,0,-0.4719,0.4247,1.0441,-0.268,0.3243 +0x128a1,CUS_0x7eb2,August,28,084-27-1386,Manager,155911.4,,1,5,11,3,"Credit-Builder Loan, Payday Loan, and Home Equity Loan",10.22303012,8.386941572,6.96,3,_,1007.674807,30.65507545,32 Years and 3 Months,No,370.4485213,376.630476,High_spent_Medium_value_payments,827.5826694,0,-0.0358,-0.8175,1.4187,0.6384,-0.1473 +0x128ad,CUS_0x69e5,August,24,802-17-0201,Mechanic,28578.92,,9,6,24,9,"Auto Loan, Credit-Builder Loan, Student Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Student Loan, Mortgage Loan, and Home Equity Loan",,17,21.36,11,Bad,3224.48,39.11069442,2 Years and 10 Months,Yes,202.9796297,,High_spent_Medium_value_payments,227.8538541,0,-0.4404,-0.8206,0.4814,1.2895,0.8973 +0x128b9,CUS_0x6f3e,August,25,663-61-7502,Developer,19137.3,1871.775,10,7,28.06745738,2,"Not Specified, and Home Equity Loan",,30.49899006,10.29,8,Bad,1894.096425,36.5914559,15 Years and 5 Months,Yes,29.70160665,105.1680922,High_spent_Small_value_payments,285.5875132,0,0.4153,0.2194,1.0479,-0.0909,-0.2494 +0x128c5,CUS_0x5478,August,47,029-06-3475,Teacher,22229.37,,4,106,17,3,"Personal Loan, Personal Loan, and Auto Loan",27.96327949,22.54591033,9.24,0,Standard,1210.078802,23.57624297,22 Years and 11 Months,Yes,39.47443518,30.25929884,!@9#%8,353.011016,0,-2.1913,1.0485,1.2414,0.1562,-0.3616 +0x128d1,CUS_0x4a18,August,50,343-11-4876,Media_Manager,110608.83,,6,6,18.28836175,0,Student Loan,,20,4.05,9,Standard,214.4262807,24.95394015,28 Years and 9 Months,No,68.98888573,1416.834579,Low_spent_Medium_value_payments,297.7761871,0,0.3612,0.7549,0.0768,1.0748,0.6766 +0x128dd,CUS_0x2876,August,80,177-50-6419,Lawyer,34308.05,,3,4,12,4,"Not Specified, Student Loan, Payday Loan, and Debt Consolidation Loan",,19.53947183,11.68,2,Standard,1208.840867,37.90439304,29 Years and 2 Months,Yes,74.64845745,,Low_spent_Small_value_payments,340.8424619,0,-1.0115,0.1707,1.7166,0.3993,0.1094 +0x128e9,CUS_0x3872,August,39,#F%$D@*&8,Musician,20547.59,,6,4,13,1,Auto Loan,22.87065464,17,19.46,4,Standard,942.99,31.17761268,17 Years and 9 Months,Yes,120.2458435,116.3760063,Low_spent_Small_value_payments,307.7046447,0,-0.3753,0.3083,1.1742,-0.5221,0.1512 +0x128f5,CUS_0x7a34,August,45,596-93-2081,Scientist,83083.59,6681.6325,7,6,6,4,"Student Loan, Student Loan, Payday Loan, and Payday Loan",25.09379601,18,18.12,8,Standard,1100.84,39.41084894,18 Years and 6 Months,Yes,276.8366486,168.458146,High_spent_Medium_value_payments,472.8684554,0,1.742,2.8496,-0.5756,-2.2196,0.2115 +0x12901,CUS_0x7928,August,45,984-81-3172,Media_Manager,81047.56,,1,5,4,100,"Personal Loan, Student Loan, and Student Loan",8.999104054,9,0.68,6,Good,1180.849814,32.52827479,19 Years and 11 Months,No,153.2016876,184.3733188,High_spent_Small_value_payments,599.2374062,0,-0.1561,0.7238,-0.4176,1.0493,0.6314 +0x1290d,CUS_0x9fc5,August,30,896-56-4601,Doctor,78809.88,,8,4,6,3,"Payday Loan, Personal Loan, and Student Loan",10.33393214,9,6.57,10,Standard,203.21,26.80689441,20 Years and 8 Months,Yes,61830,172.7081252,High_spent_Medium_value_payments,539.2905507,0,-0.6071,0.0468,-0.4419,0.4852,0.7053 +0x12919,CUS_0x75aa,August,25,899-15-1889,Writer,60401.4,,6,6,27,6,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Auto Loan",,31.31277429,7.06,13,Bad,2439.319966,41.92131442,19 Years and 4 Months,Yes,226.8963394,124.6278787,High_spent_Large_value_payments,404.8207818,0,0.1087,0.4069,-1.5538,1.8104,0.1496 +0x12925,CUS_0x6a9,August,18,046-17-3131,Architect,8266.92,534.91,9,9,30.06745738,9,"Payday Loan, Not Specified, Personal Loan, Personal Loan, Personal Loan, Mortgage Loan, Student Loan, Personal Loan, and Not Specified",25.84562814,15,28.88,13,_,5178.920954,30.37744011,9 Years and 3 Months,Yes,55.54806951,57.63768624,Low_spent_Small_value_payments,203.5849563,0,0.2107,-0.6218,-0.639,0.0735,0.3424 +0x12931,CUS_0xbe68,August,18,969-71-6824,_______,58726.71,5167.8925,6,7,33,6,"Not Specified, Auto Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",,25,26.96,10,Bad,3100.276659,33.92520852,4 Years and 3 Months,Yes,225.7694427,242.1045872,High_spent_Medium_value_payments,326.6190396,0,1.9103,-0.2146,0.7436,1.3638,-0.064 +0x1293d,CUS_0x4bbb,August,24,422-72-6325,Lawyer,43608.18,,7,7,23,6,"Payday Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",,20,14.05,10,Bad,1492.88,37.90400035,20 Years and 3 Months,Yes,169.542099,118.723634,High_spent_Medium_value_payments,314.835767,0,0.3852,1.0908,1.0624,-0.0028,0.881 +0x12949,CUS_0x25ae,August,30,320-44-1842,Engineer,21803.325,,5,4,5,0,,0.014206185,4,2.37,2,Good,1315.1,30.88511067,22 Years and 2 Months,No,0,200.1735476,Low_spent_Small_value_payments,266.4208274,0,-0.9265,0.308,0.1224,-0.8337,0.3179 +0x12955,CUS_0x8f35,August,25,201-78-5838,Mechanic,39052.47,3075.46491,5,4,9,2,"Student Loan, and Debt Consolidation Loan",10.56216704,11,2.65,1,Good,1175.733704,31.30741835,33 Years and 6 Months,No,46764,74.80637067,High_spent_Large_value_payments,452.719311,0,-0.0962,-0.3886,-1.663,0.8897,0.8424 +0x12961,CUS_0xa934,August,25,467-87-7518,Journalist,45765.12,3677.76,5,7,6,100,"Student Loan, Not Specified, and Student Loan",10.59404461,7,15.44,6,Standard,1133.03,32.75875751,12 Years and 8 Months,NM,80.96909368,68.81457636,High_spent_Medium_value_payments,467.99233,0,1.2625,2.1653,-1.7247,0.0392,0.6023 +0x1296d,CUS_0x2f77,August,18,892-53-8384,Mechanic,107199.66,8795.305,8,3,16.28836175,2,"Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",16.06191513,15,18.03,8,Standard,1200.93,34.48855345,,Yes,252.3002451,631.4155351,High_spent_Small_value_payments,675.7521808,0,1.4219,1.2369,1.1165,0.0912,-0.0986 +0x12979,CUS_0x3119,August,25,761-32-7533,Developer,37346.16,3028.18,0,5,7,1,Credit-Builder Loan,6.76468181,7,11.2,1,_,1276.04,38.66572901,18 Years and 4 Months,No,15366,146.0115379,High_spent_Small_value_payments,398.6279039,0,-1.1609,-1.1719,-1.5972,-0.2488,-1.6068 +0x12985,CUS_0x1a00,August,30,407-05-1951,Manager,13590.595,,8,5,9,3,"Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",11.91185104,12,10.79,2,Good,157.1047766,34.84173304,29 Years and 3 Months,No,18.16813417,47.53237278,High_spent_Small_value_payments,328.3274176,0,-0.2948,0.944,0.8322,1.1469,0.077 +0x12991,CUS_0x51a1,August,46,959-74-6872,Entrepreneur,63306.54,5260.545,4,5,19,3,"Student Loan, Mortgage Loan, and Student Loan",,9,1.09,7,Standard,1203.19,38.89702649,28 Years and 4 Months,No,85.61112477,173.0854249,High_spent_Medium_value_payments,517.3579504,0,1.3176,-0.4348,-0.2121,2.1906,0.7841 +0x1299d,CUS_0x45de,August,33,331-45-2626,Engineer,112287.88,9168.323333,4,3,11.28836175,4,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",,4,4.43,3,_,612.1067501,35.35734753,,No,271.7979982,996.1236652,Low_spent_Large_value_payments,413.8786693,0,0.2785,-1.3512,0.2318,2.5271,1.7879 +0x129a9,CUS_0x961f,August,44,206-62-4836,Writer,13838.18,,5,4,15,6,"Student Loan, Not Specified, Not Specified, Payday Loan, Student Loan, and Debt Consolidation Loan",,16,9.6,7,_,1381.32,23.09916475,18 Years and 6 Months,Yes,51.98653037,,Low_spent_Small_value_payments,325.6234314,0,0.2503,0.022,1.8009,1.1573,-0.155 +0x129b5,CUS_0xbd0b,August,36,266-16-4841,Musician,17553.22,1343.768333,9,5,22,2,"Personal Loan, and Payday Loan",26.57928141,19.01728906,9.45,6,_,2511.867697,27.73877986,11 Years and 6 Months,Yes,21.0713294,15.93123892,High_spent_Medium_value_payments,347.374265,0,-0.0254,-0.3451,0.1596,0.7709,0.8078 +0x129c1,CUS_0x42ec,August,50,#F%$D@*&8,Accountant,115556.37,,1,3,5.288361749,4,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",6.79706027,8,10.83,6,Good,993.9631027,40.13760399,21 Years and 11 Months,No,222.0734835,718.4860548,Low_spent_Large_value_payments,747.9231719,0,-1.0481,-0.9373,1.0833,-0.8702,0.3532 +0x129cd,CUS_0x269a,August,41,530-21-7776,Scientist,131865,11158.75,5,7,8,3,"Home Equity Loan, Auto Loan, and Auto Loan",,10,10.65,1,Good,602.02,40.68632916,,NM,189.2079091,209.3176351,High_spent_Large_value_payments,957.3494558,0,0.9281,-0.9316,1.4405,-1.2463,-1.224 +0x129d9,CUS_0x48ac,August,21,600-27-5779,Manager,20474.14,,7,1104,33.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Student Loan, Personal Loan, and Personal Loan",47.10056147,28.28756252,8.58,6,Bad,2682.646755,33.3071494,19 Years and 8 Months,Yes,37627,,Low_spent_Small_value_payments,211.5428194,0,0.0243,-1.1317,1.5393,0.2127,0.2689 +0x129e5,CUS_0x5a54,August,46,396-95-2155,Manager,54758.55,,8,8,27.88954781,6,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",33.84753076,24.28393106,29.9,16,Bad,3441.284693,34.79381741,,Yes,1539.819014,72.62368672,High_spent_Medium_value_payments,416.2484682,0,-1.3511,0.1965,0.4012,-0.8123,0.3563 +0x129f1,CUS_0x1cbe,August,25,714-48-4921,Entrepreneur,59807.61,4976.9675,10,10,30.88954781,9,"Credit-Builder Loan, Mortgage Loan, Student Loan, Auto Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Home Equity Loan, and Not Specified",,,20,11,Bad,3126.29,22.49793557,8 Years and 2 Months,Yes,1766.25,466.8350085,!@9#%8,,0,1.9867,1.2329,-0.0277,0.6655,-0.5908 +0x129fd,CUS_0x9fce,August,35,369-67-4232,Lawyer,38444.52,2975.71,0,4,6,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",3.777226368,6.761842661,11.24,6,_,1088.061976,32.74966365,24 Years and 2 Months,NM,67.74489257,204.0763259,Low_spent_Medium_value_payments,305.7497815,0,-0.1764,0.5343,-1.3539,-0.2746,0.0741 +0x12a09,CUS_0x49d3,August,44,302-26-1825,Media_Manager,14266.53,,3,4,11,1,Home Equity Loan,18.63574554,,3.71,2,_,1238.04,36.46416622,21 Years and 10 Months,No,6.047543104,127.2867634,Low_spent_Small_value_payments,263.8534435,0,-0.2534,0.2305,0.1567,1.0984,0.2804 +0x12a15,CUS_0x4533,August,26,#F%$D@*&8,Mechanic,69761.43,,6,3,8,2,"Home Equity Loan, and Credit-Builder Loan",26.37743491,19,1.17,3,Standard,535.22,35.20440741,26 Years and 4 Months,No,58.41828838,82.12020315,High_spent_Large_value_payments,664.9067585,0,0.2443,-0.3571,0.5927,-0.5786,-1.0943 +0x12a21,CUS_0x7468,August,33,316-42-2610,Musician,134341.05,,1,3,9,2,"Payday Loan, and Home Equity Loan",8.157235277,8.422832181,5.86,4,Good,448.0989678,30.33733682,15 Years and 8 Months,No,186.9434011,281.8147668,High_spent_Large_value_payments,882.8505821,0,0.186,0.4354,0.6588,-0.0749,-1.2241 +0x12a2d,CUS_0xbc67,August,28,888-76-7145,Scientist,125141.22,,5,3,4,4,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",0,1,5.95,6,Good,339.4427915,40.56693082,29 Years and 4 Months,No,281.8616826,,Low_spent_Medium_value_payments,349.4614976,0,-0.9731,-0.0654,-0.2411,1.19,-0.6628 +0x12a39,CUS_0x8a39,August,19,339-94-9110,Manager,26612.6,,6,7,4613,1,Auto Loan,18.21538705,14,5.57,5,_,226.3988902,24.68479744,26 Years and 4 Months,No,21.86795408,199.6222947,Low_spent_Large_value_payments,315.8116404,0,0.8862,0.0633,-0.6431,-0.1625,2.3337 +0x12a45,CUS_0x84af,August,32,504-37-8446,Accountant,159319.92,13040.66,5,7,0.288361749,0,Not Specified,15.30025096,,1.14,3,Good,115.2919105,39.0190981,17 Years and 4 Months,No,115.3080029,600.965617,High_spent_Large_value_payments,1247.729841,0,1.5191,-0.0153,0.5044,-0.367,-1.1619 +0x12a51,CUS_0x7210,August,23,827-85-4562,Architect,13231.53,,5,5,12,5,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",22.01573047,,23.46,8,_,292.4,33.93389426,18 Years and 10 Months,NM,36.26350789,59.07515369,Low_spent_Small_value_payments,332.6240884,0,-1.8935,-0.4999,1.187,0.2686,0.5801 +0x12a5d,CUS_0x92e3,August,30,811-73-6476,Journalist,68122.46,5424.871667,4,5,3,2,"Personal Loan, and Personal Loan",0,0,9.4,2,Good,1171.17,36.3416543,27 Years and 6 Months,No,86.77836513,420.0427256,Low_spent_Small_value_payments,325.6660759,0,1.0469,-1.6113,0.3721,0.4917,0.4837 +0x12a69,CUS_0x7315,August,44,792-06-3719,_______,19337.16,,5,4,17,1,Auto Loan,21.32701177,19,5.9,5,Standard,449.37,27.54246301,19 Years and 0 Months,Yes,14.60887975,158.1309211,Low_spent_Small_value_payments,263.6031992,0,0.2997,-0.3839,0.451,-0.709,-0.7665 +0x12a75,CUS_0xc0cd,August,35,#F%$D@*&8,Engineer,14132.77,,8,8,23,5,"Personal Loan, Home Equity Loan, Student Loan, Student Loan, and Student Loan",50.20868612,27.25799418,32.56,12,_,4767.251855,26.69925647,,Yes,39.74250424,69.09196928,!@9#%8,260.6386098,0,-0.2544,-0.0835,-0.2232,1.0411,-1.5215 +0x12a81,CUS_0x5aeb,August,28,106-10-6893,Scientist,43139.76,3594.98,8,7,28.06745738,7,"Not Specified, Debt Consolidation Loan, Mortgage Loan, Personal Loan, Personal Loan, Student Loan, and Student Loan",,19.6539518,2.41,12,Bad,3010.915176,31.16619982,17 Years and 10 Months,Yes,169.8761638,331.8297402,Low_spent_Small_value_payments,121.071808,0,0.8337,-2.0649,1.1528,-1.3551,0.6412 +0x12a8d,CUS_0x1e91,August,49,360-54-9119,Media_Manager,70793.38,6103.448333,5,3,8,1,Credit-Builder Loan,24.85653183,18,9.68,7,_,138.21,26.70634055,21 Years and 3 Months,No,51.12551143,415.2197852,Low_spent_Medium_value_payments,423.9995367,0,0.2419,0.3628,-0.4419,0.8816,-1.3686 +0x12a99,CUS_0xc5d1,August,43,028-44-3271,Developer,33029.66,2766.471667,8,10,19.06745738,4,"Student Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",33.52327384,17.86063314,12.66,16,_,2517.083414,23.69950343,17 Years and 4 Months,Yes,76.87655995,93.44631347,Low_spent_Large_value_payments,349.6040053,0,0.2277,1.247,0.0853,-0.2249,-0.6976 +0x12aa5,CUS_0x43bc,August,36,307-06-8196,Lawyer,22312.07,,1,3,4,3,"Home Equity Loan, Debt Consolidation Loan, and Student Loan",7.706449279,8,9.04,3,Good,46.60453515,30.05921059,23 Years and 10 Months,No,32.89118637,26.67918629,High_spent_Medium_value_payments,395.4396368,0,0.2871,-1.3369,0.0779,1.7937,-2.8222 +0x12ab1,CUS_0x2999,August,38,945-07-8144,Mechanic,9530.69,,8,7,27.06745738,3,"Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",,17.06801496,16.02,10,_,1864.982091,35.63051899,12 Years and 2 Months,Yes,12.02629967,38.8254681,Low_spent_Medium_value_payments,290.750361,0,1.2349,0.9514,0.1496,-1.7083,2.1359 +0x12abd,CUS_0x65ca,August,48,880-92-1122,Manager,116396.67,9501.7225,0,4,6.288361749,2,"Personal Loan, Auto Loan, and Credit-Builder Loan",1.402621622,5,0.65,1,Good,885.57255,29.68955898,18 Years and 6 Months,No,229.4914065,633.7175791,High_spent_Large_value_payments,773.5164699,0,-0.3618,1.0139,-0.5821,1.1681,0.4398 +0x12ac9,CUS_0x70c5,August,36,331-56-7473,_______,38978.06,,6,7,11,3,"Credit-Builder Loan, Student Loan, and Student Loan",14.3488618,8,10.53,1,Standard,894.15,36.79513703,33 Years and 0 Months,No,79.45093121,271.4832897,Low_spent_Small_value_payments,269.6829458,0,-0.5132,1.248,-0.1266,2.3386,1.8419 +0x12ad5,CUS_0x446,August,44,767-35-3133,Architect,17327.28,,6,6,20,100,"Mortgage Loan, Personal Loan, Personal Loan, Mortgage Loan, Auto Loan, Personal Loan, and Auto Loan",,20.40917881,18.3,13,Bad,2523.486371,39.29868163,15 Years and 9 Months,Yes,55.43849807,153.6810477,!@9#%8,252.5744542,0,1.8738,-0.5232,-0.5995,-1.3391,0.6124 +0x12ae1,CUS_0x7528,August,37,932-59-3463,Engineer,57459.36,4839.28,8,7,15,5,"Home Equity Loan, Auto Loan, Personal Loan, Not Specified, and Payday Loan",17.23927921,17,18.18,11,_,2124.47,38.03791239,9 Years and 6 Months,Yes,222.1668798,168.6407984,High_spent_Medium_value_payments,343.1203218,0,-0.0587,0.1078,-0.401,0.6259,1.4079 +0x12aed,CUS_0x13bc,August,23,934-82-6083,Engineer,10885.15,611.0958333,5,5,5,1,Debt Consolidation Loan,,15,9,4,Standard,246.22,34.03570758,14 Years and 10 Months,Yes,6.606517983,36.64036734,Low_spent_Small_value_payments,307.862698,0,-0.579,0.1591,-0.254,-0.0715,-0.7878 +0x12af9,CUS_0x4b9c,August,44,634-49-7631,Writer,51676.26,4455.355,8,8,26.95700519,9,"Not Specified, Mortgage Loan, Student Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",35.57292452,23,21.44,7,_,3476.890954,28.45826559,7 Years and 2 Months,Yes,1631.927746,52.45168758,High_spent_Large_value_payments,280.1056973,0,0.7439,0.387,0.186,2.382,1.1394 +0x12b05,CUS_0x6d71,August,24,117-40-9536,Manager,58452.18,4676.015,3,5,2,0,,3.212650918,4.76746426,10.83,5,Good,1616.96621,36.7283882,17 Years and 11 Months,No,0,47.91748913,High_spent_Large_value_payments,659.6840109,0,-2.0762,1.3829,-0.8854,-0.9844,-0.4962 +0x12b11,CUS_0xdc1,August,54,202-07-3535,Journalist,28893.09,2295.7575,4,1,11,0,,,2,4.98,1,Good,224.36,38.9425863,22 Years and 6 Months,No,0,85.71733143,High_spent_Small_value_payments,403.8584186,0,-0.364,-0.414,-1.8514,-0.3516,-0.8575 +0x12b1d,CUS_0x1a4a,August,41,759-42-2499,Developer,12162.055,,5,7,13,3,"Auto Loan, Home Equity Loan, and Payday Loan",,11,10.84,4,Standard,1179.95,37.26939182,30 Years and 10 Months,Yes,27.80687832,10.35874106,High_spent_Large_value_payments,282.3848389,0,1.0168,-0.2525,-0.4294,-0.2676,-1.3815 +0x12b29,CUS_0xb443,August,21,151-39-2232,Doctor,147819.96,12452.33,3,5,14.28836175,2,"Payday Loan, and Debt Consolidation Loan",16.79445532,15,9.68,4,Standard,1205.02,26.27206849,27 Years and 5 Months,No,224.631416,,Low_spent_Medium_value_payments,33.72368794,0,1.6056,-0.3325,0.2048,-0.2352,0.2764 +0x12b35,CUS_0xa9a,August,41,809-65-2502,Mechanic,124106.04,9659.357841,2,3,4140,3,"Personal Loan, Payday Loan, and Home Equity Loan",2.588664369,4,4.28,5,Good,889.46,22.97000571,29 Years and 4 Months,NM,1200.655567,1336.556501,Low_spent_Small_value_payments,,0,0.0761,0.6204,0.952,0.5967,0.6714 +0x12b41,CUS_0xd50,August,41,943-43-6814,Entrepreneur,43771.85,,4,3,9,1,Student Loan,0,1,3.78,1,Good,1166.214914,37.22730816,25 Years and 9 Months,No,29.64887881,51.10485499,High_spent_Large_value_payments,525.2299651,0,-2.0615,1.7509,-0.8285,0.8595,-1.8352 +0x12b4d,CUS_0x5883,August,35,757-65-2556,Accountant,37898.34,3244.195,8,7,24,100,"Not Specified, Debt Consolidation Loan, and Payday Loan",13.90347019,10.7893187,9.97,11,Standard,2773.823918,24.01711386,13 Years and 11 Months,Yes,49.67038871,118.6333837,High_spent_Medium_value_payments,406.1157276,0,-0.1163,-0.2031,-0.011,0.1876,-0.3501 +0x12b59,CUS_0xa40d,August,56,973-89-7112,Doctor,22133.01,1583.4175,5,6,5,0,,,8,5.64,6,Standard,965.751412,29.60204108,19 Years and 9 Months,No,0,126.8903617,!@9#%8,318.1994568,0,-0.0513,0.7052,-1.0981,-0.9113,0.5006 +0x12b65,CUS_0x330a,August,41,936-92-2913,Entrepreneur,22225113,3798.6925,6,9,28,4,"Auto Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",44.92021317,26.75444666,5.91,12,Bad,2205.83487,32.07725977,10 Years and 9 Months,Yes,80.11142371,212.565401,Low_spent_Medium_value_payments,367.1924253,0,-0.283,-0.8862,0.799,0.4635,1.4216 +0x12b71,CUS_0xb4c3,August,36,577-67-1646,Doctor,31341.98,,8,9,33.88954781,9,"Mortgage Loan, Home Equity Loan, Student Loan, Payday Loan, Not Specified, Not Specified, Student Loan, Not Specified, and Home Equity Loan",35.78573709,26.75626397,3.72,14,Bad,4905.13801,25.19862013,3 Years and 2 Months,Yes,1536.60077,,Low_spent_Medium_value_payments,95.15240897,0,-0.2282,-0.3625,-0.6971,-0.2529,0.0612 +0x12b7d,CUS_0x56d6,August,37,349-72-1106,Journalist,17943.885,,4,3,7.067457376,3,"Payday Loan, Payday Loan, and Student Loan",27.78993052,19,10.55,10,Standard,1714.230954,32.505394,17 Years and 8 Months,Yes,35.30356913,61.20524031,Low_spent_Small_value_payments,321.6032776,0,0.8182,0.5866,-0.2465,-0.4279,-0.5003 +0x12b89,CUS_0x174b,August,30,942-42-9612,Writer,22709.37,2115.4475,6,5,19,2,"Personal Loan, and Debt Consolidation Loan",,11,17.62,8,Standard,412.53,35.8012918,26 Years and 8 Months,Yes,77114,99.74583122,Low_spent_Medium_value_payments,366.3601387,0,-0.2798,2.18,1.1093,0.4056,-3.6686 +0x12b95,CUS_0x2703,August,38,188-67-4231,Doctor,18661.91,1305.159167,6,6,27,8,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Personal Loan, and Not Specified",,30.26194795,15.81,14,Bad,5207.298715,25.79284332,11 Years and 0 Months,Yes,65.31669776,10000,Low_spent_Small_value_payments,268.5375734,0,-0.5361,0.5357,0.4816,0.1853,-1.3448 +0x12ba1,CUS_0x837e,August,27,363-22-9894,Teacher,22846.31,2166.859167,7,3,5,3,"Home Equity Loan, Auto Loan, and Not Specified",,9,19.12,623,_,1374.76,33.75054711,21 Years and 6 Months,Yes,44.81412898,95.46549925,High_spent_Small_value_payments,336.4062884,0,0.5587,1.0377,1.2214,-0.6365,-0.2876 +0x12bad,CUS_0x993a,August,26,054-60-4996,Architect,26649.48,2040.79,4,6,4,4,"Mortgage Loan, Auto Loan, Personal Loan, and Student Loan",,20,7.49,7,_,496.59,28.32474296,24 Years and 2 Months,No,73.10945321,134.1424797,High_spent_Small_value_payments,256.8270671,0,0.7152,1.1231,1.4047,0.6558,1.4595 +0x12bb9,CUS_0x46ef,August,30,867-02-2158,Accountant,9765.685,,5,7,17,4,"Debt Consolidation Loan, Mortgage Loan, Not Specified, and Mortgage Loan",26.87533308,18,10.47,4,Standard,989.35,38.03076174,27 Years and 9 Months,No,25.14704537,40.62031855,Low_spent_Small_value_payments,282.2133444,0,0.0631,0.494,-1.614,0.8254,0.1493 +0x12bc5,CUS_0x4abd,August,21,618-82-4410,_______,94465.32,,3,7,7,100,"Mortgage Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",18.41223495,14,6.57,3,Standard,522.8299562,25.52806434,30 Years and 9 Months,No,181.0340988,708.3811276,!@9#%8,273.0442215,0,1.5728,-1.5568,1.6341,0.0478,0.1457 +0x12bd1,CUS_0x432e,August,20,581-64-0161,Engineer,29489.63,,485,4,5,0,,7.393679653,10,3.79,5,_,428.2796955,39.5713051,21 Years and 10 Months,No,0,78.29616723,High_spent_Medium_value_payments,447.6035258,0,0.2891,-1.5032,-0.7642,0.587,0.9272 +0x12bdd,CUS_0x7281,August,18,840-14-9434,Architect,54553.59,4547.1325,7,5,22,8,"Payday Loan, Home Equity Loan, Payday Loan, Payday Loan, Not Specified, Auto Loan, Payday Loan, and Debt Consolidation Loan",36.7816345,24.4520404,14.89,12,Bad,5709.22194,30.73906476,9 Years and 8 Months,Yes,239.1367342,90.0214798,High_spent_Large_value_payments,365.555036,0,-2.1846,0.4606,-2.2001,1.0092,1.0128 +0x12be9,CUS_0x2491,August,30,202-92-7576,Entrepreneur,17569.87,,7,3,19,6,"Auto Loan, Mortgage Loan, Not Specified, Payday Loan, Student Loan, and Credit-Builder Loan",21.12824372,,14.21,12,Standard,1780.040386,26.44812875,10 Years and 2 Months,Yes,45.64725997,61.64103505,Low_spent_Small_value_payments,304.3272883,0,0.3487,-0.0378,-0.1057,-0.135,0.6541 +0x12bf5,CUS_0xa780,August,26,683-63-4431,Musician,118124.48,9559.706667,3,3,5,1,Student Loan,17.07697098,13,3.79,4,Good,86.51,31.44326686,17 Years and 11 Months,No,73.26054843,970.0948022,Low_spent_Medium_value_payments,192.615316,0,-0.757,-1.2156,-0.0036,0.3326,1.032 +0x12c01,CUS_0x729,August,80,716-07-7072,Manager,15648.85,,7,7,24.06745738,7,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Auto Loan",,29.73978222,4.64,10,Bad,4291.672505,33.76863054,5 Years and 4 Months,Yes,67.85705168,62.03305425,Low_spent_Small_value_payments,274.6966895,0,-1.9985,-1.6276,2.4054,-0.4828,1.0346 +0x12c0d,CUS_0x1458,August,80,222-55-6808,Developer,28127.13,2579.9275,6,5,11,1,Credit-Builder Loan,16.00327856,14,15,,_,1187.43,28.88577424,26 Years and 11 Months,Yes,17.03134464,162.6597982,Low_spent_Large_value_payments,348.3016071,0,-1.3507,-1.1133,-0.3224,1.3271,-0.0892 +0x12c19,CUS_0x2eb3,August,18,076-61-7709,Accountant,28876.41,,8,4,6,4,"Not Specified, Student Loan, Mortgage Loan, and Home Equity Loan",14.44803138,11,16.19,8,Standard,812.5,29.14662497,8 Years and 5 Months,Yes,50.29382155,31.9470137,High_spent_Medium_value_payments,435.9959147,0,-0.7141,0.072,-0.8699,-0.554,-1.9314 +0x12c25,CUS_0x92d6,August,31,914-52-5784,Accountant,17583.65,1177.304167,6,10,26.06745738,3,"Debt Consolidation Loan, Personal Loan, and Home Equity Loan",42.72147587,22.88407797,13.3,17,Standard,2504.210876,37.16016067,18 Years and 8 Months,Yes,26.79540287,,Low_spent_Small_value_payments,308.2298634,0,0.6646,0.9928,-0.5569,-0.5711,0.0431 +0x12c31,CUS_0x2a12,August,21,087-87-0131,Scientist,16038.68,1538.556667,3,4,15,0,,15.34644934,14,11.12,7,Standard,984.67,32.2965504,19 Years and 0 Months,No,0,109.8473622,Low_spent_Small_value_payments,334.0083044,0,-0.8478,0.1328,1.161,-0.2333,1.465 +0x12c3d,CUS_0x4695,August,22,486-94-2198,Writer,11980.385,,5,3,18,3,"Home Equity Loan, Credit-Builder Loan, and Personal Loan",26.59848701,18,17.4,10,Standard,29.81,35.48212631,,Yes,26.26588735,49.33750387,Low_spent_Medium_value_payments,307.4331505,0,0.7402,-1.2743,-1.0466,0.9556,-1.2561 +0x12c49,CUS_0xae34,August,23,395-84-0690,Architect,33470.66,2562.221667,6,3,7,4,"Credit-Builder Loan, Auto Loan, Home Equity Loan, and Not Specified",15.40014467,9,12.98,0,_,1423.22,30.51969173,20 Years and 0 Months,Yes,99.31719754,67.59604898,High_spent_Medium_value_payments,339.3089201,0,0.9479,1.3089,0.2422,0.3217,-0.3673 +0x12c55,CUS_0x5d4f,August,40,#F%$D@*&8,Architect,110398.14,9007.845,4,3,10.28836175,2,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",1.889211908,5,7.65,4,_,831.1557783,30.93409657,30 Years and 0 Months,No,167.2947882,630.6689057,High_spent_Large_value_payments,784.6490843,0,0.2015,-0.5269,-0.8266,0.5822,-0.5157 +0x12c61,CUS_0x245e,August,44,480-30-7979,Musician,31081.62,,7,7,23.06745738,9,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Student Loan, Credit-Builder Loan, Personal Loan, and Payday Loan",39.57662788,23,,12,_,2797.950954,34.97852873,13 Years and 6 Months,Yes,230.8309149,,Low_spent_Small_value_payments,31.50797865,0,0.3806,0.591,-0.6862,-0.676,-0.3432 +0x12c6d,CUS_0x4fb8,August,27,166-21-7041,Musician,31795.08,2320.594711,10,5,23,7,"Payday Loan, Auto Loan, Payday Loan, Not Specified, Not Specified, Student Loan, and Not Specified",29.72579585,18.96509496,6.05,11,Bad,2292.744188,32.52943068,8 Years and 5 Months,Yes,360.7688776,136.3924237,Low_spent_Medium_value_payments,228.2929877,0,2.2783,-0.5337,-0.5788,-0.4819,0.4425 +0x12c79,CUS_0x932a,August,30,519-83-5940,Writer,18431.53,,6,8,27.95700519,7,"Personal Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Payday Loan",,25.05087052,26.5,10,Bad,5557.733745,34.08124864,,NM,1390.237362,50.87932497,Low_spent_Medium_value_payments,258.0290273,0,-0.2802,1.8794,0.4609,-0.2606,0.1548 +0x12c85,CUS_0x9978,August,28,704-69-3409,Accountant,38305.28,3273.106667,7,5,15,5,"Credit-Builder Loan, Not Specified, Student Loan, Student Loan, and Not Specified",32.56891018,25.1379964,4.75,12,_,1875.195164,33.29740897,6 Years and 2 Months,Yes,151.9368597,133.4678532,Low_spent_Small_value_payments,331.9059537,0,-0.1034,0.0785,0.4802,-0.138,0.0824 +0x12c91,CUS_0xea5,August,28,196-98-4126,_______,71169.3,,2,4,4.288361749,4,"Auto Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",0,1,5.4,7,Good,741.3801594,37.20751841,,No,212.2330301,499.9988749,High_spent_Large_value_payments,573.4091545,0,-1.9844,-0.912,0.2143,-1.0736,-0.0099 +0x12c9d,CUS_0x3610,August,80,908-07-4890,Mechanic,7371.66,521.305,10,9,25,2,"Mortgage Loan, and Not Specified",,13,25.33,11,Standard,2276.26,26.48243005,18 Years and 11 Months,Yes,8.740465075,32.24313369,Low_spent_Small_value_payments,301.1469012,0,-1.5621,0.1137,0.6466,0.1268,-0.4274 +0x12ca9,CUS_0x38b4,August,45,050-41-8827,Accountant,56831.7,,10,7,23,2,"Debt Consolidation Loan, and Debt Consolidation Loan",36.59384837,19,7.82,12,Bad,2551.01,29.52795479,17 Years and 0 Months,Yes,56.70861052,123.9041356,High_spent_Large_value_payments,551.3847539,0,1.6121,-0.8017,-0.6914,0.738,-0.7256 +0x12cb5,CUS_0x8cb5,August,26,272-98-1671,Mechanic,21719.9,2016.991667,5,5,11,0,,14.45372348,10.93263565,7.73,3,Good,620.8718203,32.5781356,23 Years and 3 Months,No,0,114.792346,Low_spent_Small_value_payments,376.9068206,0,-2.0135,0.0384,-0.7635,0.3816,-0.8738 +0x12cc1,CUS_0x6ecf,August,18,644-77-4350,Engineer,118042.88,9823.906667,6,3,9,1,Debt Consolidation Loan,14.21004526,10,1.09,0,_,1476.36,34.34716412,17 Years and 11 Months,Yes,56.10129554,554.2617411,Low_spent_Medium_value_payments,652.02763,0,0.1045,-1.3694,-1.3965,0.4925,-0.9532 +0x12ccd,CUS_0x8854,August,46,761-81-1588,Teacher,15655612,,10,5,22,100,"Auto Loan, Not Specified, Auto Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,2138,7.66,14,Bad,1709.48,34.94454586,15 Years and 2 Months,Yes,83.93550477,49.02025546,Low_spent_Large_value_payments,270.8662883,0,-0.464,1.5005,0.4153,0.2393,0.4437 +0x12cd9,CUS_0x4e01,August,38,475-46-3247,_______,39014.5,3456.208333,4,7,5,0,,20.30854027,14.1388206,4.54,0,Good,1472.953763,27.93870606,15 Years and 9 Months,NM,0,231.6390084,Low_spent_Small_value_payments,403.981825,0,-0.4747,0.5787,-0.5035,0.3525,2.076 +0x12ce5,CUS_0x14b4,August,36,377-94-2974,Engineer,32473,2797.083333,4,5,6,0,,0.374340591,2,8.57,3,Good,509.8754398,33.71658304,,No,0,,High_spent_Small_value_payments,452.0122599,0,-0.0992,-0.5067,0.4458,-0.6861,0.7669 +0x12cf1,CUS_0x8d77,August,44,607-34-4092,Scientist,80370.32,6856.526667,8,7,17,100,,,6,12.36,4,Standard,1135.98,28.7429713,27 Years and 10 Months,Yes,0,189.2370623,High_spent_Small_value_payments,756.4156044,0,-0.5963,0.0427,0.6736,0.2564,-0.313 +0x12cfd,CUS_0x4da9,August,80,857-57-9621,Media_Manager,76448.44,6134.703333,6,5,17,3,"Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,9.481749362,9.37,,Standard,2242.554751,28.6028569,11 Years and 8 Months,Yes,141.2967147,,Low_spent_Small_value_payments,348.4174692,0,-0.2052,0.2158,-0.4769,0.3995,0.0606 +0x12d09,CUS_0x8f7e,August,32,235-01-7131,Scientist,35589.97,,4,6,14,4,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",12.93301802,13.04854356,19.4,8,Standard,1653.927602,29.10107462,14 Years and 10 Months,Yes,98.23221001,165.870386,!@9#%8,305.3804874,0,-0.5602,1.2768,0.2534,-0.5569,0.0306 +0x12d15,CUS_0xb7a4,August,35,486-84-2079,Journalist,33470.43,,7,5,10,1,Not Specified,14.12696024,13,15.22,8,Standard,1189.361169,26.58774236,26 Years and 0 Months,Yes,6535,,High_spent_Large_value_payments,451.6671382,0,0.3309,0.8742,0.3424,-1.0332,1.4785 +0x12d21,CUS_0xb15e,August,26,979-26-9525,Mechanic,123050.2,,3,3,7,3,"Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,11,2.36,0,Good,512.24,35.83020372,29 Years and 4 Months,No,180.1891692,414.3245423,!@9#%8,683.3046219,0,0.189,-0.1631,0.6126,0.8108,0.0752 +0x12d2d,CUS_0x12be,August,34,157-93-9714,Engineer,15717.275,,1,5,8,1,Credit-Builder Loan,5.56476648,8,7.03,1,Good,1020.27,26.46211532,31 Years and 5 Months,No,152.1814754,,Low_spent_Small_value_payments,257.7848702,0,-0.8907,-0.3335,0.4667,0.6944,-0.4593 +0x12d39,CUS_0x81e6,August,25,990-52-8222,Mechanic,22728.9,1773.075,5,3,16,3,"Auto Loan, Payday Loan, and Debt Consolidation Loan",17.81286522,10.64217622,16.27,4,Standard,965.961533,35.34153668,25 Years and 6 Months,Yes,42.19175512,189.9338112,Low_spent_Small_value_payments,235.1819337,0,1.0081,1.8001,-1.2433,-0.722,0.6677 +0x12d45,CUS_0x98cd,August,24,477-15-2157,Entrepreneur,74800,,3,1,5,4,"Credit-Builder Loan, Personal Loan, Home Equity Loan, and Payday Loan",4.285193894,7,7.73,4,Good,1015.619568,32.37290695,28 Years and 4 Months,No,244.5839725,279.7604425,High_spent_Medium_value_payments,362.0061839,0,-0.7067,0.2342,-1.5859,0.2827,1.497 +0x12d51,CUS_0x4470,August,39,622-40-1120,Mechanic,39102.56,3012.546667,9,7,24,5,"Mortgage Loan, Student Loan, Payday Loan, Student Loan, and Payday Loan",36.97467341,19,26.66,,Bad,3953.52,38.42357174,5 Years and 11 Months,Yes,135.0534302,,Low_spent_Small_value_payments,78.15999775,0,0.3407,-0.4423,0.0161,-1.184,-0.6626 +0x12d5d,CUS_0x20ba,August,41,595-90-1107,Manager,8135.855,,7,7,18.06745738,9,"Payday Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",44.4722459,24,21.15,8,Bad,4807.890954,40.64367529,7 Years and 2 Months,Yes,42.98980179,14.19335223,Low_spent_Large_value_payments,234.7953497,0,0.9782,1.4781,1.2505,1.8038,0.9421 +0x12d69,CUS_0x7354,August,51,904-08-9318,Manager,24749.2,,4,4,19,1,Not Specified,,10,2.41,9,Standard,1188.44,36.82838748,33 Years and 6 Months,No,12.42847184,143.154464,Low_spent_Small_value_payments,348.6603975,0,2.2028,2.7746,-0.7718,0.7386,-0.7995 +0x12d75,CUS_0x8d02,August,28,109-54-0844,Entrepreneur,29453.84,,7,5,11.28836175,4,"Not Specified, Payday Loan, Mortgage Loan, Home Equity Loan, and Auto Loan",,23.16859918,19.45,10,_,285.5019736,24.32278072,,NM,86.0863079,460.5245068,High_spent_Medium_value_payments,346.075313,0,0.5404,0.03,0.6104,-1.3537,0.0704 +0x12d81,CUS_0x55d9,August,28,#F%$D@*&8,_______,15701.525,,7,7,1,4,"Student Loan, Home Equity Loan, Student Loan, and Mortgage Loan",25.72881704,20.75418612,3.83,3,Good,1059.83793,39.32144276,32 Years and 2 Months,NM,50.3964188,10000,Low_spent_Medium_value_payments,307.7901821,0,0.218,0.7146,-0.2942,0.3886,-0.5619 +0x12d8d,CUS_0x3bd0,August,19,#F%$D@*&8,Entrepreneur,43592.1,3776.675,9,10,29.06745738,9,"Personal Loan, Not Specified, Student Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",29.77469163,19.22949425,23.28,12,Bad,3292.49132,39.88204379,4 Years and 5 Months,Yes,243.6995779,46.61921607,High_spent_Large_value_payments,300.6284181,0,0.0755,-0.5266,1.3622,-0.7457,-1.7766 +0x12d99,CUS_0x19fc,August,31,502-11-8830,Teacher,18390.3,,10,10,26.88954781,6,"Not Specified, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",32.90137607,19,24.89,10,Bad,3383.55,39.39272035,0 Years and 11 Months,Yes,1375.9055,69.12230588,Low_spent_Medium_value_payments,303.2946127,0,0.1502,-0.6862,1.0311,-2.2347,0.6358 +0x12da5,CUS_0xbe20,August,80,317-36-6374,Teacher,30162.35,2501.529167,5,7,16,4,"Mortgage Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",15.46605521,11,4.26,3,Standard,1278.35,37.00379201,25 Years and 11 Months,No,76.36269393,,High_spent_Small_value_payments,380.4825793,0,0.3797,0.2408,0.0215,-1.043,0.8997 +0x12db1,CUS_0x9319,August,30,144-38-5024,Writer,52046.28,,8,4,13,3,"Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",,18,,251,Standard,2314.66,22.88103393,6 Years and 5 Months,Yes,88.50752115,281.2414518,Low_spent_Small_value_payments,326.9700271,0,1.3663,-0.5266,0.11,0.743,0.6004 +0x12dbd,CUS_0x4adc,August,36,392-99-5218,Writer,20295.67,1474.8599,10,6,18.06745738,8,"Mortgage Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",35.93033094,19.28920509,-2.56,16,_,2608.013857,33.54564225,20 Years and 6 Months,Yes,131.5470951,,Low_spent_Medium_value_payments,204.0278329,0,0.3827,0.7793,1.6262,-0.005,1.0513 +0x12dc9,CUS_0x456f,August,25,013-63-3900,Writer,41694.36,,1,7,5,3,"Mortgage Loan, Student Loan, and Not Specified",0,2.275701963,10.15,3,Good,621.3990235,31.45278953,25 Years and 0 Months,No,84.47066365,86.67790143,High_spent_Medium_value_payments,438.4044349,0,-1.2122,0.3646,1.3321,-0.8645,1.2257 +0x12dd5,CUS_0x150d,August,38,868-87-6401,Writer,40085.46,3455.455,6,6,19.06745738,5,"Auto Loan, Student Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",29.99216777,14.61610038,8.97,12,Bad,2765.379966,25.68472212,18 Years and 11 Months,Yes,142.1126209,215.5387115,Low_spent_Small_value_payments,251.1738797,0,-0.3222,-2.1093,-0.1222,0.2702,-0.1906 +0x12de1,CUS_0xb337,August,38,368-00-3868,Manager,9917.025,,5,6,17,2,"Debt Consolidation Loan, and Mortgage Loan",21.87448289,17,13.96,8,Standard,1065.19,33.13058037,,Yes,14.19905763,57.36354395,Low_spent_Large_value_payments,308.3792734,0,-0.5311,-1.2942,-0.5548,0.9276,0.2709 +0x12ded,CUS_0x334d,August,23,609-56-6241,Entrepreneur,99237.75,8288.8125,4,7,10,3,"Auto Loan, Mortgage Loan, and Payday Loan",9.678781311,10,0.52,4,Good,1317.42,27.87812932,16 Years and 10 Months,No,214.607132,,High_spent_Medium_value_payments,604.4574495,0,0.9579,1.0912,0.6061,-0.6902,-0.6852 +0x12df9,CUS_0x90d8,August,44,#F%$D@*&8,Engineer,67930.88,5729.906667,5,4,25,7,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",15.85563676,11,11.28,,Standard,2486.49,38.86120982,9 Years and 2 Months,NM,379.6037902,,High_spent_Medium_value_payments,219.0969912,0,0.1438,-0.1501,0.6086,-0.6276,-1.6393 +0x12e05,CUS_0x884a,August,32,075-08-4605,Teacher,36707.7,3052.975,5,5,19,100,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",26.93152006,20,10.03,7,Standard,1867.79,31.90049751,11 Years and 11 Months,Yes,130.6361346,149.2546354,High_spent_Small_value_payments,285.40673,0,1.0513,-0.3362,-0.2799,-0.2984,-0.072 +0x12e11,CUS_0x4c87,August,51,671-87-7765,Musician,40428.66,,3,5,6,0,,16.65669064,13.89252715,6.66,,Standard,79.63744365,28.39428087,,No,0,224.0641024,Low_spent_Large_value_payments,401.2413976,0,1.4197,-1.9183,-0.2474,-0.757,-0.8831 +0x12e1d,CUS_0xc066,August,26,541-80-8668,Scientist,11451837,3323.63,6,3,20,0,,17.76800014,13,12.38,5,Standard,1001.61,37.28791055,28 Years and 4 Months,Yes,0,410.7808319,Low_spent_Small_value_payments,211.5821681,0,-1.0673,-1.8875,1.6671,-0.6005,1.0414 +0x12e29,CUS_0x5ecb,August,34,356-75-9183,Doctor,9015.625,1019.302083,6,6,19,9,"Not Specified, Payday Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, and Student Loan",,21.90551973,14.38,11,Bad,4181.083448,35.19254107,5 Years and 4 Months,Yes,62.15654999,,Low_spent_Small_value_payments,198.9223325,0,1.5065,-1.0785,-0.5371,-1.1728,-0.9982 +0x12e35,CUS_0x51c9,August,29,640-03-4819,Lawyer,105565.71,8813.1425,7,3,6.288361749,0,,21.73147637,18,13.63,9,_,881.4917937,35.73733436,,Yes,0,614.3853603,High_spent_Large_value_payments,955.2685732,0,0.5016,0.585,2.0537,0.426,0.3779 +0x12e41,CUS_0x42a,August,18,033-52-4312,Lawyer,64923.04,,8,3,4.288361749,2,"Personal Loan, Mortgage Loan, and Auto Loan",17.66293418,15,7.7,6,Standard,370.4,27.34886447,31 Years and 2 Months,Yes,156.6040855,,Low_spent_Small_value_payments,192.9905708,0,0.1911,-0.3898,0.1538,0.0568,0.9066 +0x12e4d,CUS_0xbc04,August,22,#F%$D@*&8,Entrepreneur,70361.76,,4,6,18,4,"Mortgage Loan, Student Loan, Personal Loan, and Home Equity Loan",,18,17.48,7,Standard,2171.51,27.44980182,,Yes,132.0605839,491.0179275,Low_spent_Small_value_payments,232.6694886,0,-0.0901,-0.3458,-0.6653,-0.3621,-1.2481 +0x12e59,CUS_0x509e,August,28,304-30-4564,Writer,16105.04,,10,6,24,9,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Student Loan, Student Loan, Student Loan, Payday Loan, and Personal Loan",24.35315607,16.90261598,15.82,12,Bad,3737.7411,27.12715349,9 Years and 0 Months,Yes,68.23494503,160.8494795,Low_spent_Small_value_payments,217.1242422,0,1.2582,1.2743,-1.0232,0.418,-0.6589 +0x12e65,CUS_0xbd90,August,48,500-94-1740,Lawyer,19749.315,1635.77625,0,6,8,2,"Payday Loan, and Not Specified",,,8.68,2,Good,1286.51,36.000086,24 Years and 0 Months,No,17.84950017,89.77687794,High_spent_Small_value_payments,315.9512469,0,-0.5481,0.3508,1.5875,-1.7799,0.9381 +0x12e71,CUS_0x8841,August,53,648-37-6041,Mechanic,74366.94,6380.245,0,7,1.288361749,2,"Personal Loan, Not Specified, and Payday Loan",7.704819594,10,9.61,7,_,228.9981363,37.51185674,31 Years and 6 Months,No,126.6422355,684.9813529,High_spent_Medium_value_payments,521.2728601,0,-0.8168,-0.7953,-0.4286,-0.2734,0.943 +0x12e7d,CUS_0xc40f,August,45,115-97-3102,Developer,8071.24,,7,5,22.06745738,9,"Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Personal Loan, and Personal Loan",,27.24556399,7.86,12,_,1724.485139,35.52213688,13 Years and 2 Months,Yes,45.68156231,,Low_spent_Small_value_payments,243.0643344,0,1.1096,-0.7385,-0.0294,1.2512,1.3353 +0x12e89,CUS_0x6172,August,32,794-09-7808,Manager,17091.96,,10,8,23,5,"Payday Loan, Student Loan, Personal Loan, Payday Loan, and Home Equity Loan",34.38648934,23.97294756,2.38,11,Bad,4543.125976,40.07793039,8 Years and 5 Months,Yes,54.85794586,10000,Low_spent_Small_value_payments,282.3548839,0,2.2133,0.6877,1.4932,-0.0564,-0.7599 +0x12e95,CUS_0x56cf,August,22,310-05-9951,_______,29960.97,,3,6,14,1,Home Equity Loan,23.55611394,19,19.54,6,Standard,744.37,29.64587853,31 Years and 6 Months,Yes,17.23485857,128.150503,Low_spent_Small_value_payments,368.6893885,0,1.3869,-0.8441,0.2723,-0.3075,-0.6737 +0x12ea1,CUS_0x5915,August,80,307-35-3344,Lawyer,9313.8,,10,1349,24,9,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Student Loan, Payday Loan, Not Specified, Personal Loan, Personal Loan, and Home Equity Loan",33.94722698,24,1.86,9,Bad,2879.88,30.70913644,12 Years and 3 Months,Yes,36.47355095,41.5223977,Low_spent_Large_value_payments,293.9190514,0,-2.2459,0.0502,3.0597,-1.3958,0.3075 +0x12ead,CUS_0x3023,August,29,775-12-4739,Musician,32613.68,,9,5,28,7,"Credit-Builder Loan, Payday Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",25.13566262,18.22993624,29.65,12,Bad,4361.403791,30.23468697,,Yes,116.6885376,48.19196749,High_spent_Large_value_payments,344.8001616,0,0.4747,0.2141,-0.9498,0.6761,0.2158 +0x12eb9,CUS_0xa493,August,23,964-65-9900,Architect,57586.82,,4,7,1,0,,6.329184617,8,1.59,3,Good,709.3871557,39.47227112,31 Years and 9 Months,No,75532,,High_spent_Small_value_payments,603.9264049,0,-0.481,-0.1998,-1.015,0.4634,-1.9633 +0x12ec5,CUS_0x169c,August,46,329-30-2891,Developer,11646.925,,7,4,8.067457376,0,,15.42332988,9,4.54,6,Good,1005.670954,25.5114253,32 Years and 11 Months,No,0,72.28518864,Low_spent_Large_value_payments,284.5522317,0,-0.1882,1.3034,-0.055,0.2249,2.2033 +0x12ed1,CUS_0x406e,August,55,178-31-4896,Journalist,22434.16,2060.513333,3,3,17,1,Home Equity Loan,,20,15.62,1,Standard,12.30156559,27.02516836,33 Years and 3 Months,Yes,17.04031521,282.0288034,Low_spent_Small_value_payments,229.3072922,0,-0.8848,-1.4284,-0.8621,0.1471,-0.5654 +0x12edd,CUS_0x3a93,August,22,892-22-1956,Mechanic,15411.93,,7,10,33.06745738,4,"Mortgage Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",29.81768436,17.20878633,9.58,14,_,2607.243161,27.56352667,15 Years and 10 Months,Yes,34.00796428,,Low_spent_Small_value_payments,193.2258213,0,-0.8503,0.6013,-0.3437,-0.4873,-1.0569 +0x12ee9,CUS_0x2a5d,August,18,161-17-6771,Musician,95610.81,8262.5675,6,4,5,5,"Student Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",9.677810302,8,17.43,9,Standard,383.55,39.908648,20 Years and 6 Months,Yes,276.3195455,435.2926343,High_spent_Small_value_payments,374.6445702,0,-1.3551,0.0929,-1.513,1.4534,-0.2351 +0x12ef5,CUS_0x2cc2,August,29,235-51-5174,Writer,39566.48,3050.206667,10,8,18.06745738,3,"Mortgage Loan, Personal Loan, and Not Specified",26.23819066,16.66385384,6.15,7,_,2413.797829,29.03653709,6 Years and 11 Months,Yes,63.70828192,189.2990128,Low_spent_Small_value_payments,315.293084,0,-1.4463,-0.9113,-2.2725,-1.1461,0.5365 +0x12f01,CUS_0x673c,August,40,#F%$D@*&8,Scientist,14744056,4976.025,5,4,11.28836175,4,"Not Specified, Student Loan, Student Loan, and Personal Loan",11.73796488,11,4.04,3,Good,286.92,39.85327642,24 Years and 5 Months,No,150.9501566,690.9923968,Low_spent_Large_value_payments,345.5974076,0,-1.0797,0.2356,-0.9772,0.2486,-0.2854 +0x12f0d,CUS_0x5a77,August,43,234-41-6154,Lawyer,28716,,7,10,17.06745738,5,"Personal Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",,28.913326,9.06,12,Bad,4235.525244,36.01146657,8 Years and 0 Months,Yes,90.72796187,,High_spent_Large_value_payments,341.7260934,0,0.7241,-0.4075,0.8922,-0.9389,-0.4599 +0x12f19,CUS_0x3c90,August,19,337-71-0334,Doctor,19125.75,,3,6,4,3,"Auto Loan, Credit-Builder Loan, and Not Specified",19.82615463,14,11.32,0,Good,1116.513147,22.60154592,21 Years and 0 Months,NM,33.55774425,167.1369048,Low_spent_Medium_value_payments,243.3060702,0,1.239,0.1345,-1.3218,0.0257,-0.1656 +0x12f25,CUS_0x80d8,August,25,879-65-6545,Lawyer,111845.6,9174.466667,3,4,11,1,Auto Loan,,19,,2,Standard,281.3842538,36.62946247,23 Years and 10 Months,NM,65.71200785,11249.41828,Low_spent_Medium_value_payments,230.2345057,0,0.0051,0.9408,0.9876,0.1731,0.0028 +0x12f31,CUS_0x92df,August,32,756-71-3400,Accountant,20168.99,,5,7,19,7,"Student Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",13.6465593,10,9.41,9,Standard,2043.24,32.08397542,16 Years and 5 Months,Yes,172.9610454,152.9571453,Low_spent_Small_value_payments,241.9221962,0,-1.2448,0.1725,-1.138,0.5236,-0.413 +0x12f3d,CUS_0xb0e5,August,42,934-39-5678,Mechanic,17908.01,1152.676742,5,4,12,2,"Not Specified, and Credit-Builder Loan",12.77135151,12,3.93,1,Good,1284.326341,30.45529121,18 Years and 11 Months,No,179.7810308,,Low_spent_Small_value_payments,237.2101744,0,0.0145,-0.4866,-0.9283,0.1959,-0.4953 +0x12f49,CUS_0xa08e,August,80,168-64-8956,Doctor,18202.235,,2,2,3,0,,2.519550429,6,1.78,4,Good,1196.275491,36.46021795,22 Years and 8 Months,NM,0,82.85935516,Low_spent_Medium_value_payments,334.6360984,0,-0.1254,0.3525,0.6123,0.6065,-0.8532 +0x12f55,CUS_0x4a0d,August,27,129-01-2521,Scientist,35038.35,3156.8625,4,4,17.28836175,2,"Auto Loan, Home Equity Loan, and Not Specified",,,9.97,4,Standard,362.03,29.48769324,33 Years and 6 Months,Yes,64.24529762,724.7501039,Low_spent_Medium_value_payments,226.6283095,0,0.2269,-0.015,-0.3121,-0.913,0.5624 +0x12f61,CUS_0xbec6,August,37,675-02-4667,Mechanic,84215.13,6832.9275,5,5,6,5,"Personal Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Student Loan",14.19657823,10,14.55,6,Standard,150.68,30.19581582,5 Years and 8 Months,Yes,191.7420707,859.734533,Low_spent_Small_value_payments,,0,-1.4674,-0.9673,-2.5037,-1.8339,0.0018 +0x12f6d,CUS_0x5a2f,August,18,392-01-5767,Teacher,14020.86,,2,43,9,0,,11.3076696,11,16.26,7,Good,1360.5,24.81397162,17 Years and 11 Months,No,0,,Low_spent_Small_value_payments,290.438452,0,-0.2881,0.8171,-0.7475,1.9117,1.0842 +0x12f79,CUS_0x4838,August,21,082-10-7518,Musician,103007.7,8637.975,1,3,3.288361749,2,"Credit-Builder Loan, Mortgage Loan, and Student Loan",,3,0.73,5,Good,904.53,34.88449051,20 Years and 2 Months,No,224.4373279,,High_spent_Large_value_payments,717.2930175,0,0.0925,0.3848,0.041,-1.5099,0.7963 +0x12f85,CUS_0x96fa,August,24,982-36-4500,Writer,69740.96,5926.746667,5,1,9,2,"Not Specified, and Personal Loan",,2,,0,Good,781.9299193,38.32305269,19 Years and 10 Months,No,78.45405614,105.5696407,High_spent_Medium_value_payments,671.9291817,0,1.9099,-0.3996,-0.4169,-0.0831,-0.8807 +0x12f91,CUS_0x1290,August,34,922-15-4739,Architect,10455.875,,6,5,12,3,"Personal Loan, Payday Loan, and Credit-Builder Loan",23.22354708,19,9.71,0,Good,76.4421751,29.46491267,23 Years and 3 Months,No,25.74844766,27.03978353,Low_spent_Medium_value_payments,302.6933396,0,0.0689,0.2602,0.0372,0.8133,0.309 +0x12f9d,CUS_0x5ffa,August,30,468-07-7694,Lawyer,20099.99,,7,6,9,2,"Home Equity Loan, and Credit-Builder Loan",12.13223067,10,17.16,12,Standard,371.5793539,39.3568296,18 Years and 10 Months,Yes,26.22934392,23.75195183,High_spent_Large_value_payments,356.248239,0,0.2579,0.9936,-2.05,-2.0593,-1.1774 +0x12fa9,CUS_0x8dfe,August,44,055-37-6531,Teacher,115379.64,9722.97,6,4,9,0,,15.45450633,,8.97,0,Standard,364.66,26.5852235,28 Years and 10 Months,No,0,549.1979237,Low_spent_Medium_value_payments,703.0990763,0,0.2563,0.1588,-2.3557,-1.835,0.1185 +0x12fb5,CUS_0x67e4,August,28,295-57-0333,_______,50493.8,4231.816667,4,4,12,7,"Personal Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",18.06716089,15,14.52,7,Standard,1453.63,40.14623699,15 Years and 0 Months,Yes,201.7436564,98.77166699,High_spent_Medium_value_payments,372.6663432,0,0.2549,-1.4819,-1.0498,0.9689,0.7368 +0x12fc1,CUS_0x7044,August,80,374-75-3841,_______,59505.12,4898.76,5,7,17,2,"Personal Loan, and Home Equity Loan",6.450191655,8,9.9,7,Standard,1491.91,25.16570189,10 Years and 3 Months,NM,71.90689735,175.8754432,High_spent_Medium_value_payments,492.0936595,0,-1.1452,1.374,0.366,0.7512,0.7455 +0x12fcd,CUS_0x872e,August,36,813-58-4393,Doctor,56169.54,4763.795,5,487,9,2,"Auto Loan, and Mortgage Loan",,12,16.93,10,Standard,1951.58,27.18483596,19 Years and 4 Months,NM,49.3252977,125.0786909,High_spent_Small_value_payments,561.9755114,0,0.1905,-0.3598,-0.1531,0.7371,-0.2314 +0x12fd9,CUS_0x60aa,August,37,812-89-6483,_______,8058.875,,9,10,30,4,"Credit-Builder Loan, Student Loan, Student Loan, and Debt Consolidation Loan",40.01684726,21.31944714,15.7,10,_,1415.623521,34.06580971,10 Years and 4 Months,Yes,25.12994948,37.61794412,Low_spent_Small_value_payments,278.1093981,0,2.0731,0.4411,-0.1954,-0.868,-0.3598 +0x12fe5,CUS_0x9233,August,18,467-66-3762,Media_Manager,18256.6,,7,6,21,5,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",34.57558831,20,15.65,10,_,4670.52,29.07682595,2 Years and 2 Months,Yes,72.62659397,10000,High_spent_Medium_value_payments,282.711472,0,-0.7627,0.0128,-0.0964,-0.3254,-1.7519 +0x12ff1,CUS_0x3fdf,August,37,#F%$D@*&8,Developer,8475.375,653.28125,10,7,29,8,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Credit-Builder Loan, and Home Equity Loan",35.39447474,19,21,9,Bad,4399.81,25.11484036,1 Years and 5 Months,Yes,48.47441489,54.81827869,Low_spent_Large_value_payments,232.0354314,0,0.0913,-0.1113,-0.3015,2.0146,-0.063 +0x12ffd,CUS_0x9a4f,August,30,509-08-5237,Entrepreneur,93363.45,7237.3973,8,7,15,3,"Credit-Builder Loan, Auto Loan, and Not Specified",22.55859783,16,16.68,9,Standard,308.3425762,29.42657709,26 Years and 10 Months,Yes,981.0654877,11766.29341,!@9#%8,316.8524222,0,1.1346,-0.3339,-0.8742,-2.2338,0.585 +0x13009,CUS_0x9836,August,32,079-48-0859,Scientist,26013.73,,7,6,5,3,"Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",25.23854221,19,1.58,1,Standard,465.0776389,25.00915975,21 Years and 0 Months,Yes,59.21204297,82.10133958,High_spent_Medium_value_payments,309.1034144,0,-0.7527,-1.0368,-0.1909,-1.3372,1.1556 +0x13015,CUS_0x5eec,August,48,481-18-2270,Mechanic,97609.35,,5,3,11,1,Debt Consolidation Loan,,9,5.78,0,Standard,526.3701872,26.8157571,21 Years and 4 Months,Yes,923.8348486,567.4019019,!@9#%8,545.2537773,0,0.6972,0.7677,-0.5816,1.0591,-0.6122 +0x13021,CUS_0xc258,August,25,921-61-1717,Teacher,100713.72,8401.81,3,6,4.288361749,100,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",16.17107213,,15.83,4,Standard,138.92,33.43221939,7 Years and 0 Months,Yes,325.1832679,,Low_spent_Medium_value_payments,178.6427661,0,0.6086,0.6117,-0.4355,-0.8839,2.0766 +0x1302d,CUS_0x9976,August,26,933-45-8852,Lawyer,31182.38,,10,7,34.06745738,7,"Auto Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Personal Loan",,20.46628895,7.87,9,Standard,3002.378269,29.91117826,16 Years and 8 Months,Yes,181.5728344,,High_spent_Medium_value_payments,214.1993455,0,-0.1613,-0.2123,0.6042,-0.0321,-0.1161 +0x13039,CUS_0xb645,August,38,#F%$D@*&8,Engineer,55071.72,,6,3,19.28836175,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Personal Loan",,,0.69,4,Standard,224.35,25.25068609,28 Years and 10 Months,No,157.6914306,540.8390606,!@9#%8,433.8379698,0,0.2058,0.3753,0.6405,-0.8978,0.3481 +0x13045,CUS_0xa3db,August,18,736-80-3805,Accountant,18290.03,1454.169167,8,7,17.06745738,5,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Student Loan, and Mortgage Loan",35.96520935,23.02912332,16.61,13,_,4841.904751,27.76750599,13 Years and 0 Months,Yes,66.31045608,80.96884176,Low_spent_Small_value_payments,261.4173309,0,0.0789,0.0437,-0.5189,0.0162,-0.0586 +0x13051,CUS_0x8e50,August,38,052-30-0753,_______,15597.31,,8,5,9,5,"Home Equity Loan, Personal Loan, Mortgage Loan, Not Specified, and Credit-Builder Loan",22.89224292,20,11.3,6,Standard,660.6044995,28.54054824,5 Years and 9 Months,Yes,40972,153.2881508,Low_spent_Large_value_payments,238.2662923,0,-1.0081,0.2315,1.5255,-0.671,-0.8498 +0x1305d,CUS_0x5bad,August,50,358-46-9187,Lawyer,36535.57,3114.630833,5,3,9,3,"Student Loan, Student Loan, and Auto Loan",0,0,8.67,1,Good,557.68,40.02462066,20 Years and 6 Months,No,78.36932851,34.85088773,High_spent_Large_value_payments,438.2428671,0,1.7927,0.2583,-0.9367,-0.7508,-0.3556 +0x13069,CUS_0x5b2f,August,41,676-86-4432,Engineer,15957.41,,8,5,7,3,"Mortgage Loan, Personal Loan, and Student Loan",,22,16.33,4,_,1269.87,34.60537607,10 Years and 10 Months,Yes,25.04855436,114.500086,Low_spent_Small_value_payments,254.4297763,0,-1.157,0.6083,1.0369,0.1455,1.4505 +0x13075,CUS_0x8bdf,August,46,676-82-0055,Musician,9857.29,,5,5,20,2,"Student Loan, and Auto Loan",20.91304107,18,9.39,1,Standard,85.92,22.74982147,18 Years and 9 Months,No,16.17159305,98.87585589,Low_spent_Small_value_payments,259.8966344,0,-2.5303,-0.2806,-0.6011,0.0032,1.3487 +0x13081,CUS_0xbd4a,August,32,309-78-0181,Entrepreneur,112990.08,9349.84,8,4,8.288361749,4,"Home Equity Loan, Mortgage Loan, Not Specified, and Mortgage Loan",16.02173184,14,15.19,4,Standard,992.89,33.66922437,31 Years and 4 Months,Yes,360.3414703,992.1606474,Low_spent_Medium_value_payments,282.4193433,0,1.7625,0.6519,1.0074,-2.0078,0.2995 +0x1308d,CUS_0x2c3e,August,36,803-62-3706,Lawyer,12426.29,,5,4,13,3,"Payday Loan, Debt Consolidation Loan, and Personal Loan",22.84183262,16,17.14,10,Standard,1245.839395,34.05434964,8 Years and 11 Months,Yes,18.80189846,106.1904546,Low_spent_Small_value_payments,268.6412932,0,0.1321,-1.2298,0.7084,-0.3105,0.8569 +0x13099,CUS_0x9f55,August,20,507-29-6608,Lawyer,14774.495,,3,6,16,1,Credit-Builder Loan,16.4515936,15,5.44,3,Standard,370.12,30.00361644,23 Years and 5 Months,No,78.83772984,,Low_spent_Small_value_payments,250.4874548,0,0.2145,0.8239,-0.006,0.8875,0.6406 +0x130a5,CUS_0x785,August,43,949-02-1723,Media_Manager,100536.2,8310.016667,3,4,14,4,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Not Specified",,17,11.64,3,Standard,412.77,29.84730021,16 Years and 9 Months,Yes,224.8840501,209.064966,High_spent_Large_value_payments,637.0526505,0,-0.2163,1.7709,-1.0922,-0.4874,-0.1561 +0x130b1,CUS_0x6fff,August,28,738-16-5399,Scientist,43925.88,3889.49,1,3,7,0,,1.677031284,6,8.84,0,Good,96.8590045,25.15541393,19 Years and 9 Months,No,0,,Low_spent_Small_value_payments,256.9965912,0,1.3453,-1.6516,-0.8502,0.9708,-0.5507 +0x130bd,CUS_0xbb9a,August,27,798-84-4509,Lawyer,20434.595,1993.882917,5,1,2,0,,,7,6.01,2,Good,271.51,40.58716015,16 Years and 5 Months,No,0,74.61545393,Low_spent_Large_value_payments,394.7728377,0,0.8296,-0.7602,0.7546,0.1816,0.7213 +0x130c9,CUS_0x5978,August,35,763-74-8586,_______,8170.725,,7,5,21.06745738,4,"Student Loan, Mortgage Loan, Auto Loan, and Student Loan",,25.20349888,10.12,11,_,2845.17329,37.70058032,6 Years and 3 Months,NM,17.28840448,37.46122913,Low_spent_Small_value_payments,270.4194534,0,2.3128,-1.193,-1.2276,0.0029,0.7507 +0x130d5,CUS_0x8b38,August,29,872-37-5162,Entrepreneur,121933.2,10238.1,8,5,19,0,,,7,7.19,0,Standard,586.55,28.91278535,22 Years and 0 Months,Yes,0,,Low_spent_Small_value_payments,91.76276825,0,-1.65,1.2211,-0.0242,-0.8742,0.7564 +0x130e1,CUS_0x4bcf,August,46,739-73-1176,Engineer,42024.21,3695.0175,1,3,7.288361749,0,Auto Loan,,11,1.68,4,Good,143.12,24.50789405,,No,34.61643154,488.954419,High_spent_Medium_value_payments,515.8683604,0,1.466,1.9684,1.2202,1.0783,-0.2401 +0x130ed,CUS_0x3b46,August,37,031-66-3945,Doctor,119005.6,,5,4,9.288361749,0,,,11.24703736,5.31,6,_,1432.906646,40.55688674,21 Years and 2 Months,No,0,753.8249955,High_spent_Small_value_payments,945.4257988,0,1.8937,0.3284,0.4145,-2.5611,0.1431 +0x130f9,CUS_0x6bda,August,33,928-87-1423,Scientist,42515.6,3447.966667,3,4,11,3,"Personal Loan, Student Loan, and Mortgage Loan",,13,4.8,761,Good,629.75,27.76640243,16 Years and 0 Months,NM,103.3026646,52.65861871,High_spent_Large_value_payments,428.8353833,0,-0.4894,-0.5358,0.4977,0.1204,-0.7979 +0x13105,CUS_0xcfc,August,31,555-99-1654,Engineer,15330.305,1135.525417,4,5,5,4,"Personal Loan, Auto Loan, Student Loan, and Credit-Builder Loan",25.44741347,19,9.03,7,Good,672.49,25.38956527,18 Years and 5 Months,NM,46.38894479,118.6321835,Low_spent_Small_value_payments,238.5314134,0,-1.1408,1.6585,-1.5431,-0.856,-1.2478 +0x13111,CUS_0xc0af,August,32,723-06-5026,Developer,14126.68,,9,9,26,4,"Credit-Builder Loan, Personal Loan, Personal Loan, and Auto Loan",40.03659243,19.72789763,14.44,9,Standard,1864.261132,39.35668735,7 Years and 9 Months,NM,47.04210762,,Low_spent_Small_value_payments,315.4358397,0,-0.9213,-1.3967,-1.4333,-0.0276,-0.3922 +0x1311d,CUS_0xb6e7,August,26,722-98-5151,Engineer,15135.3,,9,7,18,9,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Auto Loan, Auto Loan, Home Equity Loan, and Personal Loan",29.97143581,22.40691118,21.06,11,Bad,4078.215042,31.38050444,7 Years and 4 Months,Yes,74.6184139,,High_spent_Small_value_payments,283.6534163,0,0.713,0.0796,0.4704,0.3946,1.703 +0x13129,CUS_0x51fe,August,44,871-93-0711,Developer,31752.1,,2,7,5.288361749,2,"Not Specified, and Payday Loan",6.304273557,9,1.2,3,Good,146.2,39.33280158,24 Years and 4 Months,No,241.5526284,558.998798,Low_spent_Medium_value_payments,374.4955744,0,0.7374,-1.3471,-1.8807,0.0616,0.1135 +0x13135,CUS_0x54b3,August,44,438-82-2211,Scientist,53146.47,,10,8,18.88954781,6,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",42.68854085,25.88574305,4.92,15,Bad,2462.434466,29.90893854,14 Years and 8 Months,Yes,1567.29349,475.2236276,Low_spent_Small_value_payments,19.740051,0,0.7978,0.14,-0.1564,1.3626,0.3588 +0x13141,CUS_0x48a6,August,35,437-08-1423,Architect,14691.485,928.2904167,3,4,10,1,Student Loan,13.73214047,12,1.9,5,Good,174.9385393,33.19159092,28 Years and 2 Months,No,7.767894392,48.50964028,Low_spent_Large_value_payments,311.0089441,0,1.0435,-0.7923,0.7229,-1.5367,0.9902 +0x1314d,CUS_0x5dd3,August,24,715-18-8451,Architect,41188.92,3515.41,2,6,3,4,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",0,3,3.33,3,Good,481.6679551,24.50496726,20 Years and 4 Months,No,133.1475739,,High_spent_Medium_value_payments,381.1699852,0,0.5453,0.1624,-0.3402,0.5689,-0.238 +0x13159,CUS_0x1f36,August,26,263-16-8350,Scientist,33455.64,2946.97,8,7,34.06745738,8,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",35.80935115,21,22.33,13,Bad,5031.060954,25.10361041,,Yes,217.7342576,340.2105838,Low_spent_Small_value_payments,0.031870707,0,1.3196,-0.567,-0.641,2.0687,0.9852 +0x13165,CUS_0xb9c9,August,22,375-46-0915,_______,19575.89,,5,10,16,5,"Auto Loan, Payday Loan, Not Specified, Home Equity Loan, and Payday Loan",24.95323103,18.4680707,18.27,8,Standard,2607.43484,34.03415754,17 Years and 5 Months,Yes,54.09079591,154.8295299,!@9#%8,237.0120908,0,0.3671,-0.1028,0.2456,-0.2758,-0.5371 +0x13171,CUS_0x867a,August,32,061-69-2674,Entrepreneur,80394.72,6639.56,9,7,34,6,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Personal Loan",34.05411758,16,0.63,2457,_,2803.03,36.15882424,2 Years and 2 Months,Yes,250.0544591,699.9337073,Low_spent_Small_value_payments,3.967833543,0,-0.5134,0.8371,-1.0035,-1.4183,-0.0101 +0x1317d,CUS_0x666b,August,44,949-63-3125,Media_Manager,20159.39,1403.949167,10,7,17.06745738,5,"Mortgage Loan, Payday Loan, Not Specified, Payday Loan, and Payday Loan",22.57077002,15,16.16,11,_,3828.330954,31.86982565,8 Years and 4 Months,Yes,80.4778639,,Low_spent_Small_value_payments,241.4205846,0,-1.0515,0.0497,-1.223,0.547,0.7057 +0x13189,CUS_0x3a86,August,44,491-96-7774,Manager,61955.82,4985.634322,8,6,29,6,"Student Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",26.7737831,,15.21,13,_,1381.96,24.43527353,9 Years and 4 Months,Yes,610.2876139,229.6992627,Low_spent_Large_value_payments,410.7623014,0,-1.0881,-0.6327,-0.4867,-0.5037,-1.803 +0x13195,CUS_0x8a9c,August,48,203-00-8741,Accountant,148570.8,,5,2,8,4,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,12,10.34,1,Good,147.27,35.0088023,31 Years and 0 Months,NM,420.4768142,,Low_spent_Medium_value_payments,187.3423568,0,2.0743,0.0667,0.8138,-1.1721,3.3529 +0x131a1,CUS_0x81ee,August,23,992-84-5158,Doctor,7664.42,,6,6,32,6,"Payday Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, Mortgage Loan, and Personal Loan",26.24575479,19,21.14,12,Bad,4332.94,29.235626,10 Years and 9 Months,Yes,22.1562827,44.68235884,Low_spent_Small_value_payments,261.4315251,0,1.1483,-0.6448,-0.1674,-1.2799,-0.1893 +0x131ad,CUS_0x7ea0,August,28,944-28-2927,Musician,20273.53,,3,5,15,4,"Home Equity Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",,17.11112136,8.03,6,Standard,1423.14774,24.43597025,13 Years and 11 Months,NM,40.67137268,37.9280783,High_spent_Medium_value_payments,314.1466323,0,0.7844,0.1498,0.3868,-0.9634,-0.1282 +0x131b9,CUS_0x8990,August,53,284-65-3957,Journalist,43220.64,3702.72,2,5,12,1,Mortgage Loan,,6,11.77,1,Good,1139.780072,39.00430087,,No,26.47911048,86.71638246,High_spent_Medium_value_payments,520.0388738,0,1.6962,-1.3239,0.9715,-0.0168,-0.0436 +0x131c5,CUS_0x7f70,August,54,878-29-0780,Journalist,49962.42,,7,7,15,3,"Not Specified, Credit-Builder Loan, and Mortgage Loan",,18,3.71,4,Standard,1175.81,39.90855639,32 Years and 6 Months,No,67.46103412,107.9298853,High_spent_Medium_value_payments,475.3625806,0,0.212,0.58,-0.0962,-0.1724,2.476 +0x131d1,CUS_0x9122,August,42,975-98-6988,Engineer,19773.56,,4,3,19,1,Debt Consolidation Loan,24.76765691,19,7.31,4,Standard,891.3234532,25.64007675,23 Years and 5 Months,Yes,10.35830659,,Low_spent_Large_value_payments,288.5556849,0,0.3241,0.2398,-0.3568,0.8308,-0.6759 +0x131dd,CUS_0x9762,August,50,369-44-6475,Writer,35664.72,,5,5,3,1,Personal Loan,0.019917372,2.410423229,9.41,8,Good,818.8100785,35.30743445,23 Years and 11 Months,No,15.54804348,27.18510559,!@9#%8,523.0728509,0,-0.4646,-0.1879,-0.4664,-0.0838,-0.7097 +0x131e9,CUS_0x344a,August,80,869-92-2559,Teacher,14210.27,,9,6,20.06745738,5,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, and Payday Loan",35.35040219,19,22.35,10,_,4791.555567,26.01893188,6 Years and 0 Months,Yes,51.07600843,54.98553303,High_spent_Medium_value_payments,251.6983772,0,-0.7661,-0.3436,0.8901,0.9875,-0.057 +0x131f5,CUS_0x3554,August,37,109-59-0887,Manager,10112.045,,4,5,6,1,Personal Loan,13.16346284,8,6.74,2,Standard,49.62,33.42126993,29 Years and 4 Months,No,56.14309655,52.16043791,Low_spent_Large_value_payments,268.0728586,0,-0.9501,-0.3775,1.6999,2.868,-0.2653 +0x13201,CUS_0x4c71,August,55,267-92-2329,Entrepreneur,32227.77,,3,6,6,2,"Mortgage Loan, and Home Equity Loan",,10,11.4,2,Good,430.39,36.72327747,30 Years and 6 Months,NM,37.93802076,,!@9#%8,389.4637102,0,-0.6815,-0.6654,1.7526,-0.2018,1.3885 +0x1320d,CUS_0x4fee,August,26,791-20-6533,Musician,33101.56,,6,10,29.88954781,6,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Not Specified",26.4455983,20,5.12,10,Bad,1507.49,32.4523649,12 Years and 8 Months,Yes,1641.594613,78.88124277,Low_spent_Medium_value_payments,396.7467778,0,-0.2121,0.258,-0.176,-0.856,-0.6736 +0x13219,CUS_0x5087,August,32,898-20-2778,Manager,46297.44,3806.12,7,8,27.06745738,9,"Student Loan, Student Loan, Personal Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Student Loan, and Debt Consolidation Loan",37.23183897,17,22.13,15,_,4969.220954,25.90858752,3 Years and 0 Months,Yes,210.1223635,,Low_spent_Medium_value_payments,202.9341665,0,0.1111,-2.5713,-0.6509,-0.0203,0.2993 +0x13225,CUS_0x36d3,August,80,806-65-8621,Teacher,108361.32,8829.11,7,5,10,4,"Mortgage Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",19.6523641,,9.83,1,_,402.23,39.98471693,,Yes,194.5740889,465.1305451,!@9#%8,483.206366,0,1.8912,-0.4185,1.3399,-0.2161,-0.3459 +0x13231,CUS_0x81d6,August,27,359-78-1565,Developer,34762.98,,8,8,16.06745738,6,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",43.38163685,26,21.63,9,Bad,3292.420954,36.06600248,3 Years and 8 Months,Yes,131.5641172,,High_spent_Medium_value_payments,311.5414061,0,-0.4596,0.1996,0.2834,-1.9314,0.8736 +0x1323d,CUS_0x6ae2,August,36,875-53-5736,Writer,37579.75,2891.645833,3,1,5,0,,,6,7.39,2,_,755.9722813,28.80133121,18 Years and 4 Months,NM,0,38.59702585,High_spent_Medium_value_payments,504.1000499,0,-1.7616,-0.8035,-1.166,-0.8148,-0.3727 +0x13249,CUS_0x2342,August,46,568-57-8267,Writer,22961.35,,8,6,18,2,"Debt Consolidation Loan, and Student Loan",23.15003883,17,10.3,1,Standard,1253.93,27.88551716,30 Years and 3 Months,Yes,22.55320696,10000,High_spent_Medium_value_payments,356.822046,0,0.6732,0.3335,-0.6819,0.8463,0.6775 +0x13255,CUS_0x6b35,August,23,747-34-6406,Developer,7908.935,644.0779167,9,5,33.06745738,3,"Mortgage Loan, Home Equity Loan, and Auto Loan",29.6328308,18.51591412,5.73,8,Bad,2232.327198,33.44231455,14 Years and 5 Months,Yes,18.17850647,10000,Low_spent_Small_value_payments,285.3604435,0,0.1929,0.8229,0.7919,0.3297,1.55 +0x13261,CUS_0x235a,August,22,830-22-8518,Architect,33911.02,2999.918333,3,5,14,1,Credit-Builder Loan,8.899374905,9,13.71,6,Standard,459.16,39.43982187,,No,23.70133849,39.56207444,High_spent_Large_value_payments,476.7284204,0,-0.9246,1.6052,-0.4952,-1.1638,-0.6377 +0x1326d,CUS_0xb0e8,August,25,#F%$D@*&8,_______,26921.13,,5,7,17,4,"Credit-Builder Loan, Home Equity Loan, Auto Loan, and Not Specified",,17,3.01,4,Standard,124.1,33.46257474,23 Years and 0 Months,No,72.52834994,62.91384702,Low_spent_Large_value_payments,349.600553,0,1.0998,0.493,1.3994,1.4455,0.2863 +0x13279,CUS_0x41ee,August,22,439-38-8702,Entrepreneur,56668.5,4996.375,4,8,28,2,"Auto Loan, and Credit-Builder Loan",8.760778592,6,,12,Standard,1627.25,28.09732541,9 Years and 6 Months,Yes,82.49753192,157.2540738,High_spent_Medium_value_payments,509.8858943,0,-0.9142,0.5667,-0.3263,-0.4714,-0.625 +0x13285,CUS_0x85f1,August,32,734-98-5113,Teacher,45109.52,4018.126667,6,6,1,4,"Credit-Builder Loan, Student Loan, Mortgage Loan, and Auto Loan",,12,8.71,0,Standard,651.79,41.13320104,25 Years and 10 Months,No,93.56115936,108.6244425,High_spent_Small_value_payments,459.6270648,0,1.4457,-0.8235,0.1082,-0.4945,-1.3925 +0x13291,CUS_0x9340,August,22,310-19-8594,Musician,126262.12,10475.84333,7,333,16,3,"Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",24.67180873,16,9.19,3,Standard,447.52,34.99508012,20 Years and 10 Months,No,284.571235,420.6000205,Low_spent_Medium_value_payments,622.4130777,0,-0.5323,-0.9221,-1.5435,-0.4046,0.4833 +0x1329d,CUS_0x94ef,August,38,604-49-3106,Teacher,15950.43,1127.2025,9,10,23.06745738,5,"Home Equity Loan, Not Specified, Credit-Builder Loan, Personal Loan, and Auto Loan",,20.54321129,26.98,11,Bad,3238.98468,27.86154054,,NM,42.56064525,69.51881894,Low_spent_Small_value_payments,263.9204979,0,0.6563,0.1828,0.0332,0.2873,-1.7359 +0x132a9,CUS_0x15b4,August,23,648-00-4817,Musician,106168.77,8700.3975,0,4,8.288361749,2,"Personal Loan, Credit-Builder Loan, and Mortgage Loan",10.31594417,11,4.62,4,Good,525.82,33.75372037,24 Years and 9 Months,No,191.4488059,1474.167563,!@9#%8,,0,1.9818,-0.0711,0.1614,1.0463,-0.294 +0x132b5,CUS_0xc26a,August,39,031-93-1916,Mechanic,37080.88,,7,7,30.06745738,9,"Home Equity Loan, Payday Loan, Auto Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",36.08821794,24,21.96,858,Bad,3228.390954,34.78008933,5 Years and 4 Months,NM,222.0722165,351.6991097,Low_spent_Small_value_payments,24.21571923,0,0.3264,-1.0613,-0.776,0.7969,0.3916 +0x132c1,CUS_0x80ce,August,49,635-01-2991,Engineer,31653.01,,3,7,9,2,"Student Loan, and Auto Loan",0,3,9.2,6,Good,1250.9,39.90971552,24 Years and 3 Months,NM,27.11102882,87.45175917,High_spent_Medium_value_payments,383.3122953,0,-0.1441,-1.4098,-0.2006,1.5888,-0.3427 +0x132cd,CUS_0x41eb,August,32,901-83-8493,Journalist,65498.88,5409.24,9,7,35.06745738,8,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",,25,18.41,6,_,3891.120954,35.21556912,13 Years and 0 Months,Yes,275.7159413,122.2894879,High_spent_Medium_value_payments,366.1982829,0,0.9581,-1.0273,0.0751,-0.6458,-0.4726 +0x132d9,CUS_0x84cc,August,33,241-89-4857,Writer,38364.56,,7,10,26,4,"Home Equity Loan, Not Specified, Payday Loan, and Student Loan",,9,11.7,9,Standard,2661.65,32.89049217,8 Years and 6 Months,Yes,118.1009028,,Low_spent_Small_value_payments,171.1908667,0,1.031,-0.8803,-0.8501,0.9215,0.1463 +0x132e5,CUS_0x2bf6,August,38,087-74-0376,Scientist,59319.42,4760.285,5,4,13,5,"Payday Loan, Auto Loan, Not Specified, Mortgage Loan, and Home Equity Loan",18.00995075,12,9.58,7,Standard,2569.72,37.45674717,5 Years and 11 Months,Yes,207.8496226,,High_spent_Large_value_payments,409.9138613,0,0.2501,-1.0999,-1.6622,-0.0807,-0.258 +0x132f1,CUS_0x5fc6,August,33,073-43-7459,Media_Manager,114004.84,9295.403333,5,7,8,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",,9,11.38,7,Standard,930.9895201,36.48538774,18 Years and 5 Months,Yes,228.8715203,,!@9#%8,643.3153069,0,-1.4969,0.8418,1.0874,0.8517,-0.287 +0x132fd,CUS_0x8d04,August,41,991-06-7515,Musician,53152,,3,6,9,3,"Payday Loan, Mortgage Loan, and Not Specified",,13,8.89,2331,Standard,153.23,34.00032859,16 Years and 6 Months,Yes,127.7062978,62.85806656,!@9#%8,475.168969,0,-1.6024,-0.4758,-0.1003,0.1397,-0.0358 +0x13309,CUS_0x7011,August,26,958-60-8128,Teacher,16945.21,1157.100833,7,7,18.06745738,2,"Credit-Builder Loan, and Student Loan",48.84288212,28.13350298,8.66,6,Bad,1661.338076,26.66675512,19 Years and 8 Months,Yes,27.21188356,92.69436698,Low_spent_Small_value_payments,259.0835448,0,-0.0311,0.1858,1.1483,-2.0791,0.6831 +0x13315,CUS_0x2f86,August,26,974-87-0253,Teacher,7569.055,,6,294,31.06745738,2,"Payday Loan, and Debt Consolidation Loan",31.35378894,17,3.18,11,Bad,2915.120954,28.08729678,12 Years and 10 Months,Yes,7.180053892,51.51497534,Low_spent_Small_value_payments,269.6601412,0,-0.2528,1.4505,0.0987,-1.4181,0.202 +0x13321,CUS_0x75f2,August,31,214-89-1579,Teacher,44982.74,3774.561667,4,2,11,2,"Auto Loan, and Payday Loan",2.285507758,6,2.14,3,_,357.4848124,32.98432968,20 Years and 3 Months,No,72.30835792,,Low_spent_Small_value_payments,224.1948745,0,-0.3656,-0.1403,1.1534,2.0076,-0.2203 +0x1332d,CUS_0x7a8e,August,44,113-27-5219,Lawyer,42311.16,3759.93,4,5,11,1,Personal Loan,17.74397708,,6.84,3,Standard,438.23,39.00149492,28 Years and 4 Months,No,24.8830317,206.6846125,High_spent_Small_value_payments,404.4253558,0,1.3433,1.0661,-0.5987,1.6538,-1.2537 +0x13339,CUS_0x4394,August,27,562-18-2327,Scientist,16974.83,1527.569167,3,6,14,5,"Not Specified, Payday Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",23.06914037,19.55325265,19.93,8,Standard,1638.632128,33.04041038,,Yes,54.63590412,10000,Low_spent_Medium_value_payments,335.0912119,0,1.0829,-0.7757,0.2381,0.7222,-0.347 +0x13345,CUS_0x2f7d,August,51,806-04-3537,Scientist,90960.56,,3,7,14.28836175,4,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",10.54191079,10,17.1,5,Standard,763.8322264,25.51975626,32 Years and 11 Months,Yes,299.6585696,716.1660373,High_spent_Medium_value_payments,435.5615958,0,1.4774,-0.7239,-0.8361,0.3793,-1.4704 +0x13351,CUS_0x1920,August,42,350-32-7099,Scientist,20328.25,,6,5,16,0,,17.53742833,,,5,Standard,1025.98,32.8856954,,Yes,0,63.30594125,Low_spent_Small_value_payments,382.7961421,0,0.2933,0.5393,-0.1084,-0.5136,-1.9728 +0x1335d,CUS_0x3faa,August,22,337-64-7215,Writer,73049.36,6047.446667,6,6,14,3,"Mortgage Loan, Home Equity Loan, and Not Specified",,9.380128212,19.05,7,Standard,2513.184781,24.42803944,16 Years and 0 Months,Yes,133.7890053,,High_spent_Large_value_payments,644.4136423,0,0.5372,1.2346,-0.0158,0.2614,1.2733 +0x13369,CUS_0x4ebf,August,45,372-76-7434,Journalist,63382.56,4996.88,10,9,24.88954781,7,"Not Specified, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",16.67224167,9.490839615,8.22,10,Standard,2652.392139,25.19199504,11 Years and 10 Months,Yes,1676.513242,67.40110299,High_spent_Large_value_payments,301.4435734,0,0.3049,1.2909,-0.643,-0.4539,-1.0295 +0x13375,CUS_0x438d,August,19,781-87-1917,Media_Manager,108782.52,7704.746711,5,7,5,0,,18.47826997,13,7.82,9,Standard,788.3114383,38.81178415,17 Years and 0 Months,Yes,1314.463289,715.8405819,Low_spent_Large_value_payments,553.2487432,0,0.5396,-1.7576,0.6029,-1.2092,-1.5267 +0x13381,CUS_0xc265,August,47,066-65-8508,Musician,30564.65,2554.054167,4,4,2,1,Auto Loan,10.73333009,10,11.79,1,Good,504.93,33.02538456,25 Years and 0 Months,NM,16.69408059,17.9322048,High_spent_Large_value_payments,460.7791313,0,-1.4166,1.1435,0.963,-1.4494,0.0117 +0x1338d,CUS_0x4ee9,August,21,603-95-6149,Media_Manager,35329.84,2819.153333,4,2,6,1,Personal Loan,,2,5.5,4,_,802.9188508,31.68309228,30 Years and 9 Months,No,15.14119679,181.2516065,High_spent_Small_value_payments,369.6077405,0,-3.7487,2.2391,0.3702,-1.988,1.511 +0x13399,CUS_0x55eb,August,18,#F%$D@*&8,Journalist,8205.14,,9,9,34,8,"Auto Loan, Auto Loan, Payday Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",39.95823628,25,20.51,6,_,3176.86,25.44299306,0 Years and 9 Months,Yes,47.38657981,103.5344431,Low_spent_Small_value_payments,228.7426209,0,0.559,0.2854,-0.5211,-1.1801,1.3632 +0x133a5,CUS_0x98ed,August,31,219-01-8357,Journalist,22229.06,1672.421667,6,4,5,3,"Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",10.19527999,10,9.44,9,Standard,1396.14,33.06186126,13 Years and 0 Months,NM,52.13847389,44.08400984,High_spent_Medium_value_payments,321.0196829,0,-1.0275,-1.1895,-3.4629,0.4463,-0.2528 +0x133b1,CUS_0x4f3b,August,47,360-58-3081,Accountant,44551.13,,535,5,2,4,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",0,2.257607847,6.55,0,Good,1075.398658,34.73991412,17 Years and 9 Months,NM,127.7597211,289.9612607,Low_spent_Medium_value_payments,216.2384348,0,-0.337,-0.1637,-0.8221,1.4957,-0.2465 +0x133bd,CUS_0x966b,August,38,941-68-5443,Scientist,32955.92,,6,6,8,2,"Debt Consolidation Loan, and Auto Loan",13.63458633,9,14.35,1,Standard,315.72,33.81771835,18 Years and 11 Months,Yes,29.86502513,,Low_spent_Large_value_payments,305.6861921,0,-0.7898,0.274,-0.1361,-1.525,-1.3406 +0x133c9,CUS_0xb83e,August,43,200-64-0969,Doctor,65671.98,5191.665,1,4,2,1,Credit-Builder Loan,0,1,11.01,3,Good,1311.976166,31.75228404,21 Years and 10 Months,No,30.13134912,594.9430613,Low_spent_Medium_value_payments,258.0234194,0,0.0096,0.6112,0.5823,-0.1369,0.7132 +0x133d5,CUS_0x5cac,August,25,440-50-2913,Mechanic,19070.065,1411.172083,3,5,11,3,"Mortgage Loan, Student Loan, and Student Loan",4.856066787,5,8.42,3,Good,801.19,27.05214534,19 Years and 0 Months,No,35.00184716,49.26655356,Low_spent_Small_value_payments,346.8488076,0,-2.3412,-0.831,-0.9851,-2.0279,1.2554 +0x133e1,CUS_0xc29e,August,45,467-13-5970,Accountant,28566.01,2385.500833,6,6,15,6,"Home Equity Loan, Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, and Payday Loan",23.67743073,18,19.32,8,Standard,479.65,35.21562522,17 Years and 11 Months,Yes,72.54576043,263.5236436,Low_spent_Small_value_payments,192.4806793,0,-1.7733,0.5507,-0.2143,-0.7487,-1.1291 +0x133ed,CUS_0x2dec,August,25,043-92-0360,Accountant,7698.58,731.5483333,9,10,30.06745738,5,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",36.45461985,17.65918814,22.86,12,Bad,3176.367893,31.81730996,5 Years and 6 Months,Yes,26.68874977,46.90338856,High_spent_Small_value_payments,232.8424071,0,0.4566,0.2458,-0.7202,0.1944,1.1896 +0x133f9,CUS_0x22b9,August,45,444-45-1931,Lawyer,9856.98,,6,5,23,6,"Personal Loan, Credit-Builder Loan, Not Specified, Auto Loan, Personal Loan, and Credit-Builder Loan",,14.66837989,8.43,10,_,1636.014404,29.03742246,13 Years and 8 Months,Yes,28.41082376,78.87125787,Low_spent_Small_value_payments,258.1594184,0,0.8121,0.4736,-2.0126,1.1285,0.2386 +0x13405,CUS_0xc669,August,18,946-81-7489,Doctor,39797.06,3310.421667,8,6,19,7,"Payday Loan, Mortgage Loan, Personal Loan, Auto Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",24.18803001,16,18.88,2246,Standard,1134.58,27.82593468,14 Years and 5 Months,Yes,192.8238925,103.480179,High_spent_Medium_value_payments,284.7380952,0,0.9693,-2.162,-0.5335,0.135,0.0815 +0x13411,CUS_0x525f,August,36,085-73-3755,_______,62953.95,,8,8,15.88954781,8,"Student Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Home Equity Loan, and Home Equity Loan",29.74013531,19,18.08,6,Bad,2457.320295,25.61278157,6 Years and 11 Months,Yes,2080.734539,184.5997081,High_spent_Medium_value_payments,307.814102,0,1.2106,0.5798,-1.036,-2.3008,1.3814 +0x1341d,CUS_0x6ba,August,30,669-57-9425,Developer,58162.12,4942.843333,8,4,13,2,"Debt Consolidation Loan, and Not Specified",22.72880554,19,1.39,,Standard,1159.306139,27.75142975,28 Years and 9 Months,No,60.10999658,483.5877751,Low_spent_Large_value_payments,270.5925085,0,-0.564,0.257,0.5979,-0.9002,-1.149 +0x13429,CUS_0x895d,August,32,850-31-2772,Writer,30638.93,2801.244167,5,6,16,4,"Credit-Builder Loan, Mortgage Loan, Payday Loan, and Payday Loan",17.04784163,13,0.64,5,_,1472.21,39.51225627,17 Years and 0 Months,Yes,74.63292377,145.3186663,Low_spent_Small_value_payments,350.1728266,0,1.3524,1.7585,0.2392,0.2216,0.8087 +0x13435,CUS_0x6ee0,August,29,352-17-4274,Accountant,8333.545,,3,4,20,6,"Credit-Builder Loan, Auto Loan, Not Specified, Auto Loan, Debt Consolidation Loan, and Auto Loan",21.90979629,17.95195076,10.29,7,Standard,2095.058574,28.48682655,,Yes,37.84543766,,Low_spent_Medium_value_payments,243.4413593,0,-1.2031,0.217,0.3877,0.4353,-0.2138 +0x13441,CUS_0xa55e,August,46,557-73-9968,Architect,132314.44,10973.20333,1,3,854,4,"Not Specified, Student Loan, Not Specified, and Credit-Builder Loan",,5,11,3,Good,39.53,33.11878744,24 Years and 2 Months,No,363.8735806,349.9547034,High_spent_Medium_value_payments,633.4920493,0,-0.1187,-0.6866,-0.0098,-0.2051,-0.4166 +0x1344d,CUS_0xbb85,August,41,574-70-6565,Scientist,93196.41,7991.3675,8,7,15,4,"Student Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",15.83047992,11,9.38,7,Standard,834.68,35.26203175,28 Years and 5 Months,Yes,297.0478895,193.0133778,High_spent_Large_value_payments,549.0754827,0,-1.3031,0.0757,-0.9298,-0.4882,1.3486 +0x13459,CUS_0x821,August,46,420-43-8481,Writer,119885.44,,3,3,20,1,Home Equity Loan,17.57497593,12,11.56,4,Standard,467.6622639,34.04138103,26 Years and 9 Months,No,62.59991814,907.3770381,Low_spent_Small_value_payments,436.4921665,0,-0.8056,0.9061,0.6643,2.3418,-0.469 +0x13465,CUS_0x6603,August,80,#F%$D@*&8,_______,88581.48,,3,7,3,0,,19.10414754,,1.23,3,Good,809.8941608,37.06671259,32 Years and 11 Months,No,0,546.3340612,Low_spent_Large_value_payments,523.3806264,0,2.6049,0.1913,-0.2714,-0.1516,-0.6161 +0x13471,CUS_0x80b7,August,18,739-39-9305,Architect,62646.42,,6,4,29,3,"Personal Loan, Auto Loan, and Not Specified",16.54113514,14.59380124,7.44,14,Standard,2366.261194,37.18298956,,NM,83.82403567,214.4997983,High_spent_Medium_value_payments,495.729666,0,-0.7543,-1.1507,0.6606,0.5637,0.7049 +0x1347d,CUS_0x6b0c,August,61,772-15-3100,Lawyer,17934.895,1316.574583,0,1,8,2,"Payday Loan, and Payday Loan",6.276732407,6,18.59,6,Good,1272.663622,30.54319324,29 Years and 8 Months,No,25.95670915,53.56867567,Low_spent_Medium_value_payments,337.8064924,0,0.7311,-0.4557,0.057,-0.721,2.4061 +0x13489,CUS_0xa290,August,51,498-02-5560,Media_Manager,102940.53,8729.3775,6,6,10,3,"Credit-Builder Loan, Student Loan, and Mortgage Loan",,13,0.99,4,Standard,185.84,40.45719474,27 Years and 4 Months,Yes,196.0201994,192.3170931,!@9#%8,724.6004575,0,1.6305,1.6562,-0.9491,-1.0068,-0.7658 +0x13495,CUS_0x737a,August,28,643-54-4901,Engineer,142277.72,,3,4,6,100,,12.03842434,10,-0.82,1165,_,293.6760468,32.60498576,20 Years and 0 Months,No,0,724.1255956,High_spent_Small_value_payments,830.5979888,0,-0.8959,2.0586,0.2441,0.1129,-2.04 +0x134a1,CUS_0x77b6,August,38,#F%$D@*&8,Manager,39994.31,3463.859167,5,3,7,0,,,7,4.75,6,_,651.27,39.59120008,26 Years and 5 Months,No,0,180.5881376,Low_spent_Large_value_payments,435.7977791,0,-0.8956,-0.9853,-0.1133,-0.6933,0.8188 +0x134ad,CUS_0x93f4,August,37,586-25-7492,Teacher,16580.73,,10,7,22,8,"Auto Loan, Payday Loan, Payday Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",29.56419963,21.34419371,19.21,14,Bad,3462.196441,37.42009112,14 Years and 4 Months,Yes,81.71606948,84.82461055,Low_spent_Small_value_payments,256.73207,0,1.3036,0.1385,-1.6453,-0.6762,-0.4819 +0x134b9,CUS_0x9275,August,23,143-85-0520,_______,30370.09,,1,4,8,0,,8.343010116,9,4.94,0,_,1333.93,34.91070197,21 Years and 10 Months,No,0,165.1917717,Low_spent_Medium_value_payments,341.4923116,0,-0.5166,1.8796,0.3097,0.1112,0.8975 +0x134c5,CUS_0x7a51,August,80,098-81-6499,Writer,19740.04,1769.003333,4,6,4,2,"Debt Consolidation Loan, and Credit-Builder Loan",7.247661267,10,5.37,1,Good,1057.269401,39.88824382,18 Years and 5 Months,No,26.49477979,,!@9#%8,335.1971233,0,-1.1836,1.5758,1.3623,0.9102,-0.8871 +0x134d1,CUS_0xc12f,August,37,090-99-2550,Entrepreneur,131165.24,,2,7,11,3,"Home Equity Loan, Auto Loan, and Student Loan",0,0,8.31,4,Good,124.81,29.91289542,17 Years and 8 Months,No,244.9845942,770.9303977,Low_spent_Large_value_payments,328.7286748,0,0.8672,-0.6267,0.6637,0.3454,-0.8118 +0x134dd,CUS_0x88e5,August,28,680-32-0710,Accountant,112882.68,,5,1,9.288361749,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",10.87010414,10,6.24,2,Good,622.7114052,37.27317575,29 Years and 3 Months,No,353.616124,711.055298,High_spent_Medium_value_payments,610.9400854,0,-0.4108,1.8305,-0.5103,-0.5322,-0.9924 +0x134e9,CUS_0x5121,August,44,730-95-1822,Writer,98112.03,,2,5,3.288361749,2,"Auto Loan, Not Specified, and Debt Consolidation Loan",1.194188916,5,7.79,1,Good,533.8834318,39.09874174,31 Years and 8 Months,No,197.322052,762.8000615,Low_spent_Large_value_payments,619.7908839,0,-1.0573,0.8853,-0.302,1.0457,-0.4641 +0x134f5,CUS_0x87d5,August,39,737-08-2499,Writer,16582.94,,9,7,27.06745738,8,"Mortgage Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Not Specified, and Payday Loan",,18,25.5,7,Bad,4047.440954,35.74565928,7 Years and 5 Months,Yes,88.64668073,,Low_spent_Large_value_payments,207.5579313,0,0.7754,-0.534,0.0582,-1.3379,-0.2668 +0x13501,CUS_0xa394,August,32,364-16-0033,Engineer,19487.775,,4,5,1,3,"Home Equity Loan, Debt Consolidation Loan, and Personal Loan",8.332914514,10,10.62,3,Good,246.83,28.09954822,33 Years and 2 Months,No,24.70283284,,Low_spent_Small_value_payments,310.9886229,0,-1.3733,-0.4283,1.9592,-0.4254,0.8775 +0x1350d,CUS_0xa279,August,37,845-19-4481,Developer,27113.76,,7,3,8,100,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Auto Loan",27.40388223,19,8.12,12,_,834.43,33.30244115,15 Years and 10 Months,Yes,97.89329113,175.0849441,Low_spent_Small_value_payments,213.2697648,0,1.134,-0.4822,0.1063,-0.661,-0.397 +0x13519,CUS_0x1638,August,28,419-04-0207,Lawyer,32370.6,2862.55,7,10,33.06745738,5,"Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",,,6.03,11,Bad,3931.635462,35.95720722,7 Years and 10 Months,Yes,74.73802678,161.0101358,Low_spent_Small_value_payments,313.7865495,0,1.0153,0.3907,0.2481,0.3487,0.9347 +0x13525,CUS_0x1bc4,August,49,179-87-9194,Lawyer,31638.5,,7,3,14,3,"Student Loan, Not Specified, and Payday Loan",15.82398083,11,14.13,2,Standard,607.9,37.96246602,25 Years and 0 Months,Yes,58.18502472,157.5146268,Low_spent_Small_value_payments,316.1545152,0,1.6306,-2.0764,0.0659,-0.105,-1.0486 +0x13531,CUS_0x603a,August,34,042-56-4117,Doctor,19123.56,,6,6,30,6,"Student Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Auto Loan",,24,7.43,12,Bad,3080.03,25.99058231,0 Years and 11 Months,Yes,60.7680372,,Low_spent_Small_value_payments,251.1168328,0,1.8566,-0.1818,0.376,-0.0419,-0.6177 +0x1353d,CUS_0xa84d,August,41,814-82-9218,Teacher,115810.56,9364.88,3,5,10,0,,,2.385171819,3.78,1,Good,1385.99695,39.57920663,,No,0,202.4251752,High_spent_Large_value_payments,974.0628248,0,-0.9091,1.542,-0.5784,1.237,-0.7509 +0x13549,CUS_0x6b6e,August,39,055-52-3236,Scientist,19815.44,,8,10,20.95700519,8,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, Student Loan, Mortgage Loan, Not Specified, and Mortgage Loan",40.13567838,23.01258513,18.53,9,Bad,4193.930263,30.53238683,1 Years and 4 Months,Yes,1390.041199,,High_spent_Medium_value_payments,256.2118966,0,-0.1963,1.3711,-0.2858,1.2263,0.1331 +0x13555,CUS_0x8870,August,42,549-65-3683,Manager,122426.2,10431.18333,4,4,1.288361749,0,Credit-Builder Loan,1.800804997,6,8.34,4,Good,1155.39,23.47667644,,No,76.28353861,1061.060128,!@9#%8,605.712128,0,-0.7128,0.7556,-1.4063,-0.691,-0.4941 +0x13561,CUS_0x501c,August,32,918-33-6747,_______,16383.26,,6,4,10,5,"Debt Consolidation Loan, Auto Loan, Payday Loan, Credit-Builder Loan, and Student Loan",24.86191632,20.31743866,16.81,5,Standard,1740.254518,32.08592742,13 Years and 10 Months,Yes,39.58324241,10000,Low_spent_Small_value_payments,326.2866863,0,1.271,-0.6031,0.4082,-0.5388,-0.6052 +0x1356d,CUS_0x69df,August,32,191-88-3581,Scientist,35229.28,,9,6,35.06745738,9,"Personal Loan, Payday Loan, Not Specified, Auto Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, and Not Specified",,,19.55,17,Bad,3741.380954,39.69396238,13 Years and 2 Months,Yes,165.773188,10000,!@9#%8,321.0986485,0,0.27,-0.5381,0.6521,0.1546,0.244 +0x13579,CUS_0xb22f,August,25,415-57-3149,Writer,34566,2636.5,1,5,2,3,"Personal Loan, Personal Loan, and Mortgage Loan",22.8615488,12.87351382,8.01,5,Good,1254.752366,30.24245875,,No,50.8127431,231.3769635,!@9#%8,251.4602934,0,0.2152,-0.3685,1.0902,1.2009,0.092 +0x13585,CUS_0x98c2,August,37,457-88-9588,Developer,48646.5,,1558,7,7,0,,12.10874682,12,5.13,3,Standard,723.55,37.26893607,20 Years and 6 Months,Yes,0,262.9593531,!@9#%8,420.1281469,0,-1.2988,2.5304,0.7723,-0.0304,1.0253 +0x13591,CUS_0x17c5,August,42,676-90-9901,Engineer,42265.53,,7,5,32,6,"Student Loan, Credit-Builder Loan, Personal Loan, Student Loan, Auto Loan, and Home Equity Loan",,10,9,8,Standard,2107.97,35.39526728,13 Years and 10 Months,Yes,112.393902,10000,High_spent_Large_value_payments,376.8750698,0,0.4294,-1.2224,1.0898,-0.2909,-0.2813 +0x1359d,CUS_0x9416,August,31,757-14-4155,Writer,20479.75,1629.645833,6,6,29.06745738,7,"Mortgage Loan, Payday Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, and Not Specified",,28.42091687,16.7,11,_,3417.755743,30.08553754,1 Years and 2 Months,Yes,91.05178659,161.9505386,Low_spent_Medium_value_payments,163.2419702,0,-0.1824,-0.4617,-0.7963,0.9502,0.3919 +0x135a9,CUS_0x845d,August,46,694-27-8258,Accountant,37731.42,3206.285,1,6,6,0,,17.49656305,10.93452833,9.33,5,Good,1310.378757,32.86047747,20 Years and 6 Months,No,41584,129.6899876,High_spent_Medium_value_payments,440.9385124,0,-0.2911,0.0777,0.231,-2.9875,0.439 +0x135b5,CUS_0x3806,August,43,193-16-3893,Architect,8381.195,,8,5,30,8,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",,24,17.77,,Bad,3791.41,33.02306915,7 Years and 0 Months,Yes,38.66112651,64.59190162,Low_spent_Medium_value_payments,239.4902635,0,-0.0841,-1.3462,-1.6263,0.8413,0.8231 +0x135c1,CUS_0x7033,August,27,#F%$D@*&8,_______,44657.68,,4,3,2,3,"Not Specified, Personal Loan, and Personal Loan",,5,14.21,0,Good,1142.207987,38.94061442,18 Years and 11 Months,No,88.80144045,120.2009041,!@9#%8,426.2411363,0,-0.972,0.2177,-0.2696,-0.7176,0.7872 +0x135cd,CUS_0x581b,August,26,919-59-4971,_______,12860.695,,4,7,6.067457376,1,Not Specified,,22.24886905,7.51,9,Good,1137.971925,38.95423063,29 Years and 9 Months,No,8.324578702,100.2956793,Low_spent_Medium_value_payments,279.5319124,0,1.9341,1.3331,-1.4904,0.7985,-1.5331 +0x135d9,CUS_0x5234,August,55,072-13-6258,Manager,107193.88,7925.785172,6,5,10,3,"Not Specified, Not Specified, and Auto Loan",16.47146682,13,4.5,4,Good,230.13,33.7927937,28 Years and 4 Months,No,1066.997784,212.0107553,High_spent_Medium_value_payments,652.4119549,0,-0.2893,-0.9975,0.6894,-0.0703,0.866 +0x135e5,CUS_0x919a,August,23,955-69-8416,_______,25994.56,2349.213333,5,5,12,1,Payday Loan,32.42561589,23.74485338,7.53,5,Good,1343.497825,23.36917854,32 Years and 4 Months,No,21.38487256,237.4921539,Low_spent_Small_value_payments,266.0443069,0,-1.3951,-0.123,-0.0141,-0.2515,0.6968 +0x135f1,CUS_0x61c6,August,30,#F%$D@*&8,Musician,125456.44,,5,6,5,2,"Personal Loan, and Credit-Builder Loan",21.75965636,,18.04,4,Standard,558.93,40.40234962,32 Years and 6 Months,Yes,188.2716836,837.3632525,Low_spent_Medium_value_payments,308.8353972,0,0.1027,0.7071,0.3328,-2.8541,0.9292 +0x135fd,CUS_0x9694,August,18,798-43-1227,Entrepreneur,46107.16,4048.263333,5,3,17,2,"Payday Loan, and Payday Loan",,19,8.4,6,Standard,2.04,24.31102978,10 Years and 10 Months,Yes,41.90237944,291.207858,Low_spent_Small_value_payments,361.7160959,0,-0.0269,0.9348,-0.3702,-0.771,1.1749 +0x13609,CUS_0x14b9,August,30,035-83-1012,Architect,30383.36,,3,7,14,3,"Home Equity Loan, Debt Consolidation Loan, and Payday Loan",28.43904074,20,13.29,6,Standard,527.91,38.58860967,,Yes,60.81724743,339.4201152,Low_spent_Small_value_payments,171.957304,0,1.1435,-1.5476,-1.6011,0.0859,-1.0476 +0x13615,CUS_0x6915,August,20,533-80-5681,Musician,15862.01,,10,6,31,100,"Payday Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",37.49764986,26.3994869,24.42,13,_,4455.470427,29.88413955,9 Years and 10 Months,Yes,66.78293289,46.85183975,High_spent_Medium_value_payments,276.848644,0,0.2534,-0.8368,1.2387,0.0184,1.5969 +0x13621,CUS_0x9bb4,August,27,049-55-8216,Journalist,59247,4782.25,8,3,18,5,"Not Specified, Auto Loan, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,15.28136705,7.34,14,_,1551.349058,39.27412168,,NM,241.969672,295.5816736,Low_spent_Small_value_payments,230.6736544,0,1.1335,-1.3073,0.2323,0.5696,1.0401 +0x1362d,CUS_0x6cec,August,20,208-12-1974,Writer,78208.96,,8,5,9,3,"Debt Consolidation Loan, Personal Loan, and Auto Loan",11.56488595,9,11.2,5,Standard,1419.42,34.39060577,,No,184.3775922,582.2945359,Low_spent_Small_value_payments,182.8692052,0,-1.0109,-1.3449,1.4943,-0.9402,1.0005 +0x13639,CUS_0x3551,August,19,162-44-5518,Mechanic,19797.56,,8,7,31,2,"Home Equity Loan, and Mortgage Loan",27.62301849,20,7.21,10,Bad,1793.37,32.28237087,14 Years and 11 Months,Yes,22.44875876,249.6855956,Low_spent_Small_value_payments,203.5453123,0,0.2052,-0.0822,-1.2823,-0.3016,-1.3325 +0x13645,CUS_0xc48d,August,38,525-99-8031,Writer,32579,2473.916667,7,6,11,4,"Auto Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",11.19983225,10,9.93,9,Standard,237.52,38.95202852,29 Years and 6 Months,Yes,86.82194247,26.76615846,High_spent_Medium_value_payments,383.8035657,0,0.4566,0.3751,-1.478,-0.3337,-0.2145 +0x13651,CUS_0x932,August,36,417-95-0656,Writer,75306.68,,2,4,5.288361749,2,"Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0,2,1.43,2,Good,103.22,25.7940314,31 Years and 5 Months,No,158.6074024,1140.819852,Low_spent_Small_value_payments,43.26587376,0,1.1477,0.0929,-0.9924,-0.2479,-1.1465 +0x1365d,CUS_0x63af,August,24,368-67-4929,Lawyer,3234780,7321.9325,8,3,8.288361749,0,Home Equity Loan,14.7659384,13,19.7,7,Standard,447.18,29.12556446,25 Years and 6 Months,Yes,40.10478564,622.6721806,High_spent_Small_value_payments,749.3537448,0,0.7436,1.5161,-0.1877,-0.4476,-0.6932 +0x13669,CUS_0xc2dd,August,22,813-68-9184,Architect,25433.4,,4,4,16,0,,,14,1.47,8,Standard,809.7987542,35.89406697,24 Years and 11 Months,NM,0,147.036144,Low_spent_Small_value_payments,351.573958,0,0.7569,0.9762,0.4479,0.1917,-0.0421 +0x13675,CUS_0x4972,August,22,148-03-8586,Accountant,18738.44,1411.536667,10,6,20,9,"Student Loan, Auto Loan, Home Equity Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Not Specified",24.30218535,17,20.93,8,Bad,2748.17,33.1190921,1 Years and 8 Months,Yes,136.2930224,,Low_spent_Small_value_payments,239.8786678,0,0.7154,0.6634,-0.5684,0.4208,-1.2336 +0x13681,CUS_0x2d76,August,51,035-96-6628,Accountant,48615.22,3937.268333,4,7,15,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Not Specified",,11,3.44,6,Standard,1235.05,35.25882383,16 Years and 10 Months,NM,135.3574337,,High_spent_Large_value_payments,455.0026601,0,0.687,-1.1648,-0.239,0.2403,-0.2514 +0x1368d,CUS_0x347b,August,30,812-16-1638,Engineer,17816.79,,6,5,31,5,"Personal Loan, Home Equity Loan, Student Loan, Not Specified, and Credit-Builder Loan",,24.97306613,8.44,7,_,2028.968516,30.1302019,11 Years and 11 Months,Yes,54.01042941,148.7334594,Low_spent_Small_value_payments,239.0293612,0,0.0041,0.7568,0.6865,0.1142,-0.8635 +0x13699,CUS_0x55b3,August,30,505-50-3068,Journalist,19606.68,,5,3,31,4,"Payday Loan, Student Loan, Not Specified, and Student Loan",14.07209145,9.600190902,12.15,10,Standard,1987.654428,26.0536339,11 Years and 5 Months,NM,68158,57.76144847,Low_spent_Small_value_payments,341.2855384,0,0.9873,-0.2611,-0.48,-1.4825,-0.0364 +0x136a5,CUS_0xb59e,August,30,#F%$D@*&8,Lawyer,23317.74,2109.145,4,303,12,3,"Home Equity Loan, Home Equity Loan, and Student Loan",19.38215672,14,0.6,2,Good,387.02,29.28343963,20 Years and 11 Months,No,32.03312743,98.3547358,!@9#%8,340.5266368,0,0.0259,0.9053,1.4211,-1.2119,-1.8337 +0x136b1,CUS_0xbcdd,August,43,551-45-1558,Entrepreneur,17286.51,1308.5425,3,3,17,1,Auto Loan,19.84077039,17,9.71,3,Standard,757.38,38.16462676,24 Years and 3 Months,No,12.24112016,85.06077218,High_spent_Small_value_payments,293.5523577,0,0.1195,0.0756,-1.0157,0.0456,-0.0223 +0x136bd,CUS_0xf84,August,34,618-81-3518,Lawyer,17260.57,,3,3,18,7,"Auto Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",17.427325,15,12.36,11,Standard,1496.49,38.89098492,16 Years and 11 Months,Yes,87.87147481,85.59696557,Low_spent_Medium_value_payments,241.269643,0,-0.19,0.3344,-0.1154,-0.879,-1.4695 +0x136c9,CUS_0x67ec,August,42,639-39-0670,Architect,77245.47,6671.1225,2,5,18,3,"Auto Loan, Credit-Builder Loan, and Not Specified",29.24370347,18,13.53,9,Standard,1251.67,28.76976178,23 Years and 9 Months,Yes,119.4671641,89.48576255,High_spent_Large_value_payments,698.1593234,0,-0.7142,0.1362,0.1867,1.0621,0.6998 +0x136d5,CUS_0x51b9,August,20,296-46-5676,Journalist,8220.625,588.0520833,8,9,24.95700519,6,"Not Specified, Student Loan, Personal Loan, Not Specified, Not Specified, and Mortgage Loan",,24.3192605,,15,Bad,5049.753979,33.91739422,1 Years and 5 Months,Yes,1361.301006,,Low_spent_Medium_value_payments,214.1424543,0,0.0831,-0.6335,-1.1698,1.1623,0.3145 +0x136e1,CUS_0x8b78,August,55,267-33-6948,Writer,80027.68,6652.973333,3,1,1.288361749,4,"Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Personal Loan",6.271336604,8,4.1,4,Good,21.75,38.3655782,27 Years and 8 Months,No,204.1540482,,Low_spent_Medium_value_payments,177.1603721,0,0.5361,0.5681,-0.9313,0.9345,-2.0205 +0x136ed,CUS_0x8823,August,55,220-68-1404,Musician,94639.11,7705.5925,3,4,15.28836175,2,"Credit-Builder Loan, Payday Loan, and Home Equity Loan",15.9691359,14,3.28,0,Standard,680.76,27.30563617,28 Years and 4 Months,No,3494,598.2196572,High_spent_Medium_value_payments,647.6759413,0,-0.4295,-0.0214,-1.8892,-0.7184,0.2878 +0x136f9,CUS_0x5aa7,August,46,443-67-6181,Journalist,21252.83,,4,5,9,2,"Student Loan, and Personal Loan",13.36568268,10,6.32,6,Good,233.8663119,35.38704561,26 Years and 8 Months,No,32.27022491,38.12164473,High_spent_Large_value_payments,351.5213015,0,1.0861,0.2656,0.4895,0.4192,-0.523 +0x13705,CUS_0x2778,August,41,531-52-1668,Developer,59453.48,,10,1356,33.95700519,6,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Student Loan, and Student Loan",42.50161959,23,26.85,9,Bad,3504.080954,30.15396763,2 Years and 2 Months,Yes,1514.848297,231.1355467,!@9#%8,303.5114532,0,-1.6488,-1.7856,-0.9202,-1.2938,-0.7835 +0x13711,CUS_0x8786,August,40,012-61-9198,Scientist,77095.8,,10,8,20.88954781,8,"Payday Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,21.77322614,17.87,10,Bad,3533.04195,25.30382581,2 Years and 5 Months,Yes,1657.281401,10000,High_spent_Medium_value_payments,346.4843275,0,-0.1231,0.9204,-1.8131,1.0667,0.3533 +0x1371d,CUS_0xc6c3,August,24,632-85-4331,_______,43729.32,3394.11,1048,5,32,9,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",39.30760262,19.98631691,1.86,9,_,1880.096509,27.5135317,5 Years and 9 Months,NM,233.6857318,47.98058547,High_spent_Medium_value_payments,307.7446827,0,1.1311,1.0572,-0.6022,-0.2882,0.434 +0x13729,CUS_0xba2a,August,43,832-73-8880,Journalist,33208.01,2494.334167,0,7,8.288361749,4,"Home Equity Loan, Not Specified, Payday Loan, and Payday Loan",0.009470549,4,11.11,5,Good,407.86,31.88717189,28 Years and 8 Months,No,75.66027411,,Low_spent_Small_value_payments,369.2218597,0,0.9227,0.9209,0.959,0.1784,-0.1512 +0x13735,CUS_0xb61a,August,80,993-89-4367,Writer,82934.76,,7,9,20,6,"Personal Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",38.66132959,18,4.11,13,_,3519.93,41.21744725,11 Years and 11 Months,NM,266.155814,178.9325793,High_spent_Medium_value_payments,466.0346067,0,-0.7671,-1.6526,0.0377,-1.7833,0.0298 +0x13741,CUS_0x7392,August,54,535-21-2576,Journalist,31226.77,,5,7,11,0,,,4.578632878,0.97,3,Good,1598.722997,28.62301461,,No,0,368.8441424,Low_spent_Small_value_payments,208.978941,0,0.4767,-0.7487,1.4004,-0.8049,0.6673 +0x1374d,CUS_0x21c1,August,53,#F%$D@*&8,Architect,107280.66,8671.055,5,5,10,1,Payday Loan,,13,13.23,4,Standard,1028.07,30.71611855,21 Years and 0 Months,Yes,51.4763744,338.5483585,Low_spent_Small_value_payments,767.0807671,0,-0.4032,-0.5797,-0.5746,0.1411,1.25 +0x13759,CUS_0x7699,August,22,152-69-5817,Developer,157299.48,13009.29,3,6,8,0,,0.750425564,3,1.01,2,Good,651.07,46.10143312,33 Years and 4 Months,No,0,,High_spent_Medium_value_payments,1141.86584,0,0.0569,-1.8089,0.047,1.5747,0.4395 +0x13765,CUS_0x508c,August,55,212-99-0909,Engineer,28420.92,,2,5,4,4,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,11,4.55,3,Good,401.6671114,40.87136503,24 Years and 5 Months,NM,86.15357285,106.0561726,Low_spent_Small_value_payments,347.7231873,0,-0.3837,-0.9405,-0.0783,-1.4297,-0.9645 +0x13771,CUS_0xba01,August,41,685-80-6053,Musician,17844.81,,6,5,23,6,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Not Specified, and Credit-Builder Loan",23.26731929,17,27.47,11,_,3962.26,32.24423089,3 Years and 0 Months,Yes,54.95751568,,High_spent_Small_value_payments,250.2988865,0,0.9446,1.1096,-1.6015,0.5665,1.345 +0x1377d,CUS_0xc1d7,August,80,905-30-7439,Musician,152947.12,12772.59333,1,3,1.288361749,0,Auto Loan,0,2,1.76,3,Good,1227.12,34.29949745,33 Years and 3 Months,No,75.19482963,903.4001299,High_spent_Medium_value_payments,968.6018348,0,1.9089,0.9253,0.9682,-0.99,-0.228 +0x13789,CUS_0x6b4d,August,36,901-60-2835,Media_Manager,47458.54,3860.878333,3,3,8,4,"Home Equity Loan, Home Equity Loan, Not Specified, and Personal Loan",17.3388894,16.05300728,7.6,6,Standard,638.2149329,35.87221222,7 Years and 5 Months,Yes,127.7286475,114.4537244,Low_spent_Medium_value_payments,423.9054614,0,-1.2269,0.0772,-0.429,-2.2946,-0.6621 +0x13795,CUS_0x679e,August,21,733-65-8835,Teacher,29258.69,,7,7,12,7,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",17.53352798,10.43831115,8.37,9,Standard,1474.039081,39.65633934,13 Years and 0 Months,Yes,164.0814713,44.61834738,High_spent_Medium_value_payments,315.022598,0,-1.7798,-1.7032,-0.4204,0.6194,-0.455 +0x137a1,CUS_0x69a2,August,25,445-37-3242,Scientist,32669.33,2850.444167,3,4,7,1,Not Specified,,14,3.7,2,Standard,154.63,38.5420122,19 Years and 6 Months,No,16.36698149,10000,Low_spent_Large_value_payments,315.3331321,0,-0.4777,-1.5198,-1.4806,0.0857,-0.7587 +0x137ad,CUS_0xdf5,August,20,780-69-0619,Doctor,21153.98,1520.831667,6,3,8,3,"Home Equity Loan, Auto Loan, and Payday Loan",18.20177166,15,8.6,0,_,951.68,40.19695923,32 Years and 6 Months,Yes,30.94777511,201.3457505,Low_spent_Small_value_payments,209.789641,0,0.9907,1.6546,-0.2516,-0.1682,-0.6187 +0x137b9,CUS_0x4056,August,46,077-34-1491,_______,71842.8,6101.9,3,7,11.28836175,2,"Payday Loan, and Credit-Builder Loan",10.82254874,10,7.41,4,_,39.31,29.69929061,27 Years and 2 Months,No,65.27357157,,High_spent_Medium_value_payments,614.4914873,0,2.5409,1.1296,1.5975,0.3355,1.1387 +0x137c5,CUS_0x6a27,August,80,607-78-8122,Architect,19890.14,1595.511667,3,6,13,2,"Mortgage Loan, and Home Equity Loan",22.29165263,18,18.74,10,Standard,98.81,29.06791788,9 Years and 9 Months,Yes,25.42711832,145.492925,Low_spent_Large_value_payments,258.6311234,0,-0.6229,0.7327,0.1285,-0.8524,-0.2678 +0x137d1,CUS_0x4c64,August,58,574-11-4911,Teacher,39057.08,3502.756667,0,5,9.288361749,4,"Auto Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",0,2,2.99,4,Good,331.712742,27.03580243,33 Years and 8 Months,NM,108.1196752,12079.66734,Low_spent_Large_value_payments,356.5538213,0,1.4455,1.1391,0.4705,-1.1856,-0.9735 +0x137dd,CUS_0xaabb,August,44,432-34-3192,Teacher,8265.3,827.775,8,10,18.88954781,6,"Payday Loan, Personal Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",,15,15.5,14,Standard,2256.44,25.44776065,5 Years and 11 Months,Yes,1358.982414,50.52872847,Low_spent_Small_value_payments,268.9362762,0,0.2973,1.0853,0.3938,0.9115,-1.2081 +0x137e9,CUS_0x3b4f,August,26,090-15-8892,Manager,17965.72,1295.143333,7,8,33.06745738,2,"Mortgage Loan, and Auto Loan",24.83731113,11.58338117,16.91,10,Standard,3219.349576,27.22470869,20 Years and 2 Months,Yes,17.05915245,148.8577775,Low_spent_Small_value_payments,226.8771154,0,-0.1987,2.3739,-0.2802,-0.2333,0.744 +0x137f5,CUS_0x421d,August,25,026-17-5849,Engineer,49675.38,,9,6,23.06745738,2,"Payday Loan, and Debt Consolidation Loan",,,14.75,12,Standard,3270.350116,28.80743576,12 Years and 4 Months,Yes,57.52334545,193.4652046,High_spent_Small_value_payments,393.252662,0,0.8329,-0.49,0.0912,-2.0269,0.6697 +0x13801,CUS_0x2881,August,26,917-87-8940,Accountant,41360.3,,3,7,12,100,Student Loan,15.37998339,13.4040715,9.31,0,Good,286.925554,26.51979653,21 Years and 6 Months,No,33.64768787,59.82082662,High_spent_Large_value_payments,489.0006522,0,0.433,-0.3783,1.5019,0.9972,-0.7386 +0x1380d,CUS_0x1aaf,August,24,750-26-4712,Engineer,42474.48,3101.080414,8,5,29,2,"Not Specified, and Not Specified",24.55610313,19,10.66,7,Standard,2637.96,25.33866131,12 Years and 9 Months,NM,499.9292444,43.39854416,High_spent_Large_value_payments,507.7857974,0,-1.2037,0.1659,-0.0133,0.6795,1.0849 +0x13819,CUS_0x61ba,August,38,778-88-8851,Entrepreneur,71111.1,,8,6,14,2,"Personal Loan, and Personal Loan",26.27143871,17.83953701,12.14,9,Standard,1231.46649,27.12529732,10 Years and 8 Months,Yes,80.10439038,53.72614543,!@9#%8,717.5619642,0,-0.6081,1.4112,1.334,-2.3979,0.5443 +0x13825,CUS_0xbfb5,August,45,#F%$D@*&8,Accountant,92561.2,7987.433333,8,3,15,3,"Payday Loan, Debt Consolidation Loan, and Student Loan",14.20708884,10,11.71,3,Standard,267.55,27.19044576,16 Years and 9 Months,Yes,189.3057444,194.1625308,High_spent_Medium_value_payments,665.2750581,0,1.0461,-1.4386,-3.0202,3.097,-0.7428 +0x13831,CUS_0x6dd3,August,50,111-44-1332,Scientist,26693.06,,7,5,6,4,"Not Specified, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,22.58849554,10.72,6,Standard,653.1078084,32.41417374,21 Years and 9 Months,No,53.25464283,117.2989548,Low_spent_Small_value_payments,363.1885691,0,-0.2313,1.9774,-0.6387,-0.9246,-1.3158 +0x1383d,CUS_0x9e43,August,18,384-48-7123,Accountant,16310.84,,7,6,8,4,"Student Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",,17,6.29,3,Standard,217.4,35.39604374,22 Years and 0 Months,No,35.56976024,102.7339815,Low_spent_Small_value_payments,285.0199249,0,0.4425,2.0566,0.0605,-0.6307,0.6182 +0x13849,CUS_0x6420,August,32,313-22-4562,Teacher,19077.25,1371.684255,10,8,28.88954781,6,"Credit-Builder Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",,21.80351479,7.6,11,Bad,4332.756607,26.69721277,,NM,1458.528894,92.17535931,Low_spent_Large_value_payments,249.129327,0,0.7359,0.9252,-0.982,-1.8062,0.499 +0x13855,CUS_0x3f75,August,55,841-56-7167,Media_Manager,28105.59,2133.1325,1,3,0.288361749,2,"Not Specified, Payday Loan, and Not Specified",4.778899995,8,6.44,6,Good,151.29,25.70159795,,No,54.99993831,450.9029033,High_spent_Medium_value_payments,377.3478694,0,-1.4468,0.3075,-1.0044,0.0902,-1.2748 +0x13861,CUS_0xb001,August,37,130-15-7471,Scientist,148729.12,12557.09333,2,5,1.288361749,2,"Auto Loan, Auto Loan, and Personal Loan",15.24221231,14,10.48,4,_,130.56,42.72483161,29 Years and 5 Months,No,198.496377,643.0654433,High_spent_Large_value_payments,1074.084974,0,0.0006,-0.1253,-0.1421,0.5801,-0.2593 +0x1386d,CUS_0x82b6,August,32,883-00-8749,Scientist,58765.53,5048.1275,6,6,27,100,"Student Loan, Not Specified, Home Equity Loan, Payday Loan, Payday Loan, Not Specified, and Personal Loan",42.54173519,24,3.16,9,_,1975.55,30.06961492,8 Years and 10 Months,Yes,178.6369244,65.05478608,High_spent_Medium_value_payments,511.1210395,0,-0.9295,-1.1442,-1.6847,-1.7725,-0.812 +0x13879,CUS_0x23b9,August,41,671-79-4575,Lawyer,22125.96,,2,799,12,4,"Debt Consolidation Loan, Student Loan, Home Equity Loan, and Home Equity Loan",5.914368094,5,0.69,2,Good,828.16,39.26433689,23 Years and 3 Months,No,66.2101143,63.78649077,Low_spent_Medium_value_payments,313.2863949,0,1.9168,0.5473,0.0685,0.0878,1.5482 +0x13885,CUS_0x25e3,August,30,177-35-0873,Journalist,75354.48,,8,10,31,9,"Mortgage Loan, Personal Loan, Personal Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Auto Loan, and Home Equity Loan",,25.49011485,9.01,7,Bad,3067.684565,33.07138745,10 Years and 0 Months,Yes,349.8449421,249.0437272,Low_spent_Medium_value_payments,337.4653307,0,-0.1587,1.0632,0.2823,1.0919,0.2577 +0x13891,CUS_0x663d,August,42,320-70-8885,Writer,60106.11,,6,9,32,3,"Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",,4959.522307,11.5,477,Standard,1628.40461,27.60980664,19 Years and 11 Months,Yes,102.2426785,156.844315,High_spent_Medium_value_payments,480.4972564,0,1.3833,1.3807,-0.1873,0.2894,-0.6397 +0x1389d,CUS_0x6f11,August,26,881-68-5762,Developer,30815.44,2753.953333,5,5,9,3,"Payday Loan, Credit-Builder Loan, and Mortgage Loan",11.91599174,8,19.14,8,_,1413.42,24.98877875,11 Years and 8 Months,Yes,56.17702853,143.0246278,Low_spent_Small_value_payments,366.193677,0,-0.7282,0.1029,-0.5959,1.8338,-0.9592 +0x138a9,CUS_0x30f8,August,50,894-72-5781,Writer,35139.27,,1,5,8,3,"Not Specified, Debt Consolidation Loan, and Not Specified",16.82802487,,-3.81,,_,853.2187723,29.85771581,29 Years and 5 Months,No,76.85758996,180.8924329,Low_spent_Small_value_payments,350.3854497,0,0.4428,-1.2623,2.2334,-1.189,-1.5843 +0x138b5,CUS_0x79bc,August,18,#F%$D@*&8,Doctor,20986.84,,9,10,18.06745738,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",30.44408497,18.34728766,19.35,11,Bad,2344.088153,25.17244156,10 Years and 4 Months,NM,49.83825004,77.65550445,High_spent_Small_value_payments,290.4762909,0,-0.7835,-1.0526,-0.073,0.5168,0.916 +0x138c1,CUS_0xfac,August,32,058-63-9425,Manager,20908.12,1566.907682,796,4,15.06745738,4,"Debt Consolidation Loan, Auto Loan, Auto Loan, and Home Equity Loan",12.36676678,8,4.17,2,Standard,1533.376344,27.3913461,27 Years and 10 Months,NM,139.1726577,24.45476239,High_spent_Large_value_payments,303.6743667,0,0.0802,-0.4525,0.4642,-0.1934,-0.424 +0x138cd,CUS_0x1c65,August,24,238-12-2167,Media_Manager,90783.75,7727.3125,4,3,3,0,,,18,-4.52,5,Good,54.93,41.29249256,21 Years and 11 Months,NM,0,,High_spent_Large_value_payments,961.0366172,0,0.6039,-0.4217,-0.5757,0.196,0.6645 +0x138d9,CUS_0x62d7,August,25,986-07-4110,Engineer,56387.92,4514.993333,7,6,25.06745738,1182,"Not Specified, Auto Loan, Payday Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",26.46467812,18,16.01,8,_,3791.080954,23.59021269,3 Years and 0 Months,Yes,241.7206581,427.2118177,Low_spent_Small_value_payments,45.84656964,0,-1.5084,0.6605,0.4749,-1.041,-0.0546 +0x138e5,CUS_0xc4dd,August,30,037-87-8652,Musician,17943.38,,8,10,22,2,"Student Loan, and Student Loan",,20,,14,_,1961.87,38.15937329,9 Years and 10 Months,Yes,20.60933525,80.36248018,Low_spent_Large_value_payments,332.0563512,0,0.4388,-0.5801,-0.34,1.0241,-0.1274 +0x138f1,CUS_0x5a8b,August,39,127-28-6453,Teacher,41771.88,,3,6,1550,2,"Payday Loan, and Credit-Builder Loan",18.4832603,13.52658891,0.94,7,_,2430.186768,28.65931988,12 Years and 5 Months,Yes,58.64897434,,High_spent_Medium_value_payments,489.608621,0,1.9617,0.2798,2.4504,-0.3361,1.9108 +0x138fd,CUS_0x23a4,August,42,381-82-1832,Lawyer,53876.88,,8,7,19,5,"Personal Loan, Not Specified, Student Loan, Mortgage Loan, and Home Equity Loan",31.95669082,13.22271612,19.96,14,_,1455.015464,24.00239692,19 Years and 9 Months,Yes,18868,221.0114903,High_spent_Small_value_payments,326.9528021,0,-0.5482,0.4053,0.4722,-1.0001,-0.2526 +0x13909,CUS_0x7e76,August,38,650-77-3931,Teacher,87629.7,,5,6,17,4,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",24.91824787,18,8.72,6,Standard,526.26,26.67977663,23 Years and 10 Months,Yes,178.4828137,357.8727626,Low_spent_Large_value_payments,467.0919238,0,0.3118,0.1946,2.7945,0.9228,-0.3766 +0x13915,CUS_0xc48b,August,25,646-19-1536,Entrepreneur,14539.01,,8,8,19.95700519,7,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",47.92512142,30.03152069,3.16,8,Bad,3196.774815,37.67316433,12 Years and 6 Months,Yes,1372.804317,,Low_spent_Small_value_payments,189.0376296,0,-0.7705,-0.6804,-0.5893,0.2586,-1.9324 +0x13921,CUS_0x265a,August,41,475-48-0414,Doctor,56270.46,4836.205,6,3,16,2,"Student Loan, and Payday Loan",,21,15.45,9,Standard,1570.56,35.25472422,12 Years and 11 Months,Yes,79.63089871,120.5891024,High_spent_Small_value_payments,543.4004989,0,1.7115,0.5042,-1.6481,0.3365,-0.1091 +0x1392d,CUS_0x715e,August,22,474-39-3036,Musician,17560.74,,10,6,15,3,"Payday Loan, Student Loan, and Student Loan",,20.27805431,8.71,7,Bad,2628.99336,30.11031221,10 Years and 3 Months,NM,35.13564075,,Low_spent_Small_value_payments,213.5352139,0,1.5184,0.3929,-1.5844,0.6834,0.3484 +0x13939,CUS_0x9a93,August,55,803-10-0905,Journalist,30412.85,2781.404167,3,4,14,0,,4.431987949,7,5.81,2,Standard,1220.51,34.12946222,27 Years and 6 Months,NM,0,148.6434294,High_spent_Small_value_payments,389.4969873,0,0.027,0.8598,-0.0322,0.7366,1.3812 +0x13945,CUS_0xa570,August,34,772-62-5695,Writer,9999.42,797.244797,8,6,14,3,"Payday Loan, Not Specified, and Credit-Builder Loan",13.42754591,12,1.56,2,Standard,153.12,30.7002468,28 Years and 3 Months,No,112.675367,89.5636781,Low_spent_Small_value_payments,267.6296579,0,-1.1135,-0.2357,-1.0402,-0.2843,2.2537 +0x13951,CUS_0x4fc1,August,52,945-39-2972,_______,133424.52,10127.54814,4,5,7.288361749,0,,0,2,17.38,2,Good,465.7252908,39.86825726,,No,915.1618566,606.1262959,High_spent_Large_value_payments,1179.773786,0,2.4508,-0.4379,-1.2978,-0.6932,0.1489 +0x1395d,CUS_0xb57b,August,47,891-87-0301,Accountant,22407.57,,9,4,13,1,Personal Loan,10.9448643,11,4.65,8,Standard,359.41,38.14348323,,No,9.406579838,66.72839149,High_spent_Small_value_payments,351.5947787,0,1.4393,-0.0645,-0.37,0.6395,1.471 +0x13969,CUS_0x78a7,August,47,561-74-1832,Lawyer,11777816,,5,7,11,0,,,,11.35,3,_,1069.592317,33.6915079,22 Years and 2 Months,Yes,0,812.224537,Low_spent_Small_value_payments,641.4197963,0,0.0506,0.6403,-1.0561,-0.8199,0.3793 +0x13975,CUS_0x4340,August,20,568-75-9435,Teacher,66061.04,5762.086667,6,5,22,3,"Personal Loan, Auto Loan, and Mortgage Loan",29.57697865,22,4.92,17,Bad,1801.38,32.34694101,12 Years and 9 Months,Yes,100.8021863,208.003213,!@9#%8,557.4032674,0,0.1392,2.3126,-1.8653,0.6941,1.4471 +0x13981,CUS_0x6568,August,27,956-80-0633,Lawyer,38493.68,,4,4,15,2,"Personal Loan, and Not Specified",,20,22.03,4,Standard,2277.198064,32.47687611,7 Years and 6 Months,Yes,36.46477122,,Low_spent_Small_value_payments,227.9466643,0,-1.34,1.1038,0.154,-0.7507,1.5559 +0x1398d,CUS_0x1c9c,August,28,#F%$D@*&8,Musician,64425.78,5254.815,1,3,8,4,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,9.457081045,2.69,1,Good,784.72705,32.61044712,,No,165.5650526,318.7564698,Low_spent_Small_value_payments,331.1599776,0,-1.0859,1.207,-1.6655,-1.1224,0.3689 +0x13999,CUS_0x980b,August,39,331-56-3918,Doctor,147048.8,12299.06667,0,1,10,1,Payday Loan,12.81829125,,3.14,4,Good,1081.65971,34.60560502,32 Years and 9 Months,No,77.93148847,,High_spent_Medium_value_payments,1130.724486,0,0.1368,-0.0273,-0.1956,-2.2052,1.182 +0x139a5,CUS_0x3c51,August,50,455-21-1131,Media_Manager,21662.395,,3,5,1,1,Student Loan,9.479366614,9.242911367,1.27,6,Good,711.9125825,35.15523092,16 Years and 4 Months,No,12.84127202,115.813511,Low_spent_Medium_value_payments,312.9651754,0,0.0532,-0.6597,-0.0751,-0.2778,-0.6368 +0x139b1,CUS_0x2f38,August,19,520-31-3047,Teacher,125854.12,,6,4,11.28836175,2,"Debt Consolidation Loan, Student Loan, and Auto Loan",15.19756967,14,10.69,6,Standard,1121.345253,36.82550427,23 Years and 0 Months,Yes,171.7727582,604.1266132,High_spent_Medium_value_payments,969.8920536,0,0.313,0.3234,-1.1006,-0.1089,1.116 +0x139bd,CUS_0x73ae,August,18,357-90-6128,Entrepreneur,64815.64,5627.303333,9,6,28,9,"Mortgage Loan, Not Specified, Home Equity Loan, Auto Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",,21.47142185,25.79,15,_,2778.138984,27.14954625,6 Years and 0 Months,Yes,25168,379.9129868,!@9#%8,86.11988758,0,0.75,0.8437,-1.2543,0.2156,-1.0157 +0x139c9,CUS_0x6793,August,33,201-71-4544,_______,94609.02,7861.085,7,7,7,1,Mortgage Loan,7.719531348,6,15.07,6,Standard,707.52,26.53047204,29 Years and 6 Months,NM,52.85799616,70.71377158,High_spent_Large_value_payments,902.5367323,0,-1.1291,-0.7708,0.0682,-1.0907,1.8252 +0x139d5,CUS_0x1236,August,25,144-88-9752,Scientist,28352.24,,4,4,7,3,"Personal Loan, Student Loan, and Mortgage Loan",0,0,9.02,0,Good,1085.7,23.10198935,16 Years and 10 Months,No,46.39072976,101.7152477,Low_spent_Small_value_payments,380.4626892,0,-0.781,0.3783,-0.7417,0.4942,-0.439 +0x139e1,CUS_0x9382,August,19,005-16-5195,Writer,9857.68,,8,8,30.88954781,8,"Mortgage Loan, Not Specified, Auto Loan, Payday Loan, Payday Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",30.10169593,22.91563458,17.32,13,Bad,3307.573198,31.23890507,8 Years and 6 Months,Yes,1357.547379,50.15384226,Low_spent_Medium_value_payments,282.1160311,0,0.1579,1.0707,1.5142,0.1664,-1.5872 +0x139ed,CUS_0x6590,August,39,059-11-3992,Mechanic,33002.23,,5,2,1,2,"Not Specified, and Credit-Builder Loan",0,2,10.71,7,_,1369.63,34.05657646,15 Years and 9 Months,No,42.19644173,52.67733303,High_spent_Large_value_payments,393.6448086,0,-0.4669,-1.6302,1.3989,-0.6648,-0.4161 +0x139f9,CUS_0x2301,August,44,206-55-6571,Doctor,27597.71,,6,4,13,1,Payday Loan,17.90976167,14.09602852,1.08,6,_,1538.3487,31.02441772,18 Years and 4 Months,No,18.34064321,214.9687552,Low_spent_Small_value_payments,270.2715182,0,1.2497,0.7327,0.2475,-0.2596,-1.259 +0x13a05,CUS_0x2bfb,August,27,627-00-9103,Engineer,15875.55,,6,7,19.06745738,7,"Home Equity Loan, Not Specified, Home Equity Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Student Loan",34.69843763,13.6286584,17.1,8,Standard,3054.723187,28.26270979,10 Years and 6 Months,Yes,89.76562703,10000,Low_spent_Large_value_payments,215.9919978,0,0.6201,0.0608,1.0448,0.6257,-1.3662 +0x13a11,CUS_0x6db3,August,34,588-36-6834,Lawyer,19667.73,,10,9,20.95700519,8,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Auto Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",24.91186017,16,17.73,10,Bad,4750.300954,32.94613158,6 Years and 3 Months,NM,9411.483444,73.78267469,Low_spent_Small_value_payments,231.3701229,0,0.9892,-0.1505,0.8317,0.4493,-1.7016 +0x13a1d,CUS_0x9f6c,August,26,765-21-4223,Accountant,38049.96,3132.83,8,8,29.95700519,8,"Auto Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Payday Loan, Home Equity Loan, and Auto Loan",40.20337031,24.15470163,2.07,10,Bad,3745.60527,40.02493455,6 Years and 0 Months,Yes,1498.63876,,Low_spent_Small_value_payments,184.4402131,0,0.2612,-1.5137,1.883,0.5421,-1.0416 +0x13a29,CUS_0x4b5e,August,26,272-77-3454,Scientist,85721.82,,4,3,8,0,,,4.697770066,8.82,4,Good,1260.215399,31.77597945,31 Years and 4 Months,No,0,265.3305987,!@9#%8,722.9179013,0,1.6877,-1.3087,0.7227,0.2118,-2.1979 +0x13a35,CUS_0x987d,August,28,235-10-4940,Musician,21060.63,,5,6,20,4,"Not Specified, Debt Consolidation Loan, Auto Loan, and Student Loan",15.41974389,12,10.73,7,Standard,1072.32,25.44145774,16 Years and 9 Months,NM,42.82585436,,Low_spent_Small_value_payments,235.2404942,0,0.8228,0.6547,-2.1317,0.0891,-0.7981 +0x13a41,CUS_0x2bf3,August,47,491-94-9987,Scientist,122658.64,,8,3,14,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,10,11.98,2,_,210.65,27.18027785,30 Years and 8 Months,No,155.4101407,10000,Low_spent_Medium_value_payments,590.3600102,0,0.061,-1.1285,0.4961,1.5058,-1.0008 +0x13a4d,CUS_0xb7f7,August,24,447-43-3640,Teacher,66250.64,,8,6,18,7,"Auto Loan, Mortgage Loan, Student Loan, Personal Loan, Personal Loan, Not Specified, and Not Specified",22.19059462,10,13.28,8,Standard,2073.32,25.86424545,6 Years and 3 Months,Yes,249.1620826,148.4025795,!@9#%8,423.8240045,0,0.9238,-0.4535,1.4958,-1.2503,-0.755 +0x13a59,CUS_0xaa29,August,49,794-72-8882,Writer,17258.715,,4,7,10,0,,10.03297626,12,11.09,1,Good,741.09,23.6967637,33 Years and 6 Months,No,0,140.0833903,Low_spent_Medium_value_payments,309.0392347,0,-0.1121,-1.0327,-0.5803,1.0681,-0.4636 +0x13a65,CUS_0x45cc,August,39,687-09-1058,Entrepreneur,15251.19,1144.9325,6,6,18,5,"Not Specified, Payday Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",20.46627451,16,9.85,8,Standard,1889.3,25.95440592,5 Years and 9 Months,Yes,43.74576037,,High_spent_Small_value_payments,269.3839603,0,-0.4776,-1.6251,0.4309,-0.5283,0.0597 +0x13a71,CUS_0x50e1,August,39,894-78-9681,Scientist,16046.49,,5,7,22,7,"Student Loan, Not Specified, Credit-Builder Loan, Not Specified, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",20.25866485,15,17.25,11,_,2297.22,40.11866159,18 Years and 4 Months,NM,177.7115251,,Low_spent_Medium_value_payments,243.8150796,0,-1.2173,0.4973,-0.4972,-0.7917,1.4339 +0x13a7d,CUS_0x2059,August,48,#F%$D@*&8,Journalist,121503.72,10000.31,4,6,3,2,"Home Equity Loan, and Payday Loan",0.691200779,1,-2.14,2,_,128.68,38.36845078,,No,189.119319,,Low_spent_Small_value_payments,6.991862421,0,-1.0114,-0.4159,-0.0697,-0.2779,1.3746 +0x13a89,CUS_0x4c09,August,33,271-16-7396,Mechanic,128501.8,,3,8,6.288361749,2,"Mortgage Loan, Debt Consolidation Loan, and Auto Loan",,3,1.25,0,Good,833.92,36.53988051,29 Years and 4 Months,No,175.3479404,665.2148162,High_spent_Large_value_payments,881.8230377,0,-0.7973,1.0674,0.2687,-1.2026,-0.259 +0x13a95,CUS_0x3a50,August,36,961-89-2245,Entrepreneur,8308.13,,10,9,21.95700519,7,"Personal Loan, Payday Loan, Personal Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",21.71724901,13.15156403,17.96,11,Standard,3264.85941,39.09109903,16 Years and 3 Months,Yes,1351.083768,,Low_spent_Small_value_payments,233.4834159,0,-0.9255,1.3241,1.2904,0.827,0.4846 +0x13aa1,CUS_0xd20,August,80,273-87-4456,Journalist,25527.32,,3,5,6,0,,22.36292742,16,-3.5,3,Standard,906.11,34.19163411,17 Years and 6 Months,No,0,205.7379937,!@9#%8,277.989673,0,-0.8977,1.0739,-1.2418,-0.8174,-0.5341 +0x13aad,CUS_0x6c8f,August,47,079-46-2572,Writer,31029.87,2856.8225,1,4,2723,2,"Credit-Builder Loan, and Personal Loan",0.61654744,3,1.61,3,Good,1347.05,38.56927241,16 Years and 3 Months,No,34.94921997,,High_spent_Medium_value_payments,458.5435249,0,-0.1979,-0.0365,-0.5073,0.6811,-0.1409 +0x13ab9,CUS_0x1fc1,August,51,517-59-6831,_______,31501.87,,5,3,16,2,"Home Equity Loan, and Personal Loan",,13,15.25,3,Standard,294.2239459,38.01331494,30 Years and 3 Months,NM,37.42615839,55.78799739,High_spent_Small_value_payments,423.0695008,0,-0.8197,0.6922,1.017,-0.2047,-0.4788 +0x13ac5,CUS_0xa936,August,20,217-12-4152,_______,131488.44,11031.37,7,7,4,3,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,17,3.95,4,Good,1024.09,42.69378163,28 Years and 4 Months,No,203.0917247,139.6636088,High_spent_Large_value_payments,1000.381666,0,-0.2458,-0.8592,0.6188,-0.9104,0.0631 +0x13ad1,CUS_0xb888,August,37,922-43-4216,Engineer,10189.235,557.1029167,7,3,25,7,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Not Specified, and Mortgage Loan",16.70399863,14.99100593,11.77,7,_,1581.836411,38.05192066,,Yes,33.10397924,,Low_spent_Small_value_payments,259.5535685,0,-0.3016,-0.2381,-1.0842,0.2382,2.3589 +0x13add,CUS_0x9684,August,38,169-39-0733,Developer,15108.07,,6,10,31,5,"Personal Loan, Student Loan, Credit-Builder Loan, Not Specified, and Auto Loan",23.31469167,15,26.34,14,Bad,3650.33,22.74305942,6 Years and 4 Months,Yes,42751,,Low_spent_Small_value_payments,220.8174534,0,0.8594,0.606,-1.0344,-1.3482,1.0545 +0x13ae9,CUS_0x12ec,August,42,836-23-7353,Scientist,45675,,8,5,28,4,"Home Equity Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",20.8782868,,10.51,8,Standard,1952.929446,37.76324166,6 Years and 5 Months,Yes,134.2702558,146.5630864,High_spent_Medium_value_payments,332.6916578,0,-0.8646,0.9046,0.2076,0.7264,1.1993 +0x13af5,CUS_0x419d,August,20,544-04-6202,Developer,35662.88,,8,3,34,4,"Auto Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,15.3554704,18.19,11,Standard,2668.659445,24.78390632,19 Years and 2 Months,Yes,60.78774439,220.264815,Low_spent_Large_value_payments,258.6381073,0,0.9412,0.614,-0.2217,-0.0947,1.3969 +0x13b01,CUS_0x2646,August,45,261-90-8736,Journalist,7807.285,606.6070833,4,6,13,2,"Debt Consolidation Loan, and Debt Consolidation Loan",25.46238842,20,16.31,4,Standard,692.63,38.48315501,7 Years and 0 Months,Yes,7.771075085,75.01807778,Low_spent_Small_value_payments,267.8715555,0,1.0412,-0.1083,0.9967,2.2107,-1.7758 +0x13b0d,CUS_0xa234,August,22,668-83-2972,Media_Manager,132265.36,10823.06006,6,7,16,6,"Payday Loan, Student Loan, Home Equity Loan, Student Loan, Payday Loan, and Mortgage Loan",25.68033471,17,15.65,11,Standard,551.3786423,40.33437306,5 Years and 11 Months,Yes,859.5166282,158.7575936,High_spent_Large_value_payments,808.5585074,0,-0.9999,-0.6091,0.0248,2.4245,-0.5585 +0x13b19,CUS_0xc734,August,38,946-82-3382,Media_Manager,27305.93,,3,4,19,0,,25.14741526,17,8.93,6,Standard,454.4,29.45159818,,Yes,0,26.37843941,High_spent_Medium_value_payments,452.5709773,0,-0.0498,0.183,0.527,0.0116,-0.9062 +0x13b25,CUS_0x6694,August,26,822-69-2443,Accountant,17794.98,1666.915,7,7,20.06745738,7,"Auto Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Student Loan, and Auto Loan",,22.14844066,4.01,,Bad,3087.013837,30.51681543,9 Years and 0 Months,Yes,68.50830127,18.39272722,!@9#%8,303.0701836,0,-0.4658,-1.9167,-1.008,2.7009,-0.4164 +0x13b31,CUS_0x3d76,August,30,479-80-1683,Journalist,25145.36,,3,3,18,2,"Payday Loan, and Not Specified",20.57486564,17,14.2,0,_,904.83,30.21316655,32 Years and 8 Months,Yes,31.28002924,25.33088074,High_spent_Medium_value_payments,398.1337567,0,0.2252,-0.4263,0.0406,0.0436,0.4965 +0x13b3d,CUS_0x7180,August,21,729-89-1122,Accountant,8373.24,,6,8,28.95700519,6,"Mortgage Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",,15,17.19,10,Bad,3848.880954,36.98129949,1 Years and 11 Months,NM,1353.023661,,Low_spent_Large_value_payments,199.3415021,0,0.4759,-1.0581,-0.5274,-1.0623,0.5045 +0x13b49,CUS_0xa465,August,32,762-10-5895,Engineer,34433.04,,7,3,7,0,,23.10630509,16,15.93,1,Standard,1408.75,23.49310803,32 Years and 4 Months,NM,0,,High_spent_Small_value_payments,422.058781,0,-1.6692,0.2276,-0.0184,0.054,2.5015 +0x13b55,CUS_0xa57b,August,29,872-67-1118,Teacher,20616.63,,6,6,16.06745738,6,"Personal Loan, Debt Consolidation Loan, Not Specified, Auto Loan, Not Specified, and Credit-Builder Loan",26.08237501,17,29.79,10,Bad,3612.450954,31.94693218,,Yes,70.57295724,124.7897016,Low_spent_Large_value_payments,226.3223033,0,-1.8166,-1.121,2.2478,0.3196,-0.4 +0x13b61,CUS_0x268d,August,29,#F%$D@*&8,_______,32842.44,,5,3,5,3,"Debt Consolidation Loan, Home Equity Loan, and Payday Loan",18.97619615,,15.08,3,_,1399.25,38.3546969,32 Years and 3 Months,Yes,48.04155063,,High_spent_Small_value_payments,413.3091942,0,-0.7071,-1.5945,0.2743,1.1077,-1.415 +0x13b6d,CUS_0xbef3,August,22,239-39-4735,Manager,9155.455,470.9545833,6,7,24,5,"Home Equity Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Mortgage Loan",,20,27.14,11,Bad,3914.45,36.41267773,,Yes,24.30024577,41.60576885,Low_spent_Small_value_payments,271.1894437,0,-0.8639,-0.9264,-0.976,-1.2716,0.7183 +0x13b79,CUS_0x5d1a,August,31,825-11-2838,Architect,40115.26,,8,4,9,4,"Student Loan, Auto Loan, Not Specified, and Personal Loan",23.56125935,18,16.45,13,Standard,28.98,25.86813154,16 Years and 3 Months,Yes,82.27202771,,High_spent_Medium_value_payments,437.5161732,0,1.864,-1.4313,0.725,0.3388,0.2594 +0x13b85,CUS_0x51c0,August,32,591-34-8676,Mechanic,14834.98,1236.248333,7,5,18.06745738,6,"Auto Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Student Loan",,25.91536083,8.52,6,Bad,4810.623076,40.89774709,12 Years and 0 Months,Yes,55.2147459,69.95240999,Low_spent_Small_value_payments,261.7373895,0,-1.5805,0.0311,-0.1646,-0.5171,-1.8934 +0x13b91,CUS_0x3db1,August,44,091-80-2935,Journalist,35871.7,,3,6,6,1,Personal Loan,3.275785214,4,7.87,5,Good,176.96,32.61640125,27 Years and 11 Months,No,24.57464246,83.78292951,!@9#%8,454.7732614,0,-1.5286,-0.7814,-1.2104,-0.6484,0.8686 +0x13b9d,CUS_0x8c39,August,35,947-41-5130,Entrepreneur,58955.56,4686.963333,4,6,34,6,"Not Specified, Student Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",,,19.06,10,Standard,2507.648335,38.6909577,18 Years and 4 Months,Yes,160.5393002,138.6086285,Low_spent_Medium_value_payments,449.5484047,0,0.5495,-1.5115,-0.6339,0.2281,0.0296 +0x13ba9,CUS_0x17c4,August,27,556-40-1723,Teacher,16962.91,,10,10,18.95700519,9,"Personal Loan, Not Specified, Student Loan, Payday Loan, Personal Loan, Home Equity Loan, Payday Loan, Student Loan, and Debt Consolidation Loan",,19.67364382,17.51,7,Bad,4339.634121,32.7657488,1 Years and 10 Months,Yes,18730.48344,,Low_spent_Small_value_payments,163.4746523,0,-1.673,0.0502,-0.6535,0.6633,-0.1447 +0x13bb5,CUS_0x9469,August,27,517-43-4607,Accountant,28582.04,,2,5,9.288361749,2,"Mortgage Loan, Personal Loan, and Debt Consolidation Loan",,1,6.81,1,_,299.8,27.45700013,16 Years and 2 Months,No,41.46045538,558.9255708,Low_spent_Medium_value_payments,309.9351015,0,-1.1342,0.5086,0.2002,-0.4783,-0.3021 +0x13bc1,CUS_0x520a,August,25,175-12-3956,Media_Manager,14544.27,,4,5,26,2,"Personal Loan, and Home Equity Loan",15.01955319,,17.39,7,Standard,3021.523009,33.99423543,9 Years and 9 Months,Yes,21.6806269,,Low_spent_Small_value_payments,253.9762461,0,1.1336,0.8729,1.2049,-1.0151,0.7571 +0x13bcd,CUS_0x39e5,August,20,378-91-8909,Accountant,19895.9,1384.991667,5,9,34,5,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Student Loan, and Mortgage Loan",28.03551131,17.55182095,19.44,6,Standard,2903.687605,40.19736268,14 Years and 0 Months,NM,66.38843413,59.42581251,Low_spent_Medium_value_payments,292.68492,0,-1.8997,0.7164,1.1566,-2.0366,-1.4297 +0x13bd9,CUS_0x9443,August,25,105-69-3347,Doctor,8204.11,816.6758333,6,7,21.06745738,9,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Student Loan, Not Specified, Payday Loan, Mortgage Loan, and Auto Loan",34.85945902,17.9725451,-2.36,8,Bad,2888.086832,35.29913141,,Yes,57.8713155,39.88321021,Low_spent_Medium_value_payments,237.1927697,0,0.2822,-1.0402,0.4706,-1.0488,-0.1168 +0x13be5,CUS_0xba97,August,44,804-73-5989,Media_Manager,45033.54,3860.795,5,6,21,2,"Debt Consolidation Loan, and Mortgage Loan",25.74371139,18,19.15,10,Standard,2381.98,33.7820978,17 Years and 8 Months,Yes,57.85260773,153.8779312,High_spent_Medium_value_payments,424.3489611,0,-0.0576,0.3621,-1.2209,1.3375,1.5518 +0x13bf1,CUS_0x9051,August,25,256-80-8294,Journalist,17613.49,,8,6,25,8,"Auto Loan, Payday Loan, Home Equity Loan, Payday Loan, Personal Loan, Not Specified, Student Loan, and Student Loan",18.40839815,,16.15,10,Bad,4723.28,26.7840465,2 Years and 9 Months,Yes,67.77605754,49.59128021,High_spent_Medium_value_payments,293.4117456,0,-2.2519,-1.0404,-0.4706,0.3479,1.7388 +0x13bfd,CUS_0x661d,August,25,128-26-1433,Journalist,52454.79,4130.2325,8,6,24,7,"Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Debt Consolidation Loan, and Student Loan",,28.97243421,-5.23,11,Bad,2713.208709,36.36765087,8 Years and 6 Months,Yes,273.5606473,459.9741391,Low_spent_Small_value_payments,,0,-1.296,-1.7596,-1.3713,1.0446,-0.2622 +0x13c09,CUS_0x1100,August,24,545-19-6617,Accountant,43062.54,,6,10,24.06745738,2,"Mortgage Loan, and Student Loan",43.39781098,22.726059,19.05,13,Standard,2672.591672,31.06592669,15 Years and 3 Months,Yes,47.49981874,71.94658529,High_spent_Medium_value_payments,464.587808,0,1.1767,0.5379,-0.181,-0.8746,-0.8331 +0x13c15,CUS_0xb07d,August,28,187-48-0283,Developer,84127.96,6919.663333,5,4,8,4,"Auto Loan, Home Equity Loan, Payday Loan, and Auto Loan",20.21909896,,9.81,0,Standard,1588.271857,36.89227247,,NM,176.4974326,55.2283999,High_spent_Large_value_payments,700.2405009,0,-0.0404,2.9972,-0.0635,-1.5786,-1.8523 +0x13c21,CUS_0xc5ea,August,27,596-35-4652,Writer,21301.19,,0,1,9,0,,,14,11.45,6,Good,1371.227784,34.83054323,30 Years and 11 Months,No,253.6742653,70.49143556,Low_spent_Large_value_payments,369.4156396,0,1.784,1.8627,-0.7509,0.068,0.7135 +0x13c2d,CUS_0x239e,August,35,867-85-4862,Musician,14390.16,,10,10,27.95700519,1014,"Not Specified, and Auto Loan",25.82945757,17,2.51,13,_,1551.320954,24.34730443,15 Years and 11 Months,Yes,1341.777656,52.76728632,Low_spent_Small_value_payments,274.4226886,0,-1.2442,-0.4663,-2.0817,1.722,0.0875 +0x13c39,CUS_0xb436,August,26,941-83-2392,Entrepreneur,62854.98,5370.915,10,5,23,7,"Personal Loan, Payday Loan, Personal Loan, Not Specified, Mortgage Loan, Payday Loan, and Payday Loan",35.03025453,21.27416485,11.38,11,Bad,2882.950629,32.10257956,11 Years and 4 Months,Yes,228.3441633,91.7957347,High_spent_Medium_value_payments,466.951602,0,-0.516,0.8758,-0.4038,0.2704,0.6948 +0x13c45,CUS_0xb611,August,20,503-24-0808,_______,17951.715,,5,5,9,0,,21.8610776,18,6.72,3,Standard,441.46,31.77306257,17 Years and 10 Months,Yes,0,133.7497574,Low_spent_Small_value_payments,297.3478676,0,-1.978,-0.1233,1.332,-3.1831,-0.4386 +0x13c51,CUS_0x78ca,August,53,030-35-7644,Journalist,35812.34,3124.361667,7,7,10,4,"Not Specified, Auto Loan, Personal Loan, and Home Equity Loan",18.51895341,12,1.62,0,Standard,367.46,34.41077976,30 Years and 11 Months,No,64.49951867,97.5829993,High_spent_Medium_value_payments,400.3536487,0,0.0155,1.2169,-0.9419,-0.6031,-1.2808 +0x13c5d,CUS_0x557f,August,20,574-13-2899,Developer,83204.52,6831.71,8,10,29,5,"Student Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",35.8484526,18,27.98,12,Bad,3388.37,24.46573673,13 Years and 0 Months,Yes,276.8748132,,High_spent_Medium_value_payments,450.8019693,0,0.4255,-1.1572,2.1192,-1.1005,-1.3371 +0x13c69,CUS_0x9692,August,24,556-37-4559,Scientist,138395,,4,5,14.28836175,0,Personal Loan,12.12373516,13,13.38,9,Standard,596.86,40.48166302,7 Years and 9 Months,Yes,103.5683594,762.4022203,Low_spent_Medium_value_payments,995.958548,0,0.7292,0.1572,1.051,0.1584,-1.2847 +0x13c75,CUS_0x8546,August,43,715-48-9784,Journalist,79172.08,6389.673333,8,4,14,5,"Mortgage Loan, Auto Loan, Mortgage Loan, Student Loan, and Not Specified",,12,16.11,12,Standard,2519.19,24.14356568,10 Years and 3 Months,Yes,170.1067666,83.75881922,High_spent_Large_value_payments,625.1017475,0,-0.0723,-0.6593,0.6164,1.1534,-1.5303 +0x13c81,CUS_0x9942,August,42,592-72-0472,_______,54491.84,,3,658,1325,0,,20.57114775,16,14.17,4,Standard,555.42,31.77685828,,Yes,0,,Low_spent_Small_value_payments,254.7353331,0,0.2475,-0.1199,-0.7363,-0.0794,-1.0518 +0x13c8d,CUS_0x4544,August,34,492-01-8431,Media_Manager,17224.395,1276.36625,3,5,1173,251,"Credit-Builder Loan, Payday Loan, Student Loan, and Debt Consolidation Loan",,1,-4.5,4,Good,1374.84,38.26158825,,No,38.96750727,,High_spent_Small_value_payments,262.5557096,0,-0.0767,-1.6033,-0.1303,0.0915,-0.4359 +0x13c99,CUS_0xb8a3,August,31,959-36-9830,Lawyer,38310.6,3371.55,8,6,20,3,"Not Specified, Mortgage Loan, and Auto Loan",,17,19.55,10,Standard,1616.26,34.26926644,7 Years and 11 Months,Yes,72.17252428,,High_spent_Large_value_payments,434.8038187,0,1.3957,1.7065,-0.9313,0.7736,-0.5152 +0x13ca5,CUS_0xa50e,August,36,253-30-1664,Journalist,125264.96,10404.74667,5,4,3,0,,14.5638963,9.65498418,5.53,2,_,1090.098805,31.97515865,25 Years and 8 Months,No,0,623.6064178,Low_spent_Medium_value_payments,696.8682489,0,-0.2137,0.385,-0.0374,-0.2461,1.3751 +0x13cb1,CUS_0x5b8c,August,53,022-86-4566,Lawyer,97536.09,,2,4,1.288361749,2,"Payday Loan, and Mortgage Loan",6.681005343,8,1.91,1,Good,724.5888674,36.45046311,18 Years and 10 Months,NM,98.97370839,1248.113493,Low_spent_Large_value_payments,266.6321278,0,1.4072,-1.4355,1.686,1.7066,1.3998 +0x13cbd,CUS_0x3a70,August,31,727-71-6595,Teacher,106928.84,9110.736667,5,3,13,4,"Home Equity Loan, Mortgage Loan, Not Specified, and Home Equity Loan",12.88395193,11,20.88,10,Standard,619.74,38.21930529,,Yes,240.733237,658.5443549,Low_spent_Large_value_payments,281.7960748,0,-0.208,-0.0522,-0.9414,1.0014,0.4354 +0x13cc9,CUS_0x5293,August,31,251-75-6319,Doctor,39829,3146.083333,4,6,14,3,"Student Loan, Not Specified, and Auto Loan",,12,19.04,8,Standard,1426.83,40.37338902,,Yes,71.45002882,168.1302739,High_spent_Small_value_payments,335.0280306,0,0.4026,1.553,-1.3121,-0.0007,-1.3517 +0x13cd5,CUS_0x26d7,August,49,253-33-8522,Developer,21623.465,,2,4,10,2,"Student Loan, and Payday Loan",10.07080683,10,6.65,5,Good,569.26,37.07298788,16 Years and 0 Months,No,34.33589952,66.12125795,Low_spent_Medium_value_payments,357.2383842,0,-0.7508,-0.1022,1.1219,-1.4236,0.7573 +0x13ce1,CUS_0x4c6c,August,19,055-37-7477,Musician,35416.64,3091.386667,8,4,7,1,Payday Loan,19.3206442,15,11.18,8,Good,620.9854453,27.43588562,17 Years and 0 Months,No,27.63153461,100.34256,High_spent_Medium_value_payments,442.3509174,0,1.2023,-0.4833,-0.2039,-1.8086,-1.0002 +0x13ced,CUS_0x64b4,August,80,553-99-2677,Doctor,88744.9,6628.270321,3,3,5.288361749,0,Auto Loan,11.64505662,11,0.97,3,Good,259.6540126,32.16605973,,No,592.7253982,606.195511,!@9#%8,765.7731439,0,-0.8078,-0.6322,1.4555,-0.3419,0.3049 +0x13cf9,CUS_0x4228,August,56,208-45-5775,Journalist,88799.78,,5,3,6.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",11.29546544,11,3.2,5,Good,950.667435,33.51509959,23 Years and 11 Months,No,220.1859312,941.9797937,Low_spent_Medium_value_payments,323.3782095,0,-0.8157,1.1807,0.2228,-0.623,-0.5218 +0x13d05,CUS_0x897e,August,37,#F%$D@*&8,Musician,58604.32,4788.693333,7,7,18,6,"Auto Loan, Payday Loan, Payday Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",34.36752952,21,8.75,2358,Bad,1887.32,28.68947107,20 Years and 2 Months,NM,197.4251427,240.9486617,Low_spent_Large_value_payments,310.495529,0,1.0851,-1.1758,0.968,-0.4326,0.4177 +0x13d11,CUS_0x84b,August,47,905-48-2798,Engineer,70164.9,5975.075,5,5,13,0,,25.84250452,18,11.21,6,Standard,1471.3,34.49831832,22 Years and 6 Months,Yes,0,590.5624309,Low_spent_Medium_value_payments,286.9450691,0,0.3812,1.3311,-0.0506,0.8143,-1.2133 +0x13d1d,CUS_0x92b9,August,20,855-40-7496,Teacher,46855.17,3987.5975,7,5,27,6,"Auto Loan, Not Specified, Debt Consolidation Loan, Auto Loan, Student Loan, and Auto Loan",,23.98811632,19.86,7,Standard,1860.903594,32.84243794,11 Years and 3 Months,Yes,145.5524217,140.9320975,Low_spent_Medium_value_payments,392.2752308,0,-1.0331,1.4315,-0.563,0.0672,-1.4427 +0x13d29,CUS_0x96b1,August,42,805-95-8957,Musician,60986.49,5017.2075,6,6,14.28836175,0,Auto Loan,,18,8.67,8,Standard,760.99,36.81467725,20 Years and 8 Months,NM,64795,520.760578,High_spent_Large_value_payments,608.9735031,0,-1.4272,-0.4078,-0.2227,-1.2224,0.599 +0x13d35,CUS_0x7c13,August,40,784-84-0195,Scientist,19181.27,,10,7,29,8,"Payday Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Auto Loan, Auto Loan, and Home Equity Loan",45.99558658,26.65062011,8.6,12,Bad,2598.346818,22.5340957,9 Years and 3 Months,Yes,117.5297547,,Low_spent_Large_value_payments,214.1655237,0,-0.6349,0.2342,1.9642,2.2402,0.3352 +0x13d41,CUS_0x90e,August,46,620-31-6876,Entrepreneur,70256.94,,1,4,6,1,Debt Consolidation Loan,6.328847514,2.420363481,2.09,2,Good,955.602874,34.89698552,19 Years and 2 Months,No,38.07247761,159.0392733,High_spent_Medium_value_payments,641.762749,0,-0.1881,-0.8425,0.0449,0.9113,-1.5554 +0x13d4d,CUS_0x844d,August,44,947-44-3246,Lawyer,29170.78,2588.898333,0,6,8,100,"Credit-Builder Loan, and Auto Loan",12.97917321,12,5.39,4,Good,1181.13,24.43417493,21 Years and 11 Months,No,32.50185774,180.7818306,!@9#%8,325.606145,0,0.5518,0.9573,-1.6398,0.8759,0.4618 +0x13d59,CUS_0x4c2c,August,18,029-34-1826,Manager,23883.28,,5,5,9,4,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",14.4486774,14,10.84,8,Standard,1125.583799,27.48187127,8 Years and 9 Months,Yes,230.6028738,105.9001649,Low_spent_Small_value_payments,328.270423,0,0.5689,0.9692,0.4801,0.4536,0.5105 +0x13d65,CUS_0x8b0c,August,80,587-03-6623,Lawyer,9635.555,,10,8,23.88954781,7,"Home Equity Loan, Student Loan, Payday Loan, Student Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,27.66465673,21.28,15,Bad,5239.339696,36.3349466,1 Years and 11 Months,Yes,1379.463502,,Low_spent_Medium_value_payments,245.0939753,0,0.6111,-1.5035,0.1139,0.2687,1.7253 +0x13d71,CUS_0x3873,August,80,#F%$D@*&8,Media_Manager,74961.78,,1,3,11,2,"Personal Loan, and Debt Consolidation Loan",,12,5.41,0,Good,212.9853557,40.94908786,,No,70.89350396,141.2918983,High_spent_Medium_value_payments,708.6195682,0,-0.0941,-1.0384,0.4093,-0.1085,-0.705 +0x13d7d,CUS_0x2ff8,August,28,503-21-2410,Lawyer,11654.425,,3,4,8,1,Student Loan,14.792191,,6.98,5,Standard,1154.58,25.4859338,18 Years and 2 Months,Yes,8.99650234,42.22118015,Low_spent_Small_value_payments,333.3025258,0,-0.2745,-0.4946,-2.3083,-0.4532,-0.7365 +0x13d89,CUS_0x28d8,August,29,096-79-8281,Developer,179193.76,14867.81333,5,3,7.288361749,0,Debt Consolidation Loan,0.928349186,5,6.85,5,Good,387.3393015,29.02604152,21 Years and 10 Months,No,83.4172915,1110.68265,Low_spent_Medium_value_payments,1079.554064,0,-0.4617,0.942,-1.0446,-0.1907,-1.6989 +0x13d95,CUS_0xa6e0,August,55,134-85-8550,Accountant,150755.48,12764.95667,5,5,7,4,"Student Loan, Payday Loan, Auto Loan, and Credit-Builder Loan",,,2.54,6,Good,559.23,31.95284445,32 Years and 0 Months,No,470.4072553,,Low_spent_Medium_value_payments,55.79269982,0,0.6242,-0.2669,0.8957,-1.7955,-0.0957 +0x13da1,CUS_0x792f,August,24,182-98-8567,Teacher,90216.75,7487.0625,4,2,12,1,Payday Loan,8.24468219,8,5.81,2,Good,9.35,33.94948583,20 Years and 9 Months,No,37.7603709,79.19840965,High_spent_Large_value_payments,871.7474694,0,-0.1826,-0.1148,-1.5118,1.1243,0.4617 +0x13dad,CUS_0xb798,August,52,908-32-4592,Mechanic,44184.71,3798.059167,5,5,11,0,,15.33449485,12,8.64,5,_,208.05,41.0888261,30 Years and 11 Months,No,0,43.165055,High_spent_Large_value_payments,576.6408617,0,0.9487,0.1087,0.154,-0.1447,-1.1193 +0x13db9,CUS_0xb450,August,47,564-78-6008,Entrepreneur,580744,2911.420833,1,2,8.288361749,364,Personal Loan,7.734714249,8,11.34,4,Good,1246.42033,25.72047915,25 Years and 5 Months,No,15.80562653,472.3209409,High_spent_Medium_value_payments,478.9106924,0,-0.2457,-0.5575,-1.567,-0.4469,0.9023 +0x13dc5,CUS_0x4be1,August,35,021-36-4734,Doctor,17247.71,1508.309167,6,7,20,5,"Auto Loan, Mortgage Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",,21,27.67,11,_,4596.48,34.52581136,7 Years and 4 Months,Yes,64.55412661,68.52945378,High_spent_Small_value_payments,277.7473363,0,0.2467,-1.0888,-0.0604,0.0156,0.5789 +0x13dd1,CUS_0xab26,August,36,886-95-6914,Journalist,21945.825,1979.81875,2,6,2,4,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",0.047770076,4,7.57,8,Good,202.68,38.934675,24 Years and 9 Months,No,63.32455347,72.64800576,High_spent_Medium_value_payments,312.0093158,0,-1.1088,0.4979,2.0388,-0.8545,-0.8255 +0x13ddd,CUS_0x71de,August,40,956-46-2324,Lawyer,28278.99,,8,7,16,1,Home Equity Loan,,10,8.97,2,Standard,796.54,30.56859859,29 Years and 6 Months,No,12.70016251,222.0213032,Low_spent_Medium_value_payments,274.6367843,0,-0.3843,0.6067,0.4375,0.4063,-1.9783 +0x13de9,CUS_0x440e,August,48,144-48-5573,Journalist,68590.02,,4,6,12,0,,4.462346276,8,7.25,5,Standard,1138.1,32.38702329,28 Years and 5 Months,No,0,95.00121051,High_spent_Large_value_payments,720.7822895,0,0.4279,-0.9803,0.2126,1.0387,0.89 +0x13df5,CUS_0x203c,August,26,631-48-5152,Accountant,48008.07,4135.6725,7,5,18.06745738,9,"Auto Loan, Credit-Builder Loan, Student Loan, Personal Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,,25.74,15,_,3755.500954,36.89721118,7 Years and 6 Months,Yes,19033,,High_spent_Medium_value_payments,252.6499021,0,0.9639,0.2204,0.6282,-0.251,0.3336 +0x13e01,CUS_0xaa8d,August,39,898-00-1803,Manager,70544.38,,1,7,9.288361749,0,,,11,,1,Good,30.36,38.55738036,22 Years and 4 Months,No,620.5955335,625.9194966,Low_spent_Small_value_payments,643.6877978,0,1.2648,0.9786,0.3615,-1.1201,-0.4734 +0x13e0d,CUS_0xe23,August,39,825-49-2383,Musician,17815.585,1427.632083,8,6,18,1,Home Equity Loan,20.70142447,14,14.18,10,_,982.63,33.89778183,30 Years and 11 Months,Yes,13.34655179,69.65885681,Low_spent_Medium_value_payments,339.7577997,0,0.0017,1.2146,-1.6678,0.3518,0.3412 +0x13e19,CUS_0xa2e5,August,49,600-39-8541,Entrepreneur,27109.79,,3,5,15,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",,12,9.26,1,Standard,320.07,35.08227469,15 Years and 9 Months,No,43.37870835,,High_spent_Medium_value_payments,341.5259846,0,2.2751,-0.9194,-0.7373,-0.2665,-0.0212 +0x13e25,CUS_0x12b6,August,18,652-60-9119,Writer,67104.12,5829.01,9,9,20.06745738,5,"Student Loan, Not Specified, Payday Loan, Not Specified, and Auto Loan",38.04786116,25,21.54,8,Bad,4859.160954,28.66732676,1 Years and 9 Months,Yes,265.0221602,10000,Low_spent_Medium_value_payments,364.9000272,0,-0.9416,-2.2151,-0.9549,-0.9486,1.1226 +0x13e31,CUS_0xa163,August,22,922-36-7237,Lawyer,38165.06,3273.421667,4,3,6,1,Auto Loan,3.717942039,7,8.91,1816,_,974.1155488,27.99975063,23 Years and 6 Months,NM,17.4369884,146.3874795,Low_spent_Medium_value_payments,458.3830244,0,-0.1084,-2.2309,-1.1401,0.1869,0.2028 +0x13e3d,CUS_0x8002,August,42,#F%$D@*&8,Mechanic,21596.82,2020.735,5,3,5,1,Home Equity Loan,5.305132624,8,2.11,0,Good,1262.645636,23.83125299,,No,9.742872376,186.7301595,Low_spent_Small_value_payments,313.7259211,0,-0.9957,0.1246,0.9805,0.2565,-0.6873 +0x13e49,CUS_0x245d,August,27,251-17-0514,Scientist,22147.105,,0,4,4,1,Student Loan,,3,,7,Good,947.58,37.05524105,20 Years and 6 Months,No,9.829845999,125.0398159,Low_spent_Large_value_payments,328.9895464,0,0.9283,0.1986,0.2181,0.5972,1.6536 +0x13e55,CUS_0xbbb0,August,25,180-22-8029,Journalist,48830.76,3911.23,8,5,35.06745738,100,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Payday Loan, Student Loan, and Student Loan",,21.61464047,16.62,9,Bad,4698.713555,37.2285315,2 Years and 4 Months,Yes,157.7215778,516.789255,Low_spent_Small_value_payments,0,0,0.9519,-0.9925,-0.1887,-0.6865,0.673 +0x13e61,CUS_0x1226,August,52,027-55-0167,_______,11421.51,,5,3,14,3,"Student Loan, Payday Loan, and Home Equity Loan",18.33926557,,15.72,7,_,1278.12,24.0165581,30 Years and 2 Months,Yes,20.89293594,55.88990035,!@9#%8,316.2964137,0,0.0167,0.2528,-0.8671,0.812,0.9364 +0x13e6d,CUS_0x6be5,August,26,321-47-0150,Musician,44820.08,,7,5,15,1,Student Loan,12.48131203,9,6.39,6,Standard,361.47,24.16369035,20 Years and 8 Months,NM,21.58133108,125.8309694,!@9#%8,492.3883662,0,1.3222,1.3716,0.1549,-0.6956,0.4575 +0x13e79,CUS_0x9c0,August,50,435-27-9315,Writer,37993.12,,1,6,0.288361749,4,"Personal Loan, Not Specified, Student Loan, and Mortgage Loan",0,3,5.57,2,_,473.9701053,30.890422,28 Years and 11 Months,No,110.3311455,443.8746871,!@9#%8,429.61381,0,1.3061,0.6043,-0.9012,0.6143,-1.6372 +0x13e85,CUS_0x840f,August,23,583-02-3933,Scientist,14856.35,,4,2,10,1,Home Equity Loan,,7,5.9,6,Good,1282.6168,38.84291538,26 Years and 4 Months,No,6.524757595,,Low_spent_Small_value_payments,358.1116075,0,-0.0115,0.5746,0.3867,0.1048,0.6641 +0x13e91,CUS_0x4555,August,34,#F%$D@*&8,Accountant,56135.16,4753.93,7,5,17,7,"Payday Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Student Loan, Not Specified, and Mortgage Loan",21.1338886,14.81493868,15.23,,Standard,3046.386419,36.43249144,7 Years and 8 Months,Yes,190.1022742,,Low_spent_Small_value_payments,170.0586406,0,-0.1322,-0.78,0.8819,1.0594,0.2697 +0x13e9d,CUS_0x8e44,August,54,#F%$D@*&8,_______,33476.83,2534.735833,4,1,7,0,,,8,3.26,6,Good,1115.904688,34.52746742,27 Years and 8 Months,No,0,106.0052917,Low_spent_Large_value_payments,431.7189391,0,-0.0283,-2.2849,-0.1572,-0.6119,-0.5379 +0x13ea9,CUS_0x43d1,August,40,904-98-0688,Mechanic,32749.15,2601.095833,0,2,2.288361749,4,"Mortgage Loan, Mortgage Loan, Student Loan, and Mortgage Loan",3.212277707,7,2.46,3,Good,98.55,28.18996621,22 Years and 11 Months,NM,105.362019,,Low_spent_Small_value_payments,192.8302367,0,0.1764,0.0635,-0.4806,-0.3728,1.8338 +0x13eb5,CUS_0x8125,August,20,764-23-2835,Media_Manager,118036.28,9899.356667,3,4,12.28836175,2,"Home Equity Loan, Payday Loan, and Home Equity Loan",24.4638071,20,16.74,9,Standard,175.4,31.87669288,19 Years and 5 Months,NM,233.0884415,808.9747378,High_spent_Medium_value_payments,617.8099483,0,-1.0906,-0.0726,-0.3313,0.7759,-1.0056 +0x13ec1,CUS_0xa7a3,August,24,195-25-1423,Engineer,53672.94,4589.745,9,5,27,100,"Not Specified, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",,23.81355153,9.72,10,Bad,1671.212159,32.21274029,6 Years and 4 Months,NM,220.7657778,140.6973433,High_spent_Medium_value_payments,347.5113789,0,-0.9441,0.2172,-0.2518,0.2294,-0.3649 +0x13ecd,CUS_0xa6f6,August,35,424-26-3353,Media_Manager,35292.24,,3,3,8,2,"Credit-Builder Loan, and Not Specified",8.542560828,8,7.35,2,_,996.99,23.64312122,22 Years and 5 Months,No,51.65026795,120.6182105,High_spent_Small_value_payments,359.2335215,0,-1.6789,0.0614,2.4474,2.7422,-0.1594 +0x13ed9,CUS_0x9c9c,August,43,555-63-9146,Mechanic,32827.25,2828.604167,5,5,5,3,"Payday Loan, Home Equity Loan, and Not Specified",,9,13.82,9,Standard,1121.080655,34.36350276,27 Years and 3 Months,Yes,49.53508236,438.8015436,Low_spent_Small_value_payments,146.8516708,0,-0.3082,-0.4054,0.1158,-0.6935,0.7104 +0x13ee5,CUS_0xbc7d,August,35,265-33-1368,Lawyer,52338.57,4451.5475,6,434,23.95700519,100,"Personal Loan, Not Specified, Payday Loan, Auto Loan, and Credit-Builder Loan",34.15021498,21.36239349,24.07,11,_,4263.179478,26.78638573,11 Years and 11 Months,Yes,1474.081187,125.3335905,High_spent_Medium_value_payments,374.6896033,0,-0.8609,0.8188,-1.476,1.2774,0.4137 +0x13ef1,CUS_0x95e7,August,25,423-07-8408,Doctor,7080.7,,10,9,21.95700519,8,"Payday Loan, Mortgage Loan, Not Specified, Not Specified, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Student Loan",,25.63302107,24.58,9,Bad,3618.974141,31.38683673,,NM,1358.498755,34.63343716,Low_spent_Medium_value_payments,201.6232718,0,0.4247,-1.3181,-0.6811,1.1858,-0.9223 +0x13efd,CUS_0x82db,August,39,115-17-6032,Teacher,37062.36,,8,8,31,6,"Student Loan, Payday Loan, Auto Loan, Auto Loan, Payday Loan, and Auto Loan",18.93052506,12.52069694,11.1,10,Standard,2465.404088,39.84450815,7 Years and 0 Months,Yes,165.7861053,157.3894918,High_spent_Small_value_payments,257.9774029,0,0.2862,0.9143,0.2575,-0.0487,0.0554 +0x13f09,CUS_0x80bd,August,35,534-53-3213,Manager,18550.4,,3,4,34,2,"Not Specified, and Credit-Builder Loan",12.58954298,10,15.08,9,Standard,1368.63,26.25677863,,Yes,28.83079989,140.9253484,Low_spent_Large_value_payments,266.3305184,0,0.8446,-2.0131,-0.0848,0.6826,-0.6035 +0x13f15,CUS_0x56c8,August,53,058-84-5590,Doctor,10777.43,741.1191667,5,4,17,2,"Mortgage Loan, and Payday Loan",17.77169603,12,-2.41,3,_,494.5359395,26.40100404,23 Years and 8 Months,Yes,10.3516523,22.45567938,High_spent_Medium_value_payments,293.5493617,0,-1.2643,0.324,-0.5984,0.2644,0.95 +0x13f21,CUS_0x3636,August,32,477-19-4895,Scientist,72079.52,5845.077965,9,7,24,100,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",39.99432099,22,16.33,11,Bad,1605.65,38.89095025,10 Years and 0 Months,Yes,578.521072,,Low_spent_Medium_value_payments,244.0330276,0,-0.8806,-0.722,-1.2973,2.3059,0.3458 +0x13f2d,CUS_0x32ad,August,46,426-46-4223,Teacher,56200.53,4544.3775,307,8,31,7,"Auto Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Student Loan",,28.75899861,18.22,7,Bad,5569.145811,34.83477703,1 Years and 8 Months,Yes,257.1125833,,Low_spent_Small_value_payments,,0,-0.0029,1.4585,2.0545,1.1414,-2.4332 +0x13f39,CUS_0x12bf,August,51,235-33-4203,Entrepreneur,97976.08,8136.673333,8,6,12,2,"Mortgage Loan, and Credit-Builder Loan",10.66457632,8,6.03,5,_,1113.49,34.21458101,,Yes,115.0873251,1039.373998,Low_spent_Small_value_payments,,0,0.1723,0.1105,-1.3604,-2.4139,0.1237 +0x13f45,CUS_0x7069,August,28,278-80-2094,Doctor,39126.01,3413.500833,3,6,10.28836175,4,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",,5.738687546,3.73,1,_,235.8740504,22.60530602,32 Years and 8 Months,No,71.19870448,542.8292602,High_spent_Medium_value_payments,397.2595797,0,2.3024,-0.4465,0.7665,1.2185,-0.6674 +0x13f51,CUS_0x632f,August,33,237-14-5884,Lawyer,40835.65,3173.970833,5,2,1,0,,10.39074304,11,6.42,3,_,1236.292385,37.56805969,29 Years and 11 Months,No,0,65.96819083,High_spent_Small_value_payments,519.2860264,0,0.3718,1.5735,0.5586,0.5801,-0.6004 +0x13f5d,CUS_0x9ff7,August,47,965-32-3124,Scientist,41813.18,,7,3,15,0,,14.70506728,13,9.68,6,Standard,1372.83,28.85379688,30 Years and 11 Months,No,0,280.0929968,Low_spent_Small_value_payments,382.8501699,0,-0.3729,-0.8859,0.7453,1.1474,0.2289 +0x13f69,CUS_0x8031,August,21,146-48-0684,Media_Manager,56990.6,,7,7,21,9,"Personal Loan, Home Equity Loan, Mortgage Loan, Not Specified, Home Equity Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, and Personal Loan",33.00499047,23.59538007,-3.12,,_,2419.433848,36.43808805,8 Years and 4 Months,Yes,305.7243026,112.3084906,High_spent_Large_value_payments,308.4888735,0,0.4571,0.7646,1.859,0.6824,0.1271 +0x13f75,CUS_0x9774,August,43,938-36-7670,Mechanic,32464.1,2668.341667,4,3,10,1,Home Equity Loan,1.668958508,5,4.82,1,Standard,681.09,26.80843212,32 Years and 6 Months,NM,19.18656123,234.9760355,Low_spent_Large_value_payments,282.67157,0,0.038,2.216,-1.7341,0.8909,0.3294 +0x13f81,CUS_0x46a,August,27,453-82-6508,Architect,135550.88,11547.90667,3,3,9,3,"Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",9.739108349,10,6.52,3,_,716.21,34.16396496,23 Years and 3 Months,No,203.494906,538.4947844,Low_spent_Large_value_payments,682.8009762,0,-0.461,-0.5193,-0.3811,0.3018,-1.6656 +0x13f8d,CUS_0x2ce9,August,48,314-22-8629,Media_Manager,22723.19,,5,7,6,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",16.9461851,13,9.47,6,_,352.164659,31.53557456,25 Years and 0 Months,No,51.94701371,80.53659227,High_spent_Medium_value_payments,296.0933931,0,1.4753,-1.29,-0.1734,-1.1664,0.4099 +0x13f99,CUS_0x24c3,August,52,484-34-7482,_______,84602.38,,2,4,10.28836175,0,,,12,7.5,3,Good,693.4467137,38.96530506,32 Years and 4 Months,No,0,546.0719832,High_spent_Large_value_payments,811.5492836,0,0.9845,1.5719,1.834,0.5053,-0.8632 +0x13fa5,CUS_0x19a9,August,28,923-50-7465,Engineer,14128.41,,6,5,30.06745738,9,"Personal Loan, Payday Loan, Auto Loan, Student Loan, Student Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",27.90157178,19,24.2,12,_,3025.038448,37.60836214,13 Years and 2 Months,Yes,93.95697677,,Low_spent_Large_value_payments,200.9095522,0,0.8511,0.9609,0.5885,-0.6347,1.0031 +0x13fb1,CUS_0x6f0a,August,38,380-75-0286,Musician,8461.285,699.1070833,9,9,21.06745738,5,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",,32.52809004,9.37,8,Bad,4504.630094,40.26296947,,Yes,34.02785836,84.72281314,!@9#%8,214.4397489,0,-1.2258,-0.5472,-0.6711,0.688,0.6425 +0x13fbd,CUS_0x3761,August,18,201-00-0167,Musician,73338.12,6373.51,3,4,12,7,"Not Specified, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Student Loan, and Not Specified",5.599965568,8,11.92,5,Standard,2449.13,33.59735971,18 Years and 2 Months,Yes,395.3348081,86.49377154,High_spent_Large_value_payments,395.5224203,0,-1.006,0.627,-0.3665,-1.5469,0.8383 +0x13fc9,CUS_0x68be,August,18,699-83-1909,Media_Manager,26938.02,,3,5,8,4,"Personal Loan, Payday Loan, Not Specified, and Personal Loan",13.82979676,10,6.43,4,Standard,579.96,30.17402093,18 Years and 0 Months,Yes,79.04761038,,High_spent_Medium_value_payments,356.5584793,0,0.3177,0.5027,-0.9249,-0.9522,0.7257 +0x13fd5,CUS_0x9576,August,28,333-99-1246,Developer,15692.35,,7,3,10,3,"Home Equity Loan, Auto Loan, and Debt Consolidation Loan",18.03963083,13,18.2,5,Standard,527.9899066,39.74805985,9 Years and 5 Months,Yes,32.93137302,61.73895801,!@9#%8,331.4237342,0,0.0155,-2.1282,-0.5367,-0.1443,1.2432 +0x13fe1,CUS_0x6228,August,36,951-96-0569,Doctor,68451.12,5578.26,8,4,8,7,"Not Specified, Mortgage Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",,,8.75,6,Standard,1215.29,39.85148801,12 Years and 0 Months,NM,361.3247739,,High_spent_Small_value_payments,111.6349182,0,-2.0444,-0.265,0.7177,-0.9192,0.4406 +0x13fed,CUS_0xb9d5,August,29,858-65-5945,Doctor,19823.565,1782.96375,1,3,6,3,"Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",9.844151659,9,3,4,Good,1408.66,34.00046411,29 Years and 11 Months,No,35.57630964,125.9048595,Low_spent_Large_value_payments,286.8152059,0,0.4815,-1.3623,-0.0152,-1.3243,-0.1113 +0x13ff9,CUS_0x35ca,August,40,602-68-5090,_______,33980.48,2855.706667,6,4,13,2,"Home Equity Loan, and Student Loan",8.26935909,8,14.23,4,_,955.32,29.26319252,30 Years and 11 Months,Yes,34.44199959,,Low_spent_Large_value_payments,401.1699949,0,-0.9373,0.4178,-0.9049,0.283,-0.3469 +0x14005,CUS_0x5e78,August,41,295-90-0803,Lawyer,16259.845,,3,7,6,4,"Home Equity Loan, Student Loan, Student Loan, and Payday Loan",8.640318763,11,1.6,5,Good,970.6991644,29.38486001,32 Years and 10 Months,No,36.08426906,188.9740667,Low_spent_Small_value_payments,223.0554065,0,-0.4322,-2.2242,-0.7605,1.0159,-0.6306 +0x14011,CUS_0xbdbf,August,45,276-84-5931,Entrepreneur,35124.99,,1430,1,10,4,"Student Loan, Payday Loan, Personal Loan, and Student Loan",12.93426754,11,9.52,4,Good,337.9066335,31.35077822,18 Years and 4 Months,No,106.8964638,,Low_spent_Small_value_payments,234.2486407,0,-0.6049,0.2591,-0.331,-0.0602,0.6805 +0x1401d,CUS_0x36b3,August,35,888-75-8140,Entrepreneur,12679.725,1228.64375,7,3,6,4,"Student Loan, Mortgage Loan, Student Loan, and Not Specified",17.41414522,14,9.84,1,_,1226.77,36.44954575,28 Years and 3 Months,No,17653,112.2539045,Low_spent_Small_value_payments,267.2569599,0,0.0435,-1.6843,2.3654,0.5967,-0.0689 +0x14029,CUS_0xb473,August,28,381-89-0590,_______,8143.805,,53,7,33.06745738,5,"Personal Loan, Debt Consolidation Loan, Personal Loan, Student Loan, and Payday Loan",26.88191784,18,15.12,10,Bad,3458.930954,38.40103463,2 Years and 3 Months,Yes,49.80484887,,Low_spent_Small_value_payments,244.2690054,0,1.5661,1.2031,1.3683,-1.1871,-1.5859 +0x14035,CUS_0x10e2,August,37,168-78-3262,Media_Manager,43133.85,3432.4875,10,10,32.95700519,7,"Personal Loan, Auto Loan, Not Specified, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",,24,6.41,11,Bad,2727.510954,28.13916429,10 Years and 9 Months,Yes,1474.770699,67.89250966,High_spent_Large_value_payments,319.5351721,0,1.4235,-0.2509,1.0025,-0.0569,0.404 +0x14041,CUS_0x948f,August,37,640-58-0930,Developer,116268.16,9677.013333,4,5,9,100,Home Equity Loan,,,11.48,2,Standard,602.5319813,40.6109606,29 Years and 6 Months,Yes,74.63229824,262.969363,!@9#%8,900.2720631,0,0.0555,0.6799,0.2413,-0.4202,-1.4357 +0x1404d,CUS_0x22fe,August,18,729-05-0487,Manager,76801.36,,8,52,13.88954781,6,"Payday Loan, Personal Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Not Specified",20.44672515,14,12.38,6,Standard,1172.94,26.80613097,8 Years and 2 Months,Yes,1584.330418,588.7151842,Low_spent_Large_value_payments,41.33565008,0,-0.8488,0.6672,-0.1039,-0.3996,-0.6726 +0x14059,CUS_0x7a8,August,33,544-38-3815,Accountant,21663.61,1656.300833,4,5,8,2,"Debt Consolidation Loan, and Mortgage Loan",9.061659315,10,3.64,,Good,494.8546939,25.35732013,32 Years and 10 Months,No,32.71616123,26.27657634,High_spent_Large_value_payments,349.1013694,0,-0.3907,0.0414,-0.0172,0.2479,0.206 +0x14065,CUS_0x1f42,August,31,773-22-5016,Lawyer,18146.26,,7,7,24.06745738,5,"Mortgage Loan, Personal Loan, Personal Loan, Personal Loan, and Payday Loan",25.56526902,16,15.25,14,Standard,1931.980954,25.8640522,18 Years and 9 Months,Yes,66.1580376,139.4450908,Low_spent_Medium_value_payments,191.895417,0,0.6507,1.6533,0.0976,1.4451,-1.3904 +0x14071,CUS_0xbd06,August,21,191-16-7901,Accountant,15444.65,,7,10,27.06745738,6,"Auto Loan, Payday Loan, Student Loan, Student Loan, Credit-Builder Loan, and Payday Loan",,20.47831445,8.31,12,_,2374.042538,25.36483273,12 Years and 2 Months,Yes,63.78224986,80.99096738,High_spent_Small_value_payments,208.0119115,0,-0.0173,0.813,-0.2491,-0.8529,0.4732 +0x1407d,CUS_0x3274,August,44,047-33-4886,Manager,32766.46,2499.538333,4,7,9,100,"Student Loan, Not Specified, and Mortgage Loan",18.789083,11,10.1,10,_,521.1,33.60741347,17 Years and 3 Months,NM,54.05561885,90.17379502,High_spent_Medium_value_payments,355.7244195,0,-0.788,-1.4663,0.6449,0.5252,-0.3139 +0x14089,CUS_0x7a77,August,27,044-19-7799,Musician,32085.89,2460.824167,4,6,14,5,"Payday Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Auto Loan",12.51430838,13,20.02,6,Standard,655.2826741,38.27866731,19 Years and 0 Months,Yes,84.06232164,94.78537281,High_spent_Medium_value_payments,326.902644,0,0.5379,-0.3825,-1.2936,-0.5117,1.8443 +0x14095,CUS_0x27e2,August,36,470-60-5606,Mechanic,8705.96,,3,7,28.06745738,3,"Student Loan, Not Specified, and Student Loan",,20.14676647,13.19,1329,Standard,3054.503739,29.11698981,16 Years and 8 Months,Yes,16.44695382,40.47648768,Low_spent_Small_value_payments,296.1059372,0,1.503,0.881,-0.5267,1.0542,-0.4543 +0x140a1,CUS_0x5db9,August,26,517-11-7660,Entrepreneur,24858.67,,8,6,11,2,"Mortgage Loan, and Mortgage Loan",24.1322617,16,2.99,4,Good,515.0746037,28.3967145,15 Years and 9 Months,No,35.19336501,128.5085146,Low_spent_Small_value_payments,342.7023671,0,0.6184,-0.1214,-0.3002,-0.7704,-0.6338 +0x140ad,CUS_0x67d0,August,36,103-41-3644,Manager,9695.47,1066.955833,5,3,20,2,"Home Equity Loan, and Home Equity Loan",,14,11.86,4,Standard,463.03,38.70772527,29 Years and 3 Months,No,8.394122073,102.4886705,Low_spent_Medium_value_payments,275.8127907,0,1.2604,0.1123,1.7194,0.2021,-0.2151 +0x140b9,CUS_0x1c70,August,44,149-05-1316,Scientist,31604.58,2378.715,1,2,10,4,"Auto Loan, Not Specified, Student Loan, and Auto Loan",3.870867091,6,2.86,3,Good,845.1434604,34.57481503,18 Years and 2 Months,No,65.50581843,52.78142243,High_spent_Large_value_payments,366.8121505,0,-0.5472,0.2718,0.515,-1.3902,0.4369 +0x140c5,CUS_0xa37f,August,41,189-57-2479,Developer,34751.53,,4,4,8,3,"Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",10.01038373,9,8.56,2,Standard,421.45,29.22151816,24 Years and 11 Months,No,74.53653938,30.48736636,High_spent_Large_value_payments,447.1721776,0,-0.9302,-1.0075,-1.0549,0.5907,-0.1341 +0x140d1,CUS_0x3852,August,45,654-67-5073,_______,15589.34,1005.111667,8,8,34.06745738,8,"Personal Loan, Auto Loan, Not Specified, Home Equity Loan, Auto Loan, Mortgage Loan, Personal Loan, and Personal Loan",,25.76306829,,12,Bad,3428.374364,39.77010207,2 Years and 2 Months,Yes,91.5718295,29.35194365,Low_spent_Medium_value_payments,232.8671056,0,0.7608,-0.8881,0.6341,-1.7127,-1.5223 +0x140dd,CUS_0xbb75,August,42,389-17-4424,_______,32829.62,2945.801667,5,697,10,3,"Mortgage Loan, Personal Loan, and Auto Loan",0,3,11.7,2,Good,823.88,36.70667597,22 Years and 4 Months,No,74.62833527,183.4363849,Low_spent_Small_value_payments,326.5154465,0,-0.5653,-0.5305,-0.4789,0.7956,0.5676 +0x140e9,CUS_0x979f,August,22,435-19-5149,Media_Manager,121238.4,,2,7,0.288361749,0,Credit-Builder Loan,11.78928477,12,5.64,2,_,1160.07,36.37609299,16 Years and 3 Months,No,92.00512576,639.670792,High_spent_Large_value_payments,926.6815433,0,-0.2683,-1.143,1.451,-1.4303,-0.0516 +0x140f5,CUS_0x3928,August,51,676-17-1399,Doctor,19602.22,,7,4,6,2,"Credit-Builder Loan, and Debt Consolidation Loan",,8.064879607,10.7,4,Standard,1039.579768,22.1232672,19 Years and 5 Months,Yes,23.7461843,106.133432,!@9#%8,284.9722171,0,-1.1185,-0.3356,0.2394,-1.4302,1.485 +0x14101,CUS_0x16f4,August,37,#F%$D@*&8,Media_Manager,28638.97,,7,6,6,3,"Credit-Builder Loan, Payday Loan, and Mortgage Loan",,9,1.34,1,Standard,149.92,33.87524269,30 Years and 2 Months,No,52215,143.6018344,High_spent_Small_value_payments,306.7679385,0,-0.6762,0.3287,0.5769,-1.6575,2.0843 +0x1410d,CUS_0xa2b9,August,52,261-38-1072,Scientist,27172.31,,7,6,4561,1,Not Specified,17.26898121,12,10.62,0,Standard,1235.92,36.29102643,17 Years and 5 Months,No,13.13957888,21.08438821,High_spent_Large_value_payments,426.1119496,0,-0.018,0.4567,-0.2075,-0.7317,0.36 +0x14119,CUS_0x8140,August,29,388-66-4056,Manager,18285.06,,5,4,22,4,"Payday Loan, Home Equity Loan, Mortgage Loan, and Mortgage Loan",26.5467495,19.20746962,16.25,11,Standard,2897.869285,23.32708425,14 Years and 6 Months,Yes,39.72156877,72.52500644,Low_spent_Medium_value_payments,291.6289248,0,-0.3306,-0.9715,-1.2541,-1.4229,2.6306 +0x14125,CUS_0xa8c6,August,20,214-47-2407,_______,60759.54,,5,4,6.288361749,4,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Auto Loan",13.03722567,13,7.76,6,Standard,117.3679582,38.43652042,24 Years and 2 Months,NM,155.525521,,Low_spent_Large_value_payments,326.3445167,0,0.148,-1.2336,-0.5727,0.833,0.2426 +0x14131,CUS_0xaa0a,August,46,490-91-8527,Manager,8770.725,851.89375,5,5,7,4,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",15.49954603,11,8.77,6,_,1609.69,36.84699807,12 Years and 4 Months,Yes,23.11902747,31.28728748,High_spent_Medium_value_payments,280.7830601,0,-0.1153,0.3121,0.2936,1.233,-0.5272 +0x1413d,CUS_0x2083,August,31,495-33-9893,Lawyer,54650.72,,5,3,4477.288362,0,,14.44623527,,22.44,1240,_,675.51,35.32292574,16 Years and 11 Months,Yes,0,833.9455823,Low_spent_Small_value_payments,335.7145454,0,-0.6036,-0.0681,0.2968,0.7642,-0.6667 +0x14149,CUS_0x4ec5,August,56,747-39-2384,Scientist,71716.56,,3,6,5,4,"Debt Consolidation Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",18.0671531,13,2.3,4,Good,930.3,25.93563026,,No,234.2817046,,Low_spent_Large_value_payments,248.4379901,0,-0.8373,0.3402,0.1861,-1.2511,-2.3562 +0x14155,CUS_0x1319,August,47,#F%$D@*&8,Media_Manager,138613.48,11706.12333,7,5,10,3,"Personal Loan, Personal Loan, and Personal Loan",26.45954097,20,6.49,4,_,768.69,31.69324508,17 Years and 10 Months,No,182.1762394,409.1683043,High_spent_Small_value_payments,839.2677896,0,2.4538,1.8084,-0.1848,-0.6305,-0.5018 +0x14161,CUS_0x663e,August,39,594-04-1648,Musician,18670.98,1553.915,5,5,14,4,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",20.47371242,,15.92,11,Standard,1397.21,31.89983916,10 Years and 11 Months,Yes,32.44445435,61.21789521,High_spent_Medium_value_payments,311.7291504,0,0.3555,1.7079,-0.0929,1.206,0.7519 +0x1416d,CUS_0x94f6,August,52,581-88-3699,Scientist,90789.21,7836.7675,1,1106,4.288361749,2,"Personal Loan, and Mortgage Loan",,7,3.53,8,Good,18.15,39.94135392,,No,105.505251,740.3957913,Low_spent_Medium_value_payments,637.7131687,0,-0.1365,-0.9392,-1.196,0.1674,-2.8456 +0x14179,CUS_0x7986,August,38,868-05-9841,Architect,34215.86,,8,9,27.06745738,5,"Not Specified, Student Loan, Payday Loan, Student Loan, and Auto Loan",,24.94510567,5.4,6,Bad,3094.234736,40.82818173,,Yes,96.7728048,,Low_spent_Large_value_payments,247.3178182,0,0.8936,0.2295,0.0346,1.2874,0.137 +0x14185,CUS_0x2d6a,August,25,195-30-6889,Journalist,16066.29,,6,5,8,2,"Payday Loan, and Mortgage Loan",,12,5.66,1,Good,78.69,37.25975785,,No,23.32325869,,Low_spent_Small_value_payments,279.8826505,0,1.6983,-0.9094,-0.607,-1.0089,0.6813 +0x14191,CUS_0x74b1,August,26,448-68-7130,Media_Manager,8590.155,,6,5,31.06745738,7,"Student Loan, Not Specified, Payday Loan, Personal Loan, Not Specified, Personal Loan, and Personal Loan",,14.47986873,7.79,9,_,3154.274199,41.11682548,6 Years and 2 Months,Yes,30.88666908,45.1117244,Low_spent_Small_value_payments,285.2659436,0,1.3204,0.2199,0.8427,0.3689,-0.2452 +0x1419d,CUS_0xc0fd,August,32,503-38-4873,Writer,29895.53,2246.294167,4,5,8,0,,0,2,3.22,6,_,795.9626625,32.90894383,26 Years and 9 Months,No,0,303.7010337,Low_spent_Small_value_payments,249.7674268,0,0.0654,-2.2722,1.6928,0.6815,-0.8481 +0x141a9,CUS_0x7558,August,38,264-81-8732,Developer,18746.95,1467.245833,4,3,3,1,Student Loan,12.81715843,12,12.32,4,Good,1403.55,28.14969355,23 Years and 2 Months,No,15.56516459,99.31000128,High_spent_Small_value_payments,291.8494175,0,-0.7088,-1.1785,1.2944,0.4708,0.2433 +0x141b5,CUS_0x9175,August,48,805-74-9060,Writer,145380.88,12361.07333,5,3,887,1,Student Loan,0.225788824,2,6.69,5,Good,693.0827575,35.28286366,,No,102.7586053,352.3122509,!@9#%8,1070.951524,0,-0.2853,-1.5988,0.9387,0.1017,0.7103 +0x141c1,CUS_0xb732,August,25,724-75-1703,Manager,94511.76,8168.98,4,5,18,5,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Student Loan, and Credit-Builder Loan",12.70009748,12,15.38,5,Standard,28.68206803,28.86039657,,Yes,337.5737942,152.7205988,High_spent_Large_value_payments,582.5442019,0,-0.2914,-1.4365,1.0472,-1.7644,-0.5949 +0x141cd,CUS_0x1f24,August,42,796-58-2729,Musician,8938.07,678.8391667,6,9,34.88954781,7,"Student Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,30.2677266,27.81,13,Bad,4774.052429,34.28604368,2 Years and 10 Months,Yes,1357.161141,,Low_spent_Small_value_payments,246.5519408,0,-0.6374,-0.6216,1.7062,0.8988,0.1688 +0x141d9,CUS_0x63b7,August,35,736-70-3175,Mechanic,10095.545,755.2954167,5,3,14.06745738,4,"Credit-Builder Loan, Mortgage Loan, Payday Loan, and Payday Loan",27.00451954,17,2.26,1,Standard,1429.180954,32.43138888,30 Years and 8 Months,No,20.02483325,69.59370345,Low_spent_Medium_value_payments,239.190717,0,-1.6634,2.0205,0.8118,2.4814,0.0785 +0x141e5,CUS_0x426a,August,28,102-98-4046,Architect,97266.3,,3,5,7,4,"Personal Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",0,3,9.88,7,Good,252.5005623,31.07300352,33 Years and 6 Months,No,201.4880335,,High_spent_Large_value_payments,798.6993409,0,-0.3899,-0.0629,1.4874,-0.6572,0.6617 +0x141f1,CUS_0xbe6f,August,41,749-18-8231,Journalist,34945.16,,7,6,21,5,"Mortgage Loan, Auto Loan, Not Specified, Not Specified, and Debt Consolidation Loan",,20.68119615,9.45,13,Standard,2270.241481,35.78666438,11 Years and 2 Months,Yes,140.1209697,69.55253511,!@9#%8,334.6361619,0,0.7256,0.593,-0.2457,-0.4886,0.553 +0x141fd,CUS_0x1ffb,August,33,354-51-3405,Mechanic,15908.46,1426.705,10,9,25.95700519,8,"Personal Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",,18.23565222,1.74,10,_,3786.643169,38.52473314,1 Years and 3 Months,Yes,1411.271307,137.874419,Low_spent_Medium_value_payments,152.4744051,0,-1.5241,-0.046,0.9936,1.0394,0.4686 +0x14209,CUS_0xd7d,August,19,356-30-8640,Entrepreneur,34800.24,,10,8,25.95700519,8,"Auto Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",,28.50834057,25.25,13,Bad,4192.693583,34.77378007,1 Years and 2 Months,NM,1539.593104,,Low_spent_Medium_value_payments,228.049113,0,-0.8587,-1.2583,1.1495,-1.3272,1.9377 +0x14215,CUS_0xc08b,August,50,464-69-1352,Journalist,71825.98,,4,4,8.288361749,2,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",,10,11.97,2,Good,153.08,35.03939292,17 Years and 8 Months,No,168.5077974,488.4037204,High_spent_Large_value_payments,610.8757766,0,-1.5354,-2.3909,-2.5004,-0.8367,0.8329 +0x14221,CUS_0x36b0,August,31,461-58-4930,Doctor,41290.29,3601.8575,4,5,7.288361749,4,"Home Equity Loan, Not Specified, Personal Loan, and Auto Loan",0,2,7.64,7,Good,39.91491396,26.26545822,20 Years and 8 Months,No,85.64437208,,Low_spent_Small_value_payments,329.9245299,0,0.7032,0.2606,1.4338,-0.2199,0.2648 +0x1422d,CUS_0x7a36,August,39,070-06-0488,Entrepreneur,42960.39,3363.0325,2,5,8.288361749,2,"Mortgage Loan, Student Loan, and Debt Consolidation Loan",0,3.479897721,3.18,2,Good,430.0222382,35.1519998,30 Years and 3 Months,NM,58.19248942,,Low_spent_Small_value_payments,244.9521924,0,-0.6026,-0.34,-1.9268,1.4499,-0.0751 +0x14239,CUS_0x8da8,August,29,028-05-9742,Developer,10037.855,,4,5,3089,4,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Mortgage Loan",22.81996919,20.19229308,13.99,7,Standard,1882.283069,26.81081159,10 Years and 5 Months,Yes,54301,43.53689966,Low_spent_Small_value_payments,310.7209361,0,0.8448,0.2105,-1.2769,-0.2929,1.0439 +0x14245,CUS_0x7577,August,58,466-42-9476,Accountant,34769.18,3107.431667,4,3,3,1,Mortgage Loan,,,13.77,107,Good,1286.58311,30.52427395,22 Years and 10 Months,No,15.57206019,140.7032519,Low_spent_Medium_value_payments,452.9689218,0,-0.2809,-0.326,-1.2537,-0.1035,-0.9358 +0x14251,CUS_0x7aaa,August,41,559-82-7560,Accountant,58346.36,4616.196667,7,7,28,6,"Student Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Payday Loan",,,19.22,11,Bad,3534.9,38.33892097,7 Years and 8 Months,Yes,229.9157921,118.103895,High_spent_Large_value_payments,353.5999795,0,-1.6944,1.7698,0.604,0.1195,-0.2521 +0x1425d,CUS_0x4d40,August,40,#F%$D@*&8,Architect,19070.62,,7,5,28.06745738,8,"Payday Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",43.99047694,26.96265859,2.1,15,Bad,2725.513437,34.10759352,15 Years and 6 Months,Yes,111.4705372,100.0503793,Low_spent_Small_value_payments,182.0806288,0,0.3131,-0.6437,0.2559,-0.2489,1.6773 +0x14269,CUS_0x1bac,August,80,469-12-4672,_______,15926.285,,4,4,11,2,"Auto Loan, and Personal Loan",24.04602689,19,19.54,5,Standard,1481.35,36.38451854,21 Years and 0 Months,Yes,14.81700668,,Low_spent_Small_value_payments,255.7208613,0,-0.2407,1.6395,0.1698,-1.2677,-0.2429 +0x14275,CUS_0x5354,August,33,910-46-8987,Mechanic,90133.59,7795.1325,6,6,608,3,"Student Loan, Credit-Builder Loan, and Credit-Builder Loan",29.60410018,23,16.25,6,Standard,1464.72,30.30569162,12 Years and 9 Months,Yes,194.609776,121.5878094,High_spent_Large_value_payments,703.3156645,0,-0.4431,0.5677,0.1786,1.101,0.8248 +0x14281,CUS_0x7de5,August,48,390-51-5865,Lawyer,18613.045,1394.087083,1,3,6.067457376,3,"Payday Loan, Debt Consolidation Loan, and Home Equity Loan",13.26591294,7.225189088,8.54,9,Good,1657.753239,31.84078563,16 Years and 11 Months,No,34.39606375,,Low_spent_Small_value_payments,221.5995793,0,-1.2673,1.0197,0.3787,0.6254,-1.0214 +0x1428d,CUS_0x5fd1,August,28,856-19-6470,_______,35223.94,,7,4,17,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",15.26958425,13,18.56,9,Standard,1269.36,39.3631828,21 Years and 10 Months,Yes,61.91473592,64.49349954,High_spent_Medium_value_payments,408.5245979,0,-1.57,0.851,-0.2039,-0.9963,0.6511 +0x14299,CUS_0x2a1b,August,30,782-94-3133,Developer,36101.73,,4,5,7,1,Debt Consolidation Loan,13.38067174,12,19.62,0,Standard,1452.04,37.6466537,28 Years and 4 Months,NM,25.16344997,420.7592953,Low_spent_Small_value_payments,164.5250047,0,-0.9928,0.4431,2.977,-1.6999,0.9074 +0x142a5,CUS_0x914e,August,55,748-44-0227,Musician,89384.91,,1,3,10,3,"Auto Loan, Payday Loan, and Student Loan",,938,9.54,5,Good,959.8585493,28.29903631,,No,118.5349504,598.7788877,High_spent_Small_value_payments,378.8328922,0,0.2666,-2.7089,0.5624,-0.9617,-0.8631 +0x142b1,CUS_0x8988,August,32,599-51-7510,Writer,16017.57,1202.7975,1,7,3,1,Not Specified,12.30960192,12,1.59,3,Good,696.5643318,37.41348039,22 Years and 4 Months,No,7.42822188,94.98156869,Low_spent_Small_value_payments,322.3116612,0,1.2434,-0.0007,-0.4293,-0.5777,-0.0109 +0x142bd,CUS_0xbd9f,August,49,109-05-8401,Accountant,88027.62,,0,3,2.288361749,2,"Auto Loan, Personal Loan, and Student Loan",3.074041823,5,8.94,0,Good,235.4508615,30.23167364,15 Years and 10 Months,No,157.2738526,,Low_spent_Medium_value_payments,180.6774413,0,-2.6788,-1.7066,0.5754,-2.1558,2.2133 +0x142c9,CUS_0xb49f,August,49,732-35-8904,Journalist,136582.04,,4,6,4,0,,17.06389562,11.64825797,1.73,3,Good,1340.248407,33.83407374,,No,0,232.4109336,High_spent_Large_value_payments,1119.472733,0,0.396,-0.6753,0.1389,-1.7425,-0.4497 +0x142d5,CUS_0xd6f,August,40,634-41-3558,Mechanic,70045.84,5515.822143,4,6,6,2,"Personal Loan, and Mortgage Loan",0.284373788,5,11.75,4,Good,1337.129282,27.97553746,,No,604.6440005,83.70588788,High_spent_Large_value_payments,667.0402212,0,0.1573,-2.5822,0.7949,1.9853,0.6913 +0x142e1,CUS_0x3cfa,August,37,345-02-9110,Media_Manager,31751.83,,5,4,18,3,"Student Loan, Credit-Builder Loan, and Payday Loan",17.818372,12,18.76,8,_,110.73,26.10820486,24 Years and 3 Months,Yes,58.00693711,56.8921429,High_spent_Small_value_payments,402.5995033,0,0.0997,-0.3796,0.6329,0.8317,1.0397 +0x142ed,CUS_0x18a6,August,60,464-94-6491,Scientist,34279.21,2741.600833,5,2,4985,3,"Student Loan, Home Equity Loan, and Payday Loan",10.68011298,10,4.83,0,Good,1025.64948,22.53847444,32 Years and 4 Months,NM,64.81128191,369.8718374,Low_spent_Small_value_payments,166.0242289,0,-1.5425,0.1168,-0.5599,-1.0422,-0.3834 +0x142f9,CUS_0x8d16,August,54,195-02-2602,Media_Manager,33235.4,2510.616667,6,5,17,0,,,16,3.35,5,Standard,964.7361214,36.71789453,19 Years and 6 Months,No,0,61.73907138,!@9#%8,448.6113551,0,1.6682,-1.6212,1.7055,0.1725,1.1158 +0x14305,CUS_0x707c,August,33,670-84-4853,Writer,142496.12,,4,6,7,0,,24.72476281,19,15.13,6,Standard,460.79,38.78212527,19 Years and 5 Months,No,0,1026.798324,Low_spent_Medium_value_payments,418.1693424,0,-1.421,-0.7876,0.1463,0.3073,-1.2844 +0x14311,CUS_0x5b0d,August,18,740-39-0372,_______,14433.94,1113.828333,9,5,34,9,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Home Equity Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, and Student Loan",30.08417446,21,28.84,6,Bad,3155.47,27.77708454,13 Years and 8 Months,NM,81.00111264,78.25414715,Low_spent_Small_value_payments,242.1275735,0,-1.0386,0.106,-0.4988,0.0395,-0.2207 +0x1431d,CUS_0x66ef,August,43,620-02-1126,Writer,35081.49,3047.4575,6,6,16,2,"Payday Loan, and Credit-Builder Loan",,14,6.57,0,Standard,893.8112581,27.3362544,,NM,51.97855084,95.33399833,Low_spent_Large_value_payments,436.9415257,0,-0.5704,0.2656,0.2006,0.3441,-0.1321 +0x14329,CUS_0x88fa,August,29,122-25-1035,Entrepreneur,17642.1,1386.175,2,7,7,3,"Payday Loan, Personal Loan, and Payday Loan",4.149313175,3,4,3,Good,548.31,34.83683509,22 Years and 3 Months,No,39.52043147,146.1558045,Low_spent_Small_value_payments,242.941264,0,-1.4929,-2.0159,0.2708,0.3821,-0.1286 +0x14335,CUS_0xc4b2,August,35,713-13-2504,Journalist,16285.005,1464.86287,7,7,19,100,,17.59712666,14,19.27,5,Standard,1329.59,38.95826407,17 Years and 6 Months,Yes,84.2208803,32.62970069,High_spent_Medium_value_payments,372.2786743,0,-2.1096,0.1749,1.0968,-1.4472,-0.471 +0x14341,CUS_0x826d,August,19,950-38-4770,Engineer,40000.96,3187.413333,3,3,5,1,Debt Consolidation Loan,16.7233538,11,14.58,2,_,1326.39,32.15924111,21 Years and 6 Months,Yes,17.28816023,298.1310547,Low_spent_Small_value_payments,293.3221184,0,0.65,0.4079,-1.9856,-0.5858,-0.1526 +0x1434d,CUS_0x8ccd,August,45,514-58-5414,_______,59125.92,5224.16,10,9,32.88954781,100,"Credit-Builder Loan, Student Loan, Home Equity Loan, Mortgage Loan, Not Specified, Payday Loan, Not Specified, Not Specified, and Personal Loan",27.69314315,17,15.64,9,Bad,2676.54,28.51446246,6 Years and 8 Months,Yes,1663.185831,89.00738964,High_spent_Large_value_payments,315.892698,0,0.1886,0.3165,-1.6874,-2.0284,-1.0145 +0x14359,CUS_0x2dc9,August,28,419-02-3637,Accountant,12505.6,1069.177971,8,3,19,0,,19.04934832,13,8.81,3,Standard,304.77,36.29508944,21 Years and 4 Months,No,153.9553622,89.21205001,Low_spent_Small_value_payments,323.1012833,0,-0.687,1.1301,-0.0352,2.2799,0.288 +0x14365,CUS_0x7101,August,45,268-79-6680,Engineer,113238.84,9705.57,1,5,5.288361749,2,"Payday Loan, and Debt Consolidation Loan",0,2,4.99,2,Good,115.48,27.57536785,22 Years and 4 Months,No,60362,556.5637538,High_spent_Medium_value_payments,920.2481567,0,0.0119,-0.7325,2.1121,0.65,-1.4402 +0x14371,CUS_0x9729,August,34,406-76-5709,_______,167075.68,13893.97333,2,4,4,0,,,1.168536069,13.86,2,Good,908.2145284,33.5933093,28 Years and 8 Months,No,0,311.6091667,High_spent_Medium_value_payments,1327.788167,0,1.9253,0.2283,-0.2985,-0.1596,0.1961 +0x1437d,CUS_0x4c4b,August,51,866-43-5193,Media_Manager,104929.28,9025.106667,4,7,8,4,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",14.72955539,11,7.9,6,Standard,651.32,37.25990707,27 Years and 11 Months,Yes,291.5505606,92.25503374,!@9#%8,758.7050723,0,-0.6656,-0.5941,-0.1838,-1.052,-0.7989 +0x14389,CUS_0x6468,August,55,330-62-1012,Accountant,120948.16,,0,5,1.288361749,2,"Mortgage Loan, and Auto Loan",10.18345979,10,7.61,3,_,14.43258536,39.48029121,26 Years and 5 Months,No,121.8453296,,Low_spent_Medium_value_payments,311.938271,0,0.8213,0.0972,1.372,-1.2341,1.7254 +0x14395,CUS_0x8c5a,August,23,214-93-4299,Lawyer,58770.12,4659.51,10,10,30,5,"Student Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Student Loan",,22.95103883,11.49,9,Standard,2236.698028,38.11448365,7 Years and 2 Months,Yes,231.2523795,248.3743045,Low_spent_Small_value_payments,276.3243159,0,0.7455,0.1633,0.3945,-1.4311,-0.1334 +0x143a1,CUS_0x5bfe,August,18,932-62-0394,Media_Manager,11877.735,,3,4,15,4,"Not Specified, Student Loan, Home Equity Loan, and Home Equity Loan",10.12424255,8,9.64,7,Standard,172.91,36.78665624,30 Years and 9 Months,Yes,22.91934963,51.30848175,Low_spent_Medium_value_payments,278.2532936,0,0.4253,0.3631,-0.4455,0.6619,-0.1228 +0x143ad,CUS_0x8834,August,38,729-94-8669,Manager,27964.68,2224.39,8,3,6,4,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",,14,0.84,1,Standard,1213.1,22.34861833,20 Years and 11 Months,No,52.44953078,,Low_spent_Large_value_payments,243.90105,0,0.6001,1.2618,-0.3637,-0.0298,0.1722 +0x143b9,CUS_0x7d1f,August,50,476-03-7849,Accountant,21931.995,1887.66625,1,1,1,0,,11.68787925,10,,5,Good,782.1613239,34.17702009,16 Years and 6 Months,No,0,30.55803143,High_spent_Medium_value_payments,412.68993,0,0.843,-0.0126,-0.5275,0.0039,-0.2985 +0x143c5,CUS_0xb7df,August,80,061-83-0070,Accountant,53352.6,4345.05,6,10,30.88954781,7,"Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Payday Loan, Not Specified, and Personal Loan",28.68172533,20,17.81,13,_,3576.63,29.71004496,13 Years and 10 Months,Yes,1569.408386,118.8540157,High_spent_Small_value_payments,311.9125175,0,-0.1125,0.2483,1.1838,-0.8932,-0.9577 +0x143d1,CUS_0x38e0,August,20,385-08-6442,Writer,42395.16,3491.93,1,5,8,4,"Home Equity Loan, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",0,2,9.4,2,_,832.5242293,38.78896882,16 Years and 4 Months,No,135.0186833,72.67781888,High_spent_Large_value_payments,389.8581545,0,0.7582,-1.5815,0.0799,-0.2598,-1.6661 +0x143dd,CUS_0xbce,August,21,186-94-9117,Architect,14099.52,,8,336,20,4,"Debt Consolidation Loan, Home Equity Loan, Student Loan, and Student Loan",,19.64969733,12.43,9,Standard,1474.510968,26.38267542,13 Years and 3 Months,Yes,142.4741946,89.24716597,Low_spent_Small_value_payments,287.7323695,0,0.0609,-0.9459,-0.8872,0.5677,0.0961 +0x143e9,CUS_0x1231,August,39,780-20-7811,Journalist,30739.3,2298.608333,4,4,13,6,"Student Loan, Personal Loan, Payday Loan, Payday Loan, Student Loan, and Student Loan",9.577038419,8,16.7,,Standard,1365.58,23.4031424,,Yes,135.2381411,106.4532641,High_spent_Small_value_payments,248.1694282,0,-0.505,0.8097,-0.9501,1.3017,-0.4209 +0x143f5,CUS_0x507a,August,43,949-56-4266,Musician,53387.88,4437.99,5,5,5,1,Student Loan,24.8656405,17,13.39,11,Standard,1106.86,39.84520029,11 Years and 6 Months,Yes,23.0272467,76.68771641,High_spent_Medium_value_payments,594.0840369,0,-0.3141,1.0244,0.8259,-0.2089,-0.0535 +0x14401,CUS_0x5c1c,August,44,584-91-0882,Writer,17794.505,,5,4,8,0,,5.013517153,4.819743152,7.06,2,Good,92.32048834,37.73161307,31 Years and 4 Months,NM,0,10000,Low_spent_Small_value_payments,280.0364373,0,-0.764,-0.6176,0.178,-0.5523,0.0059 +0x1440d,CUS_0x7ea4,August,56,000-89-3828,Media_Manager,60422.06,4863.171667,6,7,11,2,"Personal Loan, and Payday Loan",13.33034975,10,16.44,2,Standard,194.58,30.5939769,30 Years and 2 Months,NM,79.00806767,65.92973783,High_spent_Medium_value_payments,591.3793612,0,-0.662,0.2814,0.3411,1.5074,2.5134 +0x14419,CUS_0x8d0d,August,55,061-41-0572,_______,112095.72,,7,5,5,0,,17.60797493,12,11.13,8,Standard,222.5546416,22.50014808,27 Years and 5 Months,Yes,955.7778563,1160.755298,Low_spent_Medium_value_payments,251.9606373,0,0.2022,0.2496,-0.118,0.2373,1.0767 +0x14425,CUS_0x8f59,August,36,705-77-2792,Mechanic,24577.48,2055.123333,5,5,18,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",21.0220137,14.53819158,11.91,10,_,912.1602017,28.35981596,14 Years and 9 Months,Yes,95.53848737,232.0719744,!@9#%8,167.9018716,0,-2.281,-2.3909,0.0858,-0.2963,-0.4523 +0x14431,CUS_0x6a50,August,39,576-50-6561,Teacher,37482.98,,5,6,6,1,Personal Loan,,12,11.73,0,Good,1321.541364,36.38311064,23 Years and 10 Months,No,29.67547632,165.1343303,High_spent_Small_value_payments,425.2872429,0,-0.4923,0.4278,0.3453,-0.6595,-0.7283 +0x1443d,CUS_0xb4c2,August,28,924-73-2576,Musician,33787.3,2956.608333,7,5,34,6,"Mortgage Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",32.60253864,15.58373733,0.72,11,Bad,3103.050388,29.29359225,8 Years and 4 Months,Yes,101.5531577,70.41001368,High_spent_Medium_value_payments,373.6976619,0,0.4049,1.7673,-0.5487,-0.6524,-0.4447 +0x14449,CUS_0x112f,August,25,294-20-6562,Mechanic,75506.42,6050.201667,1,4,5,1,Auto Loan,13.79603791,,3.44,7,Good,1209.46936,39.8489185,23 Years and 8 Months,No,60.90364323,278.2980759,Low_spent_Small_value_payments,555.8184476,0,-0.7036,-0.5963,1.0238,-0.3277,-0.9779 +0x14455,CUS_0x3bad,August,29,510-25-2095,Musician,142081.48,11771.12333,6,6,15,3,"Personal Loan, Not Specified, and Mortgage Loan",,20,2.21,4,Standard,867.0570374,34.49466617,27 Years and 2 Months,No,180.6164783,339.4784814,High_spent_Large_value_payments,947.6969622,0,0.7947,1.4491,0.9551,-0.0546,-1.7272 +0x14461,CUS_0x1ccd,August,32,808-03-9422,_______,17733.32,,5,5,19,3,"Mortgage Loan, Not Specified, and Not Specified",11.01676549,10,8.73,3,Standard,111.83,24.98656738,21 Years and 3 Months,No,25.9784603,,Low_spent_Medium_value_payments,342.4762894,0,0.1479,0.864,0.7091,0.8496,1.4421 +0x1446d,CUS_0x985e,August,23,207-73-2763,Doctor,63983.16,5318.93,9,8,31.06745738,7,"Payday Loan, Payday Loan, Payday Loan, Not Specified, Personal Loan, Payday Loan, and Home Equity Loan",36.43920946,21,22.34,15,_,3845.550954,33.48458387,11 Years and 2 Months,Yes,189.0601537,100.842294,High_spent_Medium_value_payments,465.2702644,0,-0.6137,-0.7669,-0.2817,0.0223,-0.8519 +0x14479,CUS_0x21b6,August,49,838-36-2359,Developer,33057.46,,4,3,12,2,"Personal Loan, and Payday Loan",14.72137294,10,7.08,4,Standard,954.98,34.21205941,32 Years and 6 Months,No,28.90233879,,High_spent_Small_value_payments,323.0911795,0,-0.8009,0.3096,-1.2929,-1.492,0.1402 +0x14485,CUS_0xac46,August,32,370-59-9988,Scientist,41729.08,,6,10,1061.067457,5,"Payday Loan, Auto Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",46.7744031,25.30172864,16.51,7,Bad,3227.293952,32.23215797,14 Years and 0 Months,Yes,155.9578428,26.96680329,High_spent_Large_value_payments,405.3973993,0,1.3421,-1.0021,1.0866,0.9571,-1.3789 +0x14491,CUS_0x7677,August,24,184-32-0967,Architect,68911.26,,8,6,20,2,"Not Specified, and Payday Loan",15.18487626,10,11.5,9,Standard,174.74,30.20519375,19 Years and 5 Months,Yes,81.89072477,145.3357275,High_spent_Small_value_payments,619.9340477,0,-1.3074,-0.4268,-0.9498,-0.0346,-0.5524 +0x1449d,CUS_0xae26,August,28,523-09-9908,Engineer,13129.295,827.1079167,6,6,14,2,"Personal Loan, and Mortgage Loan",,20.14841976,10.63,7,Standard,307.5765118,25.34452688,32 Years and 9 Months,No,20.96990473,75.88824758,Low_spent_Medium_value_payments,265.8526394,0,0.1395,0.0839,-0.9601,1.3227,0.6983 +0x144a9,CUS_0x3407,August,25,986-47-7831,Writer,19243.9,,6,5,19,4,"Student Loan, Payday Loan, Not Specified, and Home Equity Loan",19.63298787,16.13042949,7.88,6,Standard,2138.65708,34.31649653,6 Years and 5 Months,Yes,62.02620965,10000,Low_spent_Small_value_payments,229.231468,0,-0.2787,1.7574,-1.625,0.2786,0.5503 +0x144b5,CUS_0x5ae2,August,42,349-21-2943,Architect,35758.39,,3,3,15,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",25.41489024,18,8.82,9,Standard,785.19,24.88825763,,Yes,49.72792354,35.86844159,High_spent_Medium_value_payments,485.6902182,0,0.2727,0.7385,-0.987,-0.3348,-2.1468 +0x144c1,CUS_0x6136,August,25,398-44-5320,Writer,104562.72,7727.56045,8,7,15,7,"Payday Loan, Home Equity Loan, Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, and Not Specified",10.7616165,8,11.24,8,Standard,564.0425667,33.64303787,7 Years and 6 Months,Yes,1119.45238,125.9576728,!@9#%8,554.7676615,0,-0.8144,0.3699,-1.4339,0.665,0.8652 +0x144cd,CUS_0x663,August,38,#F%$D@*&8,Mechanic,22953.95,2180.829167,7,6,13,1,Auto Loan,16.64975867,13.09364663,1.69,5,Standard,192.9235819,38.83142339,24 Years and 2 Months,No,12.16263753,,Low_spent_Medium_value_payments,345.1347465,0,0.1375,0.583,0.2481,-1.1417,-1.4413 +0x144d9,CUS_0xbe72,August,31,734-25-2086,Writer,14780.71,,10,8,17.95700519,7,"Debt Consolidation Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Auto Loan",33.37126306,21.8690571,3.76,10,_,2204.198761,29.9540281,6 Years and 9 Months,Yes,1391.270782,,Low_spent_Small_value_payments,257.9847113,0,0.4486,2.4386,-0.9872,-0.3957,1.3227 +0x144e5,CUS_0x8513,August,33,783-31-2912,Teacher,107688.4,9252.033333,5,3,12.28836175,4,"Personal Loan, Auto Loan, Auto Loan, and Home Equity Loan",15.12970565,,15.59,6,Standard,758.4347265,32.95972646,22 Years and 6 Months,Yes,191.447968,539.1453294,!@9#%8,854.5474969,0,-0.3487,-0.1612,1.0379,1.36,1.861 +0x144f1,CUS_0xa5c,August,36,975-11-0042,Writer,62792.1,,7,6,26,100,"Not Specified, and Credit-Builder Loan",24.85347425,,3.42,7,Bad,2362.56,24.70199994,10 Years and 11 Months,Yes,100.4981151,127.8957776,High_spent_Medium_value_payments,537.3736073,0,-0.5096,0.9781,-0.2138,2.0436,-0.4366 +0x144fd,CUS_0xc4d7,August,18,356-44-7304,Journalist,35296.32,2939.36,7,6,5,4,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",,12,11.91,5,Standard,902.23,27.79612095,23 Years and 0 Months,Yes,59.16549864,72.89464257,Low_spent_Large_value_payments,431.8758588,0,0.6598,0.6554,-0.9183,-0.457,0.2896 +0x14509,CUS_0x47f1,August,41,269-58-1027,Architect,17893.36,,4,4,8.067457376,2,"Debt Consolidation Loan, and Personal Loan",,17,19.41,11,Standard,2628.910954,23.91891278,18 Years and 0 Months,Yes,27.73646464,114.8471008,Low_spent_Small_value_payments,283.7074799,0,-1.3956,0.6435,0.4389,0.1687,-0.5968 +0x14515,CUS_0x363a,August,26,140-53-9808,Musician,54539.52,4540.96,8,5,30,5,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",29.99555967,21.63001595,5.99,11,Bad,5219.782664,40.0970234,6 Years and 8 Months,Yes,189.9195019,149.8618976,!@9#%8,364.3146005,0,0.9989,-0.6707,-0.7363,0.964,1.0977 +0x14521,CUS_0x2561,August,32,433-00-9327,Doctor,37937.56,3129.463333,10,6,30,9,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Not Specified, Student Loan, Student Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",39.83199545,24,22.29,6,Bad,3339.22,25.0453742,6 Years and 9 Months,Yes,243.0830684,,!@9#%8,252.3584842,0,0.9474,-1.5031,1.409,-2.0518,-0.2068 +0x1452d,CUS_0xb338,August,52,897-27-3355,Doctor,132003.96,,5,4,6.288361749,2,"Not Specified, Debt Consolidation Loan, and Not Specified",0,3,0.63,4,Good,486.0371679,34.15247411,22 Years and 9 Months,No,309.2778143,671.1395324,High_spent_Small_value_payments,836.9890633,0,1.4484,-0.6488,-0.7294,0.6914,0.8434 +0x14539,CUS_0x1d21,August,37,515-83-9208,Doctor,73606.16,,3,7,17,6,"Not Specified, Mortgage Loan, Student Loan, Student Loan, Personal Loan, and Student Loan",11.10698694,10,9.06,17,Standard,1707.18,30.87193599,11 Years and 2 Months,NM,330.7686288,64.61424736,High_spent_Large_value_payments,429.9017905,0,-0.4125,-1.176,-0.2413,-0.446,-0.4022 +0x14545,CUS_0xc4a2,August,40,#F%$D@*&8,Engineer,41691.16,3040.290095,7,8,18.06745738,6,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",,20,21.32,11,Bad,5010.030954,32.84080777,,Yes,412.3715165,69.93525037,High_spent_Large_value_payments,275.8725172,0,0.4054,-0.8691,-0.8811,-0.1472,0.7174 +0x14551,CUS_0x2a46,August,32,295-98-3299,Writer,59641.5,4974.125,8,7,27,7,"Personal Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",30.35482356,22,23.99,8,Bad,3116.46,27.45709167,2 Years and 6 Months,Yes,260.9494756,139.2112808,Low_spent_Medium_value_payments,377.2517436,0,0.2264,0.906,-1.5093,0.2005,-0.6458 +0x1455d,CUS_0xab9,August,37,287-89-2054,_______,50573.82,4175.485,8,6,10,5,"Not Specified, Auto Loan, Credit-Builder Loan, Student Loan, and Not Specified",10.00993118,9,18.95,8,_,1778.409983,36.89110739,7 Years and 5 Months,NM,105.7122202,341.5059785,Low_spent_Small_value_payments,298.8588413,0,0.5494,0.4945,0.3528,0.1767,-0.093 +0x14569,CUS_0x3be5,August,43,075-06-4820,Engineer,11900.03,1264.669167,3,5,18,4,"Not Specified, Mortgage Loan, Not Specified, and Not Specified",11.78427422,12,2.86,0,Standard,399.01,27.14646895,,No,35.54622166,24.69872721,High_spent_Medium_value_payments,316.2219678,0,-1.2715,1.6754,-1.2382,-1.6179,-2.6706 +0x14575,CUS_0xc680,August,39,676-95-9854,_______,17046.75,,7,5,25,5,"Mortgage Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",,,27.59,7,Bad,3999.290989,30.47431817,,Yes,51.68830486,86.51491827,Low_spent_Medium_value_payments,296.2530269,0,-0.9348,-3.8351,1.559,-0.2081,-0.5999 +0x14581,CUS_0x45e1,August,36,039-56-8958,Architect,116680.84,10017.40333,5,5,7.288361749,2,"Auto Loan, Home Equity Loan, and Credit-Builder Loan",,9,11.63,9,Standard,300.0790304,40.02722005,24 Years and 0 Months,Yes,178.3581441,,High_spent_Medium_value_payments,850.0035269,0,0.3402,0.099,-0.1129,0.0383,-0.5474 +0x1458d,CUS_0xa2b6,August,45,426-46-8465,Teacher,27020.67,,5,7,15,0,,,14,3.27,4,Standard,764.45,25.45420666,16 Years and 3 Months,No,0,70.78100887,High_spent_Medium_value_payments,430.6912411,0,0.4172,1.3381,0.7922,-0.2818,0.8136 +0x14599,CUS_0x7478,August,25,529-17-6334,Entrepreneur,26554.52,2114.876667,4,3,20,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",16.19728254,11,9.72,2511,_,1114.46,32.02453754,8 Years and 2 Months,Yes,62.16581046,,Low_spent_Large_value_payments,238.4225671,0,-0.1001,1.5153,2.0363,0.218,0.1934 +0x145a5,CUS_0x92f9,August,21,818-22-3188,Lawyer,21555.5,,6,6,20,2,"Student Loan, and Not Specified",13.72349467,8,21.58,9,Standard,857.88,22.4274007,6 Years and 9 Months,Yes,22.7722112,126.879027,!@9#%8,330.9779285,0,0.1009,-0.1728,-1.0251,-1.1777,0.943 +0x145b1,CUS_0x5536,August,25,#F%$D@*&8,Musician,166102.8,,1,3,11,2,"Auto Loan, and Auto Loan",0.876732061,2,6.22,4,Good,953.24,40.01335688,29 Years and 5 Months,No,194.6938168,254.1975934,High_spent_Medium_value_payments,1204.59859,0,-0.0486,-0.6673,-0.1114,1.1952,0.4075 +0x145bd,CUS_0x8d32,August,30,206-96-2048,Media_Manager,39832.82,,8,8,31,4,"Home Equity Loan, Not Specified, Auto Loan, and Credit-Builder Loan",27.51808123,13,13.49,11,Standard,1446.99,39.93701186,11 Years and 11 Months,Yes,75.57256894,51.17786112,High_spent_Large_value_payments,462.4897366,0,0.496,0.2415,-0.4375,-0.3681,0.5427 +0x145c9,CUS_0x981c,August,32,248-83-8033,Mechanic,57906.8,,6,7,27,5,"Not Specified, Student Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",,25,23.63,12,Bad,2501.85,36.06734062,14 Years and 0 Months,Yes,182.2752672,152.3664793,High_spent_Medium_value_payments,388.8149202,0,-0.017,1.9528,-0.3886,1.0791,-1.3119 +0x145d5,CUS_0x7756,August,36,325-14-7904,Engineer,144388.36,,3,2,10.28836175,0,,7.279697529,9,9.47,8,_,636.908484,41.25839835,24 Years and 8 Months,No,1241.203549,767.234372,High_spent_Medium_value_payments,1126.549216,0,1.0164,1.0837,-2.1876,0.5402,-0.5233 +0x145e1,CUS_0x6156,August,41,525-65-7152,Writer,31729.38,2715.115,2,5,3,4,"Personal Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",,1.16820739,8.24,6,_,1350.802755,35.66675308,20 Years and 0 Months,No,95.75852838,71.94990274,High_spent_Medium_value_payments,353.8030689,0,0.702,0.6661,-0.38,-1.894,-0.5711 +0x145ed,CUS_0xad7e,August,25,304-40-0948,Engineer,82382.62,7097.218333,2,7,10,1,Student Loan,13.08296961,,14.18,5,Good,1091.483264,28.45061625,24 Years and 4 Months,No,56.537626,264.6882687,Low_spent_Large_value_payments,682.8617721,0,0.672,0.1174,0.5122,-1.9138,0.2679 +0x145f9,CUS_0x918c,August,18,153-15-2374,Entrepreneur,35397.98,,6,470,11,6,"Student Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Credit-Builder Loan",12.81829125,,15.51,6,Standard,1709.112753,31.20304352,18 Years and 8 Months,Yes,139.9411148,158.8935819,Low_spent_Small_value_payments,318.1952923,0,1.1288,-0.8281,0.707,1.2834,0.8075 +0x14605,CUS_0xba9f,August,38,547-25-7904,_______,45536.43,3426.884767,10,9,34.95700519,7,"Auto Loan, Student Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Not Specified",42.5170109,25,16.87,12,Bad,3638.790954,35.03002699,13 Years and 10 Months,Yes,1865.246682,42.68852697,High_spent_Large_value_payments,293.4024042,0,-2.3333,-0.2246,0.3231,-1.5751,-0.8187 +0x14611,CUS_0x1d86,August,25,370-67-4741,Developer,47725.98,,7,8,33.06745738,3,"Auto Loan, Mortgage Loan, and Payday Loan",22.8304118,11,10.52,15,Standard,2778.360954,30.05060696,,Yes,65.97000195,420.8290956,Low_spent_Small_value_payments,186.3971145,0,-1.0331,-0.8721,-2.943,-1.0558,0.3323 +0x1461d,CUS_0xbf40,August,27,806-23-3767,Doctor,81864.56,6882.046667,8,5,11,2,"Mortgage Loan, and Not Specified",,16,11.07,7,Standard,1210.87,37.58314669,,Yes,74.80770126,228.2468775,!@9#%8,635.1500879,0,-1.0998,-1.1203,-0.1813,0.2153,-0.8782 +0x14629,CUS_0x1854,August,27,369-07-8864,Scientist,30632.94,,3,5,1,2,"Not Specified, and Student Loan",,2,,2,Good,31.5,37.17580771,22 Years and 6 Months,No,44.89049415,,Low_spent_Large_value_payments,259.0609777,0,-1.1604,-0.7183,0.9992,0.9698,0.61 +0x14635,CUS_0x83c5,August,31,171-97-9968,Engineer,62859.18,5414.265,10,9,29.88954781,7,"Student Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Payday Loan",,30.36460015,4.64,12,Bad,1829.149988,35.62038503,19 Years and 4 Months,Yes,1565.796975,,Low_spent_Medium_value_payments,212.4095974,0,-0.5779,-0.7923,-0.2797,0.223,0.4171 +0x14641,CUS_0x997a,August,21,482-72-9781,Manager,45366.27,3481.5225,9,9,20.06745738,5,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Payday Loan, and Mortgage Loan",45.15051007,25,15.67,12,_,3651.490954,32.45477492,2 Years and 6 Months,Yes,112.3006149,48.30420846,High_spent_Large_value_payments,400.8271387,0,-0.8474,-0.8995,-1.0378,-0.844,-0.1362 +0x1464d,CUS_0x4a5d,August,18,714-45-9727,Lawyer,15522.74,1330.561667,8,7,21,9,"Not Specified, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",26.59540464,20,26.31,11,_,4268.86,36.81498846,1 Years and 9 Months,Yes,71.24551454,,Low_spent_Small_value_payments,300.0914421,0,0.4488,-0.048,-1.1363,0.331,-0.3966 +0x14659,CUS_0x6fec,August,46,265-87-8866,Media_Manager,136556.44,11613.70333,5,4,6,1,Student Loan,23.29491815,17,1.49,2,Standard,694.02,31.7564381,28 Years and 2 Months,No,94.17978857,323.7347961,High_spent_Medium_value_payments,993.4557486,0,-0.2944,-0.1608,-0.7286,0.5408,0.0182 +0x14665,CUS_0x4e2,August,27,#F%$D@*&8,Teacher,63484.24,5157.353333,5,7,10,2,"Debt Consolidation Loan, and Payday Loan",12.23839452,8.022263952,11.12,6,Good,333.2421962,32.63776289,27 Years and 9 Months,No,68.14234085,96.72543255,High_spent_Large_value_payments,590.8675599,0,1.2728,-0.796,0.4845,0.1254,-0.4962 +0x14671,CUS_0x4d8b,August,54,662-45-6089,Accountant,29508.41,,7,4,9,1,Payday Loan,17.67619094,,10.75,4,Standard,333.86,27.22113463,19 Years and 9 Months,No,16.5472122,32.35159607,High_spent_Large_value_payments,448.7046084,0,0.4482,-0.7676,-0.2157,-0.3571,1.0283 +0x1467d,CUS_0x626e,August,52,728-24-1498,Entrepreneur,128515.52,10879.62667,4,4,5,1,Personal Loan,20.16492324,,1.24,5,Good,721.91,38.13254658,30 Years and 9 Months,No,96.77814029,744.6707414,Low_spent_Medium_value_payments,526.513785,0,0.5742,1.2948,-2.8767,1.4542,0.6614 +0x14689,CUS_0x5d3d,August,36,276-69-9621,Accountant,7309.155,567.09625,6,8,19,4,"Not Specified, Not Specified, Auto Loan, and Credit-Builder Loan",26.25418004,13.1783603,8.56,8,Standard,1434.424802,31.78147713,8 Years and 3 Months,Yes,20.29077116,30.67023888,High_spent_Small_value_payments,265.748615,0,0.3011,-0.2803,0.9004,1.0671,-0.4335 +0x14695,CUS_0x9be9,August,26,541-32-7027,Journalist,9821410,3468.5825,654,6,15,7,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, and Not Specified",28.72375705,17.70816097,15.53,11,_,1710.572012,30.58946796,13 Years and 8 Months,Yes,214.0097779,,High_spent_Small_value_payments,236.390051,0,1.8356,-1.6968,-1.2551,0.3343,-0.46 +0x146a1,CUS_0x86ce,August,32,984-29-2530,_______,80877.72,6805.81,6,7,30,6,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,25.0021213,15.22,7,Bad,4369.254301,40.90778801,8 Years and 4 Months,NM,253.6070168,124.8854711,High_spent_Large_value_payments,542.0885121,0,0.427,-0.5961,-0.232,-0.1823,-0.7791 +0x146ad,CUS_0x9d62,August,37,533-48-6343,Accountant,60340.08,4327.369161,2,5,3,3,"Student Loan, Auto Loan, and Mortgage Loan",7.931652108,8,11,1,Good,593.2921952,22.84816932,18 Years and 8 Months,NM,577.3940268,,Low_spent_Small_value_payments,65.66197131,0,2.7387,-1.2784,0.4061,-0.5847,-0.9637 +0x146b9,CUS_0x6fbf,August,19,824-59-3661,Lawyer,32991.92,2682.326667,8,9,18.88954781,6,"Mortgage Loan, Student Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Auto Loan",24.34208878,17.28432959,0.66,10,_,1415.703891,35.05025799,10 Years and 5 Months,Yes,1448.089647,,Low_spent_Small_value_payments,177.4951464,0,0.9413,-0.9244,0.9062,0.2842,0.1599 +0x146c5,CUS_0xe72,August,43,644-98-4745,Scientist,21578.69,1592.224167,6,7,17,2,"Personal Loan, and Payday Loan",26.80984346,18,8.96,4,Standard,625.46,37.79020769,32 Years and 6 Months,No,18.87809836,118.5057751,Low_spent_Medium_value_payments,301.8385432,0,0.9455,0.0234,1.5719,0.59,-0.3301 +0x146d1,CUS_0xa4f3,August,40,958-52-5986,Accountant,32897.91,,3,3,5,3,"Personal Loan, Student Loan, and Credit-Builder Loan",18.76312959,18.26870093,11.7,0,Standard,389.2417803,24.90990935,27 Years and 3 Months,No,47.73495058,,Low_spent_Small_value_payments,170.1944121,0,-1.1522,-0.3757,0.6167,-1.4864,0.0169 +0x146dd,CUS_0xb395,August,50,355-24-5947,Entrepreneur,77020.76,,0,3,10,2,"Auto Loan, and Personal Loan",10.33166558,9,8.76,1,_,380.09,31.34442289,32 Years and 0 Months,No,92.21433911,,Low_spent_Medium_value_payments,175.9668062,0,0.1866,-0.2054,0.4505,1.1582,-0.3816 +0x146e9,CUS_0x3e62,August,80,102-37-1443,Developer,16921.67,,9,10,33.06745738,2,"Mortgage Loan, and Auto Loan",34.57381656,18.06028977,23.94,11,_,2716.755991,36.5203758,6 Years and 8 Months,Yes,25.16045758,57.39367794,High_spent_Medium_value_payments,286.3394932,0,0.1456,-0.8156,0.9523,1.0568,0.2443 +0x146f5,CUS_0x81ae,August,24,437-30-2794,Accountant,61281.6,,7,7,11,4,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",11.08831072,9,20.13,7,Standard,1255.59757,23.85141394,8 Years and 5 Months,NM,197.61091,759.6590506,Low_spent_Small_value_payments,,0,-1.6725,0.4232,-1.0817,-0.8132,0.6339 +0x14701,CUS_0x87c5,August,40,362-65-9938,Doctor,120174.4,10016.53333,7,4,6,1,Mortgage Loan,,14,15.67,7,Standard,828.59,44.04210487,,Yes,94.89845431,113.2659516,High_spent_Large_value_payments,1033.488927,0,-1.182,-0.6382,0.1688,-0.4447,0.603 +0x1470d,CUS_0x6826,August,80,527-13-3288,Engineer,107765.7,8982.475,7,5,7,4,"Auto Loan, Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",11.11780104,9,3.25,6,Standard,1134.39,32.26037879,28 Years and 8 Months,No,261.2601642,179.0590902,High_spent_Large_value_payments,697.9282456,0,0.4234,1.3057,-0.8987,0.1512,1.7042 +0x14719,CUS_0xb130,August,30,040-41-0981,Entrepreneur,61783.38,,3,7,11,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",6.061888927,7,11.35,3,Good,1385.21,36.56205927,25 Years and 3 Months,No,87.12472355,10000,High_spent_Small_value_payments,615.467325,0,0.2711,-0.0883,0.1268,-0.4238,-1.8841 +0x14725,CUS_0x3c5e,August,26,516-91-0042,Media_Manager,20588.45,,6,10,23,4,"Payday Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",22.89428586,18.25741826,5.12,14,Bad,2363.407348,38.26500907,6 Years and 3 Months,Yes,54.05859209,38.39854459,High_spent_Medium_value_payments,313.31328,0,2.434,-1.7525,1.6227,0.4216,0.5658 +0x14731,CUS_0x76a6,August,41,778-99-0909,Lawyer,47817.32,3814.776667,3,6,12.28836175,0,Personal Loan,,12,10.67,4,Standard,180.53,34.78222526,23 Years and 9 Months,Yes,38.92815899,460.6721897,High_spent_Large_value_payments,541.8147789,0,1.6204,-0.8943,-0.1949,-0.8324,0.617 +0x1473d,CUS_0x5b7d,August,46,052-24-8925,Musician,14320.27,,8,10,28.95700519,100,"Payday Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,25.40837264,14.49,11,Bad,1841.046697,40.41643817,11 Years and 6 Months,Yes,1397.753575,,Low_spent_Medium_value_payments,204.4655251,0,0.2663,0.2028,-0.9661,2.367,-0.2903 +0x14749,CUS_0x1c24,August,27,931-29-3452,Manager,87263.22,7297.935,8,6,16,1,Mortgage Loan,18.49572609,14,7.82,8,_,135.88,33.68364418,27 Years and 2 Months,Yes,67.17035352,,High_spent_Large_value_payments,717.9933353,0,-0.3943,1.433,0.6688,-1.2472,-0.2631 +0x14755,CUS_0x8bb5,August,27,531-59-5314,Journalist,33907.86,2562.655,3,7,8,2,"Not Specified, and Payday Loan",10.96512437,10.43401051,2.04,2,Good,1536.786621,30.03399446,22 Years and 6 Months,No,36.35654731,,Low_spent_Small_value_payments,223.1249742,0,0.9224,-0.8632,0.1344,-0.9463,-0.7038 +0x14761,CUS_0x99ba,August,53,542-49-0323,Journalist,17027.44,1366.953333,5,4,4,0,,9.745115272,9,3.66,2,Good,1134.25588,30.17056754,27 Years and 5 Months,No,0,54.66822611,Low_spent_Medium_value_payments,369.9735526,0,-1.0664,1.2058,0.1675,0.9145,-1.3833 +0x1476d,CUS_0x41ea,August,44,733-38-8328,Teacher,37261.31,,5,2,5,4,"Payday Loan, Student Loan, Debt Consolidation Loan, and Not Specified",0,2,1.01,1,Good,84.15111374,24.36714886,19 Years and 10 Months,No,123.1140715,130.8209377,High_spent_Small_value_payments,317.0789093,0,0.0626,-0.9835,1.53,-0.7017,1.5131 +0x14779,CUS_0x9cc4,August,53,788-70-2690,Accountant,11514.085,881.5070833,7,5,8,0,,,10,4.76,6,Standard,1408.3,38.23011363,27 Years and 6 Months,Yes,0,117.1177941,Low_spent_Small_value_payments,261.0329142,0,-1.0925,-0.9367,-0.8458,-1.1299,0.6216 +0x14785,CUS_0xd66,August,44,224-51-2369,Musician,15824.93,1207.744167,4,7,9,0,,13.63366036,12,6.98,0,Good,345.23,33.92347326,22 Years and 11 Months,No,0,110.4667678,Low_spent_Medium_value_payments,290.3076488,0,0.4167,-0.0749,0.8081,1.2137,0.1142 +0x14791,CUS_0x55f4,August,56,726-57-9713,Architect,28762.68,2281.89,7,6,10,100,,,12,8.23,1,Standard,1391.77,39.01966311,31 Years and 11 Months,Yes,0,45.07502743,High_spent_Small_value_payments,443.1139726,0,0.6689,1.3291,-0.2713,-0.3575,-0.0392 +0x1479d,CUS_0x61a4,August,32,472-31-0351,_______,32853.06,2929.755,8,910,34.95700519,6,"Debt Consolidation Loan, Student Loan, Student Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",39.49341272,24,26.66,9,_,3402.060954,39.77202137,12 Years and 0 Months,Yes,1426.060586,10000,High_spent_Large_value_payments,310.2818311,0,1.0106,1.6895,0.9252,-0.6986,-0.2426 +0x147a9,CUS_0x946e,August,31,699-70-2473,Entrepreneur,48658.29,3932.8575,6,10,32.06745738,7,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",38.98075284,20.24117613,18.36,8,Bad,4915.016668,33.62893516,10 Years and 8 Months,Yes,153.4653178,,Low_spent_Small_value_payments,74.1900415,0,-0.6026,-0.5899,-1.9409,1.0404,1.112 +0x147b5,CUS_0x8277,August,28,226-36-8093,Media_Manager,125982.48,,4,5,0.288361749,100,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",0,3,7.44,2,Good,1274.76,33.85490387,15 Years and 11 Months,No,247.7392335,538.971253,!@9#%8,906.7809745,0,1.5766,1.1533,0.7208,1.8854,0.7234 +0x147c1,CUS_0x1d28,August,25,075-04-2227,Entrepreneur,16644.79,1547.065833,7,6,24,9,"Personal Loan, Home Equity Loan, Personal Loan, Personal Loan, Payday Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",17.81817678,,10.93,12,Bad,3847.038088,33.06995287,,NM,100.765767,152.9462453,Low_spent_Small_value_payments,190.994571,0,-0.0342,-0.0918,-0.2138,-1.5989,1.538 +0x147cd,CUS_0x275d,August,32,257-48-1323,Architect,61739.8,5247.983333,609,6,19,100,"Credit-Builder Loan, and Student Loan",,24.34733242,8.26,7,Standard,1905.817302,39.27533243,14 Years and 3 Months,Yes,91.37642096,81.60060011,High_spent_Medium_value_payments,601.8213123,0,-0.1926,1.3186,-1.7931,0.5944,-0.1397 +0x147d9,CUS_0x3243,August,25,892-18-3180,Doctor,40377.89,3206.824167,5,7,2,4,"Auto Loan, Debt Consolidation Loan, Not Specified, and Not Specified",,6.846012779,3.35,4,Good,1581.306405,27.16129918,28 Years and 5 Months,No,119.1397369,211.8780555,Low_spent_Small_value_payments,279.6646243,0,0.369,-0.8714,1.129,0.57,0.6011 +0x147e5,CUS_0x1140,August,31,141-17-2233,Accountant,14532812,914.15,6,10,28.88954781,6,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Payday Loan, and Auto Loan",,19,27.01,14,Bad,4128.98,29.37085485,6 Years and 11 Months,Yes,1348.389707,80.86351181,Low_spent_Large_value_payments,237.8316995,0,0.5922,2.5896,1.018,-0.0747,0.4615 +0x147f1,CUS_0x1dd9,August,46,634-25-7796,Architect,4020402,,5,2,4.288361749,2,"Personal Loan, and Credit-Builder Loan",0,0,1.34,4,Good,556.951061,37.25135869,16 Years and 6 Months,No,44.730081,,Low_spent_Medium_value_payments,284.1199068,0,-1.2759,-1.021,0.0056,0.7674,1.2524 +0x147fd,CUS_0x831,August,18,424-18-8158,Developer,58820.44,4763.703333,8,946,24.88954781,8,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Credit-Builder Loan, Not Specified, and Personal Loan",38.24177604,21.6113966,29.97,9,_,4346.557206,32.92004024,9 Years and 8 Months,Yes,1603.67083,71.77817033,High_spent_Large_value_payments,346.5912521,0,1.8711,1.3264,-0.9233,0.4454,-0.807 +0x14809,CUS_0x2912,August,26,517-78-6058,Doctor,108143.55,8458.884362,5,3,13,7,"Home Equity Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Payday Loan, and Mortgage Loan",,10,12.09,7,Standard,418.24,36.12146057,7 Years and 9 Months,Yes,1298.652476,85.52972896,High_spent_Large_value_payments,590.5921824,0,1.2985,0.821,0.7894,0.6747,1.4498 +0x14815,CUS_0x6f0c,August,21,417-21-4554,Lawyer,53564.88,,5,3,13,100,"Mortgage Loan, and Personal Loan",8.437522078,10,19.98,2,Standard,1008.31,25.89143142,16 Years and 4 Months,Yes,80.56983299,185.262299,Low_spent_Medium_value_payments,434.941868,0,1.4277,-0.785,0.7737,-1.5525,2.2279 +0x14821,CUS_0x8144,August,38,830-28-5855,Media_Manager,28061.52,,5,1,5,4,"Personal Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",8.563442926,10,9.31,5,Good,1020.77,33.59332613,20 Years and 10 Months,No,49.43233977,,Low_spent_Small_value_payments,261.4168309,0,0.3448,-0.0036,-0.3172,0.9113,0.3456 +0x1482d,CUS_0x23e9,August,18,018-11-9472,_______,114614.88,9369.24,6,6,9,3,"Debt Consolidation Loan, Auto Loan, and Payday Loan",6.069766653,9,9.06,1,_,1379.67,35.45377952,27 Years and 11 Months,Yes,180.9107227,,High_spent_Large_value_payments,804.2606961,0,0.5223,0.752,0.7596,-0.5028,2.1948 +0x14839,CUS_0x7edf,August,27,229-64-4916,Teacher,43319.96,3777.996667,3,7,3,0,,,,3.47,0,Good,642.0457815,29.62646919,18 Years and 8 Months,No,0,89.70643897,Low_spent_Large_value_payments,558.0932277,0,2.0818,1.0226,0.8698,0.5998,2.1214 +0x14845,CUS_0x47ea,August,33,612-18-1401,Mechanic,63258.9,5061.575,6,6,11,1,Payday Loan,13.46686055,8,4.78,4,Good,137.98,35.29015895,,No,28.64388926,149.6700776,High_spent_Small_value_payments,587.8435332,0,-0.5149,-1.5321,-0.0501,2.0562,0.3856 +0x14851,CUS_0x53c,August,37,688-69-7066,Architect,33868.83,,5,3,16,4,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Auto Loan",16.82087284,13,8.2,7,Standard,664.61,36.41839717,11 Years and 5 Months,Yes,56.46757067,199.1743311,Low_spent_Small_value_payments,340.8983483,0,-0.6379,-1.0873,-0.7928,0.0595,-2.7037 +0x1485d,CUS_0x7c73,August,42,737-28-4078,Architect,57842.04,4864.17,8,5,31,8,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Not Specified, and Payday Loan",52.45708377,27.25367104,-5.43,7,Bad,1826.436415,24.15509409,6 Years and 9 Months,Yes,271.3141789,566.5892197,Low_spent_Small_value_payments,,0,-0.2325,1.3315,-0.5017,-1.5537,1.1113 +0x14869,CUS_0x4e22,August,52,903-30-6308,_______,31848.72,2588.06,5,3,9,3,"Student Loan, Mortgage Loan, and Not Specified",0.080048758,3,9.25,4,Good,542.6378365,24.97276851,26 Years and 6 Months,No,74.32420704,58.13441788,High_spent_Medium_value_payments,384.774614,0,0.0223,-0.9642,0.9983,-1.0613,1.0481 +0x14875,CUS_0x9754,August,53,228-11-6416,Manager,129204.92,10508.07667,5,6,11.28836175,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",22.45869269,19,1.54,3,Standard,953.8669823,23.97342882,24 Years and 6 Months,Yes,59083,1448.297559,Low_spent_Medium_value_payments,173.0427807,0,-0.0592,2.0289,1.082,1.0595,1.1023 +0x14881,CUS_0x5d87,August,80,084-35-5102,Journalist,70260.2,5564.016667,9,7,20,5,"Payday Loan, Mortgage Loan, Student Loan, Not Specified, and Home Equity Loan",,27.59613235,9.97,8,Bad,2483.147599,30.13850583,18 Years and 4 Months,NM,246.3786449,114.7086325,High_spent_Medium_value_payments,445.3143893,0,0.2374,0.7451,0.4557,0.8248,-0.4079 +0x1488d,CUS_0x6a1d,August,44,455-79-2070,Media_Manager,50643.18,4465.265,9,7,34,8,"Mortgage Loan, Auto Loan, Personal Loan, Mortgage Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Personal Loan",39.56615752,22.42647535,7.81,16,Bad,1711.765011,26.62888007,10 Years and 11 Months,Yes,217.4305742,49.82804158,!@9#%8,419.2678842,0,0.4379,0.2314,0.2064,0.8599,-0.9074 +0x14899,CUS_0x2181,August,47,026-64-0196,Teacher,90729.48,7299.79,4,4,15,3,"Credit-Builder Loan, Credit-Builder Loan, and Not Specified",10.4700176,9,0.93,3,Standard,46.92,31.29743273,28 Years and 10 Months,Yes,183.3112118,472.9654539,Low_spent_Medium_value_payments,353.7023344,0,0.7097,-1.3412,-0.5319,-0.9833,2.1809 +0x148a5,CUS_0x843,August,33,122-62-5484,Scientist,17912.65,1665.720833,9,5,26.06745738,100,"Debt Consolidation Loan, Personal Loan, Personal Loan, Not Specified, Credit-Builder Loan, Payday Loan, and Not Specified",33.70148187,23,16.19,11,_,3045.540954,28.86995436,7 Years and 0 Months,Yes,57.04388306,47.46875487,!@9#%8,285.3391575,0,-0.1464,-0.7991,0.3704,1.4967,-0.0943 +0x148b1,CUS_0x3c39,August,18,874-82-1264,Developer,7829.225,560.4354167,9,6,34,9,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",22.23054035,13,11.22,7,Bad,4579.09,24.83376204,,Yes,37.73561457,20.99778962,Low_spent_Medium_value_payments,277.3101375,0,0.5295,-0.4336,2.3045,-0.8181,-0.2507 +0x148bd,CUS_0xbedd,August,45,215-69-2225,Accountant,68824.42,,4,1,4,1,Not Specified,8.574157947,8,3.03,6,Good,1310.360168,25.83651613,19 Years and 4 Months,No,835.7175252,343.6726108,!@9#%8,496.2830647,0,-0.9646,1.2564,-1.018,0.6651,0.4862 +0x148c9,CUS_0x4bfc,August,44,183-74-2486,Developer,111755.6,,3,7,14,2,"Student Loan, and Mortgage Loan",,12,13.79,159,Standard,365.4975916,30.20162244,21 Years and 4 Months,NM,126.7042403,697.7652526,Low_spent_Large_value_payments,461.7898752,0,0.401,-0.0222,0.3506,1.0306,1.2086 +0x148d5,CUS_0x6c12,August,38,868-53-6968,Entrepreneur,33827.58,,8,3,14,2,"Not Specified, and Debt Consolidation Loan",5.716132914,7,17.96,0,Standard,1191.4,37.87336617,32 Years and 2 Months,Yes,32.36085257,,Low_spent_Small_value_payments,180.1110528,0,-0.0929,1.6465,1.0904,0.6328,0.575 +0x148e1,CUS_0x570b,August,20,453-58-9890,Scientist,73140.38,5799.031667,3,5,15,1,Auto Loan,8.642778395,9,13.56,5,Standard,1056.32,26.40542162,25 Years and 11 Months,Yes,44.98159232,453.1888481,!@9#%8,351.7327262,0,-0.0447,-0.5765,-0.5702,0.5126,-1.47 +0x148ed,CUS_0x47c5,August,20,619-50-3378,Journalist,63515.92,,3,517,3,1,Home Equity Loan,14.02095356,,3.65,9,Good,609.25,29.39238176,31 Years and 4 Months,No,29.28936491,462.604417,Low_spent_Medium_value_payments,344.8055514,0,0.1862,1.6181,-1.0477,0.6915,-1.4131 +0x148f9,CUS_0xc700,August,38,078-41-7717,Lawyer,32072.42,2768.701667,4,7,1,3,"Payday Loan, Credit-Builder Loan, and Auto Loan",6.868081014,9.398684308,6.11,6,Good,505.4582654,36.55169695,20 Years and 11 Months,No,76.46879212,169.1171288,Low_spent_Medium_value_payments,311.2842458,0,0.4496,-2.5776,1.4611,-2.421,-0.1539 +0x14905,CUS_0xc513,August,21,894-52-4160,Lawyer,7680.08,,6,6,30,5,"Auto Loan, Payday Loan, Student Loan, Personal Loan, and Personal Loan",,25,1.89,15,_,2181.01,31.51902072,19 Years and 9 Months,NM,19.06032272,48.67165402,Low_spent_Small_value_payments,276.6686899,0,-0.1374,-0.78,-0.2523,0.1185,0.5093 +0x14911,CUS_0xa5a0,August,21,491-30-8624,Scientist,33000.46,2772.038333,8,4,9.288361749,4,"Student Loan, Student Loan, Credit-Builder Loan, and Student Loan",15.3701131,14,23.23,0,Standard,33.61,32.25856998,29 Years and 6 Months,Yes,57.89010325,789.9607351,Low_spent_Small_value_payments,139.290456,0,2.3959,1.283,-0.4009,1.8148,0.9808 +0x1491d,CUS_0x4496,August,44,091-74-3731,Entrepreneur,68488.88,5692.406667,9,6,24,6,"Mortgage Loan, Payday Loan, Mortgage Loan, Student Loan, Home Equity Loan, and Not Specified",27.63617722,12.11481307,7.71,12,Standard,1479.591966,38.74285697,15 Years and 6 Months,Yes,211.3013582,,Low_spent_Large_value_payments,202.492549,0,0.8752,-0.0899,0.6037,-0.5131,-0.2088 +0x14929,CUS_0x3b1b,August,30,260-72-0235,Accountant,80918.14,6444.178333,2,5,8,4,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",,6,3.32,1,Good,216.05,35.24973591,31 Years and 8 Months,No,192.7597872,100.5204643,High_spent_Medium_value_payments,601.1375818,0,-0.567,0.059,-0.1055,1.3088,-0.218 +0x14935,CUS_0x8d0f,August,28,984-70-8010,_______,135907.48,11096.62333,8,5,16,4,"Debt Consolidation Loan, Auto Loan, Personal Loan, and Payday Loan",16.92206975,12,17.53,8,Standard,1218.052579,26.76361607,19 Years and 3 Months,Yes,230.8154493,,!@9#%8,145.5139707,0,-0.8345,2.4263,-0.0515,1.135,-0.0428 +0x14941,CUS_0x29e0,August,30,#F%$D@*&8,Journalist,62237.13,,4,4,5,5,"Personal Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,20,11.76,7,Standard,2547.59,27.28996212,,Yes,208.9293297,185.4779733,Low_spent_Small_value_payments,430.635447,0,1.9372,-0.8403,0.2913,0.564,1.5706 +0x1494d,CUS_0x898a,August,44,766-88-5509,Entrepreneur,142743.4,,3,4,4,0,,,3,10.75,4,Good,1054.783773,32.51240851,33 Years and 6 Months,No,0,,!@9#%8,765.1258092,0,-1.1191,-0.137,1.0216,-0.5998,-0.0203 +0x14959,CUS_0x4be,August,33,#F%$D@*&8,Engineer,13627.925,,5,7,11,7,"Not Specified, Mortgage Loan, Payday Loan, Mortgage Loan, Auto Loan, Student Loan, and Payday Loan",,19,12.28,9,Standard,639.32,38.05422186,7 Years and 10 Months,Yes,135.3834287,103.2415535,Low_spent_Medium_value_payments,261.7181325,0,0.801,0.3376,-1.6254,2.0909,1.0711 +0x14965,CUS_0x2c4c,August,31,134-52-6017,Journalist,17476.37,,5,7,21,5,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, and Payday Loan",,23.09206358,11.88,9,_,1679.713095,30.38777994,8 Years and 5 Months,Yes,72.33847952,,Low_spent_Medium_value_payments,249.4828477,0,-0.5488,0.5163,1.2159,-0.608,0.6557 +0x14971,CUS_0x3f1,August,23,891-06-2189,Accountant,80983.64,6692.636667,6,3,15,4,"Credit-Builder Loan, Student Loan, Not Specified, and Student Loan",25.65829065,18,16.91,7,Standard,982.44,27.28075143,28 Years and 2 Months,Yes,188.4565952,126.0716158,High_spent_Large_value_payments,594.7354556,0,2.0476,-0.8804,-0.2275,0.4915,0.6456 +0x1497d,CUS_0x4ab2,August,19,752-31-9562,Writer,127883.4,10874.95,6,7,13,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",18.48652943,11,14.55,4,_,820.08,35.84356249,31 Years and 10 Months,Yes,227.6577005,10000,Low_spent_Small_value_payments,349.181046,0,0.8643,-0.224,-0.5251,0.1092,-0.0865 +0x14989,CUS_0x7264,August,44,452-90-1470,Engineer,20234.93,,6,9,19.95700519,9,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Student Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,20.04647527,24.66,8,Bad,4239.545628,23.9194834,,NM,1428.65764,45.07230498,High_spent_Medium_value_payments,223.6441025,0,1.4801,-0.913,-0.2344,2.3516,0.0185 +0x14995,CUS_0x7ef7,August,29,124-45-4455,Entrepreneur,30411.9,,4,6,11,6,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Student Loan",20.45293263,17.07968932,8.68,10,Standard,2471.633341,32.42263972,8 Years and 8 Months,Yes,112.7534342,106.812731,Low_spent_Large_value_payments,327.6663348,0,0.9764,0.4922,-0.3805,0.9325,1.2734 +0x149a1,CUS_0x9997,August,18,234-78-5350,Mechanic,10041.885,,10,7,17.06745738,3,"Personal Loan, Auto Loan, and Debt Consolidation Loan",,19.94345572,13.61,16,Standard,2568.009276,33.82754834,17 Years and 9 Months,NM,19.12355551,,Low_spent_Large_value_payments,236.2671994,0,0.7709,1.4774,-1.3447,-0.3461,-0.374 +0x149ad,CUS_0x3b85,August,50,652-52-9782,Engineer,72790.92,6087.91,3,5,4.288361749,4,"Home Equity Loan, Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",10.14414414,10,3.89,0,Good,702.65,29.79762603,,No,157.3041565,535.5904619,High_spent_Large_value_payments,575.8338427,0,0.4095,0.6532,-0.3507,0.7421,-0.1533 +0x149b9,CUS_0x7fc8,August,42,200-21-8443,Journalist,87502.53,7277.8775,7,7,14,3,"Mortgage Loan, Credit-Builder Loan, and Not Specified",90,2148,6.35,3,Standard,1071.88,38.82731784,28 Years and 6 Months,No,167.9597938,185.6052831,Low_spent_Large_value_payments,644.2226731,0,1.3341,0.379,0.2958,-0.0661,-0.9696 +0x149c5,CUS_0x8343,August,59,942-59-0676,Teacher,35659.07,3074.589167,2,4,1,0,,4.95779963,8,11.84,7,Good,587.189976,32.67471263,31 Years and 5 Months,No,0,203.9720807,Low_spent_Large_value_payments,395.4413503,0,-0.5846,-0.8316,0.072,-1.1971,-0.5462 +0x149d1,CUS_0x442b,August,48,710-88-0178,Scientist,78749.9,6433.491667,0,5,5,2,"Not Specified, and Auto Loan",4.923071932,5,1.17,4,Good,807.52,25.06835322,22 Years and 0 Months,No,129.5540895,177.3688895,High_spent_Small_value_payments,596.4261877,0,0.4565,-1.3941,0.8854,-1.7459,0.1396 +0x149dd,CUS_0x53f3,August,36,#F%$D@*&8,Musician,27909.81,2574.8175,5,5,12,1,Mortgage Loan,,22,-1.71,5,Good,1040.534447,24.81899187,22 Years and 3 Months,No,21.47733545,136.1707905,Low_spent_Small_value_payments,405.0588811,0,2.0148,0.3899,-0.7803,-0.0095,-0.7641 +0x149e9,CUS_0x68b4,August,51,746-29-2436,Engineer,128429.68,,6,7,3,2,"Credit-Builder Loan, and Home Equity Loan",,8,3.52,4,Good,1052,38.93679507,,No,129.5216685,10000,High_spent_Small_value_payments,883.232642,0,0.5356,1.0082,-0.5472,-2.109,1.0704 +0x149f5,CUS_0x7512,August,55,078-58-1869,Musician,35234.99,2827.249167,3,5,8,2,"Mortgage Loan, and Home Equity Loan",1.290745549,4,9.89,4,Good,1369.84,25.9808723,16 Years and 0 Months,No,46.84749756,177.8326877,Low_spent_Small_value_payments,348.0447314,0,0.7193,1.5504,-0.827,-0.3484,0.1437 +0x14a01,CUS_0x8747,August,47,903-18-0825,Scientist,117019.2,9443.545592,2,3,6.288361749,4,"Student Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",0,3,4.87,2,Good,537.0909301,41.66679476,28 Years and 6 Months,No,768.3920503,903.6398199,Low_spent_Large_value_payments,641.7349898,0,-0.4686,-0.2605,0.1694,-0.4585,1.3311 +0x14a0d,CUS_0x502c,August,32,723-08-5344,Lawyer,45917,3714.416667,4,7,7,1,Payday Loan,8.903357089,8,,4,_,170.33,30.14292953,31 Years and 5 Months,Yes,25.73479098,107.3536184,High_spent_Medium_value_payments,488.3532573,0,-0.1382,-0.495,1.4535,0.9828,1.5546 +0x14a19,CUS_0xa3aa,August,28,924-27-9758,Architect,27395.53,,5,3,5,4,"Payday Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",12.94096441,11,3.57,3,Standard,410.57,24.99340413,19 Years and 2 Months,No,79.67404242,118.3720258,!@9#%8,313.4500151,0,0.5554,-0.4121,1.3962,-0.5291,-0.5731 +0x14a25,CUS_0xb7cf,August,19,291-17-5552,Engineer,25784.65,1853.720833,3,7,20,6,"Home Equity Loan, Personal Loan, Payday Loan, Student Loan, Credit-Builder Loan, and Auto Loan",8.649664234,8,11.79,8,Standard,1088.26554,25.06201038,6 Years and 4 Months,Yes,100.3082272,11177.36808,High_spent_Small_value_payments,301.4781561,0,0.1803,-1.6007,-1.7163,-0.0687,-0.8743 +0x14a31,CUS_0x5f55,August,33,745-91-0039,Mechanic,14295.47,,6,7,20.06745738,6,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",27.95147739,,17.33,8,_,4732.960954,32.43448375,3 Years and 6 Months,Yes,55.68921871,95.81882387,Low_spent_Large_value_payments,231.0005861,0,-0.1306,-0.3169,0.5582,-1.6241,-1.1711 +0x14a3d,CUS_0x69c6,August,33,124-21-1281,Journalist,100310.08,8320.173333,3,3,5,1,Home Equity Loan,,14,9.63,8,Standard,904.83,39.96412161,23 Years and 4 Months,Yes,47.04307588,207.5803596,!@9#%8,817.3938978,0,1.0569,0.4537,-1.6534,0.5057,1.9639 +0x14a49,CUS_0x57f2,August,46,852-93-7909,Journalist,98313.12,,5,4,14.28836175,4,"Payday Loan, Mortgage Loan, Not Specified, and Student Loan",12.53185917,12,22.51,5,_,96.56,29.78557775,18 Years and 10 Months,Yes,206.1812364,569.9435361,High_spent_Large_value_payments,682.8886885,0,-0.8621,0.2376,-0.9204,0.4029,-2.0748 +0x14a55,CUS_0x82e6,August,45,970-08-1927,Writer,36479.27,,1,7,7,2,"Home Equity Loan, and Payday Loan",,7,3.01,2,Good,719.7,34.40040939,30 Years and 5 Months,No,44.37575933,,Low_spent_Small_value_payments,366.8698912,0,0.2486,-1.4787,0.4447,-0.9332,-0.5492 +0x14a61,CUS_0x41a0,August,21,644-85-1673,Writer,61627.35,4993.6125,8,6,26,7,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Not Specified",13.09212265,11.21195399,11.57,13,_,2494.046201,26.31353198,12 Years and 3 Months,Yes,262.3144504,238.6792913,High_spent_Small_value_payments,258.3675083,0,-1.3074,-1.3875,-0.2539,0.5096,1.0276 +0x14a6d,CUS_0xb48d,August,49,839-15-4790,_______,19577.155,,3,2,1,2,"Student Loan, and Home Equity Loan",1.927298031,6,3.94,4,_,1029.244956,39.0407737,,No,20.76029447,120.1539174,Low_spent_Small_value_payments,326.1312018,0,0.6503,-0.912,1.5719,-0.439,-1.6124 +0x14a79,CUS_0x3061,August,30,991-78-2351,Scientist,17082.685,1695.557083,5,7,356,6,"Home Equity Loan, Payday Loan, Not Specified, Student Loan, Payday Loan, and Student Loan",29.67054658,21,8.42,4,_,560.63,25.26501944,7 Years and 9 Months,Yes,80.69204035,52.87854469,High_spent_Small_value_payments,295.9851233,0,0.0626,0.2498,-0.0638,-1.0436,-1.4846 +0x14a85,CUS_0x70f2,August,45,316-81-1821,Manager,145168.96,,4,6,7,2,"Auto Loan, and Not Specified",21.07388773,15.28341335,8.85,7,Standard,144.9242122,45.0654354,,Yes,141.22998,220.8886182,High_spent_Large_value_payments,1068.922735,0,0.9091,-0.873,-1.5028,0.1682,-1.4413 +0x14a91,CUS_0x45ea,August,46,083-95-6249,Mechanic,22269.09,,7,6,5,0,,28.11843982,20,19.61,4,Standard,529.22,36.45557256,19 Years and 5 Months,Yes,0,174.078831,Low_spent_Large_value_payments,289.096919,0,0.9235,-0.1456,-0.529,-0.0894,-2.3546 +0x14a9d,CUS_0x4ab,August,51,591-59-7438,Architect,88783.92,7405.66,2,1,5.288361749,4,"Payday Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",,12,10.33,0,Good,474.5332144,35.22925166,18 Years and 10 Months,No,160.5243372,675.6391559,!@9#%8,602.0424592,0,0.1802,-0.4647,-0.4433,0.4818,-1.594 +0x14aa9,CUS_0x333f,August,21,777-65-0580,Media_Manager,26030.03,,4,3,13,3,"Not Specified, Payday Loan, and Home Equity Loan",22.57843427,20,11.7,421,Standard,595.44,24.32566454,30 Years and 9 Months,NM,38.32453885,201.7946281,Low_spent_Small_value_payments,264.4977497,0,0.1606,0.252,-0.7323,1.0791,0.0786 +0x14ab5,CUS_0x5c06,August,38,887-34-3815,Journalist,32244.75,,8,7,12,1,Auto Loan,13.61198581,9,16.03,9,Standard,910.2729211,36.25814191,30 Years and 6 Months,Yes,22.35372557,34.22373266,High_spent_Medium_value_payments,452.9044152,0,-1.38,0.848,-0.7034,-0.2311,-0.9335 +0x14ac1,CUS_0xbe55,August,33,784-16-9686,Accountant,16907.7,,6,7,25.06745738,8,"Credit-Builder Loan, Personal Loan, Home Equity Loan, Auto Loan, Personal Loan, Home Equity Loan, Student Loan, and Mortgage Loan",,1178,31,14,Bad,2905.401353,30.01807851,6 Years and 3 Months,NM,82.04425785,26.31001868,High_spent_Medium_value_payments,263.9807074,0,-0.2089,-0.5229,0.3379,-0.5791,-0.164 +0x14acd,CUS_0x3992,August,28,218-97-2428,Mechanic,9385.19,,8,9,31.95700519,100,"Student Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Personal Loan",31.19776697,21.55421958,19.21,17,Bad,2889.411452,34.36163846,7 Years and 0 Months,Yes,1354.371538,51.25399136,Low_spent_Small_value_payments,269.4340181,0,0.436,0.3068,-0.5159,-1.1702,0.7816 +0x14ad9,CUS_0x7671,August,32,199-01-3833,Musician,16942.39,,7,4,20,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Student Loan",13.13751088,10.52504353,,11,Standard,88.33699908,33.04777083,26 Years and 5 Months,Yes,46.11596979,56.10816126,!@9#%8,298.9624523,0,-0.7664,-0.3376,0.0376,-0.899,0.069 +0x14ae5,CUS_0x8ad5,August,27,393-14-3118,Engineer,63876.62,5358.051667,2,4,7,4,"Debt Consolidation Loan, Student Loan, Student Loan, and Not Specified",0,2,8.79,5,Good,925.4812801,24.12782425,26 Years and 9 Months,No,145.0368565,330.9318827,Low_spent_Medium_value_payments,378.3901001,0,1.401,0.0665,-1.1171,-0.4836,-0.9775 +0x14af1,CUS_0xc0d,August,24,672-00-8132,Entrepreneur,14184.33,921.0275,6,7,17,0,,21.77432943,16.57282803,8.71,1,Standard,1281.173575,24.04321413,22 Years and 9 Months,Yes,0,113.277128,!@9#%8,268.825622,0,-0.7093,0.1245,0.4523,1.5854,-0.0943 +0x14afd,CUS_0xadd5,August,50,890-53-9009,_______,28638.1,,7,3,9.288361749,4,"Payday Loan, Mortgage Loan, Auto Loan, and Student Loan",25.60737698,22.09843131,9.58,6,_,93.34165979,21.14533801,26 Years and 2 Months,Yes,91.64952478,704.0984805,Low_spent_Small_value_payments,168.1402891,0,0.3824,2.4709,0.4384,1.089,-0.8598 +0x14b09,CUS_0x24a1,August,34,029-27-5479,Teacher,17200.97,,8,9,27,4,"Mortgage Loan, Auto Loan, Mortgage Loan, and Student Loan",16.93148051,12.00960186,7.3,9,Standard,1688.212889,30.57668445,13 Years and 9 Months,Yes,48.51381569,,Low_spent_Small_value_payments,216.2805676,0,0.6008,-0.57,0.4316,-0.4485,-0.2075 +0x14b15,CUS_0x1fae,August,40,747-51-4832,Developer,33405.74,2485.811667,3,6,20,1,Home Equity Loan,,10,7.77,4,Standard,196.3,36.7828709,24 Years and 4 Months,Yes,16.28068837,62.6992384,!@9#%8,429.6012399,0,0.1146,-0.8263,2.2961,-0.4524,-1.3344 +0x14b21,CUS_0xadb5,August,45,565-89-7418,Entrepreneur,77460.2,6494.016667,4,7,25,2,"Mortgage Loan, and Debt Consolidation Loan",,10,15.67,9,_,1329.63,33.31580482,12 Years and 0 Months,NM,108.8180482,138.7579643,High_spent_Large_value_payments,641.8256542,0,0.2519,1.001,-0.116,-1.8233,2.1045 +0x14b2d,CUS_0x51e1,August,29,584-44-2628,Teacher,29674.93,2597.993437,3,4,10,3,"Not Specified, Mortgage Loan, and Not Specified",10.32179663,11,7.46,1,Good,609.980813,33.86118233,28 Years and 10 Months,No,130.5216159,186.3358806,Low_spent_Medium_value_payments,332.2015086,0,-2.1606,-1.4604,0.9394,1.0206,-1.0516 +0x14b39,CUS_0x5fde,August,39,848-51-1133,Journalist,19426.81,,7,6,19,4,"Auto Loan, Personal Loan, Payday Loan, and Home Equity Loan",,16,10.28,7,Standard,658.69,40.48643317,20 Years and 8 Months,Yes,54.99719804,,High_spent_Medium_value_payments,318.7165337,0,-1.3399,2.0201,-0.3542,1.4324,0.9811 +0x14b45,CUS_0x73b3,August,34,706-85-6031,Journalist,14595.6,1058.3,8,5,30,3,"Student Loan, Not Specified, and Student Loan",26.09798152,17.76708841,16.12,14,Standard,2327.708177,35.51815354,10 Years and 0 Months,Yes,34.84204627,112.7335951,Low_spent_Small_value_payments,248.2543586,0,-2.1072,-0.8108,0.5901,-2.7881,0.5693 +0x14b51,CUS_0x24e1,August,80,918-33-3019,Engineer,93312.33,,3,3,13,2,"Not Specified, and Payday Loan",,17,10.88,0,Standard,555.33,36.71632437,,Yes,126.1858794,,High_spent_Medium_value_payments,816.3899991,0,1.7499,0.6497,-2.2915,-0.6422,1.1799 +0x14b5d,CUS_0x2391,August,21,046-96-1490,Architect,76154.56,,8,8,26.88954781,6,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Payday Loan, and Personal Loan",,23,5.03,9,Bad,2144.36,36.05271961,14 Years and 0 Months,Yes,1805.080767,145.2032451,High_spent_Large_value_payments,399.1811445,0,0.0513,-0.9463,1.0211,0.7793,-0.5198 +0x14b69,CUS_0x32cb,August,47,526-91-1494,Entrepreneur,32959.87,2957.655833,2,5,12,4,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",10.56026927,11.66848963,0.69,0,_,1164.455242,33.4471635,17 Years and 11 Months,No,60.9407457,129.2200085,High_spent_Small_value_payments,365.6048291,0,-0.4241,-0.7883,-1.0792,-0.4915,0.4102 +0x14b75,CUS_0x7f3,August,31,276-64-8276,Developer,39420.54,,6,8,33.88954781,7,"Student Loan, Personal Loan, Personal Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Auto Loan",30.93723643,20.64589217,11.99,10,_,2123.167327,30.2914467,,Yes,1509.175985,,High_spent_Medium_value_payments,320.2686611,0,-0.9205,-0.1962,-0.3035,-1.5157,0.2447 +0x14b81,CUS_0x247b,August,45,450-61-9465,Engineer,28766.28,,4,3,2.288361749,2,"Auto Loan, and Not Specified",0,1,4.51,3,Good,263.42,28.20995673,20 Years and 2 Months,No,45.68726761,498.9590005,!@9#%8,383.5101929,0,1.6204,-0.4355,-0.7039,0.5522,-0.0715 +0x14b8d,CUS_0xc1bb,August,26,859-83-6342,Doctor,28097.2,,0,7,4,0,,6.499457666,8,1.44,2,Good,563.4016461,24.72742543,29 Years and 10 Months,No,0,114.5306188,High_spent_Small_value_payments,398.9743881,0,-0.134,-0.4643,0.3975,0.8181,-0.5614 +0x14b99,CUS_0x7462,August,48,081-17-7455,Journalist,128938.95,10722.9125,5,5,5,4,"Payday Loan, Not Specified, Mortgage Loan, and Student Loan",,2.360150639,0.75,1,Good,689.8227901,37.70908945,16 Years and 10 Months,No,384.5801136,612.3060248,Low_spent_Medium_value_payments,355.4051116,0,0.2727,0.9988,-0.1345,0.7248,-1.5758 +0x14ba5,CUS_0x67cd,August,49,180-25-3939,Accountant,11176.27,,7,3,20,4,"Credit-Builder Loan, Home Equity Loan, Auto Loan, and Personal Loan",16.93672689,16,6.48,4,Standard,374.7,22.94252669,18 Years and 8 Months,No,19.38330153,50.20066755,Low_spent_Small_value_payments,288.4516143,0,0.2189,-0.0441,2.2775,-1.3281,0.1739 +0x14bb1,CUS_0x7a59,August,30,227-84-8917,Accountant,70802.28,6073.19,7,5,15,0,,21.01806917,,17.74,1,Standard,684.53,28.9177775,32 Years and 2 Months,Yes,0,10000,Low_spent_Medium_value_payments,327.4651231,0,-0.5396,1.2569,0.2935,-0.7463,0.4841 +0x14bbd,CUS_0x1e18,August,50,692-56-4864,Doctor,14366.56,1085.362297,1,2,3,1,Student Loan,3.83760667,6,4.48,5,Good,373.7303383,37.52856822,25 Years and 6 Months,No,133.5888438,82.43192268,Low_spent_Large_value_payments,311.150116,0,0.0183,-1.8104,-3.049,-0.1886,1.073 +0x14bc9,CUS_0xb699,August,20,193-03-2866,Teacher,39145.96,3457.163333,7,7,19,2,"Not Specified, and Debt Consolidation Loan",15.63804621,12,7.63,7,Standard,1004.26,30.98833344,22 Years and 3 Months,No,52.99710111,170.0889301,Low_spent_Medium_value_payments,402.6303021,0,-1.0801,-1.1637,-0.1954,0.0214,0.77 +0x14bd5,CUS_0xbcb2,August,32,250-74-5945,Entrepreneur,19853.4,1463.45,6,5,35.06745738,100,"Home Equity Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",30.52546746,,2.55,12,Bad,5297.40817,26.20192378,11 Years and 11 Months,Yes,89.2206305,118.4699156,Low_spent_Small_value_payments,201.934166,0,-1.2201,0.4193,-0.1999,1.0197,0.8811 +0x14be1,CUS_0x63c3,August,25,#F%$D@*&8,Lawyer,66610.28,5395.856667,4,5,9,2,"Credit-Builder Loan, and Not Specified",17.44213777,12,24.71,7,Standard,1167.86,28.70241294,33 Years and 5 Months,Yes,84.91415002,114.5455319,High_spent_Medium_value_payments,590.1259848,0,-0.3773,-0.582,0.2078,-0.7535,0.0269 +0x14bed,CUS_0x1382,August,45,#F%$D@*&8,Entrepreneur,11391.83,,8,5,1,4,"Personal Loan, Not Specified, Not Specified, and Credit-Builder Loan",23.54807687,19,14.02,4,Standard,589.97,24.73631599,19 Years and 6 Months,No,26270,18.57588363,Low_spent_Large_value_payments,299.3465423,0,1.0581,1.5915,-0.764,-0.7681,-0.774 +0x14bf9,CUS_0x7e1a,August,41,154-74-2451,Accountant,28637.08,2167.423333,3,7,1,3,"Mortgage Loan, Student Loan, and Debt Consolidation Loan",15.59023534,,10.91,4,Good,967.75,27.91441433,29 Years and 2 Months,No,67.8448708,222.1211519,Low_spent_Small_value_payments,216.7763106,0,-0.7216,0.968,-0.6509,2.0347,0.3888 +0x14c05,CUS_0x760c,August,38,929-07-7881,Manager,106309.8,8410.875663,5,3,7.288361749,2,"Credit-Builder Loan, Personal Loan, and Not Specified",13.64546236,14,6.81,4,Good,215.4635878,27.44046382,17 Years and 0 Months,No,711.9017392,1236.790231,Low_spent_Medium_value_payments,247.7309968,0,0.0104,-0.9787,0.8845,1.1138,-1.4097 +0x14c11,CUS_0x38d8,August,24,467-02-8866,Accountant,101114.73,8679.2275,6,6,8,3,"Personal Loan, Home Equity Loan, and Student Loan",11.05171801,9,18.91,6,Standard,1059.527978,31.241125,14 Years and 5 Months,Yes,209.6448868,132.6649947,High_spent_Large_value_payments,780.1221956,0,2.1819,2.1877,-0.0651,-1.5559,1.4389 +0x14c1d,CUS_0xc47b,August,25,560-39-0261,Manager,15837.31,,8,6,17.06745738,8,"Payday Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",48.60170788,26.80673774,18.88,12,Bad,4029.80785,34.80969769,,Yes,63.58758779,68.59729097,!@9#%8,233.0724166,0,-0.1542,0.2076,1.5821,-1.1035,0.4834 +0x14c29,CUS_0x4f52,August,30,383-56-7851,Scientist,11126.925,,7,6,12,1,Student Loan,,14,8.95,1,Good,337.9002561,35.60586356,32 Years and 0 Months,No,56.20942056,34.93681865,Low_spent_Medium_value_payments,346.2291859,0,0.7873,-1.62,0.2726,0.429,-0.2866 +0x14c35,CUS_0xa540,August,38,074-17-6086,Journalist,11954.335,932.1945833,5,6,18,1,Auto Loan,19.86719669,13.47206126,-0.3,5,Standard,79.96681565,26.54913066,17 Years and 4 Months,Yes,7.925876128,62.95421087,Low_spent_Small_value_payments,312.3393713,0,0.2647,1.1491,-0.0348,1.7314,-0.8961 +0x14c41,CUS_0xb28a,August,26,348-50-5120,Engineer,68984.84,,8,7,9,3,"Auto Loan, Auto Loan, and Personal Loan",12.56907281,12,8.28,8,Standard,1112.47,33.49265239,9 Years and 3 Months,Yes,166.3345983,75.03822647,High_spent_Medium_value_payments,589.3008419,0,-0.1557,-1.2868,0.7929,-0.3534,1.3211 +0x14c4d,CUS_0x6ef6,August,50,#F%$D@*&8,Manager,122178.93,,5,1,10.28836175,4,"Payday Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",0,2,2.11,1,Good,1144.40609,26.99791411,28 Years and 6 Months,No,61393,846.61382,High_spent_Small_value_payments,693.4740798,0,0.2379,-1.9418,-0.7385,-1.1289,-0.0744 +0x14c59,CUS_0x29b5,August,28,466-74-1374,Architect,120497.52,,0,5,7.288361749,2,"Payday Loan, Not Specified, and Debt Consolidation Loan",,2,11.29,4,Good,423.7650498,24.83483839,23 Years and 11 Months,No,232.7415708,748.6065509,!@9#%8,755.9301715,0,-2.1031,1.3845,0.2235,0.6689,0.0154 +0x14c65,CUS_0x14a3,August,80,642-06-3189,Media_Manager,119016.88,9918.073333,8,3,8,0,,,13,2.77,5,Standard,839.78,29.00174211,32 Years and 6 Months,No,0,10000,High_spent_Medium_value_payments,926.3716742,0,-1.0586,1.1709,0.1264,0.0304,-1.7456 +0x14c71,CUS_0x454c,August,33,441-33-1920,Journalist,91870.71,7946.8925,2,4,5,2,"Student Loan, and Personal Loan",0,0,17.71,6,_,90.19,40.06748295,32 Years and 5 Months,No,105.7372414,,High_spent_Small_value_payments,583.370482,0,-1.4752,0.633,-0.096,-0.9953,-0.1478 +0x14c7d,CUS_0x5735,August,44,941-81-5948,_______,95310.03,7978.5025,0,6,9.288361749,4,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",4.462346276,8,15.2,4,Good,716.24,32.25581757,31 Years and 3 Months,No,160.7692719,664.7807951,Low_spent_Large_value_payments,662.237644,0,0.6216,-0.8209,0.563,0.9641,0.1274 +0x14c89,CUS_0x82fc,August,18,867-26-3831,Teacher,20736.07,,10,6,17,9,"Personal Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",,3864,19.06,7,_,2704.866663,24.56367995,13 Years and 9 Months,Yes,81.96774254,,High_spent_Medium_value_payments,306.1470231,0,-1.0206,0.0876,0.9594,-0.8635,-0.6242 +0x14c95,CUS_0xc6cb,August,21,716-93-2424,Accountant,159958.32,13161.86,5,3,9.288361749,0,Debt Consolidation Loan,13.63873954,,7.51,7,Good,803.57,42.16836508,16 Years and 0 Months,No,7539,768.9671569,High_spent_Medium_value_payments,1102.216597,0,0.7658,0.7519,-0.369,-1.8549,-0.3738 +0x14ca1,CUS_0x20a3,August,30,838-84-0474,Lawyer,28793.49,2669.4575,7,5,17,3,"Payday Loan, Personal Loan, and Home Equity Loan",,20,9.01,6,Standard,405.99,23.58853453,22 Years and 0 Months,Yes,69.8882752,77.52860866,High_spent_Small_value_payments,379.5288661,0,0.9568,0.7368,-0.3302,0.2994,-1.5266 +0x14cad,CUS_0x574a,August,45,340-65-6634,Teacher,106444.68,9015.39,8,4,9.288361749,0,,14.68851137,13,17.96,6,_,959.18,38.64386181,31 Years and 5 Months,Yes,0,1023.139966,Low_spent_Large_value_payments,568.3364953,0,0.2132,-0.2188,1.0619,0.6867,0.3572 +0x14cb9,CUS_0x6aa4,August,20,147-09-0323,Architect,49732.35,,6,10,19.95700519,1085,"Personal Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",,,8.72,9,Bad,5057.390089,34.65076777,4 Years and 4 Months,Yes,1534.795785,397.9190578,!@9#%8,48.37103766,0,0.0006,1.014,0.6753,0.6953,-0.6425 +0x14cc5,CUS_0xc570,August,37,558-90-7115,Developer,35851.39,2762.615833,6,4,5,2,"Student Loan, and Auto Loan",16.2613998,15,9.1,8,Standard,926.99,30.57129899,,No,32449,144.0019226,High_spent_Small_value_payments,338.7405654,0,0.042,-0.7837,0.2309,1.1735,0.6435 +0x14cd1,CUS_0x62da,August,46,835-37-3964,Architect,62799.48,,10,8,32.88954781,9,"Personal Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Auto Loan, Student Loan, and Student Loan",37.14461533,20,20.07,9,Bad,4144.96,30.04665629,,Yes,1594.841317,130.3351279,High_spent_Medium_value_payments,346.422474,0,0.6468,2.0761,-1.0233,-2.8637,0.0465 +0x14cdd,CUS_0xc01e,August,37,357-48-1484,Lawyer,40883.92,,6,10,15,5,"Payday Loan, Not Specified, Home Equity Loan, Payday Loan, and Payday Loan",,27.528804,,11,Bad,1983.768035,40.88459395,15 Years and 10 Months,Yes,131.5281536,107.6287642,High_spent_Medium_value_payments,363.4424155,0,-1.5772,0.1767,0.0099,0.4026,0.7456 +0x14ce9,CUS_0xb1dc,August,41,041-94-6829,Teacher,74270.8,6325.233333,7,5,16,9,"Auto Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, and Student Loan",39.72662933,25,26.68,10,Bad,3593.912345,24.41608438,13 Years and 11 Months,Yes,391.0468209,108.3256211,High_spent_Large_value_payments,386.4647135,0,-0.428,0.1057,-0.6129,-0.5561,0.5852 +0x14cf5,CUS_0xb3ac,August,20,597-82-3599,Scientist,20188.33,1398.360833,7,10,30,6,"Credit-Builder Loan, Student Loan, Payday Loan, Student Loan, Student Loan, and Student Loan",,25.61827844,8.67,14,Bad,2722.104169,25.78232852,7 Years and 3 Months,Yes,70.46462062,90.00093138,Low_spent_Medium_value_payments,259.3705313,0,0.0275,1.8512,0.5707,-0.4698,0.5263 +0x14d01,CUS_0x8067,August,22,104-54-5798,Engineer,47868.74,3802.061667,5,5,15,2,"Debt Consolidation Loan, and Home Equity Loan",9.717222379,9.175998287,8.92,10,_,827.7355758,31.68646915,6 Years and 9 Months,Yes,64.05620009,256.0549384,!@9#%8,330.0950282,0,0.7574,1.3396,1.0656,-1.4218,1.5167 +0x14d0d,CUS_0xa11c,August,80,586-32-1202,Accountant,36913.88,,6,5,17.06745738,7,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Student Loan, Personal Loan, Not Specified, and Mortgage Loan",29.74062179,,28.27,7,Bad,5247.350033,23.8739736,4 Years and 0 Months,Yes,214.3092665,,Low_spent_Small_value_payments,107.1575761,0,-0.2672,0.0438,-1.4296,1.7381,0.8063 +0x14d19,CUS_0x2890,August,44,522-59-8579,Doctor,71015.07,,7,7,8,4,"Not Specified, Auto Loan, Payday Loan, and Debt Consolidation Loan",14.01955875,12.88337622,10.16,4,_,1413.703545,38.53637111,,Yes,139.2783643,,Low_spent_Medium_value_payments,470.0711096,0,0.8985,0.9175,-0.0417,0.9702,0.9027 +0x14d25,CUS_0x4f92,August,26,659-08-8401,_______,15669.87,,9,4,24,8,"Payday Loan, Not Specified, Not Specified, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",24.94264599,18,19.67,14,Bad,3339.61,30.27426441,2 Years and 9 Months,Yes,55.25125421,13.88990799,High_spent_Large_value_payments,319.0410878,0,0.0216,1.6967,1.7773,1.4016,-0.2834 +0x14d31,CUS_0xd96,August,21,667-28-7573,Manager,98839.2,7937.6,6,5,16,1,Personal Loan,9.98115402,8,6.88,2,Standard,940.12,39.91816172,19 Years and 6 Months,No,71.03874607,168.2647445,High_spent_Large_value_payments,794.4565095,0,0.5287,0.0925,0.4808,0.1183,0.4659 +0x14d3d,CUS_0x40cf,August,32,811-84-7081,Scientist,30953.51,2807.459167,4,4,14,2,"Personal Loan, and Credit-Builder Loan",14.82966636,13,8.04,4,Standard,1106.09,28.83801735,26 Years and 2 Months,Yes,28.5395758,49.22138113,High_spent_Medium_value_payments,452.9849597,0,-0.4622,2.3365,0.3455,0.8099,0.1375 +0x14d49,CUS_0x9bd9,August,47,218-24-8466,Architect,106122.03,8652.5025,3,1,2.288361749,0,Mortgage Loan,,8,2.87,1,Good,1004.32381,28.18154669,,NM,78.77689548,728.5211591,!@9#%8,762.7499291,0,0.0174,-0.4718,1.136,-0.0132,0.862 +0x14d55,CUS_0x8842,August,56,633-86-8268,Teacher,60498.6,,7,6,12,1,Personal Loan,25.89051049,18,9.92,3,Standard,736.07,25.59278426,26 Years and 10 Months,No,47.92820961,,Low_spent_Small_value_payments,116.9276511,0,1.6352,-0.6317,0.8428,0.1958,-1.0257 +0x14d61,CUS_0x9ba4,August,20,732-45-5415,Journalist,30931.16,,4,7,15,6,"Home Equity Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Not Specified, and Mortgage Loan",,14,14.41,10,Standard,775.33,39.46966862,16 Years and 8 Months,Yes,81.4748102,163.3591462,Low_spent_Large_value_payments,277.3257103,0,-0.5747,0.3326,1.4627,0.8463,0.1043 +0x14d6d,CUS_0xc2c7,August,46,787-40-1764,_______,119706.2,10267.51667,7,5,11,2,"Payday Loan, and Home Equity Loan",,16,19.58,6,Standard,264.89,34.47344279,18 Years and 6 Months,Yes,168.7303866,698.4777631,Low_spent_Small_value_payments,449.543517,0,0.1733,-0.2611,-2.1083,-0.0997,-2.3877 +0x14d79,CUS_0x11a4,August,44,000-40-3312,Manager,44295.54,,8,6,30,2,"Credit-Builder Loan, and Student Loan",,24.59193046,8.96,8,Standard,1412.223715,37.28447193,12 Years and 9 Months,Yes,65.57597408,,High_spent_Medium_value_payments,477.5404389,0,-1.1015,1.6094,1.3099,-0.6768,2.5291 +0x14d85,CUS_0x79aa,August,34,824-45-3893,_______,18114.35,,9,6,28,2,"Auto Loan, and Student Loan",21.35118482,16,7.85,15,Bad,1289.04,35.91139427,10 Years and 6 Months,Yes,16.12078865,168.4389891,Low_spent_Small_value_payments,256.9931389,0,0.3751,-0.6996,-1.9731,0.6557,-0.8781 +0x14d91,CUS_0x5b20,August,51,212-46-0114,Engineer,24771.94,,3,6,17,3,"Mortgage Loan, Payday Loan, and Debt Consolidation Loan",17.64091436,12,11.77,7,Standard,238.37,24.89485316,,NM,58.4544176,49.07806488,High_spent_Large_value_payments,368.1003509,0,-0.2593,-0.2204,0.3637,-0.2324,-0.2615 +0x14d9d,CUS_0x9f5d,August,31,999-99-3421,Developer,10210.735,733.8945833,10,9,30,5,"Personal Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",26.91147967,19,24.69,14,Bad,3694.28,36.3180441,14 Years and 2 Months,Yes,42.02463933,44.2008342,High_spent_Small_value_payments,247.1639848,0,-0.6924,0.4203,-0.8133,-0.9273,-0.5389 +0x14da9,CUS_0x727a,August,40,364-26-4442,Doctor,68529.92,,10,10,18.88954781,7,"Credit-Builder Loan, Not Specified, Mortgage Loan, Auto Loan, Student Loan, Student Loan, and Auto Loan",40.71805566,24.05006567,17.99,,Standard,2991.75432,27.32894603,14 Years and 3 Months,Yes,1641.677806,119.5904716,High_spent_Large_value_payments,384.4843082,0,0.1847,-0.7014,1.1464,-0.8786,-0.8697 +0x14db5,CUS_0x5eef,August,23,516-17-0651,Doctor,59240,4697.666667,6,5,8.288361749,2,"Credit-Builder Loan, and Auto Loan",16.14389853,14,11.56,2,Standard,469.89,30.2063593,17 Years and 9 Months,Yes,69.26616417,567.5042671,High_spent_Medium_value_payments,502.9336964,0,1.2621,-0.1207,0.0523,2.2371,-0.7083 +0x14dc1,CUS_0x9339,August,40,646-09-4131,Accountant,15898.59,,8,6,16.06745738,6,"Home Equity Loan, Payday Loan, Auto Loan, Mortgage Loan, Student Loan, and Debt Consolidation Loan",24.68745259,16,22.17,9,_,2776.270954,30.27918313,3 Years and 9 Months,NM,72.0104375,,Low_spent_Small_value_payments,167.1928943,0,0.6907,0.1226,1.6545,1.013,2.2333 +0x14dcd,CUS_0x7c8d,August,27,313-03-7956,Media_Manager,29132.58,2559.715,8,10,25.95700519,6,"Credit-Builder Loan, Auto Loan, Not Specified, Personal Loan, Debt Consolidation Loan, and Personal Loan",,24.67830388,18.5,7,_,5172.127623,30.98773803,10 Years and 11 Months,NM,1459.94067,333.8446643,!@9#%8,31.13579687,0,-0.1853,-0.5675,-1.7415,-1.1801,0.086 +0x14dd9,CUS_0xa20b,August,80,325-04-2025,Manager,57101.1,,7,4,12,1,Mortgage Loan,,16,2.3,4,_,1178.079649,37.68447683,25 Years and 9 Months,No,29.44850996,123.1370661,High_spent_Medium_value_payments,578.2226937,0,0.614,-0.5723,0.5948,-1.9454,0.27 +0x14de5,CUS_0xb37a,August,42,590-89-0942,_______,28062.39,2397.5325,5,5,7,1,Student Loan,3.660404025,1.170627144,9.74,3,Good,911.9670149,31.48015186,18 Years and 5 Months,No,14.83513484,81.3606218,Low_spent_Large_value_payments,413.5574934,0,0.0382,-0.2911,-0.0229,-0.1973,-0.8674 +0x14df1,CUS_0xbfd2,August,41,925-75-0446,Journalist,25434.13,2318.510833,8,5,12,1,Payday Loan,18.27296018,14,14.04,10,Standard,606.48,25.52292791,8 Years and 0 Months,Yes,17.08013273,154.586549,Low_spent_Small_value_payments,350.1844016,0,-2.7967,0.8088,-0.3366,0.6298,1.1344 +0x14dfd,CUS_0xbd2d,August,49,002-26-8942,Manager,22292.16,,5,5,14,0,,24.10135818,17,11.55,6,Standard,1000.190742,24.24412465,20 Years and 2 Months,No,0,,Low_spent_Small_value_payments,254.4417048,0,0.7984,2.1343,-0.238,1.4345,-0.155 +0x14e09,CUS_0x8d95,August,32,028-75-4632,Manager,84169.92,7221.16,5,6,18,1,Mortgage Loan,,8,19,8,Standard,617.14,34.1869378,29 Years and 8 Months,Yes,38.43795519,573.7596056,Low_spent_Medium_value_payments,389.9184392,0,-0.106,2.2877,0.2922,0.0391,-1.5185 +0x14e15,CUS_0xb6b,August,27,257-56-8708,Mechanic,36463.7,2845.641667,4,7,3,1,Personal Loan,,5,4.55,1,Good,925.8220216,24.49432762,18 Years and 4 Months,No,19.15972076,51.53321706,High_spent_Medium_value_payments,471.2457608,0,-0.4936,-1.8428,0.1823,0.9095,0.014 +0x14e21,CUS_0x6f40,August,31,566-34-8471,Musician,82995.82,,2,2,10,2,"Home Equity Loan, and Mortgage Loan",9.979729402,10,2.05,615,Good,1292.936126,34.77061848,27 Years and 10 Months,No,87.41803795,289.4565084,!@9#%8,617.37108,0,1.6479,2.1838,-0.4574,-1.6577,0.6088 +0x14e2d,CUS_0x4854,August,44,564-50-3217,Accountant,66012.28,5400.023333,10,9,31.95700519,6,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",35.21313689,21,25.47,11,Bad,3919.770954,30.59380841,14 Years and 2 Months,Yes,1550.785304,118.0530156,High_spent_Medium_value_payments,400.1136445,0,0.8313,0.6737,-0.2354,0.8272,0.7913 +0x14e39,CUS_0x741b,August,44,933-75-8093,Mechanic,72524.2,,8,4,6,5,"Payday Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",19.2800014,16,7.04,10,_,1032.63,31.12316554,17 Years and 3 Months,Yes,28683,318.9961615,Low_spent_Small_value_payments,330.4590108,0,0.8093,-0.2786,-0.4641,-0.18,0.8408 +0x14e45,CUS_0x35ac,August,30,973-19-0864,Architect,118184.92,9901.743333,5,4,12,2,"Mortgage Loan, and Payday Loan",,8,5.35,3,Standard,1038.301377,36.54674482,20 Years and 10 Months,No,160.5441525,235.6929951,High_spent_Large_value_payments,865.4980458,0,0.3339,-0.0559,1.3651,-0.1667,0.1105 +0x14e51,CUS_0xbcc9,August,40,628-62-7723,Scientist,7518.71,,6,4,15,3,"Not Specified, Not Specified, and Auto Loan",23.77966654,18,17.89,9,Standard,832,34.74572171,8 Years and 4 Months,Yes,9.552501317,36.04538008,!@9#%8,294.9580353,0,-0.3431,-0.972,2.2073,-0.7941,0.1379 +0x14e5d,CUS_0xb808,August,29,743-14-3427,_______,61711.89,5403.6575,6,6,5,2,"Home Equity Loan, and Payday Loan",18.405785,14,14.46,7,_,464,30.65793707,5 Years and 10 Months,Yes,68.57886737,306.5608475,Low_spent_Large_value_payments,435.2260351,0,-1.7498,-0.386,0.7474,-0.6945,2.2402 +0x14e69,CUS_0x4468,August,26,343-10-5114,Lawyer,14387.88,,10,6,33.06745738,6,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",31.26992876,17.03192026,27.67,10,Bad,3315.63499,30.04290834,12 Years and 4 Months,Yes,56.83504637,,Low_spent_Small_value_payments,213.1847419,0,-0.753,0.5401,-0.742,-0.7961,-0.5536 +0x14e75,CUS_0x86a8,August,27,938-92-1711,Mechanic,35938.45,,3,5,15,4,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",14.03581133,11,7.84,3,Standard,1438.83,32.95877718,,No,96.96085526,194.1348433,!@9#%8,261.9913847,0,-0.576,-1.2918,0.939,-0.3542,-0.8093 +0x14e81,CUS_0x12cb,August,39,075-60-6485,Writer,45188.52,3868.71,9,10,22,7,"Home Equity Loan, Student Loan, Home Equity Loan, Student Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",41.98912382,24.18131103,10.45,11,Standard,2192.743766,30.69063149,15 Years and 5 Months,Yes,154.3574584,150.5001061,High_spent_Small_value_payments,342.0134355,0,1.1803,-0.0805,-0.29,-0.4269,-0.3859 +0x14e8d,CUS_0x7532,August,40,#F%$D@*&8,Musician,30839.77,,4,6,20,3,"Payday Loan, Debt Consolidation Loan, and Home Equity Loan",15.00521178,11,5.66,,Standard,1086.63,32.48601348,25 Years and 5 Months,NM,218.7546585,143.383503,Low_spent_Medium_value_payments,294.4954173,0,0.8969,0.9717,-0.1106,-0.0401,0.1937 +0x14e99,CUS_0x7ba9,August,25,989-07-3770,Manager,52462.42,,4,3,16,3,"Student Loan, Home Equity Loan, and Student Loan",6.951469073,8,15.87,8,Standard,778.66,25.20932038,20 Years and 8 Months,Yes,79.0516951,200.0904217,High_spent_Small_value_payments,412.4447165,0,2.6206,0.1355,0.919,-0.2186,0.9764 +0x14ea5,CUS_0xb00a,August,41,977-99-6354,Accountant,172778.16,14626.18,2,3,3,3,"Payday Loan, Home Equity Loan, and Mortgage Loan",,12,5.53,3,Good,1115.397866,39.20770778,30 Years and 9 Months,No,360.6746759,1451.234781,Low_spent_Small_value_payments,86.61030723,0,0.3198,-1.1387,-0.3538,1.3095,-0.7507 +0x14eb1,CUS_0x345e,August,37,006-81-5590,Manager,83265.72,6899.81,8,8,30.88954781,6,"Student Loan, Credit-Builder Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Auto Loan",,16.8847727,-2.54,13,Bad,2481.200565,23.62118122,6 Years and 2 Months,Yes,1620.092938,46.09221264,High_spent_Large_value_payments,569.4657679,0,0.5743,-0.5553,0.3755,-0.3662,-0.4492 +0x14ebd,CUS_0x42ef,August,28,661-18-0432,Lawyer,18385.23,,10,10,35.95700519,9,"Payday Loan, Personal Loan, Mortgage Loan, Payday Loan, Personal Loan, Auto Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",32.62800038,15,20.94,9,Bad,3943.860954,37.88576643,13 Years and 2 Months,Yes,1407.181063,63.55539024,Low_spent_Small_value_payments,239.5234275,0,-0.7176,-1.2134,1.817,-0.3744,-0.9153 +0x14ec9,CUS_0x769d,August,34,971-25-1936,Writer,42366,3340.5,9,10,27,8,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",32.08730441,21.9277511,2.75,185,Bad,1797.194289,25.00267254,16 Years and 3 Months,Yes,254.1784182,58.94585692,High_spent_Small_value_payments,280.9257249,0,0.2611,-0.0571,-0.0516,0.6066,0.6388 +0x14ed5,CUS_0x3643,August,18,580-77-2584,Mechanic,46230.26,3579.521667,8,3,11,1,Student Loan,24.17423518,17,8.76,11,_,260.98,28.83423295,8 Years and 4 Months,Yes,34.42528668,71.34470083,High_spent_Large_value_payments,492.1821792,0,-0.5307,-1.0124,0.7839,0.2277,-0.4115 +0x14ee1,CUS_0x3a3b,August,53,608-37-5088,Doctor,113196.54,,2,3,9.288361749,0,,4.419821897,6,3.43,5,_,305.03,38.25607409,21 Years and 2 Months,No,0,695.2989364,Low_spent_Medium_value_payments,971.8430246,0,0.2996,-0.1583,0.8566,-1.1013,0.2195 +0x14eed,CUS_0xaad9,August,18,910-00-4345,Mechanic,8555.32,657.7759517,9,9,24,4,"Payday Loan, Payday Loan, Auto Loan, and Auto Loan",34.5981044,17,10.93,7,Standard,2457.42,31.41796911,11 Years and 9 Months,Yes,70.13822556,58.44935728,Low_spent_Small_value_payments,276.8741322,0,0.4239,0.0022,-0.504,-1.4379,-0.1133 +0x14ef9,CUS_0x9b81,August,43,226-30-7230,Musician,95949.4,7875.783333,3,4,12,0,,,,4.51,4,Standard,1264.37,37.37113156,19 Years and 11 Months,No,0,,!@9#%8,809.1155656,0,-0.2127,1.1377,0.9205,1.7954,0.2345 +0x14f05,CUS_0xc6ac,August,38,057-64-6271,Engineer,35185.56,2962.13,6,4,14,3,"Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",11.35741556,10,7.14,0,Standard,379.47,29.50788246,21 Years and 2 Months,No,83.27806425,124.5756386,Low_spent_Small_value_payments,378.3592972,0,0.5224,-0.9486,-0.9172,0.6816,0.1061 +0x14f11,CUS_0x3849,August,29,599-59-8932,Engineer,30695.12,,2,110,9,4,"Personal Loan, Home Equity Loan, Personal Loan, and Student Loan",0.137866095,3,0.43,1,_,392.8077686,28.17723243,23 Years and 6 Months,No,64.74861622,,High_spent_Medium_value_payments,340.8758087,0,1.5658,-0.7661,-1.0494,1.5494,-0.8015 +0x14f1d,CUS_0x46c4,August,30,570-10-0256,Manager,61102.78,,7,5,14,4,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,10,7.11,9,_,382.8228823,38.67984741,31 Years and 3 Months,No,475.6650538,232.4842807,High_spent_Medium_value_payments,340.1729494,0,-0.3823,1.1032,0.013,0.2908,-0.7551 +0x14f29,CUS_0xa323,August,54,587-60-5963,Architect,23667.29,,7,6,8,100,"Not Specified, Debt Consolidation Loan, and Home Equity Loan",15.87110763,11,13.46,3,Standard,1070.170432,36.70967292,20 Years and 2 Months,Yes,53.02313961,55.95902197,!@9#%8,355.4073659,0,-1.7037,-0.405,-0.1521,-0.2817,-1.2636 +0x14f35,CUS_0x9cc,August,42,138-02-9904,Doctor,40290.47,,5,5,4.288361749,4,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",10.250531,10.65989531,3.93,7,_,376.2971603,24.62748997,,No,74.087584,733.1256803,Low_spent_Large_value_payments,244.4781134,0,-0.644,0.2457,0.6319,0.4291,-0.2483 +0x14f41,CUS_0x63df,August,26,031-17-4326,Developer,44447.88,,7,5,30,5,"Credit-Builder Loan, Student Loan, Not Specified, Mortgage Loan, and Personal Loan",,22,19.48,8,Bad,3781.47,35.49369499,6 Years and 0 Months,Yes,107.6052907,90.32635024,High_spent_Large_value_payments,442.0673591,0,-0.6541,0.5046,0.2277,0.2335,0.521 +0x14f4d,CUS_0xb03f,August,44,389-89-7954,Accountant,17963.45,1328.954167,6,7,18.06745738,2,"Personal Loan, and Not Specified",,17.13731136,0.75,11,Bad,2503.328288,27.26316091,7 Years and 4 Months,Yes,23.01331426,,Low_spent_Small_value_payments,218.966221,0,0.3601,1.7724,0.9154,-0.6214,1.9416 +0x14f59,CUS_0x7b0,August,27,992-16-3962,Scientist,57626.34,4906.733879,3,5,4,3,"Not Specified, Payday Loan, and Auto Loan",,2,9.93,2,Good,79.39787035,35.73374301,23 Years and 6 Months,No,259.8403815,11649.89686,High_spent_Small_value_payments,417.2831274,0,-1.439,-1.5897,-0.8998,-0.3251,0.2841 +0x14f65,CUS_0x407a,August,20,250-68-2308,Engineer,15131.6,,5,5,8,3,"Auto Loan, Payday Loan, and Debt Consolidation Loan",0,1,1.59,1,Good,416.8955042,24.03769389,25 Years and 6 Months,No,25.93043174,,Low_spent_Small_value_payments,233.1146914,0,0.3865,1.3203,-1.3206,-0.47,-0.0731 +0x14f71,CUS_0xc146,August,55,178-30-4421,Teacher,83859.84,6759.32,8,4,14,0,,,18,8.41,2,Standard,881.24,25.97278051,18 Years and 8 Months,No,0,671.4431476,Low_spent_Medium_value_payments,284.4888524,0,0.0267,-0.394,-0.2525,1.9251,-0.7331 +0x14f7d,CUS_0x3fb4,August,33,#F%$D@*&8,Mechanic,73871.32,5985.943333,5,7,10,0,,,19,4.01,4,Standard,217.57,30.22947195,15 Years and 8 Months,No,0,564.4773614,Low_spent_Medium_value_payments,314.1169719,0,-0.3405,0.319,-0.1456,0.5993,0.5399 +0x14f89,CUS_0xbecb,August,29,052-29-4200,Journalist,8514.715,,514,7,23.06745738,6,"Auto Loan, Student Loan, Mortgage Loan, Student Loan, Payday Loan, and Student Loan",,18.62405125,23.04,11,Bad,5217.138787,36.95050678,9 Years and 4 Months,Yes,21.48330723,10000,Low_spent_Small_value_payments,262.2693361,0,0.2222,-0.7891,0.4839,-0.8302,0.9998 +0x14f95,CUS_0xb3b3,August,19,704-29-2598,Accountant,68893.59,,3,7,2,4,"Mortgage Loan, Personal Loan, Not Specified, and Credit-Builder Loan",16.47022068,14,2.53,5,Good,944.6541849,30.45536393,25 Years and 4 Months,No,147.3700278,91.9550563,High_spent_Large_value_payments,608.9766953,0,-0.7849,0.4747,-1.8776,-0.5077,-0.0713 +0x14fa1,CUS_0x2bc9,August,43,073-13-5403,Engineer,37819.13,3185.594167,0,3,1,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Payday Loan",0.103839939,1.1555112,7.63,1,Good,863.0362803,24.55852361,27 Years and 8 Months,No,79.44872834,252.0297496,Low_spent_Large_value_payments,257.0809388,0,0.4209,2.1775,-1.4013,-0.2926,0.4507 +0x14fad,CUS_0x4feb,August,31,921-30-7278,Journalist,33726.6,,6,5,19,100,,17.75522433,14,13.65,10,_,1251.27,31.78157512,28 Years and 6 Months,Yes,382.877556,90.06296489,High_spent_Medium_value_payments,445.9920351,0,0.4395,1.0307,0.7509,-1.9382,-0.1475 +0x14fb9,CUS_0x8036,August,46,102-56-8758,_______,78984.46,6360.038333,4,2,7.288361749,0,Mortgage Loan,8.499021227,9,8.15,5,Good,283.9853473,41.02658018,,No,50.09499242,586.6340048,High_spent_Large_value_payments,678.780986,0,0.4099,1.4987,1.4005,-2.0822,0.6336 +0x14fc5,CUS_0xc05d,August,22,172-24-4809,Lawyer,9531.25,,8,10,22.88954781,8,"Personal Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Credit-Builder Loan",32.02696525,24.29311667,,9,Bad,5569.725236,26.93436361,3 Years and 6 Months,NM,1363.955696,57.586229,!@9#%8,233.5550774,0,1.5235,-0.4559,-0.6431,-0.6593,-0.0164 +0x14fd1,CUS_0xbe3,August,31,074-22-4935,Lawyer,20730.15,1661.5125,6,5,28.06745738,5,"Personal Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Payday Loan",,22,2.75,16,Bad,2585.100954,26.34265285,,Yes,24325,106.3187207,Low_spent_Large_value_payments,254.9564399,0,-0.414,0.8802,1.3846,1.0668,0.8729 +0x14fdd,CUS_0x383c,August,56,329-16-0543,Teacher,89342.58,7644.215,5,3,5,0,,8.640318763,11,8.08,1,Good,533.66,41.31225323,30 Years and 0 Months,No,24612,147.6831317,High_spent_Small_value_payments,876.7383683,0,0.2717,-1.0843,0.3805,0.0694,0.5809 +0x14fe9,CUS_0x26f8,August,26,745-83-5485,Engineer,29374.77,,3,7,6,2,"Student Loan, and Payday Loan",24.64918286,17.65466758,16.65,7,Standard,1315.147995,35.68771724,20 Years and 3 Months,Yes,40.26407406,158.4885616,!@9#%8,329.0371143,0,0.9126,-0.2598,0.3647,0.4294,-0.2433 +0x14ff5,CUS_0x1eee,August,34,513-08-1791,Teacher,115649.52,9400.46,5,5,8.288361749,2,"Payday Loan, and Home Equity Loan",,8,10.46,6,Good,641.04,35.7893897,,NM,104.619466,,High_spent_Large_value_payments,929.381967,0,-0.8247,-1.1395,0.4912,0.3217,-0.7015 +0x15001,CUS_0xa8d6,August,27,176-81-8639,Journalist,31263.7,,4,6,1,0,,0,0,4.13,5,Good,1086.65,37.80985699,31 Years and 8 Months,No,0,113.0021547,Low_spent_Medium_value_payments,448.2286786,0,-1.242,0.1769,2.7188,1.8276,-1.0269 +0x1500d,CUS_0x74a3,August,80,630-80-7645,Developer,30936.69,2416.0575,4,5,17,1,Auto Loan,17.89453963,14.45332416,19.18,11,Standard,883.7263592,28.35286389,33 Years and 0 Months,Yes,21.48555542,10000,Low_spent_Small_value_payments,207.2560403,0,-0.737,-0.1244,0.2578,-0.0455,0.1573 +0x15019,CUS_0x494b,August,18,710-98-6480,Engineer,8984.62,575.7183333,8,4,18,7,"Auto Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Credit-Builder Loan",12.54949144,11,14.27,9,Standard,720.17,29.61205663,16 Years and 9 Months,Yes,31.086195,57.21507309,Low_spent_Medium_value_payments,249.2705652,0,1.7258,0.4417,0.2242,-0.8934,-0.543 +0x15025,CUS_0x9247,August,35,326-71-1514,Media_Manager,52385.58,4492.465,4,6,6,4,"Home Equity Loan, Home Equity Loan, Home Equity Loan, and Auto Loan",23.74599548,19,14.99,6,Standard,184.38,37.1865962,27 Years and 9 Months,Yes,166.0556306,75.50233951,High_spent_Large_value_payments,447.6885299,0,0.6245,0.0829,0.6665,-1.7968,-0.6419 +0x15031,CUS_0x3264,August,48,215-89-1175,Musician,20662.84,1663.903333,3,3,5,4,"Not Specified, Not Specified, Home Equity Loan, and Mortgage Loan",,15,7.23,4,Standard,699.36,34.1378374,18 Years and 6 Months,No,39.90889439,58.61908602,High_spent_Medium_value_payments,317.8623529,0,-0.0488,-2.2097,1.0186,0.3292,2.2345 +0x1503d,CUS_0x7fc3,August,19,733-71-6520,Teacher,139144.84,11572.40333,2,4,11,3,"Student Loan, Personal Loan, and Home Equity Loan",1.403546736,3,1.76,777,_,630.7499311,39.68150509,25 Years and 5 Months,No,323.1234839,919.0349714,Low_spent_Medium_value_payments,306.4033971,0,-1.3684,-0.7458,1.0222,-0.4322,-0.733 +0x15049,CUS_0x139b,August,46,346-99-5140,Scientist,29313.3,2151.775,4,5,1,3,"Credit-Builder Loan, Home Equity Loan, and Not Specified",0,4,5.95,7,Good,315.0526101,28.19561601,32 Years and 5 Months,No,52.21702036,,High_spent_Small_value_payments,293.9999599,0,-0.1249,-1.9531,0.6907,1.3871,1.7988 +0x15055,CUS_0x7af8,August,39,751-11-3630,Manager,33891.6,,8,10,25.95700519,6,"Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",30.92612022,18,28.46,12,Bad,4052.530954,27.3647158,12 Years and 2 Months,Yes,1409.133086,,Low_spent_Small_value_payments,180.949096,0,0.6328,-0.9462,1.0021,1.2052,0.3459 +0x15061,CUS_0x94f4,August,32,092-79-1687,Mechanic,40196.9,,2,5,7,1,Home Equity Loan,12.91358026,13,14.07,4,_,537.1773369,33.80697708,20 Years and 0 Months,No,272.69763,98.6072278,High_spent_Small_value_payments,490.8116891,0,-1.586,-0.1079,-0.92,0.7575,-0.2082 +0x1506d,CUS_0x2da2,August,46,029-33-0758,Architect,20318.97,1463.2475,3,3,17,6,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Personal Loan, and Payday Loan",,13,16.14,13,Standard,2097.84,39.09683599,12 Years and 5 Months,Yes,94.57002245,,Low_spent_Small_value_payments,255.4682698,0,-0.7114,-0.0952,0.0061,0.575,-1.053 +0x15079,CUS_0x82b,August,35,468-43-3883,Architect,16784.74,,7,10,23,5,"Not Specified, Home Equity Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",33.04287255,17,29.57,14,Bad,4174.75,34.32090279,3 Years and 4 Months,Yes,58.56580811,10000,High_spent_Medium_value_payments,284.1870781,0,-0.9465,0.6579,-0.302,0.1527,1.9439 +0x15085,CUS_0xa69f,August,38,685-51-3320,Teacher,8475.64,794.3033333,10,10,23.06745738,3,"Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,28.38284052,5.76,11,Bad,2488.221822,37.96361413,10 Years and 3 Months,Yes,12.79212258,,Low_spent_Small_value_payments,231.5689658,0,-0.8662,2.0733,1.9201,-1.9156,1.8528 +0x15091,CUS_0x1572,August,39,031-16-3010,Engineer,83384.2,7080.683333,3,9,24,3,"Student Loan, Debt Consolidation Loan, and Personal Loan",,11,15.14,9,Standard,2613.85,28.45556586,12 Years and 6 Months,Yes,112.0104147,105.6244855,High_spent_Large_value_payments,730.4334331,0,0.8362,1.3884,-0.1529,0.2739,0.4594 +0x1509d,CUS_0x12c1,August,48,902-44-7100,Manager,85760.85,7172.7375,2,6,5,4,"Student Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",4.210737275,3.591836035,10.92,3,Good,761.4821749,28.054554,31 Years and 3 Months,No,171.4301979,515.1066585,Low_spent_Large_value_payments,300.7368936,0,-0.2671,-0.1508,1.1744,0.0571,0.9397 +0x150a9,CUS_0x8a8e,August,35,#F%$D@*&8,Lawyer,80661.32,6551.776667,5,4,30,4,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Not Specified",17.98532929,16.89328035,9.58,5,Standard,1640.751508,33.60816609,7 Years and 10 Months,Yes,135.5624741,232.7733265,High_spent_Medium_value_payments,536.8418661,0,1.1591,-0.317,-0.3534,0.5486,-0.0596 +0x150b5,CUS_0xa01f,August,30,674-35-4435,Mechanic,79657,,7,10,31,9,"Auto Loan, Payday Loan, Payday Loan, Payday Loan, Student Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Payday Loan",23.48529925,17,17.42,17,Bad,3189,39.11736689,4 Years and 2 Months,Yes,950.8845835,265.3917549,High_spent_Medium_value_payments,254.7988572,0,0.8109,-1.3786,1.4508,3.1786,0.4537 +0x150c1,CUS_0x2246,August,18,869-97-4157,Media_Manager,79708.89,,4,5,17,2,"Home Equity Loan, and Student Loan",26.53859175,19,4.01,7,Standard,1262.12,29.70312442,28 Years and 5 Months,NM,125.3996585,211.3632131,High_spent_Small_value_payments,582.5778784,0,0.9283,1.0544,1.3389,-0.4985,0.0299 +0x150cd,CUS_0xb457,August,19,#F%$D@*&8,Entrepreneur,14363.23,,9,6,33.06745738,5,"Student Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",28.05747232,16,23.95,12,Bad,3025.860954,25.69984754,1 Years and 9 Months,Yes,53.60035082,51.60352413,Low_spent_Medium_value_payments,263.7694204,0,0.5263,-0.3911,2.616,-1.6352,-1.1543 +0x150d9,CUS_0x60f1,August,25,199-66-4993,Lawyer,16479.14,971.3620917,7,6,16.06745738,100,"Debt Consolidation Loan, and Debt Consolidation Loan",,25.85521588,19.58,12,Bad,2527.753309,39.40375919,13 Years and 2 Months,Yes,125.995814,59.32413267,Low_spent_Small_value_payments,291.585507,0,1.8339,0.5355,0.2446,0.5558,-1.0001 +0x150e5,CUS_0x42e6,August,36,811-31-7920,Manager,25389.26,1954.771667,5,3,6,3,"Home Equity Loan, Home Equity Loan, and Payday Loan",13.08229874,12,6.82,0,Standard,210.5450216,30.25808125,31 Years and 5 Months,Yes,60.30343391,11075.33069,Low_spent_Large_value_payments,341.0484654,0,-1.5992,-1.7925,0.7357,-1.2779,-0.0438 +0x150f1,CUS_0x7cb9,August,37,599-00-9018,Media_Manager,92705.84,,8,7,10.28836175,0,,15.07845898,13.63959491,9.81,0,Good,725.3413434,33.6209828,16 Years and 4 Months,No,0,580.237713,High_spent_Large_value_payments,875.4484146,0,-1.0195,0.5603,0.7178,-0.5693,1.3436 +0x150fd,CUS_0x69f3,August,22,297-20-4230,Engineer,46841.92,3734.493333,3,4,13,4,"Student Loan, Debt Consolidation Loan, Personal Loan, and Payday Loan",22.82765268,19,18.32,5,_,1368.545426,24.41131399,5 Years and 9 Months,Yes,149.3903592,65.62479585,High_spent_Large_value_payments,407.2131846,0,-0.522,-1.5078,0.961,-2.7521,0.9289 +0x15109,CUS_0x84bf,August,34,561-98-8315,_______,19433.48,,6,7,34.06745738,6,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,20,22.15,8,Bad,3820.100954,42.14627694,7 Years and 2 Months,Yes,143.3783232,85.57697309,Low_spent_Small_value_payments,274.6328243,0,-1.5365,0.7011,-0.4548,0.6438,0.7081 +0x15115,CUS_0x2b51,August,26,670-39-4075,Writer,47456.32,,1310,3,9.288361749,100,"Credit-Builder Loan, Not Specified, Not Specified, and Auto Loan",16.72186739,15,6.17,0,_,45.94,26.0893881,20 Years and 3 Months,Yes,112.7336672,568.4498637,Low_spent_Small_value_payments,429.5232635,0,1.143,-1.1255,-0.5672,0.252,-1.2401 +0x15121,CUS_0xa2a1,August,35,688-88-7277,Developer,18419.57,,4,4,10,1,Auto Loan,,7,9.08,1,_,699.06,28.61191213,25 Years and 5 Months,NM,9.803353349,129.3582507,Low_spent_Small_value_payments,275.2348126,0,1.3373,1.3206,-0.9919,-0.4586,0.4549 +0x1512d,CUS_0x99f1,August,27,983-66-2995,_______,30976.75,,8,660,0.288361749,0,Auto Loan,,8,7.69,5,_,267.22,32.51403265,26 Years and 2 Months,No,23.81773148,,High_spent_Small_value_payments,447.907591,0,-1.4243,-1.6433,-0.455,1.2402,-2.5541 +0x15139,CUS_0x8b18,August,41,#F%$D@*&8,Writer,61043.61,5052.9675,9,5,30,6,"Auto Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",35.38050237,19.38595262,27.17,17,Bad,3024.306987,30.50295894,9 Years and 10 Months,Yes,235.4503798,71.30281529,High_spent_Medium_value_payments,448.5435549,0,-0.7347,1.862,-0.105,0.0797,-0.6689 +0x15145,CUS_0xbfeb,August,41,366-30-8489,Developer,68078.6,5651.216667,3,3,29,2,"Debt Consolidation Loan, and Mortgage Loan",,16.60644528,8.54,7,_,2274.775525,39.11097671,13 Years and 6 Months,Yes,64.44340295,152.0841808,Low_spent_Large_value_payments,618.594083,0,0.7968,0.6091,-0.4599,1.7939,-0.3349 +0x15151,CUS_0xa7f8,August,41,741-64-6836,Manager,88709.79,7636.4825,4,5,11,0,,,12,11.09,2,Good,1335.857332,43.29864015,,No,0,73.41817269,High_spent_Large_value_payments,939.6413947,0,-0.3318,-1.1554,0.6169,1.2772,0.949 +0x1515d,CUS_0x529b,August,32,222-81-7309,Developer,43900.02,,8,8,30,4,"Student Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",23.11694524,19.07085596,14.4,15,Standard,2826.955584,36.13046374,16 Years and 0 Months,Yes,111.519608,281.8757409,Low_spent_Small_value_payments,251.4381511,0,-0.6629,-1.4647,0.4868,0.4504,-0.1071 +0x15169,CUS_0x386e,August,24,610-24-1396,Scientist,17399.43,,8,9,21,2,"Mortgage Loan, and Debt Consolidation Loan",,28.1192787,9.03,10,Bad,1658.120006,34.86933846,6 Years and 5 Months,Yes,27.10328705,41.0660852,Low_spent_Large_value_payments,350.4258778,0,-0.9038,2.9483,1.7662,-2.0415,-0.0726 +0x15175,CUS_0x1dac,August,29,235-35-8527,Mechanic,72886.08,5805.84,882,9,31.95700519,9,"Credit-Builder Loan, Student Loan, Home Equity Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",40.47865632,20.09275861,18.19,9,Bad,4548.604081,39.59046875,7 Years and 11 Months,Yes,1655.202954,,Low_spent_Medium_value_payments,255.4596631,0,0.9441,1.0869,0.1271,-0.5389,-1.891 +0x15181,CUS_0xa742,August,27,143-37-1481,Accountant,16474.49,1165.874167,8,3,23,5,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",,11.76900822,15.36,15,Standard,1708.663325,39.1183328,18 Years and 2 Months,Yes,68.4496453,56.94719903,Low_spent_Small_value_payments,281.1905723,0,0.4652,-0.0678,-0.5852,-1.1407,-0.322 +0x1518d,CUS_0xa82c,August,22,752-16-2968,Media_Manager,25838.55,,4,3,15,1,Credit-Builder Loan,21.96165738,15,11.73,2,Standard,6.41,25.35528975,24 Years and 9 Months,Yes,21.34436196,240.3919572,Low_spent_Small_value_payments,244.5849308,0,-0.3128,-1.7158,-0.016,-1.4299,-1.492 +0x15199,CUS_0xa1de,August,32,285-30-2522,Teacher,9662.195,885.1829167,6,7,6,5,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, and Payday Loan",19.43383659,17,12.25,8,Standard,656.57,35.47344894,12 Years and 11 Months,Yes,29.54006209,57.57122227,Low_spent_Small_value_payments,291.4070073,0,-0.4459,-0.0998,1.2003,0.3056,-0.2297 +0x151a5,CUS_0x79ff,August,39,885-50-0108,Mechanic,11850.985,,7,7,16,4,"Auto Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",13.58267143,11.87942624,,0,Standard,890.8565809,34.29777964,29 Years and 5 Months,NM,23.99855954,,!@9#%8,254.3255738,0,0.3431,0.9991,-0.3832,-1.799,-1.8709 +0x151b1,CUS_0x3f5,August,30,335-62-4040,Mechanic,30022.71,2684.8925,3,7,6,4,"Home Equity Loan, Mortgage Loan, Not Specified, and Personal Loan",1.056433271,2.41511236,3.06,1,_,1165.05128,33.56975512,26 Years and 6 Months,No,62.22228531,75.81759136,Low_spent_Large_value_payments,400.4493733,0,0.14,-1.1182,0.2963,-1.5471,-0.9001 +0x151bd,CUS_0xc2c5,August,42,563-08-0705,Mechanic,9221.27,,8,9,23.88954781,6,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Not Specified",33.22008269,19,21.41,12,Bad,3707.9,30.97397224,12 Years and 8 Months,Yes,1352.330879,54.47847765,High_spent_Small_value_payments,238.3044792,0,-0.6662,-0.7906,-0.6124,-0.2925,-0.1458 +0x151c9,CUS_0x9acb,August,20,955-93-2132,Developer,47406.22,,4,7,20,0,,15.55006305,13,1.37,1,_,890.19,28.49948981,30 Years and 5 Months,No,0,396.8836451,Low_spent_Small_value_payments,265.7681882,0,1.5389,0.9137,-1.0202,-0.1407,-1.374 +0x151d5,CUS_0x80e2,August,36,854-78-0713,Engineer,89891.43,7459.9525,1069,3,8,0,,13.81592118,9,6.98,2,Standard,1468.45,29.60615238,16 Years and 0 Months,No,0,261.7805007,High_spent_Medium_value_payments,734.2147493,0,0.8468,-0.1331,-0.9545,-0.6343,-1.4888 +0x151e1,CUS_0x5625,August,36,859-74-5676,Musician,125155.2,10231.6,1,4,9,3,"Student Loan, Auto Loan, and Mortgage Loan",11.03384382,7.877775396,10.7,2,Good,57.09311155,30.56243184,26 Years and 6 Months,No,169.6272275,134.9598416,High_spent_Large_value_payments,958.5729308,0,-0.5411,0.8269,-1.1719,1.5551,-0.8718 +0x151ed,CUS_0xba94,August,42,607-98-2198,Entrepreneur,18675.65,1548.304167,3,6,18,2,"Payday Loan, and Not Specified",,18,11.52,11,_,1352.15,38.40032075,8 Years and 5 Months,Yes,16.52870275,129.8277089,Low_spent_Small_value_payments,298.474005,0,-0.4451,0.7878,1.1588,0.316,1.0005 +0x151f9,CUS_0x4460,August,59,909-64-1351,Accountant,14566.335,,4,5,7,3,"Personal Loan, Auto Loan, and Auto Loan",18.76555832,13,6.22,3,Good,699.8204917,40.03593423,30 Years and 10 Months,No,19.08233456,65.99963496,High_spent_Small_value_payments,291.64595,0,-1.1912,1.3086,1.3391,-0.2754,-0.6897 +0x15205,CUS_0xc0b3,August,44,973-12-0733,Scientist,15990.655,,7,3,17,5,"Credit-Builder Loan, Mortgage Loan, Student Loan, Student Loan, and Credit-Builder Loan",24.03527041,19.53165015,11.85,8,Standard,1313.071359,39.14277659,14 Years and 8 Months,NM,53.91846893,,Low_spent_Small_value_payments,254.4306367,0,-0.9751,0.4203,-0.5452,-0.2675,1.8097 +0x15211,CUS_0xc42f,August,20,648-38-4326,Architect,7160.96,471.9786286,8,10,29.95700519,7,"Student Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",,18.21243629,3.2,12,Bad,2829.633262,39.94932602,9 Years and 10 Months,Yes,1389.893443,18.82937873,Low_spent_Small_value_payments,251.1695139,0,-0.0865,0.0863,0.994,1.1265,-0.6873 +0x1521d,CUS_0x1343,August,21,443-92-7114,Teacher,125280.36,,0,5,3,4,"Debt Consolidation Loan, Student Loan, Home Equity Loan, and Mortgage Loan",,5,11.69,0,Good,1286.475214,32.42628414,,No,305.7227762,164.2999624,High_spent_Large_value_payments,859.3368618,0,1.4145,0.9674,1.0597,0.1403,-0.8429 +0x15229,CUS_0x6058,August,38,159-06-4178,Journalist,113085.87,9531.8225,4,4,11,1,Auto Loan,0,1.144443357,8.37,4,Good,267.6984669,29.06426459,30 Years and 3 Months,No,81.10299285,711.5915371,Low_spent_Large_value_payments,430.4877201,0,-0.0008,0.9436,-0.415,0.4946,-0.3664 +0x15235,CUS_0x268b,August,28,647-38-6615,Scientist,61035.4,,9,5,21,4,"Payday Loan, Payday Loan, Payday Loan, and Student Loan",,27,9.64,10,Bad,2490.34,37.5467042,6 Years and 9 Months,Yes,186.8174693,,High_spent_Medium_value_payments,441.3469905,0,1.0438,0.5203,0.4603,-1.3718,-0.3009 +0x15241,CUS_0x59f5,August,32,099-38-8985,Scientist,132123.84,,0,2,0.288361749,0,,7.017754086,9,1.45,2,Good,1288.061206,36.11334368,24 Years and 10 Months,No,0,598.7210133,High_spent_Large_value_payments,1171.318887,0,-1.7587,1.4236,-0.5626,-1.5187,-0.7217 +0x1524d,CUS_0x1ec5,August,34,042-68-5885,Accountant,36802.82,,4,3,7,1,Not Specified,16.58816017,14,6.06,2,Good,190.98,26.64743815,32 Years and 6 Months,NM,379.683016,104.1844002,High_spent_Small_value_payments,403.0602487,0,-0.4268,-0.0345,-0.1958,1.5325,1.0666 +0x15259,CUS_0x4ae9,August,51,573-66-1824,Scientist,121962.9,10055.575,0,4,10.28836175,2,"Student Loan, Personal Loan, and Mortgage Loan",,5,5.66,5,Good,339.01,42.09475974,31 Years and 3 Months,NM,182.0979209,720.9522079,High_spent_Medium_value_payments,772.4448322,0,-0.8899,-0.3703,0.029,0.772,1.1284 +0x15265,CUS_0xae2e,August,27,909-46-6100,_______,20043.26,,8,10,26.95700519,6,"Not Specified, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Personal Loan",28.22699546,18,31.86,11,Bad,3936.650954,40.07863491,,Yes,1412.780829,75.34307175,!@9#%8,199.3528963,0,0.5191,0.5644,-0.3078,-0.3011,1.3081 +0x15271,CUS_0x1a53,August,38,425-07-1650,Manager,28360.5,,8,5,14,2,"Auto Loan, and Auto Loan",,21,11.26,8,Standard,2404.64,28.54944931,14 Years and 6 Months,Yes,45.17032541,87.43881429,!@9#%8,366.0283603,0,0.4295,0.7478,-1.285,-0.3718,-1.5851 +0x1527d,CUS_0x33bc,August,42,#F%$D@*&8,Engineer,17468.19,1453.6825,10,6,26.06745738,3,"Mortgage Loan, Home Equity Loan, and Mortgage Loan",,14.42698419,8.2,10,Standard,1914.124383,34.23887304,11 Years and 6 Months,NM,23.26779435,,High_spent_Medium_value_payments,317.3975248,0,-0.2098,-0.5129,-0.0186,-0.2983,0.4401 +0x15289,CUS_0xbfef,August,47,245-34-2752,Media_Manager,179078.28,15115.19,2,4,1.288361749,4,"Payday Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",7.133663993,8.110502098,5.26,7,Good,796.0989346,37.04245026,31 Years and 5 Months,No,585.3831318,965.7420382,Low_spent_Large_value_payments,650.331291,0,1.8179,2.1447,-0.7963,-0.4629,0.9291 +0x15295,CUS_0x8f68,August,22,302-10-7307,Musician,82659.32,6796.851833,10,7,32,9,"Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Student Loan",,25.98371396,31.59,11,Bad,3992.315634,26.02605765,1 Years and 9 Months,Yes,384.2426848,68.23475398,High_spent_Large_value_payments,360.9750615,0,1.7504,0.5679,0.3101,0.9237,0.2627 +0x152a1,CUS_0x4dfb,August,33,618-74-3788,Architect,119809.72,9939.143333,0,2,10.28836175,0,,5.13256624,6,6.2,2,_,542.7,28.44182216,19 Years and 5 Months,No,0,863.6033698,Low_spent_Medium_value_payments,830.2484246,0,0.2687,0.0707,0.1094,-0.2947,-1.3355 +0x152ad,CUS_0x8e40,August,80,173-90-1716,Journalist,73971.16,,6,9,33,7,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Not Specified, and Payday Loan",,21,19.3,11,Bad,3528.13,23.17573076,6 Years and 0 Months,Yes,330.285917,241.122774,High_spent_Medium_value_payments,283.7176424,0,0.4103,-0.2482,-0.971,0.9041,-0.1586 +0x152b9,CUS_0xa3c,August,27,054-73-9178,Accountant,14168.2,1054.683333,8,8,28,8,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",26.60111536,19,23.65,12,Bad,3457.78,24.66908505,7 Years and 6 Months,Yes,91.84540323,,Low_spent_Small_value_payments,162.7238473,0,-0.8176,-0.0728,0.3439,0.2775,-0.5296 +0x152c5,CUS_0x4605,August,26,592-19-3205,Media_Manager,87314.67,6498.906187,5,2,8.288361749,2,"Mortgage Loan, and Not Specified",2.485523764,4,4.72,1,Good,670.6294442,34.66783972,18 Years and 6 Months,No,719.2247835,523.6258466,High_spent_Large_value_payments,762.028273,0,0.2533,-0.5086,-0.5577,-0.2402,-1.5861 +0x152d1,CUS_0x789,August,46,059-43-6499,Accountant,16372.12,,9,5,29.06745738,2,"Credit-Builder Loan, and Credit-Builder Loan",,20,6.76,14,_,2321.970954,37.69492217,9 Years and 4 Months,NM,16.70423486,76.20039556,High_spent_Small_value_payments,305.209415,0,-0.213,0.1357,-0.7147,-0.4823,0.7274 +0x152dd,CUS_0x94d2,August,54,348-69-3594,Scientist,21834.105,2071.50875,4,5,11,1,Credit-Builder Loan,12.13018889,12,10.4,5,Good,1215.84,35.80986599,24 Years and 11 Months,No,16.92255727,189.8726023,Low_spent_Small_value_payments,290.3557154,0,1.099,1.6679,-0.0145,1.2357,0.9823 +0x152e9,CUS_0x95d4,August,54,957-80-4516,Entrepreneur,52205.88,4348.49,1616,6,5,100,Personal Loan,,12,,4,Standard,203.33,37.68351021,28 Years and 8 Months,Yes,40.58526111,416.1519602,Low_spent_Small_value_payments,268.1117787,0,-0.7449,-0.4283,-0.0358,-0.7067,0.359 +0x152f5,CUS_0xb7d0,August,38,668-54-0278,Engineer,16449.27,,903,6,20,2,"Debt Consolidation Loan, and Not Specified",21.3182187,15,19.86,4,Standard,1385.18,26.32316479,8 Years and 3 Months,Yes,16.59813424,,Low_spent_Small_value_payments,270.3005158,0,0.0086,0.0512,1.0248,0.175,0.063 +0x15301,CUS_0xaa93,August,41,#F%$D@*&8,Musician,18314.09,1779.174167,6,6,34,4,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",14.12135799,10.4156333,12.5,6,_,2071.659532,35.86962495,11 Years and 3 Months,Yes,38.43049906,70.8040963,Low_spent_Small_value_payments,358.6828213,0,-0.7936,-1.4528,0.6371,0.2148,0.8145 +0x1530d,CUS_0xaa66,August,32,841-06-2917,Architect,14995.29,,7,5,29.06745738,5,"Auto Loan, Payday Loan, Mortgage Loan, Payday Loan, and Student Loan",,25,13.85,8,Bad,4816.690954,30.15721773,3 Years and 6 Months,Yes,175.8323356,76.698504,Low_spent_Large_value_payments,219.9059943,0,-0.0218,-0.0815,0.2656,-1.1766,-0.2058 +0x15319,CUS_0x1567,August,31,675-44-1792,Entrepreneur,19363.33,,8,6,5058.288362,2,"Credit-Builder Loan, and Home Equity Loan",19.12219664,17,18.31,10,Standard,111.66,23.47385514,14 Years and 6 Months,NM,30.69393122,469.572138,High_spent_Medium_value_payments,360.1324751,0,0.0425,2.5628,-0.8112,0.3965,1.3458 +0x15325,CUS_0x9c17,August,35,224-39-6786,Entrepreneur,29655.22,,6,10,32.06745738,9,"Student Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Not Specified, Payday Loan, Payday Loan, and Personal Loan",28.43472194,17.43174759,0.45,14,Bad,1793.085855,40.6811037,12 Years and 3 Months,Yes,172.6284364,46.95329484,High_spent_Medium_value_payments,267.2248141,0,0.7554,0.2898,0.4785,0.6786,0.7678 +0x15331,CUS_0x70d8,August,41,379-60-1712,Architect,116346.93,9814.5775,0,3,9,3,"Home Equity Loan, Payday Loan, and Auto Loan",,7,10.23,3,Good,104.3805365,41.58255276,30 Years and 6 Months,No,183.0013199,265.0964239,High_spent_Medium_value_payments,816.6271174,0,-0.055,-1.4104,-0.6963,-0.6519,1.0312 +0x1533d,CUS_0x8980,August,50,729-65-2462,Engineer,74766.86,,4,7,2,100,"Mortgage Loan, Payday Loan, and Student Loan",,9.531017162,3.82,1,Good,116.2142077,40.1926552,22 Years and 8 Months,No,153.3949939,60.56554631,High_spent_Large_value_payments,628.5966264,0,0.8578,1.3512,-0.6756,-0.4947,1.9486 +0x15349,CUS_0x3e7f,August,29,749-76-8458,Journalist,162590.56,,5,1477,11,0,,,9.503688697,11.65,4,_,1149.253325,37.93835113,26 Years and 4 Months,No,0,1021.633178,Low_spent_Medium_value_payments,611.8881556,0,-0.7604,-2.1978,-1.2174,-0.0938,-0.4757 +0x15355,CUS_0x9da0,August,42,649-81-2116,Accountant,15153.54,1108.795,8,5,27.06745738,6,"Auto Loan, Home Equity Loan, Personal Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",40.31338824,19.23975707,18.1,11,Bad,3243.652207,32.40813195,,Yes,61.79987177,97.98082141,Low_spent_Small_value_payments,214.3785189,0,-0.565,0.5094,-1.7871,-0.1247,-0.0071 +0x15361,CUS_0x32ba,August,57,208-44-5905,Lawyer,115735.76,9468.646667,5,7,13,0,,17.74034951,,5.41,1,Standard,1174.240617,25.75843954,16 Years and 6 Months,No,0,853.2799417,Low_spent_Large_value_payments,445.7827778,0,1.0537,-0.6747,2.1139,-0.9448,0.2812 +0x1536d,CUS_0x6733,August,44,287-90-6751,Developer,14914.25,,10,10,32.88954781,7,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Student Loan, Credit-Builder Loan, and Payday Loan",32.78842211,19,23.02,13,Bad,3313.55,32.64293,10 Years and 4 Months,Yes,1390.995107,40.31984571,High_spent_Small_value_payments,285.4403826,0,-0.5143,-0.7634,-0.1831,1.2197,0.1628 +0x15379,CUS_0x47c8,August,19,791-33-3539,Scientist,9134.4,,10,9,16.06745738,5,"Payday Loan, Auto Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,18.21118788,1.63,13,Bad,2098.288878,34.6559826,14 Years and 2 Months,Yes,36.93670398,55.89604691,Low_spent_Small_value_payments,233.2669612,0,-0.7984,0.3527,-0.5263,0.9787,-0.2301 +0x15385,CUS_0xba16,August,35,642-83-9938,Teacher,44288.58,,10,5,16,8,"Payday Loan, Credit-Builder Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",28.58548805,20,4.9,12,Bad,1831.88,33.54327402,10 Years and 11 Months,Yes,183.928495,,!@9#%8,164.327617,0,-1.9581,2.0303,0.1826,-0.7966,2.1865 +0x15391,CUS_0x3c41,August,80,922-59-4417,Manager,38561.33,3289.444167,0,6,10,0,,0,0,2.34,2,_,1465.73,25.85144749,27 Years and 6 Months,No,0,205.1766119,High_spent_Small_value_payments,383.7678048,0,0.3586,-0.1815,0.2929,-0.7203,-2.2148 +0x1539d,CUS_0x9d1a,August,27,059-71-5401,Writer,70968.8,,6,6,18,7,"Personal Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",13.10026539,,18.24,8,Standard,2162.07,20.10076996,16 Years and 0 Months,Yes,73767,,Low_spent_Small_value_payments,,0,-0.24,-1.3878,0.6266,0.4418,0.1169 +0x153a9,CUS_0x12a4,August,24,694-31-4893,Mechanic,78094.28,6755.856667,10,7,15,5,"Personal Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Auto Loan",37.73431453,19,6.92,12,Bad,1695.41,38.27982816,19 Years and 8 Months,Yes,270.6398053,68.31523136,High_spent_Large_value_payments,576.63063,0,0.9513,-0.6474,0.9719,-0.3599,-0.778 +0x153b5,CUS_0xc737,August,49,087-09-7867,Doctor,78676.32,6710.36,50,1,3.288361749,0,Credit-Builder Loan,0,4,9.8,7,Good,981.3096211,29.85220694,19 Years and 5 Months,No,48.57797806,,Low_spent_Medium_value_payments,210.2798201,0,0.7896,1.6835,0.2746,1.4716,0.8202 +0x153c1,CUS_0xadab,August,35,019-69-0387,_______,155148.36,12909.03,5,5,9.288361749,2,"Credit-Builder Loan, and Auto Loan",4.912803862,6,5.13,6,_,1122.62,31.00942393,33 Years and 4 Months,No,129.959109,1233.523387,High_spent_Small_value_payments,607.3579651,0,0.6471,2.2042,-0.5757,-0.0529,0.6904 +0x153cd,CUS_0x9bb9,August,33,277-64-6981,Entrepreneur,152078,12435.16667,0,3,6,0,,16.55641041,14.02573222,2.64,0,Good,348.8528294,27.73467763,26 Years and 4 Months,No,5600,937.1183032,Low_spent_Medium_value_payments,586.3983635,0,-0.8342,-2.0577,0.1452,-0.215,-0.9422 +0x153d9,CUS_0x8b11,August,23,#F%$D@*&8,Entrepreneur,12837.245,,8,4,504,3,"Personal Loan, Payday Loan, and Payday Loan",9.190581892,9,4.34,0,_,1222.28,34.6240506,28 Years and 6 Months,No,21.24332548,42.3266654,Low_spent_Medium_value_payments,300.2070508,0,-2.089,-2.1843,-0.5993,-0.1475,1.0946 +0x153e5,CUS_0x5eaf,August,29,036-32-8848,Journalist,76652.88,,7,5,3969.288362,2,"Personal Loan, Debt Consolidation Loan, and Not Specified",10.7020498,12,6.99,4,Standard,779.9943088,31.33566318,18 Years and 2 Months,Yes,145.3729402,11845.51121,Low_spent_Small_value_payments,,0,0.8667,0.0252,0.7972,1.3565,-0.8185 +0x153f1,CUS_0x6f5c,August,30,150-04-7002,Developer,41810.59,,0,5,5,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",3.336356923,5,0.62,4,Good,610.8550832,35.61928558,22 Years and 9 Months,No,70.79723649,46.93456622,High_spent_Large_value_payments,451.2462014,0,-0.0441,1.3019,0.4908,-0.5708,-0.5832 +0x153fd,CUS_0xa04d,August,40,756-12-9488,Musician,19082.67,1495.2225,7,5,30.06745738,6,"Mortgage Loan, Not Specified, Auto Loan, Student Loan, Personal Loan, and Not Specified",24.11132859,15,27.96,9,Bad,2649.196159,37.30858831,3 Years and 10 Months,Yes,66.6487034,23.16623754,High_spent_Large_value_payments,275.0955216,0,-0.1751,-0.2991,-0.7477,-0.2812,0.2199 +0x15409,CUS_0xe99,August,48,164-90-3178,Mechanic,45461.54,,6,3,5,2,"Credit-Builder Loan, and Payday Loan",12.55144106,9,11.38,6,Standard,647.24,27.26468473,16 Years and 9 Months,No,69.31834886,,High_spent_Large_value_payments,519.4868162,0,-1.901,0.5667,0.5522,-0.7012,-0.2791 +0x15415,CUS_0x733c,August,38,499-65-2055,Mechanic,32995.78,2540.648333,9,6,16,4,"Home Equity Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",,23.72974446,15.69,9,Bad,1474.685029,40.84535096,17 Years and 3 Months,NM,105.6870339,66.98808464,High_spent_Medium_value_payments,331.3897148,0,-1.4254,-0.5658,0.864,-0.7719,0.9423 +0x15421,CUS_0xc548,August,46,540-77-4341,Mechanic,36154.22,3043.851667,8,9,33.06745738,6,"Home Equity Loan, Not Specified, Payday Loan, Personal Loan, Payday Loan, and Student Loan",,21.29340037,25.31,10,_,5713.64194,36.76962437,12 Years and 11 Months,Yes,96.92283323,107.9461906,High_spent_Medium_value_payments,322.7958549,0,-0.2548,0.4095,1.9243,0.3582,-0.5118 +0x1542d,CUS_0xbf9a,August,25,447-09-0118,_______,54430.71,,10,6,22,5,"Personal Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Personal Loan",33.75329027,,25.74,9,Bad,3440.56841,30.76845865,13 Years and 8 Months,Yes,213.4434272,294.7546335,High_spent_Small_value_payments,198.9911893,0,0.0237,1.312,0.1046,0.4689,0.7072 +0x15439,CUS_0x2b1a,August,39,300-01-6032,Manager,21469.245,,0,4,10,2,"Not Specified, and Auto Loan",0,0,0.63,8,Good,909.93,27.54790784,29 Years and 3 Months,No,33.39482274,,Low_spent_Large_value_payments,254.1669271,0,-0.3109,0.8164,0.9778,0.8158,0.8979 +0x15445,CUS_0x7d43,August,39,971-56-5281,Media_Manager,128349.75,,0,5,8.288361749,2,"Home Equity Loan, and Credit-Builder Loan",0,2,8.29,3,Good,226.21,31.29655613,,No,201.2473388,554.3326667,High_spent_Large_value_payments,994.7387055,0,1.7202,0.1434,0.7474,0.4308,-1.5043 +0x15451,CUS_0x473f,August,59,977-14-8386,Architect,20875.67,1536.639167,5,3,10,4,"Debt Consolidation Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",16.60150889,16,7.49,1,Good,1266.031927,24.87545596,22 Years and 5 Months,No,38.07252493,107.9960135,Low_spent_Medium_value_payments,303.0842741,0,-0.8286,1.5174,0.3522,0.3907,-0.0301 +0x1545d,CUS_0x9aeb,August,27,418-29-5117,Entrepreneur,44620.48,3421.373333,7,4,10,1,Payday Loan,24.10435727,17,10.63,6,Standard,1280.87,29.47316087,28 Years and 11 Months,Yes,31.5378555,119.1173069,High_spent_Medium_value_payments,441.4821709,0,-0.9867,1.8642,-0.3446,-0.8984,1.0661 +0x15469,CUS_0x8f84,August,31,709-75-8028,Mechanic,35540.74,,3,5,2,2,"Not Specified, and Home Equity Loan",0,1,9.45,1,Good,1027.048811,39.57906002,,No,52.41216562,,High_spent_Large_value_payments,449.5012673,0,0.1512,1.0152,0.0368,-0.6425,-0.6483 +0x15475,CUS_0x64c,August,35,569-95-4551,Writer,63978.72,,7,7,17,4,"Payday Loan, Mortgage Loan, Personal Loan, and Not Specified",,8,10.49,585,Standard,947.31,39.05576882,31 Years and 8 Months,NM,182.441217,,Low_spent_Large_value_payments,466.9094786,0,-2.2768,-0.172,0.9326,0.6186,-0.9816 +0x15481,CUS_0x70ac,August,23,285-03-4644,Writer,50814.28,,3,7,1.288361749,0,,9.293544316,10,4.06,3,Good,556.524977,33.20564976,21 Years and 8 Months,No,0,481.3991703,High_spent_Large_value_payments,636.3092257,0,1.7064,-0.2904,0.0685,-0.1075,0.2052 +0x1548d,CUS_0x2993,August,18,572-75-0922,Accountant,30660.86,,10,7,33.06745738,6,"Debt Consolidation Loan, Payday Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",41.52839763,25,1.52,12,Bad,4957.220954,23.16060259,4 Years and 6 Months,Yes,139.2392727,46.17953144,High_spent_Large_value_payments,312.6680746,0,0.5901,2.3314,-0.6725,0.4344,1.1961 +0x15499,CUS_0x9305,August,51,122-99-9715,Entrepreneur,64871.14,,5,5,5,2,"Student Loan, and Credit-Builder Loan",,,9.68,0,Good,34.3,33.8151144,23 Years and 11 Months,No,73.22635345,586.9081588,!@9#%8,163.258321,0,0.3337,-1.0568,-0.0008,0.1077,-0.7966 +0x154a5,CUS_0xa2b,August,31,427-87-7635,Manager,89256.75,7379.0625,8,5,15,100,,9.622054333,9,1.92,1,Standard,49.03,29.71406884,21 Years and 4 Months,Yes,0,259.6624434,Low_spent_Medium_value_payments,758.2438066,0,0.1586,0.1017,-0.6217,0.3926,0.9536 +0x154b1,CUS_0xa89b,August,20,701-64-5974,Entrepreneur,43913.46,3684.455,10,10,22.95700519,6,"Student Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",31.15140973,16,17.5,9,Bad,5037.490954,27.41528328,4 Years and 9 Months,Yes,1452.019854,93.14884951,Low_spent_Large_value_payments,372.2264274,0,-2.2737,0.9718,-0.1923,-0.3891,2.1817 +0x154bd,CUS_0x5bec,August,25,473-70-9348,Writer,17164.13,1455.344167,8,7,30,4,"Student Loan, Credit-Builder Loan, Personal Loan, and Student Loan",31.43896661,14.08325311,23.44,12,Standard,2512.652946,34.59852045,11 Years and 2 Months,Yes,48.78797271,62.07954129,Low_spent_Medium_value_payments,314.6669027,0,-1.8,-0.2304,-1.5858,0.3817,0.9922 +0x154c9,CUS_0x2f22,August,24,151-96-9989,Entrepreneur,170502.52,,1,5,9,2,"Payday Loan, and Not Specified",0,1,4.84,3,Good,334.62,26.8314484,25 Years and 2 Months,No,190.4814722,1109.992969,Low_spent_Medium_value_payments,428.4798921,0,0.0382,-0.4581,0.4625,1.9157,-0.3527 +0x154d5,CUS_0x3f6,August,56,766-29-6741,Entrepreneur,60244.72,5197.393333,6,6,2,3,"Payday Loan, Mortgage Loan, and Home Equity Loan",26.42422028,18,6.53,3,Good,989.42,33.2116696,,No,105.6624787,471.0746832,!@9#%8,233.0021714,0,0.3477,-0.3642,-0.6778,-0.4778,-0.0119 +0x154e1,CUS_0x87a4,August,20,011-46-1777,Accountant,14231.42,,8,4,5,0,,8.228611375,7,10.33,6,Standard,848.59,29.33926863,27 Years and 4 Months,No,0,109.3718459,Low_spent_Medium_value_payments,302.5233208,0,0.5742,2.3376,-0.0012,-0.1899,-0.4223 +0x154ed,CUS_0x6fa,August,47,039-37-1758,Media_Manager,16520.865,1492.73875,4,1,8,2,"Not Specified, and Debt Consolidation Loan",,6,1.53,8,Good,731.9572394,31.21153568,16 Years and 9 Months,No,24.13137918,65.50951297,High_spent_Small_value_payments,328.1757664,0,0.4943,0.1741,0.3724,0.3906,0.2839 +0x154f9,CUS_0x535d,August,30,118-92-2759,Developer,20127.72,,8,8,23.88954781,6,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",,22,24.32,8,Bad,2697.61,31.95322195,5 Years and 11 Months,Yes,1414.392863,10000,Low_spent_Small_value_payments,212.5437403,0,-0.3859,-1.0471,-0.6465,-0.5381,1.3789 +0x15505,CUS_0x9ff5,August,18,913-33-0020,Media_Manager,48259.38,4022.615,8,5,17,6,"Auto Loan, Student Loan, Auto Loan, Mortgage Loan, Home Equity Loan, and Not Specified",14.8937351,9,17.15,9,_,1819.26,37.2185671,9 Years and 3 Months,Yes,162.9793997,391.1759035,Low_spent_Small_value_payments,138.1061967,0,-0.1867,0.3496,-1.2257,-0.5945,-2.1451 +0x15511,CUS_0xf2e,August,31,286-44-9634,Architect,28866.94,2682.578333,10,5,29,9,"Home Equity Loan, Auto Loan, Not Specified, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",,19,2.12,9,_,1587.62,26.09666237,10 Years and 3 Months,Yes,138.3255344,62.29557698,High_spent_Small_value_payments,327.636722,0,1.2579,-1.8206,-0.8162,0.0331,-0.0388 +0x1551d,CUS_0x5b30,August,27,631-30-3731,Mechanic,15475.91,908.4253371,6,7,13,7,"Mortgage Loan, Not Specified, Student Loan, Not Specified, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",13.87726643,13,7.04,4,Standard,1948.99,36.56822883,14 Years and 5 Months,Yes,164.9894124,20.05447262,High_spent_Small_value_payments,259.5558612,0,0.6086,1.3863,0.5739,0.8564,-1.8211 +0x15529,CUS_0xa0c,August,18,767-22-6800,Doctor,16897.53,1165.1275,5,4,25,4,"Auto Loan, Home Equity Loan, Not Specified, and Auto Loan",,21,8.85,16,Standard,2322.35,32.8312805,13 Years and 10 Months,Yes,50.2433452,,High_spent_Medium_value_payments,297.2907379,0,0.0424,0.1721,-0.2537,-0.1397,-1.2351 +0x15535,CUS_0x51d8,August,32,383-53-7720,Journalist,77047.4,6711.616667,2,4,11,1,Debt Consolidation Loan,0.140473886,1,3.95,1,_,952.69,31.68001206,27 Years and 5 Months,No,50.1872956,314.151342,Low_spent_Small_value_payments,596.823029,0,0.8979,-1.0709,1.0384,0.5112,0.1252 +0x15541,CUS_0x7f46,August,24,678-01-6621,Media_Manager,178113.84,14784.82,2,4,10,2,"Home Equity Loan, and Payday Loan",8.314732794,8,2.55,0,Good,249.8806741,41.36112709,31 Years and 3 Months,No,294.2037426,,Low_spent_Medium_value_payments,742.33018,0,-1.119,-0.3013,-0.3592,-1.671,0.4351 +0x1554d,CUS_0x3134,August,49,100-88-4168,Scientist,101855.88,8446.99,3,3,8,0,,0,1,8.23,1,_,1371.87,27.00018527,,No,0,757.3539869,Low_spent_Small_value_payments,377.3450131,0,0.656,0.256,-0.7843,0.5271,-0.2733 +0x15559,CUS_0xa123,August,43,514-14-5445,Media_Manager,24688.88,2256.406667,8,4,9,1,Personal Loan,23.76541593,17,11.74,7,Standard,1014.83,27.71682994,23 Years and 4 Months,No,10.86931686,208.4899291,Low_spent_Large_value_payments,276.2814207,0,-1.3274,-0.3555,1.1782,0.6456,2.7679 +0x15565,CUS_0xb66d,August,18,565-85-5504,Writer,29985.2,,5,8,26,3,"Home Equity Loan, Student Loan, and Student Loan",,20,15.29,14,Standard,1793.18,38.40955203,19 Years and 3 Months,Yes,65.26315554,10000,Low_spent_Small_value_payments,366.4347924,0,-0.0269,1.1473,-0.9351,-0.9381,-0.8898 +0x15571,CUS_0x2547,August,35,716-36-6138,Lawyer,28070.62,,3,3,12,4,"Auto Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",19.47316615,17,8.55,7,Standard,1483.05,29.52290376,9 Years and 0 Months,Yes,63.95505298,152.1735663,High_spent_Small_value_payments,287.5932141,0,-0.777,-0.3963,0.3502,-0.2771,-0.2797 +0x1557d,CUS_0x3f9,August,27,872-42-3881,Scientist,18060.64,,8,7,23,3,"Debt Consolidation Loan, Personal Loan, and Auto Loan",,30.20443424,3.13,7,Bad,1545.892502,25.58356199,,Yes,30.22322907,102.7062559,Low_spent_Small_value_payments,285.0758483,0,-0.713,0.7441,-0.9513,-0.8759,0.6592 +0x15589,CUS_0x4802,August,45,509-17-8630,Scientist,32394.77,,6,4,8,4,"Student Loan, Credit-Builder Loan, Personal Loan, and Payday Loan",29.47843692,20,7.14,6,Standard,475.41,29.039628,18 Years and 4 Months,No,86.04239283,118.7810592,High_spent_Small_value_payments,316.6329647,0,-1.0615,-0.3402,-0.7742,0.9079,2.4802 +0x15595,CUS_0x6817,August,31,951-66-5100,Scientist,145056.64,11965.05333,4,5,10.28836175,6,"Mortgage Loan, Personal Loan, Not Specified, Personal Loan, Auto Loan, and Debt Consolidation Loan",16.37859832,14,15.8,9,_,529.67,35.47135502,6 Years and 0 Months,Yes,474.9304504,,!@9#%8,752.8626276,0,0.5359,0.1041,-0.0955,-1.1336,-1.1755 +0x155a1,CUS_0x29d8,August,26,#F%$D@*&8,Teacher,33271.74,2537.645,8,10,24.06745738,4,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Not Specified",,18.11235109,7.47,6,_,1954.822956,25.82680317,10 Years and 2 Months,Yes,94.06150204,281.1217061,Low_spent_Small_value_payments,141.8610039,0,-0.0359,0.78,0.1408,0.4745,-1.659 +0x155ad,CUS_0x5877,August,56,861-03-1735,Journalist,79710.09,6375.5075,3,4,16,3,"Student Loan, Not Specified, and Student Loan",19.47781902,13,4.85,4,Standard,109.97,26.98743081,33 Years and 2 Months,No,165.054542,433.7901551,Low_spent_Large_value_payments,308.706053,0,-0.3049,0.7067,0.3353,-0.2047,0.3332 +0x155b9,CUS_0x1ce6,August,34,006-25-8423,Journalist,65635.12,,7,7,20,5,"Debt Consolidation Loan, Student Loan, Not Specified, Payday Loan, and Credit-Builder Loan",,18.50116313,2.21,8,Bad,1353.54941,25.76426292,12 Years and 9 Months,Yes,180.1874059,71.59888325,High_spent_Large_value_payments,564.4730442,0,-1.8665,-0.8337,-1.1948,-0.3338,0.663 +0x155c5,CUS_0x8945,August,29,684-28-0826,_______,8453.49,,9,7,18,5,"Auto Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Payday Loan",,20.2869794,1.52,10,_,2627.489302,28.04503414,15 Years and 11 Months,Yes,29.23641589,31.48365847,Low_spent_Medium_value_payments,317.0256756,0,2.1001,0.2585,-0.8513,0.4348,-0.4942 +0x155d1,CUS_0x4c1c,August,42,654-14-2387,Media_Manager,106602.63,8924.5525,7,5,2583,2,"Credit-Builder Loan, and Personal Loan",27.83949236,19,11.33,5,Standard,962.51,44.59099159,30 Years and 6 Months,No,125.9142627,10000,High_spent_Large_value_payments,885.5243827,0,0.6453,0.0162,1.745,-0.5577,-0.3021 +0x155dd,CUS_0x8171,August,38,564-93-4153,Teacher,56227.47,4558.6225,8,8,22,5,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,23,31.58,14,Bad,2557.06,30.91660619,11 Years and 11 Months,Yes,196.6202025,,Low_spent_Medium_value_payments,115.0462471,0,-0.3582,-0.2924,-1.1479,-0.8909,-0.4531 +0x155e9,CUS_0xa336,August,44,849-68-8970,Musician,55735.62,4939.635,7,4,13.28836175,2,"Student Loan, Payday Loan, and Personal Loan",13.57474163,,5.29,1,_,48.86,38.42468413,25 Years and 4 Months,No,122.9193557,491.0562257,High_spent_Large_value_payments,539.9253797,0,-0.3441,0.3631,-0.1609,-1.1563,1.0474 +0x155f5,CUS_0x3906,August,24,835-52-7572,Writer,57829.74,4689.145,4,3,12,2,"Auto Loan, and Home Equity Loan",17.06681441,,12.77,9,Standard,170.06,39.79548568,,NM,88.88510991,106.9457435,High_spent_Medium_value_payments,523.0836466,0,0.1633,0.4697,1.1542,1.0492,0.4448 +0x15601,CUS_0x6894,August,39,043-33-2748,Media_Manager,14388.68,,6,8,25.88954781,100,"Not Specified, Home Equity Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Auto Loan",,24,15.78,17,Bad,3394.390256,26.29461172,1 Years and 4 Months,Yes,1410.505448,27.28174653,High_spent_Large_value_payments,211.9469872,0,1.2369,0.3201,0.2411,-0.2931,-0.7374 +0x1560d,CUS_0x8fa8,August,51,774-87-0981,Media_Manager,40639.06,3572.588333,1,1,3,0,,13.06582936,,3.5,4,Good,853.92,27.17660105,23 Years and 9 Months,No,0,125.2929787,Low_spent_Small_value_payments,521.9658546,0,-1.3176,-0.7494,0.0394,-0.4008,-1.1533 +0x15619,CUS_0x21f4,August,53,587-32-3592,Doctor,114597.04,,7,6,4,4,"Auto Loan, Not Specified, Payday Loan, and Student Loan",,9.520291868,10.54,2,Good,1024.373254,26.4363128,31 Years and 9 Months,No,225.9237623,327.6196683,High_spent_Medium_value_payments,633.1319027,0,-0.7174,0.9335,-0.5409,0.0946,-0.2419 +0x15625,CUS_0x2c13,August,27,071-83-5848,Media_Manager,15591.37,,5,7,26,2,"Not Specified, and Credit-Builder Loan",18.94505763,17.91637056,18.5,13,Standard,1442.948438,22.7389485,6 Years and 9 Months,Yes,16.35649405,131.828269,Low_spent_Small_value_payments,276.7433203,0,-0.6099,-1.1457,-0.7973,0.4254,-0.6248 +0x15631,CUS_0xbb6a,August,38,824-81-1271,Mechanic,21114.95,,4,7,12,1,Personal Loan,10.08694634,9.283207688,3.54,8,_,974.2698902,25.35859549,,No,9.60864464,78.77893315,Low_spent_Small_value_payments,349.4703389,0,0.6164,-1.0636,0.2776,0.5621,-0.1885 +0x1563d,CUS_0x97d,August,35,004-06-1187,Accountant,8940.905,985.5569044,8,9,19.95700519,6,"Home Equity Loan, Home Equity Loan, Student Loan, Not Specified, Not Specified, and Credit-Builder Loan",,29.25816262,16.84,9,Bad,2993.880288,27.31024722,4 Years and 8 Months,Yes,1363.581093,79.31821777,Low_spent_Small_value_payments,229.5763738,0,-0.3339,-1.6018,-1.1602,-0.1588,-1.123 +0x15649,CUS_0x68ef,August,34,889-56-0995,Architect,45012.72,,4,3,9,4,"Student Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",23.60687117,19,17.9,5,Standard,1661.328996,23.51826783,20 Years and 8 Months,Yes,351.5634875,,High_spent_Large_value_payments,461.5693811,0,-2.2563,-0.9473,0.991,-0.8788,0.4248 +0x15655,CUS_0x5737,August,34,915-29-8924,Architect,60195.36,4912.28,0,5,3,2,"Student Loan, and Payday Loan",3.721705742,3,7.69,3,Good,376.47,31.60335783,30 Years and 3 Months,No,52.93545646,416.3955634,Low_spent_Large_value_payments,291.8969802,0,-0.3188,-0.6367,-0.7444,0.8468,0.5659 +0x15661,CUS_0x6bc0,August,29,191-18-9591,Accountant,10172.3,,10,8,33.88954781,100,"Debt Consolidation Loan, Payday Loan, Payday Loan, Not Specified, Personal Loan, and Home Equity Loan",20.92216739,16,7.39,13,Standard,2054.39,34.76991799,9 Years and 10 Months,Yes,1359.972691,114.5492984,!@9#%8,225.8170958,0,0.4598,-0.1857,-0.2689,-0.7199,0.9682 +0x1566d,CUS_0x6b3a,August,38,578-99-4058,Doctor,31680.74,,6,6,26,3,"Auto Loan, Home Equity Loan, and Debt Consolidation Loan",,18,0.56,12,_,1280.16,38.42020922,8 Years and 2 Months,Yes,72.43564255,24.59274876,High_spent_Large_value_payments,409.9777754,0,1.2054,-0.3709,0.0366,-0.4962,-1.184 +0x15679,CUS_0x68cf,August,28,008-60-9208,Developer,9389.1,,8,9,34.88954781,9,"Payday Loan, Student Loan, Mortgage Loan, Student Loan, Student Loan, Auto Loan, Personal Loan, Payday Loan, and Mortgage Loan",34.04174933,24.82765085,20.29,11,Bad,3143.316879,35.47447513,11 Years and 4 Months,Yes,1387.665381,52.81070191,Low_spent_Large_value_payments,230.2363361,0,0.3055,-0.572,-0.4946,0.4146,-0.4841 +0x15685,CUS_0xb7f1,August,38,#F%$D@*&8,Lawyer,32200.64,,9,5,18.06745738,7,"Personal Loan, Payday Loan, Student Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",32.21940548,18.63555863,0.62,10,_,2539.293498,28.35522984,8 Years and 6 Months,Yes,140.793865,158.9706896,High_spent_Small_value_payments,188.7538241,0,-1.0831,1.981,0.2433,-1.3758,-1.4864 +0x15691,CUS_0xab01,August,33,775-12-8331,Writer,62574.16,5004.513333,10,8,16.88954781,785,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Auto Loan, Auto Loan, and Personal Loan",27.54503085,18,18.77,12,Bad,3697.41,34.94762927,12 Years and 10 Months,NM,1564.838684,235.2933201,Low_spent_Small_value_payments,295.9892475,0,1.2023,-0.7477,-0.0705,-1.3961,-0.9714 +0x1569d,CUS_0x13b2,August,27,404-97-1261,Musician,21440.93,,5,3,9,3,"Payday Loan, Personal Loan, and Auto Loan",14.64218053,9,6.15,3,Standard,969.29,28.29631643,33 Years and 2 Months,No,35.27302502,,Low_spent_Medium_value_payments,348.395657,0,0.8359,0.8877,-0.1273,-0.2878,-0.176 +0x156a9,CUS_0x93f,August,19,001-68-2340,Writer,7371.05,,3,6,29.06745738,5,"Home Equity Loan, Auto Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",23.66438535,16,14.63,11,Standard,1956.350954,37.64167377,16 Years and 10 Months,Yes,28.24828587,37.12949833,Low_spent_Medium_value_payments,228.2273445,0,-0.5584,1.2771,-0.9634,-0.1408,0.8797 +0x156b5,CUS_0x36f2,August,40,661-06-7195,Scientist,15366.215,,4,4,15,1,Auto Loan,24.37503835,16,8.58,0,Standard,189.59,27.27031337,29 Years and 8 Months,No,9.091012304,115.307119,Low_spent_Small_value_payments,265.2536604,0,0.1884,-0.7226,0.4671,1.2681,-0.4197 +0x156c1,CUS_0x301d,August,19,#F%$D@*&8,Writer,79829.6,,8,7,26,7,"Auto Loan, Student Loan, Student Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",19.61574002,15,17.63,6,Standard,2200.1,25.21943831,19 Years and 6 Months,Yes,448.512862,802.1840051,Low_spent_Small_value_payments,,0,-1.2683,0.5728,-0.0012,1.4659,0.1721 +0x156cd,CUS_0x861a,August,18,973-17-0279,Scientist,47828.67,4107.7225,8,915,7,6,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Home Equity Loan",25.48601246,16,16.73,7,Standard,1379.29,34.47102584,20 Years and 3 Months,Yes,230.7983297,132.9459247,High_spent_Medium_value_payments,297.0279955,0,-0.8832,0.8188,-1.0302,-0.6298,0.3463 +0x156d9,CUS_0x1de5,August,23,269-18-2158,Accountant,64122.84,5053.57,7,6,29,4,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",40.19825452,27.89218809,11.48,12,Bad,1512.737322,38.37767641,9 Years and 6 Months,Yes,147.0690963,354.2371774,Low_spent_Large_value_payments,274.0507263,0,2.1637,0.3332,1.3978,1.5291,-0.0453 +0x156e5,CUS_0x7641,August,24,329-66-7043,Developer,47504.49,,8,7,29.06745738,6,"Not Specified, Auto Loan, Not Specified, Mortgage Loan, Auto Loan, and Debt Consolidation Loan",28.5823415,15,22.55,8,_,2738.640954,38.85433417,11 Years and 9 Months,Yes,146.0481603,105.1312855,High_spent_Medium_value_payments,348.1710163,0,-0.5119,-0.4409,-0.0268,1.3944,-0.5332 +0x156f1,CUS_0x3d78,August,43,290-53-1322,Doctor,10389.32,,3,6,24,6,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, and Personal Loan",23.30451993,21.34534148,16.36,8,Standard,2147.293539,35.86416997,14 Years and 2 Months,Yes,95.41140512,10000,Low_spent_Medium_value_payments,262.9735228,0,-0.8299,1.4708,0.7952,0.974,-0.6896 +0x156fd,CUS_0x7765,August,23,566-24-8004,Entrepreneur,15777.945,,0,4,12,1,Debt Consolidation Loan,,12,6.89,4,Good,885.217457,39.76059766,32 Years and 0 Months,NM,6.637556692,48.69901661,High_spent_Small_value_payments,340.4331322,0,0.2949,-0.8264,0.4728,1.4318,1.4781 +0x15709,CUS_0x47d5,August,40,430-53-9095,Developer,10079.865,,9,6,26,9,"Credit-Builder Loan, Student Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Student Loan, and Personal Loan",,28.02813825,20.95,11,Bad,3970.580635,29.61070408,,Yes,44.86147622,39.71727526,!@9#%8,253.1201235,0,1.5531,0.0801,-0.2076,1.0549,-1.1635 +0x15715,CUS_0x1fcd,August,23,372-32-6203,Architect,66519.63,5759.3025,1355,3,8,2,"Student Loan, and Auto Loan",18.44469092,13,1.12,2407,Standard,64.27,25.97563531,17 Years and 11 Months,No,99.19363074,97.57862855,High_spent_Large_value_payments,619.1579907,0,0.7678,2.0767,0.3263,1.0151,0.3091 +0x15721,CUS_0x466a,August,51,363-86-6263,Manager,36868.13,,6,4,3,0,,32.19412387,20,3.88,4,Good,1360.71,35.35043409,26 Years and 3 Months,No,0,209.0179326,Low_spent_Medium_value_payments,377.116484,0,-0.5775,-0.3832,0.0355,-0.7149,0.0268 +0x1572d,CUS_0x8853,August,34,926-84-8152,Journalist,43549.86,,7,5,25.06745738,9,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Personal Loan",,23,21.52,6,Bad,4863.000954,29.18851577,12 Years and 8 Months,Yes,193.1143792,33.0908676,!@9#%8,354.2899652,0,-0.7512,-0.9683,-1.3591,-0.4126,0.3843 +0x15739,CUS_0x9c79,August,19,666-69-1793,Scientist,81165.56,6867.796667,4,5,3,3,"Student Loan, Mortgage Loan, and Not Specified",2.09394482,4,9.99,4,Good,1137.611012,26.4807721,24 Years and 10 Months,NM,151.7464949,102.3467849,!@9#%8,683.7898364,0,-1.0664,-0.2393,0.3998,-1.721,-0.7662 +0x15745,CUS_0x21a7,August,28,240-74-6989,Musician,126732.6,10443.05,7,5,15.28836175,4,"Student Loan, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",,9,11.6,,Standard,18.99,32.23663028,24 Years and 6 Months,No,294.9937276,584.8001426,High_spent_Large_value_payments,824.4485908,0,-0.9011,-0.4514,0.6896,0.2045,-0.8825 +0x15751,CUS_0x7768,August,42,971-95-9546,Journalist,104946.48,8701.54,3,3,10.28836175,4,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",1.1734641,5,7.54,3,Good,1218.121382,36.84767645,17 Years and 5 Months,NM,12532,1323.408972,Low_spent_Medium_value_payments,,0,-0.5601,-1.962,1.9733,-0.3265,-0.4242 +0x1575d,CUS_0x4ee7,August,37,999-01-9823,Engineer,128502.39,,1,4,11,0,,1.422122153,5,8.53,8,Good,1269.774748,39.29394569,21 Years and 10 Months,No,0,806.9975815,High_spent_Small_value_payments,602.8450352,0,1.1989,0.3516,-0.9402,-0.8276,0.1067 +0x15769,CUS_0x872b,August,26,199-14-9559,Mechanic,8898.495,,8,10,34.95700519,7,"Auto Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",25.13133269,9.46717067,16.57,10,Standard,3189.418257,40.50667495,6 Years and 10 Months,Yes,1360.552803,27.69119932,Low_spent_Medium_value_payments,244.5597539,0,-0.4421,0.965,1.7787,0.4744,-0.0048 +0x15775,CUS_0xbb2a,August,23,700-78-2708,Writer,62458.77,,8,6,20,4,"Credit-Builder Loan, Personal Loan, Personal Loan, and Personal Loan",13.066635,12,16.02,7,Standard,1055.488527,24.58132908,20 Years and 0 Months,Yes,199.0462556,443.5614133,Low_spent_Medium_value_payments,222.5515134,0,-0.5402,-1.2313,0.2326,-1.5162,-1.2286 +0x15781,CUS_0x8a30,August,51,972-56-1708,Engineer,34188.05,,5,1275,16.28836175,0,,21.67353065,18,7.71,8,Standard,31.79554526,33.6698636,29 Years and 3 Months,Yes,0,573.5739831,Low_spent_Small_value_payments,435.1455567,0,0.178,-0.1441,0.8453,0.1696,0.3915 +0x1578d,CUS_0x15f1,August,33,097-15-4981,_______,51568.11,,6,10,26,5,"Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",,14,,11,_,2620.12,36.11804355,10 Years and 2 Months,Yes,172.0831023,94.30047932,High_spent_Large_value_payments,375.2506683,0,1.1753,0.7076,-0.8609,0.2742,0.5661 +0x15799,CUS_0x70a3,August,22,291-89-8959,Accountant,14920.97,,6,10,17.06745738,2,"Auto Loan, and Student Loan",,18.63385533,13.48,12,Standard,1645.543403,38.49729087,13 Years and 6 Months,Yes,19.90951246,137.1716121,Low_spent_Medium_value_payments,238.6400042,0,-0.3904,-0.1657,-0.6558,2.1057,-2.5242 +0x157a5,CUS_0x4287,August,25,271-62-6210,Scientist,21595.875,2061.65625,5,7,7,1,Auto Loan,0,2.291684138,10.46,4,Good,728.8563709,33.73562185,21 Years and 11 Months,NM,13.08293848,172.0780187,Low_spent_Large_value_payments,291.0046678,0,0.7303,1.0198,0.1973,-1.8283,-1.592 +0x157b1,CUS_0xb887,August,38,880-09-9170,Teacher,26029.41,,3,7,12,1127,"Student Loan, and Credit-Builder Loan",18.18442538,15,10.88,1,_,364.9901683,33.65810145,25 Years and 3 Months,No,33.70115162,77.32642902,High_spent_Medium_value_payments,342.968413,0,0.5987,0.3787,0.0236,-0.1109,1.2216 +0x157bd,CUS_0x888e,August,38,664-83-0007,Accountant,107808.63,9147.0525,4,7,19,4,"Mortgage Loan, Student Loan, Debt Consolidation Loan, and Not Specified",22.05724568,20,5.59,6,Standard,431.7791543,23.64550363,31 Years and 0 Months,No,347.4841037,1009.809921,Low_spent_Medium_value_payments,,0,-1.5484,-1.1608,-1.1634,0.2542,1.0795 +0x157c9,CUS_0x81de,August,41,#F%$D@*&8,_______,86418.72,7085.56,1,3,5.288361749,2,"Not Specified, Student Loan, and Student Loan",12.13355024,13,1.25,0,Good,451.6036815,25.39363849,28 Years and 11 Months,No,187.87942,562.3069254,High_spent_Large_value_payments,637.6333143,0,-1.3743,-1.8386,0.1322,-0.998,-0.425 +0x157d5,CUS_0xa7cd,August,48,753-72-5171,Media_Manager,18290.89,1228.240833,8,4,14,1,Payday Loan,27.84398375,18.25266705,0.16,3,_,592.9535747,22.21678842,31 Years and 3 Months,Yes,12.79615829,,Low_spent_Large_value_payments,323.4494391,0,0.9512,0.1171,2.0428,-0.8708,1.8327 +0x157e1,CUS_0x5db2,August,22,929-83-1124,Musician,9400.43,847.3691667,7,8,22,5,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Auto Loan",,17,28.9,16,Bad,4505.63,36.605756,7 Years and 4 Months,Yes,30.33870136,80.14945156,Low_spent_Medium_value_payments,254.2487637,0,0.5725,0.7693,1.1128,-0.566,0.3551 +0x157ed,CUS_0xb99e,August,32,496-36-8312,Scientist,9900,,7,9,28.06745738,2,"Home Equity Loan, and Personal Loan",23.76613996,,17.73,13,Standard,2237.009311,33.17535261,19 Years and 3 Months,Yes,10.72940836,63.93343351,Low_spent_Small_value_payments,281.2168702,0,-0.7286,0.5924,0.6785,-0.2051,-0.2483 +0x157f9,CUS_0x8697,August,23,427-61-8430,Teacher,17916.46,,10,9,18.88954781,7,"Student Loan, Personal Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",38.80603128,19,17.21,12,Bad,4751.52,35.98056148,11 Years and 3 Months,Yes,1468.369194,,Low_spent_Small_value_payments,189.9591475,0,-1.0877,1.0051,-1.8015,-0.2032,-0.3722 +0x15805,CUS_0x2ab3,August,18,928-63-7229,Musician,35891.33,,5,4,9,3,"Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",,13,,5,Standard,638.27,34.55822549,8 Years and 5 Months,Yes,240.3940367,264.5540052,Low_spent_Medium_value_payments,268.6198245,0,0.4065,-3.1449,-0.3724,0.1216,-0.2876 +0x15811,CUS_0x5247,August,19,984-58-2416,Doctor,38197.25,,1,6,9,2,"Student Loan, and Not Specified",5.052397458,7,5.28,6,Good,822.881367,24.32904611,23 Years and 11 Months,No,44.12466476,,Low_spent_Small_value_payments,215.5473111,0,-0.2716,0.2154,-0.2453,-0.1892,-0.128 +0x1581d,CUS_0x5da3,August,30,333-52-1932,Engineer,17271.525,1269.29375,8,3,5,1,Debt Consolidation Loan,21.20064702,18,4.74,0,Good,825.102546,32.13887349,32 Years and 9 Months,No,13.31441945,172.4510923,Low_spent_Small_value_payments,250.8097284,0,1.5029,0.2818,-1.1724,-1.0097,-0.437 +0x15829,CUS_0x323f,August,25,805-19-6318,Mechanic,15620.91,,4,6,4,0,,0,1.174203909,11.17,5,Good,912.7216101,28.8003437,15 Years and 10 Months,No,0,97.47309211,Low_spent_Small_value_payments,294.3011579,0,-0.7165,0.0346,-1.1305,-1.3737,0.501 +0x15835,CUS_0x65fc,August,38,238-34-4780,Lawyer,133180.71,,1,6,4,0,,10.80357716,10,4.2,1,_,676.45,34.50479839,32 Years and 3 Months,No,0,352.5109016,High_spent_Small_value_payments,1018.928348,0,-0.2502,-0.4888,-0.5235,0.0074,-1.7097 +0x15841,CUS_0x3139,August,18,490-80-5398,Accountant,19369.96,1791.163333,6,5,18,4,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",26.87454836,21,17.39,9,Standard,1266.31,30.48539036,,Yes,57.41221246,222.341625,Low_spent_Small_value_payments,189.3624959,0,0.2882,0.1252,1.7323,0.0528,1.2682 +0x1584d,CUS_0x5ed2,August,26,558-96-0647,Engineer,9968.5,,8,6,32.06745738,6,"Personal Loan, Not Specified, Home Equity Loan, Not Specified, Not Specified, and Payday Loan",41.33975439,28.20249096,1.38,6,Bad,2161.122364,30.2751896,20 Years and 2 Months,Yes,34.81132415,10000,Low_spent_Small_value_payments,274.6838514,0,-1.9301,0.8958,-1.0337,-0.6194,-0.1103 +0x15859,CUS_0x7a4d,August,49,#F%$D@*&8,Writer,105295.08,,2,3,6.288361749,4,"Personal Loan, Auto Loan, Not Specified, and Not Specified",,0,10.02,6,Good,353.1953661,26.95204247,27 Years and 11 Months,No,178.3674403,716.4606507,Low_spent_Large_value_payments,680.56837,0,0.9969,0.4465,0.8069,-0.9493,0.1392 +0x15865,CUS_0xbf66,August,44,924-02-1044,Writer,68611.44,5790.62,3,3,1688,2,"Not Specified, and Not Specified",1.741481058,1.204428534,6.87,2,Good,1267.83515,31.80401228,19 Years and 5 Months,No,89.44055935,153.8357947,Low_spent_Medium_value_payments,615.7856459,0,-0.9443,-1.6315,0.0116,-0.619,-0.5995 +0x15871,CUS_0x5f5d,August,27,618-70-8009,Writer,30738.51,2438.5425,3,7,3,1,Student Loan,16.85819835,13,-3.58,7,_,645.49,26.82783342,31 Years and 10 Months,No,22.81589378,70.84256142,High_spent_Medium_value_payments,400.1957948,0,0.4144,-0.2298,1.2726,1.2983,0.0918 +0x1587d,CUS_0x1dbb,August,28,000-89-8752,_______,7187.17,,8,8,22,5,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Student Loan, and Not Specified",45.81497432,29.53053891,15.44,9,Bad,1565.352462,37.87554864,8 Years and 3 Months,Yes,26.82521296,49.21408453,Low_spent_Medium_value_payments,252.8537858,0,-1.1952,0.2804,1.0276,0.8061,-0.2965 +0x15889,CUS_0x83ef,August,18,332-20-3492,Teacher,76079.16,6462.93,0,5,3,4,"Student Loan, Auto Loan, Not Specified, and Student Loan",0,0,10.18,4,Good,677.8332703,26.56903611,25 Years and 3 Months,No,136.9389238,11610.00725,!@9#%8,452.9892062,0,-0.353,-0.0842,0.382,0.02,-0.4125 +0x15895,CUS_0x84fe,August,38,579-44-7984,Media_Manager,30111.3,,7,5,15,9,"Auto Loan, Mortgage Loan, Personal Loan, Not Specified, Mortgage Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Student Loan",42.04560533,22.61398413,6.31,14,Bad,3481.703401,32.6631569,4 Years and 6 Months,Yes,140.8366259,,Low_spent_Small_value_payments,196.1504257,0,-0.2225,0.5851,1.2367,-1.9633,0.3231 +0x158a1,CUS_0xc00f,August,31,792-34-9499,Lawyer,57617.88,4398.371681,6,9,26,9,"Personal Loan, Auto Loan, Not Specified, Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, and Student Loan",44.30460396,25,2.49,6,Bad,1747.08,26.13205619,6 Years and 10 Months,Yes,635.088082,490.8963654,Low_spent_Small_value_payments,,0,1.1717,-0.2627,-2.6725,0.5963,-1.9005 +0x158ad,CUS_0x4946,August,42,121-29-4094,Architect,20346.15,1901.5125,10,6,25.06745738,8,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",,20.39444396,5.19,14,Bad,1918.716664,28.30877154,,Yes,60525,141.5909773,Low_spent_Small_value_payments,239.5460868,0,-0.7812,0.0984,-0.4327,-0.4818,-1.7129 +0x158b9,CUS_0xc88,August,45,354-83-1291,Doctor,29378.06,2312.171667,7,6,17,4,"Credit-Builder Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",11.15810936,8,8.81,6,_,1078.84,36.82686696,18 Years and 5 Months,Yes,93.01729318,16.16564755,High_spent_Large_value_payments,362.0342259,0,-0.3051,0.2438,-0.7888,0.9285,-0.0068 +0x158c5,CUS_0x9486,August,45,335-91-9347,Musician,15659.78,1132.981667,9,9,21,8,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, and Personal Loan",40.40408145,22.7920271,3.9,11,Bad,2566.238044,26.40343525,14 Years and 3 Months,Yes,66.23584191,85.80506135,Low_spent_Small_value_payments,251.2572634,0,0.2078,-0.1381,-0.5198,-0.396,-0.5062 +0x158d1,CUS_0x4c9b,August,38,852-86-5759,Lawyer,27947.42,,7,5,15,2,"Auto Loan, and Not Specified",25.92001025,18,11.04,5,Standard,1472.05,28.93790848,32 Years and 8 Months,Yes,31.3353616,57.56156678,High_spent_Medium_value_payments,409.9982383,0,-1.9102,0.0748,-0.1465,-0.9362,0.1017 +0x158dd,CUS_0x9b27,August,50,479-44-2633,Developer,12382.94,,4,3,10,3,"Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",,14,18.06,7,Standard,407.8,37.57168491,28 Years and 11 Months,Yes,20.80195026,102.0887147,Low_spent_Small_value_payments,273.3005017,0,-1.5011,1.1961,1.1232,1.7592,0.7795 +0x158e9,CUS_0x7b47,August,28,874-02-7975,Journalist,98638.16,,6,1215,14,5,"Payday Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, and Not Specified",19.41127764,14,12.85,11,Standard,1475.05,27.75645886,17 Years and 8 Months,Yes,662.9654287,,!@9#%8,197.4858716,0,-2.0896,-1.0539,-0.5374,0.8372,1.6963 +0x158f5,CUS_0x1bb0,August,48,415-44-1369,Entrepreneur,20849.95,,8,3,7,1,Payday Loan,26.59577743,20,4.83,2,Standard,327.77,29.31649307,27 Years and 6 Months,No,9.060348683,135.3568614,Low_spent_Small_value_payments,340.7323733,0,-1.1735,-0.2564,2.1503,-1.0631,0.3957 +0x15901,CUS_0xbd5e,August,52,745-59-9139,Journalist,37452.59,,4,3,1,1,Credit-Builder Loan,8.340274724,9,4.11,8,Good,1175.450712,25.66353812,20 Years and 11 Months,No,29.05427308,42.206466,High_spent_Large_value_payments,468.9085884,0,2.4734,0.0701,-1.0063,0.566,-0.739 +0x1590d,CUS_0x5d6a,August,37,#F%$D@*&8,Entrepreneur,66074.92,5221.243333,8,6,32,6,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",46.95291743,24.72060042,1.27,16,Bad,2268.126835,25.01237213,7 Years and 9 Months,Yes,217.6214021,,Low_spent_Small_value_payments,167.7799973,0,-2.4207,0.1325,1.2241,-1.1685,1.0848 +0x15919,CUS_0x3fde,August,34,506-39-3987,Scientist,32033.29,,5,3,5,4,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Not Specified",16.10411535,13,0.64,5,Standard,1475.3,34.53776925,20 Years and 3 Months,No,71.3011565,205.8409978,Low_spent_Large_value_payments,260.301929,0,1.3569,1.0093,1.5708,1.9612,1.6715 +0x15925,CUS_0x26a7,August,41,944-91-6347,Teacher,28023.54,,5,446,12,3,"Home Equity Loan, Debt Consolidation Loan, and Auto Loan",17.43499488,,14.37,8,Standard,1151.05,29.2119486,,Yes,41.31955338,195.88842,Low_spent_Large_value_payments,286.0215266,0,0.7612,-0.529,0.8445,0.1512,1.5163 +0x15931,CUS_0x3acc,August,37,132-30-4857,Manager,30784.67,2682.389167,4,7,9,2,"Debt Consolidation Loan, and Not Specified",28.35972548,18,8.28,3,_,1362.65,26.30666937,24 Years and 8 Months,Yes,28.1622096,,Low_spent_Small_value_payments,205.6865212,0,-1.2126,-0.8095,-0.6093,-0.4777,1.5694 +0x1593d,CUS_0x7e0f,August,44,349-39-1974,Architect,165368.56,13561.71333,2,2,0.288361749,0,Not Specified,,11,9.22,0,Good,1115.017574,28.64820469,16 Years and 6 Months,No,78.52806891,1535.225064,Low_spent_Medium_value_payments,557.318639,0,0.8103,-0.5818,1.1336,-0.9273,0.9291 +0x15949,CUS_0x3baf,August,34,808-50-9635,Developer,115086.6,,4,7,14,4,"Auto Loan, Credit-Builder Loan, Not Specified, and Auto Loan",20.42908909,16,18.2,,Standard,1122.32,37.33209379,20 Years and 4 Months,Yes,377.8963393,390.0423005,High_spent_Medium_value_payments,460.0163602,0,0.1907,-0.0602,-3.7507,0.4735,0.2918 +0x15955,CUS_0x33d6,August,22,403-38-6794,Developer,17599.48,,2,6,6,1412,Payday Loan,,1,,0,Good,1319.290624,36.2816708,19 Years and 2 Months,No,13.08069088,86.33708787,!@9#%8,290.1230767,0,1.3231,-0.4817,-0.1036,-0.9496,-1.1143 +0x15961,CUS_0x56b9,August,30,335-16-7428,Doctor,48644.8,4142.733333,6,6,4.288361749,4,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",10.2955435,10,3.12,2,Standard,539.35,28.52089698,31 Years and 11 Months,No,121.558671,467.6635866,High_spent_Medium_value_payments,494.9885367,0,-0.1547,0.5226,-0.2368,-0.8353,0.1403 +0x1596d,CUS_0x5f45,August,31,257-90-5790,Journalist,28747.25,,3,4,3,2,"Mortgage Loan, and Auto Loan",,11,1.59,7,Good,1317.980258,27.46563037,16 Years and 0 Months,No,153.4724476,66.78239642,High_spent_Medium_value_payments,395.3538319,0,0.3311,0.8708,-0.0723,-0.1606,-0.5896 +0x15979,CUS_0x24ee,August,38,313-17-3944,Engineer,15496.42,1059.368333,7,7,26.06745738,7,"Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",42.71892545,21.95707055,8.65,11,Bad,2347.888943,25.04036819,20 Years and 2 Months,Yes,72.70667922,,Low_spent_Medium_value_payments,216.7287801,0,0.6106,0.4522,-0.4256,-0.333,-0.4749 +0x15985,CUS_0x3e17,August,44,754-95-5102,Media_Manager,57502.5,,10,5,24,7,"Student Loan, Credit-Builder Loan, Payday Loan, Not Specified, Payday Loan, Auto Loan, and Not Specified",,12.53453298,15.26,9,Standard,2824.509399,40.17542825,19 Years and 4 Months,Yes,286.5259334,182.6522075,Low_spent_Small_value_payments,326.4093591,0,0.3322,1.1364,2.8025,-0.1889,-0.1335 +0x15991,CUS_0x4d6d,August,44,173-39-8666,_______,86865.84,7479.82,4,7,11,4,"Payday Loan, Home Equity Loan, Auto Loan, and Not Specified",,7,4,4,Good,469.39,35.96963043,24 Years and 4 Months,No,282.0481917,942.3718469,Low_spent_Small_value_payments,,0,1.1631,0.0063,-0.3662,0.4074,0.2942 +0x1599d,CUS_0x40be,August,39,535-60-3557,Mechanic,23923.54,,4,7,15,4,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",18.93896955,12,11.46,1,Standard,877.44,34.63795951,,No,78.25312442,44.44635011,High_spent_Medium_value_payments,300.2633588,0,-1.1088,-1.3774,1.5808,-0.1998,-1.9981 +0x159a9,CUS_0x3b9d,August,40,303-61-1404,Entrepreneur,73226.6,6192.216667,10,5,22,6,"Debt Consolidation Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Auto Loan",44.22848951,21.71564879,12.62,8,_,2817.635339,34.57524861,14 Years and 8 Months,Yes,270.7572085,342.2594461,Low_spent_Medium_value_payments,286.205012,0,-0.0707,-0.2789,0.8916,0.0281,0.6683 +0x159b5,CUS_0xaa4,August,46,951-05-7822,Architect,36760.86,,6,5,17,5,"Not Specified, Debt Consolidation Loan, Not Specified, Not Specified, and Home Equity Loan",,19.86309489,21.76,12,Bad,3981.391856,31.08243007,,NM,151.6354205,239.6363395,Low_spent_Small_value_payments,195.4687401,0,1.0326,1.4364,0.772,1.0523,-0.559 +0x159c1,CUS_0xada3,August,19,764-30-4139,Writer,28059.97,,3,7,6,1,Payday Loan,9.644832556,9,15.37,2,Good,80.83,34.4627492,29 Years and 9 Months,NM,21.4919655,25.20921395,High_spent_Large_value_payments,424.5319039,0,0.4943,-0.785,-0.9305,0.223,0.0568 +0x159cd,CUS_0xb97,August,18,923-98-0119,Developer,14160.58,1067.048333,7,7,14,0,,23.06070297,17,18.46,7,_,670.02,29.39563148,24 Years and 8 Months,NM,0,100.1331171,Low_spent_Medium_value_payments,286.5717163,0,-1.301,-1.1551,0.2188,-2.1248,-0.3745 +0x159d9,CUS_0xac5a,August,26,#F%$D@*&8,Accountant,43428.47,3410.533902,5,6,12,100,,0,1,11.96,1,Good,1083.720575,36.73040669,18 Years and 4 Months,No,320.5052646,,High_spent_Medium_value_payments,480.6217767,0,0.2001,1.2823,-0.9591,0.421,-0.5472 +0x159e5,CUS_0xb749,August,27,351-84-1643,Mechanic,40636.56,3460.38,2,6,1,1,Not Specified,11.03918241,8.533736338,5.91,4,Good,540.5759332,26.03703329,28 Years and 5 Months,No,31.22680724,168.991063,!@9#%8,435.8201298,0,-0.4696,-1.306,1.497,0.0379,0.0239 +0x159f1,CUS_0x8a27,August,23,431-33-1435,Engineer,88556.58,7464.715,6,3,11.28836175,0,Not Specified,,19,2.16,3,_,968.19,36.67661598,29 Years and 8 Months,No,61.13806926,1086.428155,Low_spent_Medium_value_payments,298.8427366,0,-0.0139,-0.8356,0.4094,0.759,-0.5534 +0x159fd,CUS_0x1b9c,August,42,253-28-5253,Media_Manager,11603.81,900.9841667,6,7,12,2,"Mortgage Loan, and Not Specified",,15,7.4,4,Good,9.645141604,29.2971496,20 Years and 2 Months,No,15.04266866,77.68296989,Low_spent_Large_value_payments,278.8197917,0,0.285,0.0354,-0.5538,0.8949,0.5468 +0x15a09,CUS_0x18ab,August,20,023-12-4309,Musician,14840.5,1501.708333,9,8,25,9,"Not Specified, Home Equity Loan, Auto Loan, Payday Loan, Student Loan, Personal Loan, Mortgage Loan, Not Specified, and Auto Loan",28.66583638,22,22.07,7,Bad,2685.41,27.71028167,12 Years and 3 Months,Yes,84.42084263,,Low_spent_Small_value_payments,164.5545434,0,1.2035,-1.5078,0.7378,0.2613,-2.252 +0x15a15,CUS_0x8a47,August,45,533-77-7750,Journalist,65163,5586.25,3,3,5.288361749,4,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Mortgage Loan",8.01626989,9,18.2,4,Standard,64.66,34.20122601,11 Years and 10 Months,Yes,224.5207004,563.0019684,High_spent_Small_value_payments,451.0397922,0,0.6054,0.4016,-0.7426,0.5357,0.5283 +0x15a21,CUS_0xa737,August,29,286-09-5110,Accountant,79556.37,6378.6975,8,5,19,0,,,20,9.88,7,Standard,1191.79,32.35636607,30 Years and 4 Months,Yes,0,107.6858384,High_spent_Large_value_payments,770.1839116,0,-0.4983,1.0696,0.6736,0.9857,0.3558 +0x15a2d,CUS_0x470c,August,40,973-06-1882,Accountant,66995.86,5384.988333,3,6,15,999,,27.85015055,19,8.16,4,Standard,554.69,25.30495604,21 Years and 8 Months,Yes,0,71.31690269,High_spent_Large_value_payments,707.1819306,0,2.2026,0.5776,0.7394,-0.7171,0.698 +0x15a39,CUS_0xc58,August,45,398-06-7978,Developer,31185.98,2434.831667,6,6,14,4,"Student Loan, Auto Loan, Student Loan, and Payday Loan",6.131696054,8,10.41,10,Standard,2089.89,25.70178877,15 Years and 3 Months,NM,92.52719106,275.2667634,Low_spent_Small_value_payments,165.6892122,0,0.4622,-0.3288,-1.4603,-0.884,-1.2048 +0x15a45,CUS_0x73e6,August,27,732-04-5437,Developer,25290.87,1868.5725,3,5,17,3,"Student Loan, Mortgage Loan, and Student Loan",12.88899991,12,17.1,5,_,340.65,36.36631889,21 Years and 10 Months,Yes,59.86693432,123.372608,High_spent_Small_value_payments,263.6177077,0,0.3623,0.5749,-0.6638,1.073,0.6721 +0x15a51,CUS_0x950a,August,38,099-97-3650,Journalist,69637.24,6059.103333,8,10,24,6,"Auto Loan, Not Specified, Student Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",,24.30511147,9.93,10,_,1848.329982,26.33494608,11 Years and 9 Months,Yes,313.4597054,185.2651068,High_spent_Medium_value_payments,357.1855211,0,-2.2288,0.1862,-0.3132,-0.7632,-0.6718 +0x15a5d,CUS_0x9c9f,August,60,575-50-5128,Lawyer,17199.795,,8,6,20,4,"Personal Loan, Payday Loan, Payday Loan, and Payday Loan",,9,11.28,5,_,1137.443364,40.34955763,15 Years and 10 Months,Yes,35.00376882,69.03160389,!@9#%8,315.2250637,0,-1.2494,-0.6114,0.6933,1.2973,-2.6404 +0x15a69,CUS_0xc71a,August,28,289-07-8960,Mechanic,85653.96,,8,6,11.28836175,4,"Auto Loan, Payday Loan, Student Loan, and Payday Loan",,18,9.04,3,Standard,883.74,37.38246988,20 Years and 8 Months,No,229.085972,574.7418323,High_spent_Large_value_payments,577.2926567,0,-1.6674,-0.326,0.2559,0.5324,0.3628 +0x15a75,CUS_0x3542,August,25,410-12-2742,Writer,20455.92,,8,9,31.95700519,100,"Auto Loan, Mortgage Loan, Not Specified, Payday Loan, and Mortgage Loan",35.64347894,24.67014923,16.08,9,Bad,4920.745982,28.5719061,7 Years and 6 Months,Yes,1371.9749,95.97068072,Low_spent_Small_value_payments,294.5700502,0,1.6209,0.4641,-1.551,-0.2453,-0.0222 +0x15a81,CUS_0x7d96,August,21,403-90-2072,Teacher,16549.78,,627,6,30.06745738,5,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",33.08858086,,20.31,16,Bad,4736.778185,30.96659846,1 Years and 3 Months,Yes,67.4109964,156.4020268,Low_spent_Small_value_payments,156.9815222,0,0.9409,0.0247,-0.549,-0.0344,-0.4971 +0x15a8d,CUS_0x3f1a,August,41,425-40-1781,Architect,7832.295,488.69125,9,9,16.06745738,5,"Home Equity Loan, Payday Loan, Payday Loan, Payday Loan, and Payday Loan",,27.89964854,8.18,8,Bad,4766.025176,29.49026294,0 Years and 11 Months,Yes,27.09386205,28.92635361,Low_spent_Small_value_payments,256.1286214,0,0.6713,-0.6673,-0.0332,-1.7202,1.2152 +0x15a99,CUS_0xbfa7,August,18,918-55-8627,Accountant,8886.055,,8,3,6,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Payday Loan, and Not Specified",7.882705427,8,12.43,8,Standard,1105.370592,37.44669693,19 Years and 5 Months,Yes,34.78888164,,Low_spent_Small_value_payments,239.417664,0,2.4266,0.1688,-0.3859,0.3513,0.5711 +0x15aa5,CUS_0x715f,August,46,469-98-2089,Writer,83823.22,6841.268333,3,5,11,1,Auto Loan,13.20098756,10,7.31,0,Good,184.71,25.64502739,20 Years and 9 Months,No,41.30388916,588.753955,Low_spent_Small_value_payments,344.0689892,0,-0.985,2.261,0.8556,-0.1206,-1.1289 +0x15ab1,CUS_0x689,August,35,367-52-2109,Doctor,47984.19,3718.6825,8,6,26,5,"Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",26.51126029,15,1.27,12,Bad,1476.27,27.00510494,13 Years and 8 Months,Yes,195.2553923,171.5024358,High_spent_Small_value_payments,265.1104219,0,2.5169,-0.6766,-0.5685,-0.0292,-0.173 +0x15abd,CUS_0x36ec,August,32,837-30-3669,Accountant,31700.3,2444.691667,10,8,16,5,"Auto Loan, Personal Loan, Not Specified, Not Specified, and Personal Loan",,19,8.78,9,Standard,2482.73,27.05589285,9 Years and 2 Months,Yes,66.86611734,,High_spent_Large_value_payments,381.6219487,0,0.0696,0.098,-0.5017,-1.999,0.912 +0x15ac9,CUS_0x7226,August,42,#F%$D@*&8,Mechanic,58871.28,5042.94,5,4,9,4,"Credit-Builder Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",7.63905198,10,8.73,4,Good,1318.665811,24.70147094,33 Years and 2 Months,NM,167.0765792,312.6729043,Low_spent_Small_value_payments,355.6801986,0,0.8292,-0.0903,-3.0399,-0.334,-1.1513 +0x15ad5,CUS_0xa0be,August,35,616-18-1676,_______,17074.51,1426.875833,7,9,20.06745738,5,"Auto Loan, Personal Loan, Home Equity Loan, Not Specified, and Not Specified",43.36989097,24,7.67,10,Bad,1821.810954,36.79147825,18 Years and 6 Months,Yes,60.96389059,10000,Low_spent_Large_value_payments,263.414272,0,1.6066,0.2599,0.5845,-0.9732,0.6999 +0x15ae1,CUS_0x35f4,August,30,790-29-8933,Manager,21131.71,1882.975833,8,5,16.28836175,0,Payday Loan,14.39612162,13,15.55,4,Standard,34.15,31.19718175,13 Years and 5 Months,NM,10.58715058,444.9597825,High_spent_Medium_value_payments,402.6881112,0,0.2795,0.1607,0.8542,-0.5647,-0.4585 +0x15aed,CUS_0x7ee,August,30,193-00-4284,Lawyer,20637.2,,4,5,14,4,"Personal Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",21.18990749,18,4.74,4,Standard,1387.48,37.32110859,22 Years and 3 Months,Yes,68.57490437,124.5759382,Low_spent_Small_value_payments,263.7258241,0,0.228,-0.3048,-1.5199,-0.5453,0.2204 +0x15af9,CUS_0xb1f6,August,40,830-00-3552,Manager,122922.24,10210.52,2,1120,10,1,Not Specified,4.144303172,5,3.45,3,Good,1424.04,35.43241436,19 Years and 9 Months,No,59.65608314,144.5475759,High_spent_Large_value_payments,1056.848341,0,-0.6675,-0.9449,-0.4106,0.2929,1.2677 +0x15b05,CUS_0x7843,August,53,655-42-6359,Mechanic,89913.09,,8,4,10,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",13.59340195,10,19.7,4,Standard,315.5,33.00496563,28 Years and 3 Months,Yes,207.9658974,,Low_spent_Large_value_payments,591.1318921,0,-0.0823,-1.4743,-1.9976,2.0783,-0.3686 +0x15b11,CUS_0x7088,August,59,598-78-1639,Doctor,81223.36,,3,7,7.288361749,0,,3.276606762,5,8.78,9,Good,109.3610269,27.58670795,20 Years and 3 Months,NM,0,,Low_spent_Medium_value_payments,770.1000264,0,-0.2347,-0.2459,-0.1605,-0.1335,0.8448 +0x15b1d,CUS_0x30ca,August,48,626-06-2719,Mechanic,59861.2,,3,4,6,4,"Payday Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",9.265536682,7,13.04,3,Standard,511.5,24.07025534,29 Years and 8 Months,Yes,157.3423558,,Low_spent_Small_value_payments,29.74741458,0,0.2531,0.3044,0.3628,0.2488,-0.1881 +0x15b29,CUS_0x4dc5,August,34,307-04-8725,Accountant,18292.21,,8,7,26.06745738,7,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Student Loan, and Personal Loan",34.35909262,19,17.73,8,Bad,3713.310954,26.66321377,,NM,103.5876815,10000,Low_spent_Small_value_payments,241.5568301,0,-0.4103,-0.5947,-0.2203,0.8004,0.4348 +0x15b35,CUS_0x78eb,August,38,172-46-1166,Musician,131121.75,11211.8125,4,3,1.288361749,0,Debt Consolidation Loan,2.184272155,5,2.88,3,Good,1027.15,30.90397319,18 Years and 10 Months,NM,95.69914355,774.2660186,Low_spent_Medium_value_payments,951.1535489,0,0.5719,0.9789,0.4755,-0.5513,-0.7395 +0x15b41,CUS_0x97a2,August,28,836-69-1161,Mechanic,7567.63,,6,5,11,2,"Mortgage Loan, and Mortgage Loan",24.8386088,18.02702658,8.36,4,Standard,2850.692959,34.41791345,7 Years and 3 Months,Yes,7.340127499,54.64947633,Low_spent_Small_value_payments,295.2739795,0,-1.7317,-0.5703,0.6727,-1.2289,1.2891 +0x15b4d,CUS_0x70ea,August,37,907-18-5099,Architect,14679.83,1183.319167,10,10,19.95700519,6,"Not Specified, Student Loan, Student Loan, Student Loan, Student Loan, and Student Loan",25.04273803,17,13.88,8,Bad,2008.290954,28.62826014,8 Years and 5 Months,Yes,1394.781082,51.02175296,Low_spent_Small_value_payments,241.4787129,0,-0.5189,-0.4989,-2.1144,0.0069,2.6739 +0x15b59,CUS_0xb46a,August,27,906-16-9985,Accountant,37467.18,2920.265,6,7,34,100,"Personal Loan, Personal Loan, Auto Loan, Student Loan, Payday Loan, and Personal Loan",,23.74225855,6.34,8,_,2899.318579,40.73048432,6 Years and 6 Months,Yes,117.3356503,121.8487406,Low_spent_Large_value_payments,322.842109,0,-0.3829,1.0608,0.2992,-0.6643,-0.8642 +0x15b65,CUS_0x328e,August,25,560-60-4464,Journalist,46586.8,4026.233333,6,7,20,0,,19.48064195,13,14.98,8,Standard,751.4567629,34.11766119,9 Years and 3 Months,Yes,0,130.486394,High_spent_Medium_value_payments,540.0514576,0,0.0388,-0.6102,-2.4991,0.3211,0.929 +0x15b71,CUS_0x4daa,August,44,451-28-9406,Lawyer,34744.15,2784.345833,3,2,2.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Student Loan",12.64085701,13,-0.52,3,Good,219.59,34.8790523,33 Years and 6 Months,No,52.21889442,,Low_spent_Small_value_payments,237.5170645,0,0.7315,-1.3581,1.3403,0.3918,0.5506 +0x15b7d,CUS_0x8179,August,29,646-61-9900,Media_Manager,69194.98,5657.248333,3,4,16,0,,16.60510912,11,14.43,10,Standard,911.82,32.35967498,19 Years and 8 Months,Yes,0,578.8748696,Low_spent_Small_value_payments,276.8499637,0,-0.3464,-0.3996,-0.5258,-0.0568,-0.5038 +0x15b89,CUS_0xa25a,August,39,990-95-4938,Doctor,55339.56,,8,5,34,9,"Payday Loan, Personal Loan, Auto Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",22.81536549,16.88021441,7.28,7,Bad,3295.029198,30.35939808,0 Years and 10 Months,Yes,252.1209406,,Low_spent_Small_value_payments,241.3320641,0,-1.7923,0.2455,-0.4596,-1.5075,-0.0097 +0x15b95,CUS_0x1931,August,22,954-05-2870,Lawyer,20590.48,,6,6,32,9,"Not Specified, Auto Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Student Loan, and Payday Loan",46.12090464,22.43230053,7.85,10,Bad,2354.739249,34.70242125,9 Years and 0 Months,Yes,129.6836618,106.9946997,High_spent_Small_value_payments,193.8089718,0,0.5777,0.7887,-0.464,0.9955,0.3996 +0x15ba1,CUS_0x7766,August,49,876-26-2819,Writer,95460.81,7989.0675,2,5,4.288361749,2,"Mortgage Loan, Personal Loan, and Mortgage Loan",0,3,7.46,7,_,159.8684549,22.84941861,28 Years and 0 Months,No,201.5056401,974.967354,Low_spent_Large_value_payments,394.4336996,0,-0.1203,-0.4867,1.1259,0.4481,-1.5521 +0x15bad,CUS_0x93a7,August,39,836-72-8180,Lawyer,7414.145,,6,8,27.95700519,9,"Not Specified, Mortgage Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, and Auto Loan",,21,22.83,10,Bad,2803.460954,41.02175294,5 Years and 3 Months,Yes,1374.899574,,Low_spent_Small_value_payments,191.3643757,0,0.0056,-0.3769,0.0414,0.4632,1.904 +0x15bb9,CUS_0xa47e,August,20,852-55-6398,Architect,37024.7,3179.391667,8,7,25,5,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",38.22837129,29.00208308,0.82,10,Bad,2552.712442,32.53248129,9 Years and 11 Months,Yes,114.542383,,Low_spent_Small_value_payments,135.9309716,0,0.4506,0.7505,0.1524,0.8253,1.1841 +0x15bc5,CUS_0x8cdb,August,80,712-28-1926,Manager,92650.2,,5,2,2.288361749,2,"Auto Loan, Not Specified, and Auto Loan",0,0,8.65,6,_,752.1581879,34.24674688,,No,220.4071636,,!@9#%8,717.3092588,0,-0.4599,3.1125,0.7879,0.6071,0.2837 +0x15bd1,CUS_0xb68,August,34,578-86-5410,Musician,30375.05,,6,5,6,0,,,1891,4.09,4,_,1367.11,35.45290909,21 Years and 8 Months,No,0,44.14439387,High_spent_Medium_value_payments,448.4810228,0,-1.1365,1.1887,2.2804,0.0431,-0.8882 +0x15bdd,CUS_0x126d,August,36,047-21-1235,Architect,34710.6,3170.55,6,3,20,100,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Student Loan, Payday Loan, Not Specified, and Mortgage Loan",12.9387027,10,14.76,10,Standard,1462.53,33.98902252,15 Years and 0 Months,Yes,197.1080746,324.462408,Low_spent_Small_value_payments,85.48451747,0,-1.0494,1.3055,-0.2509,-0.6419,0.7011 +0x15be9,CUS_0xa2fd,August,27,102-04-9774,Journalist,86210.79,7142.2325,8,7,12,0,,18.32081086,12,8.96,2,Standard,587.61,42.61329816,31 Years and 5 Months,NM,0,111.3696187,High_spent_Large_value_payments,842.8536313,0,-2.1978,-1.5457,2.1474,0.3449,0.7164 +0x15bf5,CUS_0xb76f,August,45,069-45-8437,Musician,39513.84,2993.82,4,2,11,3,"Not Specified, Debt Consolidation Loan, and Personal Loan",5.800140358,8,9.63,2,Good,944.5322394,29.29254479,28 Years and 10 Months,NM,89.80089296,,High_spent_Small_value_payments,410.4349029,0,1.4739,0.9282,1.396,-1.2214,0.4627 +0x15c01,CUS_0x5993,August,41,120-48-2348,Developer,30352.11,2317.3425,1,4,7,1,Student Loan,2.06277297,4,7.11,0,Good,644.57,32.93739946,24 Years and 0 Months,No,16.48356622,89.62296249,High_spent_Medium_value_payments,375.6277213,0,-1.8685,1.0585,0.7347,0.7119,-0.1819 +0x15c0d,CUS_0x9235,August,48,506-29-3362,Scientist,63199.96,5426.663333,0,5,1,0,,9.810395732,11,11.01,7,Good,1435.61,27.52359551,,NM,0,317.9021423,High_spent_Small_value_payments,484.764191,0,-0.0803,0.1555,0.5634,-0.8209,-0.009 +0x15c19,CUS_0x8564,August,37,856-14-6029,Mechanic,93890.61,7717.2175,7,6,5,4,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",14.93314558,12,7.06,10,Standard,877.12,33.70057822,,Yes,233.5846629,168.3540145,High_spent_Medium_value_payments,619.7830727,0,-0.8936,0.0155,0.557,-0.5153,-1.4588 +0x15c25,CUS_0x477d,August,20,820-20-3690,Journalist,21001.62,1452.135,7,6,19.06745738,5,"Mortgage Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",29.22791417,18,9.61,10,Standard,1594.970954,37.27812993,,Yes,72.7911109,84.46514793,Low_spent_Medium_value_payments,241.2369532,0,-0.5254,1.7697,-0.3612,1.0748,-1.6857 +0x15c31,CUS_0x9d7d,August,48,574-82-7157,Architect,29879.43,,6,5,10,3,"Mortgage Loan, Home Equity Loan, and Auto Loan",23.77738776,21.32664049,11.79,8,Standard,1424.791831,33.06830462,25 Years and 2 Months,No,66.95682033,239.4080605,Low_spent_Small_value_payments,228.7303691,0,-0.068,0.336,-1.9239,-1.1799,-0.0095 +0x15c3d,CUS_0xad3f,August,37,152-57-8963,Developer,17559.88,,2,7,4.288361749,0,,,6,7.02,0,Good,21.07352784,30.9513932,18 Years and 10 Months,No,0,461.0553337,Low_spent_Large_value_payments,351.4701976,0,-0.0327,0.4009,1.6441,-0.3992,0.0134 +0x15c49,CUS_0x7aa9,August,25,760-24-6735,Doctor,60287.61,4712.692517,10,9,33.88954781,6,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Student Loan",,27,9.71,10,_,2198.712356,40.48085686,13 Years and 5 Months,Yes,1987.121699,134.1295491,High_spent_Small_value_payments,461.7622579,0,-0.1795,-0.3913,0.0627,0.2769,0.2843 +0x15c55,CUS_0x1138,August,44,832-92-6672,Lawyer,154868.24,13051.68667,2,5,10,0,,2.909368186,3.447876549,4.16,6,Good,263.8346026,42.32006806,29 Years and 11 Months,No,0,759.5938773,!@9#%8,825.5747894,0,-0.7398,-0.4203,1.1983,0.4859,1.4481 +0x15c61,CUS_0x97bd,August,80,552-35-7303,Engineer,8736.19,639.0158333,4,5,29,3,"Credit-Builder Loan, Auto Loan, and Student Loan",,22.16037436,11.25,4,_,2102.104433,34.39470049,11 Years and 8 Months,Yes,32292,53.31200556,Low_spent_Medium_value_payments,273.9233145,0,-0.7809,-0.8155,-1.2716,0.3696,0.0868 +0x15c6d,CUS_0x1277,August,23,682-00-8701,Engineer,13762.45,,7,6,13,5,"Personal Loan, Debt Consolidation Loan, Not Specified, Personal Loan, and Credit-Builder Loan",10.39536695,8,8.39,6,Standard,720.94,28.35485367,11 Years and 5 Months,NM,3653,10000,Low_spent_Small_value_payments,285.2506639,0,-0.5572,-1.5072,1.5423,0.3403,0.8773 +0x15c79,CUS_0x9550,August,34,780-51-5608,Writer,34435.82,,6,4,14,1,Auto Loan,,13,17.81,7,Standard,360.11,39.34963819,10 Years and 5 Months,Yes,27.82748604,92.05660773,High_spent_Medium_value_payments,404.1810729,0,1.5775,0.6706,0.2839,1.995,1.0971 +0x15c85,CUS_0xb83d,August,31,583-60-0474,Engineer,26690.13,2326.1775,6,7,2993,7,"Student Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",15.78972509,15,10.91,6,_,610.731016,30.78779818,13 Years and 4 Months,Yes,150.262787,145.7454003,High_spent_Small_value_payments,218.4454795,0,-0.2389,0.5112,-2.1275,-0.5722,-0.9524 +0x15c91,CUS_0xa1c3,August,44,822-25-5726,Manager,59789,4510.850859,3,4,1,100,Credit-Builder Loan,,10,8.06,1,Good,1155.96,25.69531776,30 Years and 2 Months,No,644.687869,330.2227457,Low_spent_Large_value_payments,415.5968598,0,1.6184,0.7371,0.4271,0.1003,1.8856 +0x15c9d,CUS_0x47d3,August,41,080-54-4228,Mechanic,23129.88,1735.49,5,3,7,2,"Student Loan, and Student Loan",14.53015445,14,4.1,5,Good,767.468297,22.87208246,15 Years and 8 Months,No,28.67553841,25.12274145,High_spent_Large_value_payments,362.1550572,0,1.9073,0.3984,0.1612,0.6575,0.3549 +0x15ca9,CUS_0x5585,August,54,916-97-3278,Doctor,60340.02,,6,5,17,1,Payday Loan,25.84012893,18,12.78,6,Standard,890.61,39.23098076,15 Years and 11 Months,NM,551.1491824,332.8822287,Low_spent_Small_value_payments,414.6217049,0,-0.8338,0.4521,1.0138,0.1428,-0.1655 +0x15cb5,CUS_0x5e1f,August,35,624-54-7787,Developer,16640.35,,5,6,9,1,Payday Loan,11.88005069,8,7.24,5,_,1128.37,32.37101808,17 Years and 9 Months,Yes,7.50474038,71.62032633,Low_spent_Small_value_payments,336.2445166,0,0.1197,1.277,-1.6918,0.9419,-1.1773 +0x15cc1,CUS_0x6dbb,August,31,401-50-8869,Manager,20804.18,,10,8,23.95700519,8,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Payday Loan, and Personal Loan",34.26061957,23,21.44,884,_,4027.590954,24.36424001,,NM,1458.370126,122.1664157,!@9#%8,119.9812555,0,0.7714,-0.903,-2.1366,1.7588,-0.3987 +0x15ccd,CUS_0x3530,August,29,738-74-7100,Journalist,43200.9,,8,9,16.88954781,237,"Personal Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,22,6.88,12,Bad,1404.99,35.67094794,11 Years and 10 Months,Yes,1441.317284,35.98475248,High_spent_Large_value_payments,449.0753823,0,1.5369,0.4896,0.3449,-0.009,-0.711 +0x15cd9,CUS_0x2f9b,August,25,343-89-9854,Engineer,17397.56,,9,10,16.06745738,6,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Not Specified, and Mortgage Loan",43.46703031,23.84785141,17.62,9,Bad,1844.183039,35.42064952,19 Years and 2 Months,Yes,21139,87.67642526,Low_spent_Medium_value_payments,264.4775762,0,-0.8806,0.2827,-0.2591,-0.7039,0.1437 +0x15ce5,CUS_0x8fb4,August,47,010-27-6689,Accountant,104994.33,,5,7,7.288361749,2,"Payday Loan, Not Specified, and Not Specified",,14,5.34,4,Good,467.77,33.85165952,,No,574.2385747,516.5892445,High_spent_Medium_value_payments,878.7023068,0,-1.404,-0.9305,-0.6286,0.1827,0.937 +0x15cf1,CUS_0x8d6e,August,18,436-98-0578,Doctor,13139.385,,8,6,10,3,"Mortgage Loan, Student Loan, and Credit-Builder Loan",12.1993297,13,13.94,7,Standard,1181.1,25.12898952,24 Years and 4 Months,Yes,31.09587324,86.88370075,Low_spent_Medium_value_payments,274.715301,0,0.5597,0.0477,-0.0193,0.8266,1.3276 +0x15cfd,CUS_0x6d05,August,46,429-09-6890,Mechanic,84833.62,,5,1,7.288361749,4,"Auto Loan, Payday Loan, Payday Loan, and Home Equity Loan",0,2,2.05,2,Good,506.4390038,23.46046841,20 Years and 9 Months,No,274.9442044,961.0940159,Low_spent_Large_value_payments,200.658381,0,-0.4398,0.2407,0.7776,-0.391,0.6529 +0x15d09,CUS_0x69b4,August,27,223-19-5180,Teacher,21178.31,1990.859167,5,4,8,3,"Not Specified, Auto Loan, and Not Specified",27.5058895,19,0.74,5,Standard,262.25,34.37408626,,No,45.48248913,89.24860514,High_spent_Small_value_payments,324.3548224,0,0.8924,0.4788,1.7363,-0.5157,-1.8946 +0x15d15,CUS_0x7154,August,32,624-46-9352,Accountant,122053.2,,8,7,12,5,"Debt Consolidation Loan, Payday Loan, Not Specified, Auto Loan, and Personal Loan",26.35620758,18,9.42,6,Standard,1292.35,29.69004031,6 Years and 10 Months,Yes,388.9097837,769.6829944,Low_spent_Medium_value_payments,158.417222,0,-1.2625,2.2791,-0.4073,1.6301,-1.3353 +0x15d21,CUS_0x3821,August,24,248-72-2340,Architect,16365.59,,7,7,12,4,"Auto Loan, Student Loan, Auto Loan, and Credit-Builder Loan",32.62658672,24.25167252,15.47,1,Standard,974.4418751,24.73607896,18 Years and 8 Months,Yes,31.37425599,27.67703183,High_spent_Small_value_payments,309.9286289,0,-0.0318,1.625,0.6535,-0.4351,-0.8342 +0x15d2d,CUS_0x2c3c,August,37,476-19-3594,_______,17238.11,1599.509167,8,8,24.95700519,9,"Home Equity Loan, Payday Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Auto Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",34.73345322,19.21566189,1.46,11,Bad,1859.365118,27.39860757,9 Years and 3 Months,Yes,1407.627747,44.06228906,High_spent_Small_value_payments,247.210511,0,-0.4024,-1.629,-1.2449,0.257,0.5934 +0x15d39,CUS_0x84ae,August,29,#F%$D@*&8,Scientist,65929.12,,6,5,18,2,"Auto Loan, and Payday Loan",5.282484138,8,17.76,12,_,1329.17,31.02171553,20 Years and 5 Months,Yes,64.91669021,108.8650696,High_spent_Medium_value_payments,641.1275736,0,1.4121,-0.5209,-1.3629,-1.8661,-0.3886 +0x15d45,CUS_0xc68,August,36,500-95-2856,Entrepreneur,15334.13,,7,9,31.06745738,3,"Student Loan, Not Specified, and Payday Loan",,,6.8,11,_,2806.625869,35.76698088,13 Years and 8 Months,Yes,19.40118193,124.9508161,Low_spent_Medium_value_payments,255.2121307,0,1.8863,0.9722,0.1269,-1.0778,0.8308 +0x15d51,CUS_0x11ac,August,26,835-92-7751,Journalist,69136.54,5902.378333,3,4,14,0,,22.24311936,18,7.18,3,Standard,478.85,32.10316372,17 Years and 5 Months,Yes,0,435.9370015,Low_spent_Small_value_payments,444.3008318,0,-0.5561,-1.1523,-0.9722,-0.7765,-0.0293 +0x15d5d,CUS_0x4ade,August,51,293-07-0146,Architect,61976.44,,28,5,8,4,"Student Loan, Home Equity Loan, Student Loan, and Personal Loan",,12,11.01,6,_,67.6304516,28.09273993,18 Years and 0 Months,No,190.5567506,241.9176645,High_spent_Medium_value_payments,348.8088035,0,0.5978,1.2377,-1.2008,-0.5165,-1.234 +0x15d69,CUS_0x4d98,August,28,969-41-1662,Entrepreneur,87416.52,,2,7,6,3,"Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",,2,6.67,3,Good,814.52,36.38792827,18 Years and 2 Months,No,151.8567976,316.3343751,Low_spent_Large_value_payments,505.5798273,0,-0.8446,-1.8948,-0.6458,-0.4158,-0.7716 +0x15d75,CUS_0x33de,August,80,968-12-6596,Journalist,16340.12,1275.676667,10,9,17.06745738,5,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",34.06873727,17,18.18,,Bad,3985.260954,36.40903217,6 Years and 3 Months,Yes,41.16198161,97.70337821,Low_spent_Large_value_payments,231.9820189,0,-1.595,0.5814,-0.333,-0.1116,-1.3686 +0x15d81,CUS_0xae61,August,80,272-86-2874,Developer,60878.97,,4,6,12,5,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Auto Loan",16.91203866,,12.7,9,Standard,946.64,36.28903535,6 Years and 10 Months,Yes,158.3220875,,High_spent_Medium_value_payments,455.0506656,0,1.8327,-1.1476,0.816,-2.0513,-0.6304 +0x15d8d,CUS_0x579e,August,41,#F%$D@*&8,Journalist,19723.82,,10,82,24.06745738,3,"Auto Loan, Personal Loan, and Auto Loan",,19.46040969,2.45,10,_,3144.486432,33.61690643,12 Years and 10 Months,NM,48.84009702,,Low_spent_Small_value_payments,184.7882532,0,0.1171,0.144,-1.6622,-1.185,0.603 +0x15d99,CUS_0x9ae4,August,29,702-14-0511,Manager,14674.175,,2,1,6,0,,8.690192698,9,2.7,4,Good,1209.83,23.19179062,23 Years and 9 Months,No,0,41.91640151,!@9#%8,338.0683902,0,-0.5737,-0.3835,1.1124,0.4532,-0.4246 +0x15da5,CUS_0x79d3,August,35,541-86-2460,Doctor,14332.03,,5,3,16,100,"Mortgage Loan, Student Loan, and Student Loan",20.81020867,16,5.63,5,Standard,244.52,35.54781095,30 Years and 9 Months,No,21.97473682,10000,Low_spent_Small_value_payments,329.9103981,0,-0.2965,0.781,-0.7577,0.5498,0.1443 +0x15db1,CUS_0x659,August,27,557-06-1117,Doctor,16133.43,1283.4525,6,7,17.06745738,2,"Personal Loan, and Credit-Builder Loan",,26.18536995,9.64,11,Bad,1919.708327,27.14545445,11 Years and 11 Months,Yes,24.25711798,40.30814755,High_spent_Small_value_payments,297.0596965,0,1.0546,-0.3243,0.7003,-1.4013,1.631 +0x15dbd,CUS_0xb1d2,August,42,657-59-2344,Scientist,61737.94,4888.828333,5,3,20,3,"Student Loan, Debt Consolidation Loan, and Auto Loan",25.77238658,20,8.38,6,Standard,161,27.98793709,30 Years and 4 Months,No,111.6372765,226.2884625,Low_spent_Large_value_payments,420.9570944,0,0.5333,-1.8943,-0.3135,-0.209,-0.0955 +0x15dc9,CUS_0x650b,August,32,466-58-6225,Accountant,160350.4,,2,5,5.288361749,2,"Not Specified, Mortgage Loan, and Personal Loan",0,0,9.65,5,Good,983.7955947,29.28716209,31 Years and 3 Months,No,212.4293521,1452.316097,Low_spent_Medium_value_payments,513.2719895,0,0.2741,-1.169,0.384,0.4173,0.1241 +0x15dd5,CUS_0xa4ee,August,20,595-44-8320,Journalist,7471.91,,8,8,19.95700519,6,"Personal Loan, Payday Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Not Specified",32.44033208,20.06976762,18.95,8,Standard,2202.402885,34.34978845,19 Years and 4 Months,Yes,1342.177606,,!@9#%8,239.3595736,0,-2.018,0.4797,0.7618,1.694,-1.0142 +0x15de1,CUS_0xa8d8,August,41,035-13-0288,Doctor,61756.52,,9,856,33,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Auto Loan",35.97380969,20.31896733,2.35,10,_,2036.737093,35.48377051,6 Years and 5 Months,Yes,126.5799472,179.6338797,Low_spent_Large_value_payments,495.0238397,0,1.3312,-0.2917,0.0004,-0.025,-0.2441 +0x15ded,CUS_0x8535,August,50,751-98-8568,_______,12766.425,1206.86875,3,4,13,87,"Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",18.66994287,16,10.31,0,Standard,1287.799795,35.97854338,31 Years and 6 Months,Yes,27.97205372,59.71002391,Low_spent_Small_value_payments,331.7949956,0,0.7471,-0.9769,-1.7408,0.9895,1.1545 +0x15df9,CUS_0xab0d,August,26,191-35-2135,Developer,22032.32,,4,5,10,0,,3.999128297,7,5.11,7,Good,1252.459334,26.68093154,22 Years and 6 Months,No,147.4046017,48.03429123,!@9#%8,406.3493646,0,-1.6727,-0.2454,0.2831,-0.1763,0.226 +0x15e05,CUS_0xc719,August,36,994-77-4680,Media_Manager,60271.92,4782.66,6,7,28.06745738,6,"Payday Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Student Loan",37.72533018,25,28.85,13,Bad,4770.360954,29.69392311,,Yes,203.6057951,36.77646031,High_spent_Large_value_payments,451.1634567,0,0.5859,0.5504,-0.272,-0.1538,1.5071 +0x15e11,CUS_0xa08c,August,38,390-81-3983,Architect,10917.655,,5,4,19,6,"Not Specified, Mortgage Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",16.04806883,15,16.49,7,_,278.25,27.88146802,15 Years and 2 Months,Yes,94.31196625,,Low_spent_Large_value_payments,286.5883652,0,1.7594,1.8197,1.1256,1.1678,0.159 +0x15e1d,CUS_0x6f64,August,25,#F%$D@*&8,Accountant,20355.23,1978.269167,8,3,15,6,"Student Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Payday Loan",13.14892092,12,14.73,5,Standard,575.92,33.26674757,10 Years and 8 Months,Yes,59.28691589,249.1885123,Low_spent_Small_value_payments,179.3514884,0,0.4566,0.7771,-0.0244,-0.4857,-0.0783 +0x15e29,CUS_0x7bbb,August,36,189-26-3266,Accountant,14115.22,,6,5,16,9,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Not Specified, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, and Personal Loan",,19,6.54,13,Bad,3346.41,37.29292049,3 Years and 6 Months,Yes,96.77589176,114.2584775,Low_spent_Small_value_payments,209.8924641,0,-1.1352,-0.1768,0.3075,-0.6032,0.939 +0x15e35,CUS_0x75a0,August,34,005-81-4987,Media_Manager,43501.95,3418.1625,7,7,21.06745738,3,"Payday Loan, Credit-Builder Loan, and Not Specified",31.49469434,19,9.11,6,_,2596.810954,28.17464247,16 Years and 10 Months,Yes,68.05068486,228.8916639,High_spent_Small_value_payments,278.1536133,0,0.6058,-1.2998,-1.7339,0.1923,-0.4778 +0x15e41,CUS_0xa6d5,August,80,360-00-8751,Accountant,20762.97,,8,10,24.06745738,5,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",28.11331604,,9.9,10,Bad,1894.560954,30.53666414,16 Years and 10 Months,Yes,75.49127012,59.70017671,High_spent_Small_value_payments,263.2130152,0,-1.2118,-1.0708,-0.2348,-0.7609,-0.0644 +0x15e4d,CUS_0x5f92,August,19,762-79-2043,Teacher,9238.24,,6,7,26.06745738,7,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Auto Loan",44.70666207,29.3057197,3.7,11,Bad,4572.211621,34.50153481,9 Years and 3 Months,Yes,38.77068858,,Low_spent_Medium_value_payments,260.2655013,0,-1.4407,0.8771,-1.8832,0.3505,-0.3367 +0x15e59,CUS_0x8617,August,24,120-16-6347,_______,57326.49,5042.2075,3,5,13,2,"Payday Loan, and Student Loan",28.54982783,22.10695288,11.24,3,Standard,1139.379021,40.78697038,23 Years and 6 Months,No,55.24500538,283.5315817,Low_spent_Small_value_payments,455.4441629,0,-0.9217,0.0066,0.8133,0.3531,0.4946 +0x15e65,CUS_0x4781,August,44,001-70-8319,Teacher,61627,4599.783962,1,6,2,1,Credit-Builder Loan,,8,7.35,2,Good,1485.87,33.41524994,20 Years and 6 Months,No,298.8773341,10000,High_spent_Medium_value_payments,646.9585822,0,-1.1687,-1.5589,0.9305,1.5763,0.7036 +0x15e71,CUS_0x4567,August,19,761-63-8906,Architect,106215.04,8592.253333,6,4,9,100,"Payday Loan, Mortgage Loan, and Not Specified",18.0440211,13,13.71,10,Standard,1067.77,35.25567509,23 Years and 11 Months,Yes,152.9557281,712.661134,Low_spent_Medium_value_payments,273.6084711,0,0.3781,0.6187,-1.0972,0.1609,-1.1256 +0x15e7d,CUS_0x5789,August,43,395-30-8175,Architect,93529.05,7775.0875,5,4,17,2,"Home Equity Loan, and Debt Consolidation Loan",11.66557548,9,7.33,9,_,757.74,31.33677943,19 Years and 10 Months,NM,122.8407177,,Low_spent_Medium_value_payments,249.6578028,0,0.2354,2.265,0.5211,1.1254,1.5399 +0x15e89,CUS_0xae57,August,25,649-36-2502,Accountant,16909.09,1254.090833,9,10,29.06745738,5,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",,22.25801782,10.98,6,_,2371.543012,33.09596513,11 Years and 2 Months,Yes,37.43267819,96.51898399,Low_spent_Small_value_payments,254.7371332,0,0.9748,1.8713,0.3096,0.2614,1.0129 +0x15e95,CUS_0x3090,August,24,#F%$D@*&8,Doctor,43610.13,3640.1775,2,4,9,4,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",16.73096399,,10.29,1,Good,1371.99,29.77836471,28 Years and 6 Months,No,65617,111.4354562,Low_spent_Large_value_payments,389.2209286,0,-2.1008,0.7868,-1.1161,-1.2487,-1.7837 +0x15ea1,CUS_0x7303,August,18,727-06-5316,Media_Manager,60335.25,5120.9375,9,9,15,2,"Home Equity Loan, and Not Specified",,16,11.04,7,_,1814.22,36.07776651,17 Years and 3 Months,Yes,92.42547138,104.5527327,High_spent_Small_value_payments,575.1155459,0,1.1839,-0.6197,-1.5483,-1.1719,-0.7205 +0x15ead,CUS_0x947a,August,19,096-80-9236,Architect,26922.65,2343.554167,4,7,17,3,"Payday Loan, Payday Loan, and Student Loan",28.70344557,20,7.54,4,Standard,1179.89,37.58461872,20 Years and 9 Months,No,58.95953561,,!@9#%8,372.3235019,0,-2.0839,-0.5247,0.5833,-1.8224,2.8702 +0x15eb9,CUS_0x27b9,August,18,763-32-6416,Teacher,28356.18,,10,9,32.95700519,7,"Payday Loan, Personal Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",34.38447296,23,16,12,Bad,4380.610954,35.08624328,5 Years and 6 Months,Yes,1464.181887,29.14712316,High_spent_Large_value_payments,268.1221205,0,-0.1135,-1.0273,0.7725,-0.2923,-0.9024 +0x15ec5,CUS_0x2b94,August,48,528-54-1734,Engineer,24372.88,,5,6,13,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",17.4519187,12,0.4,3,_,719.48,32.42337705,28 Years and 9 Months,Yes,55.34957705,169.2246124,Low_spent_Small_value_payments,263.5331438,0,-0.3715,0.5074,0.2167,-0.6925,0.1082 +0x15ed1,CUS_0x8d9,August,37,984-95-1206,Media_Manager,24881.15,2304.429167,4,6,19,2,"Debt Consolidation Loan, and Student Loan",,6,17.84,9,Standard,931.68,33.77857438,18 Years and 4 Months,Yes,40.17366685,166.523983,Low_spent_Small_value_payments,313.7452669,0,-0.1318,0.153,1.0959,0.2815,0.3323 +0x15edd,CUS_0xb293,August,23,059-06-4253,Teacher,72152.8,5849.733333,4,7,3,3,"Personal Loan, Home Equity Loan, and Home Equity Loan",3.974959314,2.302991408,9.04,5,_,948.3896291,39.67056135,29 Years and 6 Months,No,171.8065669,99.77424218,High_spent_Medium_value_payments,563.3925243,0,0.0837,0.3346,-0.7573,0.3235,-0.536 +0x15ee9,CUS_0x558f,August,44,060-58-0187,Journalist,26908.25,2254.354167,6,5,19,3,"Auto Loan, Home Equity Loan, and Student Loan",21.89549094,17,9.86,3,Standard,546.83,25.65049873,19 Years and 4 Months,No,52.07057309,36.74415338,High_spent_Large_value_payments,376.6206902,0,-0.0088,-0.6832,0.3878,0.1078,-0.5923 +0x15ef5,CUS_0x6574,August,39,188-37-8564,Architect,32919.12,2723.26,7,10,26,4,"Auto Loan, Not Specified, Home Equity Loan, and Not Specified",,31.5542493,5.86,10,Bad,2136.555792,39.15836998,14 Years and 6 Months,NM,78.67040473,,High_spent_Large_value_payments,386.847371,0,0.934,1.027,0.33,-2.0482,1.1408 +0x15f01,CUS_0xa677,August,50,256-86-1956,_______,40656.6,3133.668702,0,6,7,1,Student Loan,,9,1.21,7,Good,681.37,36.82536154,18 Years and 2 Months,No,62549,22.71369237,High_spent_Large_value_payments,531.3383765,0,-0.2765,0.172,-0.9993,-1.1764,1.528 +0x15f0d,CUS_0x4f72,August,38,104-90-2721,Musician,53143.17,,8,8,19.06745738,7,"Payday Loan, Auto Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",23.99280305,15,4.66,11,_,3910.590954,27.70207373,6 Years and 3 Months,Yes,220.1441269,69.63975106,High_spent_Medium_value_payments,388.9555841,0,-1.1256,1.4328,-0.132,0.9065,-1.0571 +0x15f19,CUS_0x51cb,August,48,423-03-2444,Accountant,172534.16,14344.84667,4,7,5,3,"Debt Consolidation Loan, Student Loan, and Mortgage Loan",11.89407304,10,5.99,3,Good,1343.5,27.0616144,21 Years and 9 Months,No,393.6591444,733.2481084,Low_spent_Medium_value_payments,587.5774139,0,-0.3219,0.7903,-1.5463,-0.087,-1.1882 +0x15f25,CUS_0x458d,August,19,327-28-8071,Journalist,34315.71,3018.6425,4,4,19,2,"Debt Consolidation Loan, and Home Equity Loan",16.3687925,13,13.36,4,Standard,24.75,38.86463018,,Yes,37.61166736,58.40287933,High_spent_Large_value_payments,445.8497033,0,0.4161,-0.0182,0.1096,1.5516,-1.6901 +0x15f31,CUS_0xa964,August,80,792-17-2106,Lawyer,70686.44,,0,1,4,4,"Not Specified, Auto Loan, Payday Loan, and Mortgage Loan",,10,-6.07,2,Good,1356.885973,36.45396175,23 Years and 11 Months,No,164.456949,833.7336716,!@9#%8,,0,1.7069,-1.6195,-0.2022,-1.2408,-0.5069 +0x15f3d,CUS_0x27fa,August,47,544-49-9604,Manager,31280.63,,8,4,11,1,Home Equity Loan,10.14664272,8,9.15,8,Standard,385.83,34.79827204,25 Years and 4 Months,Yes,21.39713947,192.1124583,Low_spent_Small_value_payments,326.4623189,0,-0.0444,0.5012,-0.5734,-1.1731,0.5357 +0x15f49,CUS_0xa2af,August,44,838-46-6396,Engineer,14031.25,,8,10,29.95700519,7,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Auto Loan, Home Equity Loan, and Personal Loan",37.41537995,19.34489879,29.07,6,Bad,4424.471006,29.78107907,2 Years and 8 Months,Yes,1403.008124,96.74383074,Low_spent_Small_value_payments,179.9247595,0,0.6448,-0.5993,1.7842,-0.4118,-0.92 +0x15f55,CUS_0x2a77,August,80,622-39-0790,Mechanic,17015.66,1332.971667,6,7,28,7,"Student Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Student Loan",20.5686621,15,11.41,12,Standard,1987.47,36.00858441,16 Years and 2 Months,Yes,81.80577883,64.89123253,High_spent_Small_value_payments,246.6001553,0,0.1514,0.8335,-0.808,-0.8883,-1.128 +0x15f61,CUS_0x1d1c,August,25,993-91-6618,Developer,10307.97,625.9975,8,3,13,2,"Debt Consolidation Loan, and Auto Loan",,12,8.67,10,_,480.17,40.6101095,16 Years and 6 Months,Yes,11.02219042,37.73402851,Low_spent_Large_value_payments,283.8435311,0,1.4973,-0.2751,0.6119,0.7804,-0.5568 +0x15f6d,CUS_0x6b10,August,46,#F%$D@*&8,Developer,105675.6,,7,5,18,0,,22.92294019,19,6.45,1,Standard,837.5163435,36.89358487,32 Years and 0 Months,No,0,386.9973405,High_spent_Medium_value_payments,791.8101529,0,1.3538,0.3948,-1.0701,-1.7194,0.9177 +0x15f79,CUS_0x456d,August,55,594-26-5566,Lawyer,36368.55,2782.7125,6,5,15,4,"Student Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",8.77279439,9,5.9,3,Standard,950.56,29.40702007,,No,95.43359014,327.4867426,!@9#%8,145.3509173,0,0.2354,-1.8351,1.6707,-0.7642,-0.6423 +0x15f85,CUS_0x4ba7,August,18,102-98-8503,Mechanic,28150.72,2583.893333,8,4,5,0,,23.82374531,21,17.1,7,Standard,756.3,29.82380729,23 Years and 8 Months,Yes,0,298.8036669,Low_spent_Small_value_payments,249.5856664,0,-1.0533,-1.0512,-0.4434,-1.0318,-2.5175 +0x15f91,CUS_0xb7ea,August,26,#F%$D@*&8,Mechanic,12975.96,,8,5,16,1,Home Equity Loan,15.99653806,12,2.93,4,Standard,531.08,29.80376856,26 Years and 2 Months,No,5.76627588,67.67783225,Low_spent_Small_value_payments,320.1888919,0,0.6224,-0.6356,-1.1329,0.3522,-0.8677 +0x15f9d,CUS_0x36ff,August,80,881-57-6870,Architect,45780.86,3541.071667,6,6,19,5,"Credit-Builder Loan, Personal Loan, Home Equity Loan, Auto Loan, and Auto Loan",,16,16.18,12,Standard,984.91,34.73462568,6 Years and 4 Months,Yes,125.9581068,,Low_spent_Large_value_payments,192.765224,0,1.2167,-0.8764,-1.1965,-0.0797,0.2196 +0x15fa9,CUS_0xdef,August,55,857-73-1928,Media_Manager,158604,,4,3,1,4,"Payday Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",,9,0.54,3,Good,203.93,34.95326525,32 Years and 11 Months,No,438.342387,294.1456102,High_spent_Large_value_payments,834.8120028,0,-0.5962,0.4201,-0.2878,0.2701,-0.8978 +0x15fb5,CUS_0xbaab,August,21,420-43-4881,Accountant,28184.28,,7,5,10,1,Auto Loan,20.69043223,13,13.32,5,_,775.9252729,32.93093063,,Yes,10300,239.921233,!@9#%8,294.4479869,0,-0.2415,1.6657,0.3301,1.4419,0.4378 +0x15fc1,CUS_0xc3aa,August,31,172-48-6355,_______,24974.35,,8,7,8,0,,,10,12.58,9,Standard,331.11,31.10327986,28 Years and 6 Months,NM,0,77.97337977,Low_spent_Medium_value_payments,418.6462036,0,1.2816,0.924,0.3385,1.5257,-1.6592 +0x15fcd,CUS_0x7a46,August,29,954-07-2712,Journalist,9979.875,,8,5,17.06745738,1,Credit-Builder Loan,,19.00902834,12.57,2,Standard,1563.807826,39.62636037,27 Years and 11 Months,Yes,6.047450347,51.83688406,Low_spent_Medium_value_payments,292.7610026,0,-0.6105,0.8153,-0.2417,-0.101,-3.2169 +0x15fd9,CUS_0xa0d,August,48,655-78-0925,Scientist,19205.485,1828.457083,5,5,1,4,"Payday Loan, Student Loan, Student Loan, and Payday Loan",,10,4.01,3,Good,344.1936493,31.74996388,20 Years and 3 Months,No,39.41708646,85.39338821,!@9#%8,348.2527313,0,1.0732,2.1047,0.4585,-0.1337,0.2346 +0x15fe5,CUS_0x754d,August,50,257-18-5219,Entrepreneur,19891.58,,4,300,7,4,"Home Equity Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",15.18381648,12,3.12,2,Good,280.5769755,39.08607855,29 Years and 0 Months,No,187.2695295,130.7779256,Low_spent_Small_value_payments,265.4748601,0,0.7323,0.1668,2.1603,0.035,-0.4984 +0x15ff1,CUS_0x1e98,August,55,933-85-2688,Accountant,114082.64,9508.886667,6,3,9,0,,20.22492841,,10.61,3,Standard,38.01573767,41.35218099,22 Years and 0 Months,No,0,421.1072355,High_spent_Medium_value_payments,830.7606675,0,-0.3079,-0.1394,1.1951,0.6205,-0.0325 +0x15ffd,CUS_0x58ea,August,38,503-18-6343,Manager,30247.7,,5,6,10,7,"Auto Loan, Not Specified, Not Specified, Payday Loan, Not Specified, Not Specified, and Personal Loan",,10,15.87,8,_,841.39,34.99671591,12 Years and 11 Months,Yes,90.59921819,108.1456182,Low_spent_Small_value_payments,324.1193303,0,0.0441,0.5785,-0.2552,0.3262,-0.7028 +0x16009,CUS_0x440f,August,23,199-11-6403,Journalist,18207.375,,0,3,3,3,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",4.646065188,5,5.8,4,Good,589.65,34.6446861,23 Years and 5 Months,NM,35.11545669,111.3689168,High_spent_Small_value_payments,273.7437515,0,0.5416,0.3504,0.6959,-1.8478,1.1552 +0x16015,CUS_0xa94f,August,36,375-86-0761,Journalist,56340.6,4837.05,3,1,12,1,Auto Loan,11.44817849,11,11.51,3,Good,500.2367184,35.94655086,23 Years and 10 Months,No,26.80920043,42.98634935,High_spent_Large_value_payments,659.4727654,0,-0.6888,-1.4296,-0.7156,-0.4085,-1.0244 +0x16021,CUS_0xabd9,August,25,299-80-2126,Engineer,62571.84,,2,2,7,3,"Home Equity Loan, Home Equity Loan, and Not Specified",0,3,17.16,1,_,472.54,32.87391512,23 Years and 8 Months,No,103.5581985,,High_spent_Medium_value_payments,604.2702168,0,0.1591,-0.6923,-0.9463,0.0255,-1.1336 +0x1602d,CUS_0x6b7c,August,25,011-38-4224,Entrepreneur,81334.68,6766.89,9,411,32,2,"Auto Loan, and Not Specified",,27.72754529,13.62,11,Bad,1874.789939,27.42095309,13 Years and 9 Months,Yes,99.2796392,,High_spent_Small_value_payments,703.9320104,0,0.5772,-1.344,-1.267,-1.1056,-1.3961 +0x16039,CUS_0x4bd,August,55,422-79-5494,Mechanic,36274.17,3106.8475,8,4,15,4,"Student Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",19.31783507,16,8.99,6,Standard,237.17,23.11038431,26 Years and 2 Months,No,83.92104895,,High_spent_Small_value_payments,431.5770521,0,-0.455,-0.4312,-0.0124,0.7856,1.8854 +0x16045,CUS_0x6956,August,31,807-24-3038,Doctor,61883.44,4914.953333,9,7,28.06745738,100,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",,25.57501298,18.18,7,Bad,5570.05997,31.35955018,5 Years and 8 Months,Yes,231.0384276,395.824973,Low_spent_Small_value_payments,127.9116448,0,0.8202,-1.688,-0.4477,0.2017,-1.1763 +0x16051,CUS_0x652c,August,49,763-63-9015,Developer,59703.46,,3,3,8.288361749,4,"Personal Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",6.157846218,8,9.36,4,Good,621.5,30.46194863,24 Years and 6 Months,No,49752,611.6274931,High_spent_Small_value_payments,420.2714784,0,-0.177,-0.1238,0.3171,0.6161,0.4507 +0x1605d,CUS_0x944,August,42,992-65-1613,Manager,119402.64,9679.22,8,7,19,3,"Personal Loan, Credit-Builder Loan, and Mortgage Loan",10.3711842,10,3.39,7,_,766.15,33.40453505,29 Years and 8 Months,NM,176.1574914,82.13792858,High_spent_Large_value_payments,949.62658,0,-0.485,-1.5672,0.0103,1.2132,-0.5467 +0x16069,CUS_0x8d39,August,41,801-53-9308,Teacher,40740.44,,4,3,10,100,"Payday Loan, Not Specified, Home Equity Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",19.70900112,11.2855866,,10,_,277.7167592,31.02278315,18 Years and 6 Months,Yes,144.4111568,69.24343037,High_spent_Medium_value_payments,369.4490795,0,0.3966,1.4197,-0.9402,-0.0011,1.1788 +0x16075,CUS_0x47e3,August,38,326-46-1131,Architect,7750.735,,3,7,25,3,"Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",24.27645234,19.90633725,18.72,14,Standard,1786.879999,25.5262828,10 Years and 6 Months,Yes,17.19111019,,High_spent_Medium_value_payments,284.7526797,0,-0.0686,-0.1696,-0.5145,-1.6199,-0.0189 +0x16081,CUS_0xbfe7,August,22,171-94-6968,Teacher,8693.97,,6,5,18,7,"Auto Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, and Mortgage Loan",38.23779005,25,17.72,10,Bad,1496.11,38.70031237,12 Years and 6 Months,Yes,29.31050842,41.31206058,Low_spent_Small_value_payments,286.927181,0,0.5526,-0.133,-1.2322,0.339,1.6904 +0x1608d,CUS_0x6e8,August,52,061-88-8236,Lawyer,76040.82,,7,4,8,4,"Student Loan, Personal Loan, Personal Loan, and Payday Loan",,15,9.23,3,Standard,982.4,37.78990835,17 Years and 6 Months,Yes,223.694107,10000,Low_spent_Medium_value_payments,353.0802988,0,-0.6057,-1.4406,-0.5462,-0.6229,1.0937 +0x16099,CUS_0x6573,August,40,682-25-4861,Doctor,8922.155,,6,8,24.88954781,7,"Personal Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Payday Loan, and Home Equity Loan",18.72206538,,18.61,9,Bad,4304.064101,39.4907857,2 Years and 4 Months,Yes,1372.022449,117.2514417,!@9#%8,217.2882804,0,-0.3717,-1.2058,0.1388,1.9372,-0.8838 +0x160a5,CUS_0x40d7,August,18,480-05-6444,Engineer,18191.86,,9,5,28.06745738,6,"Home Equity Loan, Student Loan, Student Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",39.44484591,21,25.2,6,Bad,4683.530954,26.80671977,12 Years and 10 Months,Yes,78.56152135,83.36537615,Low_spent_Large_value_payments,207.7516479,0,1.4437,-0.6527,0.1922,-0.0593,-1.7727 +0x160b1,CUS_0x3dfe,August,27,662-33-1324,Engineer,39630.92,3169.576667,8,7,6,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Personal Loan",7.763814117,9,,9,Standard,2566.9,26.94636828,6 Years and 6 Months,Yes,78.76279139,107.0005272,High_spent_Medium_value_payments,381.1943481,0,0.4473,0.6597,2.2739,0.1347,-0.57 +0x160bd,CUS_0xbff8,August,36,758-99-6990,Lawyer,32086.38,2793.865,9,7,22.06745738,7,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Personal Loan, Not Specified, and Personal Loan",44.62219976,23,5.99,10,Bad,3088.900954,38.93650053,12 Years and 11 Months,Yes,120.1247539,,Low_spent_Medium_value_payments,216.9974632,0,0.2994,0.8193,-0.8585,-1.669,-0.0054 +0x160c9,CUS_0x5182,August,43,047-96-9953,Engineer,14562.32,1168.526667,7,8,3802.067457,4,"Not Specified, Personal Loan, Personal Loan, and Payday Loan",56.28578901,30.67436134,7.21,16,Bad,2313.229293,31.31412806,19 Years and 0 Months,Yes,43.09042995,77.89422359,Low_spent_Small_value_payments,259.1477252,0,-0.8724,-0.1658,2.4979,-1.8702,-0.8863 +0x160d5,CUS_0x880e,August,19,601-03-2677,Entrepreneur,58962.2,5086.516667,10,7,15,9,"Auto Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, and Student Loan",,22,18.89,13,Bad,4294.21,31.13691296,,Yes,289.2815178,77.35371111,High_spent_Large_value_payments,382.0164378,0,0.7664,-1.2423,-0.176,0.3316,0.7553 +0x160e1,CUS_0x45af,August,33,#F%$D@*&8,Media_Manager,35022.76,,6,4,11,3,"Home Equity Loan, Auto Loan, and Home Equity Loan",26.58971656,17,11,3,_,794.33,28.47380034,23 Years and 2 Months,No,64.4411065,111.1522694,Low_spent_Small_value_payments,379.0629575,0,0.9515,-0.326,-0.363,-1.3655,-0.4755 +0x160ed,CUS_0x2d05,August,36,#F%$D@*&8,Media_Manager,30910.68,2066.926954,6,3,17,3,"Mortgage Loan, Payday Loan, and Home Equity Loan",27.71179379,20,15.53,11,Standard,340.8240562,37.75341917,11 Years and 6 Months,Yes,362.9717567,30.11347697,High_spent_Large_value_payments,396.4074649,0,0.6581,-1.6486,1.3676,-2.1596,-0.1002 +0x160f9,CUS_0x7ea2,August,31,584-85-1295,Teacher,19956.75,,6,5,1,2,"Personal Loan, and Home Equity Loan",17.83275782,,6.36,6,_,1128.691343,33.25526569,,No,28.52010955,136.0234964,Low_spent_Small_value_payments,301.3025766,0,0.5927,1.7963,0.577,0.6223,0.3636 +0x16105,CUS_0x9ad,August,21,692-76-3442,Lawyer,49116.74,,4,4,16,387,"Personal Loan, Personal Loan, and Not Specified",19.95189769,15,12.07,5,Standard,1429.53,41.77764471,18 Years and 5 Months,Yes,112.6573794,88.47965441,High_spent_Medium_value_payments,483.1691329,0,0.9514,-0.5761,0.3876,0.8235,-0.0228 +0x16111,CUS_0xc03f,August,18,190-20-8188,Writer,126578.8,10817.23333,3,6,6,4,"Payday Loan, Payday Loan, Auto Loan, and Home Equity Loan",15.60079112,14,13.57,7,Standard,1156.17,38.34879335,19 Years and 0 Months,Yes,328.6588026,955.0665693,Low_spent_Medium_value_payments,77.99796145,0,0.3653,0.5828,-0.7468,-0.8298,-0.4123 +0x1611d,CUS_0x29dd,August,28,781-37-9008,Media_Manager,38218.3,,7,3,16,5,"Debt Consolidation Loan, Payday Loan, Not Specified, Payday Loan, and Home Equity Loan",8.282970892,8,11.78,13,Standard,1167.12502,32.81055074,19 Years and 3 Months,Yes,113.1464971,91.73163283,High_spent_Medium_value_payments,381.8011725,0,-1.3346,0.2527,-0.7545,-1.117,-1.789 +0x16129,CUS_0x2bf1,August,18,432-85-2655,Lawyer,73128,5796,5,6,20,1,Auto Loan,,12,15.63,4,_,1237.13,38.85820705,20 Years and 4 Months,Yes,42.36714782,91.34941392,High_spent_Large_value_payments,685.8834383,0,-2.1142,-2.8712,0.2123,-0.5059,1.8158 +0x16135,CUS_0x85be,August,25,808-96-6273,Writer,19669.56,,8,8,31.95700519,100,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",,24,17.01,6,Bad,4535.820954,42.11984123,,Yes,1392.504404,15.0849055,High_spent_Large_value_payments,299.373321,0,0.0792,-0.7599,-0.6698,-0.6402,0.2513 +0x16141,CUS_0x5953,August,38,603-30-8078,Journalist,147894.56,12186.54667,0,5,3.288361749,0,,5.574523042,7,0.57,2,_,1161.657508,29.82074787,16 Years and 10 Months,No,0,1567.985823,Low_spent_Medium_value_payments,498.793599,0,-0.0588,0.1197,-0.8854,-1.5451,-0.1599 +0x1614d,CUS_0x855f,August,43,153-56-1810,Lawyer,142204.08,,6,7,17,4,"Auto Loan, Not Specified, Payday Loan, and Home Equity Loan",18.17558805,13.11899278,3.43,3,_,1381.402956,38.99629567,24 Years and 0 Months,Yes,250.4088814,968.4281974,Low_spent_Medium_value_payments,275.2969212,0,0.0607,-0.5787,0.9772,-1.3991,0.7158 +0x16159,CUS_0xb3aa,August,19,275-61-6396,Scientist,127594.92,10535.91,5,4,4.288361749,2,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",7.312468293,8,14.55,10,Standard,1321.69,30.26754852,17 Years and 10 Months,NM,231.4532491,1345.798245,Low_spent_Large_value_payments,166.2769666,0,0.5399,-0.4376,0.2803,-1.611,0.4784 +0x16165,CUS_0x2508,August,45,811-51-3882,Musician,15131.11,1321.925833,7,8,15,9,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Student Loan, Credit-Builder Loan, Not Specified, Personal Loan, Payday Loan, and Debt Consolidation Loan",21.95311829,16.85281013,18.12,7,Bad,2999.335527,29.44942888,1 Years and 11 Months,Yes,86.06891364,,Low_spent_Small_value_payments,245.2809762,0,-0.2512,-0.3478,1.1537,1.9743,1.1812 +0x16171,CUS_0x65e4,August,45,609-54-4421,Doctor,63733.54,4720.400924,4,5,13,4,"Student Loan, Not Specified, Not Specified, and Mortgage Loan",,16,11.74,3,Standard,487.0332626,33.08650268,16 Years and 5 Months,Yes,645.6379857,109.135866,High_spent_Medium_value_payments,464.665218,0,0.8343,-0.9844,0.2101,-0.8785,-0.5063 +0x1617d,CUS_0x4aef,August,20,951-50-2417,Accountant,20137.56,,6,5,30,2,"Home Equity Loan, and Home Equity Loan",33.32986479,22.79667282,10.17,8,_,2906.694299,27.35594757,,Yes,31.67468057,,High_spent_Small_value_payments,380.3842206,0,0.2518,-0.5765,-0.733,-0.6599,0.3396 +0x16189,CUS_0x3d99,August,46,776-42-6105,Accountant,167258.04,12986.31552,5,1123,12,0,,0,0,10.72,,Good,436.8342885,26.56801037,,No,1213.854476,1094.536313,Low_spent_Large_value_payments,726.8893024,0,1.2367,-1.7804,-1.0128,0.2724,-2.1802 +0x16195,CUS_0xc3df,August,26,468-78-1035,Accountant,10142.545,991.2120833,8,8,32.95700519,9,"Debt Consolidation Loan, Auto Loan, Payday Loan, Personal Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Auto Loan",,25.54656642,12,12,Bad,5694.121068,37.75129249,2 Years and 3 Months,NM,1378.052725,,!@9#%8,230.2962847,0,0.3704,-0.6671,-0.0239,-0.554,0.1471 +0x161a1,CUS_0x87e7,August,39,148-41-6203,Mechanic,59513.44,,5,7,1,1,Credit-Builder Loan,1.225521971,2.302026688,10.89,4,_,52.55177126,38.58544395,33 Years and 0 Months,No,37.87853262,305.4217598,High_spent_Small_value_payments,421.3450409,0,-1.0481,1.3564,-2.0853,0.643,0.1555 +0x161ad,CUS_0x1dcf,August,49,181-80-6490,Writer,40331.05,3106.920833,5,5,3,2,"Auto Loan, and Personal Loan",,11.92524591,10.56,2,Good,843.3443797,39.40410367,20 Years and 0 Months,No,64.765007,,High_spent_Medium_value_payments,372.101325,0,-1.7032,0.3217,-0.4726,1.6505,0.3544 +0x161b9,CUS_0x2bf4,August,53,206-02-5700,Lawyer,42586.46,,5,3,6,3,"Student Loan, Credit-Builder Loan, and Home Equity Loan",11.1478422,7,-6.03,2,_,1053.75,39.12445661,29 Years and 11 Months,No,64.00895861,33.34691328,!@9#%8,513.7312948,0,0.7548,-0.1978,0.2187,1.1713,-0.3816 +0x161c5,CUS_0x79bf,August,31,871-58-3781,Journalist,9533.995,,9,5,25,8,"Credit-Builder Loan, Payday Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Auto Loan",,21,19.72,10,Bad,2579.1,31.6768918,7 Years and 11 Months,NM,61.36642782,35.52514298,Low_spent_Small_value_payments,272.8583875,0,-0.7697,0.328,-0.8954,1.4589,-1.1826 +0x161d1,CUS_0x47c1,August,21,749-16-4561,Writer,33729.28,,6,8,28.06745738,9,"Mortgage Loan, Not Specified, Mortgage Loan, Student Loan, Student Loan, Mortgage Loan, Not Specified, Auto Loan, and Credit-Builder Loan",51.67872643,29.31168735,29.86,11,Bad,5267.182227,36.16829855,5 Years and 0 Months,Yes,129.482589,230.0618921,!@9#%8,186.4125643,0,-0.293,1.1021,-0.2858,1.1681,-0.3157 +0x161dd,CUS_0x37a4,August,25,797-48-3371,Entrepreneur,80857.56,6769.13,6,9,15,4,"Auto Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",42.07676719,24.78281517,16.38,13,_,2628.469641,26.8650936,19 Years and 4 Months,Yes,164.7760378,130.0856604,High_spent_Large_value_payments,622.0513018,0,0.8827,-0.7873,0.578,-1.3209,2.1896 +0x161e9,CUS_0x47ec,August,20,#F%$D@*&8,Architect,40314.54,3653.545,9,7,32,9,"Personal Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",,19.75406102,3.17,7,Bad,2525.290368,34.58956792,13 Years and 5 Months,Yes,284.9562118,259.1991181,Low_spent_Medium_value_payments,101.1991701,0,-0.9302,-0.94,0.3374,-0.8859,1.7606 +0x161f5,CUS_0x2d3e,August,43,771-64-8544,Architect,68214.9,5660.575,6,5,7,2,"Not Specified, and Personal Loan",,12,16.22,6,Standard,978.49,26.59988347,28 Years and 2 Months,Yes,59.13169478,110.6878174,High_spent_Medium_value_payments,646.2379878,0,0.1918,-2.0769,-1.0555,0.3945,0.3258 +0x16201,CUS_0x8f6a,August,25,789-04-6740,Teacher,20365.57,1642.130833,10,9,30.88954781,6,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",33.69313871,24,24.6,17,_,2924.35,25.13337988,5 Years and 3 Months,Yes,1418.7307,127.2693469,Low_spent_Medium_value_payments,203.8829554,0,2.064,1.6222,0.353,-0.8288,-1.8295 +0x1620d,CUS_0x649d,August,23,792-87-7976,Architect,23767.59,2044.6325,8,1386,7,4,"Personal Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",,17,9.15,10,Standard,140.57,27.09654838,20 Years and 0 Months,Yes,46.79928932,,!@9#%8,344.0647654,0,-1.9912,1.2912,-0.6753,1.5577,0.3022 +0x16219,CUS_0xc6dd,August,28,158-71-6199,Entrepreneur,48819.34,,5,4,14,3,"Debt Consolidation Loan, Auto Loan, and Credit-Builder Loan",,12,11.28,5,Standard,535.3,29.5323054,8 Years and 0 Months,NM,68.30643798,214.781726,Low_spent_Small_value_payments,425.0396694,0,-1.4432,0.4513,0.373,0.701,0.0206 +0x16225,CUS_0x2dc6,August,46,262-10-1868,Writer,80574.12,6707.51,0,3,4,1,Payday Loan,15.35323769,,2,2,Good,1142.39,39.60440944,30 Years and 3 Months,No,56.99565328,191.7782625,High_spent_Medium_value_payments,671.9770842,0,-0.5052,0.1865,0.2948,0.5218,-0.5491 +0x16231,CUS_0x38df,August,54,958-49-4931,Architect,18140.575,,1,4,5,1,Mortgage Loan,16.54107966,,2.09,4,Good,850.7,34.8479332,17 Years and 0 Months,NM,7.954928158,,High_spent_Medium_value_payments,393.3143545,0,-0.8024,-1.0816,-2.5271,-0.6556,1.1204 +0x1623d,CUS_0x6dc5,August,19,#F%$D@*&8,Engineer,34860.05,,3,1,10,3,"Auto Loan, Student Loan, and Not Specified",,0,9.6,2,Good,1218.18,37.30840692,22 Years and 11 Months,NM,51.29232526,80.98137869,Low_spent_Large_value_payments,399.9267127,0,0.3663,-0.0458,0.2256,-0.1547,-1.0756 +0x16249,CUS_0xb556,August,22,065-00-5837,Manager,18145.22,,4,3,10,1,Home Equity Loan,3.292453634,7,8.36,2,_,1027.204917,36.49148429,16 Years and 5 Months,NM,12.84352243,11183.90854,Low_spent_Small_value_payments,253.8130212,0,0.1319,1.9447,-2.0639,0.6191,-1.9476 +0x16255,CUS_0x264a,August,35,893-00-6129,Doctor,18753.34,1623.778333,5,4,11,4,"Personal Loan, Home Equity Loan, Not Specified, and Auto Loan",18.69668152,13,18.1,9,_,2575.62,35.10498353,15 Years and 5 Months,Yes,54.39627003,185.4688993,Low_spent_Small_value_payments,212.512664,0,1.1519,-0.7986,1.1907,-0.1135,0.3888 +0x16261,CUS_0x5d5f,August,26,740-49-8165,Teacher,60363.5,5277.291667,3,7,4.288361749,0,,0,0,2.38,0,_,140.4107577,37.25712059,17 Years and 11 Months,No,0,,Low_spent_Small_value_payments,285.2563296,0,-0.4724,0.406,-0.386,-0.2459,-1.2332 +0x1626d,CUS_0x8e73,August,35,733-72-3818,Architect,15807.59,,6,8,29.06745738,5,"Personal Loan, Personal Loan, Not Specified, Mortgage Loan, and Payday Loan",26.03987973,15,7.59,10,_,2624.370954,39.50674405,14 Years and 8 Months,Yes,39.44534882,93.90973477,High_spent_Small_value_payments,239.7545451,0,0.2266,0.2451,0.3927,0.2207,0.9161 +0x16279,CUS_0x476c,August,28,643-75-6294,Manager,37688.55,3317.7125,2,6,1.288361749,4,"Payday Loan, Student Loan, Auto Loan, and Mortgage Loan",9.108363299,10,3.27,7,Good,24.48759414,33.15881947,25 Years and 2 Months,No,114.3337212,510.8007216,High_spent_Medium_value_payments,387.7660863,0,1.6529,-0.9511,1.0671,-0.9178,-0.0487 +0x16285,CUS_0x67a9,August,28,909-77-7191,Scientist,16268.51,1447.709167,6,6,19,2,"Mortgage Loan, and Not Specified",30.32651429,22,12.8,4,_,2181.28,38.05792037,17 Years and 11 Months,Yes,25.1260605,149.2451993,Low_spent_Small_value_payments,260.3996568,0,0.2069,3.3758,-0.5183,0.1301,0.4353 +0x16291,CUS_0x1000,August,20,913-74-1218,Lawyer,30625.94,,6,5,28.06745738,2,"Credit-Builder Loan, and Home Equity Loan",54.39017743,30.54789832,1.63,11,Bad,1936.045647,31.10049507,10 Years and 9 Months,Yes,42.94109042,77.31427572,High_spent_Medium_value_payments,373.6405126,0,0.5365,-0.3802,0.2652,1.1246,-0.275 +0x1629d,CUS_0x8124,August,28,702-30-5849,Journalist,15383.46,1325.955,3,2,1,4,"Student Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",12.29680245,11,6.03,1352,Good,511.27,29.8746473,18 Years and 0 Months,No,31.67114259,36.58121331,Low_spent_Medium_value_payments,344.3431441,0,-1.7065,0.6193,1.0041,1.1517,2.054 +0x162a9,CUS_0xa751,August,31,694-90-3548,Entrepreneur,19506.72,,10,6,17.06745738,7,"Payday Loan, Mortgage Loan, Student Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",,15,20.72,9,_,5073.980954,23.52064724,13 Years and 5 Months,Yes,111.8767031,127.0791133,Low_spent_Medium_value_payments,174.8798956,0,0.4028,-0.0166,-1.0443,0.0332,1.1112 +0x162b5,CUS_0x446f,August,52,318-09-4149,Accountant,56381.6,4535.466667,5,3,1,3,"Credit-Builder Loan, Mortgage Loan, and Payday Loan",3.101428738,6,0.81,6,_,1371.48,35.35433939,30 Years and 2 Months,No,119.6230081,172.1013336,Low_spent_Medium_value_payments,441.8223249,0,-1.0898,0.1435,-1.3753,-1.6969,1.2842 +0x162c1,CUS_0x3040,August,29,755-93-6252,Engineer,7056.405,,4,3,30,4,"Home Equity Loan, Mortgage Loan, Student Loan, and Auto Loan",24.38273918,16.62136366,14.06,11,Standard,2917.508195,41.33587816,16 Years and 6 Months,Yes,16.37229285,17.6500786,Low_spent_Medium_value_payments,294.5810035,0,-0.3084,0.9091,2.0139,-0.8254,0.1638 +0x162cd,CUS_0xb8f6,August,45,367-94-5147,_______,70943.86,,1155,4,11.28836175,0,Personal Loan,18.8314011,16,13.14,6,Standard,326.61,33.84914371,32 Years and 4 Months,Yes,39.69075362,811.740923,Low_spent_Large_value_payments,436.7046177,0,2.1011,0.676,-0.0734,0.9466,1.1181 +0x162d9,CUS_0x7a05,August,25,566-31-7717,_______,32520.93,,8,3,7,0,,11.76857149,10,7.95,4,Standard,1212.98,25.51936269,19 Years and 4 Months,NM,0,97.18579656,Low_spent_Large_value_payments,459.6219534,0,1.0805,-1.6023,0.7038,1.0326,-0.6143 +0x162e5,CUS_0x721,August,43,618-56-4729,Scientist,14297.72,1129.476667,10,5,25.06745738,7,"Payday Loan, Personal Loan, Not Specified, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Not Specified",,24.31071111,3.5,8,Bad,3069.358924,32.62676494,17 Years and 10 Months,Yes,77.97500513,,High_spent_Large_value_payments,221.335529,0,-0.3522,-1.5766,-0.9483,-0.4809,-0.9617 +0x162f1,CUS_0x9ee4,August,54,425-72-7007,Manager,102745.4,8615.116667,3,4,11,0,,16.84723278,15,3.8,4,Good,401.9565046,32.50294882,16 Years and 8 Months,No,0,,Low_spent_Large_value_payments,572.3695282,0,0.6424,-0.2641,-1.1195,-0.8767,-1.6042 +0x162fd,CUS_0x552,August,52,837-55-2459,Engineer,161006.32,13449.19333,0,2,7,1,Payday Loan,,0,2.6,0,Good,545.1109518,40.7164424,18 Years and 11 Months,NM,91.88030277,1223.258602,Low_spent_Medium_value_payments,443.1176513,0,-1.3367,-1.3361,0.7824,0.4694,0.4203 +0x16309,CUS_0x38c1,August,24,422-91-7585,Entrepreneur,31217.34,,9,10,16,6,"Not Specified, Credit-Builder Loan, Not Specified, Personal Loan, Student Loan, and Credit-Builder Loan",,22,6.63,14,_,2495.35,25.07699738,12 Years and 9 Months,Yes,81.6961794,,Low_spent_Small_value_payments,233.0788711,0,0.9612,0.2581,-0.1032,-0.01,-0.579 +0x16315,CUS_0x6700,August,36,#F%$D@*&8,Doctor,63213.12,,4,4,8.288361749,4,"Payday Loan, Payday Loan, Not Specified, and Student Loan",6.362761182,7,8.47,7,Good,518.6565241,33.64943013,23 Years and 5 Months,No,166.1176527,,Low_spent_Small_value_payments,120.1712056,0,2.0279,-0.9092,0.44,1.6358,0.2449 +0x16321,CUS_0xb71e,August,25,819-06-5794,Scientist,68354.84,,5,5,7,7,"Personal Loan, Auto Loan, Student Loan, Home Equity Loan, Student Loan, Payday Loan, and Not Specified",11.63898342,10,21.95,5,_,914.82,27.08624996,9 Years and 6 Months,Yes,241.7463336,127.7090733,High_spent_Medium_value_payments,465.6682598,0,0.7696,0.0975,1.0116,-2.0233,-0.6777 +0x1632d,CUS_0xac5f,August,44,840-92-7027,Teacher,35531.83,2743.985833,1,4,11.28836175,4,"Credit-Builder Loan, Mortgage Loan, Auto Loan, and Personal Loan",10.88047502,11,1.66,9,Good,282.6624535,20.58124334,17 Years and 10 Months,No,75.17187482,748.688401,Low_spent_Small_value_payments,196.0418445,0,1.5685,0.1615,0.072,-0.0413,1.2307 +0x16339,CUS_0xa8b9,August,22,679-69-9451,Doctor,23838.09,2031.5075,5,6,13,4,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Auto Loan",,11.61666157,7.15,7,Standard,871.2780807,39.30335383,30 Years and 5 Months,Yes,53.30809889,80.45043775,Low_spent_Large_value_payments,339.3922134,0,-1.5078,-0.3605,-0.7702,-0.1002,-0.9486 +0x16345,CUS_0x5523,August,25,871-01-3296,Lawyer,73062.6,6267.55,4,7,20,4,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",16.01685163,13,14.24,8,Standard,249.4316264,35.42089661,17 Years and 5 Months,Yes,176.8524434,79.95740614,High_spent_Large_value_payments,617.5333013,0,-0.9831,-1.3936,-0.7334,0.2706,1.6111 +0x16351,CUS_0x7467,August,21,883-64-0324,Developer,64341.36,,2,3,0.288361749,0,,1.11674095,5,1.6,5,Good,642.93,30.27496395,30 Years and 10 Months,No,0,642.9194089,High_spent_Medium_value_payments,589.1960521,0,-1.063,-1.5894,0.14,-0.8263,-0.4327 +0x1635d,CUS_0x1348,August,43,#F%$D@*&8,Lawyer,28825.73,2648.144167,5,6,19,5,"Auto Loan, Home Equity Loan, Student Loan, Payday Loan, and Student Loan",26.15292945,20,16.21,8,Standard,1310.98,34.85138039,14 Years and 2 Months,Yes,76.40594993,43.10917222,High_spent_Medium_value_payments,395.2992945,0,0.2886,-0.3863,1.9296,0.4402,2.0441 +0x16369,CUS_0x2171,August,26,704-85-3416,Journalist,22015.68,,6,5,7,5,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",17.70620099,12,17.68,7,Standard,775.52,28.83413373,12 Years and 10 Months,Yes,74.74171041,54.54246348,High_spent_Medium_value_payments,324.4798261,0,-1.551,0.2633,0.6946,1.0325,0.5663 +0x16375,CUS_0x18f4,August,23,123-85-8897,Teacher,35805.25,,4,7,16,0,,,15,3.81,2,Standard,723.27,37.07935873,25 Years and 3 Months,No,0,99.90848167,High_spent_Medium_value_payments,460.7686017,0,-0.0256,-0.7231,0.4057,-0.0966,0.3907 +0x16381,CUS_0x8e71,August,33,831-07-4489,Manager,51660.42,4311.035,6,6,10,4,"Auto Loan, Not Specified, Student Loan, and Mortgage Loan",,17,13.45,8,Standard,358.9,38.26793054,23 Years and 2 Months,Yes,94.53644988,,High_spent_Medium_value_payments,530.3565381,0,-0.1138,-0.4759,-1.0274,0.6562,1.52 +0x1638d,CUS_0x22ea,August,24,602-45-5807,Manager,61016.88,5090.74,4,3,3,1,Personal Loan,10.60658198,12,11.01,6,_,988.23,39.67233638,32 Years and 3 Months,No,49.72301525,200.7040671,High_spent_Medium_value_payments,508.6469177,0,0.9219,-0.1579,0.0043,-0.6592,0.428 +0x16399,CUS_0x8aa2,August,37,231-43-8484,Writer,68103.81,5270.796896,8,7,2,0,,8.364675003,8,3.41,3,Good,61.86727915,25.71966363,33 Years and 6 Months,No,669.520604,264.4951124,!@9#%8,616.6589351,0,-0.7918,-0.3195,-0.3128,-0.8223,-0.2643 +0x163a5,CUS_0x2bdc,August,29,454-30-4171,Writer,119223.09,10046.2575,0,6,2,0,,,4.716621632,4.53,4,_,16.98256262,37.30540655,22 Years and 3 Months,No,0,201.1301815,High_spent_Large_value_payments,1043.495569,0,-1.8198,1.6266,1.7872,0.42,0.1959 +0x163b1,CUS_0x85c6,August,18,175-90-4269,Teacher,14394.435,,5,6,5,5,"Auto Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, and Payday Loan",19.24064075,14,10.18,4,Standard,159.41,28.0154518,20 Years and 2 Months,Yes,53.51701552,64.21663638,Low_spent_Medium_value_payments,307.5199731,0,0.3695,0.3996,0.0617,0.3665,0.4645 +0x163bd,CUS_0xadef,August,27,154-27-1727,Lawyer,34797.74,,6,4,7,3,"Personal Loan, Payday Loan, and Personal Loan",14.1589499,10,5.08,3,Standard,874.86,30.46640327,31 Years and 8 Months,Yes,56.27407816,,Low_spent_Medium_value_payments,216.5942378,0,1.4346,0.6923,-0.014,0.0184,0.1561 +0x163c9,CUS_0x9a02,August,36,120-05-9806,Entrepreneur,17840.72,,10,6,29,8,"Payday Loan, Student Loan, Auto Loan, Payday Loan, Student Loan, Mortgage Loan, Not Specified, and Home Equity Loan",28.38822069,17,29.48,,Bad,2651.74,29.86740597,7 Years and 5 Months,Yes,118.0360464,100.2778714,Low_spent_Small_value_payments,199.2587489,0,-0.016,0.0954,-0.7918,0.3164,0.1861 +0x163d5,CUS_0xa001,August,27,006-12-2174,Developer,67648.36,,1164,8,35.95700519,9,"Home Equity Loan, Student Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,21.46882767,1.58,10,Bad,5763.402247,31.58114475,6 Years and 5 Months,Yes,1584.164271,,Low_spent_Medium_value_payments,338.7122389,0,-0.9435,-0.4327,-0.4999,0.1918,0.7914 +0x163e1,CUS_0x6f2,August,40,189-20-3120,Lawyer,33930.63,3061.5525,5,5,5,0,,13.18156722,9,11.37,6,_,138.97,36.65922899,29 Years and 11 Months,Yes,0,227.5770673,Low_spent_Large_value_payments,348.5781827,0,-0.557,0.6455,-0.5095,-0.4468,1.4172 +0x163ed,CUS_0x1dbd,August,26,699-27-2330,Developer,17169.365,1282.780417,4,3,21.06745738,0,,20.728295,13.87808769,5.65,3,Standard,1260.768867,29.74270412,30 Years and 8 Months,No,0,118.558192,Low_spent_Small_value_payments,272.9995618,0,0.0685,0.3846,0.6494,0.277,-1.1714 +0x163f9,CUS_0x22ba,August,48,103-76-4368,Architect,115023.36,9801.28,3,4,0.288361749,2,"Home Equity Loan, and Not Specified",1.72161219,4,-6.13,7,_,1143.52,24.83823432,21 Years and 5 Months,No,5041,1057.873357,Low_spent_Medium_value_payments,513.7786844,0,-0.6542,-1.9669,0.9026,-0.4315,-0.3397 +0x16405,CUS_0x3026,August,24,612-78-1569,Doctor,60214.04,5034.836667,7,5,18,5,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",26.10923745,20.29248155,1.97,12,Bad,1501.89215,36.68156419,13 Years and 10 Months,Yes,201.9560166,40.46506053,High_spent_Large_value_payments,501.0625896,0,-0.7351,-1.4724,0.0987,-1.9851,0.5326 +0x16411,CUS_0x6b59,August,24,992-54-9955,Developer,29041.4,,3,5,3,2,"Student Loan, and Payday Loan",0,0,8.58,1,Good,1137.142315,35.19020026,32 Years and 0 Months,No,37.02349818,134.9526689,Low_spent_Large_value_payments,362.6354996,0,-1.7751,0.0365,1.1762,-1.8851,-2.1126 +0x1641d,CUS_0x84b4,August,26,803-33-0206,Manager,16665.49,,6,7,21,4,"Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",16.91360939,12,13.44,7,Standard,2679.6,32.71661265,,Yes,41.64669483,42.77148889,High_spent_Small_value_payments,306.7608996,0,-0.793,-0.8555,-0.2451,1.2078,-0.0339 +0x16429,CUS_0x853d,August,42,328-21-9083,Lawyer,20028.04,,4,5,8,2,"Student Loan, and Not Specified",,19,2.85,7,Standard,528.22,38.98318745,12 Years and 4 Months,Yes,26.61314373,,!@9#%8,256.4107813,0,-0.8644,-0.039,-0.9259,-0.0038,-0.2997 +0x16435,CUS_0xc716,August,28,900-03-2348,Writer,14947.38,1191.615,8,10,4797.957005,6,"Personal Loan, Personal Loan, Auto Loan, Auto Loan, Student Loan, and Student Loan",34.54634674,20.517667,13.13,12,Bad,2557.603913,26.34838923,11 Years and 8 Months,Yes,1372.782341,,Low_spent_Small_value_payments,167.2466495,0,-0.047,-2.3229,-0.2077,2.5705,1.5409 +0x16441,CUS_0x682c,August,54,327-00-8482,Entrepreneur,37482.37,3182.530833,1,7,1,1,Not Specified,2.209952071,6.078772818,3.87,0,Good,1273.011153,24.54808218,,No,26.54322193,10000,High_spent_Small_value_payments,350.66086,0,0.6718,-1.6666,0.7492,0.7632,0.2303 +0x1644d,CUS_0x19de,August,34,162-12-7993,Lawyer,19140.25,,8,6,18,5,"Personal Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",39.37600141,24,4.11,10,Bad,3152.24,34.02004869,13 Years and 3 Months,NM,53.74566621,18.41802882,High_spent_Large_value_payments,328.6383883,0,-0.2509,0.9979,-0.3675,-2.0024,0.4345 +0x16459,CUS_0x2308,August,23,853-72-0269,Lawyer,19286.26,,9,9,20,6,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Personal Loan, and Auto Loan",30.81673854,19,28.01,14,Bad,4019.02,33.11877808,9 Years and 11 Months,Yes,66.33474977,42.86272012,High_spent_Small_value_payments,321.1213634,0,0.2824,0.3533,-1.1973,1.0967,-1.9032 +0x16465,CUS_0xac8e,August,19,990-90-4382,Mechanic,38904.52,,8,6,17,7,"Payday Loan, Auto Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",29.76533369,21.72241865,14.95,5,Standard,376.148066,37.78841635,12 Years and 8 Months,Yes,173.4860591,113.5065554,High_spent_Small_value_payments,311.6117188,0,-2.4609,-0.0378,0.7751,-0.7531,-0.4613 +0x16471,CUS_0x6eb3,August,28,940-88-7389,Teacher,71716.6,5523.252385,3,5,9,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",21.8777201,20,7.65,7,_,418.54,38.80203268,16 Years and 11 Months,Yes,679.4240333,10000,High_spent_Small_value_payments,368.8402544,0,-1.1163,0.0994,-0.7765,-0.7226,-0.193 +0x1647d,CUS_0xa667,August,57,945-60-6497,_______,32021.48,,2,1,7,3,"Auto Loan, Payday Loan, and Payday Loan",0,0,4.7,5,_,1134.333299,25.52410735,33 Years and 6 Months,No,56.11966958,,Low_spent_Small_value_payments,226.4697796,0,-0.2402,-0.7386,-1.0398,-1.4919,0.0304 +0x16489,CUS_0x4f0a,August,23,471-82-7068,Journalist,7282.885,,7,7,25.06745738,7,"Home Equity Loan, Not Specified, Home Equity Loan, Personal Loan, Student Loan, Not Specified, and Home Equity Loan",33.88222886,19.44689414,6.77,6,Bad,4648.656598,27.71700627,7 Years and 0 Months,NM,34.00317846,41.91948792,Low_spent_Small_value_payments,244.247754,0,0.0965,1.1683,0.3993,-0.6246,-0.8233 +0x16495,CUS_0x1844,August,38,638-11-3367,Writer,11845938,636.715,6,6,5,3,"Not Specified, Student Loan, and Home Equity Loan",,13,15.49,6,Standard,1382.42,25.35741014,5 Years and 10 Months,Yes,10122,43.82720243,Low_spent_Medium_value_payments,276.2071017,0,-1.2703,1.5128,0.0412,1.4462,-0.1489 +0x164a1,CUS_0x5813,August,29,495-40-7800,Entrepreneur,106839.09,9018.2575,0,1,2535,2,"Home Equity Loan, and Payday Loan",9.828089372,8,9.96,9,Good,1138.94,29.09859218,31 Years and 5 Months,NM,105.4185611,100.5087311,High_spent_Large_value_payments,935.8984577,0,0.1362,0.9862,-1.0465,-0.6846,-0.1439 +0x164ad,CUS_0x9f25,August,35,069-47-0264,_______,28005.44,2582.786667,1,3,1,1,Student Loan,,3.410884395,3.25,3,Good,599.0537521,37.39878641,24 Years and 8 Months,NM,21.98061445,10000,High_spent_Small_value_payments,407.2521354,0,0.5206,-0.4733,0.0385,1.5444,0.1104 +0x164b9,CUS_0x159b,August,35,437-45-4869,Architect,55670.07,4395.1725,3,10,26,3,"Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,19,7.7,11,Standard,2074.85,37.91147818,7 Years and 0 Months,Yes,136.7747535,146.3984511,High_spent_Medium_value_payments,406.3440454,0,0.815,-2.3943,-0.2907,-0.5492,0.2163 +0x164c5,CUS_0x87df,August,29,876-74-5642,Media_Manager,15349.54,,9,7,23.06745738,100,"Student Loan, Not Specified, Not Specified, Not Specified, Personal Loan, Student Loan, Home Equity Loan, Payday Loan, and Auto Loan",41.72623711,25,27.08,14,_,3211.610954,37.91160021,12 Years and 4 Months,Yes,108.4610155,72.69007156,Low_spent_Small_value_payments,200.1414583,0,-1.2147,0.2968,-0.972,0.6312,0.401 +0x164d1,CUS_0xb644,August,26,682-75-1288,Scientist,44577.26,3838.771667,5,4,1,4,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Student Loan",1.157203471,5,5.98,3,Good,636.43,28.33402355,18 Years and 10 Months,No,124.7000728,124.478463,Low_spent_Medium_value_payments,414.6986308,0,0.6131,0.2495,0.4303,-0.2908,-1.5282 +0x164dd,CUS_0x7848,August,31,918-28-4144,Writer,113105.1,,4,3,12,1,Auto Loan,0,0,7.47,5,Good,894.8856075,32.63486749,18 Years and 9 Months,No,50.32667863,695.0340655,Low_spent_Large_value_payments,520.4486273,0,0.75,-0.4516,-0.6828,0.0392,1.0725 +0x164e9,CUS_0xb437,August,55,480-15-7639,_______,61169.82,4996.485,5,4,6,0,,15.46694931,15,8.85,3,Good,1046.694361,27.96458123,22 Years and 5 Months,No,59415,180.6983888,High_spent_Medium_value_payments,586.8452282,0,0.0773,-0.7339,0.8084,-0.9967,0.732 +0x164f5,CUS_0x5ece,August,56,598-13-8979,Teacher,79642.86,,2,5,5,3,"Auto Loan, Personal Loan, and Not Specified",0.920811698,4,4.15,1,Good,911.67,36.48062639,30 Years and 5 Months,No,172.8089158,69.78157327,High_spent_Medium_value_payments,658.4000109,0,0.1419,-1.9941,0.4006,-0.7384,1.4559 +0x16501,CUS_0xb9ae,August,26,121-97-1297,Doctor,17182.5,,0,6,11,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,1,,7,_,1174.870389,37.37694428,31 Years and 6 Months,No,19.84112855,149.0262708,!@9#%8,259.8938842,0,-0.5068,0.397,-0.3041,1.4035,0.4109 +0x1650d,CUS_0x5810,August,23,621-43-9828,Writer,103938.16,8864.513333,2,5,9,4,"Auto Loan, Auto Loan, Auto Loan, and Home Equity Loan",23.14272073,15,8.44,8,Standard,117.63,41.16644643,22 Years and 0 Months,Yes,324.5313172,291.5043134,High_spent_Medium_value_payments,520.4157028,0,-1.2729,-1.2962,0.727,0.0112,-0.5334 +0x16519,CUS_0x8702,August,35,319-16-7153,Accountant,19543.44,1592.62,8,5,16.06745738,7,"Credit-Builder Loan, Not Specified, Payday Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Auto Loan",37.97333417,24,25.57,16,Bad,3812.210954,32.99919812,,Yes,64.88541488,,Low_spent_Small_value_payments,149.561266,0,0.5924,0.3166,-0.1341,1.0872,-0.1173 +0x16525,CUS_0x970f,August,30,505-12-0535,Musician,121944.2,,3,6,2,1,Not Specified,23.40928384,17,9.16,6,Good,1344.25,36.59524859,30 Years and 5 Months,No,56.0355997,106.246864,High_spent_Large_value_payments,1102.419203,0,0.344,0.3382,0.8497,1.5137,-0.4563 +0x16531,CUS_0x75ee,August,25,488-13-8725,_______,44328.22,3710.018333,4,6,1,4,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",0,4,7.7,2,Good,537.6284826,25.18118735,29 Years and 10 Months,No,84.30765363,54.10305797,High_spent_Medium_value_payments,488.8429686,0,0.8985,0.4563,0.3714,0.3365,0.8747 +0x1653d,CUS_0x86c1,August,18,945-44-2551,Manager,15814.77,1300.8975,7,4,13,7,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Not Specified, Auto Loan, Not Specified, and Student Loan",7.529636492,6,10.69,10,Standard,902.47,28.23296301,20 Years and 0 Months,Yes,58.1199947,38.70727032,High_spent_Small_value_payments,293.262485,0,-0.3519,0.9846,0.8455,-1.175,0.9141 +0x16549,CUS_0xa556,August,44,304-18-9706,Media_Manager,39859.72,3102.643333,5,4,1,1,Credit-Builder Loan,4.657537164,7,6.16,3,_,1160.469369,29.3087534,33 Years and 3 Months,No,21.15615014,64.60176654,!@9#%8,480.6907088,0,0.6894,0.5301,-0.7455,0.8197,-1.7603 +0x16555,CUS_0xbd29,August,44,393-60-3317,Scientist,15427.215,1253.60125,0,3,8,4,"Mortgage Loan, Auto Loan, Not Specified, and Student Loan",0.308866889,2,11.22,8,Good,966.45,33.43942291,32 Years and 2 Months,No,48.81683362,126.9425491,Low_spent_Small_value_payments,239.6007423,0,-0.7883,0.0945,-1.372,-1.4048,-2.0656 +0x16561,CUS_0x5fd4,August,27,673-75-9639,Musician,73509.02,,5,5,20,0,,,19,6.69,8,Standard,1082.86,32.65059683,29 Years and 8 Months,Yes,0,,High_spent_Medium_value_payments,744.6583429,0,-0.4502,-1.6161,-2.15,-1.0432,2.091 +0x1656d,CUS_0x181c,August,20,255-78-5791,Manager,16348.87,1573.405833,10,9,25.06745738,7,"Personal Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Auto Loan, Payday Loan, and Mortgage Loan",24.26412847,16,7.75,9,Bad,1664.080954,35.41693566,6 Years and 10 Months,Yes,59.1748812,179.4635542,Low_spent_Small_value_payments,181.98186,0,-0.6976,0.6299,0.9965,-0.3123,0.5198 +0x16579,CUS_0xe7a,August,32,909-77-3458,Lawyer,7711.97,,10,5,30.06745738,7,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Auto Loan",,25.22513464,30.08,10,Bad,5526.647675,27.30065248,0 Years and 11 Months,Yes,29.56029982,44.3113944,Low_spent_Small_value_payments,228.9744345,0,-0.7264,1.5328,0.4166,-0.3811,-1.6582 +0x16585,CUS_0x1713,August,32,186-82-0006,Musician,54568.92,4452.41,10,10,24.95700519,9,"Debt Consolidation Loan, Student Loan, Student Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",,16.97057238,24.99,11,Bad,4004.314239,26.16284492,,NM,1600.78591,509.7004621,Low_spent_Small_value_payments,,0,1.1844,0.291,0.5427,0.3725,0.4572 +0x16591,CUS_0x844b,August,41,948-62-5361,Engineer,22195.605,,0,4,4,100,,15.03682426,,3.61,6,Good,1215.688921,29.02281258,18 Years and 11 Months,No,0,68.46321286,Low_spent_Large_value_payments,413.0426911,0,1.2673,0.7864,-0.4978,-0.4099,-0.4347 +0x1659d,CUS_0x53f6,August,26,740-76-9310,Writer,61064.08,,0,5,7,3,"Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",2.337335663,6,16.37,7,Good,1323.86,29.35936988,20 Years and 11 Months,No,94.25600619,150.0367853,Low_spent_Medium_value_payments,541.0745418,0,0.8028,-0.4594,-0.1667,0.7322,-0.7085 +0x165a9,CUS_0x3ccf,August,44,744-25-0877,Manager,36127.64,,2,5,3621,100,,,5,2.8,1,Good,770.1,32.59743032,25 Years and 4 Months,NM,47602,80.49984585,High_spent_Small_value_payments,451.7638208,0,-1.4192,0.0943,0.5306,0.1558,0.0298 +0x165b5,CUS_0x6801,August,24,236-52-4877,Writer,61224.33,4862.0275,4,5,12,1,Home Equity Loan,13.75796653,9,12.65,5,Standard,707.43,26.9862626,17 Years and 3 Months,Yes,38.30981031,206.2429628,High_spent_Medium_value_payments,491.6499769,0,1.2195,-1.511,-0.8609,0.1958,-1.071 +0x165c1,CUS_0x3528,August,55,505-50-0364,Journalist,23794.07,1771.839167,6,3,7,4,"Personal Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",,15,7.87,5,_,1436.59,39.93979247,17 Years and 5 Months,No,60.52471129,,Low_spent_Large_value_payments,235.3868674,0,0.0971,-0.2472,-0.9734,-1.0389,-0.7458 +0x165cd,CUS_0x8b31,August,44,#F%$D@*&8,Teacher,94811.36,7999.946667,4,5,10,6,"Student Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",,20,14.5,9,_,461.05,40.28768667,13 Years and 8 Months,Yes,248.4607171,461.7081384,Low_spent_Large_value_payments,359.8258112,0,-0.1725,1.5546,-1.3966,-0.7668,0.5077 +0x165d9,CUS_0x95ef,August,31,#F%$D@*&8,Mechanic,58427.31,4717.9425,10,5,23,4,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, and Auto Loan",41.34912294,22.07131115,18.39,6,Bad,2142.015174,38.05070957,17 Years and 6 Months,Yes,125.5956944,183.9357816,High_spent_Medium_value_payments,412.262774,0,2.0486,-0.7473,0.4558,-1.0116,-0.2126 +0x165e5,CUS_0x36c5,August,30,051-60-7823,Developer,32543.38,,5,6,25,3,"Debt Consolidation Loan, Home Equity Loan, and Student Loan",,23.0379555,7.91,8,Standard,2085.739427,24.8236157,16 Years and 6 Months,Yes,65.42524227,10000,High_spent_Medium_value_payments,374.0083438,0,-1.9534,-0.7348,-0.8876,1.1977,2.2234 +0x165f1,CUS_0x7dff,August,31,#F%$D@*&8,Media_Manager,18005.41,,3,9,33,3,"Payday Loan, Personal Loan, and Debt Consolidation Loan",11.65860574,9,13.45,15,Standard,2564.51,24.98138374,13 Years and 10 Months,Yes,36.34786743,162.2855175,Low_spent_Small_value_payments,212.7116984,0,1.1071,-0.9704,-0.0014,-0.2282,0.5316 +0x165fd,CUS_0x62be,August,32,218-41-6483,Media_Manager,141952.76,11726.39667,7,4,16,1,Mortgage Loan,26.06876122,19,11.48,4,_,1322.885879,31.52420454,29 Years and 0 Months,Yes,109.7589025,1121.878642,!@9#%8,359.2854761,0,0.0572,0.1926,-1.3964,0.9612,-1.3256 +0x16609,CUS_0x23ae,August,26,#F%$D@*&8,Journalist,34838.94,2895.245,3,9,21.06745738,5,"Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Personal Loan",27.49519491,17.83735492,14.56,7,Standard,2360.542784,26.14961722,15 Years and 9 Months,Yes,74.41338889,102.3464478,High_spent_Medium_value_payments,336.0443754,0,0.9613,-0.3445,-0.4496,1.5844,-1.7869 +0x16615,CUS_0x2c40,August,25,517-14-0812,Doctor,82651.74,6756.645,7,4,14,3,"Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,20,21.66,12,Standard,1348.26,28.72334457,17 Years and 5 Months,NM,147.5225031,573.3397288,Low_spent_Small_value_payments,244.8022681,0,0.463,0.534,1.4879,-0.5143,-0.0731 +0x16621,CUS_0x741d,August,36,#F%$D@*&8,Writer,21699.13,,8,4,18,3,"Home Equity Loan, Student Loan, and Student Loan",,14,8.64,3,_,1129.46,37.60905943,21 Years and 3 Months,Yes,45.0600107,91.67526837,Low_spent_Small_value_payments,345.7908043,0,-0.1096,0.4046,0.0676,-0.0142,0.9539 +0x1662d,CUS_0x1a86,August,33,835-36-1985,Entrepreneur,8135.92,378.9933333,7,5,32,9,"Student Loan, Payday Loan, Payday Loan, Home Equity Loan, Student Loan, Payday Loan, Payday Loan, Not Specified, and Payday Loan",35.61311728,21.83974777,16.62,10,_,3528.018502,30.00431376,7 Years and 0 Months,Yes,58268,34.39249564,Low_spent_Small_value_payments,260.4104784,0,1.0929,0.25,-0.1001,0.4328,0.3051 +0x16639,CUS_0x6d17,August,36,584-62-1775,Scientist,35942.96,3081.246667,4,3,20,4,"Not Specified, Payday Loan, Mortgage Loan, and Auto Loan",15.28129658,15,2.92,4,Standard,707.38,37.10477787,26 Years and 10 Months,No,116.0195532,93.02829773,Low_spent_Large_value_payments,369.0768157,0,-0.8023,-0.2193,0.1844,-0.1117,1.7333 +0x16645,CUS_0xa969,August,39,094-33-0731,_______,18102.96,1267.063843,5,5,17.28836175,4,"Debt Consolidation Loan, Not Specified, Auto Loan, Debt Consolidation Loan, and Not Specified",,8,11.79,10,Standard,86.63877841,34.42937431,10 Years and 2 Months,Yes,116.3270889,,Low_spent_Small_value_payments,236.7994327,0,0.5528,0.4989,-0.209,-0.2199,-0.5283 +0x16651,CUS_0x8917,August,24,750-35-4810,Developer,21434.2,,6,6,18,6,"Not Specified, Credit-Builder Loan, Auto Loan, Personal Loan, Credit-Builder Loan, and Mortgage Loan",10.80511957,10,10.09,11,Standard,1240.7,35.90204963,7 Years and 8 Months,Yes,177.6939648,80.643147,Low_spent_Small_value_payments,312.8679426,0,-0.3603,0.7784,0.7114,-0.8575,-2.7221 +0x1665d,CUS_0x7a32,August,41,149-87-5601,Writer,14990.045,,4,4,20,3,"Payday Loan, Student Loan, and Not Specified",26.1356549,20,9.16,2,Standard,1344,26.11521517,23 Years and 6 Months,No,22.75136613,,Low_spent_Small_value_payments,251.9626081,0,-0.7681,-1.5917,-0.8671,0.0341,-0.4861 +0x16669,CUS_0x2004,August,27,925-81-5909,Entrepreneur,73420.92,,4,5,8,2,"Personal Loan, and Not Specified",0,1,10.35,2,_,250.5473191,33.2564451,31 Years and 0 Months,No,67.04438353,291.5029108,High_spent_Small_value_payments,571.3344252,0,0.521,-0.8038,0.0502,0.3553,1.397 +0x16675,CUS_0x5e84,August,29,802-00-7859,Architect,10339.53,,10,7,29.06745738,8,"Not Specified, Home Equity Loan, Personal Loan, Not Specified, Payday Loan, Home Equity Loan, Auto Loan, and Student Loan",26.11984213,16.40479462,25.93,11,Bad,3302.604713,37.82380854,8 Years and 0 Months,Yes,65.86110878,35.06340974,Low_spent_Small_value_payments,237.1179435,0,-0.683,0.6166,1.0143,-0.319,-0.3225 +0x16681,CUS_0x5f0e,August,40,695-28-7940,Engineer,82134.44,,10,5,24,100,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Not Specified, Not Specified, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,19.46844192,4.55,10,_,1482.38472,28.074593,18 Years and 10 Months,Yes,317.4441996,174.1655715,High_spent_Medium_value_payments,425.5438956,0,0.7947,1.1499,-0.8846,1.0443,0.1939 +0x1668d,CUS_0x9348,August,19,195-44-0857,Entrepreneur,33189.02,,7,3,19,3,"Mortgage Loan, Personal Loan, and Payday Loan",13.98717334,10,4.08,7,Standard,209.88,31.51564401,23 Years and 5 Months,NM,63.71641945,,!@9#%8,367.6206037,0,-1.3338,-2.0506,-0.0987,0.5959,0.9563 +0x16699,CUS_0x7165,August,29,383-69-8663,Entrepreneur,9069.98,,8,9,31.88954781,100,"Payday Loan, Not Specified, Credit-Builder Loan, Student Loan, Not Specified, and Payday Loan",17.98013857,,7.15,15,Bad,3471.77,36.61905451,10 Years and 2 Months,Yes,1354.899427,56.20822865,Low_spent_Medium_value_payments,229.2454292,0,-0.6425,-0.267,-0.2456,-0.9905,-0.941 +0x166a5,CUS_0x9124,August,26,723-63-2577,Entrepreneur,52561.62,4572.135,8,8,32,2,"Not Specified, and Home Equity Loan",32.14776973,21.80624036,11.63,9,Standard,1436.410637,29.16209732,15 Years and 8 Months,Yes,48.93527189,128.3660255,Low_spent_Large_value_payments,549.9122026,0,0.7021,1.4005,-1.5615,-1.5779,-0.4666 +0x166b1,CUS_0xce2,August,20,590-83-1829,Musician,7979.775,,8,10,25.88954781,7,"Personal Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Auto Loan, and Not Specified",90,2954,11.32,7,_,2211.7,26.7095367,,Yes,1361.759963,21.34656816,Low_spent_Small_value_payments,265.7615124,0,1.2188,0.0447,1.6061,-0.0794,1.3328 +0x166bd,CUS_0x68ee,August,49,599-79-8361,Accountant,61614.9,5364.575,4,3,9.288361749,0,Mortgage Loan,1.716831082,5,15.17,8,_,157.71,41.53183536,27 Years and 4 Months,No,44.427963,10419.93746,Low_spent_Small_value_payments,588.2923529,0,1.6772,-0.9007,-0.1449,-1.0703,0.2868 +0x166c9,CUS_0x494c,August,39,849-28-7686,Accountant,10496.255,,9,10,27.06745738,5,"Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",39.47029501,19.54116327,3.12,11,_,4836.688361,34.95388479,2 Years and 8 Months,Yes,35.05698505,,Low_spent_Small_value_payments,206.4658371,0,-0.0923,-1.0114,0.8266,2.9281,0.2903 +0x166d5,CUS_0xb5d4,August,23,156-33-8200,Entrepreneur,100674.66,8435.555,4,4,6.288361749,0,Payday Loan,,14,19.17,7,Standard,1267.99,29.46185523,30 Years and 2 Months,Yes,42.26905625,710.4159804,High_spent_Medium_value_payments,760.8079244,0,1.8253,-0.6572,-1.2453,0.1936,1.7132 +0x166e1,CUS_0x8db6,August,26,754-28-9358,Architect,9481.025,561.0854167,4,6,33.06745738,100,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",17.88025398,11.8701478,17.78,8,Standard,2946.539543,36.58937558,17 Years and 3 Months,Yes,31.46063016,,Low_spent_Small_value_payments,246.1878721,0,-0.1197,-0.6151,1.4528,1.2341,-0.5197 +0x166ed,CUS_0xc80,August,31,610-12-1484,Musician,48706.1,4052.841667,5,3,7,3,"Student Loan, Payday Loan, and Personal Loan",,10,13.02,7,Standard,1006.260757,38.21476448,17 Years and 5 Months,Yes,107.1525577,189.3444854,!@9#%8,377.3674669,0,-0.8532,-0.8732,-0.0365,0.0028,0.3043 +0x166f9,CUS_0xc4e7,August,44,269-29-5635,Mechanic,53860.98,4260.415,4,7,15,0,,,8,10.82,6,Standard,1356.1,39.82130883,16 Years and 2 Months,Yes,20083,326.6682992,Low_spent_Small_value_payments,389.3732008,0,-1.5957,-0.9521,0.5135,-0.7378,-1.4365 +0x16705,CUS_0x48ef,August,25,151-74-3175,_______,105829.08,8729.09,3,5,18,4,"Debt Consolidation Loan, Student Loan, Payday Loan, and Payday Loan",20.76377016,17,5.65,6,Standard,549.99,27.19465313,19 Years and 5 Months,No,237.0235892,154.2808471,High_spent_Large_value_payments,721.6045637,0,-0.1075,1.8604,-0.7341,-1.8239,0.7719 +0x16711,CUS_0x6e8b,August,47,388-81-5443,Scientist,121197.9,,2,5,10.28836175,4,"Student Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",10.38677084,12,2.3,6,Good,178.6625599,38.43269158,21 Years and 2 Months,No,370.6193016,665.9264754,High_spent_Large_value_payments,685.2247598,0,0.0925,-0.3748,0.3334,-0.8193,-0.0799 +0x1671d,CUS_0x2e76,August,38,914-43-3700,Teacher,73985.12,6207.426667,6,5,27,5,"Not Specified, Payday Loan, Student Loan, Mortgage Loan, and Not Specified",25.23317052,20,16.24,10,Bad,4429.84,27.1630513,,Yes,194.8908388,420.3032538,High_spent_Small_value_payments,265.548574,0,-0.1397,-1.9095,-0.6502,-2.6738,1.3466 +0x16729,CUS_0xb1d8,August,18,337-80-9835,Scientist,122105.64,10307.47,6,3,14,6,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Student Loan, and Student Loan",19.06479144,14,9.75,8,_,626.1155036,31.08683971,14 Years and 8 Months,Yes,555.1684836,121.7582027,High_spent_Large_value_payments,607.0377437,0,-0.1141,-0.1295,-2.0391,0.4929,0.3449 +0x16735,CUS_0x7a35,August,41,869-37-6295,Musician,81571.88,6648.656667,5,3,23,3,"Not Specified, Debt Consolidation Loan, and Student Loan",,19.38343721,7.82,8,Standard,2599.919538,36.45203576,,Yes,203.7756088,138.4461271,High_spent_Medium_value_payments,572.6439307,0,-0.1036,-2.089,1.8262,0.5637,-1.2545 +0x16741,CUS_0x2e28,August,34,792-16-3996,Doctor,71391.78,,8,7,11,100,"Mortgage Loan, Student Loan, Personal Loan, and Auto Loan",,19,11.35,7,Standard,1305.41,30.7167725,31 Years and 2 Months,NM,191.5592019,,High_spent_Medium_value_payments,565.2978945,0,-1.247,-1.607,0.5719,0.6321,2.0597 +0x1674d,CUS_0xbbf6,August,28,187-06-3273,Engineer,65455.16,5194.596667,9,8,32,2,"Personal Loan, and Student Loan",,25.10572722,4.44,11,Bad,1838.227479,32.67590696,,NM,84.53938413,,High_spent_Small_value_payments,497.3896386,0,1.3834,1.6744,-1.7788,0.748,-1.349 +0x16759,CUS_0x111b,August,40,880-90-6663,Manager,70277.22,5633.435,3,6,7,3,"Not Specified, Not Specified, and Home Equity Loan",8.244038514,9,4.05,7,Good,661.0265876,36.53293818,20 Years and 6 Months,No,149.9341064,573.4638507,Low_spent_Large_value_payments,186.6182027,0,0.2287,-1.3291,0.8894,-0.6963,-1.9865 +0x16765,CUS_0x9c4f,August,26,#F%$D@*&8,Architect,49077.12,4200.76,5,3,8,2,"Personal Loan, and Not Specified",,,2.52,3,_,201.05,36.42115073,29 Years and 8 Months,No,74.2941716,258.6513691,Low_spent_Small_value_payments,377.1304593,0,-0.548,-0.0519,1.5206,-0.2909,0.708 +0x16771,CUS_0xc41f,August,31,710-88-8800,_______,140114,11603.16667,3,6,1,0,,0,0,1.99,3,Good,50.1,29.92510089,30 Years and 4 Months,No,0,,High_spent_Large_value_payments,1111.839371,0,-0.4316,-0.4647,-0.5681,-0.568,0.0663 +0x1677d,CUS_0x193b,August,18,044-37-0803,Lawyer,19462.47,1920.8725,7,7,29.06745738,6,"Auto Loan, Mortgage Loan, Mortgage Loan, Not Specified, Student Loan, and Not Specified",35.35544867,18,1.96,9,Bad,2434.460954,34.91834586,17 Years and 9 Months,Yes,60.80130552,121.8430494,High_spent_Small_value_payments,242.7226072,0,-0.8776,-1.1692,-0.331,1.4093,-0.4391 +0x16789,CUS_0x857a,August,19,763-45-1480,Engineer,108818.2,,6,5,4,3,"Debt Consolidation Loan, Not Specified, and Auto Loan",,16,4.5,6,Good,1056.832374,26.35959168,21 Years and 8 Months,No,207.2870629,,!@9#%8,183.3152196,0,0.2857,-1.2242,1.0891,-1.0925,-1.1317 +0x16795,CUS_0x80dc,August,28,498-19-5852,_______,18995.54,,6,7,427.0674574,4,"Not Specified, Home Equity Loan, Debt Consolidation Loan, and Student Loan",19.34007505,12,12.16,11,Standard,2910.610954,24.49423881,,Yes,49.24605681,,Low_spent_Large_value_payments,221.79462,0,-0.5867,-0.8921,-1.4787,0.3371,-0.2628 +0x167a1,CUS_0x191b,August,53,842-62-4462,Accountant,108625.29,9105.1075,8,6,13,0,,,18.25462126,2.88,3,Standard,337.3680982,39.23780128,22 Years and 3 Months,No,0,255.3762062,Low_spent_Medium_value_payments,935.1345438,0,0.4025,-1.1761,1.4059,0.5335,2.3709 +0x167ad,CUS_0x5c8d,August,36,876-79-6090,Developer,41982.88,3263.573333,4,7,14,0,,21.03531797,,15.83,6,_,1449.7,27.26175953,17 Years and 9 Months,Yes,0,,High_spent_Medium_value_payments,453.6164427,0,-0.2456,0.7957,-1.5965,-0.0484,-1.3799 +0x167b9,CUS_0xa03e,August,31,596-37-3692,Scientist,8284.83,655.4025,6,7,30,7,"Mortgage Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",,21.47501058,1.79,14,_,5216.072266,38.50151623,14 Years and 3 Months,Yes,26.3723852,45.23694378,Low_spent_Small_value_payments,283.930921,0,0.1097,1.092,0.4896,0.3308,0.3498 +0x167c5,CUS_0x37ec,August,18,#F%$D@*&8,Lawyer,68861.36,5936.446667,8,8,24,5,"Personal Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",40.91311035,30.32836528,4.36,11,Bad,2771.150714,27.82735759,16 Years and 2 Months,Yes,229.0809607,111.6208989,High_spent_Large_value_payments,492.942807,0,1.5223,-0.851,-0.1754,0.6004,-0.0154 +0x167d1,CUS_0x1766,August,18,751-67-7414,Teacher,17849,,6,6,15,7,"Home Equity Loan, Not Specified, Debt Consolidation Loan, Payday Loan, Personal Loan, Personal Loan, and Not Specified",39.36305579,29.14980845,22.44,15,Bad,5152.697528,29.68565175,10 Years and 5 Months,Yes,88.00557838,,Low_spent_Small_value_payments,164.0352188,0,-0.0082,2.0856,-0.5095,-1.7456,-0.2529 +0x167dd,CUS_0x8100,August,30,603-81-4784,_______,16733.85,1612.4875,10,8,25.88954781,6,"Not Specified, Not Specified, Credit-Builder Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",23.23358577,15.82343505,6.26,11,Bad,2465.992356,31.03719321,13 Years and 6 Months,Yes,1377.46932,128.8011502,Low_spent_Small_value_payments,250.6481989,0,0.1002,-1.7876,1.4574,-1.026,0.2068 +0x167e9,CUS_0x9015,August,26,567-15-1471,Accountant,94031.7,,8,4,13,2,"Personal Loan, and Personal Loan",20.74409172,16,8.17,5,Standard,147.52,32.76058188,24 Years and 10 Months,No,120.4550596,424.3814756,Low_spent_Small_value_payments,556.7609648,0,0.4953,1.3548,0.3704,-0.2391,-1.7712 +0x167f5,CUS_0xb167,August,34,223-39-2177,Teacher,22239,,4,5,11,100,"Debt Consolidation Loan, Student Loan, Mortgage Loan, and Personal Loan",,3,1.34,2,Good,118.3639607,28.80588439,28 Years and 8 Months,No,70.17382304,243.3760855,Low_spent_Small_value_payments,196.8725001,0,-0.3118,-1.1593,0.7251,1.8351,-0.2071 +0x16801,CUS_0xbfa9,August,36,178-06-3359,_______,14759.68,,1568,10,23,3,"Student Loan, Auto Loan, and Home Equity Loan",31.69537348,16.88219227,5.65,8,Bad,1897.73151,32.07301726,11 Years and 2 Months,Yes,35.97966384,13.13454457,High_spent_Large_value_payments,293.0831249,0,-0.5942,0.251,0.2637,0.8933,0.7611 +0x1680d,CUS_0xa1f6,August,54,411-88-5165,Developer,33778.42,,3,4,12,4,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",9.210071655,11,10.06,9,Standard,739.51,30.46765023,21 Years and 4 Months,No,75.69956252,,Low_spent_Small_value_payments,250.5371733,0,0.1785,-0.0915,-0.2815,0.1757,0.2644 +0x16819,CUS_0x9e95,August,26,330-30-8487,_______,15724.04,,10,5,19,100,"Credit-Builder Loan, Student Loan, Not Specified, Auto Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",19.60904189,,6.6,12,Bad,3431,23.86247828,14 Years and 3 Months,Yes,84.28014673,72.34075313,High_spent_Small_value_payments,212.8127668,0,1.3038,0.3806,-1.6447,1.619,0.6812 +0x16825,CUS_0x3d26,August,26,#F%$D@*&8,Engineer,26939.95,,7,3,10,2,"Personal Loan, and Not Specified",19.27563725,16,19.65,7,Standard,755.1581827,28.81351402,19 Years and 8 Months,Yes,35.4824061,91.35132275,High_spent_Medium_value_payments,379.6384624,0,0.4775,-1.419,-0.5678,-0.2637,0.0209 +0x16831,CUS_0xc1fa,August,45,007-69-4984,Teacher,108064.48,8933.373333,6,6,15,4,"Not Specified, Payday Loan, Not Specified, and Home Equity Loan",18.44576746,14.61367779,3.12,5,_,515.451928,33.46465461,,Yes,272.1046102,292.2965986,High_spent_Medium_value_payments,578.9361246,0,-1.4852,0.3517,0.9706,-0.4084,2.9878 +0x1683d,CUS_0x443e,August,37,010-00-5884,Scientist,60537.18,5182.765,7,4,6,2,"Payday Loan, and Credit-Builder Loan",23.27169696,18,11.93,2,Standard,393.5,32.61946567,31 Years and 3 Months,Yes,99.21125506,332.1686619,Low_spent_Small_value_payments,376.8965831,0,-0.4722,-0.2047,-1.362,0.6889,-1.5516 +0x16849,CUS_0x2cd9,August,80,410-34-6619,Lawyer,8969.265,,7,6,28,8,"Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,20.22079902,2.97,16,Bad,2946.378196,24.3894676,8 Years and 6 Months,Yes,53.17870949,,Low_spent_Large_value_payments,251.8734777,0,0.1963,1.7804,0.297,-0.0992,-0.3686 +0x16855,CUS_0x7bc9,August,28,130-42-0564,Engineer,68900.64,,7,4,10,4,"Mortgage Loan, Student Loan, Mortgage Loan, and Credit-Builder Loan",16.26086248,14,10.8,6,Standard,1420.04,30.04780013,18 Years and 4 Months,No,148.9974949,41.17353358,High_spent_Large_value_payments,633.4009715,0,1.8928,0.5327,1.2658,-0.2123,0.207 +0x16861,CUS_0x1246,August,33,609-30-7406,Entrepreneur,22188.45,,1,5,498,1,Auto Loan,3.159245533,1.142531146,3.87,7,Good,1474.744041,36.34397503,16 Years and 5 Months,No,10.01141758,,Low_spent_Small_value_payments,327.4776685,0,2.0338,-0.992,0.7992,-0.8709,0.5943 +0x1686d,CUS_0xb814,August,21,348-46-6179,Teacher,92519.61,7438.9675,8,3,8.288361749,0,Personal Loan,13.46008095,12,19.74,10,Standard,62.82,24.25134872,12 Years and 2 Months,Yes,13561,1085.346056,!@9#%8,299.1904072,0,1.2683,2.0524,0.4211,1.2083,0.801 +0x16879,CUS_0x22e3,August,21,258-42-8344,Mechanic,41516.64,3368.72,8,8,17,5,"Home Equity Loan, Not Specified, Payday Loan, Auto Loan, and Personal Loan",,,10.35,11,Bad,1834.81771,33.17962901,20 Years and 5 Months,Yes,142.3164832,182.0534172,Low_spent_Medium_value_payments,292.5020995,0,-1.521,-1.0441,-1.2048,1.8387,1.819 +0x16885,CUS_0xb8d3,August,36,122-85-2445,Lawyer,30061.36,2480.113333,5,6,7,2,"Debt Consolidation Loan, and Home Equity Loan",25.64296059,19,13.28,4,Standard,242.47,28.8452584,26 Years and 8 Months,Yes,37.3849372,151.4814232,Low_spent_Medium_value_payments,339.144973,0,1.1558,-1.9728,1.669,-0.1472,-0.744 +0x16891,CUS_0x5375,August,54,103-66-4137,Doctor,29617.7,,4,779,6,2,"Credit-Builder Loan, and Auto Loan",7.031116829,7,10.7,3,_,696.7897421,27.62198171,18 Years and 8 Months,No,27.0411397,91.9493841,Low_spent_Large_value_payments,395.1978354,0,-1.0708,-0.7495,-0.7083,0.4481,-0.4898 +0x1689d,CUS_0x2043,August,29,013-68-1261,Entrepreneur,44614.56,,8,7,2711,4,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Personal Loan",12.37367741,11,12.71,8,Standard,2613.46,37.69690783,19 Years and 0 Months,Yes,134.6629661,,High_spent_Medium_value_payments,373.5879478,0,0.9021,-1.0334,0.0073,-1.054,-0.7566 +0x168a9,CUS_0x2696,August,40,425-82-7919,Manager,14982.63,,10,8,20,285,"Student Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,21.94841371,17.16,7,Standard,2569.962755,23.14549191,,NM,40.62533007,128.1526795,Low_spent_Small_value_payments,221.5772405,0,1.0408,-2.0139,-0.0219,0.3729,-0.905 +0x168b5,CUS_0x3b6e,August,32,224-83-2459,Scientist,7200.035,,8,8,19.06745738,3,"Home Equity Loan, Student Loan, and Payday Loan",38.21532674,18.39797014,3.51,11,Standard,3003.174775,28.21753098,14 Years and 5 Months,Yes,13.72301936,52.82546987,Low_spent_Small_value_payments,250.7315145,0,-0.5425,-0.0409,0.6581,0.7109,-1.6317 +0x168c1,CUS_0x373e,August,22,082-32-0540,Entrepreneur,21039.8,,4,5,9.288361749,0,,12.41134105,13.40420677,1.19,2,_,9.967835739,34.57243269,24 Years and 6 Months,No,0,,Low_spent_Small_value_payments,224.8270203,0,0.3998,0.7845,0.1171,-0.382,0.4173 +0x168cd,CUS_0xaac2,August,24,626-22-6718,Journalist,17223.875,,3,732,16,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Payday Loan",15.39462239,15,11.57,13,Standard,637.5,37.54522131,8 Years and 10 Months,Yes,120.7601921,97.63383912,Low_spent_Small_value_payments,324.8321723,0,-1.4234,-2.4261,0.4961,-0.531,0.3739 +0x168d9,CUS_0x9337,August,36,#F%$D@*&8,Accountant,87502.05,7589.8375,4,3,10,4,"Student Loan, Home Equity Loan, Auto Loan, and Student Loan",19.11912798,12,6.42,4,Good,1187.691035,28.60539569,,No,227.4290786,831.3980955,Low_spent_Medium_value_payments,72.9490744,0,-0.2541,0.1511,-0.7108,-0.8078,-0.2634 +0x168e5,CUS_0xc1b6,August,41,191-90-7135,Teacher,26523.72,,5,3,6,5,"Personal Loan, Personal Loan, Payday Loan, Auto Loan, and Student Loan",22.41500731,17,11.68,8,Standard,368.29,33.28072635,18 Years and 3 Months,Yes,63.98469507,,Low_spent_Large_value_payments,243.6400173,0,-1.1272,0.4806,-1.3299,0.8152,-0.4201 +0x168f1,CUS_0x5222,August,50,837-01-6937,Musician,25757.56,,7,6,14,100,"Student Loan, and Student Loan",22.83299985,16,9.02,,Standard,912.72,37.42935405,,No,41.70585148,,High_spent_Small_value_payments,385.428295,0,1.4025,-0.1544,0.2127,1.2139,0.6687 +0x168fd,CUS_0x553e,August,32,416-28-3139,Scientist,113539.44,9276.62,8,4,13,0,,22.29239798,,16.83,6,Standard,1207.09,42.58211013,16 Years and 4 Months,No,70266,10000,High_spent_Large_value_payments,1023.071206,0,-1.7704,-0.2611,0.8395,-1.1213,0.9641 +0x16909,CUS_0xb770,August,54,437-36-2230,Musician,18672.765,1557.06375,4,4,6,3,"Auto Loan, Debt Consolidation Loan, and Payday Loan",0,1,5.68,2,Good,785.46,26.05760042,21 Years and 9 Months,No,23.98441371,124.6512046,Low_spent_Small_value_payments,297.0707567,0,-0.4062,-0.1257,-0.3794,-2.0269,0.8328 +0x16915,CUS_0x14f4,August,23,870-88-0893,Developer,14274.32,907.5266667,4,4,12,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",10.50081619,9,8.48,4,Standard,1243.37,39.4785509,12 Years and 2 Months,Yes,18.18957977,50.18933666,Low_spent_Medium_value_payments,302.3737502,0,-0.6891,-0.3116,2.1891,0.7578,-1.2393 +0x16921,CUS_0x6f0b,August,22,749-98-9749,Lawyer,31589.06,,8,3,9,4,"Mortgage Loan, Not Specified, Mortgage Loan, and Home Equity Loan",15.17328485,14,8.91,4,_,1428.58,33.93534629,30 Years and 10 Months,Yes,82.49834395,157.0198677,Low_spent_Large_value_payments,319.923955,0,1.6889,-0.3993,-0.9857,0.0899,-0.1159 +0x1692d,CUS_0xc346,August,26,#F%$D@*&8,_______,47050.41,4117.8675,560,7,19,5,"Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",31.5785942,20.91614565,12.77,5,Standard,1789.305719,36.1068387,17 Years and 9 Months,Yes,140.6698414,165.7945671,High_spent_Medium_value_payments,355.3223415,0,0.2866,0.5874,-2.1808,-0.5347,-1.5111 +0x16939,CUS_0x58d6,August,26,941-89-5500,Mechanic,127581,,3,3,7,0,,21.05150961,16.98344581,18.79,11,Standard,221.9934987,31.56665635,17 Years and 4 Months,Yes,0,1049.80234,Low_spent_Medium_value_payments,266.0726599,0,-0.7242,-2.0505,-0.3918,-0.1467,-0.7809 +0x16945,CUS_0xb1a3,August,29,#F%$D@*&8,Media_Manager,16142.49,,9,7,30,6,"Student Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Payday Loan, and Student Loan",41.26748607,19.7026032,8.25,17,Bad,1479.973465,37.41189702,15 Years and 4 Months,Yes,59.69988634,68.37473544,Low_spent_Medium_value_payments,275.8461282,0,0.2377,0.9631,0.5746,0.7931,-0.9385 +0x16951,CUS_0x5ea2,August,36,266-58-4616,Entrepreneur,17869.29,,6,3,19,4,"Payday Loan, Payday Loan, Auto Loan, and Not Specified",16.30352484,10,9.2,6,Standard,276.09,27.60574336,27 Years and 6 Months,Yes,42.04241999,89.93387496,High_spent_Small_value_payments,292.334455,0,0.2441,-1.6449,-1.5339,1.6532,1.3867 +0x1695d,CUS_0x6ee8,August,29,642-77-9287,Writer,69478.76,5902.896667,3,6,10.28836175,1392,"Not Specified, Mortgage Loan, Student Loan, and Auto Loan",15.13986311,,4.34,7,_,599.17,27.59920876,27 Years and 3 Months,No,190.7389764,534.6260802,High_spent_Medium_value_payments,534.8620711,0,-1.9964,-0.3964,-0.5109,0.1952,0.6055 +0x16969,CUS_0x65bf,August,52,359-28-0281,Writer,143552,11956.66667,4,4,7.288361749,0,Auto Loan,0,3,10.38,1,Good,445.2962437,32.62833218,33 Years and 5 Months,No,79.66192635,1309.671559,High_spent_Small_value_payments,598.9221022,0,-0.3326,1.4822,-0.8675,-1.2626,-0.1027 +0x16975,CUS_0x1b56,August,23,043-47-6622,Lawyer,49460.16,4270.68,9,6,18,5,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",34.77282272,15.71899386,17.82,15,Standard,1858.685985,27.35010801,6 Years and 3 Months,Yes,197.6739058,154.4260103,High_spent_Medium_value_payments,324.9680839,0,2.2778,-0.4608,-0.3871,-0.4442,0.9686 +0x16981,CUS_0x9103,August,42,832-61-3573,Mechanic,8917.805,,8,8,17.95700519,7,"Student Loan, Student Loan, Personal Loan, Payday Loan, Personal Loan, Payday Loan, and Student Loan",32.72663854,16,0.87,11,Bad,2054.890954,28.00099666,9 Years and 6 Months,Yes,1353.092539,,High_spent_Small_value_payments,222.0681771,0,0.2645,1.705,0.0231,-1.4609,-0.5736 +0x1698d,CUS_0x7c6,August,42,#F%$D@*&8,Teacher,7284.94,407.0783333,9,10,26,7,"Auto Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Auto Loan, and Not Specified",36.19096049,23,4.2,13,Bad,2308.2,33.71933068,15 Years and 8 Months,Yes,54221,,High_spent_Small_value_payments,236.2033968,0,0.6247,-0.684,0.001,-0.672,-0.7777 +0x16999,CUS_0x3065,August,35,893-23-7442,Media_Manager,35579.68,2864.973333,10,7,31,5,"Home Equity Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, and Auto Loan",14.87204464,10,11.12,13,_,1646.74,23.37051185,15 Years and 0 Months,Yes,118.39497,,Low_spent_Small_value_payments,174.4881996,0,0.0957,0.2578,-0.8623,-0.08,2.3567 +0x169a5,CUS_0xa095,August,24,419-43-3967,Architect,39511,3248.583333,7,8,24,3,"Payday Loan, Home Equity Loan, and Payday Loan",41.88813043,28.00509816,1.1,8,Bad,1441.639984,26.48168983,6 Years and 3 Months,Yes,81.47834179,204.6085853,Low_spent_Large_value_payments,308.7714062,0,-0.2124,1.1161,-0.1205,0.6769,1.0896 +0x169b1,CUS_0x9bbe,August,40,487-03-4362,Media_Manager,105239.46,8895.955,1480,5,14,2,"Auto Loan, and Mortgage Loan",17.18896777,,15.89,5,_,1369.89,25.78756679,14 Years and 0 Months,NM,171.1656975,,!@9#%8,42.25645842,0,0.2418,-2.0929,-1.256,-0.6752,-1.2687 +0x169bd,CUS_0x438a,August,41,081-12-2607,Architect,34076.32,,9,7,25,5,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Personal Loan, and Not Specified",51.02733964,29.48929022,5.79,8,Bad,1582.980937,37.63493138,20 Years and 2 Months,Yes,134.4033898,67.34744683,High_spent_Medium_value_payments,350.0184967,0,1.0324,-0.1673,-0.3247,1.5538,1.5166 +0x169c9,CUS_0x554b,August,53,776-27-8471,Entrepreneur,15127.05,1482.33921,8,5,15,4,"Payday Loan, Mortgage Loan, Auto Loan, and Not Specified",19.51081517,12,11.16,2,Standard,194.3,35.58290766,26 Years and 3 Months,NM,93.51033731,,Low_spent_Small_value_payments,234.7004748,0,0.6874,-1.3529,-1.6242,0.3843,2.7558 +0x169d5,CUS_0x9bf3,August,43,458-76-0289,_______,34571.53,,5,5,4.288361749,2,"Home Equity Loan, and Student Loan",6.049342641,9,5.37,4,Good,58.37,28.80017728,26 Years and 11 Months,No,41.83633131,723.8069696,Low_spent_Small_value_payments,229.7902435,0,0.7754,-2.1825,-0.4078,-0.8485,-1.0844 +0x169e1,CUS_0x1d56,August,31,200-30-0736,Media_Manager,53127.72,4655.31,7,6,34,3,"Not Specified, Personal Loan, and Mortgage Loan",25.34616135,,7.04,16,Standard,1894.561144,42.4235402,20 Years and 6 Months,Yes,87.57835313,103.178921,High_spent_Medium_value_payments,524.7737259,0,1.2059,1.4136,-0.4601,-2.2831,-1.6581 +0x169ed,CUS_0x1b99,August,37,685-95-4062,Developer,18264.11,,5,5,15,7,"Payday Loan, Credit-Builder Loan, Not Specified, Not Specified, Auto Loan, Credit-Builder Loan, and Home Equity Loan",,18,16.98,9,Standard,2622.13,38.13131352,12 Years and 10 Months,Yes,90.81220498,61.56843929,Low_spent_Large_value_payments,279.7202724,0,-1.3252,-0.1671,0.2587,-0.9728,-0.0976 +0x169f9,CUS_0xc1bf,August,43,668-63-2486,Entrepreneur,16750.82,,6,7,26.06745738,5,"Personal Loan, Student Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",,16,29.46,9,_,2988.500954,31.11475814,10 Years and 3 Months,Yes,36.87650281,,Low_spent_Small_value_payments,207.50633,0,0.0251,-0.7314,-0.9181,1.0078,0.1826 +0x16a05,CUS_0x4cb8,August,30,417-86-8323,Doctor,68299.04,5887.586667,3,5,3.288361749,2,"Not Specified, and Not Specified",0,2,-0.44,5,Good,359.5576935,21.98513521,28 Years and 6 Months,No,81.07807108,892.3755764,Low_spent_Medium_value_payments,381.6001311,0,0.424,-0.2274,-0.961,-1.2281,0.1177 +0x16a11,CUS_0x8ce4,August,42,125-44-2714,Doctor,36439.06,3248.588333,5,6,5,3,"Payday Loan, Student Loan, and Auto Loan",11.31448774,10.24017891,9.12,2,Good,6.293572846,29.39914994,21 Years and 6 Months,No,59.99582246,180.5019407,High_spent_Small_value_payments,344.3610701,0,-1.7197,-1.0751,-0.0444,0.0717,0.7974 +0x16a1d,CUS_0x52c3,August,22,942-61-3792,Mechanic,18763.21,,8,6,31.06745738,5,"Student Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",19.19722208,13,8.22,12,Standard,2510.140954,38.19984634,13 Years and 0 Months,Yes,73.56399934,42.81547867,High_spent_Medium_value_payments,282.1603174,0,1.2544,-0.2916,0.1898,-0.0036,0.4022 +0x16a29,CUS_0xc653,August,41,030-58-1857,Architect,21380.065,,2,2,5,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",0,1,1.79,2,_,764.08,31.02205014,24 Years and 3 Months,No,30.57084865,74.13857405,Low_spent_Medium_value_payments,375.8577856,0,0.6902,-1.9709,-0.8452,0.5566,-1.574 +0x16a35,CUS_0x981,August,48,488-06-3635,Developer,24042.68,,5,3,20,1,Mortgage Loan,,11,10.47,4,Standard,1006.1,38.69248966,30 Years and 6 Months,No,12.66458115,52.03158511,High_spent_Large_value_payments,397.6595004,0,-0.1317,1.944,0.8839,3.1089,-0.2129 +0x16a41,CUS_0x541c,August,44,635-19-9211,Lawyer,17296.485,1680.37375,1,3,11,1,Debt Consolidation Loan,0,0,8.59,2,Good,857.3344298,38.07594583,32 Years and 4 Months,No,11.06281181,34.67517589,High_spent_Large_value_payments,367.4888988,0,-0.5395,-0.2678,-0.6249,-1.332,0.5557 +0x16a4d,CUS_0x297f,August,25,319-43-4786,Scientist,38612.19,2944.6825,5,3,11,2,"Payday Loan, and Auto Loan",0,3.612137259,10.82,4,Good,668.1393026,27.85741213,31 Years and 2 Months,No,52.84094499,201.2375225,Low_spent_Small_value_payments,330.3897825,0,-1.6038,-0.1151,1.279,1.1955,-0.1907 +0x16a59,CUS_0x6f65,August,39,822-04-9375,Teacher,74647.47,,8,4,20,4,"Personal Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",,14,1.61,8,Standard,374.5174572,27.44081231,24 Years and 4 Months,No,498.0708288,221.9130498,High_spent_Medium_value_payments,493.1002314,0,0.2455,1.4222,-0.3355,2.3142,-0.9795 +0x16a65,CUS_0xc072,August,43,115-85-4315,Lawyer,81170.08,6638.173333,7,7,30,5,"Mortgage Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",51.21351035,30.30973074,4.87,,Bad,2942.178352,28.02306596,7 Years and 2 Months,Yes,189.7067238,94.32068883,High_spent_Large_value_payments,619.7899207,0,-0.0465,-0.1395,0.1859,0.2546,0.7877 +0x16a71,CUS_0xbbaa,August,49,432-85-0397,Media_Manager,60595.11,5106.5925,8,4,5,2,"Auto Loan, and Payday Loan",,17,8.23,7,Standard,412.1,37.6123458,15 Years and 11 Months,No,79.49363107,115.465009,High_spent_Large_value_payments,555.70061,0,-0.223,0.4242,-1.2507,-0.361,0.0176 +0x16a7d,CUS_0xa4dc,August,26,501-07-9854,Journalist,43802.1,3468.175,10,5,34.06745738,6,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",24.60432956,,11.52,9,Standard,2682.177742,26.44598751,,Yes,167.9030685,329.8971956,Low_spent_Medium_value_payments,102.296948,0,0.7214,-0.0802,0.0693,0.1125,0.0063 +0x16a89,CUS_0x5b65,August,25,949-81-1864,Doctor,85248.15,,4,7,5,2,"Not Specified, and Mortgage Loan",6.945774207,7,2.24,5,Good,1326.06,34.17849316,24 Years and 9 Months,No,113.4336024,565.5127767,Low_spent_Large_value_payments,280.1548709,0,-0.0347,0.023,2.9203,-1.0499,1.2206 +0x16a95,CUS_0x62a1,August,39,919-64-9669,Writer,17621.48,1401.456667,7,4,19,2,"Credit-Builder Loan, and Debt Consolidation Loan",,11,10.81,5,Standard,167.19,33.13513191,,Yes,23.39428879,23.23599174,High_spent_Large_value_payments,333.5153861,0,-1.6663,-0.0217,0.3148,0.3168,1.1793 +0x16aa1,CUS_0xa91e,August,43,188-52-7396,Developer,15859.47,,8,5,33,100,"Personal Loan, Personal Loan, Not Specified, Auto Loan, and Personal Loan",15.37942852,12,15.92,10,_,2151.1,32.63679465,19 Years and 9 Months,NM,55.39489257,104.8778743,Low_spent_Small_value_payments,237.9894831,0,-0.7511,-2.3189,1.7009,0.4501,0.0896 +0x16aad,CUS_0x4d0,August,33,438-27-8255,Architect,50050.56,,10,11,23.95700519,9,"Home Equity Loan, Personal Loan, Mortgage Loan, Auto Loan, Not Specified, Home Equity Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",24.55703325,,19.62,6,Bad,3136.860954,35.99838109,8 Years and 4 Months,Yes,1658.084682,205.9493824,!@9#%8,145.6035666,0,-1.982,-0.2194,0.5375,1.268,0.8861 +0x16ab9,CUS_0x8f4e,August,24,827-13-9020,Writer,32412.72,,9,6,32,9,"Student Loan, Home Equity Loan, Not Specified, Not Specified, Not Specified, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",46.38443855,27.74533863,7.99,12,Bad,4168.831382,33.69608478,10 Years and 5 Months,Yes,163.0675359,201.0037712,Low_spent_Large_value_payments,194.634693,0,0.6559,-0.1928,-0.9675,0.6454,0.4643 +0x16ac5,CUS_0x706e,August,56,297-12-6892,_______,39206.98,,1,5,3,3,"Credit-Builder Loan, Student Loan, and Home Equity Loan",12.62439577,13,1.15,2,_,719.08351,35.92617771,18 Years and 3 Months,No,55.82968367,,Low_spent_Large_value_payments,255.2085933,0,-0.0623,0.2094,-0.1792,-0.6804,2.0129 +0x16ad1,CUS_0x43a7,August,32,385-07-5752,Engineer,32151.76,,8,10,30.95700519,9,"Payday Loan, Student Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Student Loan, and Mortgage Loan",,21.743021,20.53,15,Bad,3132.854315,22.94727741,7 Years and 3 Months,NM,1505.448517,268.0455647,Low_spent_Small_value_payments,54.58688225,0,1.0022,0.4538,-1.1336,1.1108,-2.6212 +0x16add,CUS_0x21f9,August,38,339-93-8648,Accountant,61648.24,4845.353333,10,8,16.95700519,8,"Student Loan, Not Specified, Auto Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Payday Loan",31.82213713,19,28.28,13,Bad,4353.000954,27.79612013,,Yes,1682.480159,,Low_spent_Large_value_payments,178.5650597,0,-1.1202,-0.0944,2.0665,0.1047,0.1642 +0x16ae9,CUS_0xad18,August,80,#F%$D@*&8,Developer,17946.85,1437.570833,8,10,34.06745738,6,"Auto Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Payday Loan, and Student Loan",,22,22.61,7,_,4571.890954,27.99572407,6 Years and 11 Months,Yes,53.6106233,135.2406585,Low_spent_Small_value_payments,218.1855136,0,0.8504,0.365,0.142,0.177,0.5657 +0x16af5,CUS_0x2c14,August,48,022-42-7781,Entrepreneur,38458.71,,0,3,8,0,,,,9.77,1,_,971.1902396,38.9519556,33 Years and 2 Months,NM,0,167.9002114,Low_spent_Large_value_payments,413.7890386,0,-0.0752,0.7511,1.4202,0.2382,0.1427 +0x16b01,CUS_0xbafa,August,40,769-76-3568,Accountant,60015,5064.25,7,7,24,2,"Home Equity Loan, and Debt Consolidation Loan",17.28733864,,11.41,11,Standard,2461.7,36.83087621,,Yes,75.68353222,89.27643362,High_spent_Medium_value_payments,591.4650342,0,0.3915,0.0521,0.702,-0.8817,-0.2192 +0x16b0d,CUS_0xbd76,August,80,336-61-7010,Architect,17923.435,,7,7,8,1,Mortgage Loan,,13,16.42,1,_,1300.81,35.62987085,24 Years and 11 Months,Yes,7.847698737,,Low_spent_Small_value_payments,242.2750868,0,0.6097,-0.7666,-0.2202,-0.7317,1.4698 +0x16b19,CUS_0x574,August,38,298-39-3391,Entrepreneur,71830,,6,5,25,8,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Auto Loan, and Payday Loan",39.83587128,23,21.91,7,Bad,2952.58,34.60742221,11 Years and 5 Months,Yes,405.068005,152.9937587,High_spent_Medium_value_payments,274.9215696,0,-0.2015,0.9737,0.7388,1.1469,-1.3256 +0x16b25,CUS_0xa4f2,August,45,853-39-8294,Scientist,33531.29,2994.274167,2,5,5,2,"Student Loan, and Credit-Builder Loan",2.020312853,5,5.94,1,Good,1033.9,38.58545362,31 Years and 0 Months,No,35.08763184,144.2886787,Low_spent_Large_value_payments,390.0511061,0,0.9314,-1.1248,0.0973,1.0812,1.3397 +0x16b31,CUS_0x449,August,18,324-08-0373,Manager,46744.62,4111.385,7,9,27,2,"Not Specified, and Credit-Builder Loan",,8.107791068,14.45,9,Standard,2288.125345,39.89403221,19 Years and 11 Months,Yes,77.75856143,,High_spent_Medium_value_payments,530.5859381,0,-0.2449,0.663,-0.6021,-1.6957,0.4656 +0x16b3d,CUS_0x2fec,August,41,151-38-6083,Mechanic,51172.62,4221.385,3,5,22,7,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",,15,13.09,12,Standard,1980.82,31.97114818,15 Years and 3 Months,Yes,159.8717559,121.7703963,High_spent_Medium_value_payments,390.4963478,0,-0.8261,0.1793,0.511,-0.8573,-1.7102 +0x16b49,CUS_0xb662,August,18,414-25-8356,Teacher,86200.8,,7,3,12,5,"Payday Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, and Payday Loan",13.7199765,11,24.07,9,Standard,1441.59,37.38040191,10 Years and 11 Months,Yes,268.6121352,270.1494738,High_spent_Medium_value_payments,458.278391,0,-1.8732,1.3893,-0.8447,0.4272,-0.8018 +0x16b55,CUS_0x278f,August,80,094-63-0433,Lawyer,14646.28,1186.523333,6,3,17,6,"Credit-Builder Loan, Payday Loan, Payday Loan, Not Specified, Auto Loan, and Personal Loan",25.54573028,19,8.96,9,Standard,522.36,29.15822376,,NM,45.64989385,,Low_spent_Medium_value_payments,251.2483004,0,-0.6477,0.8025,-0.2806,-0.0517,-0.3647 +0x16b61,CUS_0x235c,August,24,322-57-2229,Developer,106824.68,,5,6,13,3,"Personal Loan, Auto Loan, and Not Specified",,,12.94,9,Standard,704.23,36.244906,,Yes,263.2803214,164.6112811,High_spent_Small_value_payments,740.9140642,0,-0.6866,-0.6125,0.0077,1.0726,0.1508 +0x16b6d,CUS_0x1890,August,26,765-48-3540,Lawyer,20823.28,1473.273333,7,6,25,7,"Student Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,,23.59,12,_,2964.391587,31.43110659,2 Years and 10 Months,Yes,85.86895832,,!@9#%8,252.4080256,0,0.3311,2.5131,1.1927,0.9912,-0.8467 +0x16b79,CUS_0xa18d,August,18,156-02-3992,Teacher,17492.31,,7,9,27,3,"Student Loan, Not Specified, and Auto Loan",30.47416837,14.9727379,15.15,11,Standard,2326.52986,28.44456165,6 Years and 6 Months,Yes,23.28268243,,Low_spent_Large_value_payments,276.3637145,0,-1.7815,0.4183,-0.245,0.4416,0.6341 +0x16b85,CUS_0x2ef1,August,35,398-24-4172,Accountant,146861.12,12514.42667,4,7,9,3,"Payday Loan, Auto Loan, and Personal Loan",28.45027479,21,15.75,8,Standard,1368.79,33.95421779,9 Years and 9 Months,Yes,310.4369289,190.5783865,High_spent_Medium_value_payments,1000.427351,0,2.4556,-0.3399,0.362,0.63,-0.4904 +0x16b91,CUS_0x4389,August,34,433-66-2820,Lawyer,20587.96,1953.663333,8,5,12,2,"Debt Consolidation Loan, and Payday Loan",14.04570548,9,13.87,3,Standard,854.63,32.69150706,18 Years and 5 Months,NM,26.53316472,79.84575178,Low_spent_Small_value_payments,378.9874168,0,-0.3939,0.8534,-0.3555,-0.0724,0.0642 +0x16b9d,CUS_0x4dcd,August,56,833-44-7020,Teacher,72760.04,6085.336667,8,4,15,1,Home Equity Loan,,13,6.58,2,_,792.46,28.37168828,22 Years and 6 Months,Yes,31.28499648,221.6198068,High_spent_Small_value_payments,615.6288634,0,1.114,-0.4792,0.364,1.8306,-0.4046 +0x16ba9,CUS_0x92f8,August,22,229-01-4348,Teacher,34334.9,2999.241667,5,6,8,3,"Debt Consolidation Loan, Auto Loan, and Student Loan",0,1,5.58,3,Good,1094.04,23.94045153,27 Years and 0 Months,No,74.3470994,89.00582033,High_spent_Small_value_payments,396.5712469,0,-1.5645,-1.9614,-0.0761,1.4536,0.4131 +0x16bb5,CUS_0x3f94,August,52,089-12-3246,Entrepreneur,96943.47,8107.6225,0,5,3.288361749,100,"Home Equity Loan, Mortgage Loan, and Debt Consolidation Loan",,12,6.62,4,Good,304.31,35.25130136,27 Years and 6 Months,No,175.8727077,601.5744754,High_spent_Large_value_payments,693.2525279,0,-1.002,-0.5983,-0.4452,-0.4759,-0.9181 +0x16bc1,CUS_0xc203,August,24,#F%$D@*&8,Manager,14143.68,925.64,8,10,26.88954781,100,"Payday Loan, Student Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",,15,29.31,252,Bad,3729.82,31.71361465,3 Years and 6 Months,Yes,1423.10395,,Low_spent_Small_value_payments,210.1148506,0,-1.6917,2.0319,0.1282,-0.4523,0.0774 +0x16bcd,CUS_0x40dc,August,24,079-60-0557,Entrepreneur,19181.19,1351.4325,1,5,4,1,Mortgage Loan,4.462346276,8,5.25,1,Good,757.1842967,29.01845069,18 Years and 10 Months,No,11.51889473,150.0554117,Low_spent_Small_value_payments,283.5909868,0,-1.4051,0.1908,-0.3837,0.1641,0.2667 +0x16bd9,CUS_0x8318,August,18,303-37-5470,Lawyer,10190.065,,8,7,11,5,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Payday Loan",,,10.19,10,_,962.78,31.76684474,8 Years and 2 Months,NM,22.5480028,105.2923555,Low_spent_Small_value_payments,246.67685,0,1.8823,0.3214,0.2945,-0.0464,0.3089 +0x16be5,CUS_0x45d2,August,80,548-90-9826,Engineer,34053.28,,3,6,5,27,"Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",3.06968878,7,5.81,3,_,952.0036063,25.33737272,32 Years and 8 Months,No,72.56396912,241.1677847,Low_spent_Medium_value_payments,275.8891439,0,-0.1439,-0.9008,-0.9815,-0.0047,-2.0039 +0x16bf1,CUS_0xa1ce,August,46,943-83-3622,Scientist,17092.69,,7,3,19,7,"Not Specified, Not Specified, Mortgage Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",,14,16.4,8,Standard,1417.06,37.2793783,12 Years and 5 Months,Yes,62.79425952,79.93115441,High_spent_Small_value_payments,286.8136694,0,-0.0039,-0.6934,-0.0891,0.648,-0.1622 +0x16bfd,CUS_0x72fb,August,45,922-41-1153,Musician,41734.76,3688.896667,8,4,5,1,Student Loan,14.83815447,9,7.1,2,Standard,297.64,33.3895471,20 Years and 3 Months,No,19.35073095,122.4446404,High_spent_Medium_value_payments,477.0942953,0,0.5309,-0.5104,-1.1179,-0.2847,-0.9723 +0x16c09,CUS_0x55e0,August,26,857-03-0726,Writer,16100.17,,9,5,21.06745738,7,"Home Equity Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Payday Loan, and Home Equity Loan",36.35763802,18.75808407,18.09,10,Standard,2821.889599,25.70508412,7 Years and 0 Months,NM,85.48267558,123.6184327,Low_spent_Small_value_payments,172.6466871,0,0.2979,0.3508,-0.5875,0.4969,-1.2797 +0x16c15,CUS_0x368d,August,21,012-42-3003,Developer,104816.56,,3,7,13,3,"Personal Loan, Student Loan, and Not Specified",,22,9.18,3,Standard,1220.07,33.33721699,30 Years and 5 Months,Yes,192.7305999,205.5295374,!@9#%8,738.711196,0,1.303,0.6447,-0.324,-0.7532,1.2983 +0x16c21,CUS_0x622e,August,44,336-84-5929,Mechanic,120333.04,10246.75333,8,4,3,1,Not Specified,,8,8.67,4,Good,1445.54,43.15988785,19 Years and 11 Months,No,67.81900653,185.0221613,High_spent_Small_value_payments,1031.834165,0,-0.3337,-0.9431,-0.4165,-0.8041,0.0211 +0x16c2d,CUS_0x7c12,August,32,477-14-0592,Manager,31417.15,,3,6,18,3,"Home Equity Loan, Payday Loan, and Not Specified",13.99502046,10,17.26,0,Standard,362.31,39.38919125,20 Years and 11 Months,Yes,64.18962322,27.59498085,High_spent_Large_value_payments,414.6249793,0,-1.7965,1.6926,1.3047,0.5499,-0.5893 +0x16c39,CUS_0x6493,August,32,430-26-7042,Doctor,89154.27,7223.5225,3,4,16.28836175,2,"Payday Loan, and Payday Loan",14.25170583,,18.58,10,Standard,102.66,34.26282744,22 Years and 6 Months,Yes,146.0967368,10419.93746,High_spent_Medium_value_payments,673.426796,0,-0.3384,-0.6995,-0.3993,-0.0099,1.2474 +0x16c45,CUS_0x4020,August,33,273-14-6142,Mechanic,14804.08,979.6733333,6,9,19.88954781,7,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Auto Loan, and Auto Loan",19.08786174,15,23.06,12,Bad,2812.787116,28.51565616,7 Years and 10 Months,Yes,1404.750834,41.72186406,High_spent_Medium_value_payments,213.3577735,0,0.6249,-0.2917,0.6248,2.271,-1.1004 +0x16c51,CUS_0x8059,August,25,824-91-5036,Developer,88918.54,7657.878333,4,4,11,2,"Mortgage Loan, and Auto Loan",13.42039283,9.555917645,1.24,6,Good,1306.869045,42.77973292,24 Years and 11 Months,NM,110.4176553,139.0316629,High_spent_Medium_value_payments,766.3385152,0,1.859,1.1479,0.4506,-0.8006,-0.829 +0x16c5d,CUS_0x9a55,August,43,371-02-6134,Scientist,7296.72,,8,6,29,5,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Student Loan",20.6821072,14.63144049,17.65,13,_,2818.731827,39.42911377,6 Years and 6 Months,Yes,30.01460072,96.19545018,Low_spent_Small_value_payments,247.7959491,0,-0.9895,-0.8357,-2.3452,-0.3922,-0.0513 +0x16c69,CUS_0x6e1c,August,53,#F%$D@*&8,Lawyer,82230.76,,1,878,5,0,,,133,6.05,6,Good,1117.273765,30.14907577,31 Years and 0 Months,No,0,,High_spent_Large_value_payments,778.5781305,0,-0.3583,-1.6737,0.4125,0.5426,0.7434 +0x16c75,CUS_0x3e6b,August,22,763-33-5170,_______,16140.325,,4,4,9,3,"Not Specified, Not Specified, and Debt Consolidation Loan",13.51247322,13,8.07,6,_,382.28,22.04532401,21 Years and 10 Months,Yes,38.45894324,107.5778885,Low_spent_Large_value_payments,254.8658766,0,-0.5955,0.1443,-0.4327,0.2508,0.8807 +0x16c81,CUS_0x2cf4,August,28,633-12-4460,Entrepreneur,14817.665,1351.805417,6,5,7,2,"Credit-Builder Loan, and Not Specified",10.61075975,8,1.29,2,Good,1150.18,31.33554121,24 Years and 9 Months,No,13.26910048,80.82678192,Low_spent_Medium_value_payments,321.0846593,0,-0.7196,-0.8372,0.8313,-0.1913,0.443 +0x16c8d,CUS_0x57e,August,80,882-25-3454,_______,70015.36,6128.12099,8,4,7,6,"Personal Loan, Personal Loan, Not Specified, Mortgage Loan, Auto Loan, and Debt Consolidation Loan",19.36671865,,16.68,7,Standard,134.86,26.73761899,11 Years and 8 Months,Yes,351.3214863,68.52961613,High_spent_Medium_value_payments,444.6025743,0,0.6544,0.9797,-0.0009,-1.091,-1.4839 +0x16c99,CUS_0xc420,August,29,233-86-9353,Media_Manager,33312.69,,3,6,5,0,,16.28524136,11,8.23,4,Standard,499.74,30.17922323,22 Years and 3 Months,Yes,0,233.7290146,Low_spent_Large_value_payments,341.0767354,0,-0.7471,0.0586,1.4353,-0.4272,1.4572 +0x16ca5,CUS_0xa4f5,August,29,515-00-5081,Mechanic,45127.38,,9,6,33,9,"Payday Loan, Payday Loan, Personal Loan, Payday Loan, Student Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, and Auto Loan",59.84974789,32.83159416,5.03,8,_,2597.470987,22.55422279,10 Years and 9 Months,Yes,267.10215,100.0114016,High_spent_Medium_value_payments,229.5479483,0,-0.3339,0.1105,1.3037,0.2672,-0.0252 +0x16cb1,CUS_0x6200,August,27,473-54-7971,Journalist,35664.22,2686.018333,9,7,18.06745738,5,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,23.06443943,10.24,11,Bad,5078.583499,30.50221871,2 Years and 8 Months,NM,137.8839913,180.2908669,Low_spent_Medium_value_payments,203.7066872,0,0.9534,0.7897,0.9195,0.8047,0.41 +0x16cbd,CUS_0x25f7,August,28,627-53-3917,Teacher,65668.78,5238.398333,2,6,4,4,"Personal Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",14.3913735,11.79469778,7.36,2,Good,1430.761598,37.96226549,29 Years and 3 Months,NM,135.1487396,,High_spent_Medium_value_payments,471.3597394,0,-0.411,-2.1649,0.3383,-0.0225,-1.6317 +0x16cc9,CUS_0xa8d4,August,42,228-74-4538,Lawyer,8786.87,592.2391667,9,9,21,3,"Personal Loan, Student Loan, and Personal Loan",30.99243099,22.51414939,9.92,1531,Bad,1933.244872,27.6029486,17 Years and 4 Months,Yes,16.80742803,35.25100818,Low_spent_Small_value_payments,297.1654805,0,-0.4033,-0.9153,-0.8031,0.6731,-1.2903 +0x16cd5,CUS_0x6a84,August,45,670-40-8222,_______,69279.38,5836.281667,3,5,8,0,,11.83387952,11.91292707,9.25,3,_,1593.433616,36.51905729,20 Years and 6 Months,No,0,217.5480603,!@9#%8,616.0801064,0,2.3642,0.4507,-1.5214,0.4709,-1.8152 +0x16ce1,CUS_0x9476,August,19,#F%$D@*&8,Accountant,18867.73,1863.310833,8,10,16.95700519,6,"Auto Loan, Auto Loan, Auto Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",40.83213672,23.52224593,3,6,Bad,3215.690968,27.50942416,9 Years and 9 Months,Yes,1412.138608,,Low_spent_Small_value_payments,153.6053927,0,0.247,-0.5423,-0.3739,-0.1869,-0.3125 +0x16ced,CUS_0x457b,August,28,852-68-5281,Teacher,82330.2,6731.85,9,10,20,3,"Debt Consolidation Loan, Student Loan, and Mortgage Loan",41.53191135,24.08170251,19.76,9,Bad,1868.977862,35.45218731,8 Years and 10 Months,Yes,155.619419,,Low_spent_Medium_value_payments,188.3160314,0,-1.7355,-1.529,-0.199,2.1107,-0.5941 +0x16cf9,CUS_0x8026,August,18,821-06-0110,Teacher,30420.88,2545.073333,6,7,18,6,"Payday Loan, Auto Loan, Student Loan, Credit-Builder Loan, Personal Loan, and Home Equity Loan",47.74271247,29.6450172,1.99,14,_,3130.81975,23.71901221,,NM,137.8789455,,Low_spent_Small_value_payments,131.4308534,0,0.2139,-0.2572,-0.9729,0.0066,-0.4039 +0x16d05,CUS_0xab92,August,27,771-54-0951,Doctor,14562.88,1069.573333,7,4,18,4,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",,11.21231342,11.05,10,Standard,1753.916173,28.72883027,16 Years and 3 Months,Yes,43.28729267,73.45191295,Low_spent_Small_value_payments,280.2181277,0,-0.1872,-0.3527,-1.3871,-0.3183,-0.8606 +0x16d11,CUS_0x7c4a,August,43,193-71-6964,Writer,17633.71,1489.475833,5,4,10.06745738,7,"Payday Loan, Payday Loan, Home Equity Loan, Personal Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",21.06674429,13.53036042,20.8,9,Standard,1852.106195,32.54838262,6 Years and 10 Months,Yes,62.0552962,146.8848933,Low_spent_Small_value_payments,203.2871059,0,0.1204,-0.741,2.0462,2.5862,0.1034 +0x16d1d,CUS_0x94bc,August,22,182-35-0055,Doctor,103345.12,,3,6,14,5,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Student Loan",14.73006564,12,12.52,6,_,89.33908734,23.38788672,6 Years and 9 Months,NM,817.9870257,921.6299045,Low_spent_Medium_value_payments,13.82841516,0,0.4773,0.8422,-0.9212,-1.4161,0.6449 +0x16d29,CUS_0x168d,August,34,305-62-3317,Entrepreneur,94559.73,7712.9775,3,6,11,4,"Payday Loan, Mortgage Loan, Auto Loan, and Auto Loan",16.56832939,,5.83,4,Good,46.09339679,31.190071,28 Years and 5 Months,No,183.7356808,97.39468271,High_spent_Medium_value_payments,754.9052937,0,-1.0305,-0.9421,-0.1589,-0.2489,0.3306 +0x16d35,CUS_0x2240,August,28,617-35-4690,Media_Manager,14089.595,,4,7,12,2,"Debt Consolidation Loan, and Personal Loan",,18,9.68,6,Standard,586.69,39.05413003,,Yes,13.36925382,,Low_spent_Small_value_payments,257.9960577,0,0.9625,-0.3951,-0.5126,-0.0072,1.2325 +0x16d41,CUS_0x8091,August,22,403-00-0161,Developer,79846.48,6576.873333,5,3,1,2,"Credit-Builder Loan, and Credit-Builder Loan",1.715099515,2.317547567,3.93,,Good,1349.677773,33.22182186,,No,132.5088523,405.8347018,Low_spent_Medium_value_payments,399.3437792,0,2.2573,-0.3492,-0.0727,0.1286,-0.4308 +0x16d4d,CUS_0x9fb1,August,51,626-68-2831,Teacher,36372.21,,5,4,5,4,"Auto Loan, Auto Loan, Home Equity Loan, and Student Loan",6.001962886,8,11.78,5,Good,1286.273318,23.01412871,26 Years and 9 Months,No,105.7973738,84.45871442,High_spent_Medium_value_payments,394.4073658,0,0.6961,0.4525,2.0119,0.5453,0.0858 +0x16d59,CUS_0x3941,August,18,782-05-3224,Accountant,59993.32,,5,4,16,6,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",19.27453058,13,10.61,7,Standard,1326.5,33.05661202,9 Years and 10 Months,Yes,205.9893195,,Low_spent_Medium_value_payments,84.50845218,0,-0.2338,-1.0143,1.3934,0.5218,1.073 +0x16d65,CUS_0x7a26,August,46,107-07-0053,Doctor,28817.1,2191.425,5,4,3,2,"Home Equity Loan, and Not Specified",,8,13.08,2,_,778.5878219,39.95807868,25 Years and 0 Months,No,24.25052608,200.4071906,Low_spent_Small_value_payments,311.7871728,0,-1.0978,-1.7409,0.7163,0.1909,0.5328 +0x16d71,CUS_0x624b,August,18,847-17-3721,Accountant,54174.51,,6,6,18,7,"Personal Loan, Personal Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",47.72191282,25.99126406,8.02,12,Bad,2450.674378,27.12633942,6 Years and 6 Months,Yes,226.640384,271.2830462,!@9#%8,185.7308198,0,1.0608,0.9676,0.8354,0.7943,-1.1167 +0x16d7d,CUS_0x1d1f,August,18,085-21-9898,Musician,16774.54,,8,3,15.28836175,2,"Personal Loan, Mortgage Loan, and Payday Loan",8.866273559,10,17.38,10,Standard,156.87,29.89784876,17 Years and 2 Months,Yes,22.19408863,443.8817288,High_spent_Medium_value_payments,369.3494769,0,-0.4315,-0.2054,-0.0977,0.3098,-1.1377 +0x16d89,CUS_0x3155,August,38,743-64-6287,Manager,10152.935,748.0779167,6,3,16,6,"Personal Loan, Mortgage Loan, Mortgage Loan, Not Specified, Auto Loan, and Mortgage Loan",18.84054072,15.72297353,,7,_,2421.183269,36.82274063,6 Years and 9 Months,Yes,30.20465335,29.25220494,Low_spent_Small_value_payments,305.3509334,0,0.4353,0.3572,0.676,0.2757,1.0035 +0x16d95,CUS_0x19b2,August,38,469-26-7362,Developer,34134.78,,8,7,25,7,"Student Loan, Payday Loan, Mortgage Loan, Auto Loan, Not Specified, Not Specified, and Debt Consolidation Loan",,20,19.06,15,Standard,2374.78,24.65338529,14 Years and 2 Months,Yes,195.5160025,161.169957,High_spent_Small_value_payments,174.0705405,0,-2.1834,0.9728,-1.8436,-0.5207,-0.7863 +0x16da1,CUS_0x5817,August,24,995-22-6108,Scientist,46927.68,3725.64,8,215,21,8,"Student Loan, Credit-Builder Loan, Personal Loan, Student Loan, Student Loan, Student Loan, Home Equity Loan, and Not Specified",23.9622645,,5.29,10,Bad,2093.313822,37.01502814,17 Years and 0 Months,Yes,237.2213775,153.8632725,High_spent_Medium_value_payments,231.47935,0,1.2383,0.3769,-0.5745,0.1233,0.6351 +0x16dad,CUS_0x292d,August,37,965-60-0407,Developer,37261.78,,5,4,2,1,Not Specified,0.035812197,1,10.72,5,Good,1106.94,29.08134424,32 Years and 0 Months,No,360.428952,,Low_spent_Medium_value_payments,493.9828726,0,-1.0943,-1.6048,0.0322,0.5149,0.9988 +0x16db9,CUS_0xb602,August,38,876-52-7514,Media_Manager,28488.56,,9,8,27,3,"Auto Loan, Payday Loan, and Mortgage Loan",27.94383453,19,15.16,9,Standard,1305.55,33.87723112,7 Years and 11 Months,Yes,64.24033844,,Low_spent_Large_value_payments,259.2418645,0,-0.9398,-1.198,1.4659,-0.7167,-0.2782 +0x16dc5,CUS_0x1ab9,August,48,915-26-4386,Engineer,15451.115,,4,6,9.288361749,4,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,10,18.3,,Standard,51.69417612,34.87008904,,Yes,32.6768801,489.8298206,High_spent_Medium_value_payments,306.7850497,0,-0.3606,-0.9867,-0.5797,0.7771,-0.832 +0x16dd1,CUS_0x97a0,August,22,065-31-8896,Musician,59978.52,,6,7,13,0,,12.3746092,11,3.54,3,Standard,479.07,34.98702082,,No,0,288.4303379,Low_spent_Small_value_payments,486.2906621,0,0.4721,0.7644,1.5461,-1.3735,0.0624 +0x16ddd,CUS_0x2f68,August,34,#F%$D@*&8,Teacher,93704.19,,3,4,20,2,"Mortgage Loan, and Home Equity Loan",,16,19.21,5,_,1194.35,40.3078497,28 Years and 10 Months,Yes,88.93927103,,High_spent_Large_value_payments,820.494858,0,1.1529,-0.8382,-1.8547,-0.3414,0.2821 +0x16de9,CUS_0x6b5f,August,30,252-01-2387,Writer,50352.39,,10,10,33.95700519,8,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,25.13268699,27.46,11,Bad,5186.559213,30.43925677,3 Years and 8 Months,Yes,1582.199793,53.89058037,High_spent_Large_value_payments,330.8625073,0,0.8101,-0.105,0.6916,0,-0.8251 +0x16df5,CUS_0x7d05,August,32,877-25-6063,Scientist,20986.9,,10,7,17.06745738,7,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Personal Loan",27.55157525,,17.61,15,Standard,2746.750954,33.54364263,16 Years and 3 Months,Yes,109.4967742,,Low_spent_Large_value_payments,224.5987166,0,0.849,0.4484,0.3309,-0.0014,0.4229 +0x16e01,CUS_0x713d,August,33,187-24-2463,Architect,8717.04,,8,3,18,4,"Mortgage Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",19.49153646,15.65021852,10.74,10,_,2482.322156,37.94002335,15 Years and 4 Months,Yes,63.23082678,65.5917044,Low_spent_Small_value_payments,253.9247098,0,0.3148,0.2503,-1.0704,0.5041,-1.4114 +0x16e0d,CUS_0xaf63,August,33,#F%$D@*&8,Media_Manager,33949.42,,5,6,4.288361749,2,"Home Equity Loan, and Credit-Builder Loan",19.42044779,17,3.15,3,Standard,385.92,27.37708872,19 Years and 11 Months,No,44.46127902,476.8800085,High_spent_Small_value_payments,468.8080068,0,2.5575,-0.0028,0.0631,-1.379,-1.4511 +0x16e19,CUS_0x825d,August,52,884-90-7852,Musician,34640.23,2897.685833,6,4,10,1,Credit-Builder Loan,12.98309207,10,13.1,2,Standard,714.2,35.07569806,22 Years and 8 Months,Yes,26.83808377,239.7173173,Low_spent_Medium_value_payments,303.2131823,0,-0.0348,-0.0698,-0.4687,-0.4924,-0.3707 +0x16e25,CUS_0x79a8,August,25,211-96-9068,Lawyer,106674.51,8657.5425,7,4,17,0,,21.77337405,13.12406817,4.24,8,Standard,347.7401732,39.71761925,19 Years and 10 Months,No,0,617.8491266,Low_spent_Small_value_payments,537.9051234,0,1.0994,-0.4925,-1.2355,-0.6196,-0.6866 +0x16e31,CUS_0x41ae,August,49,192-41-5590,Doctor,11526.465,,5,7,8.288361749,4,"Personal Loan, Mortgage Loan, Not Specified, and Mortgage Loan",,14,4.64,7,Good,128.6399209,22.70202264,,No,32.14924926,,Low_spent_Large_value_payments,250.5720337,0,1.7474,1.07,0.0073,-1.2271,-0.3326 +0x16e3d,CUS_0xad1e,August,34,733-90-4431,Engineer,72690.44,,8,5,34,9,"Not Specified, Credit-Builder Loan, Mortgage Loan, Personal Loan, Not Specified, Student Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",,25,2.49,9,Bad,2686.24,25.87947479,20 Years and 6 Months,NM,377.8057201,85.08493186,High_spent_Large_value_payments,376.6630147,0,-0.9717,-0.1046,-0.2389,-0.1108,0.5804 +0x16e49,CUS_0xb2a3,August,39,858-73-0362,Engineer,8707.38,426.5909733,4,4,23,4,"Home Equity Loan, Mortgage Loan, Student Loan, and Debt Consolidation Loan",15.43628222,11.94255457,16.68,8,Standard,1848.033058,35.68748876,11 Years and 4 Months,Yes,48.50746855,29.16876831,High_spent_Small_value_payments,258.0092899,0,-1.4354,0.1786,-0.8515,0.3383,-0.7918 +0x16e55,CUS_0xa9d6,August,25,014-27-9554,Scientist,97612.14,8014.345,8,4,9,4,"Personal Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",,11.91893151,11.72,7,_,1653.274446,36.12500976,10 Years and 10 Months,Yes,261.5834257,286.8577711,!@9#%8,542.9933032,0,-0.7569,0.8539,1.2537,0.8756,0.7665 +0x16e61,CUS_0x6abf,August,33,474-00-9682,Accountant,14021.495,1077.457917,7,5,16,2,"Debt Consolidation Loan, and Payday Loan",24.68624197,16,11.19,11,Standard,263.51,40.38928663,13 Years and 5 Months,Yes,13.54653842,136.6883862,Low_spent_Small_value_payments,247.510867,0,0.7414,-0.1001,0.4435,-0.0922,-0.7115 +0x16e6d,CUS_0x511d,August,39,494-39-0599,Scientist,71112.84,5885.07,6,4,11,1,Credit-Builder Loan,12.6955879,8.302375829,11.07,7,Standard,480.4494225,31.28656547,20 Years and 0 Months,No,53.42699481,228.9643099,Low_spent_Small_value_payments,596.1156953,0,0.3711,0.5479,0.814,0.1834,-0.2296 +0x16e79,CUS_0x22c5,August,55,280-90-5162,Doctor,71878.92,,1712,1,5,2,"Personal Loan, and Student Loan",7.925533035,7,10.24,1,Good,583.2147452,31.19469771,32 Years and 0 Months,No,88.02229277,263.4985497,Low_spent_Medium_value_payments,569.0404159,0,0.6952,-0.0826,-0.7092,-0.4403,1.1637 +0x16e85,CUS_0x3442,August,47,037-66-1131,Scientist,18186.22,,7,4,15,0,,,16,5.49,4,Standard,1.42,30.33582126,19 Years and 2 Months,No,0,44.24651223,High_spent_Medium_value_payments,381.9053211,0,0.7806,-0.165,-0.8338,2.9872,-0.5836 +0x16e91,CUS_0x14de,August,22,656-31-0155,Manager,53709.66,4375.805,10,10,29.88954781,8,"Mortgage Loan, Student Loan, Personal Loan, Not Specified, Credit-Builder Loan, Student Loan, Personal Loan, and Payday Loan",20.08037707,15,21.47,12,Bad,3069.57,38.99290888,,Yes,1644.976599,60.52977871,High_spent_Large_value_payments,277.7440408,0,-0.5627,0.0363,0.5726,0.7394,0.6647 +0x16e9d,CUS_0x1a61,August,19,958-80-8887,Manager,161689.72,13532.14333,0,7,6,0,,2.99376136,4,1.59,5,Good,1050.75,39.72585752,28 Years and 9 Months,No,0,552.6214324,High_spent_Medium_value_payments,1050.592901,0,0.493,0.6395,-1.0488,0.9128,1.4123 +0x16ea9,CUS_0x699,August,26,907-36-5534,Engineer,16465.61,,3,3,3,2,"Not Specified, and Personal Loan",,4,8.3,1,Good,1165.7,30.89265828,30 Years and 3 Months,No,19.67313463,77.18971628,!@9#%8,285.2505658,0,1.0106,0.5762,-0.4715,1.0658,0.1336 +0x16eb5,CUS_0x8ac6,August,41,275-73-6903,_______,95895.72,,0,512,2.288361749,2,"Home Equity Loan, Auto Loan, and Not Specified",,7,1.75,2,_,485.0744075,24.33158969,26 Years and 8 Months,No,164.8155675,728.1003694,Low_spent_Small_value_payments,640.209886,0,0.658,-1.3138,0.0467,0.3172,0.248 +0x16ec1,CUS_0x1c89,August,18,794-52-2242,Writer,8723.565,506.96375,1202,10,33.88954781,9,"Payday Loan, Payday Loan, Payday Loan, Mortgage Loan, Not Specified, Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",25.47114068,,16.6,14,Bad,4200.42,33.51217254,13 Years and 0 Months,Yes,1368.646573,18.58383834,Low_spent_Medium_value_payments,249.1358825,0,0.6984,-0.8213,-0.6655,0.2876,-0.4105 +0x16ecd,CUS_0x939b,August,36,917-93-3502,Manager,38821.54,3187.128333,10,9,18.88954781,9,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",,20,5.74,9,_,1541.26,26.80398221,14 Years and 5 Months,NM,1574.219856,292.3111304,Low_spent_Large_value_payments,27.85176535,0,-1.7849,0.9453,0.4005,-1.7949,-0.8224 +0x16ed9,CUS_0x9529,August,18,878-99-8757,Mechanic,42519.57,3734.2975,10,9,27.95700519,8,"Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Student Loan, Student Loan, and Personal Loan",,24,24.1,8,Bad,2927.340954,38.97892535,7 Years and 8 Months,Yes,1561.810325,61.06713932,High_spent_Medium_value_payments,279.501916,0,0.6404,0.3831,0.9348,-0.7629,0.108 +0x16ee5,CUS_0xb15c,August,33,223-57-2183,Accountant,16465.64,,5,6,5,2,"Auto Loan, and Mortgage Loan",,17.91462039,8.56,0,Standard,981.9946192,35.30780242,15 Years and 9 Months,Yes,26.10407861,142.7354365,Low_spent_Medium_value_payments,278.3741516,0,-0.7485,-0.1045,0.0709,-0.8568,-0.6214 +0x16ef1,CUS_0x1697,August,42,044-06-1094,Musician,69035.64,,8,9,30.88954781,7,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",52.75352532,28.48598442,1.32,9,Bad,2199.129046,40.05274435,10 Years and 3 Months,Yes,1676.464441,,High_spent_Medium_value_payments,250.0108618,0,-1.6305,0.4743,0.4792,-0.5089,-0.6795 +0x16efd,CUS_0xa70f,August,45,338-92-1938,Accountant,18295.61,,7,6,27,7,"Not Specified, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",13.88625593,12.10930936,20.24,11,Standard,2335.522879,33.4469047,,Yes,69.27282416,,Low_spent_Small_value_payments,222.2245664,0,-0.4056,0.0093,-0.4986,1.3817,0.6475 +0x16f09,CUS_0x2d9a,August,18,138-19-7383,Doctor,34620.62,,3,5,25,2,"Auto Loan, and Debt Consolidation Loan",,20.48343219,11.23,9,_,1907.836266,38.19918852,15 Years and 10 Months,Yes,41.96470261,10000,High_spent_Small_value_payments,309.238999,0,2.5472,0.5707,0.5572,-0.2079,-0.7024 +0x16f15,CUS_0xb9c5,August,49,451-16-6332,Media_Manager,19986.36,,7,7,7,1,Credit-Builder Loan,15.13756277,11,1.77,4,Standard,669.47,33.29754956,22 Years and 6 Months,No,13.37928224,70.42125289,High_spent_Medium_value_payments,352.6524649,0,1.7758,-1.3667,-1.9951,0.173,-0.4165 +0x16f21,CUS_0x646e,August,27,142-24-2784,Media_Manager,20487.1,,8,10,21.06745738,3,"Personal Loan, Auto Loan, and Personal Loan",25.35733085,16,8.75,7,Bad,2877.720954,33.26673137,5 Years and 8 Months,Yes,30.62296453,44.03352491,High_spent_Medium_value_payments,310.849056,0,-1.5286,1.5395,1.3077,1.6751,-0.1941 +0x16f2d,CUS_0x3937,August,25,#F%$D@*&8,Media_Manager,16399.77,1114.6475,9,5,29,8,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",,27.1623765,15.04,9,Bad,5209.987619,28.91871157,4 Years and 10 Months,Yes,61.99932742,89.49721647,Low_spent_Small_value_payments,249.9682061,0,1.6459,0.8305,0.8085,-0.2127,-1.5758 +0x16f39,CUS_0x219c,August,46,017-01-5532,_______,30812.96,2422.746667,1,7,3,1,Credit-Builder Loan,5.085715201,5.940020953,8.21,4,Good,1109.448096,36.49722896,29 Years and 8 Months,No,24.06489016,123.8198958,Low_spent_Small_value_payments,384.3898807,0,-0.4105,1.2177,0.8484,-0.4938,0.6813 +0x16f45,CUS_0xc1e7,August,25,475-26-4534,Journalist,38721.44,3340.786667,6,6,19,100,"Mortgage Loan, Home Equity Loan, Payday Loan, Not Specified, and Student Loan",,20,20.87,9,Bad,3467.82,27.17367302,13 Years and 9 Months,Yes,87.26862846,263.9075947,Low_spent_Medium_value_payments,262.9024435,0,0.2035,-0.8772,0.3431,-0.1385,0.0936 +0x16f51,CUS_0x742c,August,21,954-22-2142,Engineer,19562.27,1877.189167,8,6,20,5,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, and Payday Loan",,12,8.3,9,Standard,1517.03,35.61747189,20 Years and 0 Months,Yes,69.700562,,Low_spent_Small_value_payments,190.5086728,0,-1.1131,-1.1677,1.2316,-0.9055,1.207 +0x16f5d,CUS_0x67b0,August,18,136-79-3729,Engineer,19132.66,1583.388333,4,3,32,4,"Student Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",20.60240047,17,7.2,7,_,2404.05,30.58632662,15 Years and 2 Months,Yes,45.17437938,,Low_spent_Small_value_payments,239.8156411,0,0.4174,0.5811,-0.2544,-0.3299,-1.3039 +0x16f69,CUS_0x2f21,August,43,491-19-0912,_______,19833.55,,7,7,24.06745738,4,"Not Specified, Home Equity Loan, Auto Loan, and Credit-Builder Loan",31.19078518,20,2.88,9,Bad,1540.360954,34.06254086,7 Years and 2 Months,Yes,50.84005949,67.39172515,!@9#%8,312.5275108,0,-1.6181,1.2055,0.8838,0.851,1.2978 +0x16f75,CUS_0x8e5a,August,39,718-48-1833,Developer,57818.72,4864.226667,7,7,21,2,"Student Loan, and Credit-Builder Loan",,18.97924992,4.09,12,Bad,2631.890111,37.882655,14 Years and 6 Months,Yes,73.70957048,395.1362218,Low_spent_Small_value_payments,307.5768744,0,0.1513,0.1733,-0.5194,2.6576,-1.4066 +0x16f81,CUS_0x129b,August,24,#F%$D@*&8,Entrepreneur,95933.68,,4,5,15,7,"Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Payday Loan",12.24069995,10,17.87,5,Standard,129.15,34.16585064,8 Years and 2 Months,Yes,361.8671109,167.7180281,High_spent_Large_value_payments,496.4621944,0,0.6888,-0.0827,0.8105,0.4102,0.8821 +0x16f8d,CUS_0x9587,August,20,#F%$D@*&8,Engineer,17902.265,1306.855417,5,4,5,2,"Home Equity Loan, and Debt Consolidation Loan",12.733187,12,3.55,8,Good,398.7399825,28.39449804,32 Years and 3 Months,No,16.2450511,38.00644889,High_spent_Small_value_payments,341.8679828,0,-0.9222,0.1819,-0.4541,2.2738,0.0769 +0x16f99,CUS_0x28ba,August,37,158-26-3247,Entrepreneur,103044.24,,6,7,5,2,"Personal Loan, and Home Equity Loan",26.25966361,17,11.93,1,Standard,1196.09,34.04790027,17 Years and 5 Months,Yes,96.72786455,105.4256695,!@9#%8,868.848466,0,0.8594,-0.2089,-0.2802,-1.8167,-1.8959 +0x16fa5,CUS_0x3720,August,40,781-57-6368,Architect,8770.03,,8,10,24,6,"Student Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Personal Loan",,11.52936906,9.83,11,_,2605.214263,36.94150966,15 Years and 9 Months,Yes,30.31998458,10000,Low_spent_Medium_value_payments,277.1999269,0,-0.0008,-0.532,0.6092,-0.0616,-0.5807 +0x16fb1,CUS_0xcf0,August,22,049-18-2146,Engineer,76019.68,,9,6,29,8,"Personal Loan, Student Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Payday Loan",23.01685994,19,8.44,11,Bad,1743.81,35.06588136,7 Years and 0 Months,Yes,390.5887994,,High_spent_Large_value_payments,351.8660969,0,0.6591,0.8087,-0.2199,0.9951,0.7518 +0x16fbd,CUS_0xaea3,August,53,906-40-5984,Lawyer,31950.94,,3,3,5,1,Credit-Builder Loan,23.96030503,16,9.43,4,_,256.26,30.01888029,16 Years and 2 Months,Yes,18.49667124,70.26657719,High_spent_Medium_value_payments,430.9945849,0,0.1645,0.6829,1.0518,1.3581,-1.7405 +0x16fc9,CUS_0x2db3,August,50,#F%$D@*&8,Manager,107742.32,,3,6,3,0,,24.89594635,20,1.88,9,Good,1158.65,25.47877792,16 Years and 4 Months,No,0,598.8217187,Low_spent_Medium_value_payments,557.3309479,0,0.0259,-0.8082,0.2386,0.5364,0.3581 +0x16fd5,CUS_0x3507,August,20,242-39-1615,Engineer,59459.07,4502.973455,6,10,17,4,"Payday Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",24.90686982,15,11.19,11,Standard,1521.110254,30.09326815,,NM,734.8485131,,Low_spent_Large_value_payments,130.6173757,0,1.3293,-0.2216,-0.429,-0.3401,-0.123 +0x16fe1,CUS_0x4603,August,50,006-33-4198,_______,30912.86,,1,1,10,1,Personal Loan,0,0,5.12,5,_,773.2554279,33.42837923,32 Years and 10 Months,No,25.48899617,11078.16613,Low_spent_Small_value_payments,313.1874477,0,-0.1903,1.6633,-0.904,0.3512,-0.6101 +0x16fed,CUS_0xbf5c,August,37,890-06-6231,Manager,39656.72,3369.726667,8,9,28.88954781,7,"Mortgage Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Payday Loan",,22,26.05,6,_,3256.084324,37.18999946,13 Years and 10 Months,Yes,1449.331113,133.1781769,Low_spent_Large_value_payments,342.2771363,0,0.7421,2.1352,0.1717,0.6825,1.9074 +0x16ff9,CUS_0x28f1,August,28,436-68-6267,Accountant,54262.34,,6,4,17,7,"Student Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,14,11.16,7,Standard,456.99,36.85882059,5 Years and 11 Months,Yes,264.7561035,,Low_spent_Large_value_payments,35.07499571,0,-0.7365,0.2786,-0.4337,0.409,0.1236 +0x17005,CUS_0x8971,August,40,501-64-4874,Entrepreneur,73678.88,,10,9,23.06745738,9,"Home Equity Loan, Auto Loan, Payday Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Not Specified, and Debt Consolidation Loan",45.10767393,25,16.66,8,_,5160.160954,24.30374207,0 Years and 9 Months,Yes,367.5535756,,Low_spent_Medium_value_payments,,0,-0.3032,1.1239,0.9446,0.0089,-1.8781 +0x17011,CUS_0x5b6f,August,21,054-49-7239,Mechanic,32061.94,2373.828333,4,3,6,0,,,6,-2.44,3,Good,1443.42,32.80878739,21 Years and 6 Months,No,0,141.5084828,!@9#%8,375.8743505,0,-1.2185,0.5912,1.6664,-0.1106,-0.1355 +0x1701d,CUS_0x67a3,August,32,#F%$D@*&8,Engineer,60330.12,,6,5,26,3,"Not Specified, Auto Loan, and Home Equity Loan",24.30054619,15.2278415,8.97,14,_,2899.821532,37.07684201,18 Years and 11 Months,Yes,98.34791686,,Low_spent_Small_value_payments,193.4457614,0,-0.4087,-0.399,0.7732,-0.7864,1.4206 +0x17029,CUS_0x14ca,August,29,348-82-9499,Teacher,122028.48,,2,7,8,3,"Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,12.42737169,10.35,9,Good,58.85858469,35.70741541,25 Years and 10 Months,No,290.5185372,79.7724499,High_spent_Large_value_payments,859.6130129,0,0.0475,-1.8506,-0.4359,1.4597,1.3871 +0x17035,CUS_0x9a3c,August,25,156-41-3008,Musician,140770.16,,8,6,11.28836175,0,,3.786121319,6,9.83,4,Standard,1375.36,38.30821949,25 Years and 3 Months,Yes,0,838.1447123,High_spent_Medium_value_payments,994.2774154,0,0.5554,-0.1562,-1.1695,0.0608,0.1388 +0x17041,CUS_0xa5b4,August,55,374-96-8477,Scientist,22425.52,,3,5,12,2,"Payday Loan, and Credit-Builder Loan",0,3,2.93,3,_,923.4771644,25.36738219,27 Years and 10 Months,No,19.36062186,62.82515417,Low_spent_Large_value_payments,396.591696,0,-1.0854,1.491,0.1936,-1.3889,0.9775 +0x1704d,CUS_0x44e9,August,34,482-45-6373,Architect,19656.96,,8,6,33.06745738,9,"Payday Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Student Loan, Student Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",46.64176735,22.2985824,7.88,13,Bad,3090.438558,27.71892812,3 Years and 8 Months,Yes,108.029029,31.91223028,High_spent_Small_value_payments,227.2464528,0,0.3445,-0.9635,-0.6814,-0.434,0.762 +0x17059,CUS_0x66dd,August,19,502-46-7904,Lawyer,52116.66,4364.055,7,7,17,4,"Payday Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",15.88396957,11.67337639,17.7,5,Standard,2322.123545,24.36633738,19 Years and 11 Months,Yes,114.9962102,274.134615,Low_spent_Small_value_payments,337.2746748,0,0.8879,1.7967,1.5917,-0.1189,0.2766 +0x17065,CUS_0x993d,August,47,683-66-7720,Doctor,89057.64,7318.47,5,3,10,2,"Mortgage Loan, and Credit-Builder Loan",28.53544271,23,6.32,3,Standard,600.66,28.07516943,33 Years and 6 Months,No,75.72074705,,High_spent_Large_value_payments,725.3539034,0,2.199,2.6668,-1.5026,1.1277,0.6808 +0x17071,CUS_0xc351,August,24,820-13-9455,Doctor,17366.08,,6,6,14,1,Credit-Builder Loan,,12,15.53,4,_,133.38,36.41099172,19 Years and 4 Months,Yes,12.97454932,86.31646756,High_spent_Small_value_payments,297.2263165,0,-0.7825,1.8577,-0.5439,2.6138,0.7994 +0x1707d,CUS_0x8033,August,26,425-36-6919,Manager,13461.25,1276.770833,7,3,12.06745738,3,"Home Equity Loan, Home Equity Loan, and Student Loan",,,6.16,3,Standard,1584.470954,41.00776506,19 Years and 6 Months,No,20.46242131,,!@9#%8,260.1646534,0,0.1936,-0.9143,-1.3507,-0.1334,0.7295 +0x17089,CUS_0x434d,August,80,169-79-3010,Musician,24675.86,,4,4,9,1,Auto Loan,,9,12.08,4,Good,370.2,38.19024667,29 Years and 3 Months,No,12.43680413,136.4739432,Low_spent_Large_value_payments,333.7214193,0,-0.0581,0.7732,0.2567,0.4195,-1.5677 +0x17095,CUS_0x709b,August,44,211-23-4647,Manager,19418.475,,2,4,11,0,,,0,1.61,4,Good,789.0935553,38.88003097,26 Years and 3 Months,No,0,143.4620797,!@9#%8,287.9175433,0,0.986,0.727,0.1518,0.3756,-0.3028 +0x170a1,CUS_0x48fd,August,22,030-92-1952,Scientist,15991.02,,8,10,28.88954781,8,"Student Loan, Not Specified, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Personal Loan",,21.62640579,28.79,8,Bad,5199.921061,39.49577018,9 Years and 4 Months,Yes,1382.486514,108.305569,Low_spent_Medium_value_payments,232.4363357,0,-1.4292,-0.0745,0.3205,-0.6229,-0.1399 +0x170ad,CUS_0xaf16,August,80,232-28-0722,Media_Manager,30477.2,,8,6,25.06745738,7,"Credit-Builder Loan, Home Equity Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",41.94666399,26.92409273,3.57,12,_,4543.447498,32.51477136,1 Years and 6 Months,Yes,101.6072631,53.78774144,High_spent_Small_value_payments,318.0613742,0,1.767,0.847,-0.5536,-0.5428,1.9759 +0x170b9,CUS_0x3490,August,47,148-97-6437,Journalist,22159.95,1739.6625,8,6,15,0,,20.8793748,17,11.29,7,Standard,271.3,30.83465341,21 Years and 8 Months,Yes,0,44.21358506,High_spent_Large_value_payments,369.7526649,0,0.7184,-1.4179,0.1434,0.8921,0.829 +0x170c5,CUS_0x676c,August,52,440-26-1344,Mechanic,72740.96,6307.746667,5,4,16,4,"Debt Consolidation Loan, Auto Loan, Not Specified, and Home Equity Loan",,20,13.01,3,_,724.81,39.6201408,19 Years and 6 Months,Yes,152.7398937,56.85781019,High_spent_Large_value_payments,661.1769628,0,-0.1735,-0.5929,-0.5218,-0.171,-1.4054 +0x170d1,CUS_0xb11e,August,22,376-26-9388,Writer,47686.05,,7,3,19,7,"Not Specified, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,11,13.2,5,Standard,1176.39,31.01558203,15 Years and 2 Months,Yes,263.0192075,102.0069025,High_spent_Large_value_payments,271.3576399,0,-0.5067,-0.3352,-0.4902,0.947,-0.4505 +0x170dd,CUS_0x8f9a,August,22,998-62-0255,Doctor,95529.28,8151.773333,8,6,11.28836175,6,"Debt Consolidation Loan, Not Specified, Payday Loan, Auto Loan, Personal Loan, and Home Equity Loan",,19,15.4,5,Standard,283.39,24.57570389,16 Years and 9 Months,Yes,330.8571098,907.5373699,High_spent_Small_value_payments,256.7203146,0,-0.5878,-0.7384,0.5371,-0.6739,-0.1642 +0x170e9,CUS_0x477c,August,37,#F%$D@*&8,Teacher,38955.5,3544.291667,6,5,31.06745738,6,"Student Loan, Student Loan, Auto Loan, Payday Loan, Payday Loan, and Personal Loan",,24.99609338,24.72,9,Bad,5339.203821,26.78361306,9 Years and 6 Months,NM,163.7659657,,High_spent_Medium_value_payments,313.0293584,0,-0.3439,-0.0571,0.0397,-1.9296,-1.2823 +0x170f5,CUS_0xa1df,August,47,668-93-9080,_______,135049.84,11162.15333,3,5,11,0,,6.280180328,6,8.07,2,Good,850.02,30.33673843,32 Years and 3 Months,No,0,560.0626416,Low_spent_Small_value_payments,846.1526918,0,-0.541,-0.9621,1.5327,-1.6579,-0.7708 +0x17101,CUS_0x4d4,August,44,577-14-5786,_______,38899.92,3459.66,3,2,1,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Not Specified",6.450423027,6,1.54,4,Good,1311.0232,30.60162294,25 Years and 9 Months,No,104.0491108,146.5601644,!@9#%8,389.5525859,0,1.5709,0.736,-0.3668,0.8235,0.3244 +0x1710d,CUS_0x7b40,August,46,575-33-3200,Doctor,46390.56,3851.88,10,5,22,5,"Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",,19.19825375,29.72,10,Bad,4121.516589,37.86399734,5 Years and 6 Months,NM,102.012922,32.55013347,!@9#%8,490.6249445,0,-0.7863,0.4508,-1.7572,-0.2023,-0.7102 +0x17119,CUS_0x885f,August,29,821-71-4483,Entrepreneur,8006694,,8,9,27,4,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,18,14.25,7,Bad,2399.88,29.91549391,18 Years and 2 Months,Yes,22.55559592,20.23987704,Low_spent_Small_value_payments,285.1648187,0,-2.1034,0.7998,1.3218,0.803,0.3711 +0x17125,CUS_0x230c,August,20,185-59-9590,Scientist,75857.6,6596.466667,6,5,32.06745738,9,"Not Specified, Mortgage Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",,27.46953297,3.24,11,Bad,5432.229161,27.38881184,3 Years and 11 Months,Yes,485.2370234,,High_spent_Large_value_payments,222.7900105,0,0.4867,0.8862,0.8418,-0.4663,1.168 +0x17131,CUS_0x55b,August,56,249-17-6357,Developer,35532.88,,8,6,11,2,"Debt Consolidation Loan, and Personal Loan",19.46016245,15,9.21,1,_,397.0918146,23.77011165,23 Years and 5 Months,No,31.82129944,285.7721349,!@9#%8,281.8869338,0,1.2611,-1.4341,0.9205,-0.4528,-0.0288 +0x1713d,CUS_0x61a5,August,40,590-89-8290,Media_Manager,116184.44,,5,7,5,1,Payday Loan,18.43508473,,11.88,2,Good,879.8784564,41.6450298,15 Years and 9 Months,No,91.25049223,96.70370951,High_spent_Large_value_payments,997.4494649,0,-0.6196,-0.3503,0.0998,-0.7822,0.0845 +0x17149,CUS_0x55ed,August,34,369-30-5610,Accountant,10702.83,1108.9025,3,5,3110,6,"Personal Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Student Loan",18.22832577,11.62400633,17.58,7,Standard,159.275523,31.67247451,14 Years and 2 Months,Yes,52.08856228,57.63041225,!@9#%8,281.1712755,0,0.3282,0.8588,0.3944,0.1828,-0.2397 +0x17155,CUS_0x5fec,August,41,983-11-2831,Media_Manager,97351.8,7912.65,3,5,10.28836175,0,Mortgage Loan,,,8.72,2,Standard,1055.95,28.43264099,33 Years and 0 Months,Yes,44.96413672,554.742534,!@9#%8,851.4957903,0,0.2596,0.5264,-1.7021,-0.2289,1.8611 +0x17161,CUS_0x242b,August,25,019-61-1691,Architect,41754.92,3679.576667,6,9,23,5,"Personal Loan, Debt Consolidation Loan, Not Specified, Not Specified, and Debt Consolidation Loan",30.7604123,16.87138521,2.46,7,Bad,1644.932231,38.59823586,12 Years and 10 Months,Yes,131.1994693,112.7604033,High_spent_Medium_value_payments,373.9977941,0,0.4366,1.0175,0.237,0.0019,-1.3481 +0x1716d,CUS_0x4086,August,40,408-77-8665,Scientist,71746.68,6107.89,3,3,10,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",,18,17.25,7,Standard,2052.59,38.8852125,5 Years and 10 Months,Yes,107.9616648,76.13049585,High_spent_Medium_value_payments,676.6968393,0,0.4076,0.6503,1.0617,1.3035,-0.604 +0x17179,CUS_0x479c,August,48,504-35-2463,Developer,101671.76,8340.646667,8,5,11,4,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",23.69775285,18,-0.79,5,Standard,673.24,33.06282679,19 Years and 8 Months,No,245.3207554,,Low_spent_Medium_value_payments,469.2336482,0,0.0683,-1.323,-0.2829,-0.2692,0.2766 +0x17185,CUS_0x9bfa,August,31,531-98-7848,Scientist,73937.62,5980.468333,2,6,4,4,"Not Specified, Auto Loan, Home Equity Loan, and Personal Loan",,5,7.54,8,Good,1349.16,33.26361633,,No,213.4289409,113.0464227,High_spent_Medium_value_payments,521.5714698,0,1.1388,-1.497,0.4186,0.1181,-1.1754 +0x17191,CUS_0x903e,August,35,624-03-3270,Writer,57107.44,4629.953333,8,7,9,4,"Personal Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",13.92010567,13,10.42,10,Standard,2112.32,38.54251028,8 Years and 10 Months,Yes,175.4294223,578.989752,Low_spent_Small_value_payments,,0,-0.3361,0.1072,0.2181,1.9129,1.6703 +0x1719d,CUS_0x3009,August,32,273-42-1646,Mechanic,7326.605,,10,9,29,4,"Payday Loan, Home Equity Loan, Payday Loan, and Student Loan",,22.58879422,14.38,12,_,2911.342217,28.06940159,6 Years and 6 Months,Yes,15.8194338,49.95966678,Low_spent_Small_value_payments,298.1759411,0,1.1821,0.5706,-1.1229,0.8234,0.5166 +0x171a9,CUS_0x562b,August,56,231-01-4015,Architect,32073.31,2533.775833,5,5,9,2,"Payday Loan, and Payday Loan",11.46033879,8,14.12,2,_,1194.93,30.00334263,22 Years and 11 Months,Yes,34.3950289,141.6073206,Low_spent_Medium_value_payments,357.3752338,0,-0.6738,-0.0254,0.6801,0.051,0.547 +0x171b5,CUS_0xb4cb,August,55,825-59-5740,Scientist,16620.755,,3,3,4.288361749,2,"Mortgage Loan, and Mortgage Loan",9.408588383,11,6.91,5,Good,9.55,23.60883242,21 Years and 0 Months,No,32711,509.2988786,Low_spent_Large_value_payments,306.7591028,0,0.0216,-0.0902,0.9783,0.2379,-0.0614 +0x171c1,CUS_0x880d,August,33,439-57-0904,Doctor,50109.76,4354.813333,6,3,4,1,Personal Loan,25.2079877,19,9.66,,Good,893.62,30.56461276,16 Years and 6 Months,No,22.84743796,50.22034323,High_spent_Medium_value_payments,612.4135521,0,-0.3841,0.6186,0.3034,-1.0106,0.9324 +0x171cd,CUS_0xbb48,August,55,#F%$D@*&8,Lawyer,87078.93,7554.5775,6,6,16,1,Student Loan,18.05638243,14,9.94,3,Standard,635.84,30.14264685,23 Years and 3 Months,Yes,39.06252886,151.1327976,High_spent_Medium_value_payments,815.2624236,0,0.4583,-0.7654,1.2043,-0.1897,0.2023 +0x171d9,CUS_0x691c,August,44,387-54-0443,Engineer,38666.02,3070.168333,3,6,6,1,Not Specified,23.10660817,17,3.59,3,_,1216,24.99033199,31 Years and 6 Months,No,23.63666285,,Low_spent_Small_value_payments,253.3567654,0,-0.2192,0.7429,0.3376,0.6997,0.9069 +0x171e5,CUS_0x917b,August,43,448-74-9798,Engineer,17086.73,,8,5,25,3,"Credit-Builder Loan, Credit-Builder Loan, and Student Loan",10.22736019,9.46658592,17.67,6,Standard,2753.225695,30.34000194,11 Years and 3 Months,Yes,30.47395446,62.02239818,Low_spent_Large_value_payments,293.293064,0,0.2043,-0.1742,0.1441,-0.2638,-1.803 +0x171f1,CUS_0x2e16,August,28,293-57-4895,Journalist,17810.5,,5,7,8,1,Student Loan,16.95864576,16,8.23,9,_,1065.55611,28.75308316,32 Years and 11 Months,No,14.20584915,40.85418101,Low_spent_Medium_value_payments,351.0083181,0,2.4439,-0.1074,0.4958,1.1372,-2.3228 +0x171fd,CUS_0x569a,August,32,182-85-5872,Doctor,33775.16,2800.004795,10,10,29.95700519,6,"Mortgage Loan, Auto Loan, Mortgage Loan, Personal Loan, Home Equity Loan, and Student Loan",,21,17.01,8,_,2841.620954,28.00588825,11 Years and 10 Months,Yes,1644.175455,195.5964458,Low_spent_Large_value_payments,204.3292685,0,0.0028,1.5009,-0.2102,-2.294,1.5787 +0x17209,CUS_0xa8e6,August,31,#F%$D@*&8,Engineer,28562.06,2610.171667,9,5,33.06745738,9,"Credit-Builder Loan, Home Equity Loan, Not Specified, Auto Loan, Student Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Credit-Builder Loan",,16,21.99,13,Bad,3847.380954,24.94840058,10 Years and 2 Months,Yes,200.7056498,,Low_spent_Small_value_payments,179.2406025,0,0.944,0.379,0.9229,1.9467,0.5492 +0x17215,CUS_0x7b23,August,51,534-07-1682,Accountant,36850.65,3266.8875,6,3,19,3,"Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",15.14296806,14,10.77,0,Standard,420.06,28.24328905,26 Years and 2 Months,Yes,52.51752166,,!@9#%8,412.9864339,0,1.0174,-0.2213,0.8498,-0.3802,1.5552 +0x17221,CUS_0xb551,August,20,608-17-2739,Architect,18120.72,,6,4,18,3,"Payday Loan, Payday Loan, and Auto Loan",10.46104882,10,17.3,9,Standard,2434.15,38.12265552,14 Years and 2 Months,Yes,29.48997522,91.3405971,Low_spent_Small_value_payments,301.3754277,0,-0.0007,-0.9489,0.7084,0.4755,0.5942 +0x1722d,CUS_0xab35,August,22,927-09-5332,Engineer,89291.91,,5,7,7,0,,26.46445228,17,16.22,3,Standard,1166.88,38.62557807,27 Years and 4 Months,Yes,0,107.2891876,High_spent_Medium_value_payments,916.8100624,0,-0.2251,-1.3815,0.1162,-0.1861,-1.9899 +0x17239,CUS_0x3ec1,August,41,969-31-8219,Musician,70154.85,5081.452604,330,5,18,2,"Auto Loan, and Personal Loan",19.48789097,,19.23,0,_,450.8345737,29.7816509,21 Years and 3 Months,Yes,707.673166,428.8835553,Low_spent_Small_value_payments,383.3323032,0,-0.1174,-0.7451,-1.5574,1.5017,0.2047 +0x17245,CUS_0x4a24,August,44,318-38-8603,Engineer,15835.495,1107.624583,4,4,5,3,"Auto Loan, Home Equity Loan, and Home Equity Loan",,20,5.92,0,Good,14.2916318,26.81773028,,No,30.70756522,43.12451226,Low_spent_Medium_value_payments,321.9923387,0,-1.1223,-1.2249,0.2564,-1.2282,-0.2703 +0x17251,CUS_0x73aa,August,48,930-70-0066,Teacher,35917.16,,7,5,7,1,Home Equity Loan,9.758492422,8,0.81,3,_,1271.82,25.87908037,24 Years and 0 Months,NM,23.00811989,10000,High_spent_Small_value_payments,479.8861151,0,-0.0312,-0.5864,0.5057,1.0836,-0.4087 +0x1725d,CUS_0x2127,August,56,604-70-4065,Engineer,143239.84,12020.65333,0,1,7.288361749,2,"Personal Loan, and Student Loan",15.26456201,,11.45,1,Good,1029.320108,27.47270167,32 Years and 10 Months,NM,213.2877494,,High_spent_Medium_value_payments,1095.528475,0,1.0159,-0.1731,0.8952,0.3448,0.1772 +0x17269,CUS_0x3e76,August,56,815-17-8622,Engineer,88363.86,,3,3,11,2,"Auto Loan, and Not Specified",0,1,7.88,8,Good,1405.42,37.32831074,29 Years and 3 Months,No,127.4805283,161.2496003,High_spent_Medium_value_payments,673.6353714,0,-0.1392,1.3226,-1.5264,-1.0047,-1.1157 +0x17275,CUS_0x9c14,August,38,339-76-2171,Journalist,28771.76,,7,7,31,8,"Personal Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Personal Loan, and Personal Loan",18.09624769,13,25.37,6,Bad,4044.13,33.77191032,2 Years and 2 Months,Yes,106.7061223,10000,!@9#%8,102.4970402,0,1.842,-1.3893,-0.4136,-0.0069,-0.5275 +0x17281,CUS_0x5292,August,47,013-67-5026,Accountant,88245.74,,1,5,5,1,Payday Loan,8.127519062,9,8.89,3,_,1328.615968,28.29835303,30 Years and 10 Months,No,52.44152846,138.6085363,High_spent_Large_value_payments,804.0731358,0,0.968,-0.683,-2.7217,-1.0307,1.3162 +0x1728d,CUS_0x9884,August,40,135-78-6636,Manager,56313.96,,4,5,8,2,"Mortgage Loan, and Debt Consolidation Loan",8.501803644,9,7.88,1,Good,1333.22,34.32814697,28 Years and 0 Months,No,75.00221722,46.48691604,High_spent_Large_value_payments,604.5938667,0,-1.394,-0.3609,-1.526,0.1219,0.7591 +0x17299,CUS_0x9e09,August,24,298-70-8875,Lawyer,31707.73,,8,7,7,100,"Payday Loan, and Personal Loan",,19,12.51,8,Standard,526.48,33.35478002,20 Years and 6 Months,Yes,28.61210084,171.9457003,Low_spent_Large_value_payments,308.0732822,0,-0.8205,1.0983,-0.5258,0.0514,1.5484 +0x172a5,CUS_0x35cb,August,42,287-13-3802,Teacher,78658.16,6390.846667,5,3,2.288361749,0,Credit-Builder Loan,6.929230547,8,6.86,1,Good,178.0909778,23.24638357,16 Years and 9 Months,No,38.9117822,655.0257073,High_spent_Medium_value_payments,641.0564838,0,2.1037,0.7477,-1.7957,-0.008,-0.4821 +0x172b1,CUS_0x3ad2,August,34,331-26-9664,Engineer,112812.24,9417.02,0,5,1.288361749,0,,14.67812723,,1.19,4,Good,567.3545515,26.67408376,29 Years and 8 Months,No,0,748.2313434,High_spent_Small_value_payments,873.4081176,0,-1.6193,0.5183,1.8495,-0.4942,0.1053 +0x172bd,CUS_0xb13d,August,24,#F%$D@*&8,Scientist,73300.88,6140.406667,7,7,377,2,"Debt Consolidation Loan, and Not Specified",,19,2.59,4,Standard,355.75,26.38907865,31 Years and 0 Months,No,110.5094368,476.6626063,Low_spent_Medium_value_payments,306.8686235,0,0.7257,0.4647,1.0777,1.3352,-0.0494 +0x172c9,CUS_0x88e2,August,32,077-04-5427,Engineer,17434.78,,8,6,33.06745738,7,"Student Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",,21.47762442,21.56,,Bad,3274.415573,34.69200827,14 Years and 6 Months,Yes,73.31214663,79.67488651,Low_spent_Medium_value_payments,221.7825122,0,-0.3948,0.3481,1.7623,1.3498,-0.6894 +0x172d5,CUS_0x8521,August,26,#F%$D@*&8,Engineer,115736.92,,8,3,8,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",,11,19.16,7,_,259.5844871,32.30799623,24 Years and 10 Months,Yes,255.7475648,467.0732552,Low_spent_Medium_value_payments,567.885011,0,1.405,0.9661,-0.6004,-1.5682,0.4068 +0x172e1,CUS_0x7cb5,August,42,200-55-8206,Manager,30984.66,,7,6,18,0,,,18.26727658,6,7,Standard,519.8883936,29.09926394,26 Years and 10 Months,No,0,34.58085586,!@9#%8,460.1246441,0,-0.0286,0.2804,0.0125,1.3408,1.3982 +0x172ed,CUS_0x88c3,August,39,086-50-0935,Lawyer,67791.98,,3,3,5,4,"Personal Loan, Payday Loan, Not Specified, and Credit-Builder Loan",16.20241302,11,11.29,1,Standard,842.3718732,28.14533783,21 Years and 9 Months,No,196.0844313,253.264713,Low_spent_Medium_value_payments,404.6126602,0,-0.9518,-0.055,1.5573,1.4833,-0.4613 +0x172f9,CUS_0x8081,August,32,171-65-5297,Manager,50253,,3,4,18,1,Mortgage Loan,29.25994308,22.1471607,12.84,0,Standard,1111.057774,36.38244118,,Yes,27.96542834,507.1587552,Low_spent_Small_value_payments,190.5508165,0,1.785,-1.1582,0.3454,-0.6255,1.0788 +0x17305,CUS_0x9501,August,34,296-51-4061,Doctor,32753.05,2833.420833,2,7,6,100,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",0.826463909,5,3.55,3,Good,1300.3,38.45244894,30 Years and 6 Months,No,79.18277054,82.92670023,Low_spent_Large_value_payments,391.2326126,0,0.6957,0.0116,0.1895,0.4277,1.0007 +0x17311,CUS_0x8e70,August,25,991-60-0129,Media_Manager,16618.17,,6,9,17,2,"Student Loan, and Student Loan",,21.07695239,9.95,11,_,1683.610294,25.84794456,20 Years and 3 Months,Yes,21.09710051,53.53274282,Low_spent_Medium_value_payments,368.2549067,0,-0.366,-0.9897,0.1289,-0.2697,-1.0864 +0x1731d,CUS_0x37cc,August,43,195-01-3449,Entrepreneur,99664.98,8482.415,5,4,9,1,Auto Loan,19.90360361,15,7.19,6,Good,624.6045993,32.75975602,30 Years and 4 Months,No,71.67330374,215.1579455,High_spent_Large_value_payments,825.5801437,0,-0.8861,-0.8413,0.1482,0.492,-0.7872 +0x17329,CUS_0x40f2,August,39,527-74-9429,Mechanic,18322.56,1796.88,1277,5,30.06745738,9,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,22.90409719,24.26,9,Bad,5561.974671,27.32653276,,Yes,84.03643966,31.89480051,High_spent_Large_value_payments,277.0364719,0,0.7215,-0.4833,0.3671,-0.9312,-1.188 +0x17335,CUS_0x506d,August,47,707-39-5108,Media_Manager,14707.375,,3,1,2,0,,0,0,9.13,6,Good,516.4,28.38306664,16 Years and 4 Months,No,0,82.41954023,Low_spent_Medium_value_payments,317.4419181,0,0.148,0.4284,0.0316,0.028,0.1939 +0x17341,CUS_0x8034,August,45,#F%$D@*&8,Engineer,60226.16,5127.846667,4,4,5,0,,10.70332382,12,2.76,3,Good,873.05,30.7941718,20 Years and 9 Months,No,0,88.70795518,High_spent_Large_value_payments,664.0767115,0,1.0382,-1.7688,1.0969,0.3603,-0.7624 +0x1734d,CUS_0x6cf5,August,46,081-05-3191,Manager,72604.48,,5,4,11,3,"Credit-Builder Loan, Not Specified, and Not Specified",22.60889278,17,19.9,7,Standard,1469.47,36.23508179,15 Years and 4 Months,Yes,172.0958992,161.8779158,High_spent_Medium_value_payments,511.1635183,0,-1.8415,0.6909,-0.1087,-0.1126,1.555 +0x17359,CUS_0x9ed8,August,55,485-62-0659,Writer,21989.265,,5,5,0.288361749,0,,4.716028996,7,9.1,3,Good,128.7,24.09133271,17 Years and 5 Months,No,0,,Low_spent_Small_value_payments,390.7978236,0,-0.5939,0.015,1.131,-0.2049,-0.0649 +0x17365,CUS_0x609c,August,55,297-14-0708,Writer,39244.26,3079.355,3,5,10,4,"Mortgage Loan, Student Loan, Student Loan, and Personal Loan",,5,4.54,9,Good,106.28,35.83709835,31 Years and 5 Months,No,70.28600713,10000,Low_spent_Medium_value_payments,328.1572623,0,-1.3726,0.6012,-0.7029,0.9551,-0.4458 +0x17371,CUS_0x8725,August,50,992-37-2937,Engineer,21905.095,,0,4,5.288361749,0,Student Loan,0.284373788,5,2.73,3,Good,265.5174187,30.2559314,32 Years and 2 Months,No,17.20164104,534.2339734,High_spent_Small_value_payments,320.7951813,0,1.1087,-0.0711,-0.5206,0.5764,-2.4397 +0x1737d,CUS_0x202e,August,25,718-69-3114,Teacher,17337.8,1674.816667,9,5,16,6,"Not Specified, Not Specified, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",32.51315642,18.78875004,4.96,11,Bad,1405.5195,32.30954313,19 Years and 5 Months,Yes,79.63272261,126.2080607,Low_spent_Large_value_payments,231.6408833,0,0.4893,-1.423,1.1539,-0.2644,-0.6847 +0x17389,CUS_0xc007,August,42,713-07-4915,Developer,38643.04,3506.253333,2,3,10,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",,10,7.58,6,_,518.9849192,34.45970395,28 Years and 2 Months,NM,82.85931789,,!@9#%8,143.0402172,0,0.5095,-0.8387,-0.4464,1.8199,0.5012 +0x17395,CUS_0x946d,August,28,446-44-4997,Lawyer,73600.26,,6,7,17,4,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",20.41992998,15.73502829,7.32,6,_,752.0616572,24.5564851,20 Years and 6 Months,No,177.3638262,162.7294103,High_spent_Large_value_payments,538.1422635,0,-2.6822,-1.0944,0.3164,0.6243,0.5395 +0x173a1,CUS_0x6ea4,August,21,594-25-4221,Entrepreneur,28549.94,,6,5,21,6,"Credit-Builder Loan, Student Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, and Student Loan",34.43882252,17,9.64,11,Bad,1374.27,26.9014123,8 Years and 6 Months,Yes,139.0259139,,!@9#%8,122.8588855,0,-0.2328,-0.0211,2.7184,-0.6643,1.0459 +0x173ad,CUS_0x6d94,August,44,832-74-6335,Doctor,9844.975,824.4145833,649,7,19,0,,15.33482107,14,9.75,1,Standard,638.57,27.74466811,32 Years and 5 Months,No,0,38.24884869,Low_spent_Small_value_payments,334.1926096,0,0.906,0.5497,0.3421,-2.0734,-0.8493 +0x173b9,CUS_0xb884,August,45,397-31-7667,Manager,28475.19,2090.9325,5,4,990,4,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",25.37818348,21.55198051,11.96,6,Standard,161.4738978,28.74046268,12 Years and 3 Months,Yes,67.08218314,47.49230743,High_spent_Small_value_payments,354.5187594,0,0.0186,-1.0309,0.8486,0.4759,-0.3509 +0x173c5,CUS_0x22f7,August,42,#F%$D@*&8,Mechanic,10542.045,,7,6,19,4,"Not Specified, Home Equity Loan, Debt Consolidation Loan, and Home Equity Loan",8.185088668,10,1.54,0,Standard,528.87,26.89474439,,No,25.94871238,39.00448084,High_spent_Medium_value_payments,293.2971818,0,-0.1647,0.0877,1.4359,0.1135,0.1413 +0x173d1,CUS_0x277a,August,24,697-92-4285,Engineer,18796.03,,6,8,31.88954781,7,"Mortgage Loan, Not Specified, Student Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Student Loan",,21.17462263,28.03,10,Bad,3358.030079,35.44480787,5 Years and 5 Months,Yes,1392.461866,176.5399061,Low_spent_Small_value_payments,201.7017296,0,0.0846,0.868,-0.887,-0.1668,-0.2661 +0x173dd,CUS_0x9c98,August,35,575-65-4411,Journalist,43960.19,3664.349167,4,6,2,2,"Credit-Builder Loan, and Personal Loan",0,1,9.99,3,Good,1009.92,36.80995657,30 Years and 9 Months,No,49.66141112,44.4793548,High_spent_Medium_value_payments,522.2941507,0,0.5167,0.2954,1.8333,2.1855,1.691 +0x173e9,CUS_0x8cf6,August,30,762-91-1556,Manager,31788.05,2792.004167,2,4,5,0,,8.533655621,10,0.76,4,Good,1418.23,25.60987321,31 Years and 0 Months,No,0,,Low_spent_Small_value_payments,219.5273049,0,1.2889,-0.5894,1.0414,-0.3691,-3.2138 +0x173f5,CUS_0x13ef,August,52,767-08-2746,Media_Manager,18666.56,,3,4,11,4,"Student Loan, Student Loan, Payday Loan, and Credit-Builder Loan",,5,8.67,2,_,770.81,35.32393228,32 Years and 3 Months,No,58.88604405,,Low_spent_Small_value_payments,257.379879,0,-1.0055,0.4507,-1.1905,-0.3037,0.7186 +0x17401,CUS_0xc726,August,80,080-31-4274,Journalist,44986.31,3663.926315,2,6,5,3,"Payday Loan, Credit-Builder Loan, and Student Loan",,14,10.77,,Good,1253.788937,27.07712598,16 Years and 2 Months,No,333.5753639,109.2890132,High_spent_Medium_value_payments,476.4137385,0,-1.0612,-0.5219,-1.8535,-2.0371,-0.8307 +0x1740d,CUS_0xa4bd,August,28,148-92-3005,Media_Manager,16691.32,1201.145719,5,5,7,7,"Not Specified, Home Equity Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,8,7.66,6,Standard,1532.3,38.0577755,11 Years and 8 Months,Yes,160.0223197,,High_spent_Small_value_payments,235.8120376,0,-2.0633,-1.191,-0.2894,-0.5613,-0.1383 +0x17419,CUS_0xc71f,August,27,746-31-3141,Journalist,19768015,5359.811667,4,8,7,1,Personal Loan,,16.07269816,17.67,9,_,1275.339781,38.91759599,6 Years and 8 Months,Yes,50.17057737,108.0583374,High_spent_Medium_value_payments,627.7522519,0,1.623,-0.1158,-0.2787,-0.3315,0.3115 +0x17425,CUS_0x7189,August,20,889-45-9570,Media_Manager,62096.31,5151.6925,3,7,17,4,"Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",22.07154588,15,9.58,4,_,2364.63,24.59571025,10 Years and 8 Months,NM,132.1749133,485.5201566,!@9#%8,187.4741801,0,0.9526,-1.0595,1.1422,0.1701,-0.6474 +0x17431,CUS_0x4811,August,32,373-42-2979,Entrepreneur,60856.6,5282.383333,3,6,9,3,"Payday Loan, Student Loan, and Student Loan",16.30958678,,-2.12,6,Good,1159.43,38.11126573,16 Years and 2 Months,No,124.391296,,High_spent_Large_value_payments,598.3880184,0,0.7523,0.5017,-0.2866,-1.1258,-0.9976 +0x1743d,CUS_0xb912,August,32,297-60-0692,_______,12524.625,,5,3,13,0,,7.576533484,9,14.77,11,_,689.18,29.76275029,5 Years and 11 Months,Yes,0,36.98403572,Low_spent_Medium_value_payments,332.7878393,0,-0.3721,-0.2193,0.2709,0.4211,-0.0499 +0x17449,CUS_0x2825,August,22,521-56-0765,Journalist,21467.56,,4,5,19,0,,26.13468645,19,17.5,5,_,730.35,23.67292903,30 Years and 8 Months,Yes,52264,45.98202062,High_spent_Small_value_payments,406.4143127,0,0.2281,-1.0749,-0.135,1.3154,0.6835 +0x17455,CUS_0xb44d,August,32,278-86-9047,Lawyer,74394.2,6393.516667,9,5,24,5,"Payday Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Personal Loan",32.14287858,19.2167407,23.6,16,Bad,3295.683422,34.75189654,3 Years and 11 Months,NM,270.5891143,193.5105785,Low_spent_Medium_value_payments,455.2519739,0,-0.0881,-0.7669,0.8596,0.4396,-0.3913 +0x17461,CUS_0x9e1a,August,58,513-95-7632,Teacher,16792.325,1292.360417,1,4,4.288361749,2,"Mortgage Loan, Credit-Builder Loan, and Not Specified",0,0,3.33,5,Good,145.0495042,37.48020937,28 Years and 3 Months,No,29.14796236,465.0838848,High_spent_Medium_value_payments,310.371254,0,-1.3871,0.6549,-0.5314,-0.9616,-1.0994 +0x1746d,CUS_0xe3f,August,18,803-04-3619,Engineer,109370.55,,4,6,4.288361749,0,Home Equity Loan,,12,14.43,5,Standard,1272.357342,41.99072613,16 Years and 4 Months,Yes,86.8235855,650.8783907,High_spent_Medium_value_payments,863.1006967,0,0.8904,-0.0912,0.8148,-0.9141,-0.5008 +0x17479,CUS_0x7a39,August,40,649-32-8060,Accountant,57813.39,,4,4,5,5,"Credit-Builder Loan, Personal Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",13.87525181,10.71200403,12.96,10,Standard,327.9052495,33.2808735,12 Years and 4 Months,Yes,216.7954241,613.8777846,Low_spent_Small_value_payments,,0,1.2286,0.7405,-0.1096,-1.6431,0.9704 +0x17485,CUS_0x20b5,August,35,153-31-3249,Teacher,44871.86,3325.063353,3,3,6.288361749,2,"Credit-Builder Loan, and Mortgage Loan",9.376399415,9,7.66,4,Good,43.63429188,28.48354659,20 Years and 5 Months,NM,375.7232519,471.3214892,High_spent_Medium_value_payments,513.8131586,0,0.3955,-1.0562,-0.1699,-1.9244,0.3968 +0x17491,CUS_0xe10,August,28,583-35-0246,Teacher,81126.78,6885.565,0,3,1,2,"Auto Loan, and Personal Loan",5.285614352,7,6.22,5,Good,284.2534158,33.89305599,29 Years and 8 Months,No,127.9998195,,!@9#%8,628.7482846,0,-0.204,0.4576,-0.2921,0.7491,-0.6496 +0x1749d,CUS_0x1f49,August,32,625-16-2020,Doctor,85770.42,,4,6,3,2,"Personal Loan, and Student Loan",8.094151272,9,7.15,2,Good,228.4697321,33.15525015,17 Years and 3 Months,No,75.05142237,409.3839287,!@9#%8,554.6924656,0,-0.0724,0.82,-1.115,-0.1515,-0.5793 +0x174a9,CUS_0x5c90,August,25,112-81-3185,Doctor,125898.32,,6,6,5.288361749,2,"Credit-Builder Loan, and Not Specified",,18,16,11,Standard,663.7879816,36.290032,16 Years and 8 Months,Yes,139.8268794,889.4721837,High_spent_Medium_value_payments,751.5370905,0,0.198,-0.3855,-0.6897,-0.4899,1.0755 +0x174b5,CUS_0x3182,August,35,737-63-3468,Accountant,132082.17,11174.8475,3,4,11.28836175,2,"Auto Loan, Home Equity Loan, and Not Specified",,10,3.59,7,Good,1191.15,26.7124994,19 Years and 0 Months,No,207.0562942,622.8767514,High_spent_Medium_value_payments,957.4891654,0,0.32,0.1238,0.3496,1.3651,-1.1299 +0x174c1,CUS_0xa2dd,August,28,603-21-2338,Manager,23956.27,,3,7,12,1320,"Debt Consolidation Loan, Payday Loan, and Student Loan",21.26911369,18.39545271,10.52,11,Standard,1004.547965,34.62266656,14 Years and 8 Months,Yes,46.97565397,117.3502814,Low_spent_Small_value_payments,303.009648,0,0.0769,0.9972,-0.5699,0.6039,0.0214 +0x174cd,CUS_0x9e11,August,44,655-69-5918,Developer,17535.57,,4,6,30.06745738,100,"Student Loan, and Auto Loan",26.89455356,16.84228801,9.55,11,Standard,2936.990489,26.58720208,15 Years and 0 Months,Yes,28.67883683,44.04432686,Low_spent_Medium_value_payments,343.3862984,0,0.5812,0.0475,-0.7153,-0.9163,0.7937 +0x174d9,CUS_0x4691,August,34,545-29-4548,Teacher,53177.82,,9,5,28.06745738,6,"Not Specified, Student Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",30.85061518,15.68022956,1.37,9,Bad,2971.607222,26.24890555,,Yes,243.35393,,High_spent_Large_value_payments,349.9403088,0,1.5462,1.03,0.3385,1.1446,-2.19 +0x174e5,CUS_0xc5f4,August,22,758-80-1683,Teacher,71846.32,5261.688055,8,10,26.88954781,100,"Student Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",26.29627403,17,,12,Standard,1485.6,34.12436488,6 Years and 8 Months,Yes,2069.274065,553.4495474,Low_spent_Medium_value_payments,56.1709178,0,-0.471,-0.9679,0.0284,-0.6204,-0.7783 +0x174f1,CUS_0xb403,August,23,628-68-3928,Musician,33121.69,3009.140833,3,4,1,1,Payday Loan,3.404909201,5,10.51,9,Good,1229.301732,28.25635642,,No,14.48241282,329.4655995,Low_spent_Small_value_payments,295.5241279,0,-1.7968,-0.737,0.5576,0.289,-0.2161 +0x174fd,CUS_0x873f,August,24,575-00-1454,_______,31115.76,2522.98,6,6,12,3,"Payday Loan, Mortgage Loan, and Mortgage Loan",,11,10.12,7,_,955.8,36.67272347,30 Years and 2 Months,No,46.58934409,36.47308718,High_spent_Large_value_payments,409.2355687,0,0.9062,-0.2016,1.4331,-0.5425,1.5597 +0x17509,CUS_0x854c,August,35,412-53-8508,Manager,32434.64,,7,5,33,2,"Payday Loan, and Student Loan",15.94895652,13,11.78,11,Standard,2620.89,25.31139939,10 Years and 2 Months,Yes,52.36291216,,Low_spent_Large_value_payments,306.5447302,0,-0.1533,1.2444,0.9422,1.5773,0.2518 +0x17515,CUS_0x47a,August,53,614-29-3992,Mechanic,43044.01,,5,2,8,0,,,3,9.47,5,Good,1009.246647,26.79735401,31 Years and 3 Months,NM,0,47.17095199,High_spent_Medium_value_payments,575.1498194,0,-0.1179,0.8345,0.9774,2.0933,0.1915 +0x17521,CUS_0xbf11,August,25,749-12-1540,Architect,106525.29,9040.1075,0,6,5.288361749,0,Mortgage Loan,,0,7.13,4,Good,163.7633129,30.7025454,,NM,78.2711578,755.5004018,Low_spent_Medium_value_payments,770.1766514,0,-2.6346,0.9782,-0.9581,-0.4977,1.2798 +0x1752d,CUS_0x9a9,August,36,754-06-1041,Developer,54352.23,4593.3525,10,8,34.95700519,9,"Not Specified, Not Specified, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Auto Loan, and Auto Loan",32.31658571,,25.55,,Bad,4265.310954,35.93004811,4 Years and 9 Months,Yes,1718.824763,,High_spent_Small_value_payments,0.9961996,0,0.7531,0.6338,-0.1535,0.3774,-1.6927 +0x17539,CUS_0x6e0e,August,46,#F%$D@*&8,Architect,38436.68,2965.056667,2,5,5,1,Not Specified,,6,9.6,2,_,22.61,36.7842796,28 Years and 4 Months,No,28.48255057,91.8262415,High_spent_Medium_value_payments,426.1968746,0,-0.0248,0.5856,-1.6429,-0.2675,1.1612 +0x17545,CUS_0xaeb5,August,19,410-69-9783,Musician,17816.75,1623.729167,5,5,8,1171,Auto Loan,22.64280144,15,3.03,5,_,438.66,33.9591695,15 Years and 11 Months,Yes,12.03182073,114.7594281,Low_spent_Small_value_payments,325.5816678,0,-0.5106,-0.4308,0.0041,-0.2191,-0.6893 +0x17551,CUS_0x37e5,August,22,619-98-6329,Manager,67863.92,5832.326667,10,8,15.88954781,7,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",34.44291424,17,19.66,6,Bad,3011.85,30.91792684,10 Years and 2 Months,Yes,1667.272395,128.3590724,High_spent_Large_value_payments,333.2711178,0,-1.4785,1.6582,0.9439,0.8983,-0.1166 +0x1755d,CUS_0x5c60,August,20,009-05-2901,Teacher,19266.77,,6,7,25,2,"Home Equity Loan, and Auto Loan",16.03226516,12,2.45,17,Standard,2397.32,29.77239123,16 Years and 6 Months,Yes,28.88159553,32.98571844,High_spent_Large_value_payments,367.0891027,0,-0.2568,-1.5309,-0.1346,0.4355,-1.9278 +0x17569,CUS_0x8095,August,38,415-90-3271,Musician,34982.69,2851.224167,5,7,18,2,"Credit-Builder Loan, and Debt Consolidation Loan",18.45587259,17,0.98,3,Standard,1496.77,34.67149516,30 Years and 8 Months,No,44.39325122,312.2567689,!@9#%8,218.4723966,0,-0.0943,-0.0279,-0.5035,-1.6842,-0.822 +0x17575,CUS_0x66c4,August,24,904-42-4633,Accountant,34106.58,,8,9,26,5,"Home Equity Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Payday Loan",27.57637446,19,18.12,9,Standard,1672.04,35.17403163,20 Years and 0 Months,Yes,110.8916278,121.4236448,Low_spent_Medium_value_payments,360.3062273,0,-1.2948,-1.5132,-0.2143,-1.1725,1.8999 +0x17581,CUS_0x9760,August,49,626-33-2977,Lawyer,32710.62,,7,3,13.28836175,0,Debt Consolidation Loan,14.61564986,13,18.35,4,Standard,400.3712602,34.10623593,22 Years and 0 Months,Yes,312.6349917,615.3871598,Low_spent_Small_value_payments,379.6986185,0,0.3206,0.4544,0.5197,-1.4145,0.5242 +0x1758d,CUS_0xb43,August,20,487-34-1786,Entrepreneur,17995.83,1304.6525,8,1246,31.95700519,7,"Debt Consolidation Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",41.56193864,25.50247531,16.64,11,Bad,1960.470123,32.51280492,9 Years and 4 Months,Yes,1423.12098,123.1971289,!@9#%8,153.0967716,0,-0.2644,-0.2729,0.1936,0.3447,0.6836 +0x17599,CUS_0xa505,August,42,959-35-8150,Engineer,34899.22,,10,5,16.06745738,3,"Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",20.55836579,11,12.22,11,_,2327.170954,27.69077813,8 Years and 3 Months,Yes,78.96767712,81.90552658,High_spent_Medium_value_payments,338.8333417,0,0.1674,-0.554,-1.6544,0.5405,0.1175 +0x175a5,CUS_0xc06e,August,30,046-72-5387,Journalist,92114.68,7811.223333,3,4,8,1,Home Equity Loan,18.6217338,14,17.87,7,Standard,820.52,26.57758307,21 Years and 4 Months,Yes,54.21966434,549.3526881,Low_spent_Small_value_payments,467.5499809,0,0.5332,-1.0446,0.5132,-0.8031,-1.8212 +0x175b1,CUS_0x57c2,August,47,045-47-7252,Journalist,30789.41,,5,4,4,0,,14.61691699,,5,4,_,473.5927639,26.07303352,32 Years and 0 Months,NM,209.1550736,189.9476305,Low_spent_Small_value_payments,399.3950453,0,-0.1108,0.4018,0.2896,-0.4874,0.7764 +0x175bd,CUS_0x8c88,August,19,034-83-1351,Accountant,57889.44,,10,10,22.88954781,6,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",,30.39506444,7.78,10,Bad,1430.361217,25.86665888,15 Years and 10 Months,Yes,1552.011966,207.1318551,High_spent_Small_value_payments,265.7380977,0,-0.0876,-0.4013,-0.1362,-1.2552,-0.3572 +0x175c9,CUS_0x74e9,August,41,721-70-0465,Lawyer,38842.5,3136.875,5,7,9,4,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",,11,9.33,12,Standard,1662.17,21.66666958,13 Years and 3 Months,Yes,115.0487715,348.4118611,Low_spent_Small_value_payments,140.2268673,0,-1.3842,-1.1948,-1.6717,0.1216,0.5587 +0x175d5,CUS_0x6f4c,August,33,857-09-2361,Developer,48494.55,4155.2125,10,9,25.88954781,8,"Student Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Auto Loan",,24.77726556,2.93,7,Bad,2117.293647,39.20007374,8 Years and 8 Months,Yes,1634.883453,117.0336489,High_spent_Small_value_payments,229.2740665,0,0.2972,-0.9923,-0.0822,-0.556,0.7038 +0x175e1,CUS_0x14d1,August,28,166-12-0556,Journalist,53770.11,4666.8425,8,8,17,5,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Personal Loan, and Student Loan",,20.45433047,18.75,17,Standard,2245.474708,29.00290147,,Yes,204.4701377,136.495534,High_spent_Medium_value_payments,375.7185783,0,1.3531,-1.2003,-0.1441,-0.8142,-0.5046 +0x175ed,CUS_0x76b8,August,27,156-97-2485,Engineer,112030.92,9368.91,1,4,4,2,"Home Equity Loan, and Credit-Builder Loan",,11,9.15,0,Good,1385.67,43.27523415,30 Years and 0 Months,No,151.1582993,63.83911471,High_spent_Large_value_payments,961.893586,0,-0.738,-0.2075,0.1635,1.4704,1.6873 +0x175f9,CUS_0x63a6,August,39,048-51-9455,Entrepreneur,71756.2,5585.201481,0,5,8,100,,10.47097246,11,0.53,5,Good,1048.708875,36.97499694,24 Years and 10 Months,No,673.4818523,145.9021167,High_spent_Large_value_payments,736.3768851,0,-1.2646,-1.2453,-0.8558,0.9241,-0.5594 +0x17605,CUS_0x9eb9,August,39,#F%$D@*&8,Entrepreneur,36140.12,,7,4,17,100,"Not Specified, Student Loan, Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",,21.66235945,16.76,9,_,1652.113586,35.69613577,13 Years and 2 Months,Yes,113.1884139,27.50941577,High_spent_Large_value_payments,416.069837,0,0.75,-0.14,0.5174,-0.1011,0.0608 +0x17611,CUS_0x5ee0,August,45,931-87-9049,Mechanic,65319.32,5616.276667,4,6,9,2,"Home Equity Loan, and Debt Consolidation Loan",18.21398452,16,10.09,11,_,1081.77,40.3842501,14 Years and 3 Months,Yes,65.17352355,175.8686915,High_spent_Small_value_payments,580.5854516,0,0.3045,-0.5272,1.8865,1.7389,1.4572 +0x1761d,CUS_0xc59e,August,25,#F%$D@*&8,Scientist,73584,,6,8,20.95700519,9,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Student Loan, Auto Loan, Student Loan, Student Loan, and Home Equity Loan",,24,27.67,7,Bad,4869.220954,29.25056755,2 Years and 9 Months,Yes,1747.992213,169.9776771,High_spent_Small_value_payments,241.4797403,0,0.4444,0.8908,-0.5406,1.2626,-2.2693 +0x17629,CUS_0x5c68,August,33,112-40-8747,Scientist,44382.88,,7,7,1,0,,19.48750201,18,11.08,3,Good,115.63,38.67878397,22 Years and 8 Months,No,355.0715995,202.7968596,Low_spent_Large_value_payments,440.3604737,0,0.0537,-1.2292,-0.3552,-1.206,-0.3443 +0x17635,CUS_0xa974,August,39,962-46-0528,Doctor,102432.51,7586.673429,8,4,19,1,Not Specified,,10,3.74,2,_,510.8773762,37.95934964,29 Years and 6 Months,No,1245.569803,931.850055,Low_spent_Small_value_payments,266.2995066,0,0.1235,0.0721,1.5517,0.6812,-1.6537 +0x17641,CUS_0x9c85,August,46,680-59-2006,Accountant,110607.09,,4,4,1.288361749,2,"Home Equity Loan, Debt Consolidation Loan, and Auto Loan",5.855003771,9,4.26,6,Good,1174.05,37.78581265,22 Years and 4 Months,No,154.8241362,774.3957161,High_spent_Small_value_payments,650.4433587,0,0.1353,-1.8125,0.8403,-0.1251,-0.0827 +0x1764d,CUS_0x1011,August,44,793-05-8223,Doctor,58918.47,5208.8725,3,3,17,3,"Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",20.64025011,13,14.42,7,Standard,473.14,27.82995908,15 Years and 10 Months,Yes,123.4349388,383.3508446,Low_spent_Medium_value_payments,294.1014666,0,-0.0009,0.9569,0.566,1.5232,-0.6344 +0x17659,CUS_0xb381,August,53,#F%$D@*&8,Architect,100555.86,8133.655,6,6,4.288361749,0,,,7,7.78,2,_,552.69,33.49757897,,No,0,,High_spent_Large_value_payments,961.3387029,0,0.2983,-0.2354,-0.7015,-0.366,0.1058 +0x17665,CUS_0x148b,August,49,947-71-1861,Architect,144342.8,,7,5,11,0,,12.60982478,12,15.52,3,Standard,334.24,34.88980776,15 Years and 9 Months,Yes,0,149.4103601,High_spent_Large_value_payments,1294.646307,0,1.6828,-1.1303,0.7957,-0.5464,0.0398 +0x17671,CUS_0xc067,August,25,095-77-0243,Lawyer,10004.805,984.73375,10,8,26.95700519,9,"Auto Loan, Payday Loan, Not Specified, Auto Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",45.91648239,24.2914176,16.06,11,Bad,5320.32942,41.65051946,8 Years and 5 Months,Yes,1366.664737,106.105038,Low_spent_Small_value_payments,194.6532309,0,0.3383,-0.2013,-1.5798,-0.1773,1.0835 +0x1767d,CUS_0x991d,August,55,669-84-2094,Musician,115105.56,9684.13,4,5,18,4,"Personal Loan, Home Equity Loan, Payday Loan, and Student Loan",,20,8.26,8,Standard,644.287359,36.97387034,18 Years and 2 Months,Yes,289.628748,386.8769945,High_spent_Medium_value_payments,580.4627839,0,1.8358,0.1435,-1.5616,-0.4156,0.9563 +0x17689,CUS_0xbb43,August,26,051-05-4338,Engineer,57539.96,,8,9,30.06745738,8,"Payday Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,27,20.15,7,Bad,4198.210954,36.97395423,2 Years and 10 Months,Yes,365.0067137,142.6472887,High_spent_Small_value_payments,189.3253764,0,0.2746,1.1456,-0.052,0.3297,0.3843 +0x17695,CUS_0xbccf,August,29,712-06-3868,Media_Manager,73317.72,5823.81,10,9,28.88954781,7,"Not Specified, Not Specified, Debt Consolidation Loan, Not Specified, Not Specified, Student Loan, and Mortgage Loan",,18,31.6,6,Bad,3530.13,38.0403121,7 Years and 8 Months,Yes,1551.330141,220.9884516,High_spent_Medium_value_payments,365.7323258,0,0.7611,0.4232,1.146,-0.9018,-0.3787 +0x176a1,CUS_0x40d,August,43,011-33-6276,_______,17908.15,1748.345833,4,4,16,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",14.94403621,,13.86,8,Standard,755.6,28.7728726,10 Years and 0 Months,Yes,61.58979336,235.1444226,!@9#%8,168.1003674,0,-0.856,1.5643,1.5504,0.0157,-1.5124 +0x176ad,CUS_0x3bd2,August,49,#F%$D@*&8,Lawyer,21752116,,0,7,9.288361749,4,"Payday Loan, Payday Loan, Auto Loan, and Auto Loan",3.042734603,6,5.84,7,Good,78.41,35.11268362,18 Years and 5 Months,No,183.2145001,551.0434064,High_spent_Large_value_payments,690.1683046,0,-0.7604,0.4108,0.9834,1.2039,0.5103 +0x176b9,CUS_0x3a6c,August,32,570-18-4382,Journalist,73340.48,5348.098404,7,6,17,6,"Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",31.98996757,22,27.64,12,Bad,2521.62411,33.41320203,3 Years and 3 Months,Yes,794.2086449,,High_spent_Large_value_payments,583.3023229,0,0.1071,-1.7477,-0.947,-0.2691,-0.0872 +0x176c5,CUS_0x3053,August,19,968-36-4250,Writer,14439.78,,5,4,16,3,"Student Loan, Student Loan, and Mortgage Loan",,20,11.85,5,_,455.46,30.35126708,20 Years and 0 Months,Yes,20.1717016,45.88035353,Low_spent_Medium_value_payments,309.8794449,0,-2.1844,0.0964,-0.4992,-0.1599,0.806 +0x176d1,CUS_0x39cf,August,33,614-64-3223,Engineer,38839.22,3272.601667,8,4,5633,3,"Personal Loan, Auto Loan, and Student Loan",,9,1.83,4,Standard,1203.51,26.66684106,,Yes,64.69525018,,High_spent_Small_value_payments,366.8462283,0,0.4867,1.8468,0.9544,0.7851,0.1052 +0x176dd,CUS_0x5c59,August,39,555-77-9205,Architect,19662.27,,2,3,8,100,Auto Loan,,10.14829932,2.58,6,_,969.1943222,27.73668808,25 Years and 2 Months,No,15.6451559,81.28477235,!@9#%8,318.2223218,0,-0.8577,-0.3831,0.243,-2.3558,1.1151 +0x176e9,CUS_0x4f65,August,34,889-20-8307,Entrepreneur,20653.25,1652.104167,3,7,10,4,"Debt Consolidation Loan, Auto Loan, Payday Loan, and Mortgage Loan",,8,7.96,9,Standard,881.25,31.32782236,29 Years and 5 Months,Yes,67.97467383,48.19017372,High_spent_Small_value_payments,309.0455691,0,-0.4278,-0.8298,0.3307,-1.0304,-0.9215 +0x176f5,CUS_0x9017,August,18,932-54-4401,Developer,32061.52,,3,4,9,7,"Debt Consolidation Loan, Personal Loan, Payday Loan, Auto Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",20.75043517,17,12.67,8,Standard,927.27,29.7900713,6 Years and 8 Months,Yes,152.0612356,,High_spent_Small_value_payments,213.3061761,0,0.0699,-0.2096,0.0072,-1.2928,-0.6564 +0x17701,CUS_0x5f49,August,43,390-47-2531,Media_Manager,16509.01,1412.750833,7,7,23,8,"Mortgage Loan, Student Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Auto Loan",18.36721982,,8.24,9,Bad,1591.92,23.79940453,,Yes,76.17986675,59.53260899,!@9#%8,285.5626076,0,1.6999,-0.6418,0.5257,0.3151,-0.2008 +0x1770d,CUS_0x5235,August,42,458-15-7288,Manager,34666.02,2946.835,8,6,25,4,"Payday Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,,7.06,8,Bad,1479.930318,35.02100786,10 Years and 8 Months,Yes,70.9500766,377.1474203,Low_spent_Small_value_payments,136.5860031,0,0.5759,-0.7722,-0.6734,1.8784,-0.0229 +0x17719,CUS_0x84a9,August,54,282-14-7531,Architect,21553.81,,4,5,12,4,"Student Loan, Auto Loan, Auto Loan, and Payday Loan",11.09497241,11,3.17,5,Good,1051.625711,32.07269658,32 Years and 2 Months,NM,61.66534438,30.32526204,High_spent_Large_value_payments,357.4428128,0,-0.429,-0.1431,1.3099,-0.1099,1.1559 +0x17725,CUS_0x9b9e,August,44,160-38-1753,Scientist,30174.03,2409.296872,3,2,10,2,"Student Loan, and Credit-Builder Loan",,14,11.13,6,_,50.38370795,33.9517649,29 Years and 11 Months,No,282.2728478,120.4029469,High_spent_Small_value_payments,397.1154604,0,-2.0299,-0.9781,-0.8283,-1.9048,-0.3316 +0x17731,CUS_0x4148,August,30,222-51-3725,Media_Manager,49661.1,,4,7,18.06745738,6,"Mortgage Loan, Mortgage Loan, Personal Loan, Auto Loan, Payday Loan, and Not Specified",18.9134054,11.94373652,16.79,7,Standard,2822.343922,36.71566932,11 Years and 5 Months,Yes,167.6417132,88.67863099,High_spent_Small_value_payments,417.8018679,0,-0.0487,1.606,1.3283,-1.0712,-0.2744 +0x1773d,CUS_0x348a,August,24,358-20-1467,Media_Manager,16955.675,1295.972917,0,1,7,2,"Payday Loan, and Student Loan",,1,3.09,7,Good,1035.87,25.72802751,32 Years and 5 Months,No,20.03508748,,Low_spent_Small_value_payments,252.3279646,0,0.6444,1.2267,2.7339,0.8284,-0.0491 +0x17749,CUS_0x6f22,August,29,166-86-5483,Lawyer,117201.39,9712.7825,5,1,4.288361749,0,Personal Loan,0,3,8.33,3,Good,1345.741089,23.37040781,28 Years and 5 Months,No,57.73638047,1204.649507,Low_spent_Medium_value_payments,484.4686847,0,-0.9651,-0.7094,-1.8028,0.9979,1.4382 +0x17755,CUS_0x5bc7,August,38,291-41-7056,Musician,10485.62,633.8016667,8,6,32,3,"Payday Loan, Personal Loan, and Debt Consolidation Loan",21.59213178,17,12.22,10,Bad,2522.06,37.18883299,10 Years and 4 Months,Yes,21.09269989,15.59173041,High_spent_Medium_value_payments,276.6957364,0,-0.6453,-0.2919,-0.427,-1.9529,0.7606 +0x17761,CUS_0x16d0,August,39,570-24-3883,Entrepreneur,18463.93,1795.660833,4,6,20,4,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",18.10319874,14,17.93,6,Standard,760.9180372,36.00422818,,Yes,46.97536142,24.17322084,High_spent_Medium_value_payments,361.8917242,0,0.3034,-1.5204,0.458,0.5411,0.8461 +0x1776d,CUS_0x8bce,August,51,037-36-2156,Mechanic,24778.8,2312.9,5,7,20,0,,,12,15.28,9,Standard,179.1,36.8526661,15 Years and 10 Months,Yes,0,249.2100722,Low_spent_Small_value_payments,272.0799278,0,0.211,-0.7721,2.2014,2.0958,-1.1045 +0x17779,CUS_0x8201,August,51,055-48-9724,Musician,68948.32,,4,2,3.288361749,0,Auto Loan,,10,7.29,6,Good,254.2230007,26.27536285,16 Years and 11 Months,No,57.21828802,1033.594968,Low_spent_Medium_value_payments,242.9157525,0,0.4384,1.6209,0.3404,0.3346,-1.453 +0x17785,CUS_0x5f0f,August,18,988-93-0991,Media_Manager,19183.53,1620.6275,4,6,27,7,"Mortgage Loan, Personal Loan, Mortgage Loan, Not Specified, Not Specified, Home Equity Loan, and Home Equity Loan",15.09748914,10,9.12,9,Standard,2621.47,32.80514484,10 Years and 10 Months,Yes,69.41294009,,Low_spent_Large_value_payments,274.745468,0,-1.2467,-1.0134,-0.9219,-0.0123,2.2221 +0x17791,CUS_0x102e,August,26,#F%$D@*&8,Scientist,50807.44,4197.953333,8,4,11,4,"Mortgage Loan, Not Specified, Home Equity Loan, and Home Equity Loan",12.16973867,10.94098277,2.6,4,_,961.5390134,30.31145401,,NM,88.75991925,65.27556453,High_spent_Medium_value_payments,515.7598496,0,-0.5055,-0.4582,0.8632,-1.1733,1.2238 +0x1779d,CUS_0x52d5,August,30,315-76-5024,Entrepreneur,56784.54,,8,5,17,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Not Specified",17.93998929,15,8.56,3,Standard,234.96,32.43895457,16 Years and 11 Months,No,146.6767287,,High_spent_Small_value_payments,471.8295001,0,-1.069,0.2496,-1.7185,-0.9001,1.0239 +0x177a9,CUS_0x829a,August,29,546-31-9541,Musician,160930.32,13484.86,4,1,1,1,Payday Loan,,12,4.61,8,_,1083.49,38.02763346,30 Years and 5 Months,No,83.04886433,844.5747236,Low_spent_Medium_value_payments,700.8624121,0,0.8863,-0.4509,-0.8722,-0.0612,-0.3794 +0x177b5,CUS_0x9ece,August,44,521-76-9886,Scientist,25703.34,1935.945,3,4,15.28836175,0,Debt Consolidation Loan,,4884.48618,12.64,3,Standard,46.8439085,39.63698636,19 Years and 5 Months,Yes,16.72073889,467.0725035,High_spent_Large_value_payments,369.7387186,0,0.9943,1.4385,-1.6118,0.5313,-0.7901 +0x177c1,CUS_0x6148,August,44,438-39-3090,Accountant,7295.715,,3,5,34,1181,"Auto Loan, Student Loan, Student Loan, Not Specified, Not Specified, Personal Loan, and Personal Loan",20.70141685,16.20612128,10,9,Standard,1535.142557,23.90135363,10 Years and 9 Months,Yes,21.2928961,29.21129362,Low_spent_Small_value_payments,283.9934353,0,1.251,-1.8652,-1.6316,-0.8767,1.2966 +0x177cd,CUS_0x40d1,August,32,344-66-6046,Entrepreneur,151437.08,,0,4,2.288361749,2,"Not Specified, and Payday Loan",0.770600289,5,1.97,5,Good,879.78,32.58797885,22 Years and 2 Months,NM,147.5264605,617.2707296,High_spent_Large_value_payments,1131.315938,0,-0.4154,-0.0371,0.9786,-0.2595,-0.1648 +0x177d9,CUS_0x6b1c,August,37,806-07-5871,Entrepreneur,43790.4,,8,6,32.06745738,8,"Personal Loan, Mortgage Loan, Home Equity Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",41.89106969,25.48814667,27.91,11,_,3397.333421,28.42465354,12 Years and 8 Months,Yes,221.1676466,,Low_spent_Small_value_payments,0.322831043,0,2.2742,-1.388,-1.4016,-0.73,-0.4646 +0x177e5,CUS_0x885d,August,22,149-60-5973,_______,14888.915,,5,5,6,1,Student Loan,17.52266666,,5.5,4,Good,994.083831,24.16526438,32 Years and 0 Months,No,6.706015138,87.34256357,Low_spent_Small_value_payments,330.325713,0,-2.5995,-2.3169,-0.0255,0.3556,0.0591 +0x177f1,CUS_0x1aee,August,26,065-68-6043,Accountant,100465.14,8279.095,4,3,11,0,,11.42563375,13,7.16,2,Good,990.2,31.26731211,32 Years and 10 Months,No,0,409.2422461,Low_spent_Medium_value_payments,698.6672539,0,-0.4624,-0.6145,-1.3124,2.2797,-0.9402 +0x177fd,CUS_0x4192,August,18,589-12-7572,Engineer,16697.83,,10,8,19.88954781,7,"Mortgage Loan, Not Specified, Payday Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",30.94813428,19,14.88,8,Standard,2514.35,34.27510289,11 Years and 9 Months,Yes,1391.084596,31.00065031,High_spent_Large_value_payments,289.8332558,0,0.4062,0.4301,-0.6865,-0.7459,2.3315 +0x17809,CUS_0x40f8,August,25,423-29-2528,Developer,20090.02,,7,9,19,4,"Mortgage Loan, Student Loan, Debt Consolidation Loan, and Personal Loan",47.24980399,24.54570287,12.73,11,_,2577.964561,27.48727009,6 Years and 9 Months,Yes,40.70320696,133.2802931,Low_spent_Small_value_payments,273.0333333,0,0.2657,1.3787,-0.9987,-1.0243,-1.1635 +0x17815,CUS_0xa7db,August,28,946-51-7834,Teacher,94256.48,,6,4,7.288361749,2,"Auto Loan, Not Specified, and Debt Consolidation Loan",24.53102692,20,10.43,7,_,191.78,32.09627255,,Yes,148.7549249,574.9457646,High_spent_Large_value_payments,692.1074381,0,0.0416,0.1637,-0.907,0.7702,-1.3956 +0x17821,CUS_0x6f86,August,23,334-45-9564,Mechanic,13000.735,,7,3,7,4,"Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",,14,18.51,5,Standard,1152.68,27.9935681,18 Years and 5 Months,No,35.51308374,107.7903104,Low_spent_Small_value_payments,274.3360642,0,-0.8196,-0.1835,-0.5888,-0.7925,-1.3756 +0x1782d,CUS_0xbbbb,August,54,398-87-9454,Journalist,18500.54,,2,3,4,3,"Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,7,1.98,5,Good,1016.805379,36.64239959,25 Years and 5 Months,No,41.79325921,151.9760808,Low_spent_Small_value_payments,252.9921428,0,-2.1963,-0.8699,2.451,-0.3985,-0.1977 +0x17839,CUS_0x51e6,August,38,691-73-2861,Entrepreneur,70973.32,,3,6,18,3,"Home Equity Loan, Payday Loan, and Not Specified",12.83536303,12,10.18,8,Standard,2457.36,36.99489265,15 Years and 2 Months,Yes,115.9417327,10000,High_spent_Small_value_payments,525.8809483,0,-0.585,-1.4218,0.4541,0.2448,0.6846 +0x17845,CUS_0x5f25,August,49,851-96-3435,Media_Manager,121233.51,,2,6,7.288361749,100,"Payday Loan, and Credit-Builder Loan",6.498228057,9,11.54,6,Good,990.9736944,33.01254363,23 Years and 10 Months,No,191.01735,1737.769108,!@9#%8,18.17448826,0,0.9425,-0.3182,1.3708,0.4265,3.1588 +0x17851,CUS_0x74bf,August,43,509-05-4819,Doctor,75773.2,6248.433333,8,5,32,9,"Not Specified, Payday Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Payday Loan, Student Loan, Home Equity Loan, and Payday Loan",27.65524286,19,18.74,11,Bad,3659.35,33.9531942,3 Years and 3 Months,Yes,288.1249615,,Low_spent_Medium_value_payments,217.7864402,0,0.718,-0.2219,1.1465,0.0523,0.6883 +0x1785d,CUS_0x9cc3,August,27,287-19-9803,Teacher,48657.42,3979.785,6,6,16.06745738,6,"Personal Loan, Personal Loan, Not Specified, Student Loan, Student Loan, and Mortgage Loan",,24.21282823,5.9,10,Bad,2835.788132,25.55621929,8 Years and 6 Months,NM,132.6126791,114.86055,High_spent_Small_value_payments,383.784983,0,-1.7922,-0.4983,-1.2202,-0.2786,0.2449 +0x17869,CUS_0xab37,August,42,619-06-3124,Lawyer,70956.8,,6,6,32,6,"Personal Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Not Specified",45.83739444,26,22.56,13,_,2503.49,33.68988136,7 Years and 3 Months,Yes,271.6039287,537.2841381,Low_spent_Medium_value_payments,77.51859982,0,-0.7494,-1.895,0.8811,-0.8607,-0.6443 +0x17875,CUS_0x4778,August,30,888-43-4739,Journalist,97590.15,8321.5125,6,6,2648,2,"Credit-Builder Loan, and Auto Loan",35.95815858,22.72129112,12.41,2,Standard,735.7554968,29.51114785,19 Years and 4 Months,Yes,83.02341726,208.5141952,High_spent_Medium_value_payments,790.6136376,0,-0.53,-0.2096,0.2155,0.3255,-1.9483 +0x17881,CUS_0x53f0,August,26,#F%$D@*&8,Manager,44632.44,3419.37,10,6,33,5,"Payday Loan, Personal Loan, Not Specified, Auto Loan, and Auto Loan",22.45840526,18,23.48,10,Bad,3409.13,37.86611375,6 Years and 10 Months,Yes,154.1423109,46.86143791,High_spent_Medium_value_payments,390.9332512,0,-0.1362,-1.539,1.1637,-1.3813,-0.3918 +0x1788d,CUS_0x5f83,August,39,622-54-5012,Writer,35317.81,,4,5,7,4,"Home Equity Loan, Auto Loan, Personal Loan, and Mortgage Loan",16.9119002,,2.74,1,_,1153.101732,25.24759482,30 Years and 3 Months,NM,63.21843364,,Low_spent_Small_value_payments,242.1770632,0,-0.9082,1.4163,0.508,0.8818,-1.4484 +0x17899,CUS_0x836e,August,19,970-91-7807,_______,37353.58,,6,9,34.88954781,8,"Payday Loan, Not Specified, Home Equity Loan, Auto Loan, Payday Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",22.86152756,18,14.51,11,Bad,3459.09,25.01365344,3 Years and 11 Months,Yes,1495.828383,183.2321375,Low_spent_Large_value_payments,189.2892315,0,-1.4736,1.1514,-0.6781,-0.308,1.0931 +0x178a5,CUS_0x2abc,August,19,102-67-0486,Journalist,13864.835,949.4029167,3,3,9,1,Mortgage Loan,15.4020051,14,14.65,1,Standard,554.13,31.09827449,,Yes,10.42039328,59.2251863,Low_spent_Large_value_payments,295.2947121,0,-1.0691,-1.3623,1.1604,1.5604,0.6108 +0x178b1,CUS_0xc180,August,38,430-27-3043,Writer,83552.12,6780.676667,7,7,1780,3,"Home Equity Loan, Payday Loan, and Not Specified",,10,10.82,14,_,1365.36,29.33984485,8 Years and 5 Months,Yes,161.4836907,300.3001944,High_spent_Small_value_payments,476.2837816,0,0.9867,-0.3975,-0.0527,0.6972,-1.0823 +0x178bd,CUS_0x9513,August,43,952-99-9037,_______,43268.79,3351.7325,0,1,10,3,"Not Specified, Student Loan, and Mortgage Loan",2.226327769,5,4.34,5,Good,726.0276213,29.79221444,22 Years and 9 Months,No,60.25966412,130.4367566,!@9#%8,423.4514487,0,0.4481,0.1874,0.5845,0.2695,-0.5668 +0x178c9,CUS_0x44c3,August,80,497-02-1106,Developer,108638.76,,6,3,19.28836175,2,"Credit-Builder Loan, and Auto Loan",,13,11.66,5,Standard,1365.32,41.20883191,6 Years and 9 Months,Yes,75589,,High_spent_Large_value_payments,825.8539426,0,-0.3901,-1.2097,-1.8384,-1.9632,0.0963 +0x178d5,CUS_0x3fce,August,18,946-99-7466,_______,32198.23,,5,5,10,5,"Student Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",18.1857351,11,18.27,11,Standard,857.14,27.4894517,13 Years and 11 Months,Yes,126.4786618,384.0597923,Low_spent_Small_value_payments,65.6801292,0,-0.1135,-0.8437,0.3648,-0.1881,0.5892 +0x178e1,CUS_0x8d33,August,20,793-03-2481,_______,138920.84,,5,3,3,4,"Payday Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",,15,6.45,4,Good,246.87,31.15238151,33 Years and 2 Months,No,235.8554311,457.2614787,High_spent_Medium_value_payments,707.2567568,0,-1.3371,1.9213,1.9932,-1.3914,1.3463 +0x178ed,CUS_0x2adf,August,41,187-90-8599,Lawyer,7577.175,,5,5,22,6,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Auto Loan",,18,8.84,11,Standard,1355.48,33.88960979,17 Years and 0 Months,Yes,25.2386884,23.53447488,Low_spent_Large_value_payments,254.4699617,0,-1.8443,1.3467,-0.7833,2.0165,1.7586 +0x178f9,CUS_0x1abc,August,35,747-88-3394,Journalist,28431.06,2610.255,5,6,14,2,"Mortgage Loan, and Home Equity Loan",17.98808391,15,8.94,4,_,1098.59,27.01269594,23 Years and 0 Months,Yes,31.15049795,,Low_spent_Small_value_payments,363.9110436,0,-0.0101,-1.6759,-2.1117,0.6468,0.0313 +0x17905,CUS_0x61ff,August,35,771-13-1222,Manager,145932.04,,4,757,19.28836175,2,"Student Loan, Auto Loan, and Personal Loan",12.74728601,11.38793879,2.73,6,Standard,1565.029765,26.15025309,20 Years and 4 Months,No,275.9611451,651.7480094,High_spent_Medium_value_payments,940.1286399,0,-0.8356,0.5577,1.0437,-0.7815,-1.0495 +0x17911,CUS_0x4327,August,34,498-86-4830,Journalist,86668.74,,3,5,1,4,"Auto Loan, Student Loan, Debt Consolidation Loan, and Student Loan",,4,3.43,7,Good,1433.89,42.18564391,19 Years and 5 Months,No,249.2407533,10000,!@9#%8,536.4602325,0,0.339,0.2625,-1.1622,-0.696,-0.6739 +0x1791d,CUS_0x5cdc,August,44,784-26-3375,Mechanic,14535.305,,8,6,9,4,"Not Specified, Home Equity Loan, Credit-Builder Loan, and Student Loan",19.07106121,15,5.79,4,Standard,413.84,29.50961549,23 Years and 0 Months,NM,35.42439072,37.21550249,Low_spent_Medium_value_payments,344.9876485,0,0.2458,0.2222,0.7484,-0.4049,0.6993 +0x17929,CUS_0xa0ba,August,47,135-53-1643,Writer,66189.24,5437.77,3,5,12,1,Not Specified,30.79140478,20,12.41,6,Standard,544.21,35.02721717,18 Years and 2 Months,Yes,36.86044024,129.3052017,High_spent_Large_value_payments,617.6113581,0,2.8923,0.286,0.2715,-0.9106,-0.3533 +0x17935,CUS_0x2c06,August,29,395-47-1287,_______,17642.275,,0,7,9,100,"Payday Loan, Not Specified, Student Loan, and Auto Loan",14.88635709,10.63353606,0.64,1,Good,696.7819651,24.04475099,27 Years and 5 Months,No,55.418583,45.19446572,High_spent_Large_value_payments,315.5059096,0,-0.2711,-0.0144,0.2425,0.1369,-1.7163 +0x17941,CUS_0x5ec2,August,53,885-49-8193,Mechanic,20560.13,,6,4,10,4,"Payday Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",16.34264206,11,2.65,3,_,475.64,34.61982638,32 Years and 2 Months,Yes,65.43230629,34.36146307,High_spent_Medium_value_payments,338.3406473,0,-0.0751,-0.6452,-0.9797,0.3445,0.2741 +0x1794d,CUS_0x1d7a,August,23,252-54-7548,Teacher,14226.81,1238.5675,10,10,24.88954781,7,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Payday Loan, Mortgage Loan, and Home Equity Loan",41.28494806,22.41613605,26.73,12,_,3778.016658,33.09162028,12 Years and 2 Months,NM,1367.011952,79.13163744,Low_spent_Medium_value_payments,263.3830797,0,1.663,-1.1116,0.1861,0.387,0.0928 +0x17959,CUS_0x22f4,August,42,116-88-7276,Teacher,20501.07,,7,3,19,3,"Mortgage Loan, Home Equity Loan, and Home Equity Loan",12.45143545,10,18.24,7,Standard,2012.25,31.87763237,7 Years and 8 Months,Yes,41.56981564,227.0396888,Low_spent_Small_value_payments,194.5327456,0,0.4357,2.0935,0.8841,-1.9765,0.2458 +0x17965,CUS_0xbb88,August,30,785-97-3899,Accountant,98544.99,8379.0825,5,3,1.288361749,100,"Credit-Builder Loan, Mortgage Loan, and Student Loan",1.997235053,4,9.63,4,Good,177.6291747,35.3689588,32 Years and 11 Months,No,197.800573,,High_spent_Medium_value_payments,571.8433304,0,1.9137,0.8557,0.4033,-1.7955,-1.1733 +0x17971,CUS_0x3e4a,August,39,612-57-3265,Manager,71518.92,,7,5,34,7,"Personal Loan, Payday Loan, Not Specified, Not Specified, Credit-Builder Loan, Personal Loan, and Payday Loan",17.06501683,8.984048286,8.45,10,Standard,2707.531126,39.14857122,17 Years and 11 Months,Yes,331.2654899,397.1450154,High_spent_Small_value_payments,130.7804946,0,0.4707,-0.4278,-0.2031,0.5015,-0.2913 +0x1797d,CUS_0x47f9,August,44,185-39-2208,Journalist,16196.665,,5,7,17,2,"Mortgage Loan, and Auto Loan",13.9949926,11,2.55,2,Standard,632.93,37.23306343,16 Years and 3 Months,No,24.94959146,89.51384322,Low_spent_Medium_value_payments,322.1087737,0,-0.9874,-0.3106,1.4441,0.7852,-0.8161 +0x17989,CUS_0x3d3d,August,27,898-07-2009,Scientist,18123.675,,7,5,7,2,"Personal Loan, and Mortgage Loan",19.73240139,15,10.37,7,Standard,770.41,32.15759394,17 Years and 11 Months,No,24.50559363,139.5904123,Low_spent_Small_value_payments,258.534619,0,-1.3416,0.105,-1.6587,-1.2777,-0.2072 +0x17995,CUS_0x8773,August,29,640-70-7221,Scientist,90541.71,7607.1425,4,7,4.288361749,0,,0.962543524,3,11.91,4,Good,500.6,25.73628759,31 Years and 6 Months,No,0,560.0962758,High_spent_Large_value_payments,860.5554352,0,-0.5502,-1.3638,-0.7338,-0.1267,0.2766 +0x179a1,CUS_0x3e40,August,18,090-24-7789,Developer,71267.18,6167.931667,7,5,17,4,"Student Loan, Auto Loan, Auto Loan, and Student Loan",14.26922752,11,19.14,9,Standard,158.2,23.18989151,20 Years and 6 Months,Yes,204.6074915,,Low_spent_Medium_value_payments,192.2309208,0,-0.3047,0.1572,-1.2279,-2.0978,-0.3796 +0x179ad,CUS_0xafd1,August,26,492-77-5603,Journalist,17692.26,,5,6,21,6,"Mortgage Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Student Loan, and Mortgage Loan",25.7247909,19.68039113,19.29,12,Standard,1635.282198,31.4906933,15 Years and 4 Months,Yes,73.93817814,49.3630039,Low_spent_Small_value_payments,304.734318,0,2.694,-0.1533,-1.1791,0.4554,1.3216 +0x179b9,CUS_0x675f,August,42,466-58-7914,Manager,82928.04,,7,4,16,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",10.12054817,8,16.97,4,_,601.78,41.4748821,16 Years and 4 Months,Yes,121.5470135,410.5780413,Low_spent_Small_value_payments,469.6419453,0,-0.0523,0.8322,-0.3948,0.6432,-0.6932 +0x179c5,CUS_0x3a96,August,46,416-49-7815,Developer,53579.04,4355.92,9,10,18.06745738,6,"Payday Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Auto Loan",35.03535779,17,20.14,8,Bad,4327.190954,36.80487265,1 Years and 3 Months,Yes,149.6791915,116.3396619,High_spent_Medium_value_payments,392.8528587,0,-0.9746,1.0075,0.4723,1.6902,-1.6023 +0x179d1,CUS_0x66c3,August,36,669-33-0062,Mechanic,36693.66,3144.805,6,6,20.06745738,9,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Mortgage Loan, Payday Loan, Auto Loan, Payday Loan, and Student Loan",49.32265089,25.9160063,28.74,9,Bad,3616.336406,36.78695517,10 Years and 9 Months,Yes,189.9826852,130.2803586,High_spent_Small_value_payments,227.4971683,0,-1.1066,-1.1078,2.6442,-0.1292,0.0847 +0x179dd,CUS_0x7a84,August,39,042-33-9752,Entrepreneur,33189.63,2688.8025,3,3,6,4,"Student Loan, Student Loan, Mortgage Loan, and Personal Loan",,18.1615753,0.84,5,Standard,1262.107807,26.82368766,16 Years and 8 Months,No,59.38753195,199.5799546,Low_spent_Small_value_payments,299.9127635,0,-1.7222,-0.3984,-1.1032,-1.4665,0.4823 +0x179e9,CUS_0xc571,August,29,011-73-0967,Developer,79494.4,6501.533333,4,3,22,5,"Personal Loan, Student Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",10.89778434,10,10.92,12,_,2307.13,37.09115321,18 Years and 0 Months,Yes,268.4594016,10000,!@9#%8,576.4176051,0,0.3507,-0.029,1.8821,-1.0083,-0.1045 +0x179f5,CUS_0x61a1,August,44,461-95-5515,_______,112484.68,9389.723333,4,3,5.288361749,2,"Mortgage Loan, Student Loan, and Personal Loan",,12,,1,_,1459.58,20.63899497,28 Years and 2 Months,Yes,210.2954354,1444.254956,Low_spent_Small_value_payments,,0,-0.9197,-1.5584,-1.7769,-0.0631,0.4957 +0x17a01,CUS_0x3319,August,30,087-36-3454,_______,39870.01,3578.500833,3,3,5,3,"Personal Loan, Mortgage Loan, and Debt Consolidation Loan",0,0,6.72,2,_,735.8731231,33.81265594,,No,61.93618013,58.24987624,High_spent_Medium_value_payments,494.4808168,0,0.2988,-0.5994,-0.0605,-0.5533,-1.1728 +0x17a0d,CUS_0x8132,August,35,352-95-7668,Architect,75455.34,,3,6,11,1,Not Specified,16.5068638,13,9.77,8,_,62.48053278,28.3507735,7 Years and 9 Months,Yes,60.42174273,315.2343492,High_spent_Small_value_payments,533.7035486,0,0.036,-0.4903,-1.6867,2.1261,0.0878 +0x17a19,CUS_0x4fed,August,28,153-53-5786,Musician,61131.36,4880.28,3,5,23,2,"Credit-Builder Loan, and Debt Consolidation Loan",12.49161196,11.52522018,14.51,14,_,2661.669305,33.36450847,16 Years and 8 Months,Yes,88.19366251,501.4949757,Low_spent_Small_value_payments,188.3393618,0,-0.4605,-0.2788,-0.1389,1.1578,-0.4801 +0x17a25,CUS_0x4453,August,22,772-42-1653,Doctor,28045.82,2434.151667,7,7,6,7,"Mortgage Loan, Payday Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",12.45134712,9,21.28,8,Standard,324.35,39.37903755,15 Years and 4 Months,Yes,147.7208369,,Low_spent_Large_value_payments,242.0988647,0,-0.4888,0.0962,0.0595,-2.0092,0.4491 +0x17a31,CUS_0xa61a,August,23,052-73-3081,Teacher,20538.77,1957.564167,8,10,23.88954781,100,"Auto Loan, Home Equity Loan, Auto Loan, Home Equity Loan, Not Specified, and Payday Loan",24.48958466,19,3.42,6,_,2708.55,28.68699711,12 Years and 8 Months,Yes,1400.027599,,High_spent_Small_value_payments,241.0267306,0,1.0016,-0.2105,-0.0808,-0.4938,-0.5129 +0x17a3d,CUS_0xa62f,August,33,053-99-4731,Musician,27324.7,,6,7,20,0,,24.67205977,18,16.49,6,_,1385.73,29.6626139,14 Years and 0 Months,Yes,0,43.71411426,High_spent_Large_value_payments,425.7917191,0,0.6881,0.3207,-1.5466,-1.0206,-0.988 +0x17a49,CUS_0xafb6,August,25,182-48-2589,Developer,35149.1,,4,200,5,4,"Auto Loan, Student Loan, Auto Loan, and Student Loan",10.57294874,8.055932115,6.17,4,Good,582.2903504,33.62054011,,No,97.64015886,153.1015137,Low_spent_Small_value_payments,332.7674941,0,0.8385,-0.1398,-1.7367,1.0168,-0.9062 +0x17a55,CUS_0x8072,August,18,478-04-9369,Mechanic,86171.52,7202.96,4,2,2,4,"Payday Loan, Personal Loan, Personal Loan, and Payday Loan",,9,6.88,1540,Good,727.9396005,36.69706244,17 Years and 6 Months,No,207.9350066,290.2917828,Low_spent_Large_value_payments,525.7066117,0,-0.8029,0.8713,-0.2213,0.0353,-1.6594 +0x17a61,CUS_0xbccc,August,38,631-10-0523,Entrepreneur,9944.365,,6,6,19.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Student Loan, and Not Specified",37.01771479,15.99795343,31.66,9,Bad,4669.169796,33.2326097,5 Years and 5 Months,Yes,43.98745638,24.70576961,Low_spent_Large_value_payments,248.8561944,0,0.0094,0.9004,-0.7258,1.5254,-0.4642 +0x17a6d,CUS_0x60c2,August,18,289-22-3659,Media_Manager,9846.715,,7,5,6,6,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Mortgage Loan",17.83907084,15,10.3,5,Standard,1723.89,32.51099075,17 Years and 8 Months,Yes,38.58543336,,High_spent_Small_value_payments,254.4128228,0,-2.0325,-0.3599,-0.5722,0.4473,-0.2825 +0x17a79,CUS_0x5c3f,August,21,790-28-8312,Journalist,16212.015,1226.00125,6,5,15,0,,13.89575896,13,3.31,5,_,1400.27,23.59214997,26 Years and 6 Months,No,0,75.53966914,Low_spent_Medium_value_payments,327.0604559,0,0.3153,-0.1798,-0.1645,-1.7162,-0.5609 +0x17a85,CUS_0x7fd3,August,26,861-65-6983,Writer,50295.36,3893.28,7,6,20,0,,13.87603879,11,8.12,9,Standard,527.85,30.370874,18 Years and 2 Months,NM,0,389.0718891,Low_spent_Medium_value_payments,280.2561109,0,-0.1822,2.8115,0.2568,1.5115,-0.649 +0x17a91,CUS_0x8d91,August,51,422-97-8090,Teacher,126004.2,,5,3,19,4,"Auto Loan, Payday Loan, Payday Loan, and Auto Loan",21.8560004,13.70652327,7.72,1,Standard,1026.866691,31.63142147,26 Years and 3 Months,Yes,355.6436206,112.0997147,High_spent_Medium_value_payments,817.9916647,0,0.8108,-1.0631,-0.1237,-0.2359,-0.3755 +0x17a9d,CUS_0x55a1,August,52,886-53-5627,Accountant,21412.855,,5,4,6.288361749,2,"Mortgage Loan, and Home Equity Loan",14.55730762,,11.76,,Good,95.39622016,27.58886413,25 Years and 9 Months,No,21.29280688,573.2092105,!@9#%8,282.1313716,0,0.0828,2.6244,-1.1744,-1.0596,1.8794 +0x17aa9,CUS_0x48d2,August,34,251-84-6264,Media_Manager,16580.69,,6,6,16,100,"Debt Consolidation Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Student Loan",,23.82906606,22.04,7,Bad,5052.936885,40.60617537,9 Years and 6 Months,NM,67.19916051,,Low_spent_Small_value_payments,232.1945211,0,1.0829,0.4872,1.3479,-0.2042,-1.203 +0x17ab5,CUS_0x778b,August,36,407-75-5116,Teacher,22413.53,,6,6,16,4,"Payday Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",,12,-1.2,6,_,22.82266615,38.68960061,24 Years and 6 Months,No,40.04614067,320.4851235,Low_spent_Small_value_payments,190.904432,0,-2.3926,-1.0743,0.122,-1.0584,-1.1341 +0x17ac1,CUS_0x4c33,August,18,511-02-6078,Lawyer,74829.56,6521.796667,7,9,25,6,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Not Specified",,22,2.46,14,Bad,2269.63,38.3158174,17 Years and 3 Months,Yes,313.2046469,119.9801252,!@9#%8,458.9948945,0,0.0505,0.5641,0.7441,0.7962,-0.465 +0x17acd,CUS_0x991b,August,23,#F%$D@*&8,_______,108142.14,9280.845,1,2,0.288361749,0,Student Loan,6.373476445,7,7.55,3,Good,236.7701771,30.38038712,24 Years and 10 Months,No,48.51475767,814.1193333,!@9#%8,818.0905525,0,0.5227,0.1478,-0.9096,1.3886,-0.2224 +0x17ad9,CUS_0xc5cc,August,31,453-37-7716,Mechanic,18776.84,,7,10,32,9,"Auto Loan, Credit-Builder Loan, Student Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",35.47798208,25,28.18,8,_,3315.01,36.85305773,,Yes,110.2088851,207.8546951,Low_spent_Small_value_payments,137.0100864,0,-0.294,-0.166,1.1641,-1.0987,-0.8121 +0x17ae5,CUS_0x8c90,August,40,496-69-3617,Media_Manager,21001046,11615.28333,6,3,17.28836175,6,"Not Specified, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Not Specified, and Personal Loan",16.07556927,15,12.74,10,Standard,34.7,38.02515565,17 Years and 0 Months,Yes,389.8371967,1321.807479,Low_spent_Medium_value_payments,149.8211185,0,-0.103,-1.3984,-0.2024,0.331,0.0755 +0x17af1,CUS_0xc4ac,August,39,267-31-8739,Engineer,12399758,10463.97,0,6,6,0,,11.49707433,10,7.7,1,Good,444.3969451,30.25352522,,No,0,310.213815,High_spent_Large_value_payments,1018.969546,0,1.9064,-0.5843,0.332,-1.0968,0.2889 +0x17afd,CUS_0x2b76,August,37,413-67-3802,Developer,25580.34,,5,3,7,2,"Payday Loan, and Auto Loan",,10,15.39,6,_,15.29068294,38.65413189,19 Years and 11 Months,Yes,31.81572834,61.43744618,Low_spent_Large_value_payments,374.0141124,0,-0.2652,-0.1645,-1.3179,1.8276,-1.6403 +0x17b09,CUS_0x2f3d,August,53,591-99-1793,Teacher,134596.35,,57,6,3.288361749,0,Auto Loan,7.679848578,8,3.44,1,Good,1285.14,31.57435311,19 Years and 6 Months,No,1242.722233,740.2829642,Low_spent_Medium_value_payments,1001.846161,0,1.3579,-0.7114,-0.8655,-0.4739,-1.1532 +0x17b15,CUS_0x8a3c,August,48,151-72-5385,Architect,116624.4,9633.7,5,5,6,3,"Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,19,14.67,3,_,394.94,37.03017169,24 Years and 10 Months,Yes,259.7866934,528.2089413,High_spent_Small_value_payments,435.3743654,0,0.8082,1.5951,1.1068,-0.7228,-0.7563 +0x17b21,CUS_0x1537,August,40,540-88-5808,_______,40430.92,3489.243333,6,8,15.88954781,9,"Mortgage Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Not Specified",45.53609765,28.76924613,4.85,14,_,2030.007114,32.76037932,,Yes,1580.325795,27.61395843,High_spent_Large_value_payments,286.6544981,0,-1.5755,-0.4299,0.2037,0.6878,-0.0067 +0x17b2d,CUS_0x857b,August,18,214-24-4375,Writer,121041.21,,3,7,8,3,"Personal Loan, Home Equity Loan, and Student Loan",9.16068528,8,4.59,3,Good,1036.21,30.57553098,32 Years and 5 Months,No,197.0868048,210.0108624,High_spent_Large_value_payments,868.8790828,0,0.4336,-0.3805,2.3392,1.3827,-0.0054 +0x17b39,CUS_0x6819,August,19,631-29-3707,Architect,71936.88,5906.74,5,6,12,7,"Mortgage Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",14.40027621,13,13.04,8,Standard,2644.2,38.37802712,12 Years and 0 Months,Yes,387.7705027,346.9964811,Low_spent_Large_value_payments,125.9070162,0,-0.4741,-0.4833,0.1089,-1.2481,2.2822 +0x17b45,CUS_0x7d42,August,40,597-29-6705,Scientist,18770.3,1514.191667,1,1,5,3,"Not Specified, Debt Consolidation Loan, and Home Equity Loan",0,2,11.32,0,Good,536.68484,36.51581479,29 Years and 0 Months,No,34.8490548,150.9364422,Low_spent_Small_value_payments,272.237154,0,-1.3471,0.5757,-1.1346,-0.0904,2.2937 +0x17b51,CUS_0x1dfd,August,25,926-46-8089,Engineer,7604.185,,10,10,33.95700519,100,"Not Specified, Payday Loan, and Mortgage Loan",28.03902248,16,6.63,10,Standard,2053.330954,29.39657296,6 Years and 0 Months,NM,1340.218553,,Low_spent_Small_value_payments,221.4849101,0,0.1271,-0.7503,0.234,2.2834,-1.8192 +0x17b5d,CUS_0x60d,August,28,994-11-0278,Architect,35511.53,3154.294167,6,4,20,3,"Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,16,14.09,0,Standard,1109.03,39.98258871,24 Years and 9 Months,Yes,69.96656223,64.85774968,High_spent_Medium_value_payments,430.6051048,0,-0.6257,1.1216,-0.5214,0.6835,0.8947 +0x17b69,CUS_0xa0a5,August,35,967-93-4076,Manager,26408.13,2146.6775,4,6,19,6,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",,8,16.42,5,Standard,65.19,28.00128558,6 Years and 4 Months,Yes,73.56097913,10000,High_spent_Small_value_payments,273.5080541,0,0.3846,0.1133,-1.277,-1.3053,-0.2676 +0x17b75,CUS_0x27a4,August,40,#F%$D@*&8,Manager,42731.9,3459.991667,7,5,7,0,,12.22690728,9,7.85,0,_,96.85,36.95366019,30 Years and 0 Months,No,0,136.5110654,Low_spent_Medium_value_payments,489.4881013,0,0.5596,0.5736,0.4897,-0.3769,-0.4199 +0x17b81,CUS_0x388a,August,37,381-61-9626,Manager,33701.99,2584.499167,2,6,11.28836175,0,,5.819617356,6.723907404,9.22,3,Good,381.4262398,35.4993799,20 Years and 8 Months,No,0,624.4757016,Low_spent_Small_value_payments,343.9116761,0,0.9521,-0.2002,0.4759,-0.5331,-2.2457 +0x17b8d,CUS_0xad15,August,39,611-34-7572,Scientist,50608.23,4132.3525,9,10,31,2,"Auto Loan, and Home Equity Loan",49.21658545,31.00852447,3.85,13,Bad,1762.181272,30.65036227,7 Years and 3 Months,Yes,79.83845511,,High_spent_Medium_value_payments,422.665953,0,0.3582,0.3883,-0.3874,-0.1841,-0.4953 +0x17b99,CUS_0x9fe6,August,18,014-76-3423,Lawyer,8675.57,,6,6,18,8,"Not Specified, Home Equity Loan, Personal Loan, Personal Loan, Personal Loan, Auto Loan, Student Loan, and Mortgage Loan",26.54466585,17,19.53,11,Bad,2258.144481,36.58226206,10 Years and 10 Months,Yes,38.19344291,21.39600482,High_spent_Large_value_payments,282.5309575,0,-1.0235,-1.1456,0.0212,0.9928,0.9762 +0x17ba5,CUS_0x8f58,August,20,090-30-0699,_______,99984.48,8626.04,5,3,11,3,"Student Loan, Payday Loan, and Home Equity Loan",17.08272257,13,7.69,7,Standard,443.96,31.99995508,,Yes,171.3610224,303.0100545,High_spent_Medium_value_payments,638.2329231,0,1.2812,-0.8334,1.3772,0.3126,-0.8381 +0x17bb1,CUS_0xf60,August,18,929-19-3979,Lawyer,34413.76,2916.813333,6,5,8,5,"Home Equity Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Mortgage Loan",29.26595776,20,7.66,8,_,113.06,24.50800296,6 Years and 4 Months,Yes,74.32870945,330.7631176,Low_spent_Small_value_payments,176.5895063,0,-0.7249,1.5689,-1.2969,-1.6059,0.055 +0x17bbd,CUS_0xa22a,August,24,505-29-1719,Architect,8356.44,,5,5,19,5,"Home Equity Loan, Not Specified, Student Loan, Auto Loan, and Home Equity Loan",14.64229966,10,13.53,9,Standard,1967.2,24.46531089,19 Years and 9 Months,NM,19.93233156,35.74984498,Low_spent_Small_value_payments,284.6548235,0,2.4296,-0.7933,-0.7314,-1.6006,2.126 +0x17bc9,CUS_0x94e9,August,37,702-55-4878,Accountant,8128.065,467.33875,8,6,15,7,"Payday Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Auto Loan",31.55835524,18.73086689,-2.43,9,Bad,4159.109581,37.12482501,7 Years and 2 Months,Yes,38.20034095,19.51255134,High_spent_Small_value_payments,249.0209827,0,-0.6163,0.1105,0.7622,-1.0883,-1.2508 +0x17bd5,CUS_0x2800,August,45,503-91-9302,Entrepreneur,65522.84,,10,8,18.88954781,9,"Personal Loan, Home Equity Loan, Payday Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, and Personal Loan",,23,5.38,9,Bad,1382.94,31.16173092,14 Years and 8 Months,Yes,1722.855256,100.5247762,High_spent_Medium_value_payments,269.9135529,0,0.567,0.2593,-0.5758,-0.0473,1.8461 +0x17be1,CUS_0x61b0,August,36,856-46-5970,_______,18125.81,1545.484167,10,9,22.95700519,6,"Mortgage Loan, Not Specified, Payday Loan, Personal Loan, Credit-Builder Loan, and Student Loan",,26.7107639,5.36,1772,Bad,2247.531704,26.30604054,13 Years and 5 Months,Yes,1409.033358,133.9104133,Low_spent_Medium_value_payments,170.5542757,0,-0.3901,0.5598,0.8117,0.3049,0.9014 +0x17bed,CUS_0x7c47,August,24,443-64-5382,Developer,15363.22,1286.268333,7,5,23.06745738,6,"Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Student Loan, and Payday Loan",,21.92139463,11.79,8,_,3041.469665,38.0341555,9 Years and 2 Months,Yes,5442,,High_spent_Small_value_payments,258.4321967,0,2.0848,-0.9364,-0.619,-0.2991,-1.0537 +0x17bf9,CUS_0x1c7e,August,30,972-18-0008,Teacher,13691.91,936.9925,4,5,15,0,,18.66446402,14,2.56,5,_,179.27,35.82599023,23 Years and 2 Months,No,0,50.62332182,Low_spent_Medium_value_payments,323.0759282,0,0.4348,1.157,-0.2385,-0.0194,0.8137 +0x17c05,CUS_0x36c2,August,39,090-08-6722,Accountant,97324.83,7869.4025,3,4,20,6,"Auto Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",19.64551414,,14.7,5,Standard,449.87,25.8710329,14 Years and 11 Months,Yes,275.6631773,,Low_spent_Medium_value_payments,237.2935335,0,0.2485,0.3296,0.6866,0.4832,0.8788 +0x17c11,CUS_0x6f8b,August,18,443-98-1444,Media_Manager,15629.225,,5,7,15,3,"Credit-Builder Loan, Auto Loan, and Home Equity Loan",17.16400021,16,15.21,6,_,36.85513164,26.52456024,,Yes,22.65433648,46.77914307,High_spent_Medium_value_payments,309.6538954,0,-0.5497,0.6378,0.0179,1.9948,-0.2874 +0x17c1d,CUS_0x575d,August,32,910-44-2354,_______,88325.84,,7,3,12,3,"Payday Loan, Debt Consolidation Loan, and Student Loan",10.65186907,9,2.81,3,_,780.59,40.36327711,30 Years and 5 Months,No,186.5986451,10000,Low_spent_Medium_value_payments,302.113359,0,0.831,-0.235,-2.1791,1.7468,2.069 +0x17c29,CUS_0x60ec,August,42,211-05-3339,Musician,41975,,2,7,5,0,,0,1,5.74,0,Good,62.44612747,36.55166291,25 Years and 4 Months,No,0,65.71007767,High_spent_Medium_value_payments,568.2703587,0,-0.3417,0.9313,0.5349,0.0515,-1.2836 +0x17c35,CUS_0x67fd,August,24,994-43-3758,_______,40759.86,3417.655,4,5,18.28836175,2,"Payday Loan, and Home Equity Loan",8.626746235,10,19.66,9,Standard,313.0353798,23.08671533,31 Years and 6 Months,Yes,39.73303869,516.9331798,High_spent_Medium_value_payments,468.3244692,0,0.3951,-1.1939,-1.115,0.4595,-1.2888 +0x17c41,CUS_0x65d9,August,35,978-73-5122,Architect,8291.51,961.9591667,6,9,15.88954781,8,"Auto Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Student Loan, Not Specified, Mortgage Loan, and Payday Loan",,19,0.9,12,Bad,2511.39,27.69966756,12 Years and 0 Months,Yes,1366.712255,0,High_spent_Large_value_payments,266.3078596,0,-1.9546,-0.9526,0.0811,2.8575,-1.5105 +0x17c4d,CUS_0x9a0f,August,20,077-91-3481,Entrepreneur,56101,4655.083333,7,9,24,9,"Mortgage Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,21.68971826,4.77,10,_,5497.106423,37.55068807,9 Years and 9 Months,Yes,420.1993667,48.09382866,High_spent_Large_value_payments,237.2151379,0,-0.1516,-0.7381,-1.3329,-0.5138,0.4398 +0x17c59,CUS_0x65a9,August,32,369-89-6459,_______,74732.96,5917.510962,7,6,33,8,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Personal Loan, Payday Loan, and Debt Consolidation Loan",20.14547824,14,19.45,10,Bad,2477.934509,32.5204035,13 Years and 0 Months,Yes,550.6793937,146.8505198,High_spent_Large_value_payments,441.7475132,0,-0.2251,0.0764,-0.3464,1.2447,1.5007 +0x17c65,CUS_0x61e1,August,30,703-69-2088,Manager,19532.06,,8,8,28.95700519,7,"Payday Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Payday Loan",,8,10.24,12,Standard,2040.410954,36.04710362,15 Years and 6 Months,Yes,1433.295266,,Low_spent_Small_value_payments,209.5106939,0,0.1558,1.8777,-0.3498,-1.4361,-0.9549 +0x17c71,CUS_0x49e4,August,33,218-55-3668,Architect,85455.06,7125.255,4,7,6,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",,16,2.29,5,Good,135.3079497,38.76052984,20 Years and 8 Months,No,161.4055427,605.6056859,Low_spent_Medium_value_payments,302.7349487,0,1.1721,1.3939,1.2359,-1.0487,-1.5385 +0x17c7d,CUS_0x5899,August,29,691-71-6797,Media_Manager,57132.48,,0,7,9,2,"Mortgage Loan, and Student Loan",,2.412642137,4.37,0,Good,1208.712942,40.62186031,15 Years and 8 Months,No,56.62512462,109.7301629,High_spent_Medium_value_payments,531.6487125,0,1.1129,0.0334,-0.6867,-0.4404,0.0376 +0x17c89,CUS_0x91f6,August,56,174-77-8420,Writer,41810.62,3765.218333,4,7,7,2,"Personal Loan, and Personal Loan",14.16879488,14,10.47,3,Standard,1219.91,35.340178,15 Years and 11 Months,No,64.2020639,265.684171,Low_spent_Large_value_payments,316.6355985,0,0.292,0.2297,0.131,-1.3809,-2.3431 +0x17c95,CUS_0x8b5b,August,80,146-59-3037,Teacher,32077.74,2905.145,5,4,4.288361749,1430,,10.69937417,10,8.52,10,Standard,255.82,37.87734484,,NM,0,,Low_spent_Small_value_payments,208.5417535,0,-1.5496,1.2017,0.3267,-0.4116,-0.2096 +0x17ca1,CUS_0xa293,August,26,117-17-5155,_______,32030.69,,4,4,6,4,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Personal Loan",15.48174905,13,5.37,8,_,625.84,37.8083502,27 Years and 0 Months,No,244.3542363,,Low_spent_Small_value_payments,157.9707217,0,0.2267,1.8718,-0.6343,0.3054,-0.5684 +0x17cad,CUS_0x287f,August,33,823-87-2119,Engineer,19338.105,1569.50875,0,1426,8,2,"Debt Consolidation Loan, and Personal Loan",9.454751622,10,9.85,5,Good,921.21,32.22162472,20 Years and 10 Months,No,18.79065811,133.7952628,Low_spent_Small_value_payments,294.3649541,0,0.0633,0.8861,0.1482,1.6956,0.1009 +0x17cb9,CUS_0x4c4a,August,22,018-63-9003,Accountant,12613.92,,4,6,13,3,"Personal Loan, Student Loan, and Home Equity Loan",19.69278515,17,17.51,3,Standard,508.3137111,28.36762491,31 Years and 11 Months,Yes,16.94190267,46.53928892,Low_spent_Large_value_payments,327.7890811,0,0.3265,-1.7643,0.5443,-0.1492,1.1416 +0x17cc5,CUS_0x5392,August,53,154-82-5108,Scientist,100884.81,8631.0675,3,7,18,3,"Auto Loan, Home Equity Loan, and Home Equity Loan",7.134373743,7,17.94,6,_,783.27,34.85966995,30 Years and 4 Months,Yes,248.1318374,1007.056152,Low_spent_Small_value_payments,,0,0.0984,-0.5948,-0.7792,0.5226,-0.2113 +0x17cd1,CUS_0x5a61,August,26,957-33-4427,Musician,34767.12,,3,6,14,6,"Not Specified, Debt Consolidation Loan, Payday Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",25.03137291,18.02099025,8.79,8,Standard,2287.265721,36.42623523,19 Years and 2 Months,Yes,183.1940279,173.2400078,Low_spent_Small_value_payments,243.998605,0,-0.402,0.8376,-1.3536,-0.432,0.8674 +0x17cdd,CUS_0x138d,August,39,568-44-1961,Mechanic,88069.62,7552.135,162,7,5,3,"Payday Loan, Mortgage Loan, and Credit-Builder Loan",4.977850636,8,13.72,7,Good,1096.06,24.55571255,,No,151.489409,,Low_spent_Small_value_payments,200.5150843,0,0.8084,-0.063,-0.1209,1.1134,0.2275 +0x17ce9,CUS_0x4562,August,32,008-06-4996,Doctor,43925.79,3585.4825,8,9,23.88954781,6,"Auto Loan, Auto Loan, Auto Loan, Auto Loan, Student Loan, and Student Loan",35.34802183,25,14.29,10,_,2662.07,27.14502139,8 Years and 8 Months,Yes,1513.393465,71.08280712,High_spent_Large_value_payments,319.7418961,0,0.2546,-1.8042,-0.721,0.0519,-0.5461 +0x17cf5,CUS_0xb65f,August,36,023-22-9697,_______,18630.47,,9,6,33.06745738,3,"Mortgage Loan, Auto Loan, and Payday Loan",,19.04009041,5.42,9,Bad,2881.161488,31.78432649,13 Years and 9 Months,NM,25.62558598,153.8443443,Low_spent_Small_value_payments,238.7636984,0,-0.1955,0.2705,1.8341,0.5286,1.4083 +0x17d01,CUS_0x2d25,August,18,877-32-5574,Entrepreneur,48496.74,,3,7,10,6,"Home Equity Loan, Not Specified, Not Specified, Not Specified, Mortgage Loan, and Credit-Builder Loan",12.25487709,9,17.18,8,_,946.27,41.01773278,11 Years and 9 Months,Yes,168.1035451,61.55660662,High_spent_Large_value_payments,406.8793483,0,0.9687,-0.4322,-1.4295,1.2139,-1.0245 +0x17d0d,CUS_0xbec2,August,45,#F%$D@*&8,Architect,9133.965,,6,10,21.88954781,6,"Personal Loan, Home Equity Loan, Payday Loan, Not Specified, Mortgage Loan, and Personal Loan",10.44349922,9,8.13,9,Standard,2552.06,36.25698441,12 Years and 9 Months,Yes,1365.223207,,Low_spent_Large_value_payments,243.0558564,0,0.2676,1.8808,-0.2058,-1.894,-1.0499 +0x17d19,CUS_0xbd8c,August,56,637-10-9834,Journalist,27987.5,,8,4,3433,2,"Debt Consolidation Loan, and Home Equity Loan",24.48056607,19,10.98,4,_,1046.316859,24.6723223,20 Years and 3 Months,No,39.60099775,,Low_spent_Small_value_payments,221.7053091,0,0.8113,-0.3414,1.6035,-0.5222,-0.6812 +0x17d25,CUS_0x248f,August,30,497-82-1914,Scientist,16380.325,,7,5,12,0,,,8,6.99,0,Standard,1307.87,29.77877065,17 Years and 2 Months,No,0,67.44691497,Low_spent_Small_value_payments,339.5557934,0,0.1314,-0.8876,0.7073,0.288,2.1317 +0x17d31,CUS_0x5dc2,August,35,786-62-1923,Lawyer,14120005,1405.620833,6,6,16,4,"Debt Consolidation Loan, Home Equity Loan, Not Specified, and Payday Loan",15.88595428,12,16.03,8,Standard,2519.74,34.67114477,,Yes,28.06703622,109.7965892,Low_spent_Medium_value_payments,282.6984579,0,0.3499,1.175,-0.4432,0.0592,-0.2493 +0x17d3d,CUS_0x22bf,August,25,682-14-2267,_______,48423.15,4044.2625,8,5,27,9,"Mortgage Loan, Not Specified, Credit-Builder Loan, Payday Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",,29.68650341,7.39,7,Bad,1833.207926,37.35515904,12 Years and 6 Months,Yes,241.6739798,359.1337681,Low_spent_Medium_value_payments,83.61850216,0,-0.6504,1.3132,1.0507,1.1922,-0.4673 +0x17d49,CUS_0x3efb,August,38,564-68-2942,Mechanic,82816.48,6754.373333,8,10,16,6,"Payday Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Not Specified",18.98219604,,23.45,15,Bad,4279,31.79280542,8 Years and 3 Months,Yes,215.8075079,97.56108487,High_spent_Medium_value_payments,612.0687406,0,0.0533,1.0475,0.2245,-0.4118,0.5087 +0x17d55,CUS_0xacbf,August,52,790-29-7012,Scientist,34269.74,2950.811667,4,6,3,4,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Credit-Builder Loan",,10,3.31,6,Good,536.6657525,29.6666129,21 Years and 9 Months,No,108.1668114,11348.4845,High_spent_Small_value_payments,287.6815858,0,1.2705,-0.7258,-0.9733,-0.01,-0.1404 +0x17d61,CUS_0x8363,August,18,523-28-6460,Manager,58564.62,4752.385,5,7,24,3,"Payday Loan, Personal Loan, and Student Loan",23.6717219,18,19.44,12,Standard,2044.39,26.83264476,10 Years and 5 Months,Yes,102.5778042,176.9202023,High_spent_Medium_value_payments,445.7404935,0,-0.7493,-0.6142,0.3365,-0.8764,-1.582 +0x17d6d,CUS_0xb5e9,August,48,868-59-4042,Engineer,23848.02,2234.335,8,3,10,0,,,22,1.36,5,Standard,340.16,37.77429452,,No,0,291.0383757,Low_spent_Small_value_payments,222.3951243,0,-0.407,0.1169,-2.942,0.6457,-0.8011 +0x17d79,CUS_0x2216,August,24,248-06-6300,Mechanic,16559.985,,1,4,2,1,Not Specified,12.32694157,10,9.6,3,Good,680.86,40.41605436,18 Years and 2 Months,No,10.26343839,28.31271358,High_spent_Medium_value_payments,338.323723,0,-0.6802,-0.7567,-0.9105,0.6279,0.2871 +0x17d85,CUS_0x58fb,August,45,343-66-3569,Manager,64915.92,,10,8,24,5,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Student Loan",26.85807291,19,16.34,6,_,1843.38,36.02220782,8 Years and 8 Months,Yes,247.427591,123.2666762,Low_spent_Large_value_payments,423.8717328,0,0.024,1.6053,2.1663,-0.167,0.5989 +0x17d91,CUS_0x5a9e,August,80,080-85-0098,Developer,28647.75,,1076,6,4.288361749,4,"Not Specified, Debt Consolidation Loan, Not Specified, Personal Loan, and Payday Loan",13.04972348,12,17.36,7,_,73.89688646,24.30089131,6 Years and 5 Months,Yes,113.1923154,450.9239477,High_spent_Large_value_payments,315.529524,0,4.6799,-1.4492,-0.431,0.7439,1.7701 +0x17d9d,CUS_0xa2cb,August,44,085-66-0696,Doctor,18355.27,,6,6,33.06745738,6,"Student Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Personal Loan",,18.34515051,3.33,11,Bad,3246.282931,37.50789978,9 Years and 5 Months,Yes,62.56128542,,Low_spent_Small_value_payments,256.5305394,0,0.9489,-0.5908,0.3507,-0.9751,-0.2191 +0x17da9,CUS_0xba1c,August,33,419-82-4747,Lawyer,41757.44,,6,8,27,3,"Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",42.19204253,20.2936336,8.76,9,Bad,1478.529536,37.54236165,17 Years and 11 Months,Yes,100.0696282,117.1090018,High_spent_Small_value_payments,374.6000366,0,0.6029,-0.083,0.1848,-0.2495,0.5301 +0x17db5,CUS_0x86c5,August,32,795-05-5701,Lawyer,79264.86,6863.405,4,7,9,5,"Credit-Builder Loan, Student Loan, Student Loan, Payday Loan, and Student Loan",,17,19.21,5,Standard,440,31.98461414,6 Years and 10 Months,Yes,274.2932042,50.3505256,High_spent_Large_value_payments,601.6967702,0,-1.1673,-2.0656,-2.3926,0.2179,1.0585 +0x17dc1,CUS_0x9a4b,August,40,817-31-4270,Doctor,60379.28,,5,6,18,3,"Personal Loan, Mortgage Loan, and Credit-Builder Loan",,13,6.83,1,Standard,664.4272332,29.42446921,17 Years and 6 Months,No,468.0145984,11768.63569,Low_spent_Small_value_payments,404.0252673,0,0.1521,0.9245,1.4664,-0.1837,0.9631 +0x17dcd,CUS_0x2e9b,August,19,068-74-0168,Engineer,29735.22,2208.935,10,8,26.06745738,4,"Auto Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",35.18633647,18.44369538,-1.23,12,Bad,2158.986249,28.2412868,19 Years and 9 Months,Yes,64.47707649,137.3865194,Low_spent_Small_value_payments,282.3096161,0,0.8388,-0.6168,1.3424,-0.0343,-1.0535 +0x17dd9,CUS_0x4718,August,41,232-98-1128,Doctor,7023.16,,7,3,10,3,"Payday Loan, Payday Loan, and Not Specified",15.78612508,14,12.67,9,Standard,335.3,32.36313882,18 Years and 4 Months,Yes,17.08984254,100.3660282,Low_spent_Small_value_payments,249.2704626,0,0.3588,0.3745,0.9069,-0.6396,0.3469 +0x17de5,CUS_0x70f6,August,34,828-57-7339,Engineer,20374.59,,6,6,25,3,"Debt Consolidation Loan, Personal Loan, and Personal Loan",33.50195022,22.99125468,19.58,9,Standard,1461.566212,27.83126742,12 Years and 10 Months,Yes,46.16207652,58.19957242,!@9#%8,348.1266011,0,-1.1021,0.425,-0.446,0.2877,-0.4723 +0x17df1,CUS_0x4d77,August,46,298-87-8791,Engineer,119875.35,9847.6125,2,2,10.28836175,2,"Student Loan, and Payday Loan",15.61251227,14,3.78,1,Good,1129.179399,28.11413405,33 Years and 6 Months,No,191.5414127,557.7074678,High_spent_Large_value_payments,914.3240417,0,1.399,0.297,-0.3248,-0.0519,-0.765 +0x17dfd,CUS_0x17bb,August,39,691-17-1432,Architect,63115.54,,4,7,2,2,"Credit-Builder Loan, and Auto Loan",17.07396828,9.370277042,,5,Good,1314.190543,28.3471696,,No,54.03375696,275.2009204,Low_spent_Small_value_payments,458.928156,0,1.3324,-0.0497,-0.4457,-0.769,0.2544 +0x17e09,CUS_0x8a44,August,26,740-21-4850,Musician,171572.16,14531.68,2,3,3,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",6.720098128,8,2.1,0,Good,148.1521451,35.06192389,29 Years and 2 Months,NM,369.9356013,,Low_spent_Small_value_payments,654.5117845,0,-0.4438,-0.6966,-0.8986,-0.3451,-0.9337 +0x17e15,CUS_0x1b0f,August,28,726-95-5073,Accountant,33559.26,,6,8,20,3,"Mortgage Loan, Personal Loan, and Personal Loan",33.77426282,25.23823735,,12,Bad,2395.944432,31.41857166,9 Years and 0 Months,Yes,77.7638581,,!@9#%8,260.2703777,0,2.0815,0.3578,0.353,1.2164,-0.4333 +0x17e21,CUS_0x5fc,August,43,322-81-6659,Developer,7309.6,,4,6,4000,3,"Payday Loan, Credit-Builder Loan, and Auto Loan",28.07488465,20,8.39,4,Standard,2111.68,26.10322901,15 Years and 11 Months,Yes,15.23693039,37.05719387,Low_spent_Large_value_payments,275.0192091,0,0.9125,-0.8374,1.2139,2.0696,-0.2006 +0x17e2d,CUS_0x7405,August,18,711-06-5620,Engineer,28681.95,,5,7,6,2,"Auto Loan, and Payday Loan",,15,15.05,6,Standard,1379.62,31.10671824,16 Years and 5 Months,Yes,45.01428541,204.5556052,Low_spent_Small_value_payments,271.2463594,0,0.9738,0.3137,-0.5094,1.0567,-0.6988 +0x17e39,CUS_0x996f,August,49,782-80-0939,Developer,162688.28,13580.35667,0,5,2,2,"Home Equity Loan, and Debt Consolidation Loan",0,0,4.48,2,Good,732.8804257,31.87058977,32 Years and 4 Months,No,178.6439387,115.6412817,High_spent_Large_value_payments,1303.750446,0,-0.8249,0.0735,0.3848,-0.5414,0.3573 +0x17e45,CUS_0x6fd9,August,36,650-15-8388,Journalist,84050.5,7140.208333,3,5,12,3,"Student Loan, Home Equity Loan, and Student Loan",0,0,0.16,199,Good,812.0436905,31.70238932,24 Years and 6 Months,No,175.377781,341.3420148,High_spent_Small_value_payments,493.7550745,0,-0.2461,0.8006,-0.6738,-0.2359,0.634 +0x17e51,CUS_0xc3ce,August,56,767-68-3847,Media_Manager,18995.115,,5,3,6,3,"Student Loan, Debt Consolidation Loan, and Credit-Builder Loan",0,0,7.86,6,_,977.2744199,30.25225938,27 Years and 10 Months,No,44.1793853,168.0557385,Low_spent_Small_value_payments,233.2538311,0,-0.4047,-0.5216,0.8435,0.7702,1.353 +0x17e5d,CUS_0xb121,August,18,225-01-5244,Mechanic,73773.48,,3,6,11,5,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Student Loan",13.01051181,13,16.25,7,Standard,2380.66,27.39311161,10 Years and 0 Months,Yes,256.2255328,140.8020986,High_spent_Large_value_payments,473.7513686,0,-1.4707,-0.2155,0.4141,-0.7775,1.1724 +0x17e69,CUS_0x7414,August,32,913-51-4641,Engineer,48305.18,4314.431667,8,7,7,2,"Payday Loan, and Auto Loan",16.4020746,12,8.19,5,Standard,1410.73,35.56852691,22 Years and 6 Months,Yes,42.22270574,75.35024978,High_spent_Medium_value_payments,563.8702111,0,0.5312,-0.3472,1.1597,-0.0239,0.1674 +0x17e75,CUS_0x80f8,August,36,250-34-7218,Teacher,15668.4,,8,6,22.06745738,9,"Student Loan, Not Specified, Not Specified, Not Specified, Auto Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",28.51494464,16,23.2,10,_,4723.330954,25.37345009,1 Years and 10 Months,Yes,102.9174632,76.85301286,Low_spent_Small_value_payments,241.979236,0,-1.3053,-1.7274,-0.7423,-1.4702,0.7834 +0x17e81,CUS_0x36ac,August,27,454-00-0337,Accountant,10494.44,1048.536667,3,6,7,6,"Student Loan, Mortgage Loan, Mortgage Loan, Student Loan, Payday Loan, and Auto Loan",14.13722914,11,11.07,7,Standard,2579.62,38.53474696,15 Years and 6 Months,Yes,46.16021052,,Low_spent_Small_value_payments,280.7529063,0,0.8984,0.279,-0.4158,0.0543,-0.8331 +0x17e8d,CUS_0xa008,August,80,487-90-7604,Scientist,38047.31,,4,2,12,0,,3.012772244,6,12.53,1,Good,240.3842548,32.19218059,15 Years and 10 Months,No,0,121.7909119,High_spent_Small_value_payments,440.578758,0,-0.5961,-0.1965,-1.2308,-0.1892,-0.8496 +0x17e99,CUS_0x65d3,August,31,193-67-1122,Teacher,7889.11,,7,3,10,4,"Mortgage Loan, Not Specified, Not Specified, and Home Equity Loan",,10,19.88,6,Standard,973.01,33.35966343,11 Years and 9 Months,Yes,15.7463671,23.64178191,High_spent_Medium_value_payments,283.0544343,0,0.3288,-0.8216,-0.2498,1.1341,0.838 +0x17ea5,CUS_0x5446,August,44,264-43-4655,Media_Manager,69895.56,5893.63,3,6,9,4,"Payday Loan, Not Specified, Student Loan, and Home Equity Loan",11.87527156,9.636357367,9.65,3,_,99.43595599,25.47233211,16 Years and 9 Months,No,154.5818868,264.1713493,Low_spent_Large_value_payments,440.6097639,0,-0.3226,-0.5597,0.7559,-0.0141,1.1723 +0x17eb1,CUS_0xf8b,August,40,779-60-0339,Developer,43922.32,,2,6,5.288361749,2,"Student Loan, Not Specified, and Personal Loan",,7,8.67,4,Good,233.83,39.13749585,22 Years and 10 Months,No,66.54092877,747.4550639,Low_spent_Small_value_payments,282.8608017,0,-0.3817,0.2498,0.0243,0.6402,-1.439 +0x17ebd,CUS_0x3f83,August,26,485-35-2240,Media_Manager,36585.12,,7,6,15,1,Home Equity Loan,19.8751863,13.98584979,11.85,0,Standard,1537.658153,24.40083216,30 Years and 8 Months,Yes,21.5645361,,High_spent_Small_value_payments,414.1385952,0,-0.4883,1.3895,-0.8918,-0.7591,-0.4656 +0x17ec9,CUS_0x487a,August,27,795-68-8114,Scientist,58728.06,,8,5,1661,5,"Debt Consolidation Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, and Auto Loan",,21.62882822,,8,_,1392.543461,39.52702965,18 Years and 9 Months,Yes,129.832823,54.69151368,High_spent_Large_value_payments,544.6761634,0,0.5797,-0.1516,2.3989,-1.4016,1.832 +0x17ed5,CUS_0x3f9c,August,18,009-60-0982,Doctor,50657.58,4471.465,8,10,28.88954781,7,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Home Equity Loan",28.30775607,19,17.33,16,Bad,4128.96,34.83027093,,Yes,1601.984681,,Low_spent_Small_value_payments,283.821039,0,1.5,-0.2816,0.5451,-0.9398,-1.031 +0x17ee1,CUS_0x61e4,August,24,864-67-1749,Musician,14013.165,,2,3,4,4,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",1.938631559,5,10.36,6,Good,1404.11,27.82827642,20 Years and 5 Months,No,38.42009022,46.01193396,Low_spent_Small_value_payments,295.6443508,0,-0.829,2.2935,-0.239,1.765,0.0638 +0x17eed,CUS_0x32b8,August,51,456-75-0992,Developer,21960.095,,4,2,7,1,Mortgage Loan,0,3,8.58,4,Good,1092.400884,30.59088976,,No,17.78352045,120.0705443,Low_spent_Small_value_payments,341.1526409,0,1.1072,1.1222,-0.6953,1.8532,0.5108 +0x17ef9,CUS_0xaf56,August,43,808-71-5249,Musician,15081.42,,8,7,33.06745738,9,"Credit-Builder Loan, Not Specified, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Not Specified, Home Equity Loan, and Home Equity Loan",,24.74001599,16.9,12,Bad,4446.138316,25.53643225,,Yes,110.7918354,104.7352598,Low_spent_Large_value_payments,182.2311169,0,0.3479,0.3112,-0.7498,-0.5655,-0.8414 +0x17f05,CUS_0x4c76,August,35,584-57-7987,Scientist,120404.22,10107.685,4,3,10.28836175,4,"Personal Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",7.926530849,10,11.31,2,Good,390.39,35.22363601,27 Years and 8 Months,No,273.2600778,632.7727838,High_spent_Large_value_payments,764.6730994,0,-1.0248,0.6114,-1.6609,-2.164,-0.0404 +0x17f11,CUS_0x3fb,August,34,155-76-2267,Media_Manager,14432.87,1185.739167,3,7,7,1,Home Equity Loan,4.707654455,8,9.47,3,Good,863.5100046,27.33400456,32 Years and 11 Months,No,6.412118995,11317.43155,Low_spent_Small_value_payments,327.7859856,0,-0.0657,-0.7816,-0.0134,0.5348,-0.5463 +0x17f1d,CUS_0x180a,August,45,356-18-9501,Media_Manager,35911.33,3003.610833,3,3,2,2,"Not Specified, and Home Equity Loan",16.98992835,16,5.5,3,Standard,739.82,24.68080569,18 Years and 4 Months,No,39.11288223,250.3737555,!@9#%8,300.8744456,0,0.8414,-0.6736,-1.6302,0.9636,1.8022 +0x17f29,CUS_0x3769,August,47,328-70-5076,Media_Manager,127160.94,10216.88601,4,7,3,2,"Home Equity Loan, and Personal Loan",1.662776201,3,3.55,3,Good,559.07,25.44566865,27 Years and 9 Months,No,759.9857464,325.0578191,High_spent_Medium_value_payments,872.8899195,0,-0.2299,1.508,-1.2636,-0.6014,-1.6411 +0x17f35,CUS_0x9efd,August,28,886-97-0783,Manager,8446.24,909.1866807,8,5,16,3,"Student Loan, Credit-Builder Loan, and Mortgage Loan",,19,4.46,11,Bad,1425.23,38.45733647,19 Years and 3 Months,Yes,80.25169765,120.0935727,Low_spent_Small_value_payments,248.4067156,0,1.4593,-0.6439,-1.1097,-0.7499,0.9167 +0x17f41,CUS_0x93d2,August,23,184-40-6690,Journalist,16931.7,,8,5,24.06745738,3,"Personal Loan, Student Loan, and Debt Consolidation Loan",33.76169952,18.21502473,1.17,15,Bad,2012.611198,27.81444713,16 Years and 10 Months,Yes,25.88400432,107.785152,Low_spent_Small_value_payments,295.3080558,0,-0.3258,0.6571,0.5229,0.9776,0.445 +0x17f4d,CUS_0x66ce,August,46,200-14-2930,Entrepreneur,15685.095,,3,7,7,0,,,18,3.93,5,Standard,350.98,32.76147985,,No,0,,Low_spent_Small_value_payments,349.2374822,0,1.4661,0.2185,-1.8577,0.5081,-0.9069 +0x17f59,CUS_0x15c5,August,39,680-70-8654,Doctor,21585.13,,7,4,17,4,"Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",19.75457998,,15.55,4,_,83.55,34.03123234,17 Years and 6 Months,Yes,67.60250044,,Low_spent_Small_value_payments,221.8276261,0,-0.8624,0.423,1.6342,-2.1361,1.2553 +0x17f65,CUS_0xa03c,August,49,537-32-8667,Scientist,93898.05,,5,2,0.288361749,4,"Payday Loan, Not Specified, Auto Loan, and Auto Loan",,11,3.43,1,Good,31.44,28.96001365,22 Years and 5 Months,No,256.2692048,612.9435315,High_spent_Medium_value_payments,574.7084748,0,1.7088,-0.509,0.0464,0.7317,-1.1704 +0x17f71,CUS_0x8cc8,August,43,646-25-9153,Manager,124564.6,10207.38333,3,4,5.288361749,6,"Auto Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",,19,11.63,5,Standard,849.21,34.93363518,13 Years and 3 Months,Yes,472.5923675,507.1063169,High_spent_Large_value_payments,700.9771099,0,-0.0688,0.8626,-0.0155,-0.9472,-0.3179 +0x17f7d,CUS_0x8526,August,21,327-13-6605,_______,95596.35,8205.3625,0,3,2,3,"Student Loan, Auto Loan, and Student Loan",,1,4.98,6,_,943.5155264,34.76880416,29 Years and 3 Months,No,200.5593655,169.8382235,High_spent_Large_value_payments,711.9652868,0,-0.3378,-1.9497,-0.2601,0.2813,0.2771 +0x17f89,CUS_0x3dfa,August,27,958-06-6120,Manager,82194.02,6799.501667,0,3,1.288361749,2,"Personal Loan, Personal Loan, and Personal Loan",0.93995472,4,8.62,3,Good,824.2179415,23.95375678,29 Years and 3 Months,No,119.4221881,841.8240082,High_spent_Small_value_payments,448.6845896,0,-1.1293,-1.1996,0.8792,-1.7848,1.3625 +0x17f95,CUS_0x1600,August,30,871-12-8955,Media_Manager,130173.93,10703.8275,1,4,6.288361749,4,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",10.07551829,9.731329838,0.85,0,Good,755.1744414,40.58759768,,NM,239.0399586,634.5523312,High_spent_Medium_value_payments,866.7279212,0,-0.9746,1.1665,-1.351,0.27,-0.0508 +0x17fa1,CUS_0xb17e,August,49,180-32-2217,Mechanic,36549.68,,0,1052,12,0,,,10.54366175,4.58,7,Good,1168.927772,39.76350743,23 Years and 0 Months,No,0,318.609879,Low_spent_Small_value_payments,278.8707877,0,-0.0149,-0.0144,0.7299,0.0979,1.1553 +0x17fad,CUS_0x9318,August,45,224-72-0646,Teacher,15381.59,1409.799167,8,10,31.95700519,7,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Personal Loan, and Auto Loan",41.35299668,20.65988672,9.49,11,Bad,2129.582405,26.46160243,7 Years and 3 Months,Yes,1373.018266,115.8815399,Low_spent_Small_value_payments,221.0297417,0,0.8558,-0.4326,-1.3423,1.3367,-1.2528 +0x17fb9,CUS_0x52aa,August,21,414-35-1640,_______,55235.76,4705.98,7,10,33.06745738,6,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",,25.91872678,,12,_,4105.989407,29.55414285,12 Years and 8 Months,Yes,239.7944164,369.0536762,Low_spent_Small_value_payments,125.0296194,0,-1.6967,-0.1917,-0.2924,0.7751,-0.0549 +0x17fc5,CUS_0x7cfb,August,24,836-40-8633,Accountant,69905.36,6090.446667,6,5,14,3,"Student Loan, Student Loan, and Credit-Builder Loan",24.93094797,19,,1,_,1216.15,26.74604323,,No,160.9015739,71.06151994,High_spent_Large_value_payments,617.0815729,0,0.1634,-0.446,0.9537,0.2317,-0.2922 +0x17fd1,CUS_0x40e1,August,49,394-24-7342,Scientist,42235.77,,0,3,8,4,"Home Equity Loan, Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",16.04231956,10.84747984,13.83,1,Good,1498.596595,31.77921724,31 Years and 3 Months,No,82.56287651,80.52405142,High_spent_Medium_value_payments,453.3778221,0,-0.4868,-1.3962,1.0278,1.7258,-0.4277 +0x17fdd,CUS_0x2e43,August,40,965-75-3593,Journalist,10651.65,615.6375,7,6,9,4,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",,20,16.95,5,Standard,1325.65,36.92791554,19 Years and 5 Months,Yes,25.23289645,43.03086106,Low_spent_Large_value_payments,263.2999925,0,-1.0059,-0.7107,0.7308,-1.0637,-1.0367 +0x17fe9,CUS_0x7bc5,August,45,054-18-3107,Doctor,17641.87,,8,6,34.06745738,100,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",,11.74016319,8.29,11,Standard,2085.508263,31.70843919,,Yes,47.24458377,35.92670631,High_spent_Medium_value_payments,270.7240053,0,1.0958,-0.5844,-0.446,0.216,-0.0167 +0x17ff5,CUS_0x2438,August,80,726-17-1913,Mechanic,43183.56,3851.63,5,5,13,4,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",,10,14.2,9,Standard,263.56,27.15315875,19 Years and 10 Months,Yes,106.8676993,93.87100644,High_spent_Medium_value_payments,434.4242943,0,0.3966,0.6709,0.4208,0.7922,2.7203 +0x18001,CUS_0x98ec,August,42,037-19-6890,Architect,19677,1659.144473,9,5,30,5,"Auto Loan, Student Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,,5.52,8,Bad,1749.128573,37.10826048,20 Years and 2 Months,Yes,176.0412845,111.5278792,Low_spent_Large_value_payments,271.1113631,0,0.084,-0.3989,-0.5557,0.0769,1.2273 +0x1800d,CUS_0x6b56,August,34,165-16-8474,Scientist,9667.645,950.6370833,6,5,26,9,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Student Loan, and Student Loan",,19,17.37,11,Bad,2439.00065,36.98989043,13 Years and 5 Months,NM,68.5604039,78.7252632,Low_spent_Medium_value_payments,236.4195411,0,-0.1999,1.2942,0.5409,-0.5468,-1.8515 +0x18019,CUS_0x377b,August,50,#F%$D@*&8,Scientist,116156.1,9448.675,5,5,4.288361749,2,"Home Equity Loan, and Personal Loan",9.345899135,9,1.13,3,Good,1100.049806,29.55665453,20 Years and 11 Months,No,193.1944018,718.2727549,Low_spent_Large_value_payments,766.4549803,0,0.7536,0.624,-0.2145,-0.7453,-0.1992 +0x18025,CUS_0xa7d0,August,36,451-13-9180,_______,70913.4,6126.45,8,4,12,3,"Home Equity Loan, Auto Loan, and Mortgage Loan",,12,3.24,2,Good,841.5170051,33.24878132,22 Years and 8 Months,No,60212,94.76718341,High_spent_Large_value_payments,617.5165602,0,-0.0262,0.3602,0.3942,-1.1874,-0.4866 +0x18031,CUS_0xc144,August,20,015-72-5418,_______,29043.01,,8,7,15,7,"Student Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",24.00256696,18,17.63,9,Standard,1312.143223,23.06834394,17 Years and 10 Months,Yes,153.656041,,Low_spent_Small_value_payments,107.513353,0,-0.4641,0.3839,-0.2063,-3.3197,1.1938 +0x1803d,CUS_0x35bd,August,34,042-56-3090,Media_Manager,16290256,,7,6,26,6,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Payday Loan",35.35360292,18,12.09,8,_,2168.54,29.96471981,11 Years and 3 Months,NM,76.90780862,11.69442175,High_spent_Large_value_payments,299.064103,0,0.1666,-0.9601,1.1672,1.324,1.1843 +0x18049,CUS_0x1ef9,August,49,008-77-4539,Musician,150256.72,12641.39333,1,6,1,0,,,1,2.69,2,Good,1378.476894,38.83133471,16 Years and 8 Months,No,0,1378.892749,Low_spent_Small_value_payments,372.8738225,0,-0.7084,-0.0734,0.43,-0.9364,-1.1062 +0x18055,CUS_0x289b,August,39,543-28-4296,_______,17153.69,1206.474167,6,8,22,3,"Credit-Builder Loan, Home Equity Loan, and Payday Loan",51.79164852,27.67838957,11.78,14,Bad,1900.718991,24.30971311,19 Years and 6 Months,Yes,58051,10000,Low_spent_Small_value_payments,247.4411732,0,0.2939,-0.5626,0.8663,0.5672,-1.3023 +0x18061,CUS_0xbb7c,August,51,226-65-5300,Entrepreneur,32420.82,2605.735,3,4,14,4,"Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Payday Loan",,,5.68,3,Standard,873.63,32.34467716,22 Years and 0 Months,Yes,105.1309762,37.39534463,High_spent_Medium_value_payments,368.0471792,0,-0.6906,-0.3862,-0.9532,-0.6502,-0.8164 +0x1806d,CUS_0xb45a,August,40,451-51-4200,Accountant,145175.4,12016.95,3,1,6,1,Personal Loan,1.45237251,3,5.58,2,Good,1132.06874,33.23961592,,No,67.83706538,484.0461541,High_spent_Small_value_payments,961.4548354,0,0.6968,0.4465,-0.8227,1.5348,0.8079 +0x18079,CUS_0x5cbb,August,44,309-82-5174,Accountant,106882.84,,6,6,18,0,,26.01314094,19,10.88,4,_,332.47,32.74785402,26 Years and 5 Months,Yes,0,64.51111299,High_spent_Large_value_payments,1063.77922,0,-0.1269,1.6339,2.8873,1.0168,0.0343 +0x18085,CUS_0x3393,August,40,061-14-3234,Accountant,99363.88,8222.323333,6,3,15,1,Debt Consolidation Loan,7.614907091,9,18.67,9,Standard,1099.31,27.26144948,31 Years and 3 Months,Yes,57.37360803,291.0521068,High_spent_Medium_value_payments,723.8066185,0,-1.8019,-0.2886,-0.1565,0.1361,-1.1861 +0x18091,CUS_0x6fbb,August,35,638-02-6164,Architect,58176.6,4501.453268,6,4,13,3,"Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",,14,11.38,1213,Standard,1457.8,35.28098676,14 Years and 10 Months,NM,672.6773036,,Low_spent_Small_value_payments,495.4055579,0,-0.2482,-0.2428,0.4435,-0.2353,1.0707 +0x1809d,CUS_0x1698,August,19,622-91-3070,Media_Manager,9221.875,598.4895833,6,5,35.06745738,4,"Auto Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",29.04572013,16,16.48,11,Standard,2597.440954,36.26181663,16 Years and 4 Months,NM,28.98776262,66.92892025,Low_spent_Small_value_payments,227.2119875,0,-0.4581,0.0667,0.766,-2.1305,-0.8435 +0x180a9,CUS_0x66d7,August,49,068-15-0323,Journalist,14528.37,,3,5,10,2,"Payday Loan, and Student Loan",0.064145543,2,5.5,5,Good,228.1923583,34.49113372,29 Years and 8 Months,NM,21.0813893,139.2465458,Low_spent_Medium_value_payments,274.7765044,0,-0.0642,1.1987,0.2415,0.6385,-0.7352 +0x180b5,CUS_0x96b3,August,36,242-10-5844,Lawyer,61181.88,5192.49,7,6,18,9,"Not Specified, Debt Consolidation Loan, Mortgage Loan, Auto Loan, Auto Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",,28.21881462,3.53,11,Bad,2555.147114,26.76165176,15 Years and 3 Months,Yes,241.5704574,198.3827283,High_spent_Medium_value_payments,329.2958143,0,-1.1022,0.6102,0.0367,-0.4734,-0.9624 +0x180c1,CUS_0x5357,August,33,428-88-4219,Journalist,13961.155,1322.429583,6,3,20,4,"Debt Consolidation Loan, Mortgage Loan, Student Loan, and Debt Consolidation Loan",21.1661621,17,3.73,0,Standard,1406.02,23.45845808,28 Years and 2 Months,NM,40.17141519,159.4702309,Low_spent_Small_value_payments,222.6013122,0,-0.4903,-0.3236,-0.2012,0.3821,0.6435 +0x180cd,CUS_0xa2f8,August,50,219-21-7724,Accountant,67691.12,5700.926667,5,3,0.288361749,0,Mortgage Loan,,3,2.23,4,_,176.43,30.14016966,19 Years and 9 Months,No,34.98723717,462.7185105,High_spent_Large_value_payments,732.32438,0,0.3419,-0.2564,0.3978,-0.7466,2.0243 +0x180d9,CUS_0x40c,August,46,092-31-4708,Lawyer,20884.58,,6,6,15,100,Home Equity Loan,15.8817568,12,16.15,4,Standard,22.45,33.20687581,24 Years and 3 Months,Yes,12.48000835,62.09113329,High_spent_Medium_value_payments,360.967025,0,-1.3521,-0.2469,0.0511,1.256,0.406 +0x180e5,CUS_0x407c,August,24,318-25-1020,Writer,29570.45,,0,4,1,4,"Student Loan, Student Loan, Personal Loan, and Auto Loan",0,1,6.2,0,_,194.21,28.58455013,,No,62.25754575,55.21883171,High_spent_Medium_value_payments,371.4440392,0,0.2734,-0.9358,0.1239,0.9612,-0.511 +0x180f1,CUS_0xbe89,August,34,014-76-0876,Lawyer,110138.4,9419.2,4,3,11,3,"Mortgage Loan, Home Equity Loan, and Mortgage Loan",16.63474742,13,1.03,5,Standard,523.1405253,36.81833998,21 Years and 6 Months,No,178.1870634,713.797498,Low_spent_Medium_value_payments,428.2300547,0,-0.671,0.5638,0.3542,-0.7423,-1.8101 +0x180fd,CUS_0xac59,August,18,856-51-9653,Engineer,11169.595,667.7995833,7,4,10,0,,11.19540848,11,14.5,5,_,303.16,22.86731538,17 Years and 10 Months,Yes,0,89.61846593,Low_spent_Small_value_payments,267.1614924,0,-0.387,0.1224,-0.012,0.23,-1.9816 +0x18109,CUS_0x647e,August,44,433-00-3832,Manager,11688.93,,6,7,19,4,"Mortgage Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,10,5.3,7,Standard,950.833801,35.70398662,29 Years and 3 Months,No,31.7821377,,Low_spent_Large_value_payments,256.57493,0,1.4958,1.543,0.0625,-0.7334,0.9432 +0x18115,CUS_0xb36c,August,44,391-87-5581,Media_Manager,67413.2,5824.766667,9,10,16,4,"Mortgage Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",25.21047484,12.38830903,16.18,16,Standard,1847.515152,33.01574231,13 Years and 5 Months,Yes,178.8507621,243.4437481,High_spent_Medium_value_payments,410.1821565,0,-0.5127,-0.1574,-0.1094,-0.4254,0.5807 +0x18121,CUS_0x3b59,August,23,#F%$D@*&8,Lawyer,25659.34,,5,3,15,4,"Mortgage Loan, Personal Loan, Not Specified, and Credit-Builder Loan",22.39161449,16,4.19,2,Standard,1323.93,25.1922449,25 Years and 5 Months,No,54.98197115,163.0402241,Low_spent_Small_value_payments,295.8056381,0,-0.3169,0.4965,-1.372,0.671,1.2028 +0x1812d,CUS_0x8274,August,47,968-42-8366,Journalist,20574.87,,6,6,20,2,"Mortgage Loan, and Payday Loan",24.03272481,19,-1.38,7,Standard,642.59,25.91192394,33 Years and 4 Months,No,27.51493608,66.36018561,Low_spent_Large_value_payments,338.1821283,0,-0.9839,0.5382,1.9515,-0.6333,-0.9828 +0x18139,CUS_0x4052,August,44,302-67-3713,Manager,73366.36,5950.863333,8,9,27,8,"Home Equity Loan, Payday Loan, Personal Loan, Personal Loan, Not Specified, Payday Loan, Credit-Builder Loan, and Mortgage Loan",29.12697572,17,23.68,11,Bad,3697.099943,23.42563603,5 Years and 5 Months,Yes,285.3685403,262.823256,High_spent_Small_value_payments,341.6930701,0,0.4129,-0.3988,-0.24,0.1733,0.9682 +0x18145,CUS_0x7d6c,August,24,424-12-8828,Scientist,17307708,7093.165,5,5,12,2,"Mortgage Loan, and Credit-Builder Loan",,15,1.25,4,Standard,195.535808,39.44869725,28 Years and 0 Months,No,72.63396894,426.4388745,High_spent_Small_value_payments,525.6272305,0,1.5854,-0.3651,0.6278,-0.4535,0.8548 +0x18151,CUS_0x4de0,August,48,939-14-1314,Doctor,30804.39,2448.0325,2,5,3,4,"Personal Loan, Auto Loan, Personal Loan, and Payday Loan",0,4,0.54,5,_,884.38,35.28285824,,No,80.71921301,82.55918513,Low_spent_Medium_value_payments,361.5248519,0,-0.5953,-1.0377,1.3062,-0.4864,-0.4134 +0x1815d,CUS_0xad46,August,43,977-72-9713,Engineer,19148.93,1639.744167,4,7,10,3,"Student Loan, Payday Loan, and Auto Loan",9.226025659,9,2.14,8,Standard,1237.12,35.01046208,23 Years and 8 Months,No,24.95721973,,Low_spent_Medium_value_payments,346.3799879,0,-1.2663,1.2315,-0.5197,-0.8842,-2.6027 +0x18169,CUS_0x50c6,August,35,452-74-8218,Doctor,85583.02,7366.918333,4,1,2,3,"Auto Loan, Payday Loan, and Payday Loan",90,2521,9.51,2,Good,40.30256803,24.10881034,18 Years and 9 Months,No,184.6764784,115.8027992,High_spent_Large_value_payments,688.7910753,0,-0.9221,-0.753,0.8582,0.3482,-1.6947 +0x18175,CUS_0x6569,August,20,038-66-1703,Engineer,121698.48,9892.54,3,3,20,6,"Personal Loan, Auto Loan, Auto Loan, Mortgage Loan, Home Equity Loan, and Not Specified",15.6409645,13,10.67,9,Standard,1203.86,30.38334231,8 Years and 2 Months,Yes,559.5169091,116.369582,High_spent_Large_value_payments,553.3675089,0,0.8556,-1.0601,0.7893,1.6931,0.4558 +0x18181,CUS_0x76fc,August,21,252-29-1918,Mechanic,65735.46,5665.955,7,7,9.288361749,4,"Payday Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",8.339557207,9,18.55,7,_,106.96,31.98223249,33 Years and 5 Months,NM,129.2619426,606.0501497,High_spent_Medium_value_payments,501.2208687,0,0.2065,0.4581,-0.6539,-0.0458,-0.8738 +0x1818d,CUS_0x692a,August,24,870-49-7946,Doctor,20940.64,1874.053333,7,6,19,6,"Auto Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Personal Loan, and Not Specified",,538.147615,26.18,9,Bad,3067.077282,25.26458358,14 Years and 0 Months,Yes,96.08792668,79.22077917,Low_spent_Small_value_payments,302.0966275,0,0.2318,-0.3615,-1.4431,-0.3437,-0.8728 +0x18199,CUS_0x2270,August,35,075-00-2076,Scientist,17732.92,,7,8,24.06745738,8,"Not Specified, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Mortgage Loan, Student Loan, and Not Specified",48.76826289,26.13510402,2.46,9,Bad,5847.001022,25.64110933,9 Years and 4 Months,Yes,77.92988444,166.9441242,Low_spent_Small_value_payments,162.6815695,0,0.479,1.6796,-0.095,-1.1567,0.721 +0x181a5,CUS_0x7ee3,August,44,136-11-5410,Musician,150625.48,12336.12333,4,5,12,2,"Student Loan, and Credit-Builder Loan",5.322669843,6,7.36,7,Good,898.13,35.49048513,25 Years and 9 Months,No,169.0839708,213.086516,High_spent_Large_value_payments,1091.441847,0,-0.0801,0.5775,-0.8151,0.0518,-0.5982 +0x181b1,CUS_0x2fe7,August,34,847-59-5093,_______,18708.73,1373.060833,10,5,21.06745738,8,"Credit-Builder Loan, Payday Loan, Payday Loan, Payday Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",44.12111496,26.64090289,23.19,13,Bad,4602.664049,29.84791853,3 Years and 11 Months,NM,62.41071156,75.60517591,High_spent_Small_value_payments,232.5699079,0,0.7773,-0.8754,-0.4977,0.2558,0.4962 +0x181bd,CUS_0x9448,August,41,369-50-5456,Engineer,79090.74,6676.895,2,3,11.28836175,2,"Personal Loan, Credit-Builder Loan, and Mortgage Loan",14.54047243,,5.66,3,Good,753,27.47767881,27 Years and 0 Months,NM,155.4418675,10419.93746,High_spent_Large_value_payments,664.9998477,0,0.7715,-0.4089,-0.0874,-1.2475,-0.9204 +0x181c9,CUS_0xa7b5,August,41,024-67-5371,Engineer,52754.28,4205.19,9,6,27,6,"Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",39.78487722,22.07682408,8.33,11,Bad,1835.486952,32.50971251,15 Years and 6 Months,Yes,142.9151914,72.01362794,High_spent_Medium_value_payments,455.5901807,0,-0.4491,0.3772,-0.5113,-0.8002,-0.9395 +0x181d5,CUS_0xa79e,August,39,#F%$D@*&8,Musician,35917.34,,6,4,8,3,"Home Equity Loan, Not Specified, and Not Specified",,9,5.57,5,_,1213.82,24.44008968,18 Years and 2 Months,NM,70.33046053,229.3032176,Low_spent_Small_value_payments,306.2774885,0,0.4911,1.7049,1.1638,0.3057,-0.5147 +0x181e1,CUS_0xa774,August,36,948-36-8177,Doctor,11924.59,1156.715833,3,5,9,0,,14.81049147,13,18.46,3,_,347.93,25.04298962,29 Years and 10 Months,Yes,0,,Low_spent_Small_value_payments,303.2455111,0,0.0156,0.965,-0.5631,-0.4456,1.5738 +0x181ed,CUS_0x6277,August,39,177-35-4923,Lawyer,108457.74,9298.145,6,7,13,4,"Home Equity Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",,,8.42,4,Standard,694.5539926,29.81671767,15 Years and 6 Months,Yes,238.8504432,120.5143828,High_spent_Medium_value_payments,820.449674,0,-0.6648,-1.6486,-1.1242,-0.4012,-0.0144 +0x181f9,CUS_0x3b01,August,27,930-26-2816,Doctor,7709.355,845.44625,7,4,32,5,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Student Loan",,,14.92,8,Standard,1675.719121,36.25394404,,Yes,27.68500223,63.02510441,!@9#%8,263.8345184,0,-0.4978,1.2485,1.0803,0.4418,-0.7986 +0x18205,CUS_0x3d6d,August,29,911-25-7637,Doctor,84001.66,6555.609083,1,3,10.28836175,100,"Student Loan, Credit-Builder Loan, and Auto Loan",0,3,5.05,3,Good,173.9593765,38.01656616,22 Years and 5 Months,No,394.2230916,794.9437576,High_spent_Small_value_payments,437.8978771,0,-1.6366,-1.4552,-0.0671,-0.0143,-0.3391 +0x18211,CUS_0x891b,August,42,575-35-1886,Scientist,42121.92,,1364,5,6.288361749,2,"Not Specified, Personal Loan, and Auto Loan",0,1,11.15,5,Good,152.1364012,36.56346315,,No,89.251932,,Low_spent_Medium_value_payments,427.2945422,0,-1.0539,-0.5556,1.3428,-0.2778,-0.46 +0x1821d,CUS_0x99ae,August,45,207-98-9735,_______,19489.28,1388.106667,6,6,21.06745738,9,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",36.62926544,20.48087754,23.6,15,_,4349.633369,23.98088238,13 Years and 0 Months,Yes,138.3883724,127.2387601,!@9#%8,136.4632461,0,0.9888,0.3419,1.4652,-0.1256,-1.5045 +0x18229,CUS_0x7cfa,August,18,311-68-4022,Accountant,18729.06,,10,8,20.95700519,9,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, Home Equity Loan, and Payday Loan",44.09991515,26.30874476,5.99,15,_,3142.498321,28.09685197,15 Years and 10 Months,Yes,1454.724428,177.6501415,Low_spent_Small_value_payments,91.25056087,0,-0.2059,1.3061,0.9746,0.1448,-0.1902 +0x18235,CUS_0xaf5c,August,45,657-15-0070,Entrepreneur,21370.185,,0,6,1,1,Payday Loan,0,1,2.5,7,Good,897.82,33.0352345,17 Years and 3 Months,No,15.56348736,77.67816896,Low_spent_Small_value_payments,404.5432187,0,-1.5509,0.5785,0.1977,0.4593,0.824 +0x18241,CUS_0xc02d,August,58,721-63-9568,Mechanic,115724.4,9868.7,918,6,10,2,"Credit-Builder Loan, and Payday Loan",18.10771896,15,3.54,8,Good,1309.101345,41.34345276,28 Years and 0 Months,No,68278,92.70034184,High_spent_Large_value_payments,997.9428803,0,0.2642,-1.0301,-0.3423,-0.6889,-0.0304 +0x1824d,CUS_0x68cb,August,19,650-66-0190,Developer,28623.51,,8,6,9,3,"Payday Loan, Not Specified, and Auto Loan",31.44483794,23,16.13,4,_,176.43,32.44240926,6 Years and 8 Months,Yes,52.94422187,10000,High_spent_Small_value_payments,314.1291453,0,-0.6523,0.9225,0.3293,0.8489,0.2248 +0x18259,CUS_0x559e,August,29,588-53-0534,Engineer,57872.7,4669.725,1665,5,28,5,"Home Equity Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",29.13103153,24.1251091,9.37,9,Standard,1410.558855,36.23096886,,Yes,215.4274566,214.0229506,Low_spent_Medium_value_payments,317.5220928,0,-0.2481,-1.5428,-0.342,0.5772,-0.5585 +0x18265,CUS_0x3aa7,August,26,774-43-5922,Writer,36825.11,,5,3,9,1,Mortgage Loan,21.87007965,15.43892913,4.86,4,Good,594.9565078,31.04495701,18 Years and 10 Months,No,24.31983572,47.86664045,High_spent_Medium_value_payments,477.5894405,0,-0.644,0.4976,0.9099,-0.391,-0.2243 +0x18271,CUS_0xb9ec,August,25,972-15-6195,Developer,28835.68,2373.973333,2,5,8,4,"Student Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",7.149850167,7,1.87,5,Good,1068.87,29.3187981,28 Years and 4 Months,No,76419,10000,Low_spent_Small_value_payments,337.3146216,0,-0.4834,0.1455,-1.3768,-1.5448,-0.6105 +0x1827d,CUS_0xa22b,August,22,207-76-1040,Journalist,88062.28,7411.523333,4,3,0.288361749,0,,0,0,16.35,0,Good,356.3615112,34.35295196,32 Years and 9 Months,NM,0,605.8683198,High_spent_Large_value_payments,821.270748,0,1.3317,-0.6598,0.8767,0.5876,0.2399 +0x18289,CUS_0x2314,August,23,052-13-2800,Writer,17097.565,1461.797083,3,4,10,5,"Not Specified, Student Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",13.25384477,9,7.86,6,_,948.08,26.81683553,18 Years and 4 Months,Yes,49.2796263,10000,Low_spent_Small_value_payments,219.6202769,0,-0.1173,0.5591,-1.4686,0.5203,-0.1028 +0x18295,CUS_0x47d0,August,47,900-40-7972,Journalist,61035.39,4821.2825,4,6,6,2,"Not Specified, and Home Equity Loan",14.30311506,12,2.98,8,_,1338.69,26.75502446,32 Years and 6 Months,Yes,52.823754,53.62589787,!@9#%8,615.6785981,0,-0.317,-0.2765,-1.3429,0.4431,0.641 +0x182a1,CUS_0xb932,August,25,739-85-4956,Doctor,19949.34,1378.445,8,7,21.06745738,6,"Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",38.46839925,23,17.83,10,Bad,3242.287215,31.0559325,5 Years and 5 Months,Yes,63.14272761,,High_spent_Small_value_payments,216.2699542,0,0.1754,1.0014,-0.5875,-2.6995,0.7417 +0x182ad,CUS_0x7148,August,32,938-65-7628,Engineer,14828.19,,5,5,17,5,"Credit-Builder Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Auto Loan",26.56721648,17,19.21,10,Standard,2646.26,26.57814956,13 Years and 9 Months,Yes,86.73101695,44.8254904,High_spent_Small_value_payments,301.7596515,0,-1.2171,0.3002,-1.0886,0.9055,-0.6678 +0x182b9,CUS_0x7bf2,August,55,216-32-5901,Architect,81583,,1,7,9.288361749,2,"Mortgage Loan, Not Specified, and Not Specified",,7,9.68,6,_,328.19,38.19122418,30 Years and 8 Months,No,139.6310346,564.2961136,!@9#%8,624.7686461,0,0.0604,0.9316,0.1091,-1.8107,-1.1047 +0x182c5,CUS_0xa134,August,30,707-42-6251,Journalist,37605.04,2868.753333,9,7,27.06745738,6,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",30.02731754,20,23.8,11,Bad,3736.590954,32.6372831,10 Years and 9 Months,Yes,140.7913101,,Low_spent_Small_value_payments,208.0907523,0,-0.528,-2.5382,0.5861,1.2064,2.0436 +0x182d1,CUS_0x6273,August,27,213-04-5662,Developer,40739.49,,511,6,9,1,Personal Loan,8.716680545,9,0.59,0,Good,664.3191655,29.86678524,18 Years and 0 Months,No,26.48100994,183.437068,High_spent_Small_value_payments,409.7347144,0,1.6868,0.9944,1.2618,-0.969,-0.6978 +0x182dd,CUS_0x9dbe,August,24,927-39-1272,_______,86255.8,7427.983333,1363,6,19,2,"Credit-Builder Loan, and Payday Loan",19.89628299,,13.53,6,Standard,875.22,28.76955626,13 Years and 9 Months,Yes,10269,179.6385099,High_spent_Large_value_payments,698.625322,0,0.3248,-1.8701,-0.1818,-1.06,-0.3666 +0x182e9,CUS_0x5707,August,36,196-02-2984,_______,15382.875,,1,7,3,3,"Payday Loan, Personal Loan, and Not Specified",10.07361655,10,3.98,8,Good,893.47,32.49765851,20 Years and 5 Months,No,23.90755423,75.07711329,Low_spent_Large_value_payments,323.3059575,0,-0.738,-0.1465,0.5089,-0.1259,-1.9207 +0x182f5,CUS_0x2bec,August,22,306-30-1135,Lawyer,34565.73,,1,1,3,2,"Payday Loan, and Payday Loan",,5,9.67,7,Good,1302.932312,28.77675738,28 Years and 6 Months,NM,33.14214135,82.01608015,High_spent_Large_value_payments,433.9124858,0,-0.156,0.757,0.527,1.9261,-1.2195 +0x18301,CUS_0x5474,August,60,616-36-4039,Engineer,57260.5,4625.708333,1,6,11,1,Home Equity Loan,0,3,6.95,4,_,845.5108162,39.56371937,,No,35.28927825,82.76475555,High_spent_Large_value_payments,593.0306864,0,0.0849,-0.1713,0.1767,1.0285,0.9898 +0x1830d,CUS_0x98f6,August,80,#F%$D@*&8,Scientist,135200.12,11437.67667,3,5,1617,0,,13.60515498,9.306402949,2.78,2,Good,949.5691279,30.78324785,21 Years and 6 Months,No,0,307.9291045,Low_spent_Large_value_payments,1105.838562,0,-0.9025,-2.2941,-0.6987,-0.3194,-0.0802 +0x18319,CUS_0x3195,August,28,238-89-8489,Engineer,177947.28,,2,7,953.2883617,0,,0,1,8.17,3,Good,1284.4,36.22061595,30 Years and 10 Months,No,0,1056.167486,Low_spent_Large_value_payments,1143.963975,0,-0.8985,0.0593,-0.3233,-0.7099,-0.2481 +0x18325,CUS_0x385a,August,43,970-60-9789,Entrepreneur,14667.26,,6,4,18.28836175,0,Personal Loan,,21,,5,Standard,80.61,37.44414088,19 Years and 6 Months,No,11.66951923,516.1444523,Low_spent_Small_value_payments,309.1506562,0,2.0362,1.0381,0.3977,-0.41,-1.8333 +0x18331,CUS_0xaf3,August,52,472-46-7482,Mechanic,33346.92,2696.002504,5,3,1,0,,5.522990093,8,3.82,0,Good,350.1370073,28.50793263,16 Years and 5 Months,No,301.907496,276.174725,Low_spent_Large_value_payments,331.9602312,0,-0.2079,-0.5682,0.8402,0.6595,0.1066 +0x1833d,CUS_0x3a9e,August,30,943-28-6353,Developer,91223.48,,7,4,286,2,"Personal Loan, and Mortgage Loan",14.84114888,12,6.45,8,_,811.71,27.61315662,31 Years and 2 Months,No,101.3886602,10000,!@9#%8,279.1652153,0,0.1661,0.465,0.0877,0.8358,0.7264 +0x18349,CUS_0x7d57,August,20,332-96-1312,Entrepreneur,122434.23,10004.8525,3,2,4.288361749,2,"Home Equity Loan, Payday Loan, and Credit-Builder Loan",14.8692361,,7.33,3,Good,279.7959938,27.38901959,16 Years and 5 Months,No,297.0492441,562.1436705,High_spent_Large_value_payments,822.5595158,0,-0.1606,-1.4871,0.108,-1.2568,-0.835 +0x18355,CUS_0xaf99,August,20,923-19-2422,Writer,44143.08,,6,1103,19,1,Payday Loan,29.3840094,20.0086008,15.66,7,_,624.5963516,33.4250642,17 Years and 2 Months,Yes,29.10560449,192.5714968,Low_spent_Medium_value_payments,449.5818987,0,2.2558,-2.1022,-0.8702,1.538,0.0993 +0x18361,CUS_0x4767,August,39,746-70-7097,Mechanic,33732,2730,8,3,19,2,"Not Specified, and Payday Loan",,16,14.07,8,Standard,398.04,27.15243163,31 Years and 11 Months,NM,49.38931505,83.10281682,!@9#%8,390.5078681,0,0.9543,-0.8871,1.4682,1.0239,0.8084 +0x1836d,CUS_0x3415,August,25,691-10-7068,Manager,7472.54,917.7116667,4,6,27.06745738,2,"Auto Loan, and Student Loan",23.45280166,16,10.5,8,_,2747.580954,41.68832907,20 Years and 5 Months,Yes,36812,,Low_spent_Small_value_payments,244.7489535,0,1.0154,-2.1218,0.0685,-1.6847,1.0614 +0x18379,CUS_0x9352,August,48,606-00-7941,Lawyer,60865.05,5221.0875,5,7,3,3,"Not Specified, Student Loan, and Mortgage Loan",10.66256359,8,3.23,0,Standard,1188.49,33.80584533,25 Years and 2 Months,No,140.2099338,,High_spent_Medium_value_payments,546.5322874,0,0.6495,0.2186,1.3834,1.3323,-0.1971 +0x18385,CUS_0x60ca,August,27,158-17-5520,Mechanic,50794.18,4089.848333,3,5,8,0,,,10,1.94,3,Good,146.9387752,40.82106811,23 Years and 8 Months,No,0,,High_spent_Medium_value_payments,520.3740565,0,-0.7088,-0.4319,-0.5698,-0.7714,-1.249 +0x18391,CUS_0xee6,August,28,743-66-3711,Lawyer,16873.115,,7,3,11,1,Payday Loan,24.09446626,20,8.49,3,_,1143.31,35.04254011,32 Years and 2 Months,No,11.22590147,156.1895065,Low_spent_Small_value_payments,280.7938837,0,-0.9326,2.1031,-0.696,-0.0664,2.8699 +0x1839d,CUS_0x6d43,August,25,221-07-3129,Developer,18538.55,1379.879167,7,8,33,7,"Student Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",47.60652717,26.12121696,1.04,15,Bad,4368.50822,31.75522935,10 Years and 11 Months,Yes,73.27023595,40.68471884,High_spent_Small_value_payments,284.0329619,0,0.7072,-0.9106,-0.3183,-0.8451,-0.6695 +0x183a9,CUS_0x32a9,August,27,708-76-8725,Manager,37679.19,,1,2,12,1,Not Specified,8.368590767,10,1.51,1,_,715.3038534,39.96058564,22 Years and 3 Months,NM,18.55221916,49.17358031,High_spent_Large_value_payments,514.6656725,0,1.6862,-0.0845,-0.3675,-0.8364,-0.3719 +0x183b5,CUS_0x1297,August,46,#F%$D@*&8,Manager,57738.06,4881.505,10,8,30.88954781,9,"Payday Loan, Personal Loan, Payday Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Payday Loan",,28.66866773,14.27,11,Bad,4473.444965,25.74214266,13 Years and 8 Months,Yes,1619.76758,53.82117765,High_spent_Medium_value_payments,370.2316613,0,0.1951,-1.2373,-0.0292,0.9517,-0.4589 +0x183c1,CUS_0x53fa,August,34,894-27-7899,Lawyer,59714.2,5136.183333,4,5,4.288361749,0,Home Equity Loan,,23,12.45,6,Standard,425.17,31.09276094,18 Years and 0 Months,Yes,27.77999485,590.4977147,High_spent_Medium_value_payments,565.2780848,0,-0.8239,0.8379,-0.6867,1.3304,0.1132 +0x183cd,CUS_0x6f0,August,26,614-75-6938,Doctor,19192.14,,10,51,22.95700519,6,"Personal Loan, Student Loan, Student Loan, Student Loan, Student Loan, and Not Specified",,17,23.69,11,Bad,4431.180954,42.31414685,12 Years and 4 Months,Yes,1388.82195,36.9458913,High_spent_Large_value_payments,258.7162891,0,1.3531,-0.0925,0.5763,-0.2091,-0.8861 +0x183d9,CUS_0x945f,August,24,206-49-5885,Writer,34996.86,2886.405,7,7,9.288361749,4,"Home Equity Loan, Home Equity Loan, Not Specified, and Student Loan",7.30661103,8,7.94,7,Standard,143.42,33.91951152,8 Years and 2 Months,Yes,112.4069612,10419.93746,High_spent_Small_value_payments,372.2128239,0,0.8779,0.1214,-0.6882,-0.1375,0.8418 +0x183e5,CUS_0x16a6,August,26,#F%$D@*&8,_______,20833.08,1607.09,4,5,17,5,"Mortgage Loan, Personal Loan, Mortgage Loan, Not Specified, and Student Loan",10.00643621,8,18.73,8,_,1231.29,33.92197133,11 Years and 8 Months,Yes,67.48557378,26.49535852,High_spent_Large_value_payments,306.7280677,0,-1.3482,1.2515,-0.9293,-0.7147,-0.8 +0x183f1,CUS_0x317e,August,23,527-06-4214,Mechanic,62008.35,,10,7,21,3,"Credit-Builder Loan, Credit-Builder Loan, and Not Specified",,18.88166765,11.31,12,Standard,2582.346578,38.83137415,9 Years and 11 Months,Yes,127.3921471,,!@9#%8,327.049833,0,-0.3503,1.0079,0.6197,-0.2075,1.3053 +0x183fd,CUS_0xb46b,August,35,686-19-5711,Entrepreneur,17831.05,,6,5,16,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",,21.74527824,9.4,6,Standard,1929.744476,30.09461303,7 Years and 2 Months,Yes,42.7930036,113.2848025,Low_spent_Small_value_payments,272.2142772,0,0.9503,-0.0453,0.0986,0.1432,0.96 +0x18409,CUS_0xc30f,August,45,152-48-2575,Architect,77565.57,6663.7975,3,5,7.288361749,2,"Credit-Builder Loan, Payday Loan, and Not Specified",14.41220122,,11.8,1,Good,439.7503265,31.19451969,33 Years and 2 Months,No,118.6705985,499.7192435,!@9#%8,716.5504209,0,-0.5521,-2.6307,-1.4385,-1.1948,0.8079 +0x18415,CUS_0x24e7,August,41,479-09-3777,Scientist,29346.17,2368.514167,3,3,1,1,Payday Loan,1.049488525,1.19681451,,,Good,819.3102023,31.78811952,32 Years and 0 Months,NM,18.99723826,24.70254687,High_spent_Large_value_payments,433.1516315,0,-1.2588,-0.131,-1.4196,0.5498,0.548 +0x18421,CUS_0x2ad5,August,23,481-12-3959,Teacher,136726.68,11299.89,0,7,2298.288362,2,"Debt Consolidation Loan, and Not Specified",,12,0.35,6,Good,1299.02,32.08296961,29 Years and 0 Months,NM,174.292375,817.8447984,High_spent_Medium_value_payments,807.7892876,0,1.6515,0.6581,1.6529,-1.721,-0.424 +0x1842d,CUS_0x5fc3,August,31,680-89-3665,Journalist,21884,,8,6,13,4,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",19.23381054,,7.39,0,Standard,372.4111898,38.10466867,33 Years and 3 Months,Yes,54.75375841,38.23583855,High_spent_Medium_value_payments,336.8776327,0,0.3056,-0.5664,1.0895,-0.4936,-1.2866 +0x18439,CUS_0x204a,August,18,206-58-3439,Writer,65410.68,5282.89,9,10,33,6,"Student Loan, Student Loan, Debt Consolidation Loan, Not Specified, Auto Loan, and Auto Loan",26.45374584,19,27.3,8,_,2996.6,34.09697276,6 Years and 5 Months,Yes,299.01112,10000,High_spent_Medium_value_payments,282.8076726,0,0.7178,-1.7782,-1.4263,1.0808,0.8262 +0x18445,CUS_0xabe7,August,26,277-94-8379,Media_Manager,19695.09,1803.2575,8,6,19,2,"Auto Loan, and Not Specified",9.637839379,8,8.42,6,Standard,1450.6,39.52094293,14 Years and 9 Months,NM,23.04177846,50.90953938,High_spent_Medium_value_payments,356.3744322,0,1.7909,-1.2732,1.1059,-0.3975,-0.0723 +0x18451,CUS_0x35c3,August,34,278-60-7972,Musician,36379.24,2838.603333,8,8,15,3,"Home Equity Loan, Personal Loan, and Auto Loan",9.968279953,10.2687021,18.65,9,Standard,2343.95458,25.23424507,20 Years and 0 Months,Yes,81.03830215,,Low_spent_Small_value_payments,257.9663615,0,-0.8034,0.5218,1.1908,0.7034,0.777 +0x1845d,CUS_0xbcbe,August,47,152-41-0084,Lawyer,17228.775,1460.73125,4,3,20,100,,30.20250434,21,16.53,4,Standard,862.64,34.10714251,,Yes,0,,Low_spent_Small_value_payments,281.9864603,0,-0.2586,1.4551,-1.9951,-0.6424,0.3535 +0x18469,CUS_0x3033,August,61,159-13-7415,Teacher,97635.87,6907.982009,3,4,12,3,"Student Loan, Personal Loan, and Auto Loan",12.33850535,11,7.17,4,Good,1139.65934,35.30276377,25 Years and 11 Months,No,1203.206142,921.4031251,Low_spent_Small_value_payments,67.578264,0,-0.9017,-0.5027,0.6105,-0.0152,0.821 +0x18475,CUS_0x7cec,August,20,341-58-6733,Journalist,23265.78,,7,4,16,2,"Home Equity Loan, and Personal Loan",11.59400063,11,11.24,0,_,1092.14,39.41002925,18 Years and 4 Months,Yes,28.83854075,143.6962214,Low_spent_Small_value_payments,327.8467379,0,1.5444,0.2719,0.6475,2.0448,1.2062 +0x18481,CUS_0x727f,August,32,207-69-0724,Teacher,82183.34,,4,1,11,4,"Payday Loan, Not Specified, Credit-Builder Loan, and Personal Loan",6.19442915,7,0.05,5,Good,1421.54,35.33445799,19 Years and 11 Months,No,756.8837434,106.1800667,High_spent_Medium_value_payments,568.8438298,0,1.5889,-0.2284,0.5751,0.35,0.0521 +0x1848d,CUS_0xa06b,August,18,074-05-5968,Architect,14146.59,,3,5,2997,1,Personal Loan,0.953731767,4,8.74,5,Good,1184.974922,33.79316077,32 Years and 11 Months,No,7.904920537,41.61764278,Low_spent_Medium_value_payments,353.7138917,0,-0.397,1.2785,-0.0335,-0.5445,0.3464 +0x18499,CUS_0x5111,August,35,373-26-0824,Writer,10525.355,,4,6,3,0,,8.385215984,8.464515736,5.99,0,_,666.4219204,37.56983291,30 Years and 6 Months,No,0,32.39595342,Low_spent_Large_value_payments,302.1153382,0,1.0734,-0.7997,-0.7563,0.1368,-0.2064 +0x184a5,CUS_0x18e8,August,32,961-57-1916,Lawyer,19633.03,1760.085833,6,8,28.88954781,7,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",28.01953995,19,20.72,11,_,4381.85,32.31899021,5 Years and 8 Months,Yes,1398.251303,111.9242219,High_spent_Small_value_payments,231.5029769,0,-0.4374,-0.1519,-0.8803,-0.2765,-0.035 +0x184b1,CUS_0x48c6,August,48,604-84-9912,Scientist,44895.61,3697.300833,1,6,6,4,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",90,3108.194007,7.37,1,Good,817.3738752,24.98314707,24 Years and 6 Months,No,83.71856411,247.7312372,Low_spent_Medium_value_payments,318.280282,0,0.2256,0.3525,0.1691,0.8395,-0.0273 +0x184bd,CUS_0xc2a1,August,38,940-39-9470,Engineer,20175.44,1782.286667,10,7,24.06745738,3,"Personal Loan, Payday Loan, and Student Loan",34.67940688,21.55107785,16.18,6,Bad,2067.632002,35.26450045,19 Years and 3 Months,Yes,30.59452087,26.06557723,High_spent_Medium_value_payments,344.8482806,0,0.8822,0.2007,1.0134,0.4186,-0.6616 +0x184c9,CUS_0x624c,August,27,591-74-3545,Engineer,15125.64,,3,4,28,2,"Credit-Builder Loan, and Home Equity Loan",29.43304628,23.59961776,17.79,9,Standard,2621.767138,34.30065487,13 Years and 2 Months,Yes,24.44645492,,High_spent_Small_value_payments,332.75557,0,0.8362,2.3765,1.2825,-0.9659,-0.1687 +0x184d5,CUS_0x4b93,August,20,493-05-9842,Lawyer,112924.72,9161.393333,6,5,20,7,"Personal Loan, Payday Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,17,17.6,9,Standard,1307.64,25.60901661,8 Years and 2 Months,Yes,541.8938211,223.6811419,High_spent_Small_value_payments,410.5643703,0,0.2408,0.2246,0.8533,-0.8916,-0.0149 +0x184e1,CUS_0x7a73,August,45,090-60-4528,_______,17075.22,,7,6,23,5,"Credit-Builder Loan, Not Specified, Mortgage Loan, Payday Loan, and Personal Loan",,21.62223463,22.67,11,Bad,3919.402614,31.93514576,11 Years and 9 Months,NM,57.60755549,128.7013655,!@9#%8,257.584579,0,-0.6511,0.9263,-0.162,-0.9526,-0.6792 +0x184ed,CUS_0x633b,August,40,158-88-3834,Entrepreneur,98136.72,,2,1,5,4,"Debt Consolidation Loan, Credit-Builder Loan, Student Loan, and Personal Loan",0,3,5.37,9,_,1063.122519,32.26850984,22 Years and 3 Months,No,200.8820833,492.8491699,High_spent_Small_value_payments,455.7405564,0,-0.0259,0.9226,1.5005,-0.1609,-0.2792 +0x184f9,CUS_0x5c2f,August,38,091-78-1652,Architect,24879.05,2085.254167,3,4,11,3,"Personal Loan, Personal Loan, and Credit-Builder Loan",27.46807095,22.29027121,16.73,6,Standard,547.9357139,27.75198796,9 Years and 6 Months,Yes,49.10550756,152.545593,Low_spent_Small_value_payments,296.8743161,0,-0.3115,-0.2435,-1.4953,1.9485,-0.365 +0x18505,CUS_0x5f21,August,42,879-61-5577,Scientist,95685.21,7864.7675,3,4,9,0,,13.84688414,12.05728684,2.28,8,Good,539.0106299,37.17423615,24 Years and 5 Months,No,0,488.0035021,High_spent_Small_value_payments,558.4732479,0,-1.8945,-2.0669,2.1953,2.3106,-0.5916 +0x18511,CUS_0x7127,August,44,#F%$D@*&8,Writer,89937.72,,2,6,9.288361749,2,"Home Equity Loan, and Debt Consolidation Loan",0.988799084,4,4.72,3,Good,1071.052566,28.75271139,25 Years and 8 Months,No,572.5463475,675.9885575,Low_spent_Medium_value_payments,669.7569096,0,0.7918,1.1969,-0.0112,-1.8167,0.1156 +0x1851d,CUS_0x8525,August,20,931-22-4417,Manager,53451.48,4397.29,8,10,35.95700519,7,"Student Loan, Auto Loan, Payday Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",23.1730727,,6.32,10,Bad,5276.196925,34.3842527,,Yes,1549.098706,371.6592716,Low_spent_Small_value_payments,87.92065285,0,1.3999,1.3576,0.4267,-0.1394,0.2318 +0x18529,CUS_0x33ea,August,20,729-59-5840,Accountant,9566.58,,5,7,14,5,"Home Equity Loan, Mortgage Loan, Payday Loan, Auto Loan, and Payday Loan",15.88399147,14,12.47,11,Standard,1233.05,30.11485276,15 Years and 5 Months,NM,39.51316415,,Low_spent_Large_value_payments,253.279059,0,1.4764,1.3539,-0.3632,1.0341,-0.7621 +0x18535,CUS_0x1b71,August,29,899-16-9688,Architect,16726.62,1204.885,6,10,27.95700519,7,"Auto Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",36.69957606,22,20.38,11,Bad,3105.530954,33.61922887,4 Years and 8 Months,Yes,1396.849465,62.05337179,High_spent_Small_value_payments,200.5352942,0,0.3844,-0.4247,-1.0598,0.5477,0.0537 +0x18541,CUS_0xa610,August,38,548-77-4930,Accountant,62616.99,,7,5,21.06745738,7,"Mortgage Loan, Mortgage Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",24.72563289,14,28.98,7,Bad,4643.660954,33.51011776,,Yes,322.5482114,105.0587327,High_spent_Medium_value_payments,322.781018,0,-0.4909,-0.6656,-1.9764,-0.2393,0.2678 +0x1854d,CUS_0x69f6,August,25,691-36-3623,Developer,7890.515,932.5429167,8,5,28,9,"Not Specified, Credit-Builder Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Student Loan, Payday Loan, and Personal Loan",,22.63867156,8.14,12,Bad,2677.454591,29.77973105,15 Years and 3 Months,Yes,47247,10.31583837,High_spent_Medium_value_payments,302.9225735,0,-0.1937,-0.0816,-0.5502,1.3807,0.2282 +0x18559,CUS_0x648b,August,37,476-22-9217,Lawyer,20946.94,,8,7,34,4,"Mortgage Loan, Payday Loan, Student Loan, and Not Specified",14.8106746,10.13513486,16.52,10,_,2468.741157,30.61836614,16 Years and 11 Months,NM,46.6304954,82.68364547,!@9#%8,344.4436925,0,-0.8221,-0.1983,-0.7806,-0.4284,0.0206 +0x18565,CUS_0x43de,August,26,539-56-3950,Scientist,67218.98,5024.91415,3,5,9.288361749,100,,14.73520595,13,1.88,5,Good,609.0159357,38.59804711,31 Years and 3 Months,No,713.6675164,968.6608314,Low_spent_Medium_value_payments,376.7993706,0,0.2483,-1.2098,-1.2122,-0.9594,-0.7922 +0x18571,CUS_0x786d,August,20,675-63-0499,Engineer,132284.67,10726.7225,4,3,2.288361749,2,"Personal Loan, and Personal Loan",16.24872394,,7.37,7,_,1409.97,28.68414182,25 Years and 3 Months,No,173.6733423,1453.164832,Low_spent_Small_value_payments,155.7715366,0,-0.1017,1.6278,0.3298,-0.0247,0.3095 +0x1857d,CUS_0x9126,August,19,580-64-9646,Entrepreneur,19375.76,,4,3,7.067457376,1,Not Specified,,19,7.81,4,_,1277.130954,27.50162818,27 Years and 8 Months,Yes,10.51161882,128.7939232,Low_spent_Small_value_payments,287.3388367,0,-0.5012,-0.2414,0.8056,0.4847,-0.5938 +0x18589,CUS_0x9c55,August,38,877-77-1295,Musician,8137.58,,6,1276,17,3,"Personal Loan, Mortgage Loan, and Home Equity Loan",,13,7.7,6,Standard,998.45,35.61035997,6 Years and 10 Months,Yes,14.30291411,68.26836013,Low_spent_Small_value_payments,262.8418924,0,0.1315,-0.3459,0.2512,-0.7707,0.3735 +0x18595,CUS_0xbcf,August,44,420-94-4649,Lawyer,179239.6,15204.63333,5,4,0.288361749,2,"Personal Loan, and Personal Loan",,8,4.67,4,Good,1246.12,34.55880658,,No,208.7973776,638.1084119,High_spent_Large_value_payments,1333.495005,0,-0.1761,-0.0683,-0.3844,-2.0925,0.8311 +0x185a1,CUS_0x610a,August,52,572-99-2496,Mechanic,22171.25,1638.604167,4,5,17,100,"Payday Loan, Auto Loan, and Home Equity Loan",24.71430789,20,15.6,5,Standard,1195.92,25.22240737,16 Years and 9 Months,Yes,53.61074078,,High_spent_Medium_value_payments,319.2321568,0,0.9383,-0.0758,0.1457,0.1577,0.2755 +0x185ad,CUS_0xbd2c,August,44,064-72-7992,Scientist,29647.92,,6,4,19,4,"Home Equity Loan, Personal Loan, Auto Loan, and Auto Loan",8.903776873,10,16.9,5,Standard,516.42,35.95065939,18 Years and 0 Months,NM,82.41882696,126.7395076,Low_spent_Small_value_payments,313.8076655,0,0.1914,0.0974,0.6043,0.8881,0.9443 +0x185b9,CUS_0x831c,August,36,585-07-1420,Engineer,30296,,10,8,22.88954781,6,"Student Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Personal Loan",,24.31596918,4.14,10,Bad,3098.120204,34.55612295,3 Years and 6 Months,Yes,1448.057764,,Low_spent_Small_value_payments,189.6757691,0,-0.9162,1.5957,0.6858,0.3393,1.4189 +0x185c5,CUS_0xb3a,August,20,769-19-8784,Mechanic,41391.06,,7,4,10,0,,17.06943277,9.609513225,10.4,8,Standard,833.5065689,25.01698454,11 Years and 8 Months,Yes,0,102.9785388,High_spent_Medium_value_payments,482.8469612,0,2.0018,-1.0167,-0.354,-1.5892,0.5325 +0x185d1,CUS_0xa68e,August,18,089-19-7596,_______,26065.91,,7,5,9,2,"Home Equity Loan, and Credit-Builder Loan",15.78775724,16,14.87,6,Standard,388.24,24.83284517,8 Years and 6 Months,Yes,22.152922,,Low_spent_Small_value_payments,351.640177,0,1.87,-0.4541,-0.3153,1.4605,-0.963 +0x185dd,CUS_0x55fd,August,35,905-14-5788,Scientist,8291.845,946.9870833,8,9,29,5,"Personal Loan, Auto Loan, Student Loan, Payday Loan, and Student Loan",35.74654833,26,23.81,15,Bad,4662.8,29.35028102,4 Years and 9 Months,Yes,28.41658569,12.79079225,High_spent_Large_value_payments,293.4913304,0,-0.7264,-0.5224,-0.0797,-1.34,-1.7185 +0x185e9,CUS_0x1271,August,46,842-43-2499,Architect,99337.28,,5,5,17,6,"Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",,,13.01,5,Standard,255.82,36.04675771,16 Years and 6 Months,Yes,338.6524239,312.2186551,High_spent_Medium_value_payments,455.4395877,0,-0.4485,-0.6536,0.0638,2.1798,-0.7368 +0x185f5,CUS_0x5981,August,26,816-61-3047,Doctor,10197.525,,6,6,20,100,"Mortgage Loan, Payday Loan, Home Equity Loan, Personal Loan, Personal Loan, and Mortgage Loan",,19.30446996,21.76,9,_,2918.517353,31.71769049,,Yes,31.71253295,43.643754,Low_spent_Small_value_payments,316.2230881,0,-2.13,0.059,-1.0636,-0.4512,-1.371 +0x18601,CUS_0x913e,August,53,859-57-0091,Scientist,109901.58,9423.465,2,4,8.288361749,2,"Debt Consolidation Loan, and Personal Loan",4.081078977,6,1.35,0,Good,820.550322,30.50305635,23 Years and 6 Months,No,132.4904118,515.0081716,High_spent_Large_value_payments,966.2307394,0,0.3743,-1.6873,1.2822,0.2338,-0.4387 +0x1860d,CUS_0x2a08,August,43,#F%$D@*&8,Doctor,20039.58,,6,6,17,6,"Mortgage Loan, Student Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Mortgage Loan",28.754824,20.81773684,2.28,6,Bad,2746.983574,32.90948189,20 Years and 6 Months,Yes,64.03853363,24.95282102,High_spent_Large_value_payments,337.3051454,0,0.3873,0.6881,0.0626,-0.9975,-0.3466 +0x18619,CUS_0x112d,August,26,774-29-5843,Accountant,14728.21,,10,9,32.95700519,100,"Payday Loan, Personal Loan, Not Specified, Not Specified, and Personal Loan",28.82100107,12.35647288,9.27,7,_,2882.353931,32.98932142,16 Years and 11 Months,Yes,1365.069095,,Low_spent_Small_value_payments,266.6634954,0,-0.1285,-0.4323,-0.1317,-0.6678,-1.3738 +0x18625,CUS_0x6bbd,August,27,162-72-0685,Developer,24390.29,,3,6,3,3,"Not Specified, Payday Loan, and Student Loan",22.37837861,16,4.7,7,Good,523.63,33.55843808,33 Years and 0 Months,No,37.76089593,25.18564524,!@9#%8,363.3058755,0,-0.5052,1.4974,0.6439,-0.0522,-0.0039 +0x18631,CUS_0xc72e,August,38,094-54-0952,Lawyer,32125.54,,7,192,23,3,"Mortgage Loan, Auto Loan, and Auto Loan",21.49855592,16.54862842,8.07,10,_,2781.184718,36.71263697,6 Years and 5 Months,Yes,59.33092218,34.88359293,High_spent_Large_value_payments,401.6983182,0,-0.901,0.1389,0.0562,-0.8766,1.3221 +0x1863d,CUS_0x9860,August,43,633-33-7100,Developer,39135,3036.25,6,10,20.88954781,6,"Payday Loan, Student Loan, Not Specified, Auto Loan, Payday Loan, and Auto Loan",,27.69230337,3.34,14,Bad,1397.606809,26.94365228,7 Years and 9 Months,Yes,1469.025425,,High_spent_Medium_value_payments,295.6843182,0,-1.7148,-0.0615,1.4742,2.0145,-0.4402 +0x18649,CUS_0x2ecc,August,24,219-77-3608,Musician,73020.54,6183.045,2,5,6,3,"Auto Loan, Not Specified, and Personal Loan",,3.63830854,2.98,2,Good,1522.745579,36.98494378,27 Years and 5 Months,No,172.8941861,250.8681014,High_spent_Small_value_payments,454.5422125,0,0.8753,0.0795,-0.4443,0.068,0.8519 +0x18655,CUS_0x62c8,August,34,756-60-6274,Journalist,16310.21,,6,6,30.06745738,7,"Not Specified, Student Loan, Personal Loan, Not Specified, Home Equity Loan, Auto Loan, and Not Specified",23.24215872,12.91355246,19.08,1545,Standard,1720.208798,37.58940774,15 Years and 9 Months,Yes,85.5140287,122.9864792,Low_spent_Small_value_payments,211.2976208,0,0.6176,0.9454,-1.454,0.6784,-0.2854 +0x18661,CUS_0xc4a1,August,35,#F%$D@*&8,Teacher,16227.03,,6,8,21,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Payday Loan",19.47284427,13.95258716,19.2,14,Standard,1700.526575,36.03425091,15 Years and 6 Months,Yes,49.99764238,48.15549664,Low_spent_Large_value_payments,336.472111,0,-0.4864,0.5473,-0.3706,1.2645,-1.6245 +0x1866d,CUS_0x4b86,August,22,942-96-5677,Manager,17565.58,,10,8,32.88954781,8,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Payday Loan",24.45735116,18.72700925,19.67,12,Bad,3309.372798,33.55194627,6 Years and 10 Months,Yes,1424.120904,193.9513759,Low_spent_Small_value_payments,136.4774725,0,1.0818,0.5525,0.0433,-2.408,0.577 +0x18679,CUS_0x7494,August,25,260-03-9307,Entrepreneur,58609.64,4763.136667,1,2,2.288361749,2,"Personal Loan, Auto Loan, and Auto Loan",14.55189062,,2.02,3,Good,683.3752988,36.48845198,30 Years and 11 Months,No,140.9765753,630.0735106,High_spent_Small_value_payments,413.9443622,0,0.5649,2.3371,1.3869,1.7906,-1.1743 +0x18685,CUS_0x87b8,August,31,468-89-4698,Scientist,23054.08,,3,3,16,0,,,8,19.85,1,Standard,573.89,25.53356356,26 Years and 4 Months,Yes,0,137.6362123,!@9#%8,347.581121,0,-0.2029,-0.9111,1.8333,-0.1335,-1.1741 +0x18691,CUS_0x5002,August,23,913-93-5303,Developer,63402.2,,5,3,18,4,"Mortgage Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",19.33650708,,14.05,5,Standard,2359.156524,38.90836813,19 Years and 6 Months,Yes,152.1059057,302.2807664,High_spent_Small_value_payments,353.1649946,0,0.6049,0.1026,-1.2977,-0.8965,0.141 +0x1869d,CUS_0x343d,August,42,045-12-6597,Architect,16021.14,,8,6,16,4,"Payday Loan, Auto Loan, Home Equity Loan, and Personal Loan",10.11959952,8,7.85,10,Standard,2136.31,28.71812335,16 Years and 9 Months,Yes,30.63140525,,Low_spent_Small_value_payments,330.0906838,0,1.8083,-1.4546,1.425,1.7519,0.6759 +0x186a9,CUS_0x76ad,August,80,964-38-3338,Mechanic,29704.64,,4,7,13,5,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",21.71276902,17,7.1,7,Standard,1713.04,25.26424573,14 Years and 9 Months,Yes,68.74078854,33.62931649,High_spent_Medium_value_payments,384.1685616,0,-0.0414,0.7694,-0.7471,0.9233,0.7334 +0x186b5,CUS_0x9fab,August,41,#F%$D@*&8,Architect,27738.99,,5,7,20,0,,,9,0.87,0,Standard,425.01,26.24118249,,NM,0,87.36443755,High_spent_Medium_value_payments,374.6938124,0,1.9695,0.1844,-0.5919,-0.3383,-0.5211 +0x186c1,CUS_0x79c5,August,18,#F%$D@*&8,Journalist,132727.92,10954.66,4,7,4.288361749,100,Home Equity Loan,19.47470539,17,17.66,6,Standard,1286.07,32.24475642,15 Years and 10 Months,Yes,79.79339629,863.4026266,High_spent_Medium_value_payments,822.2074381,0,0.3231,-2.8989,0.3214,-0.8913,0.6102 +0x186cd,CUS_0x2c94,August,18,169-58-1270,_______,31816.07,2442.339167,4,5,17.28836175,4,"Mortgage Loan, Auto Loan, Home Equity Loan, and Student Loan",15.63380222,14,13.8,6,Standard,4.82,29.98871391,31 Years and 10 Months,Yes,105.4263916,478.2247721,High_spent_Large_value_payments,320.520214,0,0.0202,-1.1733,1.9568,-1.5088,-0.2514 +0x186d9,CUS_0xb8af,August,44,641-83-1438,Journalist,59893.26,,6,3,9,1,Auto Loan,,19,3.89,2,Good,1330.244943,31.95101883,21 Years and 8 Months,NM,40.78819746,167.3141543,High_spent_Small_value_payments,573.8101549,0,0.6457,-1.2187,-0.6076,-0.9615,0.3104 +0x186e5,CUS_0xa99a,August,55,670-51-6382,Teacher,177846.68,14855.55667,4,6,11.28836175,0,,0,2,8.57,5,Good,166.75,34.13448914,26 Years and 4 Months,No,0,684.5759415,High_spent_Large_value_payments,1460.917186,0,-0.8196,1.289,0.4676,1.1569,1.0381 +0x186f1,CUS_0xae08,August,23,973-35-3846,Accountant,63523.48,,7,7,19,5,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",,20.05527102,8.39,10,Standard,2124.353024,37.0383178,16 Years and 0 Months,NM,237.0730194,83.53382655,!@9#%8,463.2554874,0,-0.8945,-0.3973,-0.1264,0.4109,-0.6791 +0x186fd,CUS_0x4587,August,52,734-40-0202,Accountant,56751.72,4572.31,7,6,19,4,"Auto Loan, Student Loan, Mortgage Loan, and Student Loan",29.90717256,21.33002429,4,1,Standard,873.4868971,27.43213152,31 Years and 10 Months,No,121.4457918,281.9354516,Low_spent_Large_value_payments,323.8497566,0,-0.7933,-1.1128,1.0328,-0.7449,-1.7471 +0x18709,CUS_0x320f,August,28,198-54-4740,Teacher,132324.18,11027.015,5,5,980.2883617,4,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",10.70288672,11,11.79,8,Good,1284.448414,27.47506297,19 Years and 5 Months,No,378.7296617,1068.321684,Low_spent_Large_value_payments,431.3266149,0,-0.386,-0.2468,-2.0046,0.9486,-0.4663 +0x18715,CUS_0x5bf8,August,54,216-78-7750,Doctor,66882.74,5656.561667,4,3,3,3,"Payday Loan, Payday Loan, and Personal Loan",2.67468297,5,5.69,7,Good,1472.91,32.46657944,17 Years and 10 Months,No,108.432262,,Low_spent_Medium_value_payments,217.064607,0,-1.2108,0.0534,-0.2808,-1.1836,0.2517 +0x18721,CUS_0x5a92,August,42,486-47-1751,Doctor,124534.38,10621.865,1,1,8.288361749,2,"Mortgage Loan, Auto Loan, and Home Equity Loan",,14,9.55,4,_,704.0450308,37.66639752,18 Years and 0 Months,NM,174.338527,1094.867942,High_spent_Small_value_payments,546.6809237,0,-1.4571,-0.9054,-0.9097,-0.4625,-0.2367 +0x1872d,CUS_0x19c9,August,31,534-54-1028,Entrepreneur,14542.3,,6,9,22,6,"Auto Loan, Not Specified, Auto Loan, Not Specified, Payday Loan, and Student Loan",27.55995761,18,15.22,8,Bad,4479,34.83054103,1 Years and 2 Months,Yes,63.11198958,131.4092562,Low_spent_Medium_value_payments,233.5645875,0,-1.2042,-0.4983,0.2203,0.1422,-1.7723 +0x18739,CUS_0x22b7,August,41,366-16-4398,Doctor,24446.05,,4,7,20,1,Not Specified,,10,4.64,9,Standard,760.95,27.32804087,19 Years and 6 Months,Yes,142.244785,26.00878826,High_spent_Large_value_payments,379.8097811,0,-2.2137,0.2907,-1.4046,-1.3262,0.7502 +0x18745,CUS_0x1e4d,August,19,669-94-5422,Entrepreneur,146729.64,12495.47,3,4,16.28836175,2,"Personal Loan, Credit-Builder Loan, and Auto Loan",20.3768208,18,6.91,3,Standard,90.89,25.64600443,17 Years and 2 Months,No,343.1160893,1624.343368,Low_spent_Medium_value_payments,,0,0.2752,0.0477,1.0217,-0.8376,-1.5624 +0x18751,CUS_0xb7fa,August,34,936-71-6162,Entrepreneur,30386.2,2650.183333,7,8,22.06745738,9,"Credit-Builder Loan, Payday Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",,22,17.53,,Bad,5126.240954,37.54246319,8 Years and 4 Months,Yes,193.7258522,65.82026373,Low_spent_Large_value_payments,248.7519295,0,-0.0131,0.4331,-1.1785,-1.2177,-0.1281 +0x1875d,CUS_0xa64d,August,42,190-66-0409,Doctor,30117.42,2312.785,7,7,30.06745738,3,"Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",25.91304577,9.529522867,10.69,11,Standard,1942.793876,34.62138911,6 Years and 0 Months,Yes,51.14064749,10000,High_spent_Medium_value_payments,347.6258889,0,0.0951,-1.3445,0.6633,0.3747,0.2611 +0x18769,CUS_0x3a06,August,32,079-88-9608,Journalist,30560.73,,5,4,3,4,"Credit-Builder Loan, Student Loan, Personal Loan, and Personal Loan",,,3.64,2,Good,1219.791712,35.1918129,25 Years and 2 Months,No,73.51315401,275.7479926,Low_spent_Large_value_payments,217.8989136,0,-0.5741,-0.8884,0.2114,-0.4365,1.0951 +0x18775,CUS_0x353a,August,38,018-27-6780,Teacher,15785.04,1369.42,8,10,19.06745738,2,"Payday Loan, and Mortgage Loan",,18.1832904,4.44,,Bad,1815.131054,27.27985538,7 Years and 11 Months,NM,17.37924048,49.82856753,!@9#%8,293.013904,0,0.9992,0.3731,-0.9296,0.8562,-1.4518 +0x18781,CUS_0xab9c,August,39,229-52-6885,_______,132370.2,11263.85,3,4,3.288361749,2,"Auto Loan, Auto Loan, and Mortgage Loan",4.65483667,6,6.34,7,Good,924.8586254,37.57103368,,No,209.7894971,848.9732683,High_spent_Medium_value_payments,777.4548287,0,-0.7764,-0.5791,0.1312,1.3543,2.2839 +0x1878d,CUS_0x8d72,August,32,#F%$D@*&8,Entrepreneur,63371.56,5533.963333,6,6,8,3,"Personal Loan, Student Loan, and Student Loan",28.41513222,18,6.77,7,Standard,756.94,31.53716689,27 Years and 3 Months,No,104.8697437,10000,High_spent_Medium_value_payments,626.8742992,0,1.1817,1.8416,-0.1654,0.8136,-1.1278 +0x18799,CUS_0x9bbc,August,21,456-23-6568,Doctor,18504.72,1757.06,6,5,18,6,"Not Specified, Credit-Builder Loan, Payday Loan, Student Loan, Student Loan, and Mortgage Loan",,19,8.38,10,Bad,2000.01,33.45164206,8 Years and 8 Months,Yes,48.79806633,53.38170255,Low_spent_Medium_value_payments,353.5262311,0,-1.4773,0.2362,-0.0697,1.2349,-1.6333 +0x187a5,CUS_0xa56a,August,48,513-47-2856,Accountant,49652.52,,1530,3,14,2,"Payday Loan, and Auto Loan",23.48413281,16,7.52,5,Standard,1410.01,35.1325873,24 Years and 9 Months,Yes,44.31175856,163.3851306,Low_spent_Large_value_payments,451.2741109,0,0.4783,-1.9285,1.6817,1.272,0.0853 +0x187b1,CUS_0x3191,August,21,571-93-8580,Entrepreneur,89864.28,7538.69,5,5,1,3,"Mortgage Loan, Not Specified, and Home Equity Loan",7.111138493,7,2.12,2,Good,534.5686998,28.4064137,18 Years and 9 Months,No,173.0444201,875.0798818,Low_spent_Medium_value_payments,88.57963368,0,-0.1785,0.3018,-0.4729,1.5632,-0.5765 +0x187bd,CUS_0x99ca,August,35,172-28-1630,Mechanic,131253.81,11068.8175,1,1,7.288361749,0,,12.8991342,,4.14,4,Good,463.9574464,35.66512253,22 Years and 5 Months,No,0,591.8187483,High_spent_Large_value_payments,1200.055663,0,0.1666,1.2994,-1.159,0.3816,1.0181 +0x187c9,CUS_0xc1a2,August,40,342-86-2325,Accountant,73948.04,6025.336667,6,3,13,1,Payday Loan,15.6445637,12,,1,Standard,359.14,24.96653221,26 Years and 5 Months,Yes,58.01678465,45.18432264,High_spent_Large_value_payments,739.3325594,0,-0.7583,1.3731,-0.9637,-0.0707,-0.8791 +0x187d5,CUS_0x66c8,August,46,442-70-7017,Engineer,139631.08,,3,4,12,0,,,0,9.67,7,Good,202.29,45.7839891,21 Years and 0 Months,No,0,234.6786378,High_spent_Small_value_payments,1181.113695,0,0.238,1.387,1.4436,0.8454,-0.2985 +0x187e1,CUS_0x46ce,August,27,436-23-4266,Developer,68474.64,5431.22,7,6,11,3,"Payday Loan, Not Specified, and Personal Loan",8.749862533,8,8.02,7,Standard,66.03,27.64545075,6 Years and 3 Months,Yes,127.4471587,182.789236,Low_spent_Medium_value_payments,512.8856053,0,-0.6845,-1.4191,-0.1952,0.5716,0.2382 +0x187ed,CUS_0x444b,August,49,416-66-6368,Entrepreneur,127708.48,10389.37333,7,3,13,3,"Home Equity Loan, Debt Consolidation Loan, and Home Equity Loan",,20.45340334,19.29,1,_,1288.957854,41.80642689,32 Years and 6 Months,Yes,207.2741096,151.048782,High_spent_Large_value_payments,920.6144418,0,-0.7572,-0.0585,0.4673,0.1639,-0.4365 +0x187f9,CUS_0x40bc,August,28,#F%$D@*&8,Engineer,9737.045,699.4204167,5,6,7.067457376,7,"Personal Loan, Not Specified, Credit-Builder Loan, Not Specified, Payday Loan, Mortgage Loan, and Auto Loan",13.51588117,5.867354576,5.35,9,_,2249.127619,34.99201237,11 Years and 3 Months,Yes,49.64299098,86.62457699,!@9#%8,196.9541857,0,-0.4548,-1.3044,-0.2789,-0.4614,1.2156 +0x18805,CUS_0x6f04,August,25,385-51-0863,Manager,16416.38,,10,9,35.95700519,6,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Payday Loan",,30.44780911,13.88,9,Bad,1692.436613,39.93806321,19 Years and 4 Months,Yes,1403.988795,,Low_spent_Large_value_payments,189.8289139,0,-0.3488,0.7344,1.8485,0.2264,0.1433 +0x18811,CUS_0x65c5,August,49,078-37-0144,Accountant,160057.96,13417.16333,4,4,0.288361749,0,Not Specified,90,1154,1.78,7,Good,322.27,32.96192144,26 Years and 6 Months,No,80.6689071,712.1454021,High_spent_Large_value_payments,1208.839485,0,0.5811,0.4125,-0.509,-0.1857,-0.7774 +0x1881d,CUS_0xc1e8,August,36,501-97-0944,Developer,35255.26,,2,3,2.288361749,4,"Credit-Builder Loan, Auto Loan, Student Loan, and Not Specified",3.546325827,6,7.24,0,Good,88.52,27.08218507,30 Years and 3 Months,No,76.87973425,575.9043924,Low_spent_Small_value_payments,323.9471677,0,0.7809,-0.266,-1.3504,-1.8317,1.2733 +0x18829,CUS_0xb7bb,August,43,797-45-5985,Manager,118717.64,,3,5,10,2,"Debt Consolidation Loan, and Mortgage Loan",24.60123333,17,8.22,12,Standard,718,39.14947669,26 Years and 5 Months,Yes,141.0908002,720.2494062,Low_spent_Large_value_payments,397.1734603,0,1.7284,1.4866,0.1794,0.2579,-0.7136 +0x18835,CUS_0xfea,August,33,731-85-6329,Manager,44264.41,3755.700833,3,3,6,2,"Student Loan, and Student Loan",0,2,9.66,3,Good,1194.295607,33.34873394,18 Years and 8 Months,No,40.48242382,,Low_spent_Small_value_payments,145.4046869,0,-0.0698,-0.3995,-0.024,0.0966,0.6867 +0x18841,CUS_0x3f89,August,21,895-18-0686,Writer,31346.22,,8,5,3605.067457,9,"Student Loan, Home Equity Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Not Specified",42.62179944,22.53836606,3.76,16,Bad,2276.949262,34.31251193,9 Years and 2 Months,Yes,187.425136,,Low_spent_Large_value_payments,93.20695673,0,1.8448,0.5623,0.6824,-0.1166,-1.6175 +0x1884d,CUS_0x9346,August,80,828-89-4293,Doctor,93622.5,7975.875,3,7,2,0,,0,2,6.99,4,Good,142.09,41.29772997,26 Years and 10 Months,NM,0,,!@9#%8,977.1839242,0,-0.5285,0.1914,0.6067,0.3466,1.3276 +0x18859,CUS_0x8704,August,31,497-36-7729,Mechanic,76726.64,6098.886667,6,6,3,3,"Credit-Builder Loan, Student Loan, and Auto Loan",,12,16.61,3,Standard,103.86,30.25620135,29 Years and 6 Months,No,145.2291015,114.6807619,High_spent_Medium_value_payments,599.9788033,0,0.1791,-0.2472,-0.7458,-1.5308,-0.0336 +0x18865,CUS_0xbe1d,August,26,951-33-4234,Musician,74203.38,5891.615,4,3,19,0,,,18,12.88,9,_,1360.21,30.3135802,15 Years and 8 Months,Yes,0,75.92810993,High_spent_Medium_value_payments,763.2333901,0,0.0444,0.6447,-0.8259,-0.736,-0.2875 +0x18871,CUS_0x513a,August,36,020-26-0390,Lawyer,137048.56,11539.71333,3,3,19,4,"Student Loan, Payday Loan, Credit-Builder Loan, and Student Loan",20.02985295,10.48814505,8.54,4,Standard,488.1886851,40.24266451,26 Years and 0 Months,NM,300.9517164,474.7711957,!@9#%8,658.2484213,0,0.5724,0.7674,1.0928,1.3493,0.954 +0x1887d,CUS_0xa235,August,34,549-91-8725,Mechanic,21765.99,1942.8325,3,3,8,1,Payday Loan,8.993140187,8.985761666,6.43,9,Good,952.0800172,25.34911659,32 Years and 4 Months,No,16.54722935,170.5910339,Low_spent_Small_value_payments,297.1449868,0,-1.4078,-1.5852,0.7618,-0.6972,-0.2587 +0x18889,CUS_0x362c,August,44,196-02-8091,Lawyer,7844.045,767.6704167,10,10,23.95700519,6,"Auto Loan, Personal Loan, Not Specified, Personal Loan, Credit-Builder Loan, and Payday Loan",28.2085896,18.53558052,8.25,9,Bad,2800.407456,41.36811542,6 Years and 2 Months,Yes,1344.763927,60.07739686,!@9#%8,240.8753482,0,0.9627,-0.888,-1.9499,0.5922,-0.6755 +0x18895,CUS_0x74ef,August,22,437-79-0896,Scientist,73665.33,6080.7775,8,4,6,1,Personal Loan,20.0444869,,15.69,6,Standard,794.92,35.81226618,19 Years and 3 Months,No,41.34864149,,Low_spent_Medium_value_payments,579.7211667,0,-0.8086,-0.5009,-0.6037,-0.3297,-0.6818 +0x188a1,CUS_0x4241,August,26,606-31-5436,Media_Manager,36178.94,2737.911667,5,7,7,2,"Student Loan, and Student Loan",16.19057641,12,16.9,12,_,1363.843487,24.87227378,15 Years and 11 Months,Yes,44.33900647,106.3808573,Low_spent_Large_value_payments,406.2407988,0,1.1209,-0.9522,1.1976,0.3744,0.7382 +0x188ad,CUS_0xb81c,August,18,112-59-5434,Teacher,62016.76,5228.063333,1604,5,34,100,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",,26.74207483,5.41,13,Bad,1941.74268,28.42532088,14 Years and 5 Months,Yes,353.8950884,290.425595,High_spent_Small_value_payments,138.4856499,0,-0.3873,-1.0964,0.1949,0.3249,0.9561 +0x188b9,CUS_0x2ff6,August,35,060-67-8371,Scientist,12421.12,,7,3,11,4,"Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",,14,1.95,3,Standard,685.18,37.82675646,21 Years and 5 Months,NM,29.37938889,,Low_spent_Small_value_payments,277.4999748,0,0.6433,1.2494,-0.1965,0.251,-0.1284 +0x188c5,CUS_0x1048,August,27,808-81-2470,Accountant,42387.54,,3,7,26,7,"Personal Loan, Not Specified, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",8.7557635,9.396972239,10.34,7,Standard,2056.459594,28.75306001,10 Years and 0 Months,Yes,225.883369,133.5133623,High_spent_Small_value_payments,268.6327687,0,0.7032,1.7677,-0.3792,0.9331,-1.1686 +0x188d1,CUS_0x6bbe,August,24,848-05-5428,Lawyer,87939.04,7343.253333,2,4,10.28836175,2,"Debt Consolidation Loan, and Payday Loan",12.81829125,,,4,Good,278.7195752,37.70596442,25 Years and 11 Months,No,74.00774816,712.9416511,High_spent_Medium_value_payments,648.0923407,0,-0.0642,-0.6586,0.9629,2.8287,-0.452 +0x188dd,CUS_0x1664,August,30,415-68-9816,Developer,29375.68,2728.973333,4,8,27.88954781,6,"Personal Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",13.54159125,12,12.26,15,Standard,1985.59,31.77105108,19 Years and 4 Months,Yes,1414.344397,,High_spent_Small_value_payments,373.9521243,0,1.0906,-0.5271,0.7961,1.5301,0.2131 +0x188e9,CUS_0x4e8f,August,28,555-73-2915,Entrepreneur,40735.3,3202.608333,9,7,26,3,"Student Loan, Home Equity Loan, and Auto Loan",25.55445706,16.80390618,4.35,10,_,1918.304597,40.84127826,11 Years and 8 Months,Yes,98.8651928,103.86548,High_spent_Small_value_payments,377.5301606,0,-0.1467,0.2572,0.1033,-0.0558,0.4246 +0x188f5,CUS_0xe4f,August,55,015-79-4469,Teacher,29709.73,2346.914659,8,7,4614,2,"Credit-Builder Loan, and Auto Loan",,9,5.36,8,Good,1005.711855,33.07643305,32 Years and 3 Months,No,49835,,Low_spent_Small_value_payments,282.9328624,0,-1.525,-0.7101,1.4313,2.1696,1.8024 +0x18901,CUS_0xc515,August,24,652-12-7729,Lawyer,8477.51,648.4591667,8,9,28.06745738,5,"Home Equity Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",24.940381,,1.87,12,Bad,5785.112947,25.41978451,10 Years and 11 Months,NM,31.74688393,,Low_spent_Small_value_payments,236.4055859,0,-0.9728,1.3298,-0.3686,0.0603,-0.7529 +0x1890d,CUS_0xae7d,August,20,651-44-1370,Accountant,38047.79,3344.649167,0,4,11.28836175,2,"Student Loan, and Home Equity Loan",2.348682829,4,11.17,0,Good,186.72,27.12985525,29 Years and 9 Months,No,61.70027376,523.1334331,High_spent_Medium_value_payments,419.5686708,0,0.8751,0.1871,-0.7818,0.9714,1.7008 +0x18919,CUS_0x18d4,August,26,#F%$D@*&8,Teacher,74264.92,6137.743333,4,4,4,4,"Home Equity Loan, Auto Loan, Student Loan, and Auto Loan",3.526457103,7,8.16,2,_,307.82,29.06177872,25 Years and 6 Months,No,54445,10000,High_spent_Small_value_payments,536.1321298,0,-1.3848,0.5424,-0.8617,-0.2417,-0.1822 +0x18925,CUS_0x96b5,August,39,933-15-4753,Lawyer,73937.4,6415.45,5,7,8,1,Mortgage Loan,23.76062326,15,-4.31,5,Standard,405.73,31.75968304,32 Years and 3 Months,Yes,44.47976535,197.1319473,!@9#%8,679.9332873,0,-0.8769,-0.3829,1.2285,1.1002,-0.0768 +0x18931,CUS_0xc37,August,36,391-43-5750,Musician,72307.32,5754.61,8,4,9,3,"Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,15,15.34,7,Standard,1180.91,31.40207309,17 Years and 4 Months,Yes,152.9655306,107.9812064,High_spent_Large_value_payments,554.514263,0,0.9807,0.5128,-0.1267,0.2825,-0.4009 +0x1893d,CUS_0xac3f,August,18,010-72-9113,Doctor,27621.23,2165.769167,5,6,20,4,"Not Specified, Not Specified, Student Loan, and Not Specified",,16,9.35,6,Standard,555.67,36.72768252,17 Years and 4 Months,Yes,62.49392547,53.69275502,High_spent_Large_value_payments,340.3902362,0,0.4318,-0.5219,1.5599,0.0524,-0.1665 +0x18949,CUS_0x60f,August,24,127-21-3412,Doctor,167664.88,14007.07333,2,6,10,4,"Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",14.0335087,12,11.74,3,_,1435.29,27.3609159,16 Years and 5 Months,No,449.0602004,869.0241327,Low_spent_Large_value_payments,352.6230002,0,1.9928,1.16,-0.9517,1.1821,0.4065 +0x18955,CUS_0x1661,August,20,205-56-4253,Doctor,18083.64,,9,8,18,2,"Not Specified, and Debt Consolidation Loan",,16.63697497,7.06,14,Standard,2778.916306,30.73068007,13 Years and 5 Months,Yes,26.88346071,82.64249199,Low_spent_Small_value_payments,314.1710473,0,-0.3043,-0.9523,0.8823,1.7143,-0.8073 +0x18961,CUS_0x9c4b,August,26,823-22-4980,Accountant,60362.88,4916.24,7,6,20.06745738,6,"Personal Loan, Home Equity Loan, Student Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",34.60748676,17.04987899,32.22,13,Bad,5255.339681,35.66663845,9 Years and 11 Months,Yes,278.8071842,332.2284603,High_spent_Small_value_payments,113.8680676,0,-0.692,0.9082,0.2948,1.1686,-0.0447 +0x1896d,CUS_0x9e5e,August,35,023-95-0480,Accountant,14968.48,1001.373333,6,5,33,7,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",,10.56834804,14.19,14,_,2388.203863,33.70912597,15 Years and 5 Months,Yes,62.40567663,,Low_spent_Small_value_payments,223.5806006,0,2.2905,-1.3667,-2.0711,-1.8894,-1.0639 +0x18979,CUS_0x7cf1,August,43,496-02-6838,Entrepreneur,36229.54,,2,6,11,1,Home Equity Loan,,,1.1,3,_,1274.92,25.65074123,16 Years and 3 Months,No,19.9995665,107.2324194,Low_spent_Small_value_payments,463.9808474,0,-0.7836,-0.4153,-0.591,-0.4798,0.3606 +0x18985,CUS_0x37f8,August,25,733-93-6011,Accountant,39910.48,,1,7,2,1,Not Specified,6.246683887,4.569462984,3.9,5,Good,1184.196802,27.74710582,22 Years and 0 Months,No,31.77951264,144.662712,High_spent_Medium_value_payments,426.5451087,0,-1.7067,0.36,-0.8721,0.3794,-1.4875 +0x18991,CUS_0x3d09,August,43,676-69-6112,Media_Manager,33199.8,,8,10,23.95700519,6,"Credit-Builder Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",,20.81336609,12,15,_,2347.208946,31.33964734,13 Years and 6 Months,Yes,1605.772703,83.18633284,Low_spent_Large_value_payments,291.7148308,0,2.9688,0.1201,-1.2703,0.1314,0.9947 +0x1899d,CUS_0x21f2,August,29,959-44-8630,Musician,144686,,8,5,5,7,"Not Specified, Not Specified, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",15.59717106,13,13.07,5,Standard,605.05,36.44725388,11 Years and 2 Months,Yes,818.5290047,229.1437031,High_spent_Large_value_payments,422.9439589,0,-0.6377,-0.4771,-1.5905,1.8304,-0.2053 +0x189a9,CUS_0x872d,August,23,104-21-7383,Architect,47183.94,,7,9,28.06745738,5,"Not Specified, Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",53.78852054,28.68584264,9.71,12,Bad,5240.656799,39.77906002,13 Years and 5 Months,Yes,166.8906545,59.58548672,High_spent_Large_value_payments,367.2030708,0,1.8418,0.5663,0.7354,-0.1421,0.4638 +0x189b5,CUS_0x960b,August,32,815-78-7675,Writer,31589.9,2706.491667,7,6,7,2,"Debt Consolidation Loan, and Not Specified",15.77775648,13,9.13,13,Standard,236.79,25.26405306,13 Years and 10 Months,Yes,44.84904662,192.3173333,Low_spent_Large_value_payments,303.4827867,0,0.8605,0.7926,1.9089,-0.6379,-0.0125 +0x189c1,CUS_0x14d3,August,32,219-57-6916,Teacher,107572.72,9133.393333,4,4,15,2,"Payday Loan, and Auto Loan",90,3951,11.48,2,Standard,302.52,32.85526169,,NM,106.2472556,241.1812409,!@9#%8,815.9108368,0,-0.8846,-2.1596,-0.9888,1.7623,0.4322 +0x189cd,CUS_0xc651,August,18,148-98-6816,Journalist,104428.08,8866.34,3,4,8,4,"Mortgage Loan, Payday Loan, Home Equity Loan, and Not Specified",,21,11.72,13,Standard,230.3816452,35.02494535,20 Years and 4 Months,Yes,179.1275605,691.3344677,High_spent_Small_value_payments,364.7617976,0,0.0857,-1.2602,0.2277,-1.8602,-0.0019 +0x189d9,CUS_0xb538,August,18,760-11-8872,Musician,51211.26,4048.605,6,6,16,6,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Mortgage Loan",13.25686495,12,16.57,4,Standard,2057.4,39.3466437,13 Years and 2 Months,Yes,222.9076774,,High_spent_Medium_value_payments,296.7437498,0,0.3598,0.1066,0.7181,1.1575,-2.551 +0x189e5,CUS_0x1fcb,August,44,448-72-4083,Developer,106694.82,8959.235,6,6,12,0,,21.7658614,14,7.49,7,Good,429.41,35.14818026,20 Years and 9 Months,No,0,403.1131695,High_spent_Small_value_payments,752.8103305,0,-0.1558,-0.8614,0.4652,2.7025,-0.3729 +0x189f1,CUS_0xb967,August,31,914-80-2762,Doctor,33131.6,,2,6,8,0,,8.154592944,10,11.49,0,Good,724.78,28.36578632,27 Years and 9 Months,No,0,108.1033165,Low_spent_Medium_value_payments,448.9933502,0,-1.1571,-0.1391,-0.0448,-2.0993,0.4382 +0x189fd,CUS_0x8731,August,28,518-75-8448,_______,9615.095,610.2579167,8,6,13,2,"Debt Consolidation Loan, and Student Loan",,20,5.78,6,Standard,520.99,23.5366654,23 Years and 0 Months,Yes,45679,23.40495292,High_spent_Small_value_payments,288.0105747,0,-0.08,-0.1911,-0.6014,0.7114,-0.7508 +0x18a09,CUS_0x4569,August,19,086-69-7305,Developer,18184.81,,8,9,30.88954781,8,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",22.1318213,14,28.55,12,Bad,4571.03,35.46218925,4 Years and 11 Months,Yes,1387.225412,,Low_spent_Medium_value_payments,282.6752472,0,-0.7915,-2.2471,-0.4617,0.9434,-0.6612 +0x18a15,CUS_0x14c2,August,31,840-29-3626,Architect,67978.8,5803.9,9,5,28.06745738,9,"Mortgage Loan, Student Loan, Auto Loan, Not Specified, Student Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",29.58208631,18,18.41,15,Bad,4907.360954,32.22974671,9 Years and 2 Months,Yes,301.992156,170.8144888,Low_spent_Medium_value_payments,360.8630673,0,0.2129,0.1998,0.7421,1.1899,1.5701 +0x18a21,CUS_0x71b8,August,54,017-48-9798,Entrepreneur,72301.62,,4,3,18,3,"Student Loan, Student Loan, and Auto Loan",,19,15.87,2,Standard,819.37,27.35132043,27 Years and 10 Months,Yes,98.9802892,248.5449047,High_spent_Medium_value_payments,512.4883061,0,-2.048,0.0315,2.6178,1.0742,-0.2381 +0x18a2d,CUS_0x5280,August,56,863-50-5431,Architect,24755.99,,6,5,7,0,,17.97353537,,3.95,1,Standard,563.0207806,25.98337594,24 Years and 10 Months,No,0,331.5265876,Low_spent_Small_value_payments,227.9165103,0,1.1131,0.4557,1.718,-0.1483,0.935 +0x18a39,CUS_0x770,August,25,029-84-5574,Media_Manager,68926.36,5593.863333,8,9,34,6,"Payday Loan, Home Equity Loan, Payday Loan, Not Specified, Personal Loan, and Mortgage Loan",,31.15320881,24.44,12,Bad,4489.737732,34.3737472,13 Years and 10 Months,Yes,213.8781783,94.82318723,!@9#%8,500.6849678,0,-2.4939,-0.0818,-1.177,0.4611,-0.2772 +0x18a45,CUS_0x181f,August,38,552-71-6305,Media_Manager,58558.86,5123.905,10,9,25,2,"Not Specified, and Credit-Builder Loan",,18.12998609,19.92,16,Standard,1564.212998,36.52909764,14 Years and 10 Months,Yes,58.73135222,94.65427738,High_spent_Medium_value_payments,609.0048704,0,0.3702,0.0659,0.0574,-0.2416,-0.2069 +0x18a51,CUS_0x94d5,August,61,#F%$D@*&8,Entrepreneur,100358.73,,0,4,11.28836175,0,,14.11409864,13,2.74,2,Good,339.2702947,39.40141585,28 Years and 4 Months,No,0,,High_spent_Small_value_payments,533.7619007,0,-0.3346,1.7085,-1.1953,0.9125,1.017 +0x18a5d,CUS_0x2659,August,21,511-59-6589,Journalist,62200.6,5104.383333,10,6,34,2,"Student Loan, and Debt Consolidation Loan",48.55420798,27.62597647,1.54,7,Bad,1485.748739,39.20295328,16 Years and 2 Months,Yes,52.61422135,128.4483536,High_spent_Large_value_payments,569.3757584,0,-0.719,0.4041,-0.2441,0.7271,-1.4048 +0x18a69,CUS_0x6e8d,August,80,220-96-8558,Manager,40341.38,,6,6,4,3,"Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",19.20253318,18,5.79,1,Good,1263.68,36.5406208,21 Years and 10 Months,No,275.7041087,95.67577257,High_spent_Small_value_payments,449.42081,0,-0.7758,-0.3841,-0.4644,1.1137,-0.2714 +0x18a75,CUS_0xb47f,August,21,429-78-0806,Scientist,30773.87,2297.979398,4,4,19,2,"Auto Loan, and Debt Consolidation Loan",24.40727115,16,14.84,5,Standard,1289.886357,34.19912504,16 Years and 0 Months,NM,324.4207428,60.1307913,High_spent_Large_value_payments,416.2904786,0,1.1581,0.1937,0.139,0.4957,1.5687 +0x18a81,CUS_0xc55a,August,32,374-42-2129,Accountant,126253.65,10315.1375,0,2,0.288361749,2,"Student Loan, and Personal Loan",,9,1.08,5,Good,3.5,41.93013604,31 Years and 9 Months,NM,194.2730775,,!@9#%8,875.882236,0,0.985,-1.6482,0.167,-1.4328,0.9987 +0x18a8d,CUS_0x4eab,August,46,111-56-9101,Lawyer,15682.145,,3,4,4,1,Auto Loan,11.71222704,10,2.55,4,Good,1249.34,29.01006378,22 Years and 11 Months,No,8.485266863,,High_spent_Small_value_payments,353.2454007,0,-0.5741,-2.1045,-0.9639,0.346,0.1677 +0x18a99,CUS_0xaa53,August,52,516-01-8545,Teacher,57847.1,4808.591667,1,4,5,1,Payday Loan,,8,6.19,5,Good,958.73,29.08673264,23 Years and 8 Months,No,35141,,Low_spent_Small_value_payments,207.4549507,0,-0.239,-1.085,1.5453,-0.4913,0.1543 +0x18aa5,CUS_0x7749,August,45,999-79-9012,Lawyer,28485.76,2230.813333,6,7,16.06745738,6,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Not Specified, and Mortgage Loan",27.36249293,18,10.96,6,Bad,4993.650954,25.53916123,14 Years and 2 Months,Yes,128.8957991,149.1788836,High_spent_Small_value_payments,178.2863627,0,-0.5262,0.0632,-1.6913,-0.4063,-0.4855 +0x18ab1,CUS_0x5de2,August,37,#F%$D@*&8,Mechanic,21578.575,1499.214583,1,3,4,1,Home Equity Loan,0,1,6.55,6,Good,881.05,34.0549564,29 Years and 2 Months,No,11.61421714,57.51967812,Low_spent_Small_value_payments,370.7875631,0,-0.9107,-0.6776,1.3304,-1.5903,0.5486 +0x18abd,CUS_0x8517,August,40,934-91-6807,Accountant,58372.92,5067.41,7,9,19.06745738,5,"Not Specified, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",40.95601609,23.55639823,26.77,10,Bad,3952.386991,37.31468536,12 Years and 11 Months,Yes,178.0443065,189.8813444,High_spent_Small_value_payments,372.0950612,0,0.2208,0.7207,0.5195,-1.0114,-0.1608 +0x18ac9,CUS_0xb6be,August,35,695-71-7676,Journalist,50010.9,,7,10,17,6,"Debt Consolidation Loan, Student Loan, Auto Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",,22.8279791,8.36,2363,Bad,3738.413418,30.92581339,,Yes,211.962847,237.3598818,Low_spent_Small_value_payments,266.9347712,0,1.1721,-1.3289,0.3349,-0.1726,-0.5908 +0x18ad5,CUS_0x8000,August,26,599-48-6829,Journalist,16970.75,1685.229167,1747,7,8.067457376,2,"Payday Loan, and Debt Consolidation Loan",,18,11.9,10,Standard,2584.080954,38.46579891,10 Years and 9 Months,Yes,26.94751217,145.1398227,Low_spent_Medium_value_payments,249.7152939,0,-0.0581,0.1277,-0.1095,-1.7352,1.2759 +0x18ae1,CUS_0x66d6,August,40,552-62-4814,_______,36446.26,,4,5,8,0,,,9,11.67,0,Good,293.3922318,33.41558756,17 Years and 3 Months,No,0,119.681209,High_spent_Small_value_payments,446.4431385,0,0.3074,-0.4926,-0.8453,-0.1345,-0.4632 +0x18aed,CUS_0x6bff,August,26,545-42-9297,Accountant,8605.54,722.1283333,7,6,30,9,"Payday Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,22.46979558,23.34,12,Bad,5026.004648,37.47792018,13 Years and 2 Months,NM,40.43170253,33.72399893,Low_spent_Medium_value_payments,278.0571319,0,1.427,-0.1067,-1.7267,0.1956,0.2164 +0x18af9,CUS_0x5195,August,38,179-78-8980,Entrepreneur,16678.77,,8,6,21.06745738,9,"Personal Loan, Mortgage Loan, Not Specified, Payday Loan, Personal Loan, Not Specified, Not Specified, Home Equity Loan, and Not Specified",31.9991821,16,8.38,14,Bad,4535.940954,40.78935609,5 Years and 3 Months,Yes,90.74345289,115.092583,!@9#%8,167.6334261,0,-0.3355,0.1561,-0.4193,-1.4536,-0.2766 +0x18b05,CUS_0xe3b,August,19,580-75-3047,Manager,56425.6,4438.133333,6,10,33,3,"Credit-Builder Loan, Student Loan, and Credit-Builder Loan",26.47579166,12.91059731,12.33,12,Standard,2744.745533,34.10138958,11 Years and 10 Months,NM,71.89759982,165.6794103,Low_spent_Large_value_payments,476.2363232,0,-1.0628,0.3366,0.787,-1.1667,0.6581 +0x18b11,CUS_0x6496,August,22,293-53-5614,Journalist,33127.31,,4,4,10,4,"Personal Loan, Student Loan, Mortgage Loan, and Payday Loan",19.58458612,17,9.25,7,_,32.68179575,38.69129336,33 Years and 0 Months,Yes,106.8186864,,High_spent_Small_value_payments,242.8839135,0,1.8032,0.0371,0.4624,-0.2079,-1.0374 +0x18b1d,CUS_0xc712,August,55,623-66-4307,Lawyer,57724.36,,3,5,5,3,"Auto Loan, Payday Loan, and Payday Loan",17.01541263,,4.18,1,Good,526.31,31.95080863,23 Years and 9 Months,NM,121.6561937,10000,High_spent_Small_value_payments,324.9260198,0,1.2633,1.9024,1.2048,-1.776,-2.4143 +0x18b29,CUS_0x2f02,August,23,793-24-4174,Media_Manager,37813.29,2951.1075,1,5,3.288361749,0,,2.666486096,5,1.24,1,Good,76.92112612,29.97343062,17 Years and 10 Months,No,0,,High_spent_Medium_value_payments,428.9671545,0,0.0077,-1.1937,-0.1966,-0.7878,0.5507 +0x18b35,CUS_0x7a1f,August,24,171-91-9087,Accountant,102046.83,,3,48,3,0,,,2.302729541,1.78,6,Good,1428.197024,39.46764447,,NM,0,265.2533005,High_spent_Medium_value_payments,845.7369495,0,0.6624,0.1806,0.1302,-0.5239,0.0851 +0x18b41,CUS_0x8202,August,25,#F%$D@*&8,Entrepreneur,42664.56,3700.38,4,7,7,2,"Debt Consolidation Loan, and Home Equity Loan",6.406798379,6,8.67,1,Good,967.3,30.09905111,23 Years and 6 Months,No,54.42804493,253.6652527,High_spent_Small_value_payments,321.9447024,0,-1.3413,1.4118,0.1816,0.2331,-2.1706 +0x18b4d,CUS_0x12fa,August,46,966-60-1936,Manager,87876.27,,4,5,15,0,,,16,7.6,5,Standard,502.29,36.8195481,22 Years and 11 Months,Yes,0,386.4780095,!@9#%8,606.7242405,0,0.4464,-0.1906,-0.0824,-0.2141,0.2717 +0x18b59,CUS_0x9af6,August,41,372-93-7737,Lawyer,15363.115,,3,5,889,7,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Debt Consolidation Loan, and Personal Loan",26.02637866,17,10.56,5,Standard,1364.4,31.53583108,16 Years and 8 Months,Yes,69.68884774,,Low_spent_Medium_value_payments,305.9585186,0,1.1195,-0.4526,0.4638,1.2224,0.4152 +0x18b65,CUS_0xb13c,August,33,528-06-6283,Musician,14613.65,,8,8,22.88954781,6,"Personal Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",20.36925842,16,9.63,9,_,2882.07,36.94062493,2 Years and 4 Months,Yes,1391.459263,88.19734202,Low_spent_Small_value_payments,249.4937303,0,-1.7181,0.8397,-1.4277,-0.3003,0.0951 +0x18b71,CUS_0x45cb,August,43,323-89-9920,Journalist,58170.76,4861.563333,8,5,34,6,"Credit-Builder Loan, Student Loan, Not Specified, Not Specified, Student Loan, and Credit-Builder Loan",33.92176542,20.59790924,11.86,13,Bad,2805.575669,37.41620308,,Yes,168.184988,246.9911337,High_spent_Small_value_payments,330.9802116,0,-2.0945,0.4322,0.4434,-0.1436,0.709 +0x18b7d,CUS_0xa3f5,August,21,781-12-9908,_______,122782.95,10320.9125,1,6,3,3,"Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",7.964215354,8,1.18,7,Good,304.27,32.06423871,32 Years and 9 Months,No,210.2978747,350.8781214,High_spent_Medium_value_payments,720.9152539,0,1.7356,-0.3946,-1.1069,1.3335,0.2356 +0x18b89,CUS_0x9778,August,43,548-90-8373,Developer,35263.09,2808.590833,2,3,8,2,"Payday Loan, and Personal Loan",,4,4.85,6,Good,856.33,37.13591061,28 Years and 11 Months,No,41.67735909,54.53900308,High_spent_Large_value_payments,424.6427212,0,0.6458,-0.6374,-0.2426,0.8596,-0.0758 +0x18b95,CUS_0x2b2a,August,34,682-88-0410,Media_Manager,59226.15,4780.5125,7,4,7,3,"Student Loan, Auto Loan, and Not Specified",17.96116726,13,8.7,3,Good,710.49,37.14052435,25 Years and 9 Months,No,94.8841568,93.28219389,High_spent_Large_value_payments,529.8848993,0,0.8259,0.294,-0.2814,-0.3108,-1.9206 +0x18ba1,CUS_0x4775,August,51,389-91-1194,Teacher,125049.78,10426.815,1,5,6.288361749,100,"Payday Loan, Debt Consolidation Loan, and Auto Loan",14.6505596,,0.7,2,Good,538.9919471,27.91585668,20 Years and 0 Months,No,178.1378858,645.2780788,High_spent_Medium_value_payments,922.5416809,0,-1.917,-0.8861,1.1119,-1.5077,-1.3912 +0x18bad,CUS_0x3e5e,August,44,849-82-2878,Scientist,40575.26,3523.271667,8,5,20,9,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Not Specified, Personal Loan, Not Specified, Home Equity Loan, Mortgage Loan, and Home Equity Loan",39.78432773,20.1597024,18,8,_,2823.881627,40.87888405,5 Years and 6 Months,Yes,177.5561536,193.7861341,Low_spent_Small_value_payments,270.984879,0,-0.361,0.2011,0.091,-1.1472,0.3446 +0x18bb9,CUS_0xb201,August,35,808-53-9641,Doctor,115104.72,9395.06,5,3,17,3,"Home Equity Loan, Home Equity Loan, and Personal Loan",12.58804109,9,15.94,8,Standard,950.44,41.66229976,6 Years and 0 Months,NM,150.3025235,543.6265392,Low_spent_Small_value_payments,535.5769373,0,-0.4762,0.631,-2.1274,0.4108,1.2656 +0x18bc5,CUS_0x9815,August,39,365-53-4721,Lawyer,32167.36,,7,7,20.06745738,5,"Not Specified, Payday Loan, Student Loan, Not Specified, and Debt Consolidation Loan",16.24140379,10.42860421,7.4,12,Standard,2346.181901,31.59715353,12 Years and 11 Months,Yes,89.33903455,10000,Low_spent_Small_value_payments,301.7065439,0,0.712,-0.9089,1.6447,0.3626,0.693 +0x18bd1,CUS_0x632,August,44,#F%$D@*&8,Media_Manager,56414.52,4494.21,6,6,34,6,"Student Loan, Not Specified, Student Loan, Credit-Builder Loan, Personal Loan, and Not Specified",45.04572908,22.34263447,19.74,11,_,2835.919113,25.49745403,10 Years and 11 Months,Yes,183.0453128,128.6916337,Low_spent_Medium_value_payments,417.6840535,0,-0.413,-1.3517,1.5566,0.4359,-2.0128 +0x18bdd,CUS_0xf01,August,35,640-79-5096,Developer,30256.85,,0,5,6.067457376,3,"Home Equity Loan, Payday Loan, and Payday Loan",4.395336776,2.373376249,0.73,7,_,1871.487224,29.18889445,20 Years and 5 Months,No,62.10515619,,Low_spent_Large_value_payments,246.6240037,0,0.4178,-0.6893,-0.0562,-0.2617,0.7178 +0x18be9,CUS_0x8b17,August,80,232-13-9501,Writer,66289.36,,4,5,15,2,"Personal Loan, and Student Loan",15.64524651,14,7.27,11,Standard,713.33,40.1162951,16 Years and 4 Months,NM,61.32521299,302.9868146,High_spent_Small_value_payments,438.9993058,0,0.6921,0.3058,0.1609,-0.1738,0.2586 +0x18bf5,CUS_0x15f2,August,32,708-00-6661,Teacher,15566.55,1202.2125,8,8,29.06745738,5,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",31.57567145,,18.13,8,_,4081.233833,41.28317342,12 Years and 11 Months,NM,45.14911928,101.0512582,Low_spent_Small_value_payments,237.3005846,0,-0.4037,0.9108,-0.246,-0.8601,1.6926 +0x18c01,CUS_0x75ef,August,45,340-31-0387,Developer,65047.53,5550.6275,3,5,15,100,"Not Specified, Payday Loan, Personal Loan, and Auto Loan",18.96336161,15,12.09,2,Standard,1146.519464,24.3079381,28 Years and 11 Months,NM,190.3263109,418.9508738,High_spent_Small_value_payments,268.4353626,0,0.3055,1.5495,0.5298,1.0541,0.201 +0x18c0d,CUS_0x67eb,August,52,241-12-4540,Developer,14709.335,,1,5,8,0,,7.584511544,7.23014943,,4,Good,614.5228026,33.29748334,30 Years and 8 Months,No,0,107.1566146,Low_spent_Small_value_payments,333.9211771,0,-2.041,0.2666,-0.2051,-0.1476,-0.1672 +0x18c19,CUS_0x629,August,45,495-74-9883,Writer,15806.84,1140.236667,6,5,21,3,"Personal Loan, Home Equity Loan, and Payday Loan",13.67665582,12,3.41,12,Bad,2580.63,25.32383544,19 Years and 9 Months,Yes,29.02999324,43.28507338,Low_spent_Medium_value_payments,321.7086,0,0.1678,-0.1615,-1.8586,-0.1325,-1.0765 +0x18c25,CUS_0x9dc1,August,43,334-06-1440,Accountant,19621.94,1851.161667,8,10,31.95700519,6,"Mortgage Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Student Loan, and Personal Loan",32.9662808,,2.39,11,Bad,2033.719474,28.97196736,19 Years and 2 Months,Yes,1375.246935,54.32391208,Low_spent_Medium_value_payments,314.4949502,0,-1.7255,-0.8363,-0.3903,-0.5336,-0.9843 +0x18c31,CUS_0x4472,August,42,#F%$D@*&8,Teacher,70554.22,,4,3,9.288361749,2,"Home Equity Loan, and Credit-Builder Loan",,15,6.29,3,Standard,908.62,32.7653267,24 Years and 4 Months,NM,73.22638529,858.3983808,Low_spent_Medium_value_payments,353.9645282,0,0.3231,-1.2663,-0.5828,-0.4429,-0.9622 +0x18c3d,CUS_0x3cea,August,32,882-80-1112,Developer,127672.24,10668.35333,8,7,19,4,"Home Equity Loan, Payday Loan, Auto Loan, and Auto Loan",18.65951548,13,-1.24,3,Standard,504.03,37.93379412,31 Years and 5 Months,No,289.0291545,,High_spent_Large_value_payments,844.3139439,0,-0.0607,-1.0661,-0.0304,0.5325,-0.1484 +0x18c49,CUS_0x49fe,August,40,898-27-1763,Developer,19617.02,1624.751667,6,6,29.06745738,2,"Credit-Builder Loan, and Payday Loan",,20.23061912,10.28,8,Standard,2079.633219,29.26551937,13 Years and 8 Months,Yes,30.50651716,109.7663802,Low_spent_Small_value_payments,285.4819814,0,-1.2313,0.6696,-0.7809,0.6097,1.0253 +0x18c55,CUS_0x60a2,August,44,#F%$D@*&8,_______,29951.57,2254.964167,8,6,20,0,,,,7.44,7,Standard,704.02,33.14556455,19 Years and 2 Months,Yes,0,193.2679504,Low_spent_Small_value_payments,322.2284662,0,0.091,-0.5416,0.7449,-0.3284,-1.9894 +0x18c61,CUS_0x8c3,August,26,616-62-9532,Journalist,16477.55,,9,7,25.06745738,7,"Mortgage Loan, Personal Loan, Not Specified, Payday Loan, Home Equity Loan, Not Specified, and Student Loan",41.20730513,28.68190248,24.14,9,Bad,4158.128629,26.86139005,3 Years and 9 Months,Yes,104.5079577,,Low_spent_Small_value_payments,201.5488817,0,-0.9967,-0.2629,-0.1351,-0.4194,-0.1655 +0x18c6d,CUS_0x1330,August,33,#F%$D@*&8,Media_Manager,30874.43,,4,5,8,2,"Mortgage Loan, and Credit-Builder Loan",6.970927553,5.982432478,3.82,2,Good,273.8286411,26.63543442,22 Years and 2 Months,NM,48.26786997,67.90948238,High_spent_Small_value_payments,403.4095643,0,0.5623,-0.4121,0.4509,-1.4325,-0.4333 +0x18c79,CUS_0xbaf2,August,28,569-52-7755,Developer,8171.11,,7,6,16,3,"Personal Loan, Student Loan, and Student Loan",,21.30302801,2.64,9,Bad,1968.105256,39.02956607,12 Years and 9 Months,Yes,14.56817965,30.19378291,Low_spent_Small_value_payments,333.9306208,0,0.3016,-1.2569,-1.2476,-0.0777,0.3541 +0x18c85,CUS_0x2abd,August,45,539-11-2283,Entrepreneur,37612.54,3145.378333,5,4,11,4,"Credit-Builder Loan, Not Specified, Payday Loan, and Not Specified",0,0,0.72,1,Good,14.58603421,29.15300503,30 Years and 4 Months,No,124.7343814,86.07126363,High_spent_Large_value_payments,355.6726428,0,-0.0635,1.2002,0.2528,0.9665,-1.4609 +0x18c91,CUS_0x1e51,August,32,887-23-0031,Entrepreneur,17443.94,,10,10,22.06745738,5,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Personal Loan",,22,21.69,7,Bad,3039.980954,35.8701711,11 Years and 6 Months,Yes,55.67362562,50.28013254,High_spent_Small_value_payments,298.7921206,0,-1.3105,2.1443,-0.0261,0.4307,-1.2909 +0x18c9d,CUS_0x5135,August,51,017-34-5974,Scientist,31199.43,,3,5,8,4,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",13.12618443,11.80395755,2.93,5,_,1545.450193,32.45991546,27 Years and 5 Months,No,55.57160667,137.3383495,High_spent_Small_value_payments,347.1852938,0,-1.7008,-0.6722,1.409,-0.5618,1.3395 +0x18ca9,CUS_0x1935,August,44,306-45-4223,Media_Manager,17096.25,1669.6875,10,8,20.95700519,7,"Payday Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",35.12301642,19,29.72,14,Bad,2603.171294,31.33221382,3 Years and 10 Months,Yes,1397.541002,,Low_spent_Small_value_payments,155.1916735,0,0.1003,-0.129,0.2109,1.792,1.0727 +0x18cb5,CUS_0x7d40,August,39,596-94-4140,Writer,56089.95,4875.1625,9,5,15,7,"Payday Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,17,4.31,9,Bad,2561.61,35.01016342,6 Years and 6 Months,Yes,276.5352963,,Low_spent_Small_value_payments,226.1881536,0,0.1219,0.287,0.427,-0.3104,0.3592 +0x18cc1,CUS_0x1a9c,August,41,898-03-0260,Writer,17971,,7,3,8.067457376,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",20.86607791,14,11.09,1,Good,1353.50505,30.42284212,22 Years and 4 Months,No,41.39158346,,High_spent_Small_value_payments,271.3718799,0,0.7438,0.8921,-0.354,-0.7388,-0.2171 +0x18ccd,CUS_0x7007,August,41,819-79-8796,Accountant,19104.75,1669.0625,4,7,7.067457376,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",22.05861217,14.08531209,14.07,5,Standard,1295.594934,33.00866102,30 Years and 3 Months,Yes,43.75145433,63.01754025,Low_spent_Small_value_payments,323.4169675,0,-0.1237,-0.1488,-1.113,-1.2767,0.574 +0x18cd9,CUS_0xb7eb,August,36,856-58-2613,Entrepreneur,125977.6,10426.13333,8,6,13,2,"Not Specified, and Home Equity Loan",25.99848389,17,8.02,3,Standard,581.65,33.80536503,32 Years and 3 Months,Yes,149.9825159,,High_spent_Small_value_payments,725.1387625,0,-0.9419,-0.0826,-0.0997,-0.0873,1.1207 +0x18ce5,CUS_0xbeca,August,80,120-40-0801,Lawyer,134124,10886,0,3,10.28836175,0,Student Loan,,10,7.29,7,Good,787.5,39.01212447,16 Years and 11 Months,NM,106.7920385,1045.29152,Low_spent_Medium_value_payments,636.453903,0,1.4568,-0.8424,0.0215,0.0646,-1.4164 +0x18cf1,CUS_0xb458,August,38,087-39-6979,Scientist,34613.16,,5,4,14,2,"Auto Loan, and Mortgage Loan",16.91389705,10,5.97,6,Standard,213.48,23.30172052,,Yes,33.50993646,151.694875,Low_spent_Small_value_payments,404.9381885,0,-0.0536,0.5241,-0.398,0.1213,0.6863 +0x18cfd,CUS_0x87e6,August,26,239-23-3959,Doctor,122135.12,10125.92667,2,4,1,1,Credit-Builder Loan,24.21461214,15.51485985,11.46,2,Good,1555.681517,38.83059968,18 Years and 2 Months,No,53.47224018,425.7043435,High_spent_Medium_value_payments,783.4160829,0,-1.2232,1.295,0.3937,-0.4512,0.2797 +0x18d09,CUS_0x9ca,August,39,401-46-8317,Mechanic,60530.7,4962.225,3,180,9,1,Auto Loan,,19,9.35,7,Standard,361.83,40.15303785,29 Years and 5 Months,No,40.76317256,59.29216284,High_spent_Medium_value_payments,646.1671646,0,-0.0012,0.7056,-1.6676,2.3191,-0.5512 +0x18d15,CUS_0x9661,August,46,233-06-0115,Doctor,17426.71,,5,4,10,7,"Student Loan, Payday Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Auto Loan",,8,9.18,12,Standard,2025.633787,34.33071177,8 Years and 8 Months,NM,79.4216295,35.01665961,High_spent_Large_value_payments,303.536015,0,0.808,-0.2636,2.0019,-0.5945,-1.036 +0x18d21,CUS_0x4892,August,25,023-32-1539,Lawyer,116098.12,9402.843333,6,4,7.288361749,2,"Payday Loan, Personal Loan, and Credit-Builder Loan",7.106894153,8,19.69,6,Standard,317.72,26.17380933,,Yes,150.7739712,1066.162187,Low_spent_Large_value_payments,413.2856359,0,-0.0777,-0.6401,1.4666,0.7491,-0.3436 +0x18d2d,CUS_0x71eb,August,33,174-53-3135,Scientist,71203.4,6132.616667,7,6,20,5,"Payday Loan, Payday Loan, Auto Loan, Student Loan, and Mortgage Loan",29.70240037,19.88949816,12.26,9,Standard,1419.395504,36.97740789,15 Years and 5 Months,Yes,235.5154686,136.2871547,High_spent_Large_value_payments,481.4590433,0,1.9425,-1.1895,-1.0107,2.0972,0.5255 +0x18d39,CUS_0xabf9,August,25,776-37-1657,Media_Manager,15576.36,,7,3,16,5,"Auto Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, and Payday Loan",16.76939894,12,9.58,8,Standard,1544.49,37.50996159,16 Years and 2 Months,Yes,48.95141778,32.95430778,High_spent_Small_value_payments,313.1972744,0,-0.7238,1.0134,0.4813,0.3202,0.4361 +0x18d45,CUS_0x961d,August,50,727-57-6857,Writer,87438.03,7354.5025,6,3,9.288361749,2,"Auto Loan, Mortgage Loan, and Credit-Builder Loan",,19.98532037,4.15,6,Standard,87.59073988,38.61964495,18 Years and 3 Months,NM,176.1426576,704.2938141,Low_spent_Medium_value_payments,554.9512393,0,-0.0614,1.5871,-1.204,-0.9552,-0.2947 +0x18d51,CUS_0x7960,August,36,910-40-6258,Lawyer,125179.95,10173.6625,4,3,9,0,,18.92599742,,1.74,6,Good,1533.689953,28.56951761,16 Years and 4 Months,No,0,350.0355291,!@9#%8,927.3307209,0,-0.4054,0.6449,-0.7789,-0.7587,1.2495 +0x18d5d,CUS_0x75ba,August,33,676-38-0279,Writer,20723.8,1611.983333,7,9,24.06745738,6,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, and Student Loan",46.94505676,25,18,7,Bad,4617.490954,32.86292688,12 Years and 5 Months,Yes,95.60595821,,High_spent_Small_value_payments,199.8858314,0,-0.8131,0.8934,0.3893,0.24,0.8867 +0x18d69,CUS_0x80ae,August,39,#F%$D@*&8,Mechanic,118151.16,9904.93,4,5,7.288361749,4,"Personal Loan, Student Loan, Home Equity Loan, and Payday Loan",20.68833859,18,4.41,1,Standard,643.56,29.24395045,16 Years and 6 Months,No,205.9680966,1258.36386,Low_spent_Medium_value_payments,226.0985044,0,1.2326,0.4274,-1.1542,0.8464,0.5796 +0x18d75,CUS_0x3b11,August,27,109-50-0031,Accountant,35854.31,,7,4,5264,5,"Personal Loan, Auto Loan, Student Loan, Debt Consolidation Loan, and Personal Loan",22.96275845,17,13.52,8,Standard,162.45,23.16335357,7 Years and 4 Months,Yes,125.87095,,Low_spent_Medium_value_payments,348.426799,0,0.5816,0.0917,-0.1245,-0.2162,0.3253 +0x18d81,CUS_0xb023,August,26,648-96-1414,Media_Manager,81259.36,,7,7,31,6,"Student Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",,23.02737234,5.08,14,_,2438.186458,26.04118026,,Yes,405.1977059,,High_spent_Large_value_payments,549.855639,0,-0.9328,1.0062,1.8993,-1.0199,-1.1867 +0x18d8d,CUS_0xc4ea,August,33,433-68-1467,Developer,13207.76,,7,5,9,4,"Student Loan, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",15.34793494,11,15.15,12,Standard,673.152252,39.0224853,,Yes,37.77977992,53.07234423,Low_spent_Medium_value_payments,277.2028619,0,-0.046,1.8698,-1.3288,0.2706,0.2589 +0x18d99,CUS_0x4eb3,August,80,988-54-9029,Entrepreneur,65544.12,5311.01,3,3,10,2,"Student Loan, and Debt Consolidation Loan",0,0,8.2,1,Good,1357.63,29.43138458,,No,71.71689333,170.7956443,High_spent_Medium_value_payments,538.5884624,0,-0.8787,2.8135,1.0519,1.8615,1.1429 +0x18da5,CUS_0x95c2,August,30,565-74-6364,Developer,33498.8,2567.566667,1,3,10,1,Home Equity Loan,15.68173612,9.565344791,0.63,4,Good,885.2390218,33.42360075,30 Years and 6 Months,No,27.36496513,123.5445607,Low_spent_Small_value_payments,395.8471409,0,-0.7378,1.9361,-1.0367,-0.0745,-1.7913 +0x18db1,CUS_0x7269,August,19,600-08-5407,Lawyer,35389.89,2700.1575,4,7,10,2,"Home Equity Loan, and Debt Consolidation Loan",15.87814709,13,11.79,2,Standard,873.71,33.04354685,31 Years and 3 Months,Yes,45.75135672,82.2839996,High_spent_Medium_value_payments,391.9803937,0,1.0006,-0.5321,0.03,-0.3082,-0.5195 +0x18dbd,CUS_0x269d,August,39,415-10-2620,Media_Manager,57810.68,,7,5,7,4,"Payday Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",26.4239697,16,3.37,8,_,1419.99,39.30218964,,No,131.8714819,393.6311363,Low_spent_Large_value_payments,234.1530485,0,-0.2333,0.6624,-0.3837,-1.4794,-0.7134 +0x18dc9,CUS_0x903a,August,37,702-75-9603,Doctor,17214.01,,8,6,20.06745738,8,"Auto Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Not Specified, Home Equity Loan, and Not Specified",26.06512925,18,3.12,10,Bad,2758.370954,31.61229114,11 Years and 9 Months,Yes,107.0378623,,!@9#%8,129.7608243,0,1.0268,-0.4265,-0.7748,1.2183,0.3362 +0x18dd5,CUS_0xb20f,August,49,139-28-1601,_______,133628.52,,3,1224,3,0,,13.78798154,12,3.88,7,Good,135.75,39.15136121,18 Years and 10 Months,No,0,250.7220586,High_spent_Medium_value_payments,1129.148941,0,-0.3772,1.0629,-0.2186,-0.1277,-1.2666 +0x18de1,CUS_0x73db,August,22,866-14-2424,Entrepreneur,81538.76,,9,7,18,5,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",35.11837085,21,23.77,10,_,3869.25,36.17742791,9 Years and 5 Months,Yes,897.0628499,288.7388427,!@9#%8,333.213454,0,0.4421,-1.0551,0.5854,-1.3669,0.8918 +0x18ded,CUS_0xb3b0,August,20,302-80-4643,Journalist,40626.05,3516.504167,1,4,4,3,"Payday Loan, Mortgage Loan, and Not Specified",9.68808069,9,-1.44,3,Good,68.18644132,33.00142979,17 Years and 9 Months,No,53.88119413,76.15356053,High_spent_Medium_value_payments,479.7273481,0,0.2205,1.0237,0.363,1.8838,-0.8084 +0x18df9,CUS_0x476d,August,40,811-49-0838,Developer,7710.84,927.57,10,6,4792,9,"Credit-Builder Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Home Equity Loan, Personal Loan, and Payday Loan",35.63304852,19,17.18,9,Bad,4179.239783,29.22443152,9 Years and 9 Months,Yes,40.77110514,,High_spent_Medium_value_payments,285.5198207,0,-0.9814,-1.2362,0.6441,2.6104,0.3403 +0x18e05,CUS_0x41f3,August,22,375-73-1499,Developer,73047.96,6253.33,5,7,15,3,"Personal Loan, Home Equity Loan, and Personal Loan",22.08470274,18.02788761,10.86,8,_,1512.417327,40.10237964,18 Years and 9 Months,Yes,117.5062763,,High_spent_Large_value_payments,621.3428464,0,-0.4697,0.9622,-0.3619,-0.281,0.8853 +0x18e11,CUS_0xa058,August,24,607-05-1842,Manager,25773.73,2359.810833,5,6,7.288361749,0,,,,9.01,5,_,33.96689694,31.22543099,16 Years and 5 Months,Yes,0,627.7483519,Low_spent_Medium_value_payments,308.1701924,0,1.4222,-2.0881,-0.2986,0.5712,0.9488 +0x18e1d,CUS_0x9074,August,31,866-84-7018,Manager,17685.73,,2,1,5,4,"Payday Loan, Mortgage Loan, Student Loan, and Auto Loan",10.03297626,12,2.53,3,Good,759.2581475,36.61736958,,No,38.53351101,210.8905844,Low_spent_Small_value_payments,216.6050229,0,-0.6937,-1.6012,-0.0363,-1.8848,-0.2883 +0x18e29,CUS_0x30eb,August,18,705-82-0366,Entrepreneur,31944.72,2417.06,4,4,11,5,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",26.92554046,20,15.91,6,Standard,629.3591015,34.18778914,9 Years and 2 Months,Yes,83.71397479,225.7861374,Low_spent_Large_value_payments,230.3659243,0,-0.9616,-1.1596,-0.1611,-1.5862,0.2891 +0x18e35,CUS_0x9f27,August,40,586-80-6673,Media_Manager,15005.31,,4,4,20,7,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Not Specified, Credit-Builder Loan, Payday Loan, and Not Specified",19.29151545,15.27090007,17.98,9,Standard,1235.811021,33.15717316,11 Years and 0 Months,Yes,66.83655665,,Low_spent_Small_value_payments,253.6001391,0,-0.1956,1.139,-1.9788,-0.1625,-0.4082 +0x18e41,CUS_0x7cb3,August,20,890-81-4409,Accountant,57563.94,4917.995,4,7,18,0,,,18,7.03,7,Standard,1443,26.68303135,17 Years and 8 Months,Yes,0,,Low_spent_Small_value_payments,155.1421301,0,-1.318,0.3815,2.0893,0.9729,0.722 +0x18e4d,CUS_0x8f1b,August,80,#F%$D@*&8,Musician,60323.34,,4,7,6,4,"Auto Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",14.71679411,12,-1.93,2,_,600.73,37.22809159,29 Years and 4 Months,No,112.4468549,385.1767537,Low_spent_Small_value_payments,269.3708914,0,-0.6596,0.3238,0.2486,-1.8571,-0.302 +0x18e59,CUS_0x8be2,August,37,377-23-0938,Developer,56052.42,4293.785086,9,8,32,5,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Payday Loan",35.30622922,20,15.23,13,Bad,2466.56,25.52354178,,Yes,588.2399474,,Low_spent_Medium_value_payments,253.4832863,0,-0.5273,-0.945,1.0852,-0.7133,0.1778 +0x18e65,CUS_0xa6c1,August,26,#F%$D@*&8,Doctor,18374.32,,6,6,20,5,"Auto Loan, Student Loan, Student Loan, Debt Consolidation Loan, and Student Loan",25.07908553,20.77374011,10.12,4,Standard,1893.207511,29.85063716,,Yes,50.15887184,90.42508697,!@9#%8,288.5353745,0,0.5999,1.2055,-1.2296,0.519,-0.0239 +0x18e71,CUS_0xc1db,August,28,471-05-7263,Musician,17951.3,1342.941667,3,4,4376,7,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Personal Loan, and Personal Loan",18.96776999,12,18.77,8,Standard,664.65,32.53260785,18 Years and 8 Months,Yes,62.69181676,54.50969368,!@9#%8,307.0926562,0,-0.88,0.3302,1.3865,0.7529,-0.1048 +0x18e7d,CUS_0x3e74,August,36,477-79-0846,Scientist,19047.36,,8,5,23,6,"Payday Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",40.01127997,29.10799228,20.81,15,Bad,3054.095594,32.77002401,12 Years and 0 Months,Yes,68.68685746,,Low_spent_Small_value_payments,247.4668901,0,1.0025,0.1955,0.8517,0.7685,0.6248 +0x18e89,CUS_0xc60a,August,26,451-63-9436,_______,103136.76,8613.73,0,6,12,0,,8.609971072,10,6.32,1,Good,330.98,28.40019221,25 Years and 9 Months,No,0,,High_spent_Small_value_payments,585.6796465,0,-0.1871,0.1655,0.7658,0.0265,-1.1702 +0x18e95,CUS_0x1d51,August,49,782-33-0423,Developer,69563.34,5738.945,1,4,2,3,"Debt Consolidation Loan, Auto Loan, and Mortgage Loan",6.602071772,8,5.94,3,Good,164.52,31.8769253,19 Years and 5 Months,No,137.7780674,89.74145251,High_spent_Medium_value_payments,596.3749801,0,0.511,-0.7249,0.7225,0.3906,-0.0217 +0x18ea1,CUS_0x4df6,August,42,920-71-9716,_______,16176.835,1585.069583,8,3,10,3,"Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",18.07432337,14,0.56,7,Standard,1200.7,39.74972778,20 Years and 4 Months,No,21.96218641,105.55714,Low_spent_Small_value_payments,320.9876319,0,-0.4147,0.5348,-0.869,1.3306,-0.7132 +0x18ead,CUS_0x7edc,August,18,300-94-7083,Engineer,40896.9,,5,3,18,3,"Auto Loan, Mortgage Loan, and Mortgage Loan",,13,10.19,7,Standard,365.97,35.31716284,27 Years and 5 Months,Yes,101.5216676,150.5597456,Low_spent_Large_value_payments,352.6260868,0,0.7294,0.4705,0.2864,0.7387,-0.7792 +0x18eb9,CUS_0x9d6b,August,50,738-56-1440,Accountant,21115.99,1730.665833,3,7,17,0,,26.39176232,18.97281074,14.28,4,_,519.0447793,31.37705619,32 Years and 4 Months,Yes,0,35.3520694,High_spent_Large_value_payments,377.7145139,0,-0.4328,-1.261,-1.296,-0.8939,0.7033 +0x18ec5,CUS_0xa7f3,August,30,821-77-6249,Teacher,83332.88,6667.406667,4,6,20,0,,23.50027387,17,11.6,8,Standard,292.99,28.14252288,20 Years and 3 Months,Yes,0,102.7039194,High_spent_Large_value_payments,804.0367472,0,-0.4076,-0.5574,0.7431,-0.7126,0.021 +0x18ed1,CUS_0x8588,August,35,822-09-0533,Doctor,144446.72,11874.22667,5,3,10,100,"Student Loan, and Auto Loan",17.20285873,13,4.26,3,Standard,1098.96,36.46792223,32 Years and 10 Months,No,176.439612,97.80393067,High_spent_Large_value_payments,1153.179124,0,1.0084,0.2724,-0.0821,0.5371,0.9047 +0x18edd,CUS_0x191f,August,50,072-38-6457,Developer,14957.52,,1275,6,12,1,Student Loan,12.18823181,9,4.64,4,Standard,1015.61,25.30476759,30 Years and 2 Months,No,8.390856356,54.59381576,Low_spent_Large_value_payments,345.7613279,0,-0.3951,-0.729,-0.286,1.2739,0.3317 +0x18ee9,CUS_0x4fd4,August,37,577-23-3211,Accountant,39110.82,,7,7,16.06745738,9,"Not Specified, Personal Loan, Personal Loan, Home Equity Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",,23.17774313,3.31,8,Bad,2989.561394,40.31241373,12 Years and 5 Months,Yes,289.668806,,Low_spent_Large_value_payments,46.49486587,0,1.1939,1.0734,0.3328,-0.6847,0.4317 +0x18ef5,CUS_0x6529,August,27,521-76-1377,Accountant,80595.48,6899.29,7,5,6,0,,,11,17.54,8,Standard,1261,39.50267421,17 Years and 8 Months,Yes,0,290.5680982,High_spent_Small_value_payments,659.3609018,0,-0.5111,-0.4961,0.0645,1.1371,-0.3708 +0x18f01,CUS_0x6a39,August,26,620-09-2390,Developer,87337.08,7441.09,6,7,18,0,,11.84445285,9.617924568,17.86,12,Standard,104.5565821,40.08595958,27 Years and 2 Months,Yes,0,376.3984681,Low_spent_Medium_value_payments,647.7105319,0,-2.0109,0.7766,-2.0862,2.1472,1.0246 +0x18f0d,CUS_0x3c0b,August,29,235-06-0085,Doctor,18331.415,,2,615,3,3,"Credit-Builder Loan, Student Loan, and Student Loan",15.39063258,,2.84,1,_,1012.22,35.71554603,29 Years and 5 Months,No,37.52529099,,Low_spent_Small_value_payments,194.5821695,0,-1.304,-1.844,0.3826,0.9427,1.0496 +0x18f19,CUS_0x32fb,August,52,396-21-7163,Doctor,55877.54,4477.461667,4,5,11,1,Personal Loan,15.0075463,11,10.38,8,Standard,592.24,34.05153095,22 Years and 8 Months,Yes,46.35492673,185.9002312,High_spent_Small_value_payments,475.4910088,0,-0.0427,-1.5135,-0.2577,0.0369,0.6495 +0x18f25,CUS_0xb692,August,42,824-48-9351,Journalist,29663.56,2715.963333,7,5,482,2,"Mortgage Loan, and Home Equity Loan",24.14510801,20,11.91,10,_,1915.89,28.27384379,18 Years and 2 Months,Yes,40.71075935,54.09519762,High_spent_Medium_value_payments,426.7903764,0,0.5996,-0.8535,0.8114,-0.6088,-1.6852 +0x18f31,CUS_0x9fe8,August,52,160-91-1987,Writer,31527.53,2853.294167,6,3,11,1,Student Loan,,10,3.38,3,Standard,1063.18,27.21008432,21 Years and 2 Months,No,16.26007402,147.039444,Low_spent_Large_value_payments,392.0298987,0,0.0527,0.6188,-0.5935,-0.2435,-0.0169 +0x18f3d,CUS_0x6084,August,23,908-30-6309,Teacher,14311.59,,1291,3,33,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Personal Loan, and Auto Loan",30.2226621,23.70438553,17.68,12,Standard,2279.598547,35.68309965,8 Years and 10 Months,Yes,51.5639087,,Low_spent_Small_value_payments,218.452129,0,-0.2498,-0.8318,1.0514,0.048,0.7149 +0x18f49,CUS_0x7a12,August,35,169-13-2683,Writer,75569.1,6458.425,3,7,7,0,,25.33655483,19,8.35,11,Standard,1159.55,34.59770966,16 Years and 9 Months,Yes,0,486.5565519,Low_spent_Large_value_payments,429.2859481,0,0.2913,-0.6285,-0.695,0.9814,0.4422 +0x18f55,CUS_0x7270,August,23,834-23-2429,Journalist,24859.96,,4,7,12,3,"Not Specified, Debt Consolidation Loan, and Auto Loan",11.96251716,11,11.02,2,Standard,407.48,29.26555079,28 Years and 3 Months,No,59.01474299,24.04169242,High_spent_Medium_value_payments,371.5098979,0,0.6686,-0.8504,0.47,1.5064,1.9412 +0x18f61,CUS_0x3606,August,22,162-34-3252,_______,164189.48,13485.45667,5,3,8.288361749,0,Student Loan,14.76602018,13,11.56,1,_,993.17,33.74750948,26 Years and 10 Months,No,37303,689.6457762,High_spent_Medium_value_payments,1256.131486,0,-1.2717,-0.1136,-1.1034,-0.4914,1.0787 +0x18f6d,CUS_0xbf8f,August,46,110-49-2510,Journalist,45848.86,3672.738333,8,5,11,2,"Student Loan, and Auto Loan",14.46479045,10,16.37,4,_,945.68,33.06396838,23 Years and 9 Months,Yes,50.62285479,223.2126265,High_spent_Small_value_payments,353.4383521,0,-1.066,-1.2751,-0.8823,0.6704,-1.0459 +0x18f79,CUS_0x961e,August,44,679-62-7861,Architect,34199.94,2730.995,4,7,19,2,"Student Loan, and Debt Consolidation Loan",,20,4.35,,_,1379.81,24.86641531,33 Years and 5 Months,Yes,50.40297721,166.6300978,Low_spent_Large_value_payments,326.066425,0,0.2984,-1.5086,-1.5731,1.5225,0.0632 +0x18f85,CUS_0x24cc,August,30,574-39-8582,Writer,36186.85,2797.570833,0,4,12,1,Mortgage Loan,10.91352414,8.176843322,7.21,5,_,825.3129358,25.31792213,29 Years and 10 Months,No,18.30934307,98.9845752,High_spent_Medium_value_payments,412.4631651,0,-0.4372,-1.9957,-0.4675,0.1151,-0.374 +0x18f91,CUS_0x1de9,August,26,798-92-6478,Architect,106002.32,8974.526667,4,4,13,4,"Debt Consolidation Loan, Mortgage Loan, Student Loan, and Payday Loan",21.26267947,17,8.64,0,_,332.47,26.07000068,21 Years and 10 Months,No,218.5836408,194.2721029,!@9#%8,724.596923,0,0.6186,-0.3911,0.0367,-1.8772,-0.2596 +0x18f9d,CUS_0xa5c2,August,31,345-77-5573,Musician,37824.96,2837.103753,3,6,3,4,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, and Mortgage Loan",14.2204199,12,3.09,,_,503.3446487,24.11590561,27 Years and 5 Months,No,382.1898664,54.63111602,High_spent_Medium_value_payments,396.97693,0,-0.4495,1.3517,1.5167,0.4543,0.4275 +0x18fa9,CUS_0x5353,August,32,#F%$D@*&8,Manager,9607.53,,2,2,22,5,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, and Personal Loan",16.86576196,12.95236408,7.63,8,Standard,2567.356276,28.14684917,17 Years and 6 Months,Yes,22.12554879,39.2225494,High_spent_Small_value_payments,296.9146518,0,-1.335,-0.2898,0.4761,-0.5742,0.0824 +0x18fb5,CUS_0x3bc3,August,45,860-49-3589,Journalist,92459.1,,3,3,9,2,"Not Specified, and Mortgage Loan",16.30806053,13,3.01,7,Standard,1148.084088,42.66875748,16 Years and 2 Months,No,142.7942843,189.0572901,High_spent_Small_value_payments,697.3393397,0,-0.4438,-0.9015,0.9334,-1.0234,-1.3992 +0x18fc1,CUS_0x5cd7,August,18,306-56-6615,Mechanic,68917.94,5498.161667,5,2,11,0,,,10,0.19,4,Good,1103.835944,36.61969644,17 Years and 11 Months,No,0,181.0473448,High_spent_Medium_value_payments,637.6431759,0,2.3373,0.0837,-0.0318,0.3092,-0.8042 +0x18fcd,CUS_0xc272,August,45,404-87-5591,Mechanic,75436.72,,7,9,18,7,"Payday Loan, Student Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Mortgage Loan",36.24366994,26.77459012,2.81,,Bad,2857.323107,31.01313733,13 Years and 9 Months,NM,329.6664584,383.6157325,Low_spent_Medium_value_payments,171.9571424,0,-1.0057,0.2159,-0.0233,-3.0127,0.407 +0x18fd9,CUS_0x33b6,August,80,175-88-4935,Accountant,28690.97,2657.914167,4,4,13,0,,10.58477539,9,12.28,10,Standard,839.77,37.24478192,18 Years and 2 Months,Yes,0,286.3756609,Low_spent_Small_value_payments,269.4157558,0,-1.1338,0.0317,0.0612,0.7969,1.1363 +0x18fe5,CUS_0x2d8c,August,38,316-30-8022,Musician,9464.405,,8,9,20.06745738,9,"Debt Consolidation Loan, Auto Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, and Not Specified",32.19936544,16,27.98,10,Bad,4037.890954,34.19485999,12 Years and 4 Months,Yes,64.82523998,45.36539023,Low_spent_Medium_value_payments,230.6591235,0,0.5317,0.0259,0.8136,-1.2137,0.0606 +0x18ff1,CUS_0x6863,August,29,933-44-8488,Journalist,64416.46,5494.038333,5,3,14,4,"Payday Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",12.91405432,11,9.03,,Standard,758.45,34.97155384,29 Years and 5 Months,NM,130.3821359,640.5453265,Low_spent_Small_value_payments,68.47637089,0,0.2449,-0.2192,-1.1276,-0.8269,-0.2782 +0x18ffd,CUS_0x2747,August,31,131-04-1216,Accountant,7991.33,,8,6,26.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",45.4219061,24,5.59,9,_,3093.500954,33.32279369,4 Years and 6 Months,Yes,43.36129547,,High_spent_Large_value_payments,238.4368947,0,-0.057,0.1803,0.9358,0.633,-0.1919 +0x19009,CUS_0x95a3,August,19,001-06-7616,Writer,7798.79,885.8991667,8,8,32.88954781,7,"Payday Loan, Auto Loan, Personal Loan, Personal Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",30.35667822,21.65571948,8.39,7,Standard,2539.949547,34.12390069,17 Years and 6 Months,Yes,1353.05166,29.51830055,Low_spent_Medium_value_payments,291.6898751,0,0.5319,0.2145,0.2811,-0.4601,0.6948 +0x19015,CUS_0x6b13,August,20,766-63-6764,Scientist,11949.505,774.7920833,6,6,18,2,"Personal Loan, and Debt Consolidation Loan",9.315287809,8,12.32,3,Standard,613.0977493,36.38903421,24 Years and 11 Months,Yes,19.88405276,34.17461276,High_spent_Medium_value_payments,278.2705275,0,0.2983,-1.2698,1.5561,-0.3181,-0.8005 +0x19021,CUS_0xabc1,August,18,963-46-6377,Media_Manager,32300.85,,6,5,12,3,"Student Loan, Student Loan, and Credit-Builder Loan",,,,0,Standard,258.3869256,33.45911725,30 Years and 0 Months,Yes,71.33363565,106.9828192,High_spent_Medium_value_payments,355.7886155,0,0.1957,0.9164,0.1462,1.6215,0.4732 +0x1902d,CUS_0x11c1,August,34,688-99-5258,Engineer,29902.22,2230.851667,6,3,12,3,"Payday Loan, Personal Loan, and Student Loan",13.83244503,13,9.57,0,Standard,533.71,38.32183056,,Yes,66.2103271,44.11332028,!@9#%8,352.7615193,0,-0.4657,0.6927,-0.795,0.3065,0.5227 +0x19039,CUS_0x6138,August,20,245-14-1659,Media_Manager,78096.39,6438.0325,8,5,10,2,"Personal Loan, and Student Loan",21.86193848,15,11.51,9,_,214.94,36.02412188,19 Years and 11 Months,Yes,85.91691569,10000,High_spent_Large_value_payments,647.0857955,0,-0.7589,1.4126,1.0448,0.6191,2.3327 +0x19045,CUS_0xb9e0,August,27,187-20-8020,Lawyer,56580.63,4660.0525,6,5,23,2,"Personal Loan, and Auto Loan",18.8515298,,14.98,12,Standard,1990.940797,28.76208739,6 Years and 8 Months,Yes,92.73864405,84.6524533,High_spent_Small_value_payments,548.6141526,0,-1.6236,-0.9068,-0.4755,1.2124,1.5961 +0x19051,CUS_0x91b2,August,34,779-31-9352,Manager,28472.92,,2,1,5285,4,"Home Equity Loan, Debt Consolidation Loan, Student Loan, and Personal Loan",3.673957889,5,7.69,7,Good,286.622151,35.29142665,24 Years and 11 Months,No,75.55976368,81.81126126,High_spent_Medium_value_payments,324.4374878,0,2.3699,1.4304,-0.288,0.2783,0.4221 +0x1905d,CUS_0x3896,August,21,217-87-3906,Lawyer,11183.865,,8,7,5,4,"Payday Loan, Student Loan, Payday Loan, and Home Equity Loan",9.525867091,8,0.59,3,_,304.5,39.18557126,25 Years and 4 Months,No,31.61086838,140.657677,Low_spent_Small_value_payments,224.4303296,0,-0.8135,-0.9484,-1.347,-0.6181,-0.6614 +0x19069,CUS_0x66fc,August,42,332-96-0334,_______,143829.16,12087.76333,7,7,18,4,"Not Specified, Student Loan, Debt Consolidation Loan, and Not Specified",,11,11.98,10,Standard,106.92,38.94400026,20 Years and 5 Months,NM,372.7950058,585.1756315,Low_spent_Large_value_payments,520.805696,0,0.6461,-1.1887,0.4962,-0.9158,-1.6868 +0x19075,CUS_0x8967,August,30,340-62-7778,Journalist,45827.74,,5,6,6,2,"Not Specified, and Credit-Builder Loan",9.532610861,8,2.33,2,_,978.02,26.97111228,28 Years and 3 Months,No,53.71124128,298.1999591,Low_spent_Small_value_payments,333.4866329,0,0.1043,0.8255,-1.0703,0.8491,0.8832 +0x19081,CUS_0xb0ca,August,33,320-74-7615,_______,20668.71,1993.3925,5,6,16,6,"Not Specified, Student Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",19.95593905,,11.3,8,Standard,2272.74,26.15041154,8 Years and 2 Months,Yes,73.81090347,,High_spent_Large_value_payments,325.6990834,0,-1.374,-0.2123,-1.7425,-0.0338,-0.3396 +0x1908d,CUS_0xa940,August,47,242-85-8189,Journalist,10316.45,811.7041667,7,5,12,3,"Auto Loan, Payday Loan, and Personal Loan",9.8295785,11,1.63,6,_,166.0404664,30.12709357,25 Years and 4 Months,No,17.47116053,73.87068484,!@9#%8,288.6273793,0,0.2991,-1.2352,0.4513,2.0225,0.8862 +0x19099,CUS_0x51c,August,24,196-86-6440,Scientist,20785.41,,5,4,15,3,"Credit-Builder Loan, Personal Loan, and Not Specified",15.92444546,14,12.03,0,_,420.31,26.37920623,22 Years and 10 Months,Yes,37.3632427,117.6834974,Low_spent_Small_value_payments,317.2650099,0,-0.9643,-0.935,0.9714,-0.2275,-0.9396 +0x190a5,CUS_0x8b91,August,32,462-93-2900,Lawyer,16481.715,,7,3,15,6,"Payday Loan, Not Specified, Student Loan, Student Loan, Auto Loan, and Student Loan",6.693087387,8,16.59,8,Standard,145.32,33.80127666,9 Years and 11 Months,Yes,66.68122194,79.50862566,Low_spent_Large_value_payments,277.5577774,0,-0.1829,0.8534,0.4811,-0.1265,-0.0842 +0x190b1,CUS_0x65aa,August,33,990-78-3822,Journalist,16826.495,,5,7,20,100,"Payday Loan, Home Equity Loan, Student Loan, and Credit-Builder Loan",24.87610926,18,7.12,8,Standard,464.4,38.28660991,14 Years and 4 Months,Yes,39.6718144,83.99733337,Low_spent_Small_value_payments,321.8516439,0,0.3893,-0.3806,0.6335,-1.6134,0.0791 +0x190bd,CUS_0x5107,August,26,582-10-2127,Teacher,9622.625,,5,5,16,5,"Student Loan, Not Specified, Mortgage Loan, Payday Loan, and Credit-Builder Loan",,10,18.07,5,Standard,1836.2,39.84704114,,Yes,29.79956294,46.70298431,Low_spent_Small_value_payments,304.0859944,0,0.9693,-0.5295,0.4162,2.3865,-0.9949 +0x190c9,CUS_0x22d4,August,46,167-27-4056,Doctor,17059.21,1574.600833,9,5,26,4,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",27.85403085,20.19217419,8.57,16,_,2724.891441,24.74444524,12 Years and 5 Months,Yes,30.96434888,84.70748289,Low_spent_Small_value_payments,331.7882516,0,-0.4664,-0.7109,0.2986,-1.2376,0.9388 +0x190d5,CUS_0x7e8d,August,35,162-25-0998,Media_Manager,39369.68,3044.806667,8,7,33,7,"Student Loan, Mortgage Loan, Not Specified, Personal Loan, Credit-Builder Loan, Student Loan, and Student Loan",22.36795813,17,29.88,15,Bad,3290.93,36.71166785,9 Years and 2 Months,Yes,152.554322,168.4399321,!@9#%8,263.4864126,0,-0.2115,-1.7174,0.2164,-0.2259,0.7286 +0x190e1,CUS_0xbed7,August,19,216-77-4563,Lawyer,18490.14,,6,9,34.95700519,7,"Student Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, and Home Equity Loan",35.89957842,22,21.29,12,Bad,3814.320954,27.74903782,2 Years and 6 Months,Yes,1415.575503,131.7962313,Low_spent_Medium_value_payments,173.162396,0,2.3254,-0.4577,-0.0358,-2.0655,-0.8065 +0x190ed,CUS_0x9444,August,18,293-47-2287,Manager,19556.16,1865.68,7,7,34.06745738,5,"Auto Loan, Auto Loan, Student Loan, Personal Loan, and Auto Loan",30.04417091,18.05231539,21.55,9,_,3381.989732,29.82817767,5 Years and 3 Months,NM,65.79736994,193.0372445,Low_spent_Medium_value_payments,181.0130976,0,-0.0534,0.6515,1.0952,3.3693,-0.0292 +0x190f9,CUS_0x8fe6,August,37,129-64-0240,Media_Manager,19396.5,,9,10,24,5,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",32.53948775,21,,10,Bad,2552.26,25.71202384,7 Years and 11 Months,Yes,64.71187995,81.45645096,Low_spent_Medium_value_payments,277.9691691,0,0.5723,0.6541,-0.2098,1.4177,-0.5782 +0x19105,CUS_0x25f6,August,19,781-55-7343,Mechanic,20417.48,,9,5,35.06745738,8,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",43.39537791,24.74103437,24.53,8,Bad,3392.19556,28.06533211,12 Years and 6 Months,Yes,125.2274308,21.66759793,High_spent_Large_value_payments,264.2060389,0,-1.4321,0.8541,-1.2653,0.5645,0.141 +0x19111,CUS_0x7d2c,August,22,633-08-0119,Manager,76689.8,,3,6,8,6,"Credit-Builder Loan, Not Specified, Personal Loan, Home Equity Loan, Personal Loan, and Personal Loan",13.42388654,14.43484869,19.7,6,Standard,1270.367221,28.57980634,8 Years and 0 Months,NM,217.6130429,140.0048148,High_spent_Medium_value_payments,560.7638089,0,0.1418,0.8771,-0.3527,1.3216,-1.5703 +0x1911d,CUS_0xaab3,August,23,701-00-3430,Doctor,14759.53,,6,6,26,6,"Credit-Builder Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",43.92545832,21.23979088,29.02,8,Bad,5499.851276,27.63245432,12 Years and 9 Months,Yes,67.79318563,64.9745678,Low_spent_Medium_value_payments,286.7283299,0,0.0192,2.2797,1.9596,0.6338,-1.5601 +0x19129,CUS_0x28d0,August,26,104-04-7236,Writer,16293.385,,2,1,6,0,,0,2,5.21,2,Good,1045.066841,37.24869231,20 Years and 4 Months,NM,0,36.2643115,High_spent_Medium_value_payments,333.4766297,0,-0.4198,-0.4896,0.1605,-0.5938,0.1721 +0x19135,CUS_0x3e2c,August,33,518-50-0395,Architect,43995.49,3927.290833,4,5,5,0,,,8.229749637,2.74,7,Good,981.9323693,23.04500876,25 Years and 10 Months,No,0,160.6492423,Low_spent_Large_value_payments,502.079841,0,1.101,-0.586,2.0656,-2.3198,-0.6963 +0x19141,CUS_0x2bb2,August,31,488-59-9418,Musician,57864.6,4559.05,7,7,12.28836175,2,"Debt Consolidation Loan, Mortgage Loan, and Not Specified",13.062879,12,17.16,4,Standard,539.17,27.35006501,31 Years and 5 Months,Yes,75.02216001,751.6456571,Low_spent_Small_value_payments,339.1746439,0,0.6661,-0.0932,-1.0649,1.0418,-0.1792 +0x1914d,CUS_0xbae9,August,31,348-98-9125,Scientist,106520.68,8789.723333,4,4,12.28836175,2,"Mortgage Loan, and Home Equity Loan",20.94026146,19,12.39,8,Standard,653.6,36.92685881,14 Years and 11 Months,Yes,98.33781177,,Low_spent_Small_value_payments,300.5707761,0,0.608,-0.1595,2.0037,-0.5719,0.3897 +0x19159,CUS_0xa2db,August,24,233-22-7758,Engineer,16956.72,1696.06,5,5,14.06745738,6,"Auto Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",,8,18.24,4,_,1992.110639,31.29734122,7 Years and 0 Months,Yes,78.22574077,,!@9#%8,184.2781279,0,-0.7956,0.5021,0.4708,0.122,-0.49 +0x19165,CUS_0x6cc4,August,43,070-13-3774,Mechanic,52830,4506.5,6,5,30,100,"Not Specified, Personal Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Mortgage Loan, and Personal Loan",35.73808939,21.72327091,4.99,10,Bad,1837.069423,40.63641773,14 Years and 9 Months,Yes,369.4844281,,Low_spent_Medium_value_payments,173.7172313,0,1.0373,-0.0256,0.0874,-1.0316,-0.0997 +0x19171,CUS_0x4601,August,28,777-38-8416,Media_Manager,50600.01,3923.6675,8,8,18.88954781,100,"Mortgage Loan, and Credit-Builder Loan",,25.0931925,6.4,15,_,1918.679527,35.68514091,13 Years and 0 Months,Yes,1374.509092,,High_spent_Large_value_payments,507.505613,0,0.8166,0.0853,0.36,-0.4477,0.4927 +0x1917d,CUS_0x3a7e,August,53,350-16-4497,Architect,67818.86,5373.571667,3,3,6,3,"Payday Loan, Student Loan, and Not Specified",5.855003771,9,8.89,9,_,41.14453554,24.49090339,30 Years and 11 Months,No,109.9666214,375.994892,High_spent_Small_value_payments,359.4356342,0,-1.3707,0.1156,0.4721,-0.6635,1.0682 +0x19189,CUS_0xfcb,August,24,765-35-2455,Lawyer,10805.56,627.4633333,5,6,15,2,"Not Specified, and Mortgage Loan",24.12069692,16,4.29,2,_,298.98,38.34901186,18 Years and 0 Months,No,13.16185999,36.9083761,Low_spent_Small_value_payments,302.6760972,0,-0.5976,0.458,0.0111,0.3783,-0.1888 +0x19195,CUS_0x9d0b,August,26,803-50-3658,Engineer,83210.28,,4,7,17,2,"Auto Loan, and Home Equity Loan",9.759009379,11,12.5,8,Standard,1001.02,31.8733604,16 Years and 6 Months,NM,122.0082486,244.7745882,High_spent_Medium_value_payments,588.3361632,0,-0.0698,1.8173,0.0505,-0.5259,-0.8781 +0x191a1,CUS_0x7a2d,August,35,439-03-4945,Journalist,19975.13,,8,6,18,4,"Not Specified, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",16.83019279,15,5.09,8,_,643.23,35.64919744,16 Years and 8 Months,No,36.27877044,32.63934149,High_spent_Small_value_payments,337.7413047,0,1.1736,-0.0046,-0.2435,0.4409,-1.2801 +0x191ad,CUS_0x7bad,August,45,502-87-6974,Writer,77672.34,,3,1,2,3,"Student Loan, Not Specified, and Student Loan",9.512856637,7,,3,Good,813.2,27.29536402,21 Years and 11 Months,No,139.071777,245.0742955,High_spent_Small_value_payments,552.5234275,0,-0.5573,1.2504,-1.155,-0.0538,0.2881 +0x191b9,CUS_0x3101,August,18,731-31-7428,Musician,70097.54,5850.461667,5,5,20,1,Debt Consolidation Loan,16.71456955,9,13.02,7,Standard,229.36,26.38279132,30 Years and 8 Months,Yes,53.38330127,207.4157766,Low_spent_Large_value_payments,594.2470888,0,0.5717,1.5902,-1.7288,-1.3919,-1.2226 +0x191c5,CUS_0x5d0c,August,28,133-75-8141,Lawyer,52639.65,4618.6375,3,6,9,4,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",14.85527019,9.386227936,9,6,Standard,1610.877187,31.76556645,10 Years and 10 Months,Yes,109.9534706,450.0199782,Low_spent_Small_value_payments,191.8903012,0,-0.4224,-1.5593,-0.3423,0.1196,0.2926 +0x191d1,CUS_0x5391,August,29,830-09-1776,Manager,62827.47,5441.6225,4,7,16,1,Credit-Builder Loan,,13,10.77,4,Standard,1031.09,40.74836629,17 Years and 9 Months,No,39.06519725,48.22505362,High_spent_Large_value_payments,696.8719991,0,-0.8568,0.0455,-0.0203,1.2639,1.027 +0x191dd,CUS_0xb8e9,August,44,634-98-9559,Developer,37443.81,2990.3175,5,2,2,100,"Mortgage Loan, Student Loan, and Credit-Builder Loan",,5,4.19,1,Good,1027.709255,39.71654649,22 Years and 9 Months,No,82.76438274,120.2959379,High_spent_Medium_value_payments,364.2505157,0,-1.0453,-0.418,-1.1547,-0.4288,-0.4353 +0x191e9,CUS_0xb132,August,20,363-21-7557,Doctor,15135.96,1300.33,4,3,23.06745738,2,"Auto Loan, and Not Specified",,15.28145626,,9,Standard,2439.102934,28.99116699,6 Years and 2 Months,Yes,23.03452455,155.4165448,Low_spent_Small_value_payments,214.8616427,0,1.1374,-0.3353,-0.3011,-2.3274,0.1319 +0x191f5,CUS_0x8d19,August,55,267-39-6802,Entrepreneur,25990.16,,4,6,14,1,Home Equity Loan,11.2524496,8,3.59,1,Standard,460.78,23.14211424,24 Years and 8 Months,No,16.95400963,198.5606786,Low_spent_Large_value_payments,273.8699785,0,-0.951,0.8864,0.5924,-0.9641,0.6852 +0x19201,CUS_0x5334,August,25,163-32-8176,Manager,80230.68,6501.89,4,5,31,2,"Debt Consolidation Loan, and Payday Loan",8.579997794,10,16.42,7,Standard,2696.61,28.33908726,14 Years and 8 Months,NM,100.0622811,646.3749221,Low_spent_Medium_value_payments,183.7517968,0,-0.0658,-0.8453,-1.1904,-0.1683,-1.6044 +0x1920d,CUS_0x3213,August,40,085-55-1713,Media_Manager,88402.96,7497.913333,4,5,6,0,,,8,15.48,2,Standard,885.12,40.33469492,31 Years and 11 Months,NM,0,145.3583834,High_spent_Large_value_payments,844.4329499,0,-1.6061,0.1902,-0.4841,0.6955,-1.1306 +0x19219,CUS_0xb05b,August,24,232-48-0599,Developer,106529.8,8906.483333,4,3,16,0,,19.08620474,17,,4,Standard,1488.37,30.24836855,24 Years and 11 Months,Yes,0,201.4306689,High_spent_Large_value_payments,929.2176645,0,-0.1869,-0.7903,0.6446,0.8621,0.4926 +0x19225,CUS_0x3ea4,August,50,029-60-8658,Writer,39491.26,3129.938333,7,5,9,0,,,13,1.1,3,Standard,730.89,28.55744157,18 Years and 9 Months,Yes,0,67.00924936,High_spent_Large_value_payments,485.984584,0,0.6474,-1.2868,0.0982,-1.1414,0.491 +0x19231,CUS_0x417b,August,38,771-62-0762,Developer,29777.3,2530.441667,10,10,31,5,"Payday Loan, Mortgage Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",,18.83862788,2.77,16,Bad,2111.111295,34.368244,6 Years and 10 Months,NM,13088,30.08294475,High_spent_Large_value_payments,357.1370895,0,-0.1693,1.8261,-0.2428,-0.9271,1.0268 +0x1923d,CUS_0x57c7,August,23,076-99-9914,Writer,74961.72,6421.81,5,6,16,4,"Credit-Builder Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",4.484635521,8,17.9,11,Standard,2158.3,38.34879305,9 Years and 11 Months,Yes,203.6268603,42.46345782,High_spent_Large_value_payments,636.0906819,0,1.2521,1.2501,-1.1802,0.2449,0.4786 +0x19249,CUS_0x6b8d,August,41,670-82-4845,Media_Manager,39979.96,3101.658457,6,5,13,2,"Student Loan, and Auto Loan",23.7377087,19,5.5,5,_,768.55,34.8728761,22 Years and 6 Months,NM,336.4810053,225.0932589,Low_spent_Large_value_payments,318.8969457,0,0.5788,-0.6351,-0.0218,-1.1704,1.879 +0x19255,CUS_0x8fa0,August,49,#F%$D@*&8,Architect,72412.84,5913.403333,7,4,5,2,"Home Equity Loan, and Mortgage Loan",,10,11.95,3,Standard,1062.1,29.42098073,,Yes,66.74648372,,High_spent_Medium_value_payments,597.1022447,0,0.3763,-0.6369,-1.9497,0.8895,-0.5172 +0x19261,CUS_0x5d50,August,34,560-98-6722,_______,34486.08,2914.84,5,6,10,3,"Personal Loan, Payday Loan, and Debt Consolidation Loan",3.149146126,4,3.39,3,Good,1423.18,25.3359242,,No,67.97279467,,!@9#%8,352.7288018,0,0.3844,0.1262,-0.5465,-0.2214,0.1014 +0x1926d,CUS_0xc459,August,54,352-52-2652,Media_Manager,36966.76,,5,3,13,0,,18.31290043,,11.42,,Standard,1188.75,23.73999243,22 Years and 0 Months,No,0,55.69317867,High_spent_Small_value_payments,491.8631547,0,-1.7793,-0.21,-1.3004,-0.269,0.1168 +0x19279,CUS_0x8698,August,35,488-61-8806,Scientist,12875.73,,6,5,15,4,"Payday Loan, Mortgage Loan, Student Loan, and Auto Loan",,19,0.57,1,Standard,52.94,41.33734851,29 Years and 3 Months,No,39.65818842,21.84801492,!@9#%8,270.3915467,0,1.328,0.1319,1.6835,-0.4345,0.0447 +0x19285,CUS_0x1ac9,August,30,815-80-6961,_______,12860.845,966.7370833,3,7,8,0,,23.87436032,17,10.55,4,Standard,209.28,33.63203605,28 Years and 5 Months,No,0,92.01152678,Low_spent_Small_value_payments,294.6621816,0,-1.2286,1.929,-1.0606,0.5469,-1.2766 +0x19291,CUS_0x6950,August,55,022-35-6033,Architect,22283.07,,4,4,17,3,"Debt Consolidation Loan, Mortgage Loan, and Student Loan",23.6603575,17,11.56,2,Standard,160.38,37.70853949,21 Years and 11 Months,Yes,52.13573637,,Low_spent_Small_value_payments,264.8345417,0,-1.2916,-1.7622,-0.8113,-0.5874,1.8752 +0x1929d,CUS_0x5d43,August,25,891-78-5847,Musician,124296.27,,5,2,10,4,"Auto Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",11.18239648,12,8.44,6,Good,294.6663718,25.76518356,27 Years and 11 Months,No,397.686069,,High_spent_Small_value_payments,277.740051,0,-1.1857,-1.0736,0.5411,-0.6577,-0.2834 +0x192a9,CUS_0xc475,August,18,997-76-8029,Architect,36898.38,3062.865,10,10,25.88954781,9,"Auto Loan, Debt Consolidation Loan, Not Specified, Student Loan, Personal Loan, Student Loan, Auto Loan, Personal Loan, and Student Loan",,20,27.73,10,Bad,3497.36,40.13251824,9 Years and 6 Months,Yes,1582.592059,,Low_spent_Large_value_payments,64.80157931,0,-0.5512,-1.0035,-0.0683,-0.1608,1.4975 +0x192b5,CUS_0xb4ca,August,33,436-70-4761,Writer,34319.66,,10,8,23.95700519,7,"Debt Consolidation Loan, Auto Loan, Student Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",,22.85712622,21.47,10,Bad,4892.944091,33.97771243,2 Years and 5 Months,Yes,1511.959248,,High_spent_Small_value_payments,206.1195093,0,-0.4836,0.4851,-0.7712,-0.4231,-0.2554 +0x192c1,CUS_0x1924,August,36,043-02-7839,Mechanic,17273.83,,4,3,8,1,Payday Loan,1.020907654,4,9.68,5,Good,193.9039436,36.13739524,,No,9.457421887,82.31522978,Low_spent_Medium_value_payments,326.7738373,0,-0.4367,-0.1934,1.3362,0.1479,0.8475 +0x192cd,CUS_0xb9bd,August,42,702-26-0572,Entrepreneur,32265.26,2673.771667,4,4,18,4,"Not Specified, Payday Loan, Credit-Builder Loan, and Payday Loan",,9,10.17,7,Standard,105.11,36.68165209,20 Years and 9 Months,Yes,64.44633574,,Low_spent_Small_value_payments,131.6866244,0,0.1951,-1.6733,0.6577,0.6491,-0.2168 +0x192d9,CUS_0x4d35,August,54,398-10-5759,_______,29988.93,2753.0775,5,5,3,100,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",7.740251998,9,3.28,5,Good,1161.294636,23.12866585,22 Years and 9 Months,No,52.58547444,,Low_spent_Small_value_payments,259.5931272,0,0.9693,-0.2663,0.7599,-0.0061,-0.8932 +0x192e5,CUS_0x2d50,August,39,105-96-2612,Architect,32078.72,2874.226667,6,5,2852.067457,9,"Mortgage Loan, Auto Loan, Not Specified, Payday Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",,20,26.24,10,Bad,2779.530954,32.04014863,13 Years and 6 Months,Yes,146.6823466,10000,High_spent_Small_value_payments,274.9297965,0,0.3664,-0.5686,-1.6336,-0.4091,0.2605 +0x192f1,CUS_0x18b9,August,27,643-82-1615,Engineer,10265.69,1112.474167,9,7,25.06745738,9,"Payday Loan, Home Equity Loan, Not Specified, Personal Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Personal Loan, and Mortgage Loan",,26.84453831,0.68,12,Bad,1897.346996,31.04215472,,Yes,48.41163874,52.96553301,Low_spent_Small_value_payments,273.149957,0,-0.7721,1.3947,-0.6472,0.1293,0.4176 +0x192fd,CUS_0x1585,August,22,168-46-0002,Media_Manager,18426.025,,6,6,14,6,"Not Specified, Home Equity Loan, Payday Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",,19,9.67,9,Standard,364.1,38.23391523,12 Years and 9 Months,Yes,78.42828579,55.72311537,!@9#%8,297.1988072,0,0.6331,1.1161,-0.7084,-0.0905,0.4063 +0x19309,CUS_0xa59d,August,38,#F%$D@*&8,Architect,17756.42,,7,3,33.06745738,5,"Auto Loan, Not Specified, Student Loan, Payday Loan, and Student Loan",22.86965951,13.39010675,16.34,8,Standard,3178.110803,35.15637973,15 Years and 11 Months,Yes,71.82655791,190.8982794,Low_spent_Small_value_payments,163.6250414,0,0.1994,-1.3143,0.6387,0.0389,0.6714 +0x19315,CUS_0x7d44,August,50,285-06-1059,Entrepreneur,34689.26,,7,3,18,0,,18.60795098,15,7.55,3,Standard,430.6,29.74212547,27 Years and 5 Months,Yes,0,224.0547195,Low_spent_Small_value_payments,326.8224471,0,0.149,0.6835,-0.6835,-0.0774,-0.5355 +0x19321,CUS_0xaaae,August,46,913-85-7120,Accountant,42735.93,3632.3275,7,7,21,5,"Not Specified, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",23.60635047,20.65581314,10.06,5,_,1589.804126,26.98171638,14 Years and 11 Months,Yes,152.4964376,76.16646857,High_spent_Medium_value_payments,384.5698438,0,0.3701,-2.1096,-0.229,-0.1368,-0.9219 +0x1932d,CUS_0x419a,August,40,589-09-3413,Mechanic,63851.24,,8,4,19,2,"Auto Loan, and Debt Consolidation Loan",21.7315118,18,8.94,7,Standard,2061.5,27.68071643,12 Years and 5 Months,Yes,78.33983614,198.9550524,High_spent_Medium_value_payments,505.5987781,0,1.1029,1.209,0.9763,1.2662,0.2958 +0x19339,CUS_0xbc33,August,45,272-13-8046,Entrepreneur,47400.2,,8,7,5,0,,14.51271964,9,11.88,5,Standard,465.95,23.51396795,27 Years and 5 Months,Yes,0,166.1489222,!@9#%8,533.0527444,0,0.7771,0.2167,-1.1475,0.5146,-0.9051 +0x19345,CUS_0x261d,August,18,897-84-1025,Architect,8400.715,418.0595833,8,10,29,4,"Student Loan, Auto Loan, Payday Loan, and Mortgage Loan",30.05155093,22,8.08,10,Bad,1414.23,26.71346983,17 Years and 4 Months,Yes,19.65840271,10000,Low_spent_Small_value_payments,256.7880286,0,-0.3282,0.8615,-0.8387,-0.6572,0.7679 +0x19351,CUS_0x912e,August,21,319-33-7118,Developer,83164.8,6942.4,4,5,9,4,"Not Specified, Not Specified, Auto Loan, and Student Loan",,14,13.9,11,Standard,544.54,42.10852099,29 Years and 2 Months,Yes,222.7160677,110.6165357,High_spent_Large_value_payments,600.9073967,0,-0.2958,-0.8243,1.8195,-1.4142,-0.101 +0x1935d,CUS_0xa05,August,21,246-60-3653,Media_Manager,18949.07,,10,9,30.06745738,5,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, and Not Specified",32.93401396,18,16.57,8,Bad,4678.170954,30.28268482,9 Years and 0 Months,Yes,55.6778299,80.07832908,High_spent_Small_value_payments,253.7324697,0,0.2748,-0.4805,-2.2703,0.593,-0.1593 +0x19369,CUS_0x9336,August,33,497-64-5099,Teacher,56539.04,4780.586667,7,6,16,6,"Payday Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Student Loan",44.25583288,27.53330322,8.42,13,Bad,2065.267276,26.93326739,19 Years and 8 Months,Yes,231.308224,,High_spent_Large_value_payments,367.7545599,0,1.0268,-0.314,-1.1022,1.005,-1.3595 +0x19375,CUS_0x6e35,August,31,376-87-7527,Engineer,36104.82,3294.735,6,6,16,5,"Personal Loan, Home Equity Loan, Student Loan, Personal Loan, and Mortgage Loan",25.7224879,20.31922186,16.84,9,Standard,2398.060017,35.62060321,,Yes,103.0447958,126.941968,Low_spent_Small_value_payments,389.4867362,0,-1.1715,0.1644,0.1326,-1.2269,1.0477 +0x19381,CUS_0x18a2,August,25,060-44-9617,Developer,18769.1,,5,3,21,7,"Student Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Student Loan, Personal Loan, and Not Specified",,26.56934298,15.87,10,Standard,2941.127237,36.33292277,14 Years and 4 Months,NM,81.02132581,,High_spent_Large_value_payments,269.0073805,0,-1.3835,-0.5065,-0.7095,-0.444,1.738 +0x1938d,CUS_0xccc,August,25,467-79-3610,Doctor,40193.94,3403.495,4,1,6,4,"Personal Loan, Payday Loan, Personal Loan, and Personal Loan",0,3,7.4,1,Good,967.5,32.54587271,25 Years and 9 Months,No,84.36453065,220.1570869,High_spent_Small_value_payments,295.8278824,0,-0.6154,0.5288,1.0463,-0.6736,-0.576 +0x19399,CUS_0x3fe1,August,18,834-26-5561,Teacher,19685.13,1857.4275,6,8,30,8,"Student Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Personal Loan, and Payday Loan",31.18683171,21.62593628,15.65,14,Bad,4884.213195,25.15754798,11 Years and 8 Months,Yes,80.35282517,174.8200574,Low_spent_Small_value_payments,220.5698675,0,-0.1102,1.1017,-0.1819,0.8998,0.0758 +0x193a5,CUS_0x8ac5,August,21,590-17-9851,Scientist,77104.47,6571.3725,3,7,5.288361749,4,"Personal Loan, Student Loan, Personal Loan, and Mortgage Loan",17.17917861,15,4.29,4,Standard,96.16141667,30.39561263,22 Years and 5 Months,Yes,177.0176169,556.8001724,High_spent_Large_value_payments,601.8752921,0,-0.9084,-0.7806,-0.4754,0.1162,-0.245 +0x193b1,CUS_0x77ff,August,21,062-89-1690,Writer,61211.96,4858.996667,7,9,26.06745738,7,"Payday Loan, Auto Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Not Specified",,20.26829352,20.12,7,Bad,3575.447203,38.027383,9 Years and 4 Months,Yes,200.3202837,154.2914718,Low_spent_Large_value_payments,374.5676232,0,1.2992,0.5091,0.7178,-0.8327,-0.0183 +0x193bd,CUS_0x41a,August,52,397-17-7108,Entrepreneur,27759.32,,8,6,8.288361749,100,Payday Loan,90,4293,8.35,5,Standard,245.3,27.013838,,No,15.54872634,692.5101715,Low_spent_Small_value_payments,243.8062299,0,-0.9553,-2.2815,1.5663,1.6925,-0.3266 +0x193c9,CUS_0xc60e,August,80,654-21-9706,Journalist,31722.09,,7,5,8.288361749,0,Home Equity Loan,15.58404034,15,1.74,5,Good,366.1236896,37.16249845,31 Years and 5 Months,No,25.43561404,479.0806712,High_spent_Large_value_payments,421.782901,0,-0.4776,0.5781,-1.5413,-0.5363,0.0662 +0x193d5,CUS_0x2444,August,22,983-43-5441,Teacher,113384.82,9507.735,2,960,8,3,"Payday Loan, Auto Loan, and Debt Consolidation Loan",20.53718382,,10.41,3,Good,751.7517232,39.34119108,23 Years and 4 Months,No,149.6177184,313.1403394,High_spent_Medium_value_payments,738.0154422,0,-0.1244,-0.4436,1.258,-0.4455,-0.4207 +0x193e1,CUS_0x5395,August,45,041-85-1396,Lawyer,21426.13,,5,3,13,4,"Mortgage Loan, Not Specified, Not Specified, and Student Loan",8.298762771,9,6.71,3,Standard,1128.903118,28.65136327,,No,54.22919306,19.14749757,High_spent_Large_value_payments,325.3563704,0,0.2554,0.6938,0.282,-1.1732,-0.009 +0x193ed,CUS_0x432,August,25,#F%$D@*&8,Writer,14180.48,956.7066667,6,7,21,6,"Personal Loan, Auto Loan, Mortgage Loan, Student Loan, Auto Loan, and Credit-Builder Loan",,20.39429324,27.69,10,Bad,3608.485902,37.08125215,13 Years and 5 Months,Yes,50.05075873,,Low_spent_Small_value_payments,211.438728,0,-0.4269,-0.2975,-1.5159,-0.4576,1.0143 +0x193f9,CUS_0x23dd,August,47,117-06-4475,Manager,29819.42,,7,5,16,4,"Personal Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,9,9.64,8,Standard,1379.69,26.25691277,25 Years and 4 Months,No,89.16341871,48.56431036,!@9#%8,353.6674376,0,0.7572,-0.1542,0.4305,-1.911,1.779 +0x19405,CUS_0xae60,August,31,024-26-9203,Lawyer,71676,5921,5,4,18,2,"Home Equity Loan, and Mortgage Loan",16.44576203,12.91956088,9.27,3,_,1270.208257,23.92388707,22 Years and 11 Months,No,73.45520242,310.7311671,!@9#%8,497.9136305,0,0.1274,0.8891,-0.1424,0.056,0.4493 +0x19411,CUS_0x7ed7,August,54,115-40-4075,Engineer,40067.96,3373.212108,0,4,4,100,,7.627979073,10,3.45,0,_,370.9277984,26.98654188,16 Years and 10 Months,No,246.7845589,517.9302451,Low_spent_Small_value_payments,186.5101297,0,-0.6925,0.9472,-1.9154,0.6607,-1.1494 +0x1941d,CUS_0x1015,August,27,810-97-7024,Journalist,46951.02,3725.585,7,4,16,0,,8.831146443,9,15.83,9,Standard,313.0047111,38.68223175,21 Years and 5 Months,NM,0,486.093397,Low_spent_Small_value_payments,225.1245054,0,1.8359,0.2119,-0.9635,-0.5033,0.1593 +0x19429,CUS_0x682e,August,80,130-71-2530,Teacher,131701.12,10704.09333,6,7,773.2883617,2,"Home Equity Loan, and Not Specified",16.44226588,14,9.97,9,Standard,1263.18,33.7524821,15 Years and 5 Months,Yes,150.6129213,494.0618619,High_spent_Large_value_payments,1085.672011,0,0.6908,0.6527,0.5478,-0.0568,0.6642 +0x19435,CUS_0x49b9,August,41,075-68-1286,Entrepreneur,71617.92,6009.16,8,9,19.88954781,6,"Credit-Builder Loan, Home Equity Loan, Personal Loan, Personal Loan, Student Loan, and Auto Loan",33.91934686,16,25.51,8,Bad,3466.45,39.47536239,8 Years and 5 Months,Yes,1588.222901,,Low_spent_Large_value_payments,248.5820512,0,-1.1404,-0.0125,-0.6545,1.8995,0.9484 +0x19441,CUS_0x6478,August,23,559-08-4955,Manager,17196.44,1438.036667,3,8,19,3,"Auto Loan, Not Specified, and Student Loan",28.45374481,20,16.31,10,Standard,1310.39,34.50213273,7 Years and 0 Months,Yes,29.9863932,41.33199586,High_spent_Small_value_payments,332.4852776,0,-0.1645,1.1839,-0.9913,-0.6026,0.5196 +0x1944d,CUS_0x5816,August,36,255-63-4043,Media_Manager,32473.32,2875.11,7,3,4237,100,"Not Specified, Payday Loan, Payday Loan, Not Specified, Not Specified, and Home Equity Loan",29.82547749,19,19.38,4,Standard,893.83,25.47935198,9 Years and 2 Months,Yes,136.2291008,144.1362639,Low_spent_Small_value_payments,297.1456353,0,-1.9641,0.6106,0.4586,-0.3806,0.6774 +0x19459,CUS_0xc096,August,19,679-42-2704,Media_Manager,136399.96,11510.66333,6,54,19,1,Personal Loan,15.1218,12,12.31,2544,Standard,310.673519,39.23231867,7 Years and 6 Months,Yes,61.00673398,1399.09394,!@9#%8,167.6466792,0,1.0246,1.3665,-1.5731,0.9019,-0.4888 +0x19465,CUS_0xfa7,August,35,703-73-1678,Entrepreneur,123665,10145.41667,2,7,7.288361749,4,"Student Loan, Not Specified, Home Equity Loan, and Not Specified",,6,1.38,1,Good,561.42,35.65168071,23 Years and 11 Months,No,336.2243515,1394.522367,Low_spent_Small_value_payments,,0,0.5594,-0.9527,0.2625,-0.917,2.2163 +0x19471,CUS_0x9138,August,19,079-83-8467,Accountant,28332.51,,4,4,18,3,"Personal Loan, Debt Consolidation Loan, and Home Equity Loan",17.3816355,,9.71,7,Standard,667.39,27.01098811,19 Years and 8 Months,Yes,29855,143.1572031,Low_spent_Medium_value_payments,339.1740109,0,0.4491,-0.9862,-2.7939,-0.6919,-0.0979 +0x1947d,CUS_0xba9d,August,19,350-61-5419,Journalist,7546.68,391.89,8,6,30.06745738,7,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",,17.97861781,18.63,8,Bad,3783.053894,39.15306829,3 Years and 3 Months,Yes,40.13179544,,Low_spent_Small_value_payments,217.8225881,0,-0.5938,0.9926,-0.8305,0.5423,0.2298 +0x19489,CUS_0x1607,August,45,994-40-1980,Architect,85062.63,6988.5525,8,3,16,2,"Credit-Builder Loan, and Personal Loan",29.37717687,19,17.38,448,Standard,321.89,38.16501118,17 Years and 10 Months,Yes,124.1653215,,Low_spent_Medium_value_payments,147.4966342,0,-1.0254,-1.6869,0.3646,0.7775,-0.6356 +0x19495,CUS_0x5e73,August,54,547-44-4805,Teacher,26175.52,,8,6,6,2,"Personal Loan, and Auto Loan",13.22858379,11,4.32,0,_,310.4830658,27.12837112,25 Years and 5 Months,No,26.83928438,111.403209,Low_spent_Small_value_payments,362.0429202,0,-1.1554,3.2343,-1.3816,-0.5849,-1.0382 +0x194a1,CUS_0xc50f,August,23,193-54-3118,Accountant,38655.1,2971.392673,5,7,5,4,"Not Specified, Mortgage Loan, Mortgage Loan, and Mortgage Loan",,0,1.22,4,Good,1295.1,38.25892944,30 Years and 4 Months,No,363.0061865,84.34989201,High_spent_Large_value_payments,416.3354151,0,2.1071,1.7412,-1.4689,-1.5042,0.7996 +0x194ad,CUS_0xa1cc,August,39,#F%$D@*&8,Journalist,79050.88,6676.573333,6,8,21,7,"Mortgage Loan, Payday Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Personal Loan, and Payday Loan",39.94091996,26.74491032,5.15,16,Bad,1734.913448,29.70101366,13 Years and 5 Months,Yes,331.7693105,,Low_spent_Large_value_payments,257.1009041,0,0.4135,0.8285,-1.6393,1.0546,-0.3512 +0x194b9,CUS_0xa585,August,48,645-55-3869,Musician,88668.81,,5,4,1.288361749,1158,"Home Equity Loan, Home Equity Loan, and Mortgage Loan",5.055822939,5.824211366,5.18,0,Good,886.7962245,36.08540401,17 Years and 10 Months,No,220.3688778,10419.93746,!@9#%8,579.2634193,0,2.0558,-1.5777,0.7987,-1.5887,-0.8605 +0x194c5,CUS_0x8590,August,31,#F%$D@*&8,Musician,14878.675,1328.889583,4,5,16,1,Personal Loan,,15,10,0,Standard,677.319945,37.33950891,15 Years and 11 Months,NM,10.21665307,101.5328253,!@9#%8,303.2987168,0,1.4385,-0.9697,0.9136,-0.2272,1.1718 +0x194d1,CUS_0x65fa,August,51,276-33-4104,Architect,123388.83,,1,4,3,100,"Student Loan, and Personal Loan",10.75729117,9,5.24,0,Good,869.62,31.92285609,33 Years and 3 Months,No,114.3056508,213.5751642,High_spent_Large_value_payments,952.659435,0,-0.6163,0.5886,0.2411,1.1028,0.0036 +0x194dd,CUS_0x5c5,August,25,926-30-3234,Musician,9955.465,887.6220833,9,10,28,2,"Payday Loan, and Personal Loan",21.16685316,8,9.65,9,_,2520.04,33.48805837,19 Years and 9 Months,NM,15.46879059,10000,High_spent_Small_value_payments,296.1738826,0,1.411,-0.5154,1.3409,0.8508,0.0409 +0x194e9,CUS_0x4c95,August,27,397-40-3219,Architect,25444.95,2342.4125,8,6,10,2,"Student Loan, and Debt Consolidation Loan",24.80570066,19,11.22,12,Standard,222.7535232,27.3806402,,Yes,30.78169485,56.5819521,High_spent_Large_value_payments,393.4868542,0,0.4486,0.8034,1.3781,-2.1702,-1.0275 +0x194f5,CUS_0xbb1f,August,30,516-54-1681,Entrepreneur,67271.24,5325.936667,6,6,28,7,"Debt Consolidation Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",36.32654385,26.68558375,2.62,10,_,1747.386458,38.42421164,12 Years and 4 Months,Yes,272.4460255,104.6353653,High_spent_Medium_value_payments,405.5122759,0,-1.1851,-0.1395,-0.7561,-0.8181,-0.7148 +0x19501,CUS_0xc299,August,27,347-28-4438,Musician,16720.2,,10,8,32.88954781,9,"Not Specified, Payday Loan, Credit-Builder Loan, Student Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Not Specified",38.99923783,28.95913632,22.62,10,Bad,4520.087086,24.52515011,7 Years and 9 Months,NM,1422.133771,,Low_spent_Small_value_payments,224.3688006,0,0.6957,0.823,-0.2765,-1.7093,-0.3072 +0x1950d,CUS_0x411e,August,51,487-02-9121,Doctor,18369.33,,4,6,6,3,"Not Specified, Debt Consolidation Loan, and Student Loan",0,4,7.09,6,Good,873.4742048,37.50843094,22 Years and 11 Months,No,27.55586581,67.7855966,High_spent_Medium_value_payments,321.7504574,0,0.7795,-1.5674,-0.6014,0.8621,-0.2342 +0x19519,CUS_0x38ca,August,28,197-51-0710,Architect,31897.35,,5,8,6,0,,,9,11.88,9,Standard,1116.03,26.58403615,,No,0,192.2439008,High_spent_Small_value_payments,358.5673492,0,-0.2961,-0.8818,1.5223,-0.2406,-0.0372 +0x19525,CUS_0x19a7,August,34,#F%$D@*&8,Musician,62348.46,4942.705,4,3,16,7,"Credit-Builder Loan, Student Loan, Not Specified, Not Specified, Home Equity Loan, Mortgage Loan, and Payday Loan",35.61521648,25.58966151,7.3,10,Standard,2203.966465,31.39505504,8 Years and 0 Months,Yes,350.455834,93.7590194,High_spent_Medium_value_payments,300.0556465,0,-0.1007,0.1998,0.2436,-0.6195,-0.7775 +0x19531,CUS_0xaf9c,August,36,800-90-9176,Writer,146399.88,12416.99,1,5,10,1,Auto Loan,1.399126345,3.42225805,2.61,2,Good,1406.200206,24.44293741,31 Years and 4 Months,No,69.43273318,1203.866546,Low_spent_Medium_value_payments,248.3997206,0,-1.3293,-0.1443,1.4787,-1.0767,-0.2127 +0x1953d,CUS_0x1758,August,22,322-65-4078,Lawyer,21787.63,,0,3,5,3,"Auto Loan, Personal Loan, and Not Specified",0,2,4.6,3,Good,868.3274992,27.68903722,29 Years and 10 Months,NM,36.90148131,236.0549524,Low_spent_Small_value_payments,233.5267089,0,0.1405,-0.5181,0.1008,-1.6446,0.0908 +0x19549,CUS_0x43d0,August,43,309-30-6070,Scientist,81506.32,,7,4,7,2,"Not Specified, and Mortgage Loan",,22.94758833,11.02,5,Standard,1032.212683,29.66802532,9 Years and 11 Months,Yes,92.5062497,199.612233,Low_spent_Medium_value_payments,689.1008506,0,-0.7135,-0.0685,0.1335,0.6856,-2.2267 +0x19555,CUS_0xdc8,August,51,362-50-3134,Doctor,28169.69,2171.474167,7,3,14.28836175,0,,16.88315585,15,10.95,8,Standard,330.54,27.77181796,29 Years and 4 Months,No,0,475.6428404,High_spent_Large_value_payments,401.4420373,0,0.5858,-0.2622,-0.2866,-0.2948,0.0998 +0x19561,CUS_0xbc03,August,36,939-69-9988,Journalist,16770.91,,7,7,30,6,"Personal Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",14.28612534,9.506593629,10.44,9,Standard,2882.213956,32.39281028,19 Years and 6 Months,Yes,42.36115239,58.79172085,Low_spent_Large_value_payments,330.6047101,0,0.1249,-0.9923,-1.3077,-0.4283,-1.367 +0x1956d,CUS_0x7c25,August,39,956-43-1170,Accountant,23727.45,,7,4,318,0,,15.73825266,,2.35,0,Standard,1068.411506,28.98143022,27 Years and 11 Months,NM,0,236.6669771,Low_spent_Small_value_payments,267.8617729,0,-2.3137,1.1588,-0.5722,-0.7927,0.0168 +0x19579,CUS_0x7227,August,50,338-77-4181,Writer,19519.66,1400.638333,3,3,16,3,"Home Equity Loan, Not Specified, and Not Specified",24.81436574,17,5.84,1,Standard,529.09,31.57553634,32 Years and 3 Months,Yes,45.55741615,,Low_spent_Small_value_payments,276.9507486,0,1.5746,0.8036,-0.1233,-0.738,0.2722 +0x19585,CUS_0x7a29,August,19,371-71-4885,Media_Manager,59843.07,4979.9225,6,6,32,8,"Student Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,17.94863061,16.71,9,Bad,2870.133488,37.32514248,2 Years and 0 Months,Yes,373.6480357,186.6613149,Low_spent_Large_value_payments,207.6828993,0,1.7114,0.1248,0.6725,-0.9566,0.0666 +0x19591,CUS_0x39ae,August,50,267-92-4521,Developer,88203.74,,4,4,12,0,,0,0,10.76,6,Good,1001.051907,25.4404317,22 Years and 3 Months,No,0,730.1876487,Low_spent_Medium_value_payments,379.1710362,0,-0.5049,-1.023,-1.0318,-1.154,-0.4623 +0x1959d,CUS_0xb41b,August,28,881-68-1642,Writer,75992.7,6407.725,3,7,7,1,Debt Consolidation Loan,1.526990242,5,0.31,4,Good,187.01,38.91827808,31 Years and 4 Months,No,54.03972289,364.1835433,!@9#%8,502.5492338,0,0.374,1.964,-1.3198,-0.1812,-0.051 +0x195a9,CUS_0x691,August,21,265-27-9540,Journalist,86015.16,,4,5,3,3,"Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",4.500680108,4.723764683,5.35,2,Good,1399.420519,34.62345878,28 Years and 2 Months,No,119.129004,271.1201883,High_spent_Medium_value_payments,559.5438077,0,0.3035,0.2229,0.9742,-1.0428,-0.8858 +0x195b5,CUS_0x8ca7,August,20,778-05-0735,Lawyer,86093.4,6885.45,5,3,8,2,"Mortgage Loan, and Home Equity Loan",0.246483417,2,15.79,1,Good,1386.36,34.01104361,16 Years and 5 Months,No,120.239341,474.9824465,High_spent_Small_value_payments,353.3232125,0,-0.5683,-0.0511,-0.8971,-0.5937,-0.3065 +0x195c1,CUS_0x7d80,August,56,757-29-1383,Media_Manager,60919.84,5373.653333,0,6,7,3,"Debt Consolidation Loan, Auto Loan, and Home Equity Loan",,5,18.88,1,Good,1338.17,33.62306949,20 Years and 2 Months,No,145.8384924,191.2693175,High_spent_Medium_value_payments,450.2575235,0,-0.0801,-0.9454,0.1192,-1.3226,-0.7748 +0x195cd,CUS_0xa690,August,28,783-15-2382,Accountant,19852.32,,7,8,29,6,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, and Personal Loan",25.65363213,,1.98,8,Bad,2625.27,34.77758255,16 Years and 4 Months,Yes,52.93074343,185.1004309,!@9#%8,193.3048257,0,0.38,-0.6274,-1.7068,0.6852,0.8078 +0x195d9,CUS_0x69b1,August,55,467-20-6340,Mechanic,41481.82,3526.009912,1,3,4,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",0.5857102,4,11.68,2,Good,650.2,32.9096679,20 Years and 2 Months,NM,175.4272328,121.4191532,!@9#%8,415.8438685,0,-0.3001,0.7175,-0.5661,-1.3885,1.6217 +0x195e5,CUS_0x3639,August,18,452-14-9672,Accountant,19297.28,,5,5,19,6,"Personal Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Payday Loan",,9,10.09,8,Standard,2286.82,32.34869513,10 Years and 5 Months,Yes,51.90941949,106.6308499,Low_spent_Medium_value_payments,270.3703973,0,0.3242,0.2043,-0.8646,0.9147,0.3628 +0x195f1,CUS_0x8be0,August,43,019-47-3819,Engineer,53467.47,4461.6225,9,9,17,7,"Not Specified, Not Specified, Home Equity Loan, Student Loan, Not Specified, Auto Loan, and Auto Loan",,20.40759429,7.8,9,Bad,1643.300712,32.75087969,17 Years and 11 Months,Yes,281.5875213,,Low_spent_Large_value_payments,96.6546607,0,-0.3037,1.4983,-0.2143,0.1982,0.1372 +0x195fd,CUS_0x7bda,August,56,640-01-1485,Entrepreneur,17127.3,1407.275,8,7,6,2,"Personal Loan, and Payday Loan",9.357366665,8,8.25,0,Good,845.1071035,38.9748517,29 Years and 3 Months,NM,18.43747906,65.02229761,!@9#%8,346.956327,0,-0.6315,-0.4055,-0.8291,0.1271,0.5963 +0x19609,CUS_0x2d09,August,23,441-65-5011,Accountant,36243.05,,4,5,14,3,"Home Equity Loan, Home Equity Loan, and Not Specified",17.55808523,13,8.2,5,_,1009.33,31.13393198,18 Years and 10 Months,Yes,73.89110879,156.5129807,High_spent_Small_value_payments,353.1213271,0,0.621,-1.0759,1.2321,-0.7569,-0.6158 +0x19615,CUS_0x6ab0,August,21,863-40-1509,Doctor,38007.66,3320.305,6,6,10,100,"Payday Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",12.58695426,8,12.57,12,_,842.4,36.7537386,7 Years and 3 Months,NM,181.4640125,,Low_spent_Medium_value_payments,139.9514403,0,-1.4777,2.7194,1.2138,-0.459,-0.6558 +0x19621,CUS_0xb064,August,33,470-57-4222,Accountant,123523.6,,1,2,2.288361749,4,"Payday Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",6.749194015,9,8.09,7,Good,451.7778546,41.4144637,24 Years and 9 Months,No,342.305517,596.3458285,High_spent_Large_value_payments,754.6212017,0,-1.0533,1.8077,1.6739,1.4405,-0.7912 +0x1962d,CUS_0xb06d,August,26,802-62-7763,Architect,36996.83,,6,5,6,2,"Debt Consolidation Loan, and Home Equity Loan",12.81310911,8.992161912,7.54,4,Good,887.9950527,40.06561794,31 Years and 11 Months,No,31.79565825,326.7081484,Low_spent_Medium_value_payments,236.7031101,0,0.4169,-0.716,0.1515,1.4975,1.725 +0x19639,CUS_0xc4b3,August,28,673-26-9445,Architect,16860.705,,5,1216,1,1,Debt Consolidation Loan,,6,2.78,2,Good,1476.91,27.30475099,33 Years and 5 Months,No,12.60852256,56.19086325,Low_spent_Small_value_payments,339.0064892,0,0.1277,-1.7423,0.7214,-1.4693,0.3095 +0x19645,CUS_0x444c,August,26,804-29-1831,Developer,17174.67,1225.781553,6,7,19,0,,9.537498247,9,6.95,6,_,827.7384597,32.67362963,17 Years and 9 Months,No,123.4409472,,Low_spent_Medium_value_payments,363.1273127,0,-0.7432,-1.2895,-1.4261,0.5026,0.8049 +0x19651,CUS_0x6e81,August,36,462-24-2241,Manager,76324.68,,6,5,34,6,"Personal Loan, Personal Loan, Personal Loan, Personal Loan, Payday Loan, and Auto Loan",,26.16764332,2.24,10,Bad,2558.635102,28.3570387,10 Years and 6 Months,Yes,280.4029271,84.30660092,High_spent_Medium_value_payments,500.829472,0,-0.3428,0.1322,0.5066,0.4421,1.9505 +0x1965d,CUS_0xa6a,August,44,657-94-9439,Lawyer,49657.92,4193.16,8,5,27,5,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",31.15031923,20,19.59,12,Bad,3469.9,37.06531678,2 Years and 8 Months,Yes,187.0251314,108.3166382,High_spent_Medium_value_payments,373.9742305,0,0.9905,-0.3222,-0.9097,1.4697,-1.2062 +0x19669,CUS_0x55fb,August,42,771-10-8942,Media_Manager,60364.08,5045.34,7,6,24,100,"Student Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Payday Loan, Personal Loan, and Auto Loan",10.66592268,8.111858422,19.47,8,Standard,2090.350115,41.83685807,8 Years and 10 Months,Yes,179.0292829,,High_spent_Medium_value_payments,515.5963894,0,-0.6642,-1.0959,-0.7646,-0.413,-0.0872 +0x19675,CUS_0x254e,August,21,926-83-6934,Engineer,35295.07,,1,6,7,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Personal Loan",3.509286768,6,0.57,4,Good,1088.7,31.32874977,30 Years and 6 Months,No,112.6207758,,!@9#%8,176.3675515,0,1.1069,1.2753,-0.4623,0.6547,-0.1154 +0x19681,CUS_0x6324,August,55,342-38-4793,Manager,32933.44,2574.453333,5,3,9,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Home Equity Loan",7.827233759,10,4.96,3,Good,1272.85,31.94900278,29 Years and 0 Months,No,95.11680221,88.21831061,Low_spent_Small_value_payments,364.1102205,0,0.7005,-0.4153,0.3064,-1.6363,-1.4627 +0x1968d,CUS_0x78cd,August,25,214-79-8348,Developer,15476.64,,0,4,1,3,"Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",,12.16740525,11.57,1,Good,1435.725405,34.59354808,24 Years and 0 Months,No,35.68135813,153.2098449,Low_spent_Small_value_payments,218.5807969,0,0.5684,-1.3857,-0.1287,0.2424,-0.9281 +0x19699,CUS_0x98e3,August,50,785-61-7804,Manager,68636.44,5542.483245,7,3,7,4,"Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,9,21.15,8,Standard,250.6874689,24.18235546,24 Years and 6 Months,Yes,18287,304.2143399,!@9#%8,362.9671572,0,0.1894,0.649,-0.3696,0.0651,1.5151 +0x196a5,CUS_0x5fe0,August,31,#F%$D@*&8,Mechanic,33446.44,3058.203333,6,6,25.06745738,6,"Mortgage Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",27.78507841,19,23.45,13,Bad,3177.090954,25.03428337,9 Years and 10 Months,Yes,133.3559048,,Low_spent_Small_value_payments,187.8638932,0,-0.3577,-1.1826,-0.2778,-0.0648,0.5658 +0x196b1,CUS_0x7cc1,August,22,169-92-6237,Writer,51411.1,,2,4,12,3,"Not Specified, Credit-Builder Loan, and Home Equity Loan",21.29398958,,7.7,4,Standard,367.4857552,37.74882055,19 Years and 3 Months,Yes,113.6719262,,Low_spent_Medium_value_payments,242.5911984,0,0.5827,1.3642,0.7399,0.1776,0.1294 +0x196bd,CUS_0xb482,August,50,417-57-5463,Accountant,125033,10585.41667,5,6,7,1,Debt Consolidation Loan,13.32261777,9,5.95,2,Standard,1369.98,38.37403581,27 Years and 3 Months,Yes,99.42376275,592.0626858,Low_spent_Large_value_payments,637.0552181,0,1.2636,0.6832,1.465,-1.7666,-0.2592 +0x196c9,CUS_0x8433,August,18,#F%$D@*&8,Architect,33890.2,,8,4,12,2,"Mortgage Loan, and Auto Loan",20.4044807,18,11.12,7,Standard,1289.03,33.72411296,28 Years and 0 Months,Yes,394.9849697,196.1127751,!@9#%8,307.6166007,0,-1.7381,-0.5468,0.0794,-1.673,-0.8345 +0x196d5,CUS_0x760a,August,44,726-06-9872,Doctor,53084.07,4525.6725,10,9,24.95700519,8,"Home Equity Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Auto Loan, Student Loan, Auto Loan, and Payday Loan",,23,8.3,9,Bad,3127.570954,35.74396022,2 Years and 8 Months,Yes,1552.170577,,Low_spent_Medium_value_payments,137.9525942,0,2.1113,0.0112,0.7445,-0.2291,1.4068 +0x196e1,CUS_0xbb77,August,21,469-37-9263,Manager,70391.92,,10,8,18,9,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Student Loan, Not Specified, Home Equity Loan, Personal Loan, and Home Equity Loan",27.00965376,21,25.35,9,Bad,3090.499653,27.67531254,14 Years and 2 Months,Yes,735.7145281,253.1238091,High_spent_Medium_value_payments,315.3036256,0,0.9013,0.3889,-0.5378,-1.2603,0.1966 +0x196ed,CUS_0x14ff,August,80,027-71-3979,Writer,14792.57,1181.714167,10,7,21.06745738,8,"Student Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Payday Loan, Payday Loan, and Home Equity Loan",,24.64080023,18.8,13,Bad,5870.853831,30.77054451,9 Years and 8 Months,Yes,54.28779797,64.3522982,High_spent_Small_value_payments,232.8110326,0,-1.5499,1.1907,0.7464,2.424,-1.0854 +0x196f9,CUS_0xafcd,August,33,822-91-2677,_______,66679.56,5522.63,4,3,18,2,"Debt Consolidation Loan, and Auto Loan",5.356078555,5,9.75,2,Standard,467.64,27.60449258,20 Years and 3 Months,Yes,74.06248334,,Low_spent_Large_value_payments,333.7050607,0,0.1364,-0.0857,0.2132,1.8761,0.1431 +0x19705,CUS_0xbb4a,August,38,245-68-4355,Architect,126780.48,10443.04,7,4,18.28836175,0,,,14,7.22,3,Standard,366.0561129,37.36235998,26 Years and 3 Months,Yes,0,572.6646204,High_spent_Large_value_payments,1146.00264,0,-0.271,-0.7255,-0.1633,1.7535,1.3535 +0x19711,CUS_0x9ab9,August,34,214-02-8382,Journalist,40165.72,,6,6,23,4,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",19.40692499,,6.95,8,Standard,1812.84,29.26974206,10 Years and 3 Months,Yes,87.49683501,,Low_spent_Small_value_payments,230.1790232,0,0.7477,0.0603,-0.2704,-0.6808,-0.7707 +0x1971d,CUS_0x2366,August,39,978-77-9217,Mechanic,9126.455,,10,7,34.06745738,5,"Auto Loan, Personal Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",32.66347615,21,28.57,12,_,5220.460954,35.87242644,9 Years and 8 Months,Yes,33.01629307,,Low_spent_Medium_value_payments,219.0337521,0,0.3976,-1.0873,-0.5313,0.6943,-0.8672 +0x19729,CUS_0x28d2,August,26,775-18-7711,Journalist,56687.56,4514.963333,5,4,7,6,"Home Equity Loan, Not Specified, Home Equity Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",19.32260208,15,19.08,484,_,239.33,28.75903862,12 Years and 5 Months,Yes,212.9875888,50.05818263,High_spent_Large_value_payments,428.4505619,0,-0.6297,-2.1798,1.8069,1.4603,-1.4395 +0x19735,CUS_0x9de1,August,42,821-03-7493,Architect,39849.72,3334.81,9,8,26,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",35.25205171,22,9.12,14,_,2533.64,29.49009788,6 Years and 4 Months,Yes,96.60403454,98.50915343,High_spent_Medium_value_payments,388.367812,0,-0.7986,-0.774,0.2848,-0.1567,0.3111 +0x19741,CUS_0x4156,August,38,807-73-5861,Developer,101996.79,,5,6,6,4,"Student Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",,10,6.94,2,_,1260.27,34.22827689,25 Years and 0 Months,No,211.0479856,201.13989,!@9#%8,677.6853744,0,0.484,0.4084,0.9893,1.4388,-0.144 +0x1974d,CUS_0x89e3,August,27,943-71-2069,Teacher,107808,9138,0,7,0.288361749,2,"Student Loan, Mortgage Loan, and Not Specified",0.824985602,4,1.05,7,Good,985.31,36.44311663,24 Years and 5 Months,No,208.8105854,1062.651819,Low_spent_Small_value_payments,352.2750567,0,-0.7603,0.0843,0.1736,-1.8388,-1.5866 +0x19759,CUS_0x831d,August,18,300-65-8240,Teacher,20606.32,,6,6,13,100,Home Equity Loan,10.82381742,8,7.08,11,Standard,160.5,22.33541422,28 Years and 5 Months,Yes,10.09716935,158.8013762,Low_spent_Small_value_payments,310.8207878,0,-0.8268,0.2107,0.4932,-0.4408,0.1206 +0x19765,CUS_0x9567,August,19,933-18-3510,Mechanic,15678.385,,5,4,3,3,"Credit-Builder Loan, Student Loan, and Personal Loan",8.398578488,8,7.54,4,Good,1093.160649,37.37762717,18 Years and 3 Months,No,29.70265363,,Low_spent_Small_value_payments,250.6413244,0,0.1333,-0.4481,0.383,0.6977,-1.5386 +0x19771,CUS_0x5f05,August,34,848-91-6762,Developer,35733.38,,8,7,20,6,"Mortgage Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",43.43438637,28.877026,27.75,8,_,2980.948336,40.68900802,,Yes,163.7890186,34.25034484,High_spent_Medium_value_payments,332.7388032,0,-0.0484,0.8464,-0.7898,-0.6645,-1.1098 +0x1977d,CUS_0x387b,August,18,845-39-5956,Developer,18425.6,,3,3,32,5,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,12,17.8,8,Standard,1773.7,26.18674594,11 Years and 5 Months,Yes,67.23257019,40.42501981,High_spent_Large_value_payments,301.3890767,0,0.5397,-1.7173,-1.7364,-0.3853,-1.332 +0x19789,CUS_0x627b,August,31,217-43-5920,Doctor,77001.36,6561.78,7,4,34,5,"Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Mortgage Loan",22.45599097,18.32633078,23.8,11,Standard,2811.078311,40.51795908,20 Years and 2 Months,Yes,210.5768286,144.8371941,!@9#%8,540.7639773,0,0.7347,1.1918,1.0221,0.4611,-0.836 +0x19795,CUS_0x307e,August,40,425-36-5909,Developer,46485.27,3874.7725,9,6,30.06745738,7,"Payday Loan, Home Equity Loan, Student Loan, Not Specified, Payday Loan, Auto Loan, and Personal Loan",41.2206084,27.72394077,4.69,15,Bad,3897.466918,32.05961645,,Yes,223.0220067,448.4971673,Low_spent_Small_value_payments,0,0,-0.0442,-0.3617,0.276,-0.9882,0.4003 +0x197a1,CUS_0x5db0,August,37,799-61-3504,Writer,37963.16,,8,7,17.06745738,9,"Home Equity Loan, Home Equity Loan, Student Loan, Payday Loan, Not Specified, Student Loan, Mortgage Loan, Student Loan, and Not Specified",32.58338654,21.55093486,9.58,9,Bad,4369.845637,27.89451819,12 Years and 6 Months,Yes,192.0858416,,!@9#%8,266.5623705,0,-1.6171,0.0739,-0.6048,0.7814,-0.1385 +0x197ad,CUS_0x32fa,August,38,848-55-8612,Writer,69209.85,,6,3,9,2,"Credit-Builder Loan, and Auto Loan",22.31971447,,6.9,,Standard,225.58,34.93396871,,No,86.37788509,422.3585465,Low_spent_Medium_value_payments,376.0123185,0,0.2568,1.3724,-2.5627,0.6109,-0.9384 +0x197b9,CUS_0x4083,August,48,619-93-7111,Musician,31318.22,,7,4,14,3,"Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,14,10.16,2,_,1121.05,34.43377578,15 Years and 9 Months,No,65.49831071,164.6977624,Low_spent_Small_value_payments,310.6890936,0,0.0122,-1.1209,-0.4518,-0.058,-1.0387 +0x197c5,CUS_0xc4e2,August,25,690-48-2138,Mechanic,18228.67,1734.055833,5,5,20.06745738,100,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",37.05088209,24.18400047,14.26,7,Standard,2995.098702,26.91798568,14 Years and 6 Months,Yes,40.46085111,,Low_spent_Small_value_payments,213.3939249,0,-1.5746,-1.0258,0.8751,1.3177,0.0561 +0x197d1,CUS_0x2878,August,25,812-39-0469,_______,26838.73,2020.560833,8,5,15,2,"Payday Loan, and Student Loan",,20,13.95,6,Standard,646.98,32.77145976,9 Years and 9 Months,Yes,29.13133496,77.51209712,High_spent_Medium_value_payments,345.4126512,0,-1.1863,-0.7086,-0.3919,0.0746,0.4467 +0x197dd,CUS_0xa049,August,46,859-32-1546,Manager,50545.74,4346.145,8,3,2,4,"Auto Loan, Not Specified, Not Specified, and Mortgage Loan",12.15473535,8,10.2,3,Good,250.99,26.93966577,21 Years and 11 Months,No,132.5935743,267.2355214,High_spent_Small_value_payments,294.7854043,0,1.1419,0.297,-0.5121,0.0092,0.0986 +0x197e9,CUS_0x4edc,August,24,237-56-3090,Architect,66693.51,,8,5,8,4,"Payday Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",15.33513626,11,2.88,3,Good,246.6986603,34.46955755,26 Years and 11 Months,No,132.6492358,162.5051384,High_spent_Small_value_payments,544.2310739,0,0.6705,-1.5707,-0.5685,-1.2059,1.2051 +0x197f5,CUS_0xc143,August,25,#F%$D@*&8,Lawyer,20395.54,,3,3,20,2,"Mortgage Loan, and Home Equity Loan",,10,9.01,4,Standard,416.1577893,31.53699895,24 Years and 5 Months,NM,42872,36.56337073,High_spent_Large_value_payments,378.3184132,0,-0.5315,0.0525,-0.4032,1.2415,-0.1144 +0x19801,CUS_0x294d,August,39,862-89-7529,Teacher,19480.04,,3,4,23,6,"Auto Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",16.39965284,15.07686619,,9,_,2929.348004,22.96319352,6 Years and 10 Months,Yes,96.29274735,46.45839147,Low_spent_Large_value_payments,263.7825278,0,-0.8393,0.8317,-0.8322,0.7841,-2.1128 +0x1980d,CUS_0xb2c0,August,21,023-65-3180,Scientist,111188.04,9318.67,8,5,6,4,"Auto Loan, Personal Loan, Personal Loan, and Student Loan",22.19509119,18,8.99,4,_,440.78,31.60628872,17 Years and 8 Months,Yes,24335,110.071556,High_spent_Large_value_payments,816.3309059,0,-0.0323,0.8919,0.4396,-2.1558,-0.0588 +0x19819,CUS_0x6ccd,August,29,689-97-8754,Mechanic,7477.175,662.2354715,9,5,15,227,"Home Equity Loan, Student Loan, Student Loan, Auto Loan, Payday Loan, Auto Loan, Not Specified, and Home Equity Loan",34.04375165,19,23.52,7,Bad,4335.010693,29.95204783,7 Years and 10 Months,Yes,86.04288815,64.38373627,Low_spent_Large_value_payments,249.0927682,0,0.0148,0.0509,1.1132,-0.8719,-0.9122 +0x19825,CUS_0x9f1f,August,42,127-99-4788,Mechanic,105740.97,8706.7475,3,6,5,3,"Auto Loan, Home Equity Loan, and Personal Loan",10.55720371,9,3.12,1,_,264.1885955,26.87145672,22 Years and 10 Months,No,145.5849938,459.0640507,Low_spent_Large_value_payments,587.4268158,0,0.4935,-0.7639,-0.1699,-1.5476,-0.5154 +0x19831,CUS_0x7136,August,29,489-21-5418,Journalist,172952.32,,5,4,8,1,Student Loan,,,11.5,8,Good,378.6256566,35.54078768,23 Years and 3 Months,No,88.74554331,276.9408466,High_spent_Medium_value_payments,1339.082943,0,-0.7897,0.2894,-0.39,-0.0176,0.837 +0x1983d,CUS_0x2c4f,August,36,552-16-6625,Writer,31941.88,2526.823333,5,6,16,0,,16.52213503,,4.9,6,Standard,1048.97,34.78334481,20 Years and 8 Months,No,0,85.51133154,High_spent_Medium_value_payments,417.1710018,0,-0.6109,1.2957,1.5966,0.0637,-0.5409 +0x19849,CUS_0xac29,August,18,985-65-5941,Doctor,9654.115,,6,7,18,3,"Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",,19.51331312,14.3,14,_,2319.692657,34.76747584,9 Years and 4 Months,Yes,20.32773356,30.75540964,Low_spent_Small_value_payments,300.9678151,0,1.6655,-0.7462,-1.6886,-0.0373,0.0388 +0x19855,CUS_0x585b,August,35,104-57-7353,Manager,17312.45,,7,5,21.06745738,9,"Mortgage Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Student Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",,22,23.28,8,Bad,4748.130954,28.82889597,10 Years and 0 Months,Yes,122.8749656,70.84080409,!@9#%8,220.034359,0,-1.3213,0.0959,0.5486,-0.4383,0.6764 +0x19861,CUS_0x5b9b,August,42,822-49-6874,Mechanic,16955.24,,7,5,19,2,"Not Specified, and Debt Consolidation Loan",,20,19.2,4,Standard,714.71,39.18024508,18 Years and 0 Months,Yes,84.64285175,94.79151679,Low_spent_Small_value_payments,339.3725782,0,0.0464,0.949,0.7213,-1.0179,0.0158 +0x1986d,CUS_0xb7c3,August,36,731-11-7245,Musician,108268.23,,4,1,0.288361749,0,Mortgage Loan,4.0175998,7,11.64,1,_,174.7244414,30.0087312,16 Years and 6 Months,No,56.62071282,618.1268714,High_spent_Large_value_payments,927.7990144,0,-0.8808,-0.5107,-0.931,2.1619,0.101 +0x19879,CUS_0xa326,August,40,417-48-4537,_______,16041.33,1281.7775,9,6,24,9,"Auto Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,,27.32,11,Bad,2509.58,39.94835479,6 Years and 6 Months,Yes,76.80901872,139.0622874,Low_spent_Small_value_payments,202.3064439,0,1.0583,-1.6638,0.387,0.114,-0.2866 +0x19885,CUS_0xa918,August,27,195-30-9920,Teacher,71530.8,6197.9,8,5,22,8,"Home Equity Loan, Auto Loan, Mortgage Loan, Auto Loan, Auto Loan, Personal Loan, Auto Loan, and Student Loan",23.45071968,,,8,_,2364.98,31.99990856,5 Years and 10 Months,NM,461.4851584,203.3187781,High_spent_Medium_value_payments,204.9860635,0,1.0721,-0.7962,-0.2266,-0.8349,1.9818 +0x19891,CUS_0x1765,August,32,966-30-5287,Engineer,15186.175,,4,3,6,1,Student Loan,20.70199423,15,15.22,0,Standard,9.7,31.0259299,23 Years and 9 Months,NM,10.91506983,84.2505761,Low_spent_Small_value_payments,347.5858124,0,-0.3308,-0.5777,-0.6228,0.9781,-0.3795 +0x1989d,CUS_0xa8b7,August,56,104-77-4516,Media_Manager,26918.64,2494.22,7,4,8.288361749,0,Not Specified,17.77215029,17,9.24,3,Standard,226.5,33.40954297,28 Years and 3 Months,Yes,11.85483779,561.399154,Low_spent_Small_value_payments,386.1054692,0,-0.9326,-0.8622,-0.6221,-1.7532,0.6018 +0x198a9,CUS_0x4a0b,August,30,089-79-7569,Writer,120629.04,9970.42,2,5,11.28836175,2,"Debt Consolidation Loan, and Debt Consolidation Loan",11.68619084,11,7.53,1,Good,413.86,39.62401093,,No,183.8052497,583.6259812,High_spent_Large_value_payments,889.5482301,0,2.4646,-0.74,0.9177,0.0249,-1.4424 +0x198b5,CUS_0xbb3c,August,32,956-87-6952,Teacher,170008.72,14178.39333,3,6,6.288361749,0,,5.855003771,9,-2.22,1,Good,881.44,31.92899487,29 Years and 3 Months,No,0,1830.616852,Low_spent_Medium_value_payments,287.1599422,0,-0.6045,-0.37,-0.6603,1.5911,0.2293 +0x198c1,CUS_0x924a,August,18,382-11-8649,Journalist,9829.665,,8,10,19.95700519,7,"Not Specified, Home Equity Loan, Not Specified, Personal Loan, Auto Loan, Home Equity Loan, and Auto Loan",38.38971056,21,23.54,9,Bad,3006.700954,29.43096018,6 Years and 0 Months,Yes,1365.02354,,High_spent_Small_value_payments,204.2843046,0,0.4773,-0.8388,-1.1862,2.2368,-0.2357 +0x198cd,CUS_0x44ff,August,35,264-12-4793,_______,57353.16,4738.43,3,7,20,3,"Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",20.70038249,19,10.45,0,_,1095.32,34.76859657,21 Years and 2 Months,No,125.0086855,,!@9#%8,186.8828715,0,0.1818,-0.2774,-0.2409,-0.0006,-3.2407 +0x198d9,CUS_0xa5ac,August,46,495-74-5312,Journalist,83627.12,6843.926667,6,7,9,3,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",23.24871182,20,1.34,1086,Standard,2312.09,36.81216683,8 Years and 11 Months,Yes,189.5636324,315.4936467,Low_spent_Medium_value_payments,459.3353876,0,0.4444,-0.6372,-0.5495,0.0229,1.4464 +0x198e5,CUS_0x19f3,August,32,940-10-6588,Entrepreneur,7361.645,,10,10,20.95700519,9,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",36.89132655,22,5.32,8,Bad,2723.410954,39.71427216,12 Years and 3 Months,Yes,1365.429116,,Low_spent_Small_value_payments,223.7862776,0,-0.1587,-0.0749,-1.3816,0.9669,-0.6126 +0x198f1,CUS_0x899d,August,22,721-76-0335,Developer,14938.01,985.8341667,7,5,18.06745738,8,"Payday Loan, Payday Loan, Payday Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",,24,17.45,13,Bad,3669.850954,37.33409888,14 Years and 5 Months,Yes,89.33792943,,Low_spent_Small_value_payments,202.0690991,0,0.127,0.7782,-0.5343,0.9832,-1.1012 +0x198fd,CUS_0xad1f,August,80,922-54-1284,Lawyer,54670.95,4798.9125,7,6,25.06745738,5,"Mortgage Loan, Payday Loan, Not Specified, Home Equity Loan, and Student Loan",30.748348,16.39252703,3.43,8,Bad,3215.044206,26.06545589,18 Years and 10 Months,NM,172.1712214,63.24525201,High_spent_Large_value_payments,457.7544887,0,1.9392,0.2722,0.3651,-0.0256,0.4017 +0x19909,CUS_0x4427,August,20,701-15-5918,Engineer,67092.51,5767.0425,4,4,16.28836175,0,Payday Loan,,8,5.43,8,Standard,846.08,40.06409644,29 Years and 11 Months,No,53.47969947,465.7007133,High_spent_Large_value_payments,717.4612982,0,-1.0752,0.6353,-0.7529,-0.5056,-1.2084 +0x19915,CUS_0x4688,August,26,827-77-9493,Teacher,15549.06,,6,6,17,2,"Student Loan, and Personal Loan",28.75131496,16,11.2,9,Bad,2063.91,30.92732869,17 Years and 5 Months,Yes,20.16589015,27.42400127,High_spent_Large_value_payments,351.3856086,0,2.3008,0.3035,-0.6407,-0.9197,1.3511 +0x19921,CUS_0xb2d2,August,47,199-93-0552,Developer,53979.12,4792.26,3,6,20,1,Auto Loan,27.99192263,19.55177595,11.87,7,Standard,616.0608976,31.97019408,18 Years and 10 Months,No,39.35303605,518.2219123,Low_spent_Small_value_payments,211.6510516,0,0.9912,-0.8476,-0.9613,-0.6706,-1.181 +0x1992d,CUS_0x87ec,August,25,911-75-7932,Engineer,61056.3,5086.025,3,7,8,2,"Debt Consolidation Loan, and Auto Loan",7.247661267,10,8.87,6,_,566.34,38.77178322,17 Years and 2 Months,Yes,83.57379524,200.2584072,High_spent_Small_value_payments,484.7702975,0,1.2377,0.2267,-0.8685,-0.5935,1.2753 +0x19939,CUS_0x885,August,32,830-83-6678,Journalist,44942.23,3926.185833,1,4,7,1,Personal Loan,,15,2.97,4,Good,1058.03,25.92495516,28 Years and 10 Months,No,26.7784089,129.6118796,!@9#%8,516.2282948,0,0.0569,1.7462,0.6997,-0.0154,-0.637 +0x19945,CUS_0xaa68,August,50,984-93-1916,Musician,83923.24,6723.603333,4,4,9,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",,20,2.54,3,Good,1148.212284,31.33189591,23 Years and 4 Months,No,139.3403924,227.7160603,High_spent_Medium_value_payments,587.4278117,0,-0.1431,-0.2453,-1.2429,1.108,-0.1517 +0x19951,CUS_0x89c7,August,41,232-78-3489,Scientist,16827.15,,8,10,23.88954781,9,"Payday Loan, Home Equity Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Not Specified",28.48074603,21,21.99,15,_,2761.57,32.19738285,5 Years and 10 Months,Yes,1447.97799,10000,Low_spent_Small_value_payments,234.7601691,0,-0.7356,1.8282,1.1156,0.1668,-0.1102 +0x1995d,CUS_0x4afe,August,20,420-12-0466,Teacher,42321.5,3345.791667,4,4,9,0,,,2,8.43,6,Good,688.61,25.63686887,30 Years and 2 Months,No,0,118.2913005,Low_spent_Large_value_payments,486.2878662,0,0.6548,0.5285,0.7136,1.0971,-0.2547 +0x19969,CUS_0x2923,August,23,489-56-6652,Entrepreneur,8637.875,,9,10,21.06745738,5,"Payday Loan, Auto Loan, Personal Loan, Mortgage Loan, and Payday Loan",,27.45406174,9.63,8,Bad,1997.706312,24.11260124,8 Years and 6 Months,Yes,19.94070787,,Low_spent_Medium_value_payments,257.8593602,0,-0.8675,-0.3429,0.852,0.0075,1.6656 +0x19975,CUS_0x2910,August,22,317-09-6933,Architect,58184.67,4579.611397,6,5,9,3,"Student Loan, Mortgage Loan, and Student Loan",20.47491427,,7.36,3,_,309.14,24.77256593,24 Years and 2 Months,Yes,320.1696417,127.7753871,High_spent_Small_value_payments,476.9383243,0,0.4768,-1.0203,-0.9839,-1.2934,0.8389 +0x19981,CUS_0x4190,August,32,245-49-9172,_______,20101.36,1520.113333,10,8,21.88954781,100,"Home Equity Loan, Not Specified, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Auto Loan, and Auto Loan",,29.94834911,5.94,12,Bad,1732.808129,26.56777485,17 Years and 6 Months,Yes,1391.395626,182.8808416,Low_spent_Small_value_payments,173.4047846,0,-1.3763,0.6526,1.2204,-0.3187,-0.2816 +0x1998d,CUS_0xb4cc,August,23,139-76-0236,Musician,48434.66,4201.221667,5,5,4.288361749,0,,9.214929183,9,11.44,1,Standard,23.19,37.91108357,23 Years and 9 Months,Yes,42558,575.7255624,High_spent_Medium_value_payments,514.3340653,0,0.27,2.1517,-1.1085,-1.3085,2.3687 +0x19999,CUS_0x511e,August,40,055-93-3369,Lawyer,19604.35,,5,4,15,5,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Mortgage Loan",13.78144488,12.45982745,10.9,8,Standard,779.3822857,36.95136088,11 Years and 11 Months,Yes,44.2104087,88.09411353,Low_spent_Medium_value_payments,319.2650611,0,1.8204,0.3908,2.3349,-0.3935,0.3547 +0x199a5,CUS_0x450b,August,47,258-48-0314,Mechanic,21112.76,,3,3,16,4,"Not Specified, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,,15.11,9,_,1633.865005,35.89031281,,Yes,42.38339185,193.1727553,Low_spent_Small_value_payments,218.5835195,0,0.6568,1.6609,-0.4285,1.2961,0.5174 +0x199b1,CUS_0xb80e,August,30,446-96-9802,Lawyer,36898.44,2957.87,10,8,23,9,"Payday Loan, Student Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Mortgage Loan",,28.17804563,5.07,9,Bad,1824.148948,28.2008732,13 Years and 0 Months,Yes,266.5040023,,High_spent_Small_value_payments,140.4195961,0,1.3042,-0.9473,-0.1464,-0.9333,0.9776 +0x199bd,CUS_0x959b,August,49,262-60-9767,Architect,67106.79,5858.2325,5,5,5.288361749,2,"Not Specified, Credit-Builder Loan, and Personal Loan",,19,7.22,4,_,836.88,41.26488943,,Yes,89.77285448,481.3951439,High_spent_Large_value_payments,674.5927126,0,-0.0127,0.2316,0.5258,1.1855,-0.6211 +0x199c9,CUS_0x415b,August,44,857-19-8693,Doctor,30710.59,,0,7,8,1,Not Specified,10.52730041,10,0.76,1,Good,1211.61,33.72929823,19 Years and 3 Months,No,325.0667592,242.3779387,Low_spent_Small_value_payments,306.0446427,0,-0.2761,1.3207,0.9458,-0.1776,0.0139 +0x199d5,CUS_0x9a8b,August,19,540-04-0191,Entrepreneur,57921.74,4772.811667,4,3,11,3,"Home Equity Loan, Debt Consolidation Loan, and Auto Loan",5.692409513,7,,3,Good,842.5837207,32.05103306,28 Years and 9 Months,No,94.3673126,165.7798066,High_spent_Small_value_payments,493.7633614,0,-1.6079,0.0004,-0.7347,-1.2775,0.0213 +0x199e1,CUS_0x92d2,August,20,401-08-4236,Musician,99161.82,,3,6,7.288361749,0,,7.004895509,9,1.83,3,Good,1159.42,40.22670382,26 Years and 10 Months,No,0,828.9105586,Low_spent_Large_value_payments,666.5754024,0,0.4231,-0.9293,1.2995,1.0329,-0.1996 +0x199ed,CUS_0xe28,August,23,308-22-2918,Doctor,15298.94,,5,7,5,3,"Personal Loan, Home Equity Loan, and Auto Loan",,,15.43,1,Standard,350.9,31.53378966,18 Years and 5 Months,Yes,35.32320795,33.16868738,Low_spent_Medium_value_payments,319.3992713,0,-1.5443,0.5522,-1.1648,0.7374,-1.5499 +0x199f9,CUS_0x6bcf,August,41,090-00-2258,Architect,35198.01,2864.1675,3,7,9,2,"Mortgage Loan, and Mortgage Loan",10.61077321,11,3.28,3,Good,792.6218219,33.4814455,33 Years and 0 Months,No,72001,210.0925189,Low_spent_Medium_value_payments,332.8616443,0,1.5158,-2.9589,0.88,2.5504,-1.6126 +0x19a05,CUS_0x8a50,August,80,742-72-0073,Developer,68281.18,,4,3,1.288361749,2,"Not Specified, and Payday Loan",,11,9.49,5,Good,417.9354865,31.36061804,,NM,103.3228065,920.7573943,Low_spent_Small_value_payments,352.5602087,0,-1.0769,0.9257,0.5568,-0.0836,0.0222 +0x19a11,CUS_0xc2aa,August,37,465-60-3982,Musician,12761.21,,5,4,13,4,"Not Specified, Personal Loan, Not Specified, and Debt Consolidation Loan",14.20398365,11,3,5,_,662.86,32.14120189,16 Years and 0 Months,No,33.81955603,,Low_spent_Small_value_payments,253.6354631,0,0.9891,-0.736,0.7102,-0.6923,0.0918 +0x19a1d,CUS_0x5a53,August,32,468-16-8245,Journalist,85084.8,6997.4,4,3,12,1,Auto Loan,,6,12.49,1,Standard,100.42,35.75202447,21 Years and 4 Months,NM,69.2017297,186.4672631,High_spent_Medium_value_payments,694.0710072,0,0.7048,-0.5935,-0.0988,-0.9509,-0.5603 +0x19a29,CUS_0x6df1,August,46,831-17-3673,Lawyer,55120.88,4465.406667,5,7,5,4,"Personal Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",,19,8.82,11,Standard,1045.89,24.74776463,16 Years and 11 Months,Yes,103.2811313,219.7415885,!@9#%8,413.5179468,0,-1.9925,0.273,1.3021,0.967,1.8228 +0x19a35,CUS_0x166c,August,41,422-62-7783,_______,43016.7,,7,7,28.06745738,6,"Payday Loan, Personal Loan, Personal Loan, Not Specified, Student Loan, and Home Equity Loan",32.85276907,13.32365457,18.66,10,Standard,2633.49043,32.07163324,12 Years and 0 Months,NM,131.2489537,100.8378171,High_spent_Medium_value_payments,376.5654412,0,-0.127,-0.7144,-1.9965,-1.9514,0.6715 +0x19a41,CUS_0x43dd,August,30,454-20-3018,Journalist,14269.42,,10,6,29.06745738,5,"Auto Loan, Personal Loan, Personal Loan, Home Equity Loan, and Personal Loan",49.58684413,26,14.36,9,Bad,3447.070954,39.46457453,3 Years and 0 Months,NM,35004,36.53228301,High_spent_Small_value_payments,297.711844,0,0.1741,1.1239,1.1888,-1.7727,-0.0266 +0x19a4d,CUS_0xa567,August,31,#F%$D@*&8,Engineer,102339.96,,7,6,20,6,"Mortgage Loan, Payday Loan, Personal Loan, Payday Loan, Student Loan, and Credit-Builder Loan",18.03651108,13,12.57,9,Standard,1015.24,34.74332373,6 Years and 4 Months,Yes,2591,325.4538173,High_spent_Medium_value_payments,374.4336132,0,0.362,-0.4646,0.1347,-1.1375,1.3044 +0x19a59,CUS_0x1bff,August,38,057-88-5600,Accountant,19323.4,,10,831,19.95700519,8,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Not Specified, Home Equity Loan, and Auto Loan",29.32813328,15,17.02,11,Bad,3256.660954,38.08708365,8 Years and 11 Months,Yes,1422.584791,,High_spent_Large_value_payments,257.8341895,0,-0.4752,1.2137,-0.9634,1.2385,-0.2309 +0x19a65,CUS_0x6116,August,46,362-26-8688,Scientist,40807.77,3399.6475,3,2,5,100,"Home Equity Loan, Payday Loan, and Debt Consolidation Loan",6.426677171,8,13.72,3,Good,1133.1,31.0488034,15 Years and 9 Months,No,75.80151284,184.0479701,!@9#%8,370.1152671,0,-1.0526,0.4072,0.8785,0.3639,0.629 +0x19a71,CUS_0x5309,August,45,458-84-3825,Accountant,36338.78,,8,8,31.06745738,5,"Auto Loan, Payday Loan, Credit-Builder Loan, Auto Loan, and Credit-Builder Loan",,20,3.01,14,Bad,2085.160954,35.95442342,6 Years and 5 Months,Yes,86.67994081,70.59891898,!@9#%8,346.8240189,0,1.253,-2.3689,-0.4726,0.5992,-1.6108 +0x19a7d,CUS_0x2425,August,25,735-48-2138,Developer,67204.1,5333.341667,0,6,12,2,"Debt Consolidation Loan, and Debt Consolidation Loan",,6,0.78,2,Good,1085.23,25.28623885,23 Years and 9 Months,No,86.31030761,182.6285055,Low_spent_Small_value_payments,554.3953536,0,-0.1797,0.0335,0.4998,0.8356,0.5284 +0x19a89,CUS_0x4d3,August,25,336-50-3957,Scientist,16185.63,1355.8025,7,6,30,4,"Personal Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",,20.68393368,7.66,11,Bad,2560.1424,23.47156912,15 Years and 9 Months,Yes,49.29314269,,Low_spent_Large_value_payments,294.7092651,0,1.4831,-0.3535,-0.539,0.2318,-0.3455 +0x19a95,CUS_0x7dc4,August,27,#F%$D@*&8,Architect,33042.48,,4,4,3,2,"Personal Loan, and Student Loan",14.30583478,12,10.9,1,Good,226.72,40.50656243,23 Years and 4 Months,No,54.98819407,265.7226236,Low_spent_Small_value_payments,263.5431823,0,-0.2873,-0.5743,0.718,-0.455,-0.6646 +0x19aa1,CUS_0x8a5f,August,53,843-69-4562,Musician,123800.8,9657.932662,5,3,7,2,"Payday Loan, and Personal Loan",5.629839618,6,7.21,1,Good,765.8695077,35.17410994,24 Years and 10 Months,No,563.4933084,,!@9#%8,904.8315587,0,-2.9628,-0.4517,-1.1812,0.7886,0.5186 +0x19aad,CUS_0x7e6d,August,42,507-12-2981,Writer,79824.64,6705.053333,9,7,26,8,"Auto Loan, Personal Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Not Specified",,16,17.14,14,Bad,3633.04,39.18931847,4 Years and 2 Months,Yes,351.5689088,130.0832108,High_spent_Large_value_payments,428.8532138,0,0.6503,1.4551,-0.0437,0.9165,0.3959 +0x19ab9,CUS_0xb86b,August,30,827-45-0353,Accountant,14656.68,,6,6,15,4,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",12.32853672,11,13.96,7,Standard,1395.09,22.14388056,25 Years and 6 Months,Yes,32.35706797,55.21320037,High_spent_Small_value_payments,313.4687317,0,-2.1207,0.023,-1.4155,-0.7491,-0.6439 +0x19ac5,CUS_0x8dfa,August,26,156-15-1149,Journalist,61936.88,,4,4,7,5,"Auto Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",36.53222824,26.80103889,10.39,9,Standard,2068.350463,31.6836899,18 Years and 10 Months,Yes,18095,111.8254798,High_spent_Large_value_payments,426.4537265,0,-0.6112,0.7232,0.3823,0.0691,1.1443 +0x19ad1,CUS_0x2599,August,25,118-17-4711,Accountant,33718.86,,3,3,3,4,"Credit-Builder Loan, Student Loan, Student Loan, and Mortgage Loan",3.076887133,5,6.01,4,Good,771.1872321,22.6677344,28 Years and 2 Months,No,96.94493249,212.4838189,Low_spent_Small_value_payments,302.4877427,0,2.0767,-1.0107,1.7057,0.0208,-0.4851 +0x19add,CUS_0x1a4d,August,25,056-47-9727,Accountant,70646.64,,4,8,21.88954781,7,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",12.2225567,8,19.35,9,_,1639.04,35.03039674,16 Years and 5 Months,Yes,1984.292188,76.21226119,High_spent_Medium_value_payments,417.9418494,0,0.1278,-0.0531,0.341,-1.0956,1.5785 +0x19ae9,CUS_0x6e95,August,49,369-09-8718,Mechanic,153147.64,12915.30333,5,4,2.288361749,0,Payday Loan,0,1.18265287,11.24,3,Good,1353.879544,33.716269,25 Years and 9 Months,No,22390,1310.607115,Low_spent_Large_value_payments,588.9417169,0,-2.0074,-1.7629,-1.1054,-0.9558,-0.8066 +0x19af5,CUS_0x55c5,August,27,424-29-8918,Musician,51370.17,4042.8475,7,5,15,2,"Credit-Builder Loan, and Home Equity Loan",,20.70791523,12.03,7,_,2022.122119,41.13266216,8 Years and 9 Months,Yes,67.59260455,248.876589,High_spent_Small_value_payments,347.8155564,0,1.8691,-0.4832,-0.0087,0.3393,0.1619 +0x19b01,CUS_0xb650,August,37,054-37-0669,Manager,62995.92,,10,6,32,9,"Payday Loan, Mortgage Loan, Not Specified, Home Equity Loan, Not Specified, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",27.11250854,18.0449198,2.61,716,Bad,2531.681792,27.58368751,19 Years and 4 Months,Yes,245.2158175,286.7502055,Low_spent_Medium_value_payments,263.399977,0,0.8021,1.0763,-0.1986,0.2601,0.428 +0x19b0d,CUS_0x9127,August,34,908-71-8093,Musician,32808.09,2968.0075,3,7,13,1,Debt Consolidation Loan,16.28544928,13,-5.57,1,Standard,676.54,27.94820081,32 Years and 8 Months,No,15.68867437,85.15362353,!@9#%8,455.9584521,0,0.1965,-0.2924,-0.0948,0.5928,1.4345 +0x19b19,CUS_0x54c7,August,33,397-67-6292,Lawyer,57246.8,,9,5,32,5,"Auto Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",25.47775354,18,29.34,14,Bad,3281.44,26.64923423,9 Years and 5 Months,Yes,227.6599628,234.5217968,Low_spent_Medium_value_payments,267.0749071,0,1.4086,0.3722,-0.4757,0.4276,0.0502 +0x19b25,CUS_0xb3bd,August,42,642-73-7670,Architect,95596.35,8024.3625,5,7,12,3,"Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",1.687981804,4,5.16,2,Good,64.69,36.28824147,15 Years and 8 Months,No,182.2758306,572.8868967,Low_spent_Large_value_payments,317.2735227,0,0.4953,-0.318,-0.5523,-1.1281,0.9011 +0x19b31,CUS_0x6a6f,August,42,898-93-3892,Lawyer,18754.65,,4,7,12,4,"Not Specified, Auto Loan, Personal Loan, and Not Specified",9.471897596,11,2.68,5,Good,863.48,30.140928,22 Years and 6 Months,No,49.39074925,,Low_spent_Medium_value_payments,259.7915689,0,-0.008,0.4221,0.0818,0.441,1.8627 +0x19b3d,CUS_0x76b,August,26,169-27-4976,Engineer,23987.59,2087.965833,6,5,11.06745738,1,Debt Consolidation Loan,90,2950,16.36,10,Standard,1555.850954,30.14109747,23 Years and 10 Months,Yes,19.3007008,252.3607534,Low_spent_Small_value_payments,200.4148411,0,-1.3748,0.0215,-1.1012,-0.3444,-0.2247 +0x19b49,CUS_0xb122,August,37,399-21-8755,Lawyer,106949.49,,3,5,1,0,,12.03157936,9,10.04,0,Good,790.5447052,26.64826067,16 Years and 9 Months,No,0,,High_spent_Large_value_payments,916.9883576,0,0.4109,1.7429,-1.1303,-0.1537,-0.6963 +0x19b55,CUS_0x26e0,August,36,829-99-2590,Lawyer,14528.81,1106.734167,6,4,19.28836175,2,"Mortgage Loan, and Student Loan",19.56793453,18.00828069,10.84,12,Standard,77.42738477,23.67613516,9 Years and 4 Months,Yes,15.89556149,484.591545,High_spent_Small_value_payments,290.1237712,0,0.0464,0.2824,-1.804,-0.5112,0.3464 +0x19b61,CUS_0x3499,August,80,816-30-7776,Architect,15217.59,999.1325,5,6,17,0,,,15.17568682,9.48,3,Standard,321.6335704,35.68072397,25 Years and 3 Months,No,0,116.1442474,Low_spent_Small_value_payments,273.7690026,0,-0.4008,0.5538,-0.0326,0.0596,-1.4228 +0x19b6d,CUS_0x45b,August,28,042-96-0101,_______,16701.96,1599.83,8,10,20.95700519,8,"Not Specified, Payday Loan, Student Loan, Not Specified, Student Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",,23.08886809,28.28,12,_,5116.737328,27.0983437,14 Years and 3 Months,Yes,1380.088874,,Low_spent_Medium_value_payments,190.3249202,0,0.7323,1.1882,-0.4168,-0.3678,1.2317 +0x19b79,CUS_0x7666,August,52,922-59-5950,Entrepreneur,113284.84,9516.403333,5,4,6.288361749,2,"Debt Consolidation Loan, Home Equity Loan, and Payday Loan",,17.9348088,18.59,2,Standard,1045.366138,27.2957143,16 Years and 11 Months,Yes,257.616616,,Low_spent_Large_value_payments,452.760152,0,-1.7109,0.8611,-0.0751,0.0708,-0.1243 +0x19b85,CUS_0x696c,August,32,206-86-2182,Manager,11032.075,,8,3,13,2,"Mortgage Loan, and Payday Loan",13.65983021,,8.86,7,Standard,1043.81,39.84294713,25 Years and 3 Months,Yes,9.308119528,91.35887276,Low_spent_Small_value_payments,268.366966,0,0.4909,-1.1439,1.1099,-0.5819,-0.2733 +0x19b91,CUS_0x5499,August,40,609-92-7645,Media_Manager,56070.92,,5,6,6,1,Payday Loan,14.00214672,10,16.67,7,Standard,835.57,31.99898758,,Yes,23.84257843,78.45105677,High_spent_Medium_value_payments,607.3640315,0,0.163,0.7094,-0.979,-0.1526,0.4194 +0x19b9d,CUS_0x6781,August,48,996-39-6091,Scientist,24460.96,,5,6,9,1,Personal Loan,,15,,2,Standard,796.9,37.7201485,23 Years and 4 Months,No,10.89889716,45.85569606,!@9#%8,402.2867401,0,-0.1981,0.5519,0.1364,-0.498,0.0717 +0x19ba9,CUS_0xb171,August,41,179-19-9208,Journalist,9269.99,598.4991667,3,6,24,2,"Home Equity Loan, and Auto Loan",22.77339965,19,10.24,8,Standard,1963.61,24.39832348,12 Years and 8 Months,Yes,10.51656003,39.48486172,High_spent_Small_value_payments,269.8484949,0,-0.8657,-0.1777,-1.6165,-0.3404,-1.0527 +0x19bb5,CUS_0x8e81,August,39,#F%$D@*&8,Mechanic,67039.6,5869.633333,7,3,10,7,"Mortgage Loan, Home Equity Loan, Payday Loan, Student Loan, Home Equity Loan, Auto Loan, and Not Specified",28.16004104,22.53108833,10.41,8,Standard,952.8956061,36.33795284,8 Years and 3 Months,Yes,303.2917396,323.4872784,Low_spent_Medium_value_payments,240.1843153,0,-0.8511,-1.3599,-0.4296,-0.2951,-0.8836 +0x19bc1,CUS_0x5097,August,20,907-16-4737,Developer,17328.675,,3,6,15,100,"Auto Loan, Home Equity Loan, and Not Specified",,15,7.84,10,Standard,407.3119514,37.15186997,22 Years and 10 Months,Yes,27.61396532,,Low_spent_Medium_value_payments,256.8219394,0,1.7132,1.8866,0.5813,-0.6356,-0.7971 +0x19bcd,CUS_0x57b1,August,36,181-51-6545,Media_Manager,28378.94,2348.911667,3,7,13,3,"Payday Loan, Payday Loan, and Auto Loan",,19.983081,9.45,7,Standard,1822.241062,41.44548425,16 Years and 11 Months,Yes,52.55835478,127.7159016,Low_spent_Large_value_payments,324.6169103,0,1.6644,1.3215,-0.7073,1.8047,0.6004 +0x19bd9,CUS_0x435d,August,80,760-37-2706,Journalist,35342.98,2919.248333,5,5,3,4,"Mortgage Loan, Not Specified, Payday Loan, and Student Loan",5.347735176,7,4.84,2,Good,994.4,31.07762404,23 Years and 11 Months,No,113.7131001,,High_spent_Medium_value_payments,318.9072368,0,-1.412,-1.0095,0.7795,-0.1643,0.3045 +0x19be5,CUS_0x2b39,August,46,034-89-4652,Scientist,45764.14,,6,5,10.28836175,2,"Debt Consolidation Loan, and Credit-Builder Loan",,14,9.31,3,_,146.1,22.71456153,31 Years and 4 Months,No,62.19456894,,Low_spent_Small_value_payments,106.2524959,0,-0.3259,-0.8028,0.0953,0.6219,-0.0601 +0x19bf1,CUS_0x2142,August,36,571-04-7703,Mechanic,10186.26,985.855,4,3,8,3,"Payday Loan, Home Equity Loan, and Mortgage Loan",10.99358918,10,10.16,5,Good,517.0619968,25.33606404,,NM,18.78837739,91.65178306,!@9#%8,286.500719,0,1.0935,1.0725,0.7869,0.935,0.5499 +0x19bfd,CUS_0xba6,August,46,808-86-3684,Engineer,110557.08,9210.09,3,5,5,2,"Not Specified, and Credit-Builder Loan",23.32087719,15,5.51,5,Standard,946.28,25.58974541,18 Years and 0 Months,Yes,181.8557754,510.8236623,Low_spent_Small_value_payments,518.3295623,0,-0.2587,-0.686,1.2724,-0.1097,0.7942 +0x19c09,CUS_0x5a4f,August,29,953-38-0957,Teacher,57303.36,4949.28,10,9,31.88954781,100,"Not Specified, Mortgage Loan, Not Specified, Not Specified, Not Specified, and Payday Loan",35.67267499,21.1186314,,11,Bad,1512.940041,29.06114732,17 Years and 10 Months,Yes,1573.592443,196.1977629,High_spent_Medium_value_payments,280.8077124,0,0.0698,1.0913,-0.1843,1.2603,0.8426 +0x19c15,CUS_0xc60d,August,18,946-55-9837,Architect,15618.52,,216,7,23.06745738,7,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Personal Loan, and Auto Loan",30.01102813,19.58332971,20.03,9,Bad,3393.592545,37.53130294,14 Years and 4 Months,Yes,86.6374151,129.3609538,!@9#%8,175.7356764,0,1.1582,-0.0204,-0.3591,-0.869,-1.0109 +0x19c21,CUS_0x8a3f,August,52,108-22-7256,_______,39477.34,,0,1,10.28836175,0,,,3,2.48,4,_,322.8975533,30.88341855,31 Years and 9 Months,No,0,492.373984,High_spent_Medium_value_payments,485.2917528,0,-0.6518,1.0091,0.1627,0.1413,0.0075 +0x19c2d,CUS_0x5e22,August,21,587-40-4260,Manager,41435.26,3639.938333,7,7,26,6,"Debt Consolidation Loan, Student Loan, Payday Loan, Mortgage Loan, Student Loan, and Debt Consolidation Loan",27.94567959,18,12.99,,Bad,1625.55,30.26949345,18 Years and 8 Months,Yes,175.8051495,10000,Low_spent_Medium_value_payments,363.0349168,0,-0.883,0.2189,-0.9476,-0.5119,-0.655 +0x19c39,CUS_0xaa15,August,52,732-57-4118,Architect,18124.175,,6,5,11,3,"Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",13.87097662,13,11.87,4,Good,303.7698808,33.24476651,25 Years and 2 Months,No,31.98915646,71.0293553,High_spent_Small_value_payments,334.3148326,0,-2.8408,1.6584,-0.6911,-0.4973,3.1565 +0x19c45,CUS_0x1f64,August,41,477-78-7314,Accountant,14417.71,,7,8,35.06745738,7,"Credit-Builder Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,24,28.56,12,_,3300.980954,23.98481663,8 Years and 10 Months,Yes,58.37874486,59.26170852,High_spent_Small_value_payments,258.186842,0,0.8268,-2.0993,-1.4053,-1.0644,-0.1097 +0x19c51,CUS_0x48f,August,25,323-92-8842,Journalist,72629.12,5884.426667,8,9,20.95700519,7,"Personal Loan, Not Specified, Debt Consolidation Loan, Student Loan, Student Loan, Personal Loan, and Payday Loan",49.06793259,31.73932765,21.23,16,Bad,5386.349725,33.63888786,8 Years and 2 Months,Yes,1617.267632,,High_spent_Small_value_payments,255.819686,0,0.7185,-0.0745,-1.1333,-0.6069,0.4497 +0x19c5d,CUS_0x29b4,August,23,041-71-4410,Accountant,14702.05,,5,4,19,4,"Not Specified, Payday Loan, Debt Consolidation Loan, and Payday Loan",25.39800706,18,15,6,Standard,740.4888438,27.2601409,13 Years and 10 Months,Yes,83.39548315,55.99499237,Low_spent_Large_value_payments,300.3936297,0,-0.3295,0.001,-0.536,-0.1965,2.3292 +0x19c69,CUS_0x5ae3,August,51,381-36-5261,Journalist,70968.06,5773.005,8,4,5,2,"Payday Loan, and Not Specified",27.25947496,19,8.95,7,Good,768.2922082,25.74498277,25 Years and 10 Months,No,97.85238037,516.838841,!@9#%8,304.1840974,0,0.2678,1.2673,-2.1677,0.5481,0.3865 +0x19c75,CUS_0xbe9a,August,50,994-73-1178,Manager,34058.47,,1,2,4.288361749,2,"Mortgage Loan, and Debt Consolidation Loan",,4,4.01,3,Good,339.54,28.05341632,24 Years and 8 Months,No,49.18150604,513.0703136,High_spent_Medium_value_payments,395.1062247,0,-0.901,1.955,-0.0042,0.9181,1.509 +0x19c81,CUS_0x4874,August,51,647-44-9598,_______,22914.66,,8,3,10,3,"Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",6.851737504,8,16.66,3,Standard,345.85,34.84098062,33 Years and 5 Months,Yes,49.37587448,46.31754244,High_spent_Medium_value_payments,328.9620831,0,-0.2811,-1.4065,0.911,-1.4099,-0.822 +0x19c8d,CUS_0xc67b,August,42,817-66-1241,Doctor,64175.56,5154.963333,7,8,25,5,"Mortgage Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Mortgage Loan",,23,21.21,6,Bad,3203.71,31.92116214,3 Years and 11 Months,Yes,179.5998609,90.92425752,!@9#%8,504.9722149,0,-0.7889,1.3768,-1.5408,-0.8776,-0.8957 +0x19c99,CUS_0x8a64,August,31,890-19-7542,Accountant,15971.515,1366.959583,4,3,11,0,,15.38534077,,11.25,3,Good,614.4109478,36.89271511,26 Years and 3 Months,No,0,97.94836132,Low_spent_Small_value_payments,328.747597,0,0.3375,1.1241,0.0508,-0.2356,-0.2713 +0x19ca5,CUS_0x35ea,August,40,741-57-0740,Architect,52837.29,4230.1075,6,9,31.88954781,6,"Home Equity Loan, Payday Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,24,15.47,15,Bad,4969.21,25.47884058,12 Years and 9 Months,Yes,1467.779639,113.3892314,High_spent_Medium_value_payments,397.5117978,0,-1.2561,-1.2967,-1.8025,-3.0548,-1.3323 +0x19cb1,CUS_0x5044,August,23,729-31-7906,Lawyer,16406.08,1604.173333,5,5,16,3,"Credit-Builder Loan, Payday Loan, and Student Loan",23.8624914,17,,10,_,1618.94,27.71749978,7 Years and 2 Months,Yes,34.19404285,114.3389782,Low_spent_Large_value_payments,281.8843122,0,0.5235,0.8086,0.8849,-0.3483,-0.9805 +0x19cbd,CUS_0x9dfd,August,46,448-68-0409,Musician,80633.22,6463.435,2,4,6,4,"Payday Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",3.797982988,5,6.27,1,Good,259.0541265,40.46223385,27 Years and 5 Months,No,142.8242214,169.6922286,High_spent_Medium_value_payments,606.8303891,0,-1.0453,0.1128,0.8664,-2.5009,-1.4765 +0x19cc9,CUS_0x513,August,44,063-74-6877,Teacher,8787.9,,8,5,18,100,"Student Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",22.34454981,20,10.13,9,Standard,234.47,34.30790671,14 Years and 3 Months,Yes,23.82537506,22.64836168,High_spent_Small_value_payments,262.6587633,0,-1.3482,0.2443,1.0279,-0.7574,0.7918 +0x19cd5,CUS_0xba0b,August,37,165-76-8590,Accountant,54265.54,4248.128333,3,5,5,2,"Mortgage Loan, and Student Loan",16.18250367,11,-1.22,5,Standard,469.2377979,36.79699935,23 Years and 6 Months,No,82.10549979,111.2962541,High_spent_Small_value_payments,505.2021377,0,0.6164,-1.2769,-0.0301,-0.0433,-0.453 +0x19ce1,CUS_0x9e7e,August,52,126-99-9312,Entrepreneur,88296.18,,4,4,11,3,"Mortgage Loan, Personal Loan, and Debt Consolidation Loan",,6,6.87,,_,1301.98,26.25068107,24 Years and 5 Months,NM,127.2956303,221.449367,Low_spent_Medium_value_payments,669.8565028,0,-0.2392,0.5045,0.8038,-1.3421,0.9379 +0x19ced,CUS_0x37dd,August,34,205-34-4451,Media_Manager,67408.06,5136.791348,5,3,6,3,"Payday Loan, Payday Loan, and Debt Consolidation Loan",,13,9.74,,Good,878.8700338,35.23471829,22 Years and 6 Months,NM,835.8296236,,High_spent_Medium_value_payments,593.5034924,0,1.6025,-0.6365,0.9887,-0.3279,-0.7419 +0x19cf9,CUS_0x8873,August,44,191-16-0751,_______,28274.64,2398.22,5,7,15,3,"Not Specified, Personal Loan, and Student Loan",24.89289453,17,14.35,8,Standard,953.08,26.91413814,18 Years and 2 Months,Yes,62.07787754,148.6761395,Low_spent_Small_value_payments,319.067983,0,-1.7862,-0.6021,1.2179,0.019,-1.2979 +0x19d05,CUS_0x61e0,August,24,561-53-6530,Architect,100697.64,,8,7,15.28836175,0,Not Specified,14.75831752,13,19.19,,Standard,1115,34.30663666,21 Years and 4 Months,NM,81935,994.1647676,Low_spent_Large_value_payments,482.2990056,0,-1.1396,-0.0251,0.2951,1.0524,0.2225 +0x19d11,CUS_0x7eb0,August,49,#F%$D@*&8,Media_Manager,28378.53,,6,3,9,1,Not Specified,22.22769429,17,16.42,5,Standard,316.61,37.3967053,17 Years and 0 Months,Yes,20.85160612,48.64440516,High_spent_Small_value_payments,413.3917387,0,0.5556,0.8647,-0.0721,1.8585,0.0101 +0x19d1d,CUS_0x5fdb,August,18,859-09-6348,Musician,43171.59,,8,9,22.88954781,6,"Not Specified, Not Specified, Home Equity Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",23.0944203,,8.52,7,Bad,2028.14,29.39896788,16 Years and 3 Months,Yes,12850.48344,109.0509836,High_spent_Medium_value_payments,346.2637765,0,1.3279,0.5676,-1.2142,1.8817,0.4657 +0x19d29,CUS_0x8f16,August,40,244-17-9158,Entrepreneur,33717.92,,10,9,17,7,"Not Specified, Credit-Builder Loan, Auto Loan, Payday Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",29.17665383,15,6.03,12,Bad,1298.16,25.23752429,11 Years and 0 Months,Yes,180.740396,,Low_spent_Small_value_payments,213.9915738,0,1.6078,0.2508,0.9496,-0.5298,0.8205 +0x19d35,CUS_0x3ff9,August,19,190-53-4630,Doctor,17055.61,1650.300833,7,3,20,2,"Mortgage Loan, and Payday Loan",,19,11.44,8,Standard,1079.76,35.53344133,19 Years and 5 Months,Yes,28.40229704,222.0196477,Low_spent_Small_value_payments,204.6081386,0,0.6126,-0.591,-2.8547,0.4619,1.5508 +0x19d41,CUS_0x5e43,August,21,480-41-6550,Architect,8392.645,,6,8,27.06745738,5,"Personal Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Not Specified",30.83029876,21,1.49,11,Bad,3170.980954,26.37198294,13 Years and 10 Months,Yes,22.01998214,87.35335115,Low_spent_Small_value_payments,233.5450871,0,-0.8423,0.7075,0.8879,-0.6881,0.7196 +0x19d4d,CUS_0x26e3,August,27,004-13-8448,Architect,64845.8,5574.816667,5,6,12,2,"Credit-Builder Loan, and Student Loan",12.73843201,11,7.13,6,Standard,528.95,26.34095803,6 Years and 4 Months,NM,75.9134721,101.1455925,High_spent_Medium_value_payments,630.4226021,0,-1.891,-0.3452,-1.425,-0.4068,-1.0616 +0x19d59,CUS_0x8d2,August,37,183-30-2570,Entrepreneur,125027.24,8912.983175,4,3,5,1,Auto Loan,,6,8.58,5,Good,774.4957071,43.45851227,20 Years and 8 Months,No,1320.790134,222.3840897,High_spent_Large_value_payments,981.2452099,0,-0.2148,0.913,0.0504,1.0681,1.3115 +0x19d65,CUS_0xb9a2,August,26,979-40-4257,Developer,59375.22,4734.935,3,4,5,4,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",2.730886135,5,7.33,0,Good,833.4528988,34.78026758,25 Years and 3 Months,No,116.8332019,289.6197941,High_spent_Small_value_payments,359.0714724,0,-0.5322,-0.3533,1.2407,-0.7113,-0.4931 +0x19d71,CUS_0x9bf4,August,31,544-05-0223,Manager,26305.91,1946.159167,4,7,9,2,"Payday Loan, and Payday Loan",17.98171354,,7.34,4,_,151.95,38.4879345,29 Years and 11 Months,Yes,23.99050696,80.68360669,Low_spent_Large_value_payments,359.941803,0,-0.864,1.0768,0.0077,-0.2303,0.9 +0x19d7d,CUS_0x12af,August,37,430-21-6270,Manager,33799.36,,5,3,19,4,"Personal Loan, Not Specified, Mortgage Loan, and Personal Loan",18.0326861,,22.35,5,Standard,173.76,28.18336167,6 Years and 11 Months,Yes,75.09807764,235.3823394,Low_spent_Large_value_payments,253.9809163,0,-0.3592,-0.3393,1.2896,-0.293,-1.5746 +0x19d89,CUS_0x9d3,August,39,380-56-6739,_______,20886.73,,5,5,12,4,"Personal Loan, Not Specified, Credit-Builder Loan, and Home Equity Loan",,8,4.07,5,Good,769.43,29.0958202,32 Years and 11 Months,No,39.69011607,58.71260366,!@9#%8,344.1533636,0,-1.279,-0.8053,-0.5181,0.2605,0.2015 +0x19d95,CUS_0x6987,August,33,132-81-3981,Lawyer,17640.42,,7,5,31,7,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Home Equity Loan",,,26.55,12,Bad,5126.872228,32.05253196,3 Years and 4 Months,Yes,36469,,Low_spent_Small_value_payments,178.6409791,0,-0.7392,-1.3638,0.4674,-0.4234,-0.2052 +0x19da1,CUS_0x99d9,August,38,248-26-6478,Media_Manager,19850.31,,6,7,16.06745738,5,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",90,2810,6.57,15,_,3754.410954,33.21400897,14 Years and 5 Months,Yes,74.86545483,18.68086392,High_spent_Large_value_payments,288.5526433,0,0.7751,0.4967,0.8597,1.1726,-0.8088 +0x19dad,CUS_0xb4f,August,51,910-76-8436,Journalist,56622.3,,1,4,11,0,,0,0,7.9,1,_,98.74611599,27.75243332,29 Years and 2 Months,No,0,,!@9#%8,542.6338659,0,-0.4974,0.9441,-1.1137,0.0977,-0.8335 +0x19db9,CUS_0x8bd2,August,33,375-03-0117,Mechanic,16540.95,,8,4,9,4,"Auto Loan, Home Equity Loan, Not Specified, and Personal Loan",14.62322874,14,4.3,4,_,794.61,30.19553596,26 Years and 2 Months,No,53.65909569,,Low_spent_Medium_value_payments,225.9532721,0,-1.0129,-0.1513,0.26,0.434,-0.6249 +0x19dc5,CUS_0x5648,August,26,230-00-1329,Architect,43269.35,,2,3,3,3,"Payday Loan, Auto Loan, and Home Equity Loan",0,2,1.39,7,Good,877.6111182,25.36541497,27 Years and 5 Months,No,94.52943747,142.7042533,High_spent_Medium_value_payments,386.6335107,0,0.3232,-1.9498,0.7024,0.1778,-0.6399 +0x19dd1,CUS_0xc0c6,August,35,962-51-8001,Developer,105596.28,,7,7,19,1,Personal Loan,20.38148189,18,7.17,3,Standard,459.52,32.64238622,21 Years and 9 Months,No,46.54925674,10000,High_spent_Large_value_payments,833.9674671,0,1.1792,-2.0242,-1.5523,-0.8101,0.6687 +0x19ddd,CUS_0xc4bb,August,20,084-61-3398,Media_Manager,12928.24,,7,6,11,1074,,23.09790815,20,1.15,0,Good,952.9091293,29.26368571,33 Years and 0 Months,NM,0,,Low_spent_Small_value_payments,253.4728977,0,-1.7445,-0.1352,-2.5428,1.0886,0.9107 +0x19de9,CUS_0x5c72,August,30,039-93-2137,Entrepreneur,111404.52,9473.71,1,1,10.28836175,2,"Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",,0,4.46,0,Good,425.2397229,27.37826689,30 Years and 2 Months,No,155.8799843,,High_spent_Medium_value_payments,861.7723771,0,0.0796,-1.682,-0.1068,-0.2899,-0.7744 +0x19df5,CUS_0x19d1,August,36,149-03-2551,Scientist,7110.93,,7,10,22,4,"Auto Loan, Payday Loan, Personal Loan, and Home Equity Loan",34.92617529,17.99202672,9.03,6,Bad,2496.545477,33.23761065,6 Years and 11 Months,Yes,16.9803565,14.44113688,High_spent_Large_value_payments,292.9362566,0,0.3529,1.9723,-0.4902,0.8283,-0.482 +0x19e01,CUS_0xa5f4,August,30,099-36-7622,Manager,65536.74,5359.395,5,2,6,4,"Student Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",3.958172275,7,7.75,,Good,61.54886146,31.83988738,16 Years and 9 Months,No,163.5357792,119.7657006,High_spent_Large_value_payments,510.7944773,0,-0.5489,-1.2342,-0.1168,0.1315,-0.7478 +0x19e0d,CUS_0xa499,August,39,467-18-2266,Doctor,19200.08,,3,3,15,4,"Credit-Builder Loan, Personal Loan, Payday Loan, and Auto Loan",,22,19.49,9,Standard,1466.57,23.17492751,5 Years and 10 Months,Yes,54.41731056,145.6864409,Low_spent_Small_value_payments,257.6969152,0,-0.324,-1.82,0.11,1.3929,-0.9148 +0x19e19,CUS_0x9c28,August,34,109-17-5486,Doctor,17645.66,,4,9,25,5,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",10.88956893,9.618532318,18.7,9,Standard,2069.732023,26.25041788,20 Years and 4 Months,Yes,49.18230395,40.24777032,High_spent_Medium_value_payments,327.7170924,0,2.5278,0.2249,1.4397,0.3549,0.7485 +0x19e25,CUS_0xc3b8,August,20,370-83-2145,_______,9311.995,1015.999583,9,6,22,7,"Not Specified, Not Specified, Student Loan, Mortgage Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",18.67847223,14.05905449,21.51,8,Standard,2503.124059,39.09280688,10 Years and 9 Months,Yes,44.96331562,,High_spent_Small_value_payments,298.4734851,0,1.3265,-0.6022,-0.5947,-0.7232,-0.7044 +0x19e31,CUS_0xbabc,August,20,953-01-4502,Media_Manager,8139.495,,10,7,17.06745738,9,"Student Loan, Payday Loan, Not Specified, Payday Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, and Student Loan",37.33312746,19,18.87,7,Bad,3299.390954,36.12085192,6 Years and 3 Months,Yes,37.95382531,24.68305746,Low_spent_Small_value_payments,239.7719543,0,0.6099,-0.7566,0.0005,-1.9513,-2.739 +0x19e3d,CUS_0xc648,August,40,545-42-5914,Architect,32757.76,2631.813333,5,6,2874,2,"Mortgage Loan, and Personal Loan",,20,4.28,5,_,504.73,38.34435121,16 Years and 9 Months,No,47.15487891,200.8256407,Low_spent_Small_value_payments,305.2008137,0,0.065,-0.6412,0.0336,-0.1056,-0.3774 +0x19e49,CUS_0x93bc,August,34,482-17-1760,Developer,16596.385,1659.032083,8,5,9.067457376,4,"Student Loan, Credit-Builder Loan, Student Loan, and Credit-Builder Loan",19.51967354,13,9.98,3,Standard,1634.660954,33.59780515,18 Years and 9 Months,Yes,35.64449133,,Low_spent_Small_value_payments,201.8135019,0,0.1276,1.587,-0.5671,-1.661,-0.9211 +0x19e55,CUS_0x764f,August,30,315-17-8163,Teacher,79630.14,6689.845,3,1,3,1,Personal Loan,,10,11.37,0,Good,1133.46,37.41455886,15 Years and 11 Months,No,34.55106016,432.0003782,Low_spent_Small_value_payments,492.4330617,0,1.2414,-0.0593,-1.2598,-1.1684,-1.6402 +0x19e61,CUS_0xbebf,August,23,410-80-9046,Entrepreneur,22222.15,,7,6,20,4,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",13.17372212,9,14.91,8,_,81.68,37.33835716,,Yes,44.47064856,,High_spent_Medium_value_payments,331.0580006,0,1.6796,-1.7234,-0.3641,-1.1496,-1.8271 +0x19e6d,CUS_0x216a,August,26,526-33-0806,Writer,45472.2,3693.35,6,10,23,4,"Not Specified, Mortgage Loan, Personal Loan, and Student Loan",35.42619088,18.84058243,4.44,11,_,1511.740759,32.2896217,,Yes,111.7463466,223.8716285,Low_spent_Medium_value_payments,313.7170249,0,2.2444,-0.0378,0.1725,1.1391,-0.2795 +0x19e79,CUS_0x20ac,August,44,#F%$D@*&8,Doctor,57953.82,4606.485,7,6,17,0,,16.80612587,,9.38,2036,Standard,221.62,36.13576762,18 Years and 4 Months,Yes,0,335.5526319,Low_spent_Medium_value_payments,405.0958681,0,0.1424,-0.4899,-0.0942,-0.3738,0.1177 +0x19e85,CUS_0x3cc2,August,29,327-15-6863,Accountant,40369.07,3186.089167,0,4,10,0,,0,2,,0,Good,570.51,24.07169244,27 Years and 10 Months,NM,81760,363.5884136,Low_spent_Small_value_payments,245.0205031,0,-0.3538,-0.0652,-1.071,0.5756,0.9305 +0x19e91,CUS_0x5c4f,August,42,832-33-3807,Lawyer,33181.3,2739.108333,6,7,33.06745738,6,"Personal Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",,23,28.43,6,Bad,3730.780954,36.3971269,12 Years and 4 Months,Yes,115.0475849,83.45669326,Low_spent_Large_value_payments,318.6862672,0,1.1222,0.3664,0.3042,-0.6673,0.2045 +0x19e9d,CUS_0x924,August,26,409-92-8008,Mechanic,179166.48,14929.54,1,5,5,1,Credit-Builder Loan,,1,10.75,4,Good,181.42,36.73889888,32 Years and 2 Months,No,138.8017482,,Low_spent_Medium_value_payments,859.6584632,0,1.4819,0.7946,-0.7167,0.1848,-1.4167 +0x19ea9,CUS_0x3a3a,August,53,661-86-5423,Lawyer,32972.8,2836.733333,6,3,8,0,,16.73435271,14,11.01,7,Standard,390.41,27.31093714,23 Years and 5 Months,Yes,0,,!@9#%8,458.8964796,0,-0.5752,2.8547,0.7535,0.2908,2.0302 +0x19eb5,CUS_0x5d91,August,18,018-41-6428,Engineer,7632.555,476.04625,8,1206,32.88954781,6,"Payday Loan, Debt Consolidation Loan, Auto Loan, Auto Loan, Payday Loan, and Home Equity Loan",,9,15.26,10,Standard,1401.9,30.6091325,12 Years and 8 Months,Yes,1358.412607,15.88517375,Low_spent_Large_value_payments,248.9767625,0,0.6788,0.5039,0.7904,1.4906,0.844 +0x19ec1,CUS_0x6ba7,August,55,190-50-0587,Manager,27223.1,2363.591667,8,6,7,0,,23.59427831,18,3.81,6,Good,1241.503618,33.70433844,16 Years and 8 Months,No,0,26.29820557,High_spent_Large_value_payments,453.6447586,0,-0.7929,-0.583,0.4315,0.8364,2.217 +0x19ecd,CUS_0x1764,August,26,807-84-4440,Engineer,33574.44,2864.87,7,7,15.28836175,520,"Mortgage Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",20.64678776,18,10.05,0,Standard,79.95,36.43342785,24 Years and 10 Months,No,109.6811715,614.1517342,Low_spent_Medium_value_payments,262.5915552,0,0.1686,0.4684,0.9528,1.1973,-1.9335 +0x19ed9,CUS_0x1971,August,34,359-13-5762,Manager,34798.82,3019.901667,7,10,20,100,"Home Equity Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",28.95826531,17,19.74,16,Bad,2801.86,37.82009896,12 Years and 4 Months,Yes,257.245832,123.1173139,High_spent_Medium_value_payments,171.6270207,0,-1.0151,1.3995,-1.0224,-0.4165,-1.504 +0x19ee5,CUS_0x4f07,August,20,435-68-3780,Lawyer,26460.7,2295.058333,6,6,10,4,"Student Loan, Payday Loan, Personal Loan, and Home Equity Loan",26.0010001,19,16.21,5,Standard,1378.46,29.04432356,31 Years and 0 Months,Yes,49.03625747,,Low_spent_Small_value_payments,171.1708254,0,0.763,-0.3415,-1.7149,1.3187,0.7219 +0x19ef1,CUS_0x6acc,August,49,492-06-5392,Journalist,28975.42,2391.618333,4,5,13,1,Debt Consolidation Loan,,11,2.86,2,Standard,675.8,36.03605536,23 Years and 8 Months,No,19.30059125,109.2575305,Low_spent_Small_value_payments,400.6037115,0,-0.3357,-1.4298,0.0612,1.6282,-0.5388 +0x19efd,CUS_0x5f02,August,31,284-27-3237,Teacher,49405.92,4019.16,7,6,2617,100,,15.0702938,9,10.51,7,Standard,1123.87,39.13733734,25 Years and 5 Months,Yes,0,140.3223107,High_spent_Medium_value_payments,511.5936893,0,-0.4777,-0.6795,-0.1677,-0.4814,-0.1216 +0x19f09,CUS_0xbab8,August,48,624-51-5781,Musician,175972,14771.33333,3,4,2.288361749,2,"Personal Loan, and Payday Loan",2.023768491,4.622727003,8.01,3,Good,192.898394,31.83256279,24 Years and 4 Months,NM,285.6316023,522.8285921,High_spent_Large_value_payments,1328.6106,0,0.8465,0.1312,-2.1471,-0.3868,0.4037 +0x19f15,CUS_0x2fb1,August,24,620-09-6549,Journalist,105151.32,8861.61,6,3,11,0,,,15,8.78,9,Standard,689.43,31.13752208,31 Years and 5 Months,Yes,0,582.7565775,Low_spent_Small_value_payments,593.4044225,0,-0.1091,-1.2861,-2.8277,0.628,-1.3045 +0x19f21,CUS_0x9d09,August,34,976-59-9978,Architect,29902.72,2676.893333,4,7,8,2,"Not Specified, and Not Specified",16.10012461,12,17.84,5,_,1044.88,31.48008897,,Yes,43.67250296,86.88630491,Low_spent_Large_value_payments,407.1305255,0,-0.2974,-1.0718,-0.6009,0.3766,0.8598 +0x19f2d,CUS_0x905,August,42,491-80-3802,Scientist,99573.12,8240.76,5,4,13,3,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",16.67923994,14,8.94,0,Standard,327.22,24.52433385,26 Years and 5 Months,No,196.2160307,,High_spent_Large_value_payments,688.0523552,0,0.9564,1.6353,0.4621,0.7845,-0.5121 +0x19f39,CUS_0x716c,August,27,612-66-0281,Writer,39453.74,3254.811667,5,1,6,1,Personal Loan,0,2,1.8,6,Good,1432.03,28.35972591,29 Years and 5 Months,No,26.00876254,,Low_spent_Small_value_payments,196.9746232,0,0.1785,-1.6169,0.0637,1.1822,-0.0823 +0x19f45,CUS_0x4ee5,August,80,009-33-0735,Lawyer,75988.68,6419.39,0,3,9,4,"Personal Loan, Auto Loan, Personal Loan, and Student Loan",3.227001112,3,11.26,1,Good,1241.25,33.51784458,33 Years and 4 Months,No,162.1990831,94.80818244,High_spent_Large_value_payments,624.9317345,0,-2.1376,0.2605,0.8899,0.3717,0.3192 +0x19f51,CUS_0x3797,August,42,683-12-2435,Musician,46256.34,4048.695,7,5,30,6,"Not Specified, Personal Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Personal Loan",24.4998361,18.67652772,17.92,9,Bad,4697.871679,31.76937495,,Yes,133.9629711,172.2987699,Low_spent_Small_value_payments,388.607759,0,0.6765,0.606,1.2552,-1.2311,0.6638 +0x19f5d,CUS_0x7015,August,39,795-31-5311,Musician,8057.43,561.4525,4,9,18.06745738,6,"Mortgage Loan, Not Specified, Auto Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",23.02620788,15.58065743,13.12,11,Standard,1833.480533,35.38096062,19 Years and 4 Months,Yes,37.00205503,54.14228998,Low_spent_Small_value_payments,228.280617,0,2.1096,0.5233,-1.1687,0.1498,-0.0985 +0x19f69,CUS_0x7443,August,22,120-25-8979,Musician,22815,2071.25,3,4,17,3,"Not Specified, Home Equity Loan, and Home Equity Loan",,10.30007399,11.18,7,_,206.8116247,30.78190238,18 Years and 2 Months,Yes,22898,197.0454675,Low_spent_Small_value_payments,258.5462127,0,-0.356,-1.2655,1.2775,-1.2854,-0.1078 +0x19f75,CUS_0x76a9,August,18,830-79-0818,Developer,61350.48,4998.54,6,9,29.06745738,7,"Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Auto Loan",28.58876256,19,17.48,14,Bad,4188.820954,35.00840655,,Yes,322.5293333,283.0701979,Low_spent_Large_value_payments,137.5341809,0,1.635,-0.4245,1.5295,0.212,-1.0812 +0x19f81,CUS_0x2218,August,35,984-57-8939,Architect,34700.16,,7,6,30,5,"Student Loan, Auto Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,23,8.55,10,Bad,1900.43,34.07548271,9 Years and 5 Months,Yes,109.5029976,51.64173071,High_spent_Medium_value_payments,396.4232717,0,0.5018,-0.5548,-0.4073,0.7457,-0.0229 +0x19f8d,CUS_0xa405,August,24,456-97-3772,Journalist,7788.985,622.0820833,4,6,18,2,"Auto Loan, and Home Equity Loan",,13,10.82,7,Standard,1796.83,34.57400998,15 Years and 10 Months,Yes,10.98772588,63.32637573,Low_spent_Small_value_payments,277.8941067,0,-0.9565,-0.414,-0.2259,-0.4233,1.0013 +0x19f99,CUS_0x9ba5,August,49,257-72-0519,Accountant,88165.12,7547.093333,5,4,2.288361749,2,"Auto Loan, and Payday Loan",4.029113622,6,4.48,1,Good,60.15725158,27.53620275,21 Years and 0 Months,No,85.91595826,524.2168482,High_spent_Large_value_payments,820.0240732,0,0.0174,0.2075,-3.073,-3.3929,1.8512 +0x19fa5,CUS_0x54d6,August,24,881-78-4378,Media_Manager,107591.79,,5,4,4.288361749,4,"Personal Loan, Personal Loan, Mortgage Loan, and Not Specified",,,6.84,2,Good,9.297022819,26.98780237,26 Years and 0 Months,No,263.093366,495.2300332,High_spent_Large_value_payments,788.7684859,0,0.1383,-0.1536,-1.3159,3.0323,-0.4008 +0x19fb1,CUS_0x13fa,August,25,158-05-0970,Manager,32394.38,2631.531667,8,10,25.88954781,100,"Student Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, Personal Loan, and Student Loan",29.14818824,18.53381924,8.41,13,Bad,2111.802788,23.90392036,19 Years and 2 Months,Yes,1466.517643,10000,Low_spent_Small_value_payments,47.55386904,0,-0.5347,-0.7184,-0.3639,0.6133,0.6953 +0x19fbd,CUS_0xb2f6,August,25,187-25-6255,Scientist,67082.16,,8,8,18.88954781,6,"Mortgage Loan, Payday Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, and Debt Consolidation Loan",32.11964126,21.32734625,4.96,11,Bad,1926.116133,29.71529713,7 Years and 8 Months,Yes,1575.775102,80.65698192,High_spent_Medium_value_payments,461.4558347,0,1.4354,0.0459,-0.7969,-0.8898,-0.1284 +0x19fc9,CUS_0x6998,August,28,199-62-5801,Accountant,68367.8,,6,4,1.288361749,0,,20.85811613,18,9.13,5,Good,359.85,34.9930462,27 Years and 2 Months,No,289.2456995,549.5895785,High_spent_Medium_value_payments,663.9795492,0,-1.0055,-0.5252,0.7434,0.6722,0.8196 +0x19fd5,CUS_0x2e72,August,22,756-40-7758,Scientist,17670.52,1529.543333,10,7,21,8,"Credit-Builder Loan, Home Equity Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Student Loan",,,7.15,9,Bad,5571.25681,26.22866826,5 Years and 6 Months,Yes,71.85825675,101.7832398,Low_spent_Small_value_payments,269.3128368,0,1.0781,0.5144,-0.5259,0.3021,0.4202 +0x19fe1,CUS_0x61c8,August,38,018-82-2114,Accountant,42337.39,3545.115833,2,4,3.288361749,2,"Auto Loan, and Credit-Builder Loan",12.23054295,12,2.29,2,Good,521.916489,32.69785995,32 Years and 4 Months,No,39.43438132,467.3919258,High_spent_Medium_value_payments,524.4805972,0,-1.1246,0.71,-1.325,0.2805,-0.3442 +0x19fed,CUS_0x9e0,August,18,759-32-1111,Developer,73530.48,6301.54,7,4,6,6,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",15.34457935,12,11.62,10,Standard,2420.44,38.97578979,10 Years and 10 Months,Yes,231.9740548,577.4116634,Low_spent_Medium_value_payments,100.7682818,0,0.0163,1.3366,-0.6331,-0.5143,-0.1005 +0x19ff9,CUS_0x238c,August,28,789-29-5186,Media_Manager,38269.83,3010.1525,3,1,9,1,Payday Loan,,,7.6,3,Good,990.6985459,39.13706885,20 Years and 5 Months,No,26.53225597,82.10320943,High_spent_Large_value_payments,443.9577506,0,-0.1133,-0.0148,-0.5174,0.1756,0.4559 +0x1a005,CUS_0x3c63,August,47,284-68-0301,Writer,27240.07,,5,3,18,4,"Mortgage Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",24.65758796,18,4.22,3,Standard,1301.08,30.96242827,,NM,88.41278203,,!@9#%8,285.4733536,0,1.61,0.3186,0.6334,-0.3768,0.2089 +0x1a011,CUS_0x77b7,August,80,001-96-4399,Mechanic,15120,1447,7,7,33.06745738,7,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",,4570.984746,5.61,13,Bad,3496.028919,37.97508629,2 Years and 4 Months,NM,58.56632827,98.73275307,Low_spent_Large_value_payments,230.6806307,0,0.4518,-0.0861,-0.1096,0.0482,0.4057 +0x1a01d,CUS_0x9ce7,August,18,874-82-0096,Teacher,32377.38,2571.115,3,5,12,7,"Payday Loan, Not Specified, Payday Loan, Auto Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",22.92046489,17,24.14,4,Standard,114.94,27.20570087,11 Years and 8 Months,Yes,112.174744,,High_spent_Small_value_payments,340.8576368,0,-1.3984,1.2313,0.4843,-0.09,0.8486 +0x1a029,CUS_0x79f7,August,39,#F%$D@*&8,Scientist,49880.68,3936.723333,5,5,14,0,,15.7608949,14,6.24,4,_,499.95,33.20652324,27 Years and 3 Months,No,0,,Low_spent_Large_value_payments,559.2021376,0,0.2311,-0.1494,-2.3741,-0.482,1.2839 +0x1a035,CUS_0x2eb7,August,19,292-20-5574,Doctor,19963.97,,5,10,31,5,"Auto Loan, Payday Loan, Not Specified, Student Loan, and Home Equity Loan",11.33432716,10.65297356,15.32,12,Standard,2258.699281,32.42765113,10 Years and 0 Months,Yes,52.60022674,85.31992215,Low_spent_Large_value_payments,279.8462678,0,-0.5585,-0.4921,-0.6403,-0.1864,-0.1476 +0x1a041,CUS_0x6d63,August,29,609-98-6953,Lawyer,8393.96,,5,5,32,2,"Debt Consolidation Loan, and Debt Consolidation Loan",23.74264072,19.56783213,18.84,12,_,1590.244492,38.58575013,14 Years and 5 Months,Yes,8.025107607,86.94612281,Low_spent_Small_value_payments,273.0784362,0,0.6034,-0.0675,1.0091,0.3963,-0.446 +0x1a04d,CUS_0x4812,August,31,#F%$D@*&8,Accountant,106790.32,8961.193333,3,3,6,3,"Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",24.15701927,15,7.17,4,Standard,678.54,31.73219955,26 Years and 6 Months,Yes,147.4804402,588.3617147,High_spent_Small_value_payments,420.2771784,0,0.352,0.3228,-0.3857,-0.5601,-0.8164 +0x1a059,CUS_0x981d,August,35,569-61-4012,Developer,20063.56,1832.963333,6,9,30.88954781,6,"Personal Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",,24.9798531,13.15,11,_,3007.70914,39.24616418,19 Years and 3 Months,Yes,1418.486055,85.05638486,High_spent_Small_value_payments,245.4238123,0,-0.5994,-0.2944,-0.3988,0.4566,2.2555 +0x1a065,CUS_0x5d36,August,39,372-03-0075,Scientist,29410.64,,8,10,35.06745738,5,"Credit-Builder Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Student Loan",38.00093816,20,0.85,12,_,2053.420954,37.20646547,,Yes,110.9428667,99.7686888,High_spent_Medium_value_payments,283.8568232,0,-0.926,-0.6351,0.2274,-0.9059,-0.2543 +0x1a071,CUS_0x3e1a,August,27,939-10-6883,Accountant,29416.81,2742.400833,8,4,13.28836175,2,"Not Specified, Home Equity Loan, and Student Loan",16.96353489,15,9.97,3,Standard,133.18,28.08880145,,No,37.72392587,438.8568691,High_spent_Large_value_payments,457.5967494,0,-1.3078,-0.9904,0.6018,0.2563,0.0053 +0x1a07d,CUS_0x67e2,August,21,438-69-8340,Entrepreneur,30195.47,,5,3,14,0,,,20,5.04,7,_,771.5929101,40.38770828,27 Years and 0 Months,Yes,145.0999337,208.390265,High_spent_Small_value_payments,359.7194489,0,-0.079,-1.9744,-0.062,-1.1915,0.3815 +0x1a089,CUS_0xa6dc,August,28,#F%$D@*&8,Architect,8983.515,,6,5,25.06745738,3,"Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",,,1.84,12,Bad,2664.516039,24.90950731,,Yes,19.51986383,,High_spent_Small_value_payments,271.1491559,0,-0.766,-0.206,-0.4909,-1.1527,0.4232 +0x1a095,CUS_0x91d4,August,51,014-02-9472,Media_Manager,110437.2,,4,7,17,4,"Student Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",,8,19.98,4,_,1370.337622,36.32705045,,Yes,235.5610793,934.5048081,Low_spent_Large_value_payments,170.6377848,0,0.6819,1.029,1.2376,-1.3131,0.8046 +0x1a0a1,CUS_0x2b05,August,34,554-77-6020,Entrepreneur,39928.5,3375.375,3,5,8,4,"Auto Loan, Debt Consolidation Loan, Not Specified, and Student Loan",19.69000015,16,9.17,3,_,425.518081,23.36068591,28 Years and 8 Months,NM,76.00051095,,Low_spent_Small_value_payments,113.2339941,0,2.3103,-0.5803,-0.9006,-0.4906,0.4448 +0x1a0ad,CUS_0x44dc,August,21,318-73-7635,Mechanic,18282.34,1769.528333,5,10,34,6,"Mortgage Loan, Credit-Builder Loan, Not Specified, Not Specified, Student Loan, and Credit-Builder Loan",24.30175898,19.44700403,24,12,Standard,1462.627571,29.08616769,8 Years and 9 Months,NM,85.69683656,,Low_spent_Small_value_payments,202.2064154,0,-0.0978,-0.5487,-0.1832,1.4069,0.3566 +0x1a0b9,CUS_0xb115,August,29,680-87-7919,_______,27138.97,,6,4,8,4,"Personal Loan, Mortgage Loan, Payday Loan, and Auto Loan",21.91371296,20,8.01,5,Standard,1054.499103,27.10932293,7 Years and 11 Months,Yes,70.78180788,37.07963031,High_spent_Medium_value_payments,391.1658596,0,0.9537,1.8265,-1.2892,0.2845,0.282 +0x1a0c5,CUS_0x9a30,August,31,761-57-6010,Scientist,9081.535,842.7945833,3,5,26,3,"Home Equity Loan, Student Loan, and Credit-Builder Loan",,13.35914212,11.85,12,_,1652.710089,35.46314462,5 Years and 11 Months,Yes,16.64312353,,High_spent_Small_value_payments,292.4556348,0,0.3356,-0.1927,-1.2058,-0.9268,-0.9102 +0x1a0d1,CUS_0x435c,August,45,458-40-2217,Teacher,83132.28,6549.914939,6,7,32,3,"Mortgage Loan, Personal Loan, and Payday Loan",32.35867993,18.82411484,13.95,,Standard,1833.813519,32.17169746,12 Years and 0 Months,NM,615.3509122,120.002462,High_spent_Large_value_payments,679.6906868,0,-0.802,0.5671,1.5072,-0.1807,0.5107 +0x1a0dd,CUS_0x61fb,August,23,739-69-5014,Entrepreneur,36270.25,,2,3,10,0,,10.90565021,6,10.59,0,Good,220.62,40.0638903,23 Years and 5 Months,No,0,38.02143651,High_spent_Large_value_payments,486.6306468,0,0.01,1.1849,0.8076,1.1237,-1.0702 +0x1a0e9,CUS_0xbc2b,August,47,329-37-6326,Writer,20867.67,1489.9725,1,3,11,1,Debt Consolidation Loan,13.1919848,11,1.1,4,_,786.6379576,23.03451215,31 Years and 10 Months,NM,16.83718938,,!@9#%8,229.8126768,0,1.9152,0.975,0.8052,0.824,-0.2524 +0x1a0f5,CUS_0xbaa0,August,24,622-60-1700,Manager,37361.02,,10,6,20.06745738,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Home Equity Loan",43.0058106,22.51447976,22.41,12,Bad,3548.645121,29.69904627,4 Years and 6 Months,Yes,129.8718905,32.86336227,High_spent_Large_value_payments,378.5862926,0,0.845,-0.6051,-0.1993,-0.4433,0.2689 +0x1a101,CUS_0x4863,August,80,458-70-1304,Lawyer,41709.64,,3,2,8,0,,17.15339762,,8.08,3,_,1183.255581,36.17811568,23 Years and 0 Months,No,0,289.6227022,Low_spent_Large_value_payments,395.8074501,0,-2.1933,0.2188,0.3547,0.2051,-0.0021 +0x1a10d,CUS_0xba6c,August,45,106-05-3603,Teacher,9967.82,,6,9,18.88954781,6,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",23.85675129,,8.66,6,_,2021.579594,39.96078246,19 Years and 8 Months,Yes,1360.662312,,Low_spent_Small_value_payments,218.7959849,0,1.8387,0.2179,-0.9857,-1.6574,0.0877 +0x1a119,CUS_0xb658,August,54,397-49-5846,Lawyer,44083.28,3703.606667,1,4,9,100,"Mortgage Loan, Payday Loan, and Credit-Builder Loan",0.654585078,4,3.45,1,Good,616.74,30.28141456,21 Years and 0 Months,No,76.00983288,65.8093845,High_spent_Medium_value_payments,478.5414493,0,0.0753,-0.6683,-0.9569,-1.3553,-0.4039 +0x1a125,CUS_0xe03,August,34,836-09-5090,Doctor,82565.52,6917.46,3,7,6,3,"Payday Loan, Not Specified, and Credit-Builder Loan",12.66884221,10,19.37,5,Standard,445.9,30.46417196,17 Years and 3 Months,Yes,164.1610445,115.8141236,High_spent_Large_value_payments,651.7708318,0,0.57,0.6518,-0.7912,-1.7055,-0.9829 +0x1a131,CUS_0xbba,August,51,554-23-4706,Journalist,39561.48,3455.79,2,4,12,3,"Home Equity Loan, Mortgage Loan, and Personal Loan",,4,1.04,0,Good,839.41,25.78048075,23 Years and 8 Months,No,87.46300574,42.69986203,!@9#%8,465.4161322,0,-0.3858,-0.1743,1.0266,-1.5043,1.1795 +0x1a13d,CUS_0x995,August,26,277-81-3212,Musician,18122.59,,7,5,24,100,"Not Specified, Auto Loan, Credit-Builder Loan, Student Loan, Not Specified, Auto Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",30.12164153,21,,12,Bad,3296.19,28.02091437,10 Years and 9 Months,Yes,122.9246799,86.11023069,Low_spent_Small_value_payments,204.2866728,0,-0.082,-0.1185,-0.717,-0.0129,0.2312 +0x1a149,CUS_0x98e4,August,28,586-61-1895,Lawyer,83453.72,,4,4,27,100,"Not Specified, Auto Loan, Mortgage Loan, and Personal Loan",12.18798533,13.11391728,11.83,7,Standard,1593.121414,26.90069184,19 Years and 4 Months,Yes,237.8146467,372.8721068,Low_spent_Medium_value_payments,341.1609131,0,-1.5087,-1.0031,0.6251,1.2314,0.3222 +0x1a155,CUS_0x10ac,August,34,780-50-4730,Developer,16718.645,1270.220417,7,3,15,4,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",15.81182556,11,18.45,1,_,736.8048045,31.39733884,16 Years and 3 Months,No,50.9619359,42.62916345,!@9#%8,319.6470137,0,-0.3606,1.6298,0.6412,0.2605,2.637 +0x1a161,CUS_0x1690,August,44,#F%$D@*&8,Architect,51266.34,,6,6,24,7,"Mortgage Loan, Student Loan, Mortgage Loan, Student Loan, Payday Loan, Not Specified, and Mortgage Loan",34.28081963,24.10222308,26.79,10,_,5371.443173,35.49557628,4 Years and 0 Months,Yes,176.4702055,97.10077273,High_spent_Medium_value_payments,385.3485217,0,-0.287,-1.7718,0.5851,-0.4744,-0.1943 +0x1a16d,CUS_0x5df9,August,51,633-59-3264,Lawyer,100188.84,7960.981897,1756,3,12,2,"Debt Consolidation Loan, and Not Specified",26.26487281,19,19.73,6,Standard,282.08,32.94643677,17 Years and 8 Months,Yes,617.2919556,583.8348942,Low_spent_Medium_value_payments,422.8682535,0,0.8379,1.4899,-1.1549,-3.1397,0.5208 +0x1a179,CUS_0x1f3d,August,23,744-22-1964,Teacher,104849.82,8744.485,4,6,18,0,,26.36562363,17,18.28,6,Standard,1439.21,37.40075549,21 Years and 9 Months,Yes,0,150.8192494,High_spent_Medium_value_payments,973.6292506,0,0.9128,-1.7571,-0.6858,0.9282,1.6068 +0x1a185,CUS_0x4e24,August,50,692-00-1087,_______,151373.04,,1,7,6,2,"Debt Consolidation Loan, and Personal Loan",0,0,11.81,8,_,1068.999043,37.45219775,18 Years and 8 Months,NM,199.6630543,247.9516635,High_spent_Large_value_payments,1082.527282,0,-0.6255,-0.9272,-0.8138,-1.1402,0.3181 +0x1a191,CUS_0x3a15,August,52,191-78-3233,Mechanic,141262.48,10439.49248,3,6,4.288361749,2,"Auto Loan, and Student Loan",0,2,1.02,2,Good,761.9882666,33.82700425,29 Years and 0 Months,No,1614.855968,609.8726882,High_spent_Medium_value_payments,1049.540684,0,-0.4016,-0.0402,0.1938,-1.79,1.6746 +0x1a19d,CUS_0x1be8,August,80,441-92-5827,Scientist,63528.7,5132.058333,4,6,9,3,"Auto Loan, Student Loan, and Not Specified",20.99221282,13.25101445,7.09,3,Good,694.3952616,31.04859746,27 Years and 2 Months,No,128.2778338,108.4326822,High_spent_Medium_value_payments,526.4953173,0,-0.8388,1.9659,0.6991,1.1043,0.2642 +0x1a1a9,CUS_0xa328,August,38,783-16-3895,Accountant,29948.76,,4,3,4044.067457,2,"Payday Loan, and Payday Loan",31.11853661,21.27763958,19.96,11,Standard,2951.946246,33.41690761,16 Years and 4 Months,Yes,49.10638793,197.6379449,Low_spent_Large_value_payments,236.4083792,0,-0.6308,1.5416,-0.2198,-0.2052,0.4668 +0x1a1b5,CUS_0xc574,August,41,571-68-8241,Teacher,35848.82,,3,4,12,3,"Not Specified, Credit-Builder Loan, and Student Loan",21.53232409,16,0.69,5,Standard,1309.04,32.507246,24 Years and 2 Months,No,53.63901215,25.04468129,High_spent_Large_value_payments,483.2564732,0,0.6129,0.8951,-0.818,0.4875,-0.6638 +0x1a1c1,CUS_0x56f9,August,37,502-99-8860,Doctor,34733.44,,3,7,13,1,Student Loan,,10,5.27,3,Standard,1497.2,36.17372331,26 Years and 2 Months,No,16.22620002,243.3140478,Low_spent_Large_value_payments,326.8050855,0,0.139,-1.1132,-0.679,0.1211,-1.1904 +0x1a1cd,CUS_0x364f,August,26,688-35-2854,Accountant,20843.43,1774.9525,7,10,16.06745738,5,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Not Specified",,26.16136475,21.32,15,Bad,5444.741317,36.4866973,14 Years and 3 Months,Yes,56.350245,,Low_spent_Small_value_payments,175.2565859,0,0.5539,-0.227,-1.0636,-0.4341,-0.0157 +0x1a1d9,CUS_0xb0f5,August,46,#F%$D@*&8,Mechanic,20730.55,,8,6,27,7,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",17.3842027,13.62389799,15.37,14,Standard,1522.504922,37.26399618,9 Years and 10 Months,NM,106.9975942,14.34893441,High_spent_Large_value_payments,278.5080547,0,-1.0898,0.5995,0.7795,0.0257,0.7624 +0x1a1e5,CUS_0x32dc,August,41,432-90-3782,Teacher,14619.585,1005.29875,7,858,19,1,Personal Loan,23.41741768,18,3.82,5,Standard,125.33,38.88318905,18 Years and 6 Months,Yes,11.62088913,89.18442106,Low_spent_Medium_value_payments,279.7245648,0,1.619,0.1274,0.4798,-1.1838,1.116 +0x1a1f1,CUS_0x370c,August,29,009-86-5924,Media_Manager,65085.76,5702.813333,6,5,20,7,"Personal Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Student Loan, Home Equity Loan, and Home Equity Loan",25.79543294,20,3.06,7,_,1413.88,36.82080327,12 Years and 11 Months,Yes,288.1212238,185.6116814,High_spent_Medium_value_payments,346.5484281,0,0.2765,-1.1293,-1.0012,1.2761,-0.4553 +0x1a1fd,CUS_0x683d,August,32,490-79-6991,Journalist,90370.96,,3,4,10.28836175,4,"Auto Loan, Student Loan, Student Loan, and Payday Loan",19.23873944,16,12.24,6,Standard,1023.49,33.12014876,16 Years and 5 Months,NM,209.1439733,536.5269387,High_spent_Medium_value_payments,676.0578824,0,3.2696,1.7155,-0.3548,-0.1817,-0.8774 +0x1a209,CUS_0xaadf,August,34,387-17-9828,_______,111117.6,,7,6,7,0,,26.22260659,17,1.07,3,Standard,1440.03,41.78880858,23 Years and 5 Months,No,0,,High_spent_Medium_value_payments,844.512557,0,-1.5523,-1.6097,0.8578,-0.0355,0.1011 +0x1a215,CUS_0x7a91,August,43,404-52-9514,Architect,22502.24,,6,7,12,5,"Not Specified, Not Specified, Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",,10,14.97,7,Standard,1202.86,35.76662594,,Yes,56.20728485,109.2727463,Low_spent_Small_value_payments,336.5386355,0,0.9143,-0.0425,-0.0351,0.2404,-0.5773 +0x1a221,CUS_0x4122,August,35,882-56-0038,_______,33836.13,,3,4,6,1,Home Equity Loan,16.76329325,11.63305225,9.97,3,Good,813.3612956,24.82917344,22 Years and 10 Months,NM,21.12913971,,High_spent_Small_value_payments,379.1302522,0,-0.7675,0.1752,-0.8866,1.5756,-0.9073 +0x1a22d,CUS_0x717e,August,29,#F%$D@*&8,Doctor,18965.08,1602.423333,7,7,16.06745738,7,"Not Specified, Student Loan, Not Specified, Mortgage Loan, Home Equity Loan, Auto Loan, and Student Loan",,20,1.14,12,Bad,2901.560954,28.27328986,8 Years and 4 Months,Yes,93.64338765,35.47600733,High_spent_Medium_value_payments,254.4026504,0,1.1508,-1.3251,-3.0185,-0.8155,0.6792 +0x1a239,CUS_0xba27,August,32,#F%$D@*&8,Teacher,29768.44,,1,6,4,1,Credit-Builder Loan,1.78949804,1,7.2,3,Good,118.58,27.64323443,25 Years and 11 Months,No,19.08906005,29.36508525,High_spent_Medium_value_payments,446.416188,0,1.4882,0.6506,-1.5552,0.9432,-0.8545 +0x1a245,CUS_0x8cd0,August,28,805-07-4518,Musician,44928.27,,8,8,25.95700519,100,"Credit-Builder Loan, Auto Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Not Specified, Student Loan, and Auto Loan",,22.73950347,2.96,12,Bad,2668.152459,31.2013483,10 Years and 0 Months,Yes,1565.258502,142.7724683,High_spent_Medium_value_payments,190.9209104,0,-1.4376,-2.3068,-0.1017,-0.1089,-0.9576 +0x1a251,CUS_0x2fe0,August,24,899-52-1176,Developer,8357.98,,6,10,16.06745738,6,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",31.33583515,15,1.1,2262,_,2654.870954,39.63809376,20 Years and 0 Months,Yes,29.01797971,22.97786408,Low_spent_Medium_value_payments,270.6337016,0,-0.3158,0.3246,0.3805,1.0257,-1.4982 +0x1a25d,CUS_0x98cc,August,21,140-36-0945,_______,9771.77,,6,6,8,4,"Personal Loan, Mortgage Loan, Personal Loan, and Not Specified",10.27201573,9,6.76,7,Standard,292.6307911,24.91124362,,Yes,105.3107736,62.19059738,Low_spent_Small_value_payments,271.8190075,0,-0.497,0.319,0.2461,0.5106,0.0572 +0x1a269,CUS_0xb6cd,August,38,606-87-4648,Mechanic,43825.16,3852.096667,2,5,9,0,,,11,5.37,2,Good,393.464618,37.53855763,30 Years and 4 Months,No,0,195.4255353,Low_spent_Large_value_payments,485.5091902,0,-0.5214,0.3531,-1.3945,-0.7181,0.7347 +0x1a275,CUS_0xc54a,August,21,648-12-9928,Scientist,10340.695,,3,4,8,7,"Debt Consolidation Loan, Payday Loan, Payday Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",14.56887544,,17.78,4,_,812.34,33.78735107,14 Years and 5 Months,NM,57.4025171,28.23463687,High_spent_Small_value_payments,243.8353044,0,0.1903,0.3785,1.8942,-0.3757,0.7585 +0x1a281,CUS_0x2ea8,August,20,214-84-1251,Doctor,116780.6,9854.716667,5,6,19,100,"Not Specified, Home Equity Loan, and Personal Loan",11.72282128,10,17.93,1,_,550.61,33.67486046,32 Years and 10 Months,Yes,280.9791687,587.9850765,Low_spent_Large_value_payments,386.5074215,0,2.4997,0.7977,-0.5889,-1.3392,-0.1781 +0x1a28d,CUS_0x9e6a,August,56,203-00-3994,Writer,79300.22,,1,4,11.28836175,4,"Mortgage Loan, Payday Loan, Credit-Builder Loan, and Mortgage Loan",14.26080885,,2.07,,Good,257.8815977,38.96431821,23 Years and 5 Months,No,179.304812,688.9321892,Low_spent_Medium_value_payments,500.4172066,0,-1.949,-0.7441,1.5293,0.7793,1.2774 +0x1a299,CUS_0xd25,August,37,989-97-7012,Lawyer,139291.92,11560.66,0,7,7,3,"Payday Loan, Student Loan, and Debt Consolidation Loan",1.401976601,4,5.47,3,Good,258.423651,26.68102877,18 Years and 3 Months,No,230.4698098,321.7134697,!@9#%8,885.209203,0,0.1412,-0.7804,0.8786,-0.7132,0.9613 +0x1a2a5,CUS_0x20fa,August,31,882-01-5970,Engineer,25696.65,,7,7,2875,0,,26.29921558,17.49054099,5.99,9,_,950.1440848,29.97198558,25 Years and 9 Months,Yes,0,249.2576499,Low_spent_Small_value_payments,228.6811001,0,0.5933,0.2581,-0.2278,-0.0566,0.6084 +0x1a2b1,CUS_0x46c,August,48,366-28-4901,Musician,38650.73,2983.894167,1,1,11,0,,,7,-3.09,,Good,1044.490108,23.69233383,16 Years and 11 Months,No,0,100.2595299,High_spent_Medium_value_payments,461.2597856,0,0.2723,-0.2162,-0.6042,0.574,1.133 +0x1a2bd,CUS_0x66d1,August,20,950-67-5720,Scientist,124020.44,,8,5,18,2,"Auto Loan, and Debt Consolidation Loan",11.1914702,10,19.07,3,Standard,529.18,35.39943009,,Yes,127.9417646,286.8374483,High_spent_Medium_value_payments,851.5244538,0,-0.7904,1.2514,-1.2729,0.4453,-0.5062 +0x1a2c9,CUS_0x4372,August,27,998-72-1919,Architect,33740.62,,10,696,34.06745738,5,"Home Equity Loan, Not Specified, Not Specified, Mortgage Loan, and Auto Loan",45.74760694,24,25.77,11,Bad,4121.790954,25.72916531,10 Years and 6 Months,Yes,70.56471441,237.0446274,Low_spent_Small_value_payments,251.1422036,0,-1.449,-0.6945,-0.6355,1.5546,0.3972 +0x1a2d5,CUS_0xa696,August,18,281-26-7560,Doctor,9848.32,,356,7,9,6,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Student Loan, Debt Consolidation Loan, and Credit-Builder Loan",8.204244243,10,11.94,,Standard,227.88,37.48298636,9 Years and 3 Months,Yes,32.11702372,,Low_spent_Small_value_payments,239.5063881,0,0.0832,-1.0074,1.4405,3.9633,1.1189 +0x1a2e1,CUS_0x1c31,August,25,737-71-8641,Musician,29669.28,2534.44,8,9,23.95700519,7,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Personal Loan, and Payday Loan",37.86915888,20.91111281,27.41,13,Bad,3667.926471,34.56899287,11 Years and 3 Months,Yes,1434.77165,,Low_spent_Small_value_payments,279.6113405,0,1.6325,-1.3472,-1.1678,-1.2194,-0.6392 +0x1a2ed,CUS_0x15f7,August,22,#F%$D@*&8,Engineer,60314.22,5004.185,10,7,16,7,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, and Not Specified",,14.95936043,9.32,14,Standard,2182.338982,26.78270535,17 Years and 5 Months,Yes,219.9813242,142.2551703,High_spent_Medium_value_payments,388.1820056,0,0.3356,-0.1188,0.5456,-1.1225,0.6586 +0x1a2f9,CUS_0x44bb,August,41,017-64-6143,Mechanic,80132.13,6829.6775,4,1129,8,0,,13.05449426,10,6.81,3,Good,1007.284997,44.04255053,27 Years and 6 Months,No,0,103.107584,!@9#%8,832.9876812,0,0.2747,-0.4517,-0.9939,-1.8868,0.0292 +0x1a305,CUS_0xc2a6,August,29,926-62-5300,Journalist,9869.175,536.43125,7,7,19,0,,21.75779493,17,10.66,4,Standard,274.65,27.46940317,32 Years and 9 Months,NM,0,63.7916124,Low_spent_Small_value_payments,279.8515126,0,0.6287,-1.6971,0.1247,-1.4696,0.9273 +0x1a311,CUS_0x2ccc,August,30,634-04-8743,Scientist,63675.12,5352.26,3,4,13.28836175,0,,20.78679953,18,1.02,2,Standard,598.1370457,31.98895375,17 Years and 10 Months,Yes,0,875.9270566,Low_spent_Small_value_payments,422.7677595,0,0.1831,-1.7961,1.4137,1.3298,-1.5644 +0x1a31d,CUS_0x2dd8,August,41,916-34-1696,Lawyer,90292.28,,4,4,7,0,,22.54109731,13.85113741,10.66,1,Standard,1085.325242,30.16650259,33 Years and 5 Months,No,0,145.2561675,High_spent_Small_value_payments,840.5794992,0,0.5441,-0.3106,0.462,0.2646,0.024 +0x1a329,CUS_0x4fc4,August,28,142-05-3521,Musician,21454.79,,0,6,12,4,"Auto Loan, Student Loan, Home Equity Loan, and Home Equity Loan",14.3336089,,1.56,3,Good,1020.248231,26.75154312,31 Years and 0 Months,No,46.47327354,11295.93896,Low_spent_Large_value_payments,301.2893129,0,-0.2061,-0.1818,0.5636,-0.5102,0.7889 +0x1a335,CUS_0x5875,August,41,789-70-0408,Engineer,23621.48,2158.456667,5,4,18,0,,17.47537958,16,17.96,2,Standard,1451.24,30.46320334,17 Years and 2 Months,Yes,0,80.64909427,Low_spent_Medium_value_payments,415.1965724,0,-0.8603,-0.5515,-1.4913,0.0729,1.6942 +0x1a341,CUS_0x7ae1,August,22,416-76-5161,Teacher,23939.93,,6,3,6,1,Not Specified,22.19778115,15,6.39,2,Standard,457.78,28.06089826,22 Years and 0 Months,No,39675,52.54463812,Low_spent_Large_value_payments,419.3680786,0,-0.098,-0.0401,0.1215,-0.0294,-0.0489 +0x1a34d,CUS_0x6bb5,August,31,261-94-4500,Architect,141477.56,12012.79667,2,1,2.288361749,0,Credit-Builder Loan,,8,1.39,2,Good,183.2889428,40.18808082,15 Years and 8 Months,No,66.2591189,1387.716031,Low_spent_Medium_value_payments,590.5076253,0,0.1484,-0.5579,1.5187,0.5684,0.8442 +0x1a359,CUS_0x5fd5,August,52,605-85-1239,Accountant,21338.55,,8,4,16,0,,,,5.4,5,Standard,974.4577028,38.68005489,25 Years and 8 Months,No,0,75.35531981,!@9#%8,365.2659302,0,1.1436,-0.2072,-0.0349,-2.4327,0.1379 +0x1a365,CUS_0xcc2,August,40,632-81-0014,Manager,17532.55,1675.045833,4,9,31,3,"Payday Loan, Payday Loan, and Home Equity Loan",12.45758791,12.71922808,15.25,12,Standard,1510.16582,23.94401102,8 Years and 10 Months,Yes,22.87077833,170.8606124,Low_spent_Small_value_payments,263.7731926,0,-0.8324,-0.3588,1.0494,2.2466,-1.1209 +0x1a371,CUS_0x4953,August,25,181-95-5782,Mechanic,9807.79,1071.315833,10,9,17.95700519,9,"Auto Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Student Loan, Credit-Builder Loan, and Personal Loan",39.64862047,27.65262593,4.94,10,Bad,2586.33011,38.26135237,16 Years and 3 Months,Yes,1388.600797,75.60241272,Low_spent_Medium_value_payments,201.8780039,0,2.0224,0.8987,-2.007,-1.1277,0.1802 +0x1a37d,CUS_0x645e,August,25,325-99-3118,Developer,66252,5261,8,10,23.88954781,7,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",,23.61164308,7,7,Bad,2763.900553,35.97117402,11 Years and 10 Months,Yes,1626.51038,306.9930329,Low_spent_Large_value_payments,168.2665053,0,0.4744,-0.4405,0.0944,0.9418,-0.5189 +0x1a389,CUS_0x8ac7,August,21,915-52-6575,Doctor,35075.33,,7,5,8.288361749,0,Student Loan,13.14236444,14,5.31,3,_,441.46,29.55573569,15 Years and 9 Months,No,28.5730306,510.6156382,High_spent_Small_value_payments,462.1432089,0,-0.4778,0.1083,-0.5823,0.1916,-0.1986 +0x1a395,CUS_0x7324,August,41,#F%$D@*&8,Writer,24326.28,,4,249,6.288361749,2,"Home Equity Loan, and Not Specified",,8,4.46,4,Good,78.91997821,37.0616143,18 Years and 0 Months,No,29.01451943,494.1145906,High_spent_Medium_value_payments,370.6745948,0,-0.564,1.4041,-0.6618,-0.3802,0.0722 +0x1a3a1,CUS_0x6c2d,August,25,706-39-9115,Lawyer,74248.72,,6,6,26,6,"Auto Loan, Personal Loan, Not Specified, Payday Loan, Student Loan, and Personal Loan",26.50681281,18.56539268,13.69,12,_,2177.831046,31.74761515,10 Years and 8 Months,Yes,411.9626093,105.8379544,High_spent_Large_value_payments,449.6467507,0,0.5765,-0.8269,1.1778,-1.3275,1.063 +0x1a3ad,CUS_0x4ef9,August,49,925-98-4955,Teacher,17039.415,,2,5,4,0,,1.44600418,4,0.07,5,Good,1373.74,38.30201546,16 Years and 5 Months,No,0,59.6946293,Low_spent_Medium_value_payments,382.0004957,0,1.2009,-0.6638,0.4204,-0.7773,0.9486 +0x1a3b9,CUS_0x2168,August,29,113-94-0469,Mechanic,21523.025,,5,7,1,1,Personal Loan,0,2,3.2,2,Good,439.35,27.75748157,30 Years and 10 Months,No,16.19648987,169.302003,Low_spent_Medium_value_payments,291.9600488,0,2.2472,-0.477,-0.748,-0.5942,0.2912 +0x1a3c5,CUS_0x33ce,August,43,442-25-8016,Architect,22803.84,1845.32,7,4,18,3,"Mortgage Loan, Personal Loan, and Auto Loan",9.009061193,8,7.47,8,Standard,535.11,27.59602168,15 Years and 6 Months,Yes,43.66408009,10000,High_spent_Medium_value_payments,347.3476416,0,-0.6152,-2.4217,0.9023,2.0519,-0.1448 +0x1a3d1,CUS_0x9e24,August,44,837-84-2006,Developer,9555.665,,701,5,14,2,"Mortgage Loan, and Not Specified",8.373533885,10,1.18,,Standard,1383.88,26.23920659,16 Years and 10 Months,Yes,8.03660962,14.87010716,High_spent_Medium_value_payments,322.8238249,0,0.7873,-0.5989,-0.9168,-0.0882,-0.425 +0x1a3dd,CUS_0xc150,August,48,154-13-2333,Lawyer,31016.6,,8,4,5,1,Personal Loan,21.70421289,15,2.29,4,_,143.75,33.07535094,20 Years and 0 Months,No,15.44940664,103.821516,Low_spent_Small_value_payments,436.100744,0,-0.2838,0.7941,-2.4138,1.3277,-0.9671 +0x1a3e9,CUS_0x1f7d,August,20,697-78-8723,Architect,20357.29,,3,5,16,2,"Not Specified, and Auto Loan",31.03090941,22.88817871,9.81,,Standard,2902.784639,27.49509804,7 Years and 11 Months,Yes,33.78252854,72.84393602,High_spent_Medium_value_payments,315.4176188,0,1.4149,-0.9554,1.1497,-1.7965,-1.6593 +0x1a3f5,CUS_0x32a7,August,44,181-41-3727,Journalist,10460.245,,8,5,25,6,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",7.936913951,8,19.09,8,Standard,2625.88,35.42960489,17 Years and 0 Months,Yes,38.27622888,67.54199151,Low_spent_Small_value_payments,283.750488,0,0.1237,-2.1058,-0.0707,0.5514,0.3327 +0x1a401,CUS_0x8e45,August,41,#F%$D@*&8,Media_Manager,152796.76,,2,5,0.288361749,0,,0,3,3.74,5,Good,1265.86,22.8960765,18 Years and 8 Months,No,0,,Low_spent_Medium_value_payments,235.4515849,0,-1.3494,1.1346,1.2236,-0.0744,0.7476 +0x1a40d,CUS_0x11fc,August,33,092-20-3138,Lawyer,38735.57,,2,4,3,2,"Payday Loan, and Debt Consolidation Loan",11.94914993,11,8.06,2,Good,729.4207907,36.78575375,17 Years and 5 Months,No,43.9437508,144.8635639,Low_spent_Large_value_payments,419.4867636,0,-0.5227,0.6733,0.7688,-0.9779,0.4865 +0x1a419,CUS_0x32b7,August,38,459-28-8012,Accountant,79524.64,6193.009839,5,5,15,100,"Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",13.72792774,9,10.88,7,Standard,357.1553592,41.40715712,16 Years and 5 Months,Yes,600.5303335,192.3815315,High_spent_Large_value_payments,569.9897963,0,1.5313,-1.2361,-1.6083,-0.7249,-0.3393 +0x1a425,CUS_0x9b38,August,18,478-80-8755,Architect,35358.15,,7,3,16,3,"Not Specified, Student Loan, and Mortgage Loan",,11,18.62,4,_,444.88,26.7835554,15 Years and 9 Months,Yes,76.58167535,59.52525122,High_spent_Medium_value_payments,420.1443234,0,1.0977,0.4935,-1.8034,0.2369,0.2713 +0x1a431,CUS_0x17fb,August,40,700-02-0618,Teacher,87078.48,7535.54,4,2,11,4,"Payday Loan, Not Specified, Mortgage Loan, and Mortgage Loan",3.905917793,6,16.33,0,Good,1049.745606,42.22213872,18 Years and 6 Months,No,283.9590378,66.26461904,High_spent_Large_value_payments,653.3464927,0,0.6002,0.8768,0.4817,1.341,-0.5914 +0x1a43d,CUS_0x1e9e,August,19,257-02-5840,Doctor,35812.37,,5,4,6,100,"Home Equity Loan, and Student Loan",26.41662398,19.67128618,13.99,10,Standard,349.596421,27.05165201,,Yes,32.0123958,356.9523931,Low_spent_Small_value_payments,180.4716278,0,0.705,0.9062,1.4817,-0.7441,1.5024 +0x1a449,CUS_0x84dd,August,45,392-43-1088,Engineer,18702.5,1736.541667,4,4,10,3,"Personal Loan, Mortgage Loan, and Mortgage Loan",17.25697034,,14.21,7,_,2576.87,38.72029837,,Yes,42.11387029,92.30243557,Low_spent_Small_value_payments,329.2378608,0,-0.6045,-0.8029,0.9216,-1.6844,-0.6069 +0x1a455,CUS_0x70af,August,42,224-59-2197,Writer,14220.28,1404.023333,8,5,27.06745738,3,"Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",23.96193939,12.11483524,16.96,15,Standard,1942.592635,27.22551143,13 Years and 4 Months,Yes,31.68246707,84.78190138,Low_spent_Small_value_payments,287.2176769,0,0.7966,-1.6876,0.1498,0.9294,-0.8326 +0x1a461,CUS_0x73e4,August,80,147-91-6333,Lawyer,69712.46,6075.371667,2,3,11.28836175,0,Credit-Builder Loan,10.75051734,10,2.28,4,Good,68.25483155,37.97708366,18 Years and 8 Months,No,46.74589561,11510.46435,High_spent_Large_value_payments,677.0344585,0,1.9282,-0.8876,0.781,0.3895,-1.0335 +0x1a46d,CUS_0xae25,August,28,398-59-0914,Architect,98227.08,8441.59,6,4,17,3,"Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",8.608681487,10,2.92,2,Standard,1472.89,28.65626689,29 Years and 10 Months,No,154.8009425,326.9218583,High_spent_Medium_value_payments,612.4361992,0,-0.2217,-0.1278,1.6873,-1.3515,-1.2734 +0x1a479,CUS_0x751c,August,19,220-63-1416,Accountant,177696.92,15090.07667,5,5,9,1,Mortgage Loan,7.664984511,8,11.5,7,Good,1032.029508,30.29266351,26 Years and 0 Months,No,74.7325903,1045.654928,High_spent_Small_value_payments,788.5421203,0,1.3215,-1.1767,1.2135,-1.7535,0.4473 +0x1a485,CUS_0x6ae5,August,45,084-73-9482,Developer,18048.88,,10,5,15,6,"Home Equity Loan, Credit-Builder Loan, Not Specified, Student Loan, Student Loan, and Credit-Builder Loan",31.71501534,22.99928126,18.56,6,_,1402.711981,22.97150604,13 Years and 10 Months,Yes,86.76835623,88.36201625,High_spent_Small_value_payments,251.7769608,0,0.2372,1.2767,0.2538,-0.3692,-0.3657 +0x1a491,CUS_0x89a,August,55,087-32-8543,Doctor,49217.68,,7,3,5,0,,13.36355345,11,9.88,5,_,1140.58,25.48379841,18 Years and 2 Months,No,0,64.28021188,High_spent_Medium_value_payments,601.1671215,0,-0.0796,1.4473,1.2653,0.6352,-0.9923 +0x1a49d,CUS_0x669c,August,22,276-33-9286,Entrepreneur,99934.89,8261.9075,3,4,7.288361749,4,"Not Specified, Debt Consolidation Loan, Mortgage Loan, and Not Specified",12.81829125,,9.2,4,Good,97.07763753,33.53828058,16 Years and 10 Months,No,176.2803697,1027.411015,Low_spent_Small_value_payments,424.1171576,0,-0.2669,1.4596,0.5331,0.3455,0.8221 +0x1a4a9,CUS_0x779,August,30,886-94-8971,Musician,69332.9,5695.741667,7,4,13.28836175,0,,4.865565687,8,16.49,0,Standard,622.41,31.01291235,24 Years and 6 Months,Yes,0,562.175979,High_spent_Large_value_payments,667.3356487,0,0.3605,0.1126,-0.605,0.0368,-0.7135 +0x1a4b5,CUS_0x8647,August,21,692-38-8769,Teacher,21825.32,2006.665832,4,5,12,4,"Student Loan, Personal Loan, Mortgage Loan, and Student Loan",,10,5.73,4,_,428.44,37.16963517,31 Years and 6 Months,No,144.7712465,,High_spent_Large_value_payments,336.4865281,0,-0.8198,0.5274,0.2786,-0.7155,-0.1652 +0x1a4c1,CUS_0x8e5b,August,38,145-16-7811,Mechanic,14884.29,,9,9,20.06745738,4,"Not Specified, Credit-Builder Loan, Student Loan, and Mortgage Loan",,23.15843348,8.49,14,Bad,1720.413469,33.68718133,18 Years and 11 Months,Yes,77.06391486,,Low_spent_Small_value_payments,199.2976763,0,-0.536,0.0994,1.723,-0.1769,-0.5318 +0x1a4cd,CUS_0x5cf1,August,45,790-92-7422,_______,20828.2,,9,9,28.06745738,9,"Payday Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Home Equity Loan, and Student Loan",33.38992994,15,2.21,11,Bad,4961.460954,41.41468076,11 Years and 10 Months,Yes,139.6861897,36.08088035,!@9#%8,244.5809753,0,-1.1345,-0.5958,0.7457,0.6191,-0.6636 +0x1a4d9,CUS_0x9268,August,29,074-45-3630,Lawyer,76924.38,6587.365,5,4,20,1,Home Equity Loan,24.22942691,15,20.93,5,_,1080.88,26.49767456,21 Years and 9 Months,NM,45.74044181,116.1881101,High_spent_Medium_value_payments,746.8079481,0,-0.6442,0.3266,-0.5795,-0.5887,-0.6456 +0x1a4e5,CUS_0x6540,August,58,884-14-0880,Writer,89177.01,7517.4175,6,6,8,4,"Payday Loan, Personal Loan, Credit-Builder Loan, and Personal Loan",21.59889363,19,5.82,3,Standard,300.8245821,33.03586891,17 Years and 9 Months,No,293.044646,11170.89805,High_spent_Medium_value_payments,391.8949668,0,0.2019,-1.4043,0.1129,-1.2971,-0.9703 +0x1a4f1,CUS_0x188f,August,55,#F%$D@*&8,Writer,14311.415,,2,7,9,0,,5.156780637,8,9.31,7,_,486.3204047,32.38957792,,No,0,89.68375196,Low_spent_Small_value_payments,361.1897799,0,-0.0622,-0.4536,0.5528,-1.9929,-0.096 +0x1a4fd,CUS_0x7eed,August,21,488-25-4904,Scientist,34975.73,,5,7,17,7,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Payday Loan, and Payday Loan",22.83063797,19,8.59,6,_,51.5,32.77211708,8 Years and 6 Months,Yes,155.002511,52.36102795,High_spent_Medium_value_payments,320.6008777,0,-1.0891,0.0097,1.2223,1.1333,-0.691 +0x1a509,CUS_0x6407,August,40,613-11-1190,Architect,33355.81,,6,5,12,2,"Personal Loan, and Auto Loan",,20.20195113,11.52,4,Standard,509.9779085,35.70500583,18 Years and 3 Months,Yes,31.72184718,10000,High_spent_Large_value_payments,463.3163528,0,0.1114,-0.151,-0.8743,0.5317,1.0047 +0x1a515,CUS_0x9190,August,27,901-17-8728,Musician,8501.93,745.4941667,10,5,33.06745738,5,"Personal Loan, Student Loan, Mortgage Loan, Not Specified, and Auto Loan",40.80897583,25,17.14,11,_,4149.900954,39.03092606,6 Years and 0 Months,Yes,18.29494792,42.04495682,Low_spent_Small_value_payments,277.489224,0,0.1669,0.3551,-0.4858,1.1303,-0.7722 +0x1a521,CUS_0x28e1,August,23,676-90-6132,Media_Manager,34526.09,,5,4,19,3,"Not Specified, Personal Loan, and Home Equity Loan",17.06108046,14,14.74,10,Standard,938.23,27.1425368,18 Years and 5 Months,Yes,70.15698258,190.6549597,Low_spent_Large_value_payments,300.0054743,0,-0.5068,0.5378,-0.0595,-0.7119,-0.8712 +0x1a52d,CUS_0x5bfc,August,22,456-24-4809,Engineer,9141.63,,8,10,24.06745738,8,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Not Specified",22.95701432,15,17.51,7,Bad,4993.260954,37.62870256,7 Years and 6 Months,Yes,47.07388306,67.78202132,Low_spent_Medium_value_payments,244.1040577,0,-0.0222,-0.6954,0.5857,0.1301,-1.7885 +0x1a539,CUS_0x9764,August,39,137-39-7489,Writer,22143.31,2110.275833,5,6,18.06745738,3,"Payday Loan, Personal Loan, and Not Specified",,20.4399094,12.18,3,Standard,1858.452886,37.51568063,30 Years and 8 Months,Yes,54.3649756,267.2893865,Low_spent_Small_value_payments,152.6529333,0,0.1609,-0.2793,-0.307,-0.0947,-1.081 +0x1a545,CUS_0xaccf,August,27,093-57-7186,Developer,32701.56,,2,3,8,2,"Credit-Builder Loan, and Mortgage Loan",4.77938838,4,6.91,6,_,1070.74,38.52732107,29 Years and 10 Months,No,45.40276459,123.8025826,Low_spent_Small_value_payments,413.8076528,0,-1.077,-1.8493,-1.7341,-0.0419,-0.8615 +0x1a551,CUS_0x757,August,32,658-55-0822,Accountant,48276.66,4036.380342,6,7,9,4,"Not Specified, Home Equity Loan, Mortgage Loan, and Not Specified",27.56016642,20,7.91,3,Standard,945.79,29.74862017,29 Years and 3 Months,NM,252.7986966,211.316117,Low_spent_Small_value_payments,350.1653445,0,-1.6331,0.1474,-0.6165,-0.1669,-2.1639 +0x1a55d,CUS_0x7c2a,August,34,#F%$D@*&8,Writer,14634.1,,10,7,21.06745738,6,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",,14.98881942,3.2,12,Bad,3178.091787,26.87389397,7 Years and 0 Months,Yes,47.83549587,29.40758167,High_spent_Medium_value_payments,286.6874678,0,-0.7149,1.1995,0.6661,1.7021,-0.5686 +0x1a569,CUS_0x2170,August,25,#F%$D@*&8,Media_Manager,59134,4669.833333,3,7,6,3,"Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",0,0,9.86,4,Good,776.03,26.39083623,19 Years and 10 Months,No,79.12661299,248.4635545,Low_spent_Small_value_payments,429.3931658,0,0.5364,-0.7349,0.096,-0.4601,-0.2669 +0x1a575,CUS_0x1563,August,19,303-54-9202,Developer,147620.68,12059.72333,5,7,4.288361749,0,,14.34837368,,11.9,9,Standard,989.5688478,28.30505384,23 Years and 5 Months,Yes,0,944.8685966,High_spent_Small_value_payments,1003.561343,0,-0.6824,-0.5928,0.1774,1.4847,-1.3646 +0x1a581,CUS_0x125c,August,35,298-95-1359,Manager,32129,,3,7,11.06745738,2,"Personal Loan, and Student Loan",,22.10194886,16.84,8,Standard,3152.201933,31.30524877,13 Years and 8 Months,Yes,34.99648116,93.27286749,Low_spent_Medium_value_payments,376.4520301,0,0.2904,0.2948,3.0211,-0.4739,0.1275 +0x1a58d,CUS_0x9ea6,August,26,611-12-6793,Teacher,49650.36,,8,11,26.88954781,6,"Not Specified, Personal Loan, Credit-Builder Loan, Student Loan, Not Specified, and Home Equity Loan",,10,14.53,,Standard,1826.54,30.59735718,14 Years and 3 Months,Yes,1517.795885,324.0450546,Low_spent_Medium_value_payments,143.3819793,0,-0.4661,-1.2521,-1.0905,-1.558,-0.0886 +0x1a599,CUS_0xc31c,August,25,554-57-7984,_______,41403.34,3730.278333,4,6,2,2,"Home Equity Loan, and Mortgage Loan",16.35225434,13,4.23,1,Good,188.6914525,35.53586123,21 Years and 8 Months,No,62.65239033,128.8103466,High_spent_Medium_value_payments,445.9695705,0,0.7396,0.6357,-0.0433,0.3466,-0.3737 +0x1a5a5,CUS_0x9dbc,August,33,578-88-3585,Scientist,42514.56,,7,9,31,7,"Personal Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",17.33000695,,23.96,11,Bad,4029.48392,30.09403683,11 Years and 0 Months,Yes,143.179286,135.8269247,High_spent_Medium_value_payments,349.0817893,0,0.0057,0.1996,1.0753,-1.0331,-1.4964 +0x1a5b1,CUS_0x82b3,August,53,#F%$D@*&8,Accountant,78435.64,6794.303333,5,3,12,1,Personal Loan,,9,9.52,4,Standard,1310.92,35.15874124,19 Years and 9 Months,No,57.67440521,94.04473627,High_spent_Large_value_payments,767.7111919,0,0.6747,0.1837,1.2895,-1.0425,0.1049 +0x1a5bd,CUS_0x86b0,August,40,315-54-4372,Journalist,31439.74,,9,9,25,5,"Auto Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",26.57946086,19,13.25,9,_,4207.63,27.34737238,6 Years and 9 Months,Yes,318.6843904,10000,Low_spent_Small_value_payments,272.9324373,0,-0.5763,-0.3633,-0.2851,1.9967,-0.1637 +0x1a5c9,CUS_0xaa9e,August,58,929-30-2303,Architect,24629.46,,5,3,15,0,,,9,7.85,5,Standard,1066.662651,27.95126756,16 Years and 11 Months,NM,260.5894789,83.39709138,High_spent_Small_value_payments,385.4072391,0,-1.331,0.0608,0.503,-0.2505,-0.1321 +0x1a5d5,CUS_0xc11e,August,35,797-25-8389,Entrepreneur,16511.455,1554.954583,8,5,15,4,"Student Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",17.07168622,,8.46,6,Standard,84.74,32.07306717,21 Years and 8 Months,No,40.60756944,,!@9#%8,224.9466978,0,-0.1112,-0.4416,-0.0204,-0.0268,0.5519 +0x1a5e1,CUS_0x300b,August,37,862-78-8936,Mechanic,8394.57,,7,7,28,5,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Auto Loan",5.876841781,6.906191102,22.03,9,Standard,2010.883385,21.8048219,8 Years and 0 Months,Yes,29.90770942,32.7401903,High_spent_Medium_value_payments,269.2068503,0,0.3821,-0.8324,1.0954,0.37,-2.3312 +0x1a5ed,CUS_0x4e89,August,35,493-21-3126,Accountant,34087.65,,5,3,8,3,"Payday Loan, Mortgage Loan, and Personal Loan",18.14896551,12,17.7,9,_,720.66,35.61381093,19 Years and 5 Months,Yes,83.61486442,81.63514434,High_spent_Small_value_payments,384.8137412,0,-1.2876,0.3305,-0.357,0.7922,-0.048 +0x1a5f9,CUS_0x3ae1,August,42,247-21-0508,Scientist,64270.12,5500.843333,6,6,18,2,"Student Loan, and Credit-Builder Loan",38.54916333,20.96615921,4.11,10,Bad,1466.072966,27.90701764,9 Years and 6 Months,Yes,69.246684,317.1104378,Low_spent_Small_value_payments,453.7272115,0,-0.1829,1.3195,0.492,0.8601,-1.107 +0x1a605,CUS_0x2a70,August,45,777-80-3212,Journalist,9759.375,813.28125,8,9,24.88954781,8,"Personal Loan, Student Loan, Not Specified, Mortgage Loan, Auto Loan, Student Loan, Student Loan, and Payday Loan",,23.95981785,1.85,10,_,4984.336467,33.30267099,9 Years and 0 Months,Yes,1379.422633,38.50490358,Low_spent_Medium_value_payments,249.0705069,0,1.069,0.2484,-0.873,-1.1309,-0.656 +0x1a611,CUS_0x9041,August,34,176-81-9555,Developer,38726.47,3467.205833,0,4,9.288361749,0,,,11,1.59,5,Good,224.2746254,30.77387103,22 Years and 8 Months,No,0,537.4195197,High_spent_Small_value_payments,503.0053136,0,-1.1827,0.8102,-1.7,0.9383,-0.8798 +0x1a61d,CUS_0x8340,August,25,688-08-9892,Media_Manager,59102.91,,8,8,35.95700519,7,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Personal Loan",,30.20979184,18.48,11,Bad,4455.018019,39.71104565,6 Years and 11 Months,NM,1607.887914,36.27109592,High_spent_Large_value_payments,372.314871,0,0.3823,-0.4014,-1.9478,1.4829,-0.7117 +0x1a629,CUS_0xb858,August,50,154-48-6016,Developer,34981.59,,6,6,15,3,"Auto Loan, Not Specified, and Home Equity Loan",,14,7.2,5,_,301.1977663,28.97622512,19 Years and 9 Months,No,291.5500111,232.6377816,Low_spent_Small_value_payments,295.1213083,0,0.7845,-0.5778,-1.5669,-0.6977,0.3563 +0x1a635,CUS_0xa93f,August,45,#F%$D@*&8,Teacher,10324.26,,8,9,30.95700519,9,"Mortgage Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Not Specified, Not Specified, Home Equity Loan, and Credit-Builder Loan",28.10354174,19,21.52,11,Bad,3499.940954,33.28860788,3 Years and 3 Months,Yes,1367.607002,,Low_spent_Medium_value_payments,212.4173062,0,0.4628,-1.6681,0.2268,1.1515,-1.6807 +0x1a641,CUS_0xa420,August,26,504-06-3335,Accountant,36661.93,,6,3,10,4,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",25.5549185,20,1.16,1,Standard,314.26,28.31115429,29 Years and 10 Months,No,73.22127882,160.3636809,High_spent_Small_value_payments,317.9311236,0,0.4376,0.1496,-0.1043,-0.3501,0.1667 +0x1a64d,CUS_0x9b8c,August,44,784-25-4120,Musician,31980.14,2924.011667,7,3,16,6,"Personal Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",,21.01674893,20.21,10,Standard,2112.898636,35.56709083,8 Years and 0 Months,Yes,142.7969652,113.6831248,Low_spent_Large_value_payments,305.9210767,0,0.077,0.7825,-1.0947,-0.0126,0.5821 +0x1a659,CUS_0x1e3e,August,33,474-45-9244,Musician,22918.52,,6,5,18,5,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",13.89935624,10,21.94,4,Standard,454.45,26.53227659,8 Years and 8 Months,Yes,199.3936026,73.46666207,!@9#%8,291.9331145,0,-0.7278,-0.6109,1.0755,-1.8825,0.8049 +0x1a665,CUS_0x398f,August,29,892-82-1043,Accountant,45379.77,3995.6475,8,9,21,6,"Payday Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",28.84759142,20,19.24,10,_,2630.87,35.68469634,13 Years and 5 Months,Yes,160.8776217,47.27190237,High_spent_Large_value_payments,431.415226,0,1.096,-2.6635,0.5594,2.1375,-0.7421 +0x1a671,CUS_0xab7b,August,21,530-16-2887,Developer,7724.425,,10,7,27.06745738,3,"Not Specified, Home Equity Loan, and Credit-Builder Loan",30.85562869,18,5.06,12,Bad,2271.540954,29.60869397,,Yes,14.11887643,,Low_spent_Medium_value_payments,265.445296,0,1.4601,0.1136,-1.6949,-1.1247,1.3971 +0x1a67d,CUS_0x698,August,23,736-37-2371,Manager,46301.96,3680.496667,8,6,1,2,"Student Loan, and Credit-Builder Loan",11.9815001,9,1.86,5,Standard,1288.02,24.32596413,,No,70.97368001,415.0872866,Low_spent_Small_value_payments,171.9887001,0,-0.9964,-0.1137,-1.6621,0.6804,-1.2122 +0x1a689,CUS_0x8b1,August,80,592-55-6092,Doctor,17767.86,,0,1,4,1,Auto Loan,,,3.11,2,_,482.903163,38.77090746,23 Years and 10 Months,No,14.28860727,,Low_spent_Small_value_payments,277.8135353,0,0.1768,1.1153,-0.8865,0.9117,-0.012 +0x1a695,CUS_0x946f,August,50,056-03-2352,Lawyer,121831,,5,1,11,3,"Payday Loan, Student Loan, and Not Specified",2.482257273,5,-5.43,5,Good,977.8009391,25.32430021,18 Years and 8 Months,No,276.7105392,776.0383352,Low_spent_Small_value_payments,346.7267497,0,-1.2577,0.7808,0.5482,-0.3744,0.9207 +0x1a6a1,CUS_0x930c,August,20,683-00-6454,Writer,10355.675,901.9729167,7,8,17.06745738,5,"Debt Consolidation Loan, Student Loan, Student Loan, Credit-Builder Loan, and Personal Loan",,24,9.18,12,_,2018.070954,26.49947091,,Yes,25.70280854,63.4460656,Low_spent_Small_value_payments,264.3281296,0,-0.0888,0.7148,0.8976,0.2053,-0.258 +0x1a6ad,CUS_0x9425,August,26,700-43-3169,Teacher,20314.65,,8,4,5,6,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, and Personal Loan",23.14836874,16,13.61,5,_,1483.15,30.21608615,7 Years and 9 Months,Yes,104.307262,17.41828084,High_spent_Large_value_payments,334.6152446,0,1.8226,-0.4713,-1.0016,0.9922,0.1474 +0x1a6b9,CUS_0x977,August,18,351-31-3210,Lawyer,62295.76,5302.313333,10,5,22,100,"Not Specified, Personal Loan, Mortgage Loan, Credit-Builder Loan, Personal Loan, Personal Loan, and Auto Loan",23.31523208,,25.67,8,Bad,2907.14,31.46217267,11 Years and 2 Months,NM,303.8472586,,High_spent_Medium_value_payments,252.7896816,0,-0.241,1.391,1.5774,1.0083,-0.4696 +0x1a6c5,CUS_0x7387,August,44,554-37-0679,Teacher,59119.74,4846.645,10,7,16,100,"Mortgage Loan, Student Loan, Payday Loan, Home Equity Loan, Auto Loan, Payday Loan, and Payday Loan",24.50113656,10.19254247,7.02,11,Standard,1675.582103,32.17596307,6 Years and 9 Months,Yes,312.4433517,10000,Low_spent_Small_value_payments,200.1304751,0,-1.7421,0.8514,0.0318,-1.1566,0.1855 +0x1a6d1,CUS_0x9226,August,18,409-57-6877,Entrepreneur,37573.92,,8,6,24,4,"Credit-Builder Loan, Not Specified, Not Specified, and Personal Loan",14.8284779,13.88370334,12.25,5,_,2305.351299,32.58401269,13 Years and 9 Months,Yes,109.9269068,69.96695912,High_spent_Large_value_payments,379.2221341,0,-0.8174,0.3107,-0.671,1.3535,-0.4054 +0x1a6dd,CUS_0xa849,August,27,639-16-1766,Media_Manager,21468.16,,8,4,13,2,"Payday Loan, and Personal Loan",11.70066953,11,3.5,5,_,1119.42,23.79876865,28 Years and 8 Months,No,19.66346146,31.87785535,High_spent_Large_value_payments,395.0600165,0,1.8852,-1.1145,-2.5615,-0.2416,-0.0906 +0x1a6e9,CUS_0x7c58,August,29,531-98-6283,Architect,54060.45,4302.0375,8,7,29,6,"Not Specified, Credit-Builder Loan, Student Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",27.5019025,22,6.67,11,Bad,2132.13,34.09771284,6 Years and 8 Months,Yes,16040,,High_spent_Medium_value_payments,381.6582189,0,2.0168,0.7771,-0.2468,-1.1983,1.3003 +0x1a6f5,CUS_0x1135,August,22,897-95-1425,Journalist,83358.3,6896.525,5,3,4.288361749,2,"Auto Loan, Not Specified, and Auto Loan",4.35460729,6,2.66,7,_,635.0431447,23.28328675,30 Years and 10 Months,No,169.9360048,690.3957003,High_spent_Medium_value_payments,526.6799675,0,-2.0409,0.884,0.3285,0.404,0.3211 +0x1a701,CUS_0x91e5,August,22,#F%$D@*&8,Journalist,12246.215,1181.517917,8,6,18,2,"Auto Loan, and Credit-Builder Loan",,11,9.32,3,Standard,641.98,31.86869213,23 Years and 9 Months,Yes,13.7835627,126.5466948,Low_spent_Small_value_payments,267.8215342,0,0.269,0.6936,1.4172,0.0792,-0.3087 +0x1a70d,CUS_0x67f0,August,19,257-49-6669,Engineer,49619.7,,9,8,31,8,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",44.51392702,25.9523052,0.56,13,Bad,1620.500589,35.3478429,9 Years and 2 Months,Yes,203.6631817,,High_spent_Medium_value_payments,389.2021781,0,-0.5205,-0.0892,-1.8956,0.012,-0.2414 +0x1a719,CUS_0x8d42,August,50,433-44-8577,_______,30984.3,2385.025,0,6,12,2,"Auto Loan, and Auto Loan",,2.430143785,2.14,4,Good,1249.102862,28.6715329,30 Years and 11 Months,No,35.04854975,79.63687419,Low_spent_Large_value_payments,393.8170761,0,-0.3115,-0.3946,0.8874,1.198,-1.0099 +0x1a725,CUS_0x8b29,August,55,752-20-2242,_______,73490.5,6231.208333,6,7,17.28836175,2,"Personal Loan, and Debt Consolidation Loan",,16,11.71,6,Standard,33.14,39.25551372,32 Years and 6 Months,No,104.083707,751.0393654,Low_spent_Medium_value_payments,467.9352219,0,2.3214,-0.672,-0.7224,-0.4743,0.6961 +0x1a731,CUS_0xa20d,August,24,455-15-5401,Accountant,58211.85,4727.9875,8,6,5,4,"Not Specified, Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",20.97578445,17,3.65,3,Good,775.3160209,31.10894417,32 Years and 5 Months,No,152.7274982,294.5483472,High_spent_Small_value_payments,323.1827389,0,1.824,0.2771,-1.1301,-0.1497,0.7048 +0x1a73d,CUS_0xb13e,August,28,#F%$D@*&8,Accountant,87477.45,,3,5,6.288361749,0,,6.089141108,8,2.17,8,Good,18.31,30.70764609,16 Years and 11 Months,No,0,481.0752746,High_spent_Large_value_payments,921.6409364,0,-0.167,0.0875,-0.1583,-0.1707,-1.8215 +0x1a749,CUS_0x2bf7,August,45,700-96-0564,Accountant,118884,9665,5,6,8,0,,2.360560788,3,8.29,5,Good,830.63,25.51627341,21 Years and 4 Months,No,0,639.8314334,Low_spent_Medium_value_payments,606.6685666,0,0.7012,-1.2735,-0.4811,0.5477,-0.9112 +0x1a755,CUS_0x5e40,August,37,355-34-7507,Entrepreneur,15217.1,1448.091667,8,5,28.06745738,3,"Debt Consolidation Loan, Personal Loan, and Personal Loan",,19.07746283,3.62,14,_,2241.633063,27.42620406,,Yes,35.04243178,17.39963021,High_spent_Medium_value_payments,315.6468167,0,-0.2172,0.2242,-0.9051,0.2468,-0.2884 +0x1a761,CUS_0x495e,August,18,792-95-8742,Teacher,75476.72,6492.726667,10,10,30,5,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",32.10651555,25,8.41,8,Bad,1401.04,27.36706399,18 Years and 3 Months,Yes,301.5576793,332.4289203,High_spent_Small_value_payments,275.2860671,0,-0.0653,-0.7613,1.5656,1.8683,-1.0103 +0x1a76d,CUS_0x2e8a,August,52,807-46-9616,Lawyer,23012.43,,7,6,10,1,Mortgage Loan,17.99999137,14,0.81,2,Standard,351.41,29.46290454,15 Years and 8 Months,No,13.81522681,154.2659863,Low_spent_Large_value_payments,280.0890369,0,-0.288,-0.8471,0.5696,-0.4447,-0.9173 +0x1a779,CUS_0x7e67,August,26,850-03-7375,Mechanic,82394.16,6776.18,6,3,19,2,"Mortgage Loan, and Student Loan",13.28784383,9,7.09,9,Standard,676.2,25.74727042,11 Years and 10 Months,Yes,85.56758939,457.4799334,Low_spent_Medium_value_payments,414.5704772,0,-0.1555,0.8044,-0.6603,0.7232,-0.8794 +0x1a785,CUS_0x2beb,August,32,#F%$D@*&8,Media_Manager,8165.37,,7,8,18,100,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",38.18187919,26.31569047,14.72,9,Bad,4289.220337,25.91510172,7 Years and 9 Months,Yes,26.21310604,63.7609165,!@9#%8,247.1707275,0,1.0351,-0.3955,0.7829,-0.2262,0.3334 +0x1a791,CUS_0x162f,August,35,170-70-1371,Engineer,9743.96,889.9966667,8,7,4,4,"Payday Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",,12,9.98,5,Good,625.73,21.99770366,16 Years and 11 Months,No,18.85845156,,Low_spent_Small_value_payments,289.3027296,0,1.3179,-0.6098,1.0428,-2.0001,-0.4814 +0x1a79d,CUS_0x578b,August,32,995-68-3472,Journalist,8002.575,644.88125,6,9,29,2,"Not Specified, and Mortgage Loan",,25.0503925,3.51,7,Bad,1846.211124,30.00835374,17 Years and 5 Months,Yes,8.056869188,11.19000242,High_spent_Medium_value_payments,295.2412534,0,0.7721,0.3922,-1.1875,-1.2123,0.0376 +0x1a7a9,CUS_0xc57e,August,37,265-31-1959,Writer,146999.24,12110.93667,5,6,10,0,,25.09088284,20,6.53,5,Good,1148.91,24.22481831,22 Years and 11 Months,No,0,841.8572973,Low_spent_Large_value_payments,639.2363694,0,2.2331,0.9969,-0.2356,-0.3794,1.7107 +0x1a7b5,CUS_0x5131,August,34,455-55-9517,Entrepreneur,127253.4,10686.45,1,5,7,1,Mortgage Loan,,0,11.4,7,Good,1181.44,36.10297309,29 Years and 4 Months,No,78.54689323,409.1716119,High_spent_Medium_value_payments,830.9264949,0,-0.6007,1.1531,-0.0272,1.9231,-0.6386 +0x1a7c1,CUS_0x575b,August,20,#F%$D@*&8,Engineer,77108.98,6528.748333,5,2,7.288361749,2,"Auto Loan, Not Specified, and Payday Loan",6.602346766,9,8.6,1,Good,423.2094629,30.31826272,17 Years and 11 Months,No,68825,,High_spent_Large_value_payments,745.8422072,0,-1.5589,-0.4566,2.5502,2.621,-0.755 +0x1a7cd,CUS_0x6dde,August,22,424-80-0379,Journalist,18623.07,1746.9225,10,7,33,7,"Home Equity Loan, Personal Loan, Auto Loan, Auto Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",29.35618397,21,-2.72,12,_,1354.83,28.74916107,19 Years and 11 Months,Yes,60.55603489,118.7563219,Low_spent_Large_value_payments,265.3798932,0,0.3598,2.9516,-1.0682,-0.1666,0.7221 +0x1a7d9,CUS_0xb647,August,30,702-88-1853,Doctor,16562.55,,3,5,19.06745738,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",18.1291097,12,10.47,7,Standard,2573.570954,42.52084197,12 Years and 6 Months,Yes,25.0064794,56.93662589,High_spent_Medium_value_payments,309.1578568,0,0.5634,-0.7895,0.9758,0.7097,0.3797 +0x1a7e5,CUS_0xb6f8,August,39,745-72-0120,Manager,37045.78,3267.148333,10,9,34.95700519,8,"Auto Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Not Specified, Home Equity Loan, Payday Loan, and Student Loan",34.06059901,17,22.35,13,Bad,3685.690954,40.49275495,,Yes,33289.48344,63.49071003,High_spent_Large_value_payments,215.2611123,0,-0.2864,-1.3286,0.8562,0.4639,0.1215 +0x1a7f1,CUS_0x404c,August,33,064-29-9793,Entrepreneur,30652.38,,3,7,7,4,"Mortgage Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",,15,11.83,186,Good,243.4038498,24.66074177,30 Years and 10 Months,No,55.08366558,140.2185435,High_spent_Small_value_payments,362.2202242,0,1.3663,0.9579,-0.2557,0.6906,0.3473 +0x1a7fd,CUS_0x6d5c,August,26,981-04-9699,Teacher,31429.81,2723.150833,0,7,9,0,,5.895677975,6,2.44,0,Good,117.3,34.41591867,25 Years and 0 Months,No,0,,High_spent_Small_value_payments,382.8279793,0,0.0338,0.6813,-0.956,1.3657,-0.4234 +0x1a809,CUS_0xc632,August,25,645-54-6745,Journalist,33376.81,,2,5,0.288361749,2,"Student Loan, Credit-Builder Loan, and Debt Consolidation Loan",12.10722625,11,9.16,3,_,252.34,30.02046873,31 Years and 0 Months,No,82.41644185,532.260733,High_spent_Medium_value_payments,344.3003695,0,-1.0831,-1.7574,1.4908,0.3146,1.2018 +0x1a815,CUS_0x21cd,August,25,988-34-7804,Journalist,34570.08,,3,7,6.288361749,0,Debt Consolidation Loan,,0,7.63,3,_,200.32,26.85265778,19 Years and 9 Months,No,17.0780066,539.7383779,Low_spent_Large_value_payments,443.4050765,0,0.2755,-1.8387,0.479,-0.4616,0.9979 +0x1a821,CUS_0x3757,August,42,610-13-4952,Mechanic,32176.68,,10,8,27.88954781,100,"Debt Consolidation Loan, Student Loan, Mortgage Loan, and Personal Loan",45.6176299,22.80228281,10.06,16,Standard,2779.244321,39.52246298,,Yes,1382.556235,63.10485615,Low_spent_Large_value_payments,369.9478276,0,0.3001,-0.0619,-1.5445,-0.5682,-0.6444 +0x1a82d,CUS_0x2b11,August,27,419-48-6173,Media_Manager,112270.59,,4,3,5,3,"Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",9.697427213,9,1.6,5,Good,409.62,33.51489996,,No,219.1042111,10000,Low_spent_Medium_value_payments,317.9125976,0,-0.1703,-0.94,-0.1872,0.226,1.3404 +0x1a839,CUS_0x2858,August,38,#F%$D@*&8,Developer,123936.16,10558.01333,4,3,18,0,,18.90462185,15,8.46,3,Standard,666.5477949,39.53823408,30 Years and 0 Months,NM,0,1172.970237,!@9#%8,275.3673297,0,-1.923,-0.3143,-0.0131,-0.7578,-0.7887 +0x1a845,CUS_0x63ec,August,19,#F%$D@*&8,Media_Manager,38992.57,3144.380833,3,3,3,0,,,6,4.23,6,Good,980.027049,24.4369178,25 Years and 5 Months,No,0,52.22491161,High_spent_Large_value_payments,507.8003933,0,0.3002,0.4492,0.7859,0.0916,-0.3775 +0x1a851,CUS_0x8e65,August,45,901-71-9550,Manager,17324.7,,9,8,27.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Payday Loan",35.58540784,23,7.91,8,_,1879.690954,25.2999134,9 Years and 9 Months,Yes,47.30995959,169.696725,Low_spent_Small_value_payments,173.6455275,0,0.4097,-2.1216,0.8202,-0.556,-0.1761 +0x1a85d,CUS_0x8ed5,August,21,817-16-2848,Lawyer,103190.84,8400.236667,7,5,14,1,Home Equity Loan,,11,0.57,5,Standard,780.16,37.38629077,24 Years and 0 Months,No,46.75902119,683.6753545,Low_spent_Medium_value_payments,389.5892909,0,-0.1595,-0.683,-2.6949,1.2316,-0.9266 +0x1a869,CUS_0x99c2,August,80,257-17-1748,Manager,15878.09,,5,3,18,3,"Debt Consolidation Loan, Mortgage Loan, and Payday Loan",11.34472776,10.62254055,11.31,8,Standard,1836.285898,25.33229063,6 Years and 8 Months,Yes,37.15545093,39.1872576,Low_spent_Large_value_payments,300.4747081,0,-0.3175,1.088,-0.5198,0.214,-0.113 +0x1a875,CUS_0x3fef,August,53,634-71-6210,Lawyer,54426.18,4546.515,4,6,12,4,"Credit-Builder Loan, Auto Loan, Personal Loan, and Home Equity Loan",13.11737659,13,2.74,6,Standard,865.04,29.60786285,30 Years and 6 Months,No,137.7674613,121.0071191,High_spent_Medium_value_payments,445.8769196,0,1.478,0.5795,-0.1283,0.0873,-0.5457 +0x1a881,CUS_0xa1a8,August,38,070-04-3134,Accountant,35033.11,3041.425833,3,5,16.28836175,4,"Home Equity Loan, Not Specified, Payday Loan, and Auto Loan",23.29266349,19,19.48,0,Standard,44.59,31.75395999,24 Years and 0 Months,Yes,86.86376875,,High_spent_Medium_value_payments,402.5478351,0,-0.715,0.2473,0.4573,-0.1566,-0.0349 +0x1a88d,CUS_0x8bba,August,80,417-78-1654,Scientist,9429.325,909.7770833,5,5,29.06745738,2,"Credit-Builder Loan, and Home Equity Loan",26.77836857,17.61101019,9.27,12,Standard,2523.713719,37.19113206,15 Years and 3 Months,Yes,12.85152071,,High_spent_Medium_value_payments,276.5661854,0,-1.183,-1.133,-0.4808,-0.4201,0.9123 +0x1a899,CUS_0xae9e,August,19,345-91-4839,_______,19540.67,1891.389167,8,9,27.95700519,6,"Not Specified, Mortgage Loan, Debt Consolidation Loan, Not Specified, Not Specified, and Debt Consolidation Loan",,24.21431658,,9,_,1953.078235,33.27295797,10 Years and 4 Months,Yes,1392.769025,,!@9#%8,116.5447929,0,-0.3507,-0.8874,-0.0779,1.1872,1.8939 +0x1a8a5,CUS_0x1fa5,August,18,826-82-7232,_______,53643.9,4696.325,9,5,16.06745738,5,"Home Equity Loan, Not Specified, Auto Loan, Student Loan, and Mortgage Loan",43.39855325,26,6.31,16,Bad,3159.260954,31.02467823,13 Years and 9 Months,Yes,113.8484145,196.0132984,High_spent_Medium_value_payments,383.0504991,0,0.6946,0.1509,0.3721,0.3908,0.64 +0x1a8b1,CUS_0x90ca,August,25,766-08-4582,_______,32613.98,,4,4,17,4,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",24.40914086,20,0.7,5,Standard,954.65,29.0227128,29 Years and 5 Months,No,75.40541208,72.90900003,High_spent_Medium_value_payments,370.5687546,0,-1.6631,0.1436,0.8302,-1.9349,-0.8763 +0x1a8bd,CUS_0x24ae,August,51,959-48-9170,Entrepreneur,94070.2,,5,5,8,1,Auto Loan,23.73207683,17,4.88,2,Standard,1420.86,28.80003292,20 Years and 0 Months,No,64.132217,164.9912941,High_spent_Medium_value_payments,805.4948222,0,0.604,0.3674,-0.7444,-0.4459,-0.5888 +0x1a8c9,CUS_0x5205,August,46,894-45-0461,Accountant,103316.76,,4,4,4,3,"Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,5.635651649,11.58,1,_,678.2373049,25.23194239,20 Years and 3 Months,No,198.9395665,506.0544851,Low_spent_Large_value_payments,412.3789485,0,0.5822,1.2143,-1.0687,0.1499,-0.719 +0x1a8d5,CUS_0xae4,August,27,414-56-3481,Writer,69289.4,5817.116667,8,4,15,2,"Mortgage Loan, and Mortgage Loan",16.89069508,13.63889551,9.79,9,Standard,2694.298126,34.63233398,18 Years and 10 Months,Yes,59.36513754,240.920585,High_spent_Medium_value_payments,531.4259441,0,-1.322,0.3126,0.518,2.283,-0.8354 +0x1a8e1,CUS_0x26eb,August,40,070-52-7651,Mechanic,13999.185,932.59875,8,5,6,100,Personal Loan,18.298201,15,-0.45,6,Standard,16.3,35.94399956,20 Years and 4 Months,Yes,10.9625847,47.85500458,Low_spent_Medium_value_payments,314.4422857,0,0.5363,0.5619,-0.7717,1.1881,-0.8796 +0x1a8ed,CUS_0x2e53,August,29,598-59-0908,Accountant,70883.44,5663.953333,4,4,9.288361749,2,"Personal Loan, Personal Loan, and Payday Loan",12.93481061,12,10.23,2,Standard,604.77,31.19971901,30 Years and 3 Months,No,97.13399701,864.0472019,Low_spent_Large_value_payments,295.1515954,0,-0.1463,-0.9745,0.0471,-0.9169,-0.3501 +0x1a8f9,CUS_0x817d,August,41,973-95-7025,Scientist,47521.56,4128.13,3,4,10,5,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",,15.98579819,6.08,11,Standard,1208.754894,37.47525657,13 Years and 2 Months,Yes,163.7637057,257.4439388,Low_spent_Medium_value_payments,271.6053555,0,0.2711,0.4459,0.1341,1.1587,-1.6188 +0x1a905,CUS_0x2c7d,August,30,677-10-1495,Mechanic,130293.36,10618.78,2,4,1,4,"Debt Consolidation Loan, Student Loan, Student Loan, and Credit-Builder Loan",,8,11.32,6,_,1243.13,28.89776202,19 Years and 10 Months,No,392.8971262,,Low_spent_Medium_value_payments,106.6920227,0,-0.9023,0.6255,2.2392,-1.3814,-0.176 +0x1a911,CUS_0x5053,August,21,136-08-1655,Entrepreneur,97735.08,,3,6,4.288361749,4,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",0,3,-0.13,2,Good,358.24,30.47207418,32 Years and 3 Months,No,233.4359352,1355.069369,Low_spent_Small_value_payments,,0,0.74,-0.7985,-0.8808,0.6906,-0.2373 +0x1a91d,CUS_0xa122,August,27,573-55-1351,Doctor,33906.16,2668.513333,5,3,9,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",12.78241908,9,4.17,0,Standard,625.99,35.81614673,,No,79.78613032,71.19937855,High_spent_Small_value_payments,375.8658245,0,-1.6505,-1.4381,0.078,-1.1677,0.2953 +0x1a929,CUS_0x804d,August,23,#F%$D@*&8,Architect,21897.505,1986.792083,1,1,1,1,Mortgage Loan,,7,9.83,1,Good,630.68,38.2314685,28 Years and 4 Months,No,15.48746379,139.8981648,Low_spent_Large_value_payments,313.2935798,0,0.806,-0.5006,0.3165,1.7843,1.3305 +0x1a935,CUS_0x98d4,August,33,784-94-1164,Manager,157814.32,,4,5,5.288361749,0,Student Loan,6.386039366,8,8.99,4,Good,411.89,38.93233116,,No,113.493214,784.6141262,High_spent_Small_value_payments,1090.549454,0,0.1725,-1.4092,-1.1369,-1.6052,0.2263 +0x1a941,CUS_0x4aeb,August,23,225-20-9809,Architect,33635.72,,10,5,24.06745738,7,"Auto Loan, Personal Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",46.12976102,26.52999625,4.8,15,Bad,4163.037338,32.03807938,13 Years and 3 Months,NM,163.2131414,,Low_spent_Small_value_payments,43.60683956,0,-1.9071,1.2891,-0.4519,0.3852,0.6768 +0x1a94d,CUS_0x2f0b,August,50,146-00-0705,_______,12165.52,,8,7,11.06745738,3,"Payday Loan, Personal Loan, and Credit-Builder Loan",27.71908351,18.22529292,9.16,3,Good,1719.131731,35.4018133,19 Years and 11 Months,No,19.50053211,,Low_spent_Small_value_payments,246.4436109,0,-1.0516,1.337,0.6541,3.296,-0.355 +0x1a959,CUS_0xb030,August,28,415-02-1996,Journalist,33133.71,,6,5,6,2,"Auto Loan, and Credit-Builder Loan",,20,12.79,6,Standard,1406.81,34.10257433,12 Years and 2 Months,Yes,28.145581,99.177198,Low_spent_Large_value_payments,410.591471,0,-1.1897,0.6428,0.5121,1.561,-1.0259 +0x1a965,CUS_0x5fe3,August,18,591-58-3798,Teacher,81475.28,6865.606667,6,3,17,0,,23.49945687,18,12.33,10,Standard,1271.12,37.58435376,22 Years and 10 Months,Yes,47610,357.0876227,Low_spent_Small_value_payments,619.473044,0,-0.4207,1.8404,-0.2072,-0.2058,0.7105 +0x1a971,CUS_0x3b37,August,21,#F%$D@*&8,Accountant,19307.9,,848,4,12,2,"Student Loan, and Auto Loan",21.32843556,19,2.37,2,Standard,1024.47,32.6168202,26 Years and 11 Months,No,16.45977229,,High_spent_Medium_value_payments,369.6115566,0,0.7088,0.0648,0.3627,1.092,-1.8348 +0x1a97d,CUS_0x8aea,August,55,637-17-1146,Media_Manager,26861.89,,3,7,11,0,,8.893007776,8,2.32,2,Good,372.21,32.44815805,30 Years and 2 Months,No,0,75.61846428,Low_spent_Small_value_payments,421.8306191,0,2.013,-0.7901,0.6123,0.0075,0.3787 +0x1a989,CUS_0xb4a1,August,46,039-75-8071,Developer,14834.445,1082.20375,0,7,2,2,"Student Loan, and Credit-Builder Loan",0,1,6.51,3,_,1442.35,27.17379362,33 Years and 4 Months,No,20.12944555,61.71169584,High_spent_Small_value_payments,286.3792336,0,1.2603,-1.3207,-1.6277,0.1057,1.6344 +0x1a995,CUS_0x8d21,August,18,473-47-6936,Entrepreneur,58518,4792.5,10,10,33,4,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,25.43492464,15.56,9,_,2242.757859,25.22307744,8 Years and 10 Months,Yes,188.4010771,105.0389493,High_spent_Large_value_payments,425.8099736,0,-0.1462,0.1715,1.4397,1.1659,2.2628 +0x1a9a1,CUS_0x75d8,August,22,281-84-3517,Scientist,115832.24,,8,5,3.288361749,0,Home Equity Loan,14.70669431,14,,0,Good,186.8477129,27.50575821,32 Years and 10 Months,No,94.18678551,1562.558127,Low_spent_Medium_value_payments,162.1950853,0,-0.3363,-1.2686,-1.779,1.1988,-1.0614 +0x1a9ad,CUS_0x32df,August,54,520-87-0094,_______,82969.92,6694.16,4,5,19.28836175,0,Debt Consolidation Loan,19.35178239,18,,4,Standard,822.11,32.59469457,15 Years and 10 Months,No,42.32757483,865.5435079,Low_spent_Small_value_payments,471.4823783,0,-0.5349,1.3488,-0.067,-0.9323,0.6931 +0x1a9b9,CUS_0x87d8,August,53,537-76-1274,Engineer,88818.56,,2,1,10.28836175,0,Home Equity Loan,5.534752549,7,10.09,5,Good,388.0328069,31.83755114,27 Years and 10 Months,No,68.04044883,12005.45038,High_spent_Medium_value_payments,634.5065877,0,-0.4214,1.3332,-0.0022,0.4058,-0.5898 +0x1a9c5,CUS_0x282a,August,19,818-67-2718,Developer,7360.56,,6,4,14,2,"Home Equity Loan, and Home Equity Loan",,,12.49,2083,_,2822.936109,31.20842085,9 Years and 4 Months,NM,6.442169892,,Low_spent_Small_value_payments,291.1358705,0,-0.9346,-1.0384,-0.9401,0.0777,-0.6953 +0x1a9d1,CUS_0x8a84,August,28,880-61-7472,Accountant,20397.51,,5,2,9,4,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",11.28749186,10,,3,_,417.8724347,27.55785636,23 Years and 3 Months,No,52.94486524,120.1808597,Low_spent_Medium_value_payments,263.3381657,0,-0.1964,-0.1821,1.3061,0.8274,0.2297 +0x1a9dd,CUS_0x43fc,August,30,001-98-8608,Architect,134951.25,,1,4,4.288361749,4,"Not Specified, Mortgage Loan, Student Loan, and Mortgage Loan",15.90645395,,1.96,9,Good,451.7463021,37.61522112,29 Years and 8 Months,No,1070.973924,,High_spent_Medium_value_payments,670.8835457,0,1.2266,0.4926,1.3956,1.4118,-0.1448 +0x1a9e9,CUS_0x6870,August,23,612-68-0152,Doctor,9381.05,,10,10,16,7,"Auto Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Student Loan, and Home Equity Loan",,24.85191598,7.29,8,Bad,1793.591006,27.82065198,19 Years and 10 Months,Yes,27.91818864,,Low_spent_Medium_value_payments,250.0612619,0,0.4214,-1.2286,-1.305,-2.0535,-0.126 +0x1a9f5,CUS_0x2e65,August,21,236-72-3822,Architect,40167.84,3532.32,7,5,4.288361749,0,Debt Consolidation Loan,18.11160634,17,11.59,4,Standard,277.38,33.68595472,17 Years and 4 Months,Yes,19.02528025,482.5433891,High_spent_Large_value_payments,511.6007916,0,-1.0776,-0.0468,-0.7528,-1.0707,0.0024 +0x1aa01,CUS_0x95f4,August,32,687-97-9650,Manager,19863.68,,8,8,19.88954781,7,"Student Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Student Loan",33.32588027,24,25.05,12,Bad,2333.985368,36.85175455,2 Years and 2 Months,Yes,1412.019289,22.19143736,High_spent_Large_value_payments,285.0370471,0,-0.9412,0.7336,0.8679,0.2185,-1.0163 +0x1aa0d,CUS_0x6176,August,21,776-12-0174,Musician,19608.98,,6,6,34,5,"Credit-Builder Loan, Auto Loan, Auto Loan, Mortgage Loan, and Payday Loan",41.46935523,18.39793029,15.5,16,Bad,3788.904566,40.41386229,14 Years and 8 Months,Yes,55.84262566,,Low_spent_Small_value_payments,260.4751715,0,0.6935,-0.7378,-0.1846,-0.077,-0.3778 +0x1aa19,CUS_0x9d2f,August,47,618-73-2642,Manager,131091.12,10855.26,0,5,12,0,,,1,9.41,3,Good,328.8028605,36.03283769,21 Years and 3 Months,No,0,588.9254515,Low_spent_Small_value_payments,857.885111,0,0.7511,0.8079,-1.6476,-1.5335,-0.4726 +0x1aa25,CUS_0x5338,August,38,109-33-6582,Teacher,17288.425,,4,3,2,1,Home Equity Loan,11.16682311,12,5.83,,_,1076.281193,39.13136332,32 Years and 0 Months,No,8.647233303,77.79471497,Low_spent_Small_value_payments,364.9689006,0,0.1799,0.0906,-1.1295,0.4069,0.5035 +0x1aa31,CUS_0x2ddc,August,43,831-46-3722,_______,38392.87,3343.405833,3,5,9,100,"Payday Loan, and Credit-Builder Loan",,9,11.8,1,Good,883.37,39.74308193,27 Years and 6 Months,No,52.65696427,87.3904867,High_spent_Medium_value_payments,444.2931324,0,-0.3448,-1.2019,0.2443,1.0376,-0.0161 +0x1aa3d,CUS_0x3e14,August,55,681-52-1334,Writer,17651.515,,0,2,3.288361749,0,,5.205419996,6,-4.49,1,Good,58.59955853,30.81769028,24 Years and 9 Months,No,0,12037.71705,Low_spent_Small_value_payments,275.7999433,0,-1.2911,-0.5863,0.5979,0.0067,0.5087 +0x1aa49,CUS_0x62b5,August,50,303-12-8448,Doctor,14585.47,,3,6,6,3,"Auto Loan, Personal Loan, and Student Loan",,14,7.32,5,Standard,1104.42,30.79647284,,No,27.25326202,,!@9#%8,244.9071118,0,1.1384,0.1457,-1.3087,-0.1109,0.6853 +0x1aa55,CUS_0xbca1,August,45,349-04-9863,Scientist,31968.28,,8,10,23.88954781,100,"Personal Loan, Not Specified, Mortgage Loan, Payday Loan, and Payday Loan",29.4846072,21,4.87,13,Bad,3899.38,30.63996219,11 Years and 3 Months,Yes,1407.312555,,High_spent_Small_value_payments,294.267159,0,-0.0333,0.2679,-0.0804,-0.7736,-2.5072 +0x1aa61,CUS_0x6c88,August,39,821-50-1894,Accountant,103495.68,8611.64,7,6,8,7,"Student Loan, Not Specified, Auto Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Student Loan",9.084578462,7,19.79,5,Standard,482.64,24.00911561,7 Years and 6 Months,Yes,427.1441829,,Low_spent_Medium_value_payments,63.02488861,0,0.1998,-2.7894,-1.0413,0.9751,1.2444 +0x1aa6d,CUS_0x199b,August,42,445-42-3539,Architect,16048.76,,8,10,18,7,"Debt Consolidation Loan, Not Specified, Not Specified, Payday Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,24.88229335,11.29,14,Standard,1746.582615,40.44191884,,Yes,72.00561251,,Low_spent_Small_value_payments,259.6831378,0,-0.471,0.4833,1.0919,0.3034,-1.149 +0x1aa79,CUS_0x4eae,August,41,#F%$D@*&8,_______,44968.15,,1,5,2,0,,15.23086917,,1.22,6,Good,770.5030066,34.45166104,,No,0,98.17756704,High_spent_Large_value_payments,506.5211229,0,-0.6496,-1.0306,-0.6682,-0.3888,0.8057 +0x1aa85,CUS_0x56ad,August,19,891-82-4879,Scientist,61352.64,5014.72,3,210,19,5,"Personal Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",12.92189751,7,19.32,7,Standard,497.13,30.59382721,17 Years and 3 Months,Yes,225.7974537,372.6135524,Low_spent_Medium_value_payments,183.0609939,0,-0.2127,-0.8671,-0.2029,-0.5413,0.3288 +0x1aa91,CUS_0x4298,August,46,850-03-7662,Teacher,2716542,,8,9,19,3,"Credit-Builder Loan, Credit-Builder Loan, and Student Loan",,28.9198151,,11,Bad,1786.002702,41.67899225,6 Years and 8 Months,Yes,99.88706369,193.3481428,Low_spent_Large_value_payments,422.4285435,0,0.9068,0.262,-0.2402,-0.3229,-0.9371 +0x1aa9d,CUS_0x9741,August,39,508-79-5577,Writer,14067.58,,9,6,20,8,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Personal Loan",28.2760998,21.29778774,1.57,9,Bad,3429.156745,25.58438023,9 Years and 4 Months,Yes,71.63048027,,Low_spent_Large_value_payments,207.548852,0,-0.6754,-0.2611,0.2521,-0.6044,0.9373 +0x1aaa9,CUS_0x9a7a,August,40,352-84-7006,Writer,81438.56,,3,4,20,2,"Debt Consolidation Loan, and Mortgage Loan",,,8.21,8,Standard,509.44,30.45292314,7 Years and 10 Months,Yes,721.5350254,,High_spent_Small_value_payments,493.7072278,0,1.79,0.4879,-0.1739,1.5829,-0.1729 +0x1aab5,CUS_0x8d0b,August,43,347-54-2557,Engineer,35251.49,,0,4,1.288361749,2,"Home Equity Loan, Payday Loan, and Credit-Builder Loan",0,3.468543199,1.87,7,Good,162.2564283,24.17897536,26 Years and 4 Months,No,78.04706428,516.4964508,Low_spent_Small_value_payments,398.5563626,0,-1.1141,0.8045,0.307,-0.9891,-0.1587 +0x1aac1,CUS_0x72b0,August,35,504-61-6763,Teacher,66949.68,,5,1,9.288361749,2,"Auto Loan, and Home Equity Loan",,6,4.72,9,Good,382.9019915,33.42261266,26 Years and 6 Months,No,59.37214724,538.1232318,High_spent_Large_value_payments,655.8553293,0,-0.0866,0.8325,0.2223,1.0776,0.1474 +0x1aacd,CUS_0x883e,August,41,744-84-2263,Writer,29715.16,,4,6,16,5,"Student Loan, Personal Loan, Personal Loan, Personal Loan, and Debt Consolidation Loan",11.38349096,9,14.19,8,Standard,1036.03,22.46028706,20 Years and 0 Months,Yes,349.4553897,211.7963184,Low_spent_Small_value_payments,220.3065327,0,2.0242,1.1411,0.9435,-0.1183,-0.6257 +0x1aad9,CUS_0xb820,August,21,642-28-5878,_______,15645.89,,5,3,12,7,"Personal Loan, Student Loan, Payday Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",26.38645395,19,7.17,9,Standard,1327.96,36.07987227,14 Years and 4 Months,Yes,74.25891186,,Low_spent_Large_value_payments,212.1433623,0,0.2258,1.2866,-2.0876,0.0897,1.16 +0x1aae5,CUS_0x98f1,August,39,508-24-8627,Doctor,15301.71,,5,7,20,4,"Credit-Builder Loan, Student Loan, Student Loan, and Student Loan",21.73408417,15.74814922,10.21,9,Standard,2246.331581,33.01429492,18 Years and 2 Months,Yes,47.54402803,0,High_spent_Large_value_payments,292.1736014,0,-0.0136,2.2453,0.6149,-1.9925,1.9846 +0x1aaf1,CUS_0xa798,August,18,#F%$D@*&8,Journalist,7871.81,,7,10,34.06745738,3,"Student Loan, Student Loan, and Student Loan",90,2276,7.22,7,Standard,2177.040954,31.93358895,20 Years and 2 Months,Yes,10.13245255,31.00677615,Low_spent_Medium_value_payments,288.5389,0,1.5359,0.279,-0.8983,-1.7224,0.6812 +0x1aafd,CUS_0x33e1,August,18,846-15-6654,Musician,40181.48,,5,4,13,4,"Credit-Builder Loan, Not Specified, Student Loan, and Credit-Builder Loan",17.38706466,12,15.52,8,Standard,854.72,33.94155482,18 Years and 4 Months,NM,31512,163.751905,Low_spent_Large_value_payments,310.2199717,0,0.8077,-0.5815,0.3577,0.2227,1.2861 +0x1ab09,CUS_0xa024,August,47,#F%$D@*&8,Lawyer,84358.5,6730.875,2,4,7,2,"Personal Loan, and Auto Loan",2.695173874,4,11.94,6,Good,1460.18,26.13061749,21 Years and 5 Months,No,86.72041697,136.9166195,High_spent_Large_value_payments,689.4504635,0,0.8956,0.7505,-0.11,1.8085,-0.3804 +0x1ab15,CUS_0xaecd,August,40,267-20-3596,Mechanic,171462.56,,4,7,9.288361749,2,"Credit-Builder Loan, Home Equity Loan, and Student Loan",,,13.01,6,Good,490.4904512,28.05342239,18 Years and 2 Months,No,364.8227607,784.6495095,High_spent_Large_value_payments,977.7240767,0,-0.2398,-0.6325,-1.3269,-1.6964,1.2652 +0x1ab21,CUS_0xb01b,August,53,743-79-8938,Scientist,64752.4,5652.033333,3,3,5,3,"Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",,,9.56,0,Good,1022.8,38.15970627,27 Years and 5 Months,No,115.3412869,280.8212517,!@9#%8,429.0407947,0,-0.5779,-0.9584,-0.2384,-1.1761,0.5795 +0x1ab2d,CUS_0x189e,August,28,129-46-1641,Teacher,137625.04,,4,4,5.288361749,0,,15.58919715,14,10.24,7,Good,605.6793348,39.50297671,20 Years and 10 Months,No,0,923.1374243,Low_spent_Large_value_payments,1013.505949,0,0.0727,-0.0886,2.7685,-0.8893,1.5688 +0x1ab39,CUS_0xb89,August,24,123-28-4825,Engineer,16956.9,1480.075,10,10,23.88954781,7,"Auto Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",,23.74101119,12.87,11,_,4493.687881,40.43008177,14 Years and 3 Months,Yes,1381.033533,191.9185223,Low_spent_Small_value_payments,170.725363,0,0.995,-0.4792,-0.2536,-0.4866,-0.2897 +0x1ab45,CUS_0x115c,August,20,956-28-3067,Engineer,41695.76,,6,7,15,9,"Not Specified, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",28.7625233,20,31.99,8,Bad,4453.51,26.69776846,8 Years and 6 Months,NM,302.8057257,85.68416843,Low_spent_Large_value_payments,221.6747725,0,1.1989,-0.5253,0.5331,-1.5526,0.6144 +0x1ab51,CUS_0x4a91,August,80,280-31-3787,Lawyer,16106.84,,4,1226,8,1,Credit-Builder Loan,,12.16265413,2.62,3,Good,1327.299742,36.97015396,25 Years and 11 Months,No,12.36727907,76.38198559,Low_spent_Small_value_payments,338.074402,0,-0.2582,0.9236,-0.8151,2.1395,-0.5316 +0x1ab5d,CUS_0x6eb2,August,25,693-12-5054,Journalist,89995.59,7546.6325,5,7,5,3,"Student Loan, Student Loan, and Home Equity Loan",,17,9.25,7,Standard,458.81,40.11180013,17 Years and 11 Months,Yes,122.2046148,149.8334681,High_spent_Large_value_payments,722.6251671,0,0.2794,-0.0433,-0.5355,0.2331,0.4396 +0x1ab69,CUS_0x495f,August,27,602-14-6009,Lawyer,20012.87,,7,8,17,5,"Personal Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Auto Loan",24.66387287,17.56013905,5.81,11,Bad,4023.801192,32.07213907,1 Years and 2 Months,Yes,59.45838794,130.7563024,Low_spent_Large_value_payments,262.8592263,0,1.4613,-0.5109,0.443,0.1335,0.074 +0x1ab75,CUS_0x7430,August,20,623-69-0437,Journalist,16380.17,,4,5,9.067457376,0,,14.98052043,9,13.58,2,Standard,1219.590954,29.9954007,19 Years and 9 Months,No,0,133.9683811,Low_spent_Small_value_payments,273.4127476,0,0.1018,0.5298,-0.9204,0.2607,-0.4324 +0x1ab81,CUS_0xb066,August,20,664-33-5906,Engineer,40702.96,,6,6,33.06745738,5,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",34.84490946,23,25.82,13,Bad,2891.280954,38.04902781,6 Years and 11 Months,NM,110.1978583,52.39891084,High_spent_Medium_value_payments,414.3742763,0,1.5002,0.8083,0.0633,0.1869,-1.3709 +0x1ab8d,CUS_0x758f,August,18,212-86-0554,Doctor,64355.72,,5,5,15,2,"Debt Consolidation Loan, and Home Equity Loan",14.84304381,15,12.72,6,Standard,1979.39,34.8269995,15 Years and 5 Months,Yes,82.55655087,,Low_spent_Small_value_payments,242.6452337,0,0.5688,1.5368,1.9426,-0.7166,-0.1919 +0x1ab99,CUS_0x243a,August,43,#F%$D@*&8,Media_Manager,38456.2,,6,4,9,2,"Not Specified, and Mortgage Loan",25.61622503,18,5.7,3,Standard,288.815718,40.81772147,24 Years and 10 Months,No,328.9018257,93.44344826,High_spent_Medium_value_payments,438.0163552,0,0.3676,-0.3202,-0.5606,-0.1218,1.3765 +0x1aba5,CUS_0x13e3,August,55,437-66-3296,Musician,143829.56,11755.79667,3,3,12,0,,14.21564647,11,10.32,2,Standard,269.26,43.25048443,,No,0,301.4665329,High_spent_Large_value_payments,1114.113134,0,0.8352,0.9752,-0.8033,0.5463,2.1934 +0x1abb1,CUS_0x81ff,August,54,376-19-8597,Journalist,31467.58,,0,5,1,2,"Personal Loan, and Credit-Builder Loan",7.440769167,7,3.2,4,Good,680.89,39.49199884,26 Years and 3 Months,No,36875,131.2954131,Low_spent_Small_value_payments,387.2829979,0,-0.9796,1.1575,-1.4504,-1.3016,-2.4558 +0x1abbd,CUS_0x2c75,August,27,#F%$D@*&8,Accountant,168682.56,14118.88,4,3,3,4,"Mortgage Loan, Mortgage Loan, Auto Loan, and Auto Loan",9.545588813,9,11.64,4,_,463.57,29.17589024,29 Years and 4 Months,No,305.7537414,290.0053472,High_spent_Large_value_payments,1056.128911,0,0.0772,-1.1277,-0.3172,-0.4022,0.3099 +0x1abc9,CUS_0x8237,August,45,151-67-7572,Mechanic,84504.51,7135.0425,6,3,10,1,Personal Loan,23.70656716,19,2.29,0,Good,1177.578366,41.66007089,18 Years and 2 Months,No,36.82293945,,High_spent_Large_value_payments,862.8963696,0,0.1293,1.1389,-1.1612,-0.3569,0.6612 +0x1abd5,CUS_0xc44a,August,49,855-76-7431,Lawyer,169710.52,14181.54333,2,3,3,2,"Mortgage Loan, and Debt Consolidation Loan",,9,10.41,3,Good,1334.35,31.8754162,17 Years and 11 Months,NM,45299,262.9737172,High_spent_Medium_value_payments,1123.17549,0,-0.8808,0.6502,-1.8393,-0.678,1.1461 +0x1abe1,CUS_0x36f7,August,26,518-03-9260,Media_Manager,14616.91,1206.075833,8,6,27,8,"Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Mortgage Loan",,27.94520428,6.06,8,Bad,2956.055903,35.101275,14 Years and 0 Months,Yes,86.23562289,74.61000127,Low_spent_Small_value_payments,249.7619592,0,0.7673,1.3817,-0.4489,1.7448,-1.2753 +0x1abed,CUS_0x6a6c,August,51,355-25-8296,Entrepreneur,22336.27,1669.274057,4,4,6,4,"Personal Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",3.191377958,4,8.43,3,Good,506.06,37.19696263,29 Years and 4 Months,No,177.5528657,19.56010689,High_spent_Medium_value_payments,337.6043867,0,-0.8332,-0.5836,-2.0876,1.8182,0.7926 +0x1abf9,CUS_0x2ae8,August,21,498-74-4915,Engineer,132273.75,10800.8125,5,4,3.288361749,2,"Debt Consolidation Loan, and Mortgage Loan",,5,6.46,4,Good,827.64,24.25384149,25 Years and 8 Months,No,144.7013122,,Low_spent_Medium_value_payments,129.1494146,0,1.5779,0.4257,0.8111,-0.026,0.6906 +0x1ac05,CUS_0xa91f,August,44,816-49-1841,Teacher,134327.56,11411.96333,4,6,12.28836175,2,"Personal Loan, and Personal Loan",,21.32921515,11.11,1,_,1193.613439,39.12118442,27 Years and 6 Months,No,187.6768127,1087.41752,Low_spent_Small_value_payments,576.0394621,0,-0.4074,1.1088,-0.5609,0.6633,1.5794 +0x1ac11,CUS_0x9273,August,52,770-10-4834,Accountant,41009.96,3671.496667,0,3,2.288361749,0,Not Specified,,6,6.19,2,Good,432.6458679,39.11820485,18 Years and 0 Months,No,28.79226071,647.1404822,Low_spent_Small_value_payments,431.481457,0,-0.5786,1.8299,0.4826,0.8982,-0.6559 +0x1ac1d,CUS_0x25ca,August,40,#F%$D@*&8,Doctor,18694.99,,9,5,22.06745738,7,"Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",29.79711156,,7.97,12,Bad,2182.900954,29.93287134,10 Years and 8 Months,NM,100.2224655,,High_spent_Small_value_payments,212.726891,0,1.3059,-0.8861,-1.0437,1.062,1.1162 +0x1ac29,CUS_0x7ff5,August,44,514-10-3763,Mechanic,95933.64,,7,4,13,4,"Auto Loan, Payday Loan, Personal Loan, and Student Loan",14.61293384,9,9.7,2,Standard,1387.35,33.17420802,19 Years and 2 Months,No,218.133955,271.9873782,High_spent_Medium_value_payments,576.6256668,0,0.7932,-0.6519,-0.2426,1.8127,0.2988 +0x1ac35,CUS_0xa03a,August,38,#F%$D@*&8,Accountant,19204.93,1391.297836,6,3,6,4,"Student Loan, Mortgage Loan, Home Equity Loan, and Home Equity Loan",11.43876326,9,8.82,7,Standard,178.0479029,30.38525048,21 Years and 10 Months,No,175.7932553,83.23711352,Low_spent_Small_value_payments,315.8054498,0,-2.3875,1.3332,0.7668,-0.6126,0.3998 +0x1ac41,CUS_0x83a0,August,42,640-44-9921,Doctor,69712.2,5841.35,8,7,5,5,"Auto Loan, Not Specified, Personal Loan, Personal Loan, and Auto Loan",27.66477238,18,16.86,8,Standard,1638.94,37.6769924,14 Years and 8 Months,Yes,275.1258592,459.8733701,!@9#%8,119.1357706,0,-0.548,1.0573,-1.4861,0.7213,0.4096 +0x1ac4d,CUS_0x3e9a,August,27,902-99-8509,Architect,43704.55,,4,5,10,3,"Credit-Builder Loan, Auto Loan, and Personal Loan",14.99684228,,6.39,0,_,737.37,27.24883056,27 Years and 8 Months,No,81.4839773,10000,Low_spent_Small_value_payments,299.0234373,0,-0.2642,-1.7592,1.2842,0.1575,0.7646 +0x1ac59,CUS_0x6235,August,38,293-99-9694,_______,35142.57,,3,7,18,4,"Student Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",19.64361976,15.88552139,8.64,5,Standard,1084.000852,28.64151963,16 Years and 2 Months,NM,90.90178477,,High_spent_Medium_value_payments,413.5144649,0,-1.2795,0.0697,-1.2264,-1.5241,-0.6397 +0x1ac65,CUS_0xa2ac,August,36,766-58-6507,Writer,69240.72,5670.06,8,9,24.88954781,9,"Home Equity Loan, Payday Loan, Mortgage Loan, Payday Loan, Payday Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, and Payday Loan",37.72615508,26.81109826,9.86,13,Bad,3874.636063,32.8457908,,Yes,1739.932862,359.0819942,Low_spent_Small_value_payments,63.66106254,0,0.2461,-0.0566,-0.5614,0.4501,-0.0768 +0x1ac71,CUS_0x431,August,32,836-21-1965,Teacher,20804.74,,3,3,10,0,,0,1,5.06,8,_,1378.31,38.49956934,32 Years and 9 Months,NM,0,,High_spent_Medium_value_payments,383.8461858,0,-2.0543,0.2149,-0.6105,1.2031,-1.1902 +0x1ac7d,CUS_0xae58,August,25,767-67-1123,Musician,18946.07,,9,10,29.06745738,5,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,25.11765706,9.07,8,_,2989.013912,40.20703427,14 Years and 5 Months,Yes,75.92936419,131.4255909,!@9#%8,205.2086736,0,-1.5706,1.9916,1.1394,-0.0049,-0.2578 +0x1ac89,CUS_0x6719,August,26,624-00-3778,Scientist,20759.32,1528.943333,888,3,7,7,"Personal Loan, Auto Loan, Student Loan, Personal Loan, Auto Loan, Payday Loan, and Payday Loan",19.4981071,,19.49,9,Standard,2071.05,34.3926753,17 Years and 6 Months,Yes,64.04873946,72.51943215,!@9#%8,296.3261617,0,-1.6291,-0.0619,-0.0701,-2.0002,0.0972 +0x1ac95,CUS_0x65dc,August,33,192-63-5749,Musician,15725.7,1165.475,6,9,31.06745738,4,"Home Equity Loan, Personal Loan, Payday Loan, and Personal Loan",23.65601845,9.239793441,15.54,7,Standard,1817.925141,36.82083887,,Yes,38.84287531,112.066477,Low_spent_Medium_value_payments,218.9178597,0,-0.394,1.9656,-0.489,-2.6012,-0.3231 +0x1aca1,CUS_0x1916,August,32,017-14-5611,Developer,38035.76,3052.646667,5,4,3,3,"Payday Loan, Not Specified, and Debt Consolidation Loan",17.27418667,,16.41,8,_,193.26,25.09958407,,No,93.45511054,55.64167938,High_spent_Small_value_payments,416.1678768,0,0.3825,-0.937,0.3452,0.2586,0.8992 +0x1acad,CUS_0x275c,August,44,525-44-6888,Media_Manager,14535.49,,8,10,23.95700519,8,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Student Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",41.65132754,20.49766174,20.4,13,_,4292.667135,25.17030558,4 Years and 3 Months,Yes,1376.52253,,Low_spent_Small_value_payments,250.4844453,0,-0.6619,0.5078,-1.6101,-0.9318,1.496 +0x1acb9,CUS_0x1c76,August,18,756-17-9286,Entrepreneur,35075,3032.916667,6,3,9,5,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Mortgage Loan",5.104405198,7,11.63,7,Standard,1435.83,28.48511951,10 Years and 2 Months,Yes,144.3830352,139.3142476,!@9#%8,289.5943838,0,0.6843,-1.063,0.6487,-1.3481,0.6568 +0x1acc5,CUS_0x6aca,August,30,487-73-9996,Mechanic,35613.25,3016.770833,8,5,11,1,Personal Loan,,10,7.35,3,Standard,1076.77,28.02858679,28 Years and 9 Months,No,22.05645254,339.5648714,Low_spent_Small_value_payments,230.0557594,0,-0.5873,-0.5072,-0.7685,0.6614,0.9793 +0x1acd1,CUS_0x2cae,August,28,#F%$D@*&8,Journalist,115614.27,9443.5225,3,4,4.288361749,0,,1.078527774,4,11.46,2,Good,1234.338867,26.93099118,23 Years and 4 Months,No,0,609.1395939,High_spent_Large_value_payments,1019.760382,0,0.3985,0.6328,-0.7951,-1.9761,0.8601 +0x1acdd,CUS_0x9e5b,August,26,173-43-7218,Manager,92652.09,,7,7,4,1,Home Equity Loan,20.80649305,16,7.17,4,Standard,156.76,33.93559917,19 Years and 3 Months,No,41.36481718,309.6536241,High_spent_Small_value_payments,672.4823087,0,-2.1217,0.0797,-0.0133,-0.5191,-1.9518 +0x1ace9,CUS_0x6c9b,August,39,590-27-4725,Lawyer,17135.68,,8,5,18,2,"Student Loan, and Auto Loan",11.63706105,9,18.15,13,Standard,1055.36,25.97817772,12 Years and 5 Months,Yes,27.65691337,,Low_spent_Large_value_payments,266.5454927,0,0.9846,2.5598,-0.4644,-0.1862,-0.4846 +0x1acf5,CUS_0x8fbb,August,35,792-39-3438,Developer,36984.76,3073.063333,6,7,16.06745738,8,"Not Specified, Student Loan, Auto Loan, Payday Loan, Mortgage Loan, Student Loan, Auto Loan, and Debt Consolidation Loan",,25,24.78,10,Bad,3951.150954,37.0260604,7 Years and 0 Months,Yes,207.1042243,,Low_spent_Large_value_payments,149.1781716,0,0.7295,0.0258,-1.4721,-0.1913,0.7829 +0x1ad01,CUS_0x743f,August,33,400-26-8241,Lawyer,28901.07,,4,2,3139,0,,2.849470495,6,13.06,2,Good,860.9615623,30.96704382,21 Years and 9 Months,No,257.6697971,62.51741393,High_spent_Medium_value_payments,408.6434502,0,-0.8305,-0.5493,-0.9087,0.7393,-0.2062 +0x1ad0d,CUS_0x4279,August,41,590-25-4528,Architect,17151.19,1625.265833,10,9,32.88954781,7,"Debt Consolidation Loan, Not Specified, Not Specified, Auto Loan, Payday Loan, Auto Loan, and Student Loan",,21,19.02,8,_,2672.12,26.81552916,,Yes,1384.713454,89.06878112,Low_spent_Small_value_payments,284.4142665,0,0.5178,-1.0583,0.367,1.2056,-0.3827 +0x1ad19,CUS_0x4712,August,25,#F%$D@*&8,Manager,178283.68,,4,3,3.288361749,2,"Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,3.579426589,,0,Good,151.0675201,44.18826156,19 Years and 3 Months,No,328.2384485,557.3599778,High_spent_Large_value_payments,1257.936368,0,-0.5645,-0.5389,0.9002,0.1466,-1.4558 +0x1ad25,CUS_0x26f2,August,39,893-10-4881,Media_Manager,9221.745,,9,8,34,7,"Payday Loan, Auto Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Payday Loan",,20.63657939,2.26,12,_,2827.053503,38.71630327,7 Years and 9 Months,Yes,51.10622348,40.3924301,!@9#%8,264.3492214,0,0.4205,1.424,-0.8307,-0.1995,1.1949 +0x1ad31,CUS_0xbd4b,August,36,266-63-8069,Musician,140124.8,11870.06667,3,4,9,0,,,12,14.16,6,Standard,857.74,34.75753426,,Yes,0,141.5580701,High_spent_Large_value_payments,1285.448597,0,1.2633,0.8726,-0.0329,-0.1501,0.1568 +0x1ad3d,CUS_0x38cf,August,55,151-48-0792,Media_Manager,136542.08,11242.50667,3,7,14,2,"Credit-Builder Loan, and Home Equity Loan",21.69465949,15,5.74,2,_,3.31,29.63326719,26 Years and 2 Months,No,178.5746011,205.8991678,High_spent_Large_value_payments,979.7768977,0,-1.4059,0.9453,-0.676,0.1246,-0.7737 +0x1ad49,CUS_0xc39,August,35,805-52-5109,Accountant,14471.785,1086.982083,3,7,19,0,,13.08825346,10,4.78,1,Standard,802.0452635,27.52010183,17 Years and 8 Months,No,0,75.11026832,Low_spent_Small_value_payments,332.3301673,0,-1.1594,-0.2389,-0.8943,-1.2587,-0.5668 +0x1ad55,CUS_0xbdfe,August,36,210-38-6296,Architect,16698.08,,8,6,25,6,"Not Specified, Debt Consolidation Loan, Not Specified, Payday Loan, Home Equity Loan, and Payday Loan",25.07530331,18,8.41,17,Standard,1382.71,26.02661589,13 Years and 0 Months,Yes,118.6834574,,High_spent_Small_value_payments,266.7729274,0,-1.5516,0.8822,0.2988,1.5809,-1.7319 +0x1ad61,CUS_0x9972,August,22,429-32-6803,Entrepreneur,28191.89,,8,6,18,100,"Credit-Builder Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,15,8.62,4,Standard,628.61,37.88518064,19 Years and 0 Months,Yes,109.8401065,73.23899691,Low_spent_Large_value_payments,340.9533132,0,0.2728,-0.5626,1.1589,0.3436,0.9018 +0x1ad6d,CUS_0x6f93,August,32,859-12-7933,Doctor,38324.72,,2,4,7,0,,2.355268263,5,0.6,4,_,364.6478988,40.68214878,28 Years and 5 Months,No,0,62.94308337,High_spent_Medium_value_payments,511.4759457,0,0.8953,0.1441,0.8332,0.5096,0.6927 +0x1ad79,CUS_0xe2f,August,30,196-99-0419,Developer,64404.16,4861.144816,6,8,21.88954781,6,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Personal Loan, Home Equity Loan, and Not Specified",32.93659673,19,9.05,15,_,2075.58,32.07116402,20 Years and 4 Months,Yes,2030.103534,482.3331631,Low_spent_Medium_value_payments,119.1030721,0,-2.5199,0.3672,-1.2347,0.3386,-0.1652 +0x1ad85,CUS_0x1be2,August,20,241-28-1551,Architect,104509.53,8791.1275,8,7,5,3,"Home Equity Loan, Not Specified, and Credit-Builder Loan",21.73822149,15,17.31,7,Standard,700.1927028,27.09092141,27 Years and 11 Months,Yes,176.243487,350.0672966,!@9#%8,673.5261865,0,0.4092,0.9301,1.9452,-0.6847,1.0343 +0x1ad91,CUS_0x6030,August,22,780-19-3604,Mechanic,50212.71,,7,5,16,6,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Home Equity Loan",,21.59751572,13.95,7,Standard,2042.25631,30.52547692,,Yes,132.4315932,70.43677084,High_spent_Large_value_payments,471.270886,0,-0.291,0.1839,-0.3297,-0.0254,-0.3152 +0x1ad9d,CUS_0x6f78,August,55,845-98-6688,Manager,75490.22,,1,2,2,1,Debt Consolidation Loan,7.159887768,7,2.02,6,_,214.5766509,32.43824076,33 Years and 4 Months,No,42.19111811,430.0179952,Low_spent_Medium_value_payments,497.4395166,0,-0.7852,-0.168,2.5318,0.6656,-1.129 +0x1ada9,CUS_0xa987,August,43,145-29-9794,Media_Manager,78626.49,6682.2075,5,4,8.288361749,4,"Credit-Builder Loan, Auto Loan, Not Specified, and Not Specified",23.41731523,19,6.73,5,Standard,550.1,23.84703938,17 Years and 9 Months,No,140.7322198,583.9358696,High_spent_Large_value_payments,603.4901216,0,0.4425,1.4528,-1.1432,-0.4166,-0.3106 +0x1adb5,CUS_0x7ff9,August,46,766-27-1126,Musician,15219.08,1505.256667,6,10,34.06745738,5,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",27.75060801,,24.2,14,Bad,4735.260954,35.68270715,3 Years and 5 Months,Yes,54.06183187,90.60202236,Low_spent_Small_value_payments,269.1415245,0,-1.0737,-0.6432,-1.3025,0.6456,2.2171 +0x1adc1,CUS_0xb085,August,35,111-12-1263,Musician,42177.9,3780.825,8,7,25,7,"Auto Loan, Home Equity Loan, Home Equity Loan, Not Specified, Student Loan, Credit-Builder Loan, and Student Loan",32.35481412,13.78888304,8.74,9,Bad,2060.062492,29.10058403,15 Years and 3 Months,Yes,240.5703937,66.63784736,High_spent_Small_value_payments,330.8742589,0,-0.6621,1.7777,0.7716,-1.8422,1.0656 +0x1adcd,CUS_0x4b17,August,37,162-49-4391,Writer,74169.76,6174.813333,9,7,27,100,"Student Loan, and Auto Loan",40.12791015,25.20767144,7.79,15,Bad,2829.848207,39.21996801,15 Years and 2 Months,Yes,87.82539137,128.9899825,!@9#%8,650.6659594,0,0.6211,-1.1275,-0.8885,0.1824,-0.2374 +0x1add9,CUS_0x4188,August,22,750-43-5393,Manager,26454.21,2200.5175,7,4,8,65,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Student Loan",,13,16.66,11,Standard,29.49699479,38.19642603,17 Years and 5 Months,Yes,86.98732856,57.69156684,!@9#%8,322.5899327,0,0.7887,-0.0098,0.5371,-1.0586,0.6037 +0x1ade5,CUS_0x8464,August,45,909-43-8498,Architect,36403.98,,6,5,17,6,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",14.05351018,10,16.89,7,Standard,524.79,28.34228019,15 Years and 11 Months,Yes,133.1854954,97.78746524,High_spent_Small_value_payments,330.2935393,0,0.8698,0.4386,-0.9282,-0.0344,-3.0749 +0x1adf1,CUS_0x96c8,August,24,945-50-6965,Entrepreneur,66482.2,,7,5,29,6,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",34.90515048,21.22046128,16.91,11,Bad,2955.789527,28.76678539,6 Years and 11 Months,Yes,222.1670049,164.9286452,High_spent_Small_value_payments,406.9226832,0,-0.7211,-1.1709,0.5931,-1.1115,-1.159 +0x1adfd,CUS_0xbf01,August,31,102-29-2206,Doctor,62804.55,5022.7125,6,9,33,7,"Auto Loan, Personal Loan, Payday Loan, Mortgage Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",21.96726417,9,16.85,8,Standard,1299.59,31.06679593,19 Years and 8 Months,Yes,347.5692966,131.6282793,Low_spent_Medium_value_payments,303.0736741,0,1.1367,1.3241,-0.8227,-0.3069,-0.0718 +0x1ae09,CUS_0x49a4,August,20,427-06-8075,Writer,14739.96,,6,5,16,4,"Auto Loan, Payday Loan, Mortgage Loan, and Payday Loan",,20.50198243,14.38,9,Standard,1481.749118,32.50436071,13 Years and 6 Months,Yes,47.73187713,24.42449496,High_spent_Small_value_payments,303.7766279,0,-0.0139,-0.0204,-2.0719,1.1786,0.1738 +0x1ae15,CUS_0x17e5,August,27,175-33-5803,Scientist,28027.52,2046.626667,6,6,19,5,"Mortgage Loan, Not Specified, Not Specified, Home Equity Loan, and Payday Loan",,20.71847568,9.18,9,Bad,1590.911216,29.15784511,14 Years and 9 Months,Yes,58.8824746,101.7190075,Low_spent_Small_value_payments,334.0611846,0,0.152,-0.7798,0.5504,-0.1806,-0.9246 +0x1ae21,CUS_0x3422,August,56,425-99-3813,Journalist,17510.865,1277.23875,7,4,10,4,"Personal Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",,16,1,3,_,1053.65,24.18387184,28 Years and 11 Months,No,38.06957541,142.8853403,Low_spent_Small_value_payments,236.7689593,0,0.5142,-0.2381,0.8809,-0.7248,1.8951 +0x1ae2d,CUS_0x1f9b,August,23,#F%$D@*&8,Entrepreneur,84384.96,6862.08,6,6,9.288361749,4,"Mortgage Loan, Credit-Builder Loan, Personal Loan, and Student Loan",14.97751925,14,14.54,2,Standard,1004.8,38.90563012,20 Years and 10 Months,Yes,247.3432804,661.510443,High_spent_Medium_value_payments,447.2917376,0,-0.2922,0.6457,-2.4445,0.0117,-0.3036 +0x1ae39,CUS_0x5aa9,August,24,322-16-2958,Journalist,64269.24,5112.77,6,7,6,6,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Not Specified",22.32938678,16,19.51,8,Standard,187.22,30.52374092,14 Years and 4 Months,Yes,268.3139962,455.4462526,!@9#%8,77.51675117,0,1.1303,1.9715,-0.1589,0.8578,0.0728 +0x1ae45,CUS_0x3c23,August,44,257-46-1070,Developer,14705.9,,7,5,19,6,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",18.46606896,17,17.91,4,Standard,1190.8,24.62717323,15 Years and 11 Months,Yes,57.89304716,113.6492157,Low_spent_Small_value_payments,266.4069038,0,0.1375,0.4862,-0.1622,0.349,-0.0894 +0x1ae51,CUS_0x366b,August,40,012-91-5006,Doctor,71558.72,6058.226667,10,10,16.88954781,8,"Payday Loan, Credit-Builder Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",33.41123641,19,28.35,8,Bad,4519.22,41.08805364,,Yes,1618.126784,266.4895516,High_spent_Small_value_payments,286.8762495,0,-0.639,0.7503,-1.1009,-0.0838,-1.2079 +0x1ae5d,CUS_0xb0a3,August,46,065-92-0111,Teacher,29627.53,2179.960833,3,6,12,0,,,20,,2,Standard,337.2020717,26.86760676,16 Years and 4 Months,Yes,0,41.3258492,High_spent_Medium_value_payments,432.3545342,0,0.7829,-0.1923,-0.2725,1.681,-0.1225 +0x1ae69,CUS_0x3dc3,August,29,153-94-2470,Architect,45144.8,3980.066667,4,3,13,1,Personal Loan,25.96228203,19,6.06,6,Standard,1112.58,30.11756596,22 Years and 6 Months,No,36.15142324,,Low_spent_Small_value_payments,251.8841785,0,0.6267,1.3378,-0.2643,0.2747,-0.1233 +0x1ae75,CUS_0x3df0,August,38,095-52-8522,Accountant,31021.08,,2,4,9.288361749,0,Not Specified,2.975517123,5,2.33,7,Good,366.86,33.8889863,24 Years and 8 Months,No,16.96884099,10419.93746,!@9#%8,424.16634,0,0.3206,-1.6188,-0.5547,-0.2793,0.2976 +0x1ae81,CUS_0xa4ad,August,27,028-73-8575,Manager,125079.04,,6,7,17,1,Student Loan,28.86744917,22.60487086,10.14,6,Standard,1163.406276,34.34742718,18 Years and 9 Months,No,88.81097798,142.7462138,High_spent_Large_value_payments,1028.168142,0,-0.4745,-0.2605,-1.0947,0.0228,-0.5121 +0x1ae8d,CUS_0x7350,August,18,322-13-5307,Scientist,14173.65,1283.1375,5,5,31.06745738,4,"Personal Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",24.94209092,16,16.98,10,_,2520.930954,38.01063023,,Yes,43.97081473,45.46253619,!@9#%8,302.1601111,0,1.0183,0.2925,0.905,1.1946,1.1448 +0x1ae99,CUS_0x41a1,August,43,030-95-2286,Teacher,14225.96,1422.496667,1067,9,15,8,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Personal Loan",26.20776257,16,29,16,_,3934.02,25.4838852,1 Years and 5 Months,Yes,82.74819119,93.66667363,Low_spent_Medium_value_payments,245.8348018,0,1.3752,-0.7027,2.5825,-0.9562,0.3025 +0x1aea5,CUS_0x858b,August,24,270-22-4400,Media_Manager,58233.58,4702.798333,7,3,9,3,"Debt Consolidation Loan, Student Loan, and Auto Loan",14.46367633,10,10.55,4,Standard,544.6,38.00846658,31 Years and 5 Months,Yes,97.87318374,10000,High_spent_Small_value_payments,499.6213399,0,-0.7653,-0.5109,0.0783,0.9189,0.5358 +0x1aeb1,CUS_0x2a9a,August,31,286-58-6752,Architect,100791.57,8436.2975,2,5,11,1,Personal Loan,0.895419327,4,11.33,0,Good,1336.44,37.47330537,33 Years and 4 Months,No,53.08360101,578.2748267,Low_spent_Large_value_payments,482.2713223,0,-1.6867,0.3573,0.0575,-0.9968,0.2096 +0x1aebd,CUS_0x4e47,August,23,242-52-1703,Musician,40305.02,3545.751667,5,6,16,6,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Student Loan",19.3348252,14,2.44,12,Standard,1955.11,36.47309178,11 Years and 2 Months,NM,196.3016563,,Low_spent_Small_value_payments,240.9055355,0,0.3193,-0.67,-1.139,-0.1106,0.7408 +0x1aec9,CUS_0x47ed,August,23,157-48-1855,Writer,127524.81,10918.0675,0,3,8.288361749,0,,2.820368354,5,7.12,2,Good,59.58,36.69981769,24 Years and 4 Months,No,0,1224.804565,Low_spent_Medium_value_payments,566.9396464,0,1.0269,-0.0498,0.1998,0.5681,0.7084 +0x1aed5,CUS_0x8cd,August,20,212-18-7234,Musician,7367.11,616.9258333,10,6,29,7,"Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Student Loan, Auto Loan, and Mortgage Loan",,22,29.92,12,_,3898.81,24.18440432,,Yes,28.27088597,30.66959175,Low_spent_Small_value_payments,292.7521056,0,-0.4433,-0.1042,-0.337,0.6766,-0.3828 +0x1aee1,CUS_0x77fa,August,34,426-00-7283,Architect,16009.6,1532.133333,10,9,16,5,"Personal Loan, Not Specified, Home Equity Loan, Payday Loan, and Auto Loan",32.4503121,23.92274279,7.12,10,Bad,5288.814119,24.7600443,7 Years and 8 Months,Yes,46.41599323,70.67905887,High_spent_Small_value_payments,296.1182812,0,1.3675,0.1804,-1.6207,-1.8856,2.1924 +0x1aeed,CUS_0x1534,August,26,764-41-7508,Scientist,24482.38,2242.198333,6,4,9,1,Student Loan,,23.79310043,8.31,8,_,814.1579944,24.20256891,25 Years and 8 Months,Yes,15.62574774,119.7995485,High_spent_Small_value_payments,348.7945371,0,0.074,-0.5692,0.3864,0.2019,-2.746 +0x1aef9,CUS_0x3f6a,August,33,722-97-6435,Accountant,18426.65,1516.127065,3,7,18,100,"Mortgage Loan, Student Loan, and Debt Consolidation Loan",,,14.94,7,Standard,2552.978074,30.78260661,15 Years and 6 Months,Yes,214.5133397,52.07755315,Low_spent_Large_value_payments,349.0916259,0,0.9573,0.6575,0.1822,-1.1143,1.5312 +0x1af05,CUS_0x5284,August,41,627-77-6984,Developer,21652.195,1510.349583,3,2,9.288361749,4,"Home Equity Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",12.81829125,,2.35,4,Good,168.4025637,30.02119459,29 Years and 10 Months,No,40.43567652,542.1468724,!@9#%8,280.2073615,0,0.8821,-0.0973,-0.3626,1.0464,1.8868 +0x1af11,CUS_0x59b5,August,37,906-67-2716,Doctor,42877.62,3446.135,9,9,29.06745738,2,"Not Specified, and Debt Consolidation Loan",39.85711149,20.71708392,6.87,15,Bad,2773.011801,32.88256717,19 Years and 6 Months,Yes,61.87496509,130.2581882,High_spent_Medium_value_payments,375.7600588,0,0.4459,0.2929,-0.9988,0.5543,-0.5416 +0x1af1d,CUS_0xb6bb,August,44,415-94-8307,Mechanic,10077.135,,7,7,28.06745738,3,"Personal Loan, Mortgage Loan, and Payday Loan",38.47561837,23.94544316,13.61,11,Standard,3100.872184,39.63518423,9 Years and 9 Months,NM,17.58540922,25.19218556,High_spent_Small_value_payments,253.1782423,0,0.4043,0.3082,-1.7753,0.796,-0.546 +0x1af29,CUS_0xe57,August,39,863-54-4919,Journalist,17698.23,,6,9,19.95700519,7,"Payday Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,26.3691971,3.78,14,Bad,5339.335295,36.83440262,5 Years and 6 Months,Yes,1397.149838,,Low_spent_Medium_value_payments,251.3763828,0,-0.6924,0.5245,-0.0338,-1.0333,-0.8098 +0x1af35,CUS_0x96c7,August,45,102-66-8421,Engineer,32507.89,2784.990833,7,6,10,4,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Not Specified",18.08710072,11.30097403,8.22,1,Standard,1439.966939,27.17740474,22 Years and 0 Months,Yes,97.43370539,82.55614709,!@9#%8,348.5092309,0,0.3479,2.4266,-0.7454,-0.3398,-0.0099 +0x1af41,CUS_0x58cd,August,35,951-55-4902,Teacher,108205,9019.083333,3,7,7,6,"Mortgage Loan, Personal Loan, Payday Loan, Home Equity Loan, Not Specified, and Student Loan",11.38119431,6,13.44,485,Standard,872.45,39.91039636,15 Years and 8 Months,Yes,298.9391027,117.0699296,!@9#%8,725.899301,0,0.6186,-0.3343,0.3664,-0.3119,2.1371 +0x1af4d,CUS_0x496e,August,21,847-75-6199,Mechanic,15051.065,,5,7,20,2,"Credit-Builder Loan, and Auto Loan",14.61899475,10,10.85,9,Standard,1455.55,33.02424863,31 Years and 4 Months,Yes,24.26990425,,!@9#%8,300.0932247,0,-0.3975,0.6196,-1.0991,-0.3825,-0.8407 +0x1af59,CUS_0x4e97,August,49,215-67-2608,Media_Manager,82929.96,,1,7,5.288361749,0,Personal Loan,8.691088269,10.81593098,7.35,2,Good,827.7600039,33.05848333,,No,68.51686858,600.2824873,Low_spent_Medium_value_payments,718.4211052,0,0.2637,-0.0414,-0.3628,1.4018,0.1263 +0x1af65,CUS_0x4638,August,25,938-85-6447,Musician,48706.59,4170.8825,10,7,35.06745738,4,"Home Equity Loan, Not Specified, Mortgage Loan, and Auto Loan",24.83596707,17,18.63,13,Standard,2853.490954,28.53984162,16 Years and 9 Months,Yes,120.8252949,60.16161345,High_spent_Large_value_payments,449.3810537,0,-0.3266,-0.3734,0.288,0.7546,-1.0088 +0x1af71,CUS_0x3d3f,August,58,034-14-6103,Architect,147519.72,12393.31,4,6,8,3,"Mortgage Loan, Personal Loan, and Not Specified",15.37358318,9,9.5,8,Standard,562.405679,35.58950202,32 Years and 11 Months,No,228.4565931,1083.135783,!@9#%8,350.1815522,0,-0.4671,-0.2181,1.1478,0.8072,-0.5624 +0x1af7d,CUS_0x1fb0,August,46,746-29-2596,Engineer,122710.12,10368.84333,0,6,3,100,"Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",,13,-4.26,3,Good,1025.92,35.67351946,27 Years and 6 Months,No,154.9755045,125.0866355,High_spent_Medium_value_payments,1006.822193,0,0.7056,1.0303,-0.3973,0.4295,1.9247 +0x1af89,CUS_0x1425,August,34,502-31-6140,Teacher,34758.2,,1,2,1169,3,"Not Specified, Student Loan, and Debt Consolidation Loan",3.25338254,7,8.81,1,_,1005.29,30.6895286,21 Years and 0 Months,No,79.56813193,167.219621,Low_spent_Small_value_payments,341.1639137,0,0.1611,-0.4855,0.1754,-0.4353,0.2268 +0x1af95,CUS_0x1ce1,August,27,245-22-1682,Engineer,83521.24,7162.103333,4,4,13.28836175,2,"Payday Loan, and Auto Loan",11.77269419,11.94341149,15.16,13,Standard,632.2196597,31.59047571,21 Years and 6 Months,Yes,121.2725275,672.6777234,Low_spent_Large_value_payments,612.1975434,0,-0.237,1.4246,0.152,0.4036,-0.3819 +0x1afa1,CUS_0x2ff7,August,38,796-41-0821,Accountant,26405.15,,5,7,8,4,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",,21,10.08,4,Standard,873.11,27.94291546,,Yes,59.72156372,109.7270826,Low_spent_Small_value_payments,311.6942704,0,1.4969,0.1812,-0.484,1.3903,0.3994 +0x1afad,CUS_0x2b29,August,34,866-60-6396,Writer,17346.16,,8,9,25,5,"Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, and Personal Loan",26.95074865,11.69502275,10.45,7,Standard,2763.896608,35.25776982,,NM,58.23146578,,Low_spent_Small_value_payments,199.8448889,0,-0.1154,0.2625,1.5338,0.9974,0.3958 +0x1afb9,CUS_0x8964,August,34,439-93-4818,Developer,16113.89,,8,8,17.88954781,9,"Payday Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Auto Loan",24.71051528,17.4548413,22.15,14,Bad,4830.665999,35.24933221,1 Years and 10 Months,Yes,1426.615301,,Low_spent_Small_value_payments,140.4678014,0,-1.3466,-0.8547,0.9077,0.1622,0.3759 +0x1afc5,CUS_0x5be5,August,58,906-42-3281,Mechanic,150339.96,12614.33,1,2,3029.288362,2,"Home Equity Loan, Student Loan, and Debt Consolidation Loan",,2239,5.61,3,Good,590.8087745,39.8936982,22 Years and 11 Months,No,219.481295,1623.933263,!@9#%8,301.6108666,0,1.8183,1.5975,-0.5004,-0.3623,1.0374 +0x1afd1,CUS_0x76bc,August,38,145-46-9635,Writer,42355.28,3512.606667,2,4,12,2,"Home Equity Loan, and Personal Loan",0,0,4.8,2,Good,778.49,23.5148577,32 Years and 2 Months,No,52.21671112,242.4141134,High_spent_Small_value_payments,316.6298422,0,1.7718,1.0324,0.6357,-0.3789,0.882 +0x1afdd,CUS_0x8908,August,18,479-88-3019,Lawyer,8375.46,531.955,7,5,10,4,"Home Equity Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",9.104871477,8,17.66,5,_,1885.89,40.75505664,5 Years and 9 Months,Yes,16.29125232,16.27135764,High_spent_Medium_value_payments,270.63289,0,-1.0849,-1.0787,0.0706,1.429,-0.9022 +0x1afe9,CUS_0x2b59,August,26,708-52-5954,Accountant,28146.26,,6,8,21,5,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",35.70080252,24,13.91,13,_,4841.16,35.3473906,6 Years and 0 Months,Yes,71.08314697,236.8711267,Low_spent_Medium_value_payments,231.997893,0,1.4959,0.287,-1.5925,-0.1285,-2.0164 +0x1aff5,CUS_0xc07c,August,19,#F%$D@*&8,Mechanic,76887.92,6445.326667,8,7,25,2,"Payday Loan, and Payday Loan",,19,3.64,8,Bad,2485.99,40.7079631,9 Years and 5 Months,Yes,78.62692677,110.9182074,High_spent_Large_value_payments,694.9875325,0,0.2924,-1.0978,0.3906,1.1943,-0.3213 +0x1b001,CUS_0x8fd9,August,27,547-86-0816,Doctor,7531.855,573.6545833,6,5,19.06745738,9,"Student Loan, Personal Loan, Not Specified, Home Equity Loan, Mortgage Loan, Personal Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",,26.56812462,24.1,6,Bad,5242.387422,32.53987328,2 Years and 11 Months,Yes,55.03451568,11.1226776,High_spent_Medium_value_payments,214.4879771,0,1.6216,0.5131,-0.9684,0.1872,-0.4548 +0x1b00d,CUS_0x767f,August,31,306-61-2861,Architect,29986.48,,10,7,19.06745738,7,"Home Equity Loan, Payday Loan, Not Specified, Auto Loan, Auto Loan, Payday Loan, and Not Specified",35.43220866,18.14751293,15.86,16,Bad,4485.347542,31.88571149,1 Years and 5 Months,Yes,120.7657569,105.1397025,High_spent_Medium_value_payments,262.961586,0,0.3176,1.0194,-0.5328,0.6985,-0.804 +0x1b019,CUS_0x796a,August,51,722-62-6463,Musician,15318.095,,4,4,5,0,,19.24541863,15,4.22,1,Good,1182.5,24.62043405,27 Years and 8 Months,No,0,126.2653436,Low_spent_Small_value_payments,283.785448,0,1.6095,0.7032,0.0507,-0.8359,-0.871 +0x1b025,CUS_0x2b7e,August,28,683-88-7105,Accountant,28849.66,2142.138333,4,5,26,2,"Student Loan, and Student Loan",25.64513998,20,24.63,9,Standard,2496.14,38.7486229,12 Years and 11 Months,NM,39.1735678,14.81857427,High_spent_Large_value_payments,400.2216913,0,-0.4546,-0.0631,0.9792,0.1168,-0.4566 +0x1b031,CUS_0x1d1b,August,22,566-75-8198,Manager,152574.76,12547.56333,2,5,3,3,"Payday Loan, Not Specified, and Personal Loan",,1.180280278,5.62,4,Good,822.8945883,36.50972823,20 Years and 8 Months,No,205.4848429,807.0135652,Low_spent_Large_value_payments,512.2579253,0,1.0846,0.3884,1.9734,-0.105,0.6841 +0x1b03d,CUS_0x7198,August,25,745-79-3142,Writer,30912.38,,3,1,7,1,Payday Loan,0,2,10.49,0,_,912.63,32.27822073,21 Years and 10 Months,No,14.28583455,,High_spent_Medium_value_payments,398.8838865,0,-1.6394,-0.4383,0.5837,-0.3214,-0.1074 +0x1b049,CUS_0x404d,August,28,417-58-6844,Scientist,58132.12,4944.343333,10,10,31.95700519,8,"Personal Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Not Specified, Home Equity Loan, Personal Loan, and Payday Loan",45.74940295,23,23.23,15,_,4676.920954,33.23506939,14 Years and 2 Months,Yes,1578.241115,,Low_spent_Large_value_payments,101.048116,0,-0.0216,1.8992,1.5892,0.997,-0.4251 +0x1b055,CUS_0xab78,August,34,624-52-1764,Manager,69061,,8,6,17,7,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Student Loan, Mortgage Loan, and Auto Loan",19.00126117,,6.19,7,_,233.54,32.90156161,19 Years and 10 Months,NM,275.7414564,68.9706883,High_spent_Large_value_payments,447.0961886,0,0.8489,0.6019,-0.687,-0.6079,-0.2101 +0x1b061,CUS_0x372e,August,33,914-17-7131,Developer,32908.26,,7,10,33,4,"Mortgage Loan, Payday Loan, Mortgage Loan, and Personal Loan",30.91039282,18,19.13,9,Bad,1775.04,38.77383943,14 Years and 0 Months,Yes,70.60525924,72.9670365,High_spent_Small_value_payments,366.8632043,0,-0.9185,0.3766,-1.2288,1.6748,0.455 +0x1b06d,CUS_0xaa83,August,35,331-60-0907,Lawyer,61634.54,,3,2,9,2,"Mortgage Loan, and Student Loan",0,3,4.53,5,Good,793.77,23.75029315,,NM,68.85671806,506.3120498,Low_spent_Small_value_payments,210.5523988,0,-1.2674,0.3219,0.5304,0.3127,1.024 +0x1b079,CUS_0x4318,August,37,381-45-4862,Accountant,33445.01,2663.084167,6,4,9,0,,,12,4.82,1,_,1064.752534,26.11317494,32 Years and 8 Months,No,0,122.3816562,Low_spent_Large_value_payments,429.7537111,0,0.0974,1.7185,-0.1361,-1.5409,0.2315 +0x1b085,CUS_0x29ac,August,27,708-00-9497,Musician,93131.94,,2,6,7.288361749,4,"Not Specified, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",5.870666214,8,3.51,6,Good,1097.18,29.34433822,29 Years and 5 Months,No,269.5041892,,High_spent_Large_value_payments,692.2963142,0,-0.1593,0.0846,-0.0202,-1.7405,-1.571 +0x1b091,CUS_0x1169,August,34,352-87-0792,Lawyer,115324.62,9772.385,2,5,7.288361749,4,"Credit-Builder Loan, Payday Loan, Student Loan, and Student Loan",3.784329233,6,5.5,3,Good,1316.45,39.58542213,23 Years and 11 Months,No,199.2512598,800.1860682,High_spent_Small_value_payments,657.738633,0,-0.9014,-0.6428,-0.4139,-0.2108,0.6857 +0x1b09d,CUS_0x9b63,August,39,756-41-1144,_______,41802.42,3731.535,10,8,21.88954781,8,"Debt Consolidation Loan, Payday Loan, Not Specified, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",41.25812914,23.9590407,9.05,13,_,5066.228311,34.72914765,4 Years and 8 Months,NM,1584.473884,10000,High_spent_Large_value_payments,267.0138817,0,-1.1064,0.1928,-1.0058,0.8159,-1.9981 +0x1b0a9,CUS_0x2748,August,36,497-31-1000,Accountant,35771.08,,4,4,10,4,"Personal Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",12.03876252,12,1.23,5,Standard,1081.2,22.55980397,,NM,60.84621615,261.3159557,Low_spent_Small_value_payments,270.3301615,0,0.7832,0.0554,1.3772,-0.2828,-0.0708 +0x1b0b5,CUS_0x612b,August,24,118-73-3764,Writer,118041.39,9709.7825,3,1,3,1,Payday Loan,12.9039151,10,14.02,3,_,836.67,40.49554565,31 Years and 10 Months,No,87.71540671,410.9649584,High_spent_Medium_value_payments,722.2978849,0,1.2839,-0.6483,1.6097,0.9642,-0.8649 +0x1b0c1,CUS_0x7df9,August,38,546-95-1373,Musician,65630.66,,4,3,7,3,"Auto Loan, Payday Loan, and Auto Loan",,8,4.84,4,_,1450.15,29.6368151,33 Years and 5 Months,Yes,84.12598079,45.56917631,High_spent_Large_value_payments,644.4270096,0,-0.0861,-0.0475,0.7478,-0.6704,0.1431 +0x1b0cd,CUS_0x21fa,August,37,050-87-4671,Media_Manager,29357.85,2665.4875,5,4,17,3,"Not Specified, Debt Consolidation Loan, and Not Specified",15.46440704,11,12.09,4,_,848.04,29.46832719,7 Years and 6 Months,Yes,45.65052113,76.34640456,High_spent_Medium_value_payments,394.5518243,0,0.1269,1.086,-1.3581,-1.6988,0.7637 +0x1b0d9,CUS_0x7f50,August,47,917-63-6589,Engineer,21177.51,,6,4,8,4,"Not Specified, Auto Loan, Not Specified, and Mortgage Loan",,9,4.62,3,Standard,915.11,38.89895698,22 Years and 6 Months,No,61.32687002,57.19864333,Low_spent_Small_value_payments,324.2537367,0,-1.7641,1.5495,1.0171,-2.5207,-0.4475 +0x1b0e5,CUS_0x850b,August,43,162-89-5076,_______,40881.38,3323.781667,8,10,33.88954781,100,"Auto Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",21.17168735,16,13.24,10,Standard,1693.51,39.80912686,5 Years and 10 Months,Yes,1418.316523,105.1089156,High_spent_Medium_value_payments,364.6226465,0,-0.0457,0.6646,1.4019,1.5,-1.7612 +0x1b0f1,CUS_0x795c,August,26,891-13-2675,Lawyer,18670.22,,10,10,25.88954781,7,"Home Equity Loan, Mortgage Loan, Auto Loan, Not Specified, Not Specified, Auto Loan, and Debt Consolidation Loan",,17,23.68,12,Bad,4748.43,23.97380631,0 Years and 9 Months,Yes,1425.104057,,High_spent_Medium_value_payments,220.7811087,0,0.2529,0.1187,-1.6606,-0.8915,0.0624 +0x1b0fd,CUS_0xb86e,August,26,875-74-4976,Developer,9283.17,,10,8,29.95700519,8,"Student Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Auto Loan, Student Loan, Not Specified, and Credit-Builder Loan",40.36276728,24.29123029,3.95,12,Bad,1972.591773,36.22521155,18 Years and 6 Months,Yes,1383.281309,106.5174824,Low_spent_Small_value_payments,159.9105895,0,0.0994,-0.4922,2.3251,0.3499,0.335 +0x1b109,CUS_0x99be,August,23,139-01-8203,Lawyer,115247.16,9744.93,2,5,10,0,,1.651560848,3,0.92,3,Good,687.87,41.46692024,18 Years and 6 Months,No,0,452.0402232,High_spent_Small_value_payments,782.4527768,0,-1.1631,0.9396,1.4179,-0.0953,-1.1152 +0x1b115,CUS_0x1915,August,45,970-73-1799,Writer,36080.59,,5,3,20,4,"Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, and Personal Loan",20.67487046,18,8.95,4,Standard,1445.97,30.71201561,21 Years and 2 Months,Yes,103.0401093,116.4838579,High_spent_Small_value_payments,326.3476162,0,0.2556,-0.3359,0.4137,0.6225,-0.2342 +0x1b121,CUS_0x183e,August,41,269-19-5115,Scientist,19191.52,1872.293333,8,5,20.06745738,8,"Credit-Builder Loan, Personal Loan, Not Specified, Student Loan, Auto Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,,17.9,13,_,2794.970954,26.1230194,1 Years and 5 Months,Yes,105.2776836,,Low_spent_Large_value_payments,171.7699349,0,0.8513,1.0319,-0.3017,1.0691,-0.778 +0x1b12d,CUS_0x275a,August,47,762-80-4374,Engineer,79016.06,6561.671667,1,5,5,2,"Mortgage Loan, and Student Loan",4.857141003,3.481515182,3.15,6,_,637.104452,31.25824297,21 Years and 10 Months,No,85.11063208,471.4222715,Low_spent_Small_value_payments,389.6342631,0,0.3573,0.1933,1.6031,0.3739,-0.7041 +0x1b139,CUS_0x9772,August,30,073-04-0918,Doctor,51582.54,4016.545,3,6,16,1,Home Equity Loan,32.49323596,21.41877827,18.84,3,Standard,1481.831372,26.76544354,25 Years and 2 Months,Yes,35.85751961,231.7404884,Low_spent_Small_value_payments,424.056492,0,0.0896,-0.2622,1.2028,0.4054,-1.3183 +0x1b145,CUS_0x461,August,18,169-09-6595,Scientist,32543.41,,7,7,15,0,,10.69515074,8,7.56,1,Standard,1415.01,27.6444948,27 Years and 0 Months,No,0,361.987158,Low_spent_Small_value_payments,224.3079253,0,0.1117,3.0331,-1.1709,0.2638,0.2918 +0x1b151,CUS_0xbaa1,August,45,279-87-6544,Doctor,84687.54,,0,3,0.288361749,0,Auto Loan,9.077340686,10,8.75,4,Good,69.41,30.29905227,,No,64.18217565,570.2446738,High_spent_Medium_value_payments,719.4401116,0,-0.1427,-2.2245,-0.7192,-0.1145,0.863 +0x1b15d,CUS_0x55f6,August,37,566-71-2113,Writer,31748.67,,5,4,12,1,Credit-Builder Loan,0,0,7.57,4,Good,180.68,31.85154034,21 Years and 5 Months,No,8874,20.0460439,High_spent_Large_value_payments,444.4945017,0,1.0265,-0.613,-1.3279,0.8123,0.5572 +0x1b169,CUS_0x81d7,August,27,413-90-4760,Accountant,18323.175,,1,201,4,0,,11.93977993,12,2.08,6,_,879.33,38.31302052,19 Years and 6 Months,No,0,42.16525606,Low_spent_Medium_value_payments,388.3278689,0,-0.8507,-0.255,0.2792,1.3872,-1.0936 +0x1b175,CUS_0x7200,August,34,180-24-0139,Accountant,20607.78,1453.315,3,6,16.06745738,7,"Payday Loan, Credit-Builder Loan, Auto Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,21.86925293,7.18,14,Standard,1833.657174,35.92655376,,NM,98.82095878,,Low_spent_Large_value_payments,230.9736432,0,-0.5157,-0.6094,-1.2689,-0.1795,-0.146 +0x1b181,CUS_0x2ed0,August,26,#F%$D@*&8,Lawyer,70446.63,5900.5525,4,3,11,0,,26.50075749,21,17.61,6,_,1322.25,35.17096773,17 Years and 3 Months,No,0,178.8514786,High_spent_Medium_value_payments,661.2037714,0,-0.9736,-0.5872,0.3786,-0.6356,0.7094 +0x1b18d,CUS_0xa306,August,31,554-14-8437,Journalist,174226.68,14396.89,3,5,7,2,"Personal Loan, and Personal Loan",2.542386734,6,6.01,1,Good,1297.57,31.30711081,,No,201.3567452,293.7018731,High_spent_Small_value_payments,1204.630382,0,0.548,1.1107,0.1501,-2.3879,0.7301 +0x1b199,CUS_0xe64,August,39,801-49-9318,Mechanic,106605.6,,7,7,12,1,Personal Loan,,21,9.01,3,_,492.9167628,33.17869536,30 Years and 3 Months,Yes,54.98477302,379.9147079,High_spent_Medium_value_payments,735.5281988,0,0.3236,-0.4506,0.8203,1.2203,-0.7517 +0x1b1a5,CUS_0x9423,August,43,094-27-2927,Scientist,36573.8,2577.987998,10,9,32.95700519,8,"Mortgage Loan, Credit-Builder Loan, Payday Loan, Payday Loan, Student Loan, Auto Loan, Home Equity Loan, and Auto Loan",,20,24.37,9,Bad,4701.378347,25.58987287,13 Years and 8 Months,Yes,19520.48344,222.4330868,Low_spent_Small_value_payments,161.1840132,0,-0.3138,0.6984,-0.7329,1.5312,-0.3617 +0x1b1b1,CUS_0xb385,August,18,043-78-7271,Mechanic,57575.04,4948.92,9,10,21.06745738,8,"Credit-Builder Loan, Payday Loan, Auto Loan, Mortgage Loan, Personal Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",,23.17106889,18.65,10,Bad,3240.945435,32.73762235,10 Years and 4 Months,NM,264.9682766,97.04500699,High_spent_Medium_value_payments,356.1584284,0,-0.5798,-0.883,0.7086,1.4675,-0.7072 +0x1b1bd,CUS_0x763a,August,36,334-76-8557,Scientist,106615.44,9016.62,4,4,14,1,Not Specified,21.35195955,17,3.87,3,Standard,516.45,33.10509819,19 Years and 8 Months,No,56.26853495,102.3123969,!@9#%8,983.0810681,0,0.385,0.6386,0.0357,0.4669,0.6646 +0x1b1c9,CUS_0x6d3c,August,20,331-88-3157,_______,29167.68,,8,9,22.06745738,3,"Auto Loan, Credit-Builder Loan, and Payday Loan",38.49539169,24,17.6,8,_,2315.390954,35.54776054,12 Years and 4 Months,NM,225.8277173,124.737069,High_spent_Small_value_payments,272.7871759,0,0.1303,-1.2234,0.6821,-0.9256,1.2051 +0x1b1d5,CUS_0xb6d,August,18,499-52-8888,Writer,30171.86,,6,7,31.06745738,9,"Personal Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",,23,22.49,10,_,3629.920954,30.75659432,10 Years and 5 Months,Yes,205.4039259,180.4445635,High_spent_Small_value_payments,124.6633894,0,-0.1952,0.0886,-1.1605,1.2728,-1.519 +0x1b1e1,CUS_0x7545,August,43,423-96-9115,Accountant,30366.04,,5,3,10,1,Not Specified,0,0,5.74,1,_,607.5299944,32.43147646,,No,16.29635558,279.2749321,Low_spent_Small_value_payments,275.6039315,0,-0.365,-2.8104,-0.6693,-0.2862,-0.2131 +0x1b1ed,CUS_0x48e9,August,34,190-00-1658,Teacher,35822.34,,0,2,2.288361749,2,"Auto Loan, Not Specified, and Auto Loan",0,1,10.26,0,Good,419.31,30.37148685,21 Years and 11 Months,No,76.38448958,571.4400958,Low_spent_Large_value_payments,341.6323757,0,0.1081,0.4348,-0.9997,-0.13,-0.2334 +0x1b1f9,CUS_0x90a2,August,44,983-41-6007,Musician,16578.29,,8,10,21,8,"Personal Loan, Auto Loan, Payday Loan, Not Specified, Payday Loan, Student Loan, Not Specified, and Student Loan",,28,28.55,8,Bad,3566.19,22.27251318,12 Years and 4 Months,Yes,77.75940629,,Low_spent_Small_value_payments,295.0340556,0,-0.5376,0.837,-0.129,-0.6353,-0.0848 +0x1b205,CUS_0x832f,August,54,881-72-4685,Writer,17329.075,,0,4,5,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",6.107754566,8,9.2,,Good,111.6736019,33.0307431,26 Years and 5 Months,No,24.09639413,102.5814955,!@9#%8,273.270531,0,-0.3367,2.3403,0.7767,-0.9052,1.9653 +0x1b211,CUS_0x3f85,August,49,541-08-0830,_______,90875.56,7538.963333,5,3,15,1,Auto Loan,27.45825866,19,7.83,8,_,1009.2,22.75507348,18 Years and 3 Months,No,53.38830576,1000.930805,Low_spent_Small_value_payments,,0,-0.3781,1.4195,1.308,0.673,-1.5493 +0x1b21d,CUS_0x480f,August,54,557-78-3651,Doctor,22431.61,,5,6,5,0,,0,1,4.86,3,Good,1251.915095,26.16652579,17 Years and 6 Months,No,0,175.2186329,Low_spent_Large_value_payments,288.7190092,0,-1.1986,-0.5736,0.2976,1.1846,-1.2109 +0x1b229,CUS_0x8711,August,30,855-80-6839,Writer,18333.79,1576.815833,10,10,28.95700519,6,"Not Specified, Personal Loan, Auto Loan, Not Specified, Personal Loan, and Mortgage Loan",30.04819586,18,6.14,10,Bad,3372.990954,29.07926062,7 Years and 5 Months,Yes,1393.958485,108.797104,Low_spent_Small_value_payments,223.8756247,0,1.1588,-1.0901,0.711,-0.0707,0.3592 +0x1b235,CUS_0x34c9,August,35,678-98-2699,Entrepreneur,7200.005,,6,9,18.95700519,8,"Payday Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, and Home Equity Loan",47.46608816,24.79676624,-2.46,9,Bad,3401.848892,37.51587703,3 Years and 8 Months,Yes,1366.269623,31.36119976,Low_spent_Small_value_payments,219.51885,0,0.9674,-1.1642,0.2459,0.0933,-0.0956 +0x1b241,CUS_0x1e3f,August,26,683-10-1309,Architect,107854.84,,5,5,16,5,"Student Loan, Mortgage Loan, Student Loan, Personal Loan, and Home Equity Loan",17.65489895,15,7.35,6,Standard,876.3821514,30.56779741,16 Years and 2 Months,Yes,338.8412818,439.9659412,High_spent_Medium_value_payments,446.8339314,0,0.2927,-0.4004,1.3355,0.2282,0.4813 +0x1b24d,CUS_0xaa85,August,55,923-89-5318,Accountant,100097.19,8455.4325,5,4,0.288361749,4,"Not Specified, Student Loan, Payday Loan, and Home Equity Loan",,7,8.62,1,Good,717.0026022,28.17092839,22 Years and 4 Months,No,177.2771118,,Low_spent_Small_value_payments,,0,-1.122,-0.4979,-0.6368,-0.6124,0.6656 +0x1b259,CUS_0x63c1,August,46,790-66-8595,Scientist,93233.73,,6,7,17,7,"Mortgage Loan, Personal Loan, Student Loan, Home Equity Loan, Personal Loan, Student Loan, and Auto Loan",16.42676411,14,16.51,7,Standard,783.92,33.21905381,13 Years and 5 Months,Yes,302.9528091,91.67445477,High_spent_Large_value_payments,621.6204861,0,-0.6027,0.6834,1.8948,-0.9932,-0.4405 +0x1b265,CUS_0x4185,August,30,784-40-4293,Journalist,10439.97,,9,5,15,9,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Auto Loan, Payday Loan, Personal Loan, Mortgage Loan, and Payday Loan",19.1290578,,18.21,8,_,4473.82,23.95832745,9 Years and 9 Months,Yes,65.67432346,111.598419,Low_spent_Small_value_payments,223.1270076,0,1.4536,1.8751,0.0988,-0.6164,-1.6578 +0x1b271,CUS_0x3fcb,August,25,176-28-0406,Writer,54667.1,4804.591667,6,5,13,4,"Not Specified, Mortgage Loan, Payday Loan, and Payday Loan",10.71080868,11,23.01,,Standard,401.07,37.21076857,23 Years and 5 Months,NM,129.1771214,,!@9#%8,316.0204274,0,-0.7397,-0.4199,-0.0749,-0.7454,-1.253 +0x1b27d,CUS_0x271b,August,23,564-58-0056,Journalist,69324.2,5896.016667,2,3,6.288361749,0,Debt Consolidation Loan,,1,5.02,6,_,141.0157275,35.95303193,27 Years and 10 Months,No,53.88124181,817.4415621,Low_spent_Medium_value_payments,467.2897502,0,-0.467,0.0364,0.9362,1.7955,1.358 +0x1b289,CUS_0x3379,August,26,824-04-2434,Teacher,8884.17,874.3475,10,6,16,6,"Home Equity Loan, Student Loan, Not Specified, Payday Loan, Home Equity Loan, and Home Equity Loan",46.20052109,23.86955262,8.5,10,Bad,2430.098319,31.96737959,,Yes,29.38971439,51.2873587,Low_spent_Small_value_payments,296.7576769,0,0.2602,0.4609,2.1899,-1.7084,-0.6806 +0x1b295,CUS_0x15d9,August,34,595-11-4463,Doctor,9643.265,829.6054167,9,6,18.06745738,8,"Auto Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Student Loan, and Mortgage Loan",,16.46402136,16.95,14,Bad,3431.742632,38.75759445,5 Years and 5 Months,Yes,43.11790279,,Low_spent_Small_value_payments,247.4954483,0,1.0618,0.8701,0.2724,0.6846,-2.3878 +0x1b2a1,CUS_0x89ba,August,48,199-40-3891,Scientist,58210.38,4283.006425,2,5,2.288361749,4,"Personal Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",9.819887956,11,9.47,5,Good,285.0184755,24.11480042,21 Years and 8 Months,No,534.085787,541.9235738,High_spent_Medium_value_payments,476.0683929,0,-0.1639,-2.3267,0.5827,-1.0024,-0.6792 +0x1b2ad,CUS_0x8bfe,August,25,025-77-6599,Engineer,19016.29,1648.951576,5,5,5,1,Personal Loan,1.707385628,1.207093544,11.42,5,Good,797.6982801,30.69530931,21 Years and 9 Months,No,133.4318971,45.61695764,High_spent_Medium_value_payments,370.8594859,0,0.1685,-1.3783,-1.7239,-1.5066,-1.447 +0x1b2b9,CUS_0xae30,August,37,422-31-6038,Architect,98198.07,8079.1725,1,3,10,3,"Not Specified, Student Loan, and Student Loan",,1.13579406,2.23,2,Good,475.5440791,40.42202562,30 Years and 6 Months,NM,150.1432622,144.3705164,High_spent_Large_value_payments,753.4034714,0,0.4417,-1.0333,1.454,1.0011,0.7742 +0x1b2c5,CUS_0xad2c,August,44,416-04-4760,Lawyer,40667.32,3398.943333,8,6,35.06745738,5,"Debt Consolidation Loan, Personal Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",,20,17.58,13,Bad,4806.090954,38.17381109,3 Years and 10 Months,Yes,126.6683949,427.4799472,Low_spent_Small_value_payments,49.02570331,0,0.3608,-0.7849,-0.5472,-1.0183,1.2435 +0x1b2d1,CUS_0xa9fc,August,36,790-50-8208,Architect,66095.88,,7,4,10,4,"Home Equity Loan, Payday Loan, Student Loan, and Student Loan",21.11387766,17,16.49,1572,_,1122.143576,24.22690458,8 Years and 5 Months,Yes,822.9967544,,Low_spent_Medium_value_payments,56.50022479,0,-1.3977,0.7294,-0.3747,0.9109,-0.6499 +0x1b2dd,CUS_0xedb,August,37,099-33-6440,Architect,46469.28,4038.44,9,5,25.06745738,2,"Auto Loan, and Personal Loan",19.66314593,10.39793915,14.07,12,Standard,3247.644602,29.78931001,8 Years and 6 Months,Yes,59.31112358,,Low_spent_Small_value_payments,280.6665923,0,1.6322,-1.1245,-0.609,0.1856,-0.2477 +0x1b2e9,CUS_0x6d7e,August,23,905-20-7810,Musician,42577.86,3782.155,6,8,20,9,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",38.88665837,23,26.86,14,Bad,4122.31,26.43837454,5 Years and 10 Months,Yes,171.5763383,,Low_spent_Small_value_payments,6.241509617,0,0.5286,-0.9708,-2.0839,0.0059,0.0365 +0x1b2f5,CUS_0x8f20,August,50,099-46-3811,Developer,60390.8,,3,5,9,2,"Personal Loan, and Mortgage Loan",10.17229284,12,2.11,1,Good,973.97,34.72550422,26 Years and 0 Months,No,64.6336995,201.3270006,Low_spent_Small_value_payments,537.6959666,0,-0.5078,2.0423,-0.0721,0.222,-0.6285 +0x1b301,CUS_0xa6db,August,29,782-40-0373,Doctor,14618.9,,8,4,20,6,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",18.63686285,15,9.23,10,Standard,378.6911813,26.19472219,18 Years and 5 Months,Yes,11674,,Low_spent_Small_value_payments,326.233045,0,-2.1409,-0.9131,1.743,0.4576,-2.3497 +0x1b30d,CUS_0x2159,August,53,902-71-6676,Doctor,115380.18,,0,4,12,2,"Auto Loan, and Debt Consolidation Loan",10.16273096,9,,7,Good,101.29,34.09222798,25 Years and 10 Months,No,133.2604608,,High_spent_Medium_value_payments,721.4745983,0,-1.1364,0.5899,-0.0923,0.4569,-1.0701 +0x1b319,CUS_0x1375,August,19,841-27-0645,Lawyer,72524.2,,6,5,17,3,"Mortgage Loan, Debt Consolidation Loan, and Home Equity Loan",46.25939551,26.53727345,8.74,9,Bad,3055.960732,23.07038842,15 Years and 4 Months,Yes,153.0334569,,Low_spent_Medium_value_payments,111.3783504,0,-0.6643,0.7678,-0.3254,-0.0476,-0.7042 +0x1b325,CUS_0x9ebf,August,26,770-43-4626,Manager,131723.24,,4,3,5,4,"Mortgage Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",22.00028614,17.86204152,9.66,0,Good,702.2973793,34.78727855,30 Years and 9 Months,No,385.9717515,234.5173632,High_spent_Large_value_payments,703.704552,0,-1.7847,-1.0696,0.1781,1.1604,-0.3665 +0x1b331,CUS_0x4fd8,August,41,892-27-9488,Manager,49224.84,4225.07,8,6,26,7,"Student Loan, Auto Loan, Auto Loan, Payday Loan, Auto Loan, Personal Loan, and Personal Loan",42.30534591,23.71544858,7.94,11,Bad,2800.758273,28.21417961,14 Years and 0 Months,Yes,166.2795555,64.35568862,High_spent_Large_value_payments,431.8717559,0,-1.4211,-1.1669,-0.7441,1.2579,0.6174 +0x1b33d,CUS_0x2b8a,August,45,964-65-9541,_______,75291.12,6221.26,8,6,21,5,"Credit-Builder Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, and Mortgage Loan",47.70975666,29.96029929,4.56,12,Bad,2731.470749,36.37779344,10 Years and 0 Months,Yes,260.468081,,Low_spent_Medium_value_payments,72.82392393,0,-1.0498,-0.5971,0.7506,1.6061,-0.449 +0x1b349,CUS_0x294b,August,41,738-96-2913,Entrepreneur,16496.82,,10,9,17,9,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Auto Loan",36.92147378,25,17.65,11,Bad,3698.45,24.22740949,1 Years and 4 Months,Yes,65.88958759,79.77533866,Low_spent_Medium_value_payments,242.0085737,0,-0.685,0.3195,0.0046,-0.5997,0.1578 +0x1b355,CUS_0x3813,August,30,859-43-6338,Architect,44616.7,4008.058333,4,6,6,3,"Credit-Builder Loan, Credit-Builder Loan, and Not Specified",28.11518759,20,5.53,1,Standard,252.07,32.79356627,,Yes,109.9205478,198.6458928,Low_spent_Large_value_payments,362.2393927,0,-0.5367,0.8356,1.4012,-1.8266,1.5142 +0x1b361,CUS_0x8440,August,54,815-07-0908,_______,22978.67,1954.889167,3,7,9,0,,,,11.87,2,Standard,822.7572553,36.91085742,21 Years and 8 Months,No,0,69.41517893,High_spent_Medium_value_payments,383.7465604,0,0.0844,-0.8868,-0.9699,-0.5718,0.4013 +0x1b36d,CUS_0x2a67,August,44,579-50-1181,Doctor,78769.32,6277.11,8,5,20,0,,24.04117687,20,11.66,3,Standard,45.87,30.54298921,25 Years and 2 Months,No,0,478.3407116,Low_spent_Large_value_payments,419.3702884,0,0.7353,0.8286,-1.3839,-1.5686,-1.0716 +0x1b379,CUS_0x4387,August,29,201-98-1734,_______,20900.51,1879.709167,9,5,35.06745738,7,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Mortgage Loan, Not Specified, and Student Loan",40.32373723,27.57544002,4.62,14,Bad,1689.113052,27.67879806,,Yes,75.14225223,96.74212413,Low_spent_Small_value_payments,279.3662524,0,-1.0201,1.6606,1.0748,1.4158,-0.0305 +0x1b385,CUS_0xb824,August,48,#F%$D@*&8,Mechanic,40021.11,3233.0925,3,5,5.288361749,0,Debt Consolidation Loan,9.190366827,10.71065539,3.44,2,Good,160.6757869,33.07306016,,No,19.37656742,481.1140154,High_spent_Medium_value_payments,492.7561282,0,0.9093,-1.5913,0.0619,-0.9466,-1.4947 +0x1b391,CUS_0x79c8,August,47,498-09-8022,Manager,85724.7,,5,5,18,0,,25.17963374,18,7.95,6,_,1162.96229,27.70869763,30 Years and 3 Months,NM,0,704.1674279,Low_spent_Medium_value_payments,370.2624555,0,-0.7883,-2.0322,-0.3136,-1.2262,0.0399 +0x1b39d,CUS_0x138f,August,30,569-14-9292,Entrepreneur,20483.84,,7,7,33.06745738,8,"Student Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",44.69168612,25.45584662,4.75,6,Bad,2949.964772,32.29319424,9 Years and 5 Months,Yes,106.1300323,,!@9#%8,124.5039142,0,2.9257,-0.855,-0.596,-0.0014,1.1581 +0x1b3a9,CUS_0x8f63,August,44,#F%$D@*&8,Doctor,10426.84,,6,10,20.95700519,6,"Credit-Builder Loan, Student Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, and Personal Loan",21.63348529,14,24.71,6,Bad,3368.800954,35.22611173,12 Years and 2 Months,Yes,1373.366385,,Low_spent_Medium_value_payments,220.3634887,0,1.2968,-0.1458,1.0069,-3.4051,-0.074 +0x1b3b5,CUS_0x8ff5,August,29,538-49-5240,Teacher,14174.36,924.1966667,7,8,17,8,"Payday Loan, Personal Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, and Not Specified",28.10893663,19,19.43,10,Bad,2870.48,24.31673165,6 Years and 8 Months,Yes,73.77186771,60.52515628,Low_spent_Medium_value_payments,238.1226427,0,0.4673,2.086,-1.7305,-0.0349,-0.6428 +0x1b3c1,CUS_0x6282,August,54,405-49-6814,Entrepreneur,12859.76,,4,7,20,4,"Not Specified, Home Equity Loan, Personal Loan, and Home Equity Loan",21.88722262,14,11.09,3,Standard,531.26,38.66702305,29 Years and 8 Months,No,30.99969078,124.6539205,Low_spent_Small_value_payments,247.7110554,0,2.9269,-0.5183,-0.904,1.0711,-2.698 +0x1b3cd,CUS_0x61f8,August,19,705-61-0374,Developer,19397.6,,10,6,20.06745738,9,"Personal Loan, Home Equity Loan, Payday Loan, Student Loan, Personal Loan, Credit-Builder Loan, Student Loan, Not Specified, and Mortgage Loan",,23,1.08,9,Bad,1508.920954,23.61617451,19 Years and 5 Months,NM,136.3574568,88.28955674,Low_spent_Small_value_payments,192.5793652,0,2.0901,1.3214,-0.2526,1.5567,0.1667 +0x1b3d9,CUS_0x7d17,August,27,797-53-8850,Doctor,12525.745,1004.812083,8,7,11,4,"Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",90,2334,19.18,7,Standard,845.79,34.32831033,17 Years and 2 Months,Yes,28.08067411,80.43314008,Low_spent_Small_value_payments,281.9673941,0,0.2755,-1.8842,-0.6531,-1.5818,-0.6925 +0x1b3e5,CUS_0xa9b,August,39,570-01-4106,_______,123941.64,10499.47,858,7,12,1,Credit-Builder Loan,25.42505241,16.02701363,0.4,4,Standard,1592.293242,33.65339572,30 Years and 8 Months,Yes,54.35523551,403.4499123,High_spent_Small_value_payments,852.1418522,0,-0.7365,-1.1857,0.3345,0.7964,0.0769 +0x1b3f1,CUS_0x3b7d,August,41,293-93-9501,Musician,19164.19,,6,3,8.288361749,2,"Personal Loan, Not Specified, and Not Specified",11.6371416,12,11.21,5,Standard,183.1,28.63418175,31 Years and 6 Months,Yes,80311,446.1874156,High_spent_Small_value_payments,333.6319623,0,0.1334,-0.3693,-0.5516,1.8312,0.0554 +0x1b3fd,CUS_0x21ce,August,51,#F%$D@*&8,Developer,34593.98,,4,4,12,2,"Mortgage Loan, and Mortgage Loan",17.66466547,12,10.47,4,Standard,1453.07,28.72088799,30 Years and 2 Months,No,43.33549073,94.62118374,Low_spent_Large_value_payments,438.1264922,0,0.3009,0.6556,0.4182,-1.5736,2.1781 +0x1b409,CUS_0x17f0,August,26,097-85-1090,Scientist,71460.32,6038.026667,4,543,4.288361749,2,"Credit-Builder Loan, and Credit-Builder Loan",1.732564775,4,7.95,4,_,240.64,35.31231948,17 Years and 0 Months,No,109.8958619,543.4155411,High_spent_Large_value_payments,610.4287247,0,-0.9816,1.2438,-0.8132,0.8398,0.3447 +0x1b415,CUS_0x335a,August,45,807-68-7569,Musician,15599.88,1324.99,6,8,22.95700519,6,"Mortgage Loan, Debt Consolidation Loan, Not Specified, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",52.93217453,27.93415257,20.27,8,Bad,5089.095502,40.3884287,8 Years and 10 Months,Yes,1390.21573,,High_spent_Small_value_payments,207.0904422,0,0.7633,1.2233,-0.8234,0.3384,0.0979 +0x1b421,CUS_0x95b6,August,53,301-02-1316,Developer,30635.16,,3,7,4,0,,6.23231155,9,11.42,3,Good,588.7535619,36.81854619,17 Years and 5 Months,No,0,81.56462732,Low_spent_Large_value_payments,463.1471189,0,2.9179,1.2154,0.0826,0.2616,1.0191 +0x1b42d,CUS_0x22e5,August,50,253-38-4576,Mechanic,95267.49,7974.9575,6,5,13,2,"Student Loan, and Payday Loan",17.82327904,13,4.98,5,Standard,586.28,33.64859621,24 Years and 9 Months,No,113.3195274,,High_spent_Large_value_payments,831.0292414,0,2.0219,0.9874,0.8858,0.3625,-1.2755 +0x1b439,CUS_0x7ec9,August,26,678-29-7359,Musician,171126.04,14431.50333,1,3,6,2,"Mortgage Loan, and Not Specified",16.0426937,13,5.8,3,Good,1093.043516,33.49684416,17 Years and 10 Months,No,192.6871932,1394.260432,Low_spent_Medium_value_payments,319.8008236,0,0.6827,-0.1987,0.3927,1.8549,-0.612 +0x1b445,CUS_0x234a,August,40,#F%$D@*&8,Doctor,16108.46,1262.753448,10,7,26.06745738,6,"Not Specified, Student Loan, Not Specified, Mortgage Loan, Home Equity Loan, and Payday Loan",32.64594647,19,7.91,7,Bad,1670.160954,30.27507846,8 Years and 4 Months,NM,146.2260264,,!@9#%8,179.1103737,0,-1.005,-0.7332,0.7042,0.6673,-0.9239 +0x1b451,CUS_0xb2c4,August,40,794-12-0039,Journalist,15046.85,,9,5,19.06745738,8,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",38.37670767,21.95773265,30.13,12,Bad,3937.925244,36.2026468,12 Years and 2 Months,Yes,100.482112,91.39908631,Low_spent_Medium_value_payments,201.7725233,0,0.1828,-1.3141,-0.2309,1.1056,-0.2473 +0x1b45d,CUS_0x41e5,August,45,127-49-4016,Lawyer,79241.12,,7,5,29,8,"Student Loan, Personal Loan, Student Loan, Not Specified, Mortgage Loan, Auto Loan, Mortgage Loan, and Not Specified",,16,19.32,10,Bad,2978.35,25.84039136,14 Years and 6 Months,NM,282.6396182,282.6644988,Low_spent_Medium_value_payments,373.4385496,0,0.4002,0.7711,1.3874,0.6798,0.1334 +0x1b469,CUS_0x4401,August,39,025-25-9650,_______,101230.32,7667.020573,4,6,6,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",19.40249285,15,15.34,5,_,322.5446293,31.90293483,29 Years and 5 Months,Yes,904.3644876,11276.09568,Low_spent_Small_value_payments,397.6970526,0,-0.8416,0.0794,-1.7475,-0.7603,0.378 +0x1b475,CUS_0x28e2,August,26,474-82-5027,Journalist,17887.47,,7,7,30.06745738,9,"Payday Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, and Auto Loan",,19,26.46,,Bad,5028.170954,32.7785424,,Yes,125.3738459,57.96430755,High_spent_Medium_value_payments,194.2038086,0,-0.2314,1.9594,-0.4069,1.787,0.2132 +0x1b481,CUS_0x2a64,August,22,684-77-9715,_______,49949.84,4002.486667,5,6,18,3,"Payday Loan, Debt Consolidation Loan, and Personal Loan",25.21184449,16,1.24,4,_,1465.06,38.76408433,16 Years and 2 Months,Yes,122.5376287,137.7832223,Low_spent_Large_value_payments,409.9278156,0,-0.981,-0.9911,0.7957,-1.2975,1.1305 +0x1b48d,CUS_0x39f8,August,25,090-26-7091,Writer,14388.79,,6,4,2417,1,Credit-Builder Loan,,10,4.6,7,Good,632.09,36.49570065,15 Years and 11 Months,No,8.862377139,168.6793167,Low_spent_Small_value_payments,248.0648895,0,0.1265,0.2125,1.1057,-0.5634,2.0025 +0x1b499,CUS_0x9dd,August,40,614-63-9684,Entrepreneur,27356.1,,3,4,10,4,"Not Specified, Auto Loan, Auto Loan, and Student Loan",27.96612331,19,4.94,1,Standard,685.14,32.91940396,20 Years and 8 Months,Yes,60.66011126,,High_spent_Large_value_payments,358.4380172,0,-0.6516,-0.934,0.3915,1.5401,-1.0156 +0x1b4a5,CUS_0x2c22,August,33,758-25-2296,Entrepreneur,23625.55,,3,3,19,1,Personal Loan,16.67087761,16,12.37,,Standard,39.76621886,28.10542757,16 Years and 2 Months,NM,13.17120058,29.78475595,High_spent_Medium_value_payments,425.2547731,0,0.3601,-0.0837,-0.8075,1.245,-0.0439 +0x1b4b1,CUS_0x18cb,August,41,171-38-6810,Media_Manager,47093.32,3873.481655,3,6,18,6,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",11.83505029,7.917862907,10.67,10,Standard,1153.610283,35.97668863,8 Years and 10 Months,Yes,281.1022332,219.1161553,Low_spent_Medium_value_payments,251.7876229,0,0.1356,0.0616,-1.2298,-1.9952,0.4209 +0x1b4bd,CUS_0xd9a,August,53,297-58-2164,Scientist,86372.43,6986.7025,2,3,1,0,,11.1795279,11,7.46,7,_,1018.92,39.77766871,22 Years and 4 Months,No,0,529.1994596,Low_spent_Large_value_payments,439.4707904,0,-0.5191,-0.4799,-0.1512,0.5763,0.4186 +0x1b4c9,CUS_0x7e90,August,19,#F%$D@*&8,Mechanic,18128.18,,8,6,26,3,"Auto Loan, Auto Loan, and Not Specified",,10.69926013,8.44,13,_,1501.098489,38.24713203,13 Years and 6 Months,Yes,45.17646007,231.0022784,Low_spent_Small_value_payments,194.8894282,0,1.3127,-0.4467,0.0152,-0.5378,-2.2191 +0x1b4d5,CUS_0x2416,August,32,651-23-3051,Manager,93957.36,8044.78,3,6,13,0,,21.03339964,18,19.03,5,_,1344.71,38.40085619,16 Years and 2 Months,Yes,0,300.179494,High_spent_Medium_value_payments,754.298506,0,1.3854,1.7624,-0.0722,1.8778,1.6591 +0x1b4e1,CUS_0x885c,August,39,314-74-0834,Teacher,31122.32,,0,498,6,3,"Mortgage Loan, Student Loan, and Debt Consolidation Loan",4.19504404,6,8.72,4,Good,701.97,25.57984197,31 Years and 8 Months,No,56.10548709,40.0444104,High_spent_Medium_value_payments,383.8027692,0,-0.3205,1.0608,-0.3238,-1.1167,0.2586 +0x1b4ed,CUS_0x7b8a,August,28,#F%$D@*&8,Architect,16232.14,,5,7,25,2,"Personal Loan, and Auto Loan",31.89832093,22.54002254,19.15,12,Standard,2800.120517,36.34559231,6 Years and 2 Months,Yes,14.97768345,,Low_spent_Small_value_payments,229.0321174,0,0.2118,1.3247,-1.1755,-0.1348,-1.7203 +0x1b4f9,CUS_0x1af1,August,43,650-81-9563,Lawyer,98208.78,8313.065,4,7,3,1,Personal Loan,5.685031612,8.042561518,6.01,3,_,1512.724913,33.76687862,25 Years and 8 Months,No,66.95254182,141.8999438,High_spent_Large_value_payments,862.4540144,0,0.5717,0.4697,0.4167,-0.308,-2.996 +0x1b505,CUS_0x3d64,August,45,038-92-0094,Engineer,19493.51,,6,10,27.95700519,100,"Not Specified, and Mortgage Loan",,4732.008538,16.19,8,Bad,2268.68002,37.04939158,14 Years and 9 Months,Yes,1345.337852,27.86208088,High_spent_Medium_value_payments,321.9956149,0,0.8806,0.1019,0.0718,0.343,-1.1211 +0x1b511,CUS_0xc533,August,43,693-67-8876,Scientist,101785.08,8402.09,6,7,5,100,,17.08756783,12,0.88,7,Standard,700.2,31.17696877,17 Years and 6 Months,Yes,0,760.1183392,Low_spent_Medium_value_payments,360.0906608,0,0.3672,1.4627,-0.0453,-0.4878,0.9952 +0x1b51d,CUS_0x65bd,August,29,616-13-0619,Accountant,14395.83,,8,1110,29.95700519,7,"Home Equity Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, and Home Equity Loan",28.57767352,19.00402209,24.17,14,Bad,3379.01304,26.42016802,2 Years and 8 Months,Yes,1398.278826,37.62121017,Low_spent_Small_value_payments,235.8148443,0,-0.6357,0.578,0.0379,0.077,-0.5182 +0x1b529,CUS_0x1b0b,August,28,001-67-3534,Manager,9709.325,670.1104167,10,8,19,5,"Mortgage Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, and Personal Loan",,29.40626326,9.88,11,Bad,3558.159855,30.49603771,,Yes,25.76739386,0,High_spent_Medium_value_payments,281.5703948,0,-1.2861,0.9861,0.4532,0.8978,-2.0408 +0x1b535,CUS_0x1b55,August,41,468-81-7192,Lawyer,67672.4,,8,1029,27,5,"Auto Loan, Payday Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",36.76628632,24,0.5,10,Bad,1826.19,34.69234172,16 Years and 4 Months,Yes,233.3006243,,!@9#%8,181.9820095,0,-0.5672,0.1674,-2.1862,-0.3037,1.3174 +0x1b541,CUS_0x7d62,August,22,#F%$D@*&8,Doctor,19193.42,,5,6,9,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Mortgage Loan",29.23852752,20,16.83,8,Standard,211.4,30.35157122,29 Years and 5 Months,Yes,37947,79.12078248,Low_spent_Medium_value_payments,299.7077181,0,0.5018,-1.1836,-1.0928,-1.2506,-0.6049 +0x1b54d,CUS_0x975d,August,47,602-97-7518,Doctor,143883.28,12131.27333,4,3,4,4,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",15.47595395,9.355737564,3.56,4,Good,382.9071519,24.63251402,24 Years and 8 Months,No,398.4961967,,High_spent_Small_value_payments,459.093586,0,0.2219,-2.1566,1.2372,0.6755,-0.841 +0x1b559,CUS_0x248e,August,50,154-09-5858,Media_Manager,38551.09,,0,7,3,3,"Auto Loan, Home Equity Loan, and Personal Loan",,4,11.96,4,Good,298.046537,33.83140547,28 Years and 10 Months,No,78.03882884,91.57745712,High_spent_Medium_value_payments,428.0079402,0,1.1786,0.8995,-0.2464,-1.2657,-0.8355 +0x1b565,CUS_0x7eec,August,32,614-46-1339,_______,32635.06,2954.588333,8,6,31,6,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Not Specified, and Home Equity Loan",,28.17811727,3.89,10,Bad,3050.458159,25.03925296,3 Years and 9 Months,Yes,140.4593036,,Low_spent_Large_value_payments,215.0730547,0,0.3409,-1.0117,-0.6375,-1.5618,-0.6316 +0x1b571,CUS_0x3e1f,August,28,764-52-4960,Writer,36320.13,3271.6775,7,6,5,4,"Debt Consolidation Loan, Personal Loan, Auto Loan, and Mortgage Loan",18.93373481,15.16031494,6.71,2,Standard,868.4718899,34.48007285,16 Years and 3 Months,No,106.8130705,194.9384143,Low_spent_Large_value_payments,295.4162652,0,-1.3908,0.1126,0.2305,0.151,-1.9134 +0x1b57d,CUS_0x8430,August,34,459-80-5416,Media_Manager,57744.68,,4,6,8.288361749,4,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",9.248610232,10,3.29,6,Good,674.36,24.81909501,23 Years and 5 Months,No,189.7556356,623.1981556,Low_spent_Small_value_payments,379.3893365,0,1.3418,-0.911,0.5737,0.99,-0.714 +0x1b589,CUS_0xbe12,August,30,244-74-3349,Lawyer,28308.78,,9,6,22,7,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",,14,9.9,8,_,2139.23,26.40175906,9 Years and 11 Months,Yes,139.5164432,,Low_spent_Large_value_payments,154.8951736,0,0.1609,1.3629,1.1491,0.6036,0.1794 +0x1b595,CUS_0x6850,August,28,646-89-4326,_______,46174.58,3652.881667,8,3,4,3,"Personal Loan, Not Specified, and Student Loan",8.152300679,8,1.97,6,Good,1150.435751,40.9786247,21 Years and 8 Months,No,99.83624426,152.2472435,Low_spent_Small_value_payments,424.6967238,0,0.0566,-0.3376,-0.6234,-0.3236,1.3082 +0x1b5a1,CUS_0x9e04,August,28,526-03-5099,Doctor,32889.64,,5,6,6,2,"Not Specified, and Auto Loan",,11.7179504,19.69,9,Standard,202.3222753,32.11148554,12 Years and 10 Months,Yes,47.12580761,71.53528314,Low_spent_Large_value_payments,420.1192426,0,-1.0415,0.3388,-0.507,-0.5679,0.6393 +0x1b5ad,CUS_0xacd,August,43,874-19-0721,Engineer,130091.08,,0,6,4.288361749,4,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",2.641434517,4.606490927,2.89,3,Good,487.3068751,34.93855104,26 Years and 2 Months,No,383.7174522,1410.731577,Low_spent_Large_value_payments,,0,-0.2225,-2.1205,0.3461,0.5949,-1.7538 +0x1b5b9,CUS_0x7a4c,August,38,487-16-7862,Accountant,67101.52,5318.793333,10,7,26.06745738,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Student Loan",22.13572583,12,25.71,7,Bad,4591.260954,30.5571196,11 Years and 10 Months,Yes,320.5388326,68.55106725,High_spent_Large_value_payments,356.0691456,0,-0.1626,-1.6517,0.1066,-1.1013,1.5005 +0x1b5c5,CUS_0x8898,August,27,304-61-2436,Scientist,19551.36,,4,3,19,5,"Student Loan, Not Specified, Auto Loan, Payday Loan, and Student Loan",4.127393579,6,11.51,6,Standard,807.64,23.9340756,12 Years and 8 Months,Yes,67.55643797,114.1800938,Low_spent_Small_value_payments,257.1914683,0,2.5223,1.1589,0.6749,-1.3637,0.2421 +0x1b5d1,CUS_0x4deb,August,46,036-54-9362,Musician,16254.6,,7,7,24.06745738,5,"Not Specified, Personal Loan, Not Specified, Personal Loan, and Credit-Builder Loan",,21.32028965,17.65,7,Bad,3437.910316,39.17365162,8 Years and 4 Months,Yes,59.96225408,,Low_spent_Small_value_payments,261.918588,0,-0.8713,1.4848,0.179,0.7005,-1.6297 +0x1b5dd,CUS_0x4adb,August,21,546-26-9226,Developer,58367.36,4921.946667,5,4,5,2,"Personal Loan, and Personal Loan",7.777698526,9,11.89,5,Standard,1339.95,32.51552661,17 Years and 3 Months,NM,55.5815032,,Low_spent_Small_value_payments,276.3417697,0,-0.0996,-1.1448,0.8901,-0.3942,2.1245 +0x1b5e9,CUS_0xb25e,August,42,561-32-2714,Lawyer,74614.64,6205.886667,5,6,3.288361749,0,Student Loan,0,3,4.6,5,Good,879.62,26.06633702,25 Years and 6 Months,NM,40.21589667,,High_spent_Large_value_payments,773.3441489,0,0.3141,1.7815,-0.373,-0.0793,-0.1073 +0x1b5f5,CUS_0x1613,August,36,572-19-1320,Accountant,43340.44,,3,5,9,1,Mortgage Loan,,11,8.76,4,Good,491.3427905,37.72972487,29 Years and 0 Months,No,35.76445769,,Low_spent_Large_value_payments,484.1870251,0,-0.6478,-1.4856,0.781,-0.8762,-0.823 +0x1b601,CUS_0xbad2,August,49,205-18-4460,Doctor,25376.73,,5,7,3921,2,"Payday Loan, and Personal Loan",,10,4.83,2,Standard,360.0420937,33.0323986,20 Years and 2 Months,Yes,25.91546458,38.21815531,High_spent_Medium_value_payments,429.8113854,0,0.6605,-0.555,-0.3499,-0.1755,-0.1354 +0x1b60d,CUS_0x7f6b,August,31,969-80-4739,Manager,117566.96,9813.246667,1377,291,12,1,Debt Consolidation Loan,,,19.54,3,_,1104.254666,30.87071279,27 Years and 10 Months,Yes,90.96895823,757.2398431,!@9#%8,493.5154334,0,-2.2368,-0.1247,-0.4431,0.8268,-0.6457 +0x1b619,CUS_0x5753,August,24,445-28-8317,Developer,133538.68,,3,7,11.28836175,0,,,,2.07,2406,Standard,1389.91,39.11090365,24 Years and 5 Months,No,0,652.9883083,!@9#%8,1112.471486,0,-0.4771,-1.2069,-0.1733,0.3051,-1.1924 +0x1b625,CUS_0xa2fe,August,49,572-46-1158,Teacher,69605,,3,4,5,2,"Personal Loan, and Credit-Builder Loan",19.3774978,13.8291012,10.97,0,Good,1303.960067,38.74493594,17 Years and 4 Months,No,104.4225431,58.91995886,High_spent_Large_value_payments,630.9991647,0,-0.5947,-1.7495,0.3277,-0.4749,1.136 +0x1b631,CUS_0xc06a,August,32,162-49-4073,Writer,95389.71,,6,7,16,1,Not Specified,8.703288434,5.719233302,11.92,1,Standard,600.2440221,26.15474966,29 Years and 11 Months,Yes,42.20224927,96.48762546,High_spent_Medium_value_payments,877.1243753,0,-0.721,-0.6818,-1.3219,-1.5516,1.437 +0x1b63d,CUS_0x151b,August,80,224-45-3294,Journalist,47165.44,,8,4,7,0,,23.78585142,16,7.76,5,Standard,248.98,37.339742,27 Years and 10 Months,NM,0,254.0774777,Low_spent_Small_value_payments,414.1678556,0,0.2295,-0.872,-0.2437,0.8396,-0.8045 +0x1b649,CUS_0x8653,August,38,489-06-6512,Accountant,14958.54,1090.911474,6,10,19.95700519,7,"Debt Consolidation Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Auto Loan",32.74974876,19,17.88,8,Standard,1969.470954,25.21508429,18 Years and 11 Months,Yes,1496.29015,,Low_spent_Small_value_payments,155.3647156,0,0.9123,-1.2183,-0.5597,2.0485,-0.3647 +0x1b655,CUS_0x4b9f,August,50,097-74-3478,Media_Manager,81365.07,6899.4225,3,3,6,4,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",,16,11.73,5,Standard,1188.76,35.32660679,22 Years and 10 Months,Yes,250.3763595,428.3227113,Low_spent_Medium_value_payments,291.2431791,0,-2.2302,1.3898,-1.1712,-0.2745,-0.6007 +0x1b661,CUS_0x72b4,August,22,001-64-0430,Accountant,8934.615,,8,9,18.88954781,7,"Credit-Builder Loan, Auto Loan, Payday Loan, Auto Loan, Personal Loan, Not Specified, and Mortgage Loan",,20.50574769,22.52,12,_,4399.581006,23.19673071,11 Years and 4 Months,Yes,1359.91337,24.68904178,Low_spent_Small_value_payments,272.8226316,0,-0.1286,-1.2944,1.294,1.8117,0.571 +0x1b66d,CUS_0x86ec,August,24,293-88-4924,Writer,19358.37,,7,10,16.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",39.38711852,25.5302718,8.41,13,_,1891.32976,25.76710881,8 Years and 5 Months,Yes,50.9854327,76.00337595,High_spent_Small_value_payments,272.1106534,0,0.1309,-0.031,-0.8794,-0.57,-0.3408 +0x1b679,CUS_0x8bd6,August,45,035-25-8627,Scientist,18964.73,,7,7,34.06745738,3,"Not Specified, Not Specified, and Auto Loan",32.37371787,22.48858989,9.04,9,_,1895.836483,35.97342503,9 Years and 2 Months,Yes,28.22842539,93.60892435,!@9#%8,298.581779,0,0.6756,0.3948,2.4763,0.3295,-0.9969 +0x1b685,CUS_0x2fd8,August,54,360-83-0076,Musician,116742.54,9924.545,5,3,9.288361749,2,"Payday Loan, and Credit-Builder Loan",0.284373788,5,4.14,6,Good,257.905376,30.66520888,28 Years and 6 Months,NM,186.726035,,High_spent_Medium_value_payments,648.0361846,0,-0.789,-0.4672,0.4299,1.4127,1.563 +0x1b691,CUS_0x4f83,August,44,329-87-7684,Journalist,24127.22,1765.601667,8,5,7,0,,23.05508645,17,7.5,5,Standard,1158.96,31.82960252,30 Years and 9 Months,No,0,50.52411558,High_spent_Medium_value_payments,376.0360511,0,-0.6071,0.2817,-0.7933,0.4929,-0.5951 +0x1b69d,CUS_0xb8ea,August,19,#F%$D@*&8,Journalist,9260.58,1018.715,6,6,31,7,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",19.74446749,,21.94,12,Bad,3726.34,25.41916887,8 Years and 11 Months,NM,53.75560283,62.35111434,Low_spent_Small_value_payments,275.7647828,0,-0.151,-0.048,-0.2203,1.0676,1.1882 +0x1b6a9,CUS_0x7177,August,19,726-84-7401,Developer,69348.7,5512.058333,8,7,11,0,,13.05647121,10,3.53,1,Standard,973.83,25.99558996,30 Years and 10 Months,No,0,114.1190097,High_spent_Medium_value_payments,687.0868236,0,-0.111,0.7131,-2.0905,-0.0346,-0.3212 +0x1b6b5,CUS_0x37e9,August,52,504-96-4851,Architect,31647.02,2725.251667,2,6,5,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",13.63542883,10.34532191,2.49,3,Good,536.3689973,37.49604422,16 Years and 9 Months,No,64.82182516,149.6965474,High_spent_Small_value_payments,318.0067941,0,0.1149,1.5976,1.7681,0.2048,1.5402 +0x1b6c1,CUS_0x57c5,August,28,929-59-4297,Engineer,17296.94,,6,7,11.06745738,3,"Payday Loan, Home Equity Loan, and Auto Loan",,22.83183978,8.58,10,Standard,2291.477409,27.5304373,13 Years and 0 Months,Yes,23.13838956,,Low_spent_Small_value_payments,292.8398898,0,0.0785,-1.0583,1.2284,-0.3875,-0.1387 +0x1b6cd,CUS_0x4d3d,August,80,830-19-3730,_______,78244.68,,4,6,23,5,"Payday Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",32.75597998,22.68859437,14.78,1196,Standard,1951.832152,25.26842271,12 Years and 3 Months,Yes,319.0577322,214.2055501,High_spent_Medium_value_payments,365.0757177,0,-0.4487,-1.7029,2.0495,0.1882,0.3907 +0x1b6d9,CUS_0x446b,August,30,074-04-9417,Media_Manager,11944.675,,5,7,6,3,"Auto Loan, Auto Loan, and Auto Loan",24.73411545,17,6.82,6,Standard,886.94,25.38354671,32 Years and 4 Months,NM,19.87406676,132.3198573,Low_spent_Small_value_payments,238.8450343,0,-0.9928,1.3801,0.5715,-0.8744,1.0534 +0x1b6e5,CUS_0xb25a,August,41,027-13-2378,Architect,30617.62,,5,3,8,3,"Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",14.10669964,10.74264167,7.9,5,Good,1063.398717,33.42126186,32 Years and 0 Months,No,74.01131688,154.6672903,Low_spent_Small_value_payments,314.6682262,0,0.8882,-1.0067,-1.2676,1.0038,-1.0901 +0x1b6f1,CUS_0x7b31,August,37,762-63-6766,Musician,47195.19,3749.9325,9,5,15,7,"Student Loan, Auto Loan, Payday Loan, Personal Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",,25,25.86,9,_,2729.04,37.65748708,3 Years and 10 Months,Yes,178.7482328,47.56053837,High_spent_Medium_value_payments,398.6844789,0,-0.9009,-0.2888,0.7378,0.6297,1.7193 +0x1b6fd,CUS_0xa411,August,46,303-75-5660,Architect,8744.865,,10,5,16.06745738,5,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, and Student Loan",36.87872362,18,15.31,13,_,3816.160954,25.39186071,,Yes,27.76584096,,Low_spent_Medium_value_payments,253.8809892,0,0.9458,0.8957,-1.0084,1.2587,-0.3699 +0x1b709,CUS_0x748d,August,19,928-66-6213,Engineer,136359.64,10083.15676,5,3,2,2,"Not Specified, and Payday Loan",16.20072905,12,9.7,7,_,1329.835295,29.79727055,31 Years and 9 Months,No,1536.725925,,Low_spent_Large_value_payments,406.1668774,0,-0.8189,-0.3366,-0.722,-0.1559,-1.6545 +0x1b715,CUS_0x87f6,August,24,708-31-6386,Engineer,21404.24,,4,6,2173,2,"Not Specified, and Auto Loan",,21,15.44,5,Standard,132.26,35.22327606,14 Years and 5 Months,Yes,21.31059941,102.5613207,High_spent_Small_value_payments,324.8967466,0,1.5083,1.7208,1.4864,-0.9592,-0.924 +0x1b721,CUS_0x2472,August,51,530-80-8025,Teacher,78113.56,,0,4,5663,2,"Payday Loan, and Home Equity Loan",,11.74324814,10.28,7,Good,1114.447844,42.66486379,24 Years and 11 Months,No,103.3982068,122.8394291,High_spent_Medium_value_payments,672.4086974,0,1.1576,0.3161,-0.1588,0.1805,-0.6833 +0x1b72d,CUS_0x2a9f,August,33,019-67-3375,Lawyer,31049.54,,10,10,32.88954781,6,"Student Loan, Auto Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Mortgage Loan",,10.82096211,16.91,10,Standard,2173.624939,38.82633386,15 Years and 10 Months,Yes,1468.622932,,Low_spent_Small_value_payments,246.4226935,0,-0.8135,-0.1545,-0.3996,-0.1814,-0.2391 +0x1b739,CUS_0x147c,August,32,504-71-5417,Teacher,39357.45,,3,4,6,3,"Payday Loan, Payday Loan, and Home Equity Loan",4.048105752,4.775617747,8.16,2,_,1344.106242,35.48153732,25 Years and 4 Months,No,85.72237199,83.45784436,Low_spent_Large_value_payments,413.3985336,0,-0.2376,1.5967,-0.2884,-0.1806,-1.4371 +0x1b745,CUS_0x5f30,August,80,293-52-8798,Journalist,119024.04,,4,7,18,5,"Auto Loan, Mortgage Loan, Student Loan, Personal Loan, and Student Loan",21.65093817,14,18.31,8,_,774.89,30.85453095,16 Years and 4 Months,Yes,282.0350689,,High_spent_Medium_value_payments,707.6502437,0,-2.69,0.6863,-0.7281,-0.4102,-2.7395 +0x1b751,CUS_0x1914,August,26,885-45-5921,Lawyer,66149.48,5230.456667,8,10,30,2,"Student Loan, and Home Equity Loan",42.05530402,22.75680501,2.8,12,Bad,2931.985265,29.47284899,13 Years and 8 Months,Yes,101.0284879,63.1422291,High_spent_Large_value_payments,598.8749497,0,-0.2884,0.4768,-1.7516,-0.3263,-1.2461 +0x1b75d,CUS_0x5d0f,August,42,540-27-6174,Doctor,16287.14,1097.261667,8,5,26,2,"Not Specified, and Personal Loan",18.07008789,17,17.39,6,Standard,1802.72,33.21938428,20 Years and 5 Months,NM,20.4904723,45.26796097,High_spent_Medium_value_payments,293.9677334,0,0.2287,0.1306,0.894,0.4417,0.2401 +0x1b769,CUS_0x8888,August,50,821-29-2322,Journalist,30199.19,,2,2,4,4,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, and Credit-Builder Loan",6.04001846,8,3.65,4,Good,1421.82,37.31617772,27 Years and 3 Months,No,51.40716591,203.5432503,Low_spent_Large_value_payments,289.2095004,0,1.231,-0.8036,0.4505,0.3337,0.6926 +0x1b775,CUS_0x36c4,August,28,642-35-7509,Teacher,20817.92,,4,3,1,3,"Home Equity Loan, Personal Loan, and Auto Loan",0,1,5.2,,Good,822.51,26.24980611,,No,28.04896359,148.9006463,Low_spent_Small_value_payments,277.8330568,0,-0.9234,-0.3722,0.0208,-0.4693,-0.5089 +0x1b781,CUS_0xb039,August,42,396-73-6429,Media_Manager,33461.24,2695.436667,5,6,17,2,"Credit-Builder Loan, and Payday Loan",,20,5.84,1,Standard,1048.02,27.43802648,20 Years and 9 Months,Yes,54.23729636,,Low_spent_Small_value_payments,193.6317605,0,-1.0465,0.6118,0.5265,0.8473,-1.0484 +0x1b78d,CUS_0x1616,August,33,232-16-0697,Architect,34357.96,2632.163333,7,4,30,5,"Personal Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",,9,17.88,5,Standard,1751.09,37.6812563,6 Years and 3 Months,Yes,108.8664956,33.64521164,High_spent_Medium_value_payments,370.7046261,0,-0.2392,-1.7576,-0.2441,1.8881,-0.454 +0x1b799,CUS_0x6f3b,August,52,594-88-0270,Writer,30936.76,,0,5,3,100,"Debt Consolidation Loan, and Personal Loan",0,1,2.44,2,Good,761.34,31.35626569,18 Years and 8 Months,No,33.79669338,279.5836036,Low_spent_Small_value_payments,207.7260364,0,0.674,-0.2078,0.6978,1.0972,-0.3807 +0x1b7a5,CUS_0x583c,August,38,836-54-2857,Accountant,31696.73,2363.394167,3,6,15,0,,16.41415757,12,10.4,7,Standard,942.3439643,26.95242102,21 Years and 8 Months,No,0,53.17858212,High_spent_Medium_value_payments,438.5181957,0,-1.2387,-1.519,-0.853,-0.8825,0.9076 +0x1b7b1,CUS_0xb741,August,38,689-14-0832,Developer,97549.92,8275.16,4,6,11,4,"Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",,,19.24,6,_,1213.26,39.6598479,16 Years and 0 Months,Yes,184.2706384,,Low_spent_Medium_value_payments,166.9479832,0,0.5999,-0.3957,-0.075,-1.5817,0.7722 +0x1b7bd,CUS_0x9e68,August,26,366-23-3329,Manager,53315.28,,6,10,18,7,"Personal Loan, Credit-Builder Loan, Not Specified, Personal Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",17.02152896,,14.12,11,_,1605.239475,36.08373931,7 Years and 2 Months,Yes,229.3937847,72.94728074,High_spent_Medium_value_payments,371.9529346,0,-0.2871,1.1773,0.0466,-0.0523,0.7034 +0x1b7c9,CUS_0x5430,August,46,195-78-8098,Developer,71367.5,,5,4,750,0,,,9,0.81,3,Standard,363.59,27.0529359,24 Years and 5 Months,Yes,0,587.7828717,Low_spent_Small_value_payments,288.246295,0,-0.0338,0.7507,-0.5589,-0.5626,0.0652 +0x1b7d5,CUS_0x3ad0,August,50,630-81-4444,Musician,28630.01,,1,100,3,1,Personal Loan,0.874298053,3,7.81,3,Good,1455.62,30.40489451,28 Years and 6 Months,No,16.39547854,65.53983044,High_spent_Medium_value_payments,431.8481077,0,0.1424,0.3408,0.2389,-1.1286,0.0508 +0x1b7e1,CUS_0x586c,August,45,935-19-6848,Lawyer,34534.82,,3,6,7.288361749,100,Credit-Builder Loan,,5,1.16,8,_,132.98,36.82717347,31 Years and 11 Months,No,23.39463468,,Low_spent_Medium_value_payments,360.0249001,0,0.1869,-1.719,0.3302,-0.9086,0.0611 +0x1b7ed,CUS_0x8638,August,33,529-04-6046,Developer,117827.22,9684.935,1,1,4.288361749,2,"Student Loan, and Student Loan",15.78142943,,17.37,5,Good,1285.701182,28.8119552,19 Years and 8 Months,No,120.2385043,1229.13306,Low_spent_Small_value_payments,431.6160347,0,-0.8206,-1.1215,0.1461,-0.2312,-0.5055 +0x1b7f9,CUS_0x65fe,August,23,#F%$D@*&8,Scientist,7423.97,881.6641667,5,8,22.06745738,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,19.42670418,16.95,14,Standard,2547.055094,30.21411355,9 Years and 8 Months,Yes,17.33751299,45.5923107,High_spent_Small_value_payments,258.516305,0,-0.8117,0.3111,0.3903,-0.2424,0.305 +0x1b805,CUS_0x31ce,August,36,854-78-1111,Developer,16864.18,,5,4,18,4,"Credit-Builder Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",8.495904197,5.663350997,15.3,6,Standard,293.461749,38.04253929,24 Years and 9 Months,Yes,44.27184155,,Low_spent_Small_value_payments,244.6509998,0,0.4688,-0.6288,-0.1563,-0.6849,0.9326 +0x1b811,CUS_0x8336,August,40,#F%$D@*&8,Manager,26738.26,2058.188333,7,6,20,6,"Home Equity Loan, Not Specified, Student Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",18.79766775,15.00733023,22.85,,_,943.5152777,27.24985989,6 Years and 8 Months,Yes,86.26335629,234.5820813,Low_spent_Small_value_payments,174.9733958,0,1.8408,0.8165,-0.3034,-0.1806,0.0811 +0x1b81d,CUS_0x4218,August,31,242-43-4434,Journalist,17150.52,1191.21,8,10,32,5,"Debt Consolidation Loan, Student Loan, Payday Loan, Not Specified, and Auto Loan",20.26198216,16,17.04,9,Standard,2515.23,39.26415015,11 Years and 2 Months,Yes,69.9560558,159.026925,Low_spent_Small_value_payments,180.1380192,0,-1.1586,0.5938,0.1802,0.6989,-0.1888 +0x1b829,CUS_0x7dee,August,44,874-66-5717,Developer,69571.3,,340,7,2,0,,0,3,0.98,5,Good,31.8852288,35.23530866,,NM,0,185.4478209,Low_spent_Medium_value_payments,693.589704,0,1.1616,-0.5897,-0.8073,0.1721,0.1554 +0x1b835,CUS_0xc62a,August,37,320-50-8109,Entrepreneur,70088.36,6090.696667,6,7,22.06745738,9,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",,20.08946333,23.6,7,Bad,5576.358802,39.53338806,14 Years and 5 Months,Yes,413.3316484,71.61745397,High_spent_Medium_value_payments,347.4002763,0,-0.4068,0.0468,-0.7073,1.1072,-0.0771 +0x1b841,CUS_0x2e9e,August,50,450-66-5479,Developer,29745.08,2434.756667,1,4,3,0,,12.86147202,11,7.69,2,Good,438.28,41.25240583,27 Years and 9 Months,No,0,85.5636557,Low_spent_Large_value_payments,427.912011,0,0.403,-0.0978,0.431,0.5364,-0.8619 +0x1b84d,CUS_0x38ad,August,34,790-82-5635,Media_Manager,8108.77,535.7308333,6,3,34,6,"Home Equity Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",,19.23081506,10.62,2207,_,2258.320457,25.76904711,6 Years and 0 Months,Yes,29.75018095,21.72914463,Low_spent_Small_value_payments,292.0937578,0,-0.7582,-0.6324,-0.6453,0.5457,-0.5513 +0x1b859,CUS_0xb6bc,August,31,623-00-8384,Architect,58992.92,,4,6,30,6,"Auto Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Student Loan",,16.48663408,8.39,10,Standard,2318.46729,37.03030752,7 Years and 9 Months,NM,162.0301653,188.6061481,High_spent_Medium_value_payments,397.9713532,0,1.5451,0.1125,0.1306,-0.1151,0.6687 +0x1b865,CUS_0x7e9a,August,22,712-34-6888,Lawyer,14249.04,,7,7,26.06745738,7,"Personal Loan, Student Loan, Auto Loan, Mortgage Loan, Payday Loan, Auto Loan, and Debt Consolidation Loan",30.69895607,16,6.86,8,Bad,1803.380954,32.82845461,12 Years and 9 Months,Yes,80.08231052,,Low_spent_Small_value_payments,205.3938246,0,1.3993,-0.6633,-0.8795,-0.0679,0.7163 +0x1b871,CUS_0xc6e,August,20,860-37-4299,Engineer,60489.88,4996.823333,4,5,4.288361749,2,"Auto Loan, and Debt Consolidation Loan",15.98826968,15,9.48,4,Standard,465.98,30.74081832,25 Years and 4 Months,No,88.90734464,676.2849008,Low_spent_Small_value_payments,444.4275489,0,0.2927,-0.6957,-0.655,-1.1398,-0.0517 +0x1b87d,CUS_0x887c,August,29,872-72-0456,Engineer,15709.22,,9,7,17.06745738,9,"Personal Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Auto Loan, Not Specified, and Student Loan",,21.91408944,2.15,10,Bad,2446.170764,24.13669969,9 Years and 2 Months,Yes,60.27511459,,Low_spent_Small_value_payments,212.6557433,0,-0.9915,1.1595,-1.1362,1.0618,0.8575 +0x1b889,CUS_0x4f70,August,47,021-30-1756,Musician,106770.21,,5,5,10,1,Auto Loan,0.035432665,1,1.28,1,Good,1286.15,31.36357095,,NM,56.01355898,484.0497531,High_spent_Small_value_payments,633.1884379,0,-0.6829,0.2302,0.2814,-0.8068,0.8868 +0x1b895,CUS_0x6410,August,26,876-38-2936,Writer,59390.4,4948.2,9,5,30.06745738,5,"Not Specified, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",,27.96461346,7.04,14,_,5177.25585,38.67165787,9 Years and 11 Months,Yes,204.80544,124.9641344,High_spent_Large_value_payments,378.3301376,0,0.2064,0.1436,-0.8848,0.3738,-1.4426 +0x1b8a1,CUS_0x544a,August,37,331-09-2203,Scientist,14007.82,,9,6,19,5,"Home Equity Loan, Payday Loan, Home Equity Loan, Home Equity Loan, and Not Specified",27.24325656,15,18.9,12,_,3279.57,38.00333935,13 Years and 0 Months,Yes,37.35498229,65.49571845,Low_spent_Medium_value_payments,297.7811326,0,-0.7938,0.0407,-0.7039,0.4548,-0.2722 +0x1b8ad,CUS_0x8a29,August,34,429-57-1086,Mechanic,123085.89,10334.1575,5,7,4.288361749,4,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Auto Loan",9.179791253,10,8.8,3,Good,387.39,39.38411781,,No,379.1967169,799.2766342,High_spent_Medium_value_payments,524.87986,0,-1.5933,0.4944,-1.0757,0.318,-0.9774 +0x1b8b9,CUS_0x24b2,August,45,944-04-5625,Architect,33226.58,,271,4,12,7,"Not Specified, Payday Loan, Personal Loan, Not Specified, Personal Loan, Mortgage Loan, and Not Specified",11.4844791,12,17.26,9,Standard,2090.35,35.6841676,6 Years and 3 Months,Yes,168.4221393,195.4723615,High_spent_Small_value_payments,188.9936659,0,0.7545,1.7813,1.2942,-1.5888,-1.0947 +0x1b8c5,CUS_0xa080,August,80,474-20-1816,Engineer,18802.31,,7,8,19.06745738,8,"Debt Consolidation Loan, Mortgage Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Credit-Builder Loan",34.69361794,21,19.7,11,Bad,4639.730954,30.45334325,5 Years and 11 Months,Yes,66.31256649,53.06428489,Low_spent_Small_value_payments,273.1887773,0,-0.1002,-1.1294,0.2971,-0.5609,-0.2914 +0x1b8d1,CUS_0xaf78,August,25,037-62-3280,Journalist,17414.72,,7,6,15,6,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",11.59377769,10.1776306,12.74,11,Standard,2054.370874,34.80404341,17 Years and 8 Months,Yes,65.37437805,,Low_spent_Small_value_payments,197.5399106,0,-0.2996,-0.8554,-1.8735,2.5551,0.5471 +0x1b8dd,CUS_0xad2,August,21,704-82-7933,Developer,26223.67,,5,6,14,3,"Personal Loan, Mortgage Loan, and Personal Loan",10.53760385,8,8.06,9,Standard,462.91,25.19230099,29 Years and 9 Months,Yes,54.76313024,124.1642447,Low_spent_Small_value_payments,349.8032084,0,2.1479,0.1777,0.6581,-1.16,-0.2065 +0x1b8e9,CUS_0x6f0f,August,36,071-03-6872,Mechanic,35076.16,,2,5,7,1,Personal Loan,5.338613822,6,5.97,3,_,487.26,32.74456328,,No,17.80680769,36.14149344,!@9#%8,502.6530322,0,0.9626,0.0778,0.7896,-0.0617,0.0919 +0x1b8f5,CUS_0xb948,August,29,341-45-1822,Writer,129758.24,10865.18667,4,5,17,6,"Payday Loan, Personal Loan, Not Specified, Personal Loan, Debt Consolidation Loan, and Payday Loan",17.6144881,13,7.81,9,Standard,476.91,29.52608447,7 Years and 10 Months,Yes,643.9488879,131.4298264,High_spent_Large_value_payments,551.1399524,0,-0.0879,-0.6216,1.2106,0.5024,0.9354 +0x1b901,CUS_0x3092,August,52,511-20-0282,Mechanic,125415.96,10271.33,2,3,3,3,"Auto Loan, Personal Loan, and Personal Loan",,12,8.04,1,Good,1145.71,39.13903149,33 Years and 5 Months,No,285.4413434,135.8390618,High_spent_Large_value_payments,845.8525948,0,-0.1824,0.9932,0.0966,0.3872,1.9379 +0x1b90d,CUS_0x6829,August,30,659-94-9530,Architect,52977.54,4711.795,8,7,11.28836175,0,Student Loan,,8,12.27,3,Standard,174.2,39.50459487,28 Years and 4 Months,Yes,42.30739172,599.2070315,High_spent_Small_value_payments,509.6025378,0,0.3847,0.0369,-0.4481,-0.0769,-0.0304 +0x1b919,CUS_0x6f71,August,34,445-60-2482,Lawyer,65076,5160,3,5,4,4,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",12.53379484,12,,4,Good,451.78,33.70537752,22 Years and 10 Months,NM,216.2894216,10000,Low_spent_Medium_value_payments,408.6566784,0,-0.6005,0.4841,0.4364,0.8201,0.7398 +0x1b925,CUS_0x788b,August,23,276-42-6585,Musician,146880.84,,1,6,2,1,Auto Loan,9.015168272,7,9.04,1,Good,346.5562284,46.92057454,24 Years and 5 Months,No,765.9721579,151.2089718,High_spent_Large_value_payments,1248.247886,0,1.1937,-0.459,-0.4691,-2.0464,-0.5048 +0x1b931,CUS_0xa071,August,43,441-89-2484,Scientist,54259.42,,8,6,15,7,"Auto Loan, Payday Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Payday Loan",20.57157082,13,18.95,8,_,847.46,27.08837341,12 Years and 8 Months,Yes,181.3110008,,High_spent_Medium_value_payments,429.6945863,0,0.7953,1.3089,0.021,1.0856,1.4854 +0x1b93d,CUS_0x66eb,August,80,652-88-2122,Lawyer,114364.52,9692.376667,2,3,2.288361749,4,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0,1,3.83,4,Good,382.57,30.27214779,32 Years and 5 Months,No,249.3689573,1350.449506,Low_spent_Small_value_payments,79.35666443,0,-0.8765,-0.5538,1.0084,1.2924,0.5765 +0x1b949,CUS_0xbd57,August,37,227-66-2411,Accountant,108223.71,,1,7,2,1,Home Equity Loan,,10,10.54,1,_,940.7666603,33.49981782,30 Years and 5 Months,NM,1095.265876,238.7477864,High_spent_Large_value_payments,856.9693325,0,1.2993,0.4319,-0.9732,1.0292,-0.9355 +0x1b955,CUS_0x6e3b,August,18,188-95-6418,Doctor,89512.38,7460.365,5,5,9,4,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Student Loan",,3750,4.99,11,_,1257.44,28.89212008,8 Years and 8 Months,Yes,232.2340784,228.4993154,!@9#%8,565.3031062,0,1.1195,-1.6581,-2.2858,-0.5403,-0.2797 +0x1b961,CUS_0x9eef,August,43,640-76-5288,Engineer,16574.41,,272,5,11,7,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",20.89970705,16,7.35,10,Standard,307.19,40.40052422,10 Years and 8 Months,Yes,56.12305995,48.73320724,Low_spent_Small_value_payments,303.4638161,0,0.0568,0.6218,-0.1181,-0.0945,0.4541 +0x1b96d,CUS_0x3f37,August,45,966-71-9349,Architect,44620.44,,0,5,11.28836175,2,"Not Specified, and Not Specified",9.304760998,11,4.57,5,Good,253.0473154,34.14700559,26 Years and 8 Months,No,50.78830523,481.4616561,High_spent_Medium_value_payments,493.2418974,0,0.5171,0.9139,-0.3558,-1.4139,-0.0212 +0x1b979,CUS_0x337b,August,44,160-18-8543,Developer,47506.8,,7,7,28,6,"Student Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",28.95691617,19,,9,Bad,1902.31,36.65239235,10 Years and 5 Months,Yes,132.9955385,136.057792,High_spent_Medium_value_payments,386.3366695,0,0.3593,1.4607,-0.5116,-0.2724,-0.4518 +0x1b985,CUS_0x778a,August,47,737-34-8629,Developer,42193.03,3375.085833,3,5,3257,1,Not Specified,6.392970971,8,1.48,2,Good,1218.38,36.0493732,27 Years and 0 Months,No,28.53257496,324.5317111,Low_spent_Medium_value_payments,264.4442973,0,2.2237,1.5566,-1.0447,0.0557,1.9186 +0x1b991,CUS_0xb861,August,41,151-40-2923,Mechanic,77457.32,,8,313,18,3,"Student Loan, Payday Loan, and Payday Loan",38.16905713,17.72030476,15.42,7,Bad,2469.268089,33.92887695,18 Years and 9 Months,Yes,176.5694801,90.36125436,High_spent_Medium_value_payments,599.2469322,0,1.1099,0.7068,1.3837,0.8994,-0.3456 +0x1b99d,CUS_0x3df4,August,80,171-01-9686,Lawyer,32283.05,2845.254167,8,6,16.28836175,0,,8.055303203,8,6.09,6,Standard,291.29,30.01637383,25 Years and 9 Months,Yes,0,498.536684,High_spent_Medium_value_payments,455.9261936,0,-2.046,0.0926,0.0383,1.93,-0.6855 +0x1b9a9,CUS_0x3a43,August,45,414-10-3877,Engineer,38834.79,3045.2325,0,5,10,3,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",9.679529489,11,13.77,1,_,530.62,36.74463767,,NM,74.28977714,172.1958812,Low_spent_Small_value_payments,348.0375916,0,1.4583,1.4914,0.4563,0.0914,-0.5729 +0x1b9b5,CUS_0xbef8,August,53,566-97-9992,_______,105488.68,8848.723333,3,7,12,1,Student Loan,16.62019049,14,10.83,0,_,921.89,28.28186861,18 Years and 10 Months,No,67028,352.5214085,Low_spent_Small_value_payments,738.3439649,0,-0.0564,-2.0916,-1.7508,-0.8394,0.2652 +0x1b9c1,CUS_0x1ebf,August,50,803-57-9764,_______,17830.415,,4,5,4,2,"Not Specified, and Payday Loan",,,14.45,2,_,1281.41,23.3275921,32 Years and 4 Months,No,17.6137367,34.99230159,High_spent_Medium_value_payments,320.3807534,0,-0.6778,2.5207,-0.2206,-0.0179,-1.0061 +0x1b9cd,CUS_0x3fd9,August,50,856-12-9184,Engineer,76325.67,6644.4725,5,4,17,4,"Mortgage Loan, Home Equity Loan, Auto Loan, and Personal Loan",8.869070246,9,8.37,8,Standard,1392.95,39.08930525,23 Years and 8 Months,Yes,148.6160436,48.51059203,High_spent_Large_value_payments,707.3206143,0,0.4924,1.4754,0.531,0.5354,1.4281 +0x1b9d9,CUS_0x83b5,August,56,963-95-5087,_______,99166.77,,1,7,7,0,,,7,7.92,3,Good,1018.027577,35.62294166,27 Years and 6 Months,No,0,,Low_spent_Medium_value_payments,540.9569857,0,1.2259,0.8098,2.4848,-0.2115,1.5208 +0x1b9e5,CUS_0x83a1,August,55,963-21-5491,Lawyer,134328.9,,2,4,7.288361749,0,,,7,3.76,3,Good,579.41,33.10357239,18 Years and 5 Months,NM,0,619.8424336,High_spent_Large_value_payments,1173.102527,0,0.6977,0.5772,1.265,-1.1527,0.0624 +0x1b9f1,CUS_0x97aa,August,27,#F%$D@*&8,Writer,43831.6,3506.633333,6,7,15,2,"Credit-Builder Loan, and Payday Loan",17.88010142,13,11.08,2,_,1231.16,36.47900681,28 Years and 0 Months,No,66.33023759,112.9342797,High_spent_Medium_value_payments,421.3988161,0,-0.2602,-0.6462,1.8376,-2.1624,1.292 +0x1b9fd,CUS_0x9c2e,August,22,342-20-6397,Accountant,19013.31,1571.4425,979,7,27.06745738,5,"Personal Loan, Auto Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",29.42683855,,23.55,10,Bad,3061.470954,28.82625319,5 Years and 5 Months,Yes,48.73686785,82.25921761,Low_spent_Small_value_payments,289.4278766,0,1.1402,2.2309,-0.6264,-1.7169,0.286 +0x1ba09,CUS_0x50b9,August,44,098-51-0027,_______,28805.89,,2,6,10,0,,,3,11.61,4,_,1124.97,33.20253405,18 Years and 4 Months,No,0,29.70545473,High_spent_Medium_value_payments,471.0436286,0,-0.5382,0.4276,-0.8416,-0.7044,-0.689 +0x1ba15,CUS_0x5dd6,August,24,266-63-0560,Mechanic,48302.48,4325.206667,4,4,10,1,Payday Loan,18.59440572,16,7.55,1,_,843.74,30.98035851,24 Years and 4 Months,Yes,35.74867531,150.8132404,High_spent_Medium_value_payments,495.9587509,0,0.6124,-1.011,0.8915,-0.7155,0.3309 +0x1ba21,CUS_0x1255,August,47,#F%$D@*&8,Scientist,38670.08,,4,5,3,100,Credit-Builder Loan,0,2,3.78,2,Good,632.29,38.66287048,22 Years and 8 Months,No,23.92376088,238.1088704,High_spent_Small_value_payments,343.9180354,0,-1.396,-0.3424,0.0872,0.6018,0.0599 +0x1ba2d,CUS_0x9db5,August,43,573-08-7905,Lawyer,18726.61,1840.550833,6,9,34.06745738,5,"Student Loan, Not Specified, Debt Consolidation Loan, Auto Loan, and Auto Loan",42.92283021,19.84660573,6.72,13,Bad,1924.497251,26.28974559,17 Years and 10 Months,Yes,60.88875602,,Low_spent_Large_value_payments,255.443094,0,-0.5012,1.9102,0.7472,0.2056,-0.1061 +0x1ba39,CUS_0x693a,August,32,623-83-1382,Engineer,32194.56,2663.88,7,5,31.06745738,6,"Student Loan, Auto Loan, Auto Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",36.10888304,19.16318634,5.68,14,Bad,2815.196515,33.49268767,12 Years and 2 Months,Yes,156.0748321,213.4715367,Low_spent_Small_value_payments,160.1213432,0,-0.0002,0.109,-0.7875,1.0484,0.9945 +0x1ba45,CUS_0xaf8f,August,25,715-96-0590,Scientist,38073.2,3367.766667,2,4,5,1,Payday Loan,1.556756611,3,1.05,2,Good,196.95,36.82060323,19 Years and 11 Months,No,28.55143269,10000,Low_spent_Large_value_payments,483.1400302,0,0.0442,-0.1158,0.9131,-0.5208,-1.1157 +0x1ba51,CUS_0x3909,August,33,833-13-6967,Entrepreneur,17423.69,1707.974167,6,5,15,0,,19.88673266,14,16.74,7,Standard,1158.96,31.00819057,31 Years and 9 Months,Yes,0,136.01786,Low_spent_Large_value_payments,304.7795567,0,1.0611,1.6199,0.6407,-0.2707,0.1652 +0x1ba5d,CUS_0x4ed5,August,22,643-76-6748,Doctor,29180.37,,4,4,4,2,"Personal Loan, and Mortgage Loan",25.11670713,18,4.14,6,Good,363.07,35.74364843,31 Years and 3 Months,No,43.76933694,,Low_spent_Small_value_payments,216.2657193,0,0.1545,-0.8028,-1.0222,-0.4454,0.8517 +0x1ba69,CUS_0xba5f,August,28,593-19-5532,Writer,50818.83,,6,5,20,6,"Payday Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Payday Loan, and Mortgage Loan",,30.16305744,18.57,6,Bad,1739.574842,38.91854691,18 Years and 10 Months,Yes,192.1088095,84.83190059,High_spent_Medium_value_payments,384.5495399,0,-2.4005,1.4729,-0.0127,0.9268,0.2154 +0x1ba75,CUS_0x3570,August,80,224-76-2218,Mechanic,10458.16,,6,3,1106,2,"Student Loan, and Mortgage Loan",17.96100457,15,9.77,6,Standard,622.4898833,35.71703027,32 Years and 9 Months,No,9.52183701,44.66395422,!@9#%8,311.8171261,0,-0.6458,-1.0126,-0.9483,1.1137,0.1528 +0x1ba81,CUS_0xa86,August,40,965-66-6963,Scientist,40793.33,3174.444167,5,1,8,2,"Mortgage Loan, and Not Specified",1.342462217,4,3.59,,_,1039.62,26.64005375,25 Years and 10 Months,No,57.34345,116.568968,Low_spent_Large_value_payments,413.5319987,0,-0.8132,-0.0494,-0.5397,-0.0684,-2.7157 +0x1ba8d,CUS_0x5171,August,43,686-96-5490,Engineer,8733.57,,8,10,16.95700519,7,"Payday Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Auto Loan, Auto Loan, and Student Loan",37.34479704,22,22.86,,_,2869.760954,39.24283624,12 Years and 5 Months,Yes,1360.507954,18.75739543,Low_spent_Medium_value_payments,246.9640313,0,0.7682,-0.2339,1.8118,-0.2146,0.722 +0x1ba99,CUS_0x947b,August,26,421-90-5640,Teacher,15781.52,1105.126667,10,5,15,9,"Not Specified, Home Equity Loan, Personal Loan, Not Specified, Not Specified, Auto Loan, Auto Loan, Debt Consolidation Loan, and Not Specified",,19,20.83,11,Bad,3779.95,33.43019483,13 Years and 0 Months,Yes,117.1562033,,High_spent_Small_value_payments,196.3823823,0,-1.437,0.0055,-0.6464,1.18,-0.7206 +0x1baa5,CUS_0x58ad,August,48,504-91-2909,Mechanic,129575.12,,3,3,7.288361749,2,"Not Specified, Payday Loan, and Payday Loan",0,1,7.47,5,Good,1119.28,39.10077685,32 Years and 0 Months,No,306.3300203,10419.93746,High_spent_Large_value_payments,755.594942,0,-0.5804,0.2813,-2.4832,0.4072,0.022 +0x1bab1,CUS_0x5470,August,37,374-45-8189,Doctor,21505.64,1548.136667,2,4,2.288361749,0,Not Specified,0,2,1.2,8,Good,188.3998293,23.63499955,15 Years and 11 Months,No,11.6205015,554.5115698,Low_spent_Large_value_payments,294.9520517,0,-0.2878,0.1161,-0.4641,0.4096,0.2811 +0x1babd,CUS_0x1746,August,27,064-20-9607,Media_Manager,36886.06,,4,5,8,7,"Personal Loan, Mortgage Loan, Auto Loan, Personal Loan, Student Loan, Personal Loan, and Mortgage Loan",,21.79534593,17.73,8,Standard,1462.348121,34.41041435,19 Years and 10 Months,Yes,133.1288213,,High_spent_Small_value_payments,343.5579838,0,-0.1382,-0.132,0.6199,-0.4137,0.1812 +0x1bac9,CUS_0x1278,August,20,144-54-2861,Teacher,12416.06,,7,5,20,0,,,15,7.1,7,Standard,899.73,36.51507978,8 Years and 2 Months,Yes,0,10000,Low_spent_Large_value_payments,340.3128538,0,0.5728,-1.388,-0.054,0.4516,0.5621 +0x1bad5,CUS_0xb27a,August,27,744-49-1403,Mechanic,30320.06,,9,524,20,5,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",46.11563359,26.43370046,7.23,16,Bad,2238.748897,24.68755441,18 Years and 6 Months,Yes,110.291282,,Low_spent_Small_value_payments,130.8510032,0,0.563,-0.197,-1.5386,-0.4716,-1.2485 +0x1bae1,CUS_0x84a8,August,43,819-24-5756,Mechanic,87745.92,7166.16,0,1,1.288361749,0,,0,1,11.08,1,Good,207,37.69998893,20 Years and 11 Months,No,0,889.6273414,High_spent_Small_value_payments,506.9261196,0,0.8159,-0.1776,-1.0657,1.0902,0.4503 +0x1baed,CUS_0x59a5,August,28,621-30-0642,Engineer,78056.04,6384.67,7,5,17,1,Not Specified,17.68462045,14,17.6,10,Standard,248.71,33.97884976,19 Years and 0 Months,Yes,44.08837407,223.5949091,Low_spent_Small_value_payments,660.7837169,0,-0.7028,-0.0783,1.3985,0.3584,0.625 +0x1baf9,CUS_0x6f9,August,28,824-83-8952,Scientist,15201,,10,5,17.06745738,6,"Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Not Specified, and Personal Loan",28.59341533,18.0783617,19.25,12,Standard,2321.19556,36.12156205,16 Years and 0 Months,Yes,47.55214793,51.73832909,Low_spent_Small_value_payments,261.664235,0,-1.68,1.0282,1.0374,-0.206,1.1665 +0x1bb05,CUS_0x4884,August,38,436-81-3133,Lawyer,91390.92,7710.91,4,3,9,4,"Home Equity Loan, Auto Loan, Not Specified, and Credit-Builder Loan",15.49884286,15,17.29,5,_,1436.54,34.55812528,24 Years and 9 Months,Yes,190.2343164,541.0492874,Low_spent_Medium_value_payments,319.8073962,0,0.209,-0.3489,0.5495,0.1146,-2.1054 +0x1bb11,CUS_0x127d,August,43,829-08-2773,Doctor,15096.85,,8,6,20,4,"Home Equity Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",,22.80946723,8.76,6,_,2198.80015,32.51655851,17 Years and 3 Months,Yes,35.31355867,63.66859961,High_spent_Small_value_payments,264.3249251,0,0.4107,-0.1977,-0.7863,0.2577,1.2373 +0x1bb1d,CUS_0xe60,August,24,993-46-9445,Journalist,17340.775,1468.064583,6,212,10,2,"Credit-Builder Loan, and Auto Loan",15.16759488,,18.07,1,Standard,252.17,33.87267648,17 Years and 11 Months,Yes,20.39717672,,Low_spent_Small_value_payments,239.8053217,0,1.3419,-1.6647,-0.0171,0.4863,1.5322 +0x1bb29,CUS_0x37bd,August,33,849-09-5390,Lawyer,61796,,3,5,11,3,"Home Equity Loan, Home Equity Loan, and Personal Loan",22.2643298,15,7.64,7,Standard,2472.48,36.92864764,5 Years and 8 Months,NM,117.4625493,129.50139,High_spent_Large_value_payments,495.6027274,0,1.9981,0.2226,-0.1485,0.6502,0.1709 +0x1bb35,CUS_0x6a56,August,19,258-84-8230,_______,33280.98,,8,5,33,5,"Student Loan, Auto Loan, Not Specified, Personal Loan, and Auto Loan",40.10180856,22.84055878,5.97,10,Bad,1839.870467,25.34863469,16 Years and 0 Months,Yes,116.8375646,75.16725643,High_spent_Small_value_payments,361.6366789,0,1.9989,-0.4615,0.289,-1.2759,0.3737 +0x1bb41,CUS_0x8bbd,August,48,216-36-8255,Media_Manager,17880.045,,8,5,1.288361749,4,"Personal Loan, Student Loan, Payday Loan, and Home Equity Loan",14.95187777,15,-0.39,,_,144.7393126,35.2807333,20 Years and 0 Months,NM,35.33935835,512.253095,Low_spent_Small_value_payments,333.0146598,0,-0.5201,-0.4314,0.2542,-0.7454,0.8418 +0x1bb4d,CUS_0x8977,August,80,900-74-3660,Scientist,58051.53,4819.6275,10,7,32,8,"Payday Loan, Auto Loan, Student Loan, Student Loan, Payday Loan, Not Specified, Auto Loan, and Not Specified",21.86279201,,2.48,12,Bad,2410.535687,34.03902734,16 Years and 2 Months,Yes,312.6446573,,High_spent_Medium_value_payments,250.7907569,0,-0.4406,-0.2707,-0.6982,0.1104,-1.6222 +0x1bb59,CUS_0x9148,August,33,805-29-0745,Entrepreneur,17685.03,1358.7525,8,7,2,100,"Debt Consolidation Loan, and Credit-Builder Loan",23.76745314,19,15.63,0,Good,207.1,31.33847123,17 Years and 8 Months,No,27.20744289,91.91568397,Low_spent_Small_value_payments,306.7521231,0,-0.4456,-0.4598,0.2356,-0.0201,-0.318 +0x1bb65,CUS_0xbf8b,August,35,448-71-2454,Writer,9706.79,,4,7,29,6,"Payday Loan, Mortgage Loan, Payday Loan, Payday Loan, Auto Loan, and Auto Loan",,22.89704627,15.4,10,Standard,2375.997195,34.56231283,16 Years and 5 Months,Yes,27.17656384,,Low_spent_Small_value_payments,283.0434903,0,-0.1141,-0.5174,-0.2118,1.0819,-0.5151 +0x1bb71,CUS_0x1efa,August,44,644-35-1776,Accountant,18598.17,,8,7,16,2,"Student Loan, and Auto Loan",18.87481554,15,12.21,8,_,667.98,29.04753522,20 Years and 5 Months,Yes,18.89639633,,Low_spent_Small_value_payments,354.8958292,0,-0.6784,-1.5922,-0.471,-0.4308,0.8966 +0x1bb7d,CUS_0x66b8,August,49,966-15-7988,Musician,87659.42,,3,5,7,100,"Not Specified, Credit-Builder Loan, Home Equity Loan, and Payday Loan",,1,11.36,1,Good,170.5151911,27.7971635,17 Years and 9 Months,No,238.3084578,,Low_spent_Medium_value_payments,245.1693915,0,0.4335,0.8287,0.0572,1.3234,-0.854 +0x1bb89,CUS_0x3afb,August,52,612-21-7903,Engineer,124782.2,10123.51667,5,3,1,1,Home Equity Loan,11.59526598,9,11.49,2,_,1218.72,44.84646314,,No,61.04176845,116.038939,High_spent_Large_value_payments,1075.270959,0,1.1574,-0.4175,0.939,0.1438,0.9661 +0x1bb95,CUS_0x5f3f,August,44,659-25-1819,Doctor,18192.4,1473.033333,9,7,29,7,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",39.79404305,26.29522342,-0.74,11,_,2823.666049,37.39551803,,Yes,94.49669455,,Low_spent_Large_value_payments,202.0713689,0,-2.0585,-0.6233,1.7926,-0.0368,0.7248 +0x1bba1,CUS_0xa05a,August,36,676-39-7887,Musician,7166.995,,10,1453,31.95700519,6,"Auto Loan, Not Specified, Home Equity Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",55.48953855,30.7110869,26.23,12,Bad,3325.745884,30.15154619,2 Years and 2 Months,Yes,1354.23339,31.32169906,Low_spent_Medium_value_payments,241.9195002,0,0.6654,0.5035,-0.6568,-1.3066,0.0157 +0x1bbad,CUS_0xab07,August,18,551-02-6087,Accountant,61651.29,5140.6075,10,9,32.88954781,6,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",32.55719784,24.15806488,3.11,16,Bad,2034.110949,26.88428095,20 Years and 2 Months,NM,1562.679291,367.4961694,Low_spent_Small_value_payments,179.5552083,0,-1.0919,-1.5005,1.6667,0.6523,-0.4089 +0x1bbb9,CUS_0x5873,August,26,608-02-2079,Developer,40782.69,3157.5575,2,6,7,2,"Payday Loan, and Student Loan",12.1034891,9.11491179,7.68,3,Good,1398.020618,25.70835069,,No,39.54899575,,High_spent_Large_value_payments,470.7394511,0,-0.2213,1.6325,-1.652,0.7227,-1.6652 +0x1bbc5,CUS_0x55f5,August,42,897-29-6692,Journalist,27581.59,,3,7,13,7,"Not Specified, Home Equity Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",,14,10.34,6,Standard,1005.37,35.9620826,12 Years and 10 Months,Yes,103.3174419,71.53277784,High_spent_Medium_value_payments,277.2963636,0,0.8527,1.9646,-1.948,-0.1403,-0.0374 +0x1bbd1,CUS_0x9b20,August,36,746-63-3604,Entrepreneur,28033.88,,8,10,32.88954781,100,"Personal Loan, Payday Loan, Personal Loan, Student Loan, Mortgage Loan, Auto Loan, Not Specified, and Payday Loan",49.36690415,28.02484529,16.46,7,Bad,4018.191413,23.06035363,2 Years and 10 Months,Yes,1424.191506,,Low_spent_Large_value_payments,205.5453698,0,0.4536,-0.5065,-0.8527,0.3186,0.6324 +0x1bbdd,CUS_0x5344,August,55,566-56-7727,Engineer,22330.07,,1,6,12,1,Debt Consolidation Loan,,3,11.93,4,Good,436.5345254,24.08430399,19 Years and 9 Months,No,11.70956163,181.5877077,Low_spent_Large_value_payments,269.5339949,0,-0.1044,0.5573,1.0781,-1.1705,-0.4279 +0x1bbe9,CUS_0x2863,August,50,150-77-6507,Architect,80011.64,6824.636667,7,6,17.28836175,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",17.93640316,16,17.8,12,Standard,689.7341696,30.13334381,5 Years and 10 Months,NM,154.5616136,600.9805742,High_spent_Large_value_payments,612.279899,0,-2.3601,0.5963,1.2775,-2.0605,0.9778 +0x1bbf5,CUS_0xc4b6,August,32,#F%$D@*&8,Musician,119491.24,9782.603333,1,5,10,2,"Mortgage Loan, and Payday Loan",0,1,10.34,3,Good,735.75,41.22553384,17 Years and 6 Months,No,118.0607845,337.5098549,High_spent_Medium_value_payments,772.6896939,0,1.9728,1.9687,-1.1432,-0.1495,-1.3377 +0x1bc01,CUS_0x56a4,August,21,263-81-4607,Entrepreneur,9762.175,,8,8,20.06745738,3,"Payday Loan, Debt Consolidation Loan, and Payday Loan",37.33834613,20,4.06,7,Bad,1960.750954,24.88747552,7 Years and 5 Months,Yes,17.99136472,,Low_spent_Large_value_payments,257.2240279,0,0.4006,-0.4889,0.495,0.8576,-2.0248 +0x1bc0d,CUS_0x36ee,August,47,427-11-3112,Teacher,14842.65,947.0099095,8,5,8,2,"Not Specified, and Mortgage Loan",15.58989313,11,11.22,6,_,1086.11,27.63727808,,Yes,122.2240003,106.7798061,Low_spent_Small_value_payments,273.2625342,0,0.4669,-0.0048,1.9893,0.2016,-1.2068 +0x1bc19,CUS_0x4a78,August,34,383-45-6241,Architect,17785.93,,3,7,1,2,"Debt Consolidation Loan, and Auto Loan",7.91907969,8.535430547,1.74,6,Good,973.7385317,28.52417621,26 Years and 4 Months,No,14.92184685,91.97880178,Low_spent_Large_value_payments,331.5154347,0,-0.5581,0.2271,-0.9842,1.2796,-1.1388 +0x1bc25,CUS_0xbd33,August,38,801-12-1492,Accountant,75503.88,5935.242676,3,5,15,2,"Student Loan, and Home Equity Loan",22.33168206,15,17.02,5,Standard,1427.65,24.96291302,,Yes,704.4693128,405.3923327,High_spent_Small_value_payments,380.2846785,0,0.314,0.9608,0.576,-0.1873,1.4215 +0x1bc31,CUS_0x6247,August,30,589-90-4487,Teacher,100505.49,8538.4575,7,6,17,404,"Student Loan, Personal Loan, and Mortgage Loan",21.71265033,,6.85,2,Standard,1309,28.38064795,31 Years and 10 Months,NM,165.5100008,332.3438327,High_spent_Medium_value_payments,605.9919166,0,-0.3167,-1.3168,0.5585,0.0663,-0.5938 +0x1bc3d,CUS_0x8ebd,August,34,029-29-7952,Musician,8906.93,780.2441667,6,5,21,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Auto Loan, and Auto Loan",34.00238965,22,4.26,8,Bad,2123.11,33.32416102,15 Years and 4 Months,NM,29.121219,49.21596647,High_spent_Small_value_payments,259.6872312,0,-0.0961,0.0201,-1.1506,-0.3218,-0.3849 +0x1bc49,CUS_0xac05,August,44,531-58-6732,Lawyer,91825.8,7836.15,850,6,19,1,Student Loan,21.39921443,16,11.52,8,Standard,785.7085267,42.34104718,24 Years and 2 Months,Yes,48.17164182,11150.9315,High_spent_Small_value_payments,819.3194359,0,-1.5699,-0.8071,-1.5602,-0.5852,1.2118 +0x1bc55,CUS_0x9192,August,80,634-41-0914,Media_Manager,61238.94,,8,3,7,3,"Not Specified, Payday Loan, and Student Loan",12.34604959,9,13.29,5,Standard,864.0528913,36.8810066,17 Years and 3 Months,Yes,606.9522218,129.901953,High_spent_Medium_value_payments,524.5846307,0,1.3066,1.0028,0.8604,-0.7226,0.7092 +0x1bc61,CUS_0xae75,August,26,931-83-8333,Media_Manager,10222.15,899.8458333,6,5,18,9,"Debt Consolidation Loan, Personal Loan, Not Specified, Credit-Builder Loan, Auto Loan, Not Specified, Mortgage Loan, Not Specified, and Student Loan",,22,27.34,9,Bad,4473.83,29.8182628,12 Years and 0 Months,Yes,54.12125838,19.65920238,High_spent_Medium_value_payments,266.2041226,0,-0.3992,1.1018,-1.1129,0.9411,-0.8401 +0x1bc6d,CUS_0x82c2,August,49,044-29-7570,Entrepreneur,31151.46,2479.955,0,3,9,3,"Payday Loan, Personal Loan, and Payday Loan",,7.251787933,10.47,5,Good,70.04183209,34.16413733,16 Years and 2 Months,No,42.49485264,90.69369116,High_spent_Medium_value_payments,364.8069562,0,-1.1331,1.2651,-1.1334,-0.0957,-0.5633 +0x1bc79,CUS_0x7672,August,34,030-11-8911,Accountant,122332.04,9219.325793,1,1,647.2883617,0,,,8,4.41,2,Good,605.35,40.35180677,18 Years and 4 Months,No,1091.010873,,High_spent_Medium_value_payments,953.5512218,0,-0.4674,-1.0625,0.5853,0.1685,0.177 +0x1bc85,CUS_0x1499,August,55,440-22-8350,Engineer,100887.72,8271.31,5,7,19,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Payday Loan",16.67440153,14,11.92,1,_,432.9252437,27.53617371,20 Years and 5 Months,No,257.3363561,618.2200917,High_spent_Small_value_payments,282.7332242,0,0.2274,-0.0957,1.5141,-0.2672,-0.4702 +0x1bc91,CUS_0x8239,August,49,276-58-8741,Developer,84402.42,7044.535,3,3,4,3,"Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",1.03864709,2.320996333,1.17,0,Good,1054.656014,38.08989752,33 Years and 0 Months,NM,176.0584658,265.2071339,Low_spent_Medium_value_payments,543.1879003,0,0.199,0.9278,-0.1604,-1.936,-0.1408 +0x1bc9d,CUS_0xb987,August,18,738-03-2141,Scientist,10186.535,,8,7,30.06745738,5,"Personal Loan, Student Loan, Personal Loan, Mortgage Loan, and Student Loan",,14.44922306,7.18,11,Standard,2989.224717,27.14519559,15 Years and 8 Months,Yes,28.82494915,35.6316277,Low_spent_Small_value_payments,254.1109269,0,0.0052,1.0415,0.9269,1.7784,-0.4635 +0x1bca9,CUS_0x927e,August,54,445-77-0108,Writer,31306.48,2431.873333,9,7,7,0,,21.07796693,16,9.38,2213,Standard,1026.13,38.23464887,20 Years and 2 Months,Yes,0,266.2620486,Low_spent_Small_value_payments,266.9252847,0,-0.2351,0.0392,0.9132,-0.2289,0.5004 +0x1bcb5,CUS_0x1c98,August,19,390-87-7592,Entrepreneur,44297.43,3701.4525,9,7,16.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, Payday Loan, Home Equity Loan, Student Loan, and Mortgage Loan",36.28215768,24,19.28,12,Bad,4302.120954,28.67583987,7 Years and 9 Months,Yes,217.1968675,41.6560272,High_spent_Medium_value_payments,334.5720674,0,-0.2391,1.8074,0.4458,0.1976,2.4217 +0x1bcc1,CUS_0xa9d3,August,26,877-43-1063,Lawyer,26978.17,2419.847723,6,3,8,1,Mortgage Loan,,16.21065707,8.37,7,Standard,1387.08888,36.90678951,17 Years and 10 Months,No,141.2505507,157.0866205,Low_spent_Small_value_payments,366.0140226,0,0.0786,2.249,-0.8489,-1.1331,-0.6534 +0x1bccd,CUS_0x2317,August,18,996-30-8982,Mechanic,47765.76,3830.48,5,3,12,0,,10.46561312,6,13.97,5,Standard,1447.09,25.41949234,19 Years and 5 Months,Yes,0,129.9147331,High_spent_Medium_value_payments,503.1332669,0,1.4501,2.2999,0.4379,0.1681,-2.111 +0x1bcd9,CUS_0xb12,August,39,940-14-8700,Media_Manager,37002.58,,6,7,17.06745738,5,"Auto Loan, Personal Loan, Not Specified, Personal Loan, and Personal Loan",,15,28.3,7,Bad,3445.520954,27.63332939,12 Years and 5 Months,Yes,139.5095619,,Low_spent_Large_value_payments,126.593421,0,-0.5746,-0.345,0.0198,0.4795,0.6148 +0x1bce5,CUS_0xbaa8,August,54,850-41-4179,Accountant,77963.9,,4,4,8,3,"Home Equity Loan, Mortgage Loan, and Student Loan",,10,2.34,1,Good,1301.986095,36.72304629,27 Years and 2 Months,No,136.825947,67.07269487,!@9#%8,716.2030921,0,0.7265,0.6866,0.6629,1.2209,0.5393 +0x1bcf1,CUS_0x3371,August,22,581-39-0550,Architect,61632.99,4856.0825,10,9,27.88954781,7,"Auto Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, and Mortgage Loan",40.78855739,26.24096152,14.88,12,Bad,1853.500851,27.15153007,9 Years and 10 Months,Yes,1635.048405,,High_spent_Small_value_payments,151.490516,0,-0.6604,-1.7867,-0.8948,1.1214,-0.8105 +0x1bcfd,CUS_0x7ba5,August,21,257-56-3896,Writer,53266.23,4310.8525,4,6,16,4,"Student Loan, Student Loan, Not Specified, and Payday Loan",,23.17454919,9.62,6,Standard,2252.905873,41.54680783,9 Years and 11 Months,Yes,176.3947606,74.64124472,High_spent_Medium_value_payments,430.0492447,0,-0.1966,0.1885,0.6134,0.5716,0.0017 +0x1bd09,CUS_0x7ace,August,46,279-65-4803,Media_Manager,124847.49,,4,5,0.288361749,0,,10.8246538,10,11.09,2,Good,67.76686893,31.80314767,19 Years and 11 Months,No,0,,Low_spent_Large_value_payments,737.7580111,0,-0.6547,0.2279,-2.0679,1.2128,0.4802 +0x1bd15,CUS_0xb3e,August,40,615-28-5029,Musician,16451.96,,8,5,28.06745738,6,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Mortgage Loan",,19.39675237,19.9,8,Bad,3789.084659,35.33919206,3 Years and 10 Months,NM,34647,53.21918571,Low_spent_Small_value_payments,262.8483324,0,-0.477,1.012,-0.7808,0.8775,-0.5452 +0x1bd21,CUS_0x5aac,August,26,818-36-4343,Journalist,30385.56,2374.13,0,6,9,3,"Not Specified, Home Equity Loan, and Auto Loan",10.84659495,11,11.09,0,Good,1444.1,31.93644163,31 Years and 2 Months,No,71.2615631,78.96447461,High_spent_Medium_value_payments,337.1869623,0,0.178,-1.2762,0.8956,-0.3945,-1.7825 +0x1bd2d,CUS_0x7c97,August,45,115-44-9898,Developer,44328.93,3452.0775,8,8,781.8895478,9,"Personal Loan, Personal Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Auto Loan, Student Loan, and Personal Loan",,21.83879227,18.04,7,Bad,5281.982774,33.8002259,5 Years and 11 Months,Yes,1611.601017,226.6506991,Low_spent_Small_value_payments,102.6259523,0,0.8319,0.8218,-0.1831,-0.4952,-0.4854 +0x1bd39,CUS_0xd8e,August,29,773-23-5820,Scientist,14638.38,1295.865,7,5,8,3,"Debt Consolidation Loan, Home Equity Loan, and Not Specified",23.89032832,16,8.4,7,Good,392.5888214,39.45916385,29 Years and 0 Months,NM,27.78318655,49.616704,High_spent_Medium_value_payments,308.9882391,0,-0.4671,-0.59,1.3969,-1.0554,0.3375 +0x1bd45,CUS_0x940d,August,32,804-37-1515,Lawyer,25415.42,2339.951667,7,6,11,1,Auto Loan,18.28843686,,8.45,5,Standard,1272.08,29.81174855,20 Years and 9 Months,No,12.23210317,32.58734934,High_spent_Medium_value_payments,439.1757142,0,0.0036,0.5638,-1.1762,0.101,0.9259 +0x1bd51,CUS_0x94aa,August,34,607-98-0542,Media_Manager,15277.06,1225.088333,8,8,28.88954781,6,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Home Equity Loan",,,25.22,13,Bad,4861.83,35.75208303,8 Years and 0 Months,NM,1393.995032,15.00928033,High_spent_Large_value_payments,259.1744392,0,1.044,1.6057,0.0935,-0.4241,1.3944 +0x1bd5d,CUS_0x667d,August,26,446-93-1487,Developer,18413.13,,7,9,19.06745738,2,"Auto Loan, and Personal Loan",,18.02979974,10.09,12,Bad,2461.906222,30.74571875,13 Years and 11 Months,Yes,16.31620166,91.96234438,Low_spent_Medium_value_payments,273.343916,0,1.4502,-0.404,-0.2099,1.2385,0.844 +0x1bd69,CUS_0x41f5,August,33,749-34-5405,Doctor,10701.525,651.79375,3,5,19,3,"Auto Loan, Payday Loan, and Personal Loan",9.112809345,10,5.95,3,Standard,158.95,35.99043877,,No,13.791205,37.48846862,Low_spent_Large_value_payments,283.8997014,0,-0.2561,1.114,1.4292,-1.2742,0.4786 +0x1bd75,CUS_0x95a1,August,33,098-86-1902,Scientist,16218.32,1098.526667,6,6,21,5,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",,21,8.98,10,Bad,4466.33,32.97764197,8 Years and 8 Months,Yes,64.53311371,52.07777713,Low_spent_Small_value_payments,283.2417758,0,-1.0267,-0.1539,-0.6926,0.3067,-0.7473 +0x1bd81,CUS_0x8aa3,August,35,588-36-4233,Engineer,64977.54,5189.795,5,6,3,3,"Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",5.024745465,8,8.26,1,_,1248.25,37.57590654,30 Years and 8 Months,No,159.7070424,389.0600853,Low_spent_Small_value_payments,260.2123723,0,0.2205,-0.5558,-0.2338,0.1286,-1.0891 +0x1bd8d,CUS_0x2141,August,38,148-28-8279,Entrepreneur,14235.22,975.2683333,10,8,25,2,"Mortgage Loan, and Not Specified",,27.06383431,-0.16,11,Bad,2373.379577,23.80607549,13 Years and 0 Months,Yes,18.49661877,63.98417752,High_spent_Small_value_payments,275.046037,0,-0.7281,-0.2986,-0.2757,-1.7173,-0.9476 +0x1bd99,CUS_0x2fb9,August,25,421-61-6452,Writer,41048.83,3379.735833,4,6,11,4,"Payday Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",7.515895147,7,5.23,4,_,1082.8,25.9321477,23 Years and 4 Months,No,110.698801,137.7597332,High_spent_Medium_value_payments,339.5150491,0,2.2624,0.011,0.3258,0.2403,-0.5235 +0x1bda5,CUS_0x5efc,August,34,485-85-8283,Writer,37029.04,,6,7,27.06745738,5,"Payday Loan, Student Loan, Payday Loan, Student Loan, and Student Loan",48.93675399,30.19631998,13.22,10,Bad,2632.995111,24.12207548,12 Years and 0 Months,Yes,117.1392503,136.9577421,High_spent_Medium_value_payments,300.0580529,0,0.6147,-0.1588,0.9962,0.3236,0.6796 +0x1bdb1,CUS_0x4430,August,41,478-10-0136,Writer,47422.23,4077.8525,8,8,19,4,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",35.15644505,26.56680937,3.19,10,Bad,1423.519331,30.83099948,16 Years and 3 Months,Yes,130.4577524,63.43049123,!@9#%8,453.8970063,0,-0.2767,0.1963,0.9972,-0.4707,-0.8767 +0x1bdbd,CUS_0x527f,August,54,657-38-9851,Journalist,114300.32,9644.026667,7,6,5,1,Debt Consolidation Loan,,10,10.09,8,_,518.86,36.96624283,16 Years and 9 Months,Yes,61.8252353,477.2156033,Low_spent_Medium_value_payments,705.3618281,0,-1.1859,-0.6363,-1.8769,0.96,0.3019 +0x1bdc9,CUS_0x530c,August,45,273-49-2019,Scientist,42785.88,,3,4,16,100,Not Specified,15.69887439,16,2.46,2,Standard,1240.45,25.55271871,25 Years and 3 Months,No,25.51917687,202.8769231,Low_spent_Medium_value_payments,418.7529001,0,-0.4364,-0.6044,0.5328,0.8196,0.2099 +0x1bdd5,CUS_0x260b,August,19,858-17-9511,Doctor,81066.76,7043.563333,8,8,24,2,"Not Specified, and Home Equity Loan",35.66306006,18.1122524,12.53,11,_,2619.105013,25.82514988,8 Years and 2 Months,Yes,108.4467376,193.1447698,Low_spent_Medium_value_payments,682.764826,0,-1.4709,0.7791,0.4845,-0.9877,0.7074 +0x1bde1,CUS_0xad31,August,25,769-35-0460,_______,16043.16,1224.93,4,8,31.95700519,6,"Credit-Builder Loan, Payday Loan, Payday Loan, Student Loan, Payday Loan, and Auto Loan",34.05998236,23.52743263,12.12,7,_,2829.776363,32.66659197,11 Years and 2 Months,Yes,1380.021562,,High_spent_Small_value_payments,244.7061558,0,0.3372,0.7293,-1.3953,-0.4454,0.4813 +0x1bded,CUS_0x8ee2,August,36,391-59-4407,Teacher,44599.14,,0,7,4,3,"Payday Loan, Not Specified, and Student Loan",14.03535612,,9.99,4,Good,694.02,36.52311977,,No,83.75037958,,Low_spent_Small_value_payments,217.8249729,0,1.2265,0.8755,-1.1961,0.2204,0.0129 +0x1bdf9,CUS_0x5637,August,30,466-32-4777,Entrepreneur,10196.61,574.7175,8,7,20,6,"Student Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",,17.04059169,14.88,9,Standard,800.6262873,36.76688096,15 Years and 3 Months,Yes,39.5522547,28.22405177,Low_spent_Small_value_payments,279.6954435,0,-0.2044,-0.3243,0.6673,-0.4338,-2.9521 +0x1be05,CUS_0xba4c,August,21,507-44-8168,Lawyer,81418.74,7065.895,1,4,10,100,"Home Equity Loan, and Not Specified",0,3,8.46,1,Good,1207.078005,22.77474216,21 Years and 2 Months,No,121.3785047,621.9227006,Low_spent_Medium_value_payments,300.2673895,0,-0.1789,-0.3224,-2.2545,-0.9256,0.6609 +0x1be11,CUS_0x2fd6,August,80,825-63-0662,Musician,41933.1,,8,10,24,3,"Personal Loan, Home Equity Loan, and Not Specified",44.1521379,27,0.64,17,_,2034.22,24.98999629,12 Years and 6 Months,Yes,64.59604055,38.37515481,High_spent_Large_value_payments,509.6713046,0,0.0898,-0.2496,0.9246,1.5364,1.4572 +0x1be1d,CUS_0xa250,August,31,910-69-7452,Engineer,114987.15,9517.2625,5,4,4,0,,2.335690795,3,9.99,6,Good,1353.495471,33.96410397,19 Years and 9 Months,No,0,168.3521315,High_spent_Large_value_payments,1047.997481,0,0.3527,-1.6407,-0.3469,0.7184,0.2494 +0x1be29,CUS_0x161b,August,38,451-95-0188,Manager,44732.58,3433.242498,6,3,28,3,"Student Loan, Debt Consolidation Loan, and Not Specified",20.31925026,12,19.48,8,Standard,2298.88,35.95997814,9 Years and 0 Months,NM,240.3357268,,High_spent_Medium_value_payments,393.0054945,0,0.1684,-1.3235,0.9631,-0.3957,-0.1358 +0x1be35,CUS_0x80df,August,39,421-37-9507,Developer,17692.555,1711.379583,5,4,9,1,Student Loan,26.03191144,20,,6,_,743.7441135,32.12928344,25 Years and 2 Months,Yes,11.82683948,60.91053304,High_spent_Medium_value_payments,356.0678455,0,-1.1108,-1.6848,-0.6408,-1.1716,-0.3018 +0x1be41,CUS_0x9e45,August,19,879-58-0155,Doctor,16252.485,,1,4,2,1,Personal Loan,5.855003771,9,16.09,1,Good,1216.31,38.58019132,25 Years and 3 Months,NM,11.69835833,,Low_spent_Small_value_payments,310.889841,0,0.6025,-2.3143,-0.1288,1.8109,-1.4099 +0x1be4d,CUS_0x730d,August,53,410-59-8935,Accountant,16243.105,1111.592083,3,3,12,2,"Payday Loan, and Auto Loan",10.57117288,11,7.43,2,Good,877.04,35.4634365,15 Years and 8 Months,No,20.86533767,10000,High_spent_Small_value_payments,300.00944,0,-0.4503,0.4652,-1.8513,-1.0945,-0.5413 +0x1be59,CUS_0x4322,August,18,583-35-1776,Manager,56103.09,4948.2575,8,7,16.06745738,6,"Mortgage Loan, Student Loan, Mortgage Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",,24,20.7,11,Bad,5030.370954,36.4120068,5 Years and 6 Months,Yes,268.8240526,,High_spent_Medium_value_payments,336.1158207,0,-0.0231,0.9203,-0.3696,1.3929,-0.6497 +0x1be65,CUS_0x3d56,August,39,313-51-0955,Media_Manager,14977.93,1293.160833,8,6,32.06745738,8,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Personal Loan, Mortgage Loan, and Payday Loan",27.45090568,18,18.63,10,_,5080.950954,39.21360482,13 Years and 3 Months,Yes,72.66347359,,Low_spent_Medium_value_payments,250.3302299,0,-1.2585,0.7402,-0.3624,0.3953,0.966 +0x1be71,CUS_0x6487,August,27,585-55-8857,Developer,129200.12,10841.67667,7,3,11,3,"Payday Loan, Payday Loan, and Not Specified",,21.94351411,15.71,11,Standard,1605.351236,30.19165468,12 Years and 5 Months,Yes,205.7729199,208.0796713,High_spent_Large_value_payments,910.3150755,0,-1.618,0.0983,-0.8543,0.7407,-0.1608 +0x1be7d,CUS_0x5e2d,August,20,194-13-4239,Mechanic,20969.505,,5,1407,12,4,"Home Equity Loan, Not Specified, Mortgage Loan, and Not Specified",11.66953407,10,7.27,3,_,868.99,26.10619281,15 Years and 11 Months,No,57.70929347,,Low_spent_Small_value_payments,288.8981951,0,-2.431,0.2809,0.1618,0.8551,-1.4596 +0x1be89,CUS_0xbcf0,August,41,150-50-6398,Journalist,49465.98,4256.165,4,4,16,7,"Mortgage Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Auto Loan",16.99502825,12.19666169,12.69,9,Standard,1885.272616,36.04073386,15 Years and 11 Months,Yes,252.956095,100.5033929,High_spent_Large_value_payments,312.1570121,0,0.0794,0.0182,0.3966,-0.3351,-1.4907 +0x1be95,CUS_0xa4c3,August,22,790-26-8070,_______,32179.72,,8,10,34,4,"Debt Consolidation Loan, Auto Loan, Auto Loan, and Not Specified",19.9396549,,15.3,13,Standard,2957.43718,39.41487633,11 Years and 0 Months,NM,87.66662097,51.86563255,!@9#%8,403.3320798,0,-1.2179,1.8114,-0.3206,-0.1912,-0.6056 +0x1bea1,CUS_0x956b,August,40,775-64-4038,Teacher,14482.5,1363.875,7,7,20.06745738,4,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Auto Loan",23.3473032,15.29988466,9.27,12,Standard,2314.854675,37.13991854,,NM,27.21913289,,High_spent_Small_value_payments,249.8769711,0,0.3146,-1.5457,-0.4186,-0.7177,1.9188 +0x1bead,CUS_0x9e80,August,39,209-05-4739,Journalist,104455.02,8892.585,4,4,7.288361749,2,"Debt Consolidation Loan, Auto Loan, and Payday Loan",,,3.94,9,Good,1090.600597,34.23633743,28 Years and 8 Months,No,215.1103231,982.8765961,High_spent_Small_value_payments,446.4925719,0,-0.6213,1.0382,-1.0396,0.0873,-0.0362 +0x1beb9,CUS_0xc356,August,24,030-69-1962,Mechanic,83619.16,7268.263333,10,6,26,9,"Credit-Builder Loan, Mortgage Loan, Payday Loan, Auto Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",50.59960744,27.00461179,28.26,11,Bad,3388.094277,34.6340161,10 Years and 10 Months,Yes,584.3944456,573.0888076,Low_spent_Medium_value_payments,,0,2.7512,0.7034,-0.3394,0.0064,-0.732 +0x1bec5,CUS_0x2e8d,August,32,026-76-5731,Manager,57396.72,5074.06,3,3,12.28836175,2,"Personal Loan, and Mortgage Loan",8.987878038,9,11.8,4,_,351.72,27.22488908,23 Years and 0 Months,NM,61.01002645,,Low_spent_Small_value_payments,183.1788883,0,0.6324,0.8649,0.8638,0.1262,0.876 +0x1bed1,CUS_0x720f,August,37,689-78-3889,Mechanic,58979.34,,7,7,16.06745738,5,"Credit-Builder Loan, Auto Loan, Student Loan, Not Specified, and Mortgage Loan",32.40803109,21,24.51,12,Bad,3643.130954,39.21894899,,Yes,172.247456,120.6917168,Low_spent_Large_value_payments,442.2350393,0,0.2611,-0.7301,1.1394,0.6595,-1.4046 +0x1bedd,CUS_0x5a7d,August,41,352-85-9103,Entrepreneur,33694.79,,8,3,20,3,"Personal Loan, Home Equity Loan, and Mortgage Loan",90,3099,4.82,1,Standard,472.42,32.3463857,16 Years and 0 Months,No,65.81273941,241.3439457,Low_spent_Large_value_payments,262.8332316,0,0.2328,1.5758,-1.5988,0.2987,-0.8708 +0x1bee9,CUS_0x5190,August,51,916-40-9751,Doctor,29042.27,,5,662,7,3,"Auto Loan, Mortgage Loan, and Student Loan",14.63763118,12,7.64,5,Good,94.5,30.16638074,25 Years and 10 Months,No,48.80143974,,Low_spent_Small_value_payments,214.0898316,0,0.7802,-1.6169,0.7831,1.1065,0.3268 +0x1bef5,CUS_0x9bd6,August,18,617-54-3571,Teacher,19531.18,1679.598333,7,10,26.06745738,5,"Auto Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",19.13422717,13,20.74,6,Bad,3270.830954,35.24656454,1 Years and 4 Months,Yes,68.09035731,,Low_spent_Small_value_payments,178.3187073,0,0.0914,3.1727,0.2704,1.0046,0.5181 +0x1bf01,CUS_0x4384,August,35,689-32-7865,Accountant,14985.46,1049.788333,7,4,10.06745738,7,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Auto Loan, Payday Loan, and Mortgage Loan",,11,17.67,8,Standard,2100.890954,40.84504001,6 Years and 2 Months,Yes,76.60426039,25.17531105,High_spent_Large_value_payments,216.4789739,0,-0.5022,0.6451,-0.6518,-0.3318,-0.8634 +0x1bf0d,CUS_0x962f,August,48,545-49-4921,Mechanic,97838.31,8150.1925,0,3,3.288361749,0,Auto Loan,,5,7.77,3,Good,56.47,38.95987385,16 Years and 0 Months,No,74.84749497,729.9188304,High_spent_Medium_value_payments,680.1903856,0,-1.2687,-1.3432,-1.8634,0.9621,1.0902 +0x1bf19,CUS_0x6c9e,August,30,769-05-9517,Journalist,60882.9,,6,6,23,3,"Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",49.23015173,24.10745687,2.41,16,Bad,1976.858468,24.67565751,15 Years and 3 Months,Yes,133.800726,304.1443742,Low_spent_Large_value_payments,347.8123998,0,-1.2833,1.3029,-0.1472,0.0519,0.9248 +0x1bf25,CUS_0x86d9,August,54,828-32-1568,Accountant,20868.005,,2,5,826,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",3.06968878,7,6.13,2,Good,811.2612322,24.25634882,,NM,48.64700916,11169.87221,Low_spent_Small_value_payments,329.6348294,0,2.4902,0.2,1.002,0.272,1.1561 +0x1bf31,CUS_0x5d3f,August,41,160-35-8583,Architect,100127.82,8277.985,4,7,20,2,"Personal Loan, and Debt Consolidation Loan",10.83148926,9,0.51,4,Standard,520.84,31.36644506,,No,85.09912018,598.4047453,Low_spent_Small_value_payments,434.2946345,0,0.003,1.8896,-0.343,-1.4333,1.2147 +0x1bf3d,CUS_0x380f,August,37,420-92-2201,Mechanic,32154.28,2523.523333,3,6,32,3,"Home Equity Loan, Not Specified, and Debt Consolidation Loan",16.11807454,,16.54,6,Standard,2967.604575,31.22376895,6 Years and 6 Months,Yes,74.06279105,29.76690368,High_spent_Medium_value_payments,398.5226386,0,-0.994,-0.2283,-1.1719,0.4438,0.7791 +0x1bf49,CUS_0xb428,August,27,780-95-9814,Writer,18771.54,,10,6,25.06745738,5,"Student Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Personal Loan",40.85977249,26.01796154,17.17,16,Bad,4446.242232,32.71368416,10 Years and 3 Months,NM,46.59855012,39.25928017,High_spent_Medium_value_payments,304.4513818,0,-0.3178,-1.0309,-0.8065,0.9875,0.6021 +0x1bf55,CUS_0x48c0,August,48,272-75-4382,Manager,41898.87,3669.5725,5,194,12,0,,6.12072968,8,1.35,5,Good,850.9801572,33.15525403,29 Years and 8 Months,No,0,260.3030978,High_spent_Small_value_payments,403.2586618,0,0.0441,0.9987,-1.4026,-1.1676,0.4152 +0x1bf61,CUS_0x87b6,August,45,987-86-9689,Lawyer,10024.955,,4,4,11,7,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, and Personal Loan",27.48848109,20,15.03,7,Standard,1157.35,30.28067927,19 Years and 6 Months,Yes,47.27915849,94.01621174,Low_spent_Small_value_payments,242.8459214,0,-0.1762,-0.0028,-1.0752,0.963,-0.5253 +0x1bf6d,CUS_0x5505,August,45,783-68-9980,Doctor,101607.27,8655.2725,4,5,10,4,"Student Loan, Personal Loan, Student Loan, and Mortgage Loan",0,2,0.63,7,Good,1042.82,38.52251351,31 Years and 8 Months,No,228.3827106,209.8403729,High_spent_Medium_value_payments,677.3041665,0,-2.5996,-1.1131,-1.7137,-0.7505,-0.841 +0x1bf79,CUS_0x272c,August,23,972-89-0621,Accountant,12585.205,,8,6,18,3,"Payday Loan, Debt Consolidation Loan, and Personal Loan",26.01463044,18,12.33,13,Standard,1259.3,35.11590602,14 Years and 3 Months,Yes,24.40861897,,Low_spent_Medium_value_payments,309.3302261,0,-1.3537,-0.5168,0.5834,-0.5516,0.4674 +0x1bf85,CUS_0x227e,August,21,529-79-5221,Teacher,58729.36,5114.113333,4,3,15,5,"Payday Loan, Auto Loan, Not Specified, Auto Loan, and Not Specified",90,2080,19.48,5,Standard,1568.33,35.44940673,10 Years and 3 Months,Yes,166.190155,102.1722806,!@9#%8,503.0488977,0,0.8945,-0.5268,3.0581,0.7478,-1.4602 +0x1bf91,CUS_0x3e5c,August,51,466-86-1830,Scientist,70175.78,,3,2,0.288361749,0,,0,2,4.49,3,Good,91.52547264,29.33173036,22 Years and 4 Months,No,821.414481,961.1665454,Low_spent_Medium_value_payments,352.6131878,0,1.0125,-0.9912,-0.2798,-0.6002,-0.019 +0x1bf9d,CUS_0x33cd,August,45,865-29-4760,Engineer,52110.56,4521.546667,6,5,19,1,Auto Loan,22.54696274,19,13.2,1,Standard,1251.99,40.65242862,32 Years and 11 Months,Yes,23.74091217,10000,High_spent_Large_value_payments,577.1755423,0,0.4721,0.5802,1.7065,-0.1859,0.9872 +0x1bfa9,CUS_0x96bc,August,35,936-79-7779,Musician,64721.58,5129.465,3,6,5,1,Auto Loan,,14,10.15,3,Standard,559.19,29.91467319,30 Years and 8 Months,Yes,33.16452453,,Low_spent_Small_value_payments,203.6843242,0,0.8465,-1.6449,-1.667,0.6599,-1.8463 +0x1bfb5,CUS_0xa1bc,August,26,718-92-6793,Developer,45455.94,,7,9,22.06745738,7,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Personal Loan, and Payday Loan",,29.45021909,3.15,15,Bad,4787.458796,25.70450365,3 Years and 4 Months,Yes,224.9823829,,!@9#%8,213.3222367,0,1.015,1.6344,0.8499,1.7827,-0.8142 +0x1bfc1,CUS_0xbc4,August,18,736-62-5736,Developer,60558.63,4948.5525,3,3,13,3,"Not Specified, Student Loan, and Debt Consolidation Loan",,14,19.44,12,_,1018.340861,23.67156135,15 Years and 3 Months,Yes,114.9105605,230.5027746,High_spent_Medium_value_payments,424.595721,0,-0.3924,-1.577,-0.43,0.8256,-1.5985 +0x1bfcd,CUS_0x8138,August,21,346-55-0187,Entrepreneur,33012.39,,5,4,11,0,,,11,12,6,Good,917.25,40.54390028,29 Years and 2 Months,No,0,,Low_spent_Small_value_payments,472.5142266,0,-0.8874,0.8577,-0.7305,-0.1567,1.1785 +0x1bfd9,CUS_0x70c9,August,37,813-21-1686,Scientist,60783.45,,6,7,13,0,,21.0010163,16,15.69,0,Standard,46.28,27.30562318,31 Years and 8 Months,Yes,0,76.12959589,High_spent_Large_value_payments,674.2991541,0,-0.21,1.417,0.9891,-0.4823,0.0407 +0x1bfe5,CUS_0x5fcd,August,45,824-25-3641,Lawyer,83477.58,6718.465,4,7,12,1,Personal Loan,10.08201361,12,1.64,6,_,715.49,34.51071501,,No,42.14395491,146.6281142,High_spent_Small_value_payments,743.0744309,0,1.2675,-0.8015,1.7246,-0.2164,0.5794 +0x1bff1,CUS_0x8382,August,32,853-68-8996,Engineer,54378.51,4369.5425,6,10,15,5,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",,25,1.61,10,Bad,1482.64,26.87710932,16 Years and 11 Months,Yes,153.5068612,10000,High_spent_Small_value_payments,300.8319671,0,-0.1592,0.4438,0.8977,-1.933,-1.2411 +0x1bffd,CUS_0xc61e,August,37,#F%$D@*&8,Manager,35648.94,2742.745,7,3,7,2,"Home Equity Loan, and Not Specified",15.5098742,13,9.34,3,Standard,1053.3,37.27990592,20 Years and 11 Months,No,53.92626247,152.5801717,Low_spent_Small_value_payments,357.7680658,0,-0.7609,1.6344,-0.4643,0.6851,-0.0152 +0x1c009,CUS_0x6e0d,August,18,705-31-6855,Scientist,38883.92,3163.326667,6,3,10.28836175,2,"Debt Consolidation Loan, and Payday Loan",10.59057184,10,16.8,11,Standard,23.58,31.56280028,27 Years and 6 Months,NM,53.58513706,,High_spent_Small_value_payments,426.5371214,0,-0.2086,1.6912,-0.3271,-0.5129,-1.1403 +0x1c015,CUS_0x7541,August,19,224-61-7149,Manager,19821.65,,8,8,32,3,"Personal Loan, Student Loan, and Personal Loan",18.88961048,15,7.07,14,Standard,2609.26,25.4785583,11 Years and 11 Months,Yes,228.9095155,78.82350822,Low_spent_Medium_value_payments,294.0235384,0,2.7677,0.0493,0.5104,-0.2511,-0.261 +0x1c021,CUS_0x3b3b,August,45,947-32-6305,Scientist,19595.95,,8,8,17.95700519,9,"Student Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Personal Loan",49.79512149,28.83196757,6.44,8,Bad,1672.70206,25.69606884,12 Years and 10 Months,NM,1454.646557,,High_spent_Medium_value_payments,207.6069074,0,-0.246,-0.7906,-0.5261,-0.805,0.4779 +0x1c02d,CUS_0x7319,August,50,847-33-7456,Scientist,63362.6,5036.216667,4,6,15,1,Student Loan,21.55931794,16,16.57,6,_,302.87,35.11842035,21 Years and 6 Months,Yes,30.17383525,608.8605159,Low_spent_Small_value_payments,154.5873156,0,0.3439,-1.1339,0.6988,0.938,-0.8479 +0x1c039,CUS_0x3533,August,36,873-30-9565,_______,50155.74,4312.645,4,7,18,6,"Not Specified, Personal Loan, Home Equity Loan, Credit-Builder Loan, Student Loan, and Mortgage Loan",17.72329722,13,17.14,9,Standard,2358.09,26.74229148,13 Years and 9 Months,Yes,187.5774228,62.14919925,High_spent_Medium_value_payments,431.5378779,0,-0.0137,0.4177,-0.5898,-0.5823,-0.53 +0x1c045,CUS_0x7fc7,August,60,827-76-1265,Musician,64193.97,5530.4975,6,7,1,1,Credit-Builder Loan,12.07805428,9,4.61,6,Good,24.80802189,36.59572729,24 Years and 0 Months,No,44.99029379,142.9187834,High_spent_Medium_value_payments,630.3257552,0,-1.347,1.8709,-0.4454,0.459,-1.585 +0x1c051,CUS_0x4b67,August,35,912-84-1903,Mechanic,19303.21,1437.600833,6,5,28,7,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",29.94752609,21.53062186,9.44,14,Standard,2941.63225,24.73559741,16 Years and 4 Months,Yes,107.5469258,,Low_spent_Small_value_payments,135.9894603,0,1.3848,-0.5958,0.582,-0.9056,0.7189 +0x1c05d,CUS_0x6312,August,35,524-43-3739,Media_Manager,31780.12,2473.343333,10,6,25.06745738,100,"Auto Loan, Credit-Builder Loan, Student Loan, and Auto Loan",,19,6.9,10,Bad,2186.620954,25.75631328,9 Years and 0 Months,Yes,71.60048004,170.5033051,High_spent_Small_value_payments,238.5102603,0,-0.3034,1.7703,-0.1301,-1.6313,-2.1668 +0x1c069,CUS_0x95d2,August,36,058-15-1906,Mechanic,103221.21,8699.7675,5,5,7,2,"Home Equity Loan, and Home Equity Loan",25.60292958,17,8.51,5,Standard,1256.48,30.06288373,27 Years and 3 Months,Yes,136.709553,172.9550479,High_spent_Large_value_payments,800.3121492,0,0.1969,0.2924,1.2522,-0.2805,-0.3142 +0x1c075,CUS_0x4b1c,August,49,579-85-2474,Architect,20455.28,1407.606667,4,4,2,4,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",9.232077213,8.989916302,6.92,5,Good,478.1186412,26.64798578,22 Years and 11 Months,No,46.74449377,,Low_spent_Small_value_payments,234.7180786,0,-0.5094,-1.1911,0.7624,-0.2145,0.6841 +0x1c081,CUS_0x242d,August,31,#F%$D@*&8,Doctor,15440.42,,7,6,13,0,,14.53804974,14,7.48,4,Standard,1277.85,39.15343994,19 Years and 5 Months,NM,0,10000,Low_spent_Small_value_payments,289.8232258,0,0.174,1.1613,-1.3431,0.3877,0.2982 +0x1c08d,CUS_0x1930,August,25,990-90-4400,Teacher,40197.28,3415.773333,6,5,16.28836175,4,"Mortgage Loan, Credit-Builder Loan, Auto Loan, and Not Specified",9.067345392,9,16.94,7,_,124.52,24.68781017,19 Years and 11 Months,Yes,100.0914446,526.4134566,Low_spent_Large_value_payments,405.0098931,0,1.4863,0.9594,1.423,1.7434,-0.0936 +0x1c099,CUS_0x5803,August,50,132-89-9622,Entrepreneur,123526.8,10241.9,1,6,8.288361749,4,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Not Specified",0.775341728,4,2.25,3,Good,848.4577333,28.88275671,20 Years and 8 Months,No,291.0185936,1072.888313,High_spent_Small_value_payments,432.4718297,0,-1.1046,-1.0561,-0.2107,1.1147,0.099 +0x1c0a5,CUS_0x86c7,August,35,232-33-5704,Entrepreneur,55563.4,4550.283333,9,8,5,0,,,2666,4.81,0,_,1276.302043,37.35116711,26 Years and 4 Months,No,0,447.8101121,Low_spent_Medium_value_payments,344.7167268,0,-1.1646,0.9807,1.6126,0.2068,-0.2687 +0x1c0b1,CUS_0x3910,August,41,400-19-4065,Mechanic,63661.6,5598.133333,3,5,16,2,"Student Loan, and Personal Loan",8.11513705,7,1.03,1,Standard,1167.2,30.28263453,28 Years and 3 Months,No,69.43553038,482.9356931,Low_spent_Small_value_payments,297.4421098,0,1.1646,0.1295,-0.1493,0.2131,1.3736 +0x1c0bd,CUS_0xa630,August,28,072-69-5509,Writer,12498.945,1173.57875,5,3,18,4,"Credit-Builder Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",17.35454284,,5.1,0,Standard,605.3771347,28.84934208,31 Years and 3 Months,No,30.87149111,80.07971266,High_spent_Small_value_payments,275.8404505,0,-0.1344,-1.8512,0.4466,-0.722,0.4039 +0x1c0c9,CUS_0x91b,August,38,128-22-7100,Developer,69073.65,5560.763864,6,7,7,6,"Mortgage Loan, Not Specified, Debt Consolidation Loan, Not Specified, Personal Loan, and Mortgage Loan",13.04884286,10,16.31,10,Standard,447.6568111,26.85372696,12 Years and 2 Months,Yes,473.9121331,,High_spent_Medium_value_payments,324.627689,0,0.0566,0.034,-0.9693,-0.7755,-0.0495 +0x1c0d5,CUS_0x394a,August,37,438-68-7121,Media_Manager,108073.04,9117.086667,3,7,12.28836175,2,"Not Specified, and Mortgage Loan",,19,6.42,5,Standard,547.9765433,36.53210065,29 Years and 6 Months,No,161.7532348,1145.938046,Low_spent_Medium_value_payments,411.2733716,0,-0.0848,-0.6918,1.1369,1.3039,0.5272 +0x1c0e1,CUS_0x535a,August,56,359-11-2781,Manager,32297.67,2924.4725,6,5,2,4,"Mortgage Loan, Credit-Builder Loan, Student Loan, and Not Specified",15.66408097,13,5.64,4,Good,1153.488172,37.91889568,17 Years and 10 Months,No,73.1894397,151.9939671,!@9#%8,348.3718765,0,0.9568,-0.3123,0.6247,-0.5786,0.2342 +0x1c0ed,CUS_0x5959,August,30,700-76-6380,Developer,57857.1,,4,8,30,3,"Auto Loan, Student Loan, and Auto Loan",23.59553754,14.99598288,13.8,8,Standard,2217.859173,32.15296159,,Yes,85.77311384,,High_spent_Large_value_payments,520.0279959,0,0.1188,-0.7502,-0.2423,2.345,-0.7065 +0x1c0f9,CUS_0x184c,August,23,330-09-7564,_______,14666.23,,6,9,27,100,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Not Specified, Home Equity Loan, Student Loan, and Debt Consolidation Loan",37.56359256,22.20749548,5.61,13,_,5333.266817,39.29934519,11 Years and 10 Months,Yes,73.15470853,34.46132163,High_spent_Small_value_payments,266.9025532,0,-1.758,-0.2202,0.409,1.3084,-0.9936 +0x1c105,CUS_0xb143,August,28,985-00-2568,Entrepreneur,36631.98,,8,10,27.88954781,6,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Credit-Builder Loan",,20.72126589,,12,Bad,2519.244804,30.97198501,18 Years and 2 Months,Yes,1465.825411,228.3690842,!@9#%8,215.1419233,0,0.1224,-0.1522,0.8614,-2.6602,-0.6126 +0x1c111,CUS_0x9f80,August,44,387-40-1446,Musician,44749.97,3452.164167,1,7,1,0,,6.851982993,6.760350251,6.72,0,Good,384.6948524,27.59274122,22 Years and 2 Months,No,0,59.14749045,High_spent_Large_value_payments,526.0689262,0,-1.2684,-0.0057,-0.3942,0.327,-1.6639 +0x1c11d,CUS_0x15b7,August,37,#F%$D@*&8,Engineer,54201.99,4535.8325,6,9,30,3,"Debt Consolidation Loan, Student Loan, and Home Equity Loan",,28.47734261,0.66,8,Bad,2637.177423,29.57612881,9 Years and 2 Months,Yes,108.1096743,576.8115891,Low_spent_Small_value_payments,58.66198658,0,-1.7095,-0.4637,0.8876,1.4556,-1.2472 +0x1c129,CUS_0x2b60,August,27,386-57-0586,Writer,60400.17,,6,8,30.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Payday Loan, Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",,29.27660711,30.02,15,Bad,4728.468227,36.40022248,5 Years and 3 Months,Yes,211.6558316,133.1747816,Low_spent_Medium_value_payments,409.4838489,0,1.6765,-2.1219,1.4778,-1.9541,-1.99 +0x1c135,CUS_0xf55,August,39,025-54-8593,Entrepreneur,78443.48,6358.956667,7,5,23,4,"Personal Loan, Home Equity Loan, Mortgage Loan, and Student Loan",35.72061823,21.30889857,6.37,6,Bad,1682.307439,24.70442855,15 Years and 10 Months,NM,177.3875626,528.7469053,Low_spent_Medium_value_payments,209.7611988,0,1.0372,-0.4272,0.0151,-0.6757,0.8852 +0x1c141,CUS_0x24af,August,37,282-99-3136,Mechanic,89122.38,,3,4,14,5,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Auto Loan",5.242278,7.841455019,19.64,8,_,315.7641408,39.81212495,8 Years and 9 Months,Yes,266.0838269,295.151154,High_spent_Small_value_payments,422.9515191,0,1.5249,-0.8035,-1.2643,-0.6838,-0.1014 +0x1c14d,CUS_0xba96,August,38,850-35-4831,Entrepreneur,20378.795,,3,5,2,4,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Payday Loan",0,3,0.85,3,Good,1438.9,30.84066289,16 Years and 2 Months,No,50.09585548,18.06814674,High_spent_Medium_value_payments,324.6592894,0,0.1313,1.2367,-1.9138,-0.0507,-3.3972 +0x1c159,CUS_0x56f6,August,54,763-69-8653,Scientist,22205.61,2037.4675,6,5,11,3,"Home Equity Loan, Mortgage Loan, and Payday Loan",10.74776424,11,8.1,3,Standard,207.04,24.18470377,26 Years and 6 Months,No,46.07909857,167.0893596,Low_spent_Small_value_payments,280.5782918,0,-1.5428,0.2339,1.8381,-0.7179,-1.4743 +0x1c165,CUS_0xa403,August,18,814-00-0664,Media_Manager,15344.79,1311.7325,5,6,7,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Home Equity Loan",,10,12.63,10,Standard,976.94,32.32451049,12 Years and 9 Months,Yes,33.05543447,134.5094251,Low_spent_Medium_value_payments,243.6083904,0,0.3733,0.5069,0.8378,-0.4961,1.6096 +0x1c171,CUS_0xaa0d,August,40,423-37-0253,Doctor,17267.895,,0,5,6,1,Not Specified,4.061479788,7,2.97,3,_,1292.69,30.32151059,22 Years and 3 Months,No,12.08243605,34.37001281,High_spent_Small_value_payments,377.5466761,0,-0.6905,-0.7343,1.4558,-1.0917,-0.9787 +0x1c17d,CUS_0x8e7f,August,31,562-19-0606,Lawyer,47119.29,3637.6075,7,5,24,6,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, Personal Loan, Personal Loan, and Debt Consolidation Loan",34.70781976,26,4.06,15,Bad,2773.96,38.65279114,13 Years and 11 Months,Yes,29519,150.2914275,High_spent_Medium_value_payments,282.0657987,0,-0.8107,1.4448,-0.6198,1.3972,0.7674 +0x1c189,CUS_0x5c65,August,42,743-12-2665,_______,94110.06,7920.505,4,7,9,4,"Mortgage Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",,12,8.59,0,Good,1088.364425,41.34365998,18 Years and 2 Months,No,307.4500461,277.7806191,!@9#%8,495.334506,0,0.6162,-0.3539,-0.5708,-0.7952,0.0483 +0x1c195,CUS_0x8e00,August,33,001-96-3136,_______,18849.55,1795.795833,7,10,33.06745738,5,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",27.3575939,15,5.23,12,_,2910.500954,29.7437841,16 Years and 0 Months,Yes,64.24406439,,Low_spent_Large_value_payments,294.1676376,0,-0.1483,-0.0112,-0.172,0.9002,-1.1397 +0x1c1a1,CUS_0x108a,August,38,394-00-8142,Journalist,36982.36,,8,9,21.88954781,9,"Student Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Student Loan, and Personal Loan",18.36883507,15,24.61,15,_,4882.12,32.00299359,7 Years and 9 Months,Yes,1777.902996,275.8074536,Low_spent_Medium_value_payments,66.89531234,0,-1.0516,-1.0696,0.1834,1.0611,0.2914 +0x1c1ad,CUS_0xb23c,August,25,051-18-4651,Musician,142106.96,11621.24667,6,3,19,0,,24.11649225,17,6.46,,_,506.3464416,29.8561875,22 Years and 10 Months,No,0,,Low_spent_Large_value_payments,365.3927061,0,0.453,-0.5043,1.5596,-1.9985,0.9392 +0x1c1b9,CUS_0xb77f,August,27,047-56-2054,Engineer,20355.43,,8,436,26.88954781,100,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Student Loan, Personal Loan, and Payday Loan",,18.38704123,3.47,14,Bad,2179.351453,38.71157701,13 Years and 3 Months,Yes,1386.190982,105.3548585,Low_spent_Small_value_payments,266.2526611,0,-0.3746,0.1642,-1.1148,0.7331,-0.4813 +0x1c1c5,CUS_0x40b1,August,21,774-77-2188,Developer,25191.69,,5,3,19,4,"Personal Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",15.6637227,,16.2,10,_,805.57,38.41044235,20 Years and 4 Months,Yes,79.85401928,206.3263064,Low_spent_Medium_value_payments,212.8504244,0,-1.1959,0.4794,-1.1799,0.064,-2.0073 +0x1c1d1,CUS_0x7fe,August,25,001-92-5338,Doctor,14444.875,,1,4,11,4,"Personal Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",13.50180729,,9.56,6,Good,1103.389729,38.6834029,29 Years and 5 Months,NM,31.79486769,53.09172233,High_spent_Small_value_payments,322.656994,0,-0.6001,1.3782,-0.3251,-0.243,0.3896 +0x1c1dd,CUS_0x4fa6,August,22,085-81-0307,Lawyer,33884.76,2626.198629,7,5,17,3,"Mortgage Loan, Auto Loan, and Student Loan",56.47831579,30.14701491,10.01,12,_,1562.817228,25.05203648,20 Years and 4 Months,Yes,341.8414952,226.8041248,!@9#%8,270.4587507,0,-0.0141,-0.2544,-1.1317,-0.2344,0.596 +0x1c1e9,CUS_0xb9c7,August,22,708-66-1961,Manager,57544.23,,9,5,3888.067457,6,"Auto Loan, Mortgage Loan, Student Loan, Not Specified, Personal Loan, and Auto Loan",41.10129709,25.14378517,23.63,10,Bad,5230.656239,28.4070921,12 Years and 11 Months,Yes,175.3425542,,High_spent_Medium_value_payments,382.6540388,0,0.6287,0.1405,0.8474,0.1385,0.8967 +0x1c1f5,CUS_0x8b2c,August,26,183-84-8459,Entrepreneur,71479.6,6184.633333,1,3,7.288361749,4,"Home Equity Loan, Credit-Builder Loan, Payday Loan, and Student Loan",15.69632423,14.61238278,10.3,2,Good,580.9750949,35.25580236,28 Years and 10 Months,No,184.0252903,589.0485205,High_spent_Medium_value_payments,515.3269835,0,1.333,-0.4312,0.6408,-0.2728,1.8656 +0x1c201,CUS_0x8b74,August,21,086-87-0866,Engineer,59986,,2,2,0.288361749,0,Debt Consolidation Loan,0,0,8.54,6,Good,242.9487266,32.77461928,21 Years and 0 Months,No,22071,948.1273433,Low_spent_Small_value_payments,265.2833478,0,0.1439,-1.5566,0.8402,0.3958,0.2538 +0x1c20d,CUS_0x434a,August,40,169-51-0038,_______,19296.63,1820.0525,8,10,23.95700519,9,"Auto Loan, Home Equity Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",,28.23221121,5.96,15,Bad,2972.186868,28.17465637,9 Years and 11 Months,Yes,1455.159676,,Low_spent_Small_value_payments,97.00941303,0,0.3594,-0.4627,0.517,-0.6914,1.5113 +0x1c219,CUS_0x4c45,August,25,851-05-3167,Writer,69078.64,,9,5,30,2,"Not Specified, and Payday Loan",39.58991062,19.11456948,19.9,12,_,2584.685036,28.76035603,,Yes,98.40358588,405.1507727,Low_spent_Medium_value_payments,347.7009747,0,-0.7574,-0.48,-0.4992,0.3283,1.3108 +0x1c225,CUS_0x3433,August,55,213-25-2133,_______,14726.775,,7,6,1,0,,,9,6.64,5,Good,408.956228,36.2111146,15 Years and 11 Months,No,7354,174.616079,Low_spent_Small_value_payments,276.8352028,0,0.1992,0.594,1.5384,0.0784,0.8144 +0x1c231,CUS_0xa9e7,August,28,947-18-7133,Architect,15843.23,,8,6,17,6,"Payday Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Auto Loan, and Home Equity Loan",,18,16.46,8,Standard,1506.54,37.48447315,14 Years and 3 Months,Yes,100.018008,48.76902718,High_spent_Medium_value_payments,295.3462142,0,0.6043,-0.3462,0.1944,-0.5727,-0.6304 +0x1c23d,CUS_0xbab1,August,44,499-69-3389,Lawyer,28300.37,,5,5,9,3,"Debt Consolidation Loan, Student Loan, and Mortgage Loan",13.96872525,12,2.69,4,Good,1283.555157,31.59656532,17 Years and 5 Months,No,52.01255991,,Low_spent_Large_value_payments,241.555901,0,-0.7526,-0.7986,-0.364,0.5811,-0.0188 +0x1c249,CUS_0x3722,August,30,766-48-2560,Journalist,25347.26,,5,4,20,1,Not Specified,,16,10.37,5,Standard,1032.75,27.0129988,19 Years and 11 Months,NM,11.63744919,110.7504663,Low_spent_Small_value_payments,374.8392512,0,-1.4113,-0.4177,1.2008,-0.9469,-0.0761 +0x1c255,CUS_0x71f1,August,36,114-05-0805,Lawyer,56952.63,,9,9,27,8,"Student Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Auto Loan, Student Loan, Auto Loan, and Auto Loan",,20,28.88,10,_,2637.08,29.25534186,11 Years and 0 Months,Yes,323.2734511,134.3804867,High_spent_Small_value_payments,304.2513122,0,0.5736,0.3472,-0.7851,0.0361,-0.226 +0x1c261,CUS_0x2d98,August,42,927-78-1000,Engineer,52266.76,3844.909876,8,6,10.28836175,2,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",25.59850463,21,10.8,8,Standard,123.0929847,34.31110348,,Yes,567.0397827,494.7026855,High_spent_Large_value_payments,511.8100774,0,-0.0862,1.2203,0.0643,-1.467,-0.4837 +0x1c26d,CUS_0x2bce,August,28,362-84-5105,Entrepreneur,38957.34,3038.445,9,7,31,3,"Auto Loan, Not Specified, and Mortgage Loan",18.96594464,,15.37,9,_,2490.383686,29.94267322,16 Years and 11 Months,Yes,52.07530566,,Low_spent_Large_value_payments,251.5778452,0,0.4897,2.1104,-2.6396,0.4134,0.2844 +0x1c279,CUS_0x711e,August,43,579-88-7586,Writer,26848.21,2022.350833,4,7,9,1,Credit-Builder Loan,22.87271428,19,1.68,1,Standard,1321.159179,30.13780455,18 Years and 11 Months,No,22.0825603,117.6210928,High_spent_Small_value_payments,336.6182572,0,-0.5306,0.1427,0.6065,0.0105,0.5101 +0x1c285,CUS_0xa2a2,August,53,340-05-0113,Developer,116058.44,9503.536667,7,3,18,100,"Credit-Builder Loan, and Home Equity Loan",18.59170122,15,11.2,8,Standard,227.0276093,26.18899183,17 Years and 4 Months,NM,100.3082606,220.1022892,High_spent_Large_value_payments,899.108786,0,-0.9996,0.4441,0.7665,1.4091,-0.3975 +0x1c291,CUS_0x9c96,August,21,980-77-1350,Teacher,17291.27,,10,9,21.95700519,100,"Mortgage Loan, Payday Loan, Personal Loan, Payday Loan, Not Specified, Not Specified, Not Specified, and Personal Loan",28.51018148,18.2236231,3.86,8,Bad,5083.614943,33.52201069,8 Years and 3 Months,Yes,1456.272361,86.94624175,Low_spent_Small_value_payments,176.0620694,0,-1.539,-0.4268,0.0574,-0.0793,-0.324 +0x1c29d,CUS_0x838c,August,80,522-50-5723,Journalist,10392.095,1127.007917,4,10,29.06745738,3,"Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",17.31965911,10.54915492,15.31,8,Standard,3124.056452,30.25980147,15 Years and 10 Months,Yes,17.65130727,91.60554429,Low_spent_Medium_value_payments,256.7236522,0,0.3238,-2.5145,1.5574,0.1426,-0.9211 +0x1c2a9,CUS_0xa137,August,28,012-08-7560,Engineer,101066.4,8547.2,4,4,12,2,"Personal Loan, and Home Equity Loan",12.07877794,7,19.35,6,Standard,1461.27,32.13686779,27 Years and 10 Months,NM,95.70676486,10000,High_spent_Large_value_payments,906.4235643,0,0.2401,0.4949,-1.2265,1.7663,-1.5033 +0x1c2b5,CUS_0xfe5,August,38,138-97-1797,Doctor,96960.21,7934.0175,6,4,8,0,,,12,6.52,6,Standard,1144.73,37.01042778,22 Years and 5 Months,No,0,180.7197022,High_spent_Large_value_payments,852.6820478,0,0.1378,1.2931,0.6862,0.1019,-0.0612 +0x1c2c1,CUS_0x3bfb,August,37,110-79-6188,Architect,19718.92,,10,9,19.88954781,6,"Student Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,13.1396144,18.92,13,Standard,2294.301975,34.57056868,16 Years and 9 Months,Yes,1553.058429,,Low_spent_Large_value_payments,210.9879187,0,-0.2409,1.5496,-1.5521,0.4736,0.0982 +0x1c2cd,CUS_0x6827,August,28,267-65-1367,Writer,9547.825,,7,7,29.06745738,5,"Personal Loan, Payday Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",39.63841018,25.77280445,15.19,13,Bad,3202.255189,31.18718948,14 Years and 9 Months,Yes,26.82664364,53.42742636,Low_spent_Small_value_payments,266.9908504,0,-0.5309,-0.1605,-0.0158,1.2246,0.0961 +0x1c2d9,CUS_0x9283,August,31,982-61-5067,Lawyer,19334.83,,8,6,31,5,"Debt Consolidation Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",23.71336105,18.93404234,24.35,8,Bad,3638.233872,38.41132145,5 Years and 4 Months,Yes,69.53188677,,Low_spent_Medium_value_payments,322.1395527,0,1.0595,-0.8351,-0.8154,0.3551,-1.0412 +0x1c2e5,CUS_0x65d2,August,22,659-77-0885,Entrepreneur,16844.13,1156.6775,2,7,6,0,,12.81829125,,9.34,5,Good,1269.39,36.73761104,33 Years and 8 Months,No,0,119.207685,Low_spent_Small_value_payments,286.460065,0,2.5847,1.871,-0.7412,-0.4444,-1.2985 +0x1c2f1,CUS_0x5fc5,August,45,609-69-3346,Developer,122161.96,10153.16333,7,5,14.28836175,4,"Student Loan, Payday Loan, Mortgage Loan, and Mortgage Loan",22.79772401,20,14.15,7,Standard,1316.32,27.63967897,14 Years and 8 Months,Yes,278.8521712,820.6423695,Low_spent_Large_value_payments,605.7592536,0,0.4769,0.2888,-1.7922,0.3505,-1.1741 +0x1c2fd,CUS_0xc6c2,August,34,516-17-7112,Doctor,49056.09,4037.299792,7,8,19,3,"Payday Loan, Student Loan, and Payday Loan",30.20583176,20,6.29,17,Bad,1336.77,31.45450188,6 Years and 11 Months,Yes,333.4027771,196.6077231,Low_spent_Medium_value_payments,392.0979578,0,-1.497,-0.1505,-0.798,-0.4934,0.7999 +0x1c309,CUS_0x39c5,August,44,908-64-8885,Mechanic,16117.63,,6,9,27.06745738,2,"Personal Loan, and Student Loan",43.03323729,28.81082278,5.83,9,Bad,1886.156392,31.28485425,17 Years and 4 Months,Yes,23.31680754,146.1424774,Low_spent_Small_value_payments,226.0340105,0,-0.4063,-0.8023,-0.7502,0.8901,-1.0887 +0x1c315,CUS_0x95a9,August,55,080-54-9503,Teacher,72579.72,5916.31,6,6,20,0,,19.41721752,,4.97,3,Standard,314.2,36.46131812,19 Years and 8 Months,Yes,0,351.1835653,High_spent_Small_value_payments,500.4474347,0,0.273,1.0518,0.0545,1.032,-1.0137 +0x1c321,CUS_0x632c,August,22,695-04-7340,Media_Manager,101978.19,,5,7,1.288361749,4,"Home Equity Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",0,2,9.42,3,Good,1193.385948,28.87208906,30 Years and 4 Months,No,210.1496117,1355.185974,Low_spent_Medium_value_payments,68.56358092,0,1.1343,1.2139,-0.0652,0.5652,-0.9703 +0x1c32d,CUS_0xadee,August,53,748-31-3173,Lawyer,60180.09,5218.0075,7,7,17,3,"Payday Loan, Not Specified, and Home Equity Loan",,15,8.34,1,Standard,1293.89,37.73195488,27 Years and 8 Months,No,108.6311311,382.8747817,Low_spent_Small_value_payments,320.2948372,0,0.5224,-1.0414,-1.3527,1.7595,-0.3624 +0x1c339,CUS_0x3e5d,August,35,982-27-6787,_______,11938.1,,6,4,20,4,"Debt Consolidation Loan, Not Specified, Payday Loan, and Payday Loan",14.5648301,15,9.54,3,Standard,593.33,30.24991641,24 Years and 8 Months,Yes,20.18395628,58.09627963,Low_spent_Small_value_payments,331.5039308,0,1.0368,-0.1737,0.5452,-2.226,-1.1314 +0x1c345,CUS_0xbc5b,August,24,898-73-7249,Teacher,109323.4,,5,3,9.288361749,4,"Not Specified, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",16.04186519,15,10.02,7,Standard,365.39,39.35465199,27 Years and 9 Months,Yes,241.9924954,742.8483356,High_spent_Medium_value_payments,603.1249633,0,-1.2031,-1.2496,0.1663,-0.1139,0.4975 +0x1c351,CUS_0x9ef9,August,30,749-61-3662,Musician,67188.58,5758.048333,805,7,9,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",,2,-3.16,4,Good,1370.98,26.27984276,19 Years and 4 Months,No,145.9295972,186.7531542,High_spent_Medium_value_payments,493.122082,0,-0.4163,0.5388,-1.0324,-0.587,-0.6014 +0x1c35d,CUS_0x6194,August,47,258-48-2078,_______,28227.45,,3,6,1.288361749,2,"Auto Loan, and Auto Loan",,8.378901865,9.66,1,Good,285.9783246,31.02948403,30 Years and 11 Months,No,48248,448.9895832,High_spent_Medium_value_payments,418.29367,0,-0.6132,1.5985,0.6427,-0.3592,1.2187 +0x1c369,CUS_0x454f,August,41,255-20-4167,Musician,129299,10765.91667,1,2,5.288361749,0,,0.370062797,3,1.24,6,Good,669.7956242,36.09873149,,No,0,655.6961386,High_spent_Small_value_payments,1130.930667,0,-0.0567,-0.4592,0.7722,0.2158,-0.7748 +0x1c375,CUS_0x4b4,August,29,334-73-3962,Engineer,7112.665,,10,8,16.88954781,6,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Payday Loan, and Home Equity Loan",,24,27.68,12,_,4649.87,39.61555631,7 Years and 3 Months,Yes,1349.449013,26.62311831,High_spent_Medium_value_payments,254.9699957,0,1.6728,0.4567,-1.6719,-0.07,0.014 +0x1c381,CUS_0x96e7,August,25,523-66-3202,Lawyer,81287.66,6550.971667,0,3,11,4,"Payday Loan, Student Loan, Not Specified, and Personal Loan",4.310309051,7,6.52,1,_,1191.883432,39.10135098,26 Years and 11 Months,No,150.8210257,201.0967925,Low_spent_Medium_value_payments,605.6566701,0,1.1686,1.3901,0.3886,-0.5099,-1.5183 +0x1c38d,CUS_0x7312,August,19,454-10-7481,Musician,32989.45,,5,3,2,4,"Mortgage Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",0,3,1.47,0,Good,40.48,36.61645609,16 Years and 6 Months,No,80.95539403,,Low_spent_Small_value_payments,162.7906288,0,0.9678,-0.8213,0.6493,1.5393,0.0437 +0x1c399,CUS_0x618c,August,30,489-60-8692,Writer,107392.95,,6,3,20,1,Debt Consolidation Loan,,18,11.88,6,Standard,210.01,20.83248709,,Yes,51.95982461,1143.595342,Low_spent_Small_value_payments,,0,0.1866,-0.3773,0.8409,0.5011,-1.2015 +0x1c3a5,CUS_0xb772,August,30,942-59-1928,Entrepreneur,41296.81,,3,6,11,1,Student Loan,1.760250618,1,6.94,1,Good,761.2,36.59194413,19 Years and 11 Months,No,33.74732675,10000,High_spent_Large_value_payments,521.7607812,0,-0.6158,-1.7268,0.4872,0.0979,0.6154 +0x1c3b1,CUS_0x224f,August,29,855-61-7132,_______,34176.53,2584.044167,6,4,8,1,Mortgage Loan,11.17974036,10,4.95,4,_,828.874479,40.30316772,,No,15.14449094,93.81955525,High_spent_Medium_value_payments,408.1208784,0,0.3158,1.8907,0.915,0.2102,-0.9611 +0x1c3bd,CUS_0x9fca,August,50,261-83-6127,Mechanic,26326.96,2114.913333,4,5,13,3,"Personal Loan, Debt Consolidation Loan, and Student Loan",23.15456107,18,5.25,4,_,640.91,29.62496903,15 Years and 10 Months,No,57.69707067,100.9629707,Low_spent_Small_value_payments,342.831292,0,0.0511,-1.0188,0.0143,-2.3715,0.2329 +0x1c3c9,CUS_0x4fac,August,44,339-46-1689,Scientist,126559.52,10248.62667,5,5,9,4,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Student Loan",,14.13357623,11.02,6,_,288.7585198,38.32102806,18 Years and 3 Months,Yes,400.386423,199.3109959,!@9#%8,665.1652478,0,-1.2482,-1.9233,0.0935,-1.1139,-1.5776 +0x1c3d5,CUS_0x2346,August,32,918-83-4696,Accountant,58892.86,5106.738333,3,4,17,3,"Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",18.53165336,,14.65,7,Standard,666,27.7527795,33 Years and 4 Months,NM,118.3482317,,Low_spent_Medium_value_payments,428.6400705,0,-0.7291,-0.0006,-0.3233,-0.3705,0.0958 +0x1c3e1,CUS_0x9123,August,40,852-62-5449,Mechanic,61614.58,5325.548333,5,5,10,2,"Payday Loan, and Mortgage Loan",25.37428217,21,19.41,6,Standard,944.195057,34.27198824,20 Years and 2 Months,Yes,85.88604716,207.1698917,High_spent_Medium_value_payments,510.7670085,0,1.2857,-1.0926,-1.4896,-0.6017,-0.6989 +0x1c3ed,CUS_0x9e39,August,41,303-14-4721,Manager,7919.535,875.96125,4,10,24.95700519,6,"Student Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Auto Loan",26.49140461,17.35741246,17.49,8,Standard,2985.538677,34.25771207,16 Years and 3 Months,Yes,1353.839511,,Low_spent_Small_value_payments,259.7851505,0,-0.0706,0.2049,-1.6691,-0.0744,0.1802 +0x1c3f9,CUS_0x193e,August,24,842-61-0519,Lawyer,107864.34,8852.695,4,5,19.28836175,6,"Payday Loan, Not Specified, Mortgage Loan, Mortgage Loan, Personal Loan, Auto Loan, and Not Specified",9.373808286,10.44492163,18.32,9,_,26.4970994,32.1314125,6 Years and 10 Months,Yes,380.0299522,,High_spent_Medium_value_payments,589.2988349,0,0.1284,0.8392,-0.7387,0.008,-0.8925 +0x1c405,CUS_0x9169,August,80,#F%$D@*&8,Mechanic,102085.2,,8,3,1,3,"Personal Loan, Auto Loan, and Not Specified",20.76189615,16,-6.49,3,_,244.4280216,27.57363382,,No,164.9599679,227.7471784,High_spent_Large_value_payments,750.3448114,0,-1.4351,0.5882,-1.3874,-0.707,-0.0046 +0x1c411,CUS_0x2683,August,39,#F%$D@*&8,Developer,58380.6,4891.05,7,5,27,4,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",44.31886687,23.45627959,9.94,12,_,1631.601027,28.6290723,9 Years and 9 Months,Yes,160.0519667,,Low_spent_Small_value_payments,146.2991568,0,0.5885,0.0552,-0.9321,-0.4051,-0.4924 +0x1c41d,CUS_0x2568,August,27,550-12-0825,Musician,20707.77,,8,5,34,7,"Auto Loan, Mortgage Loan, Not Specified, Student Loan, Payday Loan, Payday Loan, and Payday Loan",,,14.3,10,Standard,1711.998459,27.7400167,16 Years and 4 Months,Yes,78.62908712,,Low_spent_Medium_value_payments,292.0049046,0,-1.175,0.2761,0.1185,0.5022,-3.1388 +0x1c429,CUS_0xa31b,August,30,167-32-9860,Architect,106879.71,8676.6425,1,4,10.28836175,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",5.107062831,7,2.31,7,Good,1057.95,22.81887997,31 Years and 11 Months,NM,182.6546747,869.2936166,High_spent_Small_value_payments,495.6534197,0,0.5322,-0.9115,-0.5185,-0.6821,-1.4384 +0x1c435,CUS_0x6a4d,August,31,843-53-4733,Doctor,20501.72,1619.476667,7,9,17.06745738,8,"Payday Loan, Student Loan, Auto Loan, Auto Loan, Mortgage Loan, Not Specified, Student Loan, and Personal Loan",29.34177278,15,5.97,8,Bad,2247.770954,36.49648622,15 Years and 10 Months,Yes,72.73705942,118.2623416,Low_spent_Large_value_payments,214.2279777,0,-1.0828,-0.8494,2.5937,0.4067,0.2196 +0x1c441,CUS_0x32e6,August,35,137-57-7256,Developer,59125.84,,587,6,1.288361749,0,Mortgage Loan,6.943316494,9,1.18,5,_,49.94758585,32.82786181,28 Years and 6 Months,NM,33.3298417,,Low_spent_Medium_value_payments,604.8894406,0,2.4188,0.324,-0.0255,0.9691,-0.074 +0x1c44d,CUS_0x99ec,August,22,809-25-3671,Scientist,131844.32,10874.02667,6,3,9.288361749,0,Auto Loan,20.20212987,18,14.31,9,Standard,350.7470154,26.75285411,8 Years and 0 Months,Yes,106.7796091,12110.72346,Low_spent_Small_value_payments,17.71970184,0,0.4892,0.3177,1.8851,0.7102,-0.3802 +0x1c459,CUS_0x233d,August,30,739-90-6281,Entrepreneur,32488.7,,7,7,26.06745738,100,"Home Equity Loan, Not Specified, Student Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",22.53643961,10,8.34,16,_,2784.450954,37.19033099,8 Years and 0 Months,Yes,82.23268722,60.48816454,High_spent_Medium_value_payments,326.198027,0,-0.2705,-0.5066,-0.2944,-0.7438,-0.4035 +0x1c465,CUS_0x67e5,August,21,439-53-2707,_______,14733.99,1462.8325,10,8,28.88954781,100,"Student Loan, Not Specified, Not Specified, Payday Loan, and Credit-Builder Loan",,14.6975755,19.97,17,Standard,2863.022582,38.31516388,18 Years and 2 Months,Yes,1375.612866,123.129193,Low_spent_Small_value_payments,243.2111094,0,0.0351,-0.0344,-0.993,1.1488,-0.7038 +0x1c471,CUS_0xbfd0,August,38,084-50-9297,_______,22311.99,1577.3325,4,5,3.288361749,2,"Home Equity Loan, Mortgage Loan, and Home Equity Loan",0,1,8.27,6,Good,93.98467113,37.59144707,,NM,38.23526993,653.3554347,Low_spent_Small_value_payments,208.2182994,0,-0.5104,0.3279,-1.4398,-0.1806,0.2546 +0x1c47d,CUS_0x71ba,August,42,906-54-5924,Engineer,20204.27,,4,5,19,100,"Personal Loan, and Debt Consolidation Loan",,10.59915404,16.5,9,Standard,376.8391986,37.68542985,20 Years and 2 Months,Yes,27.5786716,,Low_spent_Small_value_payments,307.5715124,0,1.3718,0.7136,1.306,-1.0673,1.8519 +0x1c489,CUS_0x6a9d,August,25,841-18-0250,Engineer,74576.76,,9,8,31,4,"Payday Loan, Home Equity Loan, Payday Loan, and Auto Loan",,23.73976645,0.56,11,Bad,2192.373247,30.52223911,,NM,155.6248827,584.4759023,Low_spent_Medium_value_payments,159.572215,0,-0.3302,-0.5407,-0.2498,0.571,-0.5952 +0x1c495,CUS_0x492c,August,41,672-34-5802,Entrepreneur,17625.23,1542.769167,6,8,29.95700519,9,"Student Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, and Student Loan",30.1388195,,25.27,12,_,5051.400954,28.65545954,7 Years and 9 Months,Yes,1451.784718,145.2197617,Low_spent_Medium_value_payments,116.2220675,0,1.1234,-0.9804,0.676,-0.0668,-1.9375 +0x1c4a1,CUS_0x9cf7,August,53,915-77-3583,Musician,134282.84,11126.23667,8,7,19,2,"Not Specified, and Mortgage Loan",16.2072304,12,11.58,3,Standard,551.46,35.63623066,,No,131.5840554,,High_spent_Large_value_payments,978.0578739,0,-1.4065,-0.0514,-0.6364,-0.3936,1.297 +0x1c4ad,CUS_0x75ce,August,45,880-74-8342,Mechanic,23882.98,,4,3,11,1,Payday Loan,,19.18934616,10.91,6,Standard,349.0345094,28.9464902,16 Years and 6 Months,NM,16.00940815,115.6563572,Low_spent_Small_value_payments,385.459068,0,-0.2021,-2.5575,-0.1362,0.0544,-0.1503 +0x1c4b9,CUS_0x5628,August,35,208-75-0668,Media_Manager,8858.405,,6,8,26.88954781,100,"Not Specified, and Payday Loan",10.94761232,8,9.99,11,Standard,2431.08,24.46930826,14 Years and 6 Months,Yes,1332.045689,51.96517773,High_spent_Small_value_payments,283.8790939,0,1.6288,0.767,-1.4836,0.7154,-0.014 +0x1c4c5,CUS_0x20e4,August,20,936-93-4382,Journalist,34500.97,,5,1,3,4,"Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",,11,4.4,3,Good,1157.570544,32.74056104,20 Years and 9 Months,No,71.80862965,132.1849774,High_spent_Medium_value_payments,369.2215022,0,0.7307,-0.0496,-0.7371,0.3135,0.0529 +0x1c4d1,CUS_0x44c5,August,43,444-02-4059,Doctor,7136.905,,7,8,34,3,"Mortgage Loan, Personal Loan, and Credit-Builder Loan",37.24075805,19.42039059,9.79,12,_,2098.817141,24.29941263,9 Years and 11 Months,Yes,16.50138403,,Low_spent_Small_value_payments,265.4595664,0,1.1718,-1.1432,-1.7045,2.402,0.0041 +0x1c4dd,CUS_0xb8c2,August,80,475-00-7698,Doctor,14185.66,,1,7,2,4,"Auto Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",9.842969014,10,10.56,1,Good,209.002742,22.37429876,30 Years and 5 Months,No,42.52992173,49.34549077,High_spent_Medium_value_payments,285.0004058,0,-0.6206,0.8894,-1.3144,0.4499,0.2507 +0x1c4e9,CUS_0x2fc9,August,52,276-80-1606,Doctor,107438.88,9233.24,6,4,6,2,"Credit-Builder Loan, and Mortgage Loan",29.92153389,19,7.01,4,Standard,1342.37,40.01315419,33 Years and 2 Months,No,169.8641225,374.6725577,High_spent_Small_value_payments,638.7873199,0,-0.1938,1.1275,-1.3173,-0.9753,0.115 +0x1c4f5,CUS_0xe42,August,31,514-11-6434,Mechanic,80541.51,,4,1238,20,0,,25.22157529,18.73112858,10.81,1,Standard,377.1938263,40.61147838,26 Years and 11 Months,Yes,0,,High_spent_Large_value_payments,818.8312521,0,-0.061,0.0017,-0.5279,-1.6834,-0.3071 +0x1c501,CUS_0x4448,August,35,857-20-3946,Journalist,74524.88,6195.406667,9,10,33,8,"Auto Loan, Home Equity Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Student Loan, Student Loan, and Home Equity Loan",43.81574493,21.45101671,0.14,9,Bad,1946.598381,38.81641113,18 Years and 10 Months,Yes,385.2550456,,Low_spent_Medium_value_payments,139.5054682,0,-0.7814,-0.7296,1.1504,-0.7382,0.0426 +0x1c50d,CUS_0x8957,August,25,514-65-5201,Doctor,14154.255,1467.52125,5,7,14,4,"Not Specified, Mortgage Loan, Personal Loan, and Mortgage Loan",12.85854553,9,3.9,5,_,700.09,33.35787422,30 Years and 4 Months,Yes,31.19606825,83.18689947,High_spent_Small_value_payments,292.3691573,0,-0.8717,0.4271,-0.2739,-0.7436,-0.0406 +0x1c519,CUS_0x88e3,August,20,988-56-5012,Architect,60829.8,5207.15,4,5,3064.288362,2,"Mortgage Loan, Payday Loan, and Debt Consolidation Loan",1.863025532,5,0.64,2,Good,445.39,26.03341249,32 Years and 8 Months,No,106.318502,553.8017253,High_spent_Large_value_payments,520.5322337,0,0.6166,0.3731,0.1698,0.7808,-1.6455 +0x1c525,CUS_0x8b85,August,47,927-54-7427,Entrepreneur,56615.1,4908.925,5,6,5789,1,Not Specified,9.380376228,11,0.77,5,Good,1170.66,37.19361764,20 Years and 2 Months,No,45.61889463,135.9170123,High_spent_Small_value_payments,569.3565931,0,0.2843,1.1846,-0.6146,0.1028,0.96 +0x1c531,CUS_0x6d82,August,51,323-17-1676,Teacher,11513.045,864.4204167,6,6,13,4,"Not Specified, Not Specified, Personal Loan, and Not Specified",21.85184095,16,14.9,1,Standard,1418.26,26.64945682,32 Years and 6 Months,Yes,32.19335182,68.24597201,Low_spent_Small_value_payments,276.0027178,0,-0.7617,0.1157,-1.5429,0.9907,0.9435 +0x1c53d,CUS_0x2db5,August,18,929-60-6423,Writer,101853.6,,4,6,16,3,"Payday Loan, Student Loan, and Mortgage Loan",18.86945006,12,9.36,11,Standard,833.5487642,29.45153702,17 Years and 5 Months,Yes,203.8112978,1034.652022,Low_spent_Small_value_payments,,0,-0.6781,1.9331,0.2882,2.6156,-0.9864 +0x1c549,CUS_0xbefe,August,23,544-36-0883,Manager,117283.35,9669.6125,1300,7,6.288361749,2,"Not Specified, Payday Loan, and Payday Loan",16.19125025,14.50396597,10.27,3,Good,1381.960361,40.65603506,19 Years and 3 Months,No,173.4809305,,Low_spent_Medium_value_payments,501.1010296,0,-0.2648,0.2888,-1.8616,0.8507,0.5727 +0x1c555,CUS_0x8275,August,39,035-94-7779,Accountant,40925.46,3152.455,1650,5,31,2,"Personal Loan, and Mortgage Loan",22.27074519,12.92471687,14.12,12,_,1654.66269,31.72663649,16 Years and 6 Months,Yes,63.99511936,267.1490105,Low_spent_Medium_value_payments,264.1013702,0,0.7567,-1.1584,1.2349,1.1685,-0.7132 +0x1c561,CUS_0xaf14,August,21,039-64-8322,Mechanic,38840.78,3431.731667,4,7,21,2,"Home Equity Loan, and Personal Loan",8.506792677,9,16.72,9,Standard,1442.28,35.06967134,5 Years and 10 Months,Yes,42.32511917,83.9195084,High_spent_Medium_value_payments,466.9285391,0,1.1405,-0.9507,0.4487,0.7678,0.9202 +0x1c56d,CUS_0xb53d,August,40,729-06-8587,Media_Manager,69955.56,4858.617659,8,6,6,0,,22.81039536,19,6.93,10,_,498.4520393,36.64042086,24 Years and 11 Months,Yes,817.0123409,195.3648386,High_spent_Small_value_payments,654.3445054,0,0.0333,1.0593,0.8566,0.1302,0.2135 +0x1c579,CUS_0x58e5,August,30,207-46-1927,Mechanic,20511.16,,8,8,35.95700519,7,"Not Specified, Credit-Builder Loan, Home Equity Loan, Student Loan, Personal Loan, Payday Loan, and Home Equity Loan",36.22390435,23,6.63,8,Bad,2662.090954,31.94914595,18 Years and 4 Months,Yes,1430.436911,101.5359744,Low_spent_Large_value_payments,209.2030786,0,-1.1427,-2.4745,-0.9473,0.7107,2.2408 +0x1c585,CUS_0x3b1f,August,24,736-65-7068,Doctor,44103.18,,3,7,13,4,"Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",,18.26404257,11.62,7,Standard,2802.047904,23.84245844,13 Years and 11 Months,Yes,107.4631288,,Low_spent_Small_value_payments,167.153962,0,-0.152,-1.2597,-1.9064,-0.0655,-0.2376 +0x1c591,CUS_0xb742,August,19,630-69-4858,Media_Manager,40846.36,,3,2,7,1,Student Loan,,7,6.53,1,Good,1167.608454,40.46340513,19 Years and 5 Months,NM,28.16283872,65.33771249,High_spent_Medium_value_payments,526.8090443,0,1.3674,-1.5669,0.4775,-0.157,1.1161 +0x1c59d,CUS_0xdcd,August,18,055-56-8402,Engineer,39277.22,,7,7,28.06745738,5,"Auto Loan, Mortgage Loan, Student Loan, Payday Loan, and Mortgage Loan",25.68183572,14,23.59,10,Bad,3024.730954,29.29314172,5 Years and 6 Months,Yes,88.28071514,,High_spent_Large_value_payments,403.3449538,0,0.0975,-0.6258,-0.8741,1.4746,0.0061 +0x1c5a9,CUS_0x793,August,45,477-79-4286,Architect,28824.3,2673.025,10,10,20.88954781,9,"Not Specified, Home Equity Loan, Auto Loan, Student Loan, Auto Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,24,0.62,12,Bad,2421.89,26.15734037,9 Years and 0 Months,Yes,1504.742556,30.9011947,High_spent_Medium_value_payments,287.3286685,0,-1.0107,-1.3219,0.2139,1.9557,-0.0826 +0x1c5b5,CUS_0xa3bd,August,30,125-04-9134,Lawyer,176956.6,14880.38333,3,5,3.288361749,0,Debt Consolidation Loan,7.657917903,10,6.77,1,_,116.94,34.18914093,30 Years and 6 Months,No,82.56196565,1103.77224,High_spent_Small_value_payments,981.6415892,0,1.7554,0.3153,-1.1596,-1.2355,0.573 +0x1c5c1,CUS_0x44a4,August,38,364-60-4810,_______,56545.44,4619.12,8,8,5277.889548,7,"Payday Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Student Loan",,24,3.04,10,_,2493.18,31.84578119,13 Years and 8 Months,Yes,1508.15909,38.04339098,High_spent_Large_value_payments,461.3794374,0,-0.865,-1.066,-1.4246,-0.505,-1.0329 +0x1c5cd,CUS_0xc78,August,39,906-90-3717,Teacher,33960.07,3080.005833,1,5,11,1,Not Specified,3.839591495,6,4.23,2,Good,436.0490891,35.95798651,26 Years and 0 Months,No,23.1725825,,Low_spent_Small_value_payments,256.2637608,0,-1.3291,-0.6976,-0.3706,-0.4608,-0.0274 +0x1c5d9,CUS_0x1e50,August,29,812-89-6100,Lawyer,31500.55,2665.045833,1,4,6,0,,,11,4.79,4,Good,861.13,39.85644023,,No,0,134.7814977,Low_spent_Large_value_payments,401.7230856,0,0.5893,-1.8655,-0.4217,0.6451,0.9547 +0x1c5e5,CUS_0x206c,August,36,983-60-4571,Engineer,108472.35,,5,7,2,4,"Mortgage Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",,14,0.57,3,_,1351.42,40.48686167,23 Years and 10 Months,No,241.6056743,475.0859951,Low_spent_Medium_value_payments,486.6445806,0,0.9759,-1.455,1.9325,0.0724,-0.0959 +0x1c5f1,CUS_0x787f,August,22,401-83-7671,Scientist,25208.64,2146.344593,3,5,3184,4,"Student Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",18.29502045,17,4.15,5,Standard,173.09,37.07573448,30 Years and 0 Months,No,276.4513296,,Low_spent_Small_value_payments,188.1768822,0,1.0037,0.4406,-0.9413,-0.936,0.6796 +0x1c5fd,CUS_0x4f3,August,18,273-47-7879,Doctor,58477.59,5005.1325,10,8,20.95700519,6,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Student Loan, Not Specified, and Debt Consolidation Loan",25.70336186,15,26.44,8,Bad,5120.180954,28.52991773,2 Years and 5 Months,Yes,1552.299549,263.0291173,Low_spent_Medium_value_payments,244.1342145,0,-0.4109,2.407,-0.8789,-0.2915,0.5724 +0x1c609,CUS_0x3561,August,30,169-22-4626,Developer,42032.76,3569.73,0,4,6,1,Not Specified,12.15140586,7.943574764,5.11,7,Good,720.0731273,24.63112313,23 Years and 4 Months,No,22.45599512,83.13504756,High_spent_Medium_value_payments,501.3819573,0,0.4833,0.1365,-2.9706,-0.4878,0.5861 +0x1c615,CUS_0xb6ae,August,34,587-82-9256,Journalist,57047.52,,4,5,8,3,"Mortgage Loan, Personal Loan, and Payday Loan",,11,6.24,4,Standard,2201.14,26.39229592,17 Years and 2 Months,Yes,129.1617581,248.030636,High_spent_Small_value_payments,335.503606,0,-2.1275,0.5064,2.0132,-1.7067,-1.1399 +0x1c621,CUS_0xb634,August,42,399-60-8339,Entrepreneur,67500.54,5642.045,7,5,15,5,"Debt Consolidation Loan, Student Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,9.712395081,10.47,12,_,1192.173767,37.60251671,8 Years and 0 Months,Yes,40222,148.6783835,Low_spent_Large_value_payments,411.5737441,0,-1.098,-0.251,0.6605,-0.0937,-0.0144 +0x1c62d,CUS_0x5323,August,43,371-42-2940,Manager,15599.95,1024.995833,10,9,22.06745738,9,"Credit-Builder Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",35.4214872,21,26.24,12,Bad,4620.650954,23.50139251,10 Years and 10 Months,Yes,111.6369997,126.8393084,Low_spent_Small_value_payments,127.3029872,0,0.7654,2.2123,0.6786,0.9908,0.4115 +0x1c639,CUS_0x99cc,August,44,424-82-3402,Scientist,44046.21,3466.5175,7,7,21,7,"Not Specified, Auto Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, and Student Loan",20.10477159,16,15.88,9,Bad,2444.951871,36.77322761,13 Years and 2 Months,Yes,161.292233,195.0308503,High_spent_Small_value_payments,278.4298389,0,-0.6011,0.3108,0.0426,0.2575,-0.3349 +0x1c645,CUS_0x6e05,August,45,957-54-6785,Musician,168502.68,,5,6,8,4,"Auto Loan, Not Specified, Auto Loan, and Payday Loan",,1,0.59,4,Good,692.009385,29.05365252,29 Years and 8 Months,No,79633,377.2286618,High_spent_Large_value_payments,805.0619929,0,-0.5474,-0.5223,0.5586,1.0692,-1.4162 +0x1c651,CUS_0xa9a8,August,37,310-21-8167,Musician,31795.48,,8,9,15.88954781,9,"Student Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Not Specified, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",19.1134691,,5.47,12,_,5179.838957,28.58979725,7 Years and 9 Months,Yes,1529.505559,300.3411987,Low_spent_Small_value_payments,55.38549456,0,-0.0766,-0.4595,0.8366,-0.3574,1.5648 +0x1c65d,CUS_0x36eb,August,18,#F%$D@*&8,Scientist,9834.755,565.5629167,8,10,30.95700519,7,"Payday Loan, Auto Loan, Payday Loan, Auto Loan, Home Equity Loan, Auto Loan, and Student Loan",,18.09425198,4.85,15,_,4396.570284,36.80779676,8 Years and 2 Months,Yes,1354.411608,73.97407992,Low_spent_Small_value_payments,197.1202344,0,-0.1202,-0.0086,-0.4492,0.402,-0.1996 +0x1c669,CUS_0x2f24,August,25,499-88-6136,Lawyer,58782.24,,8,9,25.95700519,6,"Home Equity Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",46.56531264,27.26628657,29.09,13,Bad,3263.873507,32.35158614,11 Years and 11 Months,Yes,1553.034227,,Low_spent_Large_value_payments,202.1461469,0,-0.2633,-0.1832,1.3245,1.1624,0.4746 +0x1c675,CUS_0x3240,August,34,924-63-6370,Developer,136765.92,11577.16,3,2,4,4,"Debt Consolidation Loan, Not Specified, Student Loan, and Home Equity Loan",15.05813046,15,1.82,1,Good,357.3388769,41.43065451,22 Years and 10 Months,No,300.4755553,731.3436477,Low_spent_Medium_value_payments,499.2024922,0,-0.8682,0.3684,-0.2141,0.9392,0.5305 +0x1c681,CUS_0x796e,August,53,271-02-5603,Lawyer,42359.24,3756.936667,7,5,11,0,,33.11015768,23,8.82,4,Standard,164.09,25.06689578,25 Years and 4 Months,No,0,235.6009896,!@9#%8,430.0926771,0,1.2566,0.2544,0.042,0.4449,-0.4396 +0x1c68d,CUS_0x4aa5,August,43,090-87-8841,Mechanic,84261.3,6772.775,5,7,5,6,"Debt Consolidation Loan, Student Loan, Payday Loan, Personal Loan, Auto Loan, and Auto Loan",28.41914573,23.49038114,9.9,5,Standard,1101.470089,30.94824376,11 Years and 6 Months,Yes,214.1273741,152.2290603,High_spent_Small_value_payments,570.9210656,0,-0.8055,-0.1181,0.4969,1.5187,-0.9766 +0x1c699,CUS_0x4046,August,19,610-47-5862,Mechanic,41191.6,,0,3,4,1,Debt Consolidation Loan,5.471030144,8,4.55,3,Good,801.66,36.72400887,18 Years and 5 Months,No,21.40349214,80.01520291,Low_spent_Large_value_payments,507.0446383,0,0.9914,0.3346,1.3041,0.4456,-0.4523 +0x1c6a5,CUS_0x1be4,August,23,226-81-3945,Mechanic,28491.46,2273.288333,9,7,26.06745738,7,"Personal Loan, Auto Loan, Mortgage Loan, Student Loan, Personal Loan, Student Loan, and Auto Loan",,21,16.6,14,Bad,3827.150954,32.76358993,6 Years and 11 Months,Yes,127.8849708,200.1301852,Low_spent_Small_value_payments,162.5933894,0,0.7897,0.1481,0.5545,1.1207,0.9556 +0x1c6b1,CUS_0xbe54,August,54,736-33-6781,_______,41675.64,3451.97,4,3,4253,2,"Not Specified, and Personal Loan",,12,4.9,6,Good,1072.176205,24.8423462,25 Years and 10 Months,No,53.79680682,,High_spent_Medium_value_payments,427.6494856,0,-1.2131,-1.267,-1.648,0.3252,-0.0245 +0x1c6bd,CUS_0xb397,August,33,164-65-8859,Media_Manager,171399.84,,4,3,6,1,Mortgage Loan,,1,8.61,3,_,1306.63,23.14358898,15 Years and 9 Months,No,101.8671466,1181.683122,Low_spent_Medium_value_payments,406.2817315,0,1.086,0.37,1.1194,1.4302,-0.0065 +0x1c6c9,CUS_0x3ee4,August,32,097-94-1781,Doctor,19982.93,1651.244167,3,4,11,0,,5.165979642,6,13.11,2,_,443.8129764,34.52019744,33 Years and 6 Months,No,0,49.54250039,!@9#%8,372.5175262,0,-0.1342,-1.0487,-1.3051,1.4584,-0.184 +0x1c6d5,CUS_0x82a7,August,45,552-36-8989,Scientist,9766.965,800.91375,8,10,21.95700519,6,"Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",,26.8976047,4.86,8,Bad,2748.414704,27.12380316,8 Years and 3 Months,Yes,1348.835151,82.98061857,Low_spent_Small_value_payments,217.2252361,0,0.9381,-0.4488,-1.2051,-0.9482,-0.412 +0x1c6e1,CUS_0x1dc2,August,46,358-95-7684,Engineer,9925.3,761.1083333,9,7,32,7,"Payday Loan, Not Specified, Payday Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,17.50647179,0.7,11,Bad,3478.334112,34.44979011,14 Years and 3 Months,Yes,41.63819597,30.05528749,Low_spent_Small_value_payments,294.4173499,0,1.0666,0.2598,0.1473,2.3994,-0.9482 +0x1c6ed,CUS_0x1630,August,35,638-52-4307,Writer,17706148,6943.133333,4,6,9.288361749,6,"Not Specified, Student Loan, Personal Loan, Not Specified, Not Specified, and Debt Consolidation Loan",13.49128783,11.87633518,16.55,5,Standard,416.2958554,31.16565,11 Years and 2 Months,Yes,340.28773,816.1856354,Low_spent_Medium_value_payments,237.777429,0,0.7265,-1.6814,-1.4335,-1.8117,-0.0413 +0x1c6f9,CUS_0x9c65,August,23,#F%$D@*&8,Entrepreneur,7152.2,,8,5,30,7,"Not Specified, Personal Loan, Auto Loan, Payday Loan, Not Specified, Student Loan, and Mortgage Loan",6.984322726,9,8.67,12,Standard,2004.55,35.66882394,10 Years and 9 Months,Yes,29.84649357,38.06396853,Low_spent_Large_value_payments,268.5912046,0,-0.0065,-0.1988,-1.1813,0.0453,0.9656 +0x1c705,CUS_0x706d,August,39,607-61-8221,Developer,62030.64,4883.22,3,9,25,3,"Home Equity Loan, Credit-Builder Loan, and Payday Loan",,16.8804483,18.48,15,Standard,1947.62542,28.71517752,19 Years and 10 Months,Yes,107.0285509,102.0015366,High_spent_Small_value_payments,539.2919125,0,0.151,0.4857,2.1706,-0.6699,-0.2245 +0x1c711,CUS_0x8c52,August,48,974-33-1106,_______,41715.11,,0,4,4,0,,12.61110378,11,10.09,4,Good,1494.8,24.48492338,33 Years and 4 Months,No,0,70.76603587,High_spent_Small_value_payments,528.7598808,0,-0.6707,-1.3434,0.1903,0.0913,-0.5426 +0x1c71d,CUS_0x1735,August,20,897-04-2508,Scientist,84621.39,7171.7825,0,4,1.288361749,0,,2.40500876,6,7.7,9,Good,57.48392821,25.99347613,20 Years and 11 Months,No,0,536.8516331,High_spent_Large_value_payments,855.7221093,0,-0.9822,0.7806,-0.6341,-0.3644,1.4815 +0x1c729,CUS_0xa255,August,80,918-14-5157,Entrepreneur,13309.51,,3,7,13,4,"Mortgage Loan, Student Loan, Personal Loan, and Student Loan",23.88949387,19,19.56,4,_,662.6935325,39.89677574,27 Years and 10 Months,Yes,37.52753109,52.47033243,Low_spent_Medium_value_payments,279.3797173,0,-0.016,0.695,0.9464,0.5189,-0.4233 +0x1c735,CUS_0x2761,August,50,341-59-0640,Manager,21129.93,,3,4,3,4,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",20.67579852,17,9.82,9,Standard,563.6327304,26.60924773,16 Years and 2 Months,No,39.59495091,113.1083193,Low_spent_Large_value_payments,316.073112,0,-0.4599,-0.1399,-1.0497,0.8854,-1.7098 +0x1c741,CUS_0xae54,August,29,078-25-0166,Musician,11372.9,1174.741667,6,6,7.067457376,0,,14.91877812,9,11.91,5,_,940.0809543,29.90820354,16 Years and 10 Months,NM,0,74.12684024,High_spent_Small_value_payments,276.6270385,0,-0.3496,-0.2126,-0.1478,-0.1077,-1.6136 +0x1c74d,CUS_0x748,August,42,#F%$D@*&8,Doctor,71536.52,5715.376667,7,7,5548,100,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Student Loan, and Home Equity Loan",34.40386469,24,0.81,11,_,1390.09,31.39369428,,Yes,339.7479714,47.67672979,High_spent_Large_value_payments,424.1129655,0,-0.0419,0.7496,0.8083,-1.7194,-0.5328 +0x1c759,CUS_0xb7e2,August,37,778-42-7488,Media_Manager,21509.645,,4,1,3.288361749,0,Payday Loan,0,4,5.77,8,Good,66.43679309,31.95340004,29 Years and 10 Months,No,9.168931262,448.7956322,High_spent_Medium_value_payments,379.4660228,0,0.2698,-1.9384,-1.1403,1.4293,-2.7605 +0x1c765,CUS_0x49fd,August,33,570-71-1885,Lawyer,158848.76,,1,7,9,2,"Credit-Builder Loan, and Home Equity Loan",0,0,9.32,3,_,378.408224,41.51241792,32 Years and 2 Months,No,145.5136394,309.1357446,High_spent_Large_value_payments,1085.990283,0,-0.4885,0.8847,2.4445,0.1633,0.1191 +0x1c771,CUS_0x5a82,August,26,896-84-7984,Writer,33467.15,,7,5,7,0,,,19,3.76,6,Good,1201.734108,27.76988381,30 Years and 10 Months,No,0,86.85111605,High_spent_Medium_value_payments,476.3603923,0,0.6065,0.261,1.0941,-0.5417,0.6155 +0x1c77d,CUS_0xa39e,August,36,822-96-9212,Lawyer,15364.1,,8,10,21.06745738,5,"Personal Loan, Not Specified, Home Equity Loan, Payday Loan, and Payday Loan",31.10531644,18.27296586,1.57,14,Bad,3165.914492,30.81501221,18 Years and 2 Months,Yes,58.03431777,141.4991866,Low_spent_Medium_value_payments,206.7803743,0,-1.1233,1.3759,0.1321,0.4756,-0.4529 +0x1c789,CUS_0x75e3,August,26,143-28-6216,Scientist,14147.38,1091.948333,8,1242,31.95700519,100,"Personal Loan, Payday Loan, and Student Loan",39.03615689,19.55710694,7.54,12,_,3252.909736,26.56464842,19 Years and 11 Months,Yes,1349.271017,146.4674643,Low_spent_Small_value_payments,182.4059823,0,-0.9841,-0.4596,-1.1,-0.457,0.2886 +0x1c795,CUS_0x1c1a,August,38,049-65-5834,Accountant,34144.14,,4,3,15,7,"Not Specified, Personal Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Not Specified, and Home Equity Loan",15.99304334,11,16.5,12,_,203.04,31.99745437,,Yes,134.8139223,57.8976173,High_spent_Small_value_payments,370.2229604,0,0.9775,0.1712,-0.6764,0.4694,0.2766 +0x1c7a1,CUS_0x4f29,August,37,332-04-0058,Journalist,18431.8,1543.983333,7,5,5.067457376,4,"Student Loan, Not Specified, Not Specified, and Personal Loan",21.25712803,13.3149419,4.59,5,Good,1808.794083,29.35848916,29 Years and 6 Months,No,52.69003966,137.9109202,!@9#%8,227.0770855,0,-0.2918,-0.9456,1.0967,0.2471,0.6538 +0x1c7ad,CUS_0x1c7a,August,32,324-22-8733,Mechanic,19568.09,1765.674167,6,9,35.95700519,9,"Mortgage Loan, Student Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Not Specified",,19.61324791,16.48,17,_,4101.145776,36.59261393,3 Years and 8 Months,Yes,1448.977421,,High_spent_Large_value_payments,228.7639439,0,0.0418,2.0362,2.0933,-0.9805,-0.2826 +0x1c7b9,CUS_0x1dab,August,30,#F%$D@*&8,Writer,10622.485,,6,4,8,4,"Personal Loan, Home Equity Loan, Personal Loan, and Personal Loan",20.88318477,15.51877241,9.31,1,_,1533.032686,30.19150046,15 Years and 11 Months,Yes,20.0837238,27.02597514,High_spent_Small_value_payments,285.1110094,0,1.0774,1.0142,-0.6824,1.1378,-0.7738 +0x1c7c5,CUS_0x9274,August,54,199-85-2971,Media_Manager,19797.895,1816.824583,4,4,6,1,Auto Loan,,4,9.28,3,_,607.67,24.32927415,15 Years and 11 Months,No,13.04719432,179.7857256,Low_spent_Small_value_payments,278.8495384,0,-1.5613,-0.1506,-0.762,-1.1049,0.3284 +0x1c7d1,CUS_0x7aad,August,80,679-12-3204,Musician,30696.33,2617.0275,2,3,8,2,"Home Equity Loan, and Student Loan",8.057215118,10,7.75,4,Good,1263.159726,25.49180216,17 Years and 9 Months,No,27.44815385,113.5775756,Low_spent_Small_value_payments,422.1995924,0,1.0545,-1.1728,-0.8356,-0.1363,-0.7938 +0x1c7dd,CUS_0xebe,August,38,927-90-3768,Journalist,28286.24,2273.186667,4,7,7,1,Mortgage Loan,,13,11.99,4,Standard,1406.94,28.70036596,,No,17.43167231,47.31416389,High_spent_Medium_value_payments,412.5728305,0,-0.7126,0.3245,-0.0654,-1.3326,-0.5895 +0x1c7e9,CUS_0x4ac2,August,43,142-75-5225,Developer,10100.48,1129.706667,10,10,29.88954781,7,"Not Specified, Payday Loan, Auto Loan, Not Specified, Not Specified, Not Specified, and Home Equity Loan",,19,9.89,11,Bad,4336.68,34.09941375,13 Years and 0 Months,Yes,1356.392661,32.01526524,High_spent_Small_value_payments,290.2326593,0,1.804,-0.6426,0.7305,-1.1638,-0.5432 +0x1c7f5,CUS_0x2031,August,49,999-28-9483,Musician,20675.475,1899.95625,3,1,10.28836175,2,"Student Loan, and Payday Loan",6.293673828,7,5.76,3,Good,67.58996759,26.43781739,21 Years and 9 Months,No,21.99594319,480.2831415,High_spent_Small_value_payments,375.5233445,0,0.6645,0.997,-0.0265,0.518,-1.7728 +0x1c801,CUS_0x919b,August,32,613-58-8505,Entrepreneur,52862.85,4575.2375,7,9,22.06745738,5,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Auto Loan, and Auto Loan",44.67118092,28.53461268,29.77,13,_,3388.101962,26.20035529,6 Years and 3 Months,Yes,136.662413,,Low_spent_Small_value_payments,37.72016997,0,1.3806,-1.0385,-0.2162,-1.5045,0.1742 +0x1c80d,CUS_0x2d81,August,46,168-27-5955,Developer,151854.56,12446.54667,3,4,9,3,"Not Specified, Auto Loan, and Auto Loan",0,1,12.42,2,_,1205.6,34.54694947,16 Years and 3 Months,No,316.4817264,686.5914427,High_spent_Small_value_payments,501.5814976,0,-0.9798,-0.6968,0.0589,-0.2963,-0.3513 +0x1c819,CUS_0x92ca,August,20,724-38-6924,Teacher,67867.24,5389.603333,7,3,14,4,"Student Loan, Mortgage Loan, Auto Loan, and Auto Loan",18.17105022,16,11.6,9,Standard,706.85,28.27749285,16 Years and 10 Months,Yes,135.0092806,115.3725988,!@9#%8,538.5784539,0,0.3114,-0.3258,1.1145,-0.7048,-0.0746 +0x1c825,CUS_0xc5f8,August,22,697-34-9092,Musician,19998.33,1810.5275,8,6,12,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",23.53826629,18,12.44,6,Standard,1035.7,23.70931909,16 Years and 0 Months,Yes,42.94652502,171.9716029,Low_spent_Small_value_payments,256.1346221,0,-0.3543,-0.2674,-1.8024,0.5558,0.541 +0x1c831,CUS_0x2010,August,37,357-13-2811,Writer,109563.36,9271.28,4,3,8.288361749,0,Home Equity Loan,10.03297626,12,8.74,6,Good,214.57,34.29935083,25 Years and 0 Months,No,84.18834626,912.0624099,Low_spent_Large_value_payments,620.8147048,0,-0.3313,2.0162,-0.3878,0.0846,0.328 +0x1c83d,CUS_0x2982,August,36,325-12-7594,Journalist,33580.53,,8,7,19,1,Mortgage Loan,20.73826606,17,7.78,7,_,517.32,27.61716242,20 Years and 3 Months,NM,26.01741948,309.4388911,Low_spent_Small_value_payments,221.2814395,0,-0.721,1.3012,-0.1935,-0.8473,-1.0313 +0x1c849,CUS_0x8b7c,August,39,315-96-1253,Scientist,73826.31,5929.1925,3,7,15,3,"Auto Loan, Personal Loan, and Payday Loan",15.31026368,13,11.46,3,_,442.03,36.41225044,30 Years and 8 Months,Yes,170.6532581,81.33519371,High_spent_Large_value_payments,580.9307982,0,1.034,-0.2151,1.0109,-0.2677,0.186 +0x1c855,CUS_0x1bbb,August,26,571-52-6747,Musician,13164.265,,6,4,9.067457376,7,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",,15,15.24,6,Standard,920.6909543,27.6022341,12 Years and 0 Months,Yes,64.61912692,,Low_spent_Small_value_payments,232.3974606,0,0.6085,1.2629,-0.3883,-0.0976,1.3021 +0x1c861,CUS_0x9657,August,26,582-20-3144,Teacher,7123.915,,4,6,19,4,"Auto Loan, Home Equity Loan, Not Specified, and Student Loan",9.244707635,10.74359051,17.24,9,_,1538.725274,30.07596203,,Yes,19.53036923,90.11766479,Low_spent_Small_value_payments,256.0179243,0,0.2705,1.105,1.3818,-0.6289,-0.6353 +0x1c86d,CUS_0x73fb,August,26,293-05-3056,Engineer,44872.3,,1,2,3,0,,,,1.35,4,Good,298.1895056,27.33368085,29 Years and 11 Months,No,0,69.00229759,High_spent_Medium_value_payments,584.2340529,0,0.329,1.7651,0.1006,0.677,-0.3648 +0x1c879,CUS_0xbe22,August,38,648-20-4009,Scientist,38631.06,3046.255,5,3,9,0,,,16,11.75,4,Standard,1061.556033,35.59556859,18 Years and 11 Months,No,0,82.61170347,High_spent_Small_value_payments,489.7600088,0,1.6027,-0.431,0.8879,0.767,0.0274 +0x1c885,CUS_0x2c54,August,52,772-19-9969,_______,49497.34,,8,4,7.288361749,4,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",,14,1.29,5,Standard,129.5,22.20895237,24 Years and 10 Months,No,151.7434212,682.79986,Low_spent_Large_value_payments,275.5720132,0,0.0623,0.4776,1.0446,0.193,0.5623 +0x1c891,CUS_0x68e1,August,34,841-44-8928,Developer,10732.78,,6,6,15,2,"Auto Loan, and Mortgage Loan",19.39987041,15,,7,_,915.78,27.26066172,16 Years and 4 Months,Yes,11.43827586,81.63679421,Low_spent_Medium_value_payments,298.6647633,0,0.1641,0.0574,0.2285,-0.516,-0.573 +0x1c89d,CUS_0x2206,August,80,176-45-5890,Architect,36047.13,,1,7,9,4,"Not Specified, Not Specified, Debt Consolidation Loan, and Credit-Builder Loan",,3.451430265,6.3,2,Good,1425.437127,36.98952848,24 Years and 2 Months,No,84.43033957,,Low_spent_Large_value_payments,295.1119701,0,1.2741,-1.426,-1.3317,1.4457,0.7401 +0x1c8a9,CUS_0x5856,August,80,046-86-7274,Teacher,61630.4,5075.866667,5,7,3,3,"Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",0.707515992,2.345098999,2.26,3,_,1388.141525,31.69043224,,NM,128.6215792,111.6565407,High_spent_Medium_value_payments,517.3085468,0,0.0082,0.5141,1.2876,-0.6985,-0.9518 +0x1c8b5,CUS_0xb13b,August,36,992-69-2664,Architect,11840.105,,7,4,20,2,"Credit-Builder Loan, and Credit-Builder Loan",14.52783283,13,19.25,2,Standard,1259.92,38.37367411,21 Years and 10 Months,Yes,10.13524643,45.63714826,Low_spent_Small_value_payments,310.595147,0,-0.2751,0.5533,1.5712,-1.3338,-1.8191 +0x1c8c1,CUS_0x6991,August,43,065-68-3281,Teacher,18922.23,1801.8525,7,7,33,4,"Not Specified, Student Loan, Home Equity Loan, and Mortgage Loan",33.91215438,14.8731818,17.07,10,Standard,1523.525185,27.30432815,10 Years and 0 Months,Yes,39.59802557,224.1293555,Low_spent_Small_value_payments,206.4578689,0,-0.8161,1.2868,0.0564,0.6518,1.3553 +0x1c8cd,CUS_0x7450,August,51,952-17-6304,Scientist,85023.9,7109.325,2,7,7,2,"Mortgage Loan, and Credit-Builder Loan",17.747963,10.09364699,4.38,8,Good,1508.690931,35.41826364,33 Years and 5 Months,NM,130.9801389,138.6460099,High_spent_Medium_value_payments,691.3063512,0,0.414,-0.187,0.7462,-2.9086,0.7168 +0x1c8d9,CUS_0x8793,August,26,198-37-2258,Accountant,42062.81,3372.234167,1,5,4.288361749,2,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",4.911753501,7,10.88,6,Good,93.73,36.09700913,18 Years and 4 Months,No,78.47564896,,High_spent_Medium_value_payments,407.9841532,0,0.1927,-0.8293,-0.685,-1.7327,-0.2373 +0x1c8e5,CUS_0xbc57,August,43,549-76-1283,Media_Manager,31236.78,2335.065,4,4,24,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",3.729611513,5,7.22,6,Standard,2250.42,29.85380064,6 Years and 3 Months,Yes,80.33364378,57.38949964,High_spent_Large_value_payments,335.7833566,0,-1.4045,0.3105,1.4091,0.3381,-0.8239 +0x1c8f1,CUS_0x45aa,August,23,143-47-1477,Entrepreneur,39909.36,,3,7,29,5,"Payday Loan, Not Specified, Not Specified, Payday Loan, and Auto Loan",16.66303015,14,,10,Standard,2094.03,33.82704903,17 Years and 3 Months,Yes,141.0831536,,High_spent_Medium_value_payments,409.7713987,0,0.4338,0.8472,0.206,-0.6159,0.1957 +0x1c8fd,CUS_0xb229,August,39,067-87-5834,Media_Manager,115012.4,9838.366667,2,2,8,2,"Home Equity Loan, and Debt Consolidation Loan",,7,1.13,1,_,306.9,34.1814818,32 Years and 10 Months,No,173.2189366,287.91664,Low_spent_Medium_value_payments,802.7010901,0,-0.0413,-0.2915,-0.2222,0.9818,1.6363 +0x1c909,CUS_0x5af5,August,25,226-74-3581,Manager,10482.305,1114.525417,9,8,21.06745738,4,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",,27.085901,8.31,1103,Bad,2564.269167,36.54341873,17 Years and 9 Months,Yes,29.37904738,134.2146423,Low_spent_Small_value_payments,211.1385641,0,-0.6092,0.7451,-1.4989,-1.3133,1.6495 +0x1c915,CUS_0x8749,August,22,185-23-0205,Journalist,81617.68,6601.473333,6,7,27,5,"Personal Loan, Payday Loan, Student Loan, Mortgage Loan, and Not Specified",,16,18.46,13,Bad,4156.6,34.89394812,3 Years and 5 Months,Yes,239.5279578,109.3391717,High_spent_Large_value_payments,551.2802039,0,-0.3185,1.4672,1.8895,0.4877,1.496 +0x1c921,CUS_0x8f6b,August,18,345-95-7729,Journalist,28730.26,,7,6,10,3,"Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",21.95834943,16,16.83,7,_,37.2,33.23312969,32 Years and 6 Months,Yes,54.03705813,56.98347929,High_spent_Medium_value_payments,372.2982959,0,0.115,0.5792,0.8831,-0.1948,0.1618 +0x1c92d,CUS_0x88f9,August,43,435-05-8261,Media_Manager,10242.055,1100.504583,8,5,18.06745738,2,"Personal Loan, and Home Equity Loan",22.9608879,14.43477005,13.6,11,Standard,2168.997969,40.12042148,17 Years and 2 Months,Yes,14.92855128,53.40068956,Low_spent_Small_value_payments,305.0009295,0,1.6592,1.1487,0.1446,-2.3408,-0.2799 +0x1c939,CUS_0xc5c9,August,44,792-51-6409,Accountant,114007.88,,8,4,13,4,"Auto Loan, Student Loan, Not Specified, and Not Specified",27.29100155,18,4.86,5,Standard,457.54,31.58697875,20 Years and 3 Months,NM,253.0152869,,Low_spent_Small_value_payments,132.3255098,0,-0.0586,0.1723,1.1452,0.8505,1.2029 +0x1c945,CUS_0x851c,August,18,535-59-9704,Musician,46679.76,,5,4,8,3,"Auto Loan, Auto Loan, and Home Equity Loan",,19,6.19,6,Standard,629.26,38.89417214,6 Years and 0 Months,Yes,74.41370182,10000,High_spent_Medium_value_payments,463.9159986,0,-0.6736,-0.0582,0.0379,0.2773,-1.1844 +0x1c951,CUS_0x1338,August,40,250-62-9181,_______,20078.47,1447.205833,10,10,32.95700519,8,"Student Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",35.56561585,22,25.27,13,_,4768.760954,32.79882786,13 Years and 10 Months,NM,1443.817454,78.19652149,Low_spent_Small_value_payments,191.6562385,0,0.7582,-0.1952,1.2203,0.6488,0.1057 +0x1c95d,CUS_0x1ed2,August,25,443-20-1399,Journalist,20132.77,1690.730833,9,8,18,2,"Credit-Builder Loan, and Not Specified",29.88070731,21.6847703,17.34,11,Standard,1904.595088,40.88289218,16 Years and 3 Months,Yes,22.53535624,22.71885359,High_spent_Large_value_payments,363.8188735,0,-0.0046,-0.9467,0.9821,1.0102,-1.0308 +0x1c969,CUS_0xac1,August,51,081-26-8313,Architect,12221.185,,3,5,19.06745738,1,Credit-Builder Loan,13.96821197,9,19.2,5,Standard,1378.740954,27.61814991,32 Years and 8 Months,Yes,6.298573217,,Low_spent_Small_value_payments,293.5926934,0,-0.6848,-0.6011,-0.1573,0.4551,-0.0354 +0x1c975,CUS_0x5e7a,August,30,671-32-4609,Teacher,47404.02,3883.335,7,9,25.06745738,6,"Payday Loan, Auto Loan, Payday Loan, Mortgage Loan, Student Loan, and Student Loan",30.63721535,17,11.61,9,_,2844.910954,33.79787849,12 Years and 0 Months,Yes,156.4680009,183.8020649,Low_spent_Medium_value_payments,301.3431462,0,-1.2379,-0.0755,0.8469,0.3562,-0.3316 +0x1c981,CUS_0xc715,August,39,287-52-6059,Teacher,32291.88,,7,10,35.06745738,5,"Home Equity Loan, Student Loan, Payday Loan, Not Specified, and Student Loan",21.19993231,,26.55,7,Bad,3653.489619,36.99338402,1 Years and 11 Months,Yes,119.7953272,,High_spent_Small_value_payments,225.8037282,0,0.6259,0.753,0.7482,-0.9549,-0.4062 +0x1c98d,CUS_0x7327,August,19,156-82-3458,Manager,32128.47,2386.3725,3,4,11,4,"Credit-Builder Loan, Auto Loan, Personal Loan, and Payday Loan",19.43755626,16,3.13,4,Good,1054.2581,26.03114429,17 Years and 0 Months,NM,93.41266531,120.0818735,Low_spent_Medium_value_payments,318.2211279,0,1.1577,-1.9347,-1.8109,0.7764,0.5627 +0x1c999,CUS_0xc2ee,August,38,175-81-5968,Accountant,42588.14,3368.011667,7,3,6,100,,,19,0.89,4,Standard,751.44,25.32569418,,No,0,,Low_spent_Small_value_payments,250.484469,0,-1.2718,-0.5161,-0.4897,0.7086,-0.0484 +0x1c9a5,CUS_0x7830,August,39,752-12-4966,Manager,29343.05,,3,4,10,4,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",,10,17.55,4,Standard,590.65,38.26466882,12 Years and 11 Months,Yes,79.49435361,158.3140422,High_spent_Small_value_payments,292.3170209,0,-0.4178,0.9065,0.784,-0.021,-2.3736 +0x1c9b1,CUS_0xced,August,41,112-22-9951,Architect,36311.46,,8,5,13.06745738,4,"Payday Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",,10.08232048,16.75,8,Standard,2237.244535,36.5052751,20 Years and 8 Months,Yes,68.12821011,143.297673,Low_spent_Small_value_payments,326.649329,0,-0.3691,2.1205,-0.045,-0.2094,-1.0813 +0x1c9bd,CUS_0x9e42,August,39,686-51-6231,Media_Manager,126603.51,10711.2925,1,5,1.288361749,2,"Personal Loan, and Student Loan",0,3,6.04,,_,545.67,37.97480356,30 Years and 5 Months,No,163.9444818,517.3461051,High_spent_Large_value_payments,1049.776124,0,-0.3724,0.2018,0.738,0.7604,0.2617 +0x1c9c9,CUS_0x7029,August,21,212-62-9956,Entrepreneur,16944.54,1689.045,8,5,16,0,,,20,18.04,4,Standard,919.7365502,38.90865644,32 Years and 4 Months,Yes,0,104.8625636,Low_spent_Large_value_payments,349.1416104,0,0.2412,1.0442,0.3056,1.4634,0.5812 +0x1c9d5,CUS_0x4f2f,August,24,642-18-2647,Engineer,49596.42,4334.035,6,9,24.88954781,7,"Payday Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",17.89816317,,,14,Bad,2838.24941,26.97288728,8 Years and 6 Months,Yes,1517.322109,63.26197892,High_spent_Medium_value_payments,416.0423891,0,0.7214,-0.5452,-0.4751,0.6402,-0.0326 +0x1c9e1,CUS_0x32c7,August,30,224-30-1995,Journalist,18873.52,1625.793333,8,5,17.06745738,2,"Payday Loan, and Mortgage Loan",,31.13349851,4.01,6,Bad,3198.248474,40.3058615,6 Years and 4 Months,Yes,23.83856035,66.49170485,Low_spent_Small_value_payments,335.5287802,0,-0.2252,-0.4796,0.023,-1.3252,-0.9379 +0x1c9ed,CUS_0x6525,August,28,734-19-2330,Manager,28431.46,2378.288333,7,5,18,5,"Not Specified, Home Equity Loan, Mortgage Loan, Student Loan, and Mortgage Loan",39.51677819,26.88430466,2.64,13,Bad,2457.346351,34.93423046,9 Years and 0 Months,Yes,111.2270292,,Low_spent_Small_value_payments,141.894589,0,-0.8737,1.4714,-2.1661,1.3908,-1.1279 +0x1c9f9,CUS_0x5418,August,41,256-23-6467,Manager,144390.2,12080.51667,5,5,2,0,,0.538074155,4,7.86,1,Good,405.4417669,27.34412232,27 Years and 4 Months,No,0,1865.512904,Low_spent_Small_value_payments,,0,1.4904,-0.2875,-1.1252,0.1383,0.1211 +0x1ca05,CUS_0x6818,August,27,817-44-1544,Journalist,34341.62,,6,6,2,3,"Student Loan, Credit-Builder Loan, and Student Loan",19.11644752,,11.4,6,Standard,557.48,38.74256093,30 Years and 3 Months,No,57.17550717,88.5768448,High_spent_Medium_value_payments,419.3278147,0,-1.1595,0.9057,1.2687,-1.1334,-0.671 +0x1ca11,CUS_0x5a1e,August,80,692-48-2658,Writer,10456.235,,4,8,25,2,"Auto Loan, and Student Loan",23.50758023,16.59359431,16.4,11,Standard,1656.278266,30.0376824,10 Years and 4 Months,Yes,9.822821936,42.94908657,High_spent_Medium_value_payments,306.2633832,0,-0.5083,0.9295,-1.9846,-1.1969,-0.0844 +0x1ca1d,CUS_0x711b,August,48,805-81-7847,Accountant,136179.04,,7,6,16,1,Debt Consolidation Loan,19.11264048,,4.28,8,Standard,556.85,40.85452,26 Years and 6 Months,No,69.41153845,354.0667465,!@9#%8,958.9470484,0,-0.9656,-0.8155,1.3603,1.4091,-1.2103 +0x1ca29,CUS_0x453d,August,25,376-01-8404,Journalist,159327.84,13543.32,3,6,11.28836175,4,"Auto Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",,6,8.34,1,Good,803.43,39.46368391,17 Years and 9 Months,No,443.6757809,618.2656379,High_spent_Large_value_payments,952.3280422,0,-0.408,0.6474,-0.5325,-0.4113,0.1195 +0x1ca35,CUS_0xa9cc,August,35,301-84-1162,Media_Manager,38087,2898.916667,8,7,21,7,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",19.44294604,13,13.57,12,_,2002.39,32.41099982,6 Years and 10 Months,Yes,166.8627714,10000,High_spent_Small_value_payments,292.2836813,0,-1.1326,-1.8946,1.0262,2.0228,0.1593 +0x1ca41,CUS_0x6c4e,August,33,467-01-4929,Architect,15784.29,,5,5,9,7,"Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Student Loan, Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",15.91438445,14,,7,Standard,485.24,29.80498299,17 Years and 9 Months,Yes,91.89197618,111.5019795,Low_spent_Small_value_payments,201.3417943,0,1.7719,-0.3971,-1.9687,0.0578,-0.9359 +0x1ca4d,CUS_0xbeef,August,20,351-04-3643,Mechanic,14531.07,,4,5,9,4,"Auto Loan, Personal Loan, Home Equity Loan, and Not Specified",15.52866851,10,9.77,4,_,268.56,27.4279632,,No,34.46263075,85.06858384,Low_spent_Small_value_payments,273.2610354,0,-0.2224,-1.9506,-0.1222,0.2023,1.3251 +0x1ca59,CUS_0xbc40,August,26,507-87-3579,Musician,77856.36,,10,6,22,8,"Mortgage Loan, Payday Loan, Home Equity Loan, Student Loan, Personal Loan, Auto Loan, Not Specified, and Not Specified",42.97603054,22.75634791,17.78,10,_,4118.105774,37.33982484,4 Years and 5 Months,Yes,755.420518,183.6246413,Low_spent_Large_value_payments,356.1239111,0,-1.3075,-0.2701,-0.2754,-0.8396,-0.7736 +0x1ca65,CUS_0x241d,August,26,642-46-2233,Teacher,19896.89,1434.074167,5,4,20,4,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",27.07879847,21.80686219,12.08,7,_,2452.679779,24.45103609,14 Years and 4 Months,Yes,35.26800169,60.76411085,High_spent_Small_value_payments,307.3753041,0,-1.2521,-0.4311,-0.0417,-0.3382,0.9992 +0x1ca71,CUS_0x93b2,August,50,191-48-4647,Developer,12741.58,1234.798333,5,7,9,3,"Auto Loan, Mortgage Loan, and Personal Loan",,20.7063687,9.4,2,Good,581.4711009,34.9824198,28 Years and 10 Months,No,28.73182913,36.04357025,High_spent_Small_value_payments,318.704434,0,0.7598,1.4384,1.2152,-0.2249,1.3501 +0x1ca7d,CUS_0xb14c,August,42,362-65-9472,Developer,37057.58,,6,3,18,4,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",13.81806872,12,18.94,4,Standard,1970.031261,32.63254892,9 Years and 5 Months,Yes,106.6425283,89.66773025,High_spent_Medium_value_payments,370.1917909,0,-0.4059,1.1537,-1.0505,-0.1369,0.7228 +0x1ca89,CUS_0x8420,August,18,743-41-9460,Media_Manager,19930.93,1708.910833,7,6,17.06745738,5,"Not Specified, Credit-Builder Loan, Auto Loan, Personal Loan, and Payday Loan",34.42662951,18.22448179,9,11,_,5218.810523,37.67848522,14 Years and 4 Months,Yes,56.85617568,216.6205799,Low_spent_Small_value_payments,160.6940398,0,-0.0693,-0.8657,0.1319,-1.4587,-0.7627 +0x1ca95,CUS_0x1041,August,18,675-80-2033,Teacher,8978.11,894.1758333,8,8,30.88954781,9,"Payday Loan, Mortgage Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Student Loan",32.44083347,17,18.48,10,Bad,4913.15,37.74656726,10 Years and 5 Months,Yes,1381.163102,43.56585815,High_spent_Small_value_payments,230.358542,0,0.0813,-1.7703,0.5763,0.5447,1.4148 +0x1caa1,CUS_0x1c2f,August,55,252-59-7720,Manager,54054.18,,6,6,10,100,,,19,7.07,4,Good,583.79,34.3974472,,No,0,505.822141,!@9#%8,213.829359,0,0.5596,-0.1276,0.4781,-1.3825,-1.176 +0x1caad,CUS_0x8f70,August,53,499-88-0422,_______,29536.93,2329.410833,4,7,7,2,"Mortgage Loan, and Home Equity Loan",18.31037098,,10.92,3,Standard,607.5,37.95209946,21 Years and 11 Months,Yes,38.73726434,140.3621452,Low_spent_Small_value_payments,343.8416738,0,0.8125,0.0513,1.235,0.0911,1.7733 +0x1cab9,CUS_0x614f,August,46,622-65-0067,Manager,44624.66,,1,7,3.288361749,0,,0,0,3.46,2,Good,211.4672231,25.70254033,33 Years and 2 Months,No,0,479.7144083,High_spent_Large_value_payments,549.8952193,0,-0.7451,0.0422,1.1197,-1.0126,1.0017 +0x1cac5,CUS_0x1e9c,August,18,810-61-0368,Engineer,9379.93,622.9371981,10,7,16,8,"Mortgage Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Payday Loan, Payday Loan, and Credit-Builder Loan",36.9241679,24,3.4,11,Bad,4280.56,32.70217596,5 Years and 6 Months,Yes,73.38721343,86.30978193,Low_spent_Small_value_payments,237.3927232,0,0.0666,1.204,-0.5402,0.3809,-0.1905 +0x1cad1,CUS_0xb012,August,36,409-16-9752,Accountant,41310.18,,3,3,10,0,,16.14809172,14,8.33,4,Good,297.6494651,33.83125973,17 Years and 0 Months,No,39954,278.9740097,Low_spent_Large_value_payments,351.5574095,0,-2.3192,-0.8752,0.8172,1.9643,-0.4337 +0x1cadd,CUS_0xc62c,August,26,866-55-6427,_______,130940.76,10918.73,3,4,11.28836175,0,,0,2,,8,Good,1026.268894,33.00935265,31 Years and 6 Months,NM,0,595.4725905,High_spent_Large_value_payments,1181.860511,0,-0.2397,-0.2372,0.2398,-0.4638,0.6521 +0x1cae9,CUS_0x8f65,August,22,493-46-3498,Musician,80678.55,7017.2125,5,5,8,100,"Student Loan, and Mortgage Loan",12.49516026,13,11.01,5,Standard,345.47,31.8042526,29 Years and 8 Months,Yes,105.4494666,173.5275599,High_spent_Large_value_payments,662.7442235,0,-0.1372,-0.9742,-0.2849,-0.0647,-1.3732 +0x1caf5,CUS_0x27ae,August,38,641-84-8745,Doctor,120061.95,,3,5,9,2,"Debt Consolidation Loan, and Personal Loan",,7,5.39,6,Good,696.3345988,32.20067459,24 Years and 2 Months,No,592.2976884,943.297444,Low_spent_Medium_value_payments,283.3095576,0,-0.2497,-1.2754,-1.9674,-0.3785,-0.5242 +0x1cb01,CUS_0x4e60,August,41,448-66-2016,_______,17379.88,,7,7,23.06745738,9,"Student Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Mortgage Loan, Student Loan, Not Specified, Auto Loan, and Credit-Builder Loan",,20.42300852,6.85,6,Bad,2854.3979,35.77849824,17 Years and 11 Months,Yes,78.26611994,,High_spent_Medium_value_payments,240.4916101,0,0.5675,-1.2913,-0.9076,0.881,0.5981 +0x1cb0d,CUS_0x465c,August,28,312-92-8664,Media_Manager,138079.96,,2,4,7.288361749,0,,11.59573687,11.98509578,9.87,4,Good,717.5039106,28.25250796,29 Years and 11 Months,No,0,967.2484933,Low_spent_Medium_value_payments,867.6553011,0,0.554,-0.2756,0.2864,1.7581,0.5202 +0x1cb19,CUS_0x6ccb,August,41,095-39-2430,Writer,24312.94,2040.078333,4,6,20,6,"Auto Loan, Auto Loan, Auto Loan, Personal Loan, Student Loan, and Not Specified",,15,19.83,4,Standard,636.21,31.84253474,10 Years and 3 Months,Yes,120.6661971,65.39262908,!@9#%8,297.9490072,0,-1.1583,1.0308,-0.9444,-0.1186,0.3358 +0x1cb25,CUS_0x5da2,August,30,977-34-2256,Lawyer,17924.07,1303.6725,6,10,31.88954781,1137,"Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Mortgage Loan",27.71187144,19,5.46,17,_,1680.63,32.70158097,14 Years and 2 Months,Yes,1380.513129,,High_spent_Small_value_payments,290.7296266,0,0.8004,-0.6863,-0.3114,0.7948,2.8983 +0x1cb31,CUS_0x638d,August,42,#F%$D@*&8,Engineer,10629.93,,6,7,15,1,Debt Consolidation Loan,16.17590029,11,11.15,3,_,582.83,33.80679612,15 Years and 10 Months,Yes,56.76369805,99.20583794,Low_spent_Medium_value_payments,282.5750656,0,1.1748,-0.4525,0.3108,1.4899,0.7265 +0x1cb3d,CUS_0x777b,August,27,121-84-4174,Lawyer,90661.35,7346.1125,8,3,11,2,"Credit-Builder Loan, and Debt Consolidation Loan",,6,14.76,9,Standard,1375.13,29.96409279,16 Years and 3 Months,Yes,113.126298,484.1270732,!@9#%8,417.3578788,0,-1.6127,-0.7183,-0.7367,-0.849,0.1683 +0x1cb49,CUS_0x34fb,August,35,113-11-1345,Developer,14360.31,973.6925,6,6,25,2,"Payday Loan, and Mortgage Loan",15.13747044,11,4.65,12,Standard,1920.74,37.8281169,8 Years and 5 Months,Yes,17.46798498,74.2346349,Low_spent_Medium_value_payments,285.6666301,0,-1.9255,-1.1221,-0.8735,0.0303,0.1659 +0x1cb55,CUS_0x7e2f,August,55,637-77-9119,Entrepreneur,33280.45,,1,7,9,0,,1.677031284,6,2.58,7,Good,401.98,30.85635567,27 Years and 11 Months,No,0,208.5305882,Low_spent_Medium_value_payments,324.0064951,0,0.1316,1.7138,-0.4558,-0.0639,0.3783 +0x1cb61,CUS_0x3ce1,August,39,542-01-5108,Musician,64551.12,5393.26,6,9,29.88954781,6,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,14,,11,Bad,3462.33,34.44098336,1 Years and 6 Months,Yes,1614.278392,217.636277,High_spent_Medium_value_payments,263.0812494,0,-0.6203,-0.7413,-0.8853,1.4459,-0.0039 +0x1cb6d,CUS_0x15f4,August,18,858-25-8047,Developer,93712.29,,6,4,9.288361749,0,,,20,15.44,5,Standard,17.54914313,36.20907813,30 Years and 11 Months,Yes,33406,1144.044736,Low_spent_Medium_value_payments,439.8986815,0,-0.6908,0.9078,-0.3808,-1.4067,0.2308 +0x1cb79,CUS_0x8bda,August,48,091-73-4515,Scientist,35217.02,,3,7,13,4,"Debt Consolidation Loan, Not Specified, Home Equity Loan, and Mortgage Loan",9.56572206,10,11.58,4,Standard,1290.83,25.49302163,19 Years and 10 Months,Yes,94.18574692,104.47326,High_spent_Medium_value_payments,339.6161598,0,0.2388,-0.6722,-2.1235,0.4303,1.354 +0x1cb85,CUS_0x1cce,August,32,573-65-2004,Entrepreneur,20618.07,1434.1725,9,7,28.06745738,100,"Payday Loan, Debt Consolidation Loan, Student Loan, Student Loan, and Debt Consolidation Loan",29.58477312,17.64692776,9.76,,Bad,1814.252546,35.7796814,,Yes,48.45412971,103.9961869,Low_spent_Small_value_payments,254.2466454,0,0.2589,0.8613,2.3843,1.378,-0.447 +0x1cb91,CUS_0x6144,August,26,#F%$D@*&8,Manager,7091.66,,10,7,16.06745738,2,"Credit-Builder Loan, and Student Loan",,,4.23,12,Bad,2083.86553,36.31389882,19 Years and 10 Months,Yes,11.63268966,26.13088785,High_spent_Small_value_payments,279.1133012,0,0.2207,0.2845,-0.3479,1.0447,0.662 +0x1cb9d,CUS_0x7f56,August,41,309-09-9287,Architect,17646.92,,6,5,30.06745738,5,"Mortgage Loan, Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",46.12039183,27.65026305,9.31,8,Bad,3170.136479,23.51677446,12 Years and 6 Months,Yes,47.38352539,,Low_spent_Medium_value_payments,295.754824,0,0.2674,-0.7449,1.6465,-0.2311,0.2889 +0x1cba9,CUS_0x746,August,25,351-34-4180,Journalist,71172.68,5685.056667,4,5,11,2,"Personal Loan, and Auto Loan",,20,,6,Good,173.1025883,38.21399359,26 Years and 9 Months,No,94.0352206,137.5352498,High_spent_Medium_value_payments,603.3205754,0,-1.5491,0.3292,1.3321,0.0995,-1.3482 +0x1cbb5,CUS_0x5a0c,August,80,309-33-8401,Developer,82892.52,6786.71,9,7,32,4,"Personal Loan, Personal Loan, Payday Loan, and Payday Loan",22.22626739,12.38037291,7.31,7,Standard,1388.965172,31.63679886,19 Years and 6 Months,Yes,223.4693786,10000,High_spent_Medium_value_payments,592.6709207,0,-1.5265,0.6183,-1.0743,0.6261,0.7737 +0x1cbc1,CUS_0x95b1,August,56,065-68-4018,Manager,161710.32,,0,7,4.288361749,0,Not Specified,11.58566921,12,1.76,4,_,387.63,40.54256473,20 Years and 3 Months,No,102.9653937,,High_spent_Large_value_payments,1155.126558,0,-0.5933,1.2748,-0.4941,-0.3773,-1.4733 +0x1cbcd,CUS_0x3bc6,August,27,037-16-8686,Manager,14414.25,,10,9,17.95700519,9,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Payday Loan, Not Specified, Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, and Student Loan",54.03767947,33.98530554,6.74,10,Bad,2989.590488,35.59372832,9 Years and 10 Months,Yes,1405.679137,,Low_spent_Small_value_payments,250.5229826,0,0.6283,0.2282,-0.1644,0.864,-0.3633 +0x1cbd9,CUS_0x2b84,August,39,867-04-9641,Musician,21275.22,1665.935,5,3,5,3,"Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",27.04317015,21.32590375,8.83,8,_,685.3731055,29.587493,6 Years and 0 Months,Yes,39.00516686,116.4093534,!@9#%8,301.1789797,0,-1.1143,0.3723,0.2986,-0.4648,-0.0613 +0x1cbe5,CUS_0x2b57,August,37,475-16-8677,Manager,29337.5,2321.791667,9,7,21.06745738,7,"Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",,24,1.41,15,Bad,2008.020954,33.38137018,15 Years and 4 Months,Yes,164.3135007,,Low_spent_Small_value_payments,24.99696937,0,-0.2099,0.6579,-1.1525,1.4994,-0.3126 +0x1cbf1,CUS_0x4f01,August,29,729-37-0827,Lawyer,31241.2,,6,8,18.06745738,5,"Mortgage Loan, Not Specified, Auto Loan, Student Loan, and Student Loan",,30.14535258,15.91,6,_,2688.2135,25.28944881,9 Years and 5 Months,Yes,122.0673593,112.5697825,Low_spent_Medium_value_payments,290.5859036,0,1.9544,-0.8181,-0.0414,0.4335,-1.2578 +0x1cbfd,CUS_0x4f85,August,30,#F%$D@*&8,Writer,17282.84,,6,4,23,7,"Personal Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",23.79027805,18.97446504,13.27,7,Standard,2236.875678,27.81442389,7 Years and 6 Months,Yes,86.00863649,74.09906718,!@9#%8,262.515963,0,-0.3992,-0.9527,-0.5702,-0.0795,0.8274 +0x1cc09,CUS_0x7c84,August,27,899-41-0548,Architect,31615,,7,4,4.288361749,4,"Home Equity Loan, Payday Loan, Payday Loan, and Personal Loan",10.21355766,10,15.31,7,Standard,330.21,30.66257429,19 Years and 9 Months,Yes,66.6348867,,Low_spent_Small_value_payments,236.2175492,0,1.5123,1.3132,0.4966,1.829,-0.2688 +0x1cc15,CUS_0xc8c,August,23,103-20-7616,Journalist,14821.995,1064.16625,7,7,14,3,"Not Specified, Auto Loan, and Payday Loan",,19,6.76,0,Standard,267.04,25.6203799,25 Years and 0 Months,No,25.61979071,66.26810373,Low_spent_Medium_value_payments,294.5287306,0,0.785,0.7063,-0.8846,-1.3989,1.174 +0x1cc21,CUS_0x8fc8,August,48,809-75-3628,Doctor,34766.91,,8,5,3,3,"Debt Consolidation Loan, Auto Loan, and Mortgage Loan",23.03646633,18,3.95,2,Standard,217.5,31.63712681,19 Years and 2 Months,No,76.90821916,349.4205269,Low_spent_Small_value_payments,142.695504,0,-1.6161,-0.0514,0.5223,-0.9062,0.7594 +0x1cc2d,CUS_0x279f,August,44,231-40-8875,Accountant,88968.9,7176.075,4,3,15,4,"Student Loan, Not Specified, Mortgage Loan, and Auto Loan",23.61910448,15.69929389,21.93,8,Standard,414.5619648,26.70772476,19 Years and 8 Months,Yes,290.5684102,250.8671037,Low_spent_Small_value_payments,466.1719861,0,-0.7128,1.0291,-0.3838,0.129,0.6398 +0x1cc39,CUS_0x786e,August,31,984-79-1344,Entrepreneur,178053.4,15066.78333,0,3,12,100,"Auto Loan, Personal Loan, Not Specified, and Home Equity Loan",10.03297626,12,3.36,4,Good,198.6219051,33.57558594,20 Years and 3 Months,No,304.9903278,11633.0784,High_spent_Medium_value_payments,1016.005814,0,-2.8656,-1.1172,1.5503,0.5622,0.5875 +0x1cc45,CUS_0x18ea,August,33,411-59-6345,Musician,38083.18,2924.598333,3,3,7,4,"Personal Loan, Credit-Builder Loan, Personal Loan, and Not Specified",,9,8.81,5,Good,656.5598328,34.0064567,28 Years and 8 Months,No,91.92566918,,Low_spent_Small_value_payments,145.7781005,0,-2.0248,0.3813,0.9465,-0.2806,0.0292 +0x1cc51,CUS_0x365b,August,43,836-54-5001,Scientist,9328.895,,7,7,15,7,"Not Specified, Payday Loan, Payday Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",36.19068236,15.21531429,2.03,14,Bad,2273.853636,28.36077564,17 Years and 6 Months,Yes,47.94186402,,High_spent_Large_value_payments,250.0304791,0,0.4186,-1.7102,-0.8109,-0.1878,-0.4883 +0x1cc5d,CUS_0x15a7,August,25,755-77-1230,Mechanic,120368.32,10210.69333,1,7,12,3,"Mortgage Loan, Payday Loan, and Not Specified",9.17303802,10.25076382,8.87,1,Good,886.0151377,39.0021205,21 Years and 10 Months,No,288.949692,338.3023791,High_spent_Medium_value_payments,643.8172622,0,0.1367,-0.7653,-0.1807,0.5508,0.6362 +0x1cc69,CUS_0x1912,August,31,380-60-3352,Teacher,157577,12912.41667,5,1,6,1,Not Specified,,5,10.46,4,Good,527.54,37.04668562,24 Years and 2 Months,No,73.21934851,,High_spent_Large_value_payments,1133.076086,0,0.6154,0.2179,-0.3892,-0.587,-0.418 +0x1cc75,CUS_0x44d2,August,23,264-15-7342,Journalist,43493.93,,4,2,4,0,,0,2,6.93,4,Good,551.198335,26.73437544,32 Years and 5 Months,No,0,90.41169482,High_spent_Medium_value_payments,523.8642058,0,-0.3835,-2.3073,-0.0034,-0.4921,0.7268 +0x1cc81,CUS_0x7409,August,38,562-04-5412,Developer,29510.87,2560.239167,4,7,12,3,"Personal Loan, Not Specified, and Debt Consolidation Loan",0,2,8.71,6,Good,1147.62,32.86022778,17 Years and 0 Months,No,49.70734658,105.4701896,Low_spent_Medium_value_payments,380.8463805,0,0.1402,-0.664,-0.8897,0.3198,-0.8876 +0x1cc8d,CUS_0x37d5,August,45,065-99-4728,_______,30207.15,2272.2625,3,3,13,4,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",,18.58358091,8.66,10,Standard,1541.946949,30.55702955,19 Years and 3 Months,Yes,61.07748787,81.8833429,High_spent_Medium_value_payments,334.2654192,0,1.0394,-1.1926,0.1972,0.6497,0.9781 +0x1cc99,CUS_0x1c34,August,26,184-30-9439,Teacher,29987.16,,4,4,3,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",0,3,2.36,1,_,30.53,31.30274471,32 Years and 2 Months,No,60.30053563,137.6637107,High_spent_Small_value_payments,317.8287537,0,0.5533,0.0497,-0.2948,-1.5671,0.7722 +0x1cca5,CUS_0x8fcd,August,31,435-45-6780,_______,14773.3,1432.108333,4,6,15,3,"Credit-Builder Loan, Mortgage Loan, and Payday Loan",25.58706119,20,7.79,9,_,746.8805237,37.80807521,24 Years and 8 Months,Yes,31.57129044,41.7253786,High_spent_Large_value_payments,315.0216571,0,0.6668,0.3861,-1.034,0.637,0.0551 +0x1ccb1,CUS_0x340b,August,39,#F%$D@*&8,_______,64790.24,,9,9,21,7,"Home Equity Loan, Student Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Not Specified, and Credit-Builder Loan",,25.04823887,7.26,10,Bad,1860.495367,36.42705768,7 Years and 9 Months,Yes,322.9971759,177.2231277,High_spent_Medium_value_payments,273.2983631,0,0.9013,1.9642,-0.1216,0.6125,-0.9992 +0x1ccbd,CUS_0xa631,August,45,791-69-8926,Teacher,15428.39,1405.699167,8,8,30,2,"Debt Consolidation Loan, and Student Loan",30.91023766,23,13.92,13,Bad,2664.61,28.84909966,17 Years and 3 Months,Yes,14.29598921,17.29814093,High_spent_Medium_value_payments,358.9757865,0,-1.5455,-0.8173,1.762,-1.4971,1.1737 +0x1ccc9,CUS_0x566f,August,22,718-85-5500,Accountant,8412.555,853.04625,8,3,10,4,"Mortgage Loan, Auto Loan, Payday Loan, and Mortgage Loan",14.38994191,11,13.65,8,_,1664.89,37.89827697,13 Years and 4 Months,NM,27.26153505,10000,Low_spent_Small_value_payments,241.900587,0,1.1224,0.3261,0.4125,-1.603,1.6365 +0x1ccd5,CUS_0x51d4,August,56,545-52-0205,Doctor,102131.04,,5,5,10,0,,17.00584181,11,8.81,6,Standard,27.19,33.68838125,30 Years and 5 Months,No,0,118.8387907,!@9#%8,994.3532093,0,0.3327,-1.3468,0.5328,0.1092,-0.1136 +0x1cce1,CUS_0x205c,August,39,658-64-9433,Lawyer,28836.83,,7,4,16,0,,17.22552008,13,12.71,8,_,608.2540836,28.24764424,17 Years and 5 Months,NM,0,240.7932928,Low_spent_Small_value_payments,302.9709903,0,0.6183,0.3537,1.2147,1.5907,0.1467 +0x1cced,CUS_0x9b0f,August,56,356-37-5102,Musician,14337.56,,3,4,8,4,"Mortgage Loan, Auto Loan, Personal Loan, and Mortgage Loan",21.16715279,16,8.45,7,_,771.35,37.30529069,27 Years and 2 Months,No,28.02146475,108.6446306,!@9#%8,295.6135713,0,1.1747,0.2125,0.8417,-2.1052,-0.5417 +0x1ccf9,CUS_0x7562,August,26,984-41-8281,Writer,110675.88,8922.99,8,5,15.28836175,0,Payday Loan,8.806179936,9.613285774,8.04,2,Standard,1334.511867,37.92149999,22 Years and 2 Months,No,79.67610716,636.0022278,High_spent_Large_value_payments,836.558126,0,-0.4463,-0.2642,0.3134,-0.4945,1.484 +0x1cd05,CUS_0x1c7d,August,38,792-37-0645,Accountant,19704.16,1740.013333,9,9,34.06745738,5,"Home Equity Loan, Mortgage Loan, Personal Loan, Mortgage Loan, and Student Loan",37.75149709,24,19.55,11,Bad,5089.980954,34.55783918,5 Years and 10 Months,Yes,73.40603533,19.41423878,High_spent_Medium_value_payments,304.4607713,0,-1.257,1.0872,0.9319,0.5921,0.104 +0x1cd11,CUS_0xbc49,August,26,100-44-7800,Developer,72674.76,6099.23,6,10,31,7,"Debt Consolidation Loan, Payday Loan, Not Specified, Mortgage Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",39.30174723,21.61789942,4.7,9,_,2742.649031,24.99302862,13 Years and 11 Months,Yes,416.7980512,66.4111768,High_spent_Large_value_payments,366.713772,0,1.5478,0.3314,1.4521,-1.2061,-0.0988 +0x1cd1d,CUS_0x4da6,August,18,#F%$D@*&8,Musician,20621.72,1849.476667,7,8,30,2,"Student Loan, and Mortgage Loan",30.48693286,22.80257593,7.35,13,Standard,2562.307633,37.54660641,18 Years and 9 Months,Yes,29.60233077,33.78933668,High_spent_Small_value_payments,381.5559992,0,0.1065,0.0549,0.0377,0.2331,-0.4972 +0x1cd29,CUS_0x1154,August,41,848-35-0776,Developer,7645.095,,9,9,19,5,"Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",30.00623619,18,21.14,10,Bad,2869.83,24.63934638,12 Years and 2 Months,Yes,17.48785105,48.62391276,Low_spent_Small_value_payments,287.0973612,0,0.8336,-1.2803,0.9239,1.5157,0.9144 +0x1cd35,CUS_0xbe82,August,24,824-74-0001,Media_Manager,117502.8,,3,5,15.28836175,0,Not Specified,,19,11.14,2,Standard,953.87,33.63688591,19 Years and 8 Months,NM,96.48132015,651.5209868,High_spent_Large_value_payments,905.5251541,0,-1.2021,-0.5808,0.5429,-0.2482,-0.6934 +0x1cd41,CUS_0x123a,August,18,669-29-3700,Media_Manager,36228.2,,8,7,34,2,"Personal Loan, and Not Specified",,18.13775393,18.07,9,_,1789.862935,37.11248259,18 Years and 9 Months,Yes,47.25240768,,Low_spent_Medium_value_payments,366.9782289,0,-1.3816,-0.7701,0.5205,-0.5502,-0.1131 +0x1cd4d,CUS_0x738c,August,18,002-82-0303,Manager,46340.67,3969.7225,8,7,13,5,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",24.55658414,17,17.42,11,_,791.45,25.7887781,11 Years and 11 Months,Yes,111.9609275,28.77702887,High_spent_Large_value_payments,496.2342936,0,0.0835,-0.7018,-0.6225,-1.5596,1.1023 +0x1cd59,CUS_0x6010,August,46,489-16-3177,Mechanic,146101.28,12012.10667,3,4,9,5,"Auto Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, and Student Loan",9.011257204,7,19.13,7,Standard,1311.47,32.54864448,17 Years and 9 Months,Yes,307.1447979,1511.712436,Low_spent_Small_value_payments,,0,-1.3382,-0.0445,0.6212,-1.0418,-0.0597 +0x1cd65,CUS_0x7693,August,40,860-60-0602,Developer,52958.43,4313.2025,8,467,32,8,"Student Loan, Student Loan, Student Loan, Personal Loan, Personal Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",38.19214092,16.94666297,5.78,6,Bad,1861.18623,33.98853692,12 Years and 9 Months,Yes,282.58813,84.16748317,High_spent_Large_value_payments,304.5646368,0,-0.3354,0.7975,0.3337,0.0384,-1.2401 +0x1cd71,CUS_0xbaeb,August,41,729-50-5370,Developer,110758.68,9389.89,3,5,18,0,,20.7239494,15,10.48,7,_,432.4889018,28.30228812,16 Years and 10 Months,Yes,0,11592.31963,!@9#%8,1113.959693,0,0.292,-1.7764,1.2428,1.5766,-1.9857 +0x1cd7d,CUS_0x3a85,August,29,058-58-1144,Musician,12731.78,,6,1456,8.177909563,438,,17.69174695,15,12,2,Standard,80.09,32.35238142,16 Years and 5 Months,No,1323.483444,463.9234571,Low_spent_Small_value_payments,352.8986453,0,1.3717,-0.7508,-0.1889,1.9787,0.5529 +0x1cd89,CUS_0x55da,August,21,694-46-4281,Entrepreneur,20535.05,,7,6,29.06745738,5,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",25.47393024,16,7.47,13,Bad,2389.080954,31.17455762,18 Years and 10 Months,Yes,53.21442386,42.22639463,High_spent_Large_value_payments,308.3643102,0,-0.7399,-1.9789,0.3149,-1.2371,0.6004 +0x1cd95,CUS_0x778e,August,29,943-65-1465,Lawyer,40317.5,3140.791667,7,6,28,8,"Personal Loan, Mortgage Loan, Not Specified, Personal Loan, Not Specified, Mortgage Loan, Not Specified, and Personal Loan",,20,24.82,15,Bad,4073.71,38.45028047,5 Years and 2 Months,Yes,187.1464087,133.475792,High_spent_Medium_value_payments,243.456966,0,0.7067,0.8218,0.1443,-0.192,-0.686 +0x1cda1,CUS_0xa8ce,August,37,373-96-7382,Engineer,52643.34,,10,7,25,7,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",30.15960304,,24.09,12,Bad,2802.88,32.16993417,10 Years and 8 Months,Yes,248.1395477,301.6105288,High_spent_Small_value_payments,169.8444235,0,2.0535,-0.2259,-0.1042,-1.5171,0.4749 +0x1cdad,CUS_0x8bc6,August,21,788-76-2462,Lawyer,18888.46,,8,9,18.88954781,7,"Not Specified, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",,21.46493062,15.41,10,Bad,1764.742398,29.31095959,14 Years and 10 Months,Yes,1392.526784,95.18179778,Low_spent_Medium_value_payments,234.7651707,0,-1.4705,2.1688,-0.9808,-0.9493,1.0939 +0x1cdb9,CUS_0x6484,August,45,242-85-1671,Accountant,95210.2,7743.183333,6,3,18,1,Home Equity Loan,28.74262555,19,17.02,,Standard,864.35,36.08805362,21 Years and 8 Months,Yes,42.53731759,517.9214112,High_spent_Small_value_payments,473.8596045,0,-0.4245,0.2974,-0.9233,1.1436,-0.6194 +0x1cdc5,CUS_0x76e2,August,43,758-23-1095,Engineer,73365.72,,6,7,100,5,"Mortgage Loan, Student Loan, Mortgage Loan, Personal Loan, and Credit-Builder Loan",27.60686582,20.17870696,19.94,4,_,2682.46904,32.69320454,7 Years and 2 Months,Yes,278.9142407,230.8213041,Low_spent_Medium_value_payments,389.7454552,0,0.2296,0.8604,0.7027,2.4342,0.9423 +0x1cdd1,CUS_0xc3e4,August,34,505-53-7023,Engineer,29409.66,2579.805,5,1,6,2,"Credit-Builder Loan, and Debt Consolidation Loan",,5,2.42,0,Good,276.2950006,32.68784036,31 Years and 11 Months,NM,35.00184261,237.787036,!@9#%8,287.1626959,0,1.3044,-1.2819,1.298,1.0795,-1.2465 +0x1cddd,CUS_0xa68a,August,30,722-25-5541,Doctor,76593.92,6402.826667,6,9,27,3,"Home Equity Loan, Payday Loan, and Auto Loan",27.5166882,,0.71,13,Bad,1864.11,27.55201357,17 Years and 9 Months,NM,96.71243805,174.8082808,High_spent_Small_value_payments,628.7619478,0,0.4107,0.6072,-0.3102,-1.6027,-1.5221 +0x1cde9,CUS_0xb2d3,August,30,867-10-9609,Developer,7756.465,516.3720833,10,7,19,2,"Payday Loan, and Student Loan",,24.33148421,4.45,16,Bad,2527.118679,31.83150836,,Yes,9.682064527,33.54570876,Low_spent_Large_value_payments,278.409435,0,-0.5079,2.0001,0.1732,0.2987,0.6797 +0x1cdf5,CUS_0x9f2f,August,33,851-17-8042,Engineer,80968.04,6894.336667,6,7,29.06745738,6,"Personal Loan, Auto Loan, Student Loan, Payday Loan, Home Equity Loan, and Student Loan",39.66811758,25.47655151,2.71,15,Bad,5067.884423,24.93224204,13 Years and 9 Months,NM,356.979543,274.5522526,Low_spent_Small_value_payments,321.1815831,0,0.4129,-2.0308,-0.3468,1.7488,-0.2879 +0x1ce01,CUS_0x6e49,August,29,414-26-7985,Doctor,15855.34,1198.278333,7,7,15,7,"Home Equity Loan, Student Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",33.66785889,26.53795623,10.31,6,_,1489.69288,29.79372865,10 Years and 8 Months,Yes,60.21398983,,Low_spent_Small_value_payments,237.5958118,0,-1.0421,-0.3614,-1.1983,-0.5848,0.5402 +0x1ce0d,CUS_0xb490,August,38,542-78-0787,Accountant,91771.29,7547.6075,4,2,5,3,"Student Loan, Not Specified, and Personal Loan",19.80670348,11.4527643,17.13,11,Standard,1444.701364,39.37093,11 Years and 11 Months,Yes,176.5793519,10000,Low_spent_Large_value_payments,476.3828875,0,0.5565,-1.19,0.4321,1.828,-0.5846 +0x1ce19,CUS_0x5ffc,August,38,756-51-8878,Doctor,66554.31,5744.1925,4,6,15,3,"Payday Loan, Credit-Builder Loan, and Auto Loan",17.03739046,,10.12,5,Standard,485.7,32.52890388,19 Years and 2 Months,No,101.9231149,217.7984673,High_spent_Medium_value_payments,504.6976678,0,-0.7443,-0.1614,1.3453,1.1392,0.3402 +0x1ce25,CUS_0x85d5,August,54,174-26-1457,Scientist,114128.44,,7,4,10,2,"Student Loan, and Credit-Builder Loan",,12,1.37,2,Standard,951.72,29.81698369,17 Years and 6 Months,Yes,164.9586181,178.7107584,High_spent_Medium_value_payments,880.7009568,0,-0.479,-1.3005,-0.1038,1.3264,0.5701 +0x1ce31,CUS_0x4d1,August,36,545-55-3554,Developer,123802.52,,4,3,20,2,"Mortgage Loan, and Payday Loan",,16,6.82,7,Standard,954.71,32.80374283,,No,124.1380723,201.6982055,!@9#%8,964.0513889,0,-1.0307,-1.7886,0.9999,1.363,-0.8822 +0x1ce3d,CUS_0xab9e,August,23,228-35-6058,_______,50513.12,4239.426667,7,6,10,2,"Payday Loan, and Debt Consolidation Loan",12.79388637,10,4.55,4,Good,422.5954765,28.14943799,,No,72.74505702,441.7495663,Low_spent_Medium_value_payments,256.3710739,0,1.2196,0.8136,0.9468,1.2143,1.206 +0x1ce49,CUS_0x7e61,August,54,823-07-3351,Media_Manager,116428.12,9740.343333,5,4,8,1,Student Loan,0,1,1.69,1,Good,463.59,42.49140562,23 Years and 5 Months,No,61.13204845,68.28037024,High_spent_Large_value_payments,1084.621915,0,-1.1557,1.2968,0.1461,-0.2004,0.0912 +0x1ce55,CUS_0x6ddb,August,18,827-28-7539,Teacher,15433.33,1421.110833,8,3,5,2,"Credit-Builder Loan, and Student Loan",30.94955436,22.54998941,17.86,12,Standard,2418.433222,33.06622749,18 Years and 11 Months,Yes,18.25010305,10000,Low_spent_Small_value_payments,362.0398805,0,0.1661,0.2802,0.2451,-0.5705,-0.7332 +0x1ce61,CUS_0xa679,August,21,496-94-9136,Accountant,102665.07,,5,3,15,6,"Debt Consolidation Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",,18,19.64,8,Standard,969.83,36.5195957,8 Years and 6 Months,NM,473.1944774,,Low_spent_Medium_value_payments,227.8988336,0,1.1476,0.2619,-1.3408,-0.2288,-1.7309 +0x1ce6d,CUS_0x3463,August,27,782-87-8295,Scientist,59110.84,5210.903333,4,6,10,3,"Credit-Builder Loan, Payday Loan, and Student Loan",,17,9.72,4,Standard,2685.23,38.36274465,13 Years and 0 Months,Yes,106.6624542,214.0804792,High_spent_Medium_value_payments,450.3473999,0,-0.6763,1.0531,-1.9324,0.9708,1.0403 +0x1ce79,CUS_0x2296,August,33,#F%$D@*&8,_______,75175.46,,4,1,6.288361749,2,"Student Loan, and Payday Loan",3.869679445,6,10.13,4,Good,155.1296265,29.90992565,20 Years and 4 Months,NM,100.3792065,659.4099153,High_spent_Medium_value_payments,589.307242,0,0.0653,0.7981,-1.5406,1.2237,-0.2073 +0x1ce85,CUS_0xc16d,August,21,821-70-0182,Writer,17515.75,,7,9,28.06745738,6,"Personal Loan, Student Loan, Debt Consolidation Loan, Personal Loan, Not Specified, and Not Specified",33.07642341,17,9.09,6,Bad,4065.630954,38.18121205,7 Years and 11 Months,Yes,79.93579618,,!@9#%8,204.9941952,0,0.1923,0.898,0.4013,-0.6882,-0.3805 +0x1ce91,CUS_0x2080,August,21,792-37-9189,Entrepreneur,16047.01,,7,3,18.28836175,0,Credit-Builder Loan,,12,12.89,8,Standard,183.15,31.93958212,23 Years and 9 Months,Yes,8.245353566,,Low_spent_Small_value_payments,235.2515162,0,0.8066,1.064,1.4969,0.6109,0.2846 +0x1ce9d,CUS_0x5a81,August,45,023-47-5429,Entrepreneur,32520.18,,9,1325,28.06745738,6,"Student Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",42.84117922,22.28889468,1.6,7,_,2602.100357,41.43792725,,Yes,126.4102748,109.0300253,Low_spent_Small_value_payments,320.640912,0,-0.4634,1.0805,-1.0268,0.8811,-1.3964 +0x1cea9,CUS_0x1bbf,August,24,889-53-4520,Media_Manager,14749.06,,8,10,29.06745738,5,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",31.74516155,17.01212289,27.54,12,Bad,3243.295807,36.46518567,2 Years and 3 Months,Yes,47.85880178,84.23318094,!@9#%8,221.9965627,0,0.8813,0.8867,0.8084,-0.2925,1.0497 +0x1ceb5,CUS_0x9a1c,August,37,930-67-1725,Lawyer,113561.2,9580.433333,8,4,9,1,Auto Loan,29.6146793,21.33770996,11.99,0,Standard,86.83321327,35.83117742,27 Years and 11 Months,No,53.77838853,10000,Low_spent_Small_value_payments,670.1251035,0,0.3156,0.1745,0.5986,-0.4484,-0.566 +0x1cec1,CUS_0x475f,August,21,782-04-7216,Journalist,101399.13,8535.9275,1,3,2,2,"Mortgage Loan, and Personal Loan",5.927842264,4,3.97,4,Good,1061.06,43.57789209,25 Years and 0 Months,No,132.6748965,103.6005929,High_spent_Large_value_payments,857.3172606,0,1.9562,-0.3991,0.223,0.4504,0.9087 +0x1cecd,CUS_0xc12b,August,25,142-51-9683,Mechanic,71208.16,6029.013333,6,7,16,7,"Auto Loan, Mortgage Loan, Not Specified, Not Specified, Mortgage Loan, Personal Loan, and Personal Loan",38.60690247,27.59189563,1.73,7,_,1489.482972,31.54229707,15 Years and 11 Months,Yes,285.2713044,114.7889338,High_spent_Large_value_payments,442.8410952,0,-0.2874,0.4832,-1.2628,0.9897,-1.1187 +0x1ced9,CUS_0x8a03,August,31,115-90-3148,_______,110209.68,,4,7,6.288361749,4,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",2.461042716,5,1.02,4,Good,482.73,40.29282091,,No,298.1968551,594.5752696,High_spent_Medium_value_payments,678.2793363,0,1.6291,1.7303,1.2364,-0.2549,0.5402 +0x1cee5,CUS_0xbb26,August,33,384-21-7085,Architect,17131.345,,7,5,14,5,"Home Equity Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",22.83173399,16,15.48,,Standard,429.69,40.5727303,17 Years and 6 Months,Yes,36954,26.03000924,High_spent_Large_value_payments,309.5564972,0,-0.3762,-0.1616,-0.1759,-0.1047,0.1542 +0x1cef1,CUS_0x57f3,August,30,577-85-0830,Mechanic,60904.59,5080.3825,3,4,12,2,"Mortgage Loan, and Home Equity Loan",15.43258988,11,12.37,8,Standard,2441.47,31.31094184,13 Years and 3 Months,NM,61.52513971,68.51497617,High_spent_Medium_value_payments,627.9981341,0,-0.5771,-0.8685,-1.1072,2.55,0.088 +0x1cefd,CUS_0xbf1e,August,39,666-79-5524,Journalist,151623.56,12461.29667,4,4,0.288361749,2,"Home Equity Loan, Mortgage Loan, and Home Equity Loan",3.444132283,7,8.11,1,Good,413.28,24.30563362,23 Years and 2 Months,No,216.069745,1212.328315,Low_spent_Medium_value_payments,517.6690675,0,3.1161,-0.1516,-1.2618,-0.0878,-1.4686 +0x1cf09,CUS_0x2824,August,23,501-69-4060,_______,16334.61,,10,625,23.95700519,7,"Personal Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",28.12615576,14.50958985,9.03,17,_,1762.409453,33.27955021,11 Years and 5 Months,NM,1412.360402,10000,Low_spent_Large_value_payments,215.1066123,0,0.4166,-0.2146,2.1778,0.2398,0.4607 +0x1cf15,CUS_0x23b5,August,32,423-92-9444,Mechanic,9491.02,,10,9,25.95700519,6,"Payday Loan, Payday Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",45.26046966,29.22506234,7.91,7,Bad,5529.420605,33.17561401,3 Years and 10 Months,Yes,1349.753961,,Low_spent_Small_value_payments,252.7967589,0,0.4287,1.3099,1.1316,-0.039,-0.1037 +0x1cf21,CUS_0x8a45,August,28,296-65-4508,Developer,41467.22,3174.601667,6,10,18.88954781,9,"Debt Consolidation Loan, Personal Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Student Loan",52.03402477,26.94731817,2.29,15,Bad,1621.190446,25.59599899,13 Years and 8 Months,Yes,1521.85546,237.5195017,Low_spent_Large_value_payments,133.7551233,0,0.9344,0.833,0.1148,0.6243,-1.0795 +0x1cf2d,CUS_0x7a79,August,31,475-79-0112,Manager,104367.21,8486.2675,6,5,19,1,Mortgage Loan,,14,11.24,6,_,399.6211918,38.08585668,16 Years and 0 Months,No,83.34945904,619.7011812,High_spent_Small_value_payments,486.0098347,0,-2.7749,-1.4051,0.1384,-1.7017,0.7544 +0x1cf39,CUS_0x4eca,August,21,572-29-0912,Scientist,93143.58,7584.965,4,4,10,5,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",,20,14.67,7,_,1354.48,33.56499416,7 Years and 10 Months,NM,261.9895007,177.1034335,High_spent_Large_value_payments,559.4035658,0,0.613,0.5633,-0.0354,0.7814,2.1666 +0x1cf45,CUS_0x902b,August,52,121-75-2548,Developer,66571.1,5511.591667,2,1,2,3,"Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",10.03297626,12,10.62,0,Good,1218.421369,31.25465791,16 Years and 3 Months,No,86.95203201,378.6001592,Low_spent_Large_value_payments,398.0467846,0,-0.3821,1.6317,-1.0559,-0.5981,-0.6427 +0x1cf51,CUS_0x430b,August,32,383-39-3291,Doctor,53260.38,4342.365,3,3,6,7,"Mortgage Loan, Home Equity Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",26.72901274,18,18.34,4,Standard,2587.43,35.07203654,6 Years and 6 Months,Yes,198.1940612,45.04664418,High_spent_Large_value_payments,430.9957946,0,0.7735,-0.669,-0.3123,1.018,-1.0426 +0x1cf5d,CUS_0x1750,August,37,270-38-6663,Teacher,10021.72,,7,8,32,7,"Home Equity Loan, Payday Loan, Personal Loan, Mortgage Loan, Auto Loan, Not Specified, and Auto Loan",20.4782438,,8.97,16,Bad,2456.755332,26.90727487,5 Years and 10 Months,Yes,93.16776703,22.28213613,Low_spent_Medium_value_payments,265.5456522,0,-0.2672,-1.2094,-1.2286,-0.0739,-0.8924 +0x1cf69,CUS_0x76b0,August,41,540-91-2964,Lawyer,8103.425,,10,10,32.88954781,8,"Home Equity Loan, Credit-Builder Loan, Payday Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Not Specified",,24.86737431,31.92,11,Bad,3241.160751,27.01735072,10 Years and 6 Months,Yes,1362.637344,10000,Low_spent_Medium_value_payments,249.3438479,0,-1.1245,-0.739,2.3971,-2.3279,0.0967 +0x1cf75,CUS_0x9caf,August,40,058-40-2184,Engineer,122309.67,,0,6,2.288361749,4,"Home Equity Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",,1,6.68,2,Good,1044.167154,36.63085643,20 Years and 5 Months,NM,401.573016,524.2628253,High_spent_Large_value_payments,744.4934599,0,-1.3152,1.5842,0.8999,0.1249,-0.2472 +0x1cf81,CUS_0x648a,August,24,016-90-7822,Media_Manager,47733.06,3789.755,7,5,31,6,"Not Specified, Debt Consolidation Loan, Auto Loan, Auto Loan, Personal Loan, and Debt Consolidation Loan",47.8671689,23.80836475,5.1,12,Bad,1900.0097,38.89672222,19 Years and 2 Months,Yes,207.5197165,85.05672253,High_spent_Medium_value_payments,336.399061,0,0.8336,0.325,1.0578,-0.159,0.1042 +0x1cf8d,CUS_0xad1d,August,31,296-71-4680,Developer,20022.29,1607.524167,7,6,22.06745738,7,"Payday Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Home Equity Loan",29.97014169,19,19.4,7,Bad,4920.470954,31.87532057,4 Years and 5 Months,Yes,100.8440041,59.5839876,Low_spent_Small_value_payments,263.604137,0,-0.4963,-0.3879,0.4421,2.1075,-0.1285 +0x1cf99,CUS_0xc35c,August,47,#F%$D@*&8,Architect,105750.3,9037.525,5,5,17,0,,19.51732068,14,10.41,5,Standard,901.52,36.50772108,31 Years and 5 Months,Yes,0,188.8879198,High_spent_Large_value_payments,954.8645802,0,-0.6469,-1.6821,-0.201,0.1538,0.5217 +0x1cfa5,CUS_0x41fc,August,19,273-81-5890,Teacher,27323.11,,4,6,10,100,"Credit-Builder Loan, and Home Equity Loan",10.74971611,12,7.17,5,Standard,1202.4,23.40416463,,Yes,28.3576247,280.3798506,Low_spent_Small_value_payments,192.455108,0,0.8394,-1.5794,-0.9286,0.234,-0.807 +0x1cfb1,CUS_0x7dc6,August,80,995-81-3178,Lawyer,127760.4,,2,7,11,4,"Payday Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",,1,,3,Good,387.1635787,36.15452401,16 Years and 5 Months,NM,373.9219562,169.4615122,High_spent_Medium_value_payments,798.356277,0,-1.6851,1.3443,-0.7609,-1.4276,-0.6126 +0x1cfbd,CUS_0x753f,August,56,359-26-2390,Entrepreneur,25793.11,,4,7,20,3,"Auto Loan, Credit-Builder Loan, and Home Equity Loan",11.59070031,12,8.78,9,Standard,413.08,24.80642706,29 Years and 8 Months,NM,47.57935791,91.47645961,High_spent_Medium_value_payments,343.1867658,0,1.009,-0.5304,1.6485,1.435,0.529 +0x1cfc9,CUS_0x5578,August,32,585-25-3212,Mechanic,14318.26,1043.188333,8,8,18.06745738,5,"Home Equity Loan, Mortgage Loan, Auto Loan, Not Specified, and Auto Loan",33.33235544,21,21.1,12,Bad,2821.790954,27.01375175,4 Years and 11 Months,Yes,50.2926554,46.24391745,Low_spent_Large_value_payments,251.0619725,0,-0.0447,0.5478,-0.2756,0.3525,-0.8864 +0x1cfd5,CUS_0xa2f4,August,36,564-46-1659,Journalist,15836.57,,7,8,19.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",,20,17.85,6,Bad,4519.796702,27.41135693,10 Years and 2 Months,Yes,50.42557277,103.9252058,High_spent_Small_value_payments,247.4967261,0,-0.1628,-0.003,-1.1066,0.7175,-1.0346 +0x1cfe1,CUS_0x233e,August,54,007-39-8307,Media_Manager,125873.84,,0,6,11.28836175,2,"Auto Loan, and Not Specified",5.998512775,7,6.15,8,Good,446.36,43.05328723,26 Years and 8 Months,No,183.0815422,495.6586731,High_spent_Large_value_payments,1048.145912,0,0.4544,0.0974,3.5025,-0.6924,0.6814 +0x1cfed,CUS_0x6492,August,25,120-75-9977,Doctor,72219.48,5544.377502,9,6,18,9,"Payday Loan, Mortgage Loan, Not Specified, Auto Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",19.93493333,,24.77,,Bad,3456.15,35.71946952,9 Years and 2 Months,Yes,734.5989922,466.2489962,Low_spent_Large_value_payments,,0,-1.2075,0.0538,0.736,-0.723,0.9162 +0x1cff9,CUS_0x1a3a,August,43,273-60-9876,Accountant,48948.57,,5,7,9,6,"Auto Loan, Auto Loan, Student Loan, Payday Loan, Personal Loan, and Student Loan",13.70610502,10,14.14,9,Standard,2414.79,37.31253711,15 Years and 3 Months,Yes,157.7818125,135.321982,High_spent_Medium_value_payments,341.4009555,0,-0.0497,-1.6112,-0.5313,1.4644,0.2405 +0x1d005,CUS_0x9a26,August,34,265-46-1313,Teacher,61204.77,5057.3975,8,8,33.95700519,6,"Not Specified, Home Equity Loan, Not Specified, Student Loan, Student Loan, and Auto Loan",,26,18.42,16,_,4975.370954,32.28348056,,Yes,1559.914644,158.3699831,High_spent_Medium_value_payments,316.4047538,0,-0.7897,-1.1811,-0.9769,0.0927,-0.5655 +0x1d011,CUS_0x18fd,August,43,885-14-1406,_______,19711.14,1490.595,1,4,11,1,Debt Consolidation Loan,9.43284122,10.93335722,-2.77,7,Good,378.8064419,23.91174216,21 Years and 3 Months,No,14.42456576,162.4285572,Low_spent_Small_value_payments,262.2063771,0,-0.4645,-0.2433,0.8014,0.9537,-1.127 +0x1d01d,CUS_0x698b,August,44,623-15-9564,Entrepreneur,144624.92,,0,2,9,0,,0,1,11.77,4,Good,969.94,32.23554061,29 Years and 6 Months,No,0,812.6955639,Low_spent_Medium_value_payments,665.9121027,0,-0.1945,-0.6379,0.6126,0.6989,-0.05 +0x1d029,CUS_0xf21,August,39,040-81-5039,Media_Manager,13543.805,,6,2,18,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",21.58724339,19,13.14,4,Standard,929.03,40.94037202,27 Years and 11 Months,Yes,30.68793184,28.69128767,Low_spent_Medium_value_payments,324.1858222,0,0.7549,-0.9064,0.0397,-0.5236,-0.7215 +0x1d035,CUS_0xb481,August,26,214-50-8529,Engineer,20014.91,,8,7,19.06745738,5,"Personal Loan, Auto Loan, Auto Loan, Personal Loan, and Student Loan",,25,21.56,7,Bad,2736.930954,33.46229189,2 Years and 8 Months,Yes,59.24475279,96.66970023,Low_spent_Medium_value_payments,235.0561757,0,0.0246,-1.1442,-1.5726,-0.4449,-1.5771 +0x1d041,CUS_0xb37c,August,35,357-58-5507,Developer,76249.74,,3,3,6,6,"Auto Loan, Credit-Builder Loan, Auto Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",6.366194729,8,17.03,10,Standard,632.88,26.94205603,13 Years and 3 Months,Yes,334.5889798,297.4428958,High_spent_Small_value_payments,257.8826244,0,0.9494,0.3761,-0.5883,-0.8808,-1.214 +0x1d04d,CUS_0x61d5,August,32,407-26-8327,Architect,66979.76,5398.646667,6,10,21.88954781,100,"Mortgage Loan, and Not Specified",,19.23143679,0.78,12,Bad,2229.224764,36.93330545,11 Years and 5 Months,Yes,1419.749016,10000,High_spent_Medium_value_payments,540.3596398,0,1.0491,0.1478,-0.3937,-0.3058,-0.6644 +0x1d059,CUS_0x3190,August,22,277-05-6095,Doctor,61017.93,5054.8275,4,3,7,3,"Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",28.30509211,22,11.13,4,Standard,1286.466477,35.90489594,19 Years and 10 Months,NM,132.8863833,176.8208614,Low_spent_Large_value_payments,486.3908831,0,0.1488,0.9265,0.9737,-0.4863,0.419 +0x1d065,CUS_0x2f04,August,80,093-02-0917,Doctor,38239.44,,0,3,2,1,Student Loan,10.39830171,11,7.95,5,Good,1156.81,33.7521951,23 Years and 0 Months,NM,20.20344768,156.7096278,Low_spent_Large_value_payments,441.6489245,0,-1.8486,-0.3423,2.241,-1.1179,0.0218 +0x1d071,CUS_0xfd1,August,32,389-55-6408,Architect,78666.57,6485.5475,3,4,17,4,"Not Specified, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",16.43739326,10,-5.37,3,Standard,1498.7,37.83176162,22 Years and 5 Months,No,247.8511447,252.3461368,High_spent_Small_value_payments,408.3574685,0,-0.9304,-0.1329,-0.2071,-0.5776,1.3994 +0x1d07d,CUS_0x4fad,August,31,699-91-8597,Architect,31517.47,,7,3,5,4,"Not Specified, Auto Loan, Payday Loan, and Student Loan",,6,8.97,8,Standard,39.28,27.83712329,,Yes,85.35692954,,Low_spent_Small_value_payments,199.9080993,0,-0.5751,1.6902,-0.7872,0.7934,0.631 +0x1d089,CUS_0x79cb,August,41,639-72-7206,Developer,15907.91,,8,6,35.06745738,5,"Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Student Loan",28.9351355,11.82411177,9.43,12,Standard,1761.540069,25.31138631,7 Years and 2 Months,Yes,55.89436241,,Low_spent_Medium_value_payments,260.656787,0,0.3788,1.5711,1.05,-0.3693,-1.0911 +0x1d095,CUS_0x1835,August,18,013-26-5726,Doctor,34888.64,,5,5,20,3,"Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",24.12762699,16,17.08,6,_,817.6,24.77015162,8 Years and 11 Months,Yes,46.09169698,96.82983022,High_spent_Small_value_payments,394.2171395,0,-0.6254,1.1117,0.7646,-1.872,-1.8366 +0x1d0a1,CUS_0x9df7,August,41,177-05-4513,Writer,128919.96,,0,3,10,3,"Personal Loan, Personal Loan, and Home Equity Loan",11.84684305,12,5.9,3,_,579.15,28.15053462,27 Years and 11 Months,No,211.6633663,76.47568856,High_spent_Large_value_payments,1002.993945,0,0.2641,-0.6347,1.5144,-0.4362,0.2874 +0x1d0ad,CUS_0x4a79,August,30,786-89-9032,Engineer,17180.82,,4,4,17,3,"Credit-Builder Loan, Home Equity Loan, and Not Specified",18.98303465,,11.28,4,_,1586.094761,30.75620978,19 Years and 2 Months,Yes,21.83553826,59.91310267,High_spent_Medium_value_payments,343.1522148,0,-0.1552,-2.0964,-1.0815,0.887,-0.5375 +0x1d0b9,CUS_0x16d9,August,41,931-50-1049,Writer,18485.235,,8,4,3,4,"Student Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",17.15349429,14,6.33,6,_,395.45,24.75672187,22 Years and 10 Months,No,52.90096407,118.5206382,Low_spent_Small_value_payments,265.5220228,0,0.2974,0.1082,-1.038,-0.5795,2.4852 +0x1d0c5,CUS_0x522c,August,50,989-63-4213,_______,16204.64,1596.386667,4,5,7,1,Not Specified,31.94573252,23.81564108,8.97,5,Good,96.18091987,33.96016265,,No,8.897017223,,!@9#%8,285.1118356,0,-1.8527,-1.1944,1.333,-0.6861,0.7923 +0x1d0d1,CUS_0xf50,August,20,026-23-7011,Journalist,132398.13,,1,3,8,4,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0,1,-0.49,3,Good,1359.45,38.41992813,29 Years and 4 Months,No,281.835528,135.4808207,High_spent_Large_value_payments,935.7014013,0,-1.2533,-1.1895,-0.7463,0.2447,-1.051 +0x1d0dd,CUS_0x6398,August,44,572-95-7256,Journalist,36354.02,3062.501667,10,9,33.95700519,7,"Personal Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Student Loan, Credit-Builder Loan, and Home Equity Loan",,18.19521917,16.86,11,Standard,3113.445693,37.91665286,12 Years and 0 Months,Yes,1448.391275,87.86691696,High_spent_Small_value_payments,308.9416059,0,0.2688,-0.7632,-0.3167,0.9248,2.062 +0x1d0e9,CUS_0x62f8,August,32,#F%$D@*&8,Architect,16895.24,1509.936667,0,7,10.06745738,3,"Payday Loan, Payday Loan, and Debt Consolidation Loan",11.81705206,7.235305878,3.69,0,Good,1407.118026,31.57722426,18 Years and 10 Months,No,29.26888574,93.86142549,Low_spent_Small_value_payments,291.1430675,0,0.4503,0.402,1.483,2.6182,-0.3639 +0x1d0f5,CUS_0xfae,August,18,869-01-8056,Architect,34589.72,2982.476667,6,9,26.06745738,5,"Personal Loan, Student Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",31.09182543,20.76489222,2.5,8,_,4570.975812,40.10832009,6 Years and 0 Months,Yes,111.6890443,,Low_spent_Small_value_payments,207.9602697,0,0.7236,-0.1066,1.4566,0.4123,-0.1709 +0x1d101,CUS_0xa46,August,42,414-97-4872,Scientist,9559.285,789.6070833,8,7,6,6,"Payday Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Not Specified, and Not Specified",20.19649425,17,8.46,7,Standard,1234.79,36.0353399,16 Years and 8 Months,Yes,37.73284388,,Low_spent_Medium_value_payments,255.2100223,0,1.7717,-0.2327,0.9801,-0.3188,0.7615 +0x1d10d,CUS_0x82a5,August,21,462-17-4966,Engineer,34365.96,,8,9,26,2,"Payday Loan, and Student Loan",,18,7.57,9,_,2011.12,30.6860284,7 Years and 3 Months,NM,52.20331141,143.1609136,!@9#%8,374.018775,0,0.8195,-0.304,-0.9339,-1.9479,-0.3612 +0x1d119,CUS_0xbb07,August,45,636-78-3287,Mechanic,8790.85,986.5708333,9,5,23.06745738,8,"Payday Loan, Student Loan, Auto Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Student Loan, and Student Loan",30.36880007,21.00931981,12.31,7,Bad,4117.897271,35.30816127,2 Years and 5 Months,Yes,42.51434578,,Low_spent_Small_value_payments,255.9127531,0,-1.6787,0.475,1.2678,-0.2144,-0.9289 +0x1d125,CUS_0x71b6,August,27,916-03-3027,Architect,10667.73,1027.9775,7,6,18,2,"Personal Loan, and Not Specified",10.72320651,9,21.32,2,_,556.11,35.45012001,,Yes,16.30580974,51.61895401,!@9#%8,324.8729863,0,2.0544,1.1747,0.414,1.4653,-0.3903 +0x1d131,CUS_0x411,August,44,299-93-5267,Engineer,112287.51,9097.2925,3,5,4.288361749,2,"Credit-Builder Loan, Not Specified, and Auto Loan",5.328833904,7.141691036,,5,_,317.7756694,38.60746536,19 Years and 6 Months,No,167.0641236,597.8838755,!@9#%8,804.7187119,0,0.7668,0.0408,0.4954,1.6174,2.4156 +0x1d13d,CUS_0x5c3c,August,40,506-31-5199,Mechanic,43516.38,3635.365,8,5,17.28836175,2,"Not Specified, Auto Loan, and Debt Consolidation Loan",11.5225407,11,-2.02,7,_,217.57,37.52843446,,No,102.9166074,10419.93746,High_spent_Medium_value_payments,463.5191104,0,0.8332,0.8566,0.6689,-0.7187,-0.8926 +0x1d149,CUS_0x9f23,August,25,655-42-1269,Mechanic,118831.62,9625.635,0,6,6,2,"Auto Loan, and Payday Loan",2.198032195,5,2.37,6,Good,1267.954504,37.04020114,31 Years and 3 Months,No,138.4381307,1028.009886,Low_spent_Medium_value_payments,229.3895297,0,1.6432,-0.864,-0.0032,2.898,-1.138 +0x1d155,CUS_0x178b,August,49,543-67-7876,Developer,43456.5,3437.375,2,680,7.288361749,0,,4.523059431,8,0.62,3,_,339.0192637,23.37740479,31 Years and 5 Months,NM,0,875.1367949,Low_spent_Small_value_payments,234.9900595,0,0.544,1.3064,-0.0847,0.8878,0.8832 +0x1d161,CUS_0x6ed0,August,48,621-86-5012,Journalist,138206.04,11568.17,1,2,7.288361749,2,"Auto Loan, Credit-Builder Loan, and Student Loan",3.825584346,5,4.76,7,_,1240.145063,25.67212256,21 Years and 8 Months,No,173.234755,2029.655487,Low_spent_Small_value_payments,,0,-1.5443,2.6376,0.2432,0.0497,-0.3703 +0x1d16d,CUS_0x6c8b,August,22,382-46-3314,Mechanic,18254.505,1605.20875,3,729,8.288361749,0,,5.241197762,6,2.86,6,_,211.41,32.17520114,19 Years and 6 Months,No,0,584.1338267,Low_spent_Medium_value_payments,276.3245093,0,-0.1711,1.186,-0.3825,-0.9044,0.8489 +0x1d179,CUS_0x691b,August,47,113-64-4918,Scientist,58464.06,,5,6,5750.288362,4,"Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,11,10.14,0,Good,51.47614131,25.2749491,23 Years and 3 Months,No,181.7388942,943.0596736,Low_spent_Small_value_payments,121.2247865,0,-0.3497,0.3681,-0.074,-1.5035,0.6042 +0x1d185,CUS_0x3dfc,August,41,486-78-4954,Entrepreneur,55100.76,4763.73,6,6,20,2,"Mortgage Loan, and Debt Consolidation Loan",,9,17.14,9,Standard,916.34,35.45599945,9 Years and 2 Months,NM,60.01375335,84.77062384,High_spent_Medium_value_payments,581.5886228,0,-0.4929,-1.2155,-0.1772,-1.0147,-0.8849 +0x1d191,CUS_0x34a2,August,49,132-28-3450,_______,36603.85,3204.320833,4,5,7,4,"Home Equity Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",20.28372344,17,15.75,6,Standard,1127.32,26.38547633,28 Years and 6 Months,Yes,106.3666061,136.0232778,High_spent_Medium_value_payments,328.0421995,0,0.7348,0.9757,0.7232,-0.7267,-0.6305 +0x1d19d,CUS_0xaf49,August,29,023-15-3883,Teacher,65804.04,5189.73517,0,1,8,2,"Auto Loan, and Credit-Builder Loan",,8,8.23,8,Good,1256.535042,30.39030896,20 Years and 11 Months,No,486.2633922,399.9294214,Low_spent_Large_value_payments,402.7249691,0,-2.1083,-0.5343,0.4203,1.309,-0.6037 +0x1d1a9,CUS_0x27d8,August,25,543-78-0671,Scientist,13371054,2994.471667,5,3,2,1,Payday Loan,3.331934049,6,4.28,4,_,193.3620304,31.49466439,30 Years and 2 Months,No,19.42813321,71.29492417,High_spent_Large_value_payments,456.8544153,0,-0.3521,0.0077,1.3355,-2.1041,-0.4337 +0x1d1b5,CUS_0x3539,August,35,995-31-4669,Manager,43391.96,,1,5,10,0,,3.920836389,6,10.72,5,Good,1365.47211,38.176459,24 Years and 2 Months,No,0,416.8004222,Low_spent_Medium_value_payments,286.0892678,0,-0.2311,0.3294,2.032,1.5712,0.7777 +0x1d1c1,CUS_0xbb04,August,42,580-11-8949,Doctor,171547.24,14241.60333,2,3,7,4,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Student Loan",0,2.268985322,3.16,4,Good,1184.05962,21.35905054,25 Years and 8 Months,No,533.8391838,10000,Low_spent_Small_value_payments,,0,1.2781,0.769,0.3272,-1.0318,-0.8631 +0x1d1cd,CUS_0x1ea5,August,31,799-33-1118,Lawyer,14145.77,,791,10,18.06745738,6,"Not Specified, Not Specified, Not Specified, Payday Loan, Payday Loan, and Personal Loan",29.84618387,17,17.47,8,Bad,4832.440954,28.28424426,10 Years and 0 Months,Yes,48.70845496,49.88500462,!@9#%8,262.1676691,0,1.0765,1.2148,-0.1824,-1.3477,-1.5108 +0x1d1d9,CUS_0xa424,August,19,257-88-0889,Doctor,21480.965,,3,2,4,100,"Auto Loan, and Home Equity Loan",0,3,11.02,4,Good,702.6251833,27.76485708,33 Years and 5 Months,NM,31.65421725,15.45882012,High_spent_Large_value_payments,369.7681631,0,-1.8798,-0.3397,2.0397,-0.6713,-0.6636 +0x1d1e5,CUS_0x6ed8,August,31,987-64-0393,_______,16501.39,1101.115833,0,5,3,2,"Student Loan, and Mortgage Loan",11.08572819,11,6.63,3,_,589.87,36.11958715,23 Years and 10 Months,No,24.18573263,114.4487501,Low_spent_Small_value_payments,261.4771006,0,-0.3091,-1.8565,0.2384,-0.2141,-0.6716 +0x1d1f1,CUS_0xb8a2,August,29,722-89-2405,Architect,87232.86,,4,4,20,3,"Mortgage Loan, Mortgage Loan, and Auto Loan",,9,12.84,8,Standard,1169.61,38.9034922,28 Years and 4 Months,Yes,177.5291587,,High_spent_Medium_value_payments,694.2964456,0,0.0508,-1.2436,0.2463,2.335,-1.5703 +0x1d1fd,CUS_0x9153,August,29,582-13-9967,Accountant,33444.19,2868.015833,4,6,5.288361749,0,,12.24746131,12,22.83,2,Standard,109.26,32.93240066,26 Years and 10 Months,Yes,0,442.2869005,High_spent_Large_value_payments,504.4521439,0,1.6893,0.4862,-0.0852,0.4938,2.7868 +0x1d209,CUS_0x597c,August,19,732-97-4296,Media_Manager,56069.64,4416.47,10,7,24.06745738,5,"Auto Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",32.77968257,17.59310355,25.96,10,Bad,4201.048322,35.17517844,2 Years and 2 Months,Yes,151.2985193,518.2163484,Low_spent_Small_value_payments,35.41184439,0,-0.3644,-0.58,1.712,-0.6849,2.7143 +0x1d215,CUS_0xd22,August,27,979-91-3445,Engineer,33208.95,,7,6,17,5,"Auto Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,14,18.98,,Standard,559.23,34.63921884,,Yes,98.05708993,73.91764425,!@9#%8,371.4665158,0,-0.8346,0.223,-2.0526,-0.621,-0.4784 +0x1d221,CUS_0x5a42,August,33,040-17-5715,Writer,122452.65,10140.3875,2,7,5.288361749,0,,7.267450182,9.194237558,11.81,7,Good,436.8880588,29.31421851,31 Years and 10 Months,No,0,,High_spent_Large_value_payments,1042.282422,0,1.6904,0.0216,0.5263,-0.8337,-1.6162 +0x1d22d,CUS_0x58aa,August,41,097-10-2324,Lawyer,7664.315,918.6929167,6,5,16.06745738,5,"Debt Consolidation Loan, Student Loan, Not Specified, Credit-Builder Loan, and Not Specified",,12,12.6,7,_,1517.860954,40.22588234,12 Years and 3 Months,Yes,24.23610413,,Low_spent_Small_value_payments,246.8129603,0,0.3819,0.4629,-0.0655,0.437,1.7518 +0x1d239,CUS_0x363d,August,22,387-97-9961,Architect,20655.07,,7,5,9,2,"Not Specified, and Auto Loan",,10,9.88,10,Standard,928.4612469,28.04995072,19 Years and 10 Months,Yes,13405,63.91698678,High_spent_Small_value_payments,348.4448925,0,-0.6981,1.0776,1.1904,0.8052,-1.7229 +0x1d245,CUS_0xf20,August,41,#F%$D@*&8,Musician,58063.48,,8,9,24,5,"Home Equity Loan, Student Loan, Student Loan, Payday Loan, and Student Loan",,24.58303024,18.93,8,Bad,4761.477945,31.94138173,2 Years and 2 Months,Yes,136.1584339,256.3118876,High_spent_Small_value_payments,343.4920119,0,-1.1527,2.0851,-0.9374,0.6407,-0.5421 +0x1d251,CUS_0x28de,August,31,#F%$D@*&8,Entrepreneur,156608.6,13319.71667,4,4,10,0,,5.172544995,4.521299698,9.09,2,Good,1265.344131,39.94777823,18 Years and 5 Months,No,0,816.2281111,Low_spent_Medium_value_payments,795.7435555,0,2.6159,-0.5321,-1.292,-0.1925,-0.3787 +0x1d25d,CUS_0xa607,August,34,643-79-3907,Manager,40924.81,3469.400833,3,5,4,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",0,1,8.68,0,Good,1204.84,35.03764662,,No,68.38487777,369.0136931,Low_spent_Small_value_payments,199.5415124,0,-0.8747,-2.1171,-1.1487,-2.3219,-0.9638 +0x1d269,CUS_0x3482,August,32,072-10-9669,Teacher,8107.295,,8,8,16.88954781,6,"Debt Consolidation Loan, Personal Loan, Payday Loan, Home Equity Loan, Auto Loan, and Payday Loan",25.47685871,19,26.6,8,Bad,3838.2,27.64708974,5 Years and 5 Months,Yes,1347.833837,104.9823829,Low_spent_Small_value_payments,223.8144906,0,0.9589,-0.7769,-0.4023,0.8042,-0.7463 +0x1d275,CUS_0x8ff4,August,18,#F%$D@*&8,Developer,33515.8,,8,9,31.06745738,6,"Not Specified, Credit-Builder Loan, Home Equity Loan, Not Specified, Student Loan, and Payday Loan",,23.60361827,6.6,14,_,2364.845183,32.39592103,8 Years and 3 Months,NM,91.66449551,,Low_spent_Small_value_payments,260.0410311,0,-0.5361,-0.8933,0.6504,0.045,1.6743 +0x1d281,CUS_0x20f3,August,35,898-99-9373,Architect,20344.02,,3,3,33,2,"Not Specified, and Mortgage Loan",,24.35775486,13.29,11,Standard,1527.534098,37.39807494,17 Years and 6 Months,NM,19.01810842,10000,Low_spent_Small_value_payments,373.1189478,0,1.4668,-0.8553,0.8954,1.4123,-1.242 +0x1d28d,CUS_0x7a14,August,25,576-97-5253,Manager,17896.2,,4,5,16,1,Mortgage Loan,15.99015475,15,8.74,2,Standard,1154.906579,37.57037654,18 Years and 11 Months,Yes,10.57835908,,Low_spent_Large_value_payments,295.21218,0,-2.0548,1.7407,2.6901,-0.6717,0.1205 +0x1d299,CUS_0xb7d8,August,36,706-04-8206,Writer,134569.35,,0,4,8,2,"Personal Loan, and Debt Consolidation Loan",7.565502254,7,7.39,9,Good,384.01,26.73027965,18 Years and 5 Months,NM,61771,107.3341286,High_spent_Large_value_payments,1030.694869,0,-1.1191,-0.4289,-0.0007,-0.1324,1.824 +0x1d2a5,CUS_0xb969,August,22,321-26-6733,Doctor,8628.61,530.0508333,9,5,19.06745738,4,"Personal Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",36.73159118,19.0102585,9.3,10,Bad,1917.998561,38.24888705,,Yes,27.04224652,,Low_spent_Small_value_payments,218.418451,0,0.146,0.3252,-0.3253,-0.4307,1.8433 +0x1d2b1,CUS_0xbace,August,18,974-09-5386,Media_Manager,11755.91,,7,7,12.06745738,0,,15.75486152,10,7.22,7,Standard,1689.970954,33.0576191,32 Years and 11 Months,Yes,0,,Low_spent_Small_value_payments,239.6503758,0,-0.3785,-0.2064,0.6402,-0.597,-1.1773 +0x1d2bd,CUS_0xb85c,August,39,236-77-8820,Journalist,17373.39,,5,7,20,5,"Auto Loan, Personal Loan, Not Specified, Credit-Builder Loan, and Student Loan",20.66454921,16.18502034,15.57,10,Standard,2767.716493,34.76223415,17 Years and 6 Months,Yes,54.03211206,62.33642749,Low_spent_Small_value_payments,328.7097105,0,0.8823,-2.0076,-0.4388,-0.4485,-0.0983 +0x1d2c9,CUS_0x47af,August,23,270-88-8789,Journalist,16614.765,1424.56375,4,7,20,1,Home Equity Loan,,15,6.55,8,Standard,931.36,31.41077449,32 Years and 3 Months,No,7.403524777,116.7261186,Low_spent_Small_value_payments,308.3267316,0,-1.3274,1.6387,0.9584,0.3247,-0.8212 +0x1d2d5,CUS_0xc416,August,38,070-24-6926,Accountant,23026.48,,6,6,7,4,"Personal Loan, Payday Loan, Home Equity Loan, and Auto Loan",19.40528563,18,9.66,2,Good,294.5427147,33.32600462,32 Years and 2 Months,No,68.50246987,68.20929511,High_spent_Medium_value_payments,299.9918094,0,0.6014,0.1628,1.2925,-0.4305,-0.5781 +0x1d2e1,CUS_0xcc3,August,38,920-34-9069,Architect,127206.66,,1,7,9.288361749,0,Not Specified,0,0,-0.56,5,_,61.05,27.75997035,16 Years and 2 Months,No,57.74193102,1219.783436,!@9#%8,485.567594,0,1.0863,0.83,-0.0094,-1.1266,1.5317 +0x1d2ed,CUS_0x3d50,August,19,479-19-5462,Journalist,146724.36,12276.03,1,4,3,1053,Not Specified,0,3,2.61,9,Good,1319.64,35.11615045,28 Years and 5 Months,No,94.2131512,,High_spent_Large_value_payments,1260.354167,0,0.5463,0.349,0.01,-0.4984,-0.3043 +0x1d2f9,CUS_0x43e7,August,54,200-09-2850,Mechanic,34963.82,3195.651667,6,5,10,4,"Not Specified, Personal Loan, Debt Consolidation Loan, and Not Specified",,15,9.56,3,Standard,879.49,21.79611192,23 Years and 5 Months,Yes,108.7960829,386.9405901,Low_spent_Small_value_payments,113.8284937,0,0.8164,1.2334,0.0014,0.0457,-0.0694 +0x1d305,CUS_0x761f,August,51,498-34-2763,Teacher,120404.72,10145.72667,3,6,10.28836175,2,"Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0,2.403458595,2.53,6,Good,1480.898134,31.21018452,20 Years and 5 Months,NM,228.8485105,901.7118947,High_spent_Small_value_payments,563.9497225,0,-0.3492,1.1361,-1.0044,-0.7329,-0.2133 +0x1d311,CUS_0x3468,August,30,300-98-3036,Writer,32506.42,,7,7,7,0,,19.48842875,16,1.35,3,Standard,683.6,32.85433335,19 Years and 4 Months,Yes,0,118.1616868,High_spent_Medium_value_payments,426.7251465,0,1.197,-0.7547,-1.5254,0.0347,0.6892 +0x1d31d,CUS_0x5d35,August,32,831-63-9052,Developer,107449.74,9022.145,7,5,8,4,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Payday Loan",,20,17.03,10,_,1218.49,26.88912527,29 Years and 2 Months,Yes,358.0405652,107.6344349,High_spent_Large_value_payments,676.5394999,0,-0.365,2.3748,-0.3743,1.5805,-1.0123 +0x1d329,CUS_0x41d4,August,41,577-41-6573,Developer,21120.835,1790.069583,3,5,2,3,"Debt Consolidation Loan, Credit-Builder Loan, and Student Loan",0.919980158,1,11.73,1,Good,655.39,38.68756803,24 Years and 8 Months,NM,35.01873175,,High_spent_Large_value_payments,348.5109555,0,-0.0073,0.1504,-0.4691,1.6279,-2.6394 +0x1d335,CUS_0x9d73,August,21,285-66-0194,Manager,17738.32,,10,5,24,4,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",39.81583656,24,6.63,9,_,2496.93,23.70132334,,Yes,48.05405408,68.54915342,High_spent_Small_value_payments,314.9161258,0,-0.043,0.6668,1.0072,0.0646,-0.223 +0x1d341,CUS_0x6985,August,25,106-84-1067,Media_Manager,15905.25,,5,4,34,7,"Not Specified, Student Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Payday Loan",34.24967854,24.0566185,17.51,10,Standard,2444.455053,24.89282465,19 Years and 6 Months,Yes,49.58611442,54.690574,Low_spent_Small_value_payments,293.2670616,0,2.8468,-2.2461,-0.5877,-1.022,-1.1388 +0x1d34d,CUS_0x63b0,August,41,951-45-7111,Architect,89705.92,,6,4,16,4,"Mortgage Loan, Mortgage Loan, Student Loan, and Home Equity Loan",13.34215398,10,8.34,4,Standard,434.95,36.90799037,27 Years and 2 Months,No,269.3675385,129.1272184,High_spent_Large_value_payments,609.3545764,0,-0.3913,1.9669,0.7838,0.8908,-0.2772 +0x1d359,CUS_0x35e9,August,22,022-78-9607,_______,17805.21,1600.7675,3,3,8,5,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",17.20868838,14,17.62,5,Standard,1879.94,36.34194381,17 Years and 4 Months,Yes,57.75393199,102.7778914,Low_spent_Small_value_payments,289.5449266,0,-1.1495,-1.4712,-0.1916,-2.4124,1.7026 +0x1d365,CUS_0x7fa0,August,45,513-95-4989,Lawyer,13139.855,,5,5,15,1,Debt Consolidation Loan,6.316679839,7,8.54,3,Standard,361.58,33.50714153,23 Years and 10 Months,No,7.183338098,37.08149421,High_spent_Small_value_payments,317.3339594,0,-0.921,1.3294,-1.2378,-0.2087,-0.8692 +0x1d371,CUS_0x4c36,August,26,744-46-6342,Teacher,22419.74,,4,7,9,5,"Personal Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",,14,11.47,11,Standard,346.91,27.5226895,14 Years and 6 Months,Yes,69.49404802,114.6944215,High_spent_Small_value_payments,251.8426972,0,-1.0302,-0.6575,0.0184,-0.2043,-0.4762 +0x1d37d,CUS_0xb387,August,55,963-72-7646,Scientist,73562.46,5888.205,5,3,14.28836175,2,"Credit-Builder Loan, and Debt Consolidation Loan",16.83728017,16,16.6,4,Standard,190.7113182,28.19400927,28 Years and 4 Months,Yes,100.6502509,692.5894844,!@9#%8,490.4942047,0,-0.1437,0.1777,0.9051,-0.7663,-1.2434 +0x1d389,CUS_0x6619,August,42,876-05-1384,Architect,41131.36,3589.613333,4,6,1,4,"Personal Loan, Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",11.3233906,11,7.75,5,Good,434.980326,26.32579301,20 Years and 10 Months,No,105.0551975,143.0158214,High_spent_Medium_value_payments,380.0825955,0,-1.3651,0.26,-0.8902,-0.2844,0.1426 +0x1d395,CUS_0x958a,August,36,933-41-6144,Accountant,39843.14,3401.261667,6,3,10,3,"Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",17.72920159,12,1.59,2,Standard,461.36,26.32632479,17 Years and 10 Months,No,83.78711316,29.44818495,High_spent_Large_value_payments,466.8908686,0,-0.7211,2.1907,0.2858,0.4409,-0.0605 +0x1d3a1,CUS_0x30a3,August,58,602-29-9502,Doctor,146746.12,12277.84333,2,4,6,100,"Payday Loan, Payday Loan, and Not Specified",,2,3.56,6,Good,1003.255853,39.0422229,19 Years and 5 Months,No,332.2500146,,Low_spent_Large_value_payments,502.78348,0,0.0937,0.1734,0.0595,-0.9809,-1.4483 +0x1d3ad,CUS_0x7bf0,August,36,770-38-6359,Mechanic,20503.21,1430.600833,8,9,22.06745738,9,"Not Specified, Payday Loan, Payday Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Auto Loan",30.30470834,17.35938048,9.24,11,Bad,5494.923691,22.47117158,12 Years and 8 Months,Yes,125.2782237,,Low_spent_Small_value_payments,163.2133652,0,0.9251,-0.8459,0.4837,-0.2948,-2.4894 +0x1d3b9,CUS_0x801,August,29,478-45-7247,Accountant,37182.62,,7,6,19,6,"Personal Loan, Student Loan, Student Loan, Home Equity Loan, Auto Loan, and Debt Consolidation Loan",,23.08176093,20,12,Bad,3003.516892,35.62042948,15 Years and 8 Months,Yes,132.3058495,247.9925477,Low_spent_Medium_value_payments,219.7567694,0,-1.0347,-0.1019,0.4875,2.0198,-0.7662 +0x1d3c5,CUS_0x5513,August,45,319-84-0979,_______,28828.86,,7,7,20.06745738,8,"Personal Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",21.4795344,,19.11,11,_,3525.009474,28.45718556,6 Years and 6 Months,NM,144.0386891,,!@9#%8,57.99187798,0,0.7472,1.8826,1.0042,0.6462,-0.0439 +0x1d3d1,CUS_0x60af,August,27,010-29-7035,Media_Manager,21873.68,,4,1262,2.288361749,4,"Home Equity Loan, Auto Loan, Mortgage Loan, and Personal Loan",7.654063136,9,6.65,5,Good,280.4422397,38.13416314,17 Years and 8 Months,No,54.34360941,525.1604537,Low_spent_Small_value_payments,350.9517886,0,-1.2169,-0.3636,0.4915,-2.061,0.7802 +0x1d3dd,CUS_0x1453,August,48,580-73-5233,Scientist,10682.245,,7,6,6,4,"Personal Loan, Student Loan, Personal Loan, and Mortgage Loan",24.14646137,18,,0,_,1269.6,27.88450632,27 Years and 6 Months,No,17.93363425,21.97550857,Low_spent_Medium_value_payments,309.0095655,0,-0.592,-1.2277,2.1309,0.9989,-0.3556 +0x1d3e9,CUS_0xc428,August,43,863-37-8497,Mechanic,38266.44,3282.87,10,8,30.95700519,9,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Debt Consolidation Loan",33.59990041,17,8.93,13,Bad,2542.170954,25.84050984,13 Years and 3 Months,Yes,1582.291143,225.3957537,Low_spent_Medium_value_payments,79.5497342,0,-1.8335,-0.3842,-1.56,-0.3088,-0.7944 +0x1d3f5,CUS_0xb035,August,32,298-25-8844,Doctor,34217.66,2794.471667,4,3,11,1,Personal Loan,,9,5.39,4,_,418.6921224,33.08981051,24 Years and 8 Months,No,15.08141104,,High_spent_Small_value_payments,410.7416334,0,-0.1447,-0.0253,-0.1572,-0.5103,1.3592 +0x1d401,CUS_0x880,August,22,874-41-1891,Entrepreneur,82684.62,6603.385,4,5,4490.288362,0,Payday Loan,,7.086865123,5.8,6,Good,1060.224351,37.2737627,26 Years and 8 Months,No,45.949631,689.7584988,High_spent_Medium_value_payments,594.5678312,0,0.4177,1.1601,1.1335,0.6204,0.5274 +0x1d40d,CUS_0xc38a,August,50,488-34-3335,Teacher,35774.38,2777.198333,1,6,10,3,"Auto Loan, Personal Loan, and Payday Loan",0,3,11.53,0,Good,489.73,25.96827038,26 Years and 11 Months,No,52.33145894,245.7901238,Low_spent_Small_value_payments,269.5982505,0,0.3254,-0.6197,-0.318,0.7891,-2.2405 +0x1d419,CUS_0xb152,August,18,847-92-5921,Journalist,16886.79,,8,6,32,9,"Mortgage Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",,25,-2.25,9,Bad,2039.51,29.92346732,19 Years and 10 Months,Yes,68.84958846,136.2413972,Low_spent_Small_value_payments,198.6322643,0,0.2553,1.426,0.6841,0.3016,0.6308 +0x1d425,CUS_0x52e5,August,27,485-23-9890,Doctor,62313.54,,6,2,18,4,"Auto Loan, Payday Loan, Student Loan, and Credit-Builder Loan",15.68998497,9,12.82,9,Standard,817.64,27.68222093,10 Years and 6 Months,Yes,196.6796424,,Low_spent_Small_value_payments,81.69472098,0,-0.3069,0.5967,0.3575,0.3066,-1.3058 +0x1d431,CUS_0xa287,August,29,778-40-1332,Lawyer,147378.96,12131.58,1,4,10.28836175,2,"Payday Loan, and Home Equity Loan",7.729454959,10,8.12,1,_,1180.37,31.04576475,16 Years and 11 Months,No,129.9925499,1103.373395,Low_spent_Large_value_payments,669.7295161,0,0.1118,1.8311,-0.7118,-0.089,-0.2061 +0x1d43d,CUS_0x84d0,August,32,278-75-1218,Journalist,60371.84,5006.986667,7,9,22.06745738,8,"Personal Loan, Auto Loan, Personal Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Payday Loan",,27.27086496,27.97,12,Bad,4702.024062,26.85073709,3 Years and 2 Months,Yes,393.0398937,,High_spent_Medium_value_payments,260.185205,0,0.3063,0.0472,1.7593,-0.0786,0.0901 +0x1d449,CUS_0x29b1,August,38,329-69-3115,Musician,12821.555,932.4629167,4,7,17.06745738,4,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",,25.92989962,9.71,10,Standard,1633.731847,28.24356856,17 Years and 0 Months,Yes,22.64408433,,Low_spent_Small_value_payments,245.7654058,0,0.1753,-0.5795,0.5363,0.0374,1.3249 +0x1d455,CUS_0xa80c,August,52,995-60-8424,Journalist,89607.24,7256.27,0,5,12,2,"Student Loan, and Credit-Builder Loan",,3,4.54,7,Good,645.1097593,38.36157996,30 Years and 2 Months,NM,147.8470095,67.56393884,High_spent_Large_value_payments,760.4121729,0,-0.2418,-0.0254,-1.0193,-0.6647,-0.6313 +0x1d461,CUS_0x4f28,August,80,015-78-1852,Developer,57293.49,,8,1122,34,7,"Student Loan, Personal Loan, Auto Loan, Auto Loan, Student Loan, Auto Loan, and Not Specified",33.37675276,21.96583588,10.83,8,Bad,2149.680744,28.33814315,,Yes,309.6118553,581.5749382,Low_spent_Small_value_payments,,0,-0.0485,1.5463,0.3665,0.4764,-0.6431 +0x1d46d,CUS_0x63b4,August,32,674-76-4745,Teacher,117355.48,9757.623333,4,7,1.288361749,100,Credit-Builder Loan,0,1,0.72,3,_,1484.67,42.20657392,26 Years and 8 Months,No,67.67342475,551.8305278,High_spent_Medium_value_payments,1026.195842,0,0.3063,-1.0119,-1.1445,-1.6455,-0.3375 +0x1d479,CUS_0x40e5,August,39,444-67-4226,Media_Manager,115645.65,9434.1375,5,8,9.288361749,0,Auto Loan,90,2324,10.25,5,Good,60.99851392,34.50307972,23 Years and 5 Months,No,70.9580552,1080.338091,Low_spent_Medium_value_payments,587.8076331,0,-0.0251,2.4192,-0.3623,-0.1647,1.733 +0x1d485,CUS_0x68d9,August,80,580-48-2588,Writer,68561.31,,6,5,12,2,"Mortgage Loan, and Credit-Builder Loan",22.88890692,15,8.72,8,Standard,93.67,39.17958967,30 Years and 6 Months,Yes,58.02127367,144.2252563,!@9#%8,607.19772,0,0.2128,-0.4105,-0.428,-1.2138,-0.5671 +0x1d491,CUS_0x2c1c,August,50,373-14-1116,Developer,15651712,1704.626667,5,6,7,0,,,8,12.41,0,Standard,798.8737855,37.40659068,19 Years and 3 Months,Yes,0,59.76295263,High_spent_Medium_value_payments,369.3269908,0,1.2651,0.1965,-1.9615,-1.2543,-0.2545 +0x1d49d,CUS_0xb033,August,18,425-35-6996,Scientist,35412.02,,5,3,19,6,"Mortgage Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",26.67575166,20,10.01,12,Standard,495.51,32.17706395,17 Years and 10 Months,NM,130.7251904,266.2283813,Low_spent_Medium_value_payments,154.546595,0,0.2548,1.7182,-1.2133,-1.5093,-0.269 +0x1d4a9,CUS_0x677f,August,45,255-92-9474,Engineer,40985.48,3329.456667,8,7,28.06745738,4,"Auto Loan, Not Specified, Payday Loan, and Not Specified",37.46143717,20.28889139,9.74,11,Bad,2414.521139,32.40954826,11 Years and 8 Months,Yes,87.04652375,100.2657154,Low_spent_Large_value_payments,388.9131396,0,2.1704,0.9628,0.9764,0.3323,0.1312 +0x1d4b5,CUS_0x7b39,August,36,#F%$D@*&8,Entrepreneur,94739.7,6765.093234,3,7,3,1,Personal Loan,3.564364001,4,6.14,1,Good,1244.26925,36.838307,,No,1146.770586,75.92835412,High_spent_Large_value_payments,882.8004489,0,1.2631,2.6214,-1.6964,-1.6184,1.3561 +0x1d4c1,CUS_0xbe25,August,31,530-34-0553,Scientist,16162.13,1208.844167,8,5,22,6,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Not Specified, Auto Loan, and Home Equity Loan",17.34440669,15,25.07,16,Bad,4449.15,25.54331513,13 Years and 11 Months,Yes,77.05169811,,Low_spent_Medium_value_payments,199.3575716,0,0.6099,0.6617,-0.9171,-0.8312,-0.4056 +0x1d4cd,CUS_0x933f,August,41,056-36-2414,Writer,135478.36,11380.86333,4,6,3,1,Mortgage Loan,16.35627541,,3.91,3,Standard,845.47,30.29327102,16 Years and 8 Months,No,71.20199449,775.138633,High_spent_Small_value_payments,551.7457059,0,-0.6476,0.9109,-1.1858,-0.1661,-0.7734 +0x1d4d9,CUS_0xc5f9,August,36,980-94-4458,Writer,32152.97,,4,884,6,2,"Credit-Builder Loan, and Mortgage Loan",19.9168318,17,13.06,6,_,612.91,26.70732834,,Yes,33.40830422,,Low_spent_Large_value_payments,261.081978,0,0.0586,1.1516,0.5824,2.4023,0.7448 +0x1d4e5,CUS_0xa865,August,24,720-01-6332,Writer,12833.68,1300.473333,3,4,6,4,"Auto Loan, Not Specified, Student Loan, and Auto Loan",33.92589222,23,9.1,2,Good,89.31128424,26.40551911,18 Years and 2 Months,No,35.74976923,138.900378,Low_spent_Small_value_payments,263.0605437,0,1.4479,1.9164,2.6362,1.9782,-0.1617 +0x1d4f1,CUS_0x3a5b,August,26,863-41-5713,Mechanic,14117.27,,5,7,5,3,"Personal Loan, Auto Loan, and Student Loan",17.20399232,14,18.08,10,Standard,672.27,31.99430165,13 Years and 6 Months,Yes,32.4946026,178.7382169,Low_spent_Small_value_payments,218.8110971,0,1.1538,1.3953,-0.0465,0.0958,-1.1927 +0x1d4fd,CUS_0xbe59,August,18,103-15-0584,Entrepreneur,64324.36,5421.363333,10,7,19,7,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",,18,6.94,9,Bad,2633.79,25.39670745,12 Years and 8 Months,Yes,202.9685114,45.62292708,High_spent_Large_value_payments,533.5448948,0,-0.0243,-0.8681,-0.7834,-0.3469,-0.3374 +0x1d509,CUS_0x4cef,August,36,833-84-7188,Media_Manager,104527.6,8900.633333,4,4,12.28836175,0,,,20,7.84,2,Standard,1123.01,35.33109667,23 Years and 6 Months,NM,0,872.1254576,Low_spent_Large_value_payments,707.8753367,0,1.8075,-0.0663,-0.2674,-1.1756,1.1136 +0x1d515,CUS_0x2dd6,August,47,622-34-5202,Developer,29778.94,,1,7,3,4,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",1.689286324,6,9.45,9,Good,1095.43531,40.93683626,22 Years and 5 Months,No,82.65711212,315.7647417,Low_spent_Small_value_payments,181.5777799,0,0.0197,1.331,-0.1402,-0.691,0.4426 +0x1d521,CUS_0x98b3,August,80,587-14-3010,Mechanic,58508.76,4722.73,6,5,17,4,"Mortgage Loan, Credit-Builder Loan, Not Specified, and Personal Loan",20.53268111,15,18.72,7,_,1048.25,26.96197583,,Yes,164.1990219,174.1608428,High_spent_Medium_value_payments,383.9131353,0,0.6007,1.0744,0.3675,-1.4522,-1.0945 +0x1d52d,CUS_0x9189,August,39,#F%$D@*&8,Entrepreneur,65050.32,5626.86,8,5,15,6,"Payday Loan, Personal Loan, Auto Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",,14.62094109,2.19,7,Standard,1722.96962,27.04104828,10 Years and 5 Months,Yes,173.0415281,129.6604967,High_spent_Medium_value_payments,509.9839752,0,-1.3269,1.8416,-1.1713,-1.9265,-0.3218 +0x1d539,CUS_0xa2ca,August,43,225-27-1573,Developer,37475.07,,3,4,6.288361749,0,,9.47465989,9,9.77,7,_,396.4834069,25.14323714,24 Years and 2 Months,No,0,,Low_spent_Large_value_payments,462.2658511,0,-1.3024,-0.5947,2.4511,0.1795,1.3061 +0x1d545,CUS_0xb1f5,August,51,405-57-7202,Developer,17217.28,,7,6,13,0,,,19,18.12,4,Standard,395.46,31.39453494,32 Years and 4 Months,Yes,129.8100931,50.14559869,High_spent_Medium_value_payments,362.8317346,0,0.7167,0.9844,-0.1118,1.7848,-0.3055 +0x1d551,CUS_0x6ba9,August,44,#F%$D@*&8,Lawyer,20272.23,,4,3,12,1,Payday Loan,0.284373788,5,4.83,6,Good,828.97,33.87400181,27 Years and 8 Months,No,11.48015041,74.53506603,High_spent_Medium_value_payments,341.6200336,0,0.4153,0.1578,0.4969,0.9281,0.1637 +0x1d55d,CUS_0x34e1,August,40,128-25-2178,Mechanic,15605.73,1505.4775,10,7,30,6,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Not Specified",41.03131811,24.55991763,7.66,11,Bad,2175.48679,22.54528864,13 Years and 6 Months,Yes,59.17488902,70.9226807,Low_spent_Medium_value_payments,300.4501803,0,-1.2853,-1.9189,-1.4956,0.4524,0.9532 +0x1d569,CUS_0x673b,August,45,773-48-5826,Lawyer,31672.76,2854.396667,5,958,10,2,"Not Specified, and Home Equity Loan",,19,12.12,9,Standard,1151.35,37.96624908,17 Years and 6 Months,Yes,33.47799631,248.8409235,!@9#%8,293.1207469,0,0.905,-1.0477,-0.5058,0.1899,-0.2158 +0x1d575,CUS_0x6bc3,August,23,266-04-7936,Engineer,88905,,6,7,10.28836175,2,"Debt Consolidation Loan, and Mortgage Loan",11.439237,12,0.58,3,Standard,971.83,22.34376386,,Yes,132.5525783,1300.503805,Low_spent_Small_value_payments,,0,0.4742,-2.7074,-0.1248,-0.0778,-0.1704 +0x1d581,CUS_0x4410,August,37,087-88-4254,Media_Manager,14620.51,1176.375833,9,7,29,7,"Personal Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,15.42352861,9.4,12,Standard,2718.697818,28.30118723,14 Years and 2 Months,Yes,82.51268341,102.6326732,Low_spent_Small_value_payments,222.4922267,0,0.1292,0.8956,1.267,-0.059,0.1149 +0x1d58d,CUS_0x6c95,August,39,643-36-3270,Developer,32273.01,2800.4175,1,4,2,3,"Mortgage Loan, Mortgage Loan, and Student Loan",0,1,0.06,3,Good,1362.01,34.76758335,,NM,65.04265706,330.1884228,Low_spent_Small_value_payments,174.8106701,0,1.937,0.1329,3.0502,-0.0783,0.2041 +0x1d599,CUS_0x676b,August,31,580-25-6454,Manager,19995.55,1644.237908,6,6,29,5,"Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",28.71285701,20.30400682,19.26,732,Standard,1558.333963,32.13353211,6 Years and 3 Months,NM,114.4479019,72.84683747,High_spent_Small_value_payments,293.2927698,0,0.3412,-0.3599,-0.8146,2.19,0.4854 +0x1d5a5,CUS_0x927d,August,37,387-28-6212,Media_Manager,35719.4,,4,3,11,2,"Payday Loan, and Home Equity Loan",11.23377301,10,8.54,7,_,1305.932998,31.46812484,,No,48.00661005,,!@9#%8,153.075493,0,-2.3281,1.2376,1.1505,0.1829,1.0322 +0x1d5b1,CUS_0xc586,August,35,921-75-7089,Teacher,15093.63,,10,10,27.95700519,7,"Home Equity Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, and Debt Consolidation Loan",,,17.41,12,Bad,3282.190059,30.83637044,10 Years and 5 Months,Yes,1378.157321,124.7643504,Low_spent_Small_value_payments,214.0082098,0,0.0637,-0.8737,0.888,-0.6807,0.0505 +0x1d5bd,CUS_0x5d46,August,37,#F%$D@*&8,Entrepreneur,36898.49,,6,3,20,4,"Not Specified, Student Loan, Credit-Builder Loan, and Auto Loan",17.40641087,11,11.27,6,Standard,328.45,25.45421123,31 Years and 11 Months,No,109.9101442,10000,Low_spent_Small_value_payments,186.3533493,0,1.6359,0.5462,0.7038,1.2772,1.4881 +0x1d5c9,CUS_0x4459,August,40,435-07-2997,Journalist,31775.41,,4,6,16,2,"Personal Loan, and Not Specified",19.05593794,17,8.04,5,Standard,146.92,33.66016323,15 Years and 8 Months,No,285.3449877,10000,Low_spent_Large_value_payments,387.7181147,0,-0.706,0.8352,-0.2493,1.3013,-0.4068 +0x1d5d5,CUS_0x5aaa,August,51,951-89-5363,Architect,133236.36,11042.03,3,3,0.288361749,2,"Debt Consolidation Loan, Home Equity Loan, and Student Loan",11.08540131,12,2.7,5,_,826.77,37.75944507,29 Years and 3 Months,No,251.0225204,492.9476867,High_spent_Large_value_payments,1020.170254,0,0.3404,0.7001,-2.0067,0.5408,1.1481 +0x1d5e1,CUS_0x500d,August,42,872-67-0804,Teacher,44998.71,,10,5,32.06745738,3,"Student Loan, Home Equity Loan, and Auto Loan",26.81231568,10.32715799,16.65,8,Standard,3110.639121,36.48948257,19 Years and 4 Months,NM,56.83945041,74.1835243,High_spent_Large_value_payments,473.9459873,0,-0.2719,1.077,-0.9373,-1.3252,-0.4341 +0x1d5ed,CUS_0x6cd1,August,22,659-11-2212,Mechanic,81338.16,6642.18,12,10,33.88954781,8,"Credit-Builder Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",39.22680501,18.25889195,19.26,12,_,5117.715826,28.26113394,14 Years and 5 Months,Yes,1680.249977,,Low_spent_Large_value_payments,118.1117007,0,-0.1811,-0.5217,-1.838,-0.7543,0.2567 +0x1d5f9,CUS_0x8543,August,80,756-77-9650,Musician,36637.1,,7,6,15,2,"Mortgage Loan, and Student Loan",90,1177,11.39,5,Standard,68.98,31.63738945,27 Years and 11 Months,NM,50.96763021,10000,!@9#%8,160.6486394,0,-0.3436,0.7274,-0.4572,-1.2217,1.4743 +0x1d605,CUS_0xb8b,August,21,115-10-2398,Teacher,19491.84,1858.32,6,4,17,1,Student Loan,22.77639414,16,6.63,7,Standard,1158.75,38.79208729,33 Years and 5 Months,Yes,12.53361318,,High_spent_Small_value_payments,323.6005304,0,-0.5816,0.8629,-0.4694,-1.6844,0.798 +0x1d611,CUS_0x3e52,August,18,788-42-1694,Writer,11253.46,,3,6,6,4,"Not Specified, Credit-Builder Loan, Auto Loan, and Payday Loan",,11,16.52,6,Standard,1381.81,30.70591142,16 Years and 4 Months,Yes,32.59108154,,Low_spent_Large_value_payments,257.3272534,0,-1.1587,1.096,1.1963,0.7404,-0.0999 +0x1d61d,CUS_0xadb8,August,21,511-50-4936,Doctor,17227.16,,8,6,23.06745738,6,"Payday Loan, Not Specified, Mortgage Loan, Personal Loan, Personal Loan, and Student Loan",35.06546564,18.18075338,7.52,11,Bad,2493.779258,32.50622424,8 Years and 9 Months,Yes,69.89030851,68.18986452,Low_spent_Small_value_payments,265.0592057,0,-0.5257,-0.8044,-1.0532,1.0485,-0.2838 +0x1d629,CUS_0x960e,August,20,087-18-7812,Engineer,9822.095,785.5079167,10,8,20.06745738,5,"Personal Loan, Student Loan, Not Specified, Payday Loan, and Not Specified",29.46060983,17.14363589,26.11,8,_,3405.967466,25.54482078,3 Years and 8 Months,Yes,22.50769753,105.1169078,Low_spent_Small_value_payments,214.2058983,0,1.6067,1.041,-0.686,0.9653,2.0754 +0x1d635,CUS_0x3404,August,34,973-77-6619,Architect,17738.305,,7,4,13,1,Not Specified,16.75523458,12,11.9,11,Standard,661.03,38.93726259,21 Years and 11 Months,Yes,11.73773833,100.9817636,Low_spent_Medium_value_payments,309.1997064,0,-0.5309,-0.0736,0.6092,1.8227,-0.1237 +0x1d641,CUS_0x2b15,August,37,307-21-8840,_______,54315.46,4473.288333,8,4,5,4,"Debt Consolidation Loan, Personal Loan, Auto Loan, and Personal Loan",28.50878628,20,10.39,5,Standard,286.69,30.27547508,,Yes,109.0753456,158.768893,High_spent_Medium_value_payments,429.4845948,0,-0.6438,1.7863,1.4055,-1.4703,0.6023 +0x1d64d,CUS_0xc1f0,August,31,653-55-5390,Manager,68130.21,,7,5,19,2,"Personal Loan, and Home Equity Loan",,17,14,5,_,1069.66,22.95268219,17 Years and 5 Months,Yes,58.25312159,530.1397097,Low_spent_Large_value_payments,271.9589187,0,1.4107,-0.2994,-0.8719,-1.4478,-0.6554 +0x1d659,CUS_0xa037,August,22,318-64-2372,Manager,151649.36,12823.44667,3,7,10.28836175,2,"Personal Loan, Not Specified, and Payday Loan",11.38939029,12,4.48,3,_,358.17,45.43997131,30 Years and 5 Months,No,224.7031328,539.7234269,High_spent_Large_value_payments,1177.855568,0,1.4554,1.3836,-0.8371,-0.3591,-0.8839 +0x1d665,CUS_0x9b6b,August,29,717-52-8463,Accountant,93226.5,7755.875,5,3,5.288361749,4,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",3.192997625,6,-1.86,8,Good,121.02,32.86256216,,No,244.4259083,949.5224622,!@9#%8,281.5765905,0,1.1025,1.0768,0.5945,-0.1663,1.3187 +0x1d671,CUS_0x5c31,August,29,846-74-3288,Accountant,71498.38,6100.198333,4,6,8,0,,7.554732099,7,7.29,3,Good,972.14,25.90480231,,NM,0,148.8002619,High_spent_Medium_value_payments,711.2195714,0,1.2277,-1.8055,-1.2309,1.0887,0.4956 +0x1d67d,CUS_0x2784,August,33,477-65-5868,Architect,78399.12,6568.26,8,9,29.88954781,6,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, Mortgage Loan, and Not Specified",35.34912487,17.14839924,22.27,12,Bad,1825.440253,37.10149262,17 Years and 0 Months,Yes,1560.772694,99.31518157,High_spent_Medium_value_payments,552.4080434,0,1.5977,-0.2047,-0.9167,0.2243,-0.0822 +0x1d689,CUS_0x9102,August,43,977-79-5989,Mechanic,57030.99,,7,3,15,2,"Home Equity Loan, and Not Specified",27.66694612,20.40931682,9.88,6,Standard,2893.059892,28.40292245,17 Years and 5 Months,Yes,69.85828956,197.7040096,!@9#%8,501.0959508,0,0.6871,-0.6305,-0.8328,-1.3666,0.8725 +0x1d695,CUS_0xc0c7,August,39,364-35-5243,Architect,119047.52,9924.626667,8,7,7.288361749,2,"Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",7.206648143,9,9.22,6,_,897.72,43.39440514,28 Years and 9 Months,Yes,199.6579354,621.2655408,High_spent_Large_value_payments,831.4766515,0,-1.1527,-0.3291,-1.1163,-1.3501,1.239 +0x1d6a1,CUS_0x2102,August,51,418-67-9689,Scientist,125883.99,10508.3325,4,6,7,4,"Payday Loan, Not Specified, Not Specified, and Credit-Builder Loan",1.493911149,2,11.14,7,Good,575.48,29.95122271,29 Years and 10 Months,No,299.9074888,147.8025083,High_spent_Large_value_payments,843.1232528,0,-0.9004,0.9487,-0.0402,0.8359,-0.0277 +0x1d6ad,CUS_0x5ed4,August,32,211-83-4029,Lawyer,78937.47,6308.1225,6,3,8,2,"Mortgage Loan, and Home Equity Loan",21.18948902,15,1.63,5,Good,233.5645229,25.10594352,,No,126.566464,70.84191342,High_spent_Large_value_payments,680.9058118,0,-0.0867,0.2251,-2.2083,0.0847,0.4579 +0x1d6b9,CUS_0x8da9,August,29,175-51-1525,Developer,50787.69,4209.3075,6,7,19.06745738,9,"Mortgage Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Payday Loan, and Payday Loan",38.02979145,21,23.44,,Bad,3484.540954,30.38581473,6 Years and 0 Months,Yes,314.22053,46.05224661,High_spent_Large_value_payments,273.9376854,0,1.7311,-0.3491,0.2723,1.6608,-0.7151 +0x1d6c5,CUS_0x8d40,August,24,476-67-1228,Journalist,82135.84,6699.653333,10,10,30.95700519,6,"Personal Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Payday Loan",,23,,11,Bad,4830.220954,39.06645641,4 Years and 6 Months,Yes,1538.320143,503.8433256,Low_spent_Small_value_payments,196.7514959,0,0.7414,0.0488,-0.2012,-1.3661,-0.0023 +0x1d6d1,CUS_0x3a30,August,57,408-73-8461,Developer,29368.56,,5,4,3,2,"Credit-Builder Loan, and Auto Loan",,14,6.92,4,Good,151.6258351,29.95805607,17 Years and 4 Months,No,39.97962277,52.29282946,High_spent_Medium_value_payments,411.0627364,0,0.5646,0.5661,-0.1006,-0.3395,-0.388 +0x1d6dd,CUS_0x4f73,August,30,702-91-3353,Mechanic,130393.96,10618.16333,4,6,8.288361749,0,Mortgage Loan,13.56838395,13,7.39,1,Standard,719.76,34.3635202,18 Years and 2 Months,No,72.34575053,1341.692078,Low_spent_Large_value_payments,337.7159657,0,1.3876,1.335,-0.1081,-0.473,1.1364 +0x1d6e9,CUS_0x7c76,August,43,331-37-9623,Mechanic,15302.74,1408.228333,10,10,25.06745738,5,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Auto Loan",39.11029087,24.88822021,22.23,6,Bad,5520.901683,28.02761136,13 Years and 3 Months,Yes,28197,,Low_spent_Small_value_payments,170.0665854,0,0.7632,0.0739,0.6984,-1.3465,1.3048 +0x1d6f5,CUS_0x4889,August,46,352-25-2221,Accountant,61540.56,5352.38,7,8,17,4,"Not Specified, Debt Consolidation Loan, Personal Loan, and Personal Loan",33.07809871,15.62709775,17.15,7,Standard,1818.478367,29.71107522,19 Years and 0 Months,Yes,146.1982193,203.6081546,High_spent_Small_value_payments,445.4316261,0,0.3666,0.2228,-0.2241,-0.6329,0.6383 +0x1d701,CUS_0x74c,August,44,458-80-6295,Mechanic,131573.6,11159.46667,3,5,7,4,"Home Equity Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",19.87283393,15,4.91,8,_,1384.27,36.80833722,32 Years and 8 Months,Yes,399.7501825,,Low_spent_Medium_value_payments,587.6432153,0,-1.3308,1.9851,-0.1001,-1.2562,0.8779 +0x1d70d,CUS_0x57b2,August,44,784-12-8086,Developer,10381.565,,8,3,7,4,"Not Specified, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",12.19642548,12,10.53,5,Standard,645.3885398,22.67816715,25 Years and 4 Months,No,22.41371975,79.96965545,!@9#%8,279.221233,0,0.3154,0.3594,0.8157,-0.8938,1.2457 +0x1d719,CUS_0x9a13,August,41,145-70-6462,Entrepreneur,131199.12,,1,7,11,1,Mortgage Loan,14.3633114,,1.02,2,Good,1148.341678,30.53677621,19 Years and 3 Months,NM,106.3411905,10000,High_spent_Small_value_payments,828.9664309,0,0.0967,-0.7477,0.1076,-2.0904,-0.9568 +0x1d725,CUS_0xc3cc,August,40,508-87-2538,Mechanic,16997.715,1201.47625,2,2,7,2,"Personal Loan, and Not Specified",,12,0.73,1,Good,1204.59,33.71031214,22 Years and 3 Months,No,26.56462545,129.7780482,Low_spent_Small_value_payments,253.8049514,0,-2.0254,1.5287,-1.5897,2.3825,1.3543 +0x1d731,CUS_0xaa7c,August,31,650-13-8818,Doctor,22434.16,2166.513333,7,7,8,3,"Not Specified, Mortgage Loan, and Mortgage Loan",32.10505453,21.42413525,18.67,7,Standard,303.3605227,27.89317311,23 Years and 6 Months,Yes,30.06803815,139.7145737,High_spent_Small_value_payments,306.8687215,0,0.5684,-0.5992,1.5388,0.6085,-0.434 +0x1d73d,CUS_0x741,August,22,232-53-6053,Media_Manager,122566.59,,0,7,1,0,,12.89861627,10,1.14,3,_,889.69,36.7402961,,No,0,484.3634144,Low_spent_Medium_value_payments,828.0248356,0,-0.2132,-0.5237,0.368,1.9916,0.8082 +0x1d749,CUS_0xa146,August,23,146-83-0280,_______,22934.45,,5,6,17,3,"Not Specified, Not Specified, and Student Loan",23.18343937,19,7.45,13,Standard,829.3,28.42726402,10 Years and 6 Months,Yes,30.9246059,34.50109938,High_spent_Small_value_payments,356.4947114,0,-0.4602,-0.4988,-0.1286,-1.0468,1.0118 +0x1d755,CUS_0x6a14,August,33,510-71-6161,_______,28603.64,2539.636667,1,1,2,0,,0,2,4.23,4,Good,1428.43,32.85659783,31 Years and 10 Months,No,0,129.4288744,Low_spent_Small_value_payments,414.5347923,0,-1.4855,-0.6198,2.2756,-0.3368,-0.8099 +0x1d761,CUS_0x1498,August,40,335-78-1643,Manager,53869.44,4359.12,10,9,24.88954781,9,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Personal Loan, and Home Equity Loan",29.29051598,21.33298022,24.05,12,Bad,4817.922945,26.43925977,9 Years and 10 Months,Yes,1576.696007,10000,High_spent_Medium_value_payments,274.2029006,0,-0.9577,1.4091,0.0949,-0.7655,-0.8589 +0x1d76d,CUS_0x32d3,August,35,204-78-6176,Manager,20107.21,1631.600833,6,6,32,2,"Credit-Builder Loan, and Home Equity Loan",17.31910372,13,10.4,11,Standard,2544.6,28.18717161,19 Years and 8 Months,Yes,27.1063949,110.1370014,Low_spent_Medium_value_payments,305.9166871,0,3.0418,1.4533,-1.3648,0.8255,1.8423 +0x1d779,CUS_0x569d,August,20,163-54-9984,Accountant,8741.32,450.4433333,6,10,28,5,"Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,24,15.77,17,_,3427.899062,36.03490194,5 Years and 2 Months,NM,23.50629756,22.17450661,Low_spent_Medium_value_payments,281.8671501,0,0.3112,0.4328,-1.2083,-1.2053,-1.2765 +0x1d785,CUS_0x68cd,August,22,120-76-9716,Architect,9336.935,887.0779167,6,6,26.06745738,7,"Credit-Builder Loan, Student Loan, Payday Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Not Specified",,24,15.72,14,Bad,3795.450954,34.00329091,14 Years and 5 Months,Yes,40.17751406,54.32276859,Low_spent_Small_value_payments,257.4872211,0,1.6967,0.9658,-1.7295,-0.242,-0.5024 +0x1d791,CUS_0x63fe,August,35,685-81-8221,Mechanic,35062.63,,0,5,7,0,,,,7.43,3,Good,1072.971016,34.69595049,,NM,0,10000,Low_spent_Small_value_payments,261.7512306,0,-1.1239,-0.644,0.9547,0.1733,0.6297 +0x1d79d,CUS_0x7c60,August,46,898-22-2622,Teacher,56135.76,,3,6,19.28836175,2,"Home Equity Loan, and Debt Consolidation Loan",19.4898437,18,-2.6,7,Standard,366.46,23.3353443,15 Years and 11 Months,No,78.06849718,508.2881835,High_spent_Large_value_payments,571.0787804,0,0.467,-1.3059,-0.7993,-0.6066,0.6721 +0x1d7a9,CUS_0x3cf1,August,37,#F%$D@*&8,Lawyer,19749.04,1544.753333,7,7,18.06745738,8,"Payday Loan, Not Specified, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",47.01962643,28.41849842,8.96,8,Bad,4295.740959,32.93867775,5 Years and 10 Months,Yes,128.3315287,56.99684547,High_spent_Medium_value_payments,192.4266712,0,-0.3636,0.4213,0.289,-0.2432,1.0236 +0x1d7b5,CUS_0x91df,August,55,654-29-2159,Accountant,129695.72,10589.97667,1,4,0.288361749,2,"Home Equity Loan, and Credit-Builder Loan",7.392472119,8,4.34,3,_,1272.225668,32.29028828,17 Years and 0 Months,No,192.3260983,1188.139963,Low_spent_Medium_value_payments,478.7305348,0,0.3167,0.2575,0.3687,-1.2481,-0.0854 +0x1d7c1,CUS_0x6ce0,August,28,#F%$D@*&8,Mechanic,37889.06,,9,7,15,5,"Payday Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,25.4673623,16.72,14,Bad,2346.805392,40.14900516,19 Years and 2 Months,Yes,94.78799565,,Low_spent_Large_value_payments,285.0244795,0,0.4447,0.5463,-0.8017,1.1085,-0.0214 +0x1d7cd,CUS_0x7d41,August,26,085-13-4572,Doctor,80673.3,6822.775,7,4,7,4,"Home Equity Loan, Not Specified, Auto Loan, and Credit-Builder Loan",,12,13.17,5,_,326.98,32.17751594,12 Years and 5 Months,Yes,176.2789099,116.9043375,!@9#%8,629.0942525,0,0.4425,-0.3245,-1.6802,0.7151,0.0868 +0x1d7d9,CUS_0x58bf,August,18,540-53-7215,Lawyer,15039.8,,6,7,13,6,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Not Specified, and Personal Loan",,18,12.56,8,_,1641.56,33.65948491,5 Years and 11 Months,Yes,44.38166983,115.5281997,Low_spent_Medium_value_payments,265.9217972,0,0.8001,0.6037,-0.091,3.6238,-0.7823 +0x1d7e5,CUS_0x157d,August,24,901-97-7993,Teacher,16311.665,1184.305417,5,6,6,4,"Auto Loan, Mortgage Loan, Credit-Builder Loan, and Student Loan",15.80595124,14,8.9,6,Standard,598.76,24.52559403,19 Years and 6 Months,No,35.26657981,,Low_spent_Large_value_payments,265.543627,0,-0.38,1.3391,0.1818,0.1246,-1.0404 +0x1d7f1,CUS_0xb218,August,32,879-94-1803,_______,41905.36,3299.113333,10,10,20,100,"Home Equity Loan, Personal Loan, and Auto Loan",39.60762421,19.8723421,19.24,10,Standard,1746.007237,35.34354993,17 Years and 10 Months,Yes,60.20972308,,Low_spent_Large_value_payments,299.4499695,0,1.0405,0.6581,-0.248,0.2669,-0.7641 +0x1d7fd,CUS_0xadf7,August,28,988-12-9596,Engineer,77142.69,6617.5575,3,5,5.288361749,6,"Auto Loan, Not Specified, Payday Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",15.04845422,13,13.21,10,Standard,523.92,30.4213203,15 Years and 9 Months,Yes,196.8139814,693.7453944,High_spent_Small_value_payments,451.1338353,0,0.6604,-0.035,-1.5694,0.2322,-0.3351 +0x1d809,CUS_0x62d,August,44,245-17-7550,Developer,7388.705,,3,6,30,7,"Credit-Builder Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",,19,10.32,11,Standard,1911.25,21.74390581,6 Years and 8 Months,Yes,35.27263426,,Low_spent_Large_value_payments,257.0521127,0,-0.4178,-1.0677,0.6717,0.6143,0.1169 +0x1d815,CUS_0x2dd2,August,35,816-48-2631,_______,73542.28,,0,3,5,0,,,2,10.15,3,Good,834.87,39.51359619,18 Years and 2 Months,No,0,81.04482081,High_spent_Medium_value_payments,759.7075125,0,1.9943,3.3223,-0.5263,0.7287,0.2874 +0x1d821,CUS_0x1cf3,August,38,229-46-4057,Manager,66858.27,5770.5225,3,541,19.28836175,4,"Student Loan, Home Equity Loan, Payday Loan, and Student Loan",9.779869572,10,4.16,9,Standard,601.58,25.9329824,28 Years and 4 Months,No,175.0151817,549.1607314,High_spent_Small_value_payments,532.8137979,0,1.5758,-0.9166,-0.185,-0.004,1.5088 +0x1d82d,CUS_0x2ee4,August,39,896-59-5635,Manager,20818.74,,8,768,15,3,"Auto Loan, Personal Loan, and Mortgage Loan",23.06526361,15.50879356,16.18,8,Standard,2077.674192,24.08075478,,Yes,44.88416188,31.57963518,High_spent_Medium_value_payments,349.8257029,0,0.1023,0.1015,0.2326,-1.5225,-1.3794 +0x1d839,CUS_0xb183,August,23,394-91-1606,Developer,34113.61,,0,6,5,0,,0,2,3.44,6,Good,560.1099744,29.11050561,19 Years and 0 Months,NM,45324,49.6951142,High_spent_Medium_value_payments,460.5359575,0,0.9659,0.5796,1.3354,-0.3585,1.0558 +0x1d845,CUS_0x9da2,August,33,366-00-4263,Media_Manager,14629.52,1309.126667,1,4,4,1,Debt Consolidation Loan,8.561569107,9.133395521,5.69,514,Good,557.9073845,25.24095723,22 Years and 2 Months,No,10.15954776,40.43461762,High_spent_Medium_value_payments,330.3185013,0,-1.5763,-0.7866,-0.7986,-0.38,-2.4589 +0x1d851,CUS_0x2f59,August,30,372-34-8477,Accountant,44667.5,3545.291667,5,6,18,4,"Mortgage Loan, Mortgage Loan, Auto Loan, and Student Loan",9.259147735,8,19.79,10,Standard,1148.67,23.61836863,19 Years and 2 Months,NM,148.4525443,77.44245685,High_spent_Medium_value_payments,378.6341655,0,-1.4847,-1.4129,0.7811,-0.2828,-0.2947 +0x1d85d,CUS_0x2f52,August,31,124-08-3108,Entrepreneur,141347.32,11676.94333,8,6,1,0,,,20,2.13,8,Good,1029.44,43.76738781,28 Years and 5 Months,No,0,183.6899958,High_spent_Large_value_payments,1224.004338,0,0.2971,0.9645,-1.5874,0.0247,1.4772 +0x1d869,CUS_0x4211,August,37,335-18-8653,Manager,32100.8,,8,6,34.06745738,7,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",24.66659576,17,2.78,14,Bad,4536.240954,40.05707694,0 Years and 10 Months,Yes,119.6514758,92.02079085,Low_spent_Medium_value_payments,337.8141121,0,0.497,0.647,-0.9943,0.6025,0.5176 +0x1d875,CUS_0x7a96,August,30,255-67-1198,Manager,24424.7,,8,5,7,0,,14.48237572,11,6.01,3,Standard,626.57,41.62192531,22 Years and 9 Months,Yes,0,,!@9#%8,364.5183371,0,-1.564,0.0845,0.2675,-0.8139,-0.2773 +0x1d881,CUS_0xa0a6,August,54,823-73-2567,Writer,32495.66,,3,7,18,1,Not Specified,23.04054228,18,10.39,1,_,1099.57,34.70099559,17 Years and 9 Months,Yes,23.96570416,,Low_spent_Medium_value_payments,254.7646972,0,-1.2521,0.4303,0.6832,-0.3945,0.2429 +0x1d88d,CUS_0x7b79,August,49,355-01-4043,Lawyer,73180.2,,4,5,20,1,Debt Consolidation Loan,14.95241496,10,9.98,3,Standard,59.55,35.7612525,28 Years and 0 Months,No,38.52937704,112.8588653,High_spent_Medium_value_payments,713.2467577,0,0.3586,-1.1335,0.5479,-1.7731,-1.7051 +0x1d899,CUS_0xa40b,August,43,411-75-9732,Accountant,31530.76,,1,3,1,4,"Credit-Builder Loan, Payday Loan, Mortgage Loan, and Auto Loan",9.434230229,10,8.54,2,_,634.356697,24.14557131,25 Years and 4 Months,No,74.25363171,63.3290268,High_spent_Small_value_payments,398.7899774,0,2.054,-0.4642,0.0666,0.9105,-0.5682 +0x1d8a5,CUS_0xa4c6,August,32,544-30-5434,Writer,28703.71,,6,3,8,2,"Debt Consolidation Loan, and Student Loan",17.60825488,13,14.83,6,Standard,807.3440283,26.05077597,28 Years and 6 Months,Yes,37.84251488,,Low_spent_Medium_value_payments,234.8769142,0,1.0656,-0.3158,1.3254,1.0166,-0.3251 +0x1d8b1,CUS_0xaeda,August,37,745-72-3624,Media_Manager,55444.56,,10,7,17,6,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Personal Loan",33.29856838,19.05582106,2.73,12,Bad,1501.563434,29.45589107,15 Years and 10 Months,Yes,171.9082677,10000,High_spent_Medium_value_payments,367.3137298,0,-2.269,-0.8894,-2.1222,-0.5987,0.2249 +0x1d8bd,CUS_0x5e06,August,34,401-16-8805,Accountant,19810.745,1506.895417,1,4,11,3,"Auto Loan, Payday Loan, and Personal Loan",9.702016598,11,2.47,4,_,227.12,39.06084799,22 Years and 3 Months,No,40.60045754,37.97604278,High_spent_Large_value_payments,312.1130413,0,0.1826,-0.0574,0.823,-0.1433,0.0961 +0x1d8c9,CUS_0x5254,August,47,533-73-9335,Teacher,30961.62,2283.135,5,7,11,100,,5.975409835,6.779702675,6.52,6,_,1482.327538,28.66770506,26 Years and 2 Months,No,0,106.1207241,High_spent_Small_value_payments,382.1927759,0,-0.0849,-0.7953,0.9221,1.4064,0.1011 +0x1d8d5,CUS_0x2418,August,23,458-08-6224,Writer,77253.54,,2,7,11.28836175,2,"Mortgage Loan, and Debt Consolidation Loan",0,2,4.28,6,Good,565.23,32.7030304,21 Years and 0 Months,No,85.98323033,879.5878866,Low_spent_Large_value_payments,354.5458441,0,-0.4614,0.1899,-0.022,0.8333,-0.0135 +0x1d8e1,CUS_0x24bf,August,45,374-80-5615,Engineer,41541.8,3199.816667,3,4,12,4,"Mortgage Loan, Home Equity Loan, Not Specified, and Student Loan",,8,11.49,4,Good,1052.87,27.96426465,16 Years and 5 Months,No,87.35179471,257.9674947,Low_spent_Small_value_payments,264.6623773,0,1.2505,-2.2817,-1.2627,-0.8481,-0.3006 +0x1d8ed,CUS_0xb61c,August,37,092-95-9665,Scientist,28518.76,,6,10,16.06745738,5,"Mortgage Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",35.3496113,24,26.97,7,Bad,4513.190954,25.53957848,,Yes,88.12057456,,!@9#%8,238.4056977,0,-1.3588,0.4862,0.9089,-0.7518,0.8018 +0x1d8f9,CUS_0x74e8,August,39,296-90-6071,Doctor,87727.05,,5,3,9,3,"Credit-Builder Loan, Not Specified, and Home Equity Loan",0.05394798,1.214505895,11.86,4,Good,288.1840588,33.57680061,25 Years and 5 Months,No,217.7052928,311.9794306,Low_spent_Large_value_payments,445.9740266,0,-1.9639,1.6744,-2.5954,-0.432,-0.5792 +0x1d905,CUS_0x2c60,August,47,501-39-0517,_______,59039.52,4840.96,5,6,12,3,"Auto Loan, Not Specified, and Mortgage Loan",20.52123661,16,7.06,0,Good,977.5681295,37.05566884,30 Years and 8 Months,No,130.5134987,121.9410589,High_spent_Large_value_payments,484.1061247,0,1.0252,1.9165,-0.972,-0.6661,-0.4486 +0x1d911,CUS_0x4ed2,August,23,442-26-8125,Lawyer,88290.45,7323.5375,4,7,12,1,Payday Loan,21.62811241,16,1.88,1,Standard,375.3168989,42.07807257,,No,56.61538323,223.4589605,High_spent_Medium_value_payments,734.7090656,0,-1.5602,0.6614,-0.277,-0.7911,-0.5353 +0x1d91d,CUS_0xb04e,August,28,730-60-0289,_______,57107.12,,8,5,30,3,"Home Equity Loan, Auto Loan, and Mortgage Loan",,,9.71,12,Standard,2116.439008,41.0021151,16 Years and 4 Months,NM,136.0402893,108.2975844,!@9#%8,461.954793,0,-0.0665,-1.5491,2.062,-0.9738,-0.9612 +0x1d929,CUS_0x9cdb,August,30,278-40-5330,Teacher,117801.12,,5,4,6,6,"Payday Loan, Personal Loan, Auto Loan, Not Specified, Personal Loan, and Personal Loan",15.6675843,13,11.4,7,_,1280.57,41.80571375,15 Years and 4 Months,Yes,326.2066811,10000,High_spent_Medium_value_payments,787.6542733,0,0.4218,0.4983,0.573,0.1923,-0.269 +0x1d935,CUS_0xa2df,August,29,#F%$D@*&8,Media_Manager,8905.45,,9,10,24.06745738,6,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",,15.69935706,16.15,11,_,2175.678212,31.19288023,14 Years and 10 Months,Yes,34.9418212,16.21361854,High_spent_Medium_value_payments,220.8363556,0,-1.0053,-0.4416,0.2787,1.755,-1.0287 +0x1d941,CUS_0x2801,August,26,438-53-8698,_______,30196.64,,7,5,23,3,"Student Loan, Auto Loan, and Payday Loan",29.70398224,22.5151169,2.36,9,Bad,2455.551759,35.04681365,6 Years and 11 Months,Yes,61.80919228,58.84338257,!@9#%8,398.3860918,0,-0.0975,0.0414,0.4757,0.4876,1.5352 +0x1d94d,CUS_0xbbf7,August,26,436-24-2178,Engineer,171379.8,14351.65,1,5,4.288361749,2,"Credit-Builder Loan, Student Loan, and Payday Loan",1.56416882,4,6.08,7,Good,488.4126837,40.32686578,31 Years and 6 Months,No,296.3755716,1227.547564,Low_spent_Small_value_payments,714.5454499,0,-0.0094,-0.4441,-0.5457,0.2216,-1.0487 +0x1d959,CUS_0x6504,August,52,488-11-2449,Developer,77019.08,6138.256667,3,6,10,100,"Not Specified, Not Specified, and Not Specified",3.224525285,7.111180606,9.42,4,Good,1499.901281,29.87646208,,No,168.6095849,150.2974273,High_spent_Large_value_payments,534.9186545,0,0.1702,-0.2251,-1.5403,0.1257,0.5929 +0x1d965,CUS_0x9334,August,40,928-48-2913,Engineer,43903.54,3377.628333,3,5,17,100,Payday Loan,,19.62507401,5.03,4,Standard,410.0399383,32.02757787,31 Years and 4 Months,Yes,20.86016032,,High_spent_Large_value_payments,482.0069346,0,-0.3859,0.2412,-0.4092,-1.2978,0.0089 +0x1d971,CUS_0x7f86,August,18,776-30-5677,Mechanic,43359.36,3597.28,4,7,13,4,"Home Equity Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,20,18.95,7,Standard,1254.45,31.16418359,31 Years and 4 Months,Yes,87.58850995,98.76708762,Low_spent_Large_value_payments,443.3724024,0,-0.0527,-0.1618,0.8292,-1.1294,1.1942 +0x1d97d,CUS_0x337f,August,40,693-20-1404,Architect,67712.26,5480.688333,5,2,10.28836175,0,Credit-Builder Loan,10.24879141,10,7.35,6,Good,625.53,31.09704022,16 Years and 5 Months,No,30.70522605,654.2579043,Low_spent_Large_value_payments,553.043164,0,0.4549,-1.4532,-1.5059,1.2679,-0.8347 +0x1d989,CUS_0x81fe,August,21,577-99-8043,Writer,9760.495,,7,6,29,6,"Payday Loan, Auto Loan, Home Equity Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",32.93733897,25,6.02,11,Bad,1291.36,36.45348623,7 Years and 3 Months,Yes,47.85242619,30.19486744,High_spent_Medium_value_payments,283.0901647,0,-0.3788,0.132,1.4103,-1.0833,-0.2478 +0x1d995,CUS_0xad90,August,23,918-30-9013,Writer,15820.755,1606.39625,7,4,9,2,"Student Loan, and Credit-Builder Loan",15.96472219,12,16.7,5,Standard,590.29,31.51547439,28 Years and 4 Months,NM,17.78030935,10000,Low_spent_Large_value_payments,298.2362713,0,-1.4887,-1.5242,0.1525,0.3931,-0.199 +0x1d9a1,CUS_0x5f9a,August,36,365-58-8646,Teacher,139702.24,11866.85333,4,1,6.288361749,0,,0,4,9.96,838,_,342.6,37.81515761,,No,0,937.3184324,Low_spent_Medium_value_payments,949.304362,0,2.0012,0.556,1.6978,-2.013,-0.8592 +0x1d9ad,CUS_0x4d90,August,31,977-54-9640,_______,99617.76,8095.48,0,6,2.288361749,0,,,4,7.41,4,Good,851.22,28.20159278,15 Years and 10 Months,No,0,542.6631971,High_spent_Large_value_payments,926.8222639,0,1.6201,-0.4096,0.2877,-0.0098,-0.8139 +0x1d9b9,CUS_0x99c5,August,28,120-06-8395,Lawyer,54815.73,4866.9775,8,8,20,5,"Mortgage Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Debt Consolidation Loan",26.78453221,12.08606505,11.13,11,_,1644.79979,32.12784994,14 Years and 10 Months,Yes,117.5742564,207.2246708,Low_spent_Small_value_payments,451.8988228,0,-0.5226,-0.2511,-0.5215,-0.799,-0.1993 +0x1d9c5,CUS_0x3f63,August,37,972-00-4814,Media_Manager,35701.42,,7,4,11,1,Payday Loan,9.517902391,9,7.69,1,Standard,1462.79,38.99321271,,Yes,18.43133666,261.9177228,Low_spent_Small_value_payments,284.8627739,0,-0.8276,0.237,1.9965,-0.9684,-0.7654 +0x1d9d1,CUS_0x81c3,August,45,023-38-6280,Accountant,66429.24,,4,3,12,3,"Debt Consolidation Loan, Home Equity Loan, and Auto Loan",16.35786955,12,8.86,2,Good,1169.57,30.24653845,32 Years and 5 Months,No,160.1765255,,High_spent_Medium_value_payments,405.2627428,0,-1.4558,-0.9547,-0.2513,0.3501,-0.5226 +0x1d9dd,CUS_0x2224,August,44,855-02-9559,Entrepreneur,79178.76,6302.23,5,1178,20,100,"Student Loan, and Personal Loan",9.986095184,9,15.01,5,_,949.13,28.43214854,22 Years and 6 Months,NM,78.83461508,372.9002673,!@9#%8,438.4881176,0,-0.2485,0.2751,-1.8665,0.6773,-1.1385 +0x1d9e9,CUS_0x9b9,August,45,998-30-4976,Mechanic,58468.08,,10,9,28,5,"Home Equity Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",12.39259925,8,11.93,15,Standard,1447.46,35.57639268,8 Years and 0 Months,Yes,169.4651565,51.99520697,High_spent_Medium_value_payments,487.7736366,0,1.3503,1.8224,0.3287,0.4409,-0.3368 +0x1d9f5,CUS_0xb82,August,23,594-57-5012,Lawyer,11874543,1077.187917,10,8,23,100,"Personal Loan, Payday Loan, Auto Loan, Home Equity Loan, Student Loan, Personal Loan, and Payday Loan",,24.06045145,17.71,14,Bad,3486.577841,32.61958945,5 Years and 0 Months,Yes,76779,83.14021403,Low_spent_Medium_value_payments,257.1469394,0,-0.1283,0.0909,1.1058,0.9592,-0.0699 +0x1da01,CUS_0xb788,August,23,020-56-0464,Lawyer,88326.72,7109.918848,7,7,18,6,"Auto Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, and Not Specified",9.300048089,8,11.2,8,Standard,1458.57,24.57999272,7 Years and 5 Months,NM,632.4400065,157.7915988,High_spent_Medium_value_payments,411.2655471,0,0.7391,1.2184,-0.2714,-0.0578,0.6074 +0x1da0d,CUS_0x72c1,August,40,516-35-5100,Accountant,19240.3,,6,3,9,3,"Home Equity Loan, Student Loan, and Student Loan",,11,18.88,13,Standard,660.1576569,35.9640193,19 Years and 10 Months,Yes,42.96236227,78.44731257,High_spent_Small_value_payments,333.8268397,0,-0.8652,0.5797,-0.8443,1.3687,-1.0332 +0x1da19,CUS_0x27d5,August,44,524-83-1898,Developer,34872.34,,5,4,6,2,"Student Loan, and Payday Loan",22.36788762,15,4.7,3,_,1375.96,26.65141243,30 Years and 10 Months,No,32.5639982,354.9705041,Low_spent_Small_value_payments,177.568331,0,2.5579,-1.236,-1.5088,-0.9965,1.1094 +0x1da25,CUS_0xc3ae,August,43,218-10-0201,Developer,35435.81,,3,1,10,4,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",12.45562884,11,4.5,6,Good,1308.155673,26.85925178,20 Years and 4 Months,NM,265.3379078,,Low_spent_Small_value_payments,120.5900725,0,-2.083,0.3059,0.789,2.0816,-0.5062 +0x1da31,CUS_0x416a,August,25,694-97-7075,Manager,14330.89,950.2408333,670,7,26.06745738,6,"Auto Loan, Student Loan, Mortgage Loan, Not Specified, Auto Loan, and Student Loan",43.80322731,24.22478872,5.34,11,_,3667.090922,34.76172427,1 Years and 5 Months,Yes,51.66121906,,Low_spent_Medium_value_payments,218.5188536,0,0.8277,1.0672,-0.2541,0.4284,1.079 +0x1da3d,CUS_0x8ddb,August,25,255-39-8777,Media_Manager,55762.11,4583.8425,6,9,23.88954781,7,"Credit-Builder Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",,15.60579183,9.24,10,Standard,2529.510675,32.67074793,7 Years and 0 Months,Yes,1516.710112,615.9863634,Low_spent_Small_value_payments,,0,-0.8388,0.9369,0.2849,0.5386,0.276 +0x1da49,CUS_0x693b,August,47,791-19-2569,Lawyer,88088.07,7248.6725,6,6,19,1,Debt Consolidation Loan,6.799417561,8,8.27,4,Standard,195.23,32.56432697,23 Years and 3 Months,Yes,51.15846737,63.90341635,High_spent_Large_value_payments,849.8053663,0,-0.1309,1.402,-0.1347,0.3391,0.4724 +0x1da55,CUS_0x9a51,August,54,738-23-1446,Developer,32910.92,,1,4,1,1,Credit-Builder Loan,3.550641572,7,4.55,6,Good,956.0111642,30.31592847,25 Years and 3 Months,NM,25.59089997,,Low_spent_Small_value_payments,163.7002927,0,-1.5328,-0.1382,0.0955,0.017,-0.8244 +0x1da61,CUS_0x2238,August,24,318-30-9160,Teacher,39704.19,3295.6825,5,4,3,4,"Mortgage Loan, Student Loan, Home Equity Loan, and Auto Loan",11.83428295,13,8.28,3,Good,1236.723416,31.74682051,20 Years and 3 Months,No,124.262431,,Low_spent_Small_value_payments,110.0466425,0,0.377,-0.0831,-1.9643,1.5931,1.2213 +0x1da6d,CUS_0xb006,August,46,080-73-5838,Media_Manager,132606.69,11291.5575,1654,6,6.288361749,0,Credit-Builder Loan,12.7246334,12,6.52,4,Good,934.3080694,23.63073659,33 Years and 6 Months,No,66841,,Low_spent_Small_value_payments,112.7595792,0,0.0759,-1.0259,-1.3927,1.26,0.5709 +0x1da79,CUS_0xc5a4,August,46,924-06-3877,Accountant,18771.66,1844.305,9,5,32.06745738,8,"Student Loan, Student Loan, Not Specified, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",31.40550527,,9.1,13,Bad,5603.331421,26.47334058,2 Years and 4 Months,Yes,73.81973639,80.74521431,Low_spent_Small_value_payments,293.1452614,0,-0.4986,2.3653,0.518,-0.5124,-0.1578 +0x1da85,CUS_0x2714,August,18,129-56-9147,Journalist,30668.9,,4,7,16,100,"Home Equity Loan, Payday Loan, Payday Loan, and Personal Loan",,27.74066562,15.89,9,Standard,2629.980968,34.87282604,8 Years and 6 Months,Yes,60.22543684,78.7166288,High_spent_Medium_value_payments,364.132101,0,-0.3821,-0.0868,0.8881,0.4638,1.4652 +0x1da91,CUS_0x84b8,August,22,143-97-1898,Teacher,16500.96,1528.08,3,6,11.28836175,0,Not Specified,9.701393009,9.458780724,8.81,2,Good,208.3782357,24.41270697,25 Years and 2 Months,NM,6.957605184,587.615816,Low_spent_Small_value_payments,268.1720398,0,1.629,-0.0111,-0.0527,-0.8322,0.8221 +0x1da9d,CUS_0x3ec8,August,38,477-64-2087,Media_Manager,62046.96,5103.58,6,6,613,2,"Mortgage Loan, and Mortgage Loan",5.995294446,8,15.42,6,Standard,1289.69,33.32349466,19 Years and 6 Months,Yes,94.57925252,10000,High_spent_Large_value_payments,589.5536635,0,0.5665,-0.0145,-1.4587,-0.2079,1.0714 +0x1daa9,CUS_0xb091,August,52,805-31-0884,Mechanic,39327.92,3233.326667,1,6,11,1,Not Specified,,3.638084977,1.51,6,_,142.3038145,38.63206026,31 Years and 5 Months,No,19.80976191,89.9349868,Low_spent_Large_value_payments,483.587918,0,1.5402,0.7333,-0.7212,-1.5619,-0.0735 +0x1dab5,CUS_0x6428,August,36,007-98-3418,Musician,69942.5,,3,5,20,1,Mortgage Loan,11.05606756,8,0.62,1,_,10.29,29.03553887,17 Years and 8 Months,Yes,53.82239521,294.6978235,Low_spent_Large_value_payments,523.033948,0,-0.9222,-0.0919,-1.1346,-0.5542,-0.3951 +0x1dac1,CUS_0x5ff9,August,20,455-98-9966,Doctor,85481.48,7128.456667,6,5,15,0,,,13,3.09,6,Standard,889.35,37.16921281,18 Years and 5 Months,No,0,200.1436295,High_spent_Small_value_payments,772.7020371,0,-0.9459,1.3915,-0.6574,-1.7217,1.055 +0x1dacd,CUS_0x9216,August,40,764-56-9857,Developer,14304.01,,4,4,1275,2,"Auto Loan, and Payday Loan",5.597160741,7,11.95,1429,Good,736.76,38.241287,33 Years and 6 Months,No,14.97256167,112.2349192,Low_spent_Small_value_payments,302.1926024,0,1.2872,0.4762,-0.1404,-0.1999,-1.0768 +0x1dad9,CUS_0xb00e,August,38,773-55-5934,Musician,14544.03,,6,6,15,3,"Debt Consolidation Loan, Auto Loan, and Not Specified",12.65018144,9,8.58,4,Standard,2210.601565,26.55776227,16 Years and 0 Months,Yes,27.40979088,155.0595547,Low_spent_Small_value_payments,253.7056659,0,0,-0.0942,1.4975,0.7944,-0.6349 +0x1dae5,CUS_0x788a,August,48,168-85-5169,Teacher,36564.35,3294.029167,4,5,16,1,Mortgage Loan,20.256446,13.81774495,2.19,3,Standard,117.3477655,30.81075352,19 Years and 11 Months,No,15.45972301,,Low_spent_Medium_value_payments,398.9772167,0,0.2948,-0.5808,0.5758,1.0546,0.0413 +0x1daf1,CUS_0x1f88,August,43,#F%$D@*&8,Manager,30617.5,,9,7,20,6,"Student Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, and Not Specified",36.29760039,19,9.16,16,Standard,2058.93,32.08429158,14 Years and 5 Months,NM,108.9321986,19.88933326,High_spent_Large_value_payments,346.0243015,0,-0.3368,1.4487,-0.6252,-0.6992,-0.8064 +0x1dafd,CUS_0x5386,August,18,516-86-5041,Teacher,9149.5,835.4583333,10,5,15,6,"Auto Loan, Personal Loan, Not Specified, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",,19,3.2,13,Bad,1457.21,31.89801862,8 Years and 10 Months,Yes,45.24387352,46.38893374,Low_spent_Medium_value_payments,271.9130261,0,-0.8742,-0.0189,0.7187,2.1998,1.3646 +0x1db09,CUS_0x1b7e,August,36,780-20-7356,Writer,9477.76,,6,9,32.88954781,100,"Not Specified, Credit-Builder Loan, Mortgage Loan, Not Specified, Mortgage Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",22.83505598,,22.71,13,_,3646.671577,36.55112785,,Yes,1360.778603,94.0949473,Low_spent_Medium_value_payments,221.9777015,0,0.1944,-0.6497,0.2217,0.1931,-3.6606 +0x1db15,CUS_0x2771,August,23,226-27-9498,Accountant,70674.6,,7,6,28,6,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",,21.10540572,12.67,7,Standard,2376.289471,23.85275375,18 Years and 6 Months,Yes,204.2296587,716.7091555,Low_spent_Small_value_payments,,0,0.8111,-0.3666,0.6218,0.6379,0.8581 +0x1db21,CUS_0x6da9,August,33,#F%$D@*&8,Manager,85426.68,7024.89,3,6,5,0,,8.840473228,9,1.91,3,_,1187.02,27.73530619,30 Years and 6 Months,NM,0,856.9792955,Low_spent_Small_value_payments,135.5097045,0,-2.1271,-1.124,0.4596,0.1547,0.4372 +0x1db2d,CUS_0x6d4e,August,45,#F%$D@*&8,Engineer,27318.32,2158.526667,6,4,7,3,"Personal Loan, Home Equity Loan, and Debt Consolidation Loan",11.84863846,11,12.45,11,_,1370.22,36.72049059,,Yes,60.32390942,164.2685287,Low_spent_Small_value_payments,281.2602286,0,-1.7457,-1.0666,0.5155,-0.0441,1.054 +0x1db39,CUS_0xa897,August,49,322-69-7846,Accountant,87017.92,7397.493333,2,4,5,2,"Home Equity Loan, and Debt Consolidation Loan",,10.73110592,11.5,6,Good,70.13794039,33.45754821,20 Years and 8 Months,No,107.8911468,276.0856229,High_spent_Medium_value_payments,605.7725636,0,0.4721,-0.8346,-1.1037,0.917,0.2065 +0x1db45,CUS_0x5e70,August,56,084-91-0481,Engineer,95849.16,7822.43,4,3,10.28836175,0,,20.11475892,18,4.74,3,Standard,596.66,29.40224321,18 Years and 5 Months,No,0,489.8296139,High_spent_Large_value_payments,952.3508471,0,1.4115,1.641,0.2609,-0.7755,-0.6111 +0x1db51,CUS_0x9fbc,August,39,543-69-6648,Architect,58528.3,4661.358333,4,5,6,2,"Personal Loan, and Mortgage Loan",15.97455553,13.88054568,18.13,3,_,1617.589153,26.53725281,25 Years and 3 Months,Yes,65.45196538,225.6431982,Low_spent_Small_value_payments,465.0406698,0,0.6376,-0.3137,0.1003,-1.1424,-0.7448 +0x1db5d,CUS_0xc049,August,28,973-86-2552,Media_Manager,22418.63,,5,4,6,2,"Home Equity Loan, and Mortgage Loan",15.46363614,,1.65,3,Good,403.443346,36.95584083,22 Years and 5 Months,NM,25.05304684,167.1169728,Low_spent_Small_value_payments,335.231388,0,-0.6987,-0.0073,1.6122,0.5493,-0.9524 +0x1db69,CUS_0x32ac,August,36,796-99-2464,Engineer,34204.39,,8,4,19,4,"Debt Consolidation Loan, Payday Loan, Personal Loan, and Not Specified",17.69261952,13,15.31,0,_,1131.43,23.79010402,26 Years and 6 Months,Yes,108.5821628,307.6189299,Low_spent_Small_value_payments,153.0354907,0,0.5184,-0.3726,-0.4022,-1.0173,0.2938 +0x1db75,CUS_0x219a,August,24,034-67-1193,Engineer,17868.11,,9,6,16.06745738,7,"Mortgage Loan, Debt Consolidation Loan, Student Loan, Auto Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",22.12339213,,2.06,13,_,2666.550954,28.05015678,9 Years and 0 Months,NM,63.86719415,54.76696077,!@9#%8,255.6464738,0,1.2728,0.6578,1.2467,0.5061,-0.453 +0x1db81,CUS_0x87db,August,18,207-07-2861,Lawyer,16279.715,,4,126,2,2,"Student Loan, and Not Specified",0.754056482,1,9.34,8,Good,501.96,25.56785798,27 Years and 9 Months,No,26.79098728,,Low_spent_Small_value_payments,227.1428508,0,-1.1386,-0.6274,-0.3998,-0.0223,-0.6238 +0x1db8d,CUS_0x971f,August,80,841-77-4084,Mechanic,55128.27,,7,7,17.06745738,8,"Not Specified, Auto Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Home Equity Loan",20.79242387,,16.32,8,Bad,3167.513591,28.69335647,5 Years and 8 Months,Yes,328.3188359,45.25523174,High_spent_Large_value_payments,325.1078944,0,0.2139,-0.2381,2.1243,-0.4472,-0.8876 +0x1db99,CUS_0x316e,August,33,036-55-7901,Engineer,79504.56,,7,5,20,7,"Personal Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",25.94830323,18.97742876,10.71,12,Bad,2784.75214,28.35904356,8 Years and 6 Months,Yes,269.4365973,97.13586011,High_spent_Large_value_payments,527.6655426,0,-0.1749,0.1171,-0.2914,-1.107,-0.253 +0x1dba5,CUS_0x3263,August,36,157-73-6953,Manager,132643.71,11028.6425,0,5,11.28836175,0,Debt Consolidation Loan,7.250672685,8,10.79,7,Good,1439.7,33.12390002,20 Years and 8 Months,No,58.62784172,500.9160423,High_spent_Large_value_payments,1203.257827,0,1.4255,-0.0903,-0.4649,-0.715,1.0538 +0x1dbb1,CUS_0x511f,August,38,830-35-3509,Entrepreneur,89446.38,7278.865,4,5,3.288361749,2,"Personal Loan, Credit-Builder Loan, and Student Loan",2.700031697,5,11.76,7,Good,123.7,32.02629308,33 Years and 4 Months,No,198.4713662,508.2493354,High_spent_Large_value_payments,681.1032594,0,1.3348,1.2776,-1.4044,-0.5873,0.3717 +0x1dbbd,CUS_0x60c0,August,33,720-48-8048,Mechanic,19741.36,,4,5,15,6,"Debt Consolidation Loan, Auto Loan, Personal Loan, Auto Loan, Student Loan, and Student Loan",10.20787909,8,11.46,10,Standard,1250.19,33.7437045,11 Years and 6 Months,Yes,87.43157794,133.1442144,Low_spent_Large_value_payments,203.735541,0,-0.4302,-0.9928,-0.0788,0.9572,1.3215 +0x1dbc9,CUS_0x143a,August,32,782-10-3214,Teacher,165798.2,,2,5,5,1,Payday Loan,13.79247631,12,3.71,5,Good,1022.71,48.19982398,18 Years and 4 Months,No,117.1762554,293.6238144,High_spent_Medium_value_payments,1249.651597,0,-1.7879,-0.1866,0.5974,-0.7875,-1.1458 +0x1dbd5,CUS_0x6ec8,August,80,950-08-5194,Mechanic,32283.52,,1,7,8,4,"Not Specified, Mortgage Loan, Debt Consolidation Loan, and Payday Loan",,11,1.17,3,_,557.8,36.99430135,30 Years and 5 Months,No,60.40249583,179.7373169,Low_spent_Large_value_payments,313.8895206,0,-1.5099,0.844,-0.5546,1.3275,1.2265 +0x1dbe1,CUS_0x8e8a,August,36,#F%$D@*&8,_______,21863.8,,7,3,14,2,"Payday Loan, and Personal Loan",15.8776525,15,10.68,2,Standard,1268.599863,31.89533245,30 Years and 6 Months,Yes,26.05413693,25.81445665,High_spent_Medium_value_payments,391.2188526,0,1.1004,-0.0595,-1.2629,0.5336,0.4629 +0x1dbed,CUS_0x6980,August,27,985-56-8311,Doctor,41037.94,3129.828333,10,8,23.88954781,7,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",,29.73003388,8.62,6,Bad,1939.102201,27.91014559,7 Years and 3 Months,Yes,1478.891714,36.51928727,High_spent_Large_value_payments,343.2417511,0,-1.7038,0.5119,1.0149,0.6289,-1.1729 +0x1dbf9,CUS_0xac18,August,25,#F%$D@*&8,Architect,24497.42,,4,3,14,1,Credit-Builder Loan,16.85132821,15,15.41,8,Standard,946.84,24.10495587,16 Years and 11 Months,Yes,15.44818348,40.56456233,High_spent_Medium_value_payments,378.0324209,0,-0.4428,0.7196,-1.319,0.4147,1.6287 +0x1dc05,CUS_0x30f0,August,28,305-57-0647,_______,28942.36,2670.863333,5,4,3,4,"Payday Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",,1.20584584,13.41,4,_,708.9044069,26.97655349,27 Years and 6 Months,No,87.16980917,211.7682754,Low_spent_Medium_value_payments,248.1482488,0,-0.5815,0.7892,-1.0518,0.8218,-1.1397 +0x1dc11,CUS_0x27a9,August,18,795-61-2352,Developer,77264.92,,7,5,30.06745738,7,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Payday Loan, and Not Specified",,23,19.84,7,_,5024.430954,31.7551921,3 Years and 8 Months,Yes,318.6724876,,Low_spent_Medium_value_payments,0,0,0.8487,-0.2195,-0.5455,1.0319,0.1996 +0x1dc1d,CUS_0x3f6b,August,80,178-14-1700,Manager,28559.25,,4,3,9,1,Not Specified,,18.20347749,1.64,0,Standard,620.2722268,40.69714035,,No,15.04861726,10000,High_spent_Small_value_payments,412.3596757,0,0.5893,-1.9725,1.355,-0.1819,-0.5642 +0x1dc29,CUS_0xb460,August,29,237-33-7346,Doctor,30063.42,,10,9,4544,4,"Student Loan, Personal Loan, Not Specified, and Personal Loan",27.5253253,12,16.65,11,Standard,2627.81,39.6197473,14 Years and 9 Months,Yes,86.62870492,10000,High_spent_Medium_value_payments,356.0220513,0,-0.2407,-0.5085,-0.8105,0.5297,-0.7436 +0x1dc35,CUS_0x8c9e,August,40,015-80-5855,_______,29367.88,,4,6,6,2,"Payday Loan, and Payday Loan",,8,17.15,4,Standard,1392.93,31.35154931,19 Years and 3 Months,Yes,55092,50.21496085,High_spent_Medium_value_payments,400.0719349,0,-0.2138,0.2414,0.6264,0.6192,1.2919 +0x1dc41,CUS_0x2d1c,August,18,319-08-1291,Accountant,7596.06,,6,6,18.06745738,4,"Debt Consolidation Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",,18,16.19,7,_,1581.320954,25.79845495,8 Years and 3 Months,Yes,80975,57.06421462,High_spent_Small_value_payments,250.6793949,0,0.6615,0.3119,0.6534,0.2672,-0.074 +0x1dc4d,CUS_0x2823,August,44,744-09-8974,Musician,88165.8,7271.15,4,4,4,1,Personal Loan,11.16441128,11,6.04,4,Good,326.6,35.1858784,24 Years and 10 Months,No,57.7073804,,High_spent_Large_value_payments,842.3840446,0,-1.201,-0.2772,0.7888,0.5819,-1.6467 +0x1dc59,CUS_0x5ac4,August,36,813-42-3226,Scientist,19129.26,,4,3,11,0,,18.58754905,11.44817757,2.76,7,Standard,460.2823669,25.6021768,16 Years and 0 Months,No,0,,Low_spent_Medium_value_payments,399.8364434,0,1.5693,0.1835,-0.9116,-0.8685,1.1428 +0x1dc65,CUS_0x85d,August,45,722-14-8267,Architect,41771.02,3293.918333,6,10,18.95700519,7,"Home Equity Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",,20,24.16,13,Bad,3748.140954,27.69633115,8 Years and 9 Months,Yes,1451.101053,225.5170961,High_spent_Small_value_payments,191.7233151,0,0.8763,0.0207,0.0494,1.5556,-0.3565 +0x1dc71,CUS_0x4505,August,55,814-20-6857,Developer,20257.28,1916.106667,4,5,16,1,Mortgage Loan,11.08916905,9,14.39,6,Standard,966.07,24.22224827,,Yes,10.77650129,,Low_spent_Small_value_payments,238.0754727,0,-0.7777,1.4015,-0.1589,-0.9289,1.2374 +0x1dc7d,CUS_0x9c3a,August,39,061-69-5164,Lawyer,18221.965,1171.566907,3,7,17,3,"Student Loan, Debt Consolidation Loan, and Personal Loan",,12,12.25,0,_,1218.29,30.86753982,19 Years and 2 Months,Yes,101.6454685,95.07073167,Low_spent_Medium_value_payments,283.9636847,0,1.4609,-0.2256,1.5084,0.1328,0.4418 +0x1dc89,CUS_0xb6d2,August,26,219-50-6624,Accountant,8927.89,461.9908333,9,9,30,5,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Not Specified",26.41750754,19.57612961,5.7,17,Bad,5271.861434,32.47109885,4 Years and 6 Months,Yes,30.61297278,18.06150118,Low_spent_Small_value_payments,287.5246094,0,-0.6792,0.8496,-0.6719,-1.4177,1.5871 +0x1dc95,CUS_0x6257,August,49,#F%$D@*&8,Accountant,143351.28,12014.94,8,6,3,2,"Auto Loan, and Debt Consolidation Loan",,21.8946487,8.3,4,Good,1084.039145,44.80551192,27 Years and 8 Months,No,225.725571,118.4950363,High_spent_Large_value_payments,1097.273393,0,0.614,-1.1848,0.3435,0.9472,-1.0413 +0x1dca1,CUS_0xb380,August,29,696-55-8105,Engineer,17723.52,1329.96,10,9,22.88954781,8,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Student Loan, and Personal Loan",26.23828087,18.19330137,33.48,12,_,2965.66877,23.29818853,13 Years and 8 Months,Yes,1433.922036,74.90738224,Low_spent_Small_value_payments,219.8365006,0,-1.2114,-1.7958,-0.6522,1.0261,-0.5225 +0x1dcad,CUS_0xb59a,August,30,081-75-4820,Media_Manager,36309.76,3097.813333,7,8,16,8,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, and Home Equity Loan",34.68770202,18,8.74,10,_,1904.87,29.18413439,13 Years and 8 Months,Yes,14037,43.35439572,High_spent_Medium_value_payments,358.7668875,0,1.937,-0.7533,-0.4339,1.6469,-1.0012 +0x1dcb9,CUS_0x12ef,August,43,912-09-9755,Mechanic,68898,5588.5,7,4,11,0,,21.16666514,16,5.8,5,Standard,312.14,29.86160695,28 Years and 2 Months,No,0,195.7889798,!@9#%8,613.0610202,0,-1.0468,1.481,0.8689,0.6757,-0.1601 +0x1dcc5,CUS_0x4d64,August,48,957-74-9921,Entrepreneur,18170.075,1785.172917,3,2,5,3,"Credit-Builder Loan, Student Loan, and Not Specified",3.593715969,7,2.16,4,Good,739.4477336,33.4323125,20 Years and 0 Months,No,43.72846186,30.4784167,High_spent_Medium_value_payments,357.150523,0,1.6603,-1.5811,0.6925,0.6207,0.4005 +0x1dcd1,CUS_0x45ca,August,21,178-46-8544,Lawyer,10409.755,,9,7,17.06745738,5,"Payday Loan, Home Equity Loan, Auto Loan, Personal Loan, and Not Specified",33.80721275,17,9.22,13,_,2838.330954,24.98698326,,Yes,40.66343585,,High_spent_Small_value_payments,248.6310193,0,0.949,1.3725,-0.2369,0.4951,0.8914 +0x1dcdd,CUS_0x3947,August,39,543-95-4931,Manager,61141.24,,6,8,1292.889548,8,"Student Loan, Home Equity Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",25.91827242,17,19.99,9,_,2667.09,36.59912122,6 Years and 5 Months,NM,1608.864234,210.4553775,!@9#%8,261.6606407,0,1.152,-2.1402,0.4684,-1.3489,-2.0557 +0x1dce9,CUS_0x748e,August,26,418-53-1393,Doctor,10120.28,645.3566667,6,5,34.06745738,5,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",33.97459174,23.67899146,9.97,12,Bad,2068.131726,35.66678656,16 Years and 6 Months,Yes,21.9038555,19.18725573,High_spent_Small_value_payments,256.7242675,0,-0.2461,-1.0291,1.5297,-1.1733,-0.3477 +0x1dcf5,CUS_0x9381,August,34,609-67-9303,Engineer,32296.78,,7,9,18.06745738,7,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",29.38836083,17.95312775,16.16,12,_,2696.944604,32.39979165,13 Years and 9 Months,Yes,118.4394645,104.0028756,High_spent_Medium_value_payments,266.3772053,0,-0.5222,0.9039,-1.085,-1.6738,1.1328 +0x1dd01,CUS_0x7225,August,43,974-78-0059,Writer,21719.56,,6,6,9,1,Mortgage Loan,17.63813169,15,15.96,9,Standard,717.44,27.84540572,29 Years and 2 Months,NM,9.247225472,,Low_spent_Small_value_payments,260.795085,0,-1.9565,0.2262,-0.9654,-0.935,-0.3249 +0x1dd0d,CUS_0x793f,August,43,037-96-1958,Teacher,51182.85,3983.2375,6,9,21.88954781,7,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Student Loan, Payday Loan, and Student Loan",,29.21764755,17.43,6,Bad,5450.868547,23.01389525,10 Years and 10 Months,Yes,1591.680948,494.1963175,Low_spent_Small_value_payments,,0,1.4846,-1.1083,-0.8638,-2.8582,-0.4356 +0x1dd19,CUS_0xb638,August,22,492-03-1612,Doctor,30623.61,2599.067862,3,6,5,4,"Mortgage Loan, Not Specified, Personal Loan, and Personal Loan",,0,11.07,1,Good,1009.98861,29.04183102,21 Years and 9 Months,No,299.9121492,197.5924753,!@9#%8,318.2118869,0,1.3016,0.3143,0.3926,-0.0969,0.54 +0x1dd25,CUS_0x7c6a,August,22,021-53-1156,_______,109472.91,9180.7425,3,5,7,3,"Student Loan, Mortgage Loan, and Not Specified",22.72464617,15,3.93,7,Standard,1338.46,34.46068257,22 Years and 11 Months,No,263.2062527,305.8687393,High_spent_Medium_value_payments,598.999258,0,1.1305,1.8474,1.5027,-2.0625,0.4378 +0x1dd31,CUS_0x9f40,August,50,588-98-4510,Musician,60744.86,,4,4,5,4,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",,11,3.4,3,Good,1437.95,35.68549862,26 Years and 3 Months,No,128.6266793,184.4086232,High_spent_Medium_value_payments,463.0718642,0,-2.9741,0.641,1.8698,2.4891,-0.7395 +0x1dd3d,CUS_0x8b6c,August,41,299-98-9190,Journalist,17561.27,,5,4,20,6,"Home Equity Loan, Personal Loan, Personal Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",,19,14.87,10,Standard,2622.44,36.95579151,11 Years and 6 Months,Yes,83.40978684,,Low_spent_Large_value_payments,200.7404078,0,0.526,-0.8576,0.0505,0.3742,0.4497 +0x1dd49,CUS_0x5872,August,23,525-66-8666,Musician,54025.95,4426.1625,6,3,29,4,"Mortgage Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",20.25339261,15.5563419,15.19,14,_,2611.239792,35.53078869,20 Years and 3 Months,NM,114.6320341,167.1162141,!@9#%8,410.8680018,0,0.1692,0.2877,0.3766,0.313,-1.1763 +0x1dd55,CUS_0x25c4,August,40,967-73-5542,Accountant,14717.28,1069.44,5,1498,10.28836175,2,"Student Loan, Home Equity Loan, and Home Equity Loan",6.611747191,9,5.89,3,_,130.6597295,28.85156589,21 Years and 6 Months,No,31.08371913,468.152434,Low_spent_Small_value_payments,322.1181969,0,-0.2462,-1.6322,-0.2166,1.2089,-0.4169 +0x1dd61,CUS_0x3066,August,36,813-02-4659,Musician,102333.28,,6,21,6,4,"Not Specified, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",9.953127925,8,15.01,10,_,913.0915797,40.8275438,17 Years and 8 Months,Yes,223.9686288,144.185903,High_spent_Large_value_payments,720.0546359,0,-0.0968,0.698,-0.1544,0.3108,-1.1381 +0x1dd6d,CUS_0xa12,August,38,399-16-3100,Teacher,17172.14,,5,6,5134.067457,3,"Mortgage Loan, Mortgage Loan, and Personal Loan",,19.39323839,24.21,7,Standard,2769.402161,26.38746599,10 Years and 3 Months,Yes,24.95699192,106.8975455,Low_spent_Small_value_payments,269.5263413,0,-0.3368,-1.6713,0.4424,1.358,-0.022 +0x1dd79,CUS_0x1a8d,August,31,222-99-8137,Mechanic,9970.16,620.8539087,7,6,23,8,"Payday Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Payday Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",39.164421,25,19.84,10,Bad,2366.28321,30.97460006,8 Years and 9 Months,Yes,46.99372168,53.33161157,Low_spent_Small_value_payments,264.3080103,0,1.4672,0.593,0.4823,-1.4473,-0.5405 +0x1dd85,CUS_0x9f77,August,20,807-63-6460,Developer,39448.67,3400.389167,1,5,9,1,Student Loan,,3,10.82,8,Good,544.19,35.18458694,23 Years and 0 Months,No,22.76445742,262.806698,Low_spent_Medium_value_payments,334.4677612,0,0.3869,1.0383,-1.7722,-1.1411,-0.5894 +0x1dd91,CUS_0xadf1,August,18,393-85-2534,Teacher,20756.69,,8,10,16,7,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",,27.23891638,27.93,13,Bad,4689.951432,30.67618371,1 Years and 6 Months,Yes,62.38847206,86.08758152,Low_spent_Medium_value_payments,313.3963631,0,1.7928,-0.0498,1.702,-0.8755,1.0018 +0x1dd9d,CUS_0x4ffd,August,55,288-84-3775,Architect,14230.995,1381.91625,3,3,10,4,"Home Equity Loan, Student Loan, Mortgage Loan, and Personal Loan",5.896472441,8,7.64,3,Good,626.64,33.592907,33 Years and 3 Months,No,44.91308007,,Low_spent_Small_value_payments,198.1153262,0,-0.331,-0.7384,0.7647,-0.3366,0.3402 +0x1dda9,CUS_0x7e50,August,80,882-21-7332,Writer,170986.72,,0,5,3008.288362,4,"Auto Loan, Personal Loan, Credit-Builder Loan, and Student Loan",0,0,3.37,3,_,366.254063,26.95496086,32 Years and 8 Months,No,460.204587,758.9443743,High_spent_Medium_value_payments,901.0455052,0,-2.3542,1.3126,1.9431,-0.114,0.8009 +0x1ddb5,CUS_0x2ea1,August,46,473-84-4527,Musician,77923,6306.583333,1,6,6,3,"Not Specified, Debt Consolidation Loan, and Auto Loan",9.873294405,8,9.68,1,Good,1101.45,25.69282432,19 Years and 9 Months,No,112.7311418,497.9771248,Low_spent_Medium_value_payments,299.9500667,0,-2.1788,-0.9959,0.055,-2.1191,0.4118 +0x1ddc1,CUS_0x925c,August,48,896-52-5250,Mechanic,103838.72,,7,3,8,1,Not Specified,,12,10.07,3,Standard,494.31,42.35396738,20 Years and 6 Months,Yes,49.28518984,74.20409901,!@9#%8,977.0333778,0,0.3843,0.1641,-0.5205,-0.2684,-1.8957 +0x1ddcd,CUS_0x5ec,August,43,934-88-2337,Media_Manager,16054.06,,8,5,8.067457376,3,"Payday Loan, Personal Loan, and Not Specified",20.17889509,13.65464006,12.87,9,Standard,2907.331677,38.06193252,,Yes,25.82604129,179.9433214,Low_spent_Small_value_payments,199.1941827,0,-0.1513,0.3629,0.2747,1.1588,0.7887 +0x1ddd9,CUS_0x6b89,August,39,702-92-3642,Media_Manager,20382.97,,6,9,28,6,"Student Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",23.82159314,,15.03,11,_,2536.84,28.36479968,19 Years and 3 Months,Yes,56.85068878,45.0381949,Low_spent_Large_value_payments,313.2691997,0,0.8135,0.5186,-0.6493,0.3541,-0.813 +0x1dde5,CUS_0x817c,August,25,256-84-4307,Entrepreneur,18014.3,,8,8,17.95700519,6,"Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Personal Loan",,17.5623443,3.43,9,Bad,2696.174897,35.01277793,13 Years and 10 Months,Yes,1382.294042,86.5068246,Low_spent_Small_value_payments,273.5679309,0,0.2094,-1.0872,0.3726,-0.8741,-0.324 +0x1ddf1,CUS_0x1cd5,August,33,506-15-9619,Developer,80182.28,6684.856667,4,4,8.288361749,0,Home Equity Loan,7.496692505,8,3.9,4,Standard,645.51,40.9343481,32 Years and 3 Months,No,36.0389546,591.1130372,High_spent_Medium_value_payments,711.2711359,0,-1.355,-0.6153,0.0172,-1.0476,0.0838 +0x1ddfd,CUS_0x5396,August,22,505-14-0899,Teacher,36568.05,,4,7,835,4,"Personal Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",16.5651269,15,2.83,0,Standard,1417.22,31.59215111,30 Years and 5 Months,NM,72.58745422,,High_spent_Medium_value_payments,417.884439,0,-0.0895,0.5506,-0.5408,0.6533,-0.1202 +0x1de09,CUS_0x81e4,August,28,274-13-7459,Teacher,17709.31,,9,8,21.06745738,2,"Home Equity Loan, and Not Specified",36.28867175,23.0975273,14.09,11,_,2005.557418,31.34019044,17 Years and 11 Months,Yes,18.09016279,96.64291285,Low_spent_Medium_value_payments,311.8242197,0,-0.1279,-0.8806,-1.3951,0.1278,0.4104 +0x1de15,CUS_0x2f97,August,18,366-30-2864,Writer,140042.28,11399.19,2,5,7.288361749,4,"Not Specified, Home Equity Loan, Student Loan, and Payday Loan",0,0,5.26,7,_,1316.839845,34.49036361,16 Years and 10 Months,NM,256.5946453,1105.930929,Low_spent_Small_value_payments,574.9297641,0,0.8475,-1.0871,-0.1911,-0.3381,-0.4502 +0x1de21,CUS_0x9df8,August,45,466-43-2520,Manager,94330.83,,3,4,8.288361749,6,"Not Specified, Mortgage Loan, Payday Loan, Auto Loan, Payday Loan, and Not Specified",14.45627789,14,18.93,7,Standard,185.98,29.32214502,18 Years and 3 Months,NM,60919,809.1876104,High_spent_Small_value_payments,434.4943449,0,0.2113,2.1629,-0.0599,-0.5307,0.5233 +0x1de2d,CUS_0x1673,August,28,002-93-9888,Doctor,16805.54,,6,5,20,3,"Debt Consolidation Loan, Home Equity Loan, and Not Specified",20.50374908,16,16.22,9,Standard,438.74,24.87198108,27 Years and 2 Months,Yes,24.43092421,154.140852,Low_spent_Small_value_payments,256.5743905,0,1.3513,-1.6794,0.0557,-0.4887,-1.1064 +0x1de39,CUS_0x72f3,August,35,054-62-4543,Media_Manager,95111.1,7724.925,5,2,11.28836175,0,Mortgage Loan,0,3,11.65,5,Good,409.1876302,42.84900784,21 Years and 0 Months,No,75.39015602,565.8690695,!@9#%8,811.0394308,0,-0.3814,1.6501,-0.9045,-0.3256,-1.1499 +0x1de45,CUS_0x3f8b,August,43,591-31-9513,_______,19249.61,,8,5,20,4,"Home Equity Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",34.08007796,26.46872284,6.7,12,Standard,2831.270193,33.05619602,,Yes,45.64719161,50.36036549,Low_spent_Medium_value_payments,321.7058596,0,0.0602,-0.4216,-0.1973,-1.1994,0.1896 +0x1de51,CUS_0xc2f5,August,40,196-51-0603,Engineer,71297.02,6028.418333,3,4,3.288361749,4,"Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",0.284373788,5,11.5,7,Good,383.01,29.5265892,31 Years and 2 Months,No,168.1209258,473.75135,High_spent_Large_value_payments,620.9070186,0,-0.239,2.0384,-0.1655,1.522,-0.4415 +0x1de5d,CUS_0xae15,August,43,181-18-0854,Lawyer,30564.96,,7,6,9,1,Debt Consolidation Loan,,,0.62,0,Standard,1142.05,37.84391152,24 Years and 3 Months,No,77033,36.95348085,High_spent_Large_value_payments,415.7472996,0,0.5111,0.0835,0.4946,-0.0266,-2.03 +0x1de69,CUS_0x2eff,August,21,087-44-8837,Doctor,36933.77,,4,6,8,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",13.3857831,11.91606833,5.65,3,Good,200.8180645,33.48187128,,NM,62.86437392,190.4496218,!@9#%8,339.1674209,0,0.2043,0.6599,0.0281,0.6588,-0.2823 +0x1de75,CUS_0x251e,August,50,744-90-4909,Media_Manager,32504.22,,4,7,3,100,Debt Consolidation Loan,,10.09865424,7.1,5,Good,357.1634437,40.50961425,26 Years and 6 Months,No,19.04221812,51.45935915,High_spent_Medium_value_payments,443.8669227,0,-1.7822,-0.4155,0.5024,0.1441,-0.3482 +0x1de81,CUS_0xa3ff,August,19,403-78-1540,Teacher,16888.405,,6,6,16,1,Debt Consolidation Loan,,14,11.17,0,Standard,724.57,37.26374187,25 Years and 10 Months,No,8.157936039,23.56615839,High_spent_Medium_value_payments,374.7126139,0,0.1288,-0.4112,-0.5081,1.0369,0.2666 +0x1de8d,CUS_0xa95a,August,37,945-13-1693,_______,14061.55,,8,9,17.95700519,8,"Mortgage Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",,2278,5.43,13,Bad,4284.280954,39.85763522,10 Years and 11 Months,Yes,1380.351547,,Low_spent_Small_value_payments,247.9051913,0,-0.2374,0.7922,-2.5954,1.5922,0.0203 +0x1de99,CUS_0x7cac,August,30,268-85-1527,Mechanic,36456.72,,8,10,32.06745738,2,"Personal Loan, and Payday Loan",20.54378711,9.609849018,10.91,10,Standard,2134.496266,28.46531484,17 Years and 4 Months,Yes,51.64656119,81.75296048,High_spent_Large_value_payments,396.1861904,0,1.7945,0.363,-0.4922,1.5554,1.21 +0x1dea5,CUS_0x77de,August,52,251-33-5052,Scientist,24376.73,,7,4,9,1,Mortgage Loan,11.90656596,8,8.9,6,Standard,1125.3,33.3473035,16 Years and 10 Months,Yes,18.30518957,134.4213907,Low_spent_Large_value_payments,309.9128364,0,0.1793,-1.4735,-1.0256,-1.0234,0.2306 +0x1deb1,CUS_0x6714,August,22,460-92-1394,Musician,128503.64,10803.63667,0,4,0.288361749,2,"Debt Consolidation Loan, Auto Loan, and Personal Loan",3.67736579,5,5.42,5,Good,345.9336444,39.88942793,18 Years and 11 Months,NM,274.992395,559.4660671,High_spent_Large_value_payments,925.5268501,0,-0.0024,-0.4955,-0.8525,-0.3299,0.2532 +0x1debd,CUS_0x4b78,August,53,722-42-6898,Lawyer,131080.8,11015.4,5,7,9.288361749,2,"Payday Loan, and Debt Consolidation Loan",20.5638989,18,7.28,4,Standard,145.9994173,24.14569353,23 Years and 3 Months,No,136.0498222,,Low_spent_Small_value_payments,435.7051327,0,-1.3089,0.6403,0.6212,0.2686,0.2883 +0x1dec9,CUS_0x62cf,August,43,619-24-8737,Mechanic,19399.32,1680.61,10,7,28.06745738,7,"Debt Consolidation Loan, Personal Loan, Personal Loan, Payday Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",32.18670106,18.07191373,6.04,13,_,2896.11224,25.64107991,11 Years and 9 Months,Yes,98.04771701,79.82714111,Low_spent_Large_value_payments,233.4658539,0,0.1881,-0.5459,0.6892,-1.1428,0.8089 +0x1ded5,CUS_0x7cc4,August,29,081-91-6835,Doctor,33999.48,2730.29,8,3,20,0,,19.57715563,13,17.08,6,Standard,1373.82,32.96315122,21 Years and 5 Months,Yes,0,101.8328087,High_spent_Medium_value_payments,421.1961913,0,-0.9739,0.2781,0.267,-0.2256,1.9612 +0x1dee1,CUS_0x1026,August,52,500-62-9044,Manager,170614.28,,2,6,8.288361749,2,"Payday Loan, and Auto Loan",,5,0.73,3,Good,849.69,30.83654731,20 Years and 8 Months,No,208.9074794,604.2153325,High_spent_Medium_value_payments,1303.200316,0,0.3858,0.2459,-0.8878,0.8141,0.5856 +0x1deed,CUS_0x2408,August,30,041-71-2745,Mechanic,8753.205,919.43375,7,6,21,8,"Auto Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",47.04923924,29.1349697,6.87,12,Bad,2666.255291,31.83829639,14 Years and 4 Months,Yes,41.75898472,38.4352864,Low_spent_Medium_value_payments,291.7491039,0,0.2727,1.2959,0.789,1.6044,-0.6137 +0x1def9,CUS_0x8936,August,40,649-90-8048,Accountant,18979.35,1712.6125,8,10,30.06745738,7,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",17.9374765,10.62675263,16.12,13,Standard,1892.650944,32.80519386,13 Years and 8 Months,Yes,95.00727385,85.9437457,Low_spent_Large_value_payments,233.5899425,0,-1.2838,1.104,0.9835,0.6249,-0.2228 +0x1df05,CUS_0x786,August,35,052-06-5984,Lawyer,7957.91,563.1591667,2,2,17,5,"Personal Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Not Specified",23.64413255,17,11.13,8,Standard,818.5,27.51701493,10 Years and 3 Months,Yes,31.46144839,32.40778867,Low_spent_Small_value_payments,282.4466796,0,1.2818,-0.5704,-1.0362,0.3498,-0.5341 +0x1df11,CUS_0x81c7,August,24,088-68-4129,Manager,17143.76,1451.646667,8,8,15,100,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, and Mortgage Loan",36.68702232,20.73223984,23.39,15,Bad,3582.958177,32.31402135,3 Years and 0 Months,Yes,75.58541391,65.23975405,Low_spent_Small_value_payments,294.3394987,0,0.4593,0.5451,-0.465,-0.1621,-0.4996 +0x1df1d,CUS_0x58d7,August,32,480-45-2864,Teacher,68538.88,5562.573333,3,3,12,0,,22.39285042,18,5.32,3,_,152.38,37.34688183,,No,0,76.69826814,High_spent_Medium_value_payments,729.5590652,0,0.9181,0.8475,2.3574,0.5082,0.3274 +0x1df29,CUS_0xaca7,August,33,588-25-9381,Journalist,60694.74,,7,7,30,4,"Student Loan, Personal Loan, Student Loan, and Personal Loan",22.4233544,17.00340877,11.59,10,Standard,1854.114773,40.32046168,11 Years and 0 Months,Yes,179.5820579,81.29265866,!@9#%8,486.8147834,0,0.0635,0.4544,1.0097,-1.3596,0.8472 +0x1df35,CUS_0x6a73,August,52,790-24-1252,Musician,22209,,4,5,18,4,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",24.1496876,15.30391222,15.25,4,Standard,315.5941213,22.82357945,20 Years and 11 Months,Yes,48.68604727,88.1884243,Low_spent_Large_value_payments,344.9005284,0,-0.1817,0.0761,-1.2535,1.3863,-2.0019 +0x1df41,CUS_0x3912,August,53,#F%$D@*&8,Engineer,32013.46,2595.788333,3,5,7,3,"Student Loan, Auto Loan, and Personal Loan",,,-5.85,0,Standard,1068.81,35.02514198,20 Years and 4 Months,No,70.30439973,132.7293119,Low_spent_Medium_value_payments,336.5451217,0,0.9976,0.6768,-0.0868,-1.0397,-1.6656 +0x1df4d,CUS_0x9200,August,44,612-18-3692,Architect,12683.275,,8,3,6,1,Personal Loan,33.04641719,24.27656357,7.73,1,Standard,1338.631641,31.15670812,30 Years and 4 Months,Yes,7.067810341,,!@9#%8,317.5150568,0,-0.1807,0.2225,-0.1281,-0.5777,-1.1792 +0x1df59,CUS_0x441e,August,35,194-02-3427,Media_Manager,67422.8,5435.566667,4,7,12,100,"Student Loan, and Debt Consolidation Loan",12.67926857,13,16.16,1,_,1082.56,27.46753752,29 Years and 9 Months,Yes,85.74783602,406.5115418,!@9#%8,321.2972888,0,1.6521,0.7327,0.0822,-0.499,0.4157 +0x1df65,CUS_0x6e6a,August,52,#F%$D@*&8,Architect,32455.1,2973.591667,7,6,13,0,,21.87217681,19.55200561,12.33,1,Standard,929.5498191,30.75568415,28 Years and 9 Months,Yes,0,10000,High_spent_Medium_value_payments,506.5916168,0,-1.4703,0.8957,0.9812,-1.7748,1.1462 +0x1df71,CUS_0x7968,August,80,293-25-3124,Media_Manager,142725.8,11867.81667,5,2,11.28836175,0,,,11,3.22,3,_,409.2878547,39.83368117,20 Years and 10 Months,No,0,679.4353744,High_spent_Large_value_payments,1203.675968,0,-1.2013,-1.8558,-1.117,-0.6989,0.7233 +0x1df7d,CUS_0x3cc3,August,53,759-88-5604,Engineer,44330.2,3744.183333,4,3,9,1,Mortgage Loan,15.10569675,,15.02,5,Good,1286.330077,26.67055519,21 Years and 0 Months,NM,20.27273486,88.70852412,High_spent_Medium_value_payments,525.0439957,0,-1.0487,-1.5156,-1.3752,-0.0343,-0.2203 +0x1df89,CUS_0x4f6c,August,29,774-32-4152,Doctor,31969.22,,6,5,8,6,"Payday Loan, Not Specified, Mortgage Loan, Payday Loan, Not Specified, and Personal Loan",26.56555494,22.48399327,15.98,6,Standard,1493.209727,33.25851206,6 Years and 9 Months,Yes,142.9652748,181.3433651,!@9#%8,230.3015267,0,-0.2335,0.604,1.0105,1.64,0.3629 +0x1df95,CUS_0xa110,August,31,572-11-6331,Scientist,67151.6,5497.966667,5,4,11,7,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Personal Loan, and Auto Loan",19.63085106,13,16.56,6,Standard,41.67,31.04852632,5 Years and 9 Months,Yes,369.9293787,10000,Low_spent_Small_value_payments,18.53441685,0,0.145,-1.0429,-0.7932,-0.1402,0.335 +0x1dfa1,CUS_0x517c,August,54,627-29-9827,Lawyer,57524.56,,4,7,9,2,"Student Loan, and Not Specified",9.368179588,10,1.59,8,Good,938.6267572,36.85771591,19 Years and 0 Months,No,67.02733725,422.0423555,Low_spent_Small_value_payments,350.3201936,0,0.8586,-0.9841,-1.4444,-0.5815,0.4884 +0x1dfad,CUS_0x2991,August,45,472-08-0007,Journalist,10427.44,629.9533333,9,5,21,7,"Mortgage Loan, Not Specified, Personal Loan, Payday Loan, Home Equity Loan, Student Loan, and Student Loan",,17.01088903,11.62,12,Standard,1527.928732,27.95067425,10 Years and 0 Months,NM,4363,22.43826176,Low_spent_Small_value_payments,273.7033284,0,0.5442,-2.2217,1.1112,0.2633,0.1296 +0x1dfb9,CUS_0xb0f6,August,33,124-49-2598,Doctor,69026.56,5970.213333,3,4,6.288361749,6,"Not Specified, Mortgage Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",13.69082722,14,8.13,9,Standard,365.38,31.06027753,18 Years and 3 Months,Yes,289.2175206,667.3595987,High_spent_Medium_value_payments,310.3816751,0,-0.915,-0.6467,-0.1216,-0.6265,-2.8403 +0x1dfc5,CUS_0x59a2,August,42,938-66-9299,Scientist,35350.24,,4,7,20,7,"Auto Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, Credit-Builder Loan, and Not Specified",10.57840414,9,14.26,7,Standard,543.54,33.55509806,6 Years and 5 Months,Yes,139.6974502,10000,Low_spent_Small_value_payments,110.7977846,0,1.2073,-1.7718,-1.4269,0.9545,-0.3717 +0x1dfd1,CUS_0x4577,August,29,709-02-4843,Writer,8504.55,,8,6,23,7,"Mortgage Loan, Mortgage Loan, Student Loan, Student Loan, Payday Loan, Personal Loan, and Home Equity Loan",35.53260873,26.06896989,5.58,9,Bad,3239.102197,25.70522724,2 Years and 3 Months,Yes,26.61087677,29.05276222,Low_spent_Medium_value_payments,317.807611,0,1.0125,-1.4885,0.6325,0.7138,-0.6056 +0x1dfdd,CUS_0x2267,August,43,322-94-2134,_______,17556.41,,8,10,35.06745738,4,"Auto Loan, Student Loan, Mortgage Loan, and Personal Loan",,11.22015598,15.09,9,Standard,2678.284545,36.88096475,15 Years and 2 Months,Yes,57130,,Low_spent_Medium_value_payments,259.4879067,0,0.3964,-0.2056,0.2936,0.2242,-0.3047 +0x1dfe9,CUS_0x8acd,August,36,307-29-0236,Engineer,45608.14,3912.678333,4,3,17,0,,5.069585165,6,8.41,8,Standard,1195.85,39.979964,5 Years and 11 Months,Yes,0,136.6775674,High_spent_Medium_value_payments,504.5902659,0,-0.11,0.0619,0.5383,-0.1654,0.5646 +0x1dff5,CUS_0x5a2d,August,28,279-97-1576,Manager,16490.75,,8,10,22.88954781,9,"Payday Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",45.37373637,27.38494364,4.83,13,Bad,2619.577792,39.14369009,8 Years and 6 Months,Yes,1411.27355,51.59521472,High_spent_Small_value_payments,264.424071,0,1.0248,0.0636,0.8723,2.0343,0.1891 +0x1e001,CUS_0x850f,August,38,932-37-1770,Scientist,14829.17,,4,4,12,2,"Auto Loan, and Credit-Builder Loan",20.9919855,17,7.07,7,Standard,300.47,33.91872301,18 Years and 9 Months,Yes,17.93499962,116.5483329,Low_spent_Small_value_payments,258.8930841,0,-1.1321,-0.2934,-1.207,-1.1396,-0.2826 +0x1e00d,CUS_0x44b8,August,54,948-64-0040,Media_Manager,46346.68,3907.223333,3,3,10,0,,19.39821175,12,6.07,0,Standard,183.3,26.77023178,19 Years and 5 Months,No,0,74.3631695,High_spent_Large_value_payments,556.3591638,0,-0.2251,2.1658,0.7209,0.9009,1.1475 +0x1e019,CUS_0x24fc,August,24,585-38-2127,Entrepreneur,22320.325,,0,7,9,3,"Student Loan, Auto Loan, and Mortgage Loan",0.034005536,1.142623474,4.63,4,Good,1122.139686,33.72403044,19 Years and 3 Months,No,40.92697968,123.7750176,Low_spent_Small_value_payments,321.9007111,0,-1.1163,-0.0556,0.6589,-0.7993,-0.8258 +0x1e025,CUS_0x1ba2,August,24,#F%$D@*&8,Scientist,86470.84,7060.903333,3,4,20,0,,,17,10.13,5,_,211.56,35.27262153,29 Years and 5 Months,Yes,0,267.9088693,High_spent_Medium_value_payments,688.181464,0,-0.1861,1.5086,-0.5765,-0.4612,0.2302 +0x1e031,CUS_0x303b,August,50,482-28-5175,Journalist,170824.68,,0,3,3.288361749,4,"Personal Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",7.646716701,8.516647213,1.25,7,Good,1305.935243,37.72539321,25 Years and 9 Months,No,566.1347697,1132.849103,High_spent_Small_value_payments,429.8925882,0,-1.0068,0.8331,-0.9343,-1.4007,-1.8284 +0x1e03d,CUS_0x9ccf,August,35,#F%$D@*&8,Media_Manager,31820.56,2520.713333,8,7,8,1,Personal Loan,17.97536194,14,8.44,2,_,1394.06,25.56176718,25 Years and 11 Months,Yes,17.29983196,127.4742745,High_spent_Small_value_payments,367.2972269,0,-0.628,1.2189,-0.4915,0.2234,0.2509 +0x1e049,CUS_0x1ba9,August,29,391-18-9705,Media_Manager,78066.48,,8,9,20,100,"Home Equity Loan, Auto Loan, Payday Loan, and Personal Loan",,13.14417832,18.2,9,Standard,1888.30874,24.19259556,17 Years and 3 Months,Yes,132.911175,166.7915547,High_spent_Medium_value_payments,617.6512702,0,-1.6284,0.5736,0.2718,0.918,0.9059 +0x1e055,CUS_0xc5a3,August,19,512-47-9593,Doctor,31204.74,,8,4,8,4,"Personal Loan, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",30.08368235,20,10.75,5,Standard,611.99,28.33920724,6 Years and 9 Months,Yes,96.22099548,134.180362,Low_spent_Small_value_payments,348.4381425,0,-0.2268,-1.3127,0.3655,-0.9081,0.0242 +0x1e061,CUS_0x2fd7,August,37,469-10-8700,Mechanic,14599.89,1464.6575,7,8,22.06745738,5,"Personal Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",23.50966064,16,27.64,13,_,2883.960954,36.18563627,9 Years and 10 Months,Yes,39.08622974,82.23705384,Low_spent_Small_value_payments,288.4221785,0,0.75,-2.0507,0.0468,-1.1281,-0.2662 +0x1e06d,CUS_0x9cd3,August,18,311-70-2527,Mechanic,89394.78,7710.565,8,3,6,2,"Mortgage Loan, and Credit-Builder Loan",19.265577,16,11.18,7,Standard,1255.14,31.90100403,26 Years and 10 Months,Yes,134.729084,310.3835049,High_spent_Medium_value_payments,575.9439111,0,0.4929,0.6078,0.5785,-0.5185,0.9921 +0x1e079,CUS_0x5158,August,42,093-72-9364,Developer,36806.84,,6,5,18,6,"Student Loan, Personal Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, and Student Loan",16.75653338,12,18.22,7,_,1933.58,32.36948258,15 Years and 0 Months,Yes,174.8931166,,Low_spent_Small_value_payments,192.9551963,0,1.5499,0.1642,0.2263,0.1589,1.3399 +0x1e085,CUS_0x165f,August,37,962-16-3321,Writer,28443.42,2314.285,7,4,9,2,"Not Specified, and Not Specified",15.90148951,12,7.23,4,_,1286.011271,28.67616,24 Years and 2 Months,No,39.80748156,26.95702242,High_spent_Large_value_payments,408.0677014,0,1.4193,1.0326,1.8849,0.1563,-0.5266 +0x1e091,CUS_0x9819,August,47,284-59-0994,Journalist,24363.78,,3,3,18.28836175,2,"Not Specified, and Home Equity Loan",,,15.79,4,Standard,242.11,26.40285613,32 Years and 5 Months,Yes,32.81755487,492.3667932,High_spent_Medium_value_payments,323.9846129,0,0.766,-0.1166,0.2572,1.9854,1.4078 +0x1e09d,CUS_0x9a42,August,34,093-30-0257,Architect,40295.72,3627.976667,2,4,5,3,"Home Equity Loan, Home Equity Loan, and Mortgage Loan",0.841066373,1.174590682,4.04,5,Good,508.6300942,38.52439156,18 Years and 0 Months,No,77.09602411,364.2681354,Low_spent_Medium_value_payments,201.4335072,0,0.1608,1.0178,-1.1317,1.7818,0.6884 +0x1e0a9,CUS_0x1156,August,25,877-50-9125,Entrepreneur,10060.015,1103.334583,4,9,17.88954781,6,"Student Loan, Student Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Payday Loan",14.2556984,12,9.29,15,Standard,1971.81,26.65609994,10 Years and 10 Months,Yes,1355.767767,72.275562,High_spent_Small_value_payments,247.9600483,0,-1.7265,-1.2091,-0.157,0.1772,-0.0104 +0x1e0b5,CUS_0x956f,August,30,388-03-9983,Doctor,32943.66,2811.305,5,6,14,6,"Payday Loan, Student Loan, Personal Loan, Auto Loan, Payday Loan, and Not Specified",,,14.52,10,_,226.74,30.15365775,10 Years and 8 Months,Yes,162.9339639,283.1319237,Low_spent_Medium_value_payments,115.0646125,0,-0.1254,-1.6758,1.0978,0.6249,1.5099 +0x1e0c1,CUS_0x52d2,August,18,386-88-8824,Media_Manager,46271.32,4105.943333,3,5,7,6,"Payday Loan, Mortgage Loan, Home Equity Loan, Student Loan, Auto Loan, and Not Specified",15.38661023,15,17.54,5,Standard,640.52,29.06101791,16 Years and 10 Months,Yes,175.4212438,158.7964449,!@9#%8,326.3766447,0,-0.8459,-0.6329,1.575,0.1294,0.6066 +0x1e0cd,CUS_0xc044,August,33,599-31-9121,_______,88957.38,7433.115,4,4,5,1,Student Loan,,18,7.52,0,Standard,878.8583163,34.96114968,22 Years and 11 Months,No,45.86939842,189.4141228,High_spent_Medium_value_payments,785.479839,0,-0.3446,-0.0277,0.1394,0.9016,1.3656 +0x1e0d9,CUS_0x2087,August,54,902-09-8828,Media_Manager,65869.24,5702.103333,1,7,10,3,"Student Loan, Home Equity Loan, and Not Specified",2.584020121,6,5.2,2,Good,470.6634971,33.31689446,18 Years and 6 Months,No,154.1622312,369.9278476,High_spent_Small_value_payments,342.8673765,0,0.8296,0.6238,2.3161,-0.5086,0.6582 +0x1e0e5,CUS_0xa75c,August,39,981-43-7537,Manager,56483.64,4900.97,8,3,443,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",32.09676609,21.83651362,5.72,4,_,235.0252964,22.96927942,23 Years and 0 Months,No,87.74219338,243.1470507,High_spent_Small_value_payments,419.2077559,0,0.6887,0.8297,0.5091,3.0556,-0.222 +0x1e0f1,CUS_0x68af,August,20,326-39-1205,Lawyer,81769.35,6995.1125,7,5,13,4,"Mortgage Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",15.99427896,14,2.27,0,Standard,535.75,32.7302429,17 Years and 2 Months,No,183.2770971,75.86811372,High_spent_Large_value_payments,680.3660392,0,1.2156,-1.2261,0.0586,-1.155,0.7633 +0x1e0fd,CUS_0x1f19,August,21,734-45-8783,_______,109480.98,9031.415,5,4,9,0,,,8,14.04,1668,Standard,372.34,25.86006215,28 Years and 2 Months,Yes,0,471.2432268,Low_spent_Large_value_payments,701.8982732,0,-2.9769,0.4468,0.5068,-0.254,-2.7433 +0x1e109,CUS_0x4fa3,August,55,773-79-4897,Mechanic,166741.48,14131.12333,4,5,12,3,"Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",15.07735189,12,2.83,0,Good,117.12,39.62608507,32 Years and 0 Months,No,337.255643,,High_spent_Large_value_payments,1034.436932,0,0.5053,-0.7418,0.0468,1.4389,-0.995 +0x1e115,CUS_0x58b5,August,27,166-72-8708,Mechanic,8246.71,539.0720062,6,3,34,7,"Home Equity Loan, Student Loan, Personal Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",13.39474087,13,7.58,10,Standard,2006.97,30.91266376,11 Years and 10 Months,Yes,57.26847415,,Low_spent_Small_value_payments,250.5206979,0,-0.528,-0.5431,2.5565,-1.4664,0.9041 +0x1e121,CUS_0x7fb3,August,29,810-95-8044,Engineer,19557.1,,5,5,1478,4,"Student Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",28.72772709,22.42816235,12.86,7,Standard,2245.904507,30.36758328,12 Years and 6 Months,Yes,53.65460693,10000,Low_spent_Small_value_payments,251.3877015,0,1.4169,-0.2189,0.8463,-1.2554,1.0477 +0x1e12d,CUS_0x6336,August,40,754-23-4169,_______,19227.17,1371.264167,9,9,24.06745738,4,"Student Loan, Payday Loan, Home Equity Loan, and Personal Loan",,,15.61,7,Bad,1900.637588,39.87406143,17 Years and 0 Months,Yes,36.95983375,115.1774475,Low_spent_Medium_value_payments,238.2688475,0,0.1376,0.111,-0.4878,-0.955,1.81 +0x1e139,CUS_0x60f9,August,39,314-67-0732,Entrepreneur,43981.4,3431.116667,3,6,7,5,"Not Specified, Student Loan, Payday Loan, Auto Loan, and Home Equity Loan",30.80568654,23.12609841,13.77,10,Standard,582.1140095,31.04888831,6 Years and 0 Months,Yes,113.8791951,143.1658389,!@9#%8,366.0666327,0,1.0559,1.3433,-1.0125,1.2805,-2.9271 +0x1e145,CUS_0x7698,August,25,971-09-3563,Musician,34202.45,2627.204167,3,4,14,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Student Loan",25.70208305,15.50598029,3.39,2,Standard,964.3608701,32.49814001,26 Years and 9 Months,Yes,85.27708285,135.4470604,Low_spent_Small_value_payments,331.9962734,0,0.3836,-0.0126,0.8473,1.4252,0.1746 +0x1e151,CUS_0x9c3b,August,26,#F%$D@*&8,Manager,17891.16,1589.55156,10,9,28.95700519,8,"Mortgage Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Home Equity Loan",,20.54653218,2.62,8,Bad,2727.905694,34.96429739,8 Years and 6 Months,Yes,1400.406478,69.81047999,Low_spent_Small_value_payments,251.504113,0,-1.2381,0.1304,-0.0512,1.7563,-2.4548 +0x1e15d,CUS_0xa47c,August,34,379-65-6305,Developer,58248.33,4722.0275,8,6,33,5,"Not Specified, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Home Equity Loan",39.6546503,27.95911317,18.38,12,Bad,1711.27519,25.79876961,,Yes,213.876538,62.98153389,High_spent_Medium_value_payments,445.3446782,0,-0.5585,0.7161,-0.842,2.0164,-1.1798 +0x1e169,CUS_0x2a69,August,53,#F%$D@*&8,Entrepreneur,96604.14,8223.345,3,512,8.288361749,0,,3.642322525,5,5.88,4,Good,411.28,27.51104648,23 Years and 3 Months,No,59835,699.2416423,High_spent_Medium_value_payments,793.0303187,0,-0.5666,-1.0312,1.8761,0.5247,-0.2295 +0x1e175,CUS_0x99e9,August,44,912-98-1836,Doctor,22530.97,1684.580833,3,3,4,1,Personal Loan,18.33425978,16,8.89,4,Good,328.0031998,30.12418152,21 Years and 4 Months,No,11.3815999,117.8258082,Low_spent_Large_value_payments,320.9454199,0,-0.5166,-1.1753,-0.6783,0.7523,-0.933 +0x1e181,CUS_0xbd75,August,53,367-04-5630,Engineer,23338.83,2105.9025,7,5,11,0,,23.76318775,18,2.01,3,_,404.12,25.51362805,16 Years and 5 Months,No,0,139.406501,Low_spent_Small_value_payments,361.183749,0,0.508,0.8642,-2.0688,0.0165,0.4563 +0x1e18d,CUS_0x4ee1,August,18,529-25-9023,Entrepreneur,62679.87,,8,8,17,2,"Not Specified, and Mortgage Loan",30.09154368,19,3.1,6,_,2172.76,29.95792162,16 Years and 0 Months,Yes,100.1026009,257.4977354,High_spent_Small_value_payments,439.9319137,0,1.0867,-0.6664,1.3159,-0.2723,-0.0078 +0x1e199,CUS_0x30fd,August,80,198-74-1257,Developer,43074.48,,7,5,10,4,"Not Specified, Student Loan, Not Specified, and Mortgage Loan",13.31819673,9.648229643,11.31,6,Standard,2832.017567,30.82970836,16 Years and 6 Months,Yes,121.3352524,,Low_spent_Small_value_payments,208.6207296,0,-1.0346,-0.7085,0.9025,-1.796,0.8039 +0x1e1a5,CUS_0x3352,August,23,882-89-4787,Scientist,32612.36,,5,5,12,4,"Debt Consolidation Loan, Auto Loan, Not Specified, and Auto Loan",9.31525704,10,14.44,0,Good,734.6814798,22.1675301,32 Years and 11 Months,No,91.57898727,93.49380088,High_spent_Small_value_payments,351.7445432,0,-0.5818,0.459,0.2294,0.6805,-0.9494 +0x1e1b1,CUS_0xa422,August,40,692-10-4434,Scientist,92067.99,7455.3325,4,4,18,2,"Credit-Builder Loan, and Personal Loan",18.81137171,13,7.81,6,Standard,1398.94,34.18417269,26 Years and 8 Months,Yes,152.6516375,613.4823616,Low_spent_Medium_value_payments,259.3992509,0,-1.3535,-0.0119,1.6073,1.4406,2.4478 +0x1e1bd,CUS_0x142f,August,50,158-89-2902,Mechanic,17250.52,1682.543333,1,6,10,3,"Personal Loan, Payday Loan, and Mortgage Loan",7.080515593,5.887552363,4.86,1,_,1496.299852,24.91900237,,No,24.3258823,132.8071785,Low_spent_Large_value_payments,281.1212726,0,1.0544,-1.2406,-0.2214,-0.0863,0.9891 +0x1e1c9,CUS_0x7e7c,August,21,172-68-0059,Writer,63861.36,5487.78,4,6,12,4,"Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",,2,3.91,1,Good,1071.97,37.68975372,22 Years and 11 Months,No,150.2591054,102.8224088,High_spent_Large_value_payments,535.6964858,0,-0.2987,-0.1279,-1.0074,0.3233,-1.2287 +0x1e1d5,CUS_0x2562,August,48,880-88-5689,Doctor,19641.665,1795.805417,0,6,10,0,,19.90604628,16.55261549,6.89,1,Good,1335.376593,30.09425387,30 Years and 2 Months,No,0,13.87465871,High_spent_Large_value_payments,405.705883,0,-0.4454,1.4716,-0.8943,2.302,-0.3842 +0x1e1e1,CUS_0xc34a,August,18,633-88-2115,Developer,53646,,7,5,19,8,"Home Equity Loan, Mortgage Loan, Payday Loan, Personal Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",39.15813157,20,16.04,9,Bad,4597.44,29.55400414,,Yes,308.9807217,10000,Low_spent_Small_value_payments,,0,0.4268,0.1967,0.4463,-0.0587,0.0139 +0x1e1ed,CUS_0xbeec,August,28,204-07-8662,Doctor,10436.12,,7,6,20.06745738,5,"Home Equity Loan, Student Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,9,8.66,11,Standard,1558.560954,39.03752161,8 Years and 10 Months,Yes,26.2338473,75.08039785,Low_spent_Small_value_payments,227.6331336,0,0.7677,1.4735,-1.017,-1.2697,0.492 +0x1e1f9,CUS_0x2e82,August,35,630-98-0469,_______,37233.5,,10,5,30,7,"Not Specified, Credit-Builder Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",28.25598523,18,27.27,11,Bad,3410.45,29.06403055,,Yes,183.9387737,43.68956775,High_spent_Medium_value_payments,304.6508252,0,0.85,-0.0965,0.6901,2.5819,1.4866 +0x1e205,CUS_0x4e73,August,47,493-46-7198,Developer,113192.68,9376.723333,3,7,2.288361749,0,,0,2.355377938,6.15,2,Good,1354.412916,39.28320044,19 Years and 0 Months,No,0,911.6902381,Low_spent_Small_value_payments,735.9195562,0,-1.4377,0.9149,-1.3755,0.0574,0.4512 +0x1e211,CUS_0x1f00,August,22,192-14-0956,Developer,25428.7,2016.058333,5,4,15,6,"Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,18,4.78,8,Standard,1167.79,36.02812555,,Yes,85.08819787,,Low_spent_Small_value_payments,169.8280268,0,0.914,0.431,-2.0716,-0.0731,0.7881 +0x1e21d,CUS_0x6534,August,18,#F%$D@*&8,Scientist,79697.48,6080.96593,7,7,26,9,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, Payday Loan, and Payday Loan",41.52476759,25,22.03,26,_,2984.04,30.90358942,5 Years and 6 Months,Yes,841.8403869,123.1771445,High_spent_Small_value_payments,301.8188723,0,1.7723,-1.43,1.4206,0.3368,-0.7363 +0x1e229,CUS_0xc6ba,August,41,219-23-5757,Developer,9615.485,607.2904167,7,6,2696,6,"Home Equity Loan, Student Loan, Student Loan, Personal Loan, Not Specified, and Not Specified",18.11321043,14.98324049,12.31,12,_,2412.041819,32.41534491,15 Years and 11 Months,Yes,40.69487717,25.42847439,Low_spent_Small_value_payments,284.6056901,0,0.3851,1.2871,0.4577,0.0291,-1.0618 +0x1e235,CUS_0xc2cc,August,45,952-37-1540,Teacher,9400.2,719.35,7,5,34.06745738,7,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Mortgage Loan",,,3.52,10,Bad,2171.15713,33.60318538,,Yes,45.88919371,55.93035651,Low_spent_Medium_value_payments,223.3951618,0,0.3105,-0.8866,0.322,0.8594,-0.1547 +0x1e241,CUS_0xbfcb,August,26,054-86-7625,Developer,35023.49,2651.624167,3,4,18,3,"Home Equity Loan, Personal Loan, and Not Specified",,9,14.86,6,Standard,305.79,36.37127779,32 Years and 0 Months,Yes,52.66554536,65.10311351,High_spent_Large_value_payments,387.3937578,0,0.0324,0.7146,1.4407,0.5025,1.185 +0x1e24d,CUS_0xb515,August,24,534-57-1077,Accountant,14233.31,,7,6,21.06745738,9,"Debt Consolidation Loan, Student Loan, Personal Loan, Personal Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Student Loan, and Personal Loan",,21.88314538,8.22,6,Bad,4353.380105,38.60698175,11 Years and 4 Months,Yes,77.31063981,78.06147134,Low_spent_Medium_value_payments,202.3185176,0,-0.8864,0.8128,-0.3538,-0.1801,0.3593 +0x1e259,CUS_0x1dd3,August,24,936-83-6588,Manager,68484.44,5684.036667,5,7,5,5,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Home Equity Loan",25.83806921,20,12.52,8,_,105.41,37.66204647,12 Years and 8 Months,Yes,225.5356673,,Low_spent_Medium_value_payments,314.3336535,0,0.1868,-0.2618,0.7138,1.703,0.1585 +0x1e265,CUS_0x92aa,August,26,218-80-2572,Entrepreneur,98703.99,8350.3325,2,6,8,3,"Auto Loan, Student Loan, and Debt Consolidation Loan",1.537474708,3.422467611,8.72,7,Good,1576.257261,32.59824615,29 Years and 2 Months,No,142.6663747,147.1631032,High_spent_Large_value_payments,785.2037721,0,-0.921,-0.4816,0.3215,1.2967,0.0104 +0x1e271,CUS_0x7e8a,August,18,668-06-0629,Doctor,40944.82,,1426,7,17,3,"Personal Loan, Student Loan, and Student Loan",18.98867132,16,13.4,7,_,948.81,39.43435094,25 Years and 6 Months,Yes,93.98416719,10000,High_spent_Large_value_payments,453.0521859,0,1.4951,0.5177,0.2607,1.2134,0.0276 +0x1e27d,CUS_0x14cf,August,29,195-25-5475,Musician,13618.87,,4,3,11,0,,21.80391107,18,8.18,0,Good,1480.87,31.49544304,31 Years and 10 Months,No,0,55.29881119,High_spent_Small_value_payments,337.9917721,0,0.8342,0.3724,0.1009,-0.9096,-0.0967 +0x1e289,CUS_0xaff6,August,56,406-69-4655,Mechanic,32876.7,,7,4,20,1,Not Specified,15.76865349,,14.28,3,Standard,807.3,34.80667125,17 Years and 5 Months,Yes,23.79430355,,High_spent_Small_value_payments,409.0252515,0,1.1062,0.6621,0.5224,0.0919,0.3681 +0x1e295,CUS_0xc03a,August,44,932-28-9901,Manager,33401.1,2701.425,1,7,1,2,"Not Specified, and Not Specified",5.855003771,9,11.39,8,Good,857.99,25.86031013,18 Years and 11 Months,No,54.21282396,63.36692237,High_spent_Medium_value_payments,402.5627537,0,2.2478,-1.8564,0.9312,-0.2984,0.6761 +0x1e2a1,CUS_0x6960,August,23,830-83-0350,Scientist,43788.75,,3,7,10,1,Not Specified,3.815863658,6,4.43,4,Good,1427.84,25.99129532,29 Years and 0 Months,No,23.44304387,366.8347376,Low_spent_Small_value_payments,239.1284686,0,0.0868,1.8156,0.1885,0.2382,-1.8351 +0x1e2ad,CUS_0x688e,August,18,860-92-2220,Media_Manager,42447.54,3583.295,5,5,13,4,"Mortgage Loan, Payday Loan, Mortgage Loan, and Auto Loan",,16,12.04,7,_,2103.16,36.48528898,18 Years and 0 Months,Yes,95.24041675,94.84421375,High_spent_Medium_value_payments,418.2448695,0,-0.6241,-0.9439,-0.4171,0.7032,0.41 +0x1e2b9,CUS_0xa736,August,21,120-08-5254,Entrepreneur,147058.64,12319.88667,2,3,11,2,"Home Equity Loan, and Not Specified",0,0,10.92,3,_,1377.33,24.81560854,28 Years and 8 Months,No,193.3529607,691.403924,Low_spent_Medium_value_payments,627.231782,0,-1.4052,0.8557,2.0179,0.1065,-2.1677 +0x1e2c5,CUS_0x13ce,August,52,396-50-4794,Manager,18710.74,,2,6,8,4,"Payday Loan, Credit-Builder Loan, Payday Loan, and Student Loan",4.462346276,8,5.13,5,Good,830.7,22.73838014,,No,50.32093195,63.22151612,Low_spent_Large_value_payments,292.7803853,0,0.583,0.116,1.4954,-0.1857,0.6088 +0x1e2d1,CUS_0x8b8b,August,40,978-16-1554,Accountant,80402.72,,9,8,25,5,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Payday Loan",41.4259269,29.33945541,25.25,16,Bad,3628.668466,35.87668496,6 Years and 0 Months,Yes,178.6006603,10000,High_spent_Large_value_payments,582.7471413,0,-0.8768,-0.8884,-0.6733,0.1646,-0.5178 +0x1e2dd,CUS_0x4866,August,18,167-26-7699,Journalist,95025.4,,6,6,14,0,,18.13403742,15,10.13,7,Standard,746.5,38.50015329,9 Years and 0 Months,Yes,0,161.3724496,High_spent_Large_value_payments,847.0058838,0,-1.2926,0.2461,1.378,0.1109,-0.314 +0x1e2e9,CUS_0xb319,August,43,290-47-1324,Scientist,15361.32,1362.11,10,10,18.06745738,9,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",24.85468156,17,22.95,11,Bad,3123.400954,33.77448474,9 Years and 5 Months,Yes,111.9039843,,Low_spent_Medium_value_payments,154.2700733,0,-0.6985,-0.7226,0.0974,0.2333,-0.5616 +0x1e2f5,CUS_0x7ae4,August,41,209-28-8999,Scientist,54072.94,4700.078333,6,6,12,3,"Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",15.37204048,12,7.33,,Standard,1388.27,28.71618203,33 Years and 0 Months,No,72.89893779,187.8990427,Low_spent_Medium_value_payments,489.2098529,0,1.6046,1.8661,-0.7683,-1.1195,-0.1358 +0x1e301,CUS_0x264b,August,55,214-29-8583,Manager,109349.31,7895.012322,2,3,5,0,,,0,3.93,4,Good,1199.389373,41.05494407,29 Years and 9 Months,No,1296.430178,87.80806042,High_spent_Large_value_payments,1080.1029,0,-0.4493,-1.7163,0.7635,0.3904,-0.816 +0x1e30d,CUS_0xe51,August,42,192-48-3506,Architect,96583.71,7998.6425,5,6,1.288361749,0,Debt Consolidation Loan,0,2,3.28,3,Good,777.88,32.88552165,30 Years and 3 Months,No,49572,484.2346109,High_spent_Large_value_payments,907.3376772,0,0.6101,-0.4539,-1.7663,-0.505,2.2009 +0x1e319,CUS_0xb8a8,August,33,788-37-2569,Engineer,45705.04,3722.753333,8,6,6,3,"Credit-Builder Loan, Not Specified, and Debt Consolidation Loan",15.33282131,13,16.69,7,_,378.16,35.43191083,16 Years and 9 Months,Yes,69.04495021,74.49803168,High_spent_Large_value_payments,468.7323514,0,-0.7575,0.1298,-0.0595,-0.9454,1.9189 +0x1e325,CUS_0x6fb4,August,18,271-80-1213,Mechanic,31273.54,,5,5,20,2,"Debt Consolidation Loan, and Credit-Builder Loan",,15,12.63,8,Standard,2382.3,25.00412274,,Yes,49.9397122,64.50937655,High_spent_Large_value_payments,400.7637446,0,0.6966,-0.3799,1.0859,0.0996,1.1494 +0x1e331,CUS_0x9793,August,42,631-08-6588,_______,19006.52,,1733,6,15,5,"Not Specified, Home Equity Loan, Student Loan, Credit-Builder Loan, and Personal Loan",41.18609247,22.79218317,5.69,,_,3310.249483,36.39979288,1 Years and 11 Months,Yes,48.95753866,10000,Low_spent_Small_value_payments,299.9220897,0,0.1442,1.2436,-0.0415,1.1255,1.2574 +0x1e33d,CUS_0x4807,August,40,001-96-0566,Musician,70825.76,5814.146667,10,7,22,3,"Personal Loan, Payday Loan, and Mortgage Loan",35.26937577,17,9.77,12,Standard,1629.99,32.87962365,5 Years and 11 Months,Yes,166.6415955,525.7761691,Low_spent_Small_value_payments,178.996902,0,-0.5794,1.0396,0.7139,0.4549,1.547 +0x1e349,CUS_0xcea,August,31,#F%$D@*&8,Entrepreneur,13815.325,1133.277083,4,4,4,0,,,12,0.52,5,Standard,565.72,40.74181603,30 Years and 3 Months,No,0,41.07846214,Low_spent_Medium_value_payments,352.2492462,0,-0.6338,-0.601,1.0247,-1.2292,1.1467 +0x1e355,CUS_0xb8f7,August,61,125-22-4888,Journalist,21702.87,1794.5725,0,2,8,0,,1.100313746,3,3.25,1,Good,440.8436422,36.6391156,30 Years and 2 Months,No,0,64.84264676,High_spent_Medium_value_payments,370.5983936,0,0.2311,-0.4809,0.6394,1.0645,0.6763 +0x1e361,CUS_0x6821,August,26,159-13-1368,Architect,34105.84,3093.153333,10,5,19,7,"Student Loan, Not Specified, Student Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Not Specified",,29.62306029,3.22,13,_,3518.448763,23.63121971,14 Years and 8 Months,Yes,143.1277115,,Low_spent_Large_value_payments,213.6652797,0,0.0684,0.7961,-0.8394,0.5032,-0.899 +0x1e36d,CUS_0x7ab6,August,37,039-48-4190,Developer,42252.7,3007.490624,6,6,13,4,"Mortgage Loan, Student Loan, Personal Loan, and Personal Loan",23.225269,20,7.69,9,Standard,631.2703702,36.45090069,,NM,492.6175913,119.2164704,High_spent_Medium_value_payments,367.6919242,0,0.4461,1.3967,-0.42,-0.009,-0.3638 +0x1e379,CUS_0x4464,August,27,#F%$D@*&8,Teacher,97363.36,8059.613333,6,6,16,3,"Payday Loan, Mortgage Loan, and Student Loan",13.32102571,10.18652825,15.5,6,Standard,225.2423056,42.69825695,14 Years and 2 Months,NM,152.3969132,,High_spent_Large_value_payments,718.2804166,0,-0.4428,0.4801,0.7308,1.1705,0.6047 +0x1e385,CUS_0xc2cb,August,80,523-96-3939,Doctor,22387.125,1677.59375,4,3,12,0,,0,0,3.93,1,Good,1222.790599,22.22875249,27 Years and 0 Months,No,0,182.3017558,Low_spent_Medium_value_payments,290.6840024,0,0.9745,0.9566,-1.7742,0.264,-0.1044 +0x1e391,CUS_0xa8e2,August,33,025-92-7349,Doctor,21903.85,,3,5,6.067457376,1,Credit-Builder Loan,27.75241267,19,10.96,1,Standard,1649.710954,39.25780706,29 Years and 4 Months,Yes,13.2736255,90.33428392,Low_spent_Small_value_payments,353.703886,0,2.1255,-1.8525,0.2042,-1.2706,-0.0944 +0x1e39d,CUS_0xc2eb,August,49,476-80-8128,Musician,93068.88,7497.74,5,8,16,4,"Personal Loan, Mortgage Loan, Payday Loan, and Personal Loan",24.40477847,,1.36,4,Standard,151.6,37.63420795,24 Years and 9 Months,No,221.0215,797.4188038,Low_spent_Small_value_payments,21.33369625,0,0.6384,0.8224,-0.8872,-0.9856,1.3292 +0x1e3a9,CUS_0x81ce,August,41,548-14-5750,Accountant,20579.45,,5,6,4,0,,7.931826527,2.4028504,8.18,4,Good,1670.890939,35.09693193,25 Years and 9 Months,NM,0,188.7543095,Low_spent_Small_value_payments,282.7411071,0,-0.9659,-0.0418,-0.8939,-1.561,-1.1295 +0x1e3b5,CUS_0xf45,August,28,952-99-0474,Mechanic,32057.3,,9,8,16,7,"Student Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,29.61755806,1.4,14,Bad,1481.175181,38.59879487,10 Years and 4 Months,Yes,164.8594262,207.5770839,Low_spent_Small_value_payments,178.2076565,0,-0.1144,0.9679,0.1746,-1.9011,-0.6605 +0x1e3c1,CUS_0x9ea,August,24,531-34-8176,Scientist,70851.84,5947.32,8,6,11,2,"Home Equity Loan, and Not Specified",9.195606863,11,13.86,9,Standard,972.89,27.91215026,33 Years and 5 Months,Yes,97.02789989,,High_spent_Large_value_payments,648.8412504,0,-0.5157,-0.0055,0.2803,0.9045,0.682 +0x1e3cd,CUS_0x5161,August,18,566-41-9357,Writer,83403.2,6825.266667,10,8,25.88954781,6,"Home Equity Loan, Not Specified, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Student Loan",,20,11.03,6,Bad,1668.73,26.73445714,19 Years and 10 Months,Yes,1610.676973,,High_spent_Medium_value_payments,365.3264273,0,0.2901,-0.7453,-0.8419,0.4792,-1.1961 +0x1e3d9,CUS_0x78f0,August,36,654-33-1232,Teacher,11780.935,,8,5,10,0,,,12,5.8,6,Standard,526.12,39.31931804,32 Years and 11 Months,No,0,,Low_spent_Small_value_payments,358.3155503,0,2.3993,-0.5051,1.5266,-1.106,-0.7081 +0x1e3e5,CUS_0x44c0,August,27,087-44-2520,Engineer,48854.85,3957.2375,9,5,16,6,"Debt Consolidation Loan, Student Loan, Not Specified, Not Specified, Home Equity Loan, and Home Equity Loan",39.74251746,28.30441119,14.82,13,Bad,3428.70894,26.19195333,13 Years and 8 Months,Yes,208.9850256,76.72995367,High_spent_Large_value_payments,350.0087707,0,2.3035,0.4239,-0.2304,1.6476,-0.0233 +0x1e3f1,CUS_0x6057,August,36,778-35-7926,Musician,28810.71,2367.8925,7,3,10,1,Auto Loan,9.822072946,9,14.03,7,Standard,454.58,30.01283074,,Yes,20.76803282,253.7739842,Low_spent_Small_value_payments,252.247233,0,1.5409,-0.9369,-0.4264,-0.2535,-0.2171 +0x1e3fd,CUS_0x1463,August,50,239-41-8144,Media_Manager,95534.61,,6,911,11,0,,21.67232207,14,3.92,0,Standard,1273.05,34.82754464,33 Years and 0 Months,NM,0,229.3164718,High_spent_Small_value_payments,832.2052782,0,0.5306,-0.3094,-0.0837,-0.7976,0.4151 +0x1e409,CUS_0x4cc2,August,19,349-26-0674,Manager,7290.88,406.5733333,3,4,27,7,"Personal Loan, Not Specified, Personal Loan, Home Equity Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",,16,13.53,17,Standard,2580.29,25.63694979,15 Years and 4 Months,Yes,41.70317224,,Low_spent_Small_value_payments,257.9978494,0,0.7399,0.6194,-0.2093,-0.2768,-0.4224 +0x1e415,CUS_0x9771,August,27,702-39-1597,Entrepreneur,29038.58,,8,4,12,7,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",32.59992203,22.92857838,15.24,6,Standard,1752.632913,23.71268249,20 Years and 5 Months,Yes,110.9417046,81.86015563,Low_spent_Large_value_payments,315.4863065,0,-0.2216,-1.2472,-0.0664,-0.3131,-0.7125 +0x1e421,CUS_0x8568,August,19,721-47-0286,_______,164027.12,13711.92667,5,5,5.288361749,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",0,2,3.62,5,Good,47.78865648,30.20103585,17 Years and 5 Months,No,428.2717621,,High_spent_Small_value_payments,520.764774,0,2.0839,-0.8898,-1.0289,0.8893,-1.3433 +0x1e42d,CUS_0x20ff,August,37,816-89-5174,Doctor,16862.88,,8,8,23.06745738,7,"Personal Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Auto Loan",43.3022683,22.57789158,19.07,12,Standard,1770.59683,35.19447892,17 Years and 8 Months,Yes,81.80403665,,Low_spent_Small_value_payments,151.1784697,0,0.346,-0.431,-0.33,-1.2411,-0.6586 +0x1e439,CUS_0x255b,August,30,006-88-2847,Musician,9555.94,,7,6,28.06745738,7,"Payday Loan, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Mortgage Loan",27.19817894,17.75877495,5.72,11,_,3704.647604,25.86907115,3 Years and 10 Months,NM,44.9810863,73.21774397,Low_spent_Small_value_payments,224.3137151,0,-1.1933,-2.0553,-1.3171,0.3159,-2.0608 +0x1e445,CUS_0x2a06,August,41,263-17-4432,Mechanic,35917.12,,9,6,34,4,"Mortgage Loan, Payday Loan, Payday Loan, and Home Equity Loan",39.09790873,21.888869,5.39,6,Bad,1693.876542,28.79751953,18 Years and 6 Months,Yes,164.9535656,174.2337317,Low_spent_Large_value_payments,265.7428958,0,-0.0668,0.1411,-0.3932,1.0034,-0.669 +0x1e451,CUS_0x8065,August,21,#F%$D@*&8,Media_Manager,14516.4,1134.7,8,5,24.06745738,9,"Mortgage Loan, Credit-Builder Loan, Personal Loan, Student Loan, Payday Loan, Student Loan, Mortgage Loan, Not Specified, and Debt Consolidation Loan",39.58687501,18.25294865,16.39,6,Bad,4726.481882,39.30661871,6 Years and 10 Months,Yes,77.70588981,,Low_spent_Medium_value_payments,217.8179232,0,-0.4816,1.6352,0.6382,-1.1219,-1.2882 +0x1e45d,CUS_0x8216,August,19,888-44-5992,Architect,7225.02,415.2278897,10,10,30,7,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, Student Loan, Home Equity Loan, and Payday Loan",,15.8281475,1.2,13,Bad,5181.85996,36.89132668,1 Years and 2 Months,Yes,67.94083918,10000,Low_spent_Small_value_payments,248.2583889,0,-0.3281,-0.5862,1.0567,0.0652,-0.0802 +0x1e469,CUS_0x1250,August,28,#F%$D@*&8,Developer,72503.56,5974.963333,6,8,32.95700519,9,"Credit-Builder Loan, Not Specified, Student Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Student Loan, Not Specified, and Mortgage Loan",,18,22.41,15,Bad,4429.010954,36.88179885,13 Years and 8 Months,Yes,1686.329545,107.3564851,High_spent_Medium_value_payments,332.7599335,0,1.2535,-1.6477,1.6244,-0.0433,1.468 +0x1e475,CUS_0xbb4e,August,80,618-14-8027,Manager,58214.12,4710.176667,7,9,30,7,"Mortgage Loan, Payday Loan, Auto Loan, Auto Loan, Not Specified, Personal Loan, and Personal Loan",33.05645729,17,2.69,11,Bad,2215.84,25.51854421,6 Years and 5 Months,Yes,183.2792584,318.832989,High_spent_Small_value_payments,228.9054193,0,-1.4218,-1.4556,0.1357,0.1646,-0.2987 +0x1e481,CUS_0xb329,August,53,892-70-8758,Writer,16965.3,1247.775,1,5,3,0,,,5,-1.98,6,Good,63.04011391,30.98911241,15 Years and 10 Months,No,0,126.3875246,Low_spent_Small_value_payments,300.228834,0,-0.2775,1.6808,-0.2226,1.7943,1.0249 +0x1e48d,CUS_0xb0f3,August,32,335-15-2362,Accountant,65454.36,5400.53,4,5,13.28836175,2,"Home Equity Loan, Debt Consolidation Loan, and Not Specified",19.15448813,17,7.17,8,Standard,449.97,25.6656429,25 Years and 0 Months,Yes,130.9284792,1016.147976,Low_spent_Small_value_payments,102.9140056,0,-0.6275,-1.1824,0.7684,0.2047,0.7209 +0x1e499,CUS_0xce1,August,40,035-74-7118,Scientist,31256.02,2841.668333,3,4,19,7,"Credit-Builder Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, and Personal Loan",,17.54101332,14.76,6,Standard,2726.925986,33.78696276,5 Years and 11 Months,Yes,122.8524265,132.2169195,High_spent_Small_value_payments,289.0974873,0,-1.3796,-0.4999,0.7607,1.1769,0.853 +0x1e4a5,CUS_0x992c,August,36,755-10-0575,Architect,18261.36,,5,3,9,3,"Debt Consolidation Loan, Not Specified, and Personal Loan",,12,17.43,9,Standard,2305.16,29.80928489,18 Years and 4 Months,Yes,26.02407181,70.04237304,High_spent_Small_value_payments,312.5115552,0,0.2627,-1.0612,0.7408,1.7637,1.2321 +0x1e4b1,CUS_0x67f9,August,38,226-71-9521,Engineer,34433.18,,5,4,19,2,"Personal Loan, and Debt Consolidation Loan",11.10460183,9.402478136,10.99,14,Standard,1873.066533,25.86752152,19 Years and 10 Months,Yes,36.28557408,345.2352189,Low_spent_Small_value_payments,175.6223737,0,1.4671,0.0975,-0.4469,1.0056,-1.0826 +0x1e4bd,CUS_0x614d,August,30,868-50-4952,Engineer,9302.125,835.1770833,8,8,17.88954781,7,"Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Payday Loan",16.57556348,,28.32,,_,4418.180242,26.35402772,5 Years and 2 Months,Yes,1357.85224,36.15884428,Low_spent_Small_value_payments,285.1765423,0,-2.0185,-0.0647,1.4938,0.4393,-0.9913 +0x1e4c9,CUS_0x5b9d,August,45,192-16-9048,Mechanic,87966.96,7564.58,5,2,15,1,Student Loan,28.37807353,23,10.24,4,_,166.72,35.40901136,19 Years and 8 Months,Yes,64.35019527,10000,Low_spent_Medium_value_payments,237.4441787,0,-0.1527,1.4527,0.5163,1.95,0.0094 +0x1e4d5,CUS_0x8b5f,August,48,711-39-1531,Developer,22323.28,,0,5,9,4,"Credit-Builder Loan, Not Specified, Not Specified, and Personal Loan",12.04175173,11,7.2,7,Good,467.0590381,25.82502554,27 Years and 3 Months,No,53.86123911,262.0695988,Low_spent_Small_value_payments,202.3271388,0,-0.6902,-1.6466,0.8823,2.9767,1.5908 +0x1e4e1,CUS_0xb4ee,August,24,703-46-2158,Manager,19989.65,1563.804167,10,5,21,9,"Student Loan, Not Specified, Auto Loan, Mortgage Loan, Auto Loan, Auto Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",29.71240226,,0.24,14,Bad,2313.514116,39.18374968,9 Years and 8 Months,Yes,94.21551872,204.5073298,Low_spent_Small_value_payments,147.6575681,0,-1.0019,-0.2916,0.8889,-0.5565,-0.1988 +0x1e4ed,CUS_0x8bcc,August,55,771-16-3153,_______,123485.04,10299.42,4,4,6,3,"Auto Loan, Mortgage Loan, and Auto Loan",17.84677183,,8.17,5,Good,929.4787615,27.33981939,19 Years and 9 Months,No,290.0200002,474.9033197,High_spent_Medium_value_payments,563.6530069,0,0.6062,-1.7082,0.4428,0.4398,-0.1517 +0x1e4f9,CUS_0x7a68,August,19,210-95-0465,Developer,30638.28,,3,5,13,3,"Personal Loan, Home Equity Loan, and Credit-Builder Loan",21.36269063,17,12.41,8,Standard,670.13,35.94846822,20 Years and 9 Months,Yes,57.35981371,162.2277745,Low_spent_Small_value_payments,296.1314118,0,0.7873,1.5273,-0.4328,0.0387,1.0605 +0x1e505,CUS_0x9998,August,30,325-40-2210,Architect,21639.39,,3,4,7,1,Mortgage Loan,23.55947484,17.54342507,9.71,7,Standard,1216.748542,28.90575004,23 Years and 8 Months,Yes,12.13186647,,Low_spent_Medium_value_payments,291.3859528,0,-1.436,-0.7742,-1.097,1.0233,1.5753 +0x1e511,CUS_0x1204,August,46,741-78-3585,Writer,18829.82,1578.151667,8,8,25.06745738,4,"Mortgage Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",11.7709413,7.05364064,12.36,,Standard,2204.47464,29.95950476,9 Years and 0 Months,Yes,34.9070076,,Low_spent_Large_value_payments,256.2299328,0,-0.8253,2.0844,-0.6444,-2.3921,1.2205 +0x1e51d,CUS_0xa823,August,43,687-30-3436,_______,16481.42,1514.451667,9,5,24.06745738,8,"Auto Loan, Auto Loan, Home Equity Loan, Student Loan, Home Equity Loan, Auto Loan, Mortgage Loan, and Home Equity Loan",,25,28.12,12,Bad,4641.670954,40.58971726,,NM,58.81112683,10000,Low_spent_Medium_value_payments,283.4137609,0,1.0813,-0.3376,0.8132,-0.3418,-0.8467 +0x1e529,CUS_0xb1cc,August,26,283-60-8539,_______,93550.95,,3,5,11,0,,12.42073458,9,7.03,8,_,1272.54,37.62974443,18 Years and 2 Months,Yes,0,126.8970318,High_spent_Large_value_payments,897.8942182,0,-0.492,0.0927,0.4639,-1.2478,0.9511 +0x1e535,CUS_0xf9f,August,80,060-48-7120,Manager,18587.64,,6,8,18.95700519,7,"Student Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Payday Loan",,26,12.1,12,_,2593.420954,27.07891256,8 Years and 4 Months,Yes,1384.582775,93.92088297,Low_spent_Small_value_payments,248.342973,0,0.6192,0.1406,1.5116,0.218,0.6053 +0x1e541,CUS_0x8f2d,August,27,426-36-5407,Accountant,36190.17,,5,3,10,0,,17.04447682,,2.96,5,Good,1406.85,32.96584415,16 Years and 0 Months,No,0,35.36904347,High_spent_Medium_value_payments,540.6157065,0,0.3924,-1.2916,-0.9294,0.7189,0.6602 +0x1e54d,CUS_0x8b44,August,27,849-19-8337,Developer,15503.02,,6,7,30,6,"Mortgage Loan, Payday Loan, Personal Loan, Not Specified, Auto Loan, and Student Loan",45.57267713,27.6728459,6.22,8,Bad,4082.060816,23.3137864,4 Years and 8 Months,Yes,164.9674921,,Low_spent_Small_value_payments,271.8087612,0,-2.4951,0.5133,-0.742,1.241,0.532 +0x1e559,CUS_0x542f,August,49,904-67-1928,Lawyer,12763.795,,8,6,20,4,"Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",,6,8.76,0,_,1294.02575,40.45529962,29 Years and 0 Months,No,31.04307058,,Low_spent_Medium_value_payments,293.4144708,0,-1.4642,0.772,-0.0417,-1.0656,-0.0563 +0x1e565,CUS_0xbc17,August,23,270-15-4049,Scientist,53057.64,,10,10,20.88954781,6,"Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",21.39913476,14.74245371,19.2,11,Standard,1698.979795,35.50645179,15 Years and 8 Months,Yes,1474.269458,94.32738367,High_spent_Medium_value_payments,456.6200768,0,-0.3201,0.3027,-0.0316,-0.4203,-0.1787 +0x1e571,CUS_0x9365,August,21,452-11-1523,Teacher,16868.34,1570.695,10,7,22,8,"Debt Consolidation Loan, Payday Loan, Mortgage Loan, Payday Loan, Auto Loan, Mortgage Loan, Personal Loan, and Personal Loan",31.81388297,21.39882438,5.36,8,_,2340.62308,24.14085796,12 Years and 8 Months,Yes,101.5057159,,Low_spent_Medium_value_payments,222.9934174,0,1.0237,0.9984,0.1932,-1.8549,-0.5831 +0x1e57d,CUS_0x7efc,August,42,194-66-9977,_______,60218.28,5293.19,7,6,32,7,"Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Not Specified",36.85719225,23,28.2,9,Bad,4982.57,26.542659,1 Years and 6 Months,NM,230.6266047,73.94423746,High_spent_Medium_value_payments,474.7481578,0,0.3561,1.4865,-1.1936,0.575,0.0148 +0x1e589,CUS_0x26da,August,44,957-74-9111,Doctor,16833.105,,5,5,4,100,"Payday Loan, Personal Loan, Auto Loan, and Home Equity Loan",16.83127597,14,7.99,6,Good,30.97116522,32.24959266,19 Years and 9 Months,No,51.70293826,108.9441262,Low_spent_Small_value_payments,299.9801891,0,1.3932,0.975,0.2449,0.3664,-1.0434 +0x1e595,CUS_0x3e38,August,47,232-31-3900,Scientist,54936.2,4420.016667,4,3,6,4,"Auto Loan, Auto Loan, Auto Loan, and Student Loan",,12,0.9,2,Standard,1142.13,33.2154897,28 Years and 3 Months,No,131.6163786,382.5556157,Low_spent_Small_value_payments,217.8296724,0,-0.4368,1.2849,0.8231,0.191,-0.0923 +0x1e5a1,CUS_0x987b,August,29,208-69-9004,Scientist,7186.5,,6,10,24.95700519,7,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Student Loan, Payday Loan, Personal Loan, and Mortgage Loan",,25.93399444,5.89,12,Bad,2695.486511,30.44528393,19 Years and 5 Months,Yes,1347.117253,83.91905911,Low_spent_Small_value_payments,223.0008188,0,-1.8489,0.3907,1.3026,-0.7613,-1.3882 +0x1e5ad,CUS_0x5572,August,39,972-53-4211,Scientist,10068.97,,8,4,8.067457376,3,"Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",24.36774049,16,10.8,4,Standard,2416.340954,27.9225221,,Yes,23.22225147,38.51749864,Low_spent_Small_value_payments,285.5480453,0,1.4214,-0.5754,-0.0035,0.2962,-1.2651 +0x1e5b9,CUS_0x4e6a,August,53,200-08-4652,Media_Manager,21963.845,,2,5,12,4,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",,6,10.35,6,_,902.69,37.33312272,23 Years and 2 Months,No,38.07342701,27.11812498,High_spent_Medium_value_payments,351.0404897,0,0.5548,-0.3149,1.4434,-1.0171,0.708 +0x1e5c5,CUS_0x3f68,August,21,380-00-1423,Engineer,121277,9884.416667,4,1,7,4,"Mortgage Loan, Not Specified, Credit-Builder Loan, and Student Loan",14.12645941,12,7.69,8,Good,754.3483184,37.87314499,26 Years and 11 Months,No,375.3982364,564.4369775,High_spent_Small_value_payments,371.5645725,0,0.812,-1.1711,-0.9854,0.8773,0.4505 +0x1e5d1,CUS_0x82c1,August,80,635-40-2158,Manager,30883.32,2311.61,6,5,8,3,"Mortgage Loan, Not Specified, and Debt Consolidation Loan",6.712758376,7,11.24,9,Standard,1891.76,24.81665864,15 Years and 9 Months,Yes,50.14969839,10000,High_spent_Small_value_payments,367.1285087,0,-0.0524,-0.0654,0.2539,0.4286,-0.7746 +0x1e5dd,CUS_0x94e3,August,22,135-67-9301,Developer,53075.22,,7,8,21.06745738,7,"Payday Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, and Not Specified",,22,17.23,9,_,3829.350954,25.91475474,14 Years and 5 Months,Yes,301.2769511,502.7217344,Low_spent_Small_value_payments,,0,-1.4127,0.0682,0.4127,-1.0267,1.7531 +0x1e5e9,CUS_0x73b1,August,24,929-57-3185,Musician,34150.84,2946.903333,10,10,29,4,"Personal Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",25.93822062,,8.93,12,Bad,2089.71,24.58535053,9 Years and 9 Months,Yes,67.97113361,125.5315771,High_spent_Small_value_payments,361.1876226,0,1.1264,-0.4501,-0.8736,1.3547,0.5865 +0x1e5f5,CUS_0x9d3e,August,47,527-86-3924,Accountant,33856.86,,1,6,2,0,,4.31185505,5,8.62,1,Good,368.9159656,32.03172507,17 Years and 11 Months,NM,0,113.6386567,Low_spent_Small_value_payments,465.5460912,0,0.0636,0.6518,1.0664,0.6343,0.4875 +0x1e601,CUS_0x4bda,August,60,826-37-6944,Doctor,69886.64,4873.622246,4,6,2.288361749,0,Home Equity Loan,,1,7.52,2,_,596.9045309,41.41838618,17 Years and 10 Months,No,857.3991843,602.8152625,High_spent_Medium_value_payments,604.1611456,0,0.7679,0.8599,1.1048,0.2635,-1.3859 +0x1e60d,CUS_0x74b2,August,42,145-70-3714,Scientist,86415.56,,5,4,15.28836175,4,"Not Specified, Mortgage Loan, Mortgage Loan, and Student Loan",19.75733506,18,13.3,11,Standard,97.94305606,36.77137008,8 Years and 4 Months,Yes,177.5912022,725.2346368,Low_spent_Medium_value_payments,546.8180589,0,-1.6105,-1.4344,-0.8673,2.6581,-0.1845 +0x1e619,CUS_0xbac3,August,49,489-21-2179,Manager,93817.62,,1,6,4,1,Personal Loan,3.088531829,6,8.99,5,Good,952.1838416,26.92616989,32 Years and 8 Months,No,46.97136627,1157.563003,Low_spent_Small_value_payments,,0,-1.5221,-0.1703,0.5469,-1.2043,-1.6335 +0x1e625,CUS_0xa7ae,August,53,932-88-7756,_______,20292.46,1974.038333,7,5,4,0,,18.75968123,13,3.11,2342,Good,371.8194689,33.23738198,22 Years and 0 Months,No,0,51.15738654,High_spent_Large_value_payments,393.1865975,0,-0.8773,1.0298,-0.5561,0.2572,-2.6218 +0x1e631,CUS_0x5f61,August,18,126-44-7194,Doctor,25454.67,,4,3,7,0,,,15,1.61,5,Standard,256.91,38.95571603,31 Years and 2 Months,No,0,108.745718,Low_spent_Medium_value_payments,377.076532,0,2.0632,0.1149,0.1705,1.6248,2.2713 +0x1e63d,CUS_0x14ec,August,27,931-56-3569,Media_Manager,35180.42,2695.701667,5,7,12,2,"Mortgage Loan, and Mortgage Loan",0,0,7.2,2,Good,37.60694321,32.76956004,25 Years and 8 Months,No,44.60716115,,Low_spent_Large_value_payments,285.7629034,0,0.3462,1.0816,-0.0057,-0.4085,-0.5239 +0x1e649,CUS_0xb648,August,53,535-53-6129,Accountant,24041.97,2276.4975,6,7,17,1,Credit-Builder Loan,,18,13.03,5,Standard,655.52,36.12293473,26 Years and 9 Months,Yes,18.43773655,158.9485949,Low_spent_Small_value_payments,340.2634186,0,-0.1421,-1.0629,1.5269,-1.7559,-0.2704 +0x1e655,CUS_0x717d,August,26,913-82-0485,Lawyer,33940,,3,5,3,2,"Student Loan, and Student Loan",1.388568824,2,10.82,0,Good,947.25,34.47268577,27 Years and 4 Months,No,56.50278961,207.2377207,Low_spent_Large_value_payments,294.592823,0,-0.857,0.2745,-1.1758,-0.9516,0.0801 +0x1e661,CUS_0x25e0,August,39,861-61-4315,Architect,11073.6,,3,3,13,4,"Personal Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",12.74246122,12,8.78,2,Standard,1097.02,24.92419652,32 Years and 8 Months,No,2017,10000,Low_spent_Small_value_payments,248.2509508,0,-0.3321,0.6464,-1.085,-0.2846,1.0643 +0x1e66d,CUS_0x3f87,August,80,228-71-4728,Lawyer,9299.105,1068.925417,6,7,35.06745738,7,"Credit-Builder Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Student Loan",35.17339381,17.3155105,19.15,11,Standard,1972.117638,25.3116687,9 Years and 10 Months,Yes,41.63114673,,Low_spent_Small_value_payments,189.3178924,0,-2.0293,-0.7087,-1.2755,-0.0452,0.5051 +0x1e679,CUS_0x79cf,August,29,743-75-2466,_______,27685.04,2595.086667,7,6,7,3,"Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",17.20599219,15,7.46,4,Standard,1055.94,30.40164508,28 Years and 3 Months,No,66.64654085,130.8476368,!@9#%8,342.014489,0,0.1638,0.4578,0.1863,-0.3133,1.053 +0x1e685,CUS_0x6f09,August,39,#F%$D@*&8,Journalist,9026.645,599.2204167,8,8,18.06745738,6,"Personal Loan, Auto Loan, Not Specified, Debt Consolidation Loan, Personal Loan, and Student Loan",26.16687657,17.39274874,8.22,9,Bad,2509.231451,28.06049433,12 Years and 11 Months,NM,31.38186539,52.95933522,Low_spent_Small_value_payments,238.8605531,0,0.6994,0.7711,0.86,-0.3462,-0.0593 +0x1e691,CUS_0x36fd,August,21,090-60-7501,Doctor,20864.93,,5,4,25,7,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",15.42278385,13.38400209,16.04,10,Standard,1614.667024,34.35133628,,NM,66.28873782,56.64547612,High_spent_Small_value_payments,285.5402027,0,0.5697,0.8381,0.0388,-1.7165,-1.1406 +0x1e69d,CUS_0xc12e,August,41,734-01-9522,Engineer,33828.19,2917.015833,3,7,5,0,,26.05556229,17,,3,Standard,1123.09,39.95955991,25 Years and 9 Months,NM,0,273.8160138,Low_spent_Small_value_payments,307.8855695,0,1.242,-0.3789,0.1547,-0.6814,-0.6213 +0x1e6a9,CUS_0x51e9,August,28,581-30-4988,Lawyer,40633.86,3572.155,5,7,13,1,Home Equity Loan,9.837150332,9,7.68,4,Standard,628.11,34.37267646,23 Years and 5 Months,No,19.13269618,237.0932137,Low_spent_Small_value_payments,390.9895901,0,-0.4132,-0.0303,-0.7032,0.1216,0.0865 +0x1e6b5,CUS_0x97f8,August,55,615-81-3842,Lawyer,131254.8,11039.9,3,6,7.288361749,2,"Payday Loan, and Home Equity Loan",4.462346276,8,10.52,4,Good,493.3323226,30.75153027,18 Years and 6 Months,No,216.773941,1611.91932,Low_spent_Medium_value_payments,131.6271462,0,1.1204,-0.6791,-0.5267,0.6646,0.3699 +0x1e6c1,CUS_0x99b8,August,31,549-24-4637,Manager,95854.5,8126.875,3,4,9,1,Debt Consolidation Loan,6.603569508,6,10.19,4,Standard,989.09,42.36796341,33 Years and 5 Months,Yes,41.20437832,110.3664465,High_spent_Medium_value_payments,911.1166752,0,1.0841,-1.3537,1.0088,0.6713,1.2799 +0x1e6cd,CUS_0x9ec2,August,43,168-10-7856,Lawyer,173126.12,,3,147,1.288361749,2,"Home Equity Loan, and Home Equity Loan",,5,9.92,1,Good,269.7219387,39.51723481,29 Years and 11 Months,No,250.6650665,1132.510879,Low_spent_Medium_value_payments,830.4597992,0,0.4703,-0.9002,0.3171,0.4417,-0.8976 +0x1e6d9,CUS_0x7925,August,37,228-11-9667,Teacher,30951.64,2291.303333,9,5,26,100,"Credit-Builder Loan, Student Loan, Home Equity Loan, Mortgage Loan, Personal Loan, Student Loan, and Credit-Builder Loan",32.88868691,21,6.34,10,Bad,4972.87,29.87402678,9 Years and 8 Months,Yes,103.0300412,169.9164363,Low_spent_Small_value_payments,246.1838558,0,0.8118,-0.3864,-0.3454,0.1225,0.3396 +0x1e6e5,CUS_0xadf5,August,37,587-48-4616,Mechanic,29473.28,2163.106667,3,3,10,6,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",3.515325493,6,12.93,11,Standard,1163.33,31.7251713,20 Years and 5 Months,Yes,114.7851908,15.78070727,High_spent_Large_value_payments,325.7447686,0,-0.1495,-0.4789,-0.4386,-1.1983,-0.3521 +0x1e6f1,CUS_0xad13,August,24,563-54-2045,Manager,36755.36,,7,6,19.06745738,6,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",39.47596332,23,12.19,14,Bad,2917.990954,33.3000211,7 Years and 3 Months,Yes,94.38394849,,Low_spent_Large_value_payments,176.2251642,0,0.0197,-0.3816,-0.3171,0.8852,-1.826 +0x1e6fd,CUS_0x566d,August,26,859-86-6339,Manager,121755.92,10157.32667,0,6,4.288361749,0,Credit-Builder Loan,13.7983843,13.20333724,1.87,4,Good,44.78242062,26.64647715,28 Years and 3 Months,No,66.61933591,548.8580702,High_spent_Large_value_payments,1060.192722,0,0.8332,1.5116,1.1063,-0.6272,-1.0855 +0x1e709,CUS_0x6e2b,August,19,100-19-6332,Accountant,10302.59,888.5491667,9,6,35.06745738,9,"Not Specified, Home Equity Loan, Auto Loan, Payday Loan, Student Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",42.88628723,24,26.62,15,Bad,3068.690954,34.21109097,10 Years and 0 Months,Yes,47.10193922,,Low_spent_Large_value_payments,239.5524188,0,0.4437,1.2266,-1.9653,-0.425,1.8391 +0x1e715,CUS_0xa6cb,August,38,052-49-2191,Manager,9958.505,,10,10,28,3,"Auto Loan, Not Specified, and Payday Loan",43.47760357,25.14343957,12.76,14,Bad,2135.474462,23.06368002,8 Years and 11 Months,Yes,15.11845167,,Low_spent_Small_value_payments,296.9252775,0,0.5561,-0.3788,-1.3108,0.7689,0.2364 +0x1e721,CUS_0x2b2b,August,24,216-65-5815,Scientist,16069.92,,8,7,22.06745738,7,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Not Specified, Not Specified, Personal Loan, and Home Equity Loan",,23,28.59,7,Bad,4778.900954,26.66787542,13 Years and 10 Months,NM,72.92485993,114.0949787,Low_spent_Small_value_payments,187.7758734,0,0.9718,-1.8713,0.4977,-0.7976,0.0416 +0x1e72d,CUS_0x3bd6,August,19,820-00-0531,Media_Manager,28151.81,,5,5,6,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",24.26462806,20,12.07,6,Standard,1327.69,24.82538812,7 Years and 8 Months,Yes,64.50670414,281.1067724,Low_spent_Small_value_payments,159.6849401,0,2.0284,-0.5629,-0.7192,-0.8203,-0.5138 +0x1e739,CUS_0x1941,August,41,652-07-7900,Media_Manager,18397.87,,10,9,15,7,"Mortgage Loan, Credit-Builder Loan, Personal Loan, Student Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",,22.54307355,3.84,6,Bad,4552.887706,29.76703352,0 Years and 11 Months,Yes,92.29290341,,Low_spent_Small_value_payments,230.5475287,0,-2.6357,-1.9455,1.4098,0.877,0.2598 +0x1e745,CUS_0x8cfe,August,27,523-90-6933,_______,44934.45,,9,10,20.06745738,8,"Mortgage Loan, Personal Loan, Student Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, and Home Equity Loan",,20,27.58,13,Bad,3285.140954,31.10036201,1 Years and 11 Months,Yes,167.8022404,162.9582498,High_spent_Medium_value_payments,282.3729719,0,0.6935,0.7153,-1.6316,-1.0134,0.6686 +0x1e751,CUS_0xe16,August,18,490-40-5564,Writer,37976.68,2997.723333,9,9,18,7,"Auto Loan, Personal Loan, Student Loan, Personal Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",,24,23.07,12,Bad,4505.1,26.22120685,8 Years and 10 Months,Yes,148.7656992,40.58711373,High_spent_Large_value_payments,350.4195204,0,1.7607,-0.4263,0.354,-1.0223,0.5254 +0x1e75d,CUS_0xa261,August,44,142-05-0523,_______,16431.535,1431.294583,3,3,19.06745738,4,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",22.17685624,15,18.3,6,Standard,1685.050954,31.59240236,23 Years and 0 Months,Yes,49.67926121,,!@9#%8,175.8058556,0,-1.1591,-0.1853,0.8773,0.0393,-0.9878 +0x1e769,CUS_0x9dd5,August,39,802-37-0612,Entrepreneur,61732.23,5031.3525,8,3,5,100,,21.16666773,17,8.9,6,_,1408.55,35.73412071,18 Years and 3 Months,Yes,0,144.3086634,High_spent_Medium_value_payments,608.8265866,0,0.5731,-1.9878,-1.5255,0.0617,1.4949 +0x1e775,CUS_0x3716,August,52,979-93-9286,Musician,78937.1,6605.091667,3,7,7,4,"Payday Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",,8.234450233,6.05,7,Good,593.0737879,36.60583414,32 Years and 2 Months,NM,174.4163438,105.0306674,High_spent_Large_value_payments,621.0621555,0,1.6024,0.2851,1.456,-0.3622,-0.3687 +0x1e781,CUS_0x5f59,August,46,223-44-0038,Writer,90285.33,7342.7775,1,4,10.28836175,2,"Payday Loan, Student Loan, and Payday Loan",3.810247574,6,2.88,4,Good,527.5288419,29.57371529,20 Years and 8 Months,No,121.8490187,1101.659905,Low_spent_Medium_value_payments,299.0495321,0,-0.4441,-0.9553,0.6003,1.3825,1.4836 +0x1e78d,CUS_0x9803,August,41,934-23-1393,Mechanic,18163.26,1787.605,4,8,26,2,"Credit-Builder Loan, and Student Loan",19.74573094,13.46368853,7.52,12,Standard,1798.385982,35.00457365,,Yes,21.97885938,142.1750056,Low_spent_Medium_value_payments,294.606635,0,-0.2189,-0.1019,-0.1989,0.4509,-0.0411 +0x1e799,CUS_0x5342,August,39,407-46-5571,Media_Manager,142395.12,12049.26,7,5,18,3,"Mortgage Loan, Home Equity Loan, and Personal Loan",20.01946175,14.86611732,11.89,6,Standard,548.4854881,28.01563705,,NM,199.9046913,157.2900938,!@9#%8,1087.731215,0,1.0229,1.2277,-2.1921,-0.7148,0.546 +0x1e7a5,CUS_0xc70b,August,38,941-16-2592,Musician,19631.51,1790.959167,6,8,25.06745738,7,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",,21.02765313,6.69,9,_,2090.769122,28.97566397,6 Years and 9 Months,Yes,21660,68.23034057,High_spent_Medium_value_payments,220.7103663,0,-0.6757,-0.4797,0.6876,0.0992,-0.8381 +0x1e7b1,CUS_0x9d4c,August,29,548-47-7441,_______,37551.78,,10,10,22,7,"Auto Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Payday Loan",34.79745262,18,7.32,16,Bad,1577.79,37.2849794,10 Years and 4 Months,Yes,182.2156422,,Low_spent_Medium_value_payments,101.861794,0,0.1701,-0.5469,-0.3101,-1.4654,-1.6511 +0x1e7bd,CUS_0x6df7,August,39,993-37-4187,Entrepreneur,22655.88,1972.99,7,4,8,4,"Student Loan, Mortgage Loan, Not Specified, and Personal Loan",14.22918333,14,19.16,5,_,1268.55,28.50660532,14 Years and 4 Months,Yes,57.0162067,147.1883257,Low_spent_Medium_value_payments,273.0944676,0,0.3719,0.2886,0.5718,0.5981,-0.4387 +0x1e7c9,CUS_0x35f3,August,27,956-45-6497,_______,92939.49,,0,5,5,2,"Student Loan, and Mortgage Loan",5.875575612,7,7.8,4,Good,683.9884471,29.18019206,,No,148.2960781,741.4034437,Low_spent_Small_value_payments,274.4035597,0,0.5578,-0.3997,0.2108,0.3571,0.3546 +0x1e7d5,CUS_0x5269,August,34,643-26-5458,Engineer,18302.33,,8,10,32.06745738,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Payday Loan",39.42189218,20.38812568,4.38,11,Bad,4042.182438,38.94649983,4 Years and 8 Months,Yes,41.79581408,,Low_spent_Small_value_payments,193.8239592,0,0.9241,0.1636,-0.2622,-1.0706,-1.5233 +0x1e7e1,CUS_0xbff1,August,49,809-15-9648,Developer,20817.455,,5,3,10,4,"Not Specified, Home Equity Loan, Mortgage Loan, and Auto Loan",,0,1.52,3,Good,691.9,36.21919039,29 Years and 0 Months,No,44.94859543,,Low_spent_Large_value_payments,258.8188742,0,-1.3328,-0.972,-0.1969,-0.5752,-0.7473 +0x1e7ed,CUS_0x5d5c,August,50,754-88-1234,Engineer,43995.95,3432.329167,4,3,11,0,,,10.44001629,0.83,5,Good,1361.332799,38.91022269,27 Years and 11 Months,No,0,150.4979274,Low_spent_Large_value_payments,462.7349892,0,-0.5092,-1.4751,-0.6971,1.5657,-0.3526 +0x1e7f9,CUS_0xbb1b,August,18,883-52-1446,Doctor,60546.72,4968.56,5,3,11,5,"Student Loan, Mortgage Loan, Payday Loan, Not Specified, and Payday Loan",18.14416368,15,8.37,10,Standard,220.02,32.75475084,7 Years and 8 Months,Yes,240.7641625,181.20575,High_spent_Medium_value_payments,324.8860875,0,-0.445,-0.5278,0.7437,-0.2641,0.1102 +0x1e805,CUS_0xb76e,August,19,064-07-9323,Media_Manager,84479.67,,0,5,7.288361749,4,"Student Loan, Payday Loan, Student Loan, and Student Loan",4.563030141,7,11.46,0,Good,477.02,40.17933268,20 Years and 3 Months,No,149.7350312,513.7838289,High_spent_Large_value_payments,676.415851,0,1.0173,-0.5975,0.2579,-0.9829,-1.996 +0x1e811,CUS_0x1f91,August,45,376-15-3251,Entrepreneur,37986.18,3046.515,7,6,26.06745738,8,"Auto Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Student Loan, and Student Loan",29.38619656,17,25.21,10,Bad,3831.050954,27.03102969,8 Years and 0 Months,Yes,134.5815336,52.92054348,High_spent_Large_value_payments,330.429135,0,-0.5653,-1.3766,0.1664,-0.3874,1.761 +0x1e81d,CUS_0x13d5,August,54,604-47-5660,Musician,124183.56,10156.63,7,5,4.288361749,2,"Payday Loan, and Student Loan",19.59699147,17,11.19,6,Good,219.4775843,36.92214493,,NM,156.3049517,509.9275332,High_spent_Large_value_payments,1021.322429,0,-0.3964,1.6663,-0.9642,-1.7978,0.0266 +0x1e829,CUS_0xa46f,August,41,590-91-6751,Manager,14335.46,,4,3,8,1,Mortgage Loan,,15,8.6,8,Standard,726.59,38.98985464,23 Years and 3 Months,Yes,9.987632453,16.62051347,High_spent_Large_value_payments,322.1540207,0,-0.9955,-0.6267,-0.2844,0.298,0.2986 +0x1e835,CUS_0xad12,August,45,#F%$D@*&8,Scientist,80377.68,6807.14,10,7,28,5,"Student Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Payday Loan",,22.73153866,2.84,12,Bad,1579.667009,28.23965081,7 Years and 11 Months,Yes,186.662212,89.09412158,High_spent_Large_value_payments,644.9576664,0,1.1548,0.6796,0.779,0.023,0.4935 +0x1e841,CUS_0x4f32,August,51,916-10-7140,Musician,32469.29,2738.774167,1102,4,8.288361749,0,,,2,1.39,6,Good,118.1469022,37.91984917,18 Years and 11 Months,NM,0,477.7423421,High_spent_Medium_value_payments,473.9340415,0,0.9754,-0.1626,-0.6535,-0.6513,-0.3962 +0x1e84d,CUS_0x65eb,August,38,095-98-7132,Journalist,28194.8,,2,3,11,100,"Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",13.82713585,12,9.78,2,_,139.84,30.31254489,,No,55.46728813,98.22724803,Low_spent_Small_value_payments,379.0621305,0,-0.2708,-1.0057,0.7426,-0.0966,1.7782 +0x1e859,CUS_0x3377,August,20,532-58-6827,Accountant,34230,2902.5,10,9,29.88954781,8,"Home Equity Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",19.30361928,15,18.49,11,_,3362.1,24.44571635,6 Years and 5 Months,Yes,1474.554309,342.0563752,Low_spent_Small_value_payments,69.3092348,0,1.3506,0.2598,0.1054,-0.0677,1.5717 +0x1e865,CUS_0x7594,August,18,755-53-3944,Engineer,21642.16,,8,7,16,3,"Student Loan, Payday Loan, and Payday Loan",27.63826262,20,11.29,7,Standard,1058.31,32.96516755,13 Years and 11 Months,NM,33.05879163,145.6838183,Low_spent_Small_value_payments,316.1087234,0,1.5268,-1.1472,2.3874,-0.761,-1.4688 +0x1e871,CUS_0x1075,August,39,225-94-8383,Manager,24709.33,,5,5,6,3,"Student Loan, Debt Consolidation Loan, and Personal Loan",20.2866912,13.19109923,7,1497,_,462.8739999,32.76125199,17 Years and 10 Months,No,196.0271616,120.5587399,Low_spent_Small_value_payments,334.6672974,0,-0.2541,0.8683,-0.8436,0.2354,1.771 +0x1e87d,CUS_0x9686,August,35,689-08-8033,_______,38742.26,3029.521667,4,4,10,2,"Personal Loan, and Payday Loan",,1,2.01,2,Good,1313,24.93305301,31 Years and 11 Months,No,40.71626839,58.52176922,High_spent_Large_value_payments,443.7141291,0,0.4919,-1.0292,-1.5274,-1.6068,-0.5291 +0x1e889,CUS_0x9066,August,51,958-05-0966,Musician,21761.49,,5,4,4,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",11.55453952,11,8.77,2,_,830.29,33.0023428,15 Years and 8 Months,No,38.78561893,111.404851,!@9#%8,301.3552801,0,0.9801,1.1224,-0.1983,1.7404,-0.5126 +0x1e895,CUS_0x5d29,August,33,620-31-2223,Writer,75742.32,6361.86,9,6,30,5,"Debt Consolidation Loan, Mortgage Loan, Not Specified, Payday Loan, and Debt Consolidation Loan",,28.33669876,-3.18,12,Bad,1669.330637,36.6000851,11 Years and 6 Months,Yes,279.3879078,65.87682341,High_spent_Large_value_payments,530.9212688,0,0.1561,-0.1462,0.7602,0.0535,-0.9939 +0x1e8a1,CUS_0xaa0b,August,26,160-86-7194,Accountant,72159.9,,4,6,11,100,Auto Loan,,14,9.88,9,_,1443.02,38.89228842,16 Years and 8 Months,NM,33.977334,,High_spent_Medium_value_payments,582.2572808,0,-0.1958,-0.6361,-0.9103,-1.185,1.9534 +0x1e8ad,CUS_0x6b76,August,35,741-40-2032,Musician,8956.355,812.3629167,9,6,31.06745738,9,"Auto Loan, Mortgage Loan, Payday Loan, Student Loan, Credit-Builder Loan, Auto Loan, Personal Loan, Payday Loan, and Home Equity Loan",30.95832649,18,18.14,12,Bad,2874.020127,30.21491191,13 Years and 9 Months,Yes,50.79462591,,Low_spent_Small_value_payments,184.1625503,0,0.5688,-1.7072,0.6303,0.2223,-1.7084 +0x1e8b9,CUS_0x80d,August,36,317-79-2635,Entrepreneur,23957.75,,7,3,17,100,"Auto Loan, Not Specified, Auto Loan, and Not Specified",6.413288562,8,7.97,6,Standard,890.77,37.58019495,22 Years and 9 Months,Yes,56625,96.75558234,High_spent_Small_value_payments,274.3862625,0,-1.0682,0.9331,0.6467,0.3778,-0.201 +0x1e8c5,CUS_0xb6b7,August,23,554-66-6492,Manager,32543.38,2417.948333,8,5,15,2,"Debt Consolidation Loan, and Debt Consolidation Loan",19.18549212,15,7.68,3,Standard,639.97,40.70682315,,Yes,53.37586915,67.34168458,High_spent_Medium_value_payments,371.0772796,0,0.0625,0.76,-0.1651,-1.7116,-0.0592 +0x1e8d1,CUS_0x847e,August,50,506-37-2691,Teacher,12997.515,1211.12625,3,5,15,3,"Home Equity Loan, Not Specified, and Student Loan",,23.66881368,12.57,4,Standard,318.5480049,33.55580104,27 Years and 6 Months,No,18.92140053,130.1769241,Low_spent_Small_value_payments,262.0143003,0,1.1235,1.217,-0.8952,-2.0555,-0.5462 +0x1e8dd,CUS_0x2311,August,24,983-35-3664,Lawyer,23035.15,,6,7,17,5,"Not Specified, Payday Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",,16,19.39,4,Standard,954.44,35.26247576,8 Years and 5 Months,Yes,91.77461107,,Low_spent_Large_value_payments,222.7959146,0,1.2444,1.2988,0.1098,-0.4236,1.8262 +0x1e8e9,CUS_0x6eca,August,44,229-06-8015,Engineer,55604.31,4372.6925,8,5,21,6,"Personal Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Auto Loan",40.13543647,21.44474095,13.17,11,Bad,2029.912242,33.95338487,7 Years and 0 Months,Yes,44160,10000,High_spent_Medium_value_payments,311.1156088,0,0.0536,-0.0102,-0.0347,0.0959,-0.6123 +0x1e8f5,CUS_0x2c51,August,19,880-55-1300,Entrepreneur,81094.96,,9,4,18,0,,,13,4.03,793,Standard,2.13,33.47100818,27 Years and 6 Months,No,0,168.4232291,High_spent_Medium_value_payments,741.0681043,0,-0.2956,-0.2241,1.3214,-0.8039,-1.9502 +0x1e901,CUS_0x1f61,August,27,183-78-9102,Lawyer,69014.48,5467.206667,10,6,25,7,"Mortgage Loan, Student Loan, Student Loan, Home Equity Loan, Personal Loan, Auto Loan, and Mortgage Loan",,1875.157167,14.28,12,Bad,2519.740322,37.57878531,15 Years and 8 Months,Yes,310.1403458,173.8578889,Low_spent_Large_value_payments,332.722432,0,2.4843,1.4576,0.5037,2.02,-0.2206 +0x1e90d,CUS_0x4e71,August,19,147-57-4171,Architect,120539.8,8702.902235,6,4,10,0,,,10,2.95,1,Standard,277.2959793,26.46371919,21 Years and 5 Months,No,1349.081098,1049.702229,Low_spent_Small_value_payments,342.616724,0,0.7015,0.3097,-0.0388,1.8733,-0.3907 +0x1e919,CUS_0x4c4f,August,20,041-06-0696,Teacher,39269.97,3102.778454,1,7,1,4,"Not Specified, Home Equity Loan, Auto Loan, and Credit-Builder Loan",1.285700998,5,6.32,4,Good,785.78,29.09111158,24 Years and 8 Months,NM,449.2693513,111.8765099,Low_spent_Large_value_payments,397.2229351,0,0.697,-0.8154,-0.7608,1.4084,0.0916 +0x1e925,CUS_0x620b,August,35,990-04-4138,Lawyer,9732.57,810.0475,9,5,19,5,"Payday Loan, Payday Loan, Student Loan, Not Specified, and Home Equity Loan",15.54066508,14,16.4,11,Bad,3350.278146,29.46304998,,Yes,33.53646126,41.67528646,Low_spent_Small_value_payments,302.0498293,0,-1.0453,1.3925,-0.6635,1.0338,0.6378 +0x1e931,CUS_0xc1d9,August,42,940-72-2892,Media_Manager,78860.2,6332.683333,8,4,6,0,,20.24384703,,12.19,3,Standard,762.5293349,38.05107251,19 Years and 2 Months,NM,0,274.3637426,High_spent_Medium_value_payments,635.7146589,0,-0.4004,-0.4664,-0.0191,1.5967,0.9479 +0x1e93d,CUS_0xdd8,August,36,798-80-7921,Teacher,84292.18,,3,1,7.288361749,2,"Credit-Builder Loan, and Not Specified",3.442837548,6,0.5,4,Good,397.9647829,31.60850999,33 Years and 8 Months,No,77.70732093,974.6831721,Low_spent_Medium_value_payments,412.3817342,0,0.3899,0.7042,0.6068,1.5972,-2.0961 +0x1e949,CUS_0xba68,August,32,739-32-5333,Developer,65278.92,5402.91,10,7,19,3,"Student Loan, Debt Consolidation Loan, and Mortgage Loan",,28.12727948,2.18,16,Bad,1527.956194,25.36192388,18 Years and 3 Months,NM,145.6007,180.7300873,High_spent_Medium_value_payments,463.9602127,0,0.413,-0.6092,0.6802,-1.3996,0.688 +0x1e955,CUS_0xa9f,August,20,601-74-3826,Teacher,72690.14,5833.479734,4,5,18,4,"Home Equity Loan, Auto Loan, Home Equity Loan, and Home Equity Loan",20.04508063,13,14.91,4,_,34.15337709,30.14321692,,NM,531.2616088,321.4002027,Low_spent_Medium_value_payments,374.7146614,0,0.3564,0.3415,0.366,0.8914,-0.4558 +0x1e961,CUS_0x4815,August,32,981-51-2801,_______,73849.54,6250.128333,2,1,7,2,"Not Specified, and Home Equity Loan",17.14996676,14,5.02,4,Good,1484.51,30.64818381,27 Years and 11 Months,No,120.844173,434.0784501,Low_spent_Medium_value_payments,350.0902103,0,0.2834,0.2898,0.7316,0.5337,-0.0897 +0x1e96d,CUS_0xc301,August,37,169-93-9953,Musician,21212.42,1910.701667,1,4,12,4,"Auto Loan, Personal Loan, Student Loan, and Personal Loan",3.794861944,5,3.08,4,_,413.8196638,37.66429023,23 Years and 2 Months,No,50.30503588,78.74552202,High_spent_Medium_value_payments,322.3370184,0,-0.2922,-2.5652,1.0267,-0.6941,0.9803 +0x1e979,CUS_0x5e16,August,30,913-71-9006,_______,34531.8,,1,5,4,1,Auto Loan,0,1,7.72,4,Good,411.02,29.91203492,33 Years and 2 Months,No,26.87331755,144.9576212,Low_spent_Medium_value_payments,415.9340613,0,-0.6048,-0.3095,0.6639,1.4507,-0.0742 +0x1e985,CUS_0x54a4,August,51,367-69-8099,Mechanic,29750.77,,3,7,15,2,"Payday Loan, and Home Equity Loan",22.39023616,16,5.41,3,_,706.22,36.94979161,23 Years and 11 Months,Yes,43.18330713,39.6415836,High_spent_Medium_value_payments,418.9981926,0,0.8114,0.7742,0.8619,-1.9937,-1.072 +0x1e991,CUS_0x87c1,August,34,099-04-7928,Manager,89992.98,7659.415,8,4,15,0,,,10,7.16,6,Standard,739.86,36.51282622,30 Years and 5 Months,Yes,0,70.72876723,!@9#%8,935.2127328,0,-2.4181,-0.0246,-0.5079,-0.2031,-1.6301 +0x1e99d,CUS_0x9891,August,80,429-24-8661,Developer,62896.78,5323.398333,3,5,5,100,Debt Consolidation Loan,,6,4.41,3,_,1132.768002,33.19864553,29 Years and 9 Months,No,48.44718865,372.9328967,High_spent_Small_value_payments,413.4561157,0,-0.4375,-1.3701,1.3293,0.7131,0.0318 +0x1e9a9,CUS_0x1f04,August,38,387-02-5364,Manager,60770.22,4924.185,8,4,15,4,"Mortgage Loan, Personal Loan, Not Specified, and Not Specified",18.98636498,15,1.36,6,_,176.02,35.03958244,,No,190.2745738,209.9463908,Low_spent_Large_value_payments,362.1975354,0,0.5891,-0.2551,0.9477,1.3365,1.8536 +0x1e9b5,CUS_0x6207,August,50,572-95-8549,Manager,41370.82,3656.568333,4,7,7,2,"Auto Loan, and Student Loan",,9,0.62,3,Good,884.2114568,39.66027651,22 Years and 11 Months,No,37.50718461,106.4139179,Low_spent_Large_value_payments,502.2943268,0,0.7132,0.1841,0.0991,0.1552,0.092 +0x1e9c1,CUS_0x199a,August,31,047-50-4290,Musician,73446.68,6101.556667,3,7,9.288361749,0,Payday Loan,,0,10.01,3,Good,633.806961,28.35099718,30 Years and 5 Months,No,32.02358981,,High_spent_Medium_value_payments,573.4696779,0,0.1147,-0.6808,-0.7558,0.4445,-1.2063 +0x1e9cd,CUS_0x95aa,August,31,999-07-3430,Journalist,19215.26,1353.271667,4,6,7,2,"Home Equity Loan, and Credit-Builder Loan",15.73569388,16.09484575,12.15,8,_,2095.2126,27.13994979,13 Years and 11 Months,NM,20.05386145,21.13364983,High_spent_Large_value_payments,334.1396554,0,-1.3076,0.393,-0.1146,-0.3641,1.183 +0x1e9d9,CUS_0x950,August,45,296-43-7203,Engineer,102261.27,,3,5,12.28836175,0,Debt Consolidation Loan,6.939417661,8,6.77,2,_,1164.89,28.98955962,20 Years and 10 Months,No,79.77979644,,High_spent_Small_value_payments,643.8137504,0,-0.6228,-0.9788,0.6046,1.954,0.6874 +0x1e9e5,CUS_0x1948,August,80,914-66-3208,Accountant,82489.92,,9,9,25,3,"Student Loan, Student Loan, and Student Loan",,15,11.33,11,Standard,1816.7,38.71449356,10 Years and 9 Months,Yes,199.5546872,176.1109687,!@9#%8,579.8503441,0,-1.1278,2.7701,-1.7902,-0.4273,-0.7428 +0x1e9f1,CUS_0x25a5,August,39,139-55-0544,_______,28941.24,2474.77,3,5,11,4,"Credit-Builder Loan, Not Specified, Student Loan, and Mortgage Loan",,9,8.59,6,Good,496.5984743,25.76622706,19 Years and 11 Months,No,74.82176803,86.3638022,High_spent_Medium_value_payments,344.7362525,0,-1.3426,1.388,-1.0247,1.2586,-2.0038 +0x1e9fd,CUS_0x41e3,August,18,705-56-7312,Doctor,62203.08,5375.59,9,5,21,2,"Home Equity Loan, and Student Loan",26.19024798,16,9.57,10,Standard,2375.42,28.12452412,14 Years and 8 Months,Yes,61.16764899,301.4447116,Low_spent_Large_value_payments,444.9466394,0,-0.1767,0.5785,-0.0029,0.4994,0.3454 +0x1ea09,CUS_0x8099,August,51,767-19-9517,Writer,112400.24,,7,7,19,4,"Personal Loan, Mortgage Loan, Personal Loan, and Personal Loan",27.39592577,19,18.63,4,Standard,57.91,32.60940275,32 Years and 8 Months,Yes,203.5175635,361.4644669,!@9#%8,670.7866362,0,0.7847,1.1005,0.1462,-0.2207,0.9396 +0x1ea15,CUS_0x7580,August,25,674-77-2504,Manager,18122.8,1608.233333,4,6,19,6,"Mortgage Loan, Mortgage Loan, Personal Loan, Student Loan, Auto Loan, and Payday Loan",15.80818754,11.7642299,7.77,13,Standard,2493.601397,38.37406585,,Yes,68.73199221,54.70990175,High_spent_Small_value_payments,297.3814394,0,0.4801,0.3367,-0.63,-1.6314,-0.0672 +0x1ea21,CUS_0x5035,August,53,560-30-9828,Entrepreneur,34053.4,,1,2,3749,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",0.284373788,5,4.95,7,_,1160.535526,23.07449445,26 Years and 2 Months,No,55.24566736,92.05648388,High_spent_Small_value_payments,393.2933174,0,-0.2157,0.7281,-1.053,-0.8235,2.3052 +0x1ea2d,CUS_0x999f,August,27,516-43-0947,Teacher,86765.12,7492.426667,3,3,10,2,"Credit-Builder Loan, and Student Loan",,4158.742267,6.84,1,Good,1065.333998,28.22733428,20 Years and 5 Months,No,110.9561396,297.4403355,!@9#%8,590.8461915,0,-0.6108,-1.157,1.2756,-0.4619,0.4483 +0x1ea39,CUS_0x9bf9,August,37,258-44-7121,Architect,78953.92,,10,10,22,5,"Mortgage Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",26.23819632,15,21.14,13,Bad,3832.119245,31.45445042,12 Years and 8 Months,Yes,26761,11606.65772,High_spent_Small_value_payments,503.0120728,0,-1.1495,0.6146,-0.6962,0.7873,1.4579 +0x1ea45,CUS_0x4931,August,46,064-39-8963,Engineer,71734.24,5906.853333,8,10,34,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Not Specified",,28.036662,2.54,9,Bad,2613.749444,37.50837354,5 Years and 10 Months,Yes,219.4354269,125.103439,High_spent_Medium_value_payments,496.1464675,0,0.8671,0.8829,-1.7867,0.194,0.4753 +0x1ea51,CUS_0xc205,August,42,198-86-8137,Mechanic,106550.19,8804.1825,4,7,16,3,"Payday Loan, Auto Loan, and Auto Loan",18.45779373,14,16.74,1,Standard,368.481148,24.90257027,25 Years and 4 Months,NM,185.4912111,726.9303685,Low_spent_Large_value_payments,335.019188,0,0.5195,0.0558,0.7588,-1.3946,0.7864 +0x1ea5d,CUS_0x790d,August,44,431-56-0286,Journalist,92807.49,,1,6,9,2,"Auto Loan, and Payday Loan",12.73843766,10,4.78,4,Good,1226.787393,31.09802827,17 Years and 9 Months,NM,141.3666065,845.6131747,Low_spent_Medium_value_payments,189.8562199,0,-0.6244,1.0305,0.3342,-1.1315,0.5002 +0x1ea69,CUS_0x71bf,August,80,583-65-2893,Scientist,8169.385,,8,5,18.06745738,5,"Mortgage Loan, Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",35.24807195,18,6.11,9,_,1583.860954,40.36477206,7 Years and 2 Months,Yes,20.3643344,40.63348663,High_spent_Small_value_payments,261.0600994,0,-0.1165,1.0069,1.5577,0.8347,1.1438 +0x1ea75,CUS_0x866d,August,42,320-20-9388,Manager,144962.44,11940.20333,7,6,8,3,"Not Specified, Payday Loan, and Student Loan",16.49745114,13,8.22,5,_,1264.61,35.72028411,31 Years and 8 Months,Yes,229.0478454,,Low_spent_Large_value_payments,268.794708,0,0.1202,-0.7676,1.4935,-0.6411,0.9015 +0x1ea81,CUS_0xb6d0,August,28,883-18-0954,Mechanic,107633.88,9121.49,7,6,17.28836175,0,Debt Consolidation Loan,21.79003058,19,18.11,1370,_,15.58,34.85261744,,Yes,46.46856767,,Low_spent_Medium_value_payments,228.4656395,0,-0.0252,-1.3065,0.1088,1.6811,0.9691 +0x1ea8d,CUS_0x27ad,August,37,577-43-0809,Engineer,60255.9,5024.325,5,3,16,1,Debt Consolidation Loan,11.82507361,11,4.38,7,Standard,1364.56,38.31360426,20 Years and 6 Months,Yes,27.48482459,158.6354417,High_spent_Medium_value_payments,566.3122337,0,1.2883,0.4939,-0.5627,-0.4575,0.1914 +0x1ea99,CUS_0x7168,August,41,#F%$D@*&8,Writer,32639.9,2457.991667,7,5,15,2,"Not Specified, and Mortgage Loan",,19,11.23,6,Standard,1406.91,36.0640488,15 Years and 2 Months,NM,41.78045006,227.0110038,Low_spent_Small_value_payments,267.0077128,0,0.4702,-0.2609,0.7001,-0.0425,0.023 +0x1eaa5,CUS_0xae4f,August,31,373-92-0837,_______,7369.03,,8,5,24,2,"Payday Loan, and Personal Loan",,,2.72,10,Bad,1858.255706,39.97951666,17 Years and 9 Months,Yes,10.73241122,16.20933242,Low_spent_Small_value_payments,305.1668397,0,0.2861,-0.4791,-0.5568,-1.1013,1.4341 +0x1eab1,CUS_0x900,August,26,173-70-3432,Journalist,16159.51,1363.625833,4,3,6,2,"Credit-Builder Loan, and Auto Loan",25.6472159,18,6.27,4,Standard,233.56,26.66571331,28 Years and 6 Months,Yes,19.37164515,169.9384172,Low_spent_Small_value_payments,237.0525209,0,-0.1902,-1.066,0.8231,0.5229,0.3824 +0x1eabd,CUS_0x7753,August,52,517-82-1083,Writer,93589.48,7895.123333,6,7,16,3,"Credit-Builder Loan, Not Specified, and Not Specified",25.10491568,17,9.92,6,Standard,425.51,35.10214617,31 Years and 0 Months,No,22102,941.0905931,!@9#%8,,0,3.0007,0.8148,-0.4246,1.3064,0.0328 +0x1eac9,CUS_0x9df0,August,42,846-31-4164,Entrepreneur,36115.92,,0,7,9,3,"Student Loan, Not Specified, and Personal Loan",0.664007413,3,4.02,3,Good,822.7562288,36.159135,23 Years and 4 Months,No,78.05225497,204.101069,High_spent_Small_value_payments,277.2719757,0,-0.4545,-0.7608,-0.4146,-1.1024,-0.343 +0x1ead5,CUS_0x7d5e,August,20,063-39-1383,Journalist,26862.64,,6,6,9,6,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",10.51832345,8,8.52,8,Standard,733.5094522,28.48978097,18 Years and 5 Months,Yes,94.46190789,,Low_spent_Large_value_payments,193.7914965,0,0.3876,0.5298,1.3796,0.1208,0.8034 +0x1eae1,CUS_0x1d58,August,20,832-91-7166,Mechanic,10037.5,,10,9,24,9,"Student Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Not Specified, Student Loan, Personal Loan, and Auto Loan",43.05850423,25,15.43,8,Bad,3982.899465,31.37738998,10 Years and 5 Months,NM,66.99295823,,!@9#%8,218.3969315,0,-0.8687,0.2758,0.2127,-0.3809,-0.6527 +0x1eaed,CUS_0x7d4b,August,43,975-45-7784,Doctor,7006.035,,9,5,25.06745738,9,"Personal Loan, Personal Loan, Student Loan, Not Specified, Student Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",34.65971347,24.1403445,19.8,7,Bad,3217.038795,40.87528553,7 Years and 10 Months,Yes,38.17036613,,Low_spent_Small_value_payments,228.7919472,0,0.4626,0.8178,-0.8662,-0.3018,2.2228 +0x1eaf9,CUS_0x4032,August,33,836-72-3680,Doctor,15126.8,,6,10,21.06745738,2,"Payday Loan, and Not Specified",40.46075692,22.89559446,-1.57,7,Bad,1770.758433,27.25907726,18 Years and 6 Months,NM,17.72419068,,Low_spent_Medium_value_payments,256.8552932,0,1.6801,-1.6187,-0.4592,-0.0579,0.8728 +0x1eb05,CUS_0x131f,August,46,006-11-7238,Developer,68105.6,5636.466667,8,8,19,5,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,30.9823803,26.05,13,Bad,3098.292558,24.14590247,,Yes,279.0820691,62.66470697,High_spent_Medium_value_payments,471.8998906,0,-0.8502,0.7563,-0.1351,0.2732,0.9477 +0x1eb11,CUS_0x2671,August,23,354-60-4314,Doctor,90794.28,,5,4,5,3,"Student Loan, Mortgage Loan, and Not Specified",,17,10.34,9,_,622.21,28.28602008,17 Years and 11 Months,Yes,166.918982,53.61777036,High_spent_Large_value_payments,793.1822476,0,0.4899,0.2543,-1.3485,-0.5123,-1.882 +0x1eb1d,CUS_0x5d09,August,35,553-83-1565,_______,33946.77,,4,3,11,1,Auto Loan,16.98714967,12,13.9,3,Standard,869.96,32.54958163,16 Years and 9 Months,No,20.88906886,62.69832059,High_spent_Large_value_payments,428.8023605,0,0.2734,0.5527,-1.9264,-0.0378,0.1598 +0x1eb29,CUS_0x4cd8,August,24,934-58-9958,Manager,16230.82,,6,4,14,2,"Personal Loan, and Mortgage Loan",21.94108301,18,8.81,6,Standard,1806.26,33.31806814,19 Years and 10 Months,Yes,22.22010376,99.3036349,Low_spent_Medium_value_payments,300.8330947,0,0.885,-0.1703,-0.6744,0.7472,0.9208 +0x1eb35,CUS_0xbd72,August,42,#F%$D@*&8,Journalist,14850.16,,7,3,5,4,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",26.10244586,19,9.51,11,_,485.4452854,26.96180295,6 Years and 6 Months,NM,34.17909352,,Low_spent_Medium_value_payments,265.3960575,0,-1.4074,-0.363,-0.837,-0.6426,-0.1422 +0x1eb41,CUS_0x5d1,August,21,403-10-3773,Writer,81998.84,6900.236667,7,6,28,6,"Payday Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Auto Loan",27.15348883,17,26.08,17,_,3520.62,30.9872572,1 Years and 11 Months,Yes,260.5708369,119.7517324,High_spent_Large_value_payments,549.7010973,0,-0.2831,0.0815,-0.0437,1.5803,-0.3637 +0x1eb4d,CUS_0xa801,August,46,643-91-3716,Manager,83595.72,7214.31,8,5,7,0,,19.63303806,16,-4.32,3,_,282.4278705,33.0890588,19 Years and 5 Months,No,0,336.4436237,High_spent_Small_value_payments,686.1603446,0,-0.2035,0.5549,-1.0789,-0.4444,1.4952 +0x1eb59,CUS_0x39bf,August,34,945-83-2116,Scientist,17823.25,1638.270833,8,10,31.95700519,6,"Home Equity Loan, Home Equity Loan, Personal Loan, Not Specified, Home Equity Loan, and Home Equity Loan",25.75956349,17.50935177,26.45,11,Bad,3728.754263,39.08069215,2 Years and 9 Months,Yes,1403.877715,51.66608957,Low_spent_Large_value_payments,257.2329098,0,0.4468,-0.4623,-0.4754,0.3305,0.0555 +0x1eb65,CUS_0x25cc,August,51,421-97-8890,Musician,36016.78,,1,4,2.288361749,0,Student Loan,0.822379031,3,10.85,0,Good,183.5375912,36.6017463,29 Years and 8 Months,No,18.47810543,11994.78584,Low_spent_Large_value_payments,356.1894359,0,-1.5438,-0.8573,-0.1081,0.501,0.3954 +0x1eb71,CUS_0x1057,August,46,741-07-3912,Writer,86617.16,7250.096667,8,4,6,3,"Auto Loan, Student Loan, and Payday Loan",27.34888071,21,7.26,4,Standard,640.626096,35.55554011,24 Years and 11 Months,No,141.3820546,1147.278604,!@9#%8,,0,1.344,-1.5814,-1.0534,-1.1643,-1.1916 +0x1eb7d,CUS_0xbe00,August,30,806-23-1708,Engineer,35320.99,2867.415833,0,2,2,0,,6.916997172,8,12.88,3,Good,812.1726147,34.86289292,26 Years and 6 Months,No,0,58.74384614,High_spent_Medium_value_payments,485.4583717,0,0.8693,-0.2584,0.8837,-0.1567,0.1721 +0x1eb89,CUS_0x542c,August,40,717-41-5370,Manager,106789.36,8673.113333,3,3,20,100,"Home Equity Loan, Payday Loan, and Debt Consolidation Loan",27.23156606,19,11.32,2,Standard,155.69,29.79105484,,No,137.8283483,134.3106352,High_spent_Large_value_payments,835.1723499,0,-1.4567,-0.242,0.0272,-0.6662,2.6923 +0x1eb95,CUS_0xa0ff,August,21,783-46-9722,Engineer,60014.04,5107.17,9,10,18,6,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, Payday Loan, and Mortgage Loan",,23.82655819,,9,Bad,5435.217117,27.79946337,13 Years and 2 Months,Yes,222.0394152,,High_spent_Medium_value_payments,484.1114258,0,-0.9522,-0.7544,-0.6966,-0.2335,0.0687 +0x1eba1,CUS_0x92a3,August,42,754-00-4261,Engineer,33816.41,2772.034167,4,4,7.288361749,0,,0.838677275,4,10.36,7,Good,285.1370637,31.82916971,18 Years and 4 Months,No,0,473.087576,High_spent_Medium_value_payments,480.6699154,0,-0.7041,-1.7771,-0.8612,0.2242,-1.7552 +0x1ebad,CUS_0x6578,August,22,944-84-0145,Mechanic,48776.85,4077.7375,10,5,31.06745738,4,"Mortgage Loan, Not Specified, Personal Loan, and Auto Loan",33.06451604,,0.56,13,Bad,3060.351657,40.157642,7 Years and 0 Months,Yes,135.329769,,Low_spent_Small_value_payments,0,0,-1.0571,0.2878,-0.3899,0.4273,-0.5902 +0x1ebb9,CUS_0x2ba9,August,31,147-93-7804,Journalist,35746.07,,2,5,10,4,"Student Loan, Payday Loan, Payday Loan, and Student Loan",20.00636482,12,3.04,8,Good,553.5,32.92724054,17 Years and 11 Months,No,59.88078007,199.4425157,High_spent_Small_value_payments,298.6606209,0,0.2835,0.3873,-1.4084,1.4193,-1.4024 +0x1ebc5,CUS_0x9adc,August,40,965-03-7962,Teacher,56404.84,4134.714745,7,9,27,5,"Mortgage Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Credit-Builder Loan",25.76887313,19,17.89,12,Bad,2642.457992,39.71950496,5 Years and 11 Months,Yes,656.4909455,,Low_spent_Large_value_payments,416.4084807,0,0.0335,1.4152,-1.5688,0.6495,1.0767 +0x1ebd1,CUS_0xc331,August,45,456-51-6856,Doctor,16372.05,,10,7,23.06745738,5,"Payday Loan, Not Specified, Student Loan, Mortgage Loan, and Payday Loan",37.38142728,19.79755168,28.5,10,Bad,4306.347986,25.80994698,7 Years and 4 Months,Yes,65.64577381,,Low_spent_Medium_value_payments,183.8253721,0,0.2376,-0.1282,0.8963,-0.3594,-0.2814 +0x1ebdd,CUS_0x8716,August,22,185-99-8068,Scientist,14351.21,,8,7,18,6,"Mortgage Loan, Personal Loan, Not Specified, Student Loan, Personal Loan, and Student Loan",21.89385324,16.79943423,21.91,9,Bad,5440.912028,32.60477041,8 Years and 8 Months,Yes,61.09871814,116.8376579,Low_spent_Small_value_payments,239.5570406,0,0.05,-0.3599,1.3136,0.4578,0.4047 +0x1ebe9,CUS_0x6be3,August,47,037-33-2929,Doctor,147848.64,12274.72,0,4,2.288361749,2,"Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",,2,2.16,1,_,731.37,35.97659359,29 Years and 11 Months,No,363.866397,1325.110325,Low_spent_Medium_value_payments,238.4327385,0,1.7039,0.7178,-0.4892,-1.1174,0.6125 +0x1ebf5,CUS_0x8bf3,August,40,#F%$D@*&8,Engineer,18836.23,1280.685833,6,8,17.95700519,6,"Personal Loan, Not Specified, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",29.87015575,19,14.26,14,Bad,1533.970954,26.74269647,8 Years and 3 Months,Yes,1373.041281,106.8298682,Low_spent_Small_value_payments,217.1470649,0,0.1496,0.6774,-0.8415,0.3527,-0.4235 +0x1ec01,CUS_0x9368,August,40,740-20-9338,_______,9024.455,713.0379167,8,7,15,2,"Payday Loan, and Credit-Builder Loan",,14,,4,_,1491.08,34.27517399,6 Years and 8 Months,Yes,14.35751826,87.86573107,Low_spent_Small_value_payments,259.0805423,0,0.7332,2.0708,0.7719,1.2822,0.7562 +0x1ec0d,CUS_0x9737,August,54,103-47-1109,Scientist,22453.67,1637.139167,8,6,19,2,"Not Specified, and Auto Loan",14.54627505,9,6.39,0,_,819.81,25.35927375,24 Years and 2 Months,No,35.20802722,57.65474451,High_spent_Medium_value_payments,320.8511449,0,0.3234,0.1875,0.2179,0.1825,-0.26 +0x1ec19,CUS_0x149e,August,35,760-87-5470,Media_Manager,78156.39,6526.0325,5,259,7.288361749,4,"Home Equity Loan, Student Loan, Credit-Builder Loan, and Personal Loan",21.72540539,18,6.34,4,_,884.79,28.8867901,24 Years and 6 Months,No,154.7981384,,Low_spent_Medium_value_payments,126.6947166,0,-0.8051,-1.6557,-0.176,1.5779,-0.2052 +0x1ec25,CUS_0x8a8b,August,24,475-74-0431,Media_Manager,40246.16,3340.846667,4,10,18.88954781,7,"Payday Loan, Student Loan, Auto Loan, Payday Loan, Auto Loan, Student Loan, and Payday Loan",13.13048854,8,14.17,16,Standard,1896.09,32.61637109,,NM,1486.00416,37.75872704,!@9#%8,355.9916979,0,-0.2014,0.2732,1.0228,1.4744,-2.0811 +0x1ec31,CUS_0x2a5c,August,22,589-67-9900,Doctor,160838.32,13290.19333,5,4,11.28836175,0,Debt Consolidation Loan,3.870456915,6,8.37,7,Good,140.6321943,34.93885062,30 Years and 10 Months,No,98.02164488,2134.47905,Low_spent_Small_value_payments,,0,1.0516,-1.4364,-0.2254,0.0688,1.9736 +0x1ec3d,CUS_0x9ff3,August,44,666-38-6886,Teacher,40403.35,,1,5,3,2,"Auto Loan, and Not Specified",16.52598284,13.75765827,0.94,3,_,340.136167,25.87952731,16 Years and 2 Months,No,55.22566879,,Low_spent_Small_value_payments,126.4017158,0,-0.4531,-1.252,-0.2522,-0.2666,-0.2802 +0x1ec49,CUS_0x2bcb,August,34,626-62-1606,Journalist,38542.22,3351.851667,3,4,3043,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Auto Loan",18.77149295,14,7.94,7,Standard,674.21,27.2377244,31 Years and 10 Months,Yes,85.62579658,64.33253688,High_spent_Large_value_payments,425.2268332,0,-1.2535,1.7788,-0.4736,-0.0683,-0.1227 +0x1ec55,CUS_0x79ee,August,50,313-89-3788,Manager,57462.92,4531.576667,3,1,9,1,Home Equity Loan,10.29695937,12,2.08,0,Good,854.2528097,40.41708274,18 Years and 10 Months,No,40.83772104,118.5133107,High_spent_Medium_value_payments,558.8112055,0,0.7171,-2.5231,-0.6833,-1.2899,0.8663 +0x1ec61,CUS_0xef7,August,36,983-42-6958,Mechanic,22539.91,2100.325833,3,5,17,1,Student Loan,20.31921462,15,6.46,6,Standard,1041.79,25.79999304,20 Years and 0 Months,No,17.42634983,37.65364664,High_spent_Medium_value_payments,404.9525869,0,-0.6088,-0.3134,0.0491,-0.3253,0.0886 +0x1ec6d,CUS_0xc599,August,20,407-33-2562,Media_Manager,14639.215,1209.934583,4,7,18,4,"Mortgage Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",21.04263835,16,9.32,7,_,879.98,33.67101128,13 Years and 8 Months,Yes,40.1886273,,Low_spent_Medium_value_payments,242.4342121,0,0.0364,-1.0403,-0.8834,1.5884,-0.9484 +0x1ec79,CUS_0x40dd,August,20,457-78-8903,Entrepreneur,42236.79,,10,5,24,7,"Not Specified, Personal Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",39.96938543,28.19894116,4.72,7,Bad,2357.330609,27.92668543,8 Years and 9 Months,Yes,211.6264561,,High_spent_Medium_value_payments,337.13501,0,-0.3491,-0.0147,0.5912,0.1831,-0.2895 +0x1ec85,CUS_0xc21e,August,50,573-81-5193,Entrepreneur,29470.76,,0,4,9,4,"Payday Loan, Personal Loan, Auto Loan, and Not Specified",8.885277682,8,5.79,,Good,557.5,36.81668745,22 Years and 8 Months,No,79.50204791,300.492978,Low_spent_Small_value_payments,135.1946408,0,0.388,0.801,-0.6235,-0.4973,-1.2236 +0x1ec91,CUS_0xa1d9,August,27,332-01-5454,Manager,15441.2,,9,9,29.06745738,2,"Auto Loan, and Home Equity Loan",,21.91140592,1.11,6,_,1947.909194,38.45110056,19 Years and 0 Months,NM,149.348394,112.2125432,Low_spent_Small_value_payments,254.626353,0,0.9907,0.9959,-1.009,-0.5704,2.5333 +0x1ec9d,CUS_0xac1a,August,39,922-25-7734,Mechanic,10389.19,833.7658333,3,4,18,5,"Home Equity Loan, Home Equity Loan, Student Loan, Payday Loan, and Auto Loan",19.65379205,13,17.71,9,Standard,356.69,23.50882198,12 Years and 2 Months,NM,37.47834423,22.31220919,Low_spent_Medium_value_payments,303.5860299,0,0.3591,0.2127,1.4962,-0.6553,1.2695 +0x1eca9,CUS_0x7baa,August,56,439-74-3252,Mechanic,21028.91,1823.409167,5,6,8,3,"Mortgage Loan, Auto Loan, and Debt Consolidation Loan",13.20656803,11,14.3,3,Standard,658.48,30.8777013,24 Years and 8 Months,No,27.30214569,183.2400972,Low_spent_Small_value_payments,261.7986738,0,-1.1357,0.2947,-0.3365,0.6238,-1.045 +0x1ecb5,CUS_0x38e1,August,29,000-95-4380,Manager,19526.92,,2,6,11.28836175,2,"Home Equity Loan, and Personal Loan",,2,10.97,7,Good,41.85,33.76468508,27 Years and 9 Months,No,23.58359186,,Low_spent_Small_value_payments,250.4398943,0,-0.4274,0.2772,-1.4022,-2.8902,-0.195 +0x1ecc1,CUS_0x5217,August,80,100-50-1817,Lawyer,14337.64,1405.803333,0,4,1,2,"Personal Loan, and Not Specified",,,7.64,4,Good,187.9144756,37.72115136,17 Years and 2 Months,No,19.50373189,114.6354798,Low_spent_Large_value_payments,288.3625348,0,0.7966,0.6726,-1.0748,-1.1629,0.6587 +0x1eccd,CUS_0x447f,August,21,425-00-6072,Journalist,91545.15,7344.7625,5,4,5,0,,31.17194965,21.73791424,,1,Good,1526.87136,39.41591771,28 Years and 3 Months,NM,0,,Low_spent_Medium_value_payments,805.996527,0,1.7076,2.8974,2.6883,0.1255,-1.2972 +0x1ecd9,CUS_0x386b,August,36,008-61-0141,Developer,14914.01,,10,9,18.95700519,8,"Personal Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Personal Loan, Payday Loan, and Personal Loan",21.40679407,,7.75,13,_,1580.630954,23.13989569,12 Years and 4 Months,NM,1403.478635,,Low_spent_Small_value_payments,137.2428753,0,0.5099,-1.5838,-1.1826,0.7392,1.3788 +0x1ece5,CUS_0x8c11,August,38,732-73-6522,Lawyer,120017.12,9763.426667,3,4,9.288361749,0,Student Loan,20.2197709,17,6.94,0,Standard,845.5529748,24.84775199,27 Years and 8 Months,Yes,67.08162193,919.0212918,Low_spent_Small_value_payments,750.4130729,0,-0.9819,0.2603,-1.8526,1.0387,-0.8652 +0x1ecf1,CUS_0xac4f,August,31,797-10-7050,Developer,19720.36,,6,5,21,9,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Student Loan, Home Equity Loan, Not Specified, Home Equity Loan, and Debt Consolidation Loan",33.53143443,21,4.93,14,Bad,2326.72,26.44664293,19 Years and 11 Months,Yes,114.7402335,,Low_spent_Large_value_payments,220.5351683,0,0.4561,0.036,0.7761,-0.4186,0.6111 +0x1ecfd,CUS_0x59eb,August,38,213-03-0117,Manager,69788.08,5969.673333,4,8,22,5,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",25.54419091,17.35420009,8.77,11,Standard,2256.051435,28.97947748,16 Years and 11 Months,Yes,211.7543727,479.475147,Low_spent_Small_value_payments,195.7378137,0,2.0986,1.2915,0.3964,0.4448,-0.0388 +0x1ed09,CUS_0x61ab,August,33,670-22-4819,Doctor,19124.4,,5,8,7,1,Home Equity Loan,10.55252338,10,2.99,7,Standard,984.4057078,26.2730562,32 Years and 2 Months,No,15.52258728,58.13825882,High_spent_Medium_value_payments,368.4248494,0,1.0804,-1.1198,-2.8122,0.5673,0.4556 +0x1ed15,CUS_0x77a2,August,24,909-33-5727,Teacher,25173.4,,6,6,12,1,Not Specified,10.52751784,11,0.56,4,Standard,1154.86,35.1520158,28 Years and 9 Months,No,12.70549281,41.56655449,High_spent_Medium_value_payments,378.706286,0,-0.7721,-0.1718,-0.2133,0.3802,0.3146 +0x1ed21,CUS_0x88cb,August,19,800-06-7430,_______,58178.92,4670.243333,4,9,17,3,"Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",26.908007,18.43458947,18.83,16,Standard,1965.89627,40.29486729,8 Years and 10 Months,NM,80.9660649,186.0440209,High_spent_Medium_value_payments,450.0142475,0,-0.2321,-1.1659,0.9529,-0.8439,1.2057 +0x1ed2d,CUS_0x9b58,August,24,485-67-3010,Doctor,9831.865,,8,10,22.88954781,7,"Credit-Builder Loan, Auto Loan, Personal Loan, Student Loan, Not Specified, Student Loan, and Home Equity Loan",,23.0323826,10.72,9,Bad,2011.903234,33.80299558,20 Years and 4 Months,Yes,1378.901298,56.83920146,Low_spent_Small_value_payments,215.6616273,0,-0.4379,0.24,-0.3054,0.9303,-1.1688 +0x1ed39,CUS_0xa479,August,42,152-83-6973,Manager,39191.16,3238.93,8,3,8,4,"Debt Consolidation Loan, Mortgage Loan, Not Specified, and Home Equity Loan",15.47004563,11,2.09,0,_,1146.38,28.68661676,20 Years and 6 Months,No,119.9264904,404.9541388,Low_spent_Small_value_payments,89.01237085,0,-0.711,0.3491,-0.6058,-1.7771,1.4168 +0x1ed45,CUS_0x4c75,August,21,105-62-9020,Developer,81822.8,6808.566667,7,10,26,8,"Payday Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, Mortgage Loan, Student Loan, Personal Loan, and Payday Loan",,15,19.05,15,Bad,4609.45,34.10336688,1 Years and 5 Months,Yes,338.851334,278.5534142,High_spent_Medium_value_payments,313.4519185,0,-0.4275,-0.7379,1.1875,0.7593,-0.0392 +0x1ed51,CUS_0x7900,August,39,156-58-9665,_______,38873.38,2895.235338,9,9,21,5,"Home Equity Loan, Student Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,21.09774758,24.97,12,Bad,4027.810644,35.91751306,12 Years and 10 Months,Yes,371.6544308,57.26013396,High_spent_Medium_value_payments,362.743264,0,-0.9686,0.1238,-1.499,0.1164,1.5204 +0x1ed5d,CUS_0x535b,August,39,679-70-4322,Developer,167922.52,14257.54333,4,3,3.288361749,0,,4.286925435,6,7.06,4,Good,366.9186397,30.41546428,26 Years and 4 Months,NM,0,863.8681635,High_spent_Medium_value_payments,1284.034975,0,0.913,0.115,0.1532,1.4732,-0.5439 +0x1ed69,CUS_0xaf88,August,52,291-33-2707,_______,43008.33,,5,4,4,3,"Personal Loan, Home Equity Loan, and Personal Loan",,3.451081815,6.9,2,Good,105.2083838,27.94344997,23 Years and 5 Months,NM,14852,53.49725098,High_spent_Large_value_payments,447.5839985,0,-0.5451,1.0498,0.175,-0.5184,0.0083 +0x1ed75,CUS_0x4a93,August,36,#F%$D@*&8,Musician,16645.16,,8,5,9,799,Credit-Builder Loan,27.81329426,20,5.83,6,Standard,896.57,40.76865091,27 Years and 4 Months,Yes,134.0588598,177.8981273,Low_spent_Small_value_payments,263.409347,0,-1.0818,0.7284,0.9468,-0.623,-2.2237 +0x1ed81,CUS_0x79a9,August,39,364-54-1405,_______,126308.43,,2,4,4,2,"Home Equity Loan, and Mortgage Loan",27.90204741,18.22038927,2.37,2,_,1443.532822,37.94283878,28 Years and 3 Months,No,129.4052435,412.4832501,High_spent_Medium_value_payments,760.4817563,0,0.3113,0.146,0.3123,-0.8479,-0.5613 +0x1ed8d,CUS_0xb959,August,57,228-70-9629,Journalist,30958.06,2758.838333,4,5,2,3,"Not Specified, Auto Loan, and Auto Loan",4.368037962,6,3.27,1,Good,595.3006679,32.98056648,29 Years and 9 Months,No,53.96351381,36.22820522,High_spent_Medium_value_payments,439.3954561,0,2.0833,-1.212,-0.5107,0.8001,-0.2634 +0x1ed99,CUS_0x71fa,August,26,640-88-5940,Developer,66755.64,,6,9,21,2,"Auto Loan, and Mortgage Loan",36.48999335,20.36416835,7.7,10,Bad,1537.933359,28.79076854,11 Years and 4 Months,Yes,73.23991176,420.6105541,Low_spent_Medium_value_payments,341.8465341,0,1.4138,-0.2509,-0.258,1.3582,1.0739 +0x1eda5,CUS_0x9435,August,37,500-06-3724,Accountant,96027.16,7723.263333,7,3,15,0,,25.52426971,19,3.42,3,_,726.75,38.95666326,17 Years and 2 Months,NM,0,67.14260729,High_spent_Large_value_payments,945.183726,0,-0.763,-0.9753,-1.6544,0.3714,0.8917 +0x1edb1,CUS_0xc5f6,August,34,899-93-7581,Developer,125285.32,10508.44333,8,3,19,2,"Payday Loan, and Credit-Builder Loan",14.88840026,12,2.85,4,Standard,1209.643886,28.28681362,11 Years and 6 Months,Yes,135.3339925,616.6607696,Low_spent_Small_value_payments,658.8178233,0,-1.5372,1.36,-0.6069,1.0434,-0.659 +0x1edbd,CUS_0x5597,August,48,418-38-2559,Musician,17950.55,1646.879167,7,3,10,31,"Student Loan, Not Specified, and Debt Consolidation Loan",19.77658768,15,3.23,3,Standard,453.73,38.43500756,16 Years and 4 Months,No,27.41569307,,Low_spent_Small_value_payments,273.3540219,0,-1.1631,1.7937,-0.032,0.7426,-0.4161 +0x1edc9,CUS_0xa729,August,34,904-50-0399,Journalist,31302.34,,6,9,33,5,"Personal Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Mortgage Loan",,31.31729288,,11,Bad,1385.272299,23.36173941,7 Years and 0 Months,Yes,77.32601844,171.3840381,High_spent_Small_value_payments,296.8427768,0,-0.5571,-0.107,-0.2677,-0.4248,0.0983 +0x1edd5,CUS_0x8af4,August,26,467-59-3037,_______,37754.78,,2,6,8,1,Home Equity Loan,10.17241521,7.304541348,4.13,3,Good,1259.202589,30.68741813,29 Years and 2 Months,No,26.56233121,149.2575313,Low_spent_Large_value_payments,433.7033042,0,-1.6381,-2.1067,0.7946,0.8729,0.2329 +0x1ede1,CUS_0x3a38,August,40,660-83-7858,Doctor,28698.06,2326.505,8,5,21.06745738,7,"Home Equity Loan, Personal Loan, Auto Loan, Mortgage Loan, Auto Loan, Personal Loan, and Not Specified",,13.09339889,15.43,6,Standard,1707.393221,39.30915241,6 Years and 6 Months,Yes,96.95794012,26.27964658,High_spent_Large_value_payments,322.6926254,0,0.7247,1.25,-1.177,-1.4068,1.0575 +0x1eded,CUS_0x7cf,August,34,738-68-4188,_______,69956.92,5530.743333,6,6,23,5,"Payday Loan, Payday Loan, Auto Loan, Personal Loan, and Mortgage Loan",,28.927143,16.89,11,Bad,2677.680902,37.71345363,17 Years and 2 Months,Yes,152.8880163,340.2569685,Low_spent_Large_value_payments,329.9293486,0,0.5961,0.6488,1.0204,1.3124,0.7092 +0x1edf9,CUS_0x298f,August,53,069-50-9238,Accountant,30365.13,,4,1,7,100,"Payday Loan, Not Specified, and Home Equity Loan",,3,7.68,4,Good,1066.716405,21.76146039,28 Years and 4 Months,No,44.32074352,,Low_spent_Medium_value_payments,256.2954707,0,0.0468,0.7803,-0.4702,1.2241,-1.8477 +0x1ee05,CUS_0x85a0,August,39,980-03-3367,Entrepreneur,86571.09,7370.2575,0,6,2,0,,,4,4.56,0,_,1178.517642,26.64085726,19 Years and 5 Months,No,0,352.2972891,High_spent_Small_value_payments,688.5194043,0,0.7677,0.3844,-0.4489,1.6957,-0.0443 +0x1ee11,CUS_0x5554,August,52,225-64-6391,Lawyer,19261.21,1883.100833,6,6,11,4,"Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",,15.99898242,12.99,1,Standard,204.0351372,35.77196828,18 Years and 2 Months,Yes,56.88836734,,Low_spent_Small_value_payments,186.1489342,0,-0.9515,0.7473,-1.3197,0.8766,-0.3846 +0x1ee1d,CUS_0x3a99,August,47,767-68-2793,_______,83192.64,7106.72,3,6,7,2,"Payday Loan, and Student Loan",23.26580056,17,0.61,0,Good,256.8004859,38.15358313,23 Years and 0 Months,No,80.37773215,399.6115755,Low_spent_Large_value_payments,560.8685469,0,1.0464,0.6855,-1.0691,1.7274,-0.1431 +0x1ee29,CUS_0x8f02,August,50,465-41-7749,Lawyer,40330.08,3271.84,5,6,3,4,"Personal Loan, Home Equity Loan, Not Specified, and Mortgage Loan",3.993520589,5,7.79,5,Good,613.91,36.26904492,20 Years and 11 Months,No,108.8026255,,High_spent_Medium_value_payments,417.110406,0,0.4641,1.1729,-2.0931,0.1576,-1.7099 +0x1ee35,CUS_0x5cc0,August,20,686-28-4038,Architect,34343.96,2897.996667,10,8,29.06745738,3,"Payday Loan, Debt Consolidation Loan, and Auto Loan",,19.38929871,19.09,12,Bad,2136.201171,41.65720789,11 Years and 9 Months,Yes,66.35346014,47.1650208,High_spent_Large_value_payments,389.5608978,0,0.3206,0.3147,-1.8983,-0.4602,-0.0369 +0x1ee41,CUS_0x869,August,37,477-10-7170,Architect,121256.4,9022.691765,4,4,19,2,"Personal Loan, and Debt Consolidation Loan",24.71767658,19,4.92,7,Standard,926.1599579,23.27401666,31 Years and 3 Months,NM,1060.774723,756.6935883,Low_spent_Large_value_payments,369.8831759,0,-0.9291,-0.9474,0.914,-0.2133,1.6573 +0x1ee4d,CUS_0xbd54,August,18,295-50-7660,_______,59348.64,4685.72,6,6,16,4,"Mortgage Loan, Mortgage Loan, Student Loan, and Not Specified",,21,8.17,14,_,2051.19,38.99262464,,Yes,152.5309661,186.398752,High_spent_Medium_value_payments,379.642282,0,1.7939,0.3599,-0.1357,0.4624,-0.1176 +0x1ee59,CUS_0x305e,August,19,224-36-7347,Accountant,34849.62,,3,5,2,2,"Mortgage Loan, and Credit-Builder Loan",1.890897713,4,10.76,8,Good,1181,25.97394884,28 Years and 2 Months,No,53.74358656,59.64475164,High_spent_Large_value_payments,446.8251618,0,-0.8947,-2.0454,1.0271,0.5426,0.8444 +0x1ee65,CUS_0x6e06,August,39,155-63-7897,Entrepreneur,20139.19,,10,10,19,6,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",31.17282837,22,18.19,11,Bad,2209.17,35.90477934,17 Years and 10 Months,Yes,51.16717022,,High_spent_Large_value_payments,320.7877134,0,2.2373,1.1862,1.0985,0.6528,-0.4709 +0x1ee71,CUS_0xc718,August,39,870-81-1433,Engineer,18105.32,,5,6,7,1,Personal Loan,6.851880118,7,5.69,2,Good,211.46,29.15400062,32 Years and 0 Months,No,13.31133533,171.9503706,Low_spent_Small_value_payments,274.0159607,0,0.3671,1.5259,-0.1595,-0.3538,-0.266 +0x1ee7d,CUS_0xa8e1,August,21,730-04-4483,Engineer,60381.32,5154.776667,4,1164,15,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Payday Loan",,13,10.72,4,Standard,1311.32,40.23504001,,Yes,170.2637835,200.2163847,High_spent_Medium_value_payments,394.9974985,0,-0.1252,1.1372,0.9419,1.721,-1.5385 +0x1ee89,CUS_0xecc,August,25,#F%$D@*&8,Lawyer,9413.305,1072.442083,8,5,20.06745738,5,"Credit-Builder Loan, Personal Loan, Payday Loan, Credit-Builder Loan, and Not Specified",,,13.75,11,Standard,1970.030954,39.0614176,,Yes,32.74209641,18.58662178,!@9#%8,269.1952022,0,0.368,1.5196,-1.9012,0.9482,-1.1301 +0x1ee95,CUS_0x57ef,August,36,205-36-8507,Journalist,172441.08,,2,1,10.28836175,4,"Not Specified, Student Loan, Not Specified, and Auto Loan",,12,2.28,6,Good,264.899817,28.74307548,21 Years and 3 Months,No,490.9929608,1384.884673,High_spent_Small_value_payments,378.4552395,0,-0.6425,-2.1008,-1.1398,-1.4566,-1.8739 +0x1eea1,CUS_0xc636,August,44,071-12-0829,Scientist,33199.13,,1,4,3,2,"Personal Loan, and Student Loan",,10,4.88,0,Good,1103.665032,31.17802379,22 Years and 4 Months,No,35.39775361,75.60535911,High_spent_Large_value_payments,406.964146,0,1.512,-2.2176,-0.7599,-1.2326,-1.1268 +0x1eead,CUS_0x9e26,August,24,500-94-0282,Teacher,9173.61,,8,6,23.06745738,7,"Payday Loan, Personal Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Not Specified, and Student Loan",,11.33748332,19.11,7,Standard,2011.896328,34.67666731,5 Years and 11 Months,NM,47.16196424,65.41806485,Low_spent_Large_value_payments,229.346433,0,-1.597,-0.4205,1.5913,1.1238,0.8177 +0x1eeb9,CUS_0xc0d7,August,80,095-59-3660,Mechanic,44983.95,3958.6625,10,9,26.88954781,7,"Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, Auto Loan, and Payday Loan",22.76336455,16.84268047,2.22,11,Bad,3334.142279,26.85500417,10 Years and 6 Months,Yes,1478.226873,,Low_spent_Medium_value_payments,105.7638361,0,0.0347,0.5524,-1.1155,0.1282,-0.017 +0x1eec5,CUS_0x8380,August,20,565-13-2667,Lawyer,17271.6,1496.3,9,6,24.06745738,6,"Student Loan, Credit-Builder Loan, Student Loan, Not Specified, Credit-Builder Loan, and Auto Loan",57.63368913,32.1506735,9.2,13,Bad,3095.89536,35.38287223,16 Years and 0 Months,Yes,56.6832109,92.69259769,Low_spent_Medium_value_payments,253.5339035,0,0.4724,-0.3486,-1.5268,-0.9845,1.4915 +0x1eed1,CUS_0x6df3,August,29,466-03-4446,Engineer,71290.06,6199.838333,8,3,17,0,,17.02209113,15,7.26,8,Standard,1314.99,36.08104036,18 Years and 5 Months,Yes,0,78.04659895,High_spent_Medium_value_payments,791.9372344,0,0.0789,0.9482,0.7064,-1.4201,-0.2779 +0x1eedd,CUS_0x7694,August,38,567-09-4004,Doctor,9299.05,,9,6,21.06745738,2,"Credit-Builder Loan, and Home Equity Loan",,28.01123663,7.81,15,_,2706.503298,34.19570339,11 Years and 8 Months,Yes,14.65126123,,Low_spent_Medium_value_payments,247.7649405,0,-0.4024,-0.6281,0.8825,-0.9502,-0.901 +0x1eee9,CUS_0x8b4f,August,36,948-26-2105,Scientist,117116.32,8748.792402,1,2,11.28836175,2,"Mortgage Loan, Student Loan, and Student Loan",6.067110151,9,4.63,5,Good,860.5971638,26.29178411,20 Years and 2 Months,NM,1299.816938,,Low_spent_Large_value_payments,254.1371739,0,-0.3018,1.4216,-2.2671,1.3636,-0.5575 +0x1eef5,CUS_0x64e5,August,34,692-52-3599,Teacher,21803.94,1782.995,5,6,20,4,"Student Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",24.06246945,15,4.21,3,Standard,29.16,33.79975619,31 Years and 2 Months,No,41.61953909,10000,High_spent_Small_value_payments,296.9853849,0,-1.7499,-0.3011,1.2829,-1.7421,1.6202 +0x1ef01,CUS_0xc319,August,32,516-25-5953,Musician,28826.14,2167.178333,7,7,28,2,"Debt Consolidation Loan, and Not Specified",34.15432917,19.46018993,19.45,10,Bad,2065.643011,35.36195192,8 Years and 8 Months,NM,45.14385896,10000,Low_spent_Medium_value_payments,263.3991356,0,-0.774,0.2335,-0.5252,1.1388,-0.0659 +0x1ef0d,CUS_0x7879,August,58,489-98-2589,Doctor,91965.39,7877.7825,4,2,7,3,"Home Equity Loan, Auto Loan, and Auto Loan",0,0,2.11,5,Good,167.6639264,31.31584044,27 Years and 4 Months,No,210.9546515,198.0003341,High_spent_Medium_value_payments,657.6981422,0,1.6853,0.0296,-1.3921,-1.3042,-0.07 +0x1ef19,CUS_0x8bb3,August,51,343-60-7122,_______,136738.56,,0,6,11,0,,11.61956933,10,3.14,4,Good,482.99,37.36777204,25 Years and 6 Months,No,0,1007.143714,Low_spent_Medium_value_payments,405.344286,0,-0.0469,-0.7783,0.5192,-0.2857,0.5837 +0x1ef25,CUS_0x5a0f,August,26,915-49-9833,Musician,15434.1,,8,10,31.88954781,9,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Student Loan, Auto Loan, Home Equity Loan, Not Specified, Not Specified, and Payday Loan",25.68969259,17,18.57,8,Bad,4378.25,35.49546733,3 Years and 9 Months,Yes,1431.534949,45.84655055,Low_spent_Small_value_payments,247.1059188,0,0.8814,-1.4779,-0.2836,-1.9597,-0.95 +0x1ef31,CUS_0x34d6,August,50,#F%$D@*&8,Engineer,129308.52,10979.71,5,3,0.288361749,100,"Credit-Builder Loan, Not Specified, Not Specified, and Auto Loan",,7,3.19,2,Good,1297.951411,32.47148303,27 Years and 6 Months,No,428.7820695,,Low_spent_Large_value_payments,78.37770514,0,0.7123,-1.2393,0.4801,-0.9258,-0.9498 +0x1ef3d,CUS_0x41e7,August,34,670-93-4185,Architect,60574.48,5338.873333,6,10,24,2,"Auto Loan, and Mortgage Loan",17.94797863,12,7.41,11,Standard,1304.08,32.29850641,7 Years and 9 Months,Yes,94.2730442,404.2744906,Low_spent_Small_value_payments,325.3397986,0,1.2254,0.356,0.6473,-0.6582,0.2948 +0x1ef49,CUS_0xbb93,August,33,052-57-7067,Writer,20975.39,1572.949167,0,1,6,3,"Credit-Builder Loan, Home Equity Loan, and Personal Loan",8.238637764,8,0.64,3,Good,668.162752,41.13921019,27 Years and 2 Months,No,47.11509981,,Low_spent_Small_value_payments,221.1893506,0,-0.2204,0.5344,-0.0769,0.2608,-0.4741 +0x1ef55,CUS_0x4a9c,August,39,109-17-4044,Manager,33498.79,2995.565833,2,4,9,2,"Student Loan, and Home Equity Loan",10.55892468,10,3.05,3,_,646.04,28.9181963,31 Years and 5 Months,No,32.30101331,88.65861769,!@9#%8,438.5969523,0,-1.4581,-1.2584,1.6636,0.9405,0.6679 +0x1ef61,CUS_0x81bb,August,55,189-25-1398,Engineer,13738.735,,7,6,11,4,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",18.25383461,13,5.92,5,_,317.9221992,36.28182351,23 Years and 10 Months,No,44.64666113,0,High_spent_Large_value_payments,318.283774,0,-1.0208,-0.3697,1.6053,0.3597,-1.2872 +0x1ef6d,CUS_0x396d,August,32,931-05-8291,Manager,33032.46,,8,7,20,100,"Payday Loan, and Debt Consolidation Loan",,9,8.68,8,Standard,891.29,38.4671545,15 Years and 9 Months,Yes,35.27523437,32.2178759,High_spent_Large_value_payments,456.7773897,0,-0.0719,0.2846,-0.1583,0.942,-1.5612 +0x1ef79,CUS_0x8cc1,August,43,331-24-3360,Accountant,31700.12,2635.676667,5,5,12,3,"Credit-Builder Loan, Home Equity Loan, and Payday Loan",,4.685832857,11.02,3,_,1462.10084,39.07834451,33 Years and 3 Months,No,45.66368583,106.957153,Low_spent_Large_value_payments,380.9468279,0,0.1731,-0.7132,1.2522,-0.4716,1.1922 +0x1ef85,CUS_0xb2a4,August,24,420-33-9865,Teacher,32755.49,2765.624167,4,5,2,3,"Student Loan, Personal Loan, and Personal Loan",14.6484725,12,5.99,8,Good,1265.91,31.36168136,23 Years and 5 Months,No,54.53842411,101.3268935,Low_spent_Small_value_payments,410.6970991,0,-0.5062,-0.0588,-0.5935,0.1006,-0.9892 +0x1ef91,CUS_0x8442,August,48,897-16-4242,Lawyer,28199.86,2090.988333,3,3,3,4,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Auto Loan",,9,3.07,4,Good,500.84,27.35416197,16 Years and 11 Months,No,85.02935949,,!@9#%8,176.7523436,0,1.1643,1.1723,-1.7189,-0.2067,0.4107 +0x1ef9d,CUS_0x7233,August,18,511-46-2018,Teacher,15219.03,,9,5,18,7,"Personal Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Mortgage Loan, Not Specified, and Mortgage Loan",19.1924885,16,4.78,7,Bad,2213.1,37.9802444,9 Years and 9 Months,NM,76.13084676,102.9843216,Low_spent_Small_value_payments,243.9100817,0,0.682,1.6494,0.939,0.3149,-0.0144 +0x1efa9,CUS_0xc065,August,48,#F%$D@*&8,Accountant,35341.99,2935.165833,5,7,8,1,Payday Loan,,16,17.36,5,Good,1228.602896,40.72235565,30 Years and 4 Months,No,18.16049389,96.61627713,High_spent_Medium_value_payments,440.2124764,0,0.2454,-0.1024,0.1383,0.2003,1.1774 +0x1efb5,CUS_0x5909,August,37,796-80-1142,Media_Manager,48234.04,4288.503333,6,387,17.88954781,100,"Personal Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",7.294235543,6,3.06,5,Standard,447.94,25.50018199,20 Years and 10 Months,No,1477.043133,93.18662096,!@9#%8,404.2904976,0,2.442,-0.3631,0.3107,2.1956,-0.7937 +0x1efc1,CUS_0x48ab,August,26,274-03-2463,Doctor,28337.76,2000.170269,0,5,1,1,Not Specified,3.06968878,7,2.23,4,Good,680.16,38.52329609,30 Years and 0 Months,No,152.137555,,High_spent_Medium_value_payments,377.2833117,0,1.2193,0.077,-0.7145,0.7448,0.3299 +0x1efcd,CUS_0x1dd4,August,54,692-38-9743,Doctor,140606.8,,6,961,6.288361749,0,Payday Loan,,13,7.39,0,Standard,451.5313931,31.15713291,,NM,90.91752953,654.6844239,High_spent_Large_value_payments,1135.20085,0,0.5783,0.0724,1.3425,-1.0561,-0.6226 +0x1efd9,CUS_0x26ea,August,30,303-83-2504,Mechanic,28550.84,,7,3,12,2,"Mortgage Loan, and Home Equity Loan",,21,1.86,2,Standard,57.85,39.1244856,26 Years and 3 Months,Yes,44.4201537,173.5027152,High_spent_Small_value_payments,307.5007978,0,0.841,-1.1104,1.187,-0.892,-0.3321 +0x1efe5,CUS_0x612e,August,26,867-32-0827,Architect,81609.78,,5,4,4025.288362,2,"Auto Loan, Home Equity Loan, and Student Loan",,2,6.94,2,_,92.93638673,28.08704388,20 Years and 10 Months,No,134.2601034,959.8233162,Low_spent_Small_value_payments,396.3621865,0,-0.5461,-0.5563,0.3579,1.6806,-0.5607 +0x1eff1,CUS_0x4462,August,33,771-79-9880,Musician,63563.88,5272.99,8,7,17,7,"Not Specified, Credit-Builder Loan, Personal Loan, Payday Loan, Auto Loan, Payday Loan, and Not Specified",19.90334353,18.8609664,18.45,8,_,2858.432122,28.09663216,14 Years and 2 Months,NM,312.579424,,High_spent_Small_value_payments,217.1132182,0,-0.9364,-0.0186,-1.7874,-0.8467,1.3752 +0x1effd,CUS_0x354b,August,25,864-92-1050,Media_Manager,55263.82,4881.318333,4,3,7,1,Debt Consolidation Loan,9.139442471,10,13.76,6,Standard,1051.33,36.66469814,,NM,28.17752349,399.2892058,Low_spent_Small_value_payments,350.665104,0,0.5445,-0.1934,0.0921,1.1802,-0.5925 +0x1f009,CUS_0x527c,August,21,#F%$D@*&8,Manager,86584.74,7228.395,5,5,8.288361749,2,"Payday Loan, Personal Loan, and Credit-Builder Loan",10.02348975,11,2.93,2,Good,17.36471378,26.89930814,18 Years and 3 Months,No,203.6098233,601.7916078,High_spent_Large_value_payments,602.586928,0,2.1561,-1.6509,0.2326,-1.1433,0.691 +0x1f015,CUS_0xab80,August,43,448-19-2628,Scientist,37760.22,,3,4,3,3,"Home Equity Loan, Not Specified, and Debt Consolidation Loan",7.247661267,10,11.6,3,Good,821.1,32.60578734,16 Years and 9 Months,No,88.48566313,135.9406182,Low_spent_Large_value_payments,384.9422187,0,0.573,-0.8347,1.2551,-0.3649,-0.3202 +0x1f021,CUS_0x1ed8,August,24,819-43-0968,Media_Manager,135178.44,,0,6,6,100,,16.24079447,11.71244917,6.27,8,Good,1172.466995,46.21769845,25 Years and 9 Months,No,0,286.8637716,High_spent_Large_value_payments,1107.423228,0,1.324,-0.0925,1.5184,-0.8852,-0.2951 +0x1f02d,CUS_0xaba3,August,32,494-59-0888,Lawyer,20558.68,,10,7,25,5,"Student Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",21.6692603,15,10.25,12,Bad,2079.91,27.14851877,,Yes,85.0865172,49.69472882,High_spent_Medium_value_payments,305.1410873,0,-0.7518,0.464,1.1158,0.6641,0.4074 +0x1f039,CUS_0x7741,August,35,351-97-8678,Musician,10329.855,1121.82125,4,8,24,2,"Auto Loan, and Home Equity Loan",14.47210245,10.51352387,17.08,14,Standard,2882.328031,36.88847694,8 Years and 6 Months,NM,14.66343455,67.16112023,!@9#%8,310.3575702,0,0.5278,-0.2076,-0.6582,1.4256,0.7906 +0x1f045,CUS_0x77b5,August,39,008-70-2637,Media_Manager,107991.54,,1,3,1,1,Debt Consolidation Loan,6.57893648,8,2.4,4,Good,1163.93,42.43479326,32 Years and 3 Months,No,68.64103884,65.4851541,High_spent_Large_value_payments,982.2033071,0,-0.8143,0.5103,-0.856,-0.5127,-0.5495 +0x1f051,CUS_0xb031,August,36,433-04-2393,Entrepreneur,15279.43,,8,9,2062.067457,5,"Auto Loan, Personal Loan, Auto Loan, Home Equity Loan, and Payday Loan",,17,1.26,10,_,2531.660954,41.36543203,14 Years and 2 Months,Yes,32.96347401,65.45909226,High_spent_Small_value_payments,260.2857291,0,0.4649,0.5465,0.7815,-1.7752,1.7713 +0x1f05d,CUS_0xa04c,August,33,714-99-9322,Media_Manager,38299.84,3461.653333,8,520,29.88954781,7,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",29.68665415,11.58559319,13.58,10,_,1643.000838,31.40318272,13 Years and 9 Months,Yes,1448.251136,79.04346465,High_spent_Large_value_payments,364.5406518,0,1.7181,-2.4392,-0.9373,0.2437,-1.6849 +0x1f069,CUS_0x6a0b,August,31,389-82-7177,Developer,73052.94,5909.745,4,4,14,2,"Debt Consolidation Loan, and Debt Consolidation Loan",27.00290793,15.84988701,1.93,3,Standard,635.1194101,33.26672873,26 Years and 8 Months,Yes,64.60393729,292.5420267,Low_spent_Small_value_payments,523.828536,0,1.4609,0.5592,0.4227,-0.4564,-0.7229 +0x1f075,CUS_0x7bb3,August,46,156-43-2282,Journalist,42331.14,,6,5,9,2,"Student Loan, and Credit-Builder Loan",17.03244407,13,16.48,11,Standard,1288.78,36.42939635,15 Years and 4 Months,NM,48.32052041,78.15163027,High_spent_Medium_value_payments,451.5873493,0,0.4256,0.1731,-0.7901,0.2983,0.0798 +0x1f081,CUS_0x324b,August,24,376-98-8873,Entrepreneur,14773.91,1423.159167,6,10,25,4,"Home Equity Loan, Payday Loan, Personal Loan, and Student Loan",,10.86282363,16.91,,Standard,2574.950096,34.08131006,10 Years and 0 Months,Yes,29.4799699,143.3592634,!@9#%8,259.4766833,0,-1.0194,0.9608,1.3367,-0.3725,1.4478 +0x1f08d,CUS_0x9237,August,49,292-60-7633,Developer,132387.52,10844.29333,3,5,4.288361749,2,"Payday Loan, and Credit-Builder Loan",8.31661335,10,11.95,2,Good,319.5706666,28.1108701,29 Years and 10 Months,NM,145.6507581,1290.66145,!@9#%8,432.473495,0,1.0743,0.5585,-0.8773,0.8699,0.83 +0x1f099,CUS_0x29e1,August,37,612-08-5420,_______,62683.59,5047.6325,8,8,32.88954781,9,"Not Specified, Student Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",,29.06992823,6.44,8,Bad,2404.180521,36.48693489,20 Years and 2 Months,Yes,1669.545685,417.8163918,Low_spent_Large_value_payments,0,0,1.1902,-0.0547,1.3786,-0.4837,0.2225 +0x1f0a5,CUS_0x8fa,August,34,463-08-2979,Doctor,53671.92,4588.66,6,8,33.88954781,6,"Mortgage Loan, Mortgage Loan, Not Specified, Not Specified, Payday Loan, and Not Specified",41.91394386,21,17.75,9,Bad,3420.99,29.3206877,,Yes,1476.79969,52.96018271,High_spent_Large_value_payments,474.7760459,0,-0.151,0.5392,0.5089,0.4136,0.5169 +0x1f0b1,CUS_0xc6cc,August,21,815-43-7420,Engineer,16599.58,,7,10,17.06745738,3,"Payday Loan, Debt Consolidation Loan, and Not Specified",20.62167244,8.995517151,13.43,,Standard,2974.601823,28.5811349,18 Years and 4 Months,Yes,39.2078551,70.73101764,Low_spent_Medium_value_payments,285.7706726,0,1.5008,-0.4893,0.1808,0.5132,1.2067 +0x1f0bd,CUS_0x9f8e,August,27,627-39-8653,Architect,19504.32,,7,8,16,2,"Credit-Builder Loan, and Student Loan",21.62994049,12.39377024,12.64,11,Standard,2085.497217,31.67322104,15 Years and 10 Months,Yes,17.31043694,119.6344822,Low_spent_Small_value_payments,308.4910809,0,0.567,0.8942,0.5314,-0.614,-0.6698 +0x1f0c9,CUS_0xb5af,August,38,889-47-5164,Architect,76769.58,6203.465,3,5,7,3,"Not Specified, Not Specified, and Auto Loan",,8,11.49,7,Good,17.96844657,29.59263484,22 Years and 9 Months,No,190.5538525,278.3262165,Low_spent_Large_value_payments,451.5028817,0,0.4731,0.0615,0.347,0.2332,1.6522 +0x1f0d5,CUS_0x302d,August,23,749-89-9756,Developer,14258.85,,6,9,28,7,"Mortgage Loan, Personal Loan, Personal Loan, Student Loan, Payday Loan, Not Specified, and Home Equity Loan",,28.13579235,1.01,10,_,4843.961714,25.22961018,2 Years and 6 Months,Yes,54.79394527,,Low_spent_Small_value_payments,215.7141519,0,-1.1234,0.1658,0.0661,0.0034,-0.1448 +0x1f0e1,CUS_0x1d13,August,23,132-53-5164,Musician,73314.6,6180.55,10,8,20.88954781,8,"Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Payday Loan, Not Specified, Not Specified, and Not Specified",30.10816414,23,18.61,12,Bad,4709.8,30.81175576,12 Years and 2 Months,Yes,1789.311772,41.0040319,High_spent_Large_value_payments,333.4091148,0,-0.1159,-0.5295,-1.5851,1.196,2.0291 +0x1f0ed,CUS_0x3b06,August,45,455-63-7887,Architect,15028.515,1417.37625,8,7,8,0,,19.66698208,14,7.65,2,Good,583.74,41.02774594,23 Years and 6 Months,NM,0,15.9350007,High_spent_Medium_value_payments,375.8026243,0,0.5482,0.7701,-0.1283,-0.1067,-0.7775 +0x1f0f9,CUS_0x9d38,August,56,101-88-1001,Lawyer,27061.84,2148.153333,4,5,11,3,"Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",,14,2.01,2,Standard,936.1,29.7462961,19 Years and 6 Months,Yes,44.00129216,41.4778983,High_spent_Small_value_payments,389.3361429,0,0.3742,0.3306,0.4835,-0.0477,1.3335 +0x1f105,CUS_0x63d4,August,55,#F%$D@*&8,Developer,23455.12,,8,7,18,2,"Mortgage Loan, and Auto Loan",16.14590182,15,9.96,2,_,317.45,25.65637446,,Yes,26.97640611,,Low_spent_Small_value_payments,216.5890086,0,0.497,-1.0347,1.2084,0.6445,-0.3616 +0x1f111,CUS_0xa910,August,40,635-44-8558,Scientist,17689.64,,7,6,26.06745738,7,"Mortgage Loan, Personal Loan, Auto Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",,19,18.25,8,Bad,4006.550954,38.18014808,6 Years and 0 Months,Yes,96.06048106,56.95389747,Low_spent_Large_value_payments,218.8790002,0,0.4459,0.727,0.0803,0.4408,0.2728 +0x1f11d,CUS_0x7ba0,August,32,654-22-3082,Teacher,39284.17,,4,1,3,100,Not Specified,0,2,10.29,4,Good,1135.923584,25.89106142,16 Years and 0 Months,No,21.46038347,448.5478499,Low_spent_Small_value_payments,183.5697554,0,-0.9752,-0.6789,0.5281,-1.2089,0.4661 +0x1f129,CUS_0x8536,August,35,#F%$D@*&8,Architect,144497.44,,5,5,15.28836175,2,"Not Specified, Home Equity Loan, and Student Loan",23.01218346,20,3.67,4,Standard,50.13,27.2294122,25 Years and 11 Months,No,921.6865326,521.5509838,High_spent_Large_value_payments,1127.103304,0,0.7061,0.0075,0.0003,-1.0948,0.0209 +0x1f135,CUS_0xfe3,August,53,868-17-6573,Media_Manager,40380.18,3607.015,7,5,18,4,"Personal Loan, Personal Loan, Not Specified, and Payday Loan",20.77983832,14,7.98,8,_,1042.93,32.65074535,24 Years and 11 Months,NM,79.98627456,295.5283254,Low_spent_Small_value_payments,275.1869,0,-0.8001,0.1726,0.9784,-0.5689,-3.869 +0x1f141,CUS_0xb75b,August,25,948-39-0892,Media_Manager,18194.8,1695.233333,10,9,23.88954781,7,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",,28.97338853,26.52,11,_,3112.117001,36.54539881,4 Years and 2 Months,Yes,1397.315349,66.45558464,High_spent_Medium_value_payments,261.4223187,0,-0.0531,1.1342,0.3405,-0.1676,-0.789 +0x1f14d,CUS_0xadcd,August,40,034-21-3041,_______,14592.03,947.0025,8,9,23.88954781,6,"Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, Payday Loan, and Not Specified",28.00221915,19.06554772,8.65,10,_,1902.204254,25.98147117,11 Years and 11 Months,Yes,1378.773719,,Low_spent_Small_value_payments,252.0222558,0,0.483,0.1188,0.1875,-1.8534,1.7318 +0x1f159,CUS_0x7767,August,18,768-01-1143,Musician,16559.75,1589.979167,4,5,19,4,"Auto Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",16.25573991,11.54866555,10.5,9,Standard,1905.875189,29.77836036,10 Years and 8 Months,NM,31.92458954,135.9549594,!@9#%8,271.1183677,0,-0.9782,0.4689,0.1636,0.6509,-0.0538 +0x1f165,CUS_0x990,August,21,655-92-9108,Developer,18937.61,,8,8,29.95700519,6,"Not Specified, Credit-Builder Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",,24.30799413,1.76,14,Bad,1660.111398,34.43505912,15 Years and 5 Months,Yes,1403.691809,81.14388866,Low_spent_Large_value_payments,217.7273502,0,0.3963,-1.2929,1.3178,0.2906,0.404 +0x1f171,CUS_0x5cc5,August,46,940-86-3772,Media_Manager,72034.86,5780.905,5,6,13,0,,24.13819453,18,13.76,4,_,1030.69,39.12159984,30 Years and 5 Months,Yes,0,203.566731,Low_spent_Small_value_payments,664.523769,0,2.527,0.4586,1.5321,-1.0162,-1.4274 +0x1f17d,CUS_0x9522,August,29,500-24-7871,Architect,91561.26,7708.105,4,5,7,0,,26.30870085,18,6.6,7,Standard,130.3,42.32163894,,Yes,0,181.9346434,High_spent_Large_value_payments,828.8758566,0,1.1207,-0.2548,0.2417,-1.3737,0.3019 +0x1f189,CUS_0xc18b,August,26,090-19-8485,Musician,29228.18,2695.681667,7,5,9,0,,19.87688001,17,12.92,5,_,1478.07,23.37373239,26 Years and 6 Months,Yes,0,208.6650967,Low_spent_Large_value_payments,330.90307,0,-0.6881,1.0961,0.6079,-0.1349,0.7027 +0x1f195,CUS_0x1f4b,August,18,399-63-5016,Doctor,50757.15,4162.7625,10,7,21.06745738,5,"Debt Consolidation Loan, Mortgage Loan, Not Specified, Not Specified, and Not Specified",27.98773815,19,20.78,12,_,3905.490954,26.83472819,7 Years and 8 Months,Yes,149.0388825,,High_spent_Large_value_payments,427.5481742,0,-1.1851,0.9936,-1.087,-1.3276,0.119 +0x1f1a1,CUS_0x72bc,August,33,829-40-8404,Teacher,59032.8,4601.724308,9,10,23,4,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Auto Loan",25.1089648,19,8.04,8,Standard,1629.170539,24.70333212,,Yes,604.1849691,736.7882097,Low_spent_Small_value_payments,28.04414244,0,0.3679,0.3234,1.023,0.3091,0.6009 +0x1f1ad,CUS_0x4e5c,August,40,725-33-0579,Musician,104273.04,8980.42,1,7,6,2,"Auto Loan, and Student Loan",0,1,3.74,4,Good,581.2984083,35.77519925,22 Years and 10 Months,NM,100.6289163,145.5443444,High_spent_Large_value_payments,906.131441,0,-0.5411,0.2096,-0.4886,0.3013,-0.9941 +0x1f1b9,CUS_0xb38a,August,29,206-35-5405,Accountant,31392.94,,1,1,5,3,"Student Loan, Auto Loan, and Personal Loan",7.139108462,8,8.02,0,Good,1380.719273,23.57396828,26 Years and 0 Months,No,47.69812767,160.4718664,High_spent_Small_value_payments,352.5468424,0,-0.106,0.3825,0.4098,-0.6132,1.0251 +0x1f1c5,CUS_0xc662,August,30,010-45-6073,Lawyer,70976.46,6061.705,4,5,16.28836175,6,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",11.15553356,12,12.99,7,Standard,689.88,34.03997687,7 Years and 4 Months,NM,234.1872557,491.4954376,High_spent_Large_value_payments,540.4252677,0,0.7349,0.5412,2.4882,-0.7735,1.5363 +0x1f1d1,CUS_0x915a,August,35,526-07-1321,Doctor,107545.2,,3,7,9,4,"Student Loan, Not Specified, Credit-Builder Loan, and Personal Loan",17.34171669,,7.88,4,Standard,375.5259578,28.65378482,20 Years and 11 Months,Yes,349.0832064,161.6342377,High_spent_Large_value_payments,665.0807583,0,0.2766,1.5299,-0.3945,1.4007,0.6304 +0x1f1dd,CUS_0x804b,August,48,799-49-2272,Accountant,11274.515,,2,4,6,4,"Payday Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",17.74448273,16,2.25,5,_,771.99,25.42217394,,No,32.03365344,,High_spent_Small_value_payments,254.9540895,0,0.0178,0.6807,0.4724,1.6191,0.1244 +0x1f1e9,CUS_0x2bba,August,18,755-99-6164,Doctor,74502.36,6000.53,7,6,11,3,"Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",19.66488806,14,8.45,6,Standard,1437.07,33.49359466,,NM,169.6576199,104.6705985,High_spent_Large_value_payments,565.7247816,0,-0.2222,-0.6303,-0.2162,-0.2911,1.1312 +0x1f1f5,CUS_0x795b,August,26,884-45-3366,Journalist,19841.34,1680.445,10,8,22,5,"Debt Consolidation Loan, Mortgage Loan, Student Loan, Not Specified, and Mortgage Loan",,21,28.44,12,_,4355.7,31.57084442,1 Years and 10 Months,Yes,52.75412228,25.12230509,High_spent_Large_value_payments,330.1680726,0,0.8399,0.8988,-0.8177,0.2847,-0.1423 +0x1f201,CUS_0x790a,August,36,115-90-2610,Writer,88147.53,7477.6275,2,3,8,3,"Home Equity Loan, Home Equity Loan, and Personal Loan",,3,11.78,4,Good,1416.48,37.75071271,29 Years and 3 Months,No,167.8680509,,Low_spent_Medium_value_payments,424.2940619,0,0.3599,-1.5928,0.1507,1.3273,-0.7196 +0x1f20d,CUS_0x2579,August,29,276-60-8172,Architect,101453.49,8620.4575,3,7,19.28836175,4,"Debt Consolidation Loan, Auto Loan, Not Specified, and Debt Consolidation Loan",15.43228364,15,-0.82,3,Standard,769.18,28.24323666,30 Years and 8 Months,Yes,232.5875128,688.8146184,High_spent_Medium_value_payments,610.5810798,0,-0.6586,-1.5819,0.9113,1.3362,0.4183 +0x1f219,CUS_0x86fa,August,27,720-82-4374,Entrepreneur,47013.78,3678.815,3,5,10,7,"Not Specified, Not Specified, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",,11,14.09,13,Standard,23.64,26.2560254,9 Years and 3 Months,Yes,255.607521,51.45842224,High_spent_Medium_value_payments,310.8155567,0,-0.3597,-1.2631,1.5592,-1.2255,0.7025 +0x1f225,CUS_0x88f4,August,29,454-81-6894,Mechanic,7905.96,,8,8,17.95700519,7,"Not Specified, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Auto Loan",24.65076473,15,9.36,11,_,2234.940954,26.7022881,8 Years and 8 Months,Yes,1356.803883,40.30237228,Low_spent_Small_value_payments,240.2263759,0,1.6666,0.9382,-1.3887,-0.1682,-0.1898 +0x1f231,CUS_0xb685,August,21,412-81-9069,Mechanic,47898.39,,6,8,18.06745738,6,"Personal Loan, Personal Loan, Auto Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",41.43952298,27.16152903,28.45,8,Bad,5603.800305,32.52295204,14 Years and 8 Months,Yes,239.1716626,10000,Low_spent_Small_value_payments,213.7123781,0,1.5957,0.7396,1.1303,-0.4328,-0.1419 +0x1f23d,CUS_0xbca3,August,46,977-71-5685,Entrepreneur,15335.38,,8,6,18.06745738,2,"Personal Loan, and Not Specified",22.91856769,11,8.22,11,Standard,2212.240954,33.1422634,15 Years and 0 Months,Yes,24.63926901,,Low_spent_Large_value_payments,237.777,0,-1.2877,-0.9167,0.3709,-0.4062,1.9208 +0x1f249,CUS_0x691a,August,52,188-25-4731,Musician,27131.46,,6,7,9.288361749,4,"Personal Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",21.51322357,18,2.47,3,Standard,90.91348933,38.00491644,23 Years and 8 Months,No,67.4294642,485.3514753,High_spent_Medium_value_payments,351.7064665,0,-0.749,0.3582,-2.9527,-0.0153,0.4326 +0x1f255,CUS_0x87f9,August,45,472-75-9857,Teacher,20397.855,,1,3,8,1,Payday Loan,,3.634748931,5.04,6,Good,1072.257102,38.31692155,22 Years and 4 Months,No,9.81643378,97.59242382,Low_spent_Medium_value_payments,341.6732674,0,0.3372,-1.2948,0.2228,-0.0288,0.2363 +0x1f261,CUS_0xbed,August,52,712-52-3134,Media_Manager,42074.42,3587.201667,4,1,5240.288362,0,Personal Loan,10.03297626,12,2.29,4,_,188.7907146,34.32296152,31 Years and 11 Months,No,22.65287288,516.6978113,High_spent_Large_value_payments,492.8511861,0,-1.2528,0.4271,0.6115,-2.6107,-0.3427 +0x1f26d,CUS_0x36ad,August,24,372-50-6035,Lawyer,70142.36,,10,8,19.88954781,7,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Payday Loan",31.25727834,18.47316649,7.12,10,_,2547.85787,26.61642402,12 Years and 5 Months,Yes,1705.857997,353.1126458,Low_spent_Small_value_payments,118.4189422,0,-0.3278,-2.4015,0.2095,-1.8523,-1.0057 +0x1f279,CUS_0xaf0a,August,36,457-86-1277,Media_Manager,141164.6,11545.71667,4,5,9,2,"Student Loan, and Mortgage Loan",18.73459972,12,10.74,5,Standard,285.59,37.23915765,31 Years and 10 Months,Yes,138.8302776,1095.343744,Low_spent_Medium_value_payments,200.3976453,0,1.5808,-0.2236,-2.1561,0.6344,-0.3626 +0x1f285,CUS_0x83d7,August,35,677-56-4737,Architect,21709.07,,3,4,8,0,,0,0,13.52,7,Good,932.582463,29.56705762,24 Years and 8 Months,No,0,33.74135811,High_spent_Medium_value_payments,427.6508468,0,0.43,0.4151,-1.5776,1.4636,-0.9281 +0x1f291,CUS_0x320d,August,30,740-82-5152,Entrepreneur,122725.48,10059.12333,0,5,4586,1,Personal Loan,5.86168158,6,5.93,0,Good,932.2346353,40.34914616,33 Years and 5 Months,No,79.27435075,800.2698892,Low_spent_Medium_value_payments,485.423899,0,-0.3707,-0.0708,-0.8469,-0.5281,-2.1216 +0x1f29d,CUS_0x9e18,August,23,403-95-3770,Teacher,31206.11,,8,5,15,7,"Personal Loan, Payday Loan, Personal Loan, Not Specified, Payday Loan, Mortgage Loan, and Payday Loan",21.08773006,14,17.74,8,_,252.11,32.83756088,14 Years and 10 Months,Yes,102.28426,290.3513404,Low_spent_Small_value_payments,183.6153162,0,1.403,1.3889,0.6418,-1.9597,0.2556 +0x1f2a9,CUS_0x4029,August,45,608-72-7122,Architect,17077.4,,9,10,30.06745738,5,"Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Student Loan",54.25666849,28.02748302,9.6,14,_,3117.350549,26.26799409,15 Years and 4 Months,NM,64.17188713,,Low_spent_Small_value_payments,260.0006224,0,0.215,-0.9536,0.4332,0.5836,-1.6683 +0x1f2b5,CUS_0x99a,August,26,323-97-0374,Doctor,76650.12,6558.51,8,7,8,4,"Auto Loan, Payday Loan, Home Equity Loan, and Student Loan",,11.54190689,13.37,5,Standard,1825.199112,28.75802523,18 Years and 10 Months,Yes,129.6209235,325.6817057,Low_spent_Medium_value_payments,480.5483709,0,-1.6783,0.2951,1.3897,0.8397,0.1147 +0x1f2c1,CUS_0x90f8,August,44,476-75-1739,Teacher,39594.66,3534.555,4,5,8,4,"Not Specified, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",3.154319063,4,9.25,5,Good,980.4525732,27.1941519,16 Years and 8 Months,No,87.05875181,148.1899733,High_spent_Medium_value_payments,383.1516636,0,1.605,1.0978,-0.8424,0.6025,1.2847 +0x1f2cd,CUS_0xa5d1,August,38,734-18-4220,Media_Manager,20269.93,1617.160833,7,6,30.06745738,7,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Student Loan, Not Specified, and Credit-Builder Loan",42.67752263,24,15.07,11,Bad,4682.910954,33.35526434,3 Years and 5 Months,Yes,45049,78.48491008,High_spent_Small_value_payments,224.6423289,0,0.873,1.5014,-0.8625,0.3024,-0.1237 +0x1f2d9,CUS_0x2390,August,21,020-36-4985,Musician,7314.55,794.5458333,10,6,32.06745738,4,"Student Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",42.96574836,24,,6,Bad,2320.240954,28.22495185,19 Years and 8 Months,Yes,18.36394527,69.0508767,Low_spent_Large_value_payments,235.3194734,0,-0.9756,-1.3737,0.8682,0.3543,-0.9885 +0x1f2e5,CUS_0x4bc0,August,30,339-47-9573,Manager,71534.68,6009.223333,7,7,34,2,"Personal Loan, and Debt Consolidation Loan",19.21990661,13,12.82,16,Standard,2094.49,31.64177066,14 Years and 10 Months,Yes,41080,801.418843,Low_spent_Small_value_payments,,0,-0.0142,0.3446,-0.501,-1.1834,-0.7892 +0x1f2f1,CUS_0x21ac,August,27,333-78-2654,Developer,55593.99,,7,6,30,6,"Home Equity Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",27.14060682,20.16288341,11.09,1709,Standard,1494.027364,26.50989094,18 Years and 6 Months,Yes,269.0332338,97.67819675,High_spent_Medium_value_payments,370.7718194,0,0.7677,0.0183,0.9006,0.1766,-0.1862 +0x1f2fd,CUS_0x2d14,August,36,086-99-1836,Writer,18995.89,,2,3,6,0,,0,2,8.42,5,Good,953.75,27.29122565,,No,60579,97.5068268,Low_spent_Medium_value_payments,342.2922565,0,-0.038,-0.3714,-2.3131,0.5531,0.5141 +0x1f309,CUS_0x29bf,August,22,600-61-7210,Writer,42870.09,3782.5075,512,4,12,4,"Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,20,20.02,13,_,840.82,32.43190198,18 Years and 6 Months,Yes,106.6230067,81.79727359,High_spent_Medium_value_payments,439.8304697,0,1.5249,0.4202,-0.7679,-1.385,-0.1054 +0x1f315,CUS_0xb0c4,August,18,810-15-1395,Entrepreneur,9001.345,,9,6,17,5,"Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, and Credit-Builder Loan",,27.7024342,15.37,16,Bad,1666.421128,39.3746811,20 Years and 0 Months,NM,22.87519143,10.4183582,High_spent_Medium_value_payments,297.8176587,0,2.0821,1.5175,0.3857,-0.2949,-1.0649 +0x1f321,CUS_0x7dd,August,47,507-09-1349,Lawyer,27589.12,2343.093333,4,5,15,1,Debt Consolidation Loan,28.42147352,20,6.89,3,Standard,99.33,30.08053558,19 Years and 6 Months,No,22.08793389,164.4043994,Low_spent_Large_value_payments,317.817,0,0.4707,0.4252,0.1498,-0.2192,-0.4266 +0x1f32d,CUS_0x8752,August,33,175-52-9172,_______,12050.595,,6,4,20,1,Not Specified,17.20908655,13,2.59,5,Standard,144.29,28.87024871,29 Years and 10 Months,No,7.167790768,25.59884678,High_spent_Medium_value_payments,333.1549875,0,-0.591,-0.5315,0.0873,-1.8722,0.0696 +0x1f339,CUS_0x5563,August,43,589-80-1768,Manager,14791.06,,7,8,16.06745738,3,"Auto Loan, Home Equity Loan, and Home Equity Loan",35.86270956,20,9.92,10,Bad,2515.450954,39.2905317,13 Years and 11 Months,Yes,22.19464048,36.13258539,High_spent_Large_value_payments,304.9113195,0,-0.9864,-0.3189,-0.8885,-0.3298,1.4333 +0x1f345,CUS_0x3340,August,24,665-08-8202,Teacher,96040.56,,2,5,3,4,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",17.32197068,13.47899567,9.75,1,_,121.5578702,37.20617648,29 Years and 2 Months,No,182.1919094,95.38317503,!@9#%8,753.8629156,0,-0.5993,0.2745,1.0639,-0.5018,-0.5719 +0x1f351,CUS_0x6630,August,32,501-84-0465,Musician,61607.34,,10,9,28.88954781,7,"Personal Loan, Not Specified, Mortgage Loan, Student Loan, Not Specified, Not Specified, and Auto Loan",,23,20.67,11,Bad,3146.2,33.88122388,9 Years and 9 Months,NM,1653.634139,146.5968117,High_spent_Medium_value_payments,274.7334683,0,0.2034,0.0621,0.755,0.3407,-0.5005 +0x1f35d,CUS_0x172d,August,39,587-57-4370,Musician,57242.61,,9,7,19,100,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",45.78263453,27.15394342,26.33,12,_,5498.575281,30.55223594,7 Years and 10 Months,Yes,144.3908794,162.4163499,High_spent_Medium_value_payments,405.7145206,0,-0.2395,-0.3004,2.2896,0.84,-1.0473 +0x1f369,CUS_0x843e,August,59,654-01-6120,Writer,15617.35,1579.445833,0,2,1,3,"Debt Consolidation Loan, Auto Loan, and Personal Loan",0,3,0.57,2,Good,224.2364031,39.31302278,24 Years and 8 Months,No,26.45046765,,Low_spent_Medium_value_payments,257.1580106,0,-0.3106,-0.0081,0.4616,-1.3288,1.0317 +0x1f375,CUS_0x228c,August,26,927-99-0920,Teacher,23977.89,1834.1575,3,5,16,4,"Personal Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",24.62268461,18,6.75,3,Standard,423.36,36.20678185,30 Years and 2 Months,No,72.00967242,123.7779157,Low_spent_Small_value_payments,277.6281618,0,-0.8436,-0.2112,-1.1382,0.5552,-1.9467 +0x1f381,CUS_0x6a9a,August,31,#F%$D@*&8,Media_Manager,10484.96,,10,6,23,9,"Home Equity Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",33.8795743,17.84594363,22.64,13,Bad,3617.626574,31.92776972,5 Years and 11 Months,Yes,59.77990402,53.16103385,Low_spent_Small_value_payments,286.2337288,0,-0.5397,0.572,-1.171,1.8537,-1.1653 +0x1f38d,CUS_0x415,August,28,710-72-5711,Lawyer,7534.185,,8,7,25,5,"Payday Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",19.35628147,15,7.65,15,Bad,2391.27,30.52375134,19 Years and 10 Months,Yes,17.49247694,,High_spent_Small_value_payments,269.8532373,0,-0.0187,-0.4725,-0.9889,0.1766,-1.4093 +0x1f399,CUS_0x6cfa,August,46,493-03-2477,Doctor,21809.35,,5,7,10,1,Personal Loan,0,2,,5,Good,739.01,31.50783349,25 Years and 2 Months,No,16.39235759,46.82990193,High_spent_Medium_value_payments,354.0223238,0,-1.1941,1.3295,-0.2352,-0.376,-0.8277 +0x1f3a5,CUS_0xba92,August,39,847-80-5900,Writer,145114.16,12010.84667,1,7,9,0,,10.97303656,11,11.72,9,_,690.8079621,41.98522117,24 Years and 5 Months,No,0,658.6129773,High_spent_Small_value_payments,887.5764025,0,0.7257,-1.2636,-0.7164,-0.9994,-0.7887 +0x1f3b1,CUS_0x90ef,August,53,096-71-6003,_______,17411.26,,1,2,9,2,"Credit-Builder Loan, and Credit-Builder Loan",0,0,7.41,2,Good,734.4958113,29.95238103,26 Years and 2 Months,No,24.1031426,39.04610757,Low_spent_Medium_value_payments,349.4327532,0,0.7163,-1.4527,-0.3824,0.5298,-1.0343 +0x1f3bd,CUS_0x6736,August,27,025-90-1066,Musician,39593.77,3308.480833,2,1,5,4,"Auto Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",6.403133854,9,10.27,8,Good,1333.040654,31.7786622,28 Years and 11 Months,NM,78.73686094,415.7758815,Low_spent_Small_value_payments,172.8295955,0,0.7004,-0.0754,0.4538,-1.3414,0.4927 +0x1f3c9,CUS_0x84c9,August,55,779-66-2573,Lawyer,88044.6,7073.05,5,4,5,0,,,1,10.57,7,Good,344.46,36.81238889,33 Years and 5 Months,No,0,,Low_spent_Small_value_payments,244.9514558,0,1.5351,-0.5904,-0.5041,0.3011,0.3999 +0x1f3d5,CUS_0x6a11,August,35,#F%$D@*&8,Media_Manager,33352.41,2671.207498,6,4,10,2,"Auto Loan, and Auto Loan",28.2028869,22,17.68,5,Standard,1422.2,32.42260515,18 Years and 10 Months,No,175.7010568,,High_spent_Medium_value_payments,449.925185,0,0.0174,0.733,-0.9373,-0.8772,0.5169 +0x1f3e1,CUS_0xbcc8,August,30,420-90-0566,_______,14000.59,1383.715833,3,3,4,2,"Not Specified, and Home Equity Loan",,10,13.68,5,Good,1062.47,33.204599,27 Years and 11 Months,No,20.25217484,107.9378392,Low_spent_Small_value_payments,300.1815693,0,-0.4016,0.3109,0.8257,0.3417,0.6351 +0x1f3ed,CUS_0x17e8,August,41,092-76-3178,Mechanic,102885.75,8543.8125,1,6,1,2,"Personal Loan, and Student Loan",6.432870313,9,4.96,6,_,577.0024973,31.04964433,25 Years and 3 Months,No,38367,,Low_spent_Medium_value_payments,254.8716073,0,0.1124,2.2193,-0.1468,0.5054,-0.5362 +0x1f3f9,CUS_0x1ec9,August,46,503-13-4318,Entrepreneur,18756.78,1400.065,10,6,22,7,"Personal Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Payday Loan",,28.2130614,3.71,10,_,3822.323098,28.64878241,6 Years and 2 Months,NM,77.47870599,127.1587332,Low_spent_Small_value_payments,225.3690608,0,-0.0539,0.2574,-0.7999,-0.9437,-0.2484 +0x1f405,CUS_0x5721,August,29,633-49-9564,Journalist,20488.29,1811.3575,8,5,34.06745738,9,"Auto Loan, Home Equity Loan, Home Equity Loan, Auto Loan, Payday Loan, Auto Loan, Payday Loan, Payday Loan, and Student Loan",37.18221387,18,20.57,8,Bad,3441.480954,24.8521648,8 Years and 3 Months,Yes,131.4652937,,High_spent_Medium_value_payments,220.6898887,0,0.5263,0.8784,-1.524,-0.3504,-0.1456 +0x1f411,CUS_0xacf7,August,57,918-95-7408,Mechanic,142544.36,,0,4,2.288361749,0,,0,3,4.45,4,_,786.1520411,36.55285966,19 Years and 0 Months,NM,726.0883564,563.4498594,High_spent_Large_value_payments,1325.767686,0,-2.0928,0.4416,-0.3649,-0.2531,1.0117 +0x1f41d,CUS_0xa5ee,August,56,872-11-6292,Manager,22158.995,,2,5,5,1,Home Equity Loan,0,0,8.53,4,_,642.6285509,26.21302176,26 Years and 9 Months,No,18.40798088,121.6033639,Low_spent_Small_value_payments,322.80122,0,-0.7485,-1.2312,0.7204,-0.6844,-0.7358 +0x1f429,CUS_0x5a83,August,49,862-76-9527,Engineer,81049.77,6817.1475,7,6,7,2,"Auto Loan, and Payday Loan",24.60310775,16,7.86,5,Good,378.4480715,28.93851695,16 Years and 2 Months,No,72.01693628,,Low_spent_Medium_value_payments,547.6880843,0,0.1815,1.2719,0.0337,2.9169,-1.2991 +0x1f435,CUS_0x2443,August,44,502-72-1663,Writer,8776.715,,6,6,24,5,"Student Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",,21.36596891,5.37,12,Bad,4754.340212,28.46685821,8 Years and 10 Months,Yes,26.25183367,,Low_spent_Small_value_payments,284.8111115,0,-0.4922,-1.0557,-0.4621,0.8194,-0.4555 +0x1f441,CUS_0xbb6c,August,26,181-72-5400,Teacher,62855.32,5115.943333,10,5,31,9,"Personal Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Not Specified, Payday Loan, Student Loan, Payday Loan, and Student Loan",48.34874884,23.69359797,7.34,10,_,1490.461023,34.23648315,6 Years and 3 Months,Yes,396.6898173,494.2323327,Low_spent_Medium_value_payments,,0,-0.2004,0.6148,0.2092,1.2505,0.6042 +0x1f44d,CUS_0x9a2c,August,26,485-92-4277,Writer,29280.44,2237.716498,2,5,3,0,,8.71160928,3.643839628,11.93,5,_,106.3520687,25.86246082,21 Years and 3 Months,NM,220.3201688,93.96088403,!@9#%8,401.8427826,0,1.3648,0.2797,-1.1051,-0.2929,-0.8902 +0x1f459,CUS_0xab65,August,18,514-55-7653,Accountant,36368.77,3229.730833,7,3,12,4,"Mortgage Loan, Auto Loan, Mortgage Loan, and Mortgage Loan",20.27952705,,5.76,6,Standard,347.66,32.11665475,19 Years and 6 Months,No,83.04488447,75.68767249,High_spent_Large_value_payments,404.2405264,0,-2.3235,-0.2889,0.1353,-0.6808,-0.5658 +0x1f465,CUS_0x716,August,44,356-20-4069,Lawyer,18897.13,,9,7,33.06745738,8,"Student Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Payday Loan, and Mortgage Loan",35.54420361,23,28.39,13,Bad,3575.220954,28.16528263,10 Years and 6 Months,Yes,87.47634548,,Low_spent_Large_value_payments,192.4112456,0,-0.0693,0.0784,-0.9358,0.3021,1.6289 +0x1f471,CUS_0x708f,August,27,084-46-9177,Journalist,38378.18,,7,10,34,5,"Home Equity Loan, Mortgage Loan, Mortgage Loan, Student Loan, and Not Specified",41.35713572,25.41728537,,14,Bad,2233.695565,30.15768228,20 Years and 6 Months,NM,99.13710904,,High_spent_Medium_value_payments,381.6080724,0,-1.688,-1.1216,0.467,-0.8544,0.3966 +0x1f47d,CUS_0x97d1,August,32,280-76-3810,Media_Manager,37885.46,,4,7,22,6,"Credit-Builder Loan, Auto Loan, Auto Loan, Student Loan, Auto Loan, and Debt Consolidation Loan",,9.05769611,9.61,11,Standard,2861.425165,24.412646,14 Years and 9 Months,NM,122.5557919,,Low_spent_Small_value_payments,220.7014754,0,1.2871,-0.1444,0.1841,1.2737,-0.0669 +0x1f489,CUS_0x859a,August,29,526-81-2313,Musician,37968.01,3190.000833,2,5,5,3,"Personal Loan, Auto Loan, and Credit-Builder Loan",,5,4.61,1,_,664.5630235,38.3134113,18 Years and 9 Months,No,65.01749124,218.2034773,High_spent_Small_value_payments,318.7555269,0,0.6247,1.4567,-0.0514,1.1844,-0.6634 +0x1f495,CUS_0x9a18,August,43,401-98-9699,Musician,40517.81,3215.484167,1,2,2,1,Credit-Builder Loan,8.610881464,10,5.47,0,Good,1305.741663,38.36030465,30 Years and 11 Months,No,25.05956173,194.0151914,High_spent_Small_value_payments,381.5039877,0,-0.535,-0.992,0.9708,0.4351,-1.0764 +0x1f4a1,CUS_0x9730,August,32,637-99-8103,Teacher,55246.77,,4,4,20,2,"Debt Consolidation Loan, and Debt Consolidation Loan",17.2992778,8.969390422,11.19,6,Standard,2037.957425,38.02403226,5 Years and 11 Months,Yes,71.20560633,531.6041252,Low_spent_Small_value_payments,126.2800185,0,0.4709,0.5133,-1.19,-2.0851,-0.6462 +0x1f4ad,CUS_0x30df,August,38,087-14-9721,Manager,122579.04,10510.92,1,3,0.288361749,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,7,9.98,7,Good,1292.184824,37.57250188,24 Years and 5 Months,No,207.0040735,847.7828309,High_spent_Small_value_payments,737.9823452,0,-0.1702,-0.2327,-0.5881,-1.4838,1.4055 +0x1f4b9,CUS_0xb024,August,20,145-30-4355,Scientist,14176.215,1016.35125,7,4,7,2,"Debt Consolidation Loan, and Student Loan",29.42790541,20,19.81,7,Standard,399.68,25.04382617,13 Years and 0 Months,Yes,19.21565199,39.47784536,Low_spent_Small_value_payments,332.9416276,0,-0.462,-0.425,1.4509,-1.331,2.3497 +0x1f4c5,CUS_0xbe5c,August,30,861-80-8543,_______,8820.825,,8,7,3017,6,"Mortgage Loan, Home Equity Loan, Not Specified, Payday Loan, Not Specified, and Personal Loan",,30.29939703,21.44,12,Bad,5039.002217,35.82548879,1 Years and 2 Months,Yes,43.69797941,32.57475205,Low_spent_Medium_value_payments,305.0341435,0,1.1361,1.604,-0.0906,-0.4054,-0.3719 +0x1f4d1,CUS_0x9c49,August,34,506-39-1870,Developer,66092.25,5563.6875,4,3,16,4,"Personal Loan, Mortgage Loan, Auto Loan, and Auto Loan",15.23822475,11,8.93,5,Standard,1209.6,37.54047747,9 Years and 10 Months,Yes,150.0105462,62.12339103,High_spent_Medium_value_payments,594.2348128,0,-0.4817,-0.5154,0.1337,-0.3958,1.5421 +0x1f4dd,CUS_0xb675,August,39,579-70-0511,Teacher,9436.415,,8,9,28.88954781,8,"Credit-Builder Loan, Mortgage Loan, Student Loan, Student Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",19.93037784,16,18.59,8,Bad,3073.02,29.62322399,3 Years and 10 Months,Yes,1364.80621,28.82167164,High_spent_Small_value_payments,227.078829,0,0.3674,1.2637,-0.613,1.1467,0.0118 +0x1f4e9,CUS_0xb2a1,August,22,#F%$D@*&8,Developer,14006.745,1017.22875,6,4,7,7,"Not Specified, Credit-Builder Loan, Home Equity Loan, Not Specified, Not Specified, Not Specified, and Mortgage Loan",12.25470886,11,17.06,4,Standard,1347.31,35.90813282,17 Years and 10 Months,Yes,64.23667898,97.2674424,Low_spent_Small_value_payments,230.2187536,0,-2.0605,-0.5857,0.4708,-1.9812,-0.3999 +0x1f4f5,CUS_0x61a7,August,35,859-61-0650,Accountant,33785.2,,4,6,14,3,"Debt Consolidation Loan, Not Specified, and Payday Loan",33.53871258,23.67509386,18.18,7,Standard,1803.877229,36.57869706,7 Years and 0 Months,Yes,59.13881949,,Low_spent_Small_value_payments,136.1490819,0,-0.4999,0.4091,0.8519,0.2438,-0.7129 +0x1f501,CUS_0xb745,August,40,230-68-7913,Developer,60515.32,5148.943333,7,6,5,1,Credit-Builder Loan,,8,3.35,7,Good,1170.909937,29.84404442,29 Years and 11 Months,NM,34.48954469,749.6463875,Low_spent_Small_value_payments,107.511512,0,0.0192,-0.8991,-2.1039,-0.6741,0.6544 +0x1f50d,CUS_0x1d64,August,27,589-05-3779,Teacher,73627.68,6280.64,6,6,19,2,"Debt Consolidation Loan, and Personal Loan",15.26943286,13,16.71,6,Standard,946.92,25.83028497,26 Years and 2 Months,Yes,67.09929401,168.4992473,Low_spent_Medium_value_payments,672.4654586,0,-1.3583,0.2271,1.662,-0.9927,-0.2565 +0x1f519,CUS_0x803c,August,18,941-91-2197,Entrepreneur,24883.01,,4,71,7,3,"Mortgage Loan, Student Loan, and Mortgage Loan",25.72170457,20,10.87,3,Standard,646.05,29.54322784,15 Years and 10 Months,NM,37.38055367,19.64710118,High_spent_Medium_value_payments,375.8307618,0,-0.4008,1.0139,1.2703,0.6331,-0.7188 +0x1f525,CUS_0x3ce7,August,25,110-85-1519,Architect,7269.655,,6,9,22.06745738,9,"Not Specified, Credit-Builder Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",26.70397296,17.29432111,21.72,8,Bad,5053.870848,37.36691288,1 Years and 5 Months,Yes,33.84909039,,Low_spent_Small_value_payments,259.9341902,0,2.8415,0.9839,0.5013,-0.4736,1.4663 +0x1f531,CUS_0x6951,August,40,811-90-5713,Writer,35462.52,,8,9,32.06745738,4,"Auto Loan, Student Loan, Payday Loan, and Credit-Builder Loan",35.29091407,17,19.14,12,Bad,2595.280954,34.84551569,8 Years and 8 Months,Yes,75.22703205,181.3313397,Low_spent_Large_value_payments,258.5423403,0,1.4552,-0.6899,0.9428,-0.5397,-0.6382 +0x1f53d,CUS_0xc4f,August,34,955-02-8112,Media_Manager,16609.08,1524.09,5,6,20,1,Auto Loan,26.32211756,20,0.99,4,Standard,606.57,36.00119762,30 Years and 10 Months,No,13.54457298,69.51170778,Low_spent_Medium_value_payments,349.3527192,0,1.8778,-0.364,1.3256,-2.2719,0.2793 +0x1f549,CUS_0x8a36,August,37,509-64-1439,Entrepreneur,34102.64,2742.886667,7,5,26,5,"Mortgage Loan, Personal Loan, Student Loan, Not Specified, and Auto Loan",,14.81386448,6.25,6,_,4401.898509,29.80910575,10 Years and 0 Months,Yes,140.119803,51.88278016,High_spent_Large_value_payments,322.2860835,0,-0.5289,0.8043,0.6258,-0.6598,0.7483 +0x1f555,CUS_0x54b,August,31,468-64-0497,Architect,55209.81,4303.8175,5,3,23,7,"Payday Loan, Credit-Builder Loan, Payday Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",25.98878114,16.45353103,10.41,6,Standard,2165.483337,33.10628553,14 Years and 6 Months,Yes,231.9278112,,Low_spent_Large_value_payments,134.4146816,0,0.5663,0.6896,-1.7934,-0.3708,-1.2549 +0x1f561,CUS_0x2038,August,33,563-29-1145,_______,29818.78,,4,4,7,2,"Credit-Builder Loan, and Student Loan",,3,5.99,6,Good,702.2,32.05173167,31 Years and 10 Months,No,45.97729869,53.10730365,High_spent_Small_value_payments,386.705231,0,-0.538,-0.2078,-1.2982,0.3085,-0.5415 +0x1f56d,CUS_0x58ef,August,34,259-60-9040,Doctor,57776.52,,4,4,11,0,,8.461801663,8,10.57,5,Standard,165.6993874,24.77136269,31 Years and 10 Months,No,0,114.7716528,High_spent_Small_value_payments,670.1003756,0,1.1325,-1.5524,1.6701,-1.02,-0.9288 +0x1f579,CUS_0xbebc,August,44,961-21-1989,Musician,18968.18,,7,7,8,3,"Credit-Builder Loan, Personal Loan, and Personal Loan",,8,10.55,7,Standard,1795.52,28.22843392,20 Years and 2 Months,Yes,39.5250989,55.2920896,Low_spent_Medium_value_payments,340.9509782,0,0.1523,0.3629,1.1404,0.799,0.7895 +0x1f585,CUS_0xaf6f,August,52,#F%$D@*&8,Journalist,60733.7,5189.141667,7,3,4.288361749,2,"Debt Consolidation Loan, and Auto Loan",4.583552454,6,5.36,5,Standard,491.5215796,28.02272217,29 Years and 5 Months,Yes,93.18162,504.6122268,High_spent_Large_value_payments,592.5424877,0,-2.3914,-1.9178,0.5212,1.8585,-1.2606 +0x1f591,CUS_0x8916,August,42,272-25-4840,Architect,54908.22,4440.685,4,3,6,0,,23.87406473,20,18.65,6,Standard,1282.04,35.16052438,16 Years and 0 Months,Yes,0,112.1012843,High_spent_Large_value_payments,571.9672157,0,-0.4305,0.4597,0.4751,-0.8715,-1.0082 +0x1f59d,CUS_0x6159,August,40,893-00-5940,Scientist,133670.48,,3,3,20,4,"Student Loan, Not Specified, Student Loan, and Debt Consolidation Loan",15.39832649,,18.11,7,Standard,1160.13,31.12743501,16 Years and 10 Months,Yes,263.5778484,790.8609837,Low_spent_Medium_value_payments,333.1818345,0,-0.3546,1.171,-0.0721,-0.4697,1.118 +0x1f5a9,CUS_0xbe0a,August,50,410-95-7076,Doctor,173721.16,,5,5,3,1,Student Loan,0,0,11.75,5,_,905.23,43.28912086,22 Years and 2 Months,No,124.8676348,188.2823478,High_spent_Medium_value_payments,1400.426351,0,1.1783,-0.5016,-0.1498,-0.144,-0.146 +0x1f5b5,CUS_0xafeb,August,26,053-68-3074,Manager,15910.33,1111.860833,8,8,21.88954781,9,"Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",,16,15.26,8,_,4193.048129,30.94303213,14 Years and 2 Months,Yes,1440.784495,34.51492294,High_spent_Medium_value_payments,194.9303704,0,0.446,0.5476,0.2993,-0.4247,0.0445 +0x1f5c1,CUS_0x958f,August,19,194-93-5515,Scientist,97907.04,7897.92,8,7,7.288361749,4,"Debt Consolidation Loan, Auto Loan, Personal Loan, Not Specified, and Mortgage Loan",16.04800335,15.39031601,19.48,6,Standard,735.7279966,29.85362625,8 Years and 0 Months,Yes,353.6825178,594.2762675,High_spent_Medium_value_payments,511.7706758,0,1.0114,0.5732,0.5651,1.5196,-0.099 +0x1f5cd,CUS_0x5dd0,August,34,236-43-2661,Journalist,20058.555,,5,3,4,100,"Not Specified, Not Specified, and Mortgage Loan",1.848209221,4,6.69,3,Good,357.5905441,34.43253669,16 Years and 2 Months,No,35.39825995,136.2622813,Low_spent_Small_value_payments,315.1521196,0,1.2684,-2.4235,1.0598,0.287,0.2297 +0x1f5d9,CUS_0x24e8,August,41,418-89-9094,Media_Manager,17725.57,1691.130833,6,9,20.88954781,6,"Payday Loan, Home Equity Loan, Not Specified, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,15.75939205,22.71,,_,2246.494943,32.98018798,8 Years and 2 Months,Yes,1407.061864,226.9944717,Low_spent_Small_value_payments,130.7266662,0,-0.7244,-1.7158,-0.0057,-0.2922,-0.139 +0x1f5e5,CUS_0x6081,August,46,424-83-6470,Mechanic,156470,,1,3,7.288361749,2,"Mortgage Loan, Home Equity Loan, and Auto Loan",6.051284601,8,2.58,3,_,1212.896432,30.95662628,33 Years and 3 Months,No,261.8310155,11877.34183,Low_spent_Large_value_payments,577.685846,0,0.2034,-1.0929,0.5785,-1.2045,-0.2642 +0x1f5f1,CUS_0x556e,August,31,194-83-8692,Accountant,11889.26,,5,4,14,3,"Payday Loan, Personal Loan, and Credit-Builder Loan",,16,17,2,_,321.5440651,39.93166318,26 Years and 5 Months,Yes,23.45559539,51.38556862,High_spent_Small_value_payments,266.3072311,0,-0.3583,1.5644,-1.6928,1.0197,0.4281 +0x1f5fd,CUS_0x6eee,August,55,215-69-1291,Engineer,73579.8,,4,5,7,2,"Auto Loan, and Credit-Builder Loan",0,1,4.94,7,Good,1068.63678,24.33164508,25 Years and 5 Months,No,100.2986946,,High_spent_Medium_value_payments,671.2404976,0,0.185,1.3279,0.8196,-0.124,-1.3495 +0x1f609,CUS_0xa791,August,26,582-81-5952,Architect,35970.54,,310,6,3,2,"Credit-Builder Loan, and Mortgage Loan",4.521348531,7,11.49,0,Good,1180.347576,35.03686094,16 Years and 10 Months,No,29946,189.0414315,Low_spent_Large_value_payments,326.2723565,0,-0.8386,0.6881,0.5553,-2.5172,1.9757 +0x1f615,CUS_0xd78,August,26,884-85-6493,Engineer,83642.91,6148.311617,3,57,6,0,,15.62396691,12,11.57,9,_,793.04,28.05492769,20 Years and 0 Months,Yes,882.9308834,,Low_spent_Large_value_payments,455.1362046,0,0.1814,0.7693,0.3114,-0.3516,-0.8616 +0x1f621,CUS_0x2b58,August,33,571-37-0616,Doctor,35479.47,2927.6225,5,3,7,4,"Not Specified, Credit-Builder Loan, Not Specified, and Auto Loan",,13,8.37,3,Standard,1381.1,36.93766829,19 Years and 9 Months,Yes,64.23063203,86.70366512,High_spent_Medium_value_payments,391.8279528,0,0.4182,-0.0043,0.5024,1.0963,0.9411 +0x1f62d,CUS_0x4829,August,49,070-79-0780,Media_Manager,14180.935,,4,6,8,0,,8.959300643,11,10.55,,Good,920.4347637,30.8210222,30 Years and 9 Months,No,0,48.85795226,Low_spent_Small_value_payments,364.195634,0,0.9856,0.345,-0.6847,0.076,0.0072 +0x1f639,CUS_0xbb82,August,33,847-83-6051,Architect,51886.18,4454.848333,8,7,7,4,"Debt Consolidation Loan, Not Specified, Mortgage Loan, and Home Equity Loan",20.47143791,,15.76,8,Standard,1390.84,41.21423831,17 Years and 0 Months,NM,155.6567124,186.2834996,Low_spent_Medium_value_payments,383.5446213,0,-0.1814,-0.0673,0.824,0.1933,-1.8915 +0x1f645,CUS_0xb517,August,42,789-03-7943,Musician,75605.82,5820.748743,0,3,4,0,,,1,2.06,7,Good,115.9727139,32.2607526,25 Years and 3 Months,No,686.736257,247.9679235,Low_spent_Medium_value_payments,714.7805837,0,0.2035,-0.5652,1.6886,-2.468,-0.9679 +0x1f651,CUS_0x929a,August,39,108-81-3545,Lawyer,10263.79,590.3158333,5,3,12,1,Credit-Builder Loan,20.03905202,14,2.73,,Good,666.4735625,36.00242615,20 Years and 10 Months,No,6.81461121,53.34155648,Low_spent_Medium_value_payments,285.0088247,0,1.1959,-1.6325,-1.843,1.0951,-0.7816 +0x1f65d,CUS_0x8e30,August,20,080-35-3013,_______,36938.82,,8,6,13,5,"Credit-Builder Loan, Student Loan, Home Equity Loan, Personal Loan, and Auto Loan",16.12295942,12,10.06,12,Standard,771.6,33.67213963,12 Years and 2 Months,Yes,112.2727657,80.39848396,High_spent_Small_value_payments,345.5522504,0,1.8265,-0.4635,-0.2578,0.6053,-0.6013 +0x1f669,CUS_0x7cdc,August,55,303-66-3456,Developer,40038.58,,4,3,2.288361749,0,,5.907677306,8,7.25,8,_,15.09747084,40.91882589,21 Years and 5 Months,No,0,665.3312468,High_spent_Small_value_payments,381.655598,0,-2.3046,-1.1418,-0.2542,-0.9584,-0.4189 +0x1f675,CUS_0xb982,August,52,688-83-9384,Accountant,59494.14,,0,4,1.288361749,0,Credit-Builder Loan,0,3,6.6,1,Good,662.71,30.28557665,29 Years and 4 Months,No,31.13410074,610.1482106,Low_spent_Small_value_payments,584.9396497,0,0.1111,-0.1303,0.6157,0.2061,-1.4857 +0x1f681,CUS_0x7080,August,40,026-31-3577,Teacher,58774.86,,7,6,17,7,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Student Loan",,18.09687744,2.46,14,Bad,2329.124687,34.48374411,15 Years and 2 Months,Yes,290.9449617,256.7349314,Low_spent_Small_value_payments,222.0106069,0,-1.9036,0.54,0.1688,-1.0433,0.4082 +0x1f68d,CUS_0x744f,August,27,528-53-4876,Doctor,9527.09,604.9241667,8,8,32.88954781,8,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",,19,29.09,10,Bad,4208.66,38.45178901,14 Years and 6 Months,Yes,1385.21297,,Low_spent_Small_value_payments,214.1544075,0,0.3677,-0.5941,0.1219,0.7896,1.2836 +0x1f699,CUS_0x7899,August,19,606-93-6926,Entrepreneur,20813.06,,8,5,25.06745738,5,"Not Specified, Not Specified, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",,27.87935893,3.44,,_,1762.071813,25.90771349,15 Years and 2 Months,Yes,70.48717033,58.06109454,Low_spent_Small_value_payments,280.7736138,0,-0.2061,1.3176,1.2932,-0.0872,-1.04 +0x1f6a5,CUS_0x99d4,August,38,617-22-3560,Teacher,20592.97,1843.080833,637,4,12,7,"Auto Loan, Not Specified, Auto Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Credit-Builder Loan",13.14058108,11.77111402,,5,_,1775.47737,30.93489243,11 Years and 10 Months,Yes,85.2835788,147.4263137,Low_spent_Large_value_payments,221.5981909,0,-1.0963,-0.0225,0.2017,1.0933,-0.1217 +0x1f6b1,CUS_0xb1cd,August,51,350-77-3663,_______,72783.06,6241.255,6,5,17,1,Debt Consolidation Loan,,17,3.52,3,Standard,752.52,22.86129886,26 Years and 4 Months,No,31.75168841,783.6120624,Low_spent_Small_value_payments,98.76174922,0,-0.8853,-0.227,-0.076,0.0931,-0.0441 +0x1f6bd,CUS_0x4a05,August,24,100-32-8737,Entrepreneur,50051.28,3934.94,6,9,34,3,"Payday Loan, Student Loan, and Auto Loan",34.31624237,23,9,13,Bad,1936.41,28.67903769,9 Years and 5 Months,Yes,102.9564408,147.7509413,High_spent_Small_value_payments,402.7866179,0,0.0177,-0.4613,1.1399,1.3872,1.3446 +0x1f6c9,CUS_0x893f,August,44,437-40-9812,_______,53956.32,4514.36,4,6,12,4,"Credit-Builder Loan, Not Specified, Student Loan, and Personal Loan",12.56528892,11,19.13,0,Standard,432.92,41.18616792,22 Years and 5 Months,Yes,158.8455779,68.11602205,High_spent_Large_value_payments,464.4744,0,0.6354,1.0219,-0.4759,0.805,0.4451 +0x1f6d5,CUS_0x9428,August,30,637-66-0198,Engineer,49099.68,4075.967589,8,8,25.88954781,9,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Not Specified",48.91390258,27.44966099,7.98,14,Bad,2442.186032,36.32714537,16 Years and 6 Months,Yes,1562.881547,47.31188721,High_spent_Large_value_payments,275.6128955,0,-0.6135,-1.1022,1.1278,0.5233,1.0406 +0x1f6e1,CUS_0x1018,August,18,731-19-8119,Accountant,61194.81,5014.5675,7,7,24.06745738,8,"Credit-Builder Loan, Payday Loan, Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",37.0960898,25.51209609,28.63,8,Bad,3382.421822,28.29176143,14 Years and 3 Months,Yes,225.3686914,166.5306299,High_spent_Medium_value_payments,332.8371408,0,1.187,0.5488,-0.9144,1.3295,-0.8714 +0x1f6ed,CUS_0x29d5,August,33,325-05-9932,Scientist,133547.25,11322.9375,0,4,6.288361749,0,Debt Consolidation Loan,,3,8.36,1,Good,323.83,37.76209186,33 Years and 5 Months,No,104.0162763,,Low_spent_Large_value_payments,276.5555357,0,-0.2181,-0.402,-1.622,-2.7538,0.5806 +0x1f6f9,CUS_0x2208,August,37,322-64-6039,Entrepreneur,78956.73,,7,3,14,2,"Payday Loan, and Debt Consolidation Loan",27.26435554,19,10.87,515,_,436.82,25.85655843,22 Years and 2 Months,Yes,128.5586536,313.7803203,Low_spent_Medium_value_payments,490.0337761,0,-1.1265,1.2148,0.5952,1.8606,-0.8661 +0x1f705,CUS_0x69a8,August,39,737-04-1982,Developer,62536.32,5174.36,7,8,25.06745738,100,"Personal Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Payday Loan",,22,33.85,11,Bad,3819.450954,36.64685472,9 Years and 10 Months,Yes,210.4690357,34.74883267,High_spent_Large_value_payments,485.4978437,0,-1.2524,-1.5473,-0.5802,0.4287,1.3108 +0x1f711,CUS_0x8e94,August,56,055-08-1093,Architect,87621.78,7385.815,4,4,1.288361749,4,"Home Equity Loan, Student Loan, Auto Loan, and Mortgage Loan",7.230553249,9,-3.76,4,_,945.593955,34.13873245,32 Years and 4 Months,No,282.7994831,1136.953192,Low_spent_Small_value_payments,116.1661287,0,0.4173,-1.0687,0.8881,-0.4778,0.0157 +0x1f71d,CUS_0x824c,August,22,707-76-1701,Engineer,91610.4,,7,6,5,1,Personal Loan,,20,3.99,1,Standard,938.3791745,29.78842461,22 Years and 2 Months,No,18419,,Low_spent_Medium_value_payments,234.6820609,0,-0.9527,1.4004,1.928,1.5675,-0.0259 +0x1f729,CUS_0xadc4,August,34,640-99-9965,Lawyer,31506.9,,6,10,35.06745738,7,"Credit-Builder Loan, Personal Loan, Not Specified, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",32.77022514,16,16.75,8,Standard,1836.110954,34.19839745,13 Years and 3 Months,Yes,115.7238399,57.46975948,High_spent_Large_value_payments,284.9436126,0,-1.1695,-0.6824,-0.7674,-2.1516,0.7929 +0x1f735,CUS_0x3060,August,23,657-71-7552,Developer,40923.34,3429.278333,6,6,24,8,"Student Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, Payday Loan, Auto Loan, Home Equity Loan, and Personal Loan",41.44632407,25,20.37,7,Bad,4654.92,30.43975199,6 Years and 0 Months,Yes,244.1355914,56.09001573,High_spent_Large_value_payments,282.7022262,0,0.0409,-1.0465,0.316,-0.746,0.7479 +0x1f741,CUS_0xb915,August,31,647-84-4933,_______,37896.71,,5,5,3,3,"Debt Consolidation Loan, Auto Loan, and Personal Loan",,2.402042555,11.78,8,_,711.7022887,38.55690114,30 Years and 3 Months,No,86.02948649,40.89386256,!@9#%8,411.5825676,0,-0.5212,-0.3358,-1.2204,2.1881,-2.3604 +0x1f74d,CUS_0x8d2e,August,18,771-32-9762,_______,35940.36,,6,7,32,6,"Personal Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Not Specified, and Not Specified",29.55278311,15,1.29,13,Bad,2694.55,28.06595759,18 Years and 8 Months,Yes,107.4893654,,High_spent_Small_value_payments,316.2845956,0,-0.2974,-1.8181,0.9359,1.5052,-0.6975 +0x1f759,CUS_0x22ac,August,18,217-36-2323,Accountant,57786.12,,6,6,32,6,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",28.83724939,19,18.69,7,Standard,1730.05,25.45930449,,Yes,271.749031,296.3164767,High_spent_Small_value_payments,160.5854923,0,-1.0275,-0.4414,-2.6961,-1.3733,0.5556 +0x1f765,CUS_0x39a0,August,33,365-78-5880,Scientist,74005.12,5941.093333,6,8,19.88954781,6,"Debt Consolidation Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",31.5566799,22.87593658,12.69,9,_,2456.390911,34.19536372,13 Years and 3 Months,Yes,1514.394534,442.7465557,Low_spent_Small_value_payments,232.6381627,0,-0.5767,0.024,0.3985,0.6895,1.6705 +0x1f771,CUS_0x5ebc,August,41,685-29-3104,Writer,19026.7,1869.558333,8,6,32.06745738,6,"Student Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Personal Loan",24.27136841,16,29.75,13,Bad,3456.160954,28.76266104,9 Years and 10 Months,Yes,54.39768772,51.59536337,Low_spent_Large_value_payments,324.2424943,0,-1.0552,1.047,-0.6814,-0.4682,-1.6584 +0x1f77d,CUS_0x2aed,August,44,650-64-2134,Engineer,79794.6,,8,4,7,4,"Auto Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",15.87149801,13,13.46,5,Standard,830.5,34.39931544,17 Years and 8 Months,Yes,224.7246763,597.0883737,Low_spent_Large_value_payments,140.94195,0,0.456,1.541,-1.2579,-0.4568,0.5538 +0x1f789,CUS_0xc063,August,33,987-95-1111,Entrepreneur,14403.39,922.2825,5,4,8,3,"Mortgage Loan, Mortgage Loan, and Mortgage Loan",12.82610882,12,15.98,4,Standard,2410.015908,29.7457886,14 Years and 8 Months,Yes,23.30431521,131.2196333,Low_spent_Small_value_payments,244.8269764,0,-0.1556,-0.7213,0.0679,-0.8486,0.4136 +0x1f795,CUS_0x5e6a,August,38,253-27-5552,Engineer,31762.34,,3,6,7,2,"Personal Loan, and Auto Loan",16.03683373,12,0.51,4,Standard,175.33,39.51285361,31 Years and 9 Months,No,325.3988707,151.5193137,!@9#%8,344.2868928,0,1.5628,0.6923,0.6455,-0.8074,-1.3324 +0x1f7a1,CUS_0x9f20,August,53,347-03-5379,Engineer,29491.67,2178.639167,5,3,3,1,Payday Loan,,8,2.63,5,Good,757.9680153,37.69186825,30 Years and 8 Months,No,14.67432172,54.94341192,High_spent_Medium_value_payments,404.6454789,0,-0.4108,0.2044,0.0841,1.2091,-0.4241 +0x1f7ad,CUS_0x922,August,32,278-74-1400,Architect,33599.08,2749.923333,5,5,13,4,"Personal Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",9.998931714,10,7.18,5,Standard,743.6,32.85332538,27 Years and 3 Months,Yes,95.59666049,306.6105355,Low_spent_Small_value_payments,162.7851374,0,2.7571,0.1335,-0.194,-0.2497,0.3996 +0x1f7b9,CUS_0x9937,August,46,429-15-7646,Musician,20501034,7257.226667,9,6,22,5,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, and Home Equity Loan",,21.6925676,6.13,11,Bad,1647.348769,28.48837046,9 Years and 10 Months,Yes,220.1984405,179.9678715,High_spent_Medium_value_payments,575.5563547,0,1.1616,0.3791,0.2207,-1.3833,0.3928 +0x1f7c5,CUS_0x5929,August,38,788-65-1538,Teacher,8906.395,,10,5,26.06745738,7,"Student Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Not Specified, Student Loan, and Credit-Builder Loan",24.05965427,15,16.74,9,_,3260.690954,32.99126227,8 Years and 0 Months,Yes,34.32047259,80.61289725,Low_spent_Medium_value_payments,226.1663005,0,0.3338,-0.6748,0.2647,2.0613,-0.5779 +0x1f7d1,CUS_0xb518,August,50,067-00-6687,Accountant,127855.83,10298.40341,5,7,1,4,"Payday Loan, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",17.97003945,13.87562095,9.2,5,_,579.7503076,30.95693478,,No,22375,105.919138,High_spent_Large_value_payments,818.733498,0,0.775,0.1261,-0.4286,1.8715,-0.2116 +0x1f7dd,CUS_0xbc0c,August,50,157-90-1957,Scientist,32637.88,,5,5,10,3,"Not Specified, Personal Loan, and Payday Loan",,11,10.46,3,Standard,1061.77,33.37823361,17 Years and 10 Months,Yes,69.57405666,30.99629501,High_spent_Medium_value_payments,400.9119817,0,0.7034,-1.4825,0.3038,0.2924,0.6597 +0x1f7e9,CUS_0x446c,August,44,289-16-4830,Media_Manager,8177.41,803.4508333,1574,10,22.88954781,7,"Credit-Builder Loan, Student Loan, Not Specified, Not Specified, Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",29.0978071,21.61762431,17.02,7,Standard,1538.127466,36.52849501,17 Years and 10 Months,NM,1371.044936,0,High_spent_Large_value_payments,246.3634921,0,-0.9194,-0.5884,0.9135,0.3562,-0.1429 +0x1f7f5,CUS_0xaa81,August,48,#F%$D@*&8,Engineer,58853.46,,5,4,7.288361749,4,"Mortgage Loan, Home Equity Loan, Home Equity Loan, and Mortgage Loan",22.85507877,19,10.91,4,Good,131.0208665,34.24169903,18 Years and 11 Months,No,7857,1137.020816,Low_spent_Small_value_payments,30.7611989,0,-0.0324,-0.42,0.3065,-1.488,-1.1194 +0x1f801,CUS_0x7411,August,21,987-04-1406,Engineer,55473.22,,5,6,7,4,"Debt Consolidation Loan, Payday Loan, Personal Loan, and Personal Loan",31.19302959,20,1.51,4,_,160.87,27.00681586,22 Years and 4 Months,No,180.3434079,173.6166779,Low_spent_Small_value_payments,395.9167476,0,-0.14,-0.1574,0.2253,-0.695,1.0207 +0x1f80d,CUS_0x7b9d,August,25,411-37-9487,Mechanic,16229.86,1216.488333,7,5,29.06745738,6,"Personal Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Personal Loan",51.62383746,29.60948228,19.58,9,_,3687.896271,27.88712092,11 Years and 2 Months,NM,64.06840948,,Low_spent_Small_value_payments,172.046382,0,1.0772,-0.5509,0.1263,0.0303,-0.472 +0x1f819,CUS_0x50fe,August,43,721-27-1795,Architect,20597.09,,5,5,18,4,"Home Equity Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",15.12015109,15,10.84,7,Standard,519.5514194,31.12006646,15 Years and 11 Months,Yes,18423,22.80958587,High_spent_Medium_value_payments,372.4157569,0,-1.432,1.3392,1.4584,-0.6811,1.5861 +0x1f825,CUS_0xa009,August,27,534-99-4357,_______,39089.09,,2,4,1,3,"Credit-Builder Loan, Not Specified, and Personal Loan",11.16500476,11,5.1,3,Good,474.96,32.5704863,19 Years and 3 Months,No,53.515554,203.2268781,High_spent_Small_value_payments,312.1999846,0,-0.1502,-0.9138,-1.2657,0.2452,-1.0011 +0x1f831,CUS_0x9680,August,27,049-07-6085,Teacher,12148578,2723.325833,7,6,8,3,"Personal Loan, Home Equity Loan, and Credit-Builder Loan",21.52710749,19,24.86,9,Standard,876.74,31.44455381,28 Years and 3 Months,NM,61.26719603,113.9648826,Low_spent_Small_value_payments,387.1005047,0,-1.0429,0.1342,-1.3306,0.4913,0.9384 +0x1f83d,CUS_0xc491,August,36,878-88-0534,Developer,36787.05,3351.5875,7,7,10,0,,,10.93227055,10.17,5,Good,616.9242193,27.23038165,16 Years and 3 Months,No,0,132.6385733,Low_spent_Small_value_payments,492.5201767,0,-0.7326,0.3071,-0.0651,-1.6714,0.0954 +0x1f849,CUS_0xb646,August,27,565-33-6888,Developer,36685.74,2807.145,6,7,25.06745738,9,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Mortgage Loan",,20.37110007,14.9,14,Bad,4084.975797,37.9308087,11 Years and 5 Months,Yes,18869,100.4013887,Low_spent_Small_value_payments,173.1800298,0,-0.1001,1.0183,0.0939,0.6206,0.6998 +0x1f855,CUS_0x4bf4,August,41,761-39-6887,Manager,17150.815,,1,5,3,0,,6.454240753,9,11.52,,Good,525.3179438,30.20540902,21 Years and 2 Months,No,78575,61.07251697,High_spent_Medium_value_payments,331.5400273,0,-2.5209,-0.7949,-0.7487,1.1749,1.0774 +0x1f861,CUS_0xa4fd,August,35,360-74-8260,Accountant,64930.47,5286.8725,4,7,20,2,"Payday Loan, and Personal Loan",22.94364125,19,,4,Standard,1239.09,23.96618654,22 Years and 3 Months,Yes,91.12971164,127.1295454,High_spent_Large_value_payments,550.427993,0,1.1484,-0.4438,-0.5343,1.9728,-1.5224 +0x1f86d,CUS_0x997,August,80,914-87-9289,Mechanic,23681.87,,3,5,15,3,"Payday Loan, Mortgage Loan, and Credit-Builder Loan",,11,4.51,0,Standard,1433.17,31.88297719,21 Years and 0 Months,No,41.64279282,48.42444835,High_spent_Small_value_payments,352.5816755,0,-0.4044,0.1821,-0.9951,1.5914,1.9459 +0x1f879,CUS_0xbe70,August,41,071-52-3069,Mechanic,7243.44,614.62,7,10,34.06745738,5,"Auto Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Home Equity Loan",42.49370888,20.1937484,3.79,12,Standard,3097.363947,41.3331763,16 Years and 2 Months,Yes,18.97308424,33.45100727,Low_spent_Small_value_payments,272.3176205,0,-1.839,-0.7821,0.2948,0.5976,-1.5455 +0x1f885,CUS_0x91ca,August,44,#F%$D@*&8,Scientist,32361.61,,4,3,19,2,"Home Equity Loan, and Debt Consolidation Loan",17.96387928,13,17.07,12,Standard,1171.75,38.09157897,15 Years and 3 Months,Yes,34.35693326,214.2296542,Low_spent_Small_value_payments,301.8934959,0,-0.2775,-0.0486,2.0598,0.9429,0.1635 +0x1f891,CUS_0xb32a,August,38,504-09-5317,Doctor,75069.09,,7,6,5,3,"Student Loan, Debt Consolidation Loan, and Payday Loan",21.3561747,17.48278981,0.9,7,Good,1178.764749,26.62328568,16 Years and 5 Months,NM,124.6506548,445.0462719,Low_spent_Medium_value_payments,348.5788233,0,1.7384,-1.8114,0.9045,1.8198,-0.8944 +0x1f89d,CUS_0x41c9,August,52,274-12-3426,Musician,78261.62,6373.801667,1,1,5.288361749,2,"Personal Loan, Mortgage Loan, and Payday Loan",2.267219214,5,7.66,,Good,385.0444735,35.48572929,26 Years and 8 Months,No,111.1558844,1040.126574,Low_spent_Medium_value_payments,248.436499,0,0.8995,-0.7983,-0.074,0.235,-2.216 +0x1f8a9,CUS_0x6993,August,51,231-37-0491,Developer,34146.86,,4,7,1,2,"Credit-Builder Loan, and Credit-Builder Loan",10.38130709,10,2.07,6,Good,142.3379131,37.47041576,,No,56.3343453,230.3690064,Low_spent_Large_value_payments,305.1513077,0,0.4905,1.763,-0.7531,2.3809,-0.0292 +0x1f8b5,CUS_0x9230,August,24,049-60-8430,Journalist,94498.95,7950.9125,8,6,15,0,,,19,9.09,1339,Standard,1432.94,37.5629003,,No,0,125.845993,High_spent_Medium_value_payments,919.245257,0,-1.5095,0.8879,0.4082,-0.7203,0.6311 +0x1f8c1,CUS_0x93e,August,43,061-94-6784,Accountant,20799.59,,2,5,3815.288362,0,,,3243,5.16,2,_,33.25,37.3559508,20 Years and 9 Months,No,0,473.9315919,High_spent_Medium_value_payments,339.5357857,0,0.1775,-1.1546,-1.5411,0.3026,-0.1644 +0x1f8cd,CUS_0xc56c,August,42,897-95-5360,Doctor,59703.03,,6,6,13,7,"Not Specified, Home Equity Loan, Auto Loan, Student Loan, Mortgage Loan, Home Equity Loan, and Not Specified",,20,18.05,5,Standard,1795.28,37.08686096,12 Years and 11 Months,Yes,295.1676601,,Low_spent_Medium_value_payments,150.9815536,0,-1.9907,1.0726,-0.2494,1.7257,0.6684 +0x1f8d9,CUS_0x70a0,August,46,689-54-9230,Mechanic,50298.42,4391.535,9,5,23.06745738,5,"Payday Loan, Home Equity Loan, Not Specified, Payday Loan, and Home Equity Loan",29.64786498,18.60340315,1.47,7,Bad,3813.531573,36.70316701,2 Years and 0 Months,Yes,195.2648376,131.0543755,High_spent_Small_value_payments,346.113999,0,1.1201,-0.0443,0.2091,0.34,0.5702 +0x1f8e5,CUS_0x119e,August,38,498-27-0676,Mechanic,63601.48,,3,7,15,6,"Auto Loan, Mortgage Loan, Student Loan, Home Equity Loan, Auto Loan, and Not Specified",20.27970528,13,19.49,6,Standard,1191.91,25.704062,,Yes,184.6916346,121.5170424,High_spent_Large_value_payments,473.8036564,0,0.3119,1.3135,-1.5527,-1.5372,1.1862 +0x1f8f1,CUS_0x7b52,August,35,015-91-6589,_______,14387.47,,7,7,17,8,"Debt Consolidation Loan, Personal Loan, Payday Loan, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, and Home Equity Loan",39.55513519,25.39577258,20.13,8,Bad,4905.845765,26.14211219,14 Years and 3 Months,Yes,80.33755406,,Low_spent_Medium_value_payments,250.7810419,0,0.8194,-1.9001,-1.0147,0.1279,0.0083 +0x1f8fd,CUS_0x85bb,August,50,549-77-8639,Writer,20203.625,1722.635417,0,5,5,0,,11.50698617,6,4.07,4,Good,318.06,37.63278264,29 Years and 5 Months,No,0,34.82558181,!@9#%8,397.4379599,0,-0.8847,-0.0937,-0.8972,-0.2748,-0.2381 +0x1f909,CUS_0x3091,August,34,571-59-9270,Developer,76992.72,6558.06,6,7,33,5,"Home Equity Loan, Student Loan, Auto Loan, Auto Loan, and Not Specified",21.39269736,18,12.48,9,Standard,1594.5,28.94007004,11 Years and 3 Months,Yes,284.942804,,Low_spent_Large_value_payments,189.916709,0,0.6761,1.9018,-0.3507,-0.0257,1.1919 +0x1f915,CUS_0x5e99,August,44,446-38-0435,Mechanic,56001.15,4662.7625,3,6,8,3,"Not Specified, Personal Loan, and Not Specified",17.29970152,,8.33,8,Standard,1347.83,38.56829958,15 Years and 9 Months,Yes,88.30262559,303.5454772,High_spent_Small_value_payments,334.4281472,0,0.2663,-1.1542,0.2571,0.5206,-0.3862 +0x1f921,CUS_0x74d2,August,32,152-76-6067,Writer,21205.82,,3,3,3,0,,,6.079278135,10.72,3,Good,922.0715298,39.51519016,23 Years and 11 Months,No,0,80.63337455,Low_spent_Small_value_payments,397.3817921,0,0.0728,-1.017,0.2338,1.4271,-0.3171 +0x1f92d,CUS_0x74a6,August,49,702-84-4647,Engineer,16199.955,1140.99625,3,7,7,4,"Mortgage Loan, Student Loan, Credit-Builder Loan, and Auto Loan",9.289323406,11,4.88,0,Good,446.66,34.03887469,29 Years and 5 Months,No,39.7823257,75.14501655,Low_spent_Medium_value_payments,279.1722827,0,-1.0179,-0.3781,1.5372,2.094,-0.1675 +0x1f939,CUS_0x2a79,August,34,888-64-2878,Doctor,88606.92,,5,5,9,100,Auto Loan,,12,11.66,0,Standard,518.87,39.13413828,27 Years and 8 Months,No,61.24107455,318.9465696,Low_spent_Medium_value_payments,651.6033558,0,-1.2819,-1.0517,-0.2369,1.9092,0.0539 +0x1f945,CUS_0xb6e3,August,18,#F%$D@*&8,Mechanic,61533.36,5186.78,821,3,9,5,"Not Specified, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, and Payday Loan",24.46933078,18,11.28,6,Standard,1029.35,30.40402608,15 Years and 0 Months,Yes,251.5226785,72.73006134,High_spent_Medium_value_payments,444.4252602,0,0.2115,-0.192,0.1974,0.0672,0.061 +0x1f951,CUS_0x4696,August,24,#F%$D@*&8,Accountant,46783.08,,3,7,20,7,"Personal Loan, Personal Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",14.72493776,10,8.04,9,Standard,1558.33,33.36331583,13 Years and 10 Months,Yes,236.3197006,497.1177699,Low_spent_Small_value_payments,,0,1.1445,-0.6187,-2.2582,0.6603,-0.3429 +0x1f95d,CUS_0x6ad0,August,19,405-70-6631,Writer,8027.195,,10,5,21.06745738,2,"Personal Loan, and Student Loan",47.12868974,31.50172861,1.48,14,Bad,2196.822058,29.92768816,10 Years and 0 Months,Yes,8.961406106,,Low_spent_Small_value_payments,278.1196755,0,0.4855,-0.2046,0.1939,0.0969,-0.7064 +0x1f969,CUS_0x747a,August,32,491-04-3523,Manager,88072.59,7511.3825,3,5,5,4,"Not Specified, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",33.49345056,22,-4.04,4,Standard,1060.69,27.81704915,18 Years and 10 Months,Yes,259.4323933,318.9000244,High_spent_Medium_value_payments,422.8058323,0,-0.6254,-0.855,0.0896,0.0987,-1.2564 +0x1f975,CUS_0x5376,August,41,025-25-1011,_______,145545.36,11984.78,1,4,8.288361749,100,Payday Loan,,3,9.73,1,Good,168.33,28.68701196,21 Years and 8 Months,No,114.5184505,861.7544297,High_spent_Medium_value_payments,892.1425808,0,-0.9274,0.3857,1.6122,-0.2956,0.6319 +0x1f981,CUS_0x351d,August,41,474-20-5541,Musician,146771.72,12197.97667,5,4,19,2,"Credit-Builder Loan, and Payday Loan",9.892044543,10.79837057,4.72,1,Standard,54.24915295,39.45294048,29 Years and 10 Months,No,194.9600336,420.9908376,High_spent_Medium_value_payments,853.8467955,0,-2.5954,0.091,0.6409,0.0892,0.9822 +0x1f98d,CUS_0x12cc,August,30,761-36-5969,Developer,20521.36,1721.113333,10,8,17,3,"Personal Loan, Payday Loan, and Mortgage Loan",21.38828807,14.5270232,14.94,10,Standard,2143.122481,22.72443389,,Yes,42.15204181,,!@9#%8,244.4192926,0,-1.1765,-0.59,-0.6731,-1.6152,-2.0246 +0x1f999,CUS_0x9664,August,22,#F%$D@*&8,Manager,15197.25,979.4375,6,5,20,8,"Mortgage Loan, Student Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",32.95695997,23.80099883,25.4,10,Bad,3634.100568,24.38158063,5 Years and 2 Months,Yes,89.07717529,65.91063582,Low_spent_Medium_value_payments,222.9559389,0,0.8381,-0.0382,1.585,-0.1477,-0.6123 +0x1f9a5,CUS_0x8e89,August,32,059-84-1813,Accountant,32763.42,,4,3,1,3,"Auto Loan, Personal Loan, and Student Loan",,11,3.52,3,Good,284.34,24.58037257,21 Years and 11 Months,No,53.77655109,266.3665784,Low_spent_Small_value_payments,251.7853705,0,-0.1109,1.1917,-0.0401,2.1887,-0.5601 +0x1f9b1,CUS_0xafa8,August,21,690-70-6950,Teacher,16832.68,,5,4,11,1,Home Equity Loan,,8,8.21,5,Good,516.43,22.49476851,26 Years and 4 Months,No,10.59272189,154.9026778,!@9#%8,266.1769337,0,-1.0183,0.3232,-1.8643,0.14,0.0744 +0x1f9bd,CUS_0x2665,August,36,366-98-6938,Accountant,65000.73,,7,4,18,3,"Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",14.45898215,14,7.08,0,Standard,1346.77,35.88113751,,Yes,151.8025374,145.9182031,High_spent_Medium_value_payments,511.1520095,0,-1.9234,-1.3371,1.2892,0.7846,-1.8476 +0x1f9c9,CUS_0x84d,August,46,538-78-5821,Media_Manager,33929.89,2649.490833,3,5,17,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Student Loan",10.83543934,10,5.4,4,Standard,1219.04,37.6636533,24 Years and 10 Months,No,89.77963302,224.2898038,Low_spent_Large_value_payments,220.8796465,0,-0.2126,-0.5117,-0.649,0.7693,1.1398 +0x1f9d5,CUS_0x5f2f,August,18,649-29-0292,Scientist,18083.015,,0,5,6,1,Mortgage Loan,4.789642223,7,4.78,3,Good,796.31,28.3262696,28 Years and 0 Months,No,8.350875465,,!@9#%8,375.8806823,0,0.7603,0.2877,-1.2558,-0.0555,0.959 +0x1f9e1,CUS_0x64c9,August,28,717-48-4776,Architect,68487.03,,8,4,11,7,"Not Specified, Payday Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",22.27233138,17,18.95,8,_,371.1778243,24.16369493,19 Years and 4 Months,NM,208.0922881,161.0803264,High_spent_Large_value_payments,479.9754087,0,0.4424,0.2329,-0.2593,0.1986,-1.0139 +0x1f9ed,CUS_0x18ca,August,46,#F%$D@*&8,Engineer,79716.94,,0,4,6,1,Payday Loan,,,8.63,4,Good,1388.116345,42.27670921,20 Years and 0 Months,No,57.20732166,152.2231162,High_spent_Small_value_payments,687.7773954,0,0.3395,0.0036,0.7321,0.2397,1.1048 +0x1f9f9,CUS_0x705d,August,24,168-38-5634,Manager,44438.41,3974.200833,3,2,10,1,Home Equity Loan,1.565305059,4,2.37,9,Good,729.0371985,23.07840389,30 Years and 10 Months,NM,32.45898449,143.9509189,High_spent_Medium_value_payments,490.2559882,0,-0.4647,-1.2443,-1.3959,-0.4044,0.6968 +0x1fa05,CUS_0x80fd,August,36,203-81-2427,Developer,41509.62,3282.36832,8,8,23.88954781,6,"Personal Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Not Specified, and Payday Loan",22.73434203,,13.98,10,Standard,2657.535113,28.22051575,16 Years and 8 Months,Yes,1610.315772,,Low_spent_Medium_value_payments,233.4300478,0,-0.6917,0.7577,-0.9481,0.4798,0.756 +0x1fa11,CUS_0x752b,August,25,863-32-1538,Accountant,114919.56,9619.63,3,5,9,0,,0,1,3.45,7,Good,141.69,26.20705459,28 Years and 8 Months,No,0,10000,!@9#%8,375.9228495,0,0.5795,-0.2384,-0.9333,-0.2177,0.9646 +0x1fa1d,CUS_0x8c2c,August,21,955-06-8786,Developer,91532.61,,4,3,5,3,"Personal Loan, Auto Loan, and Mortgage Loan",3.987684981,7,6.36,8,_,1063.087085,35.4591245,28 Years and 11 Months,No,201.6985163,130.4847148,High_spent_Large_value_payments,679.600943,0,0.2392,-0.1599,-1.386,-1.109,0.512 +0x1fa29,CUS_0x3439,August,51,223-23-5210,Doctor,29112.32,2333.026667,2,1,6,2,"Not Specified, and Auto Loan",1.191116774,4,2.87,4,Good,1128.503421,41.19118008,21 Years and 3 Months,No,28.03740948,148.2075773,High_spent_Small_value_payments,335.1085816,0,-0.9097,-2.0674,0.7559,-0.7862,-1.13 +0x1fa35,CUS_0x8fb8,August,34,430-79-5000,Journalist,9916.865,,8,7,34,4,"Personal Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",40.94198912,28.77580939,2.98,8,Bad,2186.990574,25.07923611,6 Years and 5 Months,Yes,18.53067555,58.81478509,Low_spent_Small_value_payments,319.995081,0,1.1955,-0.2658,-1.1315,0.068,1.4358 +0x1fa41,CUS_0x9e56,August,24,773-16-8211,Musician,28195.29,,3,4,11,3,"Auto Loan, Auto Loan, and Student Loan",6.798286136,7,2.04,8,Good,1102.123227,28.87771213,24 Years and 8 Months,No,148.3172679,182.7284694,Low_spent_Small_value_payments,302.2989306,0,0.3035,0.9452,-1.2721,1.34,0.5833 +0x1fa4d,CUS_0x3595,August,44,578-52-7354,Musician,33276.28,,4,4,10.28836175,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",12.81829125,14,3.9,,Good,339.3200564,27.4341371,28 Years and 4 Months,No,68.75598033,632.2738477,!@9#%8,282.4385659,0,-0.5913,-1.3717,-1.3507,-0.8458,-1.6705 +0x1fa59,CUS_0x4630,August,43,654-75-2504,Scientist,29086.41,,4,7,13,1,Payday Loan,,7,16.4,6,Standard,1394.56,24.90117833,26 Years and 8 Months,Yes,15.51965992,218.1958103,Low_spent_Small_value_payments,279.9712798,0,-0.1355,-0.9023,1.2012,-1.1332,0.4541 +0x1fa65,CUS_0x1bf1,August,55,#F%$D@*&8,Lawyer,18320277,3938.193333,5,7,6.288361749,0,Credit-Builder Loan,,8,7.55,2,Good,515.73,37.17568546,20 Years and 3 Months,No,35.37456946,685.4295672,Low_spent_Small_value_payments,382.9526577,0,1.4255,0.6096,-0.0081,0.941,-1.0061 +0x1fa71,CUS_0xacab,August,49,489-93-0775,Engineer,84114.6,6873.55,8,7,16,3,"Personal Loan, Personal Loan, and Mortgage Loan",27.56300824,20,2.99,3,Standard,779.09,29.13511108,16 Years and 10 Months,NM,156.531442,117.6763537,High_spent_Large_value_payments,653.1472043,0,0.609,-0.1001,-0.0965,1.1065,1.2439 +0x1fa7d,CUS_0x86ab,August,55,498-78-4795,Mechanic,107677.98,,3,4,12,2,"Not Specified, and Personal Loan",7.699939565,9,3.27,7,Standard,877.65,40.30525621,25 Years and 9 Months,No,99.79079421,191.698177,High_spent_Large_value_payments,834.1275288,0,0.6387,0.7096,0.8098,2.3081,-1.5556 +0x1fa89,CUS_0xa509,August,27,501-02-4055,Engineer,130210.2,10971.85,7,4,5,1,Home Equity Loan,6.229890495,6,18.32,4,Standard,61.98,29.0150292,,Yes,68.89613597,,!@9#%8,234.0504715,0,-0.0753,0.2566,0.2859,-1.0935,1.1992 +0x1fa95,CUS_0x6acd,August,20,438-43-4986,Accountant,80692.28,,7,6,15,5,"Student Loan, Credit-Builder Loan, Student Loan, Student Loan, and Not Specified",41.46936328,23.8540073,,13,Bad,3021.612426,31.60001317,10 Years and 5 Months,Yes,285.0286814,259.418228,Low_spent_Small_value_payments,431.1887573,0,2.3665,0.1277,0.1491,-1.8313,-1.8755 +0x1faa1,CUS_0x687f,August,46,877-31-3897,Accountant,10482.625,,3,4,12,7,"Payday Loan, Not Specified, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",17.58302004,14.61743366,13.47,7,Standard,161.5460082,23.0241302,14 Years and 3 Months,Yes,61.00202533,33.27498738,Low_spent_Medium_value_payments,276.9781956,0,-0.3824,-0.4325,-0.5855,-1.0923,0.5292 +0x1faad,CUS_0x640a,August,32,446-54-8731,Architect,10344.865,,10,516,23.06745738,3,"Home Equity Loan, Payday Loan, and Personal Loan",,19.76796214,8.46,12,Bad,3013.397034,27.98153193,10 Years and 9 Months,Yes,14.49380677,,Low_spent_Small_value_payments,217.2649654,0,-0.2646,-0.8357,1.2184,-1.1511,-0.5389 +0x1fab9,CUS_0xc140,August,21,982-14-9347,Entrepreneur,17844.19,,4,6,14,4,"Home Equity Loan, Not Specified, Personal Loan, and Auto Loan",30.23220295,20,5.59,4,_,84.95,27.96652149,22 Years and 11 Months,Yes,53.39852233,114.2016736,High_spent_Small_value_payments,264.7013874,0,-1.8137,-1.3578,1.5315,0.0031,-0.5391 +0x1fac5,CUS_0x2ce6,August,30,140-24-8696,Mechanic,143570.8,12000.23333,1,4,5,2,"Credit-Builder Loan, and Not Specified",,2,9.34,2,Good,1331.5,29.29630461,32 Years and 6 Months,No,123.3110561,797.7538321,High_spent_Small_value_payments,538.9584451,0,-0.8655,0.3133,1.4827,-0.7408,1.5058 +0x1fad1,CUS_0x5984,August,28,401-11-2941,Engineer,59992.12,,6,9,22.88954781,8,"Personal Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Not Specified",26.63292765,18.95644743,18.41,13,Bad,2951.823303,29.35704347,6 Years and 9 Months,Yes,1672.814167,116.7870733,High_spent_Medium_value_payments,292.6030116,0,0.3787,0.5265,-0.4627,-0.085,0.5924 +0x1fadd,CUS_0x3e09,August,33,110-68-4678,Journalist,7184.235,848.68625,6,8,32.95700519,7,"Payday Loan, Not Specified, Home Equity Loan, Home Equity Loan, Auto Loan, Not Specified, and Personal Loan",43.50081135,24.6518522,-4.46,13,Bad,2783.984199,31.69589934,17 Years and 6 Months,Yes,1356.66157,24.83481974,Low_spent_Medium_value_payments,262.3218656,0,0.9713,-0.8373,-1.6529,1.1136,-0.4944 +0x1fae9,CUS_0x3f62,August,37,273-95-4723,_______,77594.48,,10,10,29,4,"Personal Loan, Not Specified, Mortgage Loan, and Home Equity Loan",23.06283171,15.39821437,19.04,11,Standard,1504.887669,36.42529479,13 Years and 4 Months,Yes,138.8344021,68.44290314,High_spent_Large_value_payments,696.4433614,0,-0.9174,1.9264,-0.1963,-1.2578,1.2213 +0x1faf5,CUS_0x7fe2,August,36,517-05-0352,Developer,84604.8,6899.4,4,896,13.28836175,2,"Credit-Builder Loan, and Not Specified",5.883392994,8,1.71,3,Standard,756.43,25.23795402,25 Years and 4 Months,Yes,80.24070813,860.966122,Low_spent_Medium_value_payments,448.6706309,0,-0.0719,-1.5406,0.1686,0.1413,0.1912 +0x1fb01,CUS_0x7f2c,August,54,866-34-6909,Developer,26596.91,,6,7,13,3,"Payday Loan, Credit-Builder Loan, and Payday Loan",16.55725626,12,10.83,3,_,758.679146,32.12749078,20 Years and 4 Months,Yes,303.2298303,263.0932101,Low_spent_Small_value_payments,252.2272432,0,-0.2216,0.747,2.0067,-1.7485,0.1229 +0x1fb0d,CUS_0x9cb8,August,21,551-17-7639,Media_Manager,73675.65,6073.6375,5,4,20,1,Debt Consolidation Loan,15.20422496,15,6,7,Standard,56.92,25.76853198,31 Years and 11 Months,Yes,31.60653482,85.53612396,High_spent_Large_value_payments,730.2210912,0,-1.2387,2.2275,-0.0989,-1.1894,-0.2906 +0x1fb19,CUS_0x20bf,August,27,624-83-4933,Developer,22380.18,,5,6,14,3,"Payday Loan, Payday Loan, and Auto Loan",20.11889288,16,0.58,6,Standard,831.7733857,32.90732291,22 Years and 11 Months,Yes,272.6659275,191.0594437,!@9#%8,249.5774786,0,0.6861,-0.3376,-1.4166,-1.5659,-0.1594 +0x1fb25,CUS_0x6bad,August,43,415-46-9238,Scientist,12144.58,1006.048333,4,5,8.067457376,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",,9,17.63,2,_,1516.170954,24.36391847,27 Years and 0 Months,Yes,23.11978447,40.48786229,High_spent_Small_value_payments,270.2768986,0,-0.1267,0.4925,-0.0797,-0.3401,0.6771 +0x1fb31,CUS_0xa414,August,22,545-94-2096,Journalist,19627.93,1339.660833,0,7,11.28836175,4,"Payday Loan, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,12,1.32,7,Good,141.58,25.14705079,17 Years and 10 Months,No,51.00037096,461.9242088,Low_spent_Large_value_payments,310.9789646,0,-0.1211,-2.4164,1.3695,0.3827,0.1782 +0x1fb3d,CUS_0x4bdc,August,28,399-73-2521,Teacher,35007.33,3158.2775,5,2,2,0,,3.954438247,7,2.12,6,_,681.0277998,29.00628127,,No,0,,High_spent_Medium_value_payments,459.308621,0,2.156,1.6335,-1.28,-1.0959,-1.6688 +0x1fb49,CUS_0x15c4,August,38,267-54-6899,Journalist,21093.41,,1,5,10,3,"Debt Consolidation Loan, Mortgage Loan, and Home Equity Loan",9.368677997,9,6.07,7,Good,634.7530266,30.47809078,27 Years and 4 Months,NM,29.95903657,210.9866895,Low_spent_Small_value_payments,246.8345692,0,0.2442,-0.805,0.5192,0.2196,0.3088 +0x1fb55,CUS_0x471f,August,25,220-69-1489,Manager,31977.44,,10,9,23.88954781,7,"Credit-Builder Loan, Not Specified, Mortgage Loan, Mortgage Loan, Not Specified, Mortgage Loan, and Home Equity Loan",29.97697954,22,1.33,11,_,2256.77,23.54423982,11 Years and 10 Months,Yes,1508.974487,,Low_spent_Small_value_payments,230.6835654,0,0.5212,1.0186,-0.7179,0.1282,-0.043 +0x1fb61,CUS_0xc288,August,39,470-59-7781,Manager,25876.18,2293.348333,4,6,6.288361749,2,"Student Loan, Credit-Builder Loan, and Personal Loan",15.48472988,15,10.29,4,Standard,71.54,39.48991448,21 Years and 9 Months,No,37.3743497,539.1346668,Low_spent_Small_value_payments,362.7632779,0,0.6755,1.1979,-0.5594,0.7855,0.4094 +0x1fb6d,CUS_0x4f34,August,32,735-06-5723,Teacher,43442.97,3748.2475,8,8,27.06745738,7,"Debt Consolidation Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Student Loan",45.6967507,24.88473556,-0.9,14,_,4866.128789,31.55492259,1 Years and 11 Months,Yes,249.9641639,,!@9#%8,255.1333887,0,-1.5857,-0.9117,1.4004,-0.9699,-0.586 +0x1fb79,CUS_0x8327,August,40,590-97-4255,Engineer,28079.86,2103.988333,3,3,20,3,"Home Equity Loan, Auto Loan, and Debt Consolidation Loan",,19,4.51,7,Standard,577.91,26.19295191,,No,58.48892993,,High_spent_Small_value_payments,353.586923,0,1.2632,0.1845,0.728,0.2577,0.5188 +0x1fb85,CUS_0x1c1f,August,22,547-35-1825,Writer,24922.12,,8,4,5,0,,,20.50039455,8.37,2,Standard,467.7499524,30.311732,28 Years and 5 Months,No,0,173.6184935,Low_spent_Medium_value_payments,323.9658398,0,-0.2299,-1.2389,0.9906,-1.2758,0.4465 +0x1fb91,CUS_0x82a3,August,28,467-13-7563,Manager,44332.62,3691.385,9,8,28,3,"Debt Consolidation Loan, Student Loan, and Student Loan",35.15192042,25.82766066,15.94,8,Bad,2575.328841,34.75406329,8 Years and 8 Months,Yes,75.71692856,185.6750018,Low_spent_Medium_value_payments,387.7465697,0,0.9626,2.8297,-0.8618,1.2011,-0.2263 +0x1fb9d,CUS_0x2ac8,August,32,489-33-3435,Engineer,26053.36,,8,6,11,2,"Personal Loan, and Home Equity Loan",,14,13.13,0,_,1339.71,39.70313332,24 Years and 2 Months,Yes,67726,148.4768968,Low_spent_Medium_value_payments,297.7044536,0,-1.8233,0.3805,-1.8725,-0.0848,1.1532 +0x1fba9,CUS_0xc07f,August,19,416-52-9051,Architect,42491.46,,6,10,15,3,"Payday Loan, Payday Loan, and Not Specified",26.79585043,19,9.74,13,Standard,1780.79,33.55216979,10 Years and 5 Months,Yes,105.4130358,327.8140733,Low_spent_Large_value_payments,213.868391,0,-1.0079,0.4474,-0.1482,-0.1359,0.6391 +0x1fbb5,CUS_0x2e20,August,25,774-07-1152,Media_Manager,63847.8,,8,3,32,7,"Auto Loan, Student Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Not Specified",,14,,6,Standard,2440.4,31.98365959,6 Years and 6 Months,Yes,257.2212679,156.2912203,High_spent_Medium_value_payments,352.1525118,0,1.0489,-0.5621,-0.0924,-0.6378,0.3045 +0x1fbc1,CUS_0xc51c,August,45,519-73-2600,Engineer,62475.66,5214.305,6,8,30,2,"Home Equity Loan, and Not Specified",,21,3.12,7,Bad,2496.64,32.03059725,18 Years and 8 Months,NM,68.05002537,,Low_spent_Small_value_payments,40.02230514,0,0.2885,0.262,-0.7841,-0.8777,-0.9849 +0x1fbcd,CUS_0x9fd0,August,39,974-82-7446,Developer,140254.92,11929.91,5,1,12,0,,,10,1.24,3,Good,663.25,40.69049922,19 Years and 4 Months,No,0,173.581237,High_spent_Medium_value_payments,1269.409763,0,1.1265,0.2445,0.416,-0.793,-0.0215 +0x1fbd9,CUS_0x41bf,August,44,693-64-7611,Journalist,61990.52,,10,10,25.88954781,9,"Auto Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, and Student Loan",,24.38059463,19.32,9,Bad,4036.308054,27.97370335,13 Years and 9 Months,Yes,1678.62684,10000,Low_spent_Small_value_payments,31.87991453,0,-1.4826,-0.5084,-0.4459,1.7093,-0.3274 +0x1fbe5,CUS_0x5bce,August,35,695-62-7237,Writer,18949.48,1569.123333,0,3,9,2,"Debt Consolidation Loan, and Debt Consolidation Loan",4.045411904,5,3.72,4,Good,875.0464937,36.93469208,27 Years and 3 Months,No,27.25736666,122.5697829,Low_spent_Small_value_payments,308.7078702,0,2.5448,-1.4716,-0.0206,-0.4534,0.3652 +0x1fbf1,CUS_0x3bbf,August,80,753-82-5553,Developer,23304.3,2000.025,4,7,15,0,,14.05431517,10,10.14,8,Standard,366.22,37.21147708,15 Years and 10 Months,Yes,0,,Low_spent_Small_value_payments,384.827748,0,-1.4433,-0.2298,-0.4692,-0.1521,0.1374 +0x1fbfd,CUS_0x7651,August,40,300-72-2019,Manager,57321.36,4666.78,10,10,22,9,"Payday Loan, Payday Loan, Payday Loan, Personal Loan, Student Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Not Specified",,19.42571896,5.68,7,Bad,2455.006928,37.24166855,19 Years and 4 Months,Yes,420.8886784,116.0632627,High_spent_Medium_value_payments,179.7260589,0,-1.1937,0.3291,0.2188,-0.3782,-0.2173 +0x1fc09,CUS_0x259d,August,25,130-17-0626,Doctor,22433.46,1493.442041,4,3,2674,1,Payday Loan,0,4,4.73,4,Good,995.9422359,33.17687551,28 Years and 6 Months,No,101.543103,52.11562559,High_spent_Small_value_payments,363.9083761,0,0.2407,0.7315,-1.2035,-0.3197,-0.1854 +0x1fc15,CUS_0x3e10,August,35,980-19-8289,Entrepreneur,55938.51,4904.5425,9,6,28,5,"Payday Loan, Student Loan, Not Specified, Home Equity Loan, and Personal Loan",29.74306476,21.51840003,16.27,12,Standard,2899.714859,30.85496338,20 Years and 0 Months,Yes,178.1731736,10000,!@9#%8,436.517077,0,-1.3612,0.666,-1.3851,1.4222,0.7107 +0x1fc21,CUS_0x43a6,August,33,331-17-1290,Manager,41998.55,3435.879167,5,2,12,3,"Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",0,4,6.48,3,Good,62.77752949,37.14694409,16 Years and 5 Months,No,60.31338378,117.3931575,High_spent_Medium_value_payments,431.6668657,0,-1.8873,-0.8123,-1.4089,0.4989,0.2372 +0x1fc2d,CUS_0x112e,August,32,981-03-7949,Mechanic,20162.26,,8,4,11,4,"Home Equity Loan, Home Equity Loan, Personal Loan, and Auto Loan",16.7259775,,1.71,2,Standard,660.26,34.4970261,19 Years and 9 Months,No,66.24488172,209.3396867,Low_spent_Small_value_payments,201.6342649,0,1.2014,-0.4115,0.8908,1.6594,-0.1598 +0x1fc39,CUS_0x867f,August,27,834-62-2160,Musician,18525.13,,10,9,35.06745738,2,"Mortgage Loan, and Debt Consolidation Loan",27.34403511,17.94692569,19.47,7,Standard,2079.42159,27.06744406,11 Years and 0 Months,Yes,18.40803231,10000,Low_spent_Medium_value_payments,295.4509843,0,-2.4322,0.5338,-1.1018,0.1889,-0.1263 +0x1fc45,CUS_0x91ed,August,43,466-76-1644,Doctor,18008.65,1601.720833,3,4,8,3,"Auto Loan, Not Specified, and Not Specified",18.66332064,,3.71,6,Standard,794.29,38.11572373,25 Years and 11 Months,No,39.19348048,143.3316025,Low_spent_Small_value_payments,267.6470003,0,-0.9152,-0.5671,0.3836,-1.0937,-0.4033 +0x1fc51,CUS_0x6a8f,August,46,088-45-9859,Lawyer,162687.32,13421.27667,1,5,9.288361749,2,"Mortgage Loan, and Personal Loan",6.25406963,8,4.52,4,_,1071.648112,24.81241725,26 Years and 3 Months,No,258.4795862,1356.447648,Low_spent_Medium_value_payments,545.5457327,0,0.7807,-0.3202,-0.2465,-0.2358,-0.6579 +0x1fc5d,CUS_0x6735,August,36,032-19-7586,Teacher,50473.8,,3,7,32,6,"Auto Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,13,12.7,15,Standard,1316.91,30.26686384,19 Years and 5 Months,Yes,199.6057215,68.58930891,High_spent_Large_value_payments,386.2199696,0,-0.8798,0.6916,-0.472,-1.0642,0.0087 +0x1fc69,CUS_0x73d,August,27,990-18-5375,Mechanic,106108.53,8686.3775,4,3,14,3,"Home Equity Loan, Mortgage Loan, and Personal Loan",29.39088281,20,6.98,9,Standard,514.34,30.11486665,18 Years and 9 Months,No,157.74104,871.9373912,Low_spent_Medium_value_payments,118.9593189,0,0.0934,-0.1876,0.1878,0.8033,-1.6685 +0x1fc75,CUS_0x6cc3,August,29,513-63-4014,Manager,16090.31,1079.859167,7,5,24.06745738,2,"Mortgage Loan, and Student Loan",43.73017484,22.5918089,0.61,8,_,2081.014263,37.47015351,14 Years and 4 Months,Yes,17.39779271,45.82642523,Low_spent_Small_value_payments,308.0414108,0,-0.3921,-0.5574,-0.6486,-1.5811,0.3677 +0x1fc81,CUS_0x5cde,August,38,073-10-1268,Writer,47032.8,3906.4,8,3,16,3,"Not Specified, Credit-Builder Loan, and Mortgage Loan",8.423819755,7,11.64,623,Standard,1901.62,38.82868127,17 Years and 8 Months,Yes,103.3793064,52.6493192,!@9#%8,484.6113744,0,0.8934,-0.0945,0.2626,1.7431,-1.5332 +0x1fc8d,CUS_0xa30f,August,27,823-14-6544,Architect,9817.065,,8,10,24,3,"Not Specified, Auto Loan, and Mortgage Loan",,20.31323763,0.5,9,Bad,2296.942327,37.42015067,11 Years and 6 Months,Yes,14.98948574,,Low_spent_Small_value_payments,253.7608055,0,0.9407,-1.195,0.3319,-1.0915,-0.534 +0x1fc99,CUS_0xaa0c,August,31,913-52-1751,Engineer,79691.7,6704.975,3,5,9.288361749,0,,,2,0.78,5,Good,472.29,29.17327251,25 Years and 9 Months,No,0,826.5226018,High_spent_Small_value_payments,523.9123592,0,-0.9578,-0.018,-0.8382,2.4109,0.3838 +0x1fca5,CUS_0xa3d5,August,45,947-09-1973,Mechanic,8215.87,598.7241189,6,5,26.06745738,3,"Auto Loan, Payday Loan, and Mortgage Loan",,22.5611352,6.94,6,Bad,1963.492876,32.15396512,7 Years and 6 Months,Yes,49.51603157,,Low_spent_Small_value_payments,243.8002618,0,0.4249,-0.523,-0.5546,-0.7316,-1.3673 +0x1fcb1,CUS_0x6400,August,22,510-10-9927,Lawyer,125734.16,10388.84667,3,5,10,7,"Home Equity Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",17.31563619,16,9.34,5,Standard,449.04,34.39439756,8 Years and 10 Months,Yes,401.4081724,249.2724264,High_spent_Large_value_payments,628.2040679,0,-0.9146,-0.2728,-0.7552,-1.5015,0.8997 +0x1fcbd,CUS_0x5abc,August,31,559-20-5247,_______,59519.79,4966.9825,10,10,31.88954781,6,"Home Equity Loan, Not Specified, Debt Consolidation Loan, Student Loan, Student Loan, and Personal Loan",,19,19.84,7,_,2979.78,37.62744516,2 Years and 6 Months,Yes,1498.302292,139.6643561,High_spent_Medium_value_payments,414.4015201,0,-0.2473,-0.4039,-0.3405,0.4316,-0.5153 +0x1fcc9,CUS_0x4132,August,34,284-00-2393,Entrepreneur,51323.52,4227.96,9,7,21.06745738,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",,24.6764085,4.23,14,Bad,2953.150331,33.19111873,18 Years and 0 Months,Yes,112.478757,78.22794433,High_spent_Medium_value_payments,455.3690107,0,0.218,1.1864,-0.2224,0.4437,0.5161 +0x1fcd5,CUS_0x5240,August,39,218-26-5179,Musician,14623.83,1302.6525,9,695,19.06745738,5,"Auto Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Student Loan",44.27333362,25.40610918,17.49,11,_,3598.981876,26.38937084,13 Years and 8 Months,Yes,32.29405361,,Low_spent_Medium_value_payments,219.9321236,0,-0.3817,1.3495,1.3421,0.3977,1.3245 +0x1fce1,CUS_0x658f,August,28,763-08-1500,Journalist,144396.68,,5,6,4,0,,0,0,4.25,2,Good,923.5,37.15059295,26 Years and 6 Months,No,28677,508.1350549,Low_spent_Medium_value_payments,950.9706118,0,1.0293,-0.7977,0.4956,-1.0249,-0.2584 +0x1fced,CUS_0x200a,August,24,965-49-0710,Manager,81288.36,,10,6,17,6,"Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Payday Loan",20.61611344,18,24.92,10,Bad,3238.58,23.07629025,4 Years and 11 Months,Yes,383.4599804,,High_spent_Large_value_payments,380.1562133,0,-0.4999,0.1602,0.0746,-1.2098,-0.1263 +0x1fcf9,CUS_0xd61,August,18,372-56-7935,Engineer,82941.6,6625.8,6,6,20,7,"Payday Loan, Auto Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",45.52716081,25,7.96,10,Bad,2598.17,26.29731063,10 Years and 11 Months,Yes,347.2282234,266.9780132,High_spent_Medium_value_payments,298.3737634,0,0.1529,-1.5101,-0.6594,-0.0153,0.0689 +0x1fd05,CUS_0xaa8e,August,28,145-74-7622,_______,9510.225,,10,8,21.95700519,8,"Not Specified, Credit-Builder Loan, Not Specified, Auto Loan, Student Loan, Not Specified, Payday Loan, and Auto Loan",33.45436673,18.88297534,7.9,12,_,4631.739009,35.04684483,7 Years and 8 Months,Yes,1381.39889,54.83166242,Low_spent_Medium_value_payments,216.0709533,0,0.8385,-0.6521,2.0908,0.6576,-1.7815 +0x1fd11,CUS_0x2eb0,August,44,376-24-1944,Entrepreneur,26980.83,2363.4025,7,3,5.288361749,2,"Payday Loan, and Debt Consolidation Loan",,13,3.41,5,_,156.14,36.51274397,17 Years and 3 Months,NM,38.55262711,637.4871129,Low_spent_Large_value_payments,250.237971,0,0.1128,1.1768,0.7437,-0.4218,0.876 +0x1fd1d,CUS_0xb8e,August,40,155-58-5665,Accountant,33049.87,2955.155833,5,5,11,0,,,12.52164932,1.3,5,_,767.2942555,26.36711125,20 Years and 11 Months,No,0,164.8139604,High_spent_Small_value_payments,390.701623,0,-0.258,0.042,1.7334,-0.8949,-1.0853 +0x1fd29,CUS_0xb62c,August,34,#F%$D@*&8,Doctor,27880.82,2145.401667,4,5,20,4,"Student Loan, Debt Consolidation Loan, Not Specified, and Student Loan",,11,8.01,10,_,1307.859722,28.84587444,16 Years and 2 Months,NM,51.06157153,132.6230162,Low_spent_Small_value_payments,338.2692663,0,-0.3277,-0.3466,-0.2087,-0.0875,-0.4744 +0x1fd35,CUS_0x9dc6,August,18,850-48-2308,Media_Manager,20111.74,,10,9,30,9,"Auto Loan, Payday Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",,23,19.37,7,Bad,3470.89,30.66721447,12 Years and 6 Months,NM,150.1277785,,Low_spent_Small_value_payments,140.6443461,0,0.649,-1.4488,-0.071,1.3202,0.5359 +0x1fd41,CUS_0x1d79,August,30,172-70-6021,Teacher,29661.88,2435.823333,4,7,7.288361749,0,,0,1,6.39,2,Good,80.25,38.88229828,25 Years and 3 Months,No,0,590.7933728,Low_spent_Large_value_payments,342.7264216,0,-1.4349,-1.0871,-0.8129,-3.6233,1.6052 +0x1fd4d,CUS_0x8188,August,19,205-17-8116,Mechanic,63730.08,5606.84,3,660,7,2,"Personal Loan, and Student Loan",,19,13.43,7,Standard,1760.01,30.26965536,18 Years and 0 Months,Yes,54.74701501,109.2738308,High_spent_Large_value_payments,636.6631541,0,1.1645,0.0157,-0.2999,-1.1765,1.3264 +0x1fd59,CUS_0xfbd,August,39,208-16-6908,Manager,64110.51,5217.5425,8,4,6,1,Mortgage Loan,,23.89673517,25.62,7,_,192.5390493,28.49155052,6 Years and 4 Months,Yes,28.61177628,409.921932,Low_spent_Small_value_payments,373.2205417,0,-1.0773,0.1933,1.1087,1.1362,-0.545 +0x1fd65,CUS_0xb73,August,37,888-32-1754,Teacher,51433.89,4374.1575,7,9,31.06745738,5,"Mortgage Loan, Payday Loan, Student Loan, Auto Loan, and Not Specified",37.62512805,18.50593452,31.15,11,Bad,5156.957392,37.28492415,3 Years and 2 Months,Yes,137.9828744,162.782033,High_spent_Medium_value_payments,359.9305547,0,-0.1475,-0.1393,0.4973,-1.027,-0.7549 +0x1fd71,CUS_0x4916,August,35,270-26-6300,Engineer,19603.315,,1,5,6,1,Home Equity Loan,13.56146447,11,7.74,0,_,1048.56,31.73524362,21 Years and 11 Months,No,10.64003253,,Low_spent_Large_value_payments,374.7904225,0,-0.3427,-1.0498,-0.01,-0.0711,-0.5153 +0x1fd7d,CUS_0x1de3,August,80,541-79-1548,Lawyer,16234.66,1084.888333,10,5,21,7,"Personal Loan, Debt Consolidation Loan, Payday Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Mortgage Loan",,21.28762219,3.06,15,Bad,2789.748784,27.98525562,9 Years and 8 Months,Yes,77.07021575,108.8496996,Low_spent_Small_value_payments,212.568918,0,0.4503,0.2875,-2.4997,0.6826,2.8955 +0x1fd89,CUS_0x8d3f,August,25,925-73-5530,Entrepreneur,24995.92,,5,3,8,3,"Auto Loan, Auto Loan, and Home Equity Loan",9.197488233,6,8.07,3,Standard,968.32,38.52895294,,Yes,45.91062371,47.6526948,High_spent_Medium_value_payments,366.4360148,0,2.0363,-0.6737,-1.9335,-0.2739,1.3261 +0x1fd95,CUS_0x3811,August,44,305-88-2648,Lawyer,82668.78,6930.065,3,6,20,100,Mortgage Loan,17.95742689,12,16.27,0,Standard,540.04,36.10039623,24 Years and 8 Months,Yes,55.69966513,739.1062317,Low_spent_Small_value_payments,188.2006032,0,1.0659,0.137,-0.9068,-0.83,0.4238 +0x1fda1,CUS_0x26a1,August,18,897-14-8536,Doctor,36533.3,3307.441667,4,5,18,1,Student Loan,15.47313974,15,17.14,12,_,446.9274481,32.89793663,19 Years and 6 Months,Yes,22.01536,261.4054986,Low_spent_Small_value_payments,362.0303624,0,-1.6209,-0.3216,-0.2941,-0.8454,-0.9223 +0x1fdad,CUS_0x15ec,August,30,#F%$D@*&8,Manager,21487.835,,1,2,6,3,"Home Equity Loan, Student Loan, and Not Specified",12.21587864,13,2.93,3,_,373.7784892,30.09980224,25 Years and 6 Months,NM,41.00638371,11019.11542,Low_spent_Medium_value_payments,326.7711143,0,-0.6273,-1.403,0.5101,0.9052,-1.8941 +0x1fdb9,CUS_0x6322,August,41,843-12-3405,Lawyer,7451.97,463.9975,10,6,30.06745738,5,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",33.25753314,18,7.41,9,Bad,1652.160954,29.83053151,11 Years and 10 Months,Yes,24.08719126,19.31910779,Low_spent_Small_value_payments,266.273163,0,-0.7006,-1.0055,-0.3598,-0.0271,-0.5882 +0x1fdc5,CUS_0x14d0,August,22,271-41-2506,Musician,48089.16,,10,8,19.06745738,5,"Auto Loan, Auto Loan, Auto Loan, Not Specified, and Home Equity Loan",37.20693172,19,18.09,9,Bad,2878.010954,39.39271595,7 Years and 11 Months,Yes,192.7401971,61.60207027,High_spent_Large_value_payments,349.1804446,0,0.7812,-1.1759,0.7567,-0.8479,0.815 +0x1fdd1,CUS_0x2f7e,August,31,109-48-2095,Doctor,126353.04,10635.42,4,7,19,2,"Credit-Builder Loan, and Mortgage Loan",15.67876553,13.19565513,9.43,3,_,957.9186697,28.44286675,31 Years and 9 Months,No,167.0439102,549.7661393,Low_spent_Medium_value_payments,3.33E+26,0,-0.184,-1.2779,-0.6502,-0.03,1.8107 +0x1fddd,CUS_0x13fb,August,22,995-80-1416,Doctor,23537.54,,7,4,8,3,"Mortgage Loan, Mortgage Loan, and Auto Loan",,22,7.13,6,Standard,174.06,25.39130848,9 Years and 8 Months,Yes,53.55830614,60.69782011,High_spent_Small_value_payments,336.3900404,0,-0.0363,-1.5658,-1.4779,1.9107,0.9605 +0x1fde9,CUS_0x9e9b,August,28,945-31-6025,Journalist,16833.86,,10,8,20.88954781,8,"Credit-Builder Loan, Not Specified, Home Equity Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",30.60175796,24,27.11,11,Bad,4224.062128,33.40280314,2 Years and 3 Months,Yes,1396.980145,,High_spent_Medium_value_payments,251.2017609,0,0.0106,1.4101,-1.4832,-1.1987,0.3712 +0x1fdf5,CUS_0x374c,August,50,881-30-4578,Engineer,33413.88,,5,7,10,3,"Debt Consolidation Loan, Auto Loan, and Auto Loan",14.29061561,10.55383333,19.75,,Standard,1374.221959,29.96013216,22 Years and 4 Months,Yes,46.39958673,124.1193456,Low_spent_Small_value_payments,396.5300677,0,0.9008,0.086,0.8371,-0.1681,-1.7089 +0x1fe01,CUS_0x7a4a,August,19,012-49-4059,Architect,58832.19,4827.6825,8,3,10,3,"Student Loan, Debt Consolidation Loan, and Student Loan",,,8.02,0,Standard,809.32,37.85392671,22 Years and 11 Months,No,121.4189947,59.20452947,High_spent_Large_value_payments,542.1447258,0,2.4513,-0.353,-0.1274,-2.0295,1.4121 +0x1fe0d,CUS_0x5b64,August,39,941-63-3418,Lawyer,14982,1137.5,6,3,17,2,"Debt Consolidation Loan, and Home Equity Loan",,21,14.66,7,Standard,693.77,26.19015118,,Yes,24.56916091,125.8508206,Low_spent_Small_value_payments,253.3300185,0,-1.2088,0.7202,-0.5833,0.6181,1.224 +0x1fe19,CUS_0x2a47,August,52,334-68-0617,Engineer,97694.32,8153.193333,5,5,10,4,"Payday Loan, Personal Loan, Payday Loan, and Personal Loan",,9,1.46,5,Standard,915.32,30.72479698,22 Years and 4 Months,Yes,247.8332518,176.0691544,High_spent_Large_value_payments,631.4169271,0,0.8933,-0.0212,0.9331,0.5493,1.7187 +0x1fe25,CUS_0xd97,August,39,113-67-9836,Doctor,10774.095,1075.84125,3,6,19,2,"Debt Consolidation Loan, and Home Equity Loan",23.43463322,20,15.65,7,Standard,563.69,26.81615857,17 Years and 2 Months,Yes,16.73832373,104.7671669,Low_spent_Medium_value_payments,266.0786343,0,-0.0832,0.0513,0.3084,-2.3205,1.3166 +0x1fe31,CUS_0x3cfc,August,44,571-14-9541,Musician,20348.57,,9,8,17.06745738,8,"Student Loan, Mortgage Loan, Not Specified, Personal Loan, Mortgage Loan, Home Equity Loan, Student Loan, and Auto Loan",41.9530544,25.68466459,5.78,6,Bad,3895.033738,26.69652887,7 Years and 0 Months,Yes,110.5005816,45.76339439,Low_spent_Medium_value_payments,245.6871527,0,-0.449,-1.5191,-0.3032,-1.084,-1.3535 +0x1fe3d,CUS_0x56a5,August,54,791-07-4874,Entrepreneur,38933.58,3432.465,4,7,9,3,"Mortgage Loan, Mortgage Loan, and Mortgage Loan",13.98307304,12,4.84,3,Good,149,23.7792951,31 Years and 9 Months,NM,78.40985093,436.213937,Low_spent_Small_value_payments,118.6227121,0,0.8015,-0.643,0.2165,-0.7329,1.872 +0x1fe49,CUS_0xae89,August,20,525-27-7908,Engineer,56141.26,4137.240857,8,4,11,1,Auto Loan,,16,19.38,10,Standard,845.2865877,37.77274567,20 Years and 8 Months,NM,501.7442123,145.9012359,High_spent_Medium_value_payments,557.7104407,0,-1.1512,-0.15,0.5909,-1.2198,1.2056 +0x1fe55,CUS_0x436d,August,49,605-53-6907,Manager,13016.955,805.74625,5,5,14,1,Auto Loan,9.255259133,8,9.81,4,Standard,519.51,25.00863349,24 Years and 9 Months,No,7.327678461,29.46681119,Low_spent_Medium_value_payments,323.7801354,0,-1.9103,-1.1967,-1.7958,-0.269,0.8344 +0x1fe61,CUS_0xb5a,August,32,363-61-5055,Architect,54239.94,4341.995,9,7,30.06745738,7,"Home Equity Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Personal Loan",,20,18.52,16,Bad,4384.200954,35.41009329,7 Years and 11 Months,NM,275.8968755,,High_spent_Medium_value_payments,207.2676857,0,-0.1345,0.8218,-1.6619,-0.1891,0.2455 +0x1fe6d,CUS_0x75f,August,31,992-15-8442,Musician,78188.84,6296.736667,3,6,17,3,"Debt Consolidation Loan, Personal Loan, and Not Specified",23.72708718,19,13.56,8,Standard,605.86,38.73256083,15 Years and 6 Months,Yes,195.1023462,336.4045914,Low_spent_Large_value_payments,368.1667291,0,2.3868,0.9588,-1.035,0.7996,-0.0457 +0x1fe79,CUS_0xcf8,August,38,039-13-0256,Musician,44768.73,3911.7275,6,10,30.06745738,4,"Home Equity Loan, Auto Loan, Auto Loan, and Home Equity Loan",36.941499,19.1226829,11.51,8,Bad,2801.283574,37.49006661,16 Years and 11 Months,Yes,96.16674057,87.27552532,High_spent_Small_value_payments,441.0101962,0,0.3968,0.4279,1.1844,0.2952,-0.4784 +0x1fe85,CUS_0x4b5d,August,25,457-76-4147,Media_Manager,134499.84,11019.32,0,4,4,3,"Payday Loan, Credit-Builder Loan, and Mortgage Loan",11.87320371,10,11.09,4,Good,99.03568061,29.01730874,31 Years and 8 Months,No,63845,482.0735655,High_spent_Medium_value_payments,690.9854629,0,-1.3903,0.0001,0.1662,1.467,-1.2175 +0x1fe91,CUS_0x1a85,August,30,294-75-4552,Engineer,71616.36,5971.03,5,5,16,5,"Personal Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",26.90433379,16.89647125,2.04,4,Standard,2056.547169,40.4740604,7 Years and 10 Months,Yes,168.7622523,406.4304155,Low_spent_Large_value_payments,291.9103323,0,0.2801,-1.7721,0.8051,-0.1124,1.1451 +0x1fe9d,CUS_0x8533,August,80,747-81-0975,Architect,40287.78,3280.315,4,3,11,2,"Mortgage Loan, and Debt Consolidation Loan",0.74348367,5,1.95,0,_,1298.6,35.34585307,30 Years and 5 Months,No,39.38754027,28.59628946,High_spent_Large_value_payments,500.0476703,0,0.8644,-0.0054,0.4198,-1.1763,1.1127 +0x1fea9,CUS_0x97ec,August,39,#F%$D@*&8,Engineer,17212.35,1271.3625,8,9,26,2,"Home Equity Loan, and Not Specified",45.79815969,21.76739191,13.44,15,Bad,2687.794892,27.05693908,11 Years and 11 Months,Yes,15.95352417,95.17470183,Low_spent_Large_value_payments,286.008024,0,-0.3645,0.1331,1.2612,-2.0787,-1.3186 +0x1feb5,CUS_0xaaff,August,80,269-27-4859,Musician,89122.8,7141.9,7,3,12,1,Home Equity Loan,,14,8.06,1,Standard,290.0411104,35.68682889,26 Years and 4 Months,No,57.75937541,,High_spent_Large_value_payments,715.0170586,0,1.2937,-0.0322,0.2417,0.2105,-0.3846 +0x1fec1,CUS_0xfdf,August,56,099-84-4997,_______,70114.38,,0,4,12,100,"Home Equity Loan, Auto Loan, and Home Equity Loan",0,0,9.9,3,Good,918.89,40.43452864,,No,131.4721728,146.8600024,High_spent_Large_value_payments,529.6543249,0,-0.9651,-0.2884,-0.2233,2.4103,-0.8124 +0x1fecd,CUS_0x2306,August,54,260-24-2546,Teacher,73455.03,6367.2525,8,4,6.288361749,2,"Credit-Builder Loan, and Not Specified",7.308840141,8,8.83,7,_,833.37,31.03023131,30 Years and 0 Months,NM,86.49480091,737.3218822,Low_spent_Medium_value_payments,512.8460279,0,-0.3938,1.1822,-0.129,0.6853,0.9563 +0x1fed9,CUS_0x4cf6,August,47,708-56-6525,Musician,39280.52,,5,1,9,2,"Home Equity Loan, and Not Specified",,2,7.15,4,_,544.5459365,36.32891562,23 Years and 2 Months,No,38.30417245,,Low_spent_Small_value_payments,189.4430771,0,-1.1633,0.7775,-1.469,-0.9761,1.0732 +0x1fee5,CUS_0x30de,August,22,#F%$D@*&8,Writer,15475.27,1264.605833,6,6,28,6,"Student Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",24.31728518,,21.33,,Bad,4683.73,31.35834879,14 Years and 3 Months,Yes,42.08797369,83.29089572,Low_spent_Small_value_payments,291.0817139,0,-0.968,1.0369,-1.1969,0.5077,0.498 +0x1fef1,CUS_0x864c,August,52,151-85-2282,Musician,43075.97,,3,5,11.28836175,100,Payday Loan,90,969,7.81,2,Good,202.3400872,37.68955363,17 Years and 4 Months,No,30.30666049,,High_spent_Large_value_payments,529.2956093,0,1.2828,0.8863,0.521,-0.0172,1.8901 +0x1fefd,CUS_0x2526,August,18,504-86-6575,Teacher,15286.16,,6,9,21.95700519,7,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Personal Loan, Home Equity Loan, and Personal Loan",29.22244438,17,25.58,10,Bad,2849.060954,29.71070182,,Yes,21152.48344,,Low_spent_Small_value_payments,233.9761039,0,1.5025,1.0211,1.6083,1.6171,-0.4461 +0x1ff09,CUS_0xaff2,August,25,402-57-1018,Lawyer,31174.8,,6,3,14,1,Personal Loan,10.41259993,9,10.85,,Standard,1286.96,27.13261593,27 Years and 5 Months,Yes,19.65186289,,High_spent_Small_value_payments,390.6976268,0,-0.6711,0.9339,-1.1005,-0.0662,0.6707 +0x1ff15,CUS_0x8f3f,August,22,295-44-1174,Lawyer,20566.56,,8,10,31.95700519,8,"Home Equity Loan, Auto Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, Payday Loan, and Auto Loan",50.08003914,25.41002341,7.59,15,Bad,5759.759017,27.19910621,6 Years and 8 Months,Yes,1422.005595,99.88163289,Low_spent_Medium_value_payments,208.2504025,0,-1.0003,0.4426,-0.5784,-0.4463,-0.3184 +0x1ff21,CUS_0xaef2,August,32,167-27-1604,Media_Manager,15049.89,971.1575,6,4,17,5,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Home Equity Loan",20.21760258,17.27710589,15.21,12,Standard,2057.133432,22.51273637,18 Years and 11 Months,Yes,46.60328791,,Low_spent_Small_value_payments,222.456141,0,-0.6158,1.3166,0.592,-1.0517,-0.5796 +0x1ff2d,CUS_0x9515,August,28,563-62-5444,Media_Manager,56985.9,4700.825,10,8,20.88954781,7,"Student Loan, Payday Loan, Auto Loan, Payday Loan, Not Specified, Home Equity Loan, and Home Equity Loan",40.34099543,21.51379021,18.74,,Standard,2056.877037,23.94651124,6 Years and 8 Months,Yes,1518.980956,118.0965537,High_spent_Large_value_payments,378.6749088,0,0.1207,0.563,-0.3108,-0.1707,-1.2463 +0x1ff39,CUS_0x9d10,August,48,320-15-5280,Entrepreneur,132641.34,11051.445,1,3,5.288361749,0,Credit-Builder Loan,8.640318763,11,7.6,3,Good,760.4659314,27.90467177,21 Years and 2 Months,No,70.10041865,1517.268485,Low_spent_Large_value_payments,320.6583455,0,0.4304,1.0226,-0.909,0.3205,0.9949 +0x1ff45,CUS_0xa439,August,38,955-94-0714,Media_Manager,109607.43,9308.9525,7,180,18,4,"Home Equity Loan, Not Specified, Auto Loan, and Not Specified",20.91280548,14,14.76,9,Standard,852.74,31.55156996,22 Years and 5 Months,Yes,230.1992433,649.185792,Low_spent_Small_value_payments,341.5102147,0,-0.7003,-0.8137,0.6448,0.9091,-0.2276 +0x1ff51,CUS_0x5edc,August,24,190-51-3193,Accountant,45488.94,,6,5,18,7,"Auto Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Student Loan",28.38117172,12,7.77,10,_,2241.07,38.20436708,8 Years and 11 Months,NM,185.7968833,251.280732,High_spent_Small_value_payments,209.0968847,0,0.1172,-1.4348,0.0812,0.4887,-1.4016 +0x1ff5d,CUS_0x9b3f,August,36,397-76-3527,Teacher,15615.3,1185.275,6,7,20.06745738,6,"Debt Consolidation Loan, Payday Loan, Payday Loan, Not Specified, Not Specified, and Mortgage Loan",,14,5.71,11,Bad,2889.470954,34.3927685,2 Years and 5 Months,Yes,45.45311166,32.61748254,Low_spent_Medium_value_payments,293.7366179,0,-0.7185,-1.859,-0.0377,-0.1079,1.0057 +0x1ff69,CUS_0x4e42,August,38,473-82-4532,Scientist,42829.15,3535.095833,0,5,2.288361749,0,Debt Consolidation Loan,0,4,11.21,3,Good,532.9264859,25.0452541,32 Years and 9 Months,No,25.30603245,11620.1631,!@9#%8,494.0100247,0,0.151,-1.7093,1.7985,1.3509,-0.5264 +0x1ff75,CUS_0xb426,August,28,059-95-1359,Developer,18140.94,,8,10,17.88954781,7,"Home Equity Loan, Personal Loan, Mortgage Loan, Not Specified, Student Loan, Not Specified, and Student Loan",21.548968,10.26190067,16.45,11,Standard,2533.304191,28.2562476,,Yes,1388.737823,69.23209317,!@9#%8,285.7745029,0,0.5395,0.9982,0.6315,-0.4301,-1.0569 +0x1ff81,CUS_0x970b,August,23,883-30-5284,Architect,25417.33,,7,7,19,7,"Payday Loan, Student Loan, Payday Loan, Personal Loan, Mortgage Loan, Payday Loan, and Auto Loan",25.56207042,19,12.58,6,Standard,399.2138082,31.82736723,14 Years and 11 Months,Yes,15586,53.20093907,High_spent_Medium_value_payments,305.5340143,0,0.7812,-0.0083,-0.2348,0.6633,0.0151 +0x1ff8d,CUS_0x2dc0,August,37,610-55-7038,Accountant,34378.42,,6,9,18,2,"Not Specified, and Debt Consolidation Loan",28.80866706,15.22360957,26.28,17,Standard,1644.193501,27.90816175,11 Years and 5 Months,Yes,37.65096728,110.822409,Low_spent_Small_value_payments,404.413457,0,1.1589,0.5046,-0.2677,-0.2507,1.3809 +0x1ff99,CUS_0x3f35,August,45,120-70-0061,Accountant,26683.75,2224.645833,7,5,16,1,Payday Loan,16.27280779,10,10.85,,Standard,1186.43,27.43790622,,No,21.99380359,102.3784403,Low_spent_Small_value_payments,388.0923395,0,-0.9536,-1.704,0.7064,0.6586,2.415 +0x1ffa5,CUS_0x86ed,August,36,093-35-5868,_______,61117.29,4756.724606,8,8,17.88954781,7,"Student Loan, Auto Loan, Payday Loan, Student Loan, Not Specified, Home Equity Loan, and Personal Loan",,15.23027838,7.24,6,_,2435.090311,31.58207352,8 Years and 5 Months,Yes,1721.768212,187.0026053,Low_spent_Medium_value_payments,279.4927454,0,1.5884,1.0467,-0.411,0.4185,1.0173 +0x1ffb1,CUS_0x4187,August,36,292-38-7700,Journalist,41544.52,,4,3,7.067457376,2,"Personal Loan, and Debt Consolidation Loan",30.3025839,18.91602532,9.75,11,Standard,2957.630049,34.19617226,6 Years and 4 Months,Yes,65.99020551,,Low_spent_Small_value_payments,195.9533754,0,0.3439,0.9769,2.4195,0.7293,0.3873 +0x1ffbd,CUS_0xc1b3,August,56,454-72-8750,Media_Manager,15466.055,,7,7,17,2,"Credit-Builder Loan, and Not Specified",18.03729074,,9.94,,Standard,883.26,24.65473376,16 Years and 3 Months,Yes,25.50623656,,High_spent_Small_value_payments,327.3406852,0,1.7558,-0.8127,1.7641,0.6207,-0.299 +0x1ffc9,CUS_0x8802,August,25,962-23-5656,Doctor,122469.16,,7,6,17.28836175,0,Auto Loan,24.16418648,20,9.94,0,Standard,1154.21,33.55126861,21 Years and 3 Months,No,83.01740061,516.2917381,High_spent_Large_value_payments,1067.904656,0,-0.6824,-1.5295,-0.5518,-0.7342,-0.9846 +0x1ffd5,CUS_0xae6c,August,30,218-87-4473,Accountant,8576.98,665.7483333,8,9,17.88954781,7,"Personal Loan, Auto Loan, Not Specified, Home Equity Loan, Payday Loan, Auto Loan, and Not Specified",29.23225145,16,3.15,12,Bad,3650.06,39.36650951,4 Years and 5 Months,Yes,1363.151448,,Low_spent_Medium_value_payments,236.8991907,0,-0.4696,-0.4275,0.6199,0.7697,-2.1634 +0x1ffe1,CUS_0x4b12,August,29,535-48-2237,Media_Manager,57654.4,4590.533333,4,6,10,2,"Mortgage Loan, and Auto Loan",23.56680655,19,12.71,9,Standard,573.53,25.84369355,10 Years and 9 Months,Yes,53.03604649,97.9971106,High_spent_Medium_value_payments,558.0201762,0,-1.7189,-0.682,0.9569,1.1241,-0.1165 +0x1ffed,CUS_0x36d4,August,48,894-71-1096,Architect,137097.8,,4,7,4.288361749,2,"Auto Loan, Student Loan, and Auto Loan",6.925922596,8,9.76,3,_,1045.06,33.28804407,29 Years and 3 Months,No,213.741869,718.6155056,High_spent_Medium_value_payments,873.261753,0,-0.6279,0.2273,-1.4542,0.6649,-0.4767 +0x1fff9,CUS_0xc11f,August,29,672-97-2497,Journalist,16517.73,,6,8,30.95700519,7,"Not Specified, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Student Loan",34.61080188,20,33.54,8,Bad,5176.700954,40.24854175,1 Years and 6 Months,Yes,1381.551508,51.19008466,!@9#%8,268.5557881,0,0.7453,-1.6398,1.1161,-1.1996,0.5216 +0x20005,CUS_0x649e,August,23,815-38-6088,Musician,69324.4,5509.033333,4,7,12,3,"Mortgage Loan, Payday Loan, and Mortgage Loan",3.279686205,5,10.89,8,Standard,1075.73,31.54069436,17 Years and 8 Months,Yes,115.0087063,172.0991015,!@9#%8,523.7955255,0,-0.0477,-0.5086,-0.4973,-0.3365,-1.106 +0x20011,CUS_0x80dd,August,33,558-26-7068,Media_Manager,72712.2,6169.35,8,5,16,0,,19.03622358,14,6.93,1,Standard,1431.1,30.58509843,29 Years and 2 Months,No,0,289.9230407,Low_spent_Large_value_payments,597.0119593,0,-0.1272,-0.8973,0.2843,-0.9364,0.1559 +0x2001d,CUS_0x8c6f,August,20,369-74-7693,Engineer,7039.745,,9,5,20,9,"Payday Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",36.54630099,20,16.92,16,Bad,3703.08,38.34529713,6 Years and 3 Months,Yes,43.64275583,,!@9#%8,249.1732885,0,0.4911,-0.7801,0.9473,0.0526,1.4017 +0x20029,CUS_0xacfc,August,44,823-40-2759,Teacher,37424.16,3045.68,7,5,18,100,"Student Loan, Home Equity Loan, and Debt Consolidation Loan",18.96312483,16,14.64,10,Standard,1445.81,33.77178696,18 Years and 10 Months,NM,90.94863059,311.874506,Low_spent_Small_value_payments,191.7448634,0,-0.3588,2.1232,-0.2392,0.4785,-1.1099 +0x20035,CUS_0x20d0,August,22,232-22-8119,Musician,40692.4,3686.033333,10,8,19.95700519,6,"Student Loan, Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",27.2428861,16.22733457,1.32,12,Bad,4751.772826,35.83616095,5 Years and 11 Months,Yes,1524.110057,10000,High_spent_Small_value_payments,160.7380461,0,1.3906,0.7705,0.3299,-1.1067,2.806 +0x20041,CUS_0x144c,August,53,317-80-3283,Mechanic,15948.285,,4,4,5,3,"Auto Loan, Student Loan, and Payday Loan",9.045925963,9,3.42,6,Good,1068.42,38.74936588,25 Years and 2 Months,No,23.81321132,29.66795636,High_spent_Medium_value_payments,359.0212073,0,0.5197,-0.0059,1.3746,1.3303,-0.301 +0x2004d,CUS_0x3fc2,August,32,474-40-2831,Lawyer,71983.5,5966.625,5,6,18,4,"Not Specified, Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",8.757100859,8,25.41,0,Standard,519.33,27.99661761,32 Years and 6 Months,Yes,230.106816,133.007498,High_spent_Large_value_payments,473.548186,0,0.1591,-0.0448,0.6656,-0.0141,-0.1076 +0x20059,CUS_0xa39,August,34,230-70-3549,_______,42585.4,,0,7,6,0,,3.06968878,7,0.92,3,Good,1076.7,32.13765692,25 Years and 10 Months,No,0,409.4923442,Low_spent_Small_value_payments,208.5859891,0,-1.1591,-1.7556,1.8324,0.1469,0.3579 +0x20065,CUS_0x86e7,August,25,037-87-7530,Doctor,18600.88,,5,6,5,6,"Home Equity Loan, Not Specified, Personal Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",25.01186803,19.50848876,19.71,9,Standard,2765.751294,25.5035062,,Yes,73.88978185,49.82465236,Low_spent_Large_value_payments,284.8928991,0,-0.2676,-0.255,-0.7792,-0.1655,0.6969 +0x20071,CUS_0x5eda,August,35,091-75-1836,Engineer,31024.77,,4,5,8,2,"Credit-Builder Loan, and Not Specified",11.15946226,10,9.31,1,Good,1245.617479,36.6816267,,No,35.81827976,50.97485399,High_spent_Medium_value_payments,410.3850185,0,-0.622,0.4132,0.5923,-1.1367,-0.8911 +0x2007d,CUS_0xae96,August,43,414-33-7358,Mechanic,8800037,,3,4,24,4,"Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, and Not Specified",26.05022232,20,19.27,10,Standard,1854.48,23.85020703,11 Years and 8 Months,Yes,54.40859291,50.0228376,High_spent_Small_value_payments,306.5497362,0,-1.6232,2.7397,-0.4083,-1.7537,-0.8272 +0x20089,CUS_0x7dea,August,45,335-20-3827,Musician,28805.34,2309.445,8,3,5,2,"Payday Loan, and Credit-Builder Loan",23.16008928,19,7.02,0,Standard,796.45,36.87521358,32 Years and 5 Months,No,47.19512293,140.1421381,Low_spent_Small_value_payments,333.607239,0,-1.3349,-0.1939,-2.3557,2.3112,0.9564 +0x20095,CUS_0x9a3d,August,36,168-25-2355,Accountant,19724.81,,3,6,12,4,"Mortgage Loan, Payday Loan, Mortgage Loan, and Personal Loan",10.05872603,10,3.68,0,Good,1179.074655,34.68452565,29 Years and 8 Months,No,49.93791871,160.7193019,Low_spent_Small_value_payments,241.1463521,0,1.0635,-0.1845,0.252,0.0148,0.5796 +0x200a1,CUS_0x1ccf,August,28,450-49-4774,Teacher,8381.025,852.41875,6,769,23.06745738,2,"Home Equity Loan, and Home Equity Loan",,22.55439046,0.51,8,Bad,1817.217482,40.46428034,6 Years and 6 Months,Yes,7.348140838,,Low_spent_Small_value_payments,284.0636232,0,2.5055,-2.1093,-0.3103,-0.0933,-1.6368 +0x200ad,CUS_0x81e9,August,37,541-82-8577,Mechanic,51045.9,4037.825,10,5,23.06745738,9,"Auto Loan, Personal Loan, Not Specified, Not Specified, Mortgage Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Student Loan",,23,15.17,11,_,3101.860954,34.5533917,2 Years and 9 Months,Yes,205.4151315,79.88715507,High_spent_Large_value_payments,331.7599255,0,-1.1093,0.5949,0.512,1.1196,-0.689 +0x200b9,CUS_0x1a16,August,34,316-83-4105,_______,1127430,,10,9,17.88954781,6,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Personal Loan, Home Equity Loan, and Personal Loan",35.01494237,25,20.95,13,Bad,3881.11,36.32649524,8 Years and 10 Months,Yes,1566.754315,162.6063513,High_spent_Medium_value_payments,305.4352524,0,-0.4951,0.2162,1.4758,0.5447,0.2402 +0x200c5,CUS_0x5c66,August,33,864-80-9668,Lawyer,98035.14,,6,5,8,1,Not Specified,,12,2.99,2,Standard,143.3660103,36.10305309,17 Years and 8 Months,No,692.5280397,340.6530142,High_spent_Small_value_payments,723.0381977,0,1.0706,0.2193,-0.1422,0.3324,0.0373 +0x200d1,CUS_0x7f40,August,47,799-90-8464,Doctor,120834.03,9094.413001,3,6,10.28836175,2,"Mortgage Loan, and Mortgage Loan",,,1.13,2,Good,1152.002384,29.28815736,23 Years and 10 Months,No,955.4113605,783.8300175,Low_spent_Large_value_payments,756.9735228,0,0.6767,-1.1325,0.9807,-0.5808,0.5134 +0x200dd,CUS_0x331a,August,80,708-93-5779,Developer,17767.41,,6,10,29.06745738,5,"Not Specified, Not Specified, Credit-Builder Loan, Student Loan, and Student Loan",38.76091352,23.69293391,8.73,9,_,3166.339927,40.89468812,10 Years and 5 Months,Yes,65.4899947,66.86909317,Low_spent_Small_value_payments,271.6823742,0,0.9086,0.689,-0.6945,0.9514,-2.2344 +0x200e9,CUS_0xb5c0,August,46,556-58-1200,_______,79929.76,6917.813333,8,6,10.28836175,0,,21.22539155,19,6.28,0,Standard,662.2434429,32.68990474,30 Years and 0 Months,No,0,733.5643463,Low_spent_Medium_value_payments,689.7542007,0,-0.6436,-0.089,0.1455,0.6452,-0.0301 +0x200f5,CUS_0xb4c9,August,26,431-25-9243,Media_Manager,20906.89,1620.240833,6,5,29,5,"Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",28.32874382,17,23.48,15,Bad,3714.72,23.83685274,5 Years and 6 Months,Yes,80.48726431,215.115098,Low_spent_Small_value_payments,156.4217211,0,1.6004,0.9935,1.4996,0.0523,-1.3158 +0x20101,CUS_0x2a85,August,40,886-14-0756,_______,16041.85,1479.820833,9,6,30,7,"Mortgage Loan, Home Equity Loan, Auto Loan, Auto Loan, Home Equity Loan, Not Specified, and Personal Loan",35.98707684,20.05242757,2.17,11,Bad,5500.595193,39.71137432,7 Years and 11 Months,Yes,59.99621236,24.12775159,High_spent_Large_value_payments,303.8581194,0,0.1655,-0.4237,-1.0509,0.592,1.0677 +0x2010d,CUS_0x9070,August,31,117-73-0212,Scientist,120522.88,9816.573333,7,4,5.288361749,100,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",22.74702062,19,14.01,2015,Standard,1302.14441,22.22498153,9 Years and 10 Months,Yes,408.5619301,,Low_spent_Medium_value_payments,,0,-0.6361,-0.7888,1.0654,-0.6574,-0.7413 +0x20119,CUS_0x5b9c,August,37,212-61-0276,Manager,35862.37,3172.530833,4,2,7,2,"Personal Loan, and Personal Loan",0,1,0.74,4,Good,492.4163272,25.04338348,16 Years and 11 Months,No,51.64576548,,Low_spent_Medium_value_payments,415.1927711,0,-0.3468,0.2853,-0.9189,-0.3317,-1.6615 +0x20125,CUS_0x6611,August,21,332-42-7951,Engineer,19020.63,,10,5,27,7,"Not Specified, Auto Loan, Home Equity Loan, Payday Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",30.86350505,22,16.25,6,Bad,3217.69,27.84307754,14 Years and 0 Months,Yes,104.900075,,Low_spent_Medium_value_payments,227.852277,0,-0.1422,0.9897,0.3288,-0.5711,0.2894 +0x20131,CUS_0xb367,August,18,301-31-7681,Mechanic,103395.24,8424.27,5,7,6,3,"Home Equity Loan, Student Loan, and Home Equity Loan",20.34004313,17,14.37,12,Standard,1103.47,38.04889777,6 Years and 6 Months,Yes,146.6218839,,Low_spent_Medium_value_payments,219.1180499,0,1.0634,0.1613,-1.3571,0.6017,-0.0582 +0x2013d,CUS_0x5c09,August,18,758-97-8399,Architect,62153.44,,4,3,6,5,"Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Payday Loan",17.33036957,,8.98,6,Standard,1853.35,31.85301631,8 Years and 3 Months,Yes,169.0567129,143.6240361,Low_spent_Medium_value_payments,472.9645843,0,0.7712,-1.9368,0.9206,1.0848,-0.1755 +0x20149,CUS_0x39d4,August,45,034-42-6069,Accountant,73507.4,6146.616667,8,7,18,7,"Mortgage Loan, Student Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Auto Loan, and Auto Loan",32.42930257,18.70067213,-0.54,10,Bad,1821.778127,30.36496498,16 Years and 2 Months,Yes,412.0513671,,Low_spent_Medium_value_payments,65.3111617,0,1.9051,0.1125,-0.8651,-1.2807,2.5571 +0x20155,CUS_0x8141,August,24,117-80-3557,Mechanic,79147.2,,8,8,31.88954781,9,"Not Specified, Auto Loan, Personal Loan, Not Specified, Not Specified, Not Specified, Credit-Builder Loan, Auto Loan, and Payday Loan",47.2346919,28.01754814,2.28,9,Bad,2792.505956,24.72862208,20 Years and 0 Months,Yes,1776.172895,667.8715076,Low_spent_Medium_value_payments,,0,-0.2498,2.067,-1.2998,-0.4442,0.1677 +0x20161,CUS_0xa4ac,August,20,898-28-1569,Doctor,112939.47,,4,5,12,0,,0.915837593,2,11.03,6,Good,800.06,29.39135373,23 Years and 2 Months,No,12342,120.6934568,High_spent_Large_value_payments,1085.768793,0,-0.9539,-1.1627,-0.4946,0.2507,-0.8462 +0x2016d,CUS_0x657f,August,41,674-46-3199,Accountant,18817.94,,6,6,5,3,"Personal Loan, Mortgage Loan, and Personal Loan",29.53079323,19,15.62,10,_,649.26,34.87987034,7 Years and 0 Months,Yes,43.23669512,110.1457981,!@9#%8,292.6336734,0,0.133,-0.0862,-1.4995,1.3196,1.5425 +0x20179,CUS_0x5d0b,August,21,541-85-9649,Lawyer,57846.48,4962.54,8,7,18,6,"Credit-Builder Loan, Student Loan, Payday Loan, Not Specified, Not Specified, and Student Loan",39.91649414,19.15126257,10.74,12,Bad,2160.468637,38.78178895,14 Years and 4 Months,Yes,268.6574878,,High_spent_Large_value_payments,429.1447083,0,0.3016,-0.1352,-0.5518,-0.6358,3.0922 +0x20185,CUS_0x3489,August,47,779-55-8375,Mechanic,106520.64,8919.72,2,5,12,4,"Mortgage Loan, Not Specified, Credit-Builder Loan, and Student Loan",,3,6.03,2,_,353.01,37.28074122,16 Years and 5 Months,NM,192.8874869,402.2916328,Low_spent_Small_value_payments,586.7928802,0,0.1759,1.0574,-1.4044,0.8822,-0.2823 +0x20191,CUS_0x432a,August,19,626-35-9737,Media_Manager,103769.88,8421.817159,5,6,14,4,"Mortgage Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",9.120001561,10,14.15,8,Standard,436.69,37.06393603,16 Years and 11 Months,Yes,596.3370135,351.3971116,Low_spent_Medium_value_payments,538.1877162,0,-1.1388,1.4285,0.9055,-1.8979,-0.8676 +0x2019d,CUS_0x4ad7,August,45,246-22-8674,Teacher,93305.76,7837.48,3,6,15,1,Student Loan,31.93883586,24.08144671,4.55,3,Standard,1423.937026,36.47811171,30 Years and 2 Months,Yes,39.38564367,96.81027024,High_spent_Medium_value_payments,897.5520861,0,0.0006,2.4629,0.1941,0.6969,0.9937 +0x201a9,CUS_0x45c0,August,34,000-60-0688,Manager,27954.68,,3,3,12,100,"Not Specified, Auto Loan, and Auto Loan",,11,0.95,3,Good,1269.914031,26.5929647,21 Years and 10 Months,No,50.37342112,238.1437042,Low_spent_Large_value_payments,240.3435918,0,-0.7513,-1.5899,2.2147,0.5697,-1.4922 +0x201b5,CUS_0x4b91,August,20,352-38-8467,Entrepreneur,41819.64,,5,5,16,6,"Payday Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, and Student Loan",17.08093277,,13.95,5,Standard,2491.485332,26.36637086,6 Years and 11 Months,Yes,129.4549397,,Low_spent_Small_value_payments,190.0945358,0,0.375,-0.7866,1.6323,-1.7846,-0.961 +0x201c1,CUS_0x460d,August,24,#F%$D@*&8,Journalist,42346.98,,3,2,11.28836175,0,,1.677031284,6,11.89,7,Good,338.7464974,38.22919367,30 Years and 0 Months,No,0,765.131224,!@9#%8,348.5362937,0,-0.2207,0.693,1.3116,-0.9991,0.2377 +0x201cd,CUS_0x86a7,August,80,009-03-6050,Accountant,73926.36,6117.53,8,6,22.06745738,6,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Auto Loan",29.34567391,16,26.28,7,Bad,4202.310954,32.01436935,3 Years and 8 Months,Yes,329.2437294,130.495451,High_spent_Large_value_payments,365.2935317,0,1.2819,-1.289,0.5655,0.2428,-1.3745 +0x201d9,CUS_0x4d12,August,37,176-95-2803,_______,129762.48,10974.54,0,2,5,0,,2.836259066,5,11.97,0,Good,926.902782,33.48384222,,No,0,628.8323274,Low_spent_Medium_value_payments,829.611948,0,-0.9501,-0.6017,0.4652,1.2257,-0.5353 +0x201e5,CUS_0x43d,August,42,240-16-7049,Entrepreneur,14012.51,,10,7,32.06745738,5,"Personal Loan, Personal Loan, Personal Loan, Student Loan, and Mortgage Loan",35.18109191,19,24.73,10,_,4620.460954,32.28585813,10 Years and 6 Months,Yes,102.9737985,35.09889209,Low_spent_Medium_value_payments,269.2961872,0,1.1357,-1.0151,0.3907,-1.2856,1.1667 +0x201f1,CUS_0x6620,August,18,771-23-4071,Manager,61922.24,5418.186667,6,9,4842.889548,9,"Payday Loan, Auto Loan, Student Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Personal Loan, and Auto Loan",31.7326726,22.44476445,23.28,15,Bad,5121.24546,33.64505309,3 Years and 11 Months,Yes,1659.498307,392.8253541,Low_spent_Small_value_payments,85.16492478,0,-0.6973,2.365,-0.8683,-2.3834,0.4609 +0x201fd,CUS_0x4d94,August,37,106-40-8801,Engineer,31067.03,,5,3,5,4,"Not Specified, Not Specified, Not Specified, and Auto Loan",,14.36538634,8.2,5,Standard,882.5158709,23.15011797,16 Years and 10 Months,Yes,79.25048947,,Low_spent_Small_value_payments,146.8230035,0,-1.2023,0.2849,0.7489,-1.3231,0.5779 +0x20209,CUS_0x6cdd,August,31,276-81-8864,_______,40069.45,,3,5,2.288361749,2,"Not Specified, and Credit-Builder Loan",7.827366251,10,5.42,6,_,21.99732407,26.2306231,25 Years and 2 Months,No,63.06480596,654.7229897,Low_spent_Small_value_payments,386.1845076,0,-1.8036,-1.4909,2.9836,-0.5053,-2.0157 +0x20215,CUS_0xb5a8,August,26,232-92-9825,Entrepreneur,11138.425,,3,7,20,2,"Credit-Builder Loan, and Mortgage Loan",,11.79750604,7.95,2,Standard,960.1111828,35.37931187,26 Years and 0 Months,Yes,11.12529943,49.6250768,High_spent_Small_value_payments,290.3698321,0,1.3555,1.6895,-0.4468,0.5833,0.561 +0x20221,CUS_0xaea7,August,18,899-86-9384,Entrepreneur,80669.44,6502.453333,8,8,816,5,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",50.56342884,29.23619301,24.55,12,_,3975.250192,26.26259485,14 Years and 2 Months,Yes,190.429435,190.7136629,High_spent_Small_value_payments,529.1022355,0,-0.9746,-0.6747,0.7291,0.1334,-0.3735 +0x2022d,CUS_0xb8a7,August,29,630-52-9597,Lawyer,143544.96,12156.08,5,7,14,0,,24.17690525,15,8.26,4,Standard,1434.18,31.06105624,15 Years and 10 Months,Yes,0,10000,High_spent_Large_value_payments,1339.859744,0,-0.003,0.141,1.9622,0.4095,0.4557 +0x20239,CUS_0xb38f,August,34,076-83-7903,_______,56500.7,,2,3,4,2,"Student Loan, and Not Specified",,3,7.86,5,_,991.98,23.67401592,32 Years and 10 Months,NM,396.3407625,295.8169107,Low_spent_Large_value_payments,371.7108369,0,-0.7104,-0.2045,0.9724,0.5403,1.3136 +0x20245,CUS_0xac7d,August,22,111-11-3343,Teacher,38882.52,3186.21,7,3,19,3,"Not Specified, Payday Loan, and Student Loan",,22,12.83,8,_,1191.5,39.8200554,24 Years and 0 Months,Yes,61.05508493,,High_spent_Medium_value_payments,394.7207202,0,0.5321,0.4533,1.0695,-0.0386,0.7385 +0x20251,CUS_0xbf38,August,35,448-31-1022,Scientist,25306.37,2154.445766,4,3,18,0,,26.74172234,19,17.14,8,Standard,33.59885002,39.21165852,14 Years and 8 Months,Yes,244.4184003,11158.18324,High_spent_Large_value_payments,444.2895194,0,-0.3526,-0.5872,-1.1315,-0.6787,-1.2954 +0x2025d,CUS_0x9d36,August,34,938-29-5431,Teacher,91490.6,7526.216667,5,4,12,4,"Payday Loan, Home Equity Loan, Payday Loan, and Auto Loan",23.77671804,16,12.76,5,Standard,1082.08,28.16751889,9 Years and 0 Months,Yes,179.6745611,314.3340482,High_spent_Medium_value_payments,508.6130574,0,0.3705,-0.4805,-0.6751,0.3581,0.83 +0x20269,CUS_0x344e,August,49,975-76-9175,Developer,27587.1,,5,3,17,0,,30.89166667,20,10.99,6,Standard,268.83,36.99687508,,Yes,0,93.10988508,High_spent_Medium_value_payments,381.7826149,0,-0.8317,1.4388,1.1444,-1.2096,-1.7284 +0x20275,CUS_0x70dc,August,34,772-28-6345,Architect,73327,6090.583333,10,8,19.06745738,5,"Auto Loan, Student Loan, Payday Loan, Mortgage Loan, and Home Equity Loan",,25.43163674,22.31,7,_,3969.921766,35.79032468,2 Years and 0 Months,Yes,260.2658114,291.3172579,Low_spent_Large_value_payments,300.7549761,0,-0.9465,1.3656,0.8843,0.6378,-0.0728 +0x20281,CUS_0x2a25,August,35,234-67-7737,Media_Manager,9834.33,626.5275,10,8,31.95700519,6,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Mortgage Loan, and Payday Loan",,,22.71,11,Bad,3650.820954,38.05147046,11 Years and 5 Months,Yes,1370.991076,81.62322168,Low_spent_Small_value_payments,178.9880835,0,-0.5918,0.1071,-0.9825,-0.5696,-0.3656 +0x2028d,CUS_0x6f1b,August,39,155-11-7973,Scientist,29441.38,,7,4,10,4,"Home Equity Loan, Personal Loan, Payday Loan, and Home Equity Loan",9.392096824,9,,0,Standard,1276.05,25.77793318,18 Years and 0 Months,Yes,76493,34.87673019,High_spent_Large_value_payments,386.5687123,0,1.6807,0.1306,-0.0965,-0.533,1.0281 +0x20299,CUS_0x86dd,August,25,160-52-9463,Doctor,117342.92,9996.576667,6,6,16.28836175,0,Credit-Builder Loan,,21.38657022,12.27,6,Standard,863.8721727,33.77315993,25 Years and 11 Months,Yes,74.13468473,996.1954367,Low_spent_Large_value_payments,619.2650062,0,0.5187,-1.5783,-0.0004,-0.2945,0.083 +0x202a5,CUS_0x6975,August,37,947-51-5706,Engineer,46929.57,4099.7975,6,9,27.88954781,100,"Personal Loan, Home Equity Loan, Auto Loan, Payday Loan, and Not Specified",20.78090286,14.02724844,12.29,12,Standard,1499.387642,36.68635916,8 Years and 2 Months,NM,1488.194281,,!@9#%8,186.0393761,0,-1.0766,0.747,-1.4213,0.1256,-0.6851 +0x202b1,CUS_0x828f,August,28,922-74-5425,Entrepreneur,128847,,5,4,8,2,"Auto Loan, and Home Equity Loan",15.75771326,10.45381267,5.95,3,Good,728.9485326,36.76767578,21 Years and 3 Months,No,197.0399432,121.7192477,High_spent_Medium_value_payments,1029.265809,0,1.5302,-1.6601,0.6364,-0.1365,-0.7829 +0x202bd,CUS_0x4d01,August,45,934-29-7409,Engineer,10455.585,727.29875,10,9,31.06745738,3,"Debt Consolidation Loan, Personal Loan, and Payday Loan",,20,6.52,9,_,2050.760954,26.1368951,8 Years and 10 Months,Yes,20.14781346,10000,Low_spent_Small_value_payments,265.6530976,0,-1.5061,-0.9346,0.2231,0.937,0.4052 +0x202c9,CUS_0x4d7a,August,34,370-25-4413,Media_Manager,94312.05,,5,6,5,1,Payday Loan,15.59679026,12.59858865,0.53,3,Good,131.2350125,37.56113846,32 Years and 11 Months,NM,61.36791209,616.8889093,Low_spent_Large_value_payments,361.9769286,0,-0.2566,-0.0844,-0.1093,0.413,-0.0366 +0x202d5,CUS_0x3fcd,August,19,820-68-6580,Doctor,19135.06,,6,6,30.06745738,8,"Debt Consolidation Loan, Personal Loan, Auto Loan, Home Equity Loan, Auto Loan, Student Loan, Payday Loan, and Payday Loan",,21,20.43,14,Bad,4412.290954,34.81509951,8 Years and 5 Months,Yes,95.2872903,54.28968643,High_spent_Small_value_payments,249.9615687,0,0.4924,-0.0647,-0.6195,0.797,-0.3062 +0x202e1,CUS_0x7b8c,August,21,321-02-4040,Musician,116623.44,9836.62,5,4,9,0,,8.954380432,10,3.67,6,Good,1198.03,27.42433355,,No,0,538.7147175,Low_spent_Small_value_payments,734.9472825,0,-0.7484,0.4249,-2.0471,0.3999,1.3978 +0x202ed,CUS_0x3fc3,August,22,477-00-9604,_______,48783.44,4187.286667,3,7,18,3,"Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",,16,10.96,2,_,146.68,26.30157537,20 Years and 3 Months,No,79.61675439,332.4608574,Low_spent_Small_value_payments,296.6510549,0,-1.3007,0.6875,-0.426,0.9554,0.9868 +0x202f9,CUS_0xa78f,August,24,907-10-9336,Entrepreneur,65844.86,,7,4,10,7,"Home Equity Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Student Loan, and Not Specified",,,8.23,8,Standard,1460.73,31.65349005,19 Years and 6 Months,Yes,199.6357631,226.1512074,High_spent_Medium_value_payments,360.5201961,0,1.3138,-1.0455,-0.1513,0.3658,-0.5424 +0x20305,CUS_0x305c,August,30,979-78-2250,Teacher,14239.41,1255.6175,5,3,6.288361749,2,"Student Loan, and Personal Loan",19.23964606,16,17.01,10,Standard,55.46,36.12106473,13 Years and 9 Months,Yes,18.46749417,533.6015239,Low_spent_Small_value_payments,283.4301929,0,-0.5354,-0.5192,-0.8516,-2.3378,1.0019 +0x20311,CUS_0x21c8,August,45,074-08-0931,Engineer,71554.68,,3,6,12,2,"Payday Loan, and Payday Loan",15.21508315,13,16.49,1,Standard,90.14,24.60942295,31 Years and 4 Months,Yes,103.3976742,534.5403539,Low_spent_Medium_value_payments,217.9509719,0,0.8631,0.9482,-0.1051,0.0234,-0.0086 +0x2031d,CUS_0x7c71,August,33,232-13-7134,Teacher,16743.345,,2,4,5,0,,3.806856276,6,4.21,3,Good,1175.04919,29.03636228,26 Years and 10 Months,NM,97.91207982,62.03438322,High_spent_Medium_value_payments,325.9363767,0,1.215,0.9824,0.1806,-1.1477,0.5943 +0x20329,CUS_0xa40e,August,18,180-10-7504,Developer,33749.34,2536.552441,10,9,21.88954781,7,"Auto Loan, Debt Consolidation Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Debt Consolidation Loan",39.52832792,25,1.13,11,Bad,2393.46,28.63299803,9 Years and 4 Months,Yes,1559.084274,,High_spent_Medium_value_payments,243.1698456,0,-0.35,-2.0661,0.0063,1.2422,-0.0585 +0x20335,CUS_0x5654,August,47,561-85-6550,_______,31933.89,2685.1575,4,3,11,1,Student Loan,16.90374287,14.46785334,7.18,1,Good,224.7423122,29.09254011,19 Years and 2 Months,No,67059,,Low_spent_Small_value_payments,393.945268,0,-0.052,0.1518,-0.8435,-1.2701,-0.9268 +0x20341,CUS_0x6f4a,August,19,433-63-5299,Architect,88602,7167.5,6,4,15,2,"Not Specified, and Payday Loan",15.16042136,12,6.43,4,Standard,74.12,23.85088501,,No,94.56080896,930.084411,Low_spent_Small_value_payments,,0,0.8982,0.6298,0.052,-0.2906,-0.772 +0x2034d,CUS_0x58a3,August,30,806-40-7521,Developer,21526.91,1540.909167,6,6,19,2,"Auto Loan, and Credit-Builder Loan",25.9795328,20,19.28,10,Standard,261.14,33.23192152,,Yes,20.92322689,175.1118133,Low_spent_Small_value_payments,248.0558765,0,0.5362,0.8161,-1.3854,-0.0945,0.2984 +0x20359,CUS_0x6728,August,52,568-05-5440,Journalist,19127.06,,5,7,6,3,"Debt Consolidation Loan, Student Loan, and Auto Loan",21.71673436,14,7.26,9,Standard,89.19,27.49143025,24 Years and 10 Months,Yes,41.96108418,149.3151548,Low_spent_Small_value_payments,250.5159277,0,-0.0924,1.6218,-0.4213,-0.2971,2.0703 +0x20365,CUS_0x9d60,August,36,904-49-7781,Teacher,37743.72,3341.31,10,399,15.88954781,9,"Payday Loan, Mortgage Loan, Personal Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Payday Loan, Payday Loan, and Home Equity Loan",52.34264211,27.715812,5.64,12,Bad,2632.219384,27.41487497,8 Years and 8 Months,Yes,1499.748953,80.4625227,High_spent_Small_value_payments,319.5894427,0,-0.7665,-0.2244,1.1083,2.9285,0.4441 +0x20371,CUS_0x2717,August,31,617-86-7354,_______,14836.74,1151.395,5,5,2,4,"Personal Loan, Credit-Builder Loan, Auto Loan, and Home Equity Loan",0.588096074,1,8.99,2,Good,832.06,31.6109214,26 Years and 4 Months,No,36.91088386,,Low_spent_Small_value_payments,216.2045984,0,-1.0611,-0.0719,1.6232,1.0429,-1.9508 +0x2037d,CUS_0xee1,August,34,376-41-3395,Writer,17116.55,1722.379167,8,8,18.95700519,7,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Home Equity Loan, and Personal Loan",35.20825164,24.22435623,3.9,14,Bad,1689.939043,37.61176125,20 Years and 4 Months,Yes,1380.199406,112.2783197,Low_spent_Small_value_payments,248.7098216,0,-0.2338,0.2129,0.6239,0.3505,1.3142 +0x20389,CUS_0x4e3b,August,36,794-37-5918,Musician,16193.87,1287.489167,9,1268,16.06745738,2,"Mortgage Loan, and Personal Loan",25.41400701,,7.53,6,Bad,2444.620954,39.54345336,18 Years and 3 Months,Yes,21.04417249,91.62130783,Low_spent_Medium_value_payments,269.3631484,0,-0.3036,-0.2644,-1.4554,0.5252,-0.7268 +0x20395,CUS_0x56bb,August,27,055-66-2809,Teacher,18202.79,1390.899167,4,4,5,1,Mortgage Loan,14.62210831,13.35652101,9.7,8,Standard,1036.032951,30.95931028,17 Years and 6 Months,Yes,11.84600516,178.5775511,!@9#%8,238.6663604,0,0.4644,-0.7505,0.8729,0.2039,-0.1023 +0x203a1,CUS_0x1def,August,28,922-25-6106,Accountant,14411.9,,6,8,24.88954781,7,"Mortgage Loan, Not Specified, Not Specified, Debt Consolidation Loan, Personal Loan, Mortgage Loan, and Mortgage Loan",22.6146924,18,25.8,7,Bad,3640.4,39.07075713,9 Years and 10 Months,Yes,1423.301753,,Low_spent_Small_value_payments,194.307435,0,0.3433,0.4452,1.1913,-1.1755,0.0696 +0x203ad,CUS_0x29a3,August,40,943-64-5028,Accountant,15734.68,1017.156888,8,7,1923.067457,7,"Not Specified, Debt Consolidation Loan, Student Loan, Payday Loan, Personal Loan, Mortgage Loan, and Personal Loan",,21,23.82,12,Bad,4284.140954,23.77213686,3 Years and 9 Months,Yes,104.4900879,57.66250867,High_spent_Small_value_payments,188.3158945,0,-0.6544,2.36,-0.8035,-0.471,-0.2314 +0x203b9,CUS_0x7e5b,August,50,176-51-3094,Architect,29894.7,,4,3,19,100,"Auto Loan, Mortgage Loan, Student Loan, Payday Loan, Payday Loan, Auto Loan, and Not Specified",,15,10.33,6,Standard,944.2858628,25.28157268,13 Years and 5 Months,Yes,95.87008851,34.83039317,High_spent_Large_value_payments,371.2990728,0,-0.1763,0.423,-2.3737,-1.1187,0.9063 +0x203c5,CUS_0x1edc,August,20,468-63-2688,_______,62152.59,5188.3825,8,4,12,2,"Credit-Builder Loan, and Credit-Builder Loan",23.07327461,20,2.75,8,Standard,874.6,34.93889142,29 Years and 0 Months,Yes,99.34693588,321.5274248,Low_spent_Small_value_payments,387.9638894,0,0.8528,1.7791,-0.2788,-0.6984,-0.785 +0x203d1,CUS_0x5082,August,26,045-69-2378,Architect,11586.36,,5,5,17,2,"Mortgage Loan, and Credit-Builder Loan",14.65813542,11,16.03,6,Standard,1269.23,34.24547554,18 Years and 3 Months,Yes,38904,114.2251361,Low_spent_Small_value_payments,279.0696586,0,-1.6638,-1.5047,-0.5674,-0.4966,-1.8761 +0x203dd,CUS_0x2516,August,20,203-37-6938,Engineer,18811.58,1782.631667,5,3,7.288361749,4,"Personal Loan, Mortgage Loan, Not Specified, and Credit-Builder Loan",0,3,9.79,0,_,18.49171133,26.82373536,27 Years and 0 Months,NM,50.85624504,,!@9#%8,263.1701762,0,0.8092,0.1162,-0.6439,-1.773,-1.051 +0x203e9,CUS_0x46d2,August,36,161-34-0528,Engineer,7718.76,900.23,8,6,26.06745738,8,"Student Loan, Student Loan, Payday Loan, Student Loan, Payday Loan, Personal Loan, Personal Loan, and Mortgage Loan",,27.37014063,29.53,13,Bad,5518.101371,33.20504643,6 Years and 9 Months,Yes,36.76416182,,Low_spent_Small_value_payments,207.5336028,0,0.4665,0.2252,1.2202,1.3168,-0.1696 +0x203f5,CUS_0x2c48,August,43,434-93-5925,Architect,87883.92,,8,5,17,4,"Debt Consolidation Loan, Student Loan, Mortgage Loan, and Mortgage Loan",15.65348235,11,9.91,0,Standard,1294.9,29.35523181,16 Years and 3 Months,Yes,205.5998584,241.6062589,High_spent_Medium_value_payments,527.8598827,0,0.8713,-2.286,0.6578,-0.289,0.8065 +0x20401,CUS_0xb2a9,August,38,171-89-1108,Doctor,37486.02,,3,5,7.288361749,2,"Auto Loan, Debt Consolidation Loan, and Payday Loan",2.894205711,6.873994095,5.65,2,Good,393.2247528,32.9328464,21 Years and 3 Months,No,66.53922204,527.8411243,High_spent_Medium_value_payments,405.5406147,0,1.0876,-0.2416,0.8109,-0.6222,-0.2123 +0x2040d,CUS_0xa488,August,28,#F%$D@*&8,Journalist,6755739,1167.429167,8,3,19.28836175,2,"Payday Loan, and Credit-Builder Loan",11.67986313,11,22.16,6,Standard,1151.22,24.78116055,15 Years and 4 Months,Yes,19.61933384,,Low_spent_Small_value_payments,254.8799649,0,-0.064,-0.7367,-0.3505,0.7598,1.4726 +0x20419,CUS_0x36e1,August,35,132-77-4921,Journalist,20364.57,,6,8,32,3,"Personal Loan, Student Loan, and Mortgage Loan",13.38108609,9,10.3,11,Standard,2500.04,27.57647762,9 Years and 8 Months,Yes,26.16810893,92.51897592,High_spent_Small_value_payments,303.9176652,0,-1.4028,0.1995,0.1752,-1.7698,-1.2905 +0x20425,CUS_0x3d63,August,42,275-19-2331,Engineer,63901.05,5409.0875,4,6,19,0,,,20,14.49,5,Standard,1253.04,25.05339532,26 Years and 3 Months,NM,0,10000,High_spent_Medium_value_payments,672.1394258,0,-0.4444,-0.0913,-0.3079,1.4947,0.3269 +0x20431,CUS_0x91c8,August,23,616-81-8118,Mechanic,15710.555,,4,5,19,4,"Payday Loan, Debt Consolidation Loan, Not Specified, and Credit-Builder Loan",90,2956,2.58,1,Standard,442.17,27.64039663,24 Years and 8 Months,No,26.49212301,48.46324026,Low_spent_Large_value_payments,324.0659284,0,-0.1925,-0.0105,-0.8191,-1.2526,0.5687 +0x2043d,CUS_0x7351,August,35,090-19-3561,Writer,14735.48,,9,10,33,5,"Mortgage Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, and Debt Consolidation Loan",32.01571679,24,20.56,6,Bad,3952.93,29.90742601,11 Years and 3 Months,Yes,37.47347446,170.5314758,Low_spent_Small_value_payments,210.4907164,0,-0.7126,0.778,0.003,-0.2087,-0.7853 +0x20449,CUS_0x7e6f,August,44,178-13-2681,Developer,14431.49,,0,6,6,0,,7.358474636,7,7.46,3,Good,214.25,24.5708035,,No,0,112.82074,Low_spent_Medium_value_payments,297.9416767,0,-2.2083,0.7843,1.0502,-0.1161,-0.4737 +0x20455,CUS_0x3abe,August,29,594-35-1178,Developer,71689.68,,7,8,16,6,"Payday Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",,18.08307211,9.71,9,Standard,1992.685326,38.58337582,15 Years and 4 Months,Yes,286.9285326,120.6552127,High_spent_Large_value_payments,403.0302547,0,-0.3412,-0.4428,-0.3506,0.3579,-1.1941 +0x20461,CUS_0x2da9,August,24,894-47-5302,Developer,54000.9,4661.075,4,5,14,2,"Payday Loan, and Personal Loan",21.81130227,13,3.28,8,Standard,1105.99,35.59328834,25 Years and 0 Months,No,78.81201699,181.080137,High_spent_Small_value_payments,466.215346,0,-0.0453,-0.8363,0.673,0.6315,-1.2161 +0x2046d,CUS_0x717a,August,47,417-48-6289,Doctor,75408.44,,0,1,6,3,"Home Equity Loan, Student Loan, and Home Equity Loan",,5,3.43,9,Good,1304.89748,39.37648487,22 Years and 5 Months,No,102.5661777,87.64473041,High_spent_Large_value_payments,700.4339459,0,-0.746,-0.6639,1.457,0.736,0.0335 +0x20479,CUS_0x9e31,August,80,581-58-9802,_______,9095.29,853.9408333,7,5,16,6,"Debt Consolidation Loan, Not Specified, Personal Loan, Payday Loan, Student Loan, and Payday Loan",20.8586884,17,14.58,439,Standard,2016.31,35.97282242,,Yes,42.47212402,63.80700816,Low_spent_Small_value_payments,269.1149512,0,0.5747,2.2435,-0.4627,-0.6043,1.128 +0x20485,CUS_0x85f4,August,31,771-28-2450,Developer,76714.08,6401.84,0,7,11,3,"Not Specified, Not Specified, and Payday Loan",,2.30658623,6.78,3,Good,1257.117316,38.09324769,21 Years and 9 Months,No,101.2837249,359.4033903,Low_spent_Medium_value_payments,459.4968848,0,-0.098,-0.2492,-0.0622,0.4346,1.3013 +0x20491,CUS_0x1098,August,27,466-10-5742,_______,20652.98,,7,5,22.06745738,2,"Auto Loan, and Payday Loan",,11.2683294,8.58,8,Standard,2347.532066,38.46440463,18 Years and 11 Months,NM,33.23835624,54.60338563,Low_spent_Small_value_payments,322.2461368,0,-0.4548,1.1046,-0.5982,0.4516,-1.3731 +0x2049d,CUS_0x93ba,August,23,159-90-4552,Lawyer,110603.94,9463.995,5,7,12,1,Student Loan,20.78444794,13,5.75,1,Standard,805.01,36.42984396,,No,68.79160162,794.8654559,Low_spent_Medium_value_payments,362.7424425,0,-1.0933,1.0721,-0.605,-0.4764,-0.9294 +0x204a9,CUS_0x42e4,August,29,108-73-7805,Developer,28204.79,,2,6,5,2,"Student Loan, and Home Equity Loan",,10.77326204,4.64,1,Good,509.4118179,40.24078134,24 Years and 5 Months,No,27.45012616,,High_spent_Medium_value_payments,398.150354,0,-1.28,-1.7075,1.391,-0.3268,2.1414 +0x204b5,CUS_0xb4b3,August,29,#F%$D@*&8,Journalist,68399.64,5899.97,6,5,23,5,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Payday Loan",36.96231725,18,22.68,14,Bad,2781.7,26.94663565,4 Years and 5 Months,Yes,241.107701,167.2761287,High_spent_Medium_value_payments,431.6131703,0,-0.3795,-0.2924,-0.7387,-0.2577,-2.1879 +0x204c1,CUS_0xac33,August,50,#F%$D@*&8,Engineer,34956.22,,10,6,25.06745738,100,"Payday Loan, Credit-Builder Loan, Payday Loan, Student Loan, Not Specified, and Debt Consolidation Loan",30.32735861,18,18.54,8,Bad,3602.080898,30.70734606,,Yes,95.23067109,112.4384637,High_spent_Small_value_payments,323.7229078,0,-1.1273,-0.0315,-0.1005,-1.3558,-0.8241 +0x204cd,CUS_0xb96c,August,80,930-28-6972,Engineer,49215.72,3904.31,10,6,29,5,"Auto Loan, Student Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",,23,25.04,11,Bad,3197.22,34.13537566,6 Years and 9 Months,Yes,119.7055536,123.4189461,High_spent_Medium_value_payments,397.3065003,0,-2.2809,-0.0475,0.2089,0.1682,-0.7494 +0x204d9,CUS_0x65a0,August,23,#F%$D@*&8,Scientist,14957.97,,10,5,19.06745738,5,"Mortgage Loan, Credit-Builder Loan, Auto Loan, Payday Loan, and Mortgage Loan",,24.67499246,6.4,9,Bad,2166.368584,38.64792432,19 Years and 10 Months,Yes,53.28419215,107.7257492,Low_spent_Small_value_payments,200.9195207,0,-0.0325,0.9241,0.0669,0.1196,-1.0447 +0x204e5,CUS_0x1c59,August,42,277-13-7658,Doctor,19188.055,,5,4,2,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",5.242373043,8,4.5,7,_,417.2741782,29.11543279,22 Years and 9 Months,No,44.60237014,109.5623943,Low_spent_Small_value_payments,281.745223,0,0.9965,0.5889,-1.0245,0.0729,-0.8475 +0x204f1,CUS_0x80b8,August,44,309-74-1982,Developer,15928.75,,9,9,24,4,"Auto Loan, Personal Loan, Student Loan, and Payday Loan",40.63864277,29.12323588,6.26,15,Bad,2537.564481,31.96098113,12 Years and 8 Months,Yes,20491,158.5201436,Low_spent_Small_value_payments,229.7727611,0,1.2001,-0.4858,-0.138,-0.8423,-0.9671 +0x204fd,CUS_0x7dd8,August,49,294-22-7448,_______,17451.235,,5,3,5,4,"Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, and Payday Loan",12.04167713,10.56214747,,8,Good,998.051284,31.77589463,20 Years and 9 Months,No,40.60167158,44.60156656,Low_spent_Medium_value_payments,322.4237202,0,1.1073,0.0921,1.5115,-1.0473,-0.384 +0x20509,CUS_0xbb0c,August,31,358-45-0878,Writer,106546.08,8951.84,8,3,12.28836175,0,Personal Loan,12.24335211,12,11.21,3,Standard,206.52,39.36232989,17 Years and 0 Months,No,86.16494277,10419.93746,High_spent_Large_value_payments,930.0872395,0,-1.6746,0.4547,2.0931,-0.0047,-1.5221 +0x20515,CUS_0x9442,August,25,850-53-3186,Mechanic,18225.38,,8,9,20.06745738,8,"Student Loan, Payday Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Mortgage Loan",,21,17.2,16,Bad,2875.600954,40.42043273,12 Years and 10 Months,Yes,71.82555873,93.63120449,Low_spent_Medium_value_payments,236.6011155,0,-0.2099,1.0361,0.5784,-1.5669,-0.7978 +0x20521,CUS_0x7483,August,57,263-53-9416,Writer,89221.26,7226.105,4,4,3.288361749,4,"Mortgage Loan, Payday Loan, Not Specified, and Payday Loan",0,1,11.94,5,Good,126.4515221,38.45832848,18 Years and 4 Months,NM,226.0499522,623.4356213,High_spent_Small_value_payments,572.6425778,0,2.2602,1.0419,0.3722,-2.6016,-0.4534 +0x2052d,CUS_0x9bb3,August,21,851-98-7626,Teacher,24127.79,2097.649167,5,7,15,5,"Credit-Builder Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Auto Loan",22.2415967,16,13.47,7,Standard,899.21,30.34363681,19 Years and 11 Months,Yes,61723,126.8616511,High_spent_Small_value_payments,245.9836178,0,0.5173,0.5485,0.5854,0.7686,0.364 +0x20539,CUS_0xaff7,August,29,341-35-0902,Journalist,56007.82,4517.417671,6,4,11,4,"Not Specified, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,12,3.05,3,Good,182.37,34.81489793,22 Years and 3 Months,No,385.050339,,!@9#%8,297.0918619,0,-0.3519,-1.4253,0.5192,1.6611,0.0535 +0x20545,CUS_0x9893,August,18,569-29-1543,_______,17471.63,,6,4,8,6,"Payday Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Auto Loan, and Personal Loan",20.19344793,15,11.51,8,Standard,1050.26,28.47905471,17 Years and 8 Months,Yes,58.90504147,86.87380679,Low_spent_Large_value_payments,242.5180684,0,-1.4758,0.0536,2.3772,0.7558,-1.3877 +0x20551,CUS_0x4e95,August,42,921-95-7248,Developer,127928.68,,2,6,12,4,"Mortgage Loan, Auto Loan, Not Specified, and Not Specified",12.10093995,8,8,3,Good,1361.41,26.87619034,16 Years and 10 Months,NM,240.7719327,1341.1492,Low_spent_Small_value_payments,,0,-0.6622,0.1094,0.0115,1.2467,-0.3558 +0x2055d,CUS_0x3e67,August,48,483-97-0045,Doctor,35802.82,,2,4,10,3,"Credit-Builder Loan, Not Specified, and Credit-Builder Loan",4.836014822,8,7.11,4,_,609.8441401,29.83474729,16 Years and 0 Months,NM,82.48648431,142.2352804,Low_spent_Large_value_payments,371.3138724,0,0.1723,0.7546,0.0755,0.6219,1.1017 +0x20569,CUS_0x758e,August,48,582-72-2067,Mechanic,47202.12,3823.373564,3,3,12,0,,24.83346043,20,1.39,7,Standard,1333.49,30.01457326,28 Years and 5 Months,No,341.1364362,155.7712507,!@9#%8,510.6797493,0,-0.8234,-0.7498,1.7134,0.6841,-0.1307 +0x20575,CUS_0x471c,August,24,757-62-8379,Lawyer,17805.15,1711.7625,7,7,24.06745738,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",28.46303744,19,19.59,8,Standard,2502.770954,40.84078535,9 Years and 10 Months,Yes,81.85038191,10000,!@9#%8,283.2219638,0,-1.4929,-1.2721,0.5887,-0.7401,0.4421 +0x20581,CUS_0x856b,August,47,653-14-2514,Developer,4175074,,2,3,8.288361749,4,"Home Equity Loan, Home Equity Loan, Not Specified, and Not Specified",1.001422309,4,11.56,3,Good,758.4443773,34.8430968,32 Years and 2 Months,No,159.8096372,602.164708,High_spent_Medium_value_payments,614.7629792,0,1.1721,0.5708,2.0274,0.2061,-0.7456 +0x2058d,CUS_0x2c04,August,23,#F%$D@*&8,Teacher,33479.22,2765.935,5,4,12,0,,0,2.349803885,11.7,2,Good,1352.479015,24.46333843,30 Years and 10 Months,No,0,117.8860589,Low_spent_Small_value_payments,448.7074411,0,-0.296,0.3536,0.3926,0.3414,0.0775 +0x20599,CUS_0x288b,August,37,595-50-4347,_______,109655.25,9313.9375,1,4,6,0,,0,1,8.27,4,Good,1234.63,38.5335678,25 Years and 10 Months,No,1775,681.8660391,Low_spent_Small_value_payments,539.5277109,0,-1.1687,0.7023,-0.2626,0.495,0.556 +0x205a5,CUS_0x3ad4,August,41,383-19-8762,Accountant,80743.8,6886.65,4,3,11,3,"Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",,9,-3.81,5,_,186.0068173,40.89968857,,No,191.4871338,,High_spent_Large_value_payments,609.3353682,0,0.373,-0.2389,-0.903,-0.9275,0.5667 +0x205b1,CUS_0x9fdc,August,56,417-61-0153,Journalist,34388,,0,5,5,0,,,5,9.53,5,Good,874.17,26.55680341,22 Years and 3 Months,No,0,,Low_spent_Small_value_payments,293.341912,0,0.7399,0.4257,-1.0404,-0.017,-0.7381 +0x205bd,CUS_0x4182,August,41,392-40-4433,Journalist,28131.62,,8,4,6,2,"Debt Consolidation Loan, and Debt Consolidation Loan",10.27404004,8,2.27,0,Standard,888.82,28.48906916,31 Years and 8 Months,NM,35.00668532,68.59522463,High_spent_Medium_value_payments,397.4282567,0,0.7809,-0.7596,-0.4081,0.0009,-0.0612 +0x205c9,CUS_0x83ea,August,34,869-20-6910,Media_Manager,14461.52,1010.126667,10,8,33,6,"Home Equity Loan, Student Loan, Payday Loan, Credit-Builder Loan, Student Loan, and Home Equity Loan",,14,18.75,11,Bad,2566.1,31.16823475,8 Years and 8 Months,Yes,41.82171883,121.6932967,Low_spent_Small_value_payments,227.4976511,0,0.3653,0.6217,-0.3335,-0.3564,1.5056 +0x205d5,CUS_0xb614,August,29,#F%$D@*&8,Musician,81623.13,6887.9275,4,4,8,2,"Mortgage Loan, and Payday Loan",26.43172104,19,9.01,6,Standard,1160.88,40.63528913,15 Years and 10 Months,Yes,91.19030018,123.3984446,High_spent_Large_value_payments,714.2040052,0,0.3352,1.3743,-1.7748,0.8662,-1.0387 +0x205e1,CUS_0x4ee6,August,41,663-89-8509,Engineer,50649.6,4431.8,3,5,23,6,"Home Equity Loan, Auto Loan, Student Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",17.46692314,11.85418573,8.33,8,Standard,2283.386767,37.91506844,18 Years and 6 Months,Yes,184.6611657,,Low_spent_Small_value_payments,385.0991957,0,-1.058,0.4791,3.1879,-0.2388,-0.2242 +0x205ed,CUS_0x9d0a,August,42,757-20-7915,Entrepreneur,88045.8,7108.15,5,4,19,4,"Home Equity Loan, Not Specified, Not Specified, and Student Loan",15.56950847,13,9.57,6,Standard,262.3,41.24347693,22 Years and 5 Months,Yes,268.5819061,88.94773638,High_spent_Large_value_payments,593.2853576,0,0.1627,0.4794,0.2217,1.3538,-0.8309 +0x205f9,CUS_0x28ef,August,25,694-69-4113,Doctor,34406.64,,3,6,20,6,"Debt Consolidation Loan, Personal Loan, Payday Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",,14,23.29,8,Standard,1598.71,25.58803944,,Yes,426.8808125,176.9871938,Low_spent_Large_value_payments,250.398428,0,1.6122,-1.366,-0.4961,2.1164,-0.2974 +0x20605,CUS_0x5f7e,August,18,272-09-8561,_______,14677.92,,10,8,22.06745738,4,"Not Specified, Debt Consolidation Loan, Student Loan, and Credit-Builder Loan",,21,18.08,12,Bad,2351.140954,33.04752184,16 Years and 9 Months,Yes,36.69339441,,Low_spent_Medium_value_payments,223.7419183,0,-0.8102,0.5396,-0.144,0.3707,1.0869 +0x20611,CUS_0x89bd,August,27,899-69-8713,Mechanic,14841.17,,7,6,34.06745738,2,"Debt Consolidation Loan, and Payday Loan",30.72166855,13.66682673,10.2,13,Standard,1752.713948,35.16030646,14 Years and 3 Months,Yes,23.32235161,53.33727097,!@9#%8,255.5965061,0,-0.759,-0.7384,0.2181,0.6001,0.8605 +0x2061d,CUS_0xa781,August,22,447-70-8247,Scientist,21677.905,1859.492083,1,4,11,1,Payday Loan,,1,4.71,5,Good,585.36,40.11700202,33 Years and 4 Months,No,11.503369,79.18608012,High_spent_Small_value_payments,355.2597592,0,-1.4545,-0.7516,-1.2373,-0.3752,-0.5037 +0x20629,CUS_0x2413,August,27,133-83-2285,Manager,14623.51,,9,5,15,7,"Home Equity Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Payday Loan",18.51181265,16,19.11,8,_,3607.96,23.38749887,14 Years and 3 Months,Yes,61.68378453,,High_spent_Small_value_payments,243.5827485,0,1.9437,0.4388,-0.0664,-0.3573,-0.2144 +0x20635,CUS_0x4f15,August,46,419-97-7180,Manager,110375.04,,5,3,11,1,Not Specified,12.81829125,,10.12,4,Good,1449.78,32.77634103,33 Years and 0 Months,No,83.07440213,101.1347479,High_spent_Medium_value_payments,1000.38285,0,-1.014,0.6261,-0.0727,-0.3489,-0.6048 +0x20641,CUS_0x7cae,August,37,427-66-0468,_______,14996.235,,3,6,17.06745738,5,"Mortgage Loan, Debt Consolidation Loan, Auto Loan, Personal Loan, and Home Equity Loan",,18,13.83,,Standard,1324.050954,37.1520939,14 Years and 0 Months,Yes,61.64740219,,Low_spent_Small_value_payments,165.0458197,0,0.8444,0.0576,-0.2225,-0.3217,-1.2536 +0x2064d,CUS_0x4c6b,August,51,361-89-0620,Journalist,26779.9,1986.658333,7,4,12,4,"Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Personal Loan",,14,7.36,6,_,589.7291494,36.15203182,33 Years and 4 Months,No,56.0355398,,Low_spent_Large_value_payments,241.3509184,0,0.1989,-0.1841,-0.7962,-0.8337,1.3106 +0x20659,CUS_0xa014,August,37,622-88-2476,Journalist,168491.44,,4,4,12,0,,5.267207742,7,1.35,7,Good,296.3988337,47.08748272,27 Years and 10 Months,NM,0,,High_spent_Large_value_payments,1344.984861,0,0.4308,-0.0364,-2.1313,0.9527,0.4039 +0x20665,CUS_0x12e7,August,43,603-76-3049,Architect,46874.85,,9,5,15,100,"Payday Loan, and Personal Loan",,23.54802569,8,9,Bad,2178.903899,34.61525703,17 Years and 10 Months,Yes,70.54051854,146.9862281,Low_spent_Large_value_payments,460.6970034,0,-0.7262,1.1983,2.2861,-0.8784,0.7836 +0x20671,CUS_0x8a73,August,48,521-31-1008,Media_Manager,74437.44,6184.12,5,7,3.288361749,2,"Home Equity Loan, and Auto Loan",,2,7.45,3,_,400.0902172,38.24959242,32 Years and 3 Months,NM,104.4110353,807.9541173,Low_spent_Small_value_payments,452.5444746,0,0.5456,0.4062,0.1651,-0.7425,-0.1493 +0x2067d,CUS_0x4e5e,August,28,269-02-3845,_______,14293.345,,8,5,10,5,"Auto Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, and Auto Loan",12.31412815,10,19.34,4,_,310.51,29.39927074,7 Years and 0 Months,Yes,59.42466288,,!@9#%8,234.5127033,0,0.2008,0.7265,-1.1515,-0.4082,1.1106 +0x20689,CUS_0x1443,August,31,557-52-9177,Lawyer,88120.12,,5,6,14.28836175,4,"Student Loan, Personal Loan, Auto Loan, and Student Loan",14.22614229,14,7.48,2,Standard,534.85,25.90798032,33 Years and 8 Months,No,164.9787768,519.1834064,High_spent_Large_value_payments,713.5096112,0,0.9663,-0.5879,-1.091,0.8002,0.8483 +0x20695,CUS_0x658e,August,26,#F%$D@*&8,Doctor,46880.49,,6,7,23,5,"Personal Loan, Home Equity Loan, Payday Loan, Payday Loan, and Not Specified",,20.34713582,6.37,11,Bad,2419.754646,38.71133287,19 Years and 9 Months,Yes,106.7284616,,High_spent_Medium_value_payments,378.5685573,0,-1.1976,0.938,-0.0791,-0.7452,0.0872 +0x206a1,CUS_0xb627,August,34,696-92-2622,_______,71551.18,5936.598333,8,3,8,4,"Credit-Builder Loan, Home Equity Loan, Not Specified, and Personal Loan",9.318784774,9,18.44,7,_,697.67,30.09036412,18 Years and 6 Months,Yes,160.2000365,181.8365258,High_spent_Small_value_payments,511.623271,0,-1.1385,-0.6986,-0.4453,0.9288,-0.9828 +0x206ad,CUS_0x5f9,August,42,970-14-1165,Developer,7427.29,,10,10,30.95700519,7,"Home Equity Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",36.03003876,20.42729846,20.06,17,Bad,4518.268366,28.29436559,8 Years and 8 Months,Yes,1352.121796,,Low_spent_Small_value_payments,192.4254804,0,0.9887,-0.2184,0.8147,1.148,0.1708 +0x206b9,CUS_0x6549,August,22,905-95-5824,Mechanic,39558.23,,4,3,3.288361749,0,Auto Loan,11.17419573,12,5.69,0,Good,306.8088579,37.53944877,30 Years and 8 Months,No,20.62640229,818.8310078,Low_spent_Small_value_payments,265.6081833,0,-0.1898,0.5863,-1.6908,-1.7374,1.3893 +0x206c5,CUS_0x7a21,August,40,319-02-6236,Accountant,19338.48,1633.54,4,7,31.06745738,6,"Mortgage Loan, Student Loan, Not Specified, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",19.73253901,11.55189545,11.84,7,Standard,2132.390537,24.78696006,19 Years and 11 Months,Yes,50.40677633,32.47545224,!@9#%8,303.7514835,0,0.5716,-1.1543,0.2278,0.2563,-0.3009 +0x206d1,CUS_0xb424,August,44,331-28-1921,Media_Manager,42208.74,3355.395,7,9,32,5,"Home Equity Loan, Student Loan, Not Specified, Auto Loan, and Mortgage Loan",31.25147538,19,19.66,2072,Bad,4154.32,34.82678745,,Yes,160.6317757,132.4844944,Low_spent_Small_value_payments,332.4232299,0,0.487,-0.1857,0.0493,-0.1956,0.1889 +0x206dd,CUS_0x3bfd,August,35,433-96-5472,Journalist,16791.21,,6,5,27,7,"Mortgage Loan, Mortgage Loan, Student Loan, Student Loan, Payday Loan, Credit-Builder Loan, and Auto Loan",33.49606846,18,19.14,11,Bad,3321.22,26.63253306,1 Years and 11 Months,Yes,95.77995937,42.89475296,High_spent_Small_value_payments,235.6520377,0,-3.8194,-0.4996,-0.075,-0.1945,0.0628 +0x206e9,CUS_0x1447,August,22,836-93-7211,Doctor,9989.21,653.4341667,5,4,20,2,"Auto Loan, and Credit-Builder Loan",16.42258667,14,5.81,6,_,731.05,22.60078222,19 Years and 5 Months,No,10.50617336,49.7376064,Low_spent_Small_value_payments,295.0996369,0,-0.8608,0.3669,1.8623,0.572,0.0111 +0x206f5,CUS_0xa579,August,21,978-17-0096,Scientist,68498.72,5715.226667,6,9,23,5,"Student Loan, Auto Loan, Student Loan, Mortgage Loan, and Mortgage Loan",30.0026001,16,8.99,15,Bad,1825.94,26.91292831,15 Years and 11 Months,NM,156.1937298,387.8993207,High_spent_Small_value_payments,287.4296161,0,0.5801,-0.4193,0.1235,0.5396,-0.9263 +0x20701,CUS_0x2d03,August,46,404-88-9976,Scientist,15516.87,,5,3,10,0,,8.467810361,8,1.57,1,Good,40.08079955,31.46170623,18 Years and 4 Months,No,0,58.04819666,Low_spent_Medium_value_payments,367.1602412,0,-1.5556,0.895,-0.433,0.5295,2.3245 +0x2070d,CUS_0x5148,August,18,234-90-5943,Mechanic,41498.3,,3,4,20.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Student Loan, Credit-Builder Loan, Not Specified, and Payday Loan",16.18945219,10,10.2,5,Standard,2498.670954,40.63746379,14 Years and 0 Months,Yes,187.5186423,140.863277,!@9#%8,231.4169594,0,-0.9772,-0.8417,-1.1866,-1.328,1.4607 +0x20719,CUS_0x83bd,August,38,860-78-5003,Journalist,17610.81,,9,9,17.06745738,9,"Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, and Home Equity Loan",49.98160273,29.82686388,8.45,8,Bad,2217.310977,38.37230755,20 Years and 5 Months,Yes,66.06274348,,Low_spent_Small_value_payments,239.7830219,0,0.3448,-0.2172,0.2369,1.3483,-1.3919 +0x20725,CUS_0x533c,August,39,510-89-3050,Scientist,36871.28,3141.606667,3,3,13,3,"Student Loan, Auto Loan, and Not Specified",11.6697558,10,19.05,13,Standard,331.5,27.41624918,18 Years and 5 Months,Yes,61.93073608,,High_spent_Large_value_payments,448.4813273,0,0.461,-1.0638,0.7089,-0.0548,1.4385 +0x20731,CUS_0xa5ba,August,22,792-40-3442,Accountant,73732.4,6048.366667,10,10,30.88954781,9,"Home Equity Loan, Personal Loan, Home Equity Loan, Personal Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, and Not Specified",27.56117788,16.25310753,1.14,12,_,2421.746812,32.70105732,7 Years and 11 Months,Yes,1849.484667,100.9878044,High_spent_Medium_value_payments,210.0341135,0,1.5796,-0.2474,-1.144,1.2227,-0.0026 +0x2073d,CUS_0x18fa,August,55,177-06-9070,Journalist,18524.52,,2,3,8,0,,4.468077814,5,11.58,3,Good,799.8683654,34.13014638,28 Years and 0 Months,No,0,,High_spent_Medium_value_payments,368.9509878,0,2.2998,0.0057,-1.2051,0.2097,-0.8069 +0x20749,CUS_0x9c71,August,35,788-74-3739,Developer,43285.2,3327.1,8,4,17,1,Mortgage Loan,21.33484221,16,11.55,1,Standard,890.54,32.02761153,17 Years and 8 Months,No,19.9394158,390.2159262,Low_spent_Small_value_payments,212.554658,0,0.7616,-0.1121,-0.8969,0.0357,-0.3949 +0x20755,CUS_0x9f3,August,34,081-10-2427,Teacher,28276.43,2146.369167,2,5,7.288361749,0,Not Specified,0,0,4.99,5,Good,324.6080117,24.44147368,23 Years and 3 Months,No,14.01666241,477.1739554,High_spent_Large_value_payments,390.7827331,0,0.3866,-0.5284,0.0735,0.4056,0.86 +0x20761,CUS_0xa4db,August,26,948-70-9566,Writer,15219276,7774.305,8,3,14,2,"Credit-Builder Loan, and Home Equity Loan",17.24860131,12.32750015,1.83,0,Standard,1312.361168,28.19437831,21 Years and 2 Months,No,80.76999047,248.7322807,High_spent_Small_value_payments,707.9282289,0,-0.3745,0.124,0.6173,1.5801,0.1868 +0x2076d,CUS_0x6bf5,August,26,761-78-5044,Teacher,70902.06,,4,3,5,2,"Personal Loan, and Payday Loan",3.897570938,6,4.88,7,_,720.71,34.47018277,24 Years and 11 Months,No,29215,102.4275932,!@9#%8,667.7132432,0,-0.6135,-0.0701,-1.687,1.2208,1.0073 +0x20779,CUS_0x7202,August,42,437-84-3976,Lawyer,8089.415,889.1179167,6,10,18,7,"Home Equity Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Debt Consolidation Loan",27.97548501,17.93060856,24.45,7,Bad,3217.553882,27.86187233,14 Years and 4 Months,Yes,41.95300256,64.70838426,Low_spent_Medium_value_payments,262.2504048,0,0.6138,0.1196,-1.5233,1.0976,0.7198 +0x20785,CUS_0x1c71,August,28,829-66-3146,_______,43280.82,3648.735,7,5,18.06745738,4,"Auto Loan, Auto Loan, Payday Loan, and Mortgage Loan",43.78111043,26,7.7,999,Bad,2799.850954,37.29337798,12 Years and 0 Months,NM,74.29013507,168.4516352,Low_spent_Large_value_payments,365.4114418,0,-0.4977,1.7603,-0.1938,1.025,-1.2958 +0x20791,CUS_0xac83,August,29,552-58-3128,Teacher,50276.79,,7,6,23,7,"Not Specified, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",30.11627067,,15.12,11,Standard,2855.059265,32.5658671,17 Years and 2 Months,Yes,198.7360927,160.8667472,High_spent_Medium_value_payments,331.4704101,0,-1.6105,0.3152,-0.3673,-2.3213,-0.9309 +0x2079d,CUS_0x9509,August,18,337-89-7502,Architect,67281.84,5486.82,7,7,17,3,"Debt Consolidation Loan, Payday Loan, and Mortgage Loan",41.99836663,23.94279382,5.18,11,Bad,2713.058879,35.70581239,13 Years and 8 Months,Yes,109.1144459,406.5004542,Low_spent_Medium_value_payments,313.0670999,0,-0.0889,-0.5638,-0.3354,-0.3983,-0.0996 +0x207a9,CUS_0x707d,August,55,#F%$D@*&8,Lawyer,16188.16,1396.013333,7,4,1,4,"Student Loan, Auto Loan, Personal Loan, and Personal Loan",22.51640357,20,9.52,5,Standard,1029.46,28.71844168,24 Years and 5 Months,No,41.57225987,67.77415698,Low_spent_Small_value_payments,320.2549165,0,0.2778,0.2167,1.0226,1.7917,1.9711 +0x207b5,CUS_0x1abe,August,45,744-16-3832,Lawyer,14909.4,,6,7,24,2,"Not Specified, and Credit-Builder Loan",19.13735062,13.9615443,16.49,8,Standard,2152.742595,23.21863897,11 Years and 6 Months,Yes,13.06930851,101.3700237,Low_spent_Small_value_payments,293.3056678,0,-0.5946,2.0497,0.3216,1.1556,1.1299 +0x207c1,CUS_0x21a1,August,22,452-67-4543,Mechanic,20326.87,,10,10,29.95700519,100,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",46.94136291,24.41645528,18.71,11,Bad,3037.665316,25.21613833,7 Years and 11 Months,Yes,44359.48344,80.77299734,Low_spent_Small_value_payments,250.4714141,0,-0.2288,0.5509,1.7109,-1.4408,0.747 +0x207cd,CUS_0x1cd7,August,25,112-26-4626,_______,22265.03,,6,5,18,3,"Personal Loan, Mortgage Loan, and Not Specified",18.75328674,16,19.48,4,Standard,1186.05614,26.34012276,12 Years and 2 Months,Yes,50549,53.18865441,High_spent_Medium_value_payments,339.5798277,0,-0.6898,0.395,0.7549,0.2429,-0.3912 +0x207d9,CUS_0x530b,August,51,993-95-2241,_______,20782.66,1886.888333,1,6,11,4,"Home Equity Loan, Home Equity Loan, Not Specified, and Debt Consolidation Loan",,615,5.85,9,Good,872.9154692,31.76977527,31 Years and 9 Months,No,68.07779286,110.018349,Low_spent_Medium_value_payments,302.6270021,0,-0.3699,0.7555,1.7203,-1.674,-0.674 +0x207e5,CUS_0x282b,August,36,#F%$D@*&8,Accountant,63839.24,,7,6,14,3,"Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",26.27895471,16,14.01,11,Standard,2695.33,29.66368738,16 Years and 10 Months,Yes,144.7096257,,High_spent_Medium_value_payments,425.5721587,0,-1.0256,-0.0846,0.6276,0.4368,0.4721 +0x207f1,CUS_0x4f49,August,29,145-21-0380,Engineer,13675.83,1282.6525,4,5,16,0,,28.17296275,19,7.07,4,Standard,568.81,26.47588759,22 Years and 4 Months,Yes,0,38.29706623,High_spent_Small_value_payments,349.9681838,0,1.7494,-0.4543,1.3006,-0.1816,0.1702 +0x207fd,CUS_0xa4e9,August,27,168-74-9556,Journalist,25626.88,,8,5,20,3,"Home Equity Loan, Not Specified, and Debt Consolidation Loan",10.35018727,8,15.11,,_,157.69,36.4747762,23 Years and 8 Months,Yes,145.7722275,53.23367295,High_spent_Medium_value_payments,376.6336566,0,0.6961,0.9121,-0.8901,-1.8555,-0.5938 +0x20809,CUS_0x5287,August,21,050-08-6245,Architect,19428.03,1809.0025,7,6,7,1,Credit-Builder Loan,9.985854965,10,13.1,9,Standard,798.1,37.94274033,29 Years and 8 Months,Yes,9.076122705,16.87001583,High_spent_Large_value_payments,394.9541115,0,-0.6683,1.0261,-0.924,0.1639,-0.7452 +0x20815,CUS_0x4969,August,40,684-52-7523,_______,97714.47,8103.8725,1,6,8.288361749,0,,,1,4.74,9,Good,613.07,41.57624321,32 Years and 10 Months,No,0,546.542237,High_spent_Medium_value_payments,933.782474,0,0.3936,-0.0125,-0.8716,-0.5221,0.2106 +0x20821,CUS_0xc33e,August,19,577-83-3843,Lawyer,38694.74,,6,5,32,7,"Student Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, and Personal Loan",30.63961356,16,8.8,9,Bad,1647.69,30.94877442,18 Years and 5 Months,Yes,148.0598297,,High_spent_Small_value_payments,217.1679563,0,0.292,-0.037,-0.5948,1.4646,-0.5274 +0x2082d,CUS_0x9d3d,August,43,011-04-1828,Teacher,15400.19,1140.285286,6,10,18.06745738,2,"Auto Loan, and Not Specified",24.53036678,9.404449555,14.71,,Standard,3102.261958,37.26974493,6 Years and 10 Months,NM,105.6513667,42.78297073,Low_spent_Small_value_payments,324.6441722,0,-0.475,-0.7627,-0.6964,0.5289,-0.2378 +0x20839,CUS_0x9b0e,August,48,850-93-7960,Doctor,92699.31,7927.9425,3,3,8.288361749,4,"Payday Loan, Student Loan, Payday Loan, and Personal Loan",,0,6.33,3,_,40.54994723,39.21460174,18 Years and 3 Months,No,217.7580639,605.6565388,High_spent_Large_value_payments,656.7919413,0,-0.1316,1.0931,-1.2288,-1.0285,-0.3323 +0x20845,CUS_0xc4e,August,39,109-27-0987,Writer,17213.61,,9,8,29.06745738,5,"Mortgage Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Not Specified",35.01737513,24,17.25,7,Bad,3041.960954,37.28620467,1 Years and 5 Months,Yes,70.42879204,,Low_spent_Small_value_payments,184.1785534,0,-1.9071,-1.0726,-0.4188,-0.562,0.8764 +0x20851,CUS_0x4280,August,53,638-36-4083,Teacher,30269.71,2387.775996,6,5,7,3,"Payday Loan, Personal Loan, and Credit-Builder Loan",24.95065221,20,8.9,0,_,838.05,36.17024174,16 Years and 0 Months,Yes,306.756131,122.1652529,!@9#%8,378.8260368,0,-0.1875,2.8108,-0.4036,1.7477,1.2907 +0x2085d,CUS_0x3c97,August,45,#F%$D@*&8,Journalist,9741.195,,7,4,14,2,"Personal Loan, and Student Loan",21.28038472,15,19.67,11,Standard,582.95,33.85583581,26 Years and 10 Months,Yes,13.37654599,,Low_spent_Small_value_payments,305.98704,0,0.1399,1.1905,-0.0688,0.4362,0.1692 +0x20869,CUS_0xabd5,August,45,403-75-4569,Architect,54346.35,,229,7,19,8,"Payday Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Debt Consolidation Loan",54.69064696,30.4647257,25.97,14,_,5318.760277,39.18728689,12 Years and 8 Months,Yes,332.5636713,33.51003702,!@9#%8,320.3125417,0,0.3457,-1.3329,-0.6162,-0.3343,-0.2559 +0x20875,CUS_0x9b46,August,21,072-49-5596,Musician,109547.1,9086.925,6,4,11,0,,,10,9.92,3,Standard,171.64,30.8733615,21 Years and 6 Months,Yes,0,138.0026958,High_spent_Large_value_payments,1010.689804,0,-1.5326,-1.2051,-0.0535,0.622,-0.6261 +0x20881,CUS_0x5bf0,August,25,329-26-6592,Scientist,66919.4,5700.616667,6,5,13,4,"Payday Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",12.29913902,9,16.37,5,_,417.94,26.2205005,6 Years and 10 Months,Yes,208.2887509,445.3580507,Low_spent_Large_value_payments,186.414865,0,-1.0998,1.5372,-1.4798,1.0385,1.0739 +0x2088d,CUS_0x6752,August,22,142-19-7320,Scientist,16313.03,,8,6,12,3,"Not Specified, Payday Loan, and Home Equity Loan",33.10077414,24.73437731,9.03,5,Standard,844.539266,33.76945426,18 Years and 5 Months,NM,35.97149246,126.9159361,Low_spent_Small_value_payments,239.4544881,0,1.8899,-0.3007,-0.4938,-2.474,0.716 +0x20899,CUS_0xa7c7,August,42,319-61-2316,Architect,65523.04,,7,5,7,3,"Not Specified, Mortgage Loan, and Debt Consolidation Loan",9.949779446,10,2.95,8,Standard,422.57,33.84668425,6 Years and 0 Months,Yes,154.5758425,159.8450831,High_spent_Small_value_payments,508.5044077,0,-1.9582,-0.8623,-2.2069,-2.4352,-0.9035 +0x208a5,CUS_0x2eb1,August,52,#F%$D@*&8,Teacher,143853.08,11775.75667,8,5,6,0,,10.76964324,10,8.76,1,Standard,782.93,41.93125916,18 Years and 0 Months,NM,0,,High_spent_Large_value_payments,1249.731282,0,-1.5304,-1.0746,-0.6124,-0.314,-1.3939 +0x208b1,CUS_0x46dc,August,44,073-85-4368,Teacher,89398.64,7342.886667,1,4,6,4,"Credit-Builder Loan, Not Specified, Mortgage Loan, and Not Specified",3.960732407,5,,3,_,1020.39434,27.46586143,19 Years and 10 Months,No,240.7401468,791.2543564,Low_spent_Small_value_payments,86.92196528,0,0.5206,0.1903,-0.9841,-0.4427,0.3047 +0x208bd,CUS_0x5b60,August,43,433-01-0917,Writer,45902.25,3974.1875,10,8,25.95700519,7,"Credit-Builder Loan, Personal Loan, Student Loan, Home Equity Loan, Personal Loan, Personal Loan, and Debt Consolidation Loan",37.3677989,19,17.56,9,Bad,3544.850954,41.30052196,11 Years and 3 Months,Yes,1488.251832,,High_spent_Medium_value_payments,274.5023037,0,0.6083,1.7775,0.1516,-0.8547,-0.49 +0x208c9,CUS_0xb079,August,45,413-68-2214,_______,78570.64,6425.553333,6,7,22,9,"Student Loan, Not Specified, Student Loan, Personal Loan, Debt Consolidation Loan, Student Loan, Student Loan, Home Equity Loan, and Personal Loan",,21.95447011,17.65,13,Bad,2870.46992,37.59265635,1 Years and 11 Months,NM,449.8887307,102.4768291,High_spent_Medium_value_payments,340.1897736,0,-0.0485,1.0271,-0.7219,0.0684,-0.6846 +0x208d5,CUS_0x4a3c,August,34,886-78-4089,Engineer,95768.85,,8,7,16,100,"Auto Loan, Mortgage Loan, Auto Loan, Payday Loan, and Personal Loan",,,17.23,9,Standard,1382.52,29.2994675,15 Years and 11 Months,Yes,268.7903299,,Low_spent_Small_value_payments,6.316892728,0,-0.5207,-1.023,0.4085,0.7611,-1.7957 +0x208e1,CUS_0x4dfe,August,29,938-76-4079,Scientist,97377.87,8135.8225,4,3,6.288361749,0,Student Loan,,2,4.65,3,Good,1223.22,30.65116037,24 Years and 0 Months,No,70.90187325,,!@9#%8,404.5055413,0,-1.6395,0.6894,-0.18,0.1383,0.3954 +0x208ed,CUS_0x2a66,August,29,783-15-6029,Media_Manager,31276.27,,6,3,14,1,Credit-Builder Loan,,5,7.68,3,Standard,1275.06,24.32349205,24 Years and 4 Months,NM,16.32746629,95.89324644,High_spent_Small_value_payments,401.8148706,0,-0.1267,-0.0303,-0.4634,-0.8523,2.4345 +0x208f9,CUS_0x9150,August,20,836-03-9472,Teacher,131698.96,11196.91333,4,3,1.288361749,0,,,8,10.9,1146,Good,874.6006357,35.48375243,29 Years and 8 Months,No,0,,Low_spent_Medium_value_payments,438.7871705,0,0.961,0.4477,2.7787,0.8598,2.2505 +0x20905,CUS_0xa5e7,August,18,035-85-2354,Lawyer,68533.84,5665.153333,5,3,12,5,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",16.54987001,15,20.74,10,_,817.66,39.19606052,8 Years and 11 Months,Yes,256.4018268,124.0726571,High_spent_Small_value_payments,446.0408495,0,0.2361,-0.7125,-0.1539,0.1171,-0.3581 +0x20911,CUS_0x86b8,August,30,035-49-7581,Media_Manager,28274.17,,0,7,1,1,Credit-Builder Loan,13.31967428,9,5.77,7,Good,1486.2,25.64030741,30 Years and 5 Months,No,12.21134283,,High_spent_Medium_value_payments,393.8004341,0,0.2459,-0.2948,1.8328,-1.6097,-0.7467 +0x2091d,CUS_0x2da4,August,56,#F%$D@*&8,Mechanic,66674.38,5356.198333,1320,3,17,2,"Home Equity Loan, and Credit-Builder Loan",,10,13.02,2,_,577.97,36.58147406,19 Years and 10 Months,No,102.3135503,10000,High_spent_Small_value_payments,464.6849894,0,-1.8136,-2.2007,0.5954,0.7374,-0.1951 +0x20929,CUS_0x8ea5,August,23,907-63-1866,Teacher,124085.91,10104.4925,5,4,11.28836175,0,Student Loan,8.074009072,10,6.76,2,Good,196.8634639,25.8349637,27 Years and 5 Months,No,92.61396573,575.6655132,High_spent_Large_value_payments,1024.774755,0,0.2585,1.145,1.2934,-1.7879,0.8482 +0x20935,CUS_0x4c2b,August,45,594-38-6492,Doctor,20945.38,1619.448333,3,5,11,3,"Credit-Builder Loan, Home Equity Loan, and Student Loan",,21.21486936,24.25,8,Standard,1592.561331,31.81685384,15 Years and 4 Months,Yes,50.42425162,137.9476008,Low_spent_Small_value_payments,263.5729809,0,-0.6106,0.8825,0.4365,0.8858,0.7194 +0x20941,CUS_0x79c0,August,46,274-96-0067,Teacher,50690.91,3945.2425,8,7,25.06745738,8,"Auto Loan, Auto Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",41.30169288,21.73419254,9.93,11,Bad,3298.367442,34.29434228,10 Years and 2 Months,NM,326.5958742,,Low_spent_Medium_value_payments,179.8962495,0,-0.2801,0.5024,0.9689,-1.3236,0.7065 +0x2094d,CUS_0xbc4c,August,38,951-79-8878,Architect,15503.65,,3,5,12,0,,14.97211274,,9.43,0,Standard,466.65,38.68162782,19 Years and 9 Months,Yes,11360,19.27673217,High_spent_Medium_value_payments,388.9203512,0,-0.951,-0.6159,-1.2522,-0.0413,-1.6343 +0x20959,CUS_0xb575,August,23,509-35-9475,Teacher,95099.8,7851.983333,5,5,7,4,"Home Equity Loan, Not Specified, Payday Loan, and Credit-Builder Loan",,16.62227891,18.54,12,Standard,694.6863418,37.86361643,,NM,236.8334819,84.37809811,High_spent_Medium_value_payments,713.9867533,0,-0.3862,0.9155,1.4112,0.1898,-0.5183 +0x20965,CUS_0x24b9,August,36,#F%$D@*&8,Writer,49228.35,4210.3625,9,7,16.06745738,7,"Personal Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Not Specified",48.50851733,24.74034579,9.72,12,Bad,3167.129235,28.88446106,14 Years and 3 Months,Yes,199.4342647,173.8255224,!@9#%8,281.0561749,0,-0.1424,-0.0842,0.4585,0.8675,-1.368 +0x20971,CUS_0x7bb,August,26,292-41-5261,Musician,86502.12,6429.633584,1,3,11,0,,0,1,4.21,2,Good,1212.137261,32.53851182,24 Years and 2 Months,No,744.8764159,615.4735453,Low_spent_Large_value_payments,440.6426541,0,0.4015,-0.3482,2.417,1.4457,-0.8075 +0x2097d,CUS_0x284f,August,25,413-63-3434,Teacher,9620.965,,10,7,25.06745738,2,"Auto Loan, and Mortgage Loan",,17,3.7,7,Bad,1578.690954,37.48971342,12 Years and 2 Months,Yes,9.675865767,10.60216374,High_spent_Large_value_payments,271.2763909,0,-1.2275,1.3982,0.7418,1.2582,1.3357 +0x20989,CUS_0x5bb8,August,50,064-97-5428,Lawyer,126344.72,10643.72667,3,4,0.288361749,0,Personal Loan,4.862292713,7,8.08,1,Good,1198.35,36.4360722,30 Years and 8 Months,No,95.467877,756.2951996,High_spent_Medium_value_payments,882.5470511,0,1.0202,-0.3666,-1.0932,-0.0847,1.6153 +0x20995,CUS_0x6e38,August,28,574-92-0412,Musician,63572.76,5566.73,3,3,7,1,Credit-Builder Loan,26.07705298,16.31241084,7.77,4,_,452.7775105,30.18247432,18 Years and 11 Months,No,37.59040176,74.7706045,High_spent_Medium_value_payments,694.3119937,0,1.1638,-1.1984,-0.0694,1.5017,-1.4434 +0x209a1,CUS_0x7d25,August,26,532-41-9248,Entrepreneur,41922.4,,8,6,19,7,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",20.7185423,17.42777252,12.75,12,_,2965.503562,32.71142195,17 Years and 6 Months,Yes,197.1956179,200.2386343,Low_spent_Small_value_payments,249.0190811,0,-0.4932,0.1715,-1.3118,-0.3563,-0.7419 +0x209ad,CUS_0x1eae,August,47,403-63-5439,Mechanic,21421.73,,5,3,17,4,"Mortgage Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",15.34588881,13,9.11,1776,Standard,1378.89,32.19606265,22 Years and 2 Months,No,47.62902008,30.0443377,High_spent_Small_value_payments,351.2410589,0,-0.2242,1.7167,0.7667,-0.2713,-1.7889 +0x209b9,CUS_0x7d87,August,38,779-20-4718,Mechanic,21039.26,,5,4,3033.067457,2,"Home Equity Loan, and Mortgage Loan",,10,9.21,6,Standard,1624.950954,38.52659785,21 Years and 0 Months,Yes,20.21434137,109.6853372,!@9#%8,286.2072001,0,1.3355,0.2782,1.3653,1.698,-0.3145 +0x209c5,CUS_0xc465,August,24,301-71-9115,Lawyer,19924.14,,10,7,33,9,"Personal Loan, Not Specified, Personal Loan, Mortgage Loan, Student Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,22,20.14,9,Bad,4980.31,40.17265031,0 Years and 11 Months,NM,118.7258469,39.14136687,High_spent_Large_value_payments,273.2672862,0,0.7581,0.3698,-1.2305,1.6976,-0.9243 +0x209d1,CUS_0x8807,August,22,509-43-8502,Journalist,48729.87,3812.8225,6,10,24,2,"Student Loan, and Personal Loan",,20.64215889,3.24,12,_,2935.056271,23.69543505,9 Years and 11 Months,Yes,63.59763134,239.0069901,Low_spent_Large_value_payments,348.6776285,0,1.4099,-1.0797,0.9497,0.6743,-0.8221 +0x209dd,CUS_0x2e0c,August,31,#F%$D@*&8,Musician,62028.36,5048.03,8,10,21.95700519,8,"Payday Loan, Payday Loan, Personal Loan, Student Loan, Credit-Builder Loan, Student Loan, Student Loan, and Home Equity Loan",38.73564342,23,29.55,12,Bad,4065.780954,27.61053079,1 Years and 3 Months,Yes,1604.223204,59.17255694,High_spent_Medium_value_payments,370.3568701,0,-1.2157,0.185,-1.3465,0.1351,0.2261 +0x209e9,CUS_0x3aa9,August,23,104-05-3078,Journalist,75010.52,,10,8,21.88954781,7,"Payday Loan, Mortgage Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Credit-Builder Loan",,22.47651732,,11,Bad,4624.387137,23.84231608,10 Years and 11 Months,Yes,1725.345131,126.466225,High_spent_Large_value_payments,310.6462293,0,1.0745,-0.9007,-0.6826,0.0354,1.5355 +0x209f5,CUS_0x2126,August,21,345-38-9104,Mechanic,19395.73,,5,4,17,6,"Payday Loan, Personal Loan, Payday Loan, Not Specified, Not Specified, and Auto Loan",25.32716976,19,9.33,8,Standard,2694.8,27.16117889,11 Years and 8 Months,Yes,60.38789858,174.51128,Low_spent_Small_value_payments,210.1319048,0,0.7018,-0.938,-0.0628,-0.8448,-0.9598 +0x20a01,CUS_0xb607,August,40,486-31-0352,Entrepreneur,16758.14,1545.989423,8,6,24,5,"Payday Loan, Student Loan, Auto Loan, Student Loan, and Debt Consolidation Loan",20.22064608,12,9.15,10,Standard,2392.91,35.77982693,7 Years and 0 Months,Yes,112.3072612,180.7543283,Low_spent_Small_value_payments,225.8118213,0,1.615,1.0064,0.4671,0.3672,-1.2167 +0x20a0d,CUS_0x3aeb,August,28,158-59-5725,Mechanic,28207.03,,8,7,10,0,,,9,15.48,10,Standard,1288.976616,38.66398268,,Yes,0,,High_spent_Small_value_payments,355.3801084,0,2.0055,0.2103,-0.7231,-1.6179,-0.0158 +0x20a19,CUS_0x692c,August,56,979-11-8821,Lawyer,70797.84,5778.82,7,6,4,1,Mortgage Loan,10.33739484,9,0.78,6,Good,488.9527256,25.12528094,,No,45.10565737,197.3907713,High_spent_Medium_value_payments,606.0484209,0,1.4937,0.5119,0.0855,1.2447,0.9489 +0x20a25,CUS_0x65d6,August,36,209-72-0384,Developer,79500.44,6244.387274,7,4,9,5,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",,10,19.86,8,Standard,987.2156514,36.12777244,18 Years and 6 Months,NM,552.0928307,199.8642334,Low_spent_Medium_value_payments,512.8986563,0,0.3858,0.7922,1.4777,-0.1211,0.4052 +0x20a31,CUS_0x7480,August,55,389-24-0840,Lawyer,49715.68,,3,5,17,0,,9.11552497,8,6.93,4,Standard,1350.08,34.8463635,29 Years and 11 Months,No,0,77.65412754,High_spent_Small_value_payments,619.5432058,0,-0.5764,-0.6111,0.6567,-1.6754,0.2377 +0x20a3d,CUS_0x978b,August,18,462-86-9472,Accountant,20211.78,1571.315,10,10,17.88954781,7,"Home Equity Loan, Home Equity Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Personal Loan, and Credit-Builder Loan",,,27.19,8,Bad,3158.9,38.50065863,3 Years and 5 Months,Yes,1432.061946,,High_spent_Small_value_payments,182.4929473,0,-2.6317,0.2625,1.9183,0.8283,-0.0262 +0x20a49,CUS_0x1f70,August,55,976-79-4462,Scientist,90074.64,7233.22,0,7,9,3,"Mortgage Loan, Student Loan, and Student Loan",8.640318763,11,11.12,7,Good,1279.471475,32.79436824,20 Years and 2 Months,No,132.1107032,,High_spent_Medium_value_payments,621.1310134,0,0.7484,1.8596,-2.129,1.0655,0.6137 +0x20a55,CUS_0x141d,August,26,989-82-3003,Journalist,44323.29,3909.6075,10,5,22,100,"Mortgage Loan, Payday Loan, Mortgage Loan, Payday Loan, and Auto Loan",28.7387167,20,19.8,9,Bad,3089.47,39.91087515,12 Years and 6 Months,NM,184.40581,76.57873781,High_spent_Large_value_payments,369.9762022,0,0.4617,0.3903,-0.1062,1.1856,-0.7101 +0x20a61,CUS_0xfc9,August,34,264-17-8777,Architect,17290.42,,6,4,31,7,"Payday Loan, Student Loan, Student Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Personal Loan",13.90937537,,16.86,12,Standard,1731.895357,25.85870816,14 Years and 2 Months,Yes,65.01782898,124.7647063,Low_spent_Small_value_payments,242.9042981,0,-0.8376,-1.5395,0.7068,-2.3786,-0.6354 +0x20a6d,CUS_0x5ee1,August,25,#F%$D@*&8,Developer,11892.72,976.06,1645,4,5,1,Home Equity Loan,26.85629158,17,15.73,11,Standard,736.01,28.58857531,32 Years and 0 Months,Yes,56630,81.77369241,Low_spent_Large_value_payments,278.3211253,0,-0.2544,-0.2418,-0.0944,-1.5857,-1.2688 +0x20a79,CUS_0x2f29,August,18,237-54-4265,Teacher,58306.26,4750.855,6,5,25,3,"Credit-Builder Loan, Auto Loan, and Mortgage Loan",18.64536471,13,5.49,11,Standard,1628.95,23.70819752,15 Years and 6 Months,Yes,101.069475,,Low_spent_Small_value_payments,38.59170262,0,-1.2136,-0.601,1.2026,0.4326,0.1995 +0x20a85,CUS_0x4cb4,August,37,215-09-4344,Teacher,34829.92,,4,5,8.288361749,0,Mortgage Loan,0,0,2.26,3,_,182.9174273,32.90779553,,No,26.93085411,590.5730172,Low_spent_Small_value_payments,411.6443083,0,0.7057,-2.132,0.3559,-0.9683,-1.2585 +0x20a91,CUS_0xc1a6,August,32,008-57-6946,Manager,12805.5,,4,7,20,2,"Mortgage Loan, and Auto Loan",26.81113846,19,1.92,4,Standard,1376.62,32.22527183,29 Years and 11 Months,NM,16.09533869,112.7915153,Low_spent_Small_value_payments,279.925646,0,-1.724,-0.6752,0.1403,-1.0488,0.4157 +0x20a9d,CUS_0xb66e,August,30,450-16-3479,Writer,36640.7,,3,5,1.288361749,4,"Personal Loan, Auto Loan, Home Equity Loan, and Auto Loan",,3,8.9,2,Good,138.5637345,29.10609726,30 Years and 4 Months,No,106.1746689,575.3310997,Low_spent_Small_value_payments,353.7261485,0,-0.8221,2.1107,-0.7549,-2.2022,0.6788 +0x20aa9,CUS_0xae98,August,45,021-36-7746,Musician,61127.37,5337.9475,8,5,16,2,"Personal Loan, and Not Specified",,21,8.23,4,Standard,1232.42,36.94584837,,Yes,92.47615944,329.2082196,High_spent_Small_value_payments,372.110371,0,0.5763,1.9528,-0.2441,-0.4375,1.3163 +0x20ab5,CUS_0xb5bb,August,22,605-18-0222,Architect,30352.72,2573.393333,8,8,24.06745738,7,"Home Equity Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Auto Loan, and Mortgage Loan",46.06325622,26.83148959,2.55,10,_,2895.33549,25.99829754,,Yes,154.4573427,22.06763532,High_spent_Large_value_payments,294.0940673,0,0.0707,-1.9822,-1.7497,0.1355,0.5209 +0x20ac1,CUS_0x77f8,August,48,893-81-8271,Engineer,80942.22,6630.185,5,1,10.28836175,0,,,2,7.13,,_,351.2852023,26.36237382,31 Years and 6 Months,No,0,1067.590621,Low_spent_Small_value_payments,386.3991726,0,0.9688,0.3301,1.5736,-0.7411,-0.5361 +0x20acd,CUS_0x20fe,August,37,820-01-3614,Developer,21085.67,,5,7,11,1,Payday Loan,,15,4.78,6,Good,1384.38,30.18124725,30 Years and 9 Months,No,10.65335359,250.1205753,Low_spent_Small_value_payments,221.1399878,0,0.5781,-0.4337,0.2085,0.879,-0.784 +0x20ad9,CUS_0xbc7f,August,39,111-47-2435,Teacher,30178.34,2557.861667,0,4,5,0,,0.626657415,4,0.33,6,Good,283.84,36.19567054,32 Years and 3 Months,No,0,120.9554288,High_spent_Small_value_payments,394.8307378,0,0.7268,0.1869,-1.0652,0.7398,-0.0818 +0x20ae5,CUS_0x396c,August,40,583-74-0623,Media_Manager,46360.47,,10,5,35.06745738,1384,"Home Equity Loan, Credit-Builder Loan, Not Specified, Not Specified, and Credit-Builder Loan",33.84877591,18,19.71,11,Bad,5078.560954,28.52903585,5 Years and 8 Months,Yes,156.2421017,142.0384127,High_spent_Medium_value_payments,305.1364477,0,0.6369,-0.9242,-0.5866,0.5105,-0.2351 +0x20af1,CUS_0x9769,August,53,997-89-3734,_______,14331.65,1392.304167,8,6,10.06745738,2,"Credit-Builder Loan, and Personal Loan",33.5446042,22,9.01,0,Standard,1645.600954,22.9110902,27 Years and 2 Months,Yes,20.05559566,158.8203753,Low_spent_Small_value_payments,223.6341578,0,0.4671,-1.0502,0.4962,-1.4517,-0.3817 +0x20afd,CUS_0x1628,August,33,340-56-9506,Musician,17446.07,,6,7,15,7,"Personal Loan, Not Specified, Personal Loan, Home Equity Loan, Mortgage Loan, Auto Loan, and Payday Loan",,23.68571907,7.23,8,Standard,2526.339733,23.45963148,15 Years and 3 Months,Yes,73.09941738,,Low_spent_Small_value_payments,227.8233551,0,0.7668,-1.0293,1.0664,-0.6711,0.4374 +0x20b09,CUS_0xab2f,August,22,703-72-4069,Manager,26760.95,2254.079167,4,4,9,2,"Mortgage Loan, and Home Equity Loan",8.159682355,10,16.31,3,Standard,244.29,26.53732174,19 Years and 5 Months,Yes,34.26639595,43.15144803,!@9#%8,397.9900727,0,-0.1513,1.0038,-0.4794,0.7646,-0.7925 +0x20b15,CUS_0x5d95,August,26,809-31-4571,Scientist,71034.88,5743.573333,7,7,26,9,"Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Payday Loan",22.71014242,,4.82,8,Bad,3020.889577,26.42708249,10 Years and 0 Months,Yes,335.7367503,265.8101188,Low_spent_Large_value_payments,242.8104642,0,0.6218,0.4798,0.1515,0.4611,0.5882 +0x20b21,CUS_0x4822,August,23,133-67-4826,Scientist,70732.4,5874.366667,8,10,26,5,"Personal Loan, Not Specified, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",18.91776076,,7.18,7,Bad,1650.246505,33.5168458,20 Years and 0 Months,Yes,165.0510754,151.3846198,High_spent_Large_value_payments,511.0009715,0,3.1238,-0.1119,-1.3508,0.4684,-1.6275 +0x20b2d,CUS_0xbc3a,August,34,092-73-3773,Scientist,7363.13,695.5941667,10,9,17.06745738,8,"Student Loan, Payday Loan, Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Payday Loan",,25.42117686,0.71,13,Bad,4297.990103,29.03231635,13 Years and 3 Months,Yes,42.20297003,,!@9#%8,232.3540845,0,1.7948,0.1913,-1.5453,-0.9941,1.2229 +0x20b39,CUS_0xbdb4,August,36,997-19-1168,Scientist,9447.12,,10,10,35.95700519,7,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Auto Loan, and Mortgage Loan",38.59878859,18.45084219,19.61,9,Standard,1954.255633,31.60699672,11 Years and 5 Months,Yes,1357.587772,42.18801927,High_spent_Small_value_payments,221.4998391,0,0.5089,-0.0613,0.073,0.1578,-1.2871 +0x20b45,CUS_0x1123,August,18,917-49-8240,Writer,15264.98,,6,5,34,3,"Home Equity Loan, Credit-Builder Loan, and Auto Loan",,,9.68,14,Bad,2635.121161,24.09434406,8 Years and 10 Months,Yes,50563,136.9520227,Low_spent_Small_value_payments,242.8660473,0,0.2703,-0.4796,-1.7251,0.4076,1.612 +0x20b51,CUS_0x5bba,August,25,210-99-3963,Architect,23713472,512.0033333,10,9,24.88954781,9,"Payday Loan, Not Specified, Mortgage Loan, Home Equity Loan, Student Loan, Personal Loan, Auto Loan, Auto Loan, and Not Specified",,29.08290861,21.69,11,Bad,3317.966531,36.63377084,9 Years and 2 Months,NM,1358.979064,22.94755195,Low_spent_Small_value_payments,264.9436365,0,-0.1011,0.4292,0.7347,1.7161,-1.203 +0x20b5d,CUS_0xa7ce,August,35,039-05-1274,Musician,14835.22,,10,10,28.06745738,2,"Not Specified, and Personal Loan",31.81060491,17,9.4,11,Bad,2664.010954,32.46746642,20 Years and 6 Months,Yes,20.53959002,55.26837412,High_spent_Small_value_payments,258.2985812,0,1.25,-0.1234,-0.4706,-1.4521,1.0586 +0x20b69,CUS_0x4f2e,August,32,682-80-2933,Developer,62031.06,5295.255,4,4,5469,4,"Home Equity Loan, Personal Loan, Not Specified, and Not Specified",,20,1.35,2,Standard,46.37,27.26072813,18 Years and 3 Months,No,160.2079409,,High_spent_Large_value_payments,479.3684931,0,1.1583,-0.7562,-1.8186,-0.8597,-0.1957 +0x20b75,CUS_0x365f,August,41,#F%$D@*&8,_______,19250.71,1610.225833,8,5,19,2,"Payday Loan, and Mortgage Loan",,13,19.3,17,Standard,2323.93,32.08489293,10 Years and 0 Months,Yes,18.39206882,100.3690715,Low_spent_Large_value_payments,312.261443,0,1.0294,-0.4955,-1.6759,-0.7388,-0.4897 +0x20b81,CUS_0x75e8,August,37,351-02-9110,Lawyer,28058.38,,3,1,11.28836175,2,"Mortgage Loan, and Not Specified",1.855289446,5,10.49,2,_,208.731406,24.85880814,23 Years and 6 Months,NM,23.54287935,560.327475,!@9#%8,401.4143819,0,1.2619,1.0849,-0.9433,-0.9245,-0.9328 +0x20b8d,CUS_0xbf6e,August,42,872-51-1342,_______,40343.42,3485.951667,0,7,5,3,"Student Loan, Auto Loan, and Mortgage Loan",14.53652097,,4.63,4,Good,670.4648154,33.90457483,15 Years and 8 Months,No,54.47344351,104.5470386,High_spent_Medium_value_payments,454.1579995,0,0.1058,0.1451,-0.9137,1.1155,-1.3535 +0x20b99,CUS_0x510b,August,39,908-02-5123,Media_Manager,35474.91,3203.2425,7,7,10,100,"Debt Consolidation Loan, Home Equity Loan, and Not Specified",17.95816475,14,13.02,5,_,1049.102039,31.70664531,20 Years and 10 Months,Yes,59.87139781,147.907396,High_spent_Medium_value_payments,380.6143869,0,0.6202,-1.3671,0.2022,1.5442,0.0009 +0x20ba5,CUS_0x1848,August,38,766-42-5182,_______,33834.47,2630.539167,3,4,7.288361749,0,,4.322404373,5.918600127,1.63,5,Good,241.3209752,24.99177798,31 Years and 10 Months,NM,0,10419.93746,High_spent_Small_value_payments,351.2420109,0,1.2886,-2.2883,-0.226,-0.5959,-0.34 +0x20bb1,CUS_0x67c4,August,42,937-00-7683,Writer,109978.17,9139.8475,4,3,7,1,Not Specified,30.70628478,20,10.84,0,Standard,1155.21,36.08562995,18 Years and 6 Months,No,78.74971305,270.3028276,High_spent_Medium_value_payments,814.9322094,0,2.0179,-0.0827,-0.575,0.8382,0.2832 +0x20bbd,CUS_0x8816,August,28,063-33-1680,Developer,24070.5,2090.875,7,3,18,0,,15.45891261,15,,,Standard,1058.02,38.31329094,20 Years and 8 Months,No,0,163.5110028,Low_spent_Large_value_payments,315.5764972,0,-0.5908,0.7944,0.0763,0.6525,-0.6309 +0x20bc9,CUS_0x4943,August,35,455-66-3671,Architect,89772.84,7636.07,8,3,9,2,"Not Specified, and Student Loan",,16,3.15,3,Standard,1177.54,27.4588528,22 Years and 8 Months,No,77.06309667,,Low_spent_Medium_value_payments,712.351271,0,-0.0693,-0.1038,0.5442,0.6172,0.5805 +0x20bd5,CUS_0x542d,August,50,826-04-5929,Architect,14540.485,,2,4,3,2,"Not Specified, and Auto Loan",,9.729825846,15.9,5,Good,1597.618078,26.4173594,25 Years and 6 Months,NM,18.26703221,,!@9#%8,237.8947616,0,-0.8771,0.6367,-0.4475,-0.333,-0.5623 +0x20be1,CUS_0x8d7b,August,43,448-73-2560,Mechanic,33990.85,2569.570833,5,1092,2,0,,,12,7.59,0,Good,1439.4,39.67330628,30 Years and 10 Months,NM,0,10000,Low_spent_Small_value_payments,301.006408,0,0.7704,-0.3234,-0.3279,0.2578,-0.0201 +0x20bed,CUS_0x4482,August,30,099-19-1105,Mechanic,42185.25,,4,5,9,1,Payday Loan,,8,10.14,2,_,720.43,34.70576267,33 Years and 3 Months,No,32.71539026,237.2819512,Low_spent_Small_value_payments,369.5464085,0,0.4447,-0.1745,2.0748,1.5323,-0.6816 +0x20bf9,CUS_0x5b61,August,49,095-93-4022,_______,33061.2,,3,6,12,0,,,5,11.95,8,Good,790.5905072,33.96697411,33 Years and 2 Months,No,0,183.2944239,Low_spent_Small_value_payments,388.9761966,0,-0.2919,0.3515,0.5137,-0.4795,1.5469 +0x20c05,CUS_0xb037,August,44,769-23-7954,Musician,12287.43,,4,3,19,2,"Home Equity Loan, and Student Loan",13.65381929,13,12.21,7,Standard,1271.65,34.47906575,6 Years and 6 Months,NM,14.30802796,98.98821738,Low_spent_Small_value_payments,288.6990047,0,1.681,-0.9399,1.4465,-0.0351,0.4941 +0x20c11,CUS_0x3b2a,August,23,#F%$D@*&8,Scientist,33624.4,2869.033333,4,5,20,4,"Home Equity Loan, Personal Loan, Mortgage Loan, and Auto Loan",14.95543516,9,12.8,7,_,987.27,26.90247214,29 Years and 5 Months,Yes,72.25713758,70.00207331,High_spent_Medium_value_payments,394.6441224,0,0.0428,-0.1309,1.8817,2.5487,0.6618 +0x20c1d,CUS_0xbcf7,August,30,973-42-1657,Lawyer,41414.58,3476.215,9,6,23,2,"Student Loan, and Mortgage Loan",32.45839069,23.54887488,2.39,14,Bad,2094.231775,22.90395191,7 Years and 2 Months,Yes,44.06196499,208.668845,Low_spent_Medium_value_payments,374.89069,0,1.1633,0.6592,-1.5508,0.8378,-0.4634 +0x20c29,CUS_0xf64,August,32,478-73-8323,Doctor,56125.5,4875.125,8,3,18,2,"Credit-Builder Loan, and Mortgage Loan",22.46287899,14,17.89,4,_,370.22,26.88811208,29 Years and 0 Months,Yes,81.82285658,83.09070109,High_spent_Medium_value_payments,572.5989423,0,-1.7578,0.072,-0.0233,-0.5076,-0.185 +0x20c35,CUS_0x7459,August,25,319-19-8982,Musician,9886.53,,8,3,3,4,"Home Equity Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",12.49979599,10,1.84,5,_,102.46,23.60407388,20 Years and 11 Months,No,30.06462553,38.46753964,Low_spent_Medium_value_payments,269.0555848,0,0.4123,-0.0003,-0.3046,2.0345,-1.5692 +0x20c41,CUS_0x7e84,August,20,775-79-8522,Media_Manager,121522.52,,6,6,15.28836175,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Auto Loan",10.03297626,12,7.15,6,Standard,969.8551958,39.92824953,18 Years and 0 Months,No,367.056926,,!@9#%8,219.8217846,0,1.4764,0.9479,1.5391,0.0925,0.6686 +0x20c4d,CUS_0x7d04,August,18,#F%$D@*&8,Journalist,58164.12,5046.01,6,7,5,0,,21.77929496,18,8.2,5,Standard,1075.84,34.65518189,33 Years and 8 Months,No,0,350.5305805,Low_spent_Small_value_payments,444.0704195,0,-0.4254,-1.5773,-1.1349,0.4589,0.7909 +0x20c59,CUS_0x77fc,August,18,641-81-0687,Journalist,21172.98,1887.415,4,3,5,3,"Personal Loan, Credit-Builder Loan, and Not Specified",27.42668841,20,14.66,8,_,409.58,29.43801729,30 Years and 5 Months,Yes,32.6354018,45.70524411,High_spent_Medium_value_payments,360.4008541,0,-0.5744,2.1947,-0.7821,0.1163,1.1201 +0x20c65,CUS_0x2c7f,August,36,702-92-8891,Entrepreneur,13701.675,1232.80625,8,6,19,1,Not Specified,,10,11.9,9,Standard,1060.4,29.14700779,24 Years and 0 Months,Yes,30748,110.4609268,Low_spent_Medium_value_payments,284.8510436,0,1.2901,1.1435,-0.2782,-0.5914,0.1368 +0x20c71,CUS_0x4a8a,August,51,#F%$D@*&8,Accountant,20351.965,,3,4,2,3,"Personal Loan, Student Loan, and Auto Loan",4.677690082,7,8.98,5,_,1245.348844,37.50780635,20 Years and 11 Months,No,46.28268798,173.2633379,Low_spent_Small_value_payments,270.7030603,0,0.9398,0.2528,2.1207,1.875,0.9539 +0x20c7d,CUS_0x719,August,42,519-38-5557,Entrepreneur,29256.86,,6,4,9,2,"Not Specified, and Credit-Builder Loan",,17,1.93,3,Good,450.74,35.20445645,32 Years and 6 Months,NM,223.458878,46.0262154,High_spent_Medium_value_payments,420.1774641,0,0.3743,-1.0168,-0.2781,1.3194,1.0338 +0x20c89,CUS_0x1dc4,August,42,809-45-0364,Journalist,20170.75,1930.895833,10,5,26.06745738,2,"Payday Loan, and Credit-Builder Loan",25.39452997,11.33437989,10.14,8,Standard,2322.604353,27.69262285,6 Years and 3 Months,Yes,20.94916241,151.5951221,Low_spent_Small_value_payments,283.8250109,0,-1.0382,0.6815,0.2984,-1.273,0.1936 +0x20c95,CUS_0x1326,August,23,994-98-1405,Mechanic,8658.18,637.515,10,7,22,100,"Payday Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Not Specified, Debt Consolidation Loan, and Student Loan",33.00156013,24.13451909,8.68,14,Bad,2815.430545,37.50408407,7 Years and 5 Months,Yes,36.69578385,,Low_spent_Small_value_payments,236.6945926,0,-0.9134,-1.2389,-0.3838,0.4854,-0.2709 +0x20ca1,CUS_0x1773,August,40,682-53-7501,Architect,17663.535,1767.96125,0,3,3,1,Auto Loan,6.411914359,9,4.39,1,Good,1232.690641,32.73516487,18 Years and 5 Months,No,10.62923,80.05124868,Low_spent_Large_value_payments,365.6431511,0,0.4385,2.1883,-0.1644,-0.3011,1.2418 +0x20cad,CUS_0xb40d,August,19,886-87-2102,Architect,15509.99,,6,9,18,5,"Auto Loan, Not Specified, Student Loan, Not Specified, and Payday Loan",33.03403914,19,23.58,10,Bad,2820.81,33.82546871,1 Years and 8 Months,Yes,68466,,Low_spent_Small_value_payments,213.1670069,0,-1.0838,1.6918,-0.1444,-1.801,-0.0542 +0x20cb9,CUS_0x1add,August,23,917-37-8257,Doctor,57452.43,4802.7025,6,10,27.88954781,9,"Not Specified, Personal Loan, Student Loan, Not Specified, Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Debt Consolidation Loan",45.11996995,25,7.77,13,Bad,1567.24,26.01791229,20 Years and 3 Months,Yes,1612.943243,,High_spent_Small_value_payments,223.355962,0,-0.2394,0.7568,0.1035,0.5558,-0.8774 +0x20cc5,CUS_0x8985,August,80,544-93-0937,Developer,7299.77,674.3141667,7,7,25,2,"Student Loan, and Payday Loan",,25.22747478,12.75,8,Bad,1922.831181,36.3906168,5 Years and 10 Months,Yes,10.17628917,45.74296148,Low_spent_Small_value_payments,301.512166,0,-0.465,1.8256,0.4692,-1.15,1.4221 +0x20cd1,CUS_0xa6d1,August,80,121-79-9310,Mechanic,60159.45,,4,7,14.28836175,0,,22.22981951,19,15.62,4,Standard,686.05,24.99103491,25 Years and 3 Months,Yes,0,,Low_spent_Small_value_payments,416.1620834,0,0.9554,-0.8922,0.2635,-0.7093,0.1966 +0x20cdd,CUS_0xeb9,August,44,612-56-0876,Doctor,9637.635,,7,7,28,6,"Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, Payday Loan, and Auto Loan",37.79398279,21.33895185,1.32,11,Bad,2915.363962,29.17950005,9 Years and 8 Months,Yes,42.46995945,62.95142194,Low_spent_Small_value_payments,250.8922436,0,0.5585,-0.3282,0.6181,-1.3558,1.2061 +0x20ce9,CUS_0x3b81,August,24,644-75-8764,Musician,116360.56,,3,7,19.28836175,4,"Not Specified, Payday Loan, Payday Loan, and Home Equity Loan",,21,3.1,2,Standard,412.9908439,35.70198319,20 Years and 2 Months,No,312.9826274,509.5682442,High_spent_Large_value_payments,819.577435,0,0.4208,1.0068,-0.4238,-1.9673,0.1221 +0x20cf5,CUS_0x1d70,August,24,655-19-8273,Media_Manager,19563.14,,8,7,30.06745738,6,"Student Loan, Payday Loan, Credit-Builder Loan, Not Specified, Personal Loan, and Payday Loan",,28.20802117,2.32,11,Bad,2845.815583,39.34827756,6 Years and 5 Months,Yes,64.79136581,108.9945145,Low_spent_Large_value_payments,259.7199984,0,0.5711,0.7641,-0.8596,1.4781,1.0302 +0x20d01,CUS_0xb24c,August,31,098-71-9240,Doctor,20338.48,,7,6,16,6,"Not Specified, Credit-Builder Loan, Payday Loan, Personal Loan, Payday Loan, and Student Loan",,30.18335735,2.93,14,_,1534.021217,24.16303633,6 Years and 6 Months,Yes,95.54931496,41.38615364,High_spent_Medium_value_payments,287.6518647,0,-0.4709,0.8932,-0.7248,0.3596,-0.4261 +0x20d0d,CUS_0x57ea,August,56,895-47-6403,Accountant,41563.69,3691.640833,5,4,6,3,"Home Equity Loan, Not Specified, and Student Loan",,8,3.47,9,Good,1126.73466,37.28686062,32 Years and 2 Months,No,72.67212752,141.0363651,High_spent_Medium_value_payments,421.7487863,0,0.6121,-0.206,0.1907,1.0257,-0.6664 +0x20d19,CUS_0x6a61,August,59,712-78-0892,Architect,72902.7,6251.225,5,6,4,4,"Debt Consolidation Loan, Payday Loan, Student Loan, and Auto Loan",,19,9.65,2,Good,1006.84549,39.4753583,18 Years and 10 Months,No,180.5608195,,!@9#%8,327.9670759,0,0.6025,1.1532,1.1224,-0.0956,-0.0065 +0x20d25,CUS_0x881e,August,24,813-67-6950,Media_Manager,16603.995,,2,224,9,1,Home Equity Loan,11.16033841,11.5943961,0.7,1,Good,1609.027115,26.29003045,,No,11.01073447,87.30871048,Low_spent_Small_value_payments,335.54718,0,1.6996,-0.0736,-0.5511,-1.1646,1.0031 +0x20d31,CUS_0xc362,August,30,279-14-9750,Engineer,56286.51,,7,5,15,5,"Personal Loan, Mortgage Loan, Auto Loan, Student Loan, and Credit-Builder Loan",27.73194725,18.08483186,21.59,12,Standard,2912.183271,26.34837929,18 Years and 2 Months,Yes,201.4981615,370.9008961,Low_spent_Small_value_payments,177.7551924,0,0.6634,-0.01,0.8015,-0.5415,1.0076 +0x20d3d,CUS_0x1e45,August,41,#F%$D@*&8,Manager,166837.64,,4,3,8,0,,8.11491859,7.847430376,11.61,1,Good,1540.051367,36.91309695,16 Years and 0 Months,No,0,256.2779694,High_spent_Large_value_payments,1351.735697,0,0.8962,-1.287,-0.0164,1.1839,0.0462 +0x20d49,CUS_0x3e4b,August,27,937-26-6424,Mechanic,18228.535,,0,3,1.288361749,4,"Debt Consolidation Loan, Auto Loan, Not Specified, and Auto Loan",0,0,8.35,2554,_,145.5508442,30.520618,,No,54.00702617,,High_spent_Medium_value_payments,285.1796989,0,1.82,-0.1522,-0.0571,-0.7096,-0.3453 +0x20d55,CUS_0x3582,August,26,346-20-0951,Media_Manager,126464.01,10420.6675,5,5,6,2,"Credit-Builder Loan, and Debt Consolidation Loan",8.951234158,8,7.1,4,Good,595.4435463,44.59866844,24 Years and 2 Months,No,170.3003847,118.7244218,!@9#%8,1007.960746,0,0.6009,1.7077,2.5124,0.1187,-0.4256 +0x20d61,CUS_0x2488,August,26,593-49-8824,Lawyer,98455.26,8420.605,4,4,12,3,"Student Loan, Personal Loan, and Not Specified",,20,4.24,2,Standard,424.3,34.51585254,22 Years and 11 Months,No,238.3582389,,Low_spent_Small_value_payments,588.7896348,0,0.5145,2.133,-0.3231,-0.7924,0.2099 +0x20d6d,CUS_0x972f,August,23,789-04-4761,Scientist,66387.42,5545.285,4,5,12,6,"Mortgage Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Auto Loan",30.35282216,22,10.46,11,Standard,1175.18,38.58887171,17 Years and 5 Months,Yes,194.7962289,,Low_spent_Large_value_payments,338.1867316,0,0.6423,-1.552,0.9877,-1.1164,0.4705 +0x20d79,CUS_0x77c,August,41,074-98-8131,Mechanic,82383.04,6661.253333,3,5,8,4,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",16.34592615,14,1.71,4,_,1129.481193,34.23002053,33 Years and 3 Months,No,162.1089556,307.602067,Low_spent_Large_value_payments,495.9924263,0,-0.7367,1.3754,-1.0648,-0.238,-0.4616 +0x20d85,CUS_0x9ce8,August,31,943-79-6953,Mechanic,29182.34,2479.861667,8,10,29.06745738,5,"Debt Consolidation Loan, Not Specified, Auto Loan, Not Specified, and Credit-Builder Loan",26.68745608,,,12,Bad,5663.595706,25.81913999,7 Years and 3 Months,Yes,121.4995467,,Low_spent_Small_value_payments,229.2466884,0,-0.9819,1.6806,-0.4605,0.692,-0.6998 +0x20d91,CUS_0x3ccd,August,18,973-14-4888,Engineer,15586.65,,4,7,9,3,"Not Specified, Not Specified, and Debt Consolidation Loan",6.328978118,8,17.53,4,Good,207.81,31.52210241,16 Years and 9 Months,No,27.69331395,145.7045303,Low_spent_Small_value_payments,229.2909057,0,-0.761,-0.0022,1.0765,0.9746,0.8242 +0x20d9d,CUS_0x8df0,August,19,268-76-4008,_______,54593.73,4456.4775,6,9,31,2,"Home Equity Loan, and Home Equity Loan",,18.27544897,16.24,12,Standard,2688.546362,24.74565585,9 Years and 6 Months,NM,53.30572815,69.93571944,High_spent_Large_value_payments,562.4063024,0,0.7568,-1.5518,-0.7303,-0.396,-0.5078 +0x20da9,CUS_0x81c5,August,80,817-22-9418,Teacher,55554.69,,12,9,35.95700519,7,"Personal Loan, Home Equity Loan, Home Equity Loan, Payday Loan, Student Loan, Student Loan, and Personal Loan",28.62366427,17,21.76,14,Bad,5197.720954,39.17327367,1 Years and 5 Months,Yes,1551.600202,10000,High_spent_Medium_value_payments,313.9846067,0,0.9155,0.6555,-0.7662,-0.0592,0.5133 +0x20db5,CUS_0x318c,August,42,025-48-2841,Doctor,61807.41,5418.6175,4,5,18,4,"Home Equity Loan, Personal Loan, Student Loan, and Payday Loan",22.53909898,15,12.62,5,Standard,668.14,29.99995745,16 Years and 5 Months,Yes,157.2174257,89.20782511,High_spent_Medium_value_payments,545.4364992,0,-0.097,0.7267,0.273,1.5595,0.2514 +0x20dc1,CUS_0xbd1e,August,44,645-70-2918,Writer,16200.25,,0,7,3909,3,"Payday Loan, Student Loan, and Debt Consolidation Loan",,1,10.9,0,Good,560.52,37.2444103,,No,30.75051907,86.46534477,Low_spent_Small_value_payments,328.1862195,0,0.5846,0.0337,1.0828,0.0555,0.3281 +0x20dcd,CUS_0x2913,August,54,212-82-4042,Teacher,43924.04,3811.336667,0,6,6,2,"Payday Loan, and Student Loan",3.034246741,5,0.6,5,Good,780.26,27.41346059,20 Years and 5 Months,No,63.31342078,152.2179402,High_spent_Medium_value_payments,415.6023057,0,-0.1154,0.6876,-1.6545,0.461,-0.364 +0x20dd9,CUS_0xae01,August,37,691-44-6094,Accountant,39522.28,,8,8,30.88954781,7,"Mortgage Loan, Not Specified, Personal Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Student Loan",,24,8.65,10,Bad,2024.37,28.87418906,,Yes,1483.804878,10000,High_spent_Medium_value_payments,275.342797,0,-1.4029,0.816,0.8209,1.0471,-0.2436 +0x20de5,CUS_0xb6ef,August,44,874-21-6811,Architect,35618.39,,4,4,3223,7,"Personal Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, and Mortgage Loan",19.14896067,17,9.89,7,Standard,1320.37,31.82570099,11 Years and 2 Months,Yes,163.202427,,!@9#%8,139.1789822,0,-1.1755,-0.037,0.7577,-0.1791,0.157 +0x20df1,CUS_0xa4e2,August,42,513-42-9327,Musician,125905.84,10306.15333,6,4,18,1,Not Specified,10.56182552,8,20.72,3,_,1416.79,35.01915771,18 Years and 6 Months,Yes,81.12026028,593.1075341,Low_spent_Small_value_payments,646.387539,0,1.486,-1.1109,-2.7068,-0.0905,-0.1764 +0x20dfd,CUS_0xac19,August,18,820-54-9717,Writer,42216.93,,10,5,15,7,"Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Payday Loan, and Not Specified",29.09110204,16,19.95,10,Standard,1890.92,36.78495776,14 Years and 8 Months,NM,206.0735038,,Low_spent_Medium_value_payments,185.4013257,0,-2.1775,1.1995,-1.2244,0.1634,-2.3639 +0x20e09,CUS_0xbc71,August,44,792-12-2499,Musician,119242.68,9849.89,8,3,7,1,Debt Consolidation Loan,15.297173,12.3800121,1.54,1,Standard,855.4549457,42.55598036,20 Years and 9 Months,NM,85.65308709,264.0465751,High_spent_Medium_value_payments,885.2893378,0,0.0309,-0.0124,0.2066,1.7622,-0.4902 +0x20e15,CUS_0x4681,August,24,473-15-3361,Architect,29175.03,,0,1166,1,0,,5.184335795,7,11.95,5,Good,1274.942744,26.39861576,19 Years and 8 Months,No,0,111.7163239,Low_spent_Small_value_payments,404.1210163,0,0.7435,-0.6926,-0.3284,0.7299,-1.1514 +0x20e21,CUS_0x5ba4,August,22,814-56-6314,Scientist,78810.64,6448.553333,6,5,16,2,"Student Loan, and Debt Consolidation Loan",24.21313966,20,12.03,6,Standard,54.46,30.65178783,20 Years and 8 Months,Yes,98.47957095,265.313413,High_spent_Small_value_payments,541.0623494,0,-0.4196,-1.0795,-0.2334,-1.1181,-0.1792 +0x20e2d,CUS_0x7cce,August,19,943-72-7708,Teacher,29094.06,2303.505,9,10,25,4,"Not Specified, Home Equity Loan, Student Loan, and Student Loan",,20.12266118,9.45,13,Standard,1739.258994,32.45452478,14 Years and 4 Months,Yes,49.73700006,,High_spent_Small_value_payments,373.3086286,0,-1.6656,0.1854,-1.9823,0.6293,-0.4462 +0x20e39,CUS_0x33eb,August,35,584-17-2854,_______,20674.5,1447.875,7,8,31,5,"Debt Consolidation Loan, Not Specified, Auto Loan, Auto Loan, and Home Equity Loan",,21,23.05,9,Bad,2827.23,23.82753824,14 Years and 0 Months,Yes,52.39284992,43.70781321,Low_spent_Large_value_payments,318.6868369,0,0.1998,-0.2829,0.8286,-0.968,0.1198 +0x20e45,CUS_0x783b,August,49,024-41-2966,Teacher,21537.99,1530.8325,5,5,15,0,,8.952612782,9,11.85,4,Standard,535.8649106,24.99821073,17 Years and 2 Months,No,0,58.40202441,High_spent_Medium_value_payments,350.4551769,0,-0.735,0.785,1.2378,0.3969,-0.7233 +0x20e51,CUS_0x85da,August,42,839-44-4102,_______,77751.8,6515.316667,10,10,19,5,"Personal Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",43.1370413,25.1757908,10.12,8,Bad,2771.334397,36.25093952,20 Years and 5 Months,Yes,320.6438681,226.7796537,High_spent_Medium_value_payments,354.1081449,0,-0.122,-0.5144,-0.2248,-0.4934,0.2652 +0x20e5d,CUS_0x7a56,August,45,882-19-9462,Manager,38430.94,,7,6,25.06745738,7,"Student Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Personal Loan, and Auto Loan",37.13676462,25.52333352,27.7,13,Bad,5780.003711,31.48709473,,Yes,142.8111524,244.1970778,Low_spent_Small_value_payments,204.2293152,0,-0.945,0.0688,-0.3742,-1.312,1.8292 +0x20e69,CUS_0xa772,August,38,127-02-2110,Entrepreneur,56451.8,4813.316667,4,6,7,463,"Student Loan, Student Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Student Loan, and Not Specified",,18,12.47,7,Standard,1210.96,35.20410984,,Yes,190.6457617,,Low_spent_Small_value_payments,221.6267562,0,0.3268,0.4286,-0.5679,1.3268,0.5554 +0x20e75,CUS_0x2596,August,19,174-34-6415,Lawyer,19886.07,,8,6,5,2,"Debt Consolidation Loan, and Student Loan",19.55889529,12.80161852,14.65,5,Standard,1253.3018,30.31765297,17 Years and 0 Months,Yes,29.60531841,50.83236077,High_spent_Small_value_payments,365.9795708,0,-0.1288,-1.9902,0.9277,0.5476,-1.1411 +0x20e81,CUS_0x56f5,August,27,300-96-8465,Lawyer,41848.26,3578.355,8,7,11,1,Personal Loan,21.68790173,17,5.61,2,Standard,616.98,23.21187746,32 Years and 11 Months,No,31.72574557,,High_spent_Small_value_payments,431.9859727,0,-1.183,-0.6964,-0.8234,0.9976,-0.864 +0x20e8d,CUS_0x61f7,August,54,478-96-2156,Architect,36920.36,,0,6,3,0,,0,1,11.94,5,Good,881,26.24767701,27 Years and 4 Months,No,0,73.44758723,High_spent_Large_value_payments,478.5220794,0,-1.3818,-0.3829,-0.8619,-0.637,0.3484 +0x20e99,CUS_0x3141,August,36,884-06-5529,_______,39912.86,3498.071667,3,4,17,6,"Auto Loan, Auto Loan, Mortgage Loan, Payday Loan, Home Equity Loan, and Not Specified",13.62685808,12,15.72,8,Standard,1734.43,38.30933465,17 Years and 0 Months,Yes,197.956347,360.0056359,Low_spent_Medium_value_payments,71.84518378,0,0.1552,-0.6398,0.2167,-0.3016,-0.9157 +0x20ea5,CUS_0x1aa4,August,46,404-72-1681,Doctor,100192.32,8171.36,8,4,4.288361749,4,"Home Equity Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",8.044658132,9,7.98,3,Standard,1111.055346,38.21335384,25 Years and 5 Months,Yes,167.4736554,559.4272652,High_spent_Large_value_payments,767.1721905,0,-0.7088,0.2806,0.6483,-0.0079,1.7828 +0x20eb1,CUS_0x3ce2,August,30,776-82-8001,Engineer,14095.93,1310.660833,10,8,34.88954781,6,"Payday Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",37.25235382,27.80938879,27.43,7,_,3205.202415,37.1288267,2 Years and 0 Months,Yes,1361.228585,23.09102034,High_spent_Medium_value_payments,302.4163964,0,0.507,0.4151,-1.0688,-1.1088,0.3101 +0x20ebd,CUS_0x1193,August,46,239-12-4495,Developer,31877.72,,2,5,20,1,Credit-Builder Loan,21.57727428,,4.46,4,Standard,886.59,28.72954071,25 Years and 3 Months,NM,21.79437525,,High_spent_Medium_value_payments,403.0142972,0,-0.8311,-1.9685,0.4015,-0.6207,0.6344 +0x20ec9,CUS_0x3d7b,August,36,601-37-2077,Entrepreneur,42756.72,3653.06,4,3,2,3,"Not Specified, Debt Consolidation Loan, and Home Equity Loan",0,1,7.67,6,Good,793.1495406,33.75606093,25 Years and 10 Months,No,72.87631764,294.9163954,Low_spent_Small_value_payments,330.9306608,0,-0.4711,-1.5213,0.3941,0.7552,-0.3267 +0x20ed5,CUS_0x557,August,20,767-97-7844,Musician,24293.22,,4,7,13.28836175,2,"Not Specified, Mortgage Loan, and Auto Loan",,16,11.66,2,Standard,62.26,33.63084912,21 Years and 9 Months,No,156.653146,526.7452627,Low_spent_Small_value_payments,318.3964172,0,-0.6017,-0.6079,0.0289,0.3159,-0.0775 +0x20ee1,CUS_0x319d,August,35,309-93-6346,Lawyer,50520.75,4407.0625,6,5,33,5,"Not Specified, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",33.39819416,17,3.53,12,Bad,1535.02,29.35278787,8 Years and 9 Months,Yes,127.537569,157.2903606,High_spent_Medium_value_payments,405.8783204,0,0.5422,-0.3207,-0.0829,-1.0813,0.7363 +0x20eed,CUS_0x37b2,August,51,274-15-9496,Architect,20961.365,,4,1,0.288361749,2,"Student Loan, and Not Specified",8.640318763,11,12.41,3,Good,90.29765527,31.12052773,31 Years and 6 Months,No,17.52462853,485.7787567,High_spent_Medium_value_payments,362.7505441,0,-1.3603,-0.686,-0.3073,-1.1073,-2.8414 +0x20ef9,CUS_0x84c3,August,23,631-17-2729,Scientist,52797.3,,10,6,33,5,"Debt Consolidation Loan, Student Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",,20.90412723,19.9,8,Bad,2860.935597,38.49326185,6 Years and 11 Months,Yes,209.9328876,207.2264543,High_spent_Small_value_payments,278.1181581,0,-0.2567,-0.9493,-0.5472,0.4902,1.6646 +0x20f05,CUS_0x9c0d,August,18,464-44-4511,_______,144444.64,11929.05333,4,4,5.288361749,6,"Auto Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,19,17.91,5,Standard,1262.620157,38.51033098,,Yes,720.1557662,728.3251859,High_spent_Large_value_payments,437.9081506,0,1.3955,-0.26,0.5601,-0.2931,1.076 +0x20f11,CUS_0x4672,August,34,886-85-1961,Journalist,27947.05,2331.920833,8,6,9,7,"Home Equity Loan, Auto Loan, Not Specified, Payday Loan, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,16,8.84,7,Standard,172.39,40.70016712,14 Years and 6 Months,Yes,148.799066,134.499254,Low_spent_Medium_value_payments,229.8937633,0,1.6194,1.2595,0.8526,-0.3391,-0.1459 +0x20f1d,CUS_0x3c7d,August,38,469-05-2428,Engineer,135671.32,11395.94333,4,5,9.288361749,4,"Credit-Builder Loan, Mortgage Loan, Payday Loan, and Not Specified",13.62989706,,4.82,3,Good,924.3281461,29.88027154,20 Years and 10 Months,NM,305.4040662,1267.606638,High_spent_Small_value_payments,359.2595698,0,-1.8012,-0.8123,1.7464,0.8613,-1.92 +0x20f29,CUS_0x3108,August,35,788-31-6965,Engineer,98983.17,8178.323856,4,4,5,3,"Auto Loan, Student Loan, and Student Loan",21.88143733,19,18.95,7,Standard,261.5086824,33.50681971,23 Years and 10 Months,Yes,481.2425786,,High_spent_Medium_value_payments,681.4314143,0,0.2051,-1.1008,1.1872,-0.2893,0.5591 +0x20f35,CUS_0x34a8,August,30,344-78-5892,Developer,81566.25,7036.1875,7,6,12,3,"Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",12.68352688,11,6.27,2,Good,204.6219473,32.84563428,30 Years and 3 Months,No,136.2266373,196.1867972,High_spent_Large_value_payments,639.2144127,0,1.2072,-0.76,0.762,-0.41,0.8853 +0x20f41,CUS_0xb4e2,August,33,234-00-2959,_______,36029.25,,3,6,12,3,"Credit-Builder Loan, Mortgage Loan, and Not Specified",,11.49640021,10.99,1,_,1035.94345,27.10085135,31 Years and 11 Months,No,83.18282267,84.27812882,High_spent_Medium_value_payments,393.6827985,0,0.2118,0.1057,0.5941,1.8875,-1.14 +0x20f4d,CUS_0x7081,August,23,653-91-2313,Doctor,58290.64,4602.553333,7,9,19,8,"Mortgage Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, Not Specified, Not Specified, Payday Loan, and Home Equity Loan",34.06477848,23,24.39,12,Bad,2818.43,27.19270752,11 Years and 5 Months,Yes,304.7445754,,Low_spent_Small_value_payments,81.95723906,0,-0.3406,-0.3975,-0.2811,1.1488,-1.1992 +0x20f59,CUS_0x8f37,August,23,779-74-6107,Architect,18014.97,,8,4,4,1,Mortgage Loan,,18,8.34,6,Standard,360.96,31.78982669,20 Years and 8 Months,No,52709,,Low_spent_Medium_value_payments,264.5119845,0,-0.017,-2.0522,-1.0634,-0.5275,-0.1345 +0x20f65,CUS_0x5426,August,26,862-45-6731,Entrepreneur,128163.36,10648.28,5,7,7,4,"Not Specified, Student Loan, Auto Loan, and Home Equity Loan",,3.439959651,8.79,5,Good,1645.767474,36.95741324,18 Years and 9 Months,No,281.7923011,276.7106928,High_spent_Medium_value_payments,756.3250061,0,1.3972,0.3519,-0.5181,0.1745,-0.5367 +0x20f71,CUS_0x5b70,August,61,433-49-2426,Journalist,83378.2,,4,5,642,0,,,8,2.86,1,Standard,371.6968142,29.96399943,26 Years and 5 Months,No,978.3884127,104.9090814,High_spent_Large_value_payments,814.432899,0,-0.291,-1.0385,0.9191,1.0656,-1.2521 +0x20f7d,CUS_0xa848,August,29,287-46-9447,Manager,33212.27,,6,6,7,6,"Student Loan, Student Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, and Student Loan",,17,15.02,9,_,45.65,27.7622975,20 Years and 2 Months,Yes,130.8157578,10000,!@9#%8,352.5212264,0,-1.4001,0.2816,1.3629,-0.8783,-0.4291 +0x20f89,CUS_0x28a6,August,49,695-78-8170,Writer,35207.73,3081.9775,4,7,5,2,"Auto Loan, and Debt Consolidation Loan",9.640662719,9.602287691,11.85,2,Good,947.5361171,27.45891072,25 Years and 0 Months,No,38.98416654,294.2215308,Low_spent_Small_value_payments,264.9920527,0,1.612,-0.3679,1.5057,0.7021,0.9917 +0x20f95,CUS_0xfb8,August,44,989-30-9881,Architect,34636.64,,3,1,9,4,"Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",8.508620273,10,18.8,4,_,580.4504371,26.50211007,24 Years and 0 Months,No,347.1647146,68.30643764,High_spent_Large_value_payments,389.7322135,0,0.1311,0.9279,-1.2269,-0.9122,1.0804 +0x20fa1,CUS_0x85fa,August,23,967-66-5763,Musician,83126.24,6679.483925,9,8,34,4,"Student Loan, Student Loan, Home Equity Loan, and Not Specified",,,10.56,7,Bad,2331.17,33.63713033,9 Years and 9 Months,Yes,487.1262121,180.1303629,High_spent_Medium_value_payments,556.1648332,0,-0.8424,2.5016,-0.1899,-1.2022,2.3988 +0x20fad,CUS_0x2509,August,18,026-87-1097,Entrepreneur,37777.92,3055.16,3,4,20,5,"Home Equity Loan, Personal Loan, Mortgage Loan, Student Loan, and Payday Loan",38.39871417,22.84948141,18.37,9,_,1449.237055,24.20114507,9 Years and 0 Months,Yes,100.4279498,102.7563353,High_spent_Medium_value_payments,352.3317149,0,1.8101,0.5079,0.2991,0.4647,-0.2128 +0x20fb9,CUS_0x4d66,August,45,178-31-0860,Developer,27292.5,2254.375,5,6,9.067457376,4,"Home Equity Loan, Not Specified, Personal Loan, and Home Equity Loan",,16,18.56,4,Standard,1657.590954,37.89477441,6 Years and 3 Months,Yes,85.04387659,178.5258638,Low_spent_Small_value_payments,225.1474717,0,0.6927,-0.5094,-0.513,1.2017,0.8547 +0x20fc5,CUS_0xa1b1,August,41,081-44-2748,Architect,84373.32,7035.11,2,5,2,2,"Mortgage Loan, and Student Loan",0,0,3.82,0,Good,1390.19,37.80333342,23 Years and 2 Months,No,93.23117811,448.1127055,High_spent_Small_value_payments,422.1671164,0,0.5719,0.5128,-0.6714,0.9345,0.525 +0x20fd1,CUS_0x8ee1,August,53,640-09-8819,Journalist,59999.02,5065.918333,4,4,11,497,"Personal Loan, and Home Equity Loan",,12,4.9,0,Good,543.44,39.75559842,32 Years and 5 Months,No,84.24989669,149.6855836,Low_spent_Medium_value_payments,552.656353,0,-0.5446,0.4358,-1.0655,0.2607,-1.2582 +0x20fdd,CUS_0x2ad6,August,18,271-93-4540,Scientist,7127.455,,10,5,34,6,"Payday Loan, Payday Loan, Credit-Builder Loan, Personal Loan, Personal Loan, and Mortgage Loan",33.28954421,25,26.31,9,Bad,2698.32,33.33360884,8 Years and 5 Months,Yes,35.09429836,67.38867264,!@9#%8,266.0124873,0,0.5099,-0.1923,-0.3287,0.2544,0.1195 +0x20fe9,CUS_0xa223,August,29,330-17-7373,_______,28253.33,,1,6,5,4,"Student Loan, Auto Loan, Payday Loan, and Home Equity Loan",7.55481553,9,9,6,_,964.2729575,25.35127876,25 Years and 11 Months,No,93.60803133,139.4557781,Low_spent_Small_value_payments,297.6058824,0,-0.3233,1.7192,0.8171,-0.4523,1.1616 +0x20ff5,CUS_0xaee8,August,24,836-22-0493,Mechanic,19268.3,1652.691667,4,5,16,4,"Mortgage Loan, Not Specified, Auto Loan, and Credit-Builder Loan",,22.00644316,17,6,_,2456.786947,38.64647189,17 Years and 10 Months,Yes,49.43098075,,Low_spent_Small_value_payments,208.2459673,0,-0.9088,-0.6701,-1.4219,1.854,0.2388 +0x21001,CUS_0x53cc,August,26,773-37-9475,Accountant,147327.8,12351.31667,5,5,7,1,Not Specified,,18,8.47,11,Standard,738.15,36.89767186,18 Years and 9 Months,NM,73.57466389,,High_spent_Medium_value_payments,1038.464822,0,-1.4557,0.723,1.3382,0.7282,0.2994 +0x2100d,CUS_0x8c79,August,34,246-50-5176,Scientist,47732.88,3821.74,6,7,26,2,"Payday Loan, and Personal Loan",11.32473739,11.37502445,10.25,9,Standard,1712.618737,31.964098,13 Years and 8 Months,Yes,46.47119698,82.91873004,High_spent_Large_value_payments,492.784073,0,0.9392,0.4063,1.3431,-0.0552,1.1458 +0x21019,CUS_0x75fd,August,28,359-56-5225,Doctor,13180.99,936.4158333,5,4,12,4,"Not Specified, Payday Loan, Auto Loan, and Personal Loan",16.52165625,15,9.94,6,_,1271.805051,25.39538198,23 Years and 11 Months,No,37.42957476,40.33188813,High_spent_Medium_value_payments,270.7952364,0,1.2781,-1.3714,-1.6904,-1.128,-0.4279 +0x21025,CUS_0x8f19,August,33,870-86-3555,Architect,69981.32,,6,10,27.88954781,6,"Not Specified, Home Equity Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",36.70141495,17.71757315,29.04,13,_,3308.365698,24.35279513,6 Years and 2 Months,Yes,1579.720115,459.9986147,Low_spent_Medium_value_payments,143.1288552,0,-0.3984,-0.3978,2.1215,-0.3211,0.3709 +0x21031,CUS_0x25ce,August,39,990-90-7626,Teacher,31253.18,,1,3,4.288361749,2,"Home Equity Loan, Personal Loan, and Payday Loan",,10,5.83,1,Good,311.0262558,35.45267377,17 Years and 4 Months,No,64.54532912,,High_spent_Small_value_payments,351.3279759,0,-1.3293,-0.2864,-0.456,0.71,-1.9613 +0x2103d,CUS_0xb6a6,August,18,127-94-0685,Manager,33735.42,,7,5,25.06745738,7,"Debt Consolidation Loan, Payday Loan, Payday Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Credit-Builder Loan",40.17651087,25,19.18,6,Bad,2940.610954,33.21526182,9 Years and 6 Months,NM,175.4377534,27.00413258,High_spent_Large_value_payments,264.7663261,0,0.4829,-0.1892,2.7473,0.3165,0.8098 +0x21049,CUS_0x3b21,August,35,435-98-9435,Entrepreneur,8312.085,,8,5,18,2,"Not Specified, and Not Specified",,11,18.07,14,Standard,1945.67,27.65670245,6 Years and 10 Months,Yes,10.73435757,35.69166049,Low_spent_Large_value_payments,280.4413569,0,-1.0364,-0.1011,-0.5175,-0.5106,1.8858 +0x21055,CUS_0x4242,August,52,820-53-8739,Writer,18458.05,,7,7,6,3,"Auto Loan, Debt Consolidation Loan, and Payday Loan",,11,16.58,4,_,705.4,39.25786315,27 Years and 8 Months,No,42.43928512,89.30505229,Low_spent_Large_value_payments,267.0727459,0,-1.3163,-0.531,0.7405,1.564,0.1785 +0x21061,CUS_0x799e,August,53,890-44-4311,Lawyer,22385.16,,8,7,17,1,Student Loan,16.04305943,10,0.74,,Standard,234.62,36.39996902,16 Years and 3 Months,No,16.41417281,250.9129197,Low_spent_Small_value_payments,230.4159075,0,0.0888,0.5229,1.8658,0.9651,0.1693 +0x2106d,CUS_0x1810,August,36,759-35-3427,Developer,57651.98,4702.979023,4,5,6.288361749,2,"Mortgage Loan, Mortgage Loan, and Not Specified",0,3,6.17,3,Good,526.9393425,25.0022198,,No,500.1088093,729.9280163,!@9#%8,366.4140925,0,-2.4742,-0.9954,0.6801,0.7324,1.5287 +0x21079,CUS_0x3bf5,August,24,606-08-6851,Journalist,96815.91,,2,5,0.288361749,0,,4.657845314,6,15.4,3,Good,1257.64,31.86073072,,No,0,1090.716471,Low_spent_Small_value_payments,425.0202398,0,-0.828,1.6604,-1.6849,-0.0093,-1.6664 +0x21085,CUS_0x89b9,August,27,398-68-5126,Journalist,37085.98,,7,5,9,6,"Not Specified, Payday Loan, Home Equity Loan, Auto Loan, Auto Loan, and Payday Loan",17.87755192,16,17.97,6,Standard,1224.04,34.73750546,8 Years and 5 Months,Yes,109.8017497,131.0722983,Low_spent_Small_value_payments,371.1757853,0,0.3495,-0.6528,0.2865,0.2864,1.0574 +0x21091,CUS_0x526d,August,18,#F%$D@*&8,Doctor,131737.72,11196.14333,4,5,8,0,,7.915993759,9,16.82,5,_,1299.86,37.09889642,26 Years and 8 Months,Yes,0,392.5209166,Low_spent_Medium_value_payments,1007.093417,0,1.4144,0.8544,-0.0725,0.1895,0.4063 +0x2109d,CUS_0x2ec6,August,27,610-32-8187,Mechanic,57582.42,4508.535,6,10,25.88954781,9,"Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Payday Loan",31.42531783,18,29.52,8,Bad,3805.38,31.14283999,12 Years and 2 Months,Yes,1754.762187,,High_spent_Large_value_payments,138.2448492,0,-0.1571,1.3046,-0.0102,0.332,0.6469 +0x210a9,CUS_0xa525,August,53,589-22-6942,Musician,63407.82,5052.985,1,3,3.288361749,4,"Debt Consolidation Loan, Auto Loan, Auto Loan, and Student Loan",0,2,6.32,4,Good,768.25,28.41427232,19 Years and 8 Months,No,181.6393924,618.4812761,Low_spent_Small_value_payments,415.1152925,0,0.8406,1.1146,-0.6835,1.1198,-0.6687 +0x210b5,CUS_0x2611,August,37,976-05-5978,Architect,17919.005,1464.250417,1,5,7.288361749,0,,0,2,2.44,4,Good,69.03,29.18898086,19 Years and 10 Months,No,0,617.4914491,!@9#%8,238.8710536,0,-0.8663,-0.3899,0.1241,0.7375,-0.5013 +0x210c1,CUS_0xa352,August,27,017-80-4174,Mechanic,10437.765,,10,6,17.06745738,5,"Debt Consolidation Loan, Not Specified, Mortgage Loan, Payday Loan, and Credit-Builder Loan",,22.63362273,3.67,8,Bad,2319.510845,26.0218821,18 Years and 5 Months,Yes,31.38654772,63.12602293,Low_spent_Medium_value_payments,231.7485164,0,0.7506,0.2743,-0.3066,-0.417,0.0191 +0x210cd,CUS_0x1aeb,August,19,256-19-0938,Teacher,38253.64,2997.712061,1,3,2,3,"Debt Consolidation Loan, Student Loan, and Personal Loan",,0,9.29,1,_,738.2343972,28.54922084,21 Years and 6 Months,No,395.7820368,53.74075077,High_spent_Large_value_payments,470.4955363,0,0.9603,0.6123,0.7835,-0.4838,0.548 +0x210d9,CUS_0x8681,August,28,539-50-5278,Lawyer,38791.68,3265.64,6,9,30.88954781,9,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",32.45431061,23,3.44,13,Bad,3772.55,33.76539791,,Yes,1521.144747,73.12318739,!@9#%8,277.9659839,0,0.1909,0.1303,-0.5502,0.0836,0.4074 +0x210e5,CUS_0x4f16,August,41,978-05-7107,Accountant,23692.52,,5,3,948,0,,18.94879148,13,10.69,5,_,915.87,36.70712911,31 Years and 3 Months,Yes,0,276.8482626,Low_spent_Small_value_payments,223.5894041,0,-2.6004,-0.2548,2.1805,-1.2232,2.5762 +0x210f1,CUS_0x87b5,August,36,935-27-0277,Media_Manager,9648.82,1092.068333,4,7,5469,6,"Student Loan, Mortgage Loan, Debt Consolidation Loan, Student Loan, Credit-Builder Loan, and Payday Loan",18.50133849,,8.94,5,Standard,1067.95,28.66741253,17 Years and 4 Months,Yes,29.06014322,53.67405012,Low_spent_Large_value_payments,296.47264,0,-0.9775,1.4855,-1.3583,0.9634,1.7526 +0x210fd,CUS_0x1999,August,32,447-57-2543,Engineer,39020.72,3180.726667,3,3,19,1,Home Equity Loan,19.38780806,15,1.75,3,Standard,1213.43,31.00501964,20 Years and 10 Months,Yes,8392,,Low_spent_Small_value_payments,172.756628,0,-1.5771,1.3485,-0.4079,1.238,0.3387 +0x21109,CUS_0x65b1,August,25,798-29-5581,Musician,20623.16,,6,8,20.88954781,9,"Mortgage Loan, Student Loan, Student Loan, Mortgage Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, and Payday Loan",,27.11946489,2.41,11,Bad,5421.416421,26.28779388,13 Years and 0 Months,Yes,1432.464107,117.8408246,Low_spent_Medium_value_payments,194.6246532,0,-1.4299,0.9753,0.0171,0.3715,-0.5095 +0x21115,CUS_0x878,August,24,467-94-0696,Engineer,39130.84,3421.903333,0,4,5,4,"Mortgage Loan, Home Equity Loan, Personal Loan, and Credit-Builder Loan",,2,0.77,2,Good,203.4266676,36.67284336,25 Years and 10 Months,No,88.32887502,219.5023003,High_spent_Small_value_payments,325.6990738,0,-0.2555,-0.0269,-0.9155,-0.6092,-1.9151 +0x21121,CUS_0x107c,August,18,712-17-7369,Journalist,49718.55,4179.2125,7,10,27,6,"Payday Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Auto Loan, and Auto Loan",24.55398877,17,10.5,7,Bad,1920.25,30.10963834,14 Years and 0 Months,Yes,231.9567806,430.8839387,Low_spent_Small_value_payments,45.08053062,0,-0.3071,0.3238,1.0385,0.0991,-1.6634 +0x2112d,CUS_0x442f,August,28,438-91-3759,Musician,16702.25,1640.854167,10,8,23,5,"Mortgage Loan, Auto Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",35.94528152,18,1.61,9,Bad,4536.64,24.67865034,7 Years and 4 Months,Yes,57.47093311,89.11271568,High_spent_Small_value_payments,277.5017679,0,-0.2601,1.9359,0.7183,0.3986,0.431 +0x21139,CUS_0x589a,August,45,248-22-7032,Teacher,28435.76,,4,10,15.88954781,7,"Personal Loan, Auto Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",,17,11.5,10,_,1962.25,26.29133747,8 Years and 2 Months,Yes,1440.203637,,High_spent_Medium_value_payments,273.0522136,0,1.2164,-1.9018,1.0646,-2.2153,-0.9029 +0x21145,CUS_0xaf0d,August,19,370-40-4991,Manager,87204.48,,6,6,14.28836175,2,"Auto Loan, Home Equity Loan, and Personal Loan",,12,18.08,5,Standard,681.4630291,32.13798549,31 Years and 8 Months,Yes,208.8985776,541.0309606,High_spent_Large_value_payments,673.7998938,0,0.3627,-0.3947,-0.1258,1.7352,-0.6771 +0x21151,CUS_0x24d4,August,23,258-43-9524,_______,41797.94,,1,191,3,3,"Not Specified, Payday Loan, and Payday Loan",0,2,5.36,9,Good,1119.021052,25.49100896,30 Years and 9 Months,No,73.43045136,252.9329839,Low_spent_Small_value_payments,360.7241265,0,0.7181,0.0461,0.2912,-2.2031,-1.8337 +0x2115d,CUS_0x4937,August,42,706-41-2399,Architect,112308.39,9642.0325,2,5,9,2,"Payday Loan, and Auto Loan",3.601958761,6,3.04,1,Good,666.31,30.71564098,16 Years and 11 Months,No,128.6947907,179.9097616,High_spent_Large_value_payments,895.5986977,0,0.23,-0.6161,-1.2872,-0.6346,1.3014 +0x21169,CUS_0xe75,August,48,630-86-9475,Manager,35820.62,,0,6,8,4,"Student Loan, Not Specified, Student Loan, and Personal Loan",,7,5.95,7,Good,731.26,25.43850786,20 Years and 4 Months,No,150.0090203,241.0456565,Low_spent_Large_value_payments,216.778419,0,1.0168,-2.0378,0.6394,0.0501,0.5863 +0x21175,CUS_0x1852,August,39,350-44-7688,Architect,35846.52,3014.21,4,3,19,3,"Student Loan, Mortgage Loan, and Not Specified",33.98581053,22.76029987,17.92,8,Standard,363.6102568,26.20718566,20 Years and 3 Months,Yes,84.34603364,86.73583605,High_spent_Small_value_payments,390.3391303,0,0.0313,-1.442,-0.0458,-0.2105,-1.1833 +0x21181,CUS_0x6bd,August,80,679-22-8597,Engineer,20981.46,,854,5,6,4,"Not Specified, Credit-Builder Loan, Home Equity Loan, and Debt Consolidation Loan",,6,15.02,2,_,730.8767036,26.0188332,18 Years and 0 Months,Yes,56745,,Low_spent_Large_value_payments,276.3279665,0,1.7305,-0.7511,0.5165,1.1641,-0.2825 +0x2118d,CUS_0xb2b6,August,30,718-97-6164,Engineer,84687.48,7284.29,1,6,7,2,"Home Equity Loan, and Not Specified",2.13305017,5.883009307,3.18,2,Good,350.4143702,37.65981654,21 Years and 3 Months,No,86.47793019,172.2081469,Low_spent_Large_value_payments,739.7429229,0,-0.0516,0.5,-0.4444,1.1331,0.053 +0x21199,CUS_0x988c,August,31,083-64-0011,Writer,29101.85,,6,3,5,0,,12.33837059,9,4.77,9,Standard,1465.87,24.15034752,24 Years and 0 Months,No,0,45.26586083,High_spent_Medium_value_payments,453.2495558,0,-1.2101,-0.0153,-0.2207,-0.7807,0.1449 +0x211a5,CUS_0x9f8d,August,35,363-98-4300,Writer,20120.38,1410.698333,8,6,27.06745738,7,"Auto Loan, Payday Loan, Student Loan, Credit-Builder Loan, Personal Loan, Personal Loan, and Not Specified",23.52956322,16,8.87,9,Bad,2958.320954,25.64253509,2 Years and 10 Months,Yes,62.49858275,39.05202978,!@9#%8,292.7989328,0,1.7099,0.3638,-1.0056,0.8189,1.062 +0x211b1,CUS_0x1136,August,26,894-06-9872,Entrepreneur,37360.94,,10,5,33,5,"Home Equity Loan, Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",28.34065311,14.54080714,,11,Standard,1388.032472,36.19634556,11 Years and 10 Months,Yes,93.34174657,254.4781039,Low_spent_Small_value_payments,228.6213162,0,1.6112,-0.2183,-0.2312,-0.8527,-0.9751 +0x211bd,CUS_0x5b25,August,30,356-13-9836,Manager,19280.89,,6,4,12,6,"Payday Loan, Personal Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Auto Loan",19.57622906,,9.69,6,Standard,967.9706005,26.41402672,11 Years and 0 Months,Yes,52.18972873,,!@9#%8,242.4207922,0,0.0486,-0.8178,0.7008,2.4123,0.8095 +0x211c9,CUS_0x2c98,August,30,532-22-6497,Teacher,19936.4,1404.366667,4,6,6,0,,21.75650034,17,7.62,5,Standard,1342.68,30.16057614,32 Years and 8 Months,No,0,56.327598,!@9#%8,374.1090687,0,-0.0481,0.6345,-0.5864,-1.2455,-0.4877 +0x211d5,CUS_0x1ed6,August,25,073-04-2832,Musician,127706.55,10785.2125,2,5,5.288361749,0,,0.284373788,5,9.92,2,_,709.9720483,31.9867788,20 Years and 8 Months,No,0,1375.303825,Low_spent_Large_value_payments,502.7517509,0,0.6213,0.0056,0.283,0.1302,-0.867 +0x211e1,CUS_0x9fd7,August,37,364-99-7073,Developer,18507.35,1653.776976,10,6,34.06745738,8,"Payday Loan, Mortgage Loan, Student Loan, Auto Loan, Personal Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",,,21.65,13,_,4418.280954,38.70203051,11 Years and 4 Months,Yes,181.9361894,,High_spent_Medium_value_payments,315.0752212,0,-0.2112,1.6967,-0.5557,1.1931,0.3449 +0x211ed,CUS_0xa85d,August,20,647-63-8564,Media_Manager,34243.28,,8,10,18.88954781,7,"Not Specified, Student Loan, Auto Loan, Payday Loan, Payday Loan, Student Loan, and Credit-Builder Loan",,26.5436555,16.92,11,Bad,1568.186695,30.36987675,5 Years and 9 Months,NM,1518.583234,340.844453,Low_spent_Small_value_payments,0,0,0.1614,0.6394,0.0705,0.7884,0.2004 +0x211f9,CUS_0x7547,August,41,777-07-9801,Teacher,15931.72,,6,8,32.88954781,9,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, Not Specified, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",,14.88886911,6.28,10,Bad,1851.577407,39.03956245,,Yes,1416.88509,,Low_spent_Small_value_payments,254.7889787,0,-0.3343,-0.7629,0.1544,0.2344,-0.588 +0x21205,CUS_0x50dd,August,32,#F%$D@*&8,Lawyer,41293.1,,5,4,13,2,"Payday Loan, and Personal Loan",,21,8.78,9,_,1242.031977,30.95370855,19 Years and 0 Months,Yes,47.71436507,109.5039182,High_spent_Medium_value_payments,478.1060436,0,0.9302,-0.599,-0.6455,1.5251,0.4546 +0x21211,CUS_0x771d,August,18,323-10-7447,Engineer,36849.5,,8,6,26.06745738,9,"Payday Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, Not Specified, Mortgage Loan, and Personal Loan",,22,3.88,10,Bad,2550.520954,40.08897722,19 Years and 10 Months,NM,174.5290824,267.9409078,Low_spent_Large_value_payments,103.7888885,0,0.251,0.3374,0.2909,-0.3883,-1.0785 +0x2121d,CUS_0x44cb,August,51,427-62-5278,Musician,53543.38,4622.948333,5,7,15,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Student Loan",8.349382408,5,6.18,3,Standard,112.36,31.5032486,19 Years and 0 Months,No,127.7907003,,!@9#%8,202.502221,0,-0.9548,1.8851,-0.9119,-0.9152,-1.1866 +0x21229,CUS_0x8c27,August,18,422-31-2327,Accountant,63965.84,5394.486667,8,7,19.06745738,7,"Auto Loan, Home Equity Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, Payday Loan, and Credit-Builder Loan",44.93521921,21.8125258,27.97,14,_,4057.078991,34.33994275,0 Years and 11 Months,Yes,299.6086222,498.7544904,Low_spent_Large_value_payments,0,0,1.1464,1.1038,0.5076,1.254,0.0563 +0x21235,CUS_0x4057,August,53,761-54-1901,Architect,39242.1,3229.175,4,2,4,100,,15.1067968,,1.01,3,Good,709.7093307,35.46236453,22 Years and 9 Months,No,0,309.8823735,Low_spent_Small_value_payments,337.3671802,0,-2.6469,-0.3882,-1.3385,0.2746,-1.5174 +0x21241,CUS_0x7c2,August,45,460-71-7774,_______,36217.7,,5,7,18,0,,17.91550406,15,10.27,11,Standard,793.26,38.95419472,31 Years and 3 Months,Yes,0,108.3143467,High_spent_Small_value_payments,475.39982,0,2.9519,0.2304,-1.2717,0.3225,-1.3069 +0x2124d,CUS_0x45ef,August,28,687-19-9885,Journalist,34798.03,,0,5,12,1,Debt Consolidation Loan,8.864157878,10,8.72,1,Good,1214.29,29.51121704,31 Years and 8 Months,No,24.33806067,169.0174663,Low_spent_Medium_value_payments,405.7280564,0,1.3384,1.3966,-1.3655,0.1509,-0.4082 +0x21259,CUS_0xad3d,August,41,160-01-3561,_______,35824.65,3271.3875,7,4,15,3,"Student Loan, Debt Consolidation Loan, and Mortgage Loan",,19,10.68,1136,Standard,754.02,28.9672244,27 Years and 8 Months,No,58.7977139,76.87342428,High_spent_Small_value_payments,451.4676118,0,0.1805,0.5823,-0.7836,0.7978,0.2601 +0x21265,CUS_0xc1f,August,23,161-09-0372,Architect,9000.425,703.0354167,7,4,32.06745738,3,"Debt Consolidation Loan, Auto Loan, and Personal Loan",,9.656991835,18.78,7,Standard,2123.92444,38.40103446,14 Years and 11 Months,Yes,11.68217794,55.99459156,Low_spent_Small_value_payments,265.9064842,0,-0.9702,0.5495,-0.4038,0.909,-0.1391 +0x21271,CUS_0x8ca,August,29,450-99-9426,Musician,35349.2,,6,7,20,3,"Home Equity Loan, Student Loan, and Home Equity Loan",14.73766689,11,10.57,2,Standard,551.36,30.10026059,16 Years and 5 Months,No,78.79827419,305.9842567,Low_spent_Small_value_payments,199.2941357,0,0.8002,1.5059,-1.1868,0.0713,0.8597 +0x2127d,CUS_0x2998,August,41,586-59-6353,Lawyer,20889.65,1710.804167,6,10,19,5,"Auto Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",36.98144237,21,28.05,13,Bad,4323.55,33.41328591,5 Years and 3 Months,Yes,43.67646306,146.5479587,Low_spent_Small_value_payments,270.8559949,0,0.3664,1.2718,0.0184,-0.4936,-0.5133 +0x21289,CUS_0xb8b9,August,28,369-60-3838,Doctor,28896.84,2151.07,7,7,30,100,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Auto Loan, and Student Loan",38.75425596,20.52348174,12.25,10,Standard,2384.886235,23.99862308,14 Years and 6 Months,NM,93.79526934,77.5867077,Low_spent_Medium_value_payments,323.725023,0,0.1299,-0.5659,0.4279,2.0648,0.93 +0x21295,CUS_0xa6b,August,33,318-22-9971,Entrepreneur,86274.99,6929.5825,6,7,11.28836175,2,"Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",13.53413406,12,17.33,0,Standard,138.25,38.48870279,20 Years and 6 Months,Yes,167.0843957,619.8296305,Low_spent_Medium_value_payments,605.9816848,0,0.5212,-0.6833,-0.0111,0.2536,1.1102 +0x212a1,CUS_0x8376,August,43,509-93-1354,Musician,32446.8,2722.9,8,6,11,1,Mortgage Loan,15.55155422,11,5.11,3,Standard,343.6596372,38.73464816,33 Years and 4 Months,No,18.11580499,176.8703657,High_spent_Small_value_payments,360.6989413,0,-0.4784,2.0956,-0.5939,2.1212,-0.1655 +0x212ad,CUS_0x2a86,August,36,154-26-2987,Accountant,50817.9,,3,6,5774,2,"Home Equity Loan, and Student Loan",21.89443959,17.43758293,17.05,12,Standard,2585.189313,39.86771535,8 Years and 9 Months,NM,47.53723211,79.41901901,High_spent_Medium_value_payments,576.2262489,0,0.9275,0.72,-0.6098,0.2344,-0.2399 +0x212b9,CUS_0x2bd2,August,49,629-39-0007,Manager,38155.64,2933.636667,3,4,4.288361749,0,Home Equity Loan,0,1.219458425,1.63,6,Good,147.8454092,33.5789938,33 Years and 8 Months,No,23.21341948,690.7161932,Low_spent_Small_value_payments,289.371515,0,-0.26,0.9326,-0.1076,0.5162,-1.0928 +0x212c5,CUS_0x3a4d,August,18,075-17-7733,_______,37006.6,3378.883333,7,10,3049.067457,9,"Home Equity Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Auto Loan, Mortgage Loan, Auto Loan, Student Loan, and Payday Loan",27.50627583,16,20.11,12,Bad,3609.660954,40.44243697,8 Years and 4 Months,Yes,245.8399552,,Low_spent_Medium_value_payments,137.8573444,0,0.5129,0.5641,-0.7647,-1.1784,-0.061 +0x212d1,CUS_0x3276,August,42,016-61-1825,Doctor,47370.64,,5,6,14,1,Not Specified,27.33854244,20,6.44,0,Standard,1397.52,27.27253097,32 Years and 0 Months,No,21.7163967,254.9034934,Low_spent_Medium_value_payments,371.0354432,0,0.0293,1.5289,0.58,1.2688,-1.5591 +0x212dd,CUS_0x88b8,August,54,#F%$D@*&8,Teacher,72363.72,6124.31,5,3,8,3,"Credit-Builder Loan, Mortgage Loan, and Payday Loan",0,3,12.85,7,Good,364.45,35.98073379,20 Years and 5 Months,No,137.6729658,10000,!@9#%8,499.9408951,0,0.5059,1.0948,-2.0076,0.2888,1.3306 +0x212e9,CUS_0x1a59,August,19,531-57-4050,Journalist,69224.94,,4,4,2,4,"Debt Consolidation Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",3.628908392,4,4.21,0,_,317.74,27.37806604,26 Years and 0 Months,No,227.9825334,271.2855387,Low_spent_Large_value_payments,318.906428,0,0.4978,-2.1753,0.2888,0.3748,-0.8902 +0x212f5,CUS_0x4922,August,37,523-78-6733,Teacher,132552.16,11094.01333,3,180,10.28836175,0,Debt Consolidation Loan,2.569933673,6,5.32,6,Good,706.5407546,34.74602141,20 Years and 10 Months,No,77.07980746,609.7138316,High_spent_Medium_value_payments,1111.879,0,-0.5514,0.3732,1.8919,-0.4543,0.5753 +0x21301,CUS_0x7eb6,August,22,533-78-8189,Teacher,16627.15,,9,6,4760.067457,8,"Credit-Builder Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Payday Loan, Auto Loan, Auto Loan, and Debt Consolidation Loan",23.7681408,15,4.39,14,_,2831.120954,31.84488436,16 Years and 9 Months,Yes,92.23669596,,Low_spent_Medium_value_payments,213.6314159,0,-1.3303,-0.8748,-0.6239,0.8755,-0.3769 +0x2130d,CUS_0x3eab,August,36,212-10-2855,Media_Manager,165799.4,,0,3,1.288361749,0,Home Equity Loan,9.063734765,9,7.08,1,Good,422.8447682,39.02115841,23 Years and 2 Months,No,81.55242269,11443.96613,High_spent_Large_value_payments,1239.562122,0,0.1401,-1.2319,-0.9488,-0.5517,0.8077 +0x21319,CUS_0x9ce2,August,40,578-60-2730,Doctor,83491.35,,8,7,16,0,,,9,13.33,6,Standard,921.4207131,38.84182617,12 Years and 3 Months,Yes,0,635.9264823,Low_spent_Large_value_payments,424.9816451,0,-0.0823,0.5891,-0.3882,0.7496,-0.997 +0x21325,CUS_0x7cf0,August,42,439-65-0122,Lawyer,41468.9,3173.741667,1596,8,27.95700519,8,"Auto Loan, Debt Consolidation Loan, Auto Loan, Not Specified, Home Equity Loan, Payday Loan, Not Specified, and Payday Loan",,28.40255962,22.08,16,Bad,4240.665469,33.6048947,1 Years and 4 Months,NM,1596.706712,37.24523414,High_spent_Medium_value_payments,212.3718515,0,1.595,-0.3505,1.215,-0.3806,-0.6969 +0x21331,CUS_0x3660,August,39,396-24-2492,_______,77326.84,,4,4,9,1,Not Specified,0,0,0.69,3,Good,435.6394633,24.62893025,23 Years and 9 Months,No,37.30993517,,High_spent_Small_value_payments,573.9806805,0,-0.0793,0.9903,0.5012,1.4965,0.3833 +0x2133d,CUS_0x6a29,August,50,224-33-4622,Mechanic,67551.57,5887.2975,5,3,20,4,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Student Loan",22.80750907,17,9.61,8,Standard,268.08,29.85910507,25 Years and 8 Months,Yes,143.4185524,127.2424201,!@9#%8,578.0687776,0,0.8631,0.7256,0.7433,0.7112,-0.8513 +0x21349,CUS_0x13d1,August,26,689-84-3896,Musician,22020.37,,5,6,6,3,"Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",17.37174978,,5.14,9,Good,1502.270016,30.78916771,26 Years and 4 Months,No,36.59863069,208.749374,Low_spent_Small_value_payments,205.1550786,0,0.157,-1.0274,-0.9431,-1.3055,1.2885 +0x21355,CUS_0x3ace,August,30,409-44-5696,Engineer,19938.73,,7,5,19,8,"Personal Loan, Not Specified, Not Specified, Student Loan, Auto Loan, Home Equity Loan, Student Loan, and Student Loan",41.62953594,21.70776294,30.26,10,Bad,4618.128144,31.91985048,13 Years and 0 Months,Yes,111.966283,,High_spent_Small_value_payments,222.004045,0,-0.1083,-1.2171,-0.7969,0.3568,1.2463 +0x21361,CUS_0xa861,August,45,598-53-8603,Engineer,62578.92,4986.91,6,6,6,4,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",10.37209151,11,10.97,4,Standard,1045.77,28.96888867,19 Years and 6 Months,Yes,208.225952,,High_spent_Small_value_payments,241.0002037,0,-1.127,0.5159,-0.4295,0.5168,0.9627 +0x2136d,CUS_0x95f0,August,18,798-66-0089,Teacher,33662.51,,4,4,9,3,"Student Loan, Mortgage Loan, and Credit-Builder Loan",,15,8.53,12,Standard,1448.3,31.74556842,31 Years and 3 Months,Yes,76.80771063,23.150405,High_spent_Large_value_payments,440.462801,0,-1.2469,2.7834,-0.012,-0.5409,-0.6914 +0x21379,CUS_0xa3f,August,24,547-70-0531,Architect,38840.66,3442.721667,8,5,30,4,"Mortgage Loan, Student Loan, Auto Loan, and Credit-Builder Loan",53.1737592,27.11414695,3.17,10,Bad,2869.01723,35.60396046,17 Years and 2 Months,Yes,125.9916497,93.99727503,Low_spent_Large_value_payments,394.2832419,0,0.7492,-0.1852,-0.904,-0.3932,-0.5335 +0x21385,CUS_0x6692,August,22,470-06-0305,Developer,21419.85,,3,3,12,2,"Not Specified, and Debt Consolidation Loan",0,1,0.67,3,Good,307.94,22.9302197,27 Years and 11 Months,No,25.34735195,135.3865407,Low_spent_Small_value_payments,280.2648574,0,-1.5317,0.3288,0.7019,1.515,-1.505 +0x21391,CUS_0xa4d0,August,28,#F%$D@*&8,Teacher,33535.89,,4,5,7,1,Not Specified,,3,10.43,1,_,970.22,28.52072801,22 Years and 5 Months,No,18.09362441,,Low_spent_Medium_value_payments,413.7129289,0,-0.7177,-1.4277,0.1356,-0.8308,1.0077 +0x2139d,CUS_0x3d6e,August,19,#F%$D@*&8,Accountant,52591.26,4359.605,6,10,31.88954781,6,"Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Auto Loan",30.91574975,23.3596883,17.61,9,_,4413.133803,31.1996112,12 Years and 5 Months,Yes,1535.804258,130.4389378,High_spent_Medium_value_payments,325.3872231,0,1.3682,0.4201,-0.2876,0.4978,0.9171 +0x213a9,CUS_0x33f9,August,46,397-14-6010,Musician,8052.79,,8,7,25.06745738,8,"Student Loan, Not Specified, Debt Consolidation Loan, Not Specified, Auto Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",40.22084278,23,20.28,12,_,4161.270954,25.8290712,6 Years and 10 Months,Yes,29.24052455,54.74977174,Low_spent_Small_value_payments,275.3959991,0,1.4906,0.8404,-0.0467,-1.2764,-0.5132 +0x213b5,CUS_0x8a38,August,20,767-52-7945,Engineer,37045.6,,5,7,9,1,Debt Consolidation Loan,0,1,1.18,8,Good,1411.95,31.07055804,21 Years and 6 Months,No,23.98957507,126.1993056,Low_spent_Small_value_payments,421.8244526,0,1.6802,-0.5311,-0.2994,0.0606,-0.3108 +0x213c1,CUS_0xb49d,August,19,375-65-0842,Manager,40848.13,,3,3,2,2,"Debt Consolidation Loan, and Credit-Builder Loan",2.894247461,5,10.54,4,_,931.9,26.783534,19 Years and 3 Months,No,59.76031819,40.61135821,!@9#%8,474.1294069,0,-0.6407,0.4108,0.5146,-0.4892,-0.2626 +0x213cd,CUS_0x1993,August,19,225-64-5116,Teacher,87795.78,7325.315,0,6,7.288361749,0,,10.92936696,11,2.59,2,Good,448.95,33.57777159,29 Years and 11 Months,No,0,542.1990213,High_spent_Medium_value_payments,860.2699397,0,2.7072,0.5105,-1.0662,0.5797,-0.5478 +0x213d9,CUS_0x2a3a,August,26,497-15-6884,_______,15704,,6,8,34.06745738,8,"Not Specified, Payday Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Student Loan, Auto Loan, and Credit-Builder Loan",45.23680672,24.55170297,1.33,6,_,3185.666381,24.31212234,13 Years and 5 Months,Yes,68.9537584,59.51540603,High_spent_Small_value_payments,256.8243175,0,-0.8162,0.3367,0.2931,0.8383,1.4902 +0x213e5,CUS_0x6cb9,August,54,054-55-2967,Scientist,11244.63,578.6241533,3,3,20,4,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",20.75507765,,18.34,4,Standard,94.17,23.72964773,20 Years and 8 Months,Yes,123.0646385,20.43965566,Low_spent_Medium_value_payments,291.6293026,0,0.6003,-0.2674,1.1474,1.3826,-0.4645 +0x213f1,CUS_0xc41,August,20,233-95-6448,Mechanic,38831.83,3328.985833,3,119,9,2,"Debt Consolidation Loan, and Mortgage Loan",2.106508099,1,7.74,4,Good,807.04,30.82068822,16 Years and 6 Months,No,63.9387265,,High_spent_Medium_value_payments,422.7619641,0,1.5551,-0.4883,0.6463,1.9753,-0.3993 +0x213fd,CUS_0x808,August,41,172-62-6839,Engineer,11330.965,1115.247083,3,7,7,1,Credit-Builder Loan,,20,8.01,4,Standard,1061.373055,33.53533528,28 Years and 8 Months,No,5.994046459,91.06948372,Low_spent_Small_value_payments,316.4658141,0,0.4368,-0.5121,1.1222,1.4374,0.2782 +0x21409,CUS_0x9967,August,51,279-53-1053,Musician,52410.5,4650.541667,7,5,2,100,,6.022086735,8,14.59,4,_,1023.044815,29.16524509,16 Years and 3 Months,No,0,318.2126424,High_spent_Small_value_payments,441.4129075,0,0.5214,0.4355,0.4618,-1.3938,-0.6817 +0x21415,CUS_0xa212,August,30,068-21-0328,Manager,20760.75,,5,4,17,7,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",25.0969019,15,7.91,5,Standard,738.06,31.32184155,,NM,115.1074744,166.4799973,Low_spent_Small_value_payments,151.4187783,0,1.0715,0.8597,-0.4305,-0.7646,-0.2559 +0x21421,CUS_0x411a,August,47,123-15-3150,Writer,18444.925,1497.077083,1,3,7,0,,,2.248296873,12.96,4,Good,1377.860806,23.98339625,31 Years and 0 Months,No,0,95.36436945,Low_spent_Small_value_payments,344.3433389,0,0.5474,-0.5981,1.9665,1.414,-1.1476 +0x2142d,CUS_0xc222,August,44,937-98-4347,Architect,57507.24,4859.556312,6,6,9,6,"Auto Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Not Specified",25.85341269,19,13.24,,Standard,1278.15,30.11991607,19 Years and 0 Months,Yes,451.1472085,151.6121722,High_spent_Medium_value_payments,338.581307,0,-1.8348,-0.6095,-0.6583,0.6485,-0.4251 +0x21439,CUS_0x995b,August,46,029-29-4933,_______,85515.94,7246.328333,5,3,11,3,"Payday Loan, Not Specified, and Not Specified",3.141777771,2,11.5,1,Good,141.5837723,36.82367286,24 Years and 4 Months,No,156.0468672,237.9838644,High_spent_Small_value_payments,617.960968,0,-1.0256,1.691,-1.0625,1.4813,-0.0848 +0x21445,CUS_0x6b7f,August,35,715-18-9613,Writer,29823.91,2256.325833,1,1,2,1,Not Specified,,1,9.52,7,Good,1120.660972,26.51191901,,No,18.6047796,11482.19835,High_spent_Medium_value_payments,415.3727836,0,1.9653,-1.1155,-1.2202,-0.3031,0.3092 +0x21451,CUS_0x2c6f,August,39,684-94-8105,Architect,17983.29,,6,7,17,6,"Credit-Builder Loan, Not Specified, Not Specified, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",20.66643855,16,24.71,9,_,3978.66,28.38314457,7 Years and 11 Months,Yes,81.25036554,,Low_spent_Small_value_payments,228.100697,0,0.1403,-1.1709,0.8541,-0.7274,-0.0102 +0x2145d,CUS_0x4e05,August,46,500-31-7991,Manager,60593.8,,3,4,12,2,"Student Loan, and Student Loan",,11,16.69,8,_,798.77,35.73520677,10 Years and 11 Months,Yes,96.7119736,173.1810124,High_spent_Small_value_payments,493.4553473,0,0.3232,0.0276,-0.1019,-1.6796,0.2051 +0x21469,CUS_0x7faf,August,26,035-49-9856,_______,36589.09,2829.090833,8,4,11,0,,,11,11.49,8,Standard,83.53,39.02800879,28 Years and 10 Months,Yes,0,88.06955973,High_spent_Medium_value_payments,444.8395236,0,0.4889,0.5629,-2.0591,0.2473,-0.3041 +0x21475,CUS_0xabb4,August,42,897-62-1625,Lawyer,18037.47,,0,6,9.288361749,4,"Not Specified, Student Loan, Auto Loan, and Auto Loan",3.350360064,5,9.41,3,Good,173.84,23.24642596,30 Years and 2 Months,NM,134.7485227,,Low_spent_Small_value_payments,270.1546818,0,-0.6067,1.7972,-0.4741,0.652,-0.1836 +0x21481,CUS_0xba52,August,39,348-19-7727,Doctor,68471.16,,4,3,10.28836175,2,"Credit-Builder Loan, Student Loan, and Payday Loan",,21.61318479,-3.41,6,Standard,448.088008,40.08326318,32 Years and 10 Months,Yes,157.536268,794.2560265,High_spent_Small_value_payments,324.9381666,0,0.3274,0.6926,1.0201,-0.1276,0.4258 +0x2148d,CUS_0x76c2,August,50,768-36-3850,Musician,59555.68,,3,5,6,2,"Home Equity Loan, and Payday Loan",9.484194578,8,15.81,2,_,1384.55,41.21608178,30 Years and 8 Months,Yes,75.00154721,,High_spent_Medium_value_payments,506.5135698,0,-0.6611,-0.3057,-0.3371,-2.0246,0.2551 +0x21499,CUS_0x400a,August,28,042-99-0678,Media_Manager,112671.27,,2,4,11.28836175,0,,3.366013005,6,7.58,8,Good,1221.91,42.23441472,27 Years and 9 Months,No,16050,621.1105341,High_spent_Large_value_payments,984.2541769,0,0.0202,-0.1795,1.3594,0.7006,-0.3885 +0x214a5,CUS_0x2916,August,43,794-99-9113,Mechanic,99100.29,8025.3575,3,3,8,1,Student Loan,16.21932144,10,8.19,5,Standard,696.74,34.28575155,32 Years and 11 Months,Yes,50.08104501,136.165473,High_spent_Large_value_payments,856.289232,0,-1.8805,-0.715,0.9936,-1.1638,-1.0811 +0x214b1,CUS_0xa219,August,38,814-08-0159,Engineer,14698.595,1505.882917,8,3,8,7,"Payday Loan, Home Equity Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",10.9462135,9,18.14,6,_,469.46,25.65164564,12 Years and 5 Months,Yes,84.87318656,,Low_spent_Small_value_payments,258.3408389,0,-0.1784,1.7482,-0.3904,-1.1453,0.6189 +0x214bd,CUS_0x929d,August,42,728-75-7830,Entrepreneur,43426.9,3497.908333,1,6,1.288361749,4,"Payday Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",13.22597045,,8.35,6,_,0.95,31.92457797,32 Years and 3 Months,No,98.63146393,,High_spent_Medium_value_payments,435.0094296,0,0.7718,-2.4532,0.6361,1.4823,1.0436 +0x214c9,CUS_0x792d,August,41,257-23-8497,Architect,147583.4,12224.61667,6,7,8.288361749,0,,,18,17.22,10,Standard,194.4,40.15964961,24 Years and 4 Months,Yes,0,532.993815,High_spent_Large_value_payments,1349.405313,0,0.3407,-0.4187,1.3744,0.2473,-1.36 +0x214d5,CUS_0x9906,August,43,885-30-7122,Entrepreneur,38367.08,3199.256667,5,3,14,7,"Not Specified, Auto Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Home Equity Loan, and Not Specified",23.62130509,17,18.88,9,_,1336.02,28.71451591,16 Years and 11 Months,Yes,43102,48.17798025,High_spent_Large_value_payments,302.078531,0,-0.1421,-0.7824,-0.7963,-0.7668,-0.0318 +0x214e1,CUS_0x2e0e,August,53,215-57-4977,Mechanic,61085.5,4842.458333,8,5,7.288361749,2,"Not Specified, Home Equity Loan, and Payday Loan",15.58530204,,11.95,4,Good,259.5401841,35.96893639,23 Years and 11 Months,No,98.8079265,467.2391407,High_spent_Large_value_payments,585.0301483,0,1.3979,-0.3446,-0.8765,-0.4779,0.951 +0x214ed,CUS_0xa1ab,August,35,399-75-1500,Lawyer,40561.2,3616.1,9,6,29.06745738,8,"Auto Loan, Student Loan, Mortgage Loan, Auto Loan, Payday Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,20,16.76,17,Bad,3381.860954,35.98162841,11 Years and 4 Months,NM,189.3974599,,High_spent_Medium_value_payments,254.1220671,0,-0.6794,0.7117,0.7473,-0.08,0.2585 +0x214f9,CUS_0x448a,August,38,#F%$D@*&8,Lawyer,1241683,8399.233333,7,5,13,4,"Personal Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",9.767128703,9,18.45,3,Standard,1050.52,40.39782646,23 Years and 5 Months,Yes,209.7738217,447.2995359,Low_spent_Small_value_payments,472.8499758,0,-1.6427,-0.69,0.6289,-0.1627,-0.4691 +0x21505,CUS_0x3b66,August,23,551-02-1303,Musician,80511.84,,4,7,1.288361749,0,,,20,11.11,5,_,958.7348025,26.51234062,20 Years and 4 Months,No,0,582.4392037,!@9#%8,749.4936345,0,-0.0281,0.5807,0.6931,1.6127,1.1525 +0x21511,CUS_0x9979,August,45,920-04-2870,Scientist,33071.56,,239,4,17,6,"Personal Loan, Not Specified, Not Specified, Personal Loan, Debt Consolidation Loan, and Student Loan",13.30348316,13,18.88,8,Standard,1021.88,40.52432236,13 Years and 3 Months,Yes,161.3407042,287.2151705,Low_spent_Small_value_payments,132.5404586,0,-0.1752,1.1757,0.9086,-0.8898,1.1191 +0x2151d,CUS_0x924e,August,41,153-33-1546,Developer,134270.12,11318.17667,8,7,10.28836175,2,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",22.85529936,19,18.68,8,Standard,503.23,35.78258158,13 Years and 2 Months,Yes,282.5548889,1186.410426,High_spent_Small_value_payments,342.7898124,0,-0.7513,-1.3864,-0.6091,-0.639,0.3042 +0x21529,CUS_0x9903,August,20,015-52-4404,Manager,109981.6,9239.133333,4,4,11,4,"Auto Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",,19,5.67,4,Standard,873.07,25.4659881,26 Years and 5 Months,No,351.9905141,,Low_spent_Small_value_payments,,0,1.6951,-0.8151,-0.4005,1.0959,0.1184 +0x21535,CUS_0x9e8c,August,22,715-55-8872,Teacher,32089.33,,4,6,2,4,"Personal Loan, Home Equity Loan, Home Equity Loan, and Not Specified",28.68828432,24.58593739,-4.67,0,_,496.6288422,27.51047779,25 Years and 6 Months,No,71.30685119,190.2163124,High_spent_Small_value_payments,286.6879198,0,1.5532,-0.2334,0.3191,1.2918,0.7814 +0x21541,CUS_0x537e,August,43,001-50-2460,Musician,68088.15,5842.0125,7,7,10,1,Personal Loan,24.40665311,21,4.25,2,Standard,1429.03,30.93612708,21 Years and 10 Months,No,42.39376922,472.2829177,Low_spent_Large_value_payments,339.524563,0,-0.1994,-1.5712,-1.4717,0.4099,0.6986 +0x2154d,CUS_0x5e0e,August,37,206-60-5869,Teacher,107304.42,8936.035,1,4,6.288361749,0,,4.462346276,8,1.45,4,_,1050.854287,35.13861583,19 Years and 2 Months,NM,0,,Low_spent_Medium_value_payments,696.1296093,0,0.895,-0.1353,0.6002,0.7837,-0.6241 +0x21559,CUS_0xbcfe,August,52,660-58-6561,Lawyer,41911.84,3321.653333,3,5,12.28836175,0,Credit-Builder Loan,16.32625887,14,-0.36,4,Standard,332.23,23.18916752,18 Years and 10 Months,No,29.34884565,494.0446334,High_spent_Medium_value_payments,478.7093152,0,-0.5459,0.2458,0.7486,0.1393,0.5084 +0x21565,CUS_0x87be,August,46,268-75-5454,Doctor,75868.8,,6,10,32.88954781,7,"Not Specified, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Student Loan",26.14762678,,3.6,6,Bad,1610.00245,34.3448505,14 Years and 11 Months,Yes,1621.03089,193.2376979,Low_spent_Large_value_payments,368.8413309,0,0.0704,-0.1392,0.9145,0.0786,-1.4037 +0x21571,CUS_0x4e94,August,47,936-14-9340,Engineer,38533.76,3412.146667,4,3,1,0,,12.29528876,9,-0.81,8,Good,431.41,23.39641274,30 Years and 6 Months,No,0,86.35000018,High_spent_Large_value_payments,494.8646665,0,-1.3902,0.822,-1.8725,0.7449,0.7314 +0x2157d,CUS_0xbaea,August,40,611-50-5098,Engineer,148387.92,12327.66,1,3,5,100,"Debt Consolidation Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",0,2,2.98,8,Good,8.07,32.39980709,25 Years and 6 Months,NM,470.228918,471.7530067,High_spent_Medium_value_payments,540.7840753,0,0.9712,-0.1249,-1.8123,-0.3227,-0.8986 +0x21589,CUS_0x3d22,August,38,142-92-6578,Engineer,17889.32,,9,6,19,7,"Not Specified, Auto Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",26.91565327,17.260714,4.22,10,Bad,4079.36162,40.14476615,9 Years and 5 Months,Yes,100.7346565,67.63406661,High_spent_Small_value_payments,242.1089435,0,1.4138,-0.2746,-0.6921,0.7117,-0.5572 +0x21595,CUS_0x65df,August,18,276-55-3567,Scientist,56570.22,4156.588619,4,7,16,3,"Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",17.73055951,,7.24,8,Standard,806.5,29.12685122,15 Years and 11 Months,Yes,403.8211061,472.3051729,Low_spent_Small_value_payments,167.8886024,0,-1.279,0.0146,0.1577,1.881,1.7351 +0x215a1,CUS_0x857f,August,34,589-60-7084,Developer,31019.6,2427.966667,6,1267,7,4,"Personal Loan, Auto Loan, Auto Loan, and Personal Loan",,20,13.74,6,Standard,727.64,36.08370319,6 Years and 10 Months,Yes,72.48842264,,Low_spent_Medium_value_payments,311.7497784,0,1.1378,0.5445,0.8497,-0.2793,-1.6103 +0x215ad,CUS_0x412a,August,47,985-27-4444,Accountant,63433.7,5253.141667,1,4,4.288361749,2,"Auto Loan, and Payday Loan",8.325903847,10,5.82,2,Good,347.01,38.45025459,16 Years and 8 Months,No,61.3519375,584.7517274,High_spent_Medium_value_payments,549.1479628,0,-1.4897,-0.7017,-0.1497,1.5115,-1.2685 +0x215b9,CUS_0x562a,August,25,837-50-1650,Doctor,139391.8,11526.98333,5,4,9,3,"Not Specified, Credit-Builder Loan, and Home Equity Loan",,5.627316621,4.05,2,Good,666.5530301,40.84380505,33 Years and 4 Months,No,175.7450802,405.6733324,Low_spent_Medium_value_payments,851.2799207,0,0.2633,-2.0158,-1.8841,-0.6507,0.6904 +0x215c5,CUS_0x14ce,August,44,318-82-4117,Musician,17776.2,1727.35,955,6,35.06745738,5,"Student Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Payday Loan",24.5146645,12,16.99,14,Standard,2444.540954,27.05255256,18 Years and 11 Months,Yes,57.27595932,10000,Low_spent_Small_value_payments,320.0835786,0,0.4348,-0.9777,1.9498,0.3642,-0.4881 +0x215d1,CUS_0x7dfc,August,30,720-13-2807,Developer,68790.22,5872.518333,3,5,6,3,"Debt Consolidation Loan, Mortgage Loan, and Auto Loan",11.60201481,12,8.38,3,Good,359.0103732,33.47356565,,No,163.4102565,158.1098169,High_spent_Medium_value_payments,534.5614169,0,0.5963,-1.4482,-0.9735,-0.419,0.9426 +0x215dd,CUS_0x406d,August,44,370-97-3042,Developer,45432.51,,10,8,21.88954781,6,"Home Equity Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Debt Consolidation Loan",,26.88090669,3.35,14,Bad,2331.024414,33.54090122,12 Years and 9 Months,Yes,49644.48344,,Low_spent_Large_value_payments,217.276948,0,1.7308,0.5385,0.7433,-1.1923,-0.7674 +0x215e9,CUS_0x4f43,August,34,282-99-1365,Doctor,7908,,8,10,18.06745738,7,"Personal Loan, Not Specified, Mortgage Loan, Student Loan, Student Loan, Mortgage Loan, and Personal Loan",31.1318782,16.68823017,17.4,13,_,4415.618833,36.59028838,,Yes,30.30645981,,Low_spent_Small_value_payments,240.4215814,0,0.7565,0.2667,0.638,0.1145,1.5128 +0x215f5,CUS_0x7874,August,27,942-35-0590,Accountant,9716.27,743.6891667,9,10,34.06745738,3,"Mortgage Loan, Student Loan, and Debt Consolidation Loan",21.37946158,10.36504395,9.55,14,Standard,2723.131707,28.49531971,12 Years and 11 Months,Yes,24.04132758,27.33684095,Low_spent_Small_value_payments,286.2704602,0,-0.2675,-0.0096,-1.1016,-0.8403,0.7739 +0x21601,CUS_0x1063,August,20,883-38-8680,Architect,128698.76,10628.89667,7,5,10,4,"Personal Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",15.40255463,,10.67,12,_,583.11,28.44037043,16 Years and 11 Months,Yes,251.6127821,136.3149548,High_spent_Large_value_payments,914.9619298,0,0.3937,0.6277,-2.1424,0.3787,-0.6369 +0x2160d,CUS_0x632e,August,53,608-49-5090,Architect,21733.845,1320.70801,4,2,5.288361749,2,"Payday Loan, Debt Consolidation Loan, and Debt Consolidation Loan",0.986786297,5,8.69,6,Good,42.70167284,27.3728891,23 Years and 8 Months,No,256.6138717,,Low_spent_Small_value_payments,339.8741776,0,-1.2502,-1.7914,0.2077,0.6267,0.2227 +0x21619,CUS_0x308d,August,46,754-40-2219,Lawyer,116794.11,9483.8425,3,6,11.28836175,0,,,11,3.5,7,Good,226.98,35.54915941,19 Years and 10 Months,No,0,1088.531573,Low_spent_Medium_value_payments,559.7901385,0,0.9077,-0.1395,-1.5466,0.3881,0.7074 +0x21625,CUS_0x2eed,August,38,578-81-4278,Manager,122760.66,10422.055,0,4,4,3,"Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,12.34799221,11.66,3,Good,781.922734,42.00715299,17 Years and 10 Months,No,243.7745527,,High_spent_Large_value_payments,915.0375305,0,-0.6939,-1.2307,0.3342,0.9786,0.8468 +0x21631,CUS_0x270e,August,22,223-18-9322,Journalist,15165.14,,10,7,26.06745738,9,"Home Equity Loan, Home Equity Loan, Personal Loan, Home Equity Loan, Not Specified, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",36.42018411,17.37271693,23.91,7,Bad,3564.081114,27.63345887,1 Years and 5 Months,Yes,67.76528288,189.7470241,Low_spent_Small_value_payments,156.3435717,0,0.3246,0.3373,0.2506,0.1173,1.066 +0x2163d,CUS_0x6f81,August,18,075-05-3919,Doctor,17452.155,,3,3,1680,100,"Home Equity Loan, Personal Loan, Mortgage Loan, and Student Loan",30.51254587,20,9.73,10,Standard,420.61,35.4931277,5 Years and 9 Months,Yes,40.98482156,80.40857436,Low_spent_Medium_value_payments,289.3412291,0,0.9742,0.5017,-1.5682,0.4959,-0.6585 +0x21649,CUS_0x1efd,August,18,966-55-9007,Teacher,17933.84,1393.486667,9,6,17,100,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, and Student Loan",34.66357238,18,15.02,9,Standard,1660.5,33.97214038,13 Years and 4 Months,NM,48.00605102,30.95045385,High_spent_Medium_value_payments,310.3921618,0,0.6818,-2.2746,-0.2545,-0.7115,-1.4442 +0x21655,CUS_0x3bba,August,40,625-83-8662,Musician,75655.48,6016.623333,1,3,11,3,"Auto Loan, Not Specified, and Not Specified",,11.65523293,11,1,_,1349.900448,38.00645604,32 Years and 10 Months,No,111.0230267,326.0448452,Low_spent_Medium_value_payments,444.5944614,0,-0.8875,-1.4327,0.9057,-0.9113,-0.0086 +0x21661,CUS_0xbc1f,August,44,902-27-0943,Musician,69083.08,5451.379028,6,4,19,1,Home Equity Loan,19.49747915,,8.7,2,Standard,411.0365656,41.48415623,21 Years and 4 Months,NM,457.0265846,143.6590903,High_spent_Large_value_payments,673.1403416,0,-0.2706,1.1143,0.8502,-0.6342,1.7935 +0x2166d,CUS_0xc5ae,August,22,945-49-0362,Developer,100666.59,8203.8825,4,1101,15.17790956,652,"Credit-Builder Loan, Auto Loan, Student Loan, and Payday Loan",16.27185685,14,14.61,4,_,1138.472165,23.07221189,19 Years and 4 Months,Yes,1521.275472,1345.679562,Low_spent_Medium_value_payments,54.45504252,0,-0.0662,-0.8045,2.0314,-0.0455,-1.928 +0x21679,CUS_0x30ab,August,41,#F%$D@*&8,Media_Manager,42079.65,,4,7,6,2,"Credit-Builder Loan, and Student Loan",,14,18.34,5,Standard,1460.57,31.90828429,18 Years and 5 Months,Yes,53.36083741,82.49240641,High_spent_Medium_value_payments,470.3105062,0,-1.7577,1.7108,1.6198,0.8761,0.3046 +0x21685,CUS_0x3608,August,46,070-52-8558,Teacher,17737.6,,4,7,8,0,,0,1,6.2,7,Good,1420.93,26.61232063,26 Years and 5 Months,No,0,32.8717012,High_spent_Medium_value_payments,343.1416321,0,0.22,-0.7934,1.3859,-1.315,-0.3799 +0x21691,CUS_0x3eb6,August,18,#F%$D@*&8,Accountant,120015.52,10208.29333,7,7,14,2,"Auto Loan, and Mortgage Loan",16.94461898,13,11.88,10,Standard,1236.14,26.92424895,21 Years and 10 Months,NM,155.5010233,132.5937658,High_spent_Large_value_payments,972.7345442,0,0.3,0.0672,-2.0673,-1.3226,-1.0705 +0x2169d,CUS_0xae17,August,39,555-86-2423,Manager,42619.92,3630.66,5,3,20,1,Mortgage Loan,25.96210502,21,3.03,2,Standard,124.55,31.28965914,,Yes,30.69875565,72.02560726,High_spent_Medium_value_payments,510.3416371,0,-0.2023,-1.8286,0.8841,1.4947,1.4004 +0x216a9,CUS_0x2ded,August,53,985-21-8683,Engineer,160591.24,,3,5,11.28836175,4,"Personal Loan, Payday Loan, Mortgage Loan, and Credit-Builder Loan",0,2,2.33,3,Good,65.66247076,25.23673125,33 Years and 4 Months,No,78278,2486.84834,!@9#%8,,0,0.9897,1.5211,-2.1253,-0.5841,-0.4081 +0x216b5,CUS_0x28c4,August,31,798-58-3894,Media_Manager,14066.03,1358.169167,8,9,18.88954781,7,"Personal Loan, Auto Loan, Not Specified, Personal Loan, Student Loan, Student Loan, and Personal Loan",37.38735825,19,16.42,12,Bad,4965.47,30.73687948,9 Years and 0 Months,Yes,1381.711841,,Low_spent_Small_value_payments,228.6398466,0,2.3492,0.2713,0.0525,-1.0815,-1.8845 +0x216c1,CUS_0xafc3,August,24,270-73-7020,Developer,14901.88,,7,7,13,1,Personal Loan,19.49212036,17,10.38,3,Standard,932.33,38.73478074,19 Years and 9 Months,No,7.293280162,60.49436476,Low_spent_Small_value_payments,358.4946884,0,-1.0188,-0.1677,-0.3071,1.1233,-0.5629 +0x216cd,CUS_0x5510,August,46,996-65-7108,Developer,20921.76,,4,7,11,2,"Not Specified, and Home Equity Loan",,20,12.62,7,Standard,453.11,30.27120364,24 Years and 0 Months,Yes,33.09944815,,!@9#%8,271.1695121,0,-1.1374,0.1103,0.0492,-0.6147,-0.344 +0x216d9,CUS_0xc31a,August,54,221-54-2409,Musician,74288.46,6284.705,7,7,1655,0,,22.21384688,19,2.31,7,Standard,1277.729894,34.97835859,31 Years and 2 Months,Yes,0,,High_spent_Large_value_payments,750.4260459,0,0.0039,-0.1649,1.1778,-0.8982,0.6978 +0x216e5,CUS_0xacf,August,27,458-25-2966,Writer,152104.68,11526.08679,2,3,11,1,Credit-Builder Loan,1.462974126,3,0.76,7,_,324.7738996,40.43082028,23 Years and 11 Months,No,1192.006303,183.4620811,High_spent_Large_value_payments,1223.267496,0,0.0301,-1.6363,0.2568,0.4561,0.4154 +0x216f1,CUS_0xa8c0,August,44,805-85-0973,Doctor,60148.65,,7,7,19,6,"Personal Loan, Student Loan, Not Specified, Payday Loan, Home Equity Loan, and Payday Loan",13.42048344,14,18.52,8,Standard,903.86,34.62929214,19 Years and 10 Months,Yes,216.3672734,254.7078519,Low_spent_Small_value_payments,315.9636247,0,-0.2221,1.1751,-0.0533,-0.1218,0.8973 +0x216fd,CUS_0x4c29,August,48,621-62-2926,Writer,30403.95,2545.6625,8,7,16,0,,,15,9.02,6,_,1306.93,29.68738378,25 Years and 0 Months,NM,0,,Low_spent_Small_value_payments,247.2232132,0,-0.0055,-0.9973,0.6197,0.0951,-1.4105 +0x21709,CUS_0xa4a9,August,22,#F%$D@*&8,Journalist,14137.39,,7,5,31.06745738,7,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",30.52440473,20.18140158,18.51,8,_,5519.792876,23.41333186,7 Years and 0 Months,Yes,68.15685723,96.54484246,Low_spent_Small_value_payments,207.6895957,0,1.7605,-0.2638,0.8243,1.3498,1.1166 +0x21715,CUS_0x6c83,August,33,710-75-5170,Media_Manager,31938.39,,4,7,19,2,"Auto Loan, and Auto Loan",,8,4.73,2,Standard,1351.51,28.8286911,,No,389.3598805,100.0655149,High_spent_Small_value_payments,365.2145383,0,0.1465,-1.4127,0.0216,1.2947,1.1216 +0x21721,CUS_0x5704,August,42,283-47-5415,Scientist,69212,5536.666667,4,7,2330,4,"Home Equity Loan, Payday Loan, Not Specified, and Home Equity Loan",18.73465928,17,4.83,3,Standard,1094.93,26.49468178,18 Years and 10 Months,No,152.1934977,212.9165263,High_spent_Medium_value_payments,438.5566426,0,0.4011,-0.4917,-1.3036,0.7389,-0.1468 +0x2172d,CUS_0x6aa1,August,41,077-42-6964,Doctor,79760.4,,5,6,9,2,"Debt Consolidation Loan, and Not Specified",,20.59587625,12.29,9,Standard,2634.877008,33.80595752,19 Years and 6 Months,Yes,115.1934055,126.5954214,High_spent_Medium_value_payments,700.9811732,0,0.4764,0.4501,-1.7572,-1.2945,-1.1533 +0x21739,CUS_0x50c9,August,42,279-90-9237,Scientist,60396.26,,6,3,3,2,"Home Equity Loan, and Debt Consolidation Loan",,19,0.81,3,Good,565.5537808,40.9337389,18 Years and 11 Months,No,81.37961603,247.8238729,Low_spent_Large_value_payments,446.7072003,0,0.8067,-1.1548,0.98,0.1979,0.4729 +0x21745,CUS_0x1bde,August,36,027-51-8010,Manager,170730.6,,4,7,3,0,,5.126525132,4,4.54,4,Good,327.43,28.62152204,,No,0,766.3857646,Low_spent_Large_value_payments,938.9692354,0,0.771,-0.3604,-1.6246,0.2246,-1.1982 +0x21751,CUS_0x4662,August,25,824-09-8654,_______,112282.4,9102.866667,4,219,16,0,,17.91858452,14,9.63,3,Standard,1033.890832,39.45000688,28 Years and 3 Months,NM,0,619.14299,Low_spent_Medium_value_payments,630.2525221,0,-0.2361,0.3691,-0.466,0.239,-0.7488 +0x2175d,CUS_0x20b2,August,33,#F%$D@*&8,Accountant,124190.8,,8,3,16.28836175,4,"Auto Loan, Personal Loan, Home Equity Loan, and Not Specified",5.649983854,8,3.7,0,Standard,834.52,34.9656062,19 Years and 0 Months,Yes,408.6529141,635.8188069,High_spent_Large_value_payments,679.4890734,0,-0.1357,0.9628,-1.0565,-0.4365,-0.3796 +0x21769,CUS_0xa9d9,August,25,095-27-6753,Entrepreneur,40857.12,,10,7,33,6,"Home Equity Loan, Student Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, and Personal Loan",42.22432454,30.31188936,12.53,6,Bad,1788.943991,25.2162062,10 Years and 10 Months,Yes,106.1506966,321.323665,Low_spent_Medium_value_payments,197.2016383,0,0.5965,-1.708,-1.4038,0.5754,-1.5333 +0x21775,CUS_0x5da7,August,21,947-73-8082,Architect,40363.74,3147.645,7,5,5,4,"Personal Loan, Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",17.79082708,16,1.14,3,_,1141.15,40.19433332,20 Years and 6 Months,No,111.5819159,26.68778842,!@9#%8,416.4947957,0,-0.5446,1.4665,0.4456,-1.3283,-0.1562 +0x21781,CUS_0xa648,August,21,313-83-6853,Teacher,18063.71,,4,3,15,5,"Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, and Payday Loan",,21,9.89,9,Standard,1095.268385,31.81108592,18 Years and 2 Months,Yes,43.34317731,70.51894486,Low_spent_Small_value_payments,324.6567845,0,-2.7847,0.6094,-0.076,-1.2104,-0.9433 +0x2178d,CUS_0x9bda,August,31,957-88-8642,Entrepreneur,15628.59,,1,5,11,2,"Not Specified, and Debt Consolidation Loan",,6,4.38,4,_,883.38,22.96556481,22 Years and 3 Months,No,21.27102853,89.92505178,Low_spent_Small_value_payments,300.1421697,0,-0.684,-1.3066,-0.1339,0.5384,-0.3373 +0x21799,CUS_0x1dad,August,22,021-69-2391,Architect,17807.935,,6,5,8,3,"Student Loan, Home Equity Loan, and Personal Loan",20.57725537,16,7.02,1,Standard,378.11,26.90238662,16 Years and 10 Months,No,31.32606172,171.1250078,Low_spent_Small_value_payments,242.1483889,0,-0.4399,0.6721,0.3213,-0.3074,-1.2667 +0x217a5,CUS_0x489d,August,28,145-04-2105,_______,22116.855,2104.07125,3,8,9.288361749,4,"Mortgage Loan, Personal Loan, Not Specified, and Payday Loan",14.57601715,,,1,Good,90.16381378,25.02833153,25 Years and 3 Months,NM,57.8142605,,High_spent_Medium_value_payments,369.5831558,0,0.6974,-0.7974,0.9906,-1.0401,0.1643 +0x217b1,CUS_0x23d8,August,35,008-94-6001,Entrepreneur,16245.125,,3,5,6,0,,0,2,3.79,7,Good,690.268811,37.70254307,28 Years and 8 Months,No,0,101.5015542,Low_spent_Small_value_payments,306.0644602,0,0.9961,-0.3665,1.284,1.1821,0.5904 +0x217bd,CUS_0x9a14,August,35,461-14-8465,Developer,35325.29,2764.774167,5,3,10,3,"Home Equity Loan, Student Loan, and Credit-Builder Loan",20.3423354,15.69920251,1.63,6,Standard,1159.29088,36.97070646,30 Years and 9 Months,No,66.84292038,122.4592456,Low_spent_Large_value_payments,357.1752507,0,-0.7531,0.8608,-1.5759,1.0081,1.1496 +0x217c9,CUS_0xb7be,August,18,634-21-6305,Teacher,81908.34,6902.695,3,5,13,5,"Personal Loan, Mortgage Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",90,1879,12.29,7,_,1069.99,24.92885118,6 Years and 8 Months,NM,266.6734271,78.98160663,High_spent_Medium_value_payments,594.6144663,0,0.3277,-0.2472,-0.0671,-1.0944,-0.2929 +0x217d5,CUS_0x1666,August,50,834-78-2099,Engineer,9603.845,510.3204167,4,3,14,1,Auto Loan,,12,0.3,9,Standard,1451.72,23.21563866,33 Years and 5 Months,Yes,5.262291048,36.97395846,Low_spent_Small_value_payments,298.7957922,0,0.4771,2.1732,-0.4913,-0.7967,0.7231 +0x217e1,CUS_0x368f,August,18,586-18-1041,Mechanic,10302.89,,8,5,17.06745738,8,"Auto Loan, Auto Loan, Personal Loan, Auto Loan, Student Loan, Not Specified, Auto Loan, and Not Specified",,21,23.6,17,Bad,3296.340954,41.91885116,11 Years and 11 Months,Yes,65.55971086,48.05235461,!@9#%8,264.3250632,0,0.4396,-0.359,0.3334,0.7183,1.0991 +0x217ed,CUS_0x9593,August,18,449-11-5861,Manager,35916.15,3195.0125,7,6,11,2,"Home Equity Loan, and Student Loan",16.4752964,12,17.59,12,Standard,1426.14,35.03952154,,Yes,49.89813367,87.68369738,High_spent_Medium_value_payments,431.919419,0,-0.2879,-0.3614,0.457,-1.0408,0.2383 +0x217f9,CUS_0xb322,August,39,301-09-1879,Accountant,22144.945,1752.412083,3,2,7,4,"Payday Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",,2,6.65,4,_,586.19,35.55993345,22 Years and 9 Months,No,42.56764123,,Low_spent_Small_value_payments,281.1591173,0,0.3214,0.544,0.3322,0.7283,0.27 +0x21805,CUS_0x4bef,August,21,783-63-1238,Journalist,38505.32,,7,4,10,4,"Debt Consolidation Loan, Student Loan, Mortgage Loan, and Credit-Builder Loan",21.55774521,17.37247631,17.09,5,Standard,2390.379501,23.33484883,10 Years and 6 Months,NM,214.6586972,130.9742264,Low_spent_Large_value_payments,374.5738893,0,2.0211,0.6295,-1.1245,-0.5746,0.6575 +0x21811,CUS_0xa120,August,38,103-17-3783,Doctor,81096.44,6604.036667,8,1226,15,5,"Not Specified, Debt Consolidation Loan, Payday Loan, Not Specified, and Payday Loan",13.13544834,14,14.05,9,Standard,1056.01,27.2068049,11 Years and 9 Months,NM,207.8570678,10000,High_spent_Medium_value_payments,452.5333286,0,1.6652,0.3506,-0.7413,0.4198,0.7086 +0x2181d,CUS_0x52dd,August,25,406-74-7448,Musician,22181.4,2010.45,3,3,4,3,"Credit-Builder Loan, Student Loan, and Not Specified",9.417611493,8,11.61,3,Good,1479.62,37.65151478,31 Years and 6 Months,No,42.81266615,204.2132933,!@9#%8,244.0190406,0,1.7666,-0.3253,-1.0542,-1.5459,1.8077 +0x21829,CUS_0x1ecf,August,80,512-45-2310,Doctor,19922.11,,7,6,27,9,"Mortgage Loan, Student Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Not Specified, Student Loan, Auto Loan, and Credit-Builder Loan",,20,23.54,7,_,4671.11,30.81009269,2 Years and 2 Months,Yes,111.9099294,,Low_spent_Large_value_payments,181.6753595,0,-0.621,-1.0961,-0.4158,0.8856,1.123 +0x21835,CUS_0x1aa0,August,26,079-45-2582,_______,62848.83,5006.4025,7,6,10,0,,,16,17.7,1127,Standard,1242.93,29.66259249,16 Years and 6 Months,Yes,0,152.6633449,High_spent_Small_value_payments,607.9769051,0,-0.3569,-0.0706,-2.6198,-0.0841,0.4035 +0x21841,CUS_0x1f2f,August,30,926-54-3940,Teacher,24821.36,,5,5,6.288361749,0,,23.6942438,20,,6,Standard,298.88,23.13397045,,No,0,617.6145886,Low_spent_Small_value_payments,302.9675391,0,0.8209,-0.6998,-1.2861,-1.396,0.7314 +0x2184d,CUS_0x7c51,August,27,994-42-0564,Teacher,28824.58,,0,3,5,4,"Payday Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",16.41445992,,8.89,0,Good,944.3349194,36.98517673,23 Years and 9 Months,NM,152.5571661,128.0904116,High_spent_Small_value_payments,345.0013653,0,0.0206,-0.4019,0.4297,-1.994,0.6496 +0x21859,CUS_0x4a23,August,36,335-47-9894,Accountant,19029.31,,4,4,13,2,"Student Loan, and Auto Loan",28.66351505,23,17.36,7,Standard,544.97,33.73467717,7 Years and 5 Months,Yes,36418,68.27125502,Low_spent_Small_value_payments,328.3477459,0,1.1895,-0.6586,1.0044,-0.2098,1.6013 +0x21865,CUS_0x4f0d,August,31,462-09-7916,Manager,30616.07,,1,2,3,0,,0,2,9.61,3,Good,1118.291183,39.15785429,29 Years and 2 Months,No,0,132.8607766,Low_spent_Medium_value_payments,445.3719121,0,-1.8822,-0.9824,-1.0315,-0.2052,-0.1167 +0x21871,CUS_0x32d2,August,80,851-07-8207,Manager,86992.68,,6,6,15,3,"Student Loan, Payday Loan, and Mortgage Loan",,20,15.83,4,_,982.81,35.62706356,25 Years and 0 Months,Yes,143.6716075,444.7687797,Low_spent_Medium_value_payments,413.0986128,0,0.4345,-1.1121,1.3895,2.0715,-1.3269 +0x2187d,CUS_0x575a,August,44,#F%$D@*&8,Writer,34774.65,2925.8875,6,492,17,5,"Auto Loan, Payday Loan, Auto Loan, Debt Consolidation Loan, and Personal Loan",15.1462539,13,15.02,4,_,887.48,27.14381067,15 Years and 8 Months,Yes,78.40872555,79.68099088,High_spent_Medium_value_payments,384.4990336,0,0.447,0.2854,0.5482,0.7646,1.4218 +0x21889,CUS_0x4aa7,August,44,743-52-7188,Scientist,17147.215,,2,3,3.288361749,0,,0,1,9.99,4,Good,5.323258818,33.81023013,20 Years and 5 Months,No,0,11467.08588,Low_spent_Large_value_payments,290.3763487,0,-0.8775,-0.3067,-0.3539,0.0662,0.0366 +0x21895,CUS_0x3af9,August,25,433-89-9955,Writer,31655.9,2298.212567,2,4,4,2,"Student Loan, and Student Loan",,3,3.99,0,Good,1183.137049,37.35132545,16 Years and 2 Months,No,250.4689723,85.4438395,High_spent_Medium_value_payments,393.8016209,0,0.7166,-0.1089,1.2181,-0.571,1.9586 +0x218a1,CUS_0x7284,August,44,411-70-7311,Accountant,16242.68,1539.556667,10,10,28,2,"Mortgage Loan, and Not Specified",39.93639884,16.79411327,9.52,12,Standard,1519.679315,34.3208354,6 Years and 8 Months,Yes,24.68268466,62.92813677,High_spent_Small_value_payments,326.3448452,0,-1.2581,0.164,0.4494,-0.4312,-0.3185 +0x218ad,CUS_0x691e,August,58,521-46-3587,Media_Manager,111346.92,8251.844775,2,4,7.288361749,0,Not Specified,,2,8.48,2,Good,919.5417825,41.04623028,30 Years and 8 Months,NM,35222,502.3406665,High_spent_Large_value_payments,1020.180509,0,1.6981,0.7591,0.0795,1.7719,1.3241 +0x218b9,CUS_0x14f1,August,30,#F%$D@*&8,Engineer,40701.88,3309.823333,8,9,26,3,"Not Specified, Home Equity Loan, and Home Equity Loan",29.67796826,18.7721334,10.86,13,Standard,2346.40036,32.78586749,6 Years and 6 Months,Yes,72.23857851,115.7563198,High_spent_Small_value_payments,402.987435,0,-0.1648,-0.0416,0.1814,0.9266,0.2792 +0x218c5,CUS_0xab83,August,35,876-95-6250,Media_Manager,15333.865,1057.822083,6,3,7,2,"Not Specified, and Payday Loan",26.57239588,19,16.55,2,Standard,630.24,32.96514916,28 Years and 10 Months,Yes,14.56655931,37.60788756,Low_spent_Small_value_payments,343.6077615,0,0.0112,1.8481,-0.7791,0.4696,-0.1615 +0x218d1,CUS_0x5b90,August,42,341-11-8430,Architect,98992.92,,5,7,12.28836175,2,"Not Specified, Not Specified, and Debt Consolidation Loan",,12,9.72,4,_,441.72,31.58235159,19 Years and 6 Months,Yes,240.811904,531.084553,High_spent_Medium_value_payments,718.782004,0,-0.9308,-0.2044,-0.39,1.2084,0.5938 +0x218dd,CUS_0xa66a,August,35,797-13-4387,_______,42951.62,3580.301667,0,3,5,4,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",5.464944918,7,11.7,4,_,987.6716146,33.97686122,,No,80.51438344,99.42757335,High_spent_Medium_value_payments,438.8945012,0,1.4823,-0.6444,-2.3112,0.3497,-2.0949 +0x218e9,CUS_0xb89f,August,38,#F%$D@*&8,Accountant,12768.94,1079.078333,8,5,15,1,Student Loan,,8,10.37,4,Standard,429.2742461,39.57916731,33 Years and 5 Months,Yes,5.351086151,,Low_spent_Medium_value_payments,298.6600223,0,1.0715,0.7768,-0.9087,0.3103,-0.5514 +0x218f5,CUS_0xbb30,August,20,716-63-9191,Writer,71535.38,5886.281667,4,7,14,2,"Personal Loan, and Payday Loan",22.28488103,18,5.26,5,Standard,1349.87,25.66598974,23 Years and 9 Months,Yes,118.7256737,608.2007629,Low_spent_Small_value_payments,151.7017301,0,0.0228,0.2176,0.2488,0.5158,-1.3106 +0x21901,CUS_0xacec,August,18,661-67-1317,Writer,73436.07,6191.6725,8,5,12,1,Payday Loan,,6,9.51,2,Standard,45.5,36.20190355,24 Years and 6 Months,Yes,45.19759108,243.3088893,High_spent_Medium_value_payments,580.6607697,0,-1.2099,2.945,0.2232,0.5888,-0.221 +0x2190d,CUS_0x2fd5,August,41,059-18-4896,Writer,10078.315,1047.859583,8,3,1,3,"Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",22.55573193,17,1.17,6,_,642.57,22.47925213,19 Years and 10 Months,No,20.94488075,107.8659199,Low_spent_Medium_value_payments,255.9751577,0,0.9148,1.1053,0.8911,0.1656,-0.6815 +0x21919,CUS_0x9a6,August,51,410-04-4991,Doctor,40608.96,3103.08,2,1,5,3,"Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",0,2,10.19,6,Good,1294.249385,33.4422572,18 Years and 8 Months,No,93.00903004,333.4216027,Low_spent_Large_value_payments,197.5198382,0,-0.3921,0.5122,-0.7461,0.5046,-1.7571 +0x21925,CUS_0xbcde,August,39,596-06-1954,Doctor,32875.17,,4,1,8,2,"Personal Loan, and Mortgage Loan",0,0,11.55,4,Good,122.69,25.64746895,17 Years and 3 Months,No,30.86801479,,Low_spent_Small_value_payments,193.6442255,0,2.7794,-0.3285,1.5843,1.2036,0.7422 +0x21931,CUS_0xa09c,August,37,259-94-5869,_______,38192.94,3146.745,1,1,6,2,"Credit-Builder Loan, and Personal Loan",10.28145491,11,4.3,3,_,870.0908967,26.75615849,29 Years and 3 Months,No,36.37614031,50.4276953,High_spent_Large_value_payments,474.3488378,0,-0.3833,-1.4177,-0.0616,-2.1755,1.1103 +0x2193d,CUS_0xc192,August,20,697-74-4378,Scientist,30012.83,2239.069167,5,5,2,1,Student Loan,10.04166253,8,6.44,0,Good,1324.242207,30.68965117,26 Years and 6 Months,No,15.02910169,,High_spent_Small_value_payments,337.8754718,0,-0.4922,-1.8617,-1.1089,-0.2288,-0.2462 +0x21949,CUS_0x25f1,August,52,141-56-0639,Scientist,163083.08,13607.25667,3,2,8,1,Credit-Builder Loan,0,1,9.38,1,Good,725.2036631,39.88621562,31 Years and 5 Months,No,93.24891022,346.1045675,High_spent_Large_value_payments,1209.08522,0,1.4873,-0.4312,2.4458,-1.6522,-0.5217 +0x21955,CUS_0x61e3,August,48,101-45-1608,_______,86776.59,7154.3825,8,7,16,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",10.84823662,10,11.95,,Standard,638.99,33.10599405,24 Years and 0 Months,No,128.3078438,421.5706152,Low_spent_Medium_value_payments,445.559791,0,0.5751,-1.1624,-2.3288,-1.2206,1.9828 +0x21961,CUS_0x7145,August,30,640-19-4763,Media_Manager,86282.67,,5,7,10,4,"Not Specified, Personal Loan, Home Equity Loan, and Credit-Builder Loan",15.75853833,12,0.98,1,Good,129.3061712,33.74332686,18 Years and 2 Months,No,228.4230513,509.3732793,High_spent_Small_value_payments,312.2402945,0,-2.6403,-0.4186,0.494,-0.3542,0.9647 +0x2196d,CUS_0x225e,August,18,693-40-9693,Architect,22077.27,,3,7,8,2,"Payday Loan, and Payday Loan",8.798264366,10,17.84,8,Standard,918.22,30.2009877,10 Years and 4 Months,Yes,30.07970669,130.7884076,Low_spent_Large_value_payments,300.2091357,0,-1.0149,2.1429,-1.5192,1.7023,-2.6358 +0x21979,CUS_0xa187,August,45,487-99-3229,Writer,66287.28,5074.302311,4,3,8,0,,12.52907256,11,8.99,8,Standard,748.48,31.07787515,30 Years and 8 Months,Yes,439.637689,640.2134063,Low_spent_Small_value_payments,201.1805937,0,0.0291,-0.2425,-0.0557,-0.8854,-0.1952 +0x21985,CUS_0x2499,August,55,672-40-8326,Mechanic,28276.72,,5,4,10,4,"Not Specified, Not Specified, Payday Loan, and Debt Consolidation Loan",10.54198756,9,10.51,4,Standard,123.73,37.1243531,30 Years and 5 Months,No,50.01787354,26.60670401,High_spent_Large_value_payments,408.3147558,0,-0.6417,-0.4434,-1.0909,-0.6282,-0.1783 +0x21991,CUS_0x21bb,August,50,814-86-7307,Teacher,89531.13,7216.9275,3,4,10,3,"Auto Loan, Auto Loan, and Home Equity Loan",16.45677359,,-2.96,4,_,931.94,40.87238191,32 Years and 5 Months,No,223.2765485,194.0429778,Low_spent_Medium_value_payments,584.3732238,0,-0.4531,-1.5908,1.4919,0.175,1.1395 +0x2199d,CUS_0x6211,August,25,650-38-1015,Scientist,33643.76,,10,8,18.06745738,2,"Payday Loan, and Debt Consolidation Loan",33.99129557,16.58448904,13.69,13,Standard,2880.943364,38.01781405,13 Years and 11 Months,Yes,36.68171542,73.54318436,High_spent_Small_value_payments,406.6194789,0,0.6619,-1.2449,-0.3807,-0.7636,1.0792 +0x219a9,CUS_0x89b4,August,27,581-11-9310,Accountant,11465.92,744.4933333,7,5,11,0,,,7.214181051,7.35,7,Standard,1613.680351,37.02909534,15 Years and 0 Months,Yes,0,47.22858486,Low_spent_Medium_value_payments,307.2207485,0,0.2508,0.6678,-1.8495,2.7938,0.5602 +0x219b5,CUS_0xb04,August,21,053-21-8266,Accountant,60174.93,4912.5775,9,8,26,5,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",33.52945643,21.99601401,9.18,11,Bad,3305.157546,26.08052527,0 Years and 11 Months,Yes,135.8944402,,High_spent_Large_value_payments,507.4702482,0,1.4473,0.8246,-0.886,-0.6227,1.844 +0x219c1,CUS_0x77b3,August,18,083-43-3671,_______,30393.47,,3,7,8,1,Payday Loan,19.69834111,13,13.66,7,Standard,648.66,37.13731599,14 Years and 2 Months,Yes,13.59024554,,Low_spent_Large_value_payments,365.6236028,0,1.4656,0.7865,2.5104,0.4064,2.9583 +0x219cd,CUS_0xbe71,August,40,552-03-6969,Writer,110018.94,,4,2,9,0,,,1,9.42,4,Good,396.5925226,38.17224716,23 Years and 3 Months,No,0,,Low_spent_Medium_value_payments,477.0507783,0,0.0783,-0.0147,0.237,-1.1886,-0.8423 +0x219d9,CUS_0x6d1e,August,43,549-54-6864,Mechanic,16144.57,,6,6,28.06745738,5,"Personal Loan, Personal Loan, Payday Loan, Student Loan, and Payday Loan",22.16850852,,8.65,12,Bad,1939.048201,24.81484477,18 Years and 3 Months,Yes,34.30780765,61.73762241,Low_spent_Medium_value_payments,285.2723653,0,0.6975,-0.5587,1.0416,-0.4031,0.6556 +0x219e5,CUS_0x9c66,August,54,141-75-5743,Manager,11967.245,,8,6,15,3,"Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",5.179723107,7,16.54,4,Standard,1164.794455,27.44930994,20 Years and 2 Months,Yes,18.48098792,32.53979093,Low_spent_Small_value_payments,314.953615,0,-0.7742,0.9124,0.674,-1.1667,0.0939 +0x219f1,CUS_0x6068,August,51,898-33-6098,Entrepreneur,27577.45,2222.120833,7,4,12,3,"Not Specified, Auto Loan, and Mortgage Loan",11.77430461,12,11.28,7,Standard,1465.9,28.52415875,19 Years and 5 Months,No,40.68645861,70.80504793,Low_spent_Large_value_payments,380.7205768,0,-1.2954,0.2947,-2.035,-0.7895,-0.7579 +0x219fd,CUS_0x3b7e,August,54,041-26-5078,Entrepreneur,15904.85,1085.404167,3,5,1,4,"Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Not Specified",12.91664941,,6.34,2,Good,1377.16,36.85027487,20 Years and 4 Months,NM,47.59790092,76.78067721,Low_spent_Medium_value_payments,264.1618385,0,-1.6772,-0.7883,-0.3699,-0.5828,1.8401 +0x21a09,CUS_0xec8,August,18,115-56-7254,Entrepreneur,19457.5,1904.458333,5,7,15,1,Home Equity Loan,20.12286881,17,17.11,6,_,198.06,39.87447101,25 Years and 8 Months,Yes,9.012222642,46.29205162,High_spent_Small_value_payments,395.1415591,0,0.468,-1.2316,-0.4808,1.0148,-0.3509 +0x21a15,CUS_0xbc5e,August,37,498-64-3731,_______,95011.64,,3,6,11,4,"Auto Loan, Personal Loan, Home Equity Loan, and Credit-Builder Loan",20.08694924,14,11.02,6,Standard,1166.08,41.14964765,21 Years and 5 Months,Yes,291.8079567,113.385705,High_spent_Large_value_payments,628.470005,0,-1.165,-0.2589,-0.2345,0.1592,0.1374 +0x21a21,CUS_0x489b,August,31,769-46-3750,Manager,177560.68,,0,3,5,0,,6.268256114,5,4.19,1,Good,376.64,37.35965309,24 Years and 4 Months,NM,0,671.0594905,High_spent_Small_value_payments,1040.212843,0,0.423,-0.1234,-1.673,-0.195,0.5505 +0x21a2d,CUS_0xb907,August,80,193-12-4981,Journalist,36039.18,,466,9,24.88954781,7,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",25.70817977,19,5.16,10,_,2397,34.97822466,,Yes,1432.197261,280.6706479,Low_spent_Small_value_payments,199.7285101,0,-0.5917,-1.3478,1.017,1.4858,0.08 +0x21a39,CUS_0x612d,August,31,597-77-6079,Accountant,20497.26,1897.105,3,4,18,2,"Payday Loan, and Auto Loan",21.97092976,14,8.03,6,_,963.25,32.25195421,29 Years and 3 Months,Yes,27.14755195,79.90460795,High_spent_Small_value_payments,342.6583401,0,0.3071,-0.6338,1.6959,0.1863,0.9469 +0x21a45,CUS_0xaebc,August,29,792-56-4701,Accountant,40646.19,,3,7,6,0,,17.49022284,,6.77,8,_,534.4,26.28416454,22 Years and 4 Months,No,0,285.2595798,Low_spent_Large_value_payments,312.3586702,0,1.393,0.358,-2.9465,-0.856,-0.0957 +0x21a51,CUS_0x6683,August,20,368-69-9911,Developer,32653.78,,5,7,7,5,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",19.06971482,,17.59,12,Standard,1029.97,40.08784877,15 Years and 6 Months,NM,114.8511177,46.61459228,High_spent_Medium_value_payments,339.1491234,0,1.2845,1.1014,-0.546,2.1767,1.3721 +0x21a5d,CUS_0x2a8e,August,23,137-38-5121,Mechanic,17433.615,,1,4,2,2,"Credit-Builder Loan, and Mortgage Loan",16.74176116,,6.87,0,Good,955.2227928,27.11760723,29 Years and 8 Months,No,28.5796444,34.69874679,High_spent_Medium_value_payments,358.2013189,0,0.8154,-1.0071,0.5039,-1.471,0.4281 +0x21a69,CUS_0x7ed9,August,52,687-32-4056,Engineer,112383.56,9542.296667,4,6,3.288361749,0,,9.088500212,11,9.29,1,_,1271.36,33.67872897,22 Years and 2 Months,NM,0,962.0560693,High_spent_Small_value_payments,672.1110584,0,0.2861,0.9244,-0.573,-0.3381,-0.302 +0x21a75,CUS_0xb173,August,42,275-33-2317,Developer,18263.99,,8,5,20.06745738,100,"Payday Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",,25.21513294,16.34,10,Bad,3770.419535,36.42594952,2 Years and 2 Months,NM,76.67337711,56.71566615,!@9#%8,262.1905855,0,1.1275,-1.0306,-1.2886,-0.5805,-0.7014 +0x21a81,CUS_0x6e91,August,22,373-83-4458,Teacher,19852.64,,5,4,19.06745738,2,"Student Loan, and Personal Loan",20.58837792,12.69042447,18.92,8,Standard,1700.434303,26.67184211,16 Years and 10 Months,Yes,141.6591023,68.8056393,Low_spent_Small_value_payments,354.8478919,0,-0.6183,-0.4953,-0.2135,-1.0659,0.9725 +0x21a8d,CUS_0x2ba1,August,31,332-45-0857,Mechanic,10277.19,920.4325,4,6,5,5,"Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Payday Loan",6.384921308,8,16.66,13,Standard,1333.97,37.32641499,20 Years and 4 Months,Yes,1689,46.98225291,!@9#%8,310.0311561,0,-0.7654,0.3591,-1.0993,0.8228,1.0384 +0x21a99,CUS_0x4a70,August,38,953-01-9783,Media_Manager,94034.8,,8,4,11,1,Not Specified,6.02064432,6.84129287,10.98,4,Good,852.5132155,28.67709634,22 Years and 2 Months,NM,61.90277479,570.0224357,Low_spent_Large_value_payments,407.3981229,0,-0.6229,-0.066,-0.8395,0.22,-1.2467 +0x21aa5,CUS_0x66f2,August,32,091-01-4447,Lawyer,83618.96,,10,5,29,6,"Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",40.83079745,23,19.92,15,Bad,2624.85,23.33942323,11 Years and 6 Months,Yes,326.1671897,,Low_spent_Large_value_payments,210.8548629,0,0.0658,0.6368,1.1328,0.3383,-0.4994 +0x21ab1,CUS_0x4cce,August,45,356-75-7852,Engineer,31237.94,,5,5,2,3,"Mortgage Loan, Credit-Builder Loan, and Payday Loan",,10.9168451,7.02,64,Good,1317.999177,36.75709927,26 Years and 9 Months,No,191.5280294,,Low_spent_Small_value_payments,297.613111,0,-1.7331,1.1439,-1.3358,-1.6844,-0.2462 +0x21abd,CUS_0xa18f,August,25,732-05-7211,Mechanic,7517.97,447.4975,6,9,31.88954781,6,"Personal Loan, Personal Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",23.49831567,18.98085998,11.31,13,Standard,1676.427047,27.17303978,18 Years and 3 Months,Yes,1360.278952,,Low_spent_Large_value_payments,233.6852638,0,-0.0271,0.8054,-1.1534,0.5119,-0.2463 +0x21ac9,CUS_0xa442,August,22,518-48-0138,Lawyer,77945.08,6319.423333,8,5,24,5,"Personal Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Debt Consolidation Loan",41.82593124,24,29.06,7,_,3854.704095,35.19866799,14 Years and 4 Months,NM,267.0404776,,Low_spent_Large_value_payments,74.16186423,0,-0.3205,0.6769,1.2879,-0.29,0.6383 +0x21ad5,CUS_0xdb9,August,29,802-68-9774,Mechanic,19134169,6072.14,4,6,17,3,"Personal Loan, Mortgage Loan, and Personal Loan",,10.48251553,16.24,6,_,2359.196446,26.66871485,7 Years and 8 Months,Yes,149.2021466,204.0656039,!@9#%8,533.9462495,0,-0.8797,0.3503,-0.5705,-0.758,1.7812 +0x21ae1,CUS_0x55f,August,36,650-81-9177,Journalist,18124.54,1588.378333,8,8,32.88954781,9,"Student Loan, Auto Loan, Personal Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, and Auto Loan",28.83659686,17,21.71,10,Bad,2854.37,28.09075397,9 Years and 8 Months,Yes,1442.827176,,Low_spent_Medium_value_payments,190.237486,0,0.3729,-0.7375,1.6315,0.5896,0.629 +0x21aed,CUS_0x383a,August,41,940-15-1743,Accountant,61876.14,,8,7,13,4,"Payday Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",29.89468532,23,17.37,5,Standard,1282.29,28.57993272,11 Years and 0 Months,Yes,169.9803218,109.3578605,High_spent_Large_value_payments,499.3963177,0,-1.2204,-0.9998,-0.3889,-1.4168,2.3097 +0x21af9,CUS_0x8b25,August,30,993-03-6036,Mechanic,38361.54,3351.795,8,7,16,5,"Auto Loan, Student Loan, Student Loan, Credit-Builder Loan, and Personal Loan",22.12908047,16,18.72,9,Bad,3546.25,37.40128991,8 Years and 9 Months,Yes,97.88789787,188.9489919,Low_spent_Small_value_payments,338.3426102,0,0.663,-0.1036,1.0765,-0.0623,-1.1066 +0x21b05,CUS_0x1274,August,80,298-61-0480,Scientist,49070.94,4128.245,8,4,4041,3,"Student Loan, Payday Loan, and Payday Loan",,20.63782943,12.81,8,Standard,1982.463095,28.69571405,5 Years and 11 Months,NM,72.73879852,330.0513875,Low_spent_Small_value_payments,300.034314,0,0.9044,0.465,0.8238,-0.9816,-0.7983 +0x21b11,CUS_0x43ee,August,26,721-71-9089,Accountant,78506.64,,10,5,20,7,"Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Auto Loan, Student Loan, and Student Loan",28.88574518,22,23.25,11,Bad,4127.37,26.53750486,9 Years and 10 Months,Yes,380.6242327,224.644283,Low_spent_Medium_value_payments,324.6534843,0,0.8747,-0.5546,-0.7389,1.1131,-0.6652 +0x21b1d,CUS_0x6443,August,45,846-27-0367,Developer,147781.64,,0,4,4,0,,6.075797996,8,4.83,3,_,433.748945,34.82754001,19 Years and 4 Months,NM,0,,High_spent_Small_value_payments,686.3056526,0,-0.7607,-0.1594,-1.4385,-1.0752,0.4962 +0x21b29,CUS_0x553d,August,36,957-32-9386,_______,17177.52,,7,6,17,7,"Payday Loan, Payday Loan, Home Equity Loan, Personal Loan, Auto Loan, Personal Loan, and Home Equity Loan",9.110002518,11,10.81,12,Standard,2072.12,38.1410518,13 Years and 4 Months,Yes,84.85024246,59.47514966,High_spent_Small_value_payments,269.2206079,0,-0.868,-0.2238,0.2172,-1.8414,0.0425 +0x21b35,CUS_0x15ad,August,27,357-70-0085,Mechanic,82316.18,6625.681667,0,5,4,3,"Not Specified, Debt Consolidation Loan, and Payday Loan",19.39884088,14.03327893,11,2,Good,47.01553729,31.7886923,18 Years and 4 Months,No,133.8937587,161.2076553,High_spent_Large_value_payments,607.4667527,0,-0.1477,-0.5078,-0.3326,0.2966,0.3871 +0x21b41,CUS_0xa57,August,18,276-37-2086,Manager,51461.4,4305.45,3,4,16,7,"Auto Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Credit-Builder Loan",,10,7.54,8,Standard,949.81,22.15994406,6 Years and 8 Months,Yes,298.8968995,,Low_spent_Small_value_payments,3.998674636,0,1.0914,-0.0804,-0.7777,0.1524,0.0607 +0x21b4d,CUS_0x9902,August,31,568-59-0290,Manager,141474.2,11536.51667,3,3,17.28836175,0,,16.10708215,,15.62,5,Standard,364.38,29.2535201,24 Years and 0 Months,NM,0,1146.681342,Low_spent_Medium_value_payments,706.9077856,0,0.5976,1.7342,1.5966,-0.3727,-0.6274 +0x21b59,CUS_0x7c33,August,61,481-99-3123,Journalist,134630.91,,5,1,4.288361749,0,,,1975,7.65,8,_,566.4159136,35.78273553,20 Years and 2 Months,No,0,1509.194459,Low_spent_Large_value_payments,441.8869206,0,0.2583,0.3157,1.6343,1.3222,-0.2027 +0x21b65,CUS_0xe05,August,28,683-96-9072,Accountant,47682.36,4059.53,10,6,32.06745738,2,"Personal Loan, and Student Loan",,21.48673109,17.64,6,_,3026.882311,31.99430983,13 Years and 4 Months,Yes,59.98467519,144.6703023,High_spent_Medium_value_payments,424.5777346,0,1.2697,-0.6425,-1.2317,-1.1509,0.1664 +0x21b71,CUS_0x7595,August,52,#F%$D@*&8,Architect,43967.59,,4,4,12,4,"Payday Loan, Not Specified, Home Equity Loan, and Payday Loan",,,5.39,3,Good,64.14303727,28.04024344,26 Years and 8 Months,No,138.9375134,,Low_spent_Medium_value_payments,163.1121169,0,1.1051,-0.2283,-0.0212,0.6444,-1.9817 +0x21b7d,CUS_0x445,August,23,667-88-2872,Media_Manager,36971.44,,9,7,32,5,"Student Loan, Student Loan, Payday Loan, Debt Consolidation Loan, and Not Specified",,20.28914579,9.78,10,Bad,1858.533934,38.74864763,15 Years and 5 Months,Yes,100.2303566,116.7272658,Low_spent_Small_value_payments,410.1377109,0,0.3562,0.292,-0.1477,-0.7574,-0.2675 +0x21b89,CUS_0x72e3,August,23,698-36-9588,Engineer,136566.4,11633.53333,6,4,18,2,"Payday Loan, and Student Loan",15.30836075,10,11.2,0,Standard,40.19,33.94447316,19 Years and 5 Months,No,206.2879191,910.2015864,Low_spent_Medium_value_payments,326.8638278,0,1.8094,1.5258,-0.3818,-1.143,-1.3609 +0x21b95,CUS_0x8e48,August,52,574-16-6279,Scientist,108968.85,8843.7375,1,5,7.288361749,0,,0,1,1.51,1,Good,367.7271744,21.77834158,,No,0,1481.37265,Low_spent_Small_value_payments,266.9427842,0,-2.411,0.7094,0.8642,0.9637,-0.7495 +0x21ba1,CUS_0xc4ad,August,26,212-17-4981,Accountant,9618.3,549.525,8,9,22,9,"Home Equity Loan, Home Equity Loan, Auto Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Home Equity Loan",20.07304321,17.48425628,15.27,,Bad,4970.724704,33.54178646,12 Years and 3 Months,Yes,38.43296552,14.79150548,Low_spent_Large_value_payments,271.728029,0,-1.5121,-1.0545,1.4615,-0.1035,0.5779 +0x21bad,CUS_0x6318,August,25,199-90-4095,Accountant,55732.68,4903.39,8,8,27,5,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Not Specified",16.51795624,13.23861378,8.35,14,_,2832.247553,28.0117928,11 Years and 5 Months,Yes,208.2720118,128.8695983,Low_spent_Medium_value_payments,433.1973899,0,1.1749,-1.0084,-0.8218,-0.362,1.1667 +0x21bb9,CUS_0x9dd7,August,24,194-04-6883,Engineer,106666.2,8873.85,6,6,11.28836175,4,"Not Specified, Payday Loan, Home Equity Loan, Student Loan, and Personal Loan",17.65271504,15,15.09,6,Standard,1288.06,37.65237568,15 Years and 9 Months,NM,317.9494433,,High_spent_Medium_value_payments,686.2871965,0,-0.0999,-0.4955,0.1879,-0.3359,0.6888 +0x21bc5,CUS_0x49c4,August,29,861-41-5971,_______,39831.1,,1,2,6,1,Home Equity Loan,13.32572265,11,9.08,6,Good,1.089926177,28.3319745,27 Years and 10 Months,No,25.7980241,,Low_spent_Large_value_payments,309.7137078,0,1.0297,1.1582,0.7794,-1.1982,-0.2629 +0x21bd1,CUS_0x9962,August,46,378-95-8519,_______,126689,10543.41667,3,1,5,3,"Mortgage Loan, Personal Loan, and Debt Consolidation Loan",0.070623537,1,6.73,3,_,597.81,34.41870201,19 Years and 10 Months,No,272.2814364,403.3503981,High_spent_Medium_value_payments,628.7098321,0,-1.0204,-0.6663,2.8896,1.4568,1.2056 +0x21bdd,CUS_0x795e,August,19,623-42-5526,Engineer,103668.45,8557.0375,7,3,4,3,"Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",,8,11.37,5,Standard,1320.03,38.43066823,33 Years and 6 Months,No,210.2046131,,Low_spent_Small_value_payments,326.0184534,0,-1.6774,-0.766,1.1129,0.7737,0.874 +0x21be9,CUS_0x30b9,August,52,857-73-0569,Lawyer,14696.765,,4,4,6,3,"Student Loan, Auto Loan, and Debt Consolidation Loan",14.12298277,,3.96,3,Good,531.86,33.42524425,20 Years and 0 Months,No,21.48880171,33.92390486,Low_spent_Medium_value_payments,351.9603351,0,0.1203,0.8281,-0.3486,-1.7452,0.9181 +0x21bf5,CUS_0x3fa7,August,44,110-46-6075,Scientist,7854.735,,8,8,21.95700519,7,"Credit-Builder Loan, Student Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, and Personal Loan",45.08652435,24.79911616,13.31,15,Bad,1905.682396,39.34195286,15 Years and 0 Months,Yes,1352.119945,65.52475804,Low_spent_Medium_value_payments,211.1610523,0,0.7325,-0.0532,-1.0563,-0.9805,0.2785 +0x21c01,CUS_0x983b,August,24,618-79-9712,Accountant,12349.37,,4,7,17,1,Debt Consolidation Loan,15.84371911,15,0.89,0,Standard,789.8708387,37.87658981,23 Years and 8 Months,Yes,8.022342591,57.18778893,High_spent_Medium_value_payments,320.3146103,0,-0.2154,0.2428,1.4912,-0.3376,-2.3755 +0x21c0d,CUS_0x5c45,August,29,497-87-3044,Teacher,12044.89,1055.740833,3,6,15,0,,15.72915623,,19.92,8,Standard,747.26,28.18077755,19 Years and 8 Months,Yes,0,31.98946751,!@9#%8,353.5846158,0,-0.8126,0.1054,-1.0004,-1.1337,-0.8165 +0x21c19,CUS_0xa8cb,August,42,330-38-0880,Engineer,16364.65,,9,10,32,4,"Payday Loan, Credit-Builder Loan, Personal Loan, and Personal Loan",22.14425928,16,-0.53,14,Bad,2234.81,37.35324023,8 Years and 4 Months,Yes,39.55481364,66.5453539,High_spent_Medium_value_payments,307.3719158,0,-0.2573,1.6671,0.2277,1.1627,0.0836 +0x21c25,CUS_0x6543,August,52,092-21-0873,Musician,104088.51,8847.0425,1,7,6.288361749,2,"Mortgage Loan, Payday Loan, and Auto Loan",11.48560672,11,10.54,6,Good,449.559953,28.69391313,23 Years and 11 Months,NM,196.5044835,980.6148608,!@9#%8,450.9767433,0,-0.8638,-0.8791,-0.0483,-1.1063,-0.4447 +0x21c31,CUS_0xa6e7,August,44,#F%$D@*&8,Architect,37424.09,3182.674167,4,5,4.288361749,2,"Home Equity Loan, and Auto Loan",90,3827,3.55,1,_,464.9450617,35.15551155,28 Years and 8 Months,No,62.10742942,11847.68308,High_spent_Medium_value_payments,468.6484851,0,1.982,1.9518,0.5896,-0.5359,-1.8913 +0x21c3d,CUS_0x391a,August,29,020-38-9385,Lawyer,20737.17,1868.0975,5,4,9,0,,,6,7.37,0,Good,1268.609488,40.36992138,27 Years and 0 Months,No,0,130.053037,High_spent_Small_value_payments,336.3432526,0,-0.6409,0.3688,-1.3967,-1.991,-0.7476 +0x21c49,CUS_0x9616,August,33,324-37-0157,Journalist,32967.94,,8,4,18,1,Personal Loan,19.58701256,,,4,_,197.92,26.48211479,20 Years and 0 Months,Yes,24.83480447,,Low_spent_Small_value_payments,351.4387166,0,0.932,0.4364,1.5146,1.2468,-0.1644 +0x21c55,CUS_0x8ac4,August,24,511-55-3689,Entrepreneur,16203.89,1440.324167,6,10,34.06745738,7,"Not Specified, Home Equity Loan, Auto Loan, Personal Loan, Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",35.38606927,18.81768165,7.97,11,Bad,2621.607799,38.73835754,7 Years and 0 Months,Yes,48.67048795,,Low_spent_Small_value_payments,177.3471507,0,-1.1392,1.0551,-1.7233,-0.641,0.3394 +0x21c61,CUS_0x6341,August,35,919-05-0020,Engineer,49329.78,,6,5,20,1,Student Loan,16.91437026,14,7.4,3,Standard,1022.77,24.91878243,31 Years and 4 Months,NM,25.74207195,,!@9#%8,599.2253929,0,-0.5176,-0.122,-0.7914,1.7821,1.4105 +0x21c6d,CUS_0x3f71,August,26,624-03-0844,_______,58048.82,4780.401667,3,3,1,2,"Personal Loan, and Student Loan",1.130324917,3,7.15,3,Good,1020.94,42.24972644,26 Years and 3 Months,NM,93.47780407,74.50234007,High_spent_Medium_value_payments,560.0600225,0,1.7416,1.6021,1.4212,3.1181,-0.6703 +0x21c79,CUS_0x97b5,August,80,329-30-0742,Teacher,161066.88,,1,3,1,4,"Credit-Builder Loan, Payday Loan, Auto Loan, and Auto Loan",15.00345892,10,1.12,3,Good,40.77,35.20285152,31 Years and 0 Months,No,523.1438367,156.6959596,High_spent_Large_value_payments,899.5842036,0,-0.2086,-2.1062,-0.1005,-0.5756,1.2078 +0x21c85,CUS_0x9f5e,August,18,231-84-6947,Accountant,72458.44,5826.203333,10,10,24.88954781,7,"Home Equity Loan, Not Specified, Home Equity Loan, Student Loan, Not Specified, Auto Loan, and Personal Loan",,23.09776451,4.86,14,Bad,2373.044443,27.21150111,10 Years and 4 Months,Yes,1547.980641,215.7182924,!@9#%8,384.591319,0,-2.2675,0.3602,-1.0548,1.0129,-0.7619 +0x21c91,CUS_0x638b,August,53,#F%$D@*&8,Doctor,139294.4,11380.86667,3,3,9,0,,,3,4.45,3,Good,499.06,44.2470233,21 Years and 6 Months,No,0,,High_spent_Medium_value_payments,1126.868163,0,0.2038,-0.4131,-1.448,-1.6564,0.6474 +0x21c9d,CUS_0x19a8,August,80,738-50-7769,Musician,30683.42,2222.806019,4,6,15,2,"Debt Consolidation Loan, and Not Specified",13.75182526,9,10.62,4,_,7.24,35.92430922,26 Years and 5 Months,No,222.0301038,,High_spent_Small_value_payments,375.9347305,0,-0.481,-0.3261,0.9103,2.0059,-0.0481 +0x21ca9,CUS_0x77f6,August,19,118-67-1893,Developer,7782.32,,8,10,27.95700519,7,"Personal Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, Credit-Builder Loan, Auto Loan, and Not Specified",27.56125669,14,17.48,7,Standard,1872.690954,26.43174227,14 Years and 4 Months,Yes,1367.734183,,Low_spent_Small_value_payments,231.7848232,0,-1.0778,0.8746,0.9853,0.6489,-2.4312 +0x21cb5,CUS_0x246d,August,23,680-78-0701,Media_Manager,45253.14,,8,7,33.06745738,6,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, and Credit-Builder Loan",25.25753249,16,22.98,6,Bad,4193.450954,35.15960576,5 Years and 2 Months,Yes,55894,159.6505003,High_spent_Small_value_payments,245.3273992,0,0.7459,-1.4184,-0.0441,0.908,0.0251 +0x21cc1,CUS_0x4aba,August,21,624-19-0017,Doctor,41351.46,3543.955,5,5,14,0,,19.01037384,13,6.99,3,Standard,727.13,37.49553612,30 Years and 4 Months,NM,0,34.71013822,High_spent_Large_value_payments,559.6853618,0,0.7672,-0.3419,-0.2322,0.5844,2.1134 +0x21ccd,CUS_0x246a,August,41,300-96-4100,Mechanic,8283.985,,8,4,17,5,"Student Loan, Mortgage Loan, Auto Loan, Auto Loan, and Auto Loan",,10.82135587,15.47,6,Standard,1388.430694,40.41066659,12 Years and 8 Months,Yes,27.71766992,63.19736279,Low_spent_Small_value_payments,275.5181756,0,-0.2976,0.819,-0.5787,-1.2803,0.6596 +0x21cd9,CUS_0x4722,August,38,231-21-5025,Lawyer,18040.67,1270.389167,5,5,27,5,"Student Loan, Credit-Builder Loan, Student Loan, Student Loan, and Credit-Builder Loan",22.035927,18,7.44,6,Standard,1874.52,26.57751943,12 Years and 3 Months,Yes,53.73438354,,Low_spent_Small_value_payments,281.1506565,0,0.8603,-1.0968,1.7051,0.39,0.8697 +0x21ce5,CUS_0x8aa6,August,52,347-13-4537,Lawyer,30635.83,,3,5,13,4,"Auto Loan, Student Loan, Payday Loan, and Debt Consolidation Loan",17.6536762,14,5.29,0,Standard,349.58,38.65095562,27 Years and 8 Months,No,88.41637294,187.6883323,Low_spent_Small_value_payments,285.3938781,0,0.4084,0.9074,-0.2713,-0.1397,-0.2781 +0x21cf1,CUS_0xa8a,August,26,920-05-6695,Accountant,8829.965,,8,9,22.06745738,3,"Personal Loan, Payday Loan, and Student Loan",,26.04512702,5.62,8,_,2234.359283,29.41654738,18 Years and 6 Months,Yes,15.96058606,36.85021922,High_spent_Medium_value_payments,262.9519484,0,-0.7394,0.5268,0.3989,0.5251,-0.9543 +0x21cfd,CUS_0x2e10,August,19,002-26-1417,Lawyer,15301.19,1484.099167,8,6,30,3,"Not Specified, Home Equity Loan, and Auto Loan",,16.76110127,9.26,14,Standard,2879.621169,26.61967493,8 Years and 8 Months,Yes,30.48886331,68.56571735,Low_spent_Small_value_payments,339.355336,0,0.8568,0.2491,-1.1929,0.2343,-0.2919 +0x21d09,CUS_0x5672,August,51,059-66-4363,Scientist,173994.28,14596.52333,0,4,4.288361749,2,"Credit-Builder Loan, Not Specified, and Not Specified",,10,11.04,7,Good,714.69,37.20613117,15 Years and 9 Months,No,242.1055825,,High_spent_Medium_value_payments,893.4004115,0,-0.7645,-0.8685,0.2933,-1.1909,-0.1923 +0x21d15,CUS_0x7c88,August,46,#F%$D@*&8,Entrepreneur,60035.34,5182.945,6,5,31,6,"Home Equity Loan, Auto Loan, Auto Loan, Auto Loan, Debt Consolidation Loan, and Payday Loan",28.49216133,20,27.51,11,Bad,2985.89,25.83211899,4 Years and 11 Months,Yes,150.7903243,151.1382191,Low_spent_Large_value_payments,486.3659567,0,0.978,0.5238,0.5591,-0.618,0.1598 +0x21d21,CUS_0x4b8b,August,18,842-07-2442,Accountant,160346.44,13611.20333,2,5,8,4,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, and Mortgage Loan",,,-1.59,1230,Good,577.2505521,45.98179642,21 Years and 11 Months,No,297.8933626,293.896697,High_spent_Medium_value_payments,1059.408167,0,-0.5622,-0.3595,1.1444,-0.9406,1.9086 +0x21d2d,CUS_0x3b10,August,26,746-44-0537,Manager,50155.56,3562.14239,8,3,6,2,"Home Equity Loan, and Home Equity Loan",22.46835462,19,12.93,1,Standard,109.7505967,33.15788004,,NM,544.070021,11429.93936,High_spent_Medium_value_payments,565.2340521,0,-1.1239,-1.2131,0.3237,-0.6084,-0.6411 +0x21d39,CUS_0x48cb,August,32,091-85-5634,Mechanic,9934.62,897.885,10,5,16.06745738,5,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",27.49082932,19,29.98,14,Bad,2966.740954,40.48248992,2 Years and 9 Months,Yes,35.26774617,,High_spent_Small_value_payments,239.6195524,0,0.5062,-0.0986,-1.8745,0.4354,0.3381 +0x21d45,CUS_0xb5f6,August,37,738-32-5720,Engineer,17421.64,1645.803333,3,3,100.0674574,4,"Student Loan, Not Specified, Mortgage Loan, and Personal Loan",18.8152342,12,12.61,7,Standard,1665.510954,33.37974112,6 Years and 2 Months,Yes,31.20461332,64.48288634,Low_spent_Large_value_payments,312.1725457,0,-0.7632,-0.3353,-1.7821,0.0501,1.39 +0x21d51,CUS_0x8af1,August,52,240-13-9967,Scientist,37262.12,3355.176667,0,1,2.288361749,2,"Auto Loan, Credit-Builder Loan, and Home Equity Loan",13.15260737,12,9.94,4,Good,286.4746456,34.22552072,16 Years and 3 Months,No,89.88133214,,High_spent_Medium_value_payments,372.0570499,0,0.0095,-0.4377,-1.5319,-1.0952,1.4088 +0x21d5d,CUS_0x7659,August,56,630-95-1303,Lawyer,20817.395,,5,5,4,3,"Auto Loan, Payday Loan, and Credit-Builder Loan",9.730691724,11,11.17,5,Good,955.2642735,31.27628676,19 Years and 6 Months,No,51.2615669,85.31198936,Low_spent_Large_value_payments,321.6450442,0,1.7975,-1.0924,0.2779,1.1903,-1.5756 +0x21d69,CUS_0xb4d8,August,45,508-83-0349,Lawyer,24954.36,,6,7,16,0,,,14,9.58,5,Standard,1410.8,26.58479175,16 Years and 2 Months,Yes,0,92.36790843,Low_spent_Large_value_payments,394.9850916,0,1.8773,1.0541,-1.4061,0.924,-0.3134 +0x21d75,CUS_0x138e,August,52,388-88-9221,Lawyer,85918.76,,3,4,2,4,"Credit-Builder Loan, Home Equity Loan, Personal Loan, and Home Equity Loan",17.67184443,,3.46,2,Good,312.4777289,25.23464557,26 Years and 0 Months,No,276.1133391,52.46171755,High_spent_Large_value_payments,637.6619003,0,-2.0608,-0.1719,-1.6799,-0.703,1.7392 +0x21d81,CUS_0x4976,August,26,888-09-4640,_______,31113.52,2377.793333,10,10,16.88954781,6,"Personal Loan, Credit-Builder Loan, Not Specified, Payday Loan, Credit-Builder Loan, and Student Loan",,21,3.67,12,Bad,2489.95,36.68440282,8 Years and 11 Months,NM,1431.198068,58.75301465,High_spent_Medium_value_payments,303.4981696,0,-0.1509,-0.4788,0.2185,-0.4313,0.0279 +0x21d8d,CUS_0x1038,August,33,355-00-7832,Architect,129473.16,,3,4,10,3,"Payday Loan, Payday Loan, and Home Equity Loan",,13,8.61,10,Standard,527.9709509,34.08931802,20 Years and 0 Months,Yes,255.327905,,Low_spent_Medium_value_payments,32.34364545,0,0.7826,-0.9296,-1.0307,-0.7827,-1.0685 +0x21d99,CUS_0xa685,August,45,956-20-0403,Doctor,62538.3,5371.525,2,5,8,3,"Not Specified, Debt Consolidation Loan, and Mortgage Loan",7.061525078,8,8.8,5,_,1375.7,30.45438944,22 Years and 6 Months,NM,87.79120054,62.99010842,High_spent_Medium_value_payments,636.371191,0,0.1448,-0.2455,-0.0267,0.4646,-0.615 +0x21da5,CUS_0xa663,August,23,743-80-2245,Media_Manager,102287.79,7821.986249,6,6,7.288361749,0,Payday Loan,,23,10.8,0,Standard,1006.178823,43.11384886,28 Years and 2 Months,Yes,762.8051708,649.1564861,High_spent_Medium_value_payments,841.7194444,0,-1.3211,1.4754,-1.0638,0.0764,0.8715 +0x21db1,CUS_0x8cf9,August,50,937-30-9943,Writer,10311.095,,8,5,17,0,,21.10634565,12.52783498,12.02,8,Standard,1154.515668,29.67292425,,Yes,0,129.0477897,Low_spent_Small_value_payments,257.2780019,0,0.2639,0.2519,0.5472,-1.1955,-0.7964 +0x21dbd,CUS_0x563b,August,50,895-16-5219,Media_Manager,43138.55,3671.879167,3,7,2,1,Payday Loan,,7,5.99,,Good,553.12,36.03955079,22 Years and 5 Months,No,27.08617216,107.5503491,High_spent_Small_value_payments,492.5513954,0,0.6592,-0.0114,-0.0096,2.1721,-0.6811 +0x21dc9,CUS_0x81ca,August,18,984-68-3106,Scientist,69907.3,,5,2,8,2,"Personal Loan, and Credit-Builder Loan",0,1,8.98,4,Good,761.7474641,36.82629054,31 Years and 9 Months,No,61.61329562,261.5260699,High_spent_Small_value_payments,551.1013185,0,1.1372,2.0273,0.0462,2.5678,1.714 +0x21dd5,CUS_0xb26,August,42,644-23-8314,Engineer,8898.785,973.5654167,9,5,31.06745738,100,"Student Loan, Personal Loan, Personal Loan, Payday Loan, Auto Loan, Home Equity Loan, Not Specified, and Student Loan",25.96189514,17,9.36,14,Bad,1515.550954,35.66339061,8 Years and 10 Months,Yes,54.34008368,,Low_spent_Small_value_payments,255.5680629,0,-0.0061,0.1235,-0.6877,-0.9874,-1.1557 +0x21de1,CUS_0x84f3,August,41,274-83-2210,Architect,17573.035,,3,2,4321,4,"Payday Loan, Payday Loan, Payday Loan, and Not Specified",16.19490747,,7.6,6,Good,382.921805,22.80437211,32 Years and 11 Months,No,38.78825382,,Low_spent_Medium_value_payments,301.9290112,0,1.1768,0.1475,-0.0426,0.6245,-0.8851 +0x21ded,CUS_0x209a,August,20,472-99-1273,Architect,34977.92,,6,4,3,4,"Credit-Builder Loan, Debt Consolidation Loan, Payday Loan, and Personal Loan",,14,-2.71,4,Good,992.64,33.70747733,18 Years and 0 Months,No,95.27460136,97.54784004,Low_spent_Small_value_payments,364.2602253,0,0.6669,0.082,-1.1634,-1.6837,-1.3457 +0x21df9,CUS_0x4dac,August,42,221-32-4172,Manager,8495.375,439.9479167,7,6,19,7,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Student Loan, and Debt Consolidation Loan",42.31328751,24.29193003,25.31,10,Bad,4165.252924,33.18443555,5 Years and 8 Months,Yes,35.62920706,32.04250373,Low_spent_Small_value_payments,266.3230809,0,-1.9469,0.6074,0.2606,-0.3635,-0.4685 +0x21e05,CUS_0x9c63,August,23,102-18-5045,Teacher,19493.65,1809.470833,7,6,25.06745738,4,"Not Specified, Student Loan, Mortgage Loan, and Mortgage Loan",34.12278776,22,5.78,14,Bad,2101.440954,23.53329443,20 Years and 6 Months,Yes,56.39704749,71.53737122,High_spent_Small_value_payments,286.2923767,0,0.7051,0.9723,-0.8258,-0.7903,-0.0179 +0x21e11,CUS_0x64ed,August,55,689-21-2670,Musician,28741.71,,5,5,9,2,"Not Specified, and Debt Consolidation Loan",0.617574177,3,2.86,7,_,993.17,33.98666951,27 Years and 8 Months,No,28.02880168,,Low_spent_Small_value_payments,258.0340273,0,0.1818,0.2711,-1.3817,0.6987,0.8911 +0x21e1d,CUS_0x88c7,August,34,596-86-5684,_______,32303.73,2927.9775,4,1,5,3,"Payday Loan, Not Specified, and Mortgage Loan",0.041514867,2,7.8,1,Good,1074.399555,30.61465064,21 Years and 9 Months,No,43.44926577,,Low_spent_Small_value_payments,202.6795139,0,0.1369,1.2069,-0.6834,0.5532,0.0966 +0x21e29,CUS_0xb1ca,August,41,749-18-3715,Entrepreneur,20415.41,1648.847665,7,4,14,3,"Debt Consolidation Loan, Mortgage Loan, and Not Specified",19.94966339,13.78516987,5.4,6,Standard,282.1645487,29.59019762,29 Years and 0 Months,Yes,163.1724842,104.0864191,!@9#%8,294.6060149,0,1.0561,0.5003,-0.2497,-0.9823,0.7223 +0x21e35,CUS_0x18e5,August,34,958-83-8767,Architect,16408.77,,4,6,23,3,"Debt Consolidation Loan, Auto Loan, and Personal Loan",,13.54521842,14.11,9,_,1988.041937,35.42563787,17 Years and 3 Months,Yes,37.97203587,64.3466925,High_spent_Medium_value_payments,312.1210216,0,-1.0629,-0.2714,-0.2398,0.3622,0.0445 +0x21e41,CUS_0x550b,August,26,044-88-9323,Teacher,14830.48,,7,9,20,2,"Payday Loan, and Credit-Builder Loan",,23.06488088,7.05,13,_,2721.308203,35.84570503,17 Years and 3 Months,Yes,19.62810139,122.4708458,Low_spent_Small_value_payments,289.3883861,0,-0.124,-0.0262,1.3279,1.0438,0.5512 +0x21e4d,CUS_0x5afe,August,47,470-69-8284,Architect,45013.44,3889.12,3,4,13,0,,23.11333045,15,7.84,2,Standard,1378.25,34.61809293,,No,0,87.44285179,High_spent_Small_value_payments,561.4691482,0,0.8041,-1.0387,1.6941,-0.7152,0.6537 +0x21e59,CUS_0x26a9,August,27,073-62-9451,Media_Manager,15155.01,,8,9,21.88954781,7,"Student Loan, Auto Loan, Auto Loan, Mortgage Loan, Auto Loan, Home Equity Loan, and Not Specified",29.52480425,22,7.7,11,Bad,2525.42,37.14303746,16 Years and 6 Months,Yes,1395.128929,109.4635817,Low_spent_Large_value_payments,227.2235235,0,1.4887,1.2505,2.3607,0.0904,0.3237 +0x21e65,CUS_0x6eb9,August,39,282-62-0950,Manager,16533.7,,7,6,34.06745738,7,"Student Loan, Payday Loan, Payday Loan, Not Specified, Home Equity Loan, Home Equity Loan, and Home Equity Loan",37.18705174,21.92247619,28.15,11,_,4422.312519,34.22704701,7 Years and 10 Months,Yes,78.55521573,46.763062,Low_spent_Small_value_payments,247.5422677,0,-0.4798,-0.7451,-0.1577,-1.3318,2.3265 +0x21e71,CUS_0x68da,August,48,691-11-9777,_______,132427.86,10877.655,1,5,4.288361749,2,"Debt Consolidation Loan, and Home Equity Loan",0,1,2.85,2,_,1191.539537,38.98649425,31 Years and 4 Months,No,164.6105099,806.5607105,!@9#%8,833.4815761,0,1.4571,-1.3346,0.202,-1.683,1.8504 +0x21e7d,CUS_0x5ac7,August,33,037-16-8008,Manager,35491.29,,3,3,12,3,"Mortgage Loan, Payday Loan, and Mortgage Loan",16.32011414,12,5.51,3,Standard,359.63,26.8368046,28 Years and 8 Months,No,63.72664458,84.46756148,High_spent_Small_value_payments,400.1665439,0,-0.2321,0.8804,1.3991,-0.1465,-2.2246 +0x21e89,CUS_0xcfd,August,32,631-39-4024,Lawyer,16905.13,1467.760833,10,7,17.06745738,6,"Auto Loan, Personal Loan, Not Specified, Mortgage Loan, Auto Loan, and Auto Loan",,21.23498335,17.22,14,Bad,5217.50874,39.62653596,5 Years and 3 Months,Yes,49.61401916,122.0820827,Low_spent_Small_value_payments,238.3596935,0,3.2113,-0.9883,-0.1608,-0.8619,-0.9183 +0x21e95,CUS_0x2834,August,80,533-04-5976,Scientist,12249.125,870.7604167,3,5,12,4,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Home Equity Loan",,17,9.4,2,Good,1266.187683,34.89055533,19 Years and 3 Months,No,23.06263798,46.90798869,!@9#%8,312.6565263,0,0.4019,-0.353,-1.5937,-1.0108,0.1155 +0x21ea1,CUS_0x141c,August,43,862-01-8685,Manager,20202.22,1480.518333,7,723,17.28836175,2,"Student Loan, Home Equity Loan, and Mortgage Loan",,17,,4,_,197.54,37.94464931,18 Years and 5 Months,Yes,43.32669047,558.2575591,Low_spent_Small_value_payments,256.4050448,0,-2.6249,0.4954,0.2574,0.1707,-0.2 +0x21ead,CUS_0xb8de,August,30,#F%$D@*&8,Engineer,17538.28,1307.523333,8,5,33.06745738,7,"Not Specified, Debt Consolidation Loan, Auto Loan, Not Specified, Student Loan, Mortgage Loan, and Not Specified",36.48547442,21,16.49,8,Bad,3873.370954,37.17123658,4 Years and 2 Months,Yes,95.21764467,101.7481917,Low_spent_Small_value_payments,197.066209,0,0.0974,-0.1951,-1.2366,-0.2571,-1.268 +0x21eb9,CUS_0x8743,August,26,640-76-9557,Teacher,59649.39,4982.7825,10,7,28,6,"Personal Loan, Personal Loan, Payday Loan, Auto Loan, Credit-Builder Loan, and Home Equity Loan",,23,21.83,10,Bad,4291.3,35.60699543,10 Years and 0 Months,Yes,164.6636774,245.6528784,Low_spent_Small_value_payments,377.9616941,0,1.214,-0.5637,0.7178,1.492,0.2438 +0x21ec5,CUS_0x1755,August,19,728-09-1263,Accountant,13990.925,1309.910417,8,6,18,6,"Auto Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",,7,18.31,9,Standard,1313.3,29.38723125,20 Years and 0 Months,NM,50.09175625,154.553222,Low_spent_Small_value_payments,216.3460634,0,0.857,-0.1058,-0.4709,0.8057,-1.4691 +0x21ed1,CUS_0xbe97,August,52,059-64-0250,Doctor,55336.94,4453.411667,5,5,18,1,Mortgage Loan,16.08068904,11,11.63,3,_,1170.84,31.94186288,26 Years and 10 Months,Yes,34.46198562,10000,Low_spent_Small_value_payments,411.5654679,0,-0.1766,0.5317,0.3913,-0.4001,0.156 +0x21edd,CUS_0x335f,August,43,160-61-2492,Lawyer,32340.83,,4,5,5024,3,"Auto Loan, Credit-Builder Loan, and Not Specified",,9,2.95,4,Standard,1455.41,35.14485955,29 Years and 10 Months,No,79.44209355,179.0313105,Low_spent_Small_value_payments,287.1335126,0,-1.5074,-0.4493,0.9245,0.9529,-1.5841 +0x21ee9,CUS_0x7e30,August,28,788-76-9513,Musician,112743.08,9463.256667,3,6,2,3,"Not Specified, Personal Loan, and Personal Loan",0,3,4.37,4,_,782.51,31.81547986,16 Years and 6 Months,No,235.779899,589.1088156,High_spent_Small_value_payments,381.4369521,0,-0.7971,-1.9344,-0.8748,-0.6903,-0.0634 +0x21ef5,CUS_0x40df,August,21,395-89-7017,Musician,64536.99,5639.0825,6,5,15,4,"Auto Loan, Auto Loan, Home Equity Loan, and Student Loan",22.28112868,18,4.72,6,Standard,1441.12,30.5752834,26 Years and 3 Months,No,210.0160158,748.5439282,Low_spent_Small_value_payments,,0,-0.18,1.0608,1.2092,0.8889,-0.1896 +0x21f01,CUS_0x1430,August,30,945-49-4517,Doctor,20048.23,,2,6,9,4,"Payday Loan, Student Loan, Home Equity Loan, and Payday Loan",8.110474705,7,5.01,4,Good,224.98,34.59999599,19 Years and 4 Months,No,41.94727191,198.1119359,Low_spent_Small_value_payments,213.7093756,0,-1.5758,-2.2199,-0.3715,-0.763,-0.675 +0x21f0d,CUS_0x3d16,August,40,079-17-3731,Musician,14422.22,1013.851667,9,6,27,100,"Debt Consolidation Loan, and Home Equity Loan",44.59295871,27,8.35,8,Bad,1325.68,37.28903598,,Yes,21.00548259,61.23784171,!@9#%8,279.1418424,0,-0.0678,0.0379,0.1986,1.9029,-1.4044 +0x21f19,CUS_0x14b3,August,54,109-01-0234,Lawyer,30637.13,,5,7,10,3,"Auto Loan, Debt Consolidation Loan, and Personal Loan",19.8045672,14,7.18,4,_,414.36,37.33134265,23 Years and 0 Months,NM,48.99794222,153.4053626,High_spent_Small_value_payments,300.3061118,0,-0.8102,-1.1249,0.0697,1.6183,0.4714 +0x21f25,CUS_0x8fd5,August,46,477-76-8519,Mechanic,122835.52,,6,4,17,3,"Debt Consolidation Loan, Personal Loan, and Not Specified",,14,21.73,2081,_,493.99,29.40228459,13 Years and 8 Months,Yes,193.6489267,263.1306386,High_spent_Medium_value_payments,790.6497681,0,-0.9563,-0.057,0.3692,-1.2286,-0.9479 +0x21f31,CUS_0x1a7b,August,32,079-59-6325,Entrepreneur,88574.43,7417.2025,4,5,2,1,Credit-Builder Loan,,8,10.65,8,Good,1451.63,32.03979281,16 Years and 9 Months,No,40.53309262,10000,High_spent_Large_value_payments,829.092801,0,0.7313,0.3333,-1.2365,0.8228,-0.3075 +0x21f3d,CUS_0xb787,August,25,#F%$D@*&8,Lawyer,71875.28,5758.606667,4,5,30,100,"Not Specified, and Payday Loan",23.7498148,16.41488357,11.27,6,Standard,2365.612174,34.2713334,16 Years and 0 Months,Yes,106.0632159,507.2621459,Low_spent_Small_value_payments,252.5353048,0,1.5303,-0.4949,-1.57,0.5592,-1.5368 +0x21f49,CUS_0x78ce,August,44,882-44-3099,Writer,54904.1,4839.341667,7,7,7,2,"Mortgage Loan, and Credit-Builder Loan",15.82883794,15,2.81,2,Good,737.62,28.74588236,23 Years and 10 Months,No,79381,507.4541125,Low_spent_Small_value_payments,204.2847474,0,-0.4991,-0.6066,-1.1037,1.1336,0.0723 +0x21f55,CUS_0x6263,August,34,175-86-9492,Media_Manager,14956.12,1235.343333,2,6,2.067457376,2,"Debt Consolidation Loan, and Debt Consolidation Loan",15.12444731,7.26776225,9.17,2,Good,1169.48647,37.06541381,18 Years and 9 Months,No,17.7391272,44.23475295,Low_spent_Small_value_payments,324.8401652,0,2.5681,0.2871,-0.3506,-0.4602,-0.2861 +0x21f61,CUS_0xbd45,August,32,355-81-4917,Mechanic,36943.76,3081.883854,3,5,8,3,"Personal Loan, Payday Loan, and Mortgage Loan",0.609386665,5,10.35,3,Good,989.4700511,35.43020442,21 Years and 0 Months,No,162.356544,54.83716314,High_spent_Medium_value_payments,443.1613373,0,-0.3392,1.4896,-0.3877,-0.6763,-0.3658 +0x21f6d,CUS_0x1528,August,44,770-63-1122,Entrepreneur,19344.27,,5,3,8,1,Student Loan,16.0079265,13,3.28,2,Standard,861.19,36.69148955,27 Years and 10 Months,No,12.23465091,,Low_spent_Small_value_payments,249.1252507,0,1.3132,-0.4628,-1.6078,0.3388,-0.0868 +0x21f79,CUS_0xaf1e,August,54,358-02-2956,Media_Manager,26420.21,,8,3,11,1,Auto Loan,,15,5.09,1,_,289.24,28.78023476,33 Years and 8 Months,No,14.36404918,90.33698343,Low_spent_Small_value_payments,431.5673841,0,-1.1164,0.8428,1.1628,-1.218,-0.3164 +0x21f85,CUS_0xb39,August,18,139-05-0545,Doctor,15383.17,,8,8,29.06745738,8,"Mortgage Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Not Specified",,21,29.3,16,Bad,4832.500954,34.84640398,7 Years and 9 Months,Yes,97.5833064,,Low_spent_Small_value_payments,239.045555,0,0.5563,-0.3238,-0.0326,-1.0444,0.6701 +0x21f91,CUS_0x3127,August,19,051-95-4107,Accountant,37972.16,2986.346667,9,10,22.06745738,7,"Credit-Builder Loan, Mortgage Loan, Student Loan, Home Equity Loan, Student Loan, Auto Loan, and Personal Loan",33.07762413,18,17.14,11,Bad,4932.040954,38.90046738,12 Years and 2 Months,Yes,217.6533678,,Low_spent_Small_value_payments,20.30538232,0,1.0639,0.0825,-2.6158,-0.7937,0.4783 +0x21f9d,CUS_0x33b7,August,49,823-99-1079,_______,20770.6,,7,4,17,3,"Home Equity Loan, Credit-Builder Loan, and Credit-Builder Loan",,12,,4,Standard,167.61,36.94265255,25 Years and 6 Months,No,35.37081542,100.9483764,Low_spent_Small_value_payments,332.1691415,0,1.0041,0.9859,-0.0406,0.3774,0.3181 +0x21fa9,CUS_0x6919,August,25,962-28-0931,Doctor,107242.64,,4,2,6,1,Student Loan,18.66960189,,10.66,3,Good,258.85,33.53491806,32 Years and 9 Months,No,73.53336066,306.4251144,Low_spent_Medium_value_payments,798.0301916,0,1.2628,0.9459,1.0384,0.7192,-1.5342 +0x21fb5,CUS_0x815,August,80,307-66-3257,Developer,10445.48,,8,10,33.06745738,7,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Student Loan, Personal Loan, and Personal Loan",32.71690919,21.90817028,9.2,8,_,2163.278257,37.83498731,14 Years and 9 Months,Yes,56.97684867,,Low_spent_Small_value_payments,229.9266332,0,0.0872,0.1335,0.5921,-0.0826,0.5624 +0x21fc1,CUS_0x81d4,August,25,246-75-5118,Writer,141873.52,11869.79333,3,7,11,4,"Payday Loan, Home Equity Loan, Not Specified, and Not Specified",13.18936139,9,11.64,4,_,803.61,33.49610757,,No,465.7692341,10000,High_spent_Large_value_payments,742.6685981,0,-0.5366,0.1577,0.6564,-0.0318,-0.5038 +0x21fcd,CUS_0x7ea1,August,29,218-01-8404,Musician,17872695,,9,5,20,5,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, and Student Loan",38.98249825,25.56364506,9.61,13,Bad,3803.074907,31.26532865,9 Years and 11 Months,Yes,22.96083536,57.01275655,Low_spent_Small_value_payments,303.9491164,0,-1.5529,-0.3343,0.2793,-0.545,-0.6705 +0x21fd9,CUS_0x54b7,August,39,403-79-7249,Mechanic,29269.81,,5,7,10,2,"Credit-Builder Loan, and Payday Loan",21.2317467,14,13.67,6,Standard,504.78,26.04835788,31 Years and 0 Months,Yes,39.17656388,248.4252175,Low_spent_Small_value_payments,216.513302,0,0.2316,0.5442,-0.963,0.7629,-0.7481 +0x21fe5,CUS_0xb87d,August,50,586-20-2678,Mechanic,40671.27,3476.2725,2,5,8.288361749,2,"Credit-Builder Loan, Credit-Builder Loan, and Credit-Builder Loan",0,3,5.21,2,_,431.1804301,29.16471504,27 Years and 4 Months,No,92.71316837,481.3068896,High_spent_Large_value_payments,441.2731361,0,-0.1034,-0.6643,-1.1467,-0.0874,0.3062 +0x21ff1,CUS_0x70d4,August,39,049-44-5243,Accountant,37107.79,3114.315833,3,75,4,0,,7.321180311,2.424133702,10.39,6,Good,98.99557086,38.65337341,28 Years and 10 Months,No,0,156.5144548,High_spent_Small_value_payments,414.9171286,0,-0.0667,-0.2668,0.8622,-1.8531,0.2713 +0x21ffd,CUS_0x9176,August,18,217-87-7841,Writer,32144.54,,9,7,33.06745738,8,"Auto Loan, Student Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Student Loan, Auto Loan, and Student Loan",,21,27.29,6,Bad,3584.330954,38.36040713,7 Years and 2 Months,Yes,166.0906529,242.1195286,Low_spent_Small_value_payments,150.1406973,0,-0.1077,0.7429,-0.3424,-0.413,0.0112 +0x22009,CUS_0x8cf2,August,52,260-53-2581,Lawyer,35572.08,2683.34,2,6,7,4,"Payday Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",,9,10.97,3,_,1078.33,22.11874622,16 Years and 5 Months,No,118.1398956,168.7770555,Low_spent_Large_value_payments,251.4170488,0,0.233,-1.5962,-0.6048,0.1009,-0.1418 +0x22015,CUS_0x9207,August,24,#F%$D@*&8,Architect,15915.045,1256.25375,8,5,12,3,"Credit-Builder Loan, Payday Loan, and Not Specified",15.77375978,,1.71,4,Standard,810.26,37.19322838,30 Years and 3 Months,No,25.47281888,72.11093127,Low_spent_Small_value_payments,318.0416249,0,1.5642,-0.9835,-1.7364,-0.6007,-2.7963 +0x22021,CUS_0x8e93,August,38,086-95-0897,Writer,59227.68,4790.64,10,5,26,2,"Payday Loan, and Debt Consolidation Loan",,20.65397253,13.7,14,Standard,1395.201541,24.14488756,11 Years and 2 Months,Yes,91.59134101,101.9360043,High_spent_Small_value_payments,545.5366546,0,0.3956,2.1006,0.145,1.506,-0.2706 +0x2202d,CUS_0x72a7,August,51,908-28-4029,Doctor,23414.76,1961.23,3,7,7,2,"Payday Loan, and Personal Loan",14.98814128,,2.52,0,Standard,321.2967394,29.22693518,19 Years and 10 Months,Yes,28.83160967,187.9457744,Low_spent_Large_value_payments,268.0317036,0,-0.8621,-1.1928,-2.2504,-0.1827,-0.9667 +0x22039,CUS_0x668f,August,26,171-23-7188,Journalist,26175.31,,8,4,11,0,,8.329152264,9,18.58,7,Standard,601.78,34.35768541,,Yes,174.5023053,143.9819607,Low_spent_Small_value_payments,363.5456226,0,-0.0595,1.5052,0.0263,-1.1111,-0.9772 +0x22045,CUS_0x9ab3,August,40,810-50-2169,Writer,16367.605,,5,7,9,4,"Home Equity Loan, Credit-Builder Loan, Student Loan, and Auto Loan",4.258056898,7.22575997,10.06,1,Good,1119.307275,33.43309703,33 Years and 2 Months,No,50.19275241,88.92109355,Low_spent_Small_value_payments,273.0828624,0,0.5829,-0.2708,0.5756,-0.1693,-0.1609 +0x22051,CUS_0x2b6a,August,38,125-81-1946,Journalist,26805.85,,7,7,8,5,"Auto Loan, Payday Loan, Personal Loan, Credit-Builder Loan, and Mortgage Loan",12.45271883,13,16.29,8,Standard,1434.01,25.92502138,13 Years and 2 Months,Yes,100.1392756,69.77385386,High_spent_Medium_value_payments,314.3689539,0,0.029,0.6422,0.8237,-0.2321,0.9914 +0x2205d,CUS_0x1471,August,43,#F%$D@*&8,Teacher,31061.8,,5,7,10,4,"Credit-Builder Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",6.989402658,6,6.13,8,Standard,157.62,27.36324665,17 Years and 5 Months,No,76.88013523,36.22169527,High_spent_Medium_value_payments,390.3465028,0,0.6844,-0.112,0.0166,-0.1312,0.3484 +0x22069,CUS_0x853c,August,54,068-17-0388,Architect,46449.98,4081.831667,3,5,18,3,"Not Specified, Student Loan, and Debt Consolidation Loan",25.96864555,18,3.5,7,Standard,1061.577014,31.21787166,33 Years and 3 Months,No,95.96768768,229.9869717,High_spent_Small_value_payments,374.6559481,0,0.7318,0.8284,0.639,0.7383,-0.7263 +0x22075,CUS_0x18c5,August,38,383-85-3208,Lawyer,140947.8,,5,7,5,2,"Personal Loan, and Credit-Builder Loan",90,2438,8.08,9,Standard,1348.57,27.62514672,19 Years and 5 Months,Yes,224.2138181,,Low_spent_Large_value_payments,762.4874325,0,0.9309,0.8314,2.0302,1.5625,0.8349 +0x22081,CUS_0x2e06,August,30,412-24-8689,Lawyer,40113.08,3086.756667,3,7,1,4,"Credit-Builder Loan, Personal Loan, Student Loan, and Auto Loan",0,0,5.88,5,Good,25.78,32.16429549,20 Years and 9 Months,No,76.33532872,211.7121673,High_spent_Small_value_payments,280.6281706,0,-0.2585,-0.6876,-0.3624,-3.1718,-0.405 +0x2208d,CUS_0xc0a3,August,27,732-50-0677,Engineer,43457.34,3666.445,6,5,31,4,"Not Specified, Payday Loan, Payday Loan, and Credit-Builder Loan",,19.91091591,8.24,11,Bad,1518.654849,34.09885687,18 Years and 6 Months,Yes,124.9314763,,High_spent_Small_value_payments,295.0153357,0,1.0212,-1.7618,-0.5071,-0.8453,-0.0293 +0x22099,CUS_0xa5dd,August,47,603-55-0109,Teacher,39379.07,,2,1,8,0,,15.51218921,,6.65,9,Good,635.5145043,39.48288426,28 Years and 0 Months,No,0,,High_spent_Medium_value_payments,459.8633115,0,-0.3826,-0.0786,0.9474,2.8953,-1.1394 +0x220a5,CUS_0x2288,August,24,092-68-5200,Teacher,155700.32,12704.02667,4,5,8.288361749,0,,,5,10.08,4,Good,988.95,28.86030247,33 Years and 0 Months,No,64439,1604.80837,Low_spent_Small_value_payments,375.5317578,0,-1.7377,-0.5512,-0.2935,-0.896,-0.943 +0x220b1,CUS_0xb304,August,42,322-67-8555,Writer,69984.72,5570.06,6,5,12,3,"Auto Loan, Payday Loan, and Personal Loan",16.34184575,11,15.01,6,_,836.2996242,28.89417656,18 Years and 8 Months,NM,155.0776141,195.4230178,High_spent_Small_value_payments,491.8515835,0,-2.0938,-0.3165,1.1848,-0.6747,1.6279 +0x220bd,CUS_0x9da4,August,18,853-63-1222,Architect,77380.48,6229.819072,5,2,7.288361749,0,,0,0,2.2,1,_,441.3746456,26.85619455,20 Years and 3 Months,No,388.5542618,531.9499385,High_spent_Large_value_payments,802.3403935,0,-0.3211,-1.3182,-0.0857,-1.3493,-0.7641 +0x220c9,CUS_0x5983,August,30,132-99-5339,Writer,69362.92,,6,6,9,2,"Home Equity Loan, and Student Loan",,9,11.41,5,Standard,1042.95,25.38248509,18 Years and 5 Months,Yes,67.55351587,,High_spent_Small_value_payments,579.1122394,0,-0.8701,2.0054,0.6132,-1.6579,0.3194 +0x220d5,CUS_0x775a,August,35,657-83-9284,Teacher,85742.82,6400.101773,2,2,1,2,"Payday Loan, and Debt Consolidation Loan",0,2,4.74,5,Good,1253.52,38.14118987,17 Years and 6 Months,No,820.4957046,240.7584971,High_spent_Medium_value_payments,611.0025256,0,-0.495,-0.4398,-1.0155,-1.5965,-0.6288 +0x220e1,CUS_0xc317,August,30,809-29-7678,Journalist,55115.26,4302.938333,7,4,14,0,,,15,10.62,3,Standard,134.87,24.9247494,24 Years and 4 Months,Yes,0,10000,High_spent_Small_value_payments,396.2221705,0,1.9859,0.3823,0.0252,-1.7175,-0.1661 +0x220ed,CUS_0x7255,August,40,205-47-5666,Accountant,34271.96,,3,7,19,3,"Debt Consolidation Loan, Personal Loan, and Home Equity Loan",,19,1.87,5,Standard,839.04,36.79446018,,No,81.97543879,69.3329897,High_spent_Medium_value_payments,404.5912382,0,-1.7824,-1.3122,-0.6614,1.389,2.0833 +0x220f9,CUS_0x8348,August,25,677-09-7618,Entrepreneur,58089.39,4835.7825,8,6,25,7,"Personal Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, and Personal Loan",,27.38291098,17.55,12,_,2766.128896,26.13161028,1 Years and 8 Months,Yes,311.9848218,165.7484351,Low_spent_Medium_value_payments,285.8449932,0,-0.0144,-0.1256,-0.9153,-0.0674,-1.203 +0x22105,CUS_0x6dd6,August,18,919-89-2002,Scientist,28675.48,2154.623333,8,9,33.95700519,6,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Auto Loan, and Payday Loan",,24,2.64,13,Bad,2583.910954,35.26800603,,NM,1405.19419,86.01200341,High_spent_Medium_value_payments,253.2057707,0,0.1847,-0.6184,0.1903,0.4876,0.9331 +0x22111,CUS_0x23e5,August,18,788-23-1545,_______,31563.9,,10,10,19,5,"Student Loan, Student Loan, Not Specified, Mortgage Loan, and Home Equity Loan",32.12185183,22,8.44,8,_,2241.78,40.12935382,13 Years and 10 Months,Yes,99.52324977,69.08564156,High_spent_Medium_value_payments,362.2236087,0,-1.3344,-0.4311,1.0307,0.785,0.315 +0x2211d,CUS_0x50e6,August,20,487-62-4672,Developer,31819.53,,3,3,6,0,,,12,2.67,4,Good,463.4992892,36.29177329,31 Years and 8 Months,No,0,53.25555843,High_spent_Large_value_payments,434.9690346,0,-1.0139,0.8478,-1.797,0.8952,1.1599 +0x22129,CUS_0x973e,August,29,563-06-7079,Architect,54284.94,,7,8,31.06745738,7,"Mortgage Loan, Not Specified, Student Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Student Loan",47.68611814,28.13434683,28.63,11,Bad,4915.183026,31.55966021,5 Years and 6 Months,Yes,190.6419746,501.3298434,Low_spent_Small_value_payments,38.68239403,0,-1.4727,1.7955,-1.5353,-0.8407,-0.6334 +0x22135,CUS_0x652e,August,53,179-42-1358,Accountant,45749.06,3405.417951,6,5,13,4,"Auto Loan, Auto Loan, Mortgage Loan, and Auto Loan",13.90866725,10,5.74,3,Standard,382.5964014,40.30946552,23 Years and 4 Months,Yes,305.2580327,173.9439098,Low_spent_Small_value_payments,382.2799041,0,-0.5461,0.4839,1.216,-0.5018,-2.5419 +0x22141,CUS_0xb5c9,August,29,259-88-4054,Musician,8826.66,508.555,10,10,34.95700519,9,"Debt Consolidation Loan, Payday Loan, Home Equity Loan, Mortgage Loan, Personal Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",,,24.31,11,Bad,4075.040954,40.33799631,8 Years and 11 Months,Yes,1369.771966,47.01921186,Low_spent_Small_value_payments,203.0139528,0,-0.3318,-2.8308,0.994,0.2531,-0.352 +0x2214d,CUS_0xbf4d,August,33,618-31-0112,_______,144469.36,11835.11333,1,5,5,1,Credit-Builder Loan,0,0,3.52,4,_,361.73,37.12878597,33 Years and 0 Months,No,95.04860774,591.4510043,High_spent_Small_value_payments,757.0117212,0,-0.6526,0.5202,-0.4364,0.8001,0.5122 +0x22159,CUS_0x63c,August,20,950-48-6281,Manager,56062.22,4680.851667,4,4,8,6,"Not Specified, Payday Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, and Mortgage Loan",26.11366351,16.73019948,25.4,7,Standard,214.1230428,31.25217431,17 Years and 11 Months,NM,175.6312767,119.0969993,High_spent_Medium_value_payments,423.3568906,0,0.4299,0.1662,1.4582,-0.9062,-0.3606 +0x22165,CUS_0x45e5,August,32,872-43-3172,Doctor,101821.72,8601.143333,5,6,18,5,"Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Not Specified, and Student Loan",,12,21.55,8,_,493.6163529,40.96379345,17 Years and 10 Months,Yes,257.8392418,165.2745186,High_spent_Large_value_payments,701.4971662,0,1.9846,-0.7424,-0.2962,-0.9676,-0.1334 +0x22171,CUS_0x13b8,August,29,094-65-0795,Scientist,18341.47,1323.455833,2,3,6,0,,2.303408817,6,5.93,6,Good,1300.64,38.68624106,18 Years and 5 Months,No,0,98.06490155,Low_spent_Medium_value_payments,314.2806818,0,0.8814,0.3905,0.8272,-3.3071,0.9763 +0x2217d,CUS_0x665c,August,26,624-89-5858,Developer,9115.47,,10,7,24.06745738,9,"Debt Consolidation Loan, Auto Loan, Not Specified, Personal Loan, Personal Loan, Payday Loan, Student Loan, Student Loan, and Debt Consolidation Loan",,23.99728349,20.41,11,Bad,3044.082226,37.92372322,2 Years and 5 Months,Yes,63.32264363,,Low_spent_Small_value_payments,183.6980958,0,0.4195,-0.905,-0.8658,-1.3139,0.0259 +0x22189,CUS_0x52a5,August,33,749-66-2495,Writer,35908.74,3149.395,4,4,10,2,"Personal Loan, and Credit-Builder Loan",,,10.08,5,Standard,691.5669003,26.25985458,7 Years and 3 Months,Yes,53.98229466,223.8812183,Low_spent_Large_value_payments,307.0759871,0,0.5469,-0.221,1.4905,-0.6074,-0.1295 +0x22195,CUS_0x8661,August,37,887-22-9485,Accountant,40276.27,3381.355833,5,4,12,3,"Payday Loan, Personal Loan, and Student Loan",,13,9.02,9,Good,786.37,29.86174237,22 Years and 4 Months,No,72785,204.3397697,High_spent_Small_value_payments,339.6794568,0,-0.6506,0.8329,0.8685,2.4861,-0.2332 +0x221a1,CUS_0xa857,August,37,966-14-2191,Developer,19998.6,,6,7,15,0,,,13.74296928,1.34,3,Standard,938.6156093,35.76515478,22 Years and 4 Months,No,0,,Low_spent_Small_value_payments,254.2772699,0,0.9981,-1.5894,1.0502,0.109,-0.4407 +0x221ad,CUS_0x7b30,August,36,064-85-0175,Scientist,10977.79,,6,3,15,0,,14.21094875,15,18.07,6,Standard,1457.57,33.11935146,24 Years and 0 Months,Yes,0,28.89224347,Low_spent_Large_value_payments,352.1893399,0,0.5258,-1.1925,2.1889,-0.3731,-0.7143 +0x221b9,CUS_0x6854,August,50,316-84-2157,Scientist,42150.69,2927.278466,3,3,6,1,Home Equity Loan,9.707960276,11,7.87,4,Good,1013.95,29.07630845,31 Years and 5 Months,No,465.645791,,High_spent_Medium_value_payments,483.2498564,0,-1.1698,1.0952,0.2451,-0.7056,0.3436 +0x221c5,CUS_0xc1ec,August,18,089-08-2627,Entrepreneur,40976.22,3473.685,5,8,5,3,"Payday Loan, Home Equity Loan, and Student Loan",12.47847652,10,11.49,7,Standard,1332.82,38.26830228,17 Years and 9 Months,Yes,79.11463947,114.9104361,High_spent_Medium_value_payments,403.3434245,0,-2.0063,0.5534,1.3724,-1.1722,0.508 +0x221d1,CUS_0x2551,August,47,#F%$D@*&8,_______,32390.15,,3,6,5,0,,20.53365169,17,8.81,4,Standard,596.56,28.31801704,29 Years and 11 Months,No,0,10000,High_spent_Small_value_payments,366.207041,0,0.8485,0.2064,1.9567,1.5174,-0.1527 +0x221dd,CUS_0x8603,August,20,464-87-3935,Manager,116897.68,9893.473333,0,4,12,1,Home Equity Loan,,11,10.35,6,Good,742.09,38.1101431,,NM,75.39938582,489.1862728,Low_spent_Large_value_payments,694.7616747,0,-1.4391,-2.0203,1.2268,1.8293,0.6299 +0x221e9,CUS_0x1be0,August,43,620-09-7019,Accountant,37443.13,,2,4,7,0,,1.031770075,1.202518271,7.33,2,_,927.6299274,25.06510099,25 Years and 9 Months,NM,0,383.263701,Low_spent_Small_value_payments,215.8623824,0,-0.5919,0.775,-0.2618,0.1612,1.9857 +0x221f5,CUS_0x2f49,August,26,524-50-8228,Journalist,29434.08,,9,6,31,100,"Not Specified, Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,25,26.97,14,_,2342.293196,33.88833472,2 Years and 8 Months,Yes,63.92120899,32.63766702,High_spent_Medium_value_payments,420.3222535,0,2.1601,1.8001,0.4148,-0.4045,0.6028 +0x22201,CUS_0x3d40,August,22,#F%$D@*&8,Entrepreneur,82410.12,,0,3,2.288361749,0,Student Loan,8.640318763,11,0.89,4,_,587.66,33.3674201,32 Years and 3 Months,No,56.203542,857.9141508,!@9#%8,469.1707682,0,-1.0808,-0.2692,0.5781,-0.8217,-0.0906 +0x2220d,CUS_0x58b2,August,31,673-29-9342,Writer,120696.88,10331.07333,8,5,5363.288362,0,,16.36990766,,8.91,7,Good,425.0756658,43.32988231,23 Years and 3 Months,No,0,835.3505795,High_spent_Medium_value_payments,918.6935993,0,0.2525,0.429,-0.0475,-0.6306,0.1646 +0x22219,CUS_0x8984,August,30,669-48-7668,_______,154493.88,13023.49,2,4,11,4,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, and Personal Loan",,6,7.41,3,Good,577.39,36.30981858,17 Years and 0 Months,No,328.0651114,710.3263567,High_spent_Small_value_payments,523.9575319,0,0.557,0.98,-1.7075,-1.6129,-0.6969 +0x22225,CUS_0x8b66,August,30,454-08-3421,Doctor,39189.92,3049.826667,4,7,5,1,Student Loan,,10.40690093,10.81,2,Standard,1516.010758,37.34521676,20 Years and 6 Months,NM,24.00578501,33.84153491,High_spent_Medium_value_payments,497.1353467,0,1.909,0.1139,-0.8391,0.2348,-0.7808 +0x22231,CUS_0x1691,August,44,003-83-8192,Media_Manager,44744,3457.666667,3,3,10,0,,9.055051465,11,5.39,6,_,761.54,39.90186197,22 Years and 10 Months,No,0,109.4065661,High_spent_Medium_value_payments,486.3601006,0,-1.5235,0.816,-0.4257,0.9446,-0.6007 +0x2223d,CUS_0xc68d,August,41,527-59-1992,Musician,15497.02,1193.418333,8,4,19,2,"Home Equity Loan, and Debt Consolidation Loan",18.13022303,,9.61,6,Standard,1180.56,35.18822549,15 Years and 11 Months,Yes,24.16668313,107.7188638,Low_spent_Medium_value_payments,267.4562864,0,-0.2807,0.4134,-0.9008,0.8769,1.0676 +0x22249,CUS_0x5b2,August,40,402-39-2991,Doctor,28144.3,,7,7,25.06745738,7,"Personal Loan, Personal Loan, Home Equity Loan, Personal Loan, Not Specified, Student Loan, and Auto Loan",,25,16.33,8,Bad,3183.390954,31.3626818,9 Years and 6 Months,Yes,150.4909724,142.3229585,Low_spent_Small_value_payments,201.2016145,0,-1.366,0.5448,-1.9531,-0.2817,-0.4307 +0x22255,CUS_0xa624,August,21,722-59-3496,_______,46246.9,,7,5,11,7,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",26.07160894,18,15.46,4,Standard,1120.46,29.53489286,7 Years and 11 Months,NM,223.6858517,39.96770572,High_spent_Large_value_payments,353.9372759,0,-0.5,-0.7096,0.5227,1.4144,-0.1202 +0x22261,CUS_0xc3b9,August,18,813-06-0003,Doctor,80718.56,6543.546667,3,6,10,7,"Home Equity Loan, Payday Loan, Home Equity Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Not Specified",11.2954164,11,10.77,10,_,1346.31,30.69126114,19 Years and 5 Months,Yes,368.4280762,114.661301,High_spent_Large_value_payments,411.2652894,0,-0.1126,0.9597,-0.7497,-0.6103,-0.2712 +0x2226d,CUS_0x8672,August,27,#F%$D@*&8,Writer,30619.73,,5,3,19,2,"Home Equity Loan, and Debt Consolidation Loan",28.56029867,20.68968062,9.88,4,Standard,1249.363803,39.62687483,27 Years and 4 Months,Yes,30.45301391,74.38507273,Low_spent_Medium_value_payments,450.22633,0,0.3033,-0.0187,1.445,-0.0456,0.0327 +0x22279,CUS_0x96e5,August,23,947-60-0883,Developer,19017.29,,9,6,18,6,"Debt Consolidation Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Student Loan, and Not Specified",,19,5.96,11,_,2088.76,27.69295298,18 Years and 8 Months,Yes,71.66686597,107.284669,Low_spent_Small_value_payments,285.2258817,0,1.9366,-0.2205,0.7535,0.5611,-1.2859 +0x22285,CUS_0x928f,August,39,117-83-9437,Accountant,79621.26,,8,7,12,3,"Home Equity Loan, Personal Loan, and Credit-Builder Loan",13.68352601,13.51529061,8.31,8,Standard,1550.24228,34.20501176,18 Years and 10 Months,Yes,140.0485863,,High_spent_Small_value_payments,447.005073,0,-0.3554,-0.3598,1.5624,-0.3032,-1.1709 +0x22291,CUS_0x771e,August,32,923-06-8667,Teacher,20914.47,,8,5,16,2,"Debt Consolidation Loan, and Personal Loan",,,0.98,7,_,1485.021688,35.78560646,12 Years and 8 Months,Yes,25.95824477,,Low_spent_Medium_value_payments,297.1794809,0,-1.7351,-0.3365,0.4493,-0.0802,-0.1553 +0x2229d,CUS_0x5220,August,31,822-95-3680,Musician,39916.18,3257.348333,8,5,19,9,"Student Loan, Not Specified, Not Specified, Credit-Builder Loan, Auto Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",31.49024733,22,17.13,7,Bad,3988.4,27.44734505,9 Years and 10 Months,Yes,163.2808288,,High_spent_Small_value_payments,241.563726,0,-0.6994,-1.3749,-1.6309,-1.2519,0.0693 +0x222a9,CUS_0x833d,August,32,732-53-2113,Entrepreneur,15528.29,1340.024167,8,8,21.88954781,7,"Not Specified, Payday Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Student Loan",17.66630076,14,8.69,10,_,3025.44,29.40412047,7 Years and 8 Months,NM,1389.909607,10000,Low_spent_Small_value_payments,262.6696423,0,0.4869,-0.7728,-1.4113,0.4702,-0.0749 +0x222b5,CUS_0xbe56,August,34,346-66-7622,Media_Manager,19807.545,,0,3,10,3,"Home Equity Loan, Student Loan, and Personal Loan",,8,8.94,1,Good,1286.59,24.80356556,22 Years and 2 Months,No,38.29618289,32.30244566,High_spent_Medium_value_payments,373.6642464,0,0.1686,-1.0199,0.8377,-1.1163,-1.1925 +0x222c1,CUS_0xbfbf,August,43,167-92-5388,Mechanic,59426.92,4363.489902,6,5,25.06745738,9,"Home Equity Loan, Payday Loan, Student Loan, Student Loan, Credit-Builder Loan, Student Loan, Not Specified, Personal Loan, and Home Equity Loan",26.24669852,17,18.06,15,Bad,4713.280954,41.65676344,10 Years and 2 Months,Yes,643.4714102,,High_spent_Medium_value_payments,340.4752199,0,0.5668,0.6872,0.8918,-0.8002,-0.3975 +0x222cd,CUS_0x894f,August,33,647-50-0887,Scientist,19223.95,1761.995833,10,8,24.06745738,4,"Not Specified, Mortgage Loan, Not Specified, and Mortgage Loan",,,14.1,15,Bad,1966.306947,23.9921497,18 Years and 5 Months,Yes,47.63077264,175.613621,Low_spent_Small_value_payments,216.2349017,0,-0.2537,-0.8621,1.274,-1.1495,-0.6123 +0x222d9,CUS_0x67c8,August,37,738-90-3259,Lawyer,36875.14,,6,4,13,4,"Mortgage Loan, Payday Loan, Not Specified, and Personal Loan",23.91600713,16,18.42,3,Standard,473.6,28.84302428,16 Years and 3 Months,Yes,109.8943871,183.4303604,Low_spent_Small_value_payments,281.2680858,0,-0.6552,0.8699,1.1492,-0.6266,1.3609 +0x222e5,CUS_0x69bf,August,38,514-39-2995,Engineer,10156.33,,6,8,20.88954781,8,"Not Specified, Personal Loan, Payday Loan, Payday Loan, Payday Loan, Not Specified, Not Specified, and Not Specified",28.61489228,20,25.76,14,_,4345.51,28.92421807,10 Years and 9 Months,Yes,1382.773939,,Low_spent_Large_value_payments,217.4269563,0,0.8955,-1.0781,-0.2988,-0.1168,0.2363 +0x222f1,CUS_0xbd7c,August,33,154-57-2394,_______,20922.34,,7,6,18,3,"Payday Loan, Student Loan, and Personal Loan",18.10114045,13,8.6,7,Standard,363.49,26.8656669,32 Years and 11 Months,Yes,40.81664089,,High_spent_Large_value_payments,369.7848003,0,0.221,0.1801,0.1619,0.982,-1.821 +0x222fd,CUS_0x6974,August,40,244-46-0261,Teacher,113040.28,9174.023333,1,5,10,1,Personal Loan,11.21021324,9,9.84,2,Good,9.359432086,35.35792595,17 Years and 4 Months,NM,70.99201655,177.4364137,High_spent_Large_value_payments,935.0432105,0,-1.0843,-1.0152,-0.7881,-0.0421,-0.1801 +0x22309,CUS_0x4c0,August,39,880-98-7137,Media_Manager,74017.08,,6,10,21.95700519,100,"Debt Consolidation Loan, Personal Loan, Mortgage Loan, Student Loan, Mortgage Loan, and Credit-Builder Loan",48.26772771,27,21.76,12,Bad,4910.350954,28.11934555,3 Years and 4 Months,Yes,1542.483155,229.2260661,Low_spent_Medium_value_payments,424.7494091,0,0.9374,-1.6341,-0.2325,-0.4805,-0.8127 +0x22315,CUS_0x7500,August,36,841-44-2527,Scientist,166621.84,,0,3,0.288361749,0,,4.503800158,8,5.53,1,Good,432.7219613,34.35359469,,No,0,1623.877148,Low_spent_Small_value_payments,605.9259342,0,1.501,0.1466,1.0982,0.883,-1.0105 +0x22321,CUS_0x6cf6,August,44,501-66-4455,_______,105774.57,8540.5475,5,5,16,2,"Auto Loan, and Payday Loan",12.71413149,8,15.38,7,_,582.13,35.66706804,29 Years and 0 Months,Yes,148.6555317,,High_spent_Medium_value_payments,837.4314028,0,0.304,1.0384,-0.8496,0.3785,0.8766 +0x2232d,CUS_0x143d,August,27,797-30-1627,Scientist,19827.36,,8,7,17,1,Auto Loan,12.22326724,10,9.96,6,_,282.29,25.01789639,22 Years and 8 Months,NM,15.04120329,70.85315783,Low_spent_Small_value_payments,351.0336389,0,0.8079,2.5215,-0.1505,0.1783,-1.1486 +0x22339,CUS_0x6406,August,36,640-91-5326,Scientist,41442.4,,3,1,5,4,"Payday Loan, Not Specified, Home Equity Loan, and Payday Loan",,6,9.54,6,_,386.1382407,37.11851601,25 Years and 0 Months,No,125.404285,,High_spent_Medium_value_payments,389.1749169,0,0.3696,1.354,0.3929,-1.2385,1.5319 +0x22345,CUS_0x2b3c,August,52,#F%$D@*&8,Accountant,35751.93,3133.3275,5,5,261.2883617,0,,0,1,7.54,0,Good,343.5581569,34.99797138,30 Years and 6 Months,No,0,477.9699885,High_spent_Medium_value_payments,513.9008894,0,-2.2297,-1.2142,-0.0052,-2.0889,0.317 +0x22351,CUS_0x4d19,August,18,809-23-0817,_______,7448.78,,3,7,16,100,"Mortgage Loan, and Debt Consolidation Loan",21.60939509,17,12.81,15,Standard,1362.72,27.82010056,20 Years and 4 Months,Yes,8.593567256,24.82808586,Low_spent_Medium_value_payments,326.1515135,0,0.2574,-0.2756,-0.0268,-0.098,1.662 +0x2235d,CUS_0x5204,August,37,503-20-4145,Developer,39706.44,3387.87,10,8,31.95700519,8,"Payday Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Not Specified, Personal Loan, Home Equity Loan, and Personal Loan",,19.8947583,29.21,8,Bad,5184.091527,26.4641574,7 Years and 4 Months,Yes,1579.210649,142.5245961,High_spent_Medium_value_payments,146.0013858,0,-0.4745,-2.2309,-1.5428,1.3655,-0.767 +0x22369,CUS_0x217f,August,36,666-11-6933,Mechanic,86032.17,7189.3475,3,6,6.288361749,2,"Personal Loan, Debt Consolidation Loan, and Payday Loan",,0,3.07,1,Good,1052.714004,37.90992356,31 Years and 5 Months,No,135.6166405,920.8277219,Low_spent_Medium_value_payments,430.2725628,0,-0.6191,-1.2079,-0.0953,0.7791,-0.7572 +0x22375,CUS_0x5c7d,August,38,#F%$D@*&8,Developer,7467.86,661.3216667,9,10,21.06745738,2,"Payday Loan, and Payday Loan",24.79483183,,10.84,15,_,1781.279893,25.19837682,14 Years and 8 Months,Yes,12.35395766,87.64699197,Low_spent_Small_value_payments,229.4109291,0,0.8037,0.4542,-0.407,0.3801,-1.9688 +0x22381,CUS_0x36a2,August,19,670-46-2510,Lawyer,31318.84,2334.903333,8,9,27.95700519,8,"Credit-Builder Loan, Auto Loan, Auto Loan, Not Specified, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",34.93501937,22,28.55,10,Bad,4509.560954,41.81603927,9 Years and 5 Months,Yes,1467.78842,215.968135,Low_spent_Large_value_payments,98.68340948,0,0.7283,0.5657,-0.8341,1.398,0.2964 +0x2238d,CUS_0x9985,August,27,#F%$D@*&8,_______,29394.88,,6,3,8,0,,25.37023043,17,7.17,7,Standard,519.81,35.3722864,19 Years and 9 Months,No,0,57.73229592,High_spent_Medium_value_payments,454.9250374,0,0.3679,-1.2443,0.8925,0.1656,1.6358 +0x22399,CUS_0x9bc7,August,22,686-05-1940,Mechanic,35033.33,,5,5,7,4,"Personal Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",19.43307817,14,-0.92,3,_,1319.63,32.20335856,20 Years and 3 Months,NM,60.8062385,175.5559226,Low_spent_Medium_value_payments,364.1822555,0,1.1288,1.377,2.4228,0.256,-0.029 +0x223a5,CUS_0x6d02,August,39,912-24-1328,Entrepreneur,76519.3,6277.608333,5,7,10,4,"Student Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",1.30439203,5,10.43,3,Good,260.85,33.23967149,32 Years and 3 Months,No,228.5434194,120.4197938,High_spent_Large_value_payments,518.7976202,0,-1.2596,1.5545,2.0724,1.9702,-1.3786 +0x223b1,CUS_0x4faf,August,35,017-71-4068,Engineer,70590.98,5602.581667,4,4,3.288361749,2,"Auto Loan, and Credit-Builder Loan",0,3,10.19,,Good,223.7974554,23.83688064,21 Years and 5 Months,No,61.84529519,11606.9251,Low_spent_Small_value_payments,519.2427066,0,0.5918,0.8379,0.4514,1.9364,1.4553 +0x223bd,CUS_0xbd07,August,20,778-35-8040,Developer,83340.98,6978.081667,2,1,5.288361749,0,Mortgage Loan,0,1,11.49,9,_,822.5047735,35.7942434,22 Years and 8 Months,NM,53.55095826,607.2517498,High_spent_Medium_value_payments,733.6876004,0,0.278,-1.0355,-0.4126,-0.8826,-0.9983 +0x223c9,CUS_0x14d8,August,47,577-56-8377,Writer,53052.2,4546.016667,6,5,12,2,"Credit-Builder Loan, and Payday Loan",,10.19599821,6.57,4,Standard,472.2537557,28.46298818,17 Years and 0 Months,No,79.60689296,,Low_spent_Small_value_payments,126.545832,0,-0.6795,-0.8137,-0.7815,-1.6515,-1.3148 +0x223d5,CUS_0x107e,August,18,463-69-6790,Architect,75095.91,6269.9925,5,6,15,6,"Personal Loan, Payday Loan, Personal Loan, Student Loan, Home Equity Loan, and Payday Loan",9.735433077,10,20.53,8,Standard,989.71,24.21913739,12 Years and 0 Months,Yes,78446,,Low_spent_Medium_value_payments,234.0665603,0,-0.4109,-0.3235,0.2504,0.9066,-0.0922 +0x223e1,CUS_0x3799,August,53,821-63-1934,Journalist,15874.01,,1,3,5,0,,,7.066078385,2.32,3,Good,1308.909694,31.10267784,32 Years and 3 Months,No,0,,Low_spent_Small_value_payments,253.8473365,0,-1.5189,-2.456,-0.2027,0.2155,1.1434 +0x223ed,CUS_0x6623,August,26,877-03-5521,Musician,38480.95,2912.745833,5,3,2,0,,3.444066093,3.574939588,6.81,4,Good,1385.278981,30.08998617,20 Years and 10 Months,No,0,203.6752511,Low_spent_Small_value_payments,377.5993322,0,0.415,-0.9189,0.4201,1.4002,-0.8242 +0x223f9,CUS_0x4e43,August,19,781-53-2870,Accountant,8295.87,,8,9,1440.957005,8,"Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, Home Equity Loan, Auto Loan, and Payday Loan",43.95824175,24.87920825,24.94,8,Bad,4239.728807,31.44243076,,Yes,1375.363535,90.24808877,Low_spent_Medium_value_payments,181.6702572,0,-0.1923,0.1989,0.6792,-0.0587,0.0574 +0x22405,CUS_0x9cdf,August,18,670-04-8813,Media_Manager,7699.255,,6,10,27.88954781,7,"Auto Loan, Payday Loan, Credit-Builder Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, and Personal Loan",26.8926566,21,22.15,12,Bad,3148.21,28.04122716,12 Years and 8 Months,Yes,1356.934172,72.5945211,Low_spent_Large_value_payments,227.1016842,0,-0.0151,-1.5431,0.1669,-0.8407,-0.023 +0x22411,CUS_0x3229,August,38,297-70-4360,Writer,9830.785,977.2320833,10,5,31,9,"Credit-Builder Loan, Mortgage Loan, Auto Loan, Student Loan, Mortgage Loan, Home Equity Loan, Not Specified, Mortgage Loan, and Credit-Builder Loan",,21.53367218,4.2,9,Bad,4110.722323,32.87106312,1 Years and 8 Months,Yes,55.70225291,,Low_spent_Medium_value_payments,225.4369196,0,-0.053,1.2423,-0.6523,-1.078,0.5003 +0x2241d,CUS_0x51eb,August,42,636-59-6888,Journalist,60764.4,5285.7,7,7,11,4,"Personal Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",12.50939135,8,12.81,6,Standard,2065.33,30.45727933,18 Years and 4 Months,Yes,163.6269834,277.6803041,Low_spent_Large_value_payments,357.2627124,0,0.8012,0.4652,1.0122,1.0195,-0.5585 +0x22429,CUS_0xa4e7,August,42,625-58-3829,Musician,17481.785,,4,6,5,2,"Payday Loan, and Home Equity Loan",23.28740619,19,5.72,0,Good,1029.489061,37.11519154,24 Years and 9 Months,No,18.07981229,87.11040906,Low_spent_Large_value_payments,348.4541905,0,1.9484,-1.6684,0.0825,0.6273,-0.7492 +0x22435,CUS_0x30f7,August,35,402-04-1025,Journalist,36048.08,2949.006667,3,7,14,2,"Debt Consolidation Loan, and Payday Loan",18.89703321,13,19.7,6,_,571.06,37.36521331,14 Years and 2 Months,Yes,45.77263566,64.65315094,High_spent_Medium_value_payments,434.4748801,0,0.3654,0.4202,-0.1429,-0.2005,0.3673 +0x22441,CUS_0x2b9e,August,26,798-92-7062,Engineer,44320.68,,6,7,16,5,"Payday Loan, Personal Loan, Auto Loan, Auto Loan, and Auto Loan",20.30436458,,7.1,6,Bad,3025.196864,36.72161299,,NM,137.8971703,,Low_spent_Medium_value_payments,336.0944606,0,0.2176,0.245,1.9166,1.1311,-0.9756 +0x2244d,CUS_0xabea,August,21,339-65-0460,_______,14243.975,,6,5,12.06745738,2,"Credit-Builder Loan, and Credit-Builder Loan",16.2849037,10,14.73,8,Standard,1703.530954,29.61787447,12 Years and 3 Months,Yes,14.28190122,,Low_spent_Medium_value_payments,235.0619055,0,0.8375,-2.0074,0.0816,-0.0909,0.0006 +0x22459,CUS_0xc592,August,36,#F%$D@*&8,Architect,43570.6,3853.883333,4,3,17,4,"Not Specified, Credit-Builder Loan, Personal Loan, and Not Specified",22.16510701,15,18.81,6,Standard,957.7459641,34.36107719,24 Years and 10 Months,Yes,124.2302936,,Low_spent_Large_value_payments,170.0007232,0,1.0967,-0.438,-1.444,0.8505,2.2228 +0x22465,CUS_0x896e,August,49,082-88-7036,Accountant,30807.57,2796.2975,0,5,4,4,"Debt Consolidation Loan, Home Equity Loan, Personal Loan, and Personal Loan",14.6918854,,4.88,3,_,630.2980665,25.67142388,,No,88.49211489,176.3362293,High_spent_Small_value_payments,297.4508949,0,-0.6439,-0.4585,1.6714,-0.433,-0.6144 +0x22471,CUS_0x7a6c,August,32,492-59-4587,Writer,29265.3,,10,9,34.88954781,6,"Student Loan, Mortgage Loan, Not Specified, Personal Loan, Home Equity Loan, and Auto Loan",50.8794376,25.01578379,3.65,7,Bad,1672.695471,28.18613936,19 Years and 9 Months,Yes,1443.606187,163.9131392,Low_spent_Small_value_payments,229.2280929,0,0.8366,0.3519,-0.5113,0.1835,-1.3438 +0x2247d,CUS_0xa41f,August,27,022-35-8575,Scientist,74193.7,6275.808333,0,5,4.288361749,0,,2.709429465,6,3.32,4,Good,228.53,28.17987061,30 Years and 10 Months,No,0,,High_spent_Large_value_payments,710.3056594,0,-0.2794,-0.9726,1.4239,-0.4538,-0.4271 +0x22489,CUS_0x41e8,August,30,#F%$D@*&8,Musician,30693.42,,6,9,31.06745738,8,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Not Specified, Home Equity Loan, Not Specified, Home Equity Loan, and Student Loan",,24.22311262,23.04,9,_,4427.735289,27.03039097,7 Years and 11 Months,Yes,136.2344146,165.1362419,Low_spent_Large_value_payments,189.3875555,0,-1.0242,-0.1364,-0.1146,-0.3626,-0.1134 +0x22495,CUS_0x33dc,August,44,363-00-8931,Musician,8555.805,528.98375,6,10,23.06745738,5,"Not Specified, Personal Loan, Debt Consolidation Loan, Personal Loan, and Home Equity Loan",46.82636022,25.7313514,3.85,9,Bad,3492.164535,25.65534888,11 Years and 2 Months,Yes,29.05021775,,High_spent_Medium_value_payments,230.333304,0,1.9888,1.0476,0.2654,0.2484,0.2496 +0x224a1,CUS_0x4732,August,27,393-18-8678,Scientist,53878.98,4328.915,4,3,5,100,"Auto Loan, and Auto Loan",,18,1.49,3,_,1119.16,35.92697355,,No,78.35063697,212.3499477,Low_spent_Small_value_payments,432.1909153,0,1.7533,-0.6877,0.8389,1.0526,1.5477 +0x224ad,CUS_0x79ca,August,46,918-26-9767,Journalist,44801.72,3973.476667,0,5,6,1,Debt Consolidation Loan,9.66985362,9,4.03,5,Good,141.3276329,32.33518478,32 Years and 5 Months,No,21.76253187,131.4531395,High_spent_Small_value_payments,518.6668879,0,-0.8899,1.4445,-1.9956,0.4007,-1.5034 +0x224b9,CUS_0x9f67,August,31,177-77-8308,Accountant,29465.73,,2,7,1,0,,0,2,10.01,4,Good,1171.28,28.84592143,22 Years and 10 Months,No,0,,Low_spent_Large_value_payments,442.5487537,0,0.5696,0.6621,2.6187,-0.8495,-1.0688 +0x224c5,CUS_0xc2ae,August,45,#F%$D@*&8,Doctor,36122.51,,3,7,20,1,Debt Consolidation Loan,20.23625523,14,2.59,4,Standard,893.3,27.88101122,30 Years and 6 Months,No,17.20263525,34.55324786,High_spent_Medium_value_payments,509.0650336,0,-1.4418,-0.1451,1.3237,0.1586,-1.1927 +0x224d1,CUS_0x48cc,August,40,138-71-8952,Media_Manager,28649.99,,7,7,9,3,"Debt Consolidation Loan, Personal Loan, and Personal Loan",,20,19.61,8,Standard,1412.93,35.73811929,11 Years and 2 Months,Yes,70.06501809,142.3529508,High_spent_Small_value_payments,274.9319478,0,-0.2816,1.4608,0.107,-1.7824,-1.1428 +0x224dd,CUS_0x79a,August,18,308-57-0961,Mechanic,78858.4,6765.533333,4,5,16,2,"Not Specified, and Debt Consolidation Loan",22.39553294,,14.84,8,Standard,1173.81,40.78256892,14 Years and 11 Months,Yes,108.9428004,159.6265652,!@9#%8,647.9839678,0,-1.6597,0.9199,0.2287,-1.1432,-0.5368 +0x224e9,CUS_0x226a,August,23,817-48-2346,Developer,14128.68,,4,107,9,2,"Payday Loan, and Student Loan",20.57105947,18,14.32,4,Standard,314.56,38.69433986,20 Years and 0 Months,NM,12.07667022,37.63882981,Low_spent_Small_value_payments,328.7235,0,-0.164,0.4834,-0.3482,0.2085,-0.8794 +0x224f5,CUS_0x808d,August,22,412-24-5325,Teacher,17570.26,1352.687492,6,5,32.06745738,5,"Student Loan, Personal Loan, Credit-Builder Loan, Student Loan, and Personal Loan",,21,20.25,8,Bad,3373.910954,24.2680102,14 Years and 8 Months,Yes,149.6414483,193.4466897,Low_spent_Small_value_payments,147.3112487,0,0.2317,-0.2563,-0.7785,-0.1265,0.4896 +0x22501,CUS_0x38a7,August,26,774-52-8320,Developer,11650.835,1125.902917,6,7,3,4,"Credit-Builder Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",18.63350246,12,6.78,6,Good,331.6808337,30.51268102,23 Years and 0 Months,No,23.32579106,65.59997026,High_spent_Small_value_payments,291.8808956,0,-0.1969,-0.2868,0.0605,0.7784,0.1701 +0x2250d,CUS_0x6f92,August,35,474-01-3910,Lawyer,15663.65,,4,4,19,4,"Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",22.6202098,18.33199687,7.8,12,_,2293.557269,32.23607836,6 Years and 0 Months,Yes,27.02678207,66.76543843,Low_spent_Small_value_payments,320.8381962,0,0.597,-1.0769,-0.346,0.7084,-0.0866 +0x22519,CUS_0xbc99,August,23,041-96-6885,Mechanic,38985.96,2980.83,6,8,15,9,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Personal Loan, Student Loan, Home Equity Loan, Personal Loan, and Personal Loan",31.82854834,17,20.86,10,Bad,3879.42,31.22168466,2 Years and 2 Months,Yes,279.3249669,170.7474563,Low_spent_Small_value_payments,138.0105768,0,0.7686,0.0002,0.3128,-0.511,-0.3648 +0x22525,CUS_0x9415,August,33,958-62-8811,Musician,139711,11526.58333,6,7,14.28836175,6,"Mortgage Loan, Payday Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",12.65894035,11.91650558,11.82,8,_,1230.098306,28.03641231,13 Years and 8 Months,Yes,560.708462,10419.93746,High_spent_Large_value_payments,753.6809387,0,0.062,-0.7266,-0.4686,-0.1395,-0.8556 +0x22531,CUS_0x25d8,August,49,373-55-7769,Architect,43508.74,,0,3,0.288361749,2,"Debt Consolidation Loan, and Credit-Builder Loan",9.824825532,11.42577527,6.17,5,_,60.69876558,26.20451147,28 Years and 0 Months,No,68.82170474,10419.93746,High_spent_Medium_value_payments,426.4163882,0,0.5298,0.642,0.554,1.1048,0.6334 +0x2253d,CUS_0x3903,August,27,532-10-1755,Journalist,51796.84,,6,7,17.28836175,0,,,15,7.54,5,_,387.9,24.67809424,32 Years and 5 Months,Yes,0,650.989329,!@9#%8,475.4884653,0,-0.1489,0.7099,0.3101,0.346,-0.4088 +0x22549,CUS_0x46b6,August,44,443-48-7118,Entrepreneur,63023.18,5028.931667,3,4,5,4,"Home Equity Loan, Student Loan, Debt Consolidation Loan, and Student Loan",,11,5.08,1566,Good,1151.375238,30.5251934,30 Years and 4 Months,No,157.7287378,489.3391063,Low_spent_Small_value_payments,200.8773122,0,0.214,0.5649,-1.2125,-0.4359,-0.969 +0x22555,CUS_0x16ae,August,40,567-87-6871,Musician,51034.12,,6,4,6,2,"Student Loan, and Credit-Builder Loan",31.07794985,23,11.87,1,Standard,1350.85,33.73788997,16 Years and 2 Months,Yes,65.43101498,108.8138124,High_spent_Large_value_payments,515.739506,0,0.7224,-0.0694,0.403,-0.7872,0.0539 +0x22561,CUS_0x3787,August,52,986-71-6476,Engineer,21270.79,,6,6,9,4,"Personal Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",9.552128704,7,11.62,6,Standard,727.3229581,37.69463196,,Yes,233.0854743,214.7677711,Low_spent_Small_value_payments,199.5052107,0,0.5553,0.1249,-1.1705,-1.4163,-1.4582 +0x2256d,CUS_0x3077,August,30,226-22-5425,Doctor,32300.64,,6,7,29.06745738,5,"Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Auto Loan, and Credit-Builder Loan",21.72835214,11,9.12,6,_,2316.060954,32.70584291,,Yes,102.6678937,10000,High_spent_Medium_value_payments,276.110632,0,-0.0019,0.6722,1.4034,1.4475,-0.8853 +0x22579,CUS_0xc015,August,42,772-43-1331,Teacher,15811.83,1527.6525,5,6,6,6,"Home Equity Loan, Mortgage Loan, Auto Loan, Personal Loan, Personal Loan, and Credit-Builder Loan",24.20462062,16,11.25,5,Standard,171.8,34.62913949,8 Years and 4 Months,Yes,62.48466605,92.61861573,Low_spent_Medium_value_payments,277.6619682,0,-0.7794,-0.6604,0.8894,0.2731,-1.3673 +0x22585,CUS_0x5e56,August,52,127-75-1934,_______,38104.04,3399.336667,5,4,7,2,"Debt Consolidation Loan, and Student Loan",0.704355735,5,4.62,0,_,735.58,41.48212247,17 Years and 0 Months,No,62.90314247,,!@9#%8,397.663001,0,0.1142,-0.3491,2.2145,0.8707,-0.6173 +0x22591,CUS_0x3631,August,39,645-88-3253,Mechanic,7895.62,,6,6,28,6,"Personal Loan, Student Loan, Auto Loan, Mortgage Loan, Auto Loan, and Personal Loan",,21.31829764,32.42,10,_,5384.94743,36.76249163,2 Years and 3 Months,NM,22.96367768,71.8154436,Low_spent_Small_value_payments,278.717712,0,-0.0153,1.0242,3.0135,1.6303,0.8354 +0x2259d,CUS_0x67cb,August,30,726-51-1301,Writer,14433.725,1389.810417,3,3,6,3,"Debt Consolidation Loan, Student Loan, and Auto Loan",,16,12.76,8,Standard,33.79,29.25591061,33 Years and 6 Months,Yes,29.70897931,67.09725239,Low_spent_Small_value_payments,332.17481,0,-0.1383,1.34,1.3849,-0.3827,0.8873 +0x225a9,CUS_0xaea,August,21,#F%$D@*&8,Media_Manager,15508.05,1166.3375,4,6,10,1,Home Equity Loan,16.28188917,12,19.31,9,Standard,597.13,29.01920815,29 Years and 0 Months,Yes,6.750119488,44.01276072,Low_spent_Small_value_payments,355.8708698,0,0.0658,-1.9349,-1.5939,-1.1413,-0.3878 +0x225b5,CUS_0x253a,August,21,580-53-4920,Accountant,50050.83,,9,10,21.06745738,5,"Student Loan, Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",26.55009355,17.92874626,17.45,8,Bad,3998.032075,27.3221147,4 Years and 8 Months,NM,190.4450602,93.05201407,High_spent_Large_value_payments,338.3728878,0,-1.0881,-1.353,0.4004,0.718,-1.4163 +0x225c1,CUS_0x5cb8,August,35,445-76-5961,Architect,15362.78,,9,6,27.06745738,6,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",,20,17.12,7,Bad,3996.970954,29.74444411,3 Years and 3 Months,Yes,45.75494995,192.8873731,Low_spent_Small_value_payments,168.7605557,0,0.4482,0.5456,0.0097,-1.382,0.5069 +0x225cd,CUS_0xb626,August,36,601-89-0336,Engineer,37921.54,2942.128333,8,5,18,6,"Home Equity Loan, Not Specified, Payday Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",,28.19640811,6.88,13,Bad,1916.879237,35.18454346,18 Years and 11 Months,NM,137.7747993,70.95966579,High_spent_Large_value_payments,325.4783683,0,0.5882,1.8266,-2.1739,-0.4176,0.4295 +0x225d9,CUS_0xac2d,August,18,239-55-7534,Scientist,19243.32,1448.61,6,7,7,100,"Auto Loan, Mortgage Loan, Student Loan, and Not Specified",15.04206032,,12.6,8,Standard,1350.28,32.01690573,11 Years and 6 Months,Yes,53.81387769,,!@9#%8,254.8001162,0,0.553,0.9308,1.0013,1.8453,1.506 +0x225e5,CUS_0x8264,August,43,565-21-5718,Teacher,46407.58,3832.298333,5,4,17,2,"Home Equity Loan, and Mortgage Loan",,18,14.6,9,_,952.39,29.78495219,20 Years and 4 Months,Yes,75.30936408,,!@9#%8,254.8893198,0,0.9892,0.2577,0.3545,-1.9274,1.805 +0x225f1,CUS_0x1884,August,20,829-82-5789,Accountant,20883.55,,10,9,21.06745738,5,"Not Specified, Student Loan, Debt Consolidation Loan, Not Specified, and Not Specified",23.35298898,,18.86,15,Bad,2708.9137,37.03721329,7 Years and 3 Months,Yes,76.52833196,,Low_spent_Small_value_payments,179.6862566,0,1.1699,0.7011,-1.392,1.5583,0.767 +0x225fd,CUS_0x96d3,August,80,024-19-5740,Teacher,87474.24,,4,7,19.28836175,0,,,4019,9.79,1451,Standard,797.03,37.53094482,25 Years and 3 Months,No,9054,,High_spent_Large_value_payments,863.6272943,0,-0.5141,-0.9997,1.0459,-0.7962,-1.0287 +0x22609,CUS_0x3082,August,38,806-23-0871,Mechanic,20367.72,,10,8,34,3,"Credit-Builder Loan, Not Specified, and Payday Loan",19.01060178,14.41679713,20.55,11,Standard,2407.326598,36.72377244,6 Years and 8 Months,Yes,36.59172018,141.9262582,Low_spent_Large_value_payments,244.1130216,0,0.741,1.0161,0.5083,0.5933,-0.8641 +0x22615,CUS_0x60b6,August,52,905-53-9874,Scientist,113368.23,9265.3525,2,1,9,0,,,11,6.51,1,_,488.13,39.27346921,28 Years and 2 Months,NM,0,221.8897297,High_spent_Large_value_payments,944.6455203,0,0.5549,0.8606,-2.6156,-0.6139,-0.8584 +0x22621,CUS_0x276a,August,34,723-19-7235,Accountant,30548.74,,7,5,33,2,"Debt Consolidation Loan, and Mortgage Loan",,24.71723806,14.95,12,Bad,2346.251068,39.5703451,6 Years and 11 Months,Yes,47.15733072,199.3656077,Low_spent_Small_value_payments,316.249895,0,0.1498,-0.9833,0.2247,0.8293,-1.6006 +0x2262d,CUS_0xbd3d,August,27,933-00-0712,Architect,118236.03,9882.0025,4,5,8,0,,1.814181802,2,7.43,0,Good,699.62,31.47667311,22 Years and 4 Months,No,0,178.8978751,High_spent_Large_value_payments,1049.302375,0,0.1082,1.6351,1.2438,0.2872,-0.6672 +0x22639,CUS_0xb913,August,19,967-01-9201,Media_Manager,69803.6,5801.966667,8,5,23,6,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Credit-Builder Loan, and Not Specified",18.35614559,14.68591808,9.8,12,Standard,2947.859063,33.25677905,16 Years and 10 Months,Yes,223.5612695,103.8766916,High_spent_Large_value_payments,492.7587056,0,-0.6615,0.6337,-0.4041,-0.5693,-1.4322 +0x22645,CUS_0x2ca9,August,51,173-20-3664,Manager,79298.96,6830.246667,8,7,13,1,Mortgage Loan,22.04079395,17,10.26,2,Standard,804.92,26.08871284,33 Years and 5 Months,No,58.09333268,581.4325759,Low_spent_Medium_value_payments,323.4987581,0,-0.5684,-0.957,-1.2247,2.0419,-1.4909 +0x22651,CUS_0xa6c7,August,25,106-93-1975,Journalist,20622.28,1479.523333,7,6,21,3,"Auto Loan, Auto Loan, and Not Specified",25.62314545,18.06058704,13.22,11,Standard,2875.167327,28.0230998,10 Years and 5 Months,Yes,32.64009774,,Low_spent_Medium_value_payments,286.0746514,0,-0.1229,0.0782,-0.3261,-0.5316,0.0674 +0x2265d,CUS_0x2350,August,37,991-52-6653,Architect,109782.32,9439.526667,4,4,19,2,"Not Specified, and Student Loan",,9,7.78,5,Standard,426.4,29.75460035,28 Years and 9 Months,No,92.52665718,,High_spent_Medium_value_payments,799.0833306,0,0.6004,1.7233,-1.21,-1.1758,0.3053 +0x22669,CUS_0x7846,August,46,282-14-9365,Accountant,88380.16,7471.013333,7,7,18.28836175,2,"Student Loan, Home Equity Loan, and Credit-Builder Loan",21.67545944,19,8.7,7,Standard,124.29,36.89709413,25 Years and 11 Months,Yes,129.7236986,512.9589568,High_spent_Medium_value_payments,774.3561389,0,0.5976,-0.0346,-0.4044,0.0251,1.1844 +0x22675,CUS_0x34a9,August,27,930-81-4240,Mechanic,87692.85,,4,6,10,4,"Student Loan, Personal Loan, Student Loan, and Home Equity Loan",21.10433993,,6.21,,Good,1493.806999,36.18965692,24 Years and 3 Months,NM,188.4109291,121.3787112,High_spent_Large_value_payments,644.3841098,0,0.4541,0.7275,0.419,-0.6314,0.1226 +0x22681,CUS_0x66d4,August,35,#F%$D@*&8,Manager,11810.515,,8,4,17,2,"Personal Loan, and Auto Loan",23.02496187,15.73106771,11.6,6,Standard,687.713994,31.11195131,33 Years and 4 Months,Yes,16.71425537,18.89757474,High_spent_Medium_value_payments,315.6091282,0,1.0609,-1.7205,2.9265,1.5695,-1.1256 +0x2268d,CUS_0x732d,August,20,719-61-5845,Doctor,78059.36,6277.946667,6,5,19,1,Student Loan,,10,11.41,9,Standard,1220.42,31.68267425,16 Years and 2 Months,Yes,55.76222911,,High_spent_Small_value_payments,641.4450215,0,1.354,-0.5046,0.0121,0.3774,-0.6757 +0x22699,CUS_0x6510,August,42,029-49-9162,Musician,21671.53,1465.444744,6,7,11,2,"Mortgage Loan, and Credit-Builder Loan",19.06952949,13,15.59,0,Standard,1420.13,28.15207288,32 Years and 11 Months,Yes,199.2192919,88.68901408,Low_spent_Small_value_payments,345.0038664,0,0.6983,-0.2628,0.0479,0.0854,1.2964 +0x226a5,CUS_0xb05d,August,38,265-18-5565,Manager,65214.96,,2,1,11.28836175,0,,12.81829125,,11.82,2,Good,313.6330955,37.0189262,26 Years and 2 Months,No,411.917836,585.6702592,!@9#%8,640.766791,0,1.1476,0.8129,-1.2071,1.2763,0.7027 +0x226b1,CUS_0x854e,August,54,046-01-3589,Doctor,98495.8,8133.983333,5,5,14,1,Home Equity Loan,0.930540077,5,7.73,7,Standard,1362.58,35.33472956,31 Years and 5 Months,Yes,60.7632676,74.29361803,High_spent_Large_value_payments,918.3414477,0,-1.6289,0.1239,0.2276,1.2996,0.6299 +0x226bd,CUS_0x6b04,August,44,030-27-6579,Engineer,20313.63,,9,5,31.06745738,7,"Home Equity Loan, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Personal Loan",51.41402291,28.60559307,8.73,11,Bad,4733.683569,32.19473932,11 Years and 2 Months,Yes,97.49822751,153.8308643,Low_spent_Small_value_payments,196.1308702,0,1.3026,-0.4312,0.6961,0.4947,0.2344 +0x226c9,CUS_0x4e1f,August,21,611-79-9351,_______,44454.07,3678.505833,0,4,6,0,,,7,11.51,3,_,576.84,39.59062135,28 Years and 11 Months,No,0,109.7187058,High_spent_Medium_value_payments,508.1318775,0,0.2743,0.0484,0.0109,0.6594,-0.7489 +0x226d5,CUS_0x31b2,August,25,552-70-4063,Engineer,79439.56,,8,6,5.288361749,4,"Payday Loan, Payday Loan, Auto Loan, and Home Equity Loan",14.46349082,14,18.77,6,Standard,75.76,33.19686672,14 Years and 4 Months,Yes,211.5748002,510.8013048,High_spent_Large_value_payments,582.0576893,0,-1.1426,-0.7306,1.0664,-0.1395,-0.4541 +0x226e1,CUS_0x9b4b,August,35,041-67-8086,Engineer,17353657,,0,3,7,1,Credit-Builder Loan,11.52204176,10,5.17,6,Good,116.3,39.41982082,,No,11.76826809,88.58495796,Low_spent_Medium_value_payments,339.388524,0,0.6425,-1.5138,-1.7718,0.8682,0.3513 +0x226ed,CUS_0xd71,August,44,367-64-3220,Entrepreneur,87318.06,7237.505,3,3,7.288361749,0,Payday Loan,,8,-1.19,6,Good,134.94,30.62014894,31 Years and 6 Months,NM,25626,,Low_spent_Small_value_payments,63.84411622,0,0.3735,-1.4539,1.0275,-0.6567,1.2602 +0x226f9,CUS_0x5862,August,25,688-62-7898,Engineer,42936.48,3532.04,8,5,18,8,"Credit-Builder Loan, Home Equity Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",,21.37765748,26.79,11,_,3852.080166,32.21714754,2 Years and 4 Months,Yes,174.6334446,143.4097228,Low_spent_Medium_value_payments,315.1608326,0,-1.2531,-0.7193,-0.6846,-1.0025,0.9943 +0x22705,CUS_0xc17f,August,35,177-97-1122,_______,42915.24,,5,4,10,7,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, and Auto Loan",24.99046142,18,13.58,5,Standard,2546.8,30.38077609,11 Years and 2 Months,Yes,209.694004,75.2926534,High_spent_Large_value_payments,325.5403426,0,-0.3926,-1.9057,1.9914,1.2667,0.3226 +0x22711,CUS_0x31f8,August,61,666-05-8845,Teacher,10394.805,1038.23375,196,4,8,1,Auto Loan,23.99158341,17,1.82,3,_,119.7879649,29.9510119,20 Years and 3 Months,No,5.24927327,106.2017534,Low_spent_Small_value_payments,294.4301274,0,-0.8183,1.9423,1.1818,0.2845,1.4269 +0x2271d,CUS_0x1f4f,August,20,343-35-6258,Lawyer,17370154,,1,3,6,0,,0.284373788,5,8.68,0,_,933.3376756,29.73414458,23 Years and 11 Months,No,0,63.10858152,High_spent_Small_value_payments,341.74647,0,1.0735,-0.7317,-0.1121,0.2098,2.1235 +0x22729,CUS_0x35dd,August,21,149-70-0176,Architect,78162.72,,10,7,22,4,"Payday Loan, Personal Loan, Student Loan, and Personal Loan",28.19324281,,3.28,12,_,2510.203734,22.14433027,20 Years and 6 Months,Yes,212.5080945,401.6328601,High_spent_Small_value_payments,307.8150453,0,-0.0937,1.2051,0.0384,1.0108,-0.2884 +0x22735,CUS_0x23c8,August,37,209-61-0204,Entrepreneur,81367.12,,5,5,6.288361749,2,"Not Specified, and Home Equity Loan",14.26578142,13,4.78,1,Standard,1039.7,37.32606948,24 Years and 11 Months,No,100.2753164,569.8143318,High_spent_Large_value_payments,684.2071461,0,-1.7136,-0.1044,-1.7226,1.8142,0.6306 +0x22741,CUS_0xbbaf,August,28,472-64-4565,Journalist,57778.98,4766.915,8,5,26,2,"Payday Loan, and Not Specified",28.57907808,20.22584112,11.71,12,Standard,2582.506291,32.87389269,,Yes,63.73594797,242.4541245,High_spent_Small_value_payments,430.5014275,0,-0.7569,1.4043,-0.8155,-0.5589,0.4785 +0x2274d,CUS_0x9e3f,August,36,081-77-6270,Architect,15923.295,,4,3,5,2,"Home Equity Loan, and Debt Consolidation Loan",12.90018054,12,7.89,1,Standard,1480.54,39.32458582,27 Years and 4 Months,No,24.84397733,47.56472602,!@9#%8,349.7854217,0,-0.2862,0.0648,-0.0825,-0.6301,-0.3533 +0x22759,CUS_0x38b3,August,20,726-60-7310,Journalist,75901.92,6102.16,8,10,34.88954781,9,"Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Payday Loan, Payday Loan, Not Specified, Personal Loan, Home Equity Loan, and Student Loan",34.3034109,23.78334581,,11,Bad,3758.314825,30.90773575,6 Years and 11 Months,Yes,1803.981838,129.1393609,High_spent_Medium_value_payments,232.7647198,0,0.0426,0.7577,0.5265,-1.1845,0.4411 +0x22765,CUS_0xa116,August,27,591-43-0273,Journalist,18247.18,1396.598333,10,5,30.06745738,5,"Mortgage Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",,19,16.53,10,Bad,2759.990954,38.86605863,2 Years and 10 Months,Yes,40.76073026,,Low_spent_Large_value_payments,213.8774842,0,1.1086,1.7241,0.5665,-0.723,0.2761 +0x22771,CUS_0x7ad4,August,24,205-29-4255,Entrepreneur,130523.64,9571.975269,6,5,10.28836175,0,Auto Loan,,9,12.36,13,_,420.8207899,38.38885511,18 Years and 2 Months,Yes,1165.234669,1301.549815,Low_spent_Medium_value_payments,470.3391511,0,-1.0283,0.4236,0.9804,-1.3255,0.8792 +0x2277d,CUS_0xde2,August,35,819-51-5513,Accountant,106157,8836.416667,3,5,11,3,"Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",,20,14.73,9,Standard,1231.03,35.46164434,18 Years and 10 Months,Yes,219.2489026,350.0682453,High_spent_Medium_value_payments,564.3245188,0,-0.1936,-0.9814,1.3302,-0.772,0.5808 +0x22789,CUS_0x70bd,August,36,051-99-1168,Lawyer,55299.72,4896.31,5,4,23,2,"Home Equity Loan, and Auto Loan",11.517171,8.222863254,11.94,10,_,2224.218805,31.48223495,11 Years and 9 Months,Yes,83.66941405,244.2170671,Low_spent_Large_value_payments,431.7445188,0,1.511,-1.6894,-0.8729,-0.6741,1.9851 +0x22795,CUS_0x9d91,August,39,865-87-9562,Media_Manager,20975.94,1321.636826,10,10,27.95700519,8,"Debt Consolidation Loan, Auto Loan, Student Loan, Not Specified, Auto Loan, Student Loan, Personal Loan, and Home Equity Loan",,18,16.83,10,Bad,5010.540954,34.41400471,9 Years and 4 Months,Yes,1578.645877,177.3299457,Low_spent_Small_value_payments,121.5314818,0,-0.1264,-0.9179,0.2246,-0.482,-1.4258 +0x227a1,CUS_0xa4b7,August,46,130-46-1944,Engineer,93666.33,7595.5275,1,8,1,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",9.538295783,9,5.61,3,Good,362.04,28.48638228,28 Years and 5 Months,No,156.9565703,,High_spent_Large_value_payments,688.1067199,0,-0.2636,-0.0291,-1.5197,2.3495,-0.6187 +0x227ad,CUS_0x50e2,August,30,381-25-7601,_______,20965.34,,9,9,29,5,"Auto Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",43.15842782,27.95549476,3.61,10,Bad,1969.322345,34.07962247,14 Years and 4 Months,Yes,59.94214031,52.47971399,Low_spent_Large_value_payments,327.2893124,0,-0.4727,1.4672,0.9695,-0.9258,-1.4885 +0x227b9,CUS_0x49b5,August,47,654-19-7135,Entrepreneur,25608.99,,8,6,8,3,"Student Loan, Credit-Builder Loan, and Not Specified",27.35147056,18,10.39,5,Standard,238.44,29.67930166,29 Years and 6 Months,Yes,50.15524804,76.4588149,High_spent_Small_value_payments,327.7941871,0,-0.9515,1.8383,0.7129,-2.3542,-1.0966 +0x227c5,CUS_0x31c0,August,18,628-30-1467,Manager,59931.4,,9,5,20,9,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Student Loan, Mortgage Loan, Personal Loan, and Not Specified",,22.89456914,20.92,17,Bad,4273.763853,39.92913409,2 Years and 4 Months,Yes,390.854909,354.7002386,Low_spent_Small_value_payments,27.27318576,0,0.788,0.4042,-1.2965,-0.0622,-0.6332 +0x227d1,CUS_0x164a,August,41,580-12-6259,Entrepreneur,80756.36,,5,3,7,3,"Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",0,4,6.38,3,Good,1356.82,33.51560208,29 Years and 5 Months,No,189.1711729,70.33080314,High_spent_Large_value_payments,674.2676906,0,-0.4913,1.5693,-0.6301,0.4371,0.4888 +0x227dd,CUS_0x3176,August,35,158-09-7660,Scientist,94120.35,8083.3625,1,4,3.288361749,2,"Credit-Builder Loan, Not Specified, and Mortgage Loan",9.449178261,9,1.43,1,_,1175.31,22.8235037,20 Years and 5 Months,No,219.7001686,1154.44993,Low_spent_Small_value_payments,144.1236124,0,0.8371,0.7004,1.3189,-0.5075,-2.2006 +0x227e9,CUS_0x6cae,August,33,862-58-7973,_______,27339.81,,3,5,9,1,Not Specified,18.90994414,,4.82,6,Standard,1523.609657,35.06150903,23 Years and 10 Months,NM,14.66875353,208.393312,!@9#%8,318.7696844,0,-0.4338,0.133,-0.0591,-1.0276,-1.4291 +0x227f5,CUS_0x8558,August,36,777-86-8040,Writer,125062.92,10250.91,5,3,11,1,Payday Loan,9.661516619,9,10.49,4,_,1424.96,31.18119859,21 Years and 0 Months,No,73.98129377,515.1839371,Low_spent_Large_value_payments,705.9257692,0,0.1799,-1.8442,-0.6707,0.1565,0.7694 +0x22801,CUS_0xb7d9,August,39,790-51-5647,Scientist,89126.25,7675.1875,4,5,18.28836175,2,"Credit-Builder Loan, and Mortgage Loan",,19,15.8,9,Standard,631.58,37.54492755,18 Years and 6 Months,Yes,125.293142,957.496113,Low_spent_Medium_value_payments,384.666956,0,-0.9015,-0.9864,1.1146,0.5674,-0.8046 +0x2280d,CUS_0x963e,August,30,089-40-1103,Mechanic,112302.04,9220.503333,4,6,6,3,"Auto Loan, Auto Loan, and Student Loan",12.35033795,12,,6,Good,670.4971308,37.08077898,30 Years and 6 Months,No,269.761073,253.7863675,High_spent_Large_value_payments,665.9782988,0,-2.504,-0.574,0.9478,-0.7355,0.5022 +0x22819,CUS_0xc0b7,August,26,883-70-7074,Developer,89531.94,7227.995,3,3,8,1,Mortgage Loan,12.73542042,12,16.95,8,_,1471.5,29.31813857,22 Years and 8 Months,Yes,44.13871635,10000,High_spent_Medium_value_payments,845.6165484,0,1.3512,1.1179,-0.867,-1.7517,-0.5353 +0x22825,CUS_0xb328,August,27,295-75-6474,Engineer,16128.395,1264.032917,7,3,11.06745738,3,"Credit-Builder Loan, Not Specified, and Auto Loan",21.68022102,14,12.54,11,Standard,1436.400954,27.11988082,,Yes,5972,50.34146162,Low_spent_Small_value_payments,302.9974904,0,0.7992,0.3432,0.1212,1.6075,0.2339 +0x22831,CUS_0x77fe,August,25,158-34-8392,Entrepreneur,169789.52,,1,5,10,3,"Credit-Builder Loan, Debt Consolidation Loan, and Credit-Builder Loan",0,1,2.34,4,Good,368.100898,35.05309203,31 Years and 6 Months,NM,256.0700253,1303.115101,Low_spent_Small_value_payments,352.0435378,0,0.1286,1.853,0.9289,1.4639,-0.9052 +0x2283d,CUS_0x2c2b,August,29,444-54-5613,Entrepreneur,7252.065,530.33875,1483,5,24,3,"Not Specified, Student Loan, and Student Loan",,24,8.94,7,_,1345.66,37.87281852,17 Years and 11 Months,Yes,16.28273334,16.32404876,Low_spent_Large_value_payments,290.4270929,0,0.2463,0.9392,-0.4787,-0.7488,-0.8343 +0x22849,CUS_0x2d02,August,50,313-31-7488,Writer,15603.415,,3,5,7,3,"Home Equity Loan, Payday Loan, and Credit-Builder Loan",1.942917664,2,10.1,1,Good,783.82,28.40214995,18 Years and 9 Months,No,33.83877234,76.52287675,Low_spent_Small_value_payments,325.4668092,0,-1.4754,0.9078,-1.2757,-0.2273,1.6529 +0x22855,CUS_0xb6dd,August,35,532-19-8738,Scientist,73961.12,5950.426667,10,9,17.88954781,9,"Payday Loan, Mortgage Loan, Personal Loan, Payday Loan, Student Loan, Payday Loan, Auto Loan, Home Equity Loan, and Not Specified",,28.15790035,-3.44,9,Bad,1431.097151,37.36300317,7 Years and 9 Months,Yes,1715.592965,400.7902792,Low_spent_Small_value_payments,74.32934168,0,1.8354,-1.4419,0.648,0.5098,-2.3189 +0x22861,CUS_0xae14,August,41,047-52-5852,Media_Manager,15137.3,1303.441667,8,5,32,6,"Auto Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Personal Loan",,15.2527852,15.7,16,_,2090.19213,33.8570968,,Yes,59.76126725,71.58370087,Low_spent_Small_value_payments,288.9991985,0,1.269,0.2879,-0.3734,-0.5556,0.8518 +0x2286d,CUS_0x682b,August,36,926-41-6598,Entrepreneur,17156.79,1216.7325,10,8,25.95700519,9,"Mortgage Loan, Student Loan, Payday Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, and Auto Loan",32.70115862,14,17.46,,Bad,3339.230954,25.52546302,6 Years and 11 Months,Yes,1409.353815,,Low_spent_Small_value_payments,161.2995067,0,-0.9966,-0.435,-0.6729,-0.6869,0.0646 +0x22879,CUS_0x1786,August,23,468-28-0415,Media_Manager,73543.18,,6,3,11,100,,17.84496265,12,1.69,5,Standard,1090.21,38.98632365,17 Years and 6 Months,Yes,0,191.0653183,High_spent_Medium_value_payments,662.7945151,0,2.2379,0.0478,1.5359,-0.7078,-1.598 +0x22885,CUS_0x2de0,August,21,740-92-4058,Engineer,20341.77,,8,4,22,2,"Credit-Builder Loan, and Payday Loan",25.16269172,21.66418618,10.85,7,Standard,2240.747607,26.29584561,18 Years and 8 Months,Yes,31.26661877,211.1363298,Low_spent_Small_value_payments,208.0118014,0,1.2587,-1.0751,0.3378,-0.4082,-0.504 +0x22891,CUS_0x47a5,August,32,827-59-6035,Teacher,17680.69,,6,6,9,4,"Auto Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,13.73296815,11.5,12,Standard,961.3884954,26.09480289,26 Years and 4 Months,NM,31.68734043,116.8210819,Low_spent_Small_value_payments,286.430661,0,-2.178,-0.6688,0.5182,1.3289,0.0869 +0x2289d,CUS_0x3b32,August,80,448-68-4896,Entrepreneur,52487.14,,7,5,8,3,"Not Specified, Debt Consolidation Loan, and Home Equity Loan",19.78157873,19,5.09,4,Standard,1132.46,28.84274752,17 Years and 9 Months,NM,103.1193409,159.3359679,High_spent_Small_value_payments,411.0375245,0,-0.0187,0.0053,-1.0635,-0.1427,0.9068 +0x228a9,CUS_0x8abb,August,29,399-82-7308,Architect,66823.88,5499.656667,3,4,19,0,,,10,7.9,4,_,1107.66,39.79556588,20 Years and 3 Months,Yes,0,414.5202446,Low_spent_Medium_value_payments,415.4454221,0,-0.2426,0.6613,-1.2468,0.4066,-0.8762 +0x228b5,CUS_0x470d,August,27,486-78-9044,Scientist,19543.05,,8,6,16,5,"Not Specified, Mortgage Loan, Payday Loan, Home Equity Loan, and Student Loan",,15,28.91,9,Bad,2691.583651,26.08043131,14 Years and 2 Months,Yes,71.22048301,76.19071982,High_spent_Medium_value_payments,277.1712584,0,-0.2526,-0.2886,1.6002,0.503,-0.3461 +0x228c1,CUS_0xc5a5,August,34,493-76-9159,Manager,35611.71,3255.6425,4,6,2,0,,10.04681465,10,10.06,3,_,1092.47,24.49420889,23 Years and 10 Months,No,0,247.1065233,Low_spent_Large_value_payments,348.4577267,0,-1.0906,0.8667,0.0219,0.227,0.029 +0x228cd,CUS_0x3410,August,24,#F%$D@*&8,Architect,54834.69,4508.5575,7,6,23.06745738,6,"Debt Consolidation Loan, Personal Loan, Payday Loan, Not Specified, Personal Loan, and Student Loan",36.17150548,17.04058832,7.49,10,Bad,3057.450969,29.74834609,9 Years and 9 Months,Yes,258.8627428,71.52634617,High_spent_Medium_value_payments,343.7463731,0,0.0611,-0.9663,-2.0257,-0.2469,1.6933 +0x228d9,CUS_0x5275,August,37,931-63-4701,Manager,40027.94,3462.661667,6,7,18,100,"Home Equity Loan, Payday Loan, Auto Loan, and Mortgage Loan",,13.60845695,15.99,16,Standard,2759.796556,27.56535703,11 Years and 3 Months,Yes,78.1172356,313.8676445,Low_spent_Large_value_payments,224.2812866,0,0.2919,2.2567,-0.0202,0.6894,0.6182 +0x228e5,CUS_0xc1a7,August,44,730-89-2289,Musician,14656.405,,5,5,15,5,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Personal Loan, and Not Specified",,20,7.44,12,Standard,1328.53,36.90148965,,Yes,39.19525656,43.60468743,Low_spent_Small_value_payments,309.6367643,0,1.7587,-1.4787,0.6106,0.0108,-0.1883 +0x228f1,CUS_0x9386,August,27,525-31-6938,_______,32466.18,2769.515,10,10,32.88954781,7,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Student Loan, Student Loan, Not Specified, and Debt Consolidation Loan",26.87412691,17,7.37,10,Bad,1339.97,33.49081033,5 Years and 10 Months,Yes,1511.160851,265.0985747,Low_spent_Small_value_payments,96.36199328,0,-0.7981,-1.1374,-0.5365,-0.3349,-1.0449 +0x228fd,CUS_0x7c0d,August,47,910-44-9683,Accountant,97787.46,,6,5,12,3,"Debt Consolidation Loan, Auto Loan, and Not Specified",14.29452975,12.41343679,9.17,5,Standard,1288.497955,27.88006176,,No,143.5764602,138.997418,High_spent_Large_value_payments,801.3216218,0,0.9089,1.2857,-0.7461,-1.1191,2.1716 +0x22909,CUS_0x4715,August,18,890-82-7544,_______,72817.88,6364.156667,7,4,18,1,Payday Loan,,18,22.86,8,Standard,717.37,32.01059508,18 Years and 0 Months,Yes,46.55610532,,Low_spent_Large_value_payments,554.0609898,0,0.9357,0.2939,0.1551,-0.9704,0.6723 +0x22915,CUS_0x4475,August,21,941-24-2210,Accountant,7845.795,618.81625,10,5,28.06745738,6,"Student Loan, Mortgage Loan, Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Credit-Builder Loan",,22.81273416,9.43,12,_,2976.511479,30.58490763,6 Years and 0 Months,Yes,19.99449127,59.79820122,Low_spent_Small_value_payments,245.3686446,0,0.1554,0.1622,-0.8314,0.7143,0.5274 +0x22921,CUS_0xe7e,August,25,979-39-8883,Writer,7377.215,,8,10,19.95700519,7,"Personal Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Mortgage Loan, and Student Loan",43.69226102,24.80175665,3.86,12,Bad,1842.895696,39.9667322,6 Years and 5 Months,Yes,1350.048799,20.10318274,Low_spent_Medium_value_payments,231.2744406,0,-0.6977,-0.0023,0.7655,-1.2232,-0.5726 +0x2292d,CUS_0x72d2,August,34,135-79-9788,Journalist,77885.6,6525.466667,10,5,20,6,"Personal Loan, Auto Loan, Mortgage Loan, Student Loan, Personal Loan, and Home Equity Loan",29.87318149,19.61995244,9.77,11,Bad,1443.544252,25.52841853,19 Years and 10 Months,Yes,310.2510027,174.8079349,High_spent_Medium_value_payments,417.4877291,0,1.0635,0.3434,-0.3977,-0.9323,1.8904 +0x22939,CUS_0x89ab,August,18,465-82-6361,Media_Manager,105910.08,8876.84,6,5,18,3,"Auto Loan, Student Loan, and Debt Consolidation Loan",21.10932636,15,9.67,8,Standard,1300.88,28.91939981,10 Years and 4 Months,NM,241.794376,606.9872584,Low_spent_Medium_value_payments,318.9023656,0,-1.6248,1.1554,-1.3402,-1.254,-0.6939 +0x22945,CUS_0x6dcf,August,18,772-23-6177,_______,66377.52,5770.46,8,3,17,4,"Not Specified, Auto Loan, Debt Consolidation Loan, and Student Loan",23.61264492,20,7.36,12,Standard,1450.51,32.58159153,23 Years and 2 Months,NM,199.4598806,391.0490588,Low_spent_Small_value_payments,276.5370606,0,0.7531,0.7346,1.7716,0.017,-0.3856 +0x22951,CUS_0x7369,August,48,835-59-7996,Writer,11713.625,,3,4,10,1,Not Specified,17.20666118,11,2.3,3,Good,241.98,32.78077247,18 Years and 8 Months,No,9.005230043,70.20052226,Low_spent_Small_value_payments,294.1077894,0,-1.1311,-0.169,-0.161,0.8099,0.0027 +0x2295d,CUS_0x5d9e,August,29,625-00-9287,Journalist,27706.71,2416.8925,1213,6,14.28836175,2,"Mortgage Loan, Mortgage Loan, and Debt Consolidation Loan",15.42118829,14,10.49,1,Standard,204.35,37.09833476,19 Years and 0 Months,No,49.1718328,583.5589835,Low_spent_Small_value_payments,318.8958948,0,-0.9463,-2.0072,-0.7567,-2.5206,0.0203 +0x22969,CUS_0x41f2,August,38,397-81-3382,Engineer,63824.07,5383.6725,4,6,18,1,Student Loan,9.144176835,8,10.38,4,_,190.26,40.23201549,19 Years and 11 Months,Yes,27.31945129,178.5845964,High_spent_Medium_value_payments,582.4632023,0,-0.3406,-0.1486,0.8185,0.5811,-0.0589 +0x22975,CUS_0x205f,August,21,914-68-1323,Architect,34361.32,,3,4,11,3,"Not Specified, Not Specified, and Student Loan",,14.65607242,13.36,6,Standard,739.7376869,24.13190473,23 Years and 4 Months,Yes,57.0431107,191.1415114,Low_spent_Small_value_payments,313.9597113,0,-0.7253,0.8417,-0.3104,-0.4514,0.0431 +0x22981,CUS_0x8234,August,44,838-10-8480,_______,10690.96,973.9133333,3,551,15,3,"Auto Loan, Mortgage Loan, and Auto Loan",10.36670204,10.83792223,10.89,3,Standard,285.9490144,32.9823242,32 Years and 9 Months,No,81971,33.24878452,Low_spent_Small_value_payments,329.6880356,0,0.4126,0.3656,0.7122,-0.0595,-4.1383 +0x2298d,CUS_0x242e,August,44,056-99-1422,Teacher,19656.51,,7,5,5,4,"Personal Loan, Payday Loan, Credit-Builder Loan, and Mortgage Loan",23.30770646,20,16.89,11,Standard,786.15,22.10855675,11 Years and 2 Months,Yes,48.68909009,90.82909323,Low_spent_Medium_value_payments,307.6860667,0,0.3956,0.3454,-0.9508,-0.2773,0.9071 +0x22999,CUS_0x865c,August,20,993-96-4833,Manager,35650.02,2696.835,7,4,20,2,"Credit-Builder Loan, and Auto Loan",23.43062556,17,19.28,9,Standard,770.37,34.68738596,20 Years and 5 Months,Yes,37.82791423,,High_spent_Medium_value_payments,405.7118133,0,0.9981,-0.5148,-0.03,1.7021,-0.1443 +0x229a5,CUS_0x2887,August,43,055-75-4532,_______,70137,5830.75,5,6,17,1,Personal Loan,4.414820668,5,9.43,7,_,1416.96,34.71535323,,Yes,45.59523791,362.7089139,Low_spent_Large_value_payments,444.7708482,0,-0.457,0.7096,0.3237,0.2648,-0.1522 +0x229b1,CUS_0x540f,August,35,617-77-4990,Developer,36539.18,3101.085363,2,426,10.28836175,0,,0,1,5.32,1,Good,12.98643468,34.59704631,18 Years and 3 Months,No,160.8463033,,High_spent_Small_value_payments,487.2798186,0,1.9654,-1.4421,-1.2576,1.251,0.2748 +0x229bd,CUS_0xb2fc,August,28,452-02-4154,Doctor,79649.31,,7,3,9,3,"Payday Loan, Debt Consolidation Loan, and Mortgage Loan",16.29628531,14,7.54,3,Good,821.35,34.58818927,27 Years and 10 Months,No,81540,158.6655554,High_spent_Large_value_payments,590.9145515,0,-0.0564,-1.304,1.0197,-0.9103,-0.27 +0x229c9,CUS_0x1ca5,August,28,562-57-6213,Writer,35413.43,2860.119167,6,4,5.288361749,2,"Auto Loan, Student Loan, and Auto Loan",15.20672795,14.27553437,4.48,5,Standard,417.8534559,35.62665645,32 Years and 10 Months,Yes,67.25287694,694.6643453,Low_spent_Small_value_payments,234.0321554,0,-0.9849,1.0384,-0.0727,0.2834,0.7467 +0x229d5,CUS_0x4282,August,23,084-11-7193,Accountant,32507.76,2918.98,6,3,10,3,"Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",,14,9.81,4,Standard,384.04,30.83983806,19 Years and 0 Months,Yes,40136,74.40091303,Low_spent_Large_value_payments,434.3729576,0,1.5208,-0.1808,-0.3899,0.7685,0.0941 +0x229e1,CUS_0x13c2,August,40,090-98-4724,Teacher,60682.11,,8,5,24.06745738,5,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, Payday Loan, and Debt Consolidation Loan",,18,26.12,9,Bad,5123.280954,36.27031146,9 Years and 5 Months,Yes,195.4514774,,Low_spent_Medium_value_payments,359.8099357,0,-0.6457,1.8453,-0.4337,0.3783,0.3077 +0x229ed,CUS_0xa78b,August,80,286-47-4960,Lawyer,35469.72,,3,4,10,0,,10.83616064,10,2.38,5,Standard,1266.34,38.13207677,,No,0,186.6182201,Low_spent_Medium_value_payments,376.7627799,0,0.5655,1.252,-0.8485,1.1911,-0.8321 +0x229f9,CUS_0x4469,August,24,218-98-8370,_______,33475.63,,8,7,16,0,,17.22016292,14,11.6,6,Standard,666.72,30.62703528,22 Years and 11 Months,Yes,0,75.68256784,High_spent_Large_value_payments,467.6810155,0,-0.3733,1.1246,-0.4855,0.3537,-1.2966 +0x22a05,CUS_0x5be9,August,53,428-81-0163,_______,125788.8,10621.4,5,1,3.288361749,0,Mortgage Loan,11.19567887,11,7.63,4,_,1267.433643,33.25324839,25 Years and 6 Months,No,64.06467115,910.5545439,High_spent_Medium_value_payments,818.7690667,0,-1.5309,0.6412,0.7923,0.7099,0.0025 +0x22a11,CUS_0xc26e,August,42,996-64-4883,Accountant,52395.84,4278.32,6,3,6,4,"Credit-Builder Loan, Student Loan, Payday Loan, and Personal Loan",,18,13.46,6,Standard,774.35,32.66938127,31 Years and 4 Months,No,108.5439737,,Low_spent_Small_value_payments,81.9861806,0,0.5128,1.5217,-0.0982,-0.3226,-0.3232 +0x22a1d,CUS_0x4671,August,45,667-35-5970,Scientist,62877.92,5071.826667,9,10,21,3,"Mortgage Loan, Student Loan, and Personal Loan",,19.39713464,11.07,6,_,3010.704773,25.01250653,12 Years and 9 Months,Yes,95.2040667,297.7652591,Low_spent_Large_value_payments,384.2133409,0,-1.8911,-0.0189,0.2348,-0.4845,-0.428 +0x22a29,CUS_0x5d75,August,23,#F%$D@*&8,Teacher,114826.56,,4,1,3.288361749,2,"Student Loan, Personal Loan, and Payday Loan",,3,11.01,5,Good,184.9401863,36.86341641,,No,226.8632031,501.5048541,High_spent_Large_value_payments,870.1147437,0,2.3042,-1.0454,0.3657,-0.2067,1.9379 +0x22a35,CUS_0x4ff5,August,24,137-70-2454,Journalist,32486.64,,5,5,8,3,"Not Specified, Payday Loan, and Not Specified",13.02127494,11,13,10,Standard,242.96,38.20882171,18 Years and 5 Months,Yes,37250,,Low_spent_Large_value_payments,245.0590012,0,-0.8959,-1.1619,-0.0935,0.4289,-1.4555 +0x22a41,CUS_0x4170,August,34,719-74-9244,Writer,23336.97,,3,4,20,1,Home Equity Loan,27.66646356,21,5.96,6,Standard,276.17,32.37955796,20 Years and 10 Months,No,17.01999617,,Low_spent_Small_value_payments,260.2221853,0,0.382,0.5798,-1.1075,0.1727,0.1545 +0x22a4d,CUS_0x96c,August,18,339-26-3192,Scientist,15274.54,,7,237,16.06745738,5,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",28.05863099,,7.98,16,Bad,1852.290954,32.46738981,10 Years and 2 Months,Yes,110.0394847,99.3785742,!@9#%8,236.097756,0,-0.6354,-1.1182,0.4297,0.3904,-2.1102 +0x22a59,CUS_0xb464,August,30,689-62-0292,Architect,20278.79,1898.899167,10,7,30,9,"Personal Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Not Specified, Mortgage Loan, Payday Loan, Auto Loan, and Payday Loan",,25,25.55,9,Bad,2787.7,24.11835878,7 Years and 8 Months,Yes,118.7332592,84.81666223,Low_spent_Large_value_payments,256.3399952,0,0.3899,-1.3484,-1.12,0.522,0.5366 +0x22a65,CUS_0xb8f4,August,41,359-27-6721,Mechanic,116014.8,,2,528,2,3,"Home Equity Loan, Credit-Builder Loan, and Not Specified",,4,1.31,6,Good,1271.05,34.86549032,17 Years and 0 Months,No,267.5292466,65.30255621,High_spent_Large_value_payments,897.9581972,0,1.1808,-0.5567,-1.7845,-0.0476,0.3567 +0x22a71,CUS_0x52c2,August,33,033-23-7885,Media_Manager,113637.69,9620.8075,4,6,3.288361749,2,"Mortgage Loan, and Home Equity Loan",7.247661267,10,7.27,0,Good,20.71310887,25.76567784,30 Years and 5 Months,No,139.9700758,1226.976906,Low_spent_Large_value_payments,381.7996552,0,-0.6546,-2.29,0.0808,-0.361,-0.7551 +0x22a7d,CUS_0x4403,August,43,466-30-9517,Writer,132895.5,,1,2,0.288361749,2,"Payday Loan, and Auto Loan",,5,11.64,1,Good,1162.361025,31.23462167,26 Years and 2 Months,No,132.0324482,,High_spent_Large_value_payments,1033.817186,0,0.4142,0.3932,0.7143,-0.1994,0.842 +0x22a89,CUS_0xb593,August,26,476-56-7499,Mechanic,7744.305,670.35875,10,8,25.06745738,6,"Personal Loan, Personal Loan, Student Loan, Student Loan, Personal Loan, and Auto Loan",40.61598326,27.97133665,27.19,13,Bad,5626.602541,24.02936251,1 Years and 11 Months,NM,25.56238265,89.39479056,Low_spent_Small_value_payments,215.3584139,0,-1.3108,0.9091,0.6728,-1.9834,-0.2336 +0x22a95,CUS_0xb594,August,41,809-82-7359,Musician,9106.91,,7,7,19,100,"Credit-Builder Loan, Home Equity Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Home Equity Loan, Personal Loan, and Payday Loan",28.8815924,21,28.98,14,Bad,2678.858579,29.56275696,,NM,46.58308963,47.52984793,Low_spent_Small_value_payments,290.3846047,0,0.6361,-0.7615,-1.0205,-0.149,1.3776 +0x22aa1,CUS_0x3b83,August,41,251-47-9153,Entrepreneur,56213.84,,6,7,27.06745738,5,"Auto Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, and Credit-Builder Loan",44.20197609,21.98867418,2.77,14,_,4388.138387,24.59370437,4 Years and 8 Months,Yes,120.1594333,311.2585712,Low_spent_Large_value_payments,307.4103742,0,0.6874,-2.0588,0.8148,0.0207,0.3864 +0x22aad,CUS_0x33aa,August,32,671-34-5569,Musician,35843.92,3005.993333,10,10,34.88954781,6,"Student Loan, Auto Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, and Student Loan",,22.44975577,,12,_,4257.100355,38.38832374,3 Years and 0 Months,Yes,1480.150177,,Low_spent_Small_value_payments,155.5103007,0,-1.1261,-1.5601,0.5181,0.5927,-0.161 +0x22ab9,CUS_0x3a3f,August,52,685-35-0038,Media_Manager,9743.51,,4,7,8,2,"Mortgage Loan, and Personal Loan",28.37141518,19,11.82,0,Standard,142.19,39.22958744,24 Years and 5 Months,No,16.04167677,40.64481623,!@9#%8,306.3094237,0,1.3305,1.2928,0.177,0.573,-0.4814 +0x22ac5,CUS_0x2048,August,40,212-55-0432,Developer,20934.49,,6,7,7,7,"Payday Loan, Student Loan, Not Specified, Not Specified, Mortgage Loan, Personal Loan, and Not Specified",24.15336501,16,14.95,10,_,637.11,30.49809106,15 Years and 10 Months,NM,85.94405597,52.14768213,High_spent_Small_value_payments,283.8623452,0,0.8223,-1.1193,1.9786,-0.5479,1.5425 +0x22ad1,CUS_0x52f7,August,23,813-17-7302,Lawyer,36446.72,3002.973195,8,4,16,3,"Not Specified, Debt Consolidation Loan, and Debt Consolidation Loan",25.09306947,17,19.8,1,_,1367.36,27.61897886,26 Years and 6 Months,Yes,243.5221061,110.3986678,Low_spent_Small_value_payments,445.6553647,0,0.182,0.0132,-0.7198,1.1257,0.5941 +0x22add,CUS_0xa9f6,August,46,259-66-7471,Developer,44611.39,,2,3,7,1,Student Loan,2.901823534,4,15.27,0,Good,841.62,34.78227398,26 Years and 11 Months,No,28.96209321,43.82114257,High_spent_Medium_value_payments,559.5783476,0,-0.6099,1.3814,0.1829,0.1227,0.0951 +0x22ae9,CUS_0x60f5,August,30,882-94-7103,Engineer,15060.02,1283.001667,10,5,35.06745738,9,"Auto Loan, Mortgage Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Home Equity Loan",,18,9.06,15,Bad,4910.760954,33.62612635,6 Years and 2 Months,Yes,59.24865183,31.66623545,High_spent_Large_value_payments,250.6649914,0,0.2937,1.7565,-0.0092,1.0832,-1.2914 +0x22af5,CUS_0x2a55,August,43,744-66-0475,Lawyer,17276.8,,8,5,35.06745738,3,"Personal Loan, Personal Loan, and Payday Loan",20.90779785,10.11976707,15.95,11,Standard,2452.669978,29.83856259,18 Years and 4 Months,Yes,23.89759721,105.9590552,Low_spent_Small_value_payments,291.8963929,0,-1.9295,-0.3153,-0.9586,-2.263,-0.5349 +0x22b01,CUS_0x8843,August,37,885-25-4598,Developer,11911.715,,5,6,12.06745738,6,"Debt Consolidation Loan, Not Specified, Student Loan, Personal Loan, Not Specified, and Personal Loan",29.24430262,20,11.41,8,Standard,1370.900954,32.02988609,7 Years and 8 Months,Yes,33.1224541,39.82699522,Low_spent_Small_value_payments,282.0945544,0,-0.6738,-1.5067,-0.582,1.0132,-2.4435 +0x22b0d,CUS_0x59d8,August,26,270-19-5257,Musician,37999.06,,10,9,27.95700519,6,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, and Debt Consolidation Loan",,28.78428058,29.14,11,Bad,4334.906727,35.35103995,1 Years and 10 Months,NM,1477.473614,260.7865246,Low_spent_Small_value_payments,124.0483257,0,1.1131,0.1625,-0.7273,0.6615,-0.1462 +0x22b19,CUS_0x27f4,August,45,235-09-7325,Journalist,7200.86,,4,4,12,6,"Payday Loan, Mortgage Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",7.405256765,8,7.22,5,Standard,1528.69,37.34198289,17 Years and 3 Months,NM,28.0081717,,High_spent_Small_value_payments,249.9625169,0,0.5248,-1.2053,-0.2698,-1.6459,-0.025 +0x22b25,CUS_0x29cd,August,38,782-79-3837,Musician,17818.53,,5,6,11,2,"Home Equity Loan, and Credit-Builder Loan",4.663395703,6,8.6,5,Good,1452.64,28.74243708,24 Years and 6 Months,No,103.2970894,109.5207396,Low_spent_Small_value_payments,297.005318,0,0.1922,0.9287,-0.3849,-1.5908,0.7073 +0x22b31,CUS_0x4813,August,33,482-77-1212,Media_Manager,84845.48,7187.456667,4,3,9.288361749,2,"Debt Consolidation Loan, Auto Loan, and Not Specified",8.26864566,10,8.52,6,Good,5.28,31.59613989,24 Years and 10 Months,NM,137.0118815,536.5243933,High_spent_Medium_value_payments,715.1468529,0,0.7074,1.6102,1.1296,-1.108,0.1544 +0x22b3d,CUS_0x312b,August,29,#F%$D@*&8,_______,73995.12,6043.26,4,4,15,4,"Not Specified, Personal Loan, Personal Loan, and Not Specified",28.43715108,17.19719608,18.9,12,_,2202.707259,38.33086971,12 Years and 3 Months,NM,190.9071513,,High_spent_Large_value_payments,608.2547791,0,-1.1405,1.4998,0.6975,-0.7694,-0.9858 +0x22b49,CUS_0x74e5,August,24,596-70-1576,Teacher,84120.45,,2,7,8,100,"Payday Loan, Not Specified, and Student Loan",,1,4.91,5,Good,1317.56,39.32428018,19 Years and 6 Months,No,136.2777563,276.0120854,Low_spent_Small_value_payments,580.8139082,0,-1.7592,-0.6574,0.2904,0.3894,-0.187 +0x22b55,CUS_0x5dca,August,39,016-75-7834,Accountant,58510.3,4967.858333,7,4,12,0,,13.0318751,11,2.45,4,Standard,984.82,39.66331783,17 Years and 11 Months,No,0,97.5842573,High_spent_Small_value_payments,659.201576,0,1.893,0.8867,-1.3487,1.1388,0.3696 +0x22b61,CUS_0x28e3,August,25,118-08-4142,Lawyer,129903,10705.25,4,6,7.288361749,2,"Debt Consolidation Loan, and Auto Loan",5.67875694,8,8.16,4,Good,585.74,34.81198866,16 Years and 8 Months,No,170.0120538,559.3479978,High_spent_Large_value_payments,1001.102409,0,-1.279,0.0236,0.111,-0.8472,-0.2727 +0x22b6d,CUS_0x23a1,August,23,567-97-0729,Mechanic,16579.55,,7,6,12,2,"Not Specified, and Credit-Builder Loan",,12,8.74,12,Standard,1467.16,38.40332338,19 Years and 9 Months,Yes,16.95401859,54.65654079,High_spent_Medium_value_payments,326.9523573,0,0.4175,-0.9458,-1.7439,0.7063,0.985 +0x22b79,CUS_0xbbd8,August,23,849-15-4668,_______,88275.18,7607.265,8,4,7,2,"Not Specified, and Personal Loan",,9.341459174,13.42,6,_,159.7281589,36.43161699,23 Years and 11 Months,Yes,140.5728178,125.0870086,High_spent_Medium_value_payments,745.0666736,0,0.3473,-1.783,-0.2612,0.1223,0.5269 +0x22b85,CUS_0x6e0,August,46,826-38-1391,Entrepreneur,31104.32,2871.026667,6,5,12,1,Credit-Builder Loan,16.98665812,14,6.8,6,Standard,1354,35.64452473,30 Years and 11 Months,No,22.68715164,40.82643436,High_spent_Large_value_payments,463.5890807,0,1.7373,-0.008,0.185,-0.6458,-0.4971 +0x22b91,CUS_0xb5dd,August,22,848-97-1120,Journalist,14399044,1087.546445,0,4,3,3,"Personal Loan, Auto Loan, and Credit-Builder Loan",,11,5.6,4,Good,1462.95,29.99558995,20 Years and 6 Months,No,154.038269,77.05208339,Low_spent_Small_value_payments,303.3894108,0,0.3751,-0.0869,1.2956,0.4644,-0.0034 +0x22b9d,CUS_0x5029,August,60,721-33-6721,Media_Manager,31866.94,,2,1,8,0,,7.621927994,6,2.36,0,Good,764.4293102,34.30013761,29 Years and 3 Months,No,0,,High_spent_Large_value_payments,459.1765322,0,0.5461,0.4837,1.0237,-0.254,0.3811 +0x22ba9,CUS_0x6c67,August,22,024-43-6489,Media_Manager,19071.34,1690.258936,8,5,17,2,"Auto Loan, and Credit-Builder Loan",30.14407744,19,10.17,4,Standard,118.72,27.80017475,31 Years and 4 Months,No,203.6715602,,Low_spent_Medium_value_payments,249.2903665,0,-0.4841,0.9135,-0.2,0.0061,-1.4389 +0x22bb5,CUS_0x38cc,August,28,906-86-9049,Writer,22713.82,,6,6,17.06745738,2,"Not Specified, and Payday Loan",,16,19.49,7,_,1633.950954,39.85123412,17 Years and 8 Months,Yes,19.37348722,70.72624554,!@9#%8,325.1618126,0,1.6539,0.2978,0.7063,0.272,0.4619 +0x22bc1,CUS_0x23c5,August,22,435-97-7668,Entrepreneur,93293.13,,4,5,2,4,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Auto Loan",,10,8.27,4,Good,1448.6,25.40872803,25 Years and 0 Months,No,156.2123992,,Low_spent_Medium_value_payments,300.8188071,0,0.8054,1.2014,0.7278,-0.1019,-0.4534 +0x22bcd,CUS_0x128f,August,32,015-60-0619,Teacher,75816.52,,6,9,22,5,"Not Specified, Not Specified, Student Loan, Mortgage Loan, and Home Equity Loan",34.17479333,25,27.85,9,_,2555.9,30.81363182,,Yes,158.1637791,73.0545126,!@9#%8,637.8860416,0,0.7452,0.3414,1.5282,-0.1761,-1.047 +0x22bd9,CUS_0x582f,August,29,462-85-7240,Teacher,131091.6,,5,5,12,0,,18.49629862,17,0.66,0,_,702.4545489,36.70984569,19 Years and 9 Months,No,0,272.1921802,!@9#%8,1094.375958,0,-1.3114,0.5052,1.0125,0.9449,0.1227 +0x22be5,CUS_0x14c1,August,37,695-59-2005,Media_Manager,130220.08,,6,3,14,3,"Home Equity Loan, Personal Loan, and Debt Consolidation Loan",24.18229296,17,2.17,4,Standard,410.1,34.41841759,29 Years and 11 Months,Yes,245.9244925,282.3580266,Low_spent_Large_value_payments,855.8848142,0,0.4714,0.2628,-0.3523,-0.5673,-0.2479 +0x22bf1,CUS_0x8608,August,38,072-52-5986,Entrepreneur,169339.88,,1,6,9,3,"Payday Loan, Not Specified, and Student Loan",6.625630106,7.273736452,,2,_,1327.474954,40.94693285,26 Years and 0 Months,No,343.1893537,576.1846134,High_spent_Medium_value_payments,723.7916996,0,0.4954,0.8272,-1.1199,0.2987,0.2169 +0x22bfd,CUS_0x1551,August,28,210-96-9043,Entrepreneur,16674.01,,1,4,5,100,Auto Loan,,7,-3.97,4,Good,1366.799077,25.69556274,16 Years and 5 Months,NM,13.63231056,45.78778568,High_spent_Small_value_payments,341.0866655,0,0.3911,-0.6762,0.14,-0.6374,0.6256 +0x22c09,CUS_0x3aaa,August,80,750-94-9700,Developer,51580.68,4139.39,5,6,10,6,"Personal Loan, Not Specified, Student Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",15.02896193,10,19.9,4,Standard,1475.3,22.36001391,20 Years and 0 Months,Yes,219.3084504,173.2354549,High_spent_Medium_value_payments,271.3950947,0,0.4583,0.7734,-0.439,-0.234,-0.2867 +0x22c15,CUS_0x70d,August,24,350-94-1349,Engineer,15710.265,,5,7,5,1,Payday Loan,22.54651382,17,14.63,4,Standard,1012.23,27.83109322,,Yes,10.60777444,41.76909106,High_spent_Small_value_payments,322.8420095,0,0.4498,-1.0586,-0.0137,-1.0695,-1.7275 +0x22c21,CUS_0x22b1,August,41,058-45-2550,_______,64692.9,5357.775058,1,3,12,0,,11.58893965,10,1.03,3,Good,1155.106192,39.86105321,15 Years and 11 Months,No,285.2999421,127.2285581,High_spent_Small_value_payments,710.522819,0,1.9961,-0.2937,-0.1704,2.4671,-1.8876 +0x22c2d,CUS_0x92e9,August,19,293-06-9184,Writer,36863.79,2743.674268,2,5,6,6,"Debt Consolidation Loan, Not Specified, Payday Loan, Student Loan, Payday Loan, and Auto Loan",,20.57125152,15.02,6,Standard,487.0744618,29.70839721,8 Years and 3 Months,Yes,238.2231495,,Low_spent_Small_value_payments,101.8555113,0,0.3871,-0.2121,0.5354,-0.4709,0.0235 +0x22c39,CUS_0x5826,August,33,844-57-8072,Lawyer,16740.095,1293.007917,5,5,2,2,"Payday Loan, and Credit-Builder Loan",6.468396163,9,4.97,6,Good,218.19,22.8759575,16 Years and 8 Months,No,14.8402564,114.2144382,Low_spent_Large_value_payments,270.246097,0,-0.3042,-1.0512,0.54,0.636,0.8389 +0x22c45,CUS_0xfaa,August,18,139-66-0724,Doctor,19761.79,,10,8,31,5,"Personal Loan, Auto Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",,,18.16,14,Bad,4670.92,25.64546461,4 Years and 4 Months,NM,42.0813735,80.93009128,Low_spent_Medium_value_payments,333.3701185,0,0.4909,-1.0818,1.5192,-0.1035,0.5941 +0x22c51,CUS_0xaee3,August,28,568-87-8837,Musician,44608.21,3574.350833,4,5,10,0,,6.721095321,7,6.98,5,_,579.1446164,38.09117859,32 Years and 2 Months,No,0,,Low_spent_Small_value_payments,199.7722024,0,1.0397,-0.2985,-0.2739,-0.9609,-2.0534 +0x22c5d,CUS_0xb172,August,80,#F%$D@*&8,Mechanic,35093.6,2969.466667,4,4,19,0,,5.333939932,8,4.27,3,_,916.22,24.97729493,31 Years and 8 Months,Yes,0,264.4357159,Low_spent_Medium_value_payments,312.5109508,0,0.0911,1.054,-0.8656,-1.0979,-0.8558 +0x22c69,CUS_0xb818,August,24,958-08-7164,Lawyer,62424.12,,7,8,29,5,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",37.2480428,20,19.58,6,_,1958.36,27.00440132,12 Years and 10 Months,Yes,175.3603175,,High_spent_Large_value_payments,472.7614562,0,0.2707,2.0344,-0.3013,1.3383,1.3084 +0x22c75,CUS_0x36b4,August,47,144-10-9312,Musician,17060.705,1685.725417,8,3,11,4,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Auto Loan",19.19260814,,9.64,6,Standard,247.8347304,37.72347216,22 Years and 8 Months,Yes,51.93463391,70.30643422,High_spent_Small_value_payments,315.5904885,0,-1.0214,-0.0793,-0.1288,-0.3907,-1.0133 +0x22c81,CUS_0x7d66,August,47,621-07-0498,Journalist,39459.88,3530.323333,4,2,1,2,"Mortgage Loan, and Student Loan",0,0,11.28,6,Good,1125.220705,35.30642705,24 Years and 10 Months,No,50.77229873,168.8757827,High_spent_Medium_value_payments,406.0120576,0,-2.1489,1.5598,-0.838,-0.895,-0.6054 +0x22c8d,CUS_0x416f,August,18,562-69-0668,Mechanic,169481.08,14408.42333,3,2,10,2,"Personal Loan, and Credit-Builder Loan",17.27760709,,0.95,4,_,581.5494365,30.13498855,17 Years and 4 Months,No,168.9283469,403.3708213,High_spent_Small_value_payments,1166.376436,0,0.2151,-0.9049,-0.943,0.3992,-0.9024 +0x22c99,CUS_0x922d,August,19,827-48-6624,Journalist,100809.78,8439.815,4,5,12,3,"Student Loan, Credit-Builder Loan, and Auto Loan",20.26077373,18,19.15,9,_,640.78,27.77052421,10 Years and 11 Months,Yes,219.7155672,202.2448565,High_spent_Large_value_payments,662.0210763,0,0.567,-0.2269,0.1547,0.4429,0.1219 +0x22ca5,CUS_0xaea9,August,18,964-34-3476,Engineer,16236.13,,7,5,21,5,"Personal Loan, Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Student Loan",,20,19.03,10,Bad,3300.77,31.92709646,13 Years and 11 Months,Yes,66.56064223,,Low_spent_Small_value_payments,190.9204805,0,-0.3506,1.8642,0.6122,0.6315,-1.6224 +0x22cb1,CUS_0x8ae9,August,18,173-40-0385,Developer,9114.48,,8,35,34.95700519,7,"Not Specified, Not Specified, Mortgage Loan, Personal Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",21.92155737,,19.05,6,_,3046.830954,27.55310732,7 Years and 2 Months,Yes,1353.564232,,Low_spent_Small_value_payments,212.9246239,0,-2.2854,-2.1657,1.0089,-1.6039,-0.5852 +0x22cbd,CUS_0x3ee9,August,50,459-66-4683,Media_Manager,60663,,3,3,20,1,Payday Loan,20.83121492,17,6.15,2,Standard,846.68,29.75858704,,NM,44.52236414,128.5338137,High_spent_Small_value_payments,568.0688222,0,-1.3536,-0.2888,-0.7607,-0.6594,0.6058 +0x22cc9,CUS_0xc2c0,August,80,498-38-6425,Manager,14198.91,1099.2425,6,7,6,6,"Payday Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",26.82721209,21,18.44,6,Standard,603.87,25.18921597,8 Years and 9 Months,NM,70.49609995,39.06880677,High_spent_Medium_value_payments,250.3593433,0,-1.6975,0.5786,-0.9611,0.7736,0.4206 +0x22cd5,CUS_0x373b,August,32,368-07-2548,Media_Manager,26520.9,2202.075,8,4,935,4,"Auto Loan, Debt Consolidation Loan, Mortgage Loan, and Personal Loan",,12,15.63,5,Standard,1182.19,33.28578035,19 Years and 11 Months,Yes,2004,74.13007061,High_spent_Medium_value_payments,338.9374475,0,-0.1503,-0.0302,-1.7575,-1.6019,1.507 +0x22ce1,CUS_0xabef,August,27,759-42-6331,Scientist,157156.8,13050.4,3,3,8.288361749,0,,9.87581103,10,10.45,5,Good,1249.710795,42.27674205,,No,0,,High_spent_Small_value_payments,875.0634283,0,1.1926,0.4939,-2.1048,0.6145,1.1162 +0x22ced,CUS_0x2f9d,August,80,049-42-3355,Manager,7555.45,769.6208333,8,6,926,6,"Not Specified, Personal Loan, Home Equity Loan, Auto Loan, Mortgage Loan, and Credit-Builder Loan",33.0659086,20.27258575,9.4,16,Bad,3701.991586,28.47067287,9 Years and 4 Months,Yes,33.79950434,38.16776605,Low_spent_Medium_value_payments,284.9948129,0,-1.24,-1.1434,0.8348,0.5632,0.7795 +0x22cf9,CUS_0x6a6,August,48,240-37-4122,Accountant,91946.91,7553.2425,3,6,12,100,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Payday Loan",20.84329266,16,18.44,1,Standard,1194.82,37.05588354,30 Years and 0 Months,Yes,251.1629402,84.79024876,High_spent_Large_value_payments,659.3710611,0,-0.1327,1.0134,-0.9632,2.0987,0.5013 +0x22d05,CUS_0x76df,August,45,826-97-3188,_______,61970.82,4901.235,8,4,13,100,Credit-Builder Loan,17.65182232,15,5.08,7,_,636.65,33.04341877,31 Years and 0 Months,No,41.63362639,,High_spent_Small_value_payments,401.1906535,0,0.2321,0.2602,0.0807,2.2219,0.7646 +0x22d11,CUS_0x477b,August,42,356-12-0486,Journalist,26775.49,,983,4,7,1,Home Equity Loan,27.53929001,22,6.42,5,Standard,1082.13,25.33646326,27 Years and 0 Months,No,13.48429453,107.0198073,Low_spent_Large_value_payments,390.3249815,0,0.0546,0.1188,-0.3497,1.3068,-1.668 +0x22d1d,CUS_0x8ec8,August,24,004-57-0116,Media_Manager,29741.12,2151.702355,8,5,31,5,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Home Equity Loan, and Student Loan",,16.36824309,7.56,7,Standard,1426.808692,32.46157965,17 Years and 5 Months,NM,77407,231.4106006,Low_spent_Small_value_payments,192.9098549,0,0.4263,-0.8996,-0.1844,-0.4694,0.551 +0x22d29,CUS_0x4238,August,25,531-95-3608,Mechanic,39431.65,3447.970833,5,4,2,1,Debt Consolidation Loan,0,1,7.87,4,Good,1392.78,26.01021083,24 Years and 6 Months,No,19.88457141,94.21594634,Low_spent_Medium_value_payments,510.6965656,0,-0.9535,-0.6859,0.8463,1.1642,1.4797 +0x22d35,CUS_0x5627,August,51,953-46-1751,Teacher,34366,2831.833333,2,4,8,2,"Student Loan, and Payday Loan",11.19198281,11,,5,Good,701.41,31.62529908,,NM,44.93190236,77.69798415,High_spent_Small_value_payments,420.5534468,0,-0.3693,-1.0547,-0.6754,1.369,-0.0806 +0x22d41,CUS_0x9002,August,43,540-68-4591,Media_Manager,20851.59,1701.6325,4,6,19.06745738,100,Mortgage Loan,21.16122309,14,14.46,5,Standard,1418.470954,37.53893882,16 Years and 8 Months,Yes,9.299161964,21.98385781,High_spent_Large_value_payments,352.1599423,0,-1.2335,0.9164,1.4758,0.3334,0.3474 +0x22d4d,CUS_0x9871,August,31,968-80-1460,Lawyer,85553.97,7223.4975,1,4,1,2,"Not Specified, and Credit-Builder Loan",0,2,10.65,1,Good,165.6476993,33.03243965,18 Years and 6 Months,No,95.10542587,11581.73689,Low_spent_Large_value_payments,549.4711671,0,0.6107,-0.0451,1.5527,0.7187,-0.9793 +0x22d59,CUS_0x1bb6,August,20,#F%$D@*&8,Entrepreneur,9163.96,806.6633333,6,10,23,2,"Payday Loan, and Debt Consolidation Loan",,18,10.93,6,Standard,1685.88,35.67749251,6 Years and 6 Months,Yes,14.37770113,23.259099,High_spent_Medium_value_payments,293.0295332,0,0.1282,-0.3709,-0.9751,0.4823,2.2127 +0x22d65,CUS_0x725e,August,25,064-45-0394,Journalist,61444.92,5144.41,10,6,32.06745738,9,"Mortgage Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Payday Loan, and Not Specified",24.53365221,,17.51,12,_,3846.885462,30.02278651,10 Years and 4 Months,Yes,346.3633489,240.8237543,Low_spent_Medium_value_payments,180.5336089,0,-0.2201,0.8545,1.1811,-0.1115,0.6749 +0x22d71,CUS_0xb837,August,26,670-65-6270,Journalist,14070.22,,9,9,25.06745738,6,"Home Equity Loan, Auto Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,21.44593619,18.61,9,Bad,2589.566265,25.54467895,13 Years and 10 Months,Yes,40.16573686,27.17011488,High_spent_Small_value_payments,280.7956937,0,0.3451,-0.1289,-0.0137,1.6496,0.2626 +0x22d7d,CUS_0xabaf,August,48,#F%$D@*&8,Manager,36990.53,,0,5,0.288361749,2,"Debt Consolidation Loan, Mortgage Loan, and Auto Loan",0,1,4.58,5,Good,129.0140393,28.5167029,21 Years and 4 Months,No,68.15523048,554.3109216,High_spent_Small_value_payments,356.8574372,0,-1.9092,0.354,1.4055,1.4092,-1.914 +0x22d89,CUS_0xc55b,August,38,334-09-5549,Architect,52499.16,4244.93,7,5,17,8,"Home Equity Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Personal Loan",40.99910804,21.74702729,2.21,10,_,1615.215404,40.56755782,7 Years and 3 Months,Yes,289.268493,45.83887054,High_spent_Large_value_payments,329.3856364,0,-0.5403,-0.4372,0.2445,-0.5168,0.4927 +0x22d95,CUS_0xc3ad,August,26,563-61-0664,_______,7168.48,556.3733333,8,8,20.88954781,8,"Not Specified, Personal Loan, Credit-Builder Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Not Specified, and Payday Loan",,20.44519941,6.31,9,Bad,2943.164939,36.46261255,12 Years and 6 Months,Yes,26178.48344,,Low_spent_Small_value_payments,242.1559175,0,0.2015,0.1959,1.362,0.2971,0.4577 +0x22da1,CUS_0x1695,August,28,947-47-2443,Engineer,14219.345,1418.945417,5,7,10,4,"Student Loan, Home Equity Loan, Mortgage Loan, and Mortgage Loan",,19,-5.93,6,Standard,153.1743115,25.73899791,19 Years and 0 Months,No,30.05042301,218.5674505,Low_spent_Small_value_payments,210.7928912,0,-1.5687,0.4757,0.1323,-0.8745,-1.223 +0x22dad,CUS_0xdb0,August,45,574-76-3430,Engineer,131760.3,11139.025,2,3,6,0,,6.373343151,6,,3,Good,262.48,38.10200385,17 Years and 9 Months,No,0,302.4978385,High_spent_Medium_value_payments,1061.404662,0,0.8655,0.6248,-1.0586,-1.7563,0.4307 +0x22db9,CUS_0x457e,August,54,656-83-9494,Journalist,59343.12,4919.26,7,7,8,0,,14.33612671,12,17.27,4,Standard,9.32,39.56182411,21 Years and 3 Months,Yes,0,123.4565472,High_spent_Medium_value_payments,618.4694528,0,0.4456,1.322,-1.1129,-1.1747,-0.368 +0x22dc5,CUS_0xb4d6,August,53,724-66-1705,Musician,11527.375,733.6145833,5,5,1,0,,21.59286399,17,2.33,4,Good,1250.026647,26.53066533,16 Years and 5 Months,No,0,64.72282068,Low_spent_Medium_value_payments,296.9885219,0,0.39,-2.0518,0.6154,-0.5251,0.2695 +0x22dd1,CUS_0x90d0,August,39,047-17-4695,Writer,46477.56,,8,10,24.88954781,6,"Auto Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",45.98290678,25.82609988,7.67,12,Bad,2051.552202,31.49661138,9 Years and 3 Months,Yes,1535.731634,169.1075708,Low_spent_Small_value_payments,296.7437136,0,0.4272,0.7485,0.7818,1.2096,-0.384 +0x22ddd,CUS_0x13df,August,38,082-87-9651,Engineer,32387.94,2819.995,8,4,12,0,,,10.43349428,6.18,5,_,612.0433449,25.31087916,16 Years and 9 Months,No,0,213.6327046,Low_spent_Small_value_payments,358.3667954,0,-1.6108,-1.4825,-0.8616,-0.1177,1.8667 +0x22de9,CUS_0x52b1,August,46,714-29-2224,Journalist,27226.38,,4,5,11,2,"Payday Loan, and Credit-Builder Loan",20.28734418,18,7.07,2,Good,1153.62,37.06384627,25 Years and 5 Months,No,42.8510811,,High_spent_Small_value_payments,330.1069617,0,-0.735,-0.8592,0.1192,-1.4744,0.3403 +0x22df5,CUS_0x277e,August,47,800-81-5647,Engineer,86097.54,7202.795,1,2,10.28836175,2,"Home Equity Loan, and Student Loan",3.079219733,5,,1834,_,9.169698077,26.37545548,19 Years and 6 Months,No,128.4040752,695.7506217,High_spent_Medium_value_payments,592.7368112,0,1.3297,-0.0603,0.2188,-1.3495,1.8957 +0x22e01,CUS_0x7045,August,37,356-25-9324,Developer,29423.32,2401.943333,8,8,31.88954781,8,"Mortgage Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Auto Loan, and Payday Loan",41.98589329,24,18.81,8,Bad,3190.38,25.29409268,6 Years and 10 Months,Yes,1514.441975,145.7384988,Low_spent_Small_value_payments,175.683778,0,2.0244,-0.6763,-0.3727,1.0303,0.441 +0x22e0d,CUS_0x641e,August,32,690-02-3558,Mechanic,16799.32,1216.943333,10,9,33.88954781,6,"Not Specified, Debt Consolidation Loan, Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",23.35682944,16,25.87,11,Bad,4014.35,23.6944907,,Yes,1397.457031,,Low_spent_Small_value_payments,278.2155886,0,0.0522,-0.654,1.0767,0.8745,0.466 +0x22e19,CUS_0x82c4,August,27,645-13-3481,Media_Manager,81430.32,,6,6,10,1,Student Loan,,20.56175317,16.75,3,Standard,862.7590733,34.84333691,32 Years and 11 Months,Yes,48.48208356,160.3889598,Low_spent_Large_value_payments,726.4149566,0,1.1455,0.754,1.1243,2.3023,-0.4134 +0x22e25,CUS_0xbe7,August,27,148-84-1200,Writer,8794.49,,8,10,22.88954781,8,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Auto Loan, Payday Loan, Home Equity Loan, and Home Equity Loan",21.09895047,17.8993522,3.68,11,Bad,2812.392657,29.4418484,16 Years and 6 Months,Yes,1381.059146,26.86418061,Low_spent_Small_value_payments,266.5340089,0,-1.1207,0.9019,1.6755,0.4028,0.2428 +0x22e31,CUS_0x6896,August,18,975-47-9681,Media_Manager,31896.7,,7,7,9,2,"Home Equity Loan, and Payday Loan",31.7357536,22.53204685,17.95,10,Standard,2165.211068,31.04889903,19 Years and 8 Months,Yes,48104,126.2874014,Low_spent_Small_value_payments,410.5866902,0,-0.4058,1.2211,-0.6384,-0.3173,1.5675 +0x22e3d,CUS_0x5f22,August,36,578-21-3436,Media_Manager,93373.68,,5,7,6.288361749,2,"Auto Loan, and Mortgage Loan",19.21803035,16,18.8,4,Standard,1067.59,28.45908133,32 Years and 11 Months,Yes,137.2514849,751.3913787,High_spent_Medium_value_payments,569.2085974,0,2.1167,-0.2823,-0.0303,0.0444,0.6879 +0x22e49,CUS_0x9a0c,August,21,627-45-5084,_______,166658.68,,5,3,11.28836175,2,"Payday Loan, and Not Specified",4.462346276,8,9.95,1,Good,959.2,44.72463707,22 Years and 11 Months,No,222.2857272,778.2749576,High_spent_Large_value_payments,1065.199109,0,-0.8765,-0.8684,-0.2748,-1.2147,-1.151 +0x22e55,CUS_0xab16,August,56,098-90-8046,Lawyer,17168.925,,4,4,4,100,"Debt Consolidation Loan, and Payday Loan",15.71832148,,8.25,1005,Good,614.4086128,36.62410606,19 Years and 3 Months,No,16.36962189,70.22380517,Low_spent_Medium_value_payments,343.736032,0,-1.2704,-1.214,-2.4735,-0.464,0.0741 +0x22e61,CUS_0x8369,August,18,698-91-4112,Manager,23646.08,1752.506667,4,3,14,6,"Debt Consolidation Loan, Mortgage Loan, Personal Loan, Personal Loan, Student Loan, and Personal Loan",18.04944926,15,12.51,,Standard,1242.722087,25.25874952,13 Years and 8 Months,Yes,108.8352925,37.0507194,High_spent_Small_value_payments,292.8535958,0,-0.5578,-2.569,-0.9926,0.5081,1.7178 +0x22e6d,CUS_0xe4e,August,22,952-71-5963,Scientist,108073.68,8738.14,3,3,9,0,,,14,16.16,7,Standard,1323.25,38.32725299,19 Years and 9 Months,Yes,0,366.5545125,High_spent_Medium_value_payments,757.2594875,0,0.8913,0.5425,-1.4018,0.4798,-2.0358 +0x22e79,CUS_0x8e6e,August,43,741-44-9176,Accountant,13056.35,1177.029167,5,6,18,1,Personal Loan,20.49912848,15,10.39,5,Standard,562.05,27.48553559,27 Years and 9 Months,Yes,8.140792415,93.22152388,Low_spent_Small_value_payments,306.3406004,0,-0.6962,-0.3222,0.357,0.6211,0.0565 +0x22e85,CUS_0x92b6,August,20,339-08-2156,Mechanic,46586.79,3823.2325,5,5,27,5,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Credit-Builder Loan",,5.628217192,15.51,10,Standard,1932.817137,29.13142863,6 Years and 8 Months,Yes,142.5295758,137.65603,!@9#%8,352.1376442,0,-0.865,-1.0317,-0.193,0.1157,0.9407 +0x22e91,CUS_0x6013,August,20,244-85-0461,Writer,41995.64,3416.636667,7,6,7,4,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, and Student Loan",9.450515357,10,16.73,7,Standard,1072.63,35.78877515,15 Years and 10 Months,Yes,87.54399905,142.3387919,Low_spent_Small_value_payments,401.7808757,0,-0.2055,1.08,-0.054,-1.9737,0.1372 +0x22e9d,CUS_0x3359,August,24,045-72-2781,Entrepreneur,20287.13,1626.594167,4,6,11,0,,22.90598544,15,10.98,8,Standard,19.94,28.16924623,26 Years and 4 Months,Yes,12529,50.18649539,Low_spent_Large_value_payments,382.4729213,0,0.0458,0.9791,0.3711,2.8255,1.1222 +0x22ea9,CUS_0x8dc6,August,37,913-47-2738,Journalist,76879.4,,10,6,23,9,"Payday Loan, Home Equity Loan, Personal Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",29.23704404,17,23.86,12,Bad,3705.604696,32.09950741,9 Years and 3 Months,Yes,388.3889869,952.331487,Low_spent_Small_value_payments,,0,1.3652,0.4547,0.2862,-0.1362,-0.4174 +0x22eb5,CUS_0x9fcf,August,18,177-47-5939,Doctor,19594.29,,8,7,18.06745738,9,"Student Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",34.91857392,18.83558235,3.4,15,Bad,3775.525337,35.52254906,1 Years and 8 Months,Yes,146.709483,67.79282759,Low_spent_Large_value_payments,212.2631515,0,-0.6802,-0.3856,0.9921,-1.3795,-0.23 +0x22ec1,CUS_0x5f8b,August,39,084-81-6413,Musician,16776.02,1622.001667,8,3,10,4,"Student Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",32.69073289,22.42302923,10.2,5,Standard,265.0624986,24.19326108,30 Years and 0 Months,Yes,28.13446349,135.1509729,Low_spent_Large_value_payments,268.9147303,0,0.3535,0.287,-0.2175,-0.9285,0.2562 +0x22ecd,CUS_0x809c,August,48,675-17-0345,Musician,27881.32,2077.443333,3,7,18,3,"Not Specified, Credit-Builder Loan, and Not Specified",14.08739444,11,3.1,6,Standard,1135.274917,22.53346746,21 Years and 8 Months,No,37.19932647,48.95921203,High_spent_Medium_value_payments,377.6736079,0,-0.7436,-1.6544,1.4148,0.1936,-0.3524 +0x22ed9,CUS_0xa2d7,August,45,344-37-5737,Writer,62509.84,5159.153333,10,10,28.88954781,9,"Personal Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Personal Loan, and Student Loan",,25,18.13,12,Bad,3149.82,33.54530888,10 Years and 4 Months,Yes,58122.48344,434.2023967,Low_spent_Small_value_payments,0,0,-1.492,0.3794,0.1018,-0.9004,1.7114 +0x22ee5,CUS_0xbdca,August,35,096-92-4217,_______,9106.335,,4,5,9,6,"Personal Loan, Auto Loan, Auto Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",21.88050229,18,16.23,8,Standard,2485.16,33.74642058,18 Years and 0 Months,Yes,39.38429556,17.08720002,High_spent_Medium_value_payments,249.1146294,0,0.0316,-1.3953,0.5724,-1.2332,0.2088 +0x22ef1,CUS_0x6570,August,29,031-44-3798,Musician,59412.6,4708.05,8,214,5,100,"Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Not Specified, and Credit-Builder Loan",12.98743272,9,18.3,8,Standard,1733,24.96732355,7 Years and 9 Months,Yes,142.3111565,179.5224676,High_spent_Medium_value_payments,398.9713758,0,-0.207,-0.3819,-3.3353,-0.9281,1.0703 +0x22efd,CUS_0x86e,August,43,316-32-6874,Engineer,43623.84,3592.32,7,7,23,6,"Auto Loan, Auto Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Auto Loan",,19.07645616,16.64,9,Standard,2193.733053,39.49941114,10 Years and 3 Months,NM,142.3667696,75.11331849,High_spent_Small_value_payments,401.7519119,0,-0.1465,-0.1835,0.0791,2.3848,1.4583 +0x22f09,CUS_0x1f9c,August,46,498-47-1128,Entrepreneur,15258.95,1508.579167,3,6,1,0,,0.284373788,5,10.06,5,Good,997.82924,25.35176148,23 Years and 10 Months,No,0,162.6255547,Low_spent_Small_value_payments,297.4655858,0,0.3074,0.3477,-0.1676,-0.3355,1.8166 +0x22f15,CUS_0x44d5,August,40,103-44-2996,_______,9598.38,,7,6,20,2,"Auto Loan, and Payday Loan",11.31607241,9,9.31,5,Standard,878.44,24.53227855,16 Years and 6 Months,Yes,15.40263845,46.07412361,Low_spent_Small_value_payments,280.1097379,0,-1.7969,-0.2241,1.0931,-1.3782,0.0935 +0x22f21,CUS_0xb615,August,28,744-77-7523,Teacher,21206.48,1631.206667,7,5,8,0,,15.64376282,12,9.3,2,Good,213.4510879,30.29347913,19 Years and 3 Months,NM,0,41.94399157,High_spent_Small_value_payments,385.6664798,0,-0.1617,0.8059,1.1585,0.3855,-1.5591 +0x22f2d,CUS_0x6092,August,22,372-92-0150,Engineer,13347.835,1064.319583,5,7,19,2,"Credit-Builder Loan, and Auto Loan",29.84970645,22.69611349,18.66,4,Standard,604.6672802,29.87502167,22 Years and 10 Months,NM,15.75804686,10000,Low_spent_Small_value_payments,284.9894207,0,0.3832,0.0194,-0.7096,-1.6475,0.8944 +0x22f39,CUS_0xbd1f,August,37,159-72-2454,Writer,31902.65,,5,6,9,1,Home Equity Loan,25.38241856,18,7.87,3,Standard,370.0743811,37.09786029,22 Years and 6 Months,NM,18.28897686,83.88135183,High_spent_Medium_value_payments,426.3097726,0,-0.9511,-0.7055,0.419,0.3668,0.5588 +0x22f45,CUS_0x1341,August,47,155-02-9593,Mechanic,15341.895,,6,7,3,1,Debt Consolidation Loan,9.810454515,8,7.71,2,_,1152.71,24.1344052,21 Years and 4 Months,NM,6.981993019,81.56430855,Low_spent_Medium_value_payments,295.0028234,0,-1.2991,-1.4926,-1.2782,1.6176,0.4588 +0x22f51,CUS_0x7e6c,August,53,302-82-0750,Accountant,21834.84,1770.57,3,5,5,3,"Not Specified, Mortgage Loan, and Auto Loan",5.890577056,7,8.73,5,Good,554.144418,33.3320124,27 Years and 2 Months,No,50.8748322,13.16155575,!@9#%8,354.3015292,0,0.7632,1.1146,-1.5832,-1.0675,0.8869 +0x22f5d,CUS_0x6c5d,August,30,551-07-2673,Scientist,72050.92,,2,5,3.288361749,2,"Auto Loan, and Credit-Builder Loan",5.566845851,7,1.19,1,Good,266.0492156,28.21210346,27 Years and 4 Months,No,88.94101184,631.3965585,High_spent_Medium_value_payments,592.7071108,0,-1.3227,0.3275,-0.9474,-0.3648,1.3706 +0x22f69,CUS_0x114b,August,37,978-19-7269,Entrepreneur,107118.96,,5,7,5,3,"Payday Loan, Auto Loan, and Not Specified",,8,10.49,3,Standard,1049.33,29.11156057,30 Years and 10 Months,Yes,53636,815.4767929,Low_spent_Medium_value_payments,235.4152173,0,0.3362,-0.311,0.2895,0.1946,-0.5479 +0x22f75,CUS_0x20c8,August,51,754-48-1213,Journalist,113630.4,9719.2,4,5,5,0,,6.014551654,8,9.8,4,Good,106.7145219,34.70454243,27 Years and 6 Months,No,0,152.8828598,High_spent_Medium_value_payments,1083.500597,0,-1.4067,-0.1776,0.4668,-2.135,0.5359 +0x22f81,CUS_0x4ddc,August,45,641-04-8218,Doctor,18524.985,,0,3,1,3,"Student Loan, Mortgage Loan, and Student Loan",2.633428752,5,7.21,6,Good,463.93,36.53551547,23 Years and 11 Months,No,24.12187583,106.2844658,Low_spent_Small_value_payments,342.7685333,0,-1.0355,-1.0416,-0.1021,-0.7772,1.7842 +0x22f8d,CUS_0x94dd,August,19,996-52-9835,_______,23107.74,,4,4,10,1,Debt Consolidation Loan,,19,12.45,7,Standard,859.23,29.18872835,28 Years and 4 Months,Yes,17.60355966,76.95474083,Low_spent_Large_value_payments,373.8061995,0,-1.1326,0.0874,0.2896,-2.0263,0.4477 +0x22f99,CUS_0xb631,August,30,558-71-0980,Accountant,121151.4,,3,4,1,2,"Credit-Builder Loan, and Credit-Builder Loan",5.895839561,7,8.84,6,Good,42.69,32.16705678,29 Years and 0 Months,No,101.4048724,311.0832236,High_spent_Medium_value_payments,861.506904,0,-2.1543,-0.4589,-0.0032,-0.9835,1.7189 +0x22fa5,CUS_0x7418,August,34,508-07-0235,Writer,33768.35,3065.029167,6,6,10,2,"Debt Consolidation Loan, and Not Specified",10.46204679,9,6.23,3,_,535.64,33.3283693,18 Years and 4 Months,No,29.05979946,80.52631614,High_spent_Medium_value_payments,446.9168011,0,-0.8881,-0.5921,-0.6128,-0.0957,1.186 +0x22fb1,CUS_0x82a6,August,28,057-97-1445,Scientist,61989.72,5191.81,4,3,26,6,"Personal Loan, Payday Loan, Not Specified, Payday Loan, Personal Loan, and Home Equity Loan",30.1347248,21.25067554,10.43,1768,Standard,2055.07192,29.86816933,19 Years and 4 Months,Yes,264.7628531,,High_spent_Small_value_payments,220.5824334,0,0.1713,0.6137,1.0185,0.1954,0.7869 +0x22fbd,CUS_0x80c7,August,27,457-71-1752,Architect,123181.16,,4,5,9,0,,,10,6.44,7,Good,877.78,35.24850569,25 Years and 3 Months,No,0,789.844,Low_spent_Medium_value_payments,529.2656667,0,0.0006,0.8834,1.7077,1.3907,1.3979 +0x22fc9,CUS_0x3b15,August,53,493-85-2291,Manager,65312.73,5255.7275,3,5,20,1,Mortgage Loan,27.87268709,20,5.6,6,Standard,466.4,37.89806651,19 Years and 3 Months,No,32.16880014,159.8833305,High_spent_Medium_value_payments,583.5206194,0,0.1469,-0.0826,1.687,-1.0376,0.373 +0x22fd5,CUS_0x714a,August,39,550-43-5076,_______,6912531,3076.995833,3,5,19,4,"Payday Loan, Not Specified, Personal Loan, and Student Loan",,13,11.23,2,Standard,1390.77,32.15187828,22 Years and 11 Months,No,111.9106046,246.0851777,Low_spent_Large_value_payments,219.7038011,0,0.1296,1.4252,0.4858,-0.409,-1.0656 +0x22fe1,CUS_0xad94,August,28,357-18-5555,Mechanic,32019.26,2610.271667,4,3,15,2,"Credit-Builder Loan, and Auto Loan",,13.02097868,9.38,7,Standard,1845.617261,31.7442996,14 Years and 6 Months,Yes,47.77769516,100.0703664,Low_spent_Medium_value_payments,393.1791051,0,0.8779,0.4561,-1.5699,-0.9383,0.3425 +0x22fed,CUS_0x949,August,46,#F%$D@*&8,Teacher,1724659,,5,3,6,3,"Debt Consolidation Loan, Personal Loan, and Mortgage Loan",9.374588145,9,13.02,4,Standard,1228.86,25.31678276,28 Years and 8 Months,Yes,50.81084813,151.5166302,Low_spent_Small_value_payments,246.972605,0,0.4019,-0.2049,1.2072,-0.0883,-0.5124 +0x22ff9,CUS_0x8126,August,18,129-62-8508,Developer,52210.26,,3,332,10,1,Student Loan,13.16719975,13,8.11,4,Standard,1276.23,29.87613267,32 Years and 8 Months,No,24.29659339,161.0706996,Low_spent_Small_value_payments,551.218207,0,-0.4023,1.2978,-0.059,1.5261,-0.0572 +0x23005,CUS_0x7087,August,51,#F%$D@*&8,Writer,32228.67,2819.603375,7,6,8,4,"Auto Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",13.10270604,10,12,4,Standard,861.0468842,31.94242472,32 Years and 9 Months,NM,176.2048723,,High_spent_Medium_value_payments,347.3396086,0,-0.7493,1.8007,0.5105,-0.4219,0.0067 +0x23011,CUS_0x9d9,August,43,509-62-5624,Musician,108312.64,9060.053333,4,3,7,2,"Payday Loan, and Credit-Builder Loan",,20.48758361,11.8,,Good,859.8808118,40.62649518,32 Years and 0 Months,No,169.5991975,118.3425977,High_spent_Large_value_payments,858.0635381,0,-0.2588,0.3948,0.5774,-0.6997,0.8398 +0x2301d,CUS_0x4a88,August,21,702-19-6475,Scientist,77703.16,6702.263333,8,4,28,8,"Debt Consolidation Loan, Payday Loan, Auto Loan, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Personal Loan, and Debt Consolidation Loan",,20,20.54,10,Bad,2939.44,37.44376661,11 Years and 8 Months,Yes,418.7466986,576.5805391,Low_spent_Small_value_payments,,0,0.5319,-0.5786,0.6064,-2.0799,-0.4429 +0x23029,CUS_0x49f5,August,27,612-77-0513,Musician,9676.155,848.7254893,10,10,32.95700519,6,"Not Specified, Credit-Builder Loan, Home Equity Loan, Payday Loan, Mortgage Loan, and Auto Loan",41.18120227,20.04270121,11.26,12,_,2572.690252,25.62264882,5 Years and 9 Months,Yes,1421.386714,,High_spent_Small_value_payments,230.3981032,0,-0.2624,-1.1371,-0.1905,-0.2732,-3.4395 +0x23035,CUS_0xbfba,August,35,020-80-3233,Lawyer,64964.1,5199.675,6,6,1,0,,33.03913908,22.72038962,5.21,2,Standard,1019.137487,31.09805218,26 Years and 8 Months,No,0,84.56210442,High_spent_Medium_value_payments,685.4053956,0,0.1858,1.1091,-0.8208,-0.297,-0.1684 +0x23041,CUS_0x9d77,August,18,258-59-7020,Media_Manager,20082.58,1540.548333,6,9,33,5,"Student Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Home Equity Loan",25.93343313,17,27.01,14,Bad,4230.46,24.89143118,4 Years and 5 Months,NM,66.05246032,,High_spent_Small_value_payments,257.3417347,0,-1.6798,-0.2471,0.3097,-2.3234,1.5696 +0x2304d,CUS_0x2854,August,29,601-95-3536,Lawyer,15706.805,,3,5,4,2,"Auto Loan, and Personal Loan",16.8843384,,0.57,9,Good,282.44,37.48949511,28 Years and 5 Months,No,23.47255561,104.5045977,Low_spent_Medium_value_payments,271.3128884,0,0.0314,-0.2451,0.8439,-0.1756,2.0453 +0x23059,CUS_0x38dc,August,44,#F%$D@*&8,Mechanic,60036.75,,7,8,35.06745738,5,"Not Specified, Not Specified, Credit-Builder Loan, Mortgage Loan, and Not Specified",31.77473108,18,26.9,15,Bad,3786.790954,38.16821348,10 Years and 4 Months,Yes,147.5930311,83.58675747,High_spent_Medium_value_payments,520.0061735,0,-0.7268,-0.2711,1.1128,-1.1459,-1.666 +0x23065,CUS_0xf8d,August,58,712-91-8519,Engineer,43983.52,3722.293333,0,5,5,4,"Debt Consolidation Loan, Student Loan, Not Specified, and Credit-Builder Loan",0,1,3.22,2,Good,640.1882289,26.9970077,18 Years and 0 Months,No,45104,368.1259539,Low_spent_Large_value_payments,171.3055802,0,0.2963,1.294,1.4757,1.1735,1.5052 +0x23071,CUS_0x3365,August,32,#F%$D@*&8,Scientist,57309.78,4623.815,8,10,31.88954781,7,"Personal Loan, Payday Loan, Debt Consolidation Loan, Student Loan, Mortgage Loan, Mortgage Loan, and Not Specified",36.0917053,18,13.23,11,Standard,1556.58,31.12615257,18 Years and 10 Months,Yes,1621.571921,172.0068781,High_spent_Medium_value_payments,224.47262,0,0.7403,-0.9424,-1.51,-0.7415,-1.1995 +0x2307d,CUS_0xac5c,August,35,899-94-5376,_______,33917.38,,6,10,28,5,"Student Loan, Personal Loan, Auto Loan, Personal Loan, and Personal Loan",18.39969064,13.85777132,17.35,11,Standard,2181.294903,24.20914093,6 Years and 6 Months,Yes,255.9528908,,Low_spent_Small_value_payments,94.66695246,0,0.2373,-0.7357,1.3228,-0.949,1.191 +0x23089,CUS_0xb32e,August,32,645-78-2989,Developer,121179.4,,1647,2,8,3,"Debt Consolidation Loan, Personal Loan, and Mortgage Loan",,13.77510534,7.35,6,_,1569.933574,40.06703456,31 Years and 11 Months,No,162.9715453,384.4669827,Low_spent_Medium_value_payments,752.7898053,0,0.797,-1.1793,0.4774,0.329,-0.072 +0x23095,CUS_0xa90c,August,41,071-17-4816,Media_Manager,34676,,3,6,18,4,"Not Specified, Home Equity Loan, Student Loan, and Credit-Builder Loan",24.54792403,16,9.99,7,Standard,138.3,38.83721591,6 Years and 10 Months,Yes,69.52897556,153.2929424,Low_spent_Large_value_payments,363.2447487,0,-0.1405,2.4158,-2.2735,1.3878,0.2762 +0x230a1,CUS_0x1cab,August,39,426-83-2491,Lawyer,8578.89,,8,10,16.95700519,8,"Student Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Personal Loan, and Auto Loan",42.07071932,20.03003773,8.96,12,Bad,5014.612065,26.66526036,8 Years and 4 Months,Yes,1369.744805,20.93937909,High_spent_Small_value_payments,194.8561968,0,-0.3404,1.003,-0.4076,1.717,-2.6074 +0x230ad,CUS_0xbf1d,August,23,#F%$D@*&8,Scientist,20434.15,,7,6,8,4,"Mortgage Loan, Student Loan, Student Loan, and Home Equity Loan",,14,10.6,4,_,1393.23,31.56241432,17 Years and 8 Months,NM,61.44926175,108.3552285,Low_spent_Small_value_payments,289.6800931,0,-0.924,-0.0189,0.2962,2.0275,0.054 +0x230b9,CUS_0x1688,August,39,741-04-8469,Architect,56400.18,,7,5,30,100,"Credit-Builder Loan, and Personal Loan",17.68794587,11,13.84,6,Standard,2582.73,28.12475185,17 Years and 10 Months,Yes,56.78390252,,High_spent_Medium_value_payments,492.4542779,0,0.9666,1.2381,-1.5881,0.3958,1.3079 +0x230c5,CUS_0x7d8e,August,49,182-85-6661,Media_Manager,22354.3,,0,5,9,4,"Mortgage Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",,,5.29,2,Good,1010.56,27.00479834,21 Years and 3 Months,No,46.28916293,228.1318355,Low_spent_Small_value_payments,189.6648349,0,-0.0534,1.7425,-0.6717,-1.0845,1.0696 +0x230d1,CUS_0x1897,August,34,173-54-8322,Manager,35497.94,3063.161667,6,7,18.06745738,2,"Debt Consolidation Loan, and Student Loan",23.97570429,14.66556691,6.86,9,_,2740.971009,24.37102448,6 Years and 9 Months,Yes,39.33346978,222.2493828,Low_spent_Large_value_payments,288.0130262,0,1.9494,3.4571,-0.8419,0.4109,0.0669 +0x230dd,CUS_0x2985,August,47,637-15-6300,Journalist,19277.13,1891.4275,0,1,11,1,Not Specified,8.922434614,11,4.45,5,Good,817.3050271,30.90217683,22 Years and 3 Months,No,8.03993902,81.42146151,High_spent_Medium_value_payments,360.0136645,0,-1.5757,0.5059,0.3666,-0.7858,-0.4007 +0x230e9,CUS_0xc349,August,23,352-63-2965,Media_Manager,19796.08,1357.673333,8,10,22.95700519,7,"Not Specified, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Payday Loan, and Credit-Builder Loan",20.29242847,12.40537259,16.47,7,Standard,2949.399032,36.98556106,9 Years and 9 Months,Yes,1391.556425,99.25658595,Low_spent_Small_value_payments,213.9039532,0,0.1311,-1.5409,0.7228,-0.2701,-0.3634 +0x230f5,CUS_0x5c7f,August,32,399-31-4820,Manager,108134.07,,5,3,15,0,,,19,19.29,5,Standard,198.06,36.49881615,24 Years and 6 Months,Yes,0,144.2458402,!@9#%8,973.6714098,0,1.5404,-0.3188,0.2887,-1.4542,1.2686 +0x23101,CUS_0x5dfe,August,21,199-47-2114,Writer,103228.74,8729.395,3,7,12,0,,,10,5.87,4,Standard,1478.43,34.09360563,17 Years and 11 Months,NM,0,10000,High_spent_Medium_value_payments,993.7302148,0,-0.6144,0.3974,-0.4559,-0.6481,-0.5299 +0x2310d,CUS_0xbdee,August,34,539-32-3188,Musician,144968.36,12066.69667,8,4,12.28836175,2,"Student Loan, and Home Equity Loan",5.803651832,8,7.58,8,Standard,585.96,35.57048416,,Yes,150.0656023,1284.770239,Low_spent_Small_value_payments,481.7712859,0,0.4399,0.8195,-0.704,0.658,-0.4355 +0x23119,CUS_0x5adc,August,80,691-53-5977,_______,43691.64,3747.97,5,461,16,2,"Debt Consolidation Loan, and Home Equity Loan",19.49965378,15,-3.35,4,Standard,1160.837954,26.55533067,20 Years and 11 Months,Yes,64.74887416,416.5355354,Low_spent_Medium_value_payments,234.615935,0,0.3525,-0.2267,-1.4202,0.7058,1.0224 +0x23125,CUS_0x3621,August,21,048-48-0205,Mechanic,28102.36,2209.863333,3,6,25.06745738,6,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Payday Loan, Auto Loan, and Personal Loan",,14,19.98,14,Standard,2282.770954,36.46960644,15 Years and 2 Months,Yes,112.4735929,191.5363144,Low_spent_Large_value_payments,160.2561381,0,0.5256,0.7175,-1.4209,0.4782,1.2901 +0x23131,CUS_0x7d8a,August,18,201-80-4832,Lawyer,18781.73,,6,6,25,2,"Payday Loan, and Credit-Builder Loan",26.88496631,18.65351891,9.25,10,Bad,1487.589375,38.76863349,12 Years and 10 Months,Yes,28.17186412,104.1821253,Low_spent_Large_value_payments,300.4604272,0,0.4291,-0.5816,1.8379,0.0735,0.2184 +0x2313d,CUS_0x192d,August,49,994-28-9986,Engineer,143665.12,12168.09333,0,4,1.288361749,0,,3.836766266,6.940743822,7.77,5,_,102.354515,35.78136593,29 Years and 0 Months,No,0,1548.483146,Low_spent_Medium_value_payments,368.2636479,0,1.0734,-1.8152,-0.0924,0.557,2.0225 +0x23149,CUS_0xe47,August,48,722-81-1174,_______,34336.3,,4,4,8,100,Auto Loan,24.4438564,19,5.15,1,Standard,723.2392258,34.41125193,23 Years and 11 Months,No,299.1311831,86.70629508,High_spent_Small_value_payments,459.285226,0,-1.3671,0.369,-0.9759,-1.2011,0.5056 +0x23155,CUS_0xa423,August,56,903-45-7906,Manager,65586.32,5202.526667,1,3,12,4,"Credit-Builder Loan, Not Specified, Mortgage Loan, and Payday Loan",6.09214098,7,0.86,,Good,1282.652678,26.25377664,32 Years and 3 Months,No,120.0642051,119.0547601,High_spent_Small_value_payments,554.8454516,0,0.6747,-1.1247,2.9775,0.4397,-0.3592 +0x23161,CUS_0x9c38,August,27,027-48-8367,Entrepreneur,61922.67,5090.2225,10,6,34,5,"Home Equity Loan, Not Specified, Mortgage Loan, Payday Loan, and Auto Loan",29.83411168,21.56698185,7.28,10,Bad,2578.093366,37.11519452,10 Years and 9 Months,NM,32134,60.52304143,High_spent_Large_value_payments,505.6352348,0,2.2198,-0.1833,0.8319,-0.0106,-2.5114 +0x2316d,CUS_0x89d2,August,41,606-44-0812,Teacher,14468.225,,4,7,12,2,"Mortgage Loan, and Not Specified",9.225592602,10,2.65,4,Good,522.7283862,37.80492726,,No,18.04682801,11034.58205,High_spent_Small_value_payments,322.7571954,0,-1.585,-0.2796,-0.7657,-0.7337,-1.2726 +0x23179,CUS_0x8e8,August,37,793-86-5298,Scientist,41640.54,3466.045,6,7,8,1,Auto Loan,,18,4.29,5,Standard,991.0219946,39.48360871,27 Years and 6 Months,No,30.20831546,99.16604947,High_spent_Large_value_payments,468.9026545,0,-1.0189,-0.3355,-0.2743,0.6958,-2.4856 +0x23185,CUS_0xade0,August,29,648-90-8130,Engineer,73106.92,6309.243333,1,2,4,1,Home Equity Loan,,12,9.35,6,Good,778.5950782,37.96675854,31 Years and 6 Months,No,42.85211198,140.851644,!@9#%8,702.1324679,0,1.9194,-0.4828,-0.5094,-0.5077,-0.1889 +0x23191,CUS_0xac95,August,56,710-27-1475,Lawyer,13395.25,1191.270833,5,4,9,2,"Debt Consolidation Loan, and Payday Loan",6.624085375,7,8.3,3,Good,299.0329398,25.9590156,22 Years and 3 Months,No,19.59779588,150.0863074,Low_spent_Small_value_payments,253.2338623,0,-0.3677,0.8086,-2.1174,-0.0703,0.8203 +0x2319d,CUS_0xb0d3,August,80,332-89-4222,Scientist,44272,,1,5,4,2,"Payday Loan, and Credit-Builder Loan",,2,3.84,0,_,990.27,24.79571963,19 Years and 3 Months,No,339.3125535,74.07487775,High_spent_Large_value_payments,474.8396337,0,-0.7759,-2.0565,-0.4779,0.6528,-0.3474 +0x231a9,CUS_0x474,August,26,341-99-7813,Media_Manager,58558.3,5098.858333,3,2,9.288361749,0,,0,2,11.8,6,Good,248.7155222,37.88602409,17 Years and 3 Months,No,0,11650.55463,Low_spent_Small_value_payments,524.1647302,0,0.3463,-1.2293,-0.052,-1.4084,-0.7926 +0x231b5,CUS_0x37bc,August,54,138-54-7329,Lawyer,119014.2,,4,2,11.28836175,2,"Mortgage Loan, and Student Loan",,3,8.22,4,Good,170.0727247,40.56449514,32 Years and 9 Months,No,67857,708.8788886,High_spent_Large_value_payments,828.0296063,0,1.4909,0.4229,-1.7336,0.1307,-0.0454 +0x231c1,CUS_0x1d63,August,20,836-01-6064,Entrepreneur,15993.33,1544.7775,5,5,25,5,"Auto Loan, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Credit-Builder Loan",13.43188581,12.33656707,18.41,12,Standard,2655.167213,39.75414984,20 Years and 6 Months,Yes,43.57508045,,Low_spent_Small_value_payments,240.5217671,0,1.0606,-0.3565,0.1409,-0.8489,0.5227 +0x231cd,CUS_0x8956,August,26,#F%$D@*&8,Accountant,43615.2,3420.6,4,6,4230,4,"Student Loan, Debt Consolidation Loan, Home Equity Loan, and Student Loan",10.78805718,10.27218191,6.46,7,Good,1144.660464,32.84936908,,No,128.5499867,169.6414046,Low_spent_Small_value_payments,333.8686087,0,0.2201,-1.3765,0.2867,0.5445,0.2571 +0x231d9,CUS_0x731,August,26,217-03-0589,Media_Manager,76330.68,6495.89,3,4,17,4,"Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, and Not Specified",,,9.02,10,Standard,1371.96,39.74778539,9 Years and 5 Months,Yes,223.9488469,533.5417301,Low_spent_Medium_value_payments,172.098423,0,0.906,-0.6679,-1.089,0.5497,-0.4809 +0x231e5,CUS_0x5507,August,22,681-74-5904,Journalist,34848.04,,6,7,32.06745738,6,"Auto Loan, Mortgage Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Student Loan",31.65012423,,18.42,10,Bad,3498.903591,31.32434987,6 Years and 3 Months,NM,101.0170392,308.8877964,!@9#%8,125.7752098,0,0.8724,-0.8133,0.2017,1.1278,0.7297 +0x231f1,CUS_0x65f0,August,39,013-35-9724,Mechanic,15724.73,,6,859,18,6,"Debt Consolidation Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Student Loan",,20.47920848,16.43,10,Standard,1838.931807,28.92603206,15 Years and 8 Months,Yes,49.56535094,,Low_spent_Small_value_payments,219.2721602,0,0.3625,1.0142,0.8521,-1.1404,0.4542 +0x231fd,CUS_0x150c,August,21,008-81-3367,Mechanic,128427.2,,5,4,0.288361749,2,"Auto Loan, Payday Loan, and Debt Consolidation Loan",,8,4.2,4,Good,201.94,38.34468026,16 Years and 6 Months,No,224.8576526,587.6898255,High_spent_Medium_value_payments,919.5166496,0,-0.1921,0.3063,0.0501,1.2672,0.2616 +0x23209,CUS_0x94ee,August,42,947-09-6151,Architect,42755.64,3141.50214,7,8,15,6,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Debt Consolidation Loan",37.78132045,21,5.01,17,_,1486.46,30.54948895,7 Years and 3 Months,NM,488.4043872,75.37834169,High_spent_Medium_value_payments,363.8821316,0,0.0623,0.6857,-0.1222,-0.4285,0.1641 +0x23215,CUS_0x4aad,August,37,664-16-3753,Entrepreneur,16685.02,,9,6,23.06745738,5,"Credit-Builder Loan, Student Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",41.52614181,20.56889909,7.17,10,Bad,2857.033568,26.68369453,10 Years and 2 Months,NM,35.188053,161.5622161,Low_spent_Small_value_payments,220.1712763,0,-0.3169,0.1198,1.1805,1.3564,2.2294 +0x23221,CUS_0x84a6,August,23,048-49-2969,Mechanic,22157.27,,6,6,19,4,"Personal Loan, Debt Consolidation Loan, Mortgage Loan, and Student Loan",16.28498481,11,14.37,8,Standard,1345.58,31.68972119,12 Years and 6 Months,Yes,64.04102514,,High_spent_Medium_value_payments,326.9027374,0,-2.2567,-0.4641,-2.142,1.1636,-1.1853 +0x2322d,CUS_0x49a9,August,34,290-78-0986,Journalist,31155.48,,7,1163,21,5,"Student Loan, Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",19.62667445,,12.48,10,Standard,2895.370546,34.05252901,19 Years and 11 Months,Yes,76.91861154,,Low_spent_Small_value_payments,229.4744913,0,1.3548,-0.8305,0.4781,-2.836,1.3207 +0x23239,CUS_0x419f,August,52,794-10-4892,Musician,66816.26,,4,4,10,0,,,9,11.4,2,_,143.87,28.56914169,33 Years and 6 Months,No,0,483.6138681,Low_spent_Small_value_payments,369.3882986,0,-0.8842,1.3189,-0.0621,-0.3373,-1.0699 +0x23245,CUS_0xad19,August,21,851-02-3436,Teacher,109364.08,9409.673333,3,3,16,3,"Personal Loan, Mortgage Loan, and Payday Loan",9.113712536,8,6.09,5,Standard,355.1722456,29.83004277,21 Years and 5 Months,Yes,227.2944082,813.8838561,Low_spent_Medium_value_payments,292.4605047,0,-0.187,-1.2274,-1.2345,-0.3491,0.1295 +0x23251,CUS_0x30c1,August,37,329-10-0684,Doctor,58963.04,,5,2,4,0,,,7,5.2,4,Good,1129.656615,30.18461311,24 Years and 10 Months,No,0,38.03047993,High_spent_Large_value_payments,712.7036533,0,1.0963,-0.5285,0.474,0.8982,0.4557 +0x2325d,CUS_0x4479,August,33,467-46-4226,Accountant,55448.74,4735.728333,7,4,12,1,Credit-Builder Loan,16.79670414,15,18.42,4,Standard,1450.89,31.11562752,33 Years and 0 Months,No,30.18409209,185.4286137,High_spent_Small_value_payments,517.9601275,0,-0.3829,-1.0735,0.8662,-0.9123,0.692 +0x23269,CUS_0x1144,August,42,720-70-0565,Doctor,135851.24,,4,4,18,2,"Home Equity Loan, and Auto Loan",21.06305939,,11.19,13,Standard,610.2994174,32.63187455,25 Years and 2 Months,Yes,206.5571936,1303.47566,Low_spent_Medium_value_payments,76.25273595,0,-1.3283,-1.5589,0.0563,0.0338,0.0424 +0x23275,CUS_0x3b60,August,44,279-38-5027,Mechanic,37655.98,,6,3,19,6,"Personal Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",,26.53732603,16.1,7,Standard,1411.511454,29.70278619,,Yes,155.2373301,77.52551951,!@9#%8,353.8369837,0,-1.076,0.5839,-0.1013,-0.624,0.3512 +0x23281,CUS_0x5385,August,38,583-75-4096,Developer,11911.285,1113.607083,7,7,12,3,"Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",15.95615529,15,9.16,2,Good,841.8895045,35.70401782,28 Years and 11 Months,No,20.59634465,176.8199382,Low_spent_Small_value_payments,230.9060816,0,-1.146,-0.4817,-0.3344,0.9717,1.0821 +0x2328d,CUS_0x165e,August,30,185-36-2802,Doctor,59850.24,5156.52,5,5,17,3,"Payday Loan, Payday Loan, and Payday Loan",17.0639782,14,14,13,Standard,2294.21,30.56909304,14 Years and 8 Months,NM,131.8173967,,High_spent_Large_value_payments,583.5785397,0,-1.2644,0.6161,-0.1386,0.4391,-0.6125 +0x23299,CUS_0x6a1a,August,42,399-01-1198,Teacher,12948.695,1297.057917,6,7,5,4,"Credit-Builder Loan, Auto Loan, Payday Loan, and Debt Consolidation Loan",14.17117998,10,15.73,8,Standard,1361.45,31.53915339,24 Years and 10 Months,Yes,30.78053358,102.0792337,Low_spent_Medium_value_payments,276.8460244,0,0.9012,0.4075,-1.6765,0.1088,2.3965 +0x232a5,CUS_0x9d2e,August,25,679-69-9201,Scientist,15160.61,1335.384167,3,3,7,4,"Personal Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",2.766433097,3.582470483,5.89,8,Good,1302.032125,32.0634568,32 Years and 2 Months,NM,37.42431979,89.58929683,Low_spent_Small_value_payments,296.5248,0,1.504,-0.6354,0.8414,0.5583,0.3439 +0x232b1,CUS_0x1942,August,28,508-88-3060,Developer,83800.56,7269.38,3,3,5,2,"Not Specified, and Student Loan",16.62279856,,9.41,1967,Standard,937.6120332,33.56137472,20 Years and 9 Months,Yes,117.3508579,294.6610767,Low_spent_Small_value_payments,604.9260654,0,1.39,1.0251,-0.3415,0.395,2.2215 +0x232bd,CUS_0x3cb7,August,21,057-41-0231,Scientist,29487.25,1984.338744,7,3,16,3,"Credit-Builder Loan, Auto Loan, and Home Equity Loan",36.07729139,23.29597351,11.71,9,Standard,181.1362438,27.38337374,28 Years and 2 Months,Yes,243.5605393,286.3216524,!@9#%8,154.2769804,0,-0.3842,-0.3647,0.2688,1.7317,-0.0091 +0x232c9,CUS_0xa64c,August,80,135-47-1680,Journalist,119643.12,10127.26,3,2,8,2,"Auto Loan, and Payday Loan",,5,2.89,2,Good,186.99,32.31680347,24 Years and 8 Months,No,103.2467749,,Low_spent_Small_value_payments,163.6641909,0,0.5346,-1.6646,0.0204,-0.7044,-1.5535 +0x232d5,CUS_0x18e1,August,37,536-82-6071,Media_Manager,36722.53,2933.210833,3,6,4,0,,9.799192124,10,-4.2,2,_,328.05,25.93032923,29 Years and 9 Months,No,0,108.7614207,High_spent_Medium_value_payments,434.5596627,0,0.225,-1.0929,0.8195,0.0471,-2.9075 +0x232e1,CUS_0x2a30,August,30,738-19-2481,Lawyer,62231.34,5006.945,6,4,17,2,"Debt Consolidation Loan, and Payday Loan",,12,4.64,0,_,551.4,37.33427445,32 Years and 2 Months,No,58.2517472,10000,Low_spent_Small_value_payments,95.41955336,0,1.374,-1.2766,0.847,-0.8824,-0.59 +0x232ed,CUS_0x6c53,August,35,805-27-6510,Mechanic,116611.8,9836.65,7,3,15,3,"Credit-Builder Loan, Not Specified, and Personal Loan",20.17533041,16,19.43,0,Standard,1373.9,41.22075403,30 Years and 6 Months,Yes,288.2533797,487.4590962,Low_spent_Large_value_payments,477.9525241,0,1.428,-0.7016,-0.2462,-1.2026,0.4049 +0x232f9,CUS_0x31e8,August,24,587-68-1142,Doctor,14363.25,,10,7,20.06745738,7,"Debt Consolidation Loan, Home Equity Loan, Payday Loan, Not Specified, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",,28.03560939,17.76,6,Bad,2196.893048,37.71684784,13 Years and 8 Months,Yes,39760,62.38480917,Low_spent_Small_value_payments,234.9671556,0,0.3047,2.7152,0.2053,0.2966,-1.5132 +0x23305,CUS_0xa38e,August,23,701-32-0533,Entrepreneur,108504.92,9075.076667,7,3,6.288361749,4,"Student Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",,14.57644586,1.56,2,Standard,270.2502965,38.12795026,20 Years and 0 Months,No,209.5280664,,High_spent_Large_value_payments,856.8113741,0,-0.198,-0.3838,-0.1179,-1.4728,-0.2405 +0x23311,CUS_0x9053,August,18,421-12-3886,Manager,7087.38,619.615,8,8,26.88954781,7,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Personal Loan, Mortgage Loan, and Debt Consolidation Loan",,22,31.43,12,Bad,3561.35,33.44140009,8 Years and 3 Months,Yes,1362.294522,30.90503809,Low_spent_Small_value_payments,264.4318587,0,0.5185,-0.5984,0.7219,0.5356,-0.0016 +0x2331d,CUS_0x29e7,August,21,987-86-2554,_______,10203.99,1119.3325,6,10,30,3,"Credit-Builder Loan, Home Equity Loan, and Student Loan",13.47765367,9.41090714,8.53,12,Standard,1886.823167,29.96005143,5 Years and 8 Months,Yes,16.57658329,10000,Low_spent_Large_value_payments,306.1310627,0,0.1048,-0.1102,1.5382,-0.5149,0.697 +0x23329,CUS_0x45fc,August,24,614-52-8696,Doctor,36787.58,3362.631667,8,9,29.95700519,8,"Payday Loan, Payday Loan, Home Equity Loan, Auto Loan, Student Loan, Payday Loan, Auto Loan, and Student Loan",,19.93540214,15.58,11,Bad,4589.003047,37.64345772,1 Years and 3 Months,Yes,1456.751603,30.18040672,High_spent_Large_value_payments,368.2807877,0,1.8462,-0.2398,-0.4625,2.0136,-0.0662 +0x23335,CUS_0x5833,August,42,030-84-1557,_______,20320.175,,4,4,11,0,,3.06968878,7,2.77,6,Good,270.26,23.13806977,22 Years and 10 Months,No,0,149.316532,Low_spent_Small_value_payments,307.1182597,0,-0.2619,-0.7346,-0.1245,-2.4775,0.0628 +0x23341,CUS_0x8c76,August,26,762-29-4014,Engineer,122543.56,10343.96333,5,6,18,4,"Student Loan, Auto Loan, Auto Loan, and Student Loan",28.03426585,19,2.41,5,Standard,1302.42,28.39343321,28 Years and 6 Months,No,349.480772,211.1606667,High_spent_Large_value_payments,713.7548946,0,1.0307,0.7237,1.2204,-0.4925,-0.2038 +0x2334d,CUS_0x109b,August,53,661-04-3699,Manager,31641.93,,4,6,7,3,"Personal Loan, Student Loan, and Personal Loan",,13.83209406,3.37,1,Standard,651.3629095,40.34938872,20 Years and 5 Months,No,60.33629927,,Low_spent_Small_value_payments,344.6589324,0,-0.6655,-0.0239,-0.4917,-1.0978,0.9236 +0x23359,CUS_0xb7b3,August,21,809-15-0659,Mechanic,14538.09,,10,8,23.95700519,7,"Credit-Builder Loan, Personal Loan, Mortgage Loan, Auto Loan, Student Loan, Auto Loan, and Home Equity Loan",36.09350517,25.03765647,8.6,9,Bad,4344.784249,39.77998861,13 Years and 0 Months,Yes,1383.70778,50.41035107,High_spent_Small_value_payments,247.0822496,0,0.2597,0.9571,-0.6692,-0.3299,-1.3061 +0x23365,CUS_0x739,August,60,767-56-4115,Writer,132848.88,10920.74,5,1,6.288361749,0,Not Specified,11.93438624,13,,4,_,913.8589334,34.6672997,,No,55.87793313,596.2671668,High_spent_Large_value_payments,1119.486861,0,-0.0882,-2.3611,0.4056,-1.2589,-0.1524 +0x23371,CUS_0x3634,August,42,333-26-4284,Writer,45706.47,,6,7,26.06745738,5,"Student Loan, Personal Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",,15,21.63,7,Bad,4257.940954,39.67605035,,Yes,142.8464474,83.36436703,High_spent_Large_value_payments,351.1561476,0,0.7655,-1.054,-0.894,-0.8477,0.4762 +0x2337d,CUS_0x7789,August,30,013-57-4539,Scientist,10882.8,646.9,4,4,2,4,"Mortgage Loan, Personal Loan, Mortgage Loan, and Personal Loan",22.68335155,18,7.01,8,Good,1277.43337,24.50861877,26 Years and 9 Months,No,19.16208752,22.7575778,High_spent_Small_value_payments,285.4918066,0,0.2736,0.3211,-1.1118,-0.1875,0.6508 +0x23389,CUS_0x69c3,August,53,979-06-3778,Lawyer,43354.77,3491.8975,1,4,4,1,Student Loan,12.51964187,12,8.23,5,_,1078.031913,27.74269425,,No,29.91625444,273.7473803,Low_spent_Medium_value_payments,354.7167119,0,-0.7633,-0.6708,0.0492,1.0336,-0.0091 +0x23395,CUS_0x68f8,August,32,929-60-1367,Entrepreneur,34709.28,,4,2,4.288361749,2,"Mortgage Loan, and Auto Loan",0,1,2.81,3,Good,94.93031252,36.01612328,27 Years and 6 Months,No,51.39629433,,Low_spent_Large_value_payments,329.1832395,0,1.5845,0.0539,1.8404,-1.3626,1.0539 +0x233a1,CUS_0xa83e,August,47,542-29-2531,Journalist,30424.17,,5,7,14,4,"Mortgage Loan, Credit-Builder Loan, Student Loan, and Not Specified",12.98190183,12,3.46,6,Standard,519,28.55697034,16 Years and 8 Months,No,65.03551847,107.7171985,High_spent_Medium_value_payments,360.7820331,0,0.1751,0.9447,-0.3367,1.1242,-0.0126 +0x233ad,CUS_0x7f0b,August,33,619-04-3811,Teacher,16590.27,,8,6,22,7,"Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, Student Loan, Home Equity Loan, and Debt Consolidation Loan",39.08914066,27.38695501,8.59,7,Bad,2833.803974,23.46231492,,NM,52.68073754,,Low_spent_Small_value_payments,211.8888366,0,-0.9234,1.1164,-1.5975,-0.6321,-1.0047 +0x233b9,CUS_0x374a,August,80,424-21-8795,Mechanic,35176.5,,4,5,8,4,"Personal Loan, Mortgage Loan, Not Specified, and Home Equity Loan",28.32898114,20,3.74,4,Standard,234.65,38.31960335,16 Years and 2 Months,Yes,104.7044271,190.9610095,Low_spent_Large_value_payments,255.8720634,0,0.0765,-0.6072,-0.0568,-2.009,0.8038 +0x233c5,CUS_0xb68e,August,30,559-85-9762,Scientist,20091.86,,7,7,31.06745738,5,"Credit-Builder Loan, Payday Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",40.18017276,25,8.85,14,Bad,2733.190954,24.3635403,9 Years and 2 Months,Yes,72.7986603,236.7722588,Low_spent_Small_value_payments,135.4409596,0,0.1216,0.3096,0.8397,-0.5285,-1.0604 +0x233d1,CUS_0xa15a,August,23,435-60-9418,Scientist,89870.98,,1,4,2.288361749,2,"Auto Loan, Mortgage Loan, and Personal Loan",4.462346276,8,5.08,2,Good,48.11,40.17981163,,No,192.1457441,515.0304258,High_spent_Large_value_payments,687.3861244,0,-0.6766,-0.5598,0.2524,-1.2174,0.7032 +0x233dd,CUS_0x63c0,August,47,610-63-2729,Architect,64969.05,,3,6,6,2,"Personal Loan, and Student Loan",,18.63090764,8.61,4,Standard,855.6627774,40.18125081,22 Years and 3 Months,No,96.42407743,117.5440118,High_spent_Medium_value_payments,551.4406608,0,-1.9605,0.3396,-0.3279,-0.6686,3.137 +0x233e9,CUS_0xb1f1,August,18,#F%$D@*&8,Scientist,9700.81,870.4008333,9,7,21,3,"Mortgage Loan, Not Specified, and Credit-Builder Loan",29.67690867,23,4.82,13,Bad,2542.15,28.65968524,13 Years and 3 Months,Yes,21.75751984,,Low_spent_Small_value_payments,324.1671022,0,0.4423,0.6593,1.3386,2.1428,0.0827 +0x233f5,CUS_0x1ed3,August,23,988-10-7390,Engineer,45947.1,3843.925,9,9,32.06745738,7,"Home Equity Loan, Payday Loan, Not Specified, Auto Loan, Credit-Builder Loan, Auto Loan, and Mortgage Loan",30.40783694,20,23.49,9,Bad,4036.710954,33.24473272,7 Years and 8 Months,Yes,165.6522317,94.54526773,High_spent_Large_value_payments,337.4747126,0,-1.27,-0.7973,-1.1447,0.2592,-1.0697 +0x23401,CUS_0x6333,August,45,550-07-6163,Musician,15350.03,,6,4,35.06745738,3,"Debt Consolidation Loan, Not Specified, and Auto Loan",20.85930773,13.33421633,18.35,15,_,2539.934361,29.54988325,12 Years and 11 Months,Yes,31.92462194,87.80155906,Low_spent_Large_value_payments,223.3704477,0,0.2193,-1.7686,0.2891,-0.4558,1.9066 +0x2340d,CUS_0x86aa,August,35,736-64-3228,Lawyer,54525.94,4655.828333,3,5,9.288361749,4,"Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, and Not Specified",7.190139724,9,11.02,,Standard,157.1,24.85146764,22 Years and 3 Months,Yes,131.0803727,494.353943,High_spent_Medium_value_payments,510.0859786,0,0.8038,-0.7453,-1.5418,-0.5548,-0.8141 +0x23419,CUS_0x5b92,August,52,864-15-7291,Doctor,66190.34,,4,4,418,0,,22.23416303,17,6.4,1,Good,557.57,23.3767004,32 Years and 4 Months,NM,0,,Low_spent_Small_value_payments,169.5477231,0,-0.8264,-0.2156,0.3438,-0.8625,-0.2164 +0x23425,CUS_0x2552,August,20,961-88-3686,Musician,19826.67,1805.2225,6,3,33,5,"Student Loan, Home Equity Loan, Personal Loan, Auto Loan, and Personal Loan",15.51437711,15,11.47,8,Standard,2052.89,31.07645025,5 Years and 11 Months,Yes,45.86892834,126.3592571,Low_spent_Small_value_payments,298.2940645,0,1.7949,1.2412,-0.2956,0.9735,-1.9572 +0x23431,CUS_0x32a1,August,55,542-03-2848,Engineer,11249.15,984.4291667,3,3,12,1,Payday Loan,16.8168555,,10.02,4,Good,552.5351122,21.99584851,26 Years and 3 Months,NM,8.092134624,27.91043598,High_spent_Medium_value_payments,315.1362395,0,0.305,1.6024,0.3956,0.3275,-0.088 +0x2343d,CUS_0x48dd,August,20,202-26-2578,Accountant,5753875,4022.83,6,4,12,2,"Debt Consolidation Loan, and Credit-Builder Loan",,13,6.47,6,Standard,1077.91,29.65217957,9 Years and 9 Months,Yes,46.97017764,315.7168505,Low_spent_Medium_value_payments,319.5959718,0,-1.4781,-0.1931,1.8814,-0.872,-1.0514 +0x23449,CUS_0x1422,August,18,#F%$D@*&8,Developer,57877.95,,8,10,15,5,"Home Equity Loan, Not Specified, Not Specified, Debt Consolidation Loan, and Mortgage Loan",21.17153856,15.42246731,14.36,15,Standard,2049.126083,34.80238038,20 Years and 0 Months,Yes,204.4724626,294.4347682,Low_spent_Small_value_payments,244.2090192,0,-0.0986,-1.0324,-1.0887,-0.7885,0.6701 +0x23455,CUS_0x4d71,August,28,237-42-4184,Mechanic,96780.03,,4,5,2,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Not Specified",12.2329791,5.986726677,9.96,2,Good,636.8786469,36.87778634,30 Years and 0 Months,No,314.2240794,210.0184342,High_spent_Large_value_payments,542.4577365,0,-0.7058,-0.2923,0.335,0.6747,0.6975 +0x23461,CUS_0x558d,August,42,658-01-3989,Writer,17408.23,,6,3,17.06745738,6,"Home Equity Loan, Debt Consolidation Loan, Student Loan, Student Loan, Personal Loan, and Payday Loan",23.25336589,14.77647826,14.51,8,Standard,2088.73698,25.58655645,7 Years and 6 Months,Yes,58.58963398,77.25405916,Low_spent_Small_value_payments,267.2046022,0,1.0231,2.2073,-2.2338,0.0245,2.489 +0x2346d,CUS_0x64b8,August,28,041-44-0647,Engineer,7160.835,431.73625,10,9,17.06745738,5,"Personal Loan, Student Loan, Mortgage Loan, Not Specified, and Payday Loan",31.57683939,20.47926225,9.51,11,Standard,1631.240278,39.84958141,20 Years and 2 Months,NM,25.07251001,27.12727086,Low_spent_Small_value_payments,254.2535562,0,-0.5586,-1.4423,0.0188,-1.8542,-0.5543 +0x23479,CUS_0x2ad1,August,30,787-51-5395,Engineer,75654.81,,7,6,12,1,Mortgage Loan,,15,11.4,6,Standard,1063.69,32.76429362,21 Years and 6 Months,Yes,43.03785726,70.08708083,High_spent_Large_value_payments,738.2318119,0,-0.0511,-0.6981,1.8394,-0.1665,0.2834 +0x23485,CUS_0x86fe,August,32,924-65-5740,Engineer,58739.82,,6,6,28,5,"Personal Loan, Auto Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,18,0.64,11,_,4161.7,30.73204458,10 Years and 2 Months,Yes,193.7478476,345.3413933,High_spent_Small_value_payments,217.1092591,0,0.4856,0.21,-1.278,1.0684,0.2511 +0x23491,CUS_0xa8ba,August,21,655-71-4451,Accountant,20804.77,1436.730833,6,6,31.06745738,5,"Debt Consolidation Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",42.41287077,26.59614584,25.57,11,Bad,5296.298573,37.9399046,9 Years and 5 Months,NM,50.20546975,48.92095226,Low_spent_Medium_value_payments,297.8263734,0,0.2954,-0.7206,-0.5407,-0.3125,-0.198 +0x2349d,CUS_0x195b,August,42,185-13-1410,Scientist,52847.32,4607.943333,6,7,13,2,"Credit-Builder Loan, and Debt Consolidation Loan",19.64870985,14,1.09,3,Standard,517.77,33.47044336,22 Years and 2 Months,No,57.65777295,313.6073266,Low_spent_Large_value_payments,359.5292337,0,-1.4037,-0.0963,0.3924,-0.8692,1.0199 +0x234a9,CUS_0x5dec,August,29,538-14-7795,Accountant,49354.08,3924.84,10,10,17.88954781,8,"Credit-Builder Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",46.33811161,27.5494447,29.55,7,Bad,5186.564542,38.96281726,6 Years and 4 Months,Yes,1536.881568,31.77114498,!@9#%8,369.5012056,0,0.3441,1.709,-1.4802,-0.9865,-0.1144 +0x234b5,CUS_0x4bde,August,28,676-92-1755,Journalist,30884.06,,6,10,31.95700519,7,"Personal Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",35.27028318,23.80600087,15.78,11,Standard,2878.046914,24.91478782,19 Years and 9 Months,Yes,1474.174008,112.4425227,Low_spent_Small_value_payments,212.5002664,0,-2.2021,-0.1136,-0.1724,0.8848,-0.4283 +0x234c1,CUS_0x7ec0,August,36,979-34-5110,Architect,20057.71,,7,5,27,8,"Payday Loan, Payday Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",,18.23580219,24.22,11,Bad,5067.223297,39.07204218,7 Years and 3 Months,Yes,99.94135979,,!@9#%8,139.4010459,0,-0.1485,0.3305,-0.17,-0.3786,-0.8261 +0x234cd,CUS_0x5946,August,32,393-21-4479,Writer,30662.18,2661.181667,5,5,12,0,,,14,0.75,4,Good,887.8,28.39138138,18 Years and 6 Months,No,0,95.33697781,!@9#%8,430.7811889,0,-0.0585,-0.7998,1.4339,-0.7566,0.3588 +0x234d9,CUS_0xb5c5,August,35,531-86-8401,Architect,13566.77,,6,7,6,2,"Credit-Builder Loan, and Debt Consolidation Loan",23.59933067,19,,6,Good,504.3696456,26.86281979,,No,16.74433111,,Low_spent_Small_value_payments,333.2592263,0,-0.4342,-0.5502,-0.1272,-0.0125,0.3955 +0x234e5,CUS_0xb7de,August,38,626-74-0054,_______,14860.185,1320.34875,6,3,9,3,"Personal Loan, Auto Loan, and Debt Consolidation Loan",,,17.03,8,Standard,1263.45,37.5868169,17 Years and 2 Months,Yes,32.47059122,110.5542666,Low_spent_Small_value_payments,279.0100172,0,0.9865,-0.2076,-0.0555,-0.6885,-0.3282 +0x234f1,CUS_0xe09,August,27,172-37-8234,Journalist,121029.6,,2,4,12,2,"Payday Loan, and Auto Loan",4.72599903,3.500949802,7.18,2,_,1423.801077,32.79484751,21 Years and 6 Months,NM,169.1304848,250.7544712,High_spent_Small_value_payments,827.995044,0,0.6021,-1.2543,-1.4267,0.3735,-1.6116 +0x234fd,CUS_0x4203,August,80,857-44-8236,Musician,39649.74,,5,3,5272,0,,,6,1.47,7,Good,1338.65,30.91705247,21 Years and 11 Months,No,0,,High_spent_Medium_value_payments,446.1604958,0,-0.0854,0.5013,0.7682,0.5553,1.1146 +0x23509,CUS_0xa342,August,19,094-13-9253,Developer,126744.39,,5,4,0.288361749,4,"Auto Loan, Mortgage Loan, Home Equity Loan, and Debt Consolidation Loan",3.06968878,7,2.31,1,Good,839.57,28.42118893,31 Years and 4 Months,NM,313.9426663,666.2350456,High_spent_Medium_value_payments,744.2629991,0,0.2795,1.5684,-0.5967,-0.1947,0.0488 +0x23515,CUS_0x8e7d,August,36,930-67-4045,Lawyer,22744.15,,9,4,14,0,,15.92711801,11,11.73,2,Standard,116.17,26.83191722,29 Years and 9 Months,Yes,0,56.72777774,Low_spent_Medium_value_payments,414.3068056,0,-0.8524,-0.4695,-0.6657,0.7906,0.2188 +0x23521,CUS_0xa913,August,28,287-96-5037,Teacher,43832.92,3052.748607,5,5,16,2,"Payday Loan, and Payday Loan",25.52704917,17,17.25,9,Standard,1292.642187,38.17464664,17 Years and 8 Months,Yes,373.3718609,155.858337,!@9#%8,381.6505693,0,1.1848,0.509,0.8079,0.1235,-1.8434 +0x2352d,CUS_0x237b,August,28,185-41-6589,Musician,28754.13,,4,5,11,3,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",,20.61112199,12.84,3,Standard,1276.328996,26.474339,18 Years and 4 Months,Yes,66.95920908,220.8588684,!@9#%8,250.0996725,0,2.2265,-1.6642,2.4168,0.1908,0.4229 +0x23539,CUS_0x5fe9,August,32,#F%$D@*&8,_______,122503.12,9982.593333,3,7,7,0,,32.20691504,20.53779683,6.32,5,_,364.542155,31.91278139,17 Years and 8 Months,No,0,173.2107671,!@9#%8,1065.048566,0,-0.8076,1.7288,-0.767,0.2095,0.3462 +0x23545,CUS_0x8176,August,18,869-30-8189,Accountant,14447.52,,6,10,29.95700519,8,"Not Specified, Personal Loan, Mortgage Loan, Student Loan, Payday Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",37.31442559,20,22.04,12,Bad,3179.560954,36.36329026,10 Years and 2 Months,Yes,1400.361479,,!@9#%8,165.9005885,0,2.0121,-1.1795,-0.6131,0.5725,0.6715 +0x23551,CUS_0x20dc,August,34,285-71-9431,Media_Manager,20975.4,,2,3,9,1,Auto Loan,,9,9.94,1,Good,656.6843477,26.20504155,24 Years and 3 Months,NM,16.19679223,77.72242518,High_spent_Medium_value_payments,361.0400067,0,-0.1858,-0.418,-1.5529,2.3007,-0.9355 +0x2355d,CUS_0x10e7,August,80,094-89-6380,_______,64933.76,,3,3,33,100,"Mortgage Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",25.05546385,19,13.04,11,Standard,2699.17,24.9586382,,Yes,193.6925821,186.1466654,High_spent_Medium_value_payments,406.9754192,0,1.4781,0.6157,0.5226,-1.6125,1.2112 +0x23569,CUS_0x6fbc,August,50,898-83-7529,Journalist,114452.12,,3,3,12,4,"Auto Loan, Not Specified, Debt Consolidation Loan, and Student Loan",24.02965728,16.27560258,-4.9,4,_,306.6293357,35.82165414,28 Years and 8 Months,Yes,257.2027608,104.3683526,High_spent_Large_value_payments,850.5965533,0,-1.7028,-0.1219,-0.2836,-0.7814,-0.0893 +0x23575,CUS_0x87a3,August,31,980-07-6877,Manager,40214.54,,3,5,22.06745738,3,"Credit-Builder Loan, Debt Consolidation Loan, and Not Specified",32.8718178,21.65720558,11.99,14,Standard,2519.67997,41.24063464,12 Years and 10 Months,Yes,71.41267638,80.38779171,High_spent_Large_value_payments,408.5004106,0,1.3036,-0.1848,-0.2377,1.3309,0.0132 +0x23581,CUS_0x57f0,August,31,146-34-8954,Writer,171781.8,,0,3,0.288361749,2,"Payday Loan, and Payday Loan",12.5191838,12,5.62,5,Good,248.0838447,26.22538649,19 Years and 5 Months,No,258.7493459,1338.575174,Low_spent_Large_value_payments,618.4641119,0,-0.0303,-0.5662,-1.019,1.2357,-0.7448 +0x2358d,CUS_0x402d,August,34,474-98-6138,_______,46817.5,,8,3,10,4,"Not Specified, Payday Loan, Auto Loan, and Personal Loan",,13,11.45,1,_,613.71,37.25634427,17 Years and 5 Months,No,106.1789086,146.2530437,High_spent_Small_value_payments,421.813881,0,-1.0106,-0.0904,0.2584,0.2764,0.4072 +0x23599,CUS_0x5421,August,80,742-65-8790,Doctor,127284.18,,3,3,3.288361749,2,"Credit-Builder Loan, and Payday Loan",1.422950186,4,2.25,3,Good,628.7910257,40.1684287,26 Years and 4 Months,No,202.5438238,499.4158081,!@9#%8,1008.821391,0,0.1298,0.4447,1.5386,1.4132,0.3587 +0x235a5,CUS_0x7f2a,August,80,971-11-8511,_______,106141.53,7942.69524,4,237,7,2,"Student Loan, and Home Equity Loan",0,4,2.47,5,Good,532.22,31.74692185,18 Years and 6 Months,No,1079.882404,143.573103,High_spent_Large_value_payments,845.289503,0,0.7302,-0.599,0.3581,0.3697,-1.4273 +0x235b1,CUS_0x3de6,August,54,391-07-6393,Entrepreneur,14475.14,,8,3,13,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,11,-3.2,6,Standard,557.6236229,31.57874219,21 Years and 2 Months,Yes,33.5872729,82.78073354,Low_spent_Small_value_payments,295.0692872,0,1.1868,0.2534,1.1285,0.5579,1.2788 +0x235bd,CUS_0xb187,August,35,863-01-7811,Lawyer,14802.98,1065.581667,8,3,1,0,,20.76792006,17,1.57,1,Good,411.39,27.62680456,23 Years and 9 Months,No,0,95.22415452,Low_spent_Small_value_payments,301.3340121,0,-1.4639,0.2626,-0.3346,-0.2286,0.1023 +0x235c9,CUS_0x5502,August,80,256-41-5668,Architect,167067.08,,2,3,2,1,Debt Consolidation Loan,0.983353432,4,6.23,4,Good,753.58,27.36891769,27 Years and 11 Months,No,115.51083,,Low_spent_Large_value_payments,510.3588978,0,3.0379,-0.7687,0.0597,0.2001,-0.6012 +0x235d5,CUS_0xa650,August,42,001-30-8624,Scientist,81887.8,,5,3,26,6,"Not Specified, Auto Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",,14,10.3,7,Standard,1882.85,26.07582081,16 Years and 11 Months,Yes,407.4785009,837.3773607,Low_spent_Small_value_payments,,0,-1.0295,-0.0269,-0.4054,-1.2699,1.1255 +0x235e1,CUS_0x4ead,August,42,006-00-9957,Accountant,10412.225,,8,7,10,3,"Home Equity Loan, Not Specified, and Mortgage Loan",,12.51349647,10.13,7,Standard,4.860882581,35.81865686,30 Years and 2 Months,Yes,18.83691358,76.36305684,Low_spent_Small_value_payments,270.9685712,0,-0.9648,1.0698,0.5368,-0.7603,-1.0129 +0x235ed,CUS_0x1492,August,36,612-31-0459,Teacher,9134.415,1051.20125,5,10,15,3,"Payday Loan, Mortgage Loan, and Student Loan",90,4106,13.19,6,Standard,1621.28,33.77879363,16 Years and 2 Months,Yes,15.95367734,92.90908063,Low_spent_Small_value_payments,286.257367,0,-0.3636,0.4319,1.737,1.0782,-0.0573 +0x235f9,CUS_0x30c8,August,23,073-19-8370,Media_Manager,128916.04,10898.00333,5,6,7.288361749,100,"Debt Consolidation Loan, and Not Specified",6.189807368,7,0.93,,Good,839.76,23.29079656,21 Years and 8 Months,No,181.464943,946.190255,Low_spent_Medium_value_payments,662.0825963,0,-1.4412,1.3921,0.1677,0.7176,0.0489 +0x23605,CUS_0xa3f3,August,32,193-77-8243,Mechanic,32382.97,,4,6,8,4,"Home Equity Loan, Student Loan, Debt Consolidation Loan, and Home Equity Loan",22.5717638,19,13.58,0,Standard,96.80979702,32.59991519,16 Years and 2 Months,Yes,74.39920168,85.90268541,High_spent_Medium_value_payments,392.552305,0,1.2442,-0.1881,-0.0877,0.0545,0.9506 +0x23611,CUS_0x9ae0,August,26,527-72-6430,Doctor,58754.97,,8,8,29,5,"Personal Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Debt Consolidation Loan",23.9343235,16,13.39,11,Standard,2632.8,30.85526679,13 Years and 10 Months,Yes,236.5745285,72.41735905,High_spent_Medium_value_payments,459.9328625,0,2.3471,-0.8023,0.657,-0.7096,-0.2747 +0x2361d,CUS_0x5fc9,August,35,575-83-5232,Teacher,16444.42,,7,8,25.06745738,3,"Debt Consolidation Loan, Not Specified, and Mortgage Loan",,20,10.19,6,Standard,1668.590954,27.09578397,19 Years and 2 Months,Yes,31.12662899,157.8585246,Low_spent_Small_value_payments,215.4313918,0,0.0326,2.373,0.7493,0.9247,-0.2296 +0x23629,CUS_0xc0e2,August,20,866-54-9066,Teacher,30624.62,,7,7,4264,6,"Auto Loan, Payday Loan, Personal Loan, Not Specified, Personal Loan, and Student Loan",20.36893493,19,12.61,10,Standard,1563.947895,31.16910845,9 Years and 8 Months,Yes,111.8435102,26.95574217,High_spent_Large_value_payments,336.3661462,0,-0.4754,1.0543,1.0409,0.6003,1.1678 +0x23635,CUS_0xa283,August,39,458-67-1891,Entrepreneur,68299.4,5074.935967,6,6,31,7,"Auto Loan, Auto Loan, Not Specified, Credit-Builder Loan, Payday Loan, Personal Loan, and Mortgage Loan",28.13619739,21,5.39,17,Bad,4913.68,28.63642714,7 Years and 0 Months,Yes,589.1941462,176.666038,High_spent_Medium_value_payments,350.9821816,0,-0.3305,1.8323,-2.4133,0.1853,0.65 +0x23641,CUS_0x7fd8,August,33,035-35-9608,Musician,65024.22,5532.685,3,6,3,2,"Student Loan, and Credit-Builder Loan",26.73516239,20,10.37,4,Standard,625.89,27.15914922,,No,58.99657454,53.90350421,High_spent_Large_value_payments,680.3684213,0,1.2013,0.0623,1.1572,0.1563,0.0259 +0x2364d,CUS_0x7622,August,39,645-67-9435,Musician,57878.7,,4,4,13,1,Personal Loan,22.52388356,20,8.07,0,Standard,693.23,24.73495972,18 Years and 11 Months,NM,41.26341162,356.533281,Low_spent_Small_value_payments,403.1258074,0,-0.2909,-0.6353,-0.2991,-0.8022,0.9045 +0x23659,CUS_0x5ac6,August,43,825-86-1844,Media_Manager,56180.84,4540.736667,6,10,33,5,"Credit-Builder Loan, Debt Consolidation Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Payday Loan",25.4720356,18.48009364,24.16,10,Standard,1568.232422,31.29806483,18 Years and 2 Months,Yes,195.3462803,314.0734474,Low_spent_Large_value_payments,214.6539389,0,-1.7269,0.9764,0.0913,-0.9638,-0.1619 +0x23665,CUS_0x7f6c,August,18,196-69-7786,Lawyer,63928.95,5062.4125,6,6,8,4,"Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",90,3155,7.46,10,_,1290.64,24.49213612,19 Years and 4 Months,Yes,184.027368,90.68264486,High_spent_Large_value_payments,471.5312372,0,-0.2652,-1.6651,-0.0433,-0.2008,0.6284 +0x23671,CUS_0x2f31,August,53,649-23-1895,Developer,31460.89,2480.740833,3,4,2,1,Student Loan,14.37115974,,8.43,3,Good,661.01,36.7723563,28 Years and 2 Months,No,23.86391354,36.56771988,High_spent_Medium_value_payments,437.6424499,0,-0.6228,-1.3908,-0.9574,0.552,-0.8554 +0x2367d,CUS_0x6c2c,August,23,274-18-3184,Developer,41654.62,,10,10,25.88954781,7,"Payday Loan, Mortgage Loan, Home Equity Loan, Home Equity Loan, Credit-Builder Loan, Not Specified, and Personal Loan",29.65050947,21.78082265,1.32,11,_,2321.432886,28.57073743,12 Years and 9 Months,Yes,1462.189877,239.0358306,High_spent_Small_value_payments,215.6660446,0,-1.0519,1.2978,1.6109,0.7165,1.1622 +0x23689,CUS_0xb3b4,August,46,155-17-5900,Developer,85421.19,7079.4325,4,7,10,1,Auto Loan,20.41872847,13,7.06,0,Standard,1203.57,33.62920877,17 Years and 4 Months,Yes,38.05343998,485.4976636,Low_spent_Large_value_payments,454.3921464,0,-0.4183,-0.9874,-0.187,-0.051,-1.9396 +0x23695,CUS_0xb82a,August,35,448-07-1432,Media_Manager,11280.545,1068.045417,8,3,11,2,"Mortgage Loan, and Credit-Builder Loan",15.03431212,,13.68,3,_,817.93,33.72875156,16 Years and 4 Months,Yes,65080,32.06189486,Low_spent_Medium_value_payments,339.2307838,0,0.8745,1.237,-0.1991,1.1842,1.0321 +0x236a1,CUS_0x1b0c,August,41,560-72-2453,Media_Manager,51508.62,,7,7,30,7,"Home Equity Loan, Payday Loan, Not Specified, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",48.64808861,29.2467515,2.58,8,_,4078.82073,33.25893222,10 Years and 4 Months,Yes,255.6802071,305.0532522,Low_spent_Large_value_payments,135.2050407,0,1.2583,-0.7253,1.1905,1.8198,0.5452 +0x236ad,CUS_0x9a9a,August,27,404-69-3730,Mechanic,22609.45,,6,7,15,3,"Home Equity Loan, Mortgage Loan, and Debt Consolidation Loan",,15,9.62,,_,1065.82,38.22227123,33 Years and 3 Months,Yes,50.76744811,100.8390466,!@9#%8,318.6055886,0,0.3652,0.4056,-1.2426,-0.1544,-0.3615 +0x236b9,CUS_0x6f59,August,28,249-34-8255,Media_Manager,21713.61,2076.4675,4,3,20,1,Home Equity Loan,,9,1.55,2,Standard,748.62,36.26958395,24 Years and 11 Months,Yes,11.70631337,53.63544524,High_spent_Medium_value_payments,392.3049914,0,-1.0177,-0.0529,1.771,1.5591,1.2415 +0x236c5,CUS_0xaf7d,August,54,540-49-8635,_______,112853.22,9552.435,2,4,3.288361749,2,"Student Loan, and Debt Consolidation Loan",0,3,8.06,0,Good,732.33,29.08815753,17 Years and 5 Months,NM,127.0722876,734.4197358,High_spent_Medium_value_payments,763.6889377,0,-0.3568,0.1195,-1.7417,-0.537,-0.0295 +0x236d1,CUS_0xbb5a,August,20,970-54-7926,Accountant,50891.94,,6,6,30.06745738,7,"Student Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",28.62800797,19.10796053,25.04,7,Bad,4889.033552,24.33587102,2 Years and 6 Months,Yes,222.5444194,,Low_spent_Small_value_payments,191.1763024,0,-1.2175,-0.5609,-1.5013,-1.0461,1.7171 +0x236dd,CUS_0xadad,August,33,027-11-6852,Doctor,92186.19,7487.1825,1,2,11.28836175,4,"Personal Loan, Auto Loan, Not Specified, and Personal Loan",0,0,9.74,4,Good,752.2923499,38.6221573,20 Years and 9 Months,No,185.7976538,547.0570842,High_spent_Medium_value_payments,697.4005569,0,0.056,0.8012,1.2594,-0.9601,-1.2728 +0x236e9,CUS_0x19a0,August,39,564-87-3414,Scientist,20618.37,,6,6,22,2,"Credit-Builder Loan, and Debt Consolidation Loan",39.83906391,24.26988618,18.74,10,Standard,1931.481458,36.91834774,,Yes,21.80668643,141.2613426,Low_spent_Small_value_payments,269.4517209,0,0.3669,-0.1417,0.6763,2.1232,-2.3202 +0x236f5,CUS_0x6610,August,61,242-80-2380,Developer,107313.84,9242.82,8,7,16.28836175,0,,22.80396931,19,11.77,2,Standard,697.3942403,31.23179453,25 Years and 6 Months,No,0,1388.845181,Low_spent_Large_value_payments,345.8389337,0,-1.8532,0.1176,2.3958,-0.9476,0.5008 +0x23701,CUS_0xba7e,August,27,455-30-1650,Musician,81658.48,,10,8,33.88954781,7,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, Student Loan, and Not Specified",,797.7821666,3.21,11,Bad,2647.128679,26.66132011,,Yes,1716.617655,219.3502236,!@9#%8,341.3893737,0,2.3892,0.471,0.5831,-0.8965,0.1416 +0x2370d,CUS_0x8670,August,34,469-66-5884,Entrepreneur,27697.18,,4,3,19,3,"Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",,10,10.06,12,Standard,748.1619162,26.04764621,17 Years and 4 Months,NM,45.03536155,146.7008009,Low_spent_Small_value_payments,344.2892579,0,0.2619,-0.5655,0.4731,1.1679,-1.2345 +0x23719,CUS_0x3de4,August,44,885-56-1293,Musician,56544,4524,10,1328,21.95700519,9,"Mortgage Loan, Personal Loan, Credit-Builder Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Personal Loan, Not Specified, and Home Equity Loan",,20,27.18,9,Bad,4159.09843,39.87757182,7 Years and 6 Months,NM,1605.067074,51.83453547,!@9#%8,319.2684558,0,-0.0338,1.7021,-0.664,0.6473,0.1524 +0x23725,CUS_0x7fe9,August,27,033-44-2647,Entrepreneur,33065.8,2690.483333,0,7,6,3,"Auto Loan, Debt Consolidation Loan, and Home Equity Loan",12.86376817,12.64470326,3.22,4,Good,563.2034829,34.71603619,21 Years and 11 Months,No,69.13683994,235.7174538,Low_spent_Medium_value_payments,244.1940396,0,0.2769,0.3521,0.7985,0.3506,0.2463 +0x23731,CUS_0x8489,August,21,460-00-6655,Accountant,49136.88,4082.74,6,4,12,6,"Home Equity Loan, Payday Loan, Credit-Builder Loan, Payday Loan, Personal Loan, and Credit-Builder Loan",22.71347288,15,9.67,11,_,1933.38,38.99137636,13 Years and 0 Months,Yes,184.7159866,106.4858847,High_spent_Small_value_payments,377.0721286,0,0.8087,0.7212,0.7678,0.1325,-0.5471 +0x2373d,CUS_0x675,August,47,921-15-8191,Media_Manager,20229.03,,8,5,10,3,"Personal Loan, Auto Loan, and Debt Consolidation Loan",12.75911026,9,10.93,1,_,1352.13,37.93063643,23 Years and 10 Months,No,35.33336984,254.7157151,Low_spent_Small_value_payments,196.6261651,0,0.5453,0.6245,-0.8643,-0.4895,1.4574 +0x23749,CUS_0xc641,August,25,864-79-3572,Mechanic,18065,1539.588568,10,9,29.95700519,9,"Debt Consolidation Loan, Personal Loan, Payday Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",,21.33226841,4.68,10,_,3160.974785,37.95981255,20 Years and 0 Months,Yes,1518.037515,87.35275075,Low_spent_Small_value_payments,199.8291308,0,0.4303,0.8113,-1.3947,-0.4673,-0.4369 +0x23755,CUS_0x436c,August,49,807-28-6080,Journalist,41942.1,3355.175,0,3,1,1,Student Loan,,14.42145589,16.26,6,Good,1483.038544,37.20252173,33 Years and 2 Months,No,19.64905037,120.595002,High_spent_Medium_value_payments,445.2734476,0,-0.1987,-0.3303,-0.8638,-0.6174,-0.6773 +0x23761,CUS_0xb226,August,41,117-54-0611,Scientist,115494.2,9465.516667,1,3,8.288361749,2,"Home Equity Loan, and Personal Loan",0,3.498428918,9.78,0,Good,1484.071453,40.74311891,25 Years and 4 Months,No,106.5779781,639.1642369,High_spent_Small_value_payments,880.7469127,0,-1.2752,0.6788,-0.4178,-0.0075,0.0305 +0x2376d,CUS_0x6b0,August,38,984-81-1916,Writer,44768.76,,8,7,35.06745738,9,"Student Loan, Not Specified, Personal Loan, Home Equity Loan, Payday Loan, Auto Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",31.31687155,16,28.21,15,Bad,3212.780954,26.56414576,2 Years and 11 Months,Yes,272.0989319,44.74037033,High_spent_Medium_value_payments,308.6134098,0,0.615,-0.9036,-0.0746,-0.0414,-0.4027 +0x23779,CUS_0x29c0,August,48,310-64-5275,Developer,64696.24,,5,3,9,4,"Student Loan, Credit-Builder Loan, Student Loan, and Debt Consolidation Loan",16.57289258,9.19654262,7.25,4,Good,1151.386767,29.46755612,31 Years and 5 Months,No,122.8148196,118.2247339,High_spent_Small_value_payments,550.8957798,0,-0.1693,0.0769,0.3454,1.2523,0.2927 +0x23785,CUS_0xbd95,August,36,235-61-1975,Journalist,9853.855,,8,10,23.06745738,6,"Not Specified, Home Equity Loan, Not Specified, Auto Loan, Not Specified, and Payday Loan",,16,26.87,11,Bad,2987.070954,38.25378489,12 Years and 4 Months,Yes,46.9347101,,High_spent_Small_value_payments,233.7870436,0,-0.1122,-0.6002,0.4027,-0.7598,-0.3284 +0x23791,CUS_0x887f,August,29,414-52-8424,Architect,58511.78,5016.981667,2,1,1.288361749,0,,3.159380505,5,1.54,2,Good,357.0378648,35.08893112,27 Years and 2 Months,No,0,508.0652389,High_spent_Medium_value_payments,674.3085337,0,0.3865,1.0658,-2.3524,0.6017,0.6577 +0x2379d,CUS_0xd29,August,22,881-90-2681,Media_Manager,10486.2,,6,6,6,3,"Debt Consolidation Loan, Payday Loan, and Debt Consolidation Loan",,10,9.79,4,Standard,1001.56,33.07332569,8 Years and 6 Months,Yes,20.7838834,28.62271608,Low_spent_Medium_value_payments,289.8784005,0,0.1211,-0.2443,-0.3475,-0.6646,0.7582 +0x237a9,CUS_0x37af,August,28,954-68-0668,Architect,41597.89,3691.490833,4,1,5.288361749,0,,5.581914131,8,5.97,4,Good,537.4765518,26.80174378,18 Years and 5 Months,No,0,681.2774228,Low_spent_Large_value_payments,411.2424195,0,1.1093,0.4042,1.005,0.3643,0.0199 +0x237b5,CUS_0x25a7,August,20,984-06-5567,Media_Manager,36029.3,,6,6,33.06745738,8,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Credit-Builder Loan, and Not Specified",24.72493152,17,-1.28,11,_,2832.380954,38.78731147,4 Years and 2 Months,Yes,141.8851325,90.72121797,High_spent_Medium_value_payments,296.4175282,0,0.2616,-0.2069,0.4981,0.4118,-0.4631 +0x237c1,CUS_0x6d30,August,28,714-02-2788,Lawyer,78035.96,6211.996667,5,4,17,6,"Auto Loan, Payday Loan, Student Loan, Home Equity Loan, Payday Loan, and Home Equity Loan",25.03573136,17,16.21,6,Standard,429.44,27.71270225,19 Years and 8 Months,Yes,365.1021827,129.1032622,High_spent_Large_value_payments,366.9942218,0,1.2534,0.8414,-0.2614,-0.3721,0.758 +0x237cd,CUS_0xad11,August,80,249-39-8538,Developer,130174.44,,5,3,4,4,"Personal Loan, Credit-Builder Loan, Credit-Builder Loan, and Student Loan",0.367528652,5,8.16,1,Good,1233.002269,30.63530228,19 Years and 3 Months,No,251.3829137,219.3737494,High_spent_Large_value_payments,893.9096474,0,-1.136,0.6494,0.4883,1.7084,1.6464 +0x237d9,CUS_0x929c,August,27,788-88-0244,Developer,63648.12,5357.01,6,7,10,1,Debt Consolidation Loan,,8,2.75,0,Standard,1223.86,37.07872135,24 Years and 5 Months,No,26.59218596,211.677107,Low_spent_Small_value_payments,587.431707,0,-1.5098,0.311,-0.3515,-1.1874,-0.099 +0x237e5,CUS_0x54c6,August,48,254-43-5949,_______,67481.24,,8,3,19,1,Debt Consolidation Loan,22.14773173,18,12.64,4,Standard,176.06,29.95639734,18 Years and 6 Months,Yes,32.12590014,195.4187302,High_spent_Medium_value_payments,567.0990364,0,-1.0866,-0.8179,0.3635,1.0087,1.2891 +0x237f1,CUS_0x84be,August,36,463-53-3692,Media_Manager,20802.77,1487.564167,6,7,7,4,"Student Loan, Debt Consolidation Loan, Personal Loan, and Personal Loan",26.79532139,19,11.2,8,Standard,2164.877225,23.85982969,13 Years and 4 Months,Yes,73709,51.31879435,Low_spent_Large_value_payments,326.8819301,0,-0.3637,0.6563,-0.0383,-0.0859,1.2475 +0x237fd,CUS_0x7cbf,August,31,671-14-3613,Musician,38574.32,2959.526667,3,3,17,1,Auto Loan,15.4489605,13,7.13,2,_,668.78,32.75265592,,No,21.30537508,178.7477891,High_spent_Small_value_payments,355.8995025,0,-0.3432,-0.3295,0.0364,-1.0925,-1.5051 +0x23809,CUS_0xc5b2,August,26,667-76-6132,Entrepreneur,60176.61,4989.7175,7,9,34,8,"Mortgage Loan, Auto Loan, Personal Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, and Student Loan",34.30123312,24.66369248,6.76,8,Bad,4711.49291,34.9873756,12 Years and 5 Months,Yes,246.9186692,190.3354975,High_spent_Small_value_payments,321.7175833,0,0.2023,1.0691,-0.5437,0.3081,-1.4461 +0x23815,CUS_0x9414,August,42,329-57-6818,_______,53354.85,,8,10,24,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",26.90645679,18.95794793,13.22,11,Bad,2224.042626,32.44323718,16 Years and 0 Months,Yes,162.2518689,,Low_spent_Small_value_payments,45.0347715,0,-0.4703,1.3848,-0.0702,-0.219,1.3077 +0x23821,CUS_0x837,August,35,128-85-7451,Manager,14252.75,,8,8,23.95700519,6,"Personal Loan, Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Personal Loan, and Home Equity Loan",,30.23585108,,13,_,3147.426089,25.63990854,7 Years and 6 Months,Yes,1386.384689,109.2192352,Low_spent_Small_value_payments,216.8186234,0,-0.2058,-0.1818,0.1389,-1.0734,-0.6651 +0x2382d,CUS_0x9b24,August,20,958-56-7919,Entrepreneur,19287.935,,2,7,6.288361749,2,"Not Specified, and Credit-Builder Loan",,12,7.69,3,Good,102.81,35.68831259,31 Years and 11 Months,No,29.17934291,521.4308585,!@9#%8,299.2600513,0,-1.5291,1.0732,-0.1422,1.0483,0.4967 +0x23839,CUS_0x97ab,August,51,845-77-8805,Manager,15480.03,,5,5,8,0,,,0,1.63,1,Good,1055.545494,26.41049352,,No,0,64.32307055,Low_spent_Small_value_payments,348.4771794,0,0.5767,1.9931,-0.4108,0.2904,-0.7608 +0x23845,CUS_0x295f,August,22,017-46-4018,Architect,19436.305,,4,2,7.288361749,4,"Personal Loan, Student Loan, Mortgage Loan, and Home Equity Loan",,5,9.64,2,Good,244.27,37.34246958,25 Years and 9 Months,No,66944,443.3066443,High_spent_Large_value_payments,369.1546307,0,0.367,1.2476,-0.6688,-0.7362,0.0957 +0x23851,CUS_0x8519,August,54,423-52-1892,Architect,165671.16,13814.93,3,4,11,0,,0,2,10.6,5,_,45.51687277,34.22536453,29 Years and 0 Months,No,0,970.6927066,High_spent_Small_value_payments,779.5585818,0,-1.3289,0.2426,0.1606,-1.7691,0.2998 +0x2385d,CUS_0x9939,August,21,355-95-2912,Media_Manager,19889.44,,8,7,11,7,"Payday Loan, Not Specified, Student Loan, Credit-Builder Loan, Payday Loan, Mortgage Loan, and Not Specified",17.06165127,13,16.62,7,Standard,369.64,35.98010847,10 Years and 3 Months,Yes,60.92837781,37.66661192,!@9#%8,337.0503436,0,0.1979,1.5918,2.272,-0.8227,-1.8244 +0x23869,CUS_0x9dee,August,38,967-09-1574,Architect,30447.38,,10,5,27,6,"Not Specified, Mortgage Loan, Not Specified, Not Specified, Auto Loan, and Debt Consolidation Loan",33.50130814,24.46326306,27.02,8,_,3404.367726,33.56697027,10 Years and 5 Months,Yes,109.5286211,62.87852501,High_spent_Large_value_payments,332.5210206,0,0.4597,1.2284,0.5394,-0.5729,0.2772 +0x23875,CUS_0xa4f9,August,38,259-06-1240,Accountant,119443.29,10071.6075,1,6,1,3,"Debt Consolidation Loan, Personal Loan, and Mortgage Loan",12.59013782,11,0.9,3,Good,418.28,23.50235822,28 Years and 11 Months,No,183.7905973,698.8940259,Low_spent_Large_value_payments,394.4761268,0,1.0821,0.4155,-0.2198,0.7277,0.3237 +0x23881,CUS_0x758c,August,26,340-77-4638,Entrepreneur,19190.67,,7,3,7,5,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Home Equity Loan, and Credit-Builder Loan",,21.18195835,19.95,9,Standard,1886.369795,37.35717325,15 Years and 10 Months,Yes,54.14745922,103.3057576,Low_spent_Medium_value_payments,300.0690332,0,-1.4699,-0.6841,-0.8131,-2.616,1.69 +0x2388d,CUS_0x2378,August,52,108-16-4074,Teacher,29485.44,2644.12,6,7,2,0,,14.63297959,12.53520787,-2.54,4,Good,759.9744804,24.02430779,18 Years and 11 Months,NM,0,89.40926906,Low_spent_Medium_value_payments,455.0027309,0,-0.7665,1.1028,0.0515,-0.9583,0.3828 +0x23899,CUS_0x9e67,August,25,366-87-4584,Media_Manager,44393.86,3504.488333,6,3,12,2,"Student Loan, and Payday Loan",,13.0242535,12.74,2170,Standard,1403.403369,30.14563333,20 Years and 10 Months,Yes,63.79433546,73.09873139,High_spent_Medium_value_payments,463.5557665,0,-0.8736,0.1593,1.4563,1.4029,-0.2835 +0x238a5,CUS_0x9e5f,August,24,197-92-8655,Teacher,8057.715,,9,10,33.06745738,2,"Home Equity Loan, and Personal Loan",,10.81628289,19.63,10,Standard,1943.807132,28.06346809,6 Years and 3 Months,Yes,7.04963475,53.84667344,Low_spent_Medium_value_payments,284.9310289,0,0.4578,1.0258,-0.141,0.4387,0.1605 +0x238b1,CUS_0x6786,August,49,689-38-7006,_______,30678.97,,1,7,2,4,"Debt Consolidation Loan, Home Equity Loan, Debt Consolidation Loan, and Home Equity Loan",,,6.74,1,_,940.0485827,35.8184465,,No,53.73731149,,Low_spent_Small_value_payments,359.1402909,0,-0.4336,-0.4966,-0.6933,0.7212,0.9155 +0x238bd,CUS_0x47da,August,21,929-00-2402,Engineer,13190.345,,3,4,5,1,Debt Consolidation Loan,32.66277292,22.5822809,3.4,2,Standard,633.9480411,23.4823339,28 Years and 11 Months,NM,9.896018016,59.84745853,Low_spent_Medium_value_payments,323.3760651,0,0.1477,-1.0246,-1.152,1.7785,-0.3366 +0x238c9,CUS_0x1151,August,41,587-07-3210,Journalist,17692.27,,6,5,30.06745738,6,"Payday Loan, Auto Loan, Home Equity Loan, Auto Loan, Personal Loan, and Auto Loan",38.62796269,25,28.12,9,Bad,3986.050954,25.57827343,11 Years and 5 Months,Yes,78.44723488,167.441385,Low_spent_Small_value_payments,150.9266755,0,-3.114,-1.0027,0.691,0.1765,-0.0821 +0x238d5,CUS_0x581e,August,44,690-52-2331,Accountant,59907.78,4851.315,5,3,629,2,"Personal Loan, and Mortgage Loan",25.65001384,16,11.23,0,Standard,719.35,38.21044255,30 Years and 2 Months,No,67.25811455,224.9303532,High_spent_Small_value_payments,452.9430322,0,-0.824,0.7043,0.0542,-0.3314,-1.0775 +0x238e1,CUS_0x756d,August,34,#F%$D@*&8,Mechanic,91404.54,7912.045,7,7,888,4,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Credit-Builder Loan",,12,,0,Standard,66.93,32.17294198,15 Years and 11 Months,Yes,282.2604068,,Low_spent_Small_value_payments,123.0653237,0,2.4848,0.1319,-1.6837,-0.4774,1.6298 +0x238ed,CUS_0x2b00,August,51,863-89-6228,Teacher,28497.51,,4,6,3.288361749,0,Personal Loan,,8,3.67,4,Good,288.92,35.67090004,20 Years and 8 Months,No,21.64862508,591.0560396,Low_spent_Large_value_payments,331.5120463,0,0.4382,-0.3014,-0.5595,1.3935,1.7424 +0x238f9,CUS_0xb704,August,25,014-38-0810,Writer,57327.3,4605.275,4,3,17,0,,14.61082088,9,11.36,5,Standard,1319.42,25.78295781,16 Years and 0 Months,No,0,471.6328892,Low_spent_Medium_value_payments,268.8946108,0,-0.3202,-0.7355,-1.2147,1.2704,-1.2473 +0x23905,CUS_0x7feb,August,31,716-31-0286,Manager,70543.77,5986.6475,713,5,16,4,"Not Specified, Mortgage Loan, Home Equity Loan, and Mortgage Loan",17.29646457,15,18.68,,Standard,1259.40097,32.49850196,24 Years and 4 Months,Yes,218.0110959,119.4032426,!@9#%8,515.6479922,0,0.3409,0.0253,-0.7803,-0.7371,-0.936 +0x23911,CUS_0x5208,August,24,583-83-1753,Lawyer,53808.81,4490.0675,9,6,19,3,"Auto Loan, Payday Loan, and Debt Consolidation Loan",39.01052086,21.66205396,5.9,15,Bad,1740.969371,28.61490855,19 Years and 0 Months,Yes,119.0841598,62.82038247,High_spent_Large_value_payments,507.1022077,0,0.3547,0.2732,-1.1388,0.1227,-0.7558 +0x2391d,CUS_0xb811,August,24,898-01-1841,Scientist,89367.27,,2,3,7.288361749,2,"Personal Loan, and Student Loan",3.077178308,7,1.99,1,Good,716.97,33.54985274,20 Years and 9 Months,No,148.6387947,918.7384967,High_spent_Small_value_payments,340.1874196,0,-1.1629,-0.3947,-0.951,0.4482,-1.7311 +0x23929,CUS_0x24bc,August,49,664-52-6558,Engineer,116224.68,,0,3,8,1,Personal Loan,,0,5.01,0,Good,1388.02,35.40233055,32 Years and 8 Months,No,59.58605366,870.3117769,!@9#%8,327.4411695,0,-0.4716,0.6679,-1.3032,-1.4421,-1.113 +0x23935,CUS_0xb080,August,30,177-01-2590,Lawyer,81463.6,,3,5,16,4,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Mortgage Loan",20.36289682,,17.67,10,_,2323.31593,34.48387277,9 Years and 6 Months,Yes,178.6936688,,Low_spent_Medium_value_payments,242.5529246,0,-0.1163,0.2209,-0.6894,-0.632,0.7607 +0x23941,CUS_0x3a44,August,20,109-02-5661,Writer,12160681,685.8683333,6,5,19,9,"Debt Consolidation Loan, Mortgage Loan, Not Specified, Payday Loan, Auto Loan, Not Specified, Payday Loan, Home Equity Loan, and Mortgage Loan",40.00462975,25.11166634,2.1,6,Bad,3236.591569,31.09576334,9 Years and 0 Months,Yes,57.85155535,41.64335601,Low_spent_Small_value_payments,259.091922,0,1.5063,1.1187,-2.2334,-0.9981,-0.7618 +0x2394d,CUS_0x1e46,August,49,316-05-0824,Writer,70481.19,5584.4325,8,5,16,0,,17.02373501,11.27025655,5.75,4,Standard,1204.890184,37.11595419,26 Years and 3 Months,Yes,0,61.5896212,High_spent_Medium_value_payments,746.8536288,0,0.5199,0.4298,2.4548,-0.3976,0.9229 +0x23959,CUS_0x56ef,August,24,454-36-2008,Mechanic,15867.45,1468.2875,10,10,22,2,"Payday Loan, and Student Loan",19.91697934,15.82131117,16.02,8,_,1937.004451,32.71090859,17 Years and 11 Months,Yes,18.34281155,113.1449055,Low_spent_Medium_value_payments,295.341033,0,2.2731,0.5438,0.337,-0.185,-0.1458 +0x23965,CUS_0x91da,August,37,424-69-0038,Journalist,25173.5,,6,4,14,3,"Debt Consolidation Loan, Not Specified, and Debt Consolidation Loan",13.37097004,13,17.2,7,Standard,955.58,39.77992207,17 Years and 3 Months,Yes,61.85727129,,Low_spent_Large_value_payments,225.1421879,0,-0.0954,0.5839,-1.0583,-0.964,2.0616 +0x23971,CUS_0x81b,August,43,467-08-5391,Mechanic,68144.8,,10,8,19.88954781,9,"Credit-Builder Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Not Specified, Home Equity Loan, Student Loan, and Personal Loan",38.73384103,24.36060353,21.3,13,Bad,3643.22462,40.94558968,9 Years and 2 Months,Yes,1581.373428,222.6773401,Low_spent_Small_value_payments,365.4924836,0,-1.2886,0.4921,1.0222,-1.3685,-2.6674 +0x2397d,CUS_0x870e,August,39,648-68-3983,Accountant,7762.595,,3,9,17,2,"Personal Loan, and Personal Loan",20.20938763,16.61556952,,10,Standard,2622.462812,26.09231188,9 Years and 11 Months,Yes,10.55243753,93.29266917,Low_spent_Small_value_payments,257.443185,0,-0.6375,0.3737,0.2917,-1.4328,-0.2078 +0x23989,CUS_0x9fd2,August,41,#F%$D@*&8,Musician,35644.72,,1,4,3,1,Not Specified,0,2,4.58,2,Good,696.358776,30.76410776,20 Years and 8 Months,No,16.81273664,63.7700856,!@9#%8,484.9710924,0,0.0629,0.8236,0.3551,-1.4201,-0.6001 +0x23995,CUS_0xa9d1,August,29,958-68-5559,_______,20455.05,,8,8,29.88954781,9,"Mortgage Loan, Not Specified, Mortgage Loan, Student Loan, Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, and Debt Consolidation Loan",30.16786757,20.04141026,1.14,13,Bad,1543.611272,24.55675537,8 Years and 4 Months,Yes,1416.4007,,!@9#%8,244.9072095,0,-0.9078,-1.1346,-0.0231,1.1578,0.441 +0x239a1,CUS_0xc7b,August,22,192-91-0151,Scientist,26135.86,2009.988333,8,5,6,100,"Mortgage Loan, and Credit-Builder Loan",9.498539589,8,11.62,2,Standard,1138.962433,28.07254619,27 Years and 4 Months,Yes,33.71165574,260.8514165,Low_spent_Small_value_payments,233.5301457,0,1.625,-0.6699,2.0014,0.5466,-1.7956 +0x239ad,CUS_0x7840,August,40,173-84-2649,Teacher,44740.76,,3,5,11,0,,24.95604977,18,0.55,0,Good,379.651117,35.73689236,26 Years and 0 Months,NM,0,59.2779156,!@9#%8,589.1343001,0,0.8983,-0.2977,-0.4011,-0.7754,-0.8484 +0x239b9,CUS_0xc5e,August,39,820-77-7549,Writer,57264,4933,7,6,31.06745738,8,"Personal Loan, Home Equity Loan, Payday Loan, Personal Loan, Personal Loan, Home Equity Loan, Payday Loan, and Student Loan",37.16180879,19.93675378,-3.5,15,Bad,5639.787779,38.8033839,10 Years and 11 Months,Yes,283.6223207,10000,Low_spent_Small_value_payments,194.5614267,0,-1.4696,0.7325,-1.5186,1.3023,0.8357 +0x239c5,CUS_0x505c,August,19,794-56-6103,Developer,10700217,4640.715,8,5,16,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",11.18091562,9.667288091,19.03,743,Standard,1619.94307,37.38948268,,Yes,107.27987,10000,!@9#%8,316.8847977,0,-1.0227,0.7414,-1.3787,0.7312,-0.7715 +0x239d1,CUS_0x8da5,August,44,154-07-0671,Manager,105345.4,8505.783333,7,3,8,4,"Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, and Auto Loan",14.3521556,13,5.53,12,_,294.33,32.18219698,9 Years and 3 Months,Yes,344.4968779,557.3279618,High_spent_Small_value_payments,208.7534937,0,-1.2333,-0.416,0.77,0.7676,0.1396 +0x239dd,CUS_0x8a14,August,33,415-62-2686,Manager,20223,,6,8,15,5,"Student Loan, Auto Loan, Auto Loan, Auto Loan, and Student Loan",19.11337039,15,15.03,11,Standard,393.55,37.59727871,7 Years and 6 Months,Yes,73.64467479,29.11132922,High_spent_Large_value_payments,298.668996,0,1.1178,-1.0757,0.2282,-1.2899,-0.8839 +0x239e9,CUS_0xa584,August,43,852-39-0711,_______,52384.83,,9,5,20,7,"Mortgage Loan, Student Loan, Credit-Builder Loan, Student Loan, Credit-Builder Loan, Auto Loan, and Personal Loan",38.97357007,19.5359653,16.29,9,Standard,1688.202195,32.97059358,7 Years and 5 Months,Yes,265.516727,137.7725054,Low_spent_Medium_value_payments,300.5510176,0,-0.0076,-0.5191,1.6919,2.1939,-1.6112 +0x239f5,CUS_0x1709,August,53,678-22-5579,Developer,65945.7,5486.475,5,7,7.288361749,0,,13.85421808,,8.07,1,Good,190.7377102,30.43189476,18 Years and 8 Months,No,0,593.7031865,Low_spent_Large_value_payments,670.925558,0,0.185,-0.9501,-0.3334,1.6309,-0.8055 +0x23a01,CUS_0xacfa,August,37,324-46-6478,Entrepreneur,81168.84,,2,3,2,3,"Debt Consolidation Loan, Auto Loan, and Student Loan",3.538456191,0,7.14,6,Good,1497.529222,22.60744017,22 Years and 0 Months,No,184.8090174,639.1487034,Low_spent_Medium_value_payments,151.0492792,0,-1.7328,0.0114,-0.6873,0.8378,1.9669 +0x23a0d,CUS_0x955d,August,23,388-86-0082,Scientist,9536.42,769.7016667,7,5,27.06745738,6,"Personal Loan, Student Loan, Not Specified, Home Equity Loan, Mortgage Loan, and Credit-Builder Loan",43.7667517,28.68387635,5.26,15,Bad,1627.709261,34.17848868,20 Years and 2 Months,Yes,37.0933974,41.06398243,Low_spent_Small_value_payments,262.0924989,0,0.5571,-0.0667,0.394,1.5911,-0.6872 +0x23a19,CUS_0xbc6a,August,52,669-33-2894,Media_Manager,174921.92,14707.82667,2,4,11.28836175,0,,7.247661267,10,6.74,7,Good,927.27,41.95908889,,No,0,683.7726521,High_spent_Large_value_payments,1446.947476,0,-0.9089,-0.2486,-0.126,-0.1702,1.7627 +0x23a25,CUS_0x2212,August,19,787-94-7051,_______,17057.83,,6,10,25.95700519,6,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Auto Loan, and Student Loan",37.4228328,24.78448638,20.72,10,Bad,5640.647268,25.26075611,5 Years and 6 Months,Yes,1389.31141,58.35201417,Low_spent_Large_value_payments,263.1347897,0,1.2817,-0.5915,-1.5526,1.2243,1.1367 +0x23a31,CUS_0x3e68,August,30,808-05-1713,Media_Manager,19605.79,1839.815833,9,7,21,8,"Home Equity Loan, Debt Consolidation Loan, Personal Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, and Personal Loan",,19.16670899,28.7,14,Bad,5256.346116,29.07760238,6 Years and 4 Months,Yes,94.51760318,,Low_spent_Small_value_payments,285.0645763,0,-0.2151,1.4438,0.3852,1.0778,0.6229 +0x23a3d,CUS_0x2dca,August,27,267-45-7214,Developer,14161.12,1284.093333,10,7,24,6,"Not Specified, Mortgage Loan, Credit-Builder Loan, Payday Loan, Payday Loan, and Home Equity Loan",,30.11476565,23.19,12,Bad,4273.094205,39.73871372,5 Years and 10 Months,Yes,43.99615494,45.89528752,Low_spent_Large_value_payments,308.5178909,0,-1.2052,0.7248,-1.1096,-0.271,-1.4838 +0x23a49,CUS_0x5487,August,51,893-97-0399,Teacher,14632.3,,1,3,11,2,"Auto Loan, and Debt Consolidation Loan",,11,11.25,1,_,1373.01,40.27672375,22 Years and 3 Months,No,15.87191512,59.10847779,Low_spent_Large_value_payments,294.6554404,0,-0.5049,1.0426,-1.1753,-0.4699,0.9921 +0x23a55,CUS_0xb240,August,55,855-05-8443,Writer,102927.08,8130.152481,7,3,4.288361749,2,"Payday Loan, and Personal Loan",12.21425505,13,0.73,5,_,1244.377967,23.37014727,21 Years and 9 Months,Yes,718.0966454,1340.385064,Low_spent_Medium_value_payments,211.762286,0,-1.2361,-1.8744,1.066,0.5974,1.112 +0x23a61,CUS_0x5e4e,August,22,914-09-8374,Architect,14367.78,,1,6,7,0,,,2,8.05,3,_,1104.44,34.43976103,23 Years and 4 Months,No,0,20.32386008,High_spent_Large_value_payments,321.2076399,0,1.7309,0.0991,0.0913,-0.4285,-0.2852 +0x23a6d,CUS_0xb4fd,August,28,400-77-1931,Lawyer,37070,,3,4,3.288361749,4,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, and Personal Loan",13.63921406,13,10.73,5,Good,337.067461,27.3647975,28 Years and 3 Months,No,103.0926648,830.8535208,Low_spent_Small_value_payments,108.5441031,0,1.3342,1.2029,0.9673,-0.0046,-1.6677 +0x23a79,CUS_0x8083,August,20,937-98-2442,Manager,36398.14,,5,7,3.288361749,100,Mortgage Loan,14.18383462,,4.08,5,Good,248.38,31.14434335,18 Years and 0 Months,No,19.4986194,655.5320878,Low_spent_Small_value_payments,330.3245872,0,1.0645,-1.0522,0.0112,-0.3023,0.6038 +0x23a85,CUS_0x8175,August,48,718-00-1352,Musician,62953.62,,3,7,1,0,,10.03297626,12,3.48,4,Good,395.0343754,31.05515303,18 Years and 4 Months,No,0,65.14131145,High_spent_Large_value_payments,691.9481631,0,-0.8276,0.6121,1.0517,-1.5167,1.0736 +0x23a91,CUS_0x3f38,August,18,216-01-1461,Entrepreneur,31786.98,2944.915,9,6,32.06745738,100,"Student Loan, Personal Loan, Home Equity Loan, and Not Specified",21.33952216,14,18.45,9,Standard,2252.620954,33.01047562,7 Years and 11 Months,Yes,105.0869894,,High_spent_Medium_value_payments,302.1635213,0,0.9092,-0.1283,0.1599,-0.554,-0.6713 +0x23a9d,CUS_0x332e,August,56,723-86-0120,Entrepreneur,35681.42,,4,4,6,2,"Payday Loan, and Debt Consolidation Loan",,8,10.32,,Standard,133.3,26.62207556,24 Years and 11 Months,No,53.77869164,70.48505497,Low_spent_Large_value_payments,437.5814201,0,-0.1387,-0.2828,0.5278,0.1222,0.5919 +0x23aa9,CUS_0x643a,August,46,452-06-9195,Entrepreneur,62630.6,5286.216667,9,6,22,5,"Credit-Builder Loan, Mortgage Loan, Payday Loan, Student Loan, and Credit-Builder Loan",,17.69604614,17.07,14,Standard,2673.725321,37.05030836,17 Years and 0 Months,Yes,229.7753057,10000,High_spent_Medium_value_payments,459.0186592,0,1.1437,0.3716,0.6522,-1.2277,0.2868 +0x23ab5,CUS_0xaa74,August,27,542-05-5229,_______,24418.33,,6,6,10,2,"Personal Loan, and Not Specified",24.78878905,15.57557416,16.92,6,Standard,786.200043,25.09281754,25 Years and 6 Months,Yes,27.8642826,,Low_spent_Medium_value_payments,343.0380856,0,0.4699,0.7411,2.0931,-0.9607,0.9556 +0x23ac1,CUS_0x79c1,August,40,082-19-0271,_______,76428,,10,7,16,6,"Personal Loan, Auto Loan, Auto Loan, Auto Loan, Payday Loan, and Credit-Builder Loan",33.96786939,19.27360182,12.12,12,Bad,2354.273731,24.35159435,13 Years and 11 Months,Yes,330.7563136,384.2083545,Low_spent_Large_value_payments,208.2353319,0,-0.4415,-0.0676,1.3391,0.3911,-1.1417 +0x23acd,CUS_0x602a,August,44,036-74-6207,Architect,57602.6,,4,5,19,1,Personal Loan,10.97228973,8.253958814,13.62,6,Standard,1030.605859,32.22510013,21 Years and 11 Months,Yes,41.70824502,76.38794929,High_spent_Medium_value_payments,604.0254724,0,-0.2513,-0.9904,1.1255,-1.6773,1.1718 +0x23ad9,CUS_0x2e01,August,29,639-31-4177,Writer,62253.54,5223.795,4,5,10,4,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",9.43791384,9.620146361,12.55,0,_,404.248723,31.13887367,30 Years and 5 Months,No,181.0821795,10000,High_spent_Small_value_payments,467.8276078,0,-0.0699,0.6909,1.4965,-0.1612,-0.5209 +0x23ae5,CUS_0xb89c,August,44,832-80-4050,Architect,11919.42,,4,7,4,1,Not Specified,,20,8.19,7,Good,957.0109743,25.8042066,17 Years and 9 Months,No,9.882767306,89.23111464,Low_spent_Small_value_payments,312.7652888,0,0.2903,1.4633,0.5695,-1.7325,-1.139 +0x23af1,CUS_0x3afa,August,38,202-41-1777,Teacher,20528.59,1900.715833,6,7,33.06745738,9,"Mortgage Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Payday Loan, Not Specified, and Payday Loan",37.99093329,17.65250729,26.49,15,Bad,4320.797836,34.46870675,5 Years and 10 Months,Yes,127.9016496,,!@9#%8,166.3380976,0,-0.2923,1.2675,0.5218,0.7579,0.1884 +0x23afd,CUS_0x4683,August,43,056-47-2213,Developer,108734.13,8077.402365,5,6,9,2,"Debt Consolidation Loan, and Payday Loan",14.53179111,11,18.89,12,Standard,950.924311,38.60345643,20 Years and 5 Months,NM,910.3314912,314.9032032,Low_spent_Medium_value_payments,732.6403375,0,0.6431,0.0027,-0.6696,-0.069,0.4869 +0x23b09,CUS_0x2375,August,19,027-76-6435,Accountant,20436.315,1785.02625,1,3,7,100,"Personal Loan, and Not Specified",0.175819767,1,4.86,6,Good,783.77,27.3004172,23 Years and 2 Months,NM,20.36603174,23.58731556,High_spent_Medium_value_payments,384.5492777,0,-0.4588,0.4531,-1.6972,0.5134,0.5321 +0x23b15,CUS_0x19e1,August,45,332-57-6366,Journalist,114897.2,9333.766667,3,5,10.28836175,4,"Personal Loan, Personal Loan, Not Specified, and Auto Loan",,7,10.68,7,Good,570.5134367,28.84185875,19 Years and 9 Months,No,338.0418476,675.1890594,High_spent_Large_value_payments,609.2301642,0,-0.35,0.4816,-0.1418,-0.009,0.4192 +0x23b21,CUS_0x902e,August,22,#F%$D@*&8,_______,69851.4,5581.95,9,8,23,3,"Student Loan, Mortgage Loan, and Debt Consolidation Loan",15.41369372,11,7.68,11,Standard,1713.36,38.83873423,17 Years and 5 Months,NM,140.7252996,129.1234472,!@9#%8,538.3462531,0,0.414,-0.4025,-2.1699,-0.9989,-0.5904 +0x23b2d,CUS_0x5ddd,August,28,236-19-1704,_______,60061.64,,10,9,24.88954781,6,"Auto Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Payday Loan, and Auto Loan",25.68462088,20,27.91,9,Bad,4771.2,32.85349342,6 Years and 4 Months,NM,1492.769713,232.7383109,Low_spent_Large_value_payments,322.0755611,0,0.9264,0.7191,1.1623,0.5751,-3.1041 +0x23b39,CUS_0x463e,August,18,522-26-7644,Developer,14937.63,1495.8025,6,6,28.06745738,5,"Not Specified, Student Loan, Debt Consolidation Loan, Home Equity Loan, and Mortgage Loan",15.89860919,10.38164257,10.07,6,Standard,2510.405954,37.90808767,14 Years and 10 Months,Yes,60.36998092,101.942411,Low_spent_Large_value_payments,230.5475701,0,0.8585,0.8718,-0.2684,1.4373,0.4277 +0x23b45,CUS_0x1900,August,26,534-19-8100,Accountant,8137.625,680.1354167,8,6,35.06745738,8,"Mortgage Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, and Home Equity Loan",,21,17.53,6,Bad,4162.110954,24.19277583,2 Years and 5 Months,Yes,53.34367125,35.01509475,Low_spent_Small_value_payments,242.9344877,0,1.8974,-0.2452,0.8232,-0.4786,-0.4184 +0x23b51,CUS_0x2449,August,42,511-01-3852,Mechanic,43581.71,3679.809167,0,4,8,4,"Student Loan, Mortgage Loan, Not Specified, and Student Loan",12.81829125,,10.46,7,Good,121.5362313,29.94098651,17 Years and 5 Months,No,141.2601579,122.3864615,Low_spent_Medium_value_payments,384.3342973,0,-1.3133,-0.8295,2.266,0.5617,-2.0052 +0x23b5d,CUS_0x9b5c,August,22,033-59-9839,Media_Manager,34628.06,3041.671667,1,3,4,1,Personal Loan,0,3,0.5,4,Good,1024.5,36.90383764,23 Years and 10 Months,No,21.68893387,22.14212658,High_spent_Large_value_payments,500.3361062,0,-0.3388,-1.8514,1.1545,0.0061,-1.8833 +0x23b69,CUS_0xd70,August,46,355-83-4978,Entrepreneur,61358.66,4859.221667,4,3,7,1,Home Equity Loan,16.98294323,16,3,4,Good,1025.81,38.62820474,19 Years and 8 Months,No,32.86621769,388.0971199,Low_spent_Large_value_payments,334.9588291,0,-0.2949,0.4042,-2.2866,-0.6777,-1.9482 +0x23b75,CUS_0x6dc3,August,45,920-29-4982,Architect,34980.21,,5,7,18,4,"Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Mortgage Loan",,8,7.97,3,Standard,937.32,29.32021479,26 Years and 8 Months,No,66.79673202,163.756763,Low_spent_Medium_value_payments,311.048255,0,2.2726,1.705,1.2026,0.9497,1.2628 +0x23b81,CUS_0x9151,August,20,943-19-5918,Developer,130682.94,10605.245,2,5,1,4,"Payday Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",9.19162606,8,6.1,6,Good,655.2332695,35.58669211,29 Years and 3 Months,No,23857,181.2003088,High_spent_Large_value_payments,881.8830674,0,0.0635,0.8784,0.983,0.1613,-0.3532 +0x23b8d,CUS_0x1550,August,38,#F%$D@*&8,Musician,48996.08,3799.006667,5,7,12,4,"Personal Loan, Credit-Builder Loan, Payday Loan, and Payday Loan",,16,13.31,1,Standard,285.29,34.08376377,18 Years and 3 Months,Yes,135.683692,,High_spent_Small_value_payments,265.3860529,0,0.2204,-0.3134,0.8558,0.671,0.8267 +0x23b99,CUS_0x4697,August,25,353-93-4632,Architect,44784.78,,9,5,22.06745738,100,"Auto Loan, Home Equity Loan, Auto Loan, Home Equity Loan, Personal Loan, Auto Loan, Auto Loan, Personal Loan, and Credit-Builder Loan",41.54942768,24,23.3,15,Bad,3958.640954,39.42537846,12 Years and 2 Months,Yes,276.2686976,191.2552347,!@9#%8,164.0622798,0,0.4906,0.047,-0.738,1.295,-0.133 +0x23ba5,CUS_0x4e5f,August,38,682-27-7124,Writer,39066.64,,3,1,7.288361749,2,"Payday Loan, and Home Equity Loan",0.596293108,3,1.22,5,Good,5.996999818,33.68963712,22 Years and 8 Months,No,34.30112933,757.9208431,!@9#%8,256.2838922,0,0.3162,-0.4856,-1.3655,-0.2633,-1.6026 +0x23bb1,CUS_0xb123,August,42,194-93-2247,Architect,73683.69,,8,7,9,3,"Payday Loan, Personal Loan, and Not Specified",11.31195898,10,4.35,5,Standard,520.26,34.80074804,32 Years and 10 Months,Yes,152.871762,165.907636,High_spent_Small_value_payments,536.451352,0,-1.326,-1.1057,0.4258,-0.7655,-0.3509 +0x23bbd,CUS_0x13e7,August,36,548-61-8467,Scientist,57792.3,,8,9,29,3,"Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",12.44896839,9.4879184,19.07,8,Standard,2117.351596,29.15798682,11 Years and 0 Months,Yes,133.8196249,56.90841863,High_spent_Medium_value_payments,525.7744565,0,1.3701,0.603,0.3752,0.4126,0.0088 +0x23bc9,CUS_0x89c8,August,49,929-04-4055,Lawyer,85480.41,,2,5,9,2,"Home Equity Loan, and Student Loan",1.338749007,3,10.96,5,Good,1221.35212,26.34121541,25 Years and 9 Months,No,884.3934483,164.3873346,High_spent_Large_value_payments,733.0518346,0,0.1027,-0.3097,0.3751,-1.3255,-0.8801 +0x23bd5,CUS_0x13f6,August,50,178-96-0125,Entrepreneur,152252.24,11346.17088,2,4,0.288361749,2,"Debt Consolidation Loan, and Not Specified",,4,6.5,6,Good,472.100118,37.14286878,31 Years and 3 Months,NM,1568.862242,776.8358902,High_spent_Medium_value_payments,998.4111555,0,0.1638,0.4682,0.7856,1.3194,-1.1502 +0x23be1,CUS_0xaec,August,37,277-16-4620,Lawyer,34500.94,,4,5,20,2,"Payday Loan, and Payday Loan",,14,11.28,5,_,899.48,35.39332261,21 Years and 8 Months,Yes,38.77126072,10000,Low_spent_Small_value_payments,230.994978,0,0.1879,0.601,-2.3396,-1.583,-0.4183 +0x23bed,CUS_0x6846,August,27,836-74-3048,Doctor,16183.75,,7,4,18.06745738,2,"Debt Consolidation Loan, and Credit-Builder Loan",31.19079124,21.34357482,9.78,7,Standard,2366.651467,30.34488707,14 Years and 4 Months,Yes,24.57072948,107.255927,Low_spent_Medium_value_payments,260.8176389,0,-0.1413,0.84,1.133,-0.4314,-0.8598 +0x23bf9,CUS_0x2ef8,August,25,791-97-4746,Engineer,17682.71,,6,4,15.06745738,2,"Home Equity Loan, and Home Equity Loan",21.39058041,13,9.66,4,Standard,1717.410954,25.19420763,11 Years and 2 Months,Yes,23.5986156,201.8760785,Low_spent_Small_value_payments,197.7609346,0,1.0599,0.3933,-0.0254,2.5794,-0.4782 +0x23c05,CUS_0x2bfc,August,27,335-49-3815,Entrepreneur,69363.87,,4,4,19,100,"Auto Loan, Personal Loan, Auto Loan, Student Loan, Credit-Builder Loan, and Personal Loan",17.18438022,10,16.04,11,Standard,449.06,30.8580217,17 Years and 6 Months,Yes,228.4814754,413.6776805,Low_spent_Large_value_payments,230.6730941,0,-0.6504,-0.9928,-1.1987,0.6467,0.9953 +0x23c11,CUS_0x776d,August,27,832-04-1514,Writer,17790.36,,4,4,14,4,"Credit-Builder Loan, Home Equity Loan, Home Equity Loan, and Student Loan",,10,17.02,8,Standard,2019.36,37.3414594,10 Years and 6 Months,Yes,42.3506176,138.7144589,Low_spent_Small_value_payments,237.0879235,0,-0.5529,-1.178,-2.4582,-0.1402,-0.6452 +0x23c1d,CUS_0x858a,August,34,285-82-6057,Scientist,35286.5,,6,9,24,2,"Not Specified, and Debt Consolidation Loan",,25.17662412,18.69,15,_,1802.717983,36.57118125,7 Years and 4 Months,Yes,34.74516848,162.2611051,High_spent_Small_value_payments,355.947893,0,0.2935,-0.3041,-0.0781,-0.2377,-0.697 +0x23c29,CUS_0x905e,August,19,332-19-6682,Musician,18784.375,1574.364583,5,730,4.288361749,100,Personal Loan,15.78675398,,11.08,0,Good,55.2,29.01952463,24 Years and 8 Months,No,11.68907786,482.2218232,Low_spent_Small_value_payments,373.4630183,0,-0.6643,-0.4662,0.1299,-1.9395,-0.8063 +0x23c35,CUS_0x3baa,August,41,751-36-7857,Media_Manager,29968.56,,5,5,6,1,Mortgage Loan,12.09818211,12,11.04,4,_,906.9772081,29.63474743,17 Years and 8 Months,No,21.03313243,53.87573518,High_spent_Large_value_payments,442.3565809,0,0.3034,-2.4302,1.5402,-1.6487,-0.3438 +0x23c41,CUS_0x4e07,August,32,083-83-6855,Teacher,14235.88,1012.323333,8,5,25.06745738,9,"Not Specified, Payday Loan, Mortgage Loan, Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,24.13156519,22.16,16,Bad,5369.453143,38.87337201,6 Years and 6 Months,NM,62.54044076,121.2082891,Low_spent_Small_value_payments,180.7633155,0,-1.5741,-0.0845,-1.0493,-0.9478,0.3781 +0x23c4d,CUS_0x99bc,August,25,184-56-2277,Accountant,35108.51,,3,7,1.288361749,0,Not Specified,3.153792565,5.700376623,11.35,6,Good,17.22317985,34.3988221,23 Years and 6 Months,No,23.94761897,561.0060455,Low_spent_Small_value_payments,410.0547132,0,-1.1639,-0.14,2.6506,1.7049,0.2624 +0x23c59,CUS_0x2d9f,August,46,306-93-8783,Journalist,59692.58,,4,3,17.28836175,4,"Personal Loan, Student Loan, Payday Loan, and Not Specified",15.94786953,,12.52,6,Standard,458.68,28.60780877,18 Years and 4 Months,Yes,112.3904286,744.6853497,High_spent_Small_value_payments,296.1998494,0,-0.3204,0.1628,-2.0824,-0.3714,-1.2308 +0x23c65,CUS_0xa88,August,41,#F%$D@*&8,Writer,94969.56,7959.13,8,5,6,4,"Home Equity Loan, Home Equity Loan, Auto Loan, and Payday Loan",15.76746964,13,4.2,5,Standard,1171.88,28.45336417,31 Years and 4 Months,No,224.9507259,531.7672055,Low_spent_Medium_value_payments,319.1950686,0,-1.2348,1.293,-1.0124,-2.3769,0.6129 +0x23c71,CUS_0xb2d5,August,18,#F%$D@*&8,Musician,18296.3,,8,9,29.06745738,9,"Debt Consolidation Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Payday Loan, Student Loan, Student Loan, Payday Loan, and Credit-Builder Loan",24.09329869,,20.19,11,Bad,3572.225286,33.63532032,11 Years and 10 Months,Yes,84.26469322,33.30397495,High_spent_Large_value_payments,268.0328536,0,-2.1483,1.3286,0.9299,-0.3594,-1.0668 +0x23c7d,CUS_0xc47c,August,33,614-70-7517,Engineer,33652.17,,2,5,7.288361749,0,Debt Consolidation Loan,,10,4.07,1,Good,274.7683942,35.9083788,16 Years and 3 Months,No,18.99537682,664.5490103,Low_spent_Small_value_payments,309.1990452,0,1.1185,-0.5445,0.0858,0.7037,0.5783 +0x23c89,CUS_0xdba,August,39,625-04-4866,Developer,60799.53,4989.6275,8,5,29,7,"Personal Loan, Not Specified, Student Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Mortgage Loan",43.95388407,29.40893317,6.77,12,Bad,2377.645837,34.85441228,18 Years and 3 Months,Yes,214.5889462,,High_spent_Large_value_payments,423.3676983,0,-1.0802,0.5833,-0.0151,-1.0853,0.2744 +0x23c95,CUS_0x8e80,August,26,032-38-0611,Mechanic,59579.37,,7,5,19,6,"Student Loan, Mortgage Loan, Payday Loan, Not Specified, Personal Loan, and Personal Loan",18.94014128,13,,2376,Bad,2341.372442,27.83213308,13 Years and 3 Months,Yes,377.9005576,68.22054509,High_spent_Large_value_payments,452.5780557,0,0.026,-1.5879,0.2644,0.8872,0.1456 +0x23ca1,CUS_0x412f,August,23,319-02-6843,Manager,29437.24,2645.103333,6,7,34,5,"Not Specified, Personal Loan, Auto Loan, Credit-Builder Loan, and Personal Loan",27.89646254,21,24.16,14,Bad,3377.59,36.95817491,4 Years and 8 Months,NM,116.0043484,,Low_spent_Small_value_payments,165.815994,0,-0.3912,1.8051,-0.3774,0.1178,-1.7777 +0x23cad,CUS_0x6dc6,August,39,600-54-4237,Journalist,15319.52,,1,7,5,3,"Auto Loan, Mortgage Loan, and Mortgage Loan",8.774748188,9,-2,6,_,188.9612851,36.54194245,24 Years and 5 Months,No,29.87841614,76.35714015,Low_spent_Medium_value_payments,333.4742328,0,-0.0695,1.0329,-0.8204,-0.4765,-1.4921 +0x23cb9,CUS_0x7992,August,80,515-29-0936,Engineer,16604.27,1162.689167,5,5,14,3,"Debt Consolidation Loan, Not Specified, and Mortgage Loan",3.048354179,5,19.56,8,Standard,888.66,23.94585604,14 Years and 0 Months,Yes,27.58959343,13.3762249,High_spent_Large_value_payments,315.3030983,0,-0.0719,1.0439,-2.572,0.3079,0.0426 +0x23cc5,CUS_0xc166,August,56,466-09-8122,Architect,107836.32,9251.36,3,6,16,3,"Mortgage Loan, Personal Loan, and Payday Loan",23.52359614,17,2.29,2,Standard,1045.39,28.11284023,20 Years and 2 Months,No,231.244069,230.8861171,High_spent_Small_value_payments,723.0058139,0,-0.6819,-0.1336,1.505,-0.4482,0.4445 +0x23cd1,CUS_0x8b6d,August,23,796-69-6764,Musician,102594.9,8391.575,3,4,10.28836175,0,,,,1.82,5,Standard,416.11,43.36510555,19 Years and 3 Months,No,0,549.3700376,High_spent_Large_value_payments,949.7249235,0,-1.0498,0.424,-1.426,0.3666,-0.9938 +0x23cdd,CUS_0xa46e,August,24,105-63-6085,Accountant,131557.44,11144.12,4,6,6,1,Auto Loan,,24.0595122,11.7,5,Standard,1133.991685,46.2306829,31 Years and 10 Months,Yes,100.5651042,200.2361144,High_spent_Large_value_payments,1053.610781,0,0.2575,1.2578,1.3039,0.4014,-0.0524 +0x23ce9,CUS_0xb80a,August,27,096-80-1919,Developer,74319.32,6260.276667,8,10,34.88954781,9,"Personal Loan, Student Loan, Debt Consolidation Loan, Debt Consolidation Loan, Student Loan, Debt Consolidation Loan, Student Loan, Personal Loan, and Credit-Builder Loan",,22,26.23,16,Bad,3192.94,39.99638687,10 Years and 4 Months,Yes,1632.166825,,Low_spent_Small_value_payments,90.74944393,0,-1.4074,1.7528,0.7444,-0.118,-0.0929 +0x23cf5,CUS_0x7806,August,43,680-76-8867,Entrepreneur,93139.65,7936.6375,3,6,6,3,"Auto Loan, Home Equity Loan, and Personal Loan",,3,-3.03,4,_,1016.37,27.64287842,28 Years and 2 Months,No,192.7884218,244.2024971,Low_spent_Medium_value_payments,636.6728311,0,1.2963,-1.2518,1.1253,-1.9335,0.1042 +0x23d01,CUS_0xeb0,August,21,349-22-8437,Entrepreneur,35733.46,,6,9,23,7,"Credit-Builder Loan, Not Specified, Not Specified, Debt Consolidation Loan, Personal Loan, Auto Loan, and Credit-Builder Loan",,19,2.38,9,Bad,2335.68,31.07210394,18 Years and 10 Months,Yes,124.4182939,77.19134339,High_spent_Small_value_payments,372.9691961,0,0.6834,0.3679,0.7325,-0.5392,-0.9055 +0x23d0d,CUS_0x4649,August,51,804-65-5792,Doctor,33346.34,,5,3,20,0,,,10,12.38,4,Standard,1050.39,35.88295428,24 Years and 0 Months,Yes,0,107.2038292,Low_spent_Small_value_payments,453.1823374,0,-0.3745,-0.272,0.5329,0.5603,-0.7827 +0x23d19,CUS_0x9ce9,August,30,297-91-4807,Teacher,116034.93,9446.5775,1,5,9,1,Credit-Builder Loan,90,1473,2.24,0,_,392.4798969,42.57273008,18 Years and 3 Months,No,74.61428924,381.0704857,High_spent_Small_value_payments,806.3979621,0,0.847,1.0367,1.0195,1.1146,0.2127 +0x23d25,CUS_0xbf09,August,37,#F%$D@*&8,Media_Manager,87199.02,,1,7,7,100,Not Specified,,13.72401832,11.13,4,Good,429.8382176,35.23044815,24 Years and 2 Months,No,62.10048916,396.785934,High_spent_Small_value_payments,552.0720768,0,-0.7172,-1.0724,-1.9911,0.3171,1.13 +0x23d31,CUS_0x1ca9,August,30,044-46-7121,Manager,128585.52,10674.46,4,4,7,1,Student Loan,,11,7.32,6,Good,1000.37,35.32188679,22 Years and 0 Months,No,73.48567887,257.8548934,High_spent_Large_value_payments,976.1054278,0,-0.3836,1.3525,0.9445,-0.2522,2.052 +0x23d3d,CUS_0x2d07,August,34,069-81-5044,Developer,63617.92,5231.493333,6,9,30.88954781,7,"Student Loan, Debt Consolidation Loan, Auto Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, and Payday Loan",34.67393699,26.91494027,14.07,9,Standard,2084.713597,27.11883637,,Yes,1581.007241,377.0768288,Low_spent_Small_value_payments,160.7351821,0,-0.8361,-1.212,1.0127,-0.0881,2.2574 +0x23d49,CUS_0xbb33,August,48,#F%$D@*&8,Media_Manager,100971.6,8286.3,2,6,7,1,Student Loan,16.95429718,,4,3,_,1025.17338,34.16924232,17 Years and 5 Months,No,48.69755777,982.5253698,Low_spent_Medium_value_payments,222.2074494,0,0.6633,-1.256,0.91,-3.0752,0.0098 +0x23d55,CUS_0x8eac,August,24,558-73-0393,Journalist,15881.55,1361.4625,8,5,24,6,"Not Specified, Credit-Builder Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",,26.90949054,4.67,9,_,2608.798639,23.62036122,17 Years and 9 Months,Yes,74.48464695,114.3139711,Low_spent_Medium_value_payments,227.3476319,0,0.1091,-0.8253,-0.6824,1.025,-0.2417 +0x23d61,CUS_0xb5f3,August,23,942-76-6919,Architect,60423.57,5269.2975,10,7,18,3,"Not Specified, Credit-Builder Loan, and Not Specified",25.71063503,9.331137653,12.38,7,Standard,2565.280578,27.28722173,10 Years and 6 Months,Yes,107.8137986,72.56988347,High_spent_Large_value_payments,586.5460679,0,0.7089,0.0915,0.7198,-0.4484,0.6768 +0x23d6d,CUS_0x16b4,August,37,171-24-2247,Lawyer,98087.76,7890.98,4,4,8,4,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",9.659454,10,11.9,10,Standard,55.46,36.16527957,12 Years and 8 Months,Yes,184.2559986,257.4609978,!@9#%8,597.3810036,0,-0.5827,-0.5946,0.1478,1.1141,-2.2787 +0x23d79,CUS_0x631d,August,80,591-97-3475,Mechanic,8830.81,,10,5,33,9,"Not Specified, Personal Loan, Personal Loan, Payday Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",30.3845144,22.4676653,1.64,14,Bad,3948.348198,30.50823325,4 Years and 6 Months,Yes,93.49757981,,Low_spent_Small_value_payments,251.0030682,0,0.6232,0.7261,0.2794,-0.8463,-0.1101 +0x23d85,CUS_0x73de,August,31,225-54-0437,Teacher,101748.16,8382.013333,6,7,4.288361749,2,"Credit-Builder Loan, Mortgage Loan, and Mortgage Loan",,21,18.66,12,_,424.6307092,25.77723589,16 Years and 3 Months,Yes,155.1150264,11587.10942,Low_spent_Medium_value_payments,371.3413673,0,-0.6342,-0.0794,1.2315,-1.6947,-1.3627 +0x23d91,CUS_0x48be,August,45,835-01-3862,Mechanic,19927.48,1655.623333,10,6,24,9,"Student Loan, Personal Loan, Student Loan, Home Equity Loan, Student Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",,22.27522995,2.42,15,Bad,4904.004761,36.50938885,,Yes,125.7497982,,Low_spent_Small_value_payments,112.3772918,0,-0.7472,-0.4322,0.2798,0.7782,0.3795 +0x23d9d,CUS_0x95ec,August,18,572-46-2711,Accountant,89469.76,7162.813333,4,3,8,1,Mortgage Loan,6.883848231,8,12.19,8,_,1301.52,38.28254698,31 Years and 4 Months,NM,37.51492176,653.5592488,!@9#%8,295.2071627,0,-0.6807,1.089,-0.3164,0.7418,1.6624 +0x23da9,CUS_0xc668,August,42,#F%$D@*&8,Engineer,17420.33,,4,7,27,3,"Debt Consolidation Loan, Mortgage Loan, and Auto Loan",13.54744046,8.072767308,14.3,9,Standard,2666.947728,28.48791056,,Yes,24.13197167,13.61419115,High_spent_Large_value_payments,372.1232538,0,0.3029,-0.5292,-0.1814,0.4944,-0.6729 +0x23db5,CUS_0x30ec,August,18,669-18-6541,Engineer,8923.745,,6,5,3400,3,"Debt Consolidation Loan, Auto Loan, and Auto Loan",30.13098195,18,9.44,7,Bad,1889.62,34.94635456,10 Years and 2 Months,Yes,18.7274044,62.60351428,High_spent_Small_value_payments,281.933623,0,0.6352,0.1998,-0.0759,-0.0422,0.061 +0x23dc1,CUS_0x1c96,August,51,725-99-5987,_______,43802.27,,4,7,2,4,"Not Specified, Debt Consolidation Loan, Mortgage Loan, and Payday Loan",0,0,8.45,3,Good,1306.151848,32.11226093,32 Years and 6 Months,No,119.0778086,,High_spent_Small_value_payments,391.9948162,0,-0.5718,0.5346,2.0693,0.1134,-1.5075 +0x23dcd,CUS_0xb53,August,32,666-23-6187,Engineer,72699.66,6210.305,4,5,1,0,,8.680804549,11,0.76,0,_,1009.97,33.69066489,16 Years and 3 Months,No,0,237.1553028,Low_spent_Large_value_payments,653.8751972,0,-1.0258,0.7115,-0.3816,-1.0529,-0.3198 +0x23dd9,CUS_0x54be,August,37,466-49-5500,Manager,116574.04,9885.503333,6,6,13,3,"Auto Loan, Home Equity Loan, and Credit-Builder Loan",11.13001849,9,0.51,2,Standard,654.12,35.49480995,26 Years and 5 Months,Yes,224.2153405,697.4321222,Low_spent_Medium_value_payments,346.9028706,0,-1.1124,-0.553,1.2544,0.5342,1.5769 +0x23de5,CUS_0x559c,August,44,342-05-1134,Architect,70447.26,5843.605,8,4,1,3,"Home Equity Loan, Payday Loan, and Mortgage Loan",19.3142514,12,0.54,6,_,904.34,32.15545238,31 Years and 8 Months,No,111.1721789,190.9802536,Low_spent_Medium_value_payments,562.2080675,0,-0.5632,-0.903,-0.1716,1.9272,-0.0154 +0x23df1,CUS_0x18d7,August,18,761-38-3436,Scientist,16068.39,,10,7,17,5,"Personal Loan, Debt Consolidation Loan, Student Loan, Home Equity Loan, and Student Loan",38.04466264,23,22.52,9,Bad,3377.65,31.40269265,,Yes,56.41270053,,Low_spent_Medium_value_payments,259.3218132,0,-2.035,-1.5577,-0.8122,-0.9264,-0.4072 +0x23dfd,CUS_0x1168,August,42,773-33-0379,Writer,76440.52,6647.043333,0,4,8.288361749,2,"Mortgage Loan, and Student Loan",0,2,10.85,4,Good,880.600143,35.48138903,20 Years and 9 Months,No,96.74970979,1034.748007,Low_spent_Medium_value_payments,300.0960323,0,0.4733,0.1772,0.3767,0.2839,-2.0748 +0x23e09,CUS_0x7152,August,18,399-91-2074,Doctor,49716.16,3925.013333,4,3,20,100,"Credit-Builder Loan, Not Specified, Personal Loan, Mortgage Loan, Not Specified, and Mortgage Loan",23.500208,18,17.81,8,_,1490.78,25.26987655,19 Years and 11 Months,Yes,240.3331576,155.5822666,High_spent_Medium_value_payments,246.5859092,0,0.4103,-0.8984,0.8327,-0.461,-0.7292 +0x23e15,CUS_0xb029,August,27,767-78-6130,Engineer,17169.465,,7,6,7.067457376,1,Personal Loan,16.3597,11,10.28,1,Standard,1432.493968,28.49024076,30 Years and 2 Months,Yes,13.51462475,109.6746629,Low_spent_Medium_value_payments,261.887686,0,0.7959,0.0702,-1.2709,0.7657,0.592 +0x23e21,CUS_0xaf96,August,80,650-39-2764,_______,145800.84,12449.07,7,6,10,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Payday Loan",18.14018684,12,14.2,10,_,1292.5,31.91261297,11 Years and 11 Months,Yes,51173,,Low_spent_Large_value_payments,686.0553595,0,-0.3843,-1.1174,-1.7902,0.2903,-0.2083 +0x23e2d,CUS_0x5709,August,42,541-41-6519,Musician,68140.2,,3,5,14,0,,22.530867,17,6.3,5,Standard,176.2658942,38.97063172,28 Years and 6 Months,No,0,362.3857389,High_spent_Small_value_payments,538.0306215,0,0.3866,0.6236,-0.6886,0.7087,-1.0493 +0x23e39,CUS_0xb3c2,August,36,589-17-0882,Media_Manager,20487.905,,4,4,2,3,"Mortgage Loan, Payday Loan, and Credit-Builder Loan",9.262276529,10,6.05,2,_,1464.77,32.67893344,21 Years and 3 Months,No,34.53529462,138.2450747,Low_spent_Large_value_payments,264.6521723,0,1.2514,0.9402,0.5637,-0.7834,0.3304 +0x23e45,CUS_0x7d8,August,18,680-85-5010,Doctor,19288.47,1408.3725,10,6,22.06745738,6,"Payday Loan, Not Specified, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Not Specified",37.2756257,20,8.52,11,Bad,2096.480954,34.53639107,5 Years and 11 Months,Yes,49.38869899,,Low_spent_Small_value_payments,236.6328906,0,1.5241,-0.4344,-0.173,-0.5454,0.3336 +0x23e51,CUS_0x257e,August,23,049-11-7552,Musician,29074.2,,8,563,5,4,"Home Equity Loan, Auto Loan, Student Loan, and Home Equity Loan",23.00777521,17,18.45,3,Standard,867.27,24.57322317,30 Years and 10 Months,Yes,52.50795033,,Low_spent_Large_value_payments,259.1179136,0,-0.2104,-0.9439,-0.7172,-0.402,1.0013 +0x23e5d,CUS_0x78fe,August,31,574-49-3850,Journalist,44729.8,3728.483333,5,4,5.288361749,0,,8.376954947,10,2.82,,Good,512.83,30.79338933,26 Years and 0 Months,No,0,542.8124465,High_spent_Medium_value_payments,499.9733478,0,-0.2646,1.9123,-0.6373,-0.3037,-1.4116 +0x23e69,CUS_0xcc4,August,42,794-41-6711,Engineer,82240.98,6116.362098,3,5,3,1,Home Equity Loan,,3,10.9,5,Good,564.1912636,42.0934201,25 Years and 2 Months,No,928.2537831,172.0027572,High_spent_Large_value_payments,731.3297537,0,1.3448,-1.3238,0.1863,1.7362,-0.3855 +0x23e75,CUS_0xb41f,August,46,#F%$D@*&8,Architect,176020.16,,1,1,1,2,"Mortgage Loan, and Credit-Builder Loan",,7,7.38,5,_,82.6,46.7712673,29 Years and 5 Months,No,165.8042919,123.3485199,High_spent_Large_value_payments,1396.881855,0,-1.7068,-0.4804,0.7074,1.3961,0.7505 +0x23e81,CUS_0xb8a1,August,47,853-28-7975,Architect,178814.16,15167.18,3,7,5,2,"Personal Loan, and Home Equity Loan",7.391736079,4.737763422,3.13,3,Good,445.1411114,44.00495812,16 Years and 8 Months,No,200.326379,289.3141478,High_spent_Medium_value_payments,1277.077473,0,-0.9772,0.2846,-0.8046,0.7667,-2.3803 +0x23e8d,CUS_0x920e,August,55,715-24-1767,Mechanic,57079.5,4669.625,8,3,9,4,"Student Loan, Student Loan, Personal Loan, and Not Specified",21.13919435,14,4.48,3,Standard,26.47,33.92714272,33 Years and 4 Months,No,125.7311367,,Low_spent_Large_value_payments,178.3049354,0,-1.2142,-0.6282,0.6913,0.2827,-0.5543 +0x23e99,CUS_0x8281,August,21,101-27-4002,Engineer,47330.91,3793.2425,9,10,18,3,"Credit-Builder Loan, Mortgage Loan, and Payday Loan",46.5910277,25.59392888,3.68,14,Bad,1643.960167,36.42686588,13 Years and 2 Months,Yes,103.1793319,,Low_spent_Small_value_payments,76.77666484,0,-0.5723,0.7157,0.4011,-0.8968,0.0085 +0x23ea5,CUS_0x6abc,August,24,910-60-1253,Manager,88346.48,,4,3,18,1,Debt Consolidation Loan,,13,18.31,0,Standard,1392.71,35.70362889,23 Years and 0 Months,Yes,46.65991382,665.9453643,Low_spent_Medium_value_payments,296.3153885,0,-1.6245,-0.5202,0.0823,0.8758,-0.4822 +0x23eb1,CUS_0x61a3,August,19,815-57-7510,Architect,14060.34,,5,7,8,0,,17.4385179,10,13.11,3,Standard,359.94,38.96473579,,Yes,0,109.4093324,Low_spent_Small_value_payments,316.9601676,0,0.2736,1.0892,-0.1866,-1.4862,-0.9083 +0x23ebd,CUS_0x9389,August,35,#F%$D@*&8,Doctor,114684.32,,5,5,18.28836175,2,"Auto Loan, Student Loan, and Student Loan",20.93164367,18,8.47,3,Standard,542.26,29.60669534,19 Years and 11 Months,Yes,147.5410376,1079.187831,High_spent_Small_value_payments,430.9112593,0,-0.6372,-0.0149,-0.0738,-2.9684,-0.8188 +0x23ec9,CUS_0x64d9,August,22,841-57-7492,Lawyer,68751.75,5468.3125,6,3,10,0,,,14,4.61,6,Good,59.3713195,37.49830311,30 Years and 0 Months,No,0,,!@9#%8,637.1164726,0,-0.0965,1.5593,0.701,1.6824,-0.5728 +0x23ed5,CUS_0x5d51,August,24,970-66-1276,Entrepreneur,177089.8,14856.48333,3,5,4,4,"Mortgage Loan, Student Loan, Student Loan, and Debt Consolidation Loan",0,2,8.4,4,Good,545.7970637,27.50139913,24 Years and 2 Months,No,371.8004337,290.4290337,High_spent_Medium_value_payments,1101.6437,0,0.0786,0.3961,-1.7476,-2.5257,-2.4536 +0x23ee1,CUS_0x1bb7,August,41,093-84-7831,Entrepreneur,9022.16,1045.846667,6,9,23,7,"Payday Loan, Auto Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Personal Loan, and Mortgage Loan",27.31346844,20.17157097,3.93,11,Bad,1909.777506,22.49594004,12 Years and 0 Months,Yes,41.6112072,,Low_spent_Small_value_payments,217.0377165,0,-0.5795,1.16,0.5941,1.114,0.8857 +0x23eed,CUS_0xdf6,August,55,155-73-3803,Mechanic,40453.85,2772.811052,2,2,1,0,,4.372572862,5,4.29,2,Good,419.468653,38.96648678,,No,323.3431148,277.9145402,Low_spent_Small_value_payments,353.9279335,0,1.2762,0.2223,-1.4918,-0.5772,0.8594 +0x23ef9,CUS_0x949b,August,35,287-71-5066,Accountant,11958.695,,3,4,8,0,,26.56554685,18,8.3,7,Standard,74.29,35.14460527,16 Years and 4 Months,Yes,0,22.80024403,High_spent_Small_value_payments,327.5555476,0,1.2646,0.7488,-0.1859,0.8456,1.8482 +0x23f05,CUS_0x2f03,August,44,128-50-9121,Architect,61435.6,5333.633333,8,3,9.288361749,2,"Auto Loan, and Personal Loan",,,19.67,9,Standard,412.38,26.31809535,5 Years and 8 Months,Yes,95.5843823,832.6227701,Low_spent_Medium_value_payments,305.093642,0,1.5572,-1.2102,-1.2485,0.0974,2.1229 +0x23f11,CUS_0x4de9,August,36,005-57-7419,Writer,36820.36,,5,3,5,2,"Mortgage Loan, and Student Loan",,13,14.92,11,Standard,975.09,36.376173,18 Years and 0 Months,NM,24617,67.86649242,High_spent_Medium_value_payments,453.1985358,0,0.6995,-1.3398,1.244,0.3392,-0.4702 +0x23f1d,CUS_0xb832,August,28,979-80-0123,Scientist,14125.67,,10,10,22.88954781,8,"Auto Loan, Auto Loan, Payday Loan, Home Equity Loan, Not Specified, Credit-Builder Loan, Auto Loan, and Payday Loan",54.6672151,27.25155488,2.5,7,Bad,2667.923228,31.32016136,18 Years and 5 Months,Yes,1372.201483,,Low_spent_Small_value_payments,201.0094078,0,-1.2988,0.8249,0.9076,1.458,-0.4083 +0x23f29,CUS_0x7751,August,30,241-73-1041,Mechanic,113048.46,9612.705,5,3,9,2,"Personal Loan, and Mortgage Loan",6.311079482,6,11.75,6,Good,542.7433411,29.4741558,23 Years and 6 Months,No,126.318662,320.4125889,High_spent_Medium_value_payments,795.5740324,0,-0.1653,-1.8299,-1.8234,1.8554,-1.6197 +0x23f35,CUS_0x3e0b,August,27,949-90-0278,Writer,8627.12,,10,5,34,8,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Personal Loan, Student Loan, Debt Consolidation Loan, and Mortgage Loan",,21.73455742,4.98,16,Bad,5261.796815,27.76912433,11 Years and 4 Months,Yes,57.01333504,,Low_spent_Medium_value_payments,245.5710137,0,-1.3674,-1.2503,1.1252,0.5611,1.9341 +0x23f41,CUS_0x16a2,August,24,073-14-2342,Musician,119680.56,9906.38,8,4,17,4,"Mortgage Loan, Payday Loan, Student Loan, and Home Equity Loan",17.5190752,14,3.61,4,Standard,871.69,40.45281317,23 Years and 5 Months,NM,330.5792665,153.0066253,High_spent_Large_value_payments,747.0521083,0,-0.1795,0.7572,-0.0992,-0.8093,0.5286 +0x23f4d,CUS_0x67af,August,21,987-19-9666,Accountant,67287,,6,6,19,8,"Debt Consolidation Loan, Home Equity Loan, Student Loan, Debt Consolidation Loan, Mortgage Loan, Mortgage Loan, Credit-Builder Loan, and Personal Loan",23.44007308,,16.15,11,Bad,2963.164936,36.55799999,5 Years and 10 Months,Yes,335.1233724,112.3304548,High_spent_Small_value_payments,346.4711728,0,1.1925,1.6045,-0.1927,-1.3373,-0.5022 +0x23f59,CUS_0x8448,August,52,693-00-8476,Entrepreneur,57856.2,,8,7,17,3,"Personal Loan, Student Loan, and Not Specified",,22,1.02,4,_,853.8,26.29227439,30 Years and 9 Months,No,139.4706939,,High_spent_Medium_value_payments,428.2082218,0,-2.392,1.2918,-0.6555,0.0527,1.4859 +0x23f65,CUS_0x496a,August,25,726-77-5372,Engineer,18854.6,,8,9,27,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Not Specified, Student Loan, and Personal Loan",34.5614078,17,18.42,8,_,2088.1,25.56104815,16 Years and 5 Months,Yes,60.16086819,,Low_spent_Large_value_payments,261.2719833,0,-0.0582,1.1576,1.0346,0.2354,-0.5376 +0x23f71,CUS_0x40d4,August,28,286-96-2058,Mechanic,34428.72,,4,3,9,5,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, Not Specified, and Personal Loan",,20.21057684,12.48,12,Standard,519.9778857,31.61531486,8 Years and 2 Months,Yes,130.0187167,,Low_spent_Medium_value_payments,346.9242003,0,-1.5917,-0.9369,-1.1865,-0.1016,-0.3148 +0x23f7d,CUS_0x8fdd,August,44,303-19-1557,Media_Manager,74538.87,,8,5,12,0,,9.810646178,11,7.57,4,Standard,1433.43,27.28280142,22 Years and 3 Months,No,0,282.9649636,Low_spent_Medium_value_payments,625.0922864,0,1.0743,1.2835,-0.672,-1.3149,-0.7657 +0x23f89,CUS_0xa092,August,53,670-07-0614,Manager,108258.27,9260.5225,1,4,11,0,,,1,6.64,6,Good,488.9578142,44.52912061,,No,0,,High_spent_Large_value_payments,970.3496351,0,-0.8805,-0.024,-2.0954,2.0011,0.8331 +0x23f95,CUS_0xb55e,August,40,961-58-6114,Musician,38138.12,3409.176667,3,5,15.06745738,2,"Payday Loan, and Personal Loan",14.4978301,9,1.66,9,Standard,2288.270954,29.09678419,,Yes,57.0416796,196.3987282,High_spent_Small_value_payments,320.7569709,0,-1.6083,-0.0458,-0.6376,-1.1801,1.0855 +0x23fa1,CUS_0x958e,August,24,937-11-0997,_______,89269.8,7494.15,5,4,12,3,"Mortgage Loan, Payday Loan, and Student Loan",19.45866266,,10.35,2,Standard,398.825213,33.2918376,19 Years and 0 Months,Yes,209.732246,406.2651675,High_spent_Small_value_payments,432.5367242,0,0.9304,0.0578,-0.8978,0.1428,-0.0902 +0x23fad,CUS_0xbda,August,42,580-96-1926,Accountant,58644.12,5014.01,6,5,21,2,"Credit-Builder Loan, and Credit-Builder Loan",27.48600716,17.60636221,14.5,11,Bad,2456.011809,32.44374618,,Yes,60.87483092,79.05500172,High_spent_Large_value_payments,601.4711674,0,-0.4269,0.3133,-0.0512,0.9667,-0.4221 +0x23fb9,CUS_0x8844,August,35,022-30-0518,Mechanic,165396.2,13575.01667,5,4,6,3,"Student Loan, Credit-Builder Loan, and Payday Loan",,5,1.12,7,Good,980.1667295,43.32773258,30 Years and 10 Months,No,69853,270.9113132,!@9#%8,1092.068087,0,0.337,0.538,-1.0994,0.8743,-1.1659 +0x23fc5,CUS_0x1378,August,18,674-69-0430,Mechanic,18064.06,,6,5,224,6,"Auto Loan, Student Loan, Mortgage Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",16.06953406,12.08063764,19.9,6,_,2353.928356,29.33472423,8 Years and 4 Months,Yes,77.441739,144.5582196,!@9#%8,215.9338747,0,1.9333,-0.1172,-0.5391,-0.2007,0.6345 +0x23fd1,CUS_0x21df,August,34,106-67-3007,_______,76850.25,6174.1875,5,4,6,3,"Not Specified, Mortgage Loan, and Student Loan",12.21538867,10,0.88,3,Standard,1112.24,24.35872043,22 Years and 8 Months,Yes,139.614411,216.9258222,Low_spent_Large_value_payments,530.8785168,0,0.093,-0.0783,-0.9817,0.6938,0.2364 +0x23fdd,CUS_0x4de8,August,33,283-06-4422,Media_Manager,83034.44,7150.536667,4,4,16,2,"Debt Consolidation Loan, and Not Specified",19.44711909,16,17.27,,_,2225.89,23.39388026,8 Years and 4 Months,Yes,90.60863172,724.2577817,Low_spent_Small_value_payments,190.1872532,0,-0.4578,-0.0004,0.2247,1.655,0.3307 +0x23fe9,CUS_0x54b1,August,31,208-81-6608,Media_Manager,8393.545,,7,6,30,7,"Home Equity Loan, Credit-Builder Loan, Not Specified, Personal Loan, Mortgage Loan, Not Specified, and Personal Loan",36.92836401,22.06310865,16.57,15,_,4547.462342,23.5884073,7 Years and 11 Months,Yes,46.69104487,,Low_spent_Small_value_payments,265.2913214,0,-0.0321,0.6508,-0.6268,-1.0137,-0.0295 +0x23ff5,CUS_0x4acc,August,40,458-42-0425,Developer,35195.97,2937.9975,5,3,4,4,"Mortgage Loan, Auto Loan, Not Specified, and Home Equity Loan",,7,1.66,4,Good,759.8810437,29.56041306,28 Years and 9 Months,NM,93.19969211,,High_spent_Medium_value_payments,391.4485419,0,1.0064,-1.1056,0.1026,-0.9639,-0.0106 +0x24001,CUS_0x3295,August,31,052-66-2034,Writer,16381.95,,7,6,14,0,,18.03016332,,11.43,7,Standard,1288.457597,34.01475749,17 Years and 3 Months,Yes,199.0824167,109.792312,Low_spent_Small_value_payments,302.0765184,0,1.2473,-1.012,-0.1409,-0.7745,-0.1607 +0x2400d,CUS_0x7561,August,18,515-48-0926,Scientist,62476.05,5096.3375,9,158,26,4,"Not Specified, Auto Loan, Mortgage Loan, and Debt Consolidation Loan",,24,13.83,9,_,2560.25,32.50253225,15 Years and 4 Months,Yes,134.6057483,93.76765286,High_spent_Medium_value_payments,531.2603489,0,0.2845,-0.4814,0.0011,0.4407,-0.0885 +0x24019,CUS_0x84df,August,37,362-28-3210,Media_Manager,45595.08,3189.212103,10,11,28.95700519,6,"Credit-Builder Loan, Auto Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",43.16706793,23,26.28,8,Bad,2946.510954,33.23535855,14 Years and 5 Months,Yes,1815.44529,45.19778929,High_spent_Large_value_payments,367.0434488,0,0.7231,0.4766,-0.4069,-1.4003,0.5836 +0x24025,CUS_0x279c,August,19,030-99-3660,Media_Manager,86911.16,,7,3,8,1,Personal Loan,,19,15.42,12,Standard,151.9360985,30.12709186,15 Years and 9 Months,Yes,49.42789469,11443.0534,Low_spent_Large_value_payments,359.6997793,0,-0.8263,-3.5104,-1.0907,-0.8879,0.7295 +0x24031,CUS_0xb125,August,80,744-83-0776,Media_Manager,98175.72,7729.695181,5,6,12,2,"Mortgage Loan, and Payday Loan",,20,17.78,8,Standard,396.9630695,34.39970537,17 Years and 4 Months,Yes,828.6670381,616.7698462,High_spent_Small_value_payments,427.7035731,0,-0.2695,-0.5338,0.3382,0.3631,-0.393 +0x2403d,CUS_0x1ff7,August,48,324-29-5086,Developer,9824.31,,7,4,17,0,,22.00720221,17,0.96,5,_,1132.735953,25.81608056,19 Years and 2 Months,No,0,43.43135183,High_spent_Small_value_payments,292.4425243,0,-0.4332,-1.893,0.5767,0.8388,-1.0367 +0x24049,CUS_0x9bea,August,40,711-43-4714,Media_Manager,20663.81,,9,7,27.06745738,6,"Not Specified, Debt Consolidation Loan, Not Specified, Payday Loan, Mortgage Loan, and Home Equity Loan",37.00434277,18,22.73,,Bad,3738.860954,24.90475841,8 Years and 8 Months,Yes,98.94683662,,Low_spent_Small_value_payments,155.6055771,0,0.4937,0.5249,-0.986,-2.0969,-0.8638 +0x24055,CUS_0x949f,August,32,527-92-0764,Entrepreneur,36165.18,,10,7,22.06745738,5,"Auto Loan, Not Specified, Personal Loan, Credit-Builder Loan, and Not Specified",31.43840996,18.28503257,11.5,13,Bad,2866.688701,37.51991615,,Yes,100.9394399,381.5846382,!@9#%8,72.63213401,0,-0.2512,-0.6137,2.0643,-0.1756,0.5575 +0x24061,CUS_0x192f,August,24,952-38-9618,_______,69304.04,5695.336667,5,7,11,7,"Not Specified, Personal Loan, Not Specified, Home Equity Loan, Personal Loan, Payday Loan, and Credit-Builder Loan",15.55251629,9.757279247,7.76,5,Standard,2008.472843,30.55943472,16 Years and 0 Months,Yes,325.4218987,69.49446093,High_spent_Medium_value_payments,424.617307,0,0.5234,0.3138,-0.3331,0.8328,1.603 +0x2406d,CUS_0x18d8,August,37,584-59-3676,Accountant,15291.67,,4,5,20,1,Auto Loan,22.2455696,16.76088329,14.26,2,Standard,132.1779301,35.16034464,24 Years and 11 Months,Yes,7.334973367,34.2423473,High_spent_Medium_value_payments,319.3532627,0,-1.1136,-1.5691,-0.2787,0.149,0.3667 +0x24079,CUS_0xa362,August,18,#F%$D@*&8,Lawyer,123947.36,,8,5,17,6,"Not Specified, Mortgage Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Home Equity Loan",25.78556263,19,9.51,9,_,145.03,34.63917129,18 Years and 9 Months,Yes,611.2866937,236.5335263,High_spent_Large_value_payments,427.8744467,0,-1.918,-0.8064,-1.4432,-0.8599,0.0865 +0x24085,CUS_0x120c,August,18,212-98-0232,Scientist,29135.38,2138.948333,10,7,21,9,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Not Specified, Personal Loan, and Payday Loan",,30.40584349,8.04,7,Bad,1996.770978,24.80698052,9 Years and 5 Months,Yes,201.0022811,158.8379473,Low_spent_Small_value_payments,144.0546049,0,0.8036,-0.0016,-1.2782,-0.8536,0.4745 +0x24091,CUS_0xb220,August,22,677-44-3825,_______,35806.51,3079.875833,4,5,5,3,"Auto Loan, Payday Loan, and Not Specified",22.36894077,16.20440874,12.28,10,Standard,601.9012265,37.82034402,24 Years and 6 Months,Yes,55.66679032,,Low_spent_Large_value_payments,429.0287845,0,0.9547,1.166,-0.2401,-0.1635,0.5847 +0x2409d,CUS_0x5df,August,49,612-36-0562,Accountant,130079.79,,3,4,7.288361749,0,,0,3,9.05,3,Good,200.0317928,34.36939614,22 Years and 9 Months,NM,56641,720.5551484,High_spent_Large_value_payments,1083.439347,0,-1.831,-1.4892,-0.5565,-0.1071,2.0619 +0x240a9,CUS_0x87a8,August,27,352-09-5170,_______,41364.36,3662.03,1,7,10,3,"Not Specified, Personal Loan, and Debt Consolidation Loan",3.314009222,4.562601424,4.41,4,Good,145.4158849,36.16390592,22 Years and 6 Months,No,61.35231511,73.82531107,High_spent_Medium_value_payments,481.0253738,0,0.2646,-0.6413,-0.8637,1.0281,0.022 +0x240b5,CUS_0x22ee,August,23,431-79-5837,Teacher,59885.28,5057.44,8,3,21,4,"Payday Loan, Home Equity Loan, Payday Loan, and Credit-Builder Loan",,14.81723426,3.57,7,_,2382.534881,33.41482795,18 Years and 3 Months,Yes,118.4202066,103.7640753,High_spent_Large_value_payments,523.5597181,0,-0.3267,-0.1778,0.9739,-1.3121,-0.2229 +0x240c1,CUS_0xa693,August,56,223-85-2426,Media_Manager,13251.255,,4,391,13,1,Credit-Builder Loan,21.99340829,19,6.75,3,Standard,921.57,24.84087488,,No,5.748475834,,Low_spent_Small_value_payments,362.3015628,0,1.2028,-1.0275,1.0355,0.5312,-0.0487 +0x240cd,CUS_0x5fa9,August,43,057-30-7786,Architect,99925.17,,4,7,2,1,Home Equity Loan,11.32191587,8,4.13,7,Standard,1144.682424,42.41330008,23 Years and 3 Months,No,852.0745044,219.854929,High_spent_Large_value_payments,812.0346352,0,-0.9421,-0.8894,1.1621,-1.6822,-0.1949 +0x240d9,CUS_0x5682,August,18,832-80-0129,Entrepreneur,28102.06,2115.838333,10,9,31.95700519,6,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Not Specified, Home Equity Loan, and Home Equity Loan",,21,21.14,15,Bad,3463.960954,38.75871818,4 Years and 5 Months,Yes,1437.74799,244.2435834,Low_spent_Small_value_payments,98.54189082,0,-1.4688,0.7681,1.4916,0.0199,-1.6004 +0x240e5,CUS_0x4f00,August,27,239-64-7715,Developer,82616.56,7053.713333,6,7,5,4,"Credit-Builder Loan, Credit-Builder Loan, Personal Loan, and Debt Consolidation Loan",,18.60099878,4.39,1,Standard,1316.69586,39.96973954,26 Years and 11 Months,No,146.5905633,268.7326914,Low_spent_Large_value_payments,560.0480786,0,1.8109,-1.3998,0.2279,-0.15,-2.5108 +0x240f1,CUS_0x6ae6,August,26,181-66-7108,Lawyer,9045.485,,8,1180,21.06745738,6,"Not Specified, Student Loan, Auto Loan, Not Specified, Student Loan, and Auto Loan",35.18704208,17.97752237,19.16,11,Bad,2695.847706,30.3379117,18 Years and 10 Months,Yes,63.79541805,26.58441077,Low_spent_Small_value_payments,266.1044992,0,-1.2965,0.4703,-1.9027,-1.0187,-0.7929 +0x240fd,CUS_0x164f,August,31,810-03-9800,Architect,8845.965,846.16375,7,10,27.06745738,5,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",,,1.33,6,Bad,1855.132227,32.34788323,16 Years and 8 Months,Yes,33.94874367,29.72516352,Low_spent_Medium_value_payments,274.2221799,0,1.6639,0.9304,-0.7111,0.6707,1.0198 +0x24109,CUS_0x2d64,August,32,904-55-9140,Accountant,78637.18,6435.098333,3,4,0.288361749,2,"Not Specified, and Auto Loan",,2,8.08,6,_,953.94,36.61383352,19 Years and 3 Months,No,123.7613593,,High_spent_Small_value_payments,522.8053226,0,0.4994,2.6247,-0.5246,0.3416,0.7828 +0x24115,CUS_0x7893,August,51,854-64-8493,Doctor,97050.75,,3,4,10,4,"Mortgage Loan, Mortgage Loan, Payday Loan, and Debt Consolidation Loan",23.84913201,20,3.86,3,Standard,1361.61,28.90651057,28 Years and 2 Months,No,235.8110935,,!@9#%8,635.5793028,0,-0.5769,1.1002,0.3345,0.6389,-2.1917 +0x24121,CUS_0x4e55,August,52,653-19-8238,Writer,68629.6,5540.133333,6,5,14,1,Personal Loan,21.02920627,,4.5,0,Standard,1323.17,38.26594461,20 Years and 8 Months,NM,38.67903792,114.9324327,High_spent_Medium_value_payments,650.4018628,0,0.0722,-1.3607,0.3182,0.4549,-1.6608 +0x2412d,CUS_0x1806,August,56,167-18-8944,Manager,14675.03,,8,5,17.28836175,2,"Credit-Builder Loan, Mortgage Loan, and Credit-Builder Loan",,18,6.25,2,Standard,170.53,23.62348654,,Yes,30.80878648,490.8315908,Low_spent_Small_value_payments,284.6890004,0,0.9026,-1.0891,0.81,0.9697,-0.5226 +0x24139,CUS_0xbaf6,August,37,325-72-9121,_______,26309.54,,8,4,19,1,Debt Consolidation Loan,18.01699836,12,1.32,7,Standard,1178.24,34.81516656,28 Years and 8 Months,No,14.97824091,10000,High_spent_Medium_value_payments,408.1856532,0,-0.5948,2.4925,0.5087,-0.8327,1.1941 +0x24145,CUS_0x978,August,49,396-28-6552,Musician,42411.79,3043.52775,0,2,11,2,"Home Equity Loan, and Home Equity Loan",15.58008893,,6.96,8,Good,640.8878447,36.9481448,,No,445.5680097,242.0301361,High_spent_Small_value_payments,352.1852032,0,0.4366,-1.0181,-1.9905,-0.9345,-0.7876 +0x24151,CUS_0x3801,August,42,980-44-1731,Entrepreneur,85688.49,7208.7075,8,3,19,7,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Credit-Builder Loan, Personal Loan, Payday Loan, and Personal Loan",,20,12.71,8,Standard,0.34,27.37591329,16 Years and 3 Months,Yes,461.1396231,,Low_spent_Large_value_payments,74.48164857,0,-1.2008,-0.6224,-0.7515,-0.1986,0.1701 +0x2415d,CUS_0x49b0,August,24,812-97-0609,Mechanic,20858.03,,10,7,32,2,"Mortgage Loan, and Debt Consolidation Loan",,29.68421259,3.25,13,Bad,2367.877877,22.86905214,12 Years and 3 Months,Yes,30.79305494,70.98517313,Low_spent_Small_value_payments,341.0386886,0,-0.5147,-0.436,2.1833,2.3642,0.4315 +0x24169,CUS_0x6e26,August,28,227-85-1429,Accountant,99980.36,8032.696667,7,4,6,1,Student Loan,9.883757461,8,7.75,5,Standard,576.6096128,32.40408175,,No,62.13255699,388.8863833,High_spent_Medium_value_payments,649.6371038,0,-0.5757,1.2727,-1.5461,0.3413,0.6866 +0x24175,CUS_0x4312,August,52,446-88-8137,Scientist,49715.1,4084.925,7,3,1,4,"Home Equity Loan, Auto Loan, Not Specified, and Not Specified",25.73875612,19,5.28,7,_,1211.28,39.56691924,32 Years and 11 Months,No,122.7703515,10000,High_spent_Medium_value_payments,427.0658744,0,-0.5958,-0.7707,0.1841,-0.5856,0.2434 +0x24181,CUS_0x2243,August,26,566-70-7188,Scientist,15279.715,879.6736053,3,7,15,4,"Personal Loan, Mortgage Loan, Payday Loan, and Credit-Builder Loan",13.80934535,10,3.01,6,_,562.9,23.28629719,20 Years and 3 Months,NM,187.3964547,79.7490362,Low_spent_Medium_value_payments,251.1214454,0,0.6539,-0.6593,-0.0718,-0.712,-1.246 +0x2418d,CUS_0x8110,August,80,967-93-3033,_______,92942.4,7474.2,5,4,7,6,"Student Loan, Not Specified, Student Loan, Mortgage Loan, Personal Loan, and Personal Loan",9.414670506,8,9.85,6,Standard,147.78,24.62491268,17 Years and 11 Months,Yes,346.1036175,949.9320545,!@9#%8,,0,0.1289,0.4349,1.2974,0.2863,0.359 +0x24199,CUS_0x14f6,August,80,095-65-3687,Doctor,24466.5,2325.875,4,7,6,3,"Mortgage Loan, Payday Loan, and Not Specified",26.43934945,19,7.41,4,_,789.7310161,39.02210561,31 Years and 0 Months,Yes,41.12909336,57.33201303,High_spent_Small_value_payments,399.5602322,0,0.6123,0.1882,0.0495,1.107,0.0757 +0x241a5,CUS_0xa1b,August,54,120-09-6584,Media_Manager,33991.62,,3,6,6,4,"Auto Loan, Auto Loan, Home Equity Loan, and Debt Consolidation Loan",0,3,9.48,0,Good,1326.98,26.67091464,27 Years and 8 Months,No,57.74861487,,Low_spent_Small_value_payments,135.4531578,0,-0.4012,-0.5261,-0.7299,1.4214,0.6795 +0x241b1,CUS_0x383d,August,58,245-61-6021,Scientist,68845.36,5478.113333,4,5,11,2,"Credit-Builder Loan, and Mortgage Loan",,9,7.55,,Good,418.5219209,32.68876848,20 Years and 9 Months,No,99.90013813,486.4327671,Low_spent_Large_value_payments,276.5729105,0,1.7215,-0.0213,0.8251,-1.3723,1.1761 +0x241bd,CUS_0x7a01,August,24,323-84-9870,Media_Manager,17030.26,,5,7,8,3,"Home Equity Loan, Payday Loan, and Home Equity Loan",23.32017805,19,16.21,8,_,263.0335637,25.03233537,28 Years and 10 Months,Yes,23.87142834,48.06434563,!@9#%8,336.9400296,0,0.0678,-1.0613,-0.3426,-1.3665,0.1758 +0x241c9,CUS_0x347d,August,18,758-46-4782,Entrepreneur,30305.19,2292.4325,8,4,16,100,"Personal Loan, Auto Loan, Student Loan, Auto Loan, Student Loan, and Auto Loan",18.34605908,,12.17,7,Standard,258.04,32.61093395,14 Years and 0 Months,Yes,119.3356436,62.46489864,High_spent_Medium_value_payments,297.4427078,0,-0.3662,-1.7482,-0.491,-1.1068,-0.0033 +0x241d5,CUS_0x5e18,August,50,287-80-7372,_______,177723.8,13711.56482,3,4,1,3,"Mortgage Loan, Student Loan, and Student Loan",,13,11.6,6,_,1292.23,35.49679213,30 Years and 6 Months,No,1665.541798,,Low_spent_Medium_value_payments,515.5017429,0,0.8534,0.3182,0.1298,2.0419,-1.1162 +0x241e1,CUS_0x3b04,August,33,812-97-4156,Mechanic,10424.525,,8,3,18,4,"Payday Loan, Auto Loan, Personal Loan, and Payday Loan",15.85120686,12,17.02,7,Standard,164.79,31.10912345,30 Years and 2 Months,Yes,26.82878832,12.11356505,High_spent_Small_value_payments,287.8286883,0,0.5429,0.6957,0.8834,0.4511,0.2059 +0x241ed,CUS_0x2a2e,August,26,739-38-0026,Entrepreneur,81435,6667.25,10,7,32,2,"Mortgage Loan, and Personal Loan",,20.34799054,19.21,11,Standard,2006.7476,28.93725682,20 Years and 3 Months,Yes,100.9399784,64.19876649,High_spent_Large_value_payments,741.5862551,0,1.3388,0.573,-1.5451,0.0253,1.8968 +0x241f9,CUS_0x7916,August,25,614-99-4488,Teacher,17628,,7,4,18,6,"Mortgage Loan, Personal Loan, Mortgage Loan, Not Specified, Student Loan, and Home Equity Loan",20.39063304,17,18.2,11,Standard,1443.38,23.325162,18 Years and 0 Months,Yes,79.65160693,87.14590674,Low_spent_Medium_value_payments,275.7024863,0,-0.6594,0.1742,0.3367,-1.0411,0.0628 +0x24205,CUS_0xb918,August,26,088-43-6390,Lawyer,15333.36,,10,6,28,5,"Mortgage Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Not Specified",30.06103932,21.5866753,13.99,13,Bad,2549.310642,33.2668094,18 Years and 6 Months,Yes,38.4072425,94.94495904,!@9#%8,256.6257985,0,1.0315,0.4541,1.2529,0.2365,-0.1917 +0x24211,CUS_0x6308,August,43,254-43-4736,Scientist,130433.68,10597.47333,1,1,9.288361749,0,,,10,11.35,2,Good,825.55,21.43415225,26 Years and 11 Months,NM,0,1501.813324,Low_spent_Small_value_payments,267.8714706,0,-0.1983,-0.1463,0.5761,-0.7371,1.3581 +0x2421d,CUS_0xad50,August,29,008-77-8246,Media_Manager,20340.29,,161,7,34.06745738,3,"Credit-Builder Loan, Home Equity Loan, and Not Specified",25.2021837,16.59812528,14.83,14,_,1669.193577,36.64667165,19 Years and 10 Months,Yes,45.26075607,52.68295772,High_spent_Medium_value_payments,302.4384149,0,-0.214,-0.1563,0.2597,0.6983,-0.5075 +0x24229,CUS_0x6fd3,August,27,173-35-0539,Mechanic,20987.56,,10,7,34,7,"Not Specified, Student Loan, Debt Consolidation Loan, Not Specified, Mortgage Loan, Auto Loan, and Student Loan",43.36534053,25.91628049,4.07,9,Bad,2849.036328,31.50237567,16 Years and 9 Months,Yes,104.6020947,,Low_spent_Small_value_payments,181.5868844,0,0.1856,-0.6285,1.1648,1.1937,-1.4482 +0x24235,CUS_0x1051,August,42,232-33-7638,Engineer,35022.22,,3,5,4,1,Student Loan,8.717205965,11,,,Good,904.1171737,25.39023215,28 Years and 6 Months,No,21.21457645,292.9047837,Low_spent_Small_value_payments,295.3921434,0,-0.4478,1.7021,0.3956,0.9535,0.6163 +0x24241,CUS_0x756f,August,49,857-91-7840,_______,17393.305,1158.442083,4,7,9,3,"Not Specified, Credit-Builder Loan, and Not Specified",,14,,2,Good,326.9327085,28.68518152,33 Years and 3 Months,NM,28.17175357,33.28363702,Low_spent_Large_value_payments,327.8520031,0,0.654,-1.8231,0.9362,0.5282,1.194 +0x2424d,CUS_0x49a1,August,27,052-33-2826,Architect,31272.27,2346.0225,0,6,5.288361749,2,"Student Loan, Not Specified, and Student Loan",0,3,11.85,2,Good,9.803572618,26.17567987,16 Years and 4 Months,NM,49.99591871,602.7159711,Low_spent_Large_value_payments,294.4143358,0,-0.4356,0.5298,-0.3022,0.4886,0.1933 +0x24259,CUS_0xa2f0,August,24,010-29-6264,_______,22428.96,2065.08,7,3,16,1,Not Specified,,14,1.29,0,Standard,1198.505503,34.72230661,24 Years and 2 Months,NM,15.32906469,234.1064759,Low_spent_Small_value_payments,277.5787527,0,-1.0627,-0.1502,-0.9665,-0.081,-0.5584 +0x24265,CUS_0xb1d5,August,37,574-08-1112,Developer,70144.54,5665.378333,3,3,14,3,"Student Loan, Mortgage Loan, and Auto Loan",21.63734179,,11.95,5,_,904.7675233,36.04908821,,Yes,156.9923877,293.1772239,Low_spent_Small_value_payments,406.3682218,0,-1.0772,1.2567,0.6966,-0.0312,0.0582 +0x24271,CUS_0x18ef,August,21,136-44-5764,Entrepreneur,175127.04,14635.92,4,6,12,100,"Debt Consolidation Loan, Mortgage Loan, Home Equity Loan, and Mortgage Loan",9.812599974,8,5.95,3,_,518.55,30.84856358,30 Years and 5 Months,No,421.3377742,1887.535211,!@9#%8,,0,-0.4968,1.43,-0.3147,1.3949,-0.4582 +0x2427d,CUS_0xa005,August,41,335-28-9081,Doctor,19627.14,,4,7,3129,7,"Home Equity Loan, Payday Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",29.41268607,19,7.83,8,Standard,402.54,29.62490242,13 Years and 3 Months,Yes,87.23339877,242.7627519,Low_spent_Small_value_payments,147.1633494,0,0.1839,-0.7219,-0.8484,1.1431,-0.5842 +0x24289,CUS_0x60ae,August,30,628-84-2005,Developer,41319.07,3045.882754,4,4,10.28836175,0,Credit-Builder Loan,,,5.43,9,Good,486.4398859,33.61223243,25 Years and 9 Months,No,475.6558916,688.2359925,High_spent_Small_value_payments,334.9300393,0,-0.7792,-1.4394,0.2854,-0.6365,1.6554 +0x24295,CUS_0xbd4,August,46,583-65-5183,Architect,106614.18,9150.515,3,6,6,2,"Debt Consolidation Loan, and Mortgage Loan",,1,-3.11,6,Good,40.71,29.99060772,,No,105.1786513,446.2352804,High_spent_Small_value_payments,623.6375684,0,-1.2617,-0.1092,0.9789,0.9035,0.5007 +0x242a1,CUS_0x7e28,August,35,192-58-9476,Media_Manager,19593.13,,7,6,16,0,,,11,18.2,4,Standard,624.41,33.42081759,26 Years and 10 Months,Yes,0,114.2374324,Low_spent_Small_value_payments,345.9386509,0,-0.1492,1.9,0.7553,-1.4095,0.199 +0x242ad,CUS_0x721f,August,48,125-06-4157,Accountant,28947.84,,0,5,4,100,Not Specified,1.820134098,3.392771555,3.14,,Good,1004.943937,25.58669501,21 Years and 4 Months,No,23.70150487,101.386685,Low_spent_Small_value_payments,398.6438101,0,0.6619,0.6506,0.5709,-0.492,-0.193 +0x242b9,CUS_0x62d1,August,27,750-48-7560,Architect,39292.44,3340.37,2,4,7,4,"Not Specified, Student Loan, Mortgage Loan, and Student Loan",1.677031284,6,6.59,3,_,1189.113482,28.14676301,31 Years and 9 Months,No,90.86176298,210.4280813,!@9#%8,343.4466223,0,-1.5803,-0.0863,-2.4048,0.5434,-0.392 +0x242c5,CUS_0xbe65,August,23,753-55-9124,Entrepreneur,16156.815,,4,6,9.067457376,1,Debt Consolidation Loan,,11,5.52,4,Good,1095.583634,41.00186706,19 Years and 8 Months,No,11.07760243,83.04130285,High_spent_Small_value_payments,271.2005102,0,-0.5639,1.0973,-0.3315,0.8841,-0.2374 +0x242d1,CUS_0x574d,August,18,136-77-5117,Scientist,30410.33,2550.194167,8,3,5,2,"Not Specified, and Not Specified",,20,14.5,11,Standard,808.55,28.70711625,11 Years and 10 Months,Yes,46.08981912,,!@9#%8,384.5907297,0,-1.8971,-1.4808,1.1878,-0.9852,0.3287 +0x242dd,CUS_0xb6e0,August,24,318-50-9417,Manager,157794.6,,3,3,10.28836175,2,"Home Equity Loan, and Payday Loan",10.01586958,10,7.98,1,Good,1065.007872,30.77318342,27 Years and 5 Months,NM,261.873309,608.4438954,High_spent_Large_value_payments,1129.983856,0,0.3136,-0.41,-0.6277,-0.6135,0.6223 +0x242e9,CUS_0x22c1,August,34,745-16-2326,Media_Manager,108115.05,9022.5875,6,5,18,3,"Debt Consolidation Loan, Auto Loan, and Debt Consolidation Loan",22.15928525,15,1.27,1,Standard,1149.16,27.81369198,25 Years and 9 Months,NM,206.5762706,492.6094418,Low_spent_Large_value_payments,473.0730376,0,1.4502,1.3063,0.2885,-1.0237,0.9944 +0x242f5,CUS_0xc5e8,August,19,#F%$D@*&8,Architect,55596.12,4463.01,10,6,16.06745738,5,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Mortgage Loan, and Personal Loan",39.1630788,24.89250972,2.45,10,_,5178.698889,24.49599382,4 Years and 11 Months,Yes,202.3929121,90.34451088,!@9#%8,366.8432891,0,0.3145,-0.3563,0.8347,1.3133,-1.2153 +0x24301,CUS_0x7c00,August,41,505-02-8809,Lawyer,16837.43,,3,4,13,2,"Personal Loan, and Credit-Builder Loan",,20,11.59,7,Standard,1347.95,38.40530401,,No,17.0701897,64.25068563,High_spent_Medium_value_payments,336.8910413,0,0.8546,1.5001,-0.6948,-1.3585,-0.2715 +0x2430d,CUS_0x746c,August,49,877-23-7187,_______,23412.9,1981.075,64,6,4,1,Mortgage Loan,29.89448487,21.61355268,0.86,4,Standard,535.658546,31.8837672,27 Years and 3 Months,No,12.70924237,238.0021143,Low_spent_Small_value_payments,237.3961433,0,-0.2763,0.7569,1.5188,-1.8686,-0.2099 +0x24319,CUS_0x4e7d,August,34,452-35-7319,_______,17039.16,1196.93,3,4,11.06745738,7,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Not Specified, Auto Loan, Credit-Builder Loan, and Debt Consolidation Loan",16.09737231,10,,8,Standard,1279.600954,36.50368645,11 Years and 11 Months,Yes,87.42717222,117.3856796,Low_spent_Small_value_payments,178.1598603,0,1.6868,-0.6333,0.8002,-0.3582,1.0163 +0x24325,CUS_0xa6b8,August,38,459-01-7563,Manager,62629.98,5028.165,8,7,32,8,"Not Specified, Payday Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, and Personal Loan",25.44534028,19,24.17,10,Bad,2606.87,30.25842285,10 Years and 10 Months,Yes,374.8141589,39.05970669,High_spent_Large_value_payments,328.9426344,0,-0.0951,0.8258,-0.6683,0.2764,-1.3427 +0x24331,CUS_0xb639,August,29,346-14-3267,Developer,25780.78,2188.398333,7,6,5,2,"Mortgage Loan, and Credit-Builder Loan",,7.08694385,6.32,3,Standard,108.2402177,31.45771548,18 Years and 6 Months,No,40.82459717,48.65127103,High_spent_Large_value_payments,369.3639651,0,0.6,-0.8175,0.0294,-0.7833,-2.4856 +0x2433d,CUS_0x205a,August,20,344-24-4622,Lawyer,59908.77,5251.3975,3,3,29,5,"Personal Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Auto Loan",,13,8.99,9,_,1323.98,38.39361593,9 Years and 8 Months,Yes,173.3244055,118.8663754,High_spent_Medium_value_payments,482.9489691,0,1.1502,-0.8794,0.3523,1.4974,-0.4415 +0x24349,CUS_0xa282,August,18,#F%$D@*&8,Journalist,20357.69,,6,9,22,5,"Payday Loan, Mortgage Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",33.22015478,25,7.61,14,Bad,3718.95,37.54405861,11 Years and 2 Months,Yes,57.78650537,70.34371028,High_spent_Medium_value_payments,302.017201,0,-1.3363,1.1424,-1.4087,-0.2956,-0.8256 +0x24355,CUS_0xae03,August,19,362-86-0248,Mechanic,124692.08,10650.00667,1,4,1,2,"Credit-Builder Loan, and Home Equity Loan",8.347204092,9,,7,Good,756.91,31.93416182,33 Years and 2 Months,No,136.6047197,277.8312373,High_spent_Medium_value_payments,900.5647096,0,-0.9024,1.8776,0.9149,-0.2937,0.0792 +0x24361,CUS_0x4b2e,August,31,542-85-7041,Musician,38323.07,3342.589167,5,4,4,1,Student Loan,9.018682413,11,10.75,1,Good,1487.87,34.69464835,21 Years and 5 Months,No,27.83967537,131.3740896,High_spent_Medium_value_payments,425.0451517,0,-0.967,0.3884,0.5214,1.7792,0.3061 +0x2436d,CUS_0x12a7,August,37,145-72-2113,Media_Manager,26450.59,,5,6,20,4,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",24.47028227,18,11.8,1,Standard,952.9,26.39980235,28 Years and 8 Months,No,73.67019025,19.55247096,High_spent_Large_value_payments,354.6989221,0,-1.1864,0.8023,0.504,-0.131,0.8502 +0x24379,CUS_0x9805,August,37,699-98-6012,Writer,57913.84,,10,10,28.95700519,6,"Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Debt Consolidation Loan, and Home Equity Loan",39.48395957,27.2799762,21.77,9,_,4871.894196,31.8457487,9 Years and 4 Months,Yes,1595.923401,86.76083844,High_spent_Large_value_payments,337.6807248,0,1.5844,0.374,0.1234,-0.1915,-1.4698 +0x24385,CUS_0xa5f,August,39,856-19-9315,Musician,17309.885,,6,4,19,0,,20.61613983,16,,2,Standard,1348.98,32.66739976,27 Years and 0 Months,Yes,0,38.71659854,High_spent_Medium_value_payments,372.9324431,0,1.3762,2.6693,1.0416,-0.0893,-0.9605 +0x24391,CUS_0x1c0c,August,51,781-56-5753,Developer,114148.24,,6,4,4.288361749,0,Auto Loan,21.87114665,19,13.15,0,_,1432.74,32.75463115,33 Years and 2 Months,Yes,36416,533.9092792,High_spent_Large_value_payments,989.6056151,0,0.4309,0.1582,1.7969,-2.9348,1.1454 +0x2439d,CUS_0x98e7,August,48,#F%$D@*&8,Entrepreneur,42989.27,3730.439167,2,458,4,4,"Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, and Payday Loan",18.80285241,11.97974015,4.73,4,Good,1538.666024,29.5666201,22 Years and 5 Months,NM,73.55924629,283.9896372,Low_spent_Medium_value_payments,295.4950332,0,-1.5625,-0.0852,0.4226,1.47,-0.2436 +0x243a9,CUS_0x7d06,August,23,909-72-9200,Developer,78038.8,6522.233333,6,10,31,9,"Student Loan, Auto Loan, Payday Loan, Not Specified, Mortgage Loan, Auto Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",,27.43079563,1.63,7,_,2060.892371,36.804963,20 Years and 2 Months,Yes,364.6706615,362.4788899,Low_spent_Medium_value_payments,205.0737819,0,0.0433,0.3646,0.3497,0.7153,-0.8824 +0x243b5,CUS_0x150b,August,21,459-49-6464,Entrepreneur,17009.84,1469.486667,7,8,16.06745738,3,"Auto Loan, Auto Loan, and Not Specified",25.31915546,16,19.22,6,Standard,2811.210954,37.39790336,12 Years and 10 Months,Yes,75581,,Low_spent_Small_value_payments,236.4933456,0,1.6839,-0.74,0.3016,-0.7047,0.5526 +0x243c1,CUS_0x3361,August,80,028-38-5655,Accountant,36722.38,,7,6,19.28836175,0,,15.53035325,,7.21,1,Standard,366.9,34.36718802,15 Years and 10 Months,Yes,0,,Low_spent_Small_value_payments,226.1993907,0,-0.9645,0.4943,1.012,1.0546,0.5915 +0x243cd,CUS_0xb3fe,August,24,866-05-1130,Teacher,73716.2,,7,3,16,5,"Auto Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, and Not Specified",10.34802338,9.255254245,11.87,10,Standard,2781.196916,37.30131704,15 Years and 6 Months,Yes,250.7158706,,High_spent_Large_value_payments,469.3873401,0,0.1354,-1.3598,1.0067,-0.1828,0.8802 +0x243d9,CUS_0xbc9c,August,52,965-74-1495,Doctor,67321.16,5067.657887,3,4,5,3,"Debt Consolidation Loan, Personal Loan, and Student Loan",15.75501729,10,5.45,4,_,210.5980429,26.66813683,13 Years and 5 Months,Yes,45616,135.4961243,High_spent_Medium_value_payments,617.9936986,0,0.3694,-0.3232,0.4529,-0.3851,0.4015 +0x243e5,CUS_0x40d9,August,32,460-53-3049,Journalist,10454.79,,5,6,15,4,"Credit-Builder Loan, Auto Loan, Auto Loan, and Home Equity Loan",24.17977687,19,16.56,13,Standard,773.4,31.22882912,,Yes,34.78843979,,Low_spent_Small_value_payments,256.6092465,0,-0.0562,1.1988,-0.8546,1.2338,1.7846 +0x243f1,CUS_0x1013,August,44,930-49-9615,Mechanic,98620.98,,3,3,6,3,"Student Loan, Debt Consolidation Loan, and Personal Loan",18.48934144,,1.33,3,Good,1233.51,26.52486358,17 Years and 10 Months,No,228.0180837,332.333708,High_spent_Medium_value_payments,485.8897084,0,-1.7871,0.7502,-0.0562,-0.3556,-0.6441 +0x243fd,CUS_0x96cd,August,25,862-93-5222,Lawyer,15335.77,,8,8,31,2,"Auto Loan, and Mortgage Loan",,21.73366353,17,10,Bad,2185.42176,33.13576635,12 Years and 0 Months,Yes,15.09901539,118.0209679,Low_spent_Small_value_payments,298.8781,0,0.0516,-0.6562,-0.4353,1.3788,-0.908 +0x24409,CUS_0x86fb,August,27,467-36-0457,Scientist,48725.58,3845.465,10,10,16.88954781,6,"Auto Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Home Equity Loan",18.60749628,,7.09,14,Standard,2208.821249,28.94306365,15 Years and 11 Months,Yes,1541.965095,76.71858679,!@9#%8,311.5327371,0,0.297,-1.5441,-2.4522,-0.1741,0.2626 +0x24415,CUS_0x81f0,August,26,842-74-0273,Accountant,77233.44,,9,9,17,5,"Mortgage Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Payday Loan",54.61649971,30.78643571,8.23,10,Bad,2441.079693,26.26820754,12 Years and 6 Months,Yes,245.176913,367.7917007,Low_spent_Large_value_payments,309.8433862,0,0.0791,0.4722,-0.1608,-1.4966,0.3067 +0x24421,CUS_0x4c49,August,33,588-33-1403,Manager,17243.24,,8,10,20.88954781,7,"Mortgage Loan, Personal Loan, Student Loan, Mortgage Loan, Auto Loan, Not Specified, and Not Specified",30.88744793,22,23.21,8,Bad,2657.29,28.46219506,3 Years and 4 Months,Yes,1405.931402,95.30206142,Low_spent_Small_value_payments,256.4301217,0,1.5699,-0.143,1.2431,-0.0628,0.607 +0x2442d,CUS_0x223c,August,26,698-89-5488,Writer,142025.56,12010.46333,0,3,6,2,"Auto Loan, and Home Equity Loan",18.54924559,11.99609563,11.56,2,Good,363.9431267,35.84196659,31 Years and 11 Months,No,202.5577839,564.2511185,Low_spent_Medium_value_payments,714.2374309,0,1.4231,-1.0223,0.561,0.5534,-1.7484 +0x24439,CUS_0x30e8,August,19,978-24-2354,Engineer,18967.13,,6,7,26.06745738,9,"Mortgage Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Credit-Builder Loan",32.84844314,15,9.8,11,Bad,3436.500954,34.69155895,0 Years and 9 Months,Yes,74.22059719,40.60888568,High_spent_Large_value_payments,271.4096458,0,-0.498,-0.4074,1.7676,-1.016,-0.4863 +0x24445,CUS_0x178d,August,50,646-17-2843,Scientist,34974.41,2998.534167,6,4,18,0,,11.81751495,9,8.14,1,Standard,460.4226011,24.67454638,32 Years and 0 Months,NM,0,,High_spent_Small_value_payments,369.3919576,0,-0.3807,-1.8176,0.6861,-0.3141,0.3714 +0x24451,CUS_0x92cf,August,31,358-73-5026,Media_Manager,14656.14,,6,8,17.06745738,100,"Payday Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Credit-Builder Loan, and Personal Loan",32.93186233,18,26,12,Bad,3235.477112,36.477427,10 Years and 10 Months,Yes,68.90968805,,High_spent_Small_value_payments,245.9100351,0,-0.6155,0.9891,1.2354,1.1439,0.2146 +0x2445d,CUS_0xc19f,August,42,052-17-3249,Manager,31239.32,,9,6,27.06745738,6,"Mortgage Loan, Mortgage Loan, Student Loan, Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",41.54165685,22,28.23,10,Bad,2809.370954,38.52342845,11 Years and 3 Months,Yes,141.0996271,148.4543444,Low_spent_Small_value_payments,225.0534073,0,1.6091,-1.2307,0.7494,-0.9268,-1.0451 +0x24469,CUS_0x32ed,August,58,110-76-4956,Mechanic,70737.78,,8,7,7.288361749,4,"Student Loan, Payday Loan, Home Equity Loan, and Not Specified",18.80813535,16,7.28,4,Standard,694.9062479,37.09388359,24 Years and 10 Months,No,539.7588011,463.8868182,High_spent_Large_value_payments,586.0906465,0,0.4779,0.8063,1.1697,-0.6784,-0.1087 +0x24475,CUS_0x4103,August,29,160-22-0061,Musician,18771.34,,5,1067,12,4,"Personal Loan, Credit-Builder Loan, Debt Consolidation Loan, and Student Loan",,,12.9,8,Standard,89.53,30.02024062,18 Years and 11 Months,Yes,57.58785566,,High_spent_Small_value_payments,262.357183,0,1.2865,-0.889,0.6158,-0.6221,-1.8865 +0x24481,CUS_0x7e24,August,80,298-06-5346,Media_Manager,49854.92,,8,3,17,3,"Debt Consolidation Loan, Home Equity Loan, and Auto Loan",22.27250917,18,8.07,5,Standard,1044.78,38.2138271,18 Years and 2 Months,Yes,62.83164835,61.56006579,!@9#%8,547.2659525,0,1.5583,-0.4564,0.591,0.4374,-0.4711 +0x2448d,CUS_0x639,August,52,439-54-7865,Architect,109322.7,9248.225,5,3,0.288361749,0,Debt Consolidation Loan,,9,11.9,7,Good,345.8480434,24.83191813,,No,58.17062111,1127.313659,Low_spent_Large_value_payments,499.0034431,0,-0.0197,-0.0476,-0.2039,-0.1724,1.8 +0x24499,CUS_0xb49,August,35,659-50-4581,Journalist,43849.26,,3,1,0.288361749,2,"Credit-Builder Loan, and Debt Consolidation Loan",9.198920324,9,2.47,4,Good,462.8314836,33.27913245,,No,65.00920084,562.8994561,High_spent_Medium_value_payments,433.6894721,0,-0.9147,2.8887,-0.683,-1.8536,0.1883 +0x244a5,CUS_0x8cce,August,36,085-98-2156,Teacher,29969.66,2418.471667,8,6,18,1,Auto Loan,26.03088714,18,18.97,8,Standard,157.07,28.00015597,,Yes,14.38046175,,Low_spent_Large_value_payments,356.9740357,0,0.4634,-0.7372,-0.159,-1.4737,2.0302 +0x244b1,CUS_0x4e9c,August,29,049-89-7426,Musician,23550.47,1922.539167,4,6,15,4,"Payday Loan, Student Loan, Personal Loan, and Payday Loan",18.52596827,15,10.1,8,Standard,937.64,31.12799558,21 Years and 9 Months,Yes,63.24291431,102.4065299,Low_spent_Large_value_payments,296.6044724,0,-1.7316,-0.3346,0.1211,-0.0471,0.5333 +0x244bd,CUS_0x1ad3,August,35,056-35-3142,Scientist,14231.96,1200.23005,8,5,19.06745738,5,"Home Equity Loan, Personal Loan, Home Equity Loan, Auto Loan, and Not Specified",38.44147536,25,10.47,10,Bad,2688.800954,29.3390863,10 Years and 10 Months,Yes,167.5333532,12.81241609,High_spent_Large_value_payments,279.2002265,0,1.7163,-1.3245,-1.8213,0.2164,0.2443 +0x244c9,CUS_0x3d73,August,25,742-78-8539,Developer,33718.73,2955.894167,7,6,6,1,Payday Loan,,14,8.28,3,Standard,1074.66,27.75667048,18 Years and 4 Months,NM,21.66210627,77.12996137,High_spent_Medium_value_payments,446.797349,0,-1.1647,-0.833,-0.599,-1.8231,1.0276 +0x244d5,CUS_0x55e6,August,52,674-87-7848,Doctor,24251.49,1991.9575,8,4,14,1,Student Loan,22.57209539,16,10.53,2,_,1062.17,39.36017738,30 Years and 5 Months,Yes,18.83555049,,High_spent_Medium_value_payments,381.9693534,0,1.0743,1.0742,-2.0834,-0.428,0.3098 +0x244e1,CUS_0x8e01,August,22,759-73-9798,Engineer,70160.18,6100.681667,7,6,11,2,"Home Equity Loan, and Auto Loan",18.12712991,12,16.11,8,Standard,1154.39,28.43535721,,Yes,82.4942072,199.3836066,High_spent_Medium_value_payments,578.1903528,0,1.791,-1.363,1.6843,0.9148,0.2321 +0x244ed,CUS_0x2746,August,20,928-40-6983,Manager,16105.7,,6,3,14,3,"Credit-Builder Loan, Credit-Builder Loan, and Auto Loan",20.72002238,17,19.95,9,Standard,640.77,27.43272391,,NM,24.6283007,104.4402996,Low_spent_Medium_value_payments,272.6455664,0,1.7188,-1.0697,-0.2796,-0.1639,-0.2154 +0x244f9,CUS_0xaeb2,August,25,#F%$D@*&8,_______,68267.04,5531.094715,7,7,32,2,"Auto Loan, and Not Specified",,18.03622692,16,12,Standard,2631.210256,37.74957665,11 Years and 3 Months,Yes,316.7432762,221.9716927,High_spent_Small_value_payments,536.0023157,0,0.6065,-0.11,-0.9624,0.4706,-0.753 +0x24505,CUS_0x3de0,August,31,714-62-7054,Entrepreneur,33604.58,2987.381667,3,6,12,3,"Credit-Builder Loan, Not Specified, and Mortgage Loan",5.917953279,8,3.6,0,Good,452.8715029,31.97708824,22 Years and 10 Months,No,79.04757846,152.816633,High_spent_Small_value_payments,343.2283124,0,0.5175,-2.3015,-0.0972,-0.2326,0.7371 +0x24511,CUS_0x827f,August,20,917-01-2750,Doctor,32971.85,,3,6,9,2,"Credit-Builder Loan, and Not Specified",,16,6.55,4,Standard,1154.35347,35.35739294,22 Years and 8 Months,NM,329.8368796,249.6799124,Low_spent_Small_value_payments,331.3034113,0,1.5471,0.9449,-0.1922,0.5158,-1.2078 +0x2451d,CUS_0xb432,August,28,760-89-8189,Manager,44890.9,3715.908333,3,7,6,4,"Mortgage Loan, Home Equity Loan, Payday Loan, and Mortgage Loan",14.66623031,,5.45,0,Good,1239.213146,33.81023105,19 Years and 6 Months,NM,83.72378732,114.716989,High_spent_Medium_value_payments,438.9315137,0,-0.0304,0.3385,0.1222,-0.22,-0.2941 +0x24529,CUS_0x7b64,August,38,883-05-9278,Musician,58137.44,4578.786667,10,8,26,3,"Payday Loan, Debt Consolidation Loan, and Payday Loan",,25.40766949,17.44,13,_,2270.557224,33.68650751,13 Years and 5 Months,Yes,139.9112123,463.0288357,Low_spent_Small_value_payments,144.9386187,0,-0.1675,-1.1149,-0.3332,1.3429,-0.1748 +0x24535,CUS_0x1902,August,43,346-08-4265,Lawyer,15819.12,1393.26,5,6,9,0,,13.85295271,11,8.95,6,Standard,114.81,35.03510518,25 Years and 0 Months,No,0,86.34952405,Low_spent_Medium_value_payments,332.9764759,0,0.8757,0.4368,-1.7362,1.2756,0.1345 +0x24541,CUS_0x5e1a,August,32,997-66-1112,Accountant,35739.7,2810.308333,4,6,5,0,,16.65073896,10.74692822,5.74,3,Good,461.245535,35.8885775,20 Years and 10 Months,No,0,38.38443517,High_spent_Medium_value_payments,492.6463982,0,0.2208,1.318,-0.6196,-0.9552,-1.1312 +0x2454d,CUS_0xb483,August,42,568-25-4460,Developer,82154.92,,6,5,34,6,"Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, and Payday Loan",22.80706544,18,22.75,7,_,4726.13,37.08237415,2 Years and 9 Months,Yes,238.3727036,,High_spent_Large_value_payments,612.7608963,0,-1.9163,-1.6553,-1.9127,-0.564,0.3264 +0x24559,CUS_0x8798,August,51,685-55-7349,Architect,35348.12,2890.676667,1,5,12,2,"Student Loan, and Auto Loan",0,0,,8,Good,1138.623816,30.81677213,18 Years and 9 Months,NM,32.74796657,,Low_spent_Small_value_payments,201.4579279,0,-0.2104,0.3498,-0.1456,-0.1034,0.0231 +0x24565,CUS_0x85b2,August,38,135-32-7932,Journalist,143355.8,,1,4,11.28836175,2,"Home Equity Loan, Home Equity Loan, and Auto Loan",2.129387122,5,2.81,6,Good,330.98,38.00908852,30 Years and 0 Months,NM,298.1912097,601.1796471,High_spent_Large_value_payments,974.4982709,0,-0.2305,-0.2818,-1.5204,0.2585,0.0738 +0x24571,CUS_0x9076,August,29,228-28-5559,Manager,110692.47,9428.3725,4,6,17.28836175,6,"Auto Loan, Mortgage Loan, Auto Loan, Home Equity Loan, Personal Loan, and Debt Consolidation Loan",5.319085253,7,12.33,6,_,1134.69,35.0032027,9 Years and 4 Months,Yes,402.4758282,1230.570983,Low_spent_Large_value_payments,,0,1.1542,0.8088,-1.0044,-1.415,0.1114 +0x2457d,CUS_0x591,August,45,268-48-1271,Mechanic,46010.4,3815.2,3,6,32,7,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, Personal Loan, Not Specified, Home Equity Loan, and Personal Loan",,11,24.91,13,Standard,1274.59,24.97861962,11 Years and 4 Months,Yes,182.1109459,,Low_spent_Medium_value_payments,137.2980193,0,0.339,0.5646,0.4028,-0.7848,-0.4953 +0x24589,CUS_0x926f,August,20,198-58-7893,Journalist,84389.44,,7,7,6,3,"Credit-Builder Loan, Personal Loan, and Student Loan",,17,6.84,1,Standard,1368.62,35.90277715,32 Years and 2 Months,No,162.6463478,219.6250928,High_spent_Medium_value_payments,577.4738927,0,1.8979,-0.2847,1.837,0.3847,-2.5709 +0x24595,CUS_0x2bc7,August,18,407-94-5689,_______,51312.9,4425.075,10,8,29,4,"Home Equity Loan, Debt Consolidation Loan, Credit-Builder Loan, and Home Equity Loan",25.25882035,15,17,10,Bad,1498.55,31.18472144,9 Years and 0 Months,Yes,146.7076452,136.4531582,High_spent_Medium_value_payments,409.3466966,0,1.6862,0.4931,-1.5324,-0.8169,-0.1139 +0x245a1,CUS_0x7f07,August,24,005-27-6021,Mechanic,8572.585,,6,3,8,5,"Debt Consolidation Loan, Personal Loan, Not Specified, Student Loan, and Personal Loan",9.751847352,11,7.91,11,_,282.9346363,28.3194076,8 Years and 5 Months,Yes,53.90158323,0,High_spent_Large_value_payments,252.5679001,0,0.0729,0.1047,-0.68,0.6296,-1.2086 +0x245ad,CUS_0x1edd,August,18,784-29-8491,Manager,68489.16,5544.401741,10,10,33.88954781,7,"Home Equity Loan, Credit-Builder Loan, Student Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",28.83250806,20,25.44,8,Bad,4196.339678,30.52147753,14 Years and 2 Months,Yes,1832.553572,161.5200506,High_spent_Large_value_payments,452.1063045,0,-0.5612,-0.0395,-1.1103,0.4652,-1.9172 +0x245b9,CUS_0xbc58,August,33,115-00-1071,_______,21205.72,,3,5,10,2,"Student Loan, and Credit-Builder Loan",16.44875223,14,2.55,2,Good,327.83,31.84193107,27 Years and 9 Months,NM,20.0078861,125.4690768,Low_spent_Small_value_payments,300.1373705,0,1.4681,1.4172,-0.4373,1.3997,1.4543 +0x245c5,CUS_0x9f59,August,55,227-30-9732,Doctor,10233.555,,7,4,3,1,Home Equity Loan,,17,18.2,4,Good,671.9086901,33.20843982,26 Years and 10 Months,No,7.648423559,,Low_spent_Small_value_payments,258.3454769,0,0.7004,0.1859,0.0636,0.2517,-1.2481 +0x245d1,CUS_0x12b8,August,29,706-59-9144,Doctor,15906.4,1350.533333,10,10,21.88954781,8,"Credit-Builder Loan, Student Loan, Debt Consolidation Loan, Student Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, and Not Specified",33.93168059,24.20731496,27.86,6,Bad,3437.864596,31.0857016,10 Years and 11 Months,Yes,1415.37682,,Low_spent_Small_value_payments,195.7391732,0,1.5033,-0.9492,1.1962,0.1339,0.8201 +0x245dd,CUS_0x906c,August,18,916-74-7841,Writer,16059.88,,7,3,5,4,"Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",24.63129982,18,17.62,4,Standard,1402.44,35.09848489,14 Years and 10 Months,Yes,49.58904247,119.0884042,Low_spent_Small_value_payments,264.9548867,0,-1.3686,0.5017,1.5972,-2.1538,-2.1796 +0x245e9,CUS_0x1db0,August,27,428-05-7900,_______,17592.34,,7,3,17,5,"Payday Loan, Not Specified, Auto Loan, Personal Loan, and Credit-Builder Loan",26.66600632,17.04214397,16.13,,_,2401.966832,34.6200882,11 Years and 4 Months,Yes,59.32681411,187.2315698,Low_spent_Small_value_payments,189.5444494,0,0.1053,0.0234,1.4037,-0.8941,0.1085 +0x245f5,CUS_0x59d,August,59,194-98-0440,Musician,119514.03,10031.5025,2,3,1.288361749,2,"Personal Loan, Credit-Builder Loan, and Debt Consolidation Loan",6.047735807,9,8.17,1,_,456.4095628,37.9806235,,No,165.7237719,672.080129,High_spent_Large_value_payments,855.3608309,0,-1.0857,1.0437,-1.3235,1.1492,-0.4607 +0x24601,CUS_0x2fc5,August,27,113-07-0267,Engineer,9360.515,,8,6,16.06745738,5,"Debt Consolidation Loan, Auto Loan, Not Specified, Personal Loan, and Home Equity Loan",37.1968864,18.70741875,11.92,17,Standard,2523.942233,40.00840966,14 Years and 11 Months,Yes,21.71699905,21.86208611,!@9#%8,272.8049186,0,1.9639,-0.4328,0.5353,0.4806,0.2481 +0x2460d,CUS_0x7be4,August,30,077-00-8897,Manager,18028.98,,4,7,30.06745738,5,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",15.8234102,9.55419462,19.7,13,_,2150.49026,34.3535138,17 Years and 5 Months,Yes,47.4099104,85.63694456,Low_spent_Large_value_payments,247.1743571,0,0.7213,-0.5036,-0.2582,0.3907,0.025 +0x24619,CUS_0x2734,August,18,429-39-1057,Doctor,14135.23,,9,5,21,7,"Auto Loan, Personal Loan, Student Loan, Credit-Builder Loan, Not Specified, Home Equity Loan, and Mortgage Loan",,25,29.49,7,Bad,4671.72,29.50228009,7 Years and 11 Months,Yes,68.24048936,61.62337195,Low_spent_Large_value_payments,281.729722,0,-0.2971,-1.2285,-1.2015,1.1757,-0.5313 +0x24625,CUS_0x9941,August,46,629-13-1252,Mechanic,113652.12,9388.01,4,2,3.288361749,2,"Mortgage Loan, and Personal Loan",,7,8.01,1,Good,288.1484458,35.59335664,,No,171.2503518,727.2400346,High_spent_Small_value_payments,762.5855549,0,-1.4402,0.3305,0.6687,0.4252,0.0901 +0x24631,CUS_0x73d9,August,32,510-88-0974,Manager,30559.3,,4,3,9,1,Personal Loan,6.924224982,3.647775132,9.54,4,_,242.6605845,25.70715667,17 Years and 8 Months,No,13.36520328,193.5171045,Low_spent_Large_value_payments,319.8785255,0,-1.0169,0.299,0.5553,0.5206,0.8023 +0x2463d,CUS_0x61f5,August,26,375-63-3940,Entrepreneur,17244.23,,8,5,34.06745738,5,"Personal Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Mortgage Loan",30.90051062,17,9.75,11,Bad,2198.380954,29.54879373,10 Years and 0 Months,Yes,36.33910634,,Low_spent_Small_value_payments,305.6160413,0,1.065,1.3114,-1.0341,-1.4496,-0.1016 +0x24649,CUS_0x11ec,August,34,417-74-2163,Journalist,14867.69,,10,9,19.95700519,6,"Debt Consolidation Loan, Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, and Debt Consolidation Loan",30.33176933,17.6244139,18.5,8,Standard,2815.968385,25.36769124,17 Years and 2 Months,Yes,1378.943048,100.1457483,Low_spent_Medium_value_payments,180.4582508,0,-0.1811,-0.5981,-0.0338,0.0624,0.0425 +0x24655,CUS_0xbdcd,August,20,#F%$D@*&8,Writer,16994.67,,4,3,5,1,Mortgage Loan,,14,8.75,7,Standard,1209.22,23.46097303,23 Years and 9 Months,Yes,13.83743135,143.6488936,Low_spent_Medium_value_payments,284.3359251,0,0.5378,-0.9733,-1.3547,-0.8893,-0.6114 +0x24661,CUS_0x7803,August,36,301-45-9958,Developer,33841.55,,4,4,4,0,,0,2,3.01,4,Good,1485.95,39.84477349,18 Years and 9 Months,NM,0,111.6387324,Low_spent_Medium_value_payments,442.4741842,0,0.2907,1.1157,-2.2998,-1.9652,-1.2371 +0x2466d,CUS_0x2c21,August,26,#F%$D@*&8,Architect,32090.48,,8,1093,25.88954781,7,"Home Equity Loan, Credit-Builder Loan, Student Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Home Equity Loan",22.67063813,13.37879148,14.39,6,_,1433.552922,28.53759653,,NM,1492.811314,,Low_spent_Small_value_payments,87.61708223,0,0.7851,2.8617,-1.7838,-0.0953,0.2252 +0x24679,CUS_0x94ae,August,22,445-11-4795,Entrepreneur,14665.31,1230.109167,6,6,25,6,"Not Specified, Mortgage Loan, Not Specified, Mortgage Loan, Payday Loan, and Personal Loan",29.53464733,17,2.7,9,Bad,4696.1,34.95040887,5 Years and 11 Months,Yes,44.188371,103.5048323,Low_spent_Small_value_payments,265.3177134,0,-1.4068,1.2048,-0.7763,-0.4774,-0.6506 +0x24685,CUS_0x3007,August,30,205-57-6869,Journalist,8664.405,872.03375,6,7,13,4,"Personal Loan, Not Specified, Auto Loan, and Credit-Builder Loan",,19,15,11,Standard,317.71,23.8163283,12 Years and 10 Months,NM,28.71450951,37.2588158,Low_spent_Medium_value_payments,301.2300497,0,-1.4573,1.119,1.0295,0.3597,0.9541 +0x24691,CUS_0x1668,August,30,371-79-8484,Scientist,64980.72,5473.06,4,7,6,2,"Personal Loan, and Debt Consolidation Loan",,1,0.78,3,_,375.38,40.31796565,32 Years and 2 Months,No,88.44822734,158.1410968,!@9#%8,570.7166759,0,0.4979,1.13,1.929,1.0145,0.0999 +0x2469d,CUS_0xc405,August,41,600-10-3827,Scientist,90662.43,7701.2025,8,5,8,6,"Student Loan, Debt Consolidation Loan, Not Specified, Student Loan, Student Loan, and Mortgage Loan",,10,13.76,8,Standard,208.35,32.27026906,11 Years and 10 Months,NM,57393,101.5510382,High_spent_Medium_value_payments,651.3852994,0,-0.6957,-0.2614,-0.2729,0.6073,0.3494 +0x246a9,CUS_0xc0ff,August,19,208-90-1240,Writer,12941.135,,5,4,20,7,"Personal Loan, Student Loan, Debt Consolidation Loan, Payday Loan, Debt Consolidation Loan, Payday Loan, and Credit-Builder Loan",12.5228698,10,7.19,1876,Standard,219.36,22.01027914,12 Years and 0 Months,Yes,74.9509222,53.32791084,Low_spent_Medium_value_payments,271.8639586,0,2.7458,-0.4857,-1.2828,-0.0914,1.2338 +0x246b5,CUS_0x1c79,August,45,699-49-5543,Engineer,14283.665,,6,4,10.06745738,4,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",,9.49605978,7.6,3,Standard,1600.428011,28.66983119,22 Years and 11 Months,No,33.68791294,,High_spent_Medium_value_payments,246.092387,0,1.0633,-0.2881,-0.3147,0.2782,0.614 +0x246c1,CUS_0xc029,August,25,804-18-5334,Engineer,57442.5,4934.875,8,8,27,2,"Student Loan, and Payday Loan",33.43803924,,4.06,12,Bad,2735.919223,37.59403617,18 Years and 3 Months,NM,91.8575896,355.8094995,Low_spent_Large_value_payments,315.8204109,0,0.705,0.4643,-0.0413,-1.0537,-0.2299 +0x246cd,CUS_0xb51c,August,29,711-70-5709,Engineer,14697.78,,8,4,19,4,"Credit-Builder Loan, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",,21.33728197,,8,Standard,2427.194016,27.37877426,13 Years and 11 Months,NM,5032,160.3958049,Low_spent_Small_value_payments,239.3124358,0,0.9435,-0.4743,0.4365,-1.5043,0.2785 +0x246d9,CUS_0x596a,August,19,557-24-2510,Engineer,139118.04,11457.17,3,4,12,3,"Personal Loan, Personal Loan, and Auto Loan",,12,6.11,1,_,419.4,41.07244494,32 Years and 6 Months,No,244.9867263,364.7519221,Low_spent_Large_value_payments,805.9783515,0,-0.5468,0.6694,-0.8202,0.3992,-0.3096 +0x246e5,CUS_0x2567,August,49,403-47-0514,Doctor,34239.07,,3,4,10,0,,13.0929593,11,7.83,1,Good,504.44,33.38085167,21 Years and 3 Months,No,0,333.7757777,Low_spent_Small_value_payments,247.8498056,0,-0.0406,-2.9002,-0.1881,0.95,-1.2992 +0x246f1,CUS_0xbf3a,August,45,977-54-5551,Accountant,119612.28,9999.69,3,1,2.288361749,0,,7.585173787,9,9.83,1,Good,1146.63565,32.22364598,19 Years and 6 Months,No,0,1074.500855,Low_spent_Large_value_payments,686.6690537,0,0.6038,-0.7085,-0.4075,-0.6144,-1.3817 +0x246fd,CUS_0xb9ef,August,40,898-63-6787,Manager,17602.095,,1,3,3,0,,10.21441729,10,8.4,3,_,533.266963,26.3767688,21 Years and 9 Months,No,0,87.87751796,High_spent_Small_value_payments,329.2369029,0,-0.5653,0.0712,-0.4448,1.6192,1.3017 +0x24709,CUS_0xa061,August,51,240-51-5346,Doctor,95569.2,8025.1,4,4,8,4,"Auto Loan, Personal Loan, Home Equity Loan, and Debt Consolidation Loan",18.70585771,15,3.15,4,Good,362.8670443,28.14453887,33 Years and 3 Months,No,270.8359219,103.0198613,High_spent_Medium_value_payments,693.8251552,0,-0.4816,0.485,0.3648,1.5004,-0.3497 +0x24715,CUS_0xc1ce,August,19,332-59-0166,Musician,18721.87,1740.155833,8,5,18,5,"Auto Loan, Credit-Builder Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",33.24721021,23.67042982,17.91,6,Standard,1869.878675,30.6222154,14 Years and 9 Months,Yes,46.04894145,46.56631883,Low_spent_Medium_value_payments,361.4003231,0,-0.6743,-0.3797,-0.097,-1.0484,-0.1196 +0x24721,CUS_0xb653,August,42,447-22-1289,Writer,94663.59,8064.6325,5,4,5,1,Student Loan,20.45340428,14.13562503,14.18,7,Standard,337.5801788,32.09064799,22 Years and 4 Months,Yes,48.51645049,553.0685797,High_spent_Small_value_payments,464.8782198,0,0.7805,-2.8138,-1.1101,-0.8078,2.0497 +0x2472d,CUS_0xa741,August,38,434-48-5834,_______,73610.5,6136.208333,7,6,5,7,"Credit-Builder Loan, Home Equity Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Payday Loan, and Student Loan",15.50723708,11,17.3,8,Standard,291.67,37.19107831,18 Years and 0 Months,NM,254.6868057,250.6583981,High_spent_Medium_value_payments,358.2756295,0,1.1285,0.6745,0.9175,1.8437,0.23 +0x24739,CUS_0x1743,August,27,005-76-5155,Mechanic,42527.04,,8,6,23.06745738,7,"Auto Loan, Home Equity Loan, Not Specified, Not Specified, Student Loan, Mortgage Loan, and Mortgage Loan",32.10978263,21.79090538,18.9,15,Bad,4905.585267,26.48606884,11 Years and 0 Months,Yes,230.2689336,,High_spent_Medium_value_payments,255.0290962,0,1.1412,-1.0112,-0.765,-0.2106,0.4457 +0x24745,CUS_0xbfa6,August,37,006-73-8209,Teacher,74036.96,6384.746667,9,10,15,5,"Payday Loan, Debt Consolidation Loan, Payday Loan, Mortgage Loan, and Debt Consolidation Loan",42.45761157,21.7085129,9.74,15,Standard,2372.228395,36.30756745,19 Years and 8 Months,Yes,256.61395,,!@9#%8,482.7617307,0,0.0641,0.4649,0.13,0.9094,-0.8098 +0x24751,CUS_0xb203,August,38,266-23-1677,Mechanic,8944.07,,6,10,23.95700519,7,"Payday Loan, Home Equity Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Personal Loan",23.70278458,,24.11,7,Bad,5157.096573,35.87511908,11 Years and 4 Months,Yes,1367.266132,,Low_spent_Small_value_payments,247.6493336,0,-0.0053,1.1457,1.81,1.0056,1.1799 +0x2475d,CUS_0xc14e,August,80,073-88-2612,Engineer,42578.46,3811.205,10,7,35.06745738,5,"Debt Consolidation Loan, Debt Consolidation Loan, Mortgage Loan, Auto Loan, and Personal Loan",,22.23188396,22.22,8,Bad,4107.44603,40.57139452,1 Years and 0 Months,Yes,109.6763551,30.85303236,!@9#%8,453.8708246,0,-0.1215,-1.1647,-0.3677,1.0185,-0.6088 +0x24769,CUS_0xc5b0,August,46,957-29-8344,Teacher,40019.72,3565.976667,4,7,3,0,,13.34328549,11,9.48,4,Standard,805.43,31.30744992,32 Years and 8 Months,No,0,,Low_spent_Small_value_payments,185.5593708,0,-1.0004,1.4687,-0.5118,0.9376,-0.6283 +0x24775,CUS_0x8d3d,August,26,872-63-5957,Manager,16750.04,1435.836667,10,10,27.88954781,6,"Auto Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Mortgage Loan, and Debt Consolidation Loan",32.29277257,19,29.4,15,Bad,4305.22,23.59029128,12 Years and 0 Months,Yes,1406.062301,10000,Low_spent_Small_value_payments,245.1240674,0,0.9312,0.3303,-0.4363,-0.0509,1.2538 +0x24781,CUS_0x9011,August,80,133-63-3507,Scientist,108255.72,9042.31,2,2,2.288361749,2,"Auto Loan, Student Loan, and Payday Loan",,0,3.43,2,Good,730.2344736,41.76959828,28 Years and 11 Months,No,136.6024578,665.8488869,High_spent_Large_value_payments,785.3166283,0,-0.9236,-0.8312,-2.2988,-1.4194,-0.2668 +0x2478d,CUS_0x7b4b,August,25,065-77-9473,Scientist,17235.88,,10,5,19.06745738,3,"Debt Consolidation Loan, Not Specified, and Home Equity Loan",,20,10.56,12,Standard,2195.090954,38.75427884,,Yes,30.29155827,,Low_spent_Small_value_payments,244.4799306,0,-1.0426,1.1555,-0.426,1.2406,-0.4629 +0x24799,CUS_0x6ae4,August,23,604-88-3417,_______,25656.05,,4,4,10,0,,13.30916247,10,8.3,1,Standard,1084.02,25.96529326,,Yes,0,133.0919834,Low_spent_Small_value_payments,397.6084332,0,0.8998,-0.7008,-0.9546,1.5468,-0.4596 +0x247a5,CUS_0xb1e7,August,25,315-68-8909,Lawyer,31763.36,2867.946667,7,7,25,6,"Personal Loan, Credit-Builder Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, and Home Equity Loan",,18.68477721,11.07,9,Standard,1418.141453,31.24238358,12 Years and 6 Months,Yes,122.7170717,,Low_spent_Small_value_payments,117.3035753,0,0.4477,-2.0448,1.0297,0.1811,-0.3063 +0x247b1,CUS_0x28f5,August,56,#F%$D@*&8,Developer,88073.68,,5,7,5,4,"Payday Loan, Mortgage Loan, Credit-Builder Loan, and Not Specified",,15,10.67,3,Good,1482.24,40.99226591,22 Years and 11 Months,No,226.6989203,56.41657792,High_spent_Large_value_payments,680.5318351,0,-0.2744,-0.1721,0.9048,-0.4626,-0.9215 +0x247bd,CUS_0x4c13,August,49,#F%$D@*&8,Lawyer,37691.17,3321.930833,4,4,4.288361749,0,,8.039328287,9,8.56,3,Good,191.6340911,28.07031194,20 Years and 8 Months,No,0,,High_spent_Large_value_payments,524.8940372,0,1.4649,0.1347,0.1919,0.5163,0.4886 +0x247c9,CUS_0x749e,August,23,006-39-2302,Journalist,76230.76,6001.309343,6,10,31,3,"Home Equity Loan, Not Specified, and Debt Consolidation Loan",27.03676662,16,18.93,14,_,1961.73,28.36663994,20 Years and 6 Months,Yes,327.9152466,53.2574606,High_spent_Large_value_payments,633.0376162,0,1.0723,0.1018,-0.4767,-0.443,1.6435 +0x247d5,CUS_0x70bf,August,29,941-06-1233,Media_Manager,10620.46,,6,5,11,1,Payday Loan,23.28267838,17,3.36,1,Standard,1014.29,30.33566784,24 Years and 4 Months,No,49.76691225,62.77346062,Low_spent_Small_value_payments,300.0547116,0,-0.3727,-0.2521,-1.6805,1.1336,-0.7857 +0x247e1,CUS_0x971a,August,36,231-29-0095,Manager,72841.32,,3,6,30,5,"Payday Loan, Payday Loan, Payday Loan, Home Equity Loan, and Mortgage Loan",18.25884739,14.42215125,16.93,7,Standard,2189.762152,32.55744077,16 Years and 6 Months,NM,279.2915313,225.8171931,Low_spent_Medium_value_payments,357.6022755,0,-0.0911,1.421,-1.3852,-0.2147,1.1168 +0x247ed,CUS_0x8122,August,43,668-73-0602,Engineer,19797.22,,6,7,27,9,"Auto Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, Not Specified, Not Specified, Home Equity Loan, Personal Loan, and Not Specified",41.74825203,21.69520083,20.48,7,Bad,5533.518203,34.48282699,3 Years and 5 Months,Yes,92.60397135,93.76043698,Low_spent_Medium_value_payments,286.512425,0,0.5031,-0.2361,0.5224,1.6474,-0.2713 +0x247f9,CUS_0x1c78,August,41,#F%$D@*&8,Mechanic,54219.54,4251.295,9,5,19,2,"Payday Loan, and Mortgage Loan",37.38223799,21.49815682,3.89,12,Bad,2217.120818,28.19267991,7 Years and 5 Months,Yes,54.15780394,,!@9#%8,250.6455337,0,0.3092,0.622,0.9548,1.1104,-0.1708 +0x24805,CUS_0xc208,August,25,907-25-2458,Engineer,26463.44,,3,4,16,2,"Personal Loan, and Debt Consolidation Loan",,11,13.75,3,Standard,931.37,26.75192357,24 Years and 5 Months,Yes,31.19911471,240.3997506,Low_spent_Medium_value_payments,242.5298014,0,-0.507,0.514,0.4421,-0.6487,-0.1423 +0x24811,CUS_0x4b76,August,49,#F%$D@*&8,Developer,20647,1714.583333,5,4,4,100,"Credit-Builder Loan, Not Specified, Personal Loan, and Credit-Builder Loan",12.47095636,10,12.25,1,_,1209.862564,30.84641501,32 Years and 5 Months,No,65.5704051,33.13768439,High_spent_Medium_value_payments,327.6734797,0,-1.743,-2.5508,-0.1204,1.1535,0.6939 +0x2481d,CUS_0x5cb9,August,45,782-16-3382,Musician,133581.15,11103.7625,0,6,10.28836175,2,"Personal Loan, Credit-Builder Loan, and Student Loan",8.615755626,9,4.91,0,Good,412.0377333,32.56947979,24 Years and 8 Months,NM,225.4089362,1708.667129,Low_spent_Medium_value_payments,72.73105873,0,-2.4014,-1.0226,0.4433,0.122,0.7141 +0x24829,CUS_0x80ec,August,19,707-76-6509,Entrepreneur,132753.52,10853.79333,5,4,5.288361749,2,"Home Equity Loan, Personal Loan, and Debt Consolidation Loan",8.294033769,9,10.78,5,Good,1452.83,35.8414045,19 Years and 0 Months,No,268.9165691,810.3620458,High_spent_Medium_value_payments,676.0381794,0,-1.0995,-1.3414,0.0544,-2.8518,-0.4544 +0x24835,CUS_0x4a45,August,38,948-93-2039,Journalist,9194.97,,7,9,26.06745738,8,"Credit-Builder Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Payday Loan, and Mortgage Loan",,18.88980181,19.48,,Bad,4510.679963,40.80364612,14 Years and 3 Months,Yes,54.78290934,,Low_spent_Medium_value_payments,232.3465403,0,-0.7182,-0.6204,-1.2492,-0.4981,-2.2095 +0x24841,CUS_0x37e3,August,20,187-12-3052,Entrepreneur,13251.57,,7,7,6,2,"Mortgage Loan, and Credit-Builder Loan",,,11.3,6,_,298.58,26.85174411,29 Years and 10 Months,No,12.55389077,34.89331272,High_spent_Medium_value_payments,324.5825465,0,0.6774,0.3952,0.2007,0.2343,0.1943 +0x2484d,CUS_0xac15,August,18,283-04-4048,Entrepreneur,8083.14,,4,7,15,7,"Debt Consolidation Loan, Personal Loan, Payday Loan, Personal Loan, Home Equity Loan, Credit-Builder Loan, and Debt Consolidation Loan",,8,13.2,8,_,1964.82,38.18777623,18 Years and 0 Months,Yes,29.61662986,104.9961692,Low_spent_Small_value_payments,247.646701,0,0.5176,1.62,0.3461,-0.731,0.227 +0x24859,CUS_0xab17,August,26,#F%$D@*&8,Teacher,142319.72,12036.97667,3,3,5.288361749,0,,8.85063335,9,3.5,5,_,1092.52,27.31965482,28 Years and 6 Months,No,0,923.2639201,Low_spent_Small_value_payments,990.3712075,0,0.8813,-1.0066,-0.685,-0.8473,-0.967 +0x24865,CUS_0x2e90,August,27,656-11-4327,Journalist,17718.855,,5,1,1313,0,,10.32343849,12,9.09,1,Good,1017.732696,38.67694316,25 Years and 4 Months,No,0,82.11115506,Low_spent_Medium_value_payments,329.4013315,0,-0.1487,0.781,0.4476,0.6584,-0.2551 +0x24871,CUS_0x194b,August,29,661-41-7229,Engineer,161272.04,13312.33667,1,7,6.288361749,2,"Not Specified, Student Loan, and Mortgage Loan",,5.783481589,6.94,1,Good,795.555165,43.59810856,19 Years and 9 Months,No,288.0136782,661.1713944,High_spent_Large_value_payments,1041.986055,0,-0.4592,-1.7222,0.3044,2.0403,0.9368 +0x2487d,CUS_0xadf0,August,44,076-89-6350,Manager,109182.72,9055.56,1,4,0.288361749,0,Student Loan,2.893122802,5,2.03,2,Good,623.35,30.85449243,31 Years and 6 Months,No,46.42470689,739.428751,Low_spent_Medium_value_payments,819.6400031,0,0.2774,1.297,-0.1693,0.1706,0.6043 +0x24889,CUS_0x6ffa,August,37,311-51-2069,_______,105450.66,,7,7,12.28836175,4,"Student Loan, Student Loan, Not Specified, and Not Specified",18.30414517,16,19.95,5,Standard,328.42,25.63111017,26 Years and 11 Months,Yes,187.4137105,1164.987334,Low_spent_Medium_value_payments,249.091916,0,0.3403,-0.811,-0.0547,-1.6579,-2.9612 +0x24895,CUS_0x80ca,August,46,#F%$D@*&8,Engineer,109744.86,8916.405,8,4,19,1,Personal Loan,15.4670383,12,13.33,2,Standard,55.2,28.31466819,32 Years and 9 Months,Yes,72.51605296,,Low_spent_Medium_value_payments,180.568666,0,0.5419,-1.9016,-0.3448,-0.811,0.3028 +0x248a1,CUS_0x1a22,August,29,570-38-5531,Developer,32344.64,2657.386667,6,7,20,6,"Payday Loan, Mortgage Loan, Home Equity Loan, Student Loan, Auto Loan, and Auto Loan",,21,33.74,6,_,2681.27,27.04837355,14 Years and 0 Months,Yes,154.4264498,164.1945766,Low_spent_Medium_value_payments,227.1176403,0,-0.7121,-0.1614,-2.6247,0.221,-2.1223 +0x248ad,CUS_0x52b6,August,41,866-67-0663,Scientist,15754.53,,10,9,23.95700519,7,"Not Specified, Credit-Builder Loan, Not Specified, Not Specified, Home Equity Loan, Payday Loan, and Debt Consolidation Loan",,23.76433367,16.21,14,Standard,1767.913496,40.68669056,,Yes,1374.086968,148.8787479,Low_spent_Small_value_payments,193.2716646,0,1.0708,-1.2148,-1.0895,-0.9948,0.6916 +0x248b9,CUS_0x6566,August,39,982-79-7536,Writer,62155.02,4965.585,8,4,16,2,"Credit-Builder Loan, and Not Specified",,5,19.31,12,Standard,1162.48,41.65589486,11 Years and 5 Months,NM,72.02428561,82.16349797,High_spent_Medium_value_payments,592.3707164,0,-1.0529,1.0862,-1.3445,1.4949,-0.4862 +0x248c5,CUS_0x998f,August,38,909-16-7643,Engineer,42904.26,3833.355,0,4,5.288361749,0,,1.619813587,4,7.62,1,Good,180.0300495,26.90562146,16 Years and 0 Months,No,0,723.2045272,Low_spent_Medium_value_payments,389.7593497,0,0.6658,0.2606,2.3662,-0.1215,0.8056 +0x248d1,CUS_0x96b4,August,18,574-43-0696,Teacher,18611.39,1758.949167,10,7,34.06745738,6,"Credit-Builder Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Mortgage Loan, and Mortgage Loan",,26.96165236,25.33,11,Bad,3872.051737,40.54938587,3 Years and 11 Months,Yes,81.65724165,65.36587521,!@9#%8,282.1515119,0,0.8058,-0.4167,1.9842,1.3773,0.4 +0x248dd,CUS_0x7016,August,22,976-92-7680,Lawyer,112815.48,9450.29,1,3,11,4,"Debt Consolidation Loan, Not Specified, Home Equity Loan, and Not Specified",7.698604353,6.089899161,11.11,3,Good,861.5877307,34.73437881,17 Years and 11 Months,No,74263,736.1535389,Low_spent_Medium_value_payments,289.2865802,0,0.4102,1.1475,-0.4864,0.3526,-0.509 +0x248e9,CUS_0x2f1c,August,43,803-27-5656,Engineer,71131.53,6148.6275,7,8,16,6,"Credit-Builder Loan, Not Specified, Student Loan, Auto Loan, Payday Loan, and Auto Loan",,23,8.86,5,_,1168.61,33.00186734,19 Years and 4 Months,Yes,222.4334726,61.28656101,High_spent_Large_value_payments,571.1427164,0,1.1767,-1.0809,-0.82,0.8696,-1.0528 +0x248f5,CUS_0x519e,August,23,480-87-4634,Mechanic,7518.15,,10,9,32,6,"Mortgage Loan, Home Equity Loan, Not Specified, Personal Loan, Payday Loan, and Personal Loan",37.05729622,22,27.61,13,Bad,3651.34,40.15181136,9 Years and 3 Months,Yes,88.25047978,57.55620047,!@9#%8,262.4105242,0,0.3577,-0.1917,0.4663,1.5875,0.1386 +0x24901,CUS_0x802,August,21,118-00-5190,Doctor,50850.21,,6,6,22.06745738,1091,"Student Loan, Payday Loan, Not Specified, Personal Loan, Student Loan, Not Specified, Debt Consolidation Loan, and Not Specified",30.22654292,17.33475098,11.93,14,Bad,3129.761813,27.27574725,5 Years and 11 Months,Yes,251.1735206,415.3127857,Low_spent_Medium_value_payments,1.04515572,0,0.363,0.105,-0.4659,-0.7851,-0.2684 +0x2490d,CUS_0x2a05,August,18,164-42-3473,Media_Manager,8308.235,654.3529167,6,9,20.88954781,100,"Payday Loan, Debt Consolidation Loan, Mortgage Loan, Student Loan, Auto Loan, Mortgage Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",24.91849479,20,8.7,15,Bad,3530.46,23.97592494,4 Years and 2 Months,Yes,1359.557187,47.70084625,Low_spent_Small_value_payments,253.8471766,0,-1.3835,1.1524,0.652,0.898,-0.0496 +0x24919,CUS_0x703d,August,23,186-69-3042,Writer,28742.57,,8,6,6,3,"Personal Loan, Debt Consolidation Loan, and Payday Loan",28.96851752,20,9.63,4,Standard,666.08,28.25957724,27 Years and 5 Months,NM,47.96401314,130.26002,Low_spent_Large_value_payments,347.6973835,0,-1.3323,-1.0921,1.9022,-0.2875,0.4904 +0x24925,CUS_0x3237,August,21,066-87-9187,Media_Manager,54651.78,4359.315,9,9,17.06745738,8,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Mortgage Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",,28.45434836,25.64,10,Bad,5334.89418,37.48837576,7 Years and 2 Months,Yes,295.3865761,72.32921586,!@9#%8,281.4954201,0,0.3017,-1.1701,0.7417,-0.1619,-0.6888 +0x24931,CUS_0x68a5,August,37,200-09-1283,Teacher,75982.74,6045.895,8,62,8,2,"Credit-Builder Loan, and Mortgage Loan",11.55133329,9,11.4,1,_,1015.84,34.73269988,21 Years and 2 Months,Yes,88.684582,79.42510925,High_spent_Large_value_payments,676.4798088,0,0.7233,0.8314,0.9279,-0.0349,-1.2259 +0x2493d,CUS_0xa74e,August,30,108-21-3481,Lawyer,86885.43,,3,6,9.288361749,4,"Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",0,4,17.35,2,Good,969.8968385,33.35658907,,No,927.4303293,654.5081699,High_spent_Medium_value_payments,543.7523613,0,0.8661,-0.2199,-0.5224,-1.2485,-0.8314 +0x24949,CUS_0x5db7,August,39,088-41-9984,_______,122730.72,10000.56,8,5,17,4,"Mortgage Loan, Student Loan, Home Equity Loan, and Payday Loan",23.30823254,14,18.08,12,Standard,1040.93,41.68686152,17 Years and 4 Months,Yes,290.6522615,79.18493838,High_spent_Large_value_payments,870.2188001,0,0.7422,0.0444,-0.0863,-0.2928,1.0623 +0x24955,CUS_0xa2cd,August,33,670-07-0195,Musician,68654.62,,4,5,6,1,Auto Loan,10.93699404,10,6.14,3,Good,1215.344613,29.42370055,24 Years and 5 Months,NM,55.22823709,,Low_spent_Medium_value_payments,478.6142808,0,0.628,-1.1097,-0.3893,1.6422,0.412 +0x24961,CUS_0x1216,August,22,256-37-5248,Engineer,20143.27,1550.605833,10,8,28.06745738,2,"Not Specified, and Credit-Builder Loan",32.53685527,18.22789081,9.44,17,Standard,2117.783248,37.32466837,10 Years and 10 Months,Yes,30.35920814,141.8965548,Low_spent_Small_value_payments,246.0845324,0,-0.3099,-0.015,-0.5366,1.0875,-1.1127 +0x2496d,CUS_0x71c1,August,43,653-62-1870,Entrepreneur,16114.245,,4,1,10,100,"Personal Loan, Home Equity Loan, and Not Specified",11.55297883,12,11.92,7,Good,438.9461579,27.20562036,26 Years and 5 Months,NM,37.44585941,54.88607387,!@9#%8,288.3454877,0,-2.0058,-0.2999,0.9401,-0.3301,0.8709 +0x24979,CUS_0x33b0,August,48,406-00-8686,Doctor,179317.04,15091.08667,0,6,7,1,Mortgage Loan,1.386532093,3,1.54,5,_,69.79701738,36.25932651,31 Years and 3 Months,No,142.7870625,166.6655565,High_spent_Large_value_payments,1463.792328,0,1.3017,-1.0406,-2.2555,1.1885,-0.3142 +0x24985,CUS_0x83a7,August,55,733-36-8265,Engineer,90674.43,7318.2025,4,399,4,1,Payday Loan,10.70783313,11,10.84,1,Good,26.11609088,38.18476161,18 Years and 0 Months,No,43.45821533,,Low_spent_Large_value_payments,741.2688157,0,2.1718,1.4667,0.0865,0.3773,-0.0515 +0x24991,CUS_0x87ee,August,44,652-98-3608,Scientist,109545.63,,6,3,13,0,,19.7062176,16,12.55,1,Standard,86.54,33.58718246,17 Years and 2 Months,Yes,0,742.1707575,Low_spent_Medium_value_payments,475.2094925,0,0.3672,1.5668,-0.6519,1.0663,0.2797 +0x2499d,CUS_0xdcb,August,55,646-08-1772,Developer,11680.31,,3,4,13,2,"Credit-Builder Loan, and Mortgage Loan",20.45160638,16,3.51,3,_,58.64,36.53340222,22 Years and 11 Months,No,122.6007797,127.464986,Low_spent_Small_value_payments,264.4072761,0,-1.2226,-1.1713,1.0475,0.4982,-1.0855 +0x249a9,CUS_0xc59d,August,41,233-15-6589,Manager,22648.88,,6,6,10,100,"Mortgage Loan, and Home Equity Loan",10.29583371,8,7.75,4,Standard,1414.75,34.12308378,19 Years and 4 Months,No,28.93580923,215.6190284,!@9#%8,205.3858291,0,0.7751,1.1226,-1.0309,0.9474,0.7169 +0x249b5,CUS_0x4844,August,21,621-93-4258,Musician,59930.64,4988.22,6,7,33,4,"Not Specified, Not Specified, Personal Loan, and Auto Loan",46.96827989,23.51706783,13.43,9,Bad,2639.399317,34.1888299,10 Years and 0 Months,Yes,194.1424747,233.189783,!@9#%8,331.4897424,0,1.5887,-0.7556,1.0073,-0.254,0.9914 +0x249c1,CUS_0xb5ea,August,28,447-46-9385,Lawyer,30628.83,,4,5,20,2,"Student Loan, and Home Equity Loan",11.58587255,7,7.85,9,_,181.03,27.54938251,12 Years and 6 Months,Yes,45.32847462,298.4354547,Low_spent_Small_value_payments,178.8763207,0,1.7564,1.0054,0.6207,0.9213,-0.8327 +0x249cd,CUS_0x82d5,August,34,850-80-9855,Media_Manager,55163.82,,10,9,29.95700519,6,"Payday Loan, Auto Loan, Student Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",,24.96224783,16.72,10,Bad,4808.887658,30.14865649,,Yes,1510.988549,,Low_spent_Large_value_payments,259.012591,0,-1.3792,-0.5261,-0.1583,-1.2853,-0.3866 +0x249d9,CUS_0xae6a,August,57,944-46-8769,Lawyer,101103.48,7671.987699,3,3,12,2,"Credit-Builder Loan, and Mortgage Loan",,8,3.82,1,_,840.3327654,44.17290171,16 Years and 8 Months,NM,891.1500921,66.73844438,High_spent_Large_value_payments,890.4522801,0,-0.6192,0.5736,1.5256,-1.7514,1.2259 +0x249e5,CUS_0x5746,August,35,384-25-3332,Accountant,175335.44,14383.28667,2,4,7,3,"Auto Loan, Credit-Builder Loan, and Personal Loan",9.945575985,9,11.43,4,_,1160.83,29.84399964,27 Years and 4 Months,No,312.9191139,257.0905434,High_spent_Large_value_payments,1108.319009,0,-0.0194,-1.1617,0.5447,0.2416,-1.6491 +0x249f1,CUS_0x8b26,August,19,054-74-2220,Architect,30228.82,2406.068333,7,7,18,8,"Personal Loan, Student Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, and Not Specified",34.03118933,18.12873417,5.51,10,Bad,1602.933113,27.38519174,13 Years and 2 Months,Yes,131.5607132,99.80761798,High_spent_Medium_value_payments,259.2385021,0,-0.0923,-0.6458,0.3304,-0.6945,-0.6652 +0x249fd,CUS_0x8a40,August,26,599-33-5668,Accountant,17984.35,1574.695833,8,5,34.06745738,6,"Credit-Builder Loan, Personal Loan, Student Loan, Payday Loan, Personal Loan, and Not Specified",,21.31317239,25.97,6,Bad,5076.941622,40.15154566,5 Years and 3 Months,Yes,76.86048911,,Low_spent_Small_value_payments,187.0143381,0,2.0992,-0.2931,0.0192,-1.582,-0.7029 +0x24a09,CUS_0x26ff,August,18,539-95-4727,Musician,9844.05,,5,6,18,3,"Home Equity Loan, Credit-Builder Loan, and Payday Loan",20.10598666,15,5.1,10,_,1679.05,24.51025719,8 Years and 10 Months,Yes,23.26682119,,High_spent_Large_value_payments,292.4848106,0,0.131,-1.7427,-0.6989,0.1987,0.1269 +0x24a15,CUS_0x4a96,August,29,347-24-2777,Media_Manager,42832.16,3786.346667,0,4,5,2,"Auto Loan, and Mortgage Loan",,2,6.86,6,Good,565.03,35.75979989,16 Years and 10 Months,No,66.18222802,268.6839402,Low_spent_Small_value_payments,333.7684985,0,-0.7322,2.2038,0.0282,0.21,0.6886 +0x24a21,CUS_0x11d9,August,45,548-26-8600,Scientist,87538.24,6183.897312,2,4,3,0,,4.019820956,6,4.6,2,_,38.28664564,30.91408082,25 Years and 3 Months,No,955.9560214,265.6960104,High_spent_Small_value_payments,738.1257662,0,-0.6481,0.3406,1.7916,-0.1811,-0.3787 +0x24a2d,CUS_0x754e,August,25,359-07-6992,Musician,19028.33,,1,7,12,0,,,1.16376282,0.57,4,Good,524.6592168,39.85895755,24 Years and 6 Months,No,0,,Low_spent_Medium_value_payments,347.9905977,0,-2.0686,1.1053,0.7851,0.268,-0.7106 +0x24a39,CUS_0xf70,August,33,738-73-8462,Engineer,75916.96,,6,5,14,4,"Auto Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",24.04400732,17,6.6,4,Standard,368.59,31.91159168,13 Years and 0 Months,Yes,27749,116.2375134,High_spent_Large_value_payments,484.2500711,0,1.3298,0.6589,-1.2631,-1.33,-0.4521 +0x24a45,CUS_0x104f,August,20,264-84-8069,_______,11336.835,992.73625,4,6,14,6,"Auto Loan, Payday Loan, Student Loan, Auto Loan, Auto Loan, and Personal Loan",,19,16.44,7,_,177.98,37.7174566,,NM,35.56273086,,Low_spent_Small_value_payments,219.913544,0,0.2205,-0.5955,0.1883,1.5794,0.0176 +0x24a51,CUS_0x32cc,August,43,707-77-3231,Teacher,31846.76,,2,4,7,2,"Student Loan, and Credit-Builder Loan",2.889852393,6,11.95,4,Good,767.0492326,35.5180209,16 Years and 0 Months,No,27.4078872,,Low_spent_Large_value_payments,331.3674407,0,-0.1866,-0.393,-0.7771,-0.3638,-1.3464 +0x24a5d,CUS_0x674a,August,25,009-00-5894,Musician,70328.66,5682.721667,0,1,8,4,"Student Loan, Personal Loan, Home Equity Loan, and Mortgage Loan",,11,3.06,225,Good,933.6806912,37.46105419,,No,223.7227251,,High_spent_Medium_value_payments,511.962049,0,-0.7541,-0.6786,-1.514,-1.8822,-0.3808 +0x24a69,CUS_0x939,August,34,785-29-7879,Writer,29491.38,,8,9,21.88954781,7,"Not Specified, Student Loan, Payday Loan, Home Equity Loan, Not Specified, Student Loan, and Not Specified",,11,19.22,14,_,1593.63,31.80972691,14 Years and 5 Months,Yes,1419.78194,,Low_spent_Large_value_payments,181.0055373,0,-0.5865,0.2798,-1.3357,0.0846,0.9929 +0x24a75,CUS_0x5a1b,August,53,919-68-5823,Mechanic,14709.295,969.7745833,1,6,11,2,"Home Equity Loan, and Student Loan",0,2,18.29,7,Good,557.78,30.34962992,20 Years and 5 Months,No,23875,,Low_spent_Small_value_payments,251.3348717,0,-1.3262,-0.8612,1.2509,-1.5365,2.0532 +0x24a81,CUS_0x8f4f,August,18,981-31-5070,Journalist,7171.26,807.605,6,9,23.06745738,2,"Home Equity Loan, and Personal Loan",38.88327994,26.14410672,12.81,11,Bad,3136.342002,33.72284582,16 Years and 11 Months,Yes,7.303131515,75.46978087,Low_spent_Medium_value_payments,251.2672997,0,0.5797,-0.1191,-0.8853,0.9745,-2.1594 +0x24a8d,CUS_0x54d4,August,18,673-52-2711,Scientist,40127.74,3095.978333,9,5,16,7,"Not Specified, Not Specified, Auto Loan, Mortgage Loan, Not Specified, Debt Consolidation Loan, and Not Specified",29.96827359,20.26671143,11.52,9,Standard,2888.499914,29.40508006,13 Years and 5 Months,Yes,226.6997873,145.6922892,Low_spent_Small_value_payments,227.2057568,0,-1.3675,-0.6633,0.4048,0.6475,-2.1084 +0x24a99,CUS_0x2baf,August,37,909-55-5064,Mechanic,61451.04,,6,5,11,5,"Home Equity Loan, Credit-Builder Loan, Not Specified, Auto Loan, and Not Specified",30.7533387,22.6790211,16.05,10,Standard,92.47232728,34.455763,14 Years and 8 Months,Yes,80768,,Low_spent_Small_value_payments,94.19445176,0,0.2669,1.6554,0.0117,-0.0934,1.191 +0x24aa5,CUS_0x57c9,August,22,207-26-3245,Doctor,97034.96,,3,3,11,5,"Auto Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, and Payday Loan",25.41973756,18,24.3,8,Standard,86.68,24.50571569,12 Years and 8 Months,Yes,246.5296936,769.72001,Low_spent_Small_value_payments,56.57496301,0,0.6623,-0.6761,-1.0145,0.0693,2.1129 +0x24ab1,CUS_0xb91a,August,36,047-64-4774,Developer,67255.6,,4,6,3.288361749,4,"Payday Loan, Student Loan, Mortgage Loan, and Debt Consolidation Loan",4.995015516,7.948954662,2.64,6,Good,138.1545988,28.26658975,22 Years and 9 Months,No,133.7709116,,Low_spent_Medium_value_payments,392.8935598,0,-0.1427,-1.125,0.7224,-0.7492,2.0319 +0x24abd,CUS_0xbca6,August,25,202-37-4701,Lawyer,35239.54,,9,6,17.06745738,9,"Student Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, Personal Loan, Auto Loan, Auto Loan, and Credit-Builder Loan",39.98895538,26.43961215,26.75,9,Bad,3707.443198,29.51830631,10 Years and 4 Months,Yes,13431,370.3398187,Low_spent_Small_value_payments,0,0,0.1551,0.3198,-2.3257,-0.9085,-0.1262 +0x24ac9,CUS_0xb227,August,34,700-18-0385,Manager,26498.2,,7,3,14,4,"Not Specified, Credit-Builder Loan, Home Equity Loan, and Credit-Builder Loan",25.78702936,17,3.93,5,_,16.45,38.07718832,29 Years and 5 Months,No,47.86723595,10000,High_spent_Small_value_payments,348.2346575,0,-0.35,1.3233,0.557,-0.379,0.817 +0x24ad5,CUS_0x74f7,August,49,501-19-1690,Architect,112331.04,9247.92,4,4,7.288361749,0,Home Equity Loan,12.26670356,12,17.82,1,Good,1311,43.55659722,29 Years and 11 Months,No,89.817882,515.3012062,High_spent_Large_value_payments,979.6103728,0,-1.1701,-0.1342,0.6048,0.4731,-0.0395 +0x24ae1,CUS_0x9f5c,August,27,789-40-9271,Manager,60584.76,5124.73,8,5,24,5,"Credit-Builder Loan, Student Loan, Credit-Builder Loan, Payday Loan, and Personal Loan",,20.38252557,15.52,9,Standard,2680.406479,31.19152047,,Yes,189.14701,73.63457473,High_spent_Large_value_payments,489.6914153,0,0.6107,-1.0802,-0.7838,0.117,0.5832 +0x24aed,CUS_0x56a,August,51,220-64-6883,Lawyer,30302.97,2621.2475,3,5,8.288361749,0,,11.59632605,12,11.41,0,Standard,295.5401862,30.85508071,,Yes,0,,High_spent_Large_value_payments,449.3664055,0,-1.6311,0.7756,0.944,-1.6093,0.8397 +0x24af9,CUS_0xd3a,August,25,442-29-0102,Teacher,34599.8,3130.316667,8,4,16,3,"Personal Loan, Home Equity Loan, and Student Loan",,21.05418982,16.53,5,Standard,919.5520862,35.63140675,6 Years and 2 Months,Yes,82.51668928,150.7288877,High_spent_Small_value_payments,339.7860897,0,-1.1057,0.352,0.3504,-1.202,0.602 +0x24b05,CUS_0x2da6,August,30,427-69-8844,Doctor,13672.2,,7,5,14.06745738,1,Auto Loan,28.05781189,19,12.12,8,Standard,1643.090954,31.47129815,33 Years and 4 Months,Yes,10.26020004,159.5854056,Low_spent_Small_value_payments,212.4691064,0,-0.1364,2.8156,-0.4456,0.4091,-0.5826 +0x24b11,CUS_0xbe2,August,45,035-96-8957,Architect,171613.6,14154.13333,5,3,4.288361749,0,,2.379190811,5,2.75,1,_,693.4295301,34.93456986,28 Years and 5 Months,No,0,737.1451854,High_spent_Small_value_payments,1390.737797,0,-0.3162,1.848,-0.8336,0.5977,-0.7182 +0x24b1d,CUS_0x75f0,August,31,649-62-3982,Journalist,14058.455,1205.537917,3,6,6,0,,21.6637041,19,15.67,11,Standard,1423.08,31.79791093,29 Years and 4 Months,Yes,0,,Low_spent_Small_value_payments,258.5238221,0,0.7586,0.1519,-0.3731,1.1526,0.8554 +0x24b29,CUS_0x2ad4,August,35,798-47-7765,Teacher,11038.375,,7,6,10,1,Student Loan,19.90801581,14.07870583,10.94,2,Standard,491.4672351,29.50100163,21 Years and 11 Months,No,4.713183572,23.64013061,Low_spent_Medium_value_payments,329.3331441,0,0.1162,0.4857,1.2804,-0.3475,0.3937 +0x24b35,CUS_0x2f8c,August,52,923-76-3008,Architect,30918.82,2780.568333,0,5,13.06745738,0,,,9.055144546,-0.39,3,Good,1840.923995,27.02769535,31 Years and 3 Months,No,0,81.86315782,High_spent_Small_value_payments,429.4733876,0,0.4731,-0.723,0.8713,-0.8307,-0.4419 +0x24b41,CUS_0x8fee,August,53,317-51-1283,Doctor,37201.06,,0,5,2,2,"Payday Loan, and Student Loan",,0,2.99,4,Good,518.13,39.69368655,27 Years and 8 Months,No,37.22039256,186.0618659,Low_spent_Small_value_payments,370.4265749,0,-0.0137,-0.428,0.506,1.084,-1.3308 +0x24b4d,CUS_0x99b9,August,24,645-19-3305,Media_Manager,77597.7,,4,5,2.288361749,4,"Student Loan, Payday Loan, Payday Loan, and Auto Loan",4.720132771,7,6.03,7,Good,349.4887646,40.77666951,31 Years and 3 Months,No,225.2782316,499.5225387,High_spent_Large_value_payments,608.3890273,0,0.0811,-0.0335,-0.9598,-1.7641,-0.2495 +0x24b59,CUS_0x5ee8,August,44,105-87-9069,Scientist,113402.79,9707.2325,3,7,2,2,"Student Loan, and Payday Loan",8.218848939,8.462638734,6.94,,Good,193.724498,29.9304645,28 Years and 9 Months,No,156.6744409,244.6878785,!@9#%8,809.3609306,0,0.9625,2.2169,-0.7321,-1.0012,0.3084 +0x24b65,CUS_0x9165,August,45,459-75-6944,Accountant,138873.28,11375.77333,2,3,2.288361749,2,"Mortgage Loan, and Auto Loan",0,1,3,3,_,719.3,38.61779659,28 Years and 3 Months,No,149.6844077,1038.355837,High_spent_Small_value_payments,629.4745497,0,0.347,0.3769,0.6314,0.1903,0.4125 +0x24b71,CUS_0x6992,August,20,460-46-3317,Teacher,79783.6,6426.633333,5,4,15,3,"Student Loan, Personal Loan, and Home Equity Loan",,9,15.6,10,Standard,225.23,25.13638957,31 Years and 6 Months,Yes,131.6595261,114.5197879,High_spent_Large_value_payments,636.4840194,0,0.0646,-0.0749,-1.5161,-2.5756,-1.8157 +0x24b7d,CUS_0x1883,August,41,#F%$D@*&8,Lawyer,61238.32,5006.193333,10,10,30,2,"Mortgage Loan, and Student Loan",32.81485312,23.72090764,6.74,10,_,2174.238595,28.53485653,15 Years and 0 Months,Yes,52.36188947,189.8737601,Low_spent_Large_value_payments,528.3836838,0,1.0089,-0.752,2.0865,-0.5737,-0.4801 +0x24b89,CUS_0x8e4d,August,48,112-28-0565,Entrepreneur,31953.03,,8,5,8,6,"Credit-Builder Loan, Personal Loan, Payday Loan, Not Specified, Not Specified, and Credit-Builder Loan",11.14933882,10,9.09,11,_,347.7248639,28.72807878,15 Years and 9 Months,Yes,109.7659695,45.05219783,High_spent_Large_value_payments,341.1405185,0,-0.4161,0.9204,-0.5761,-0.9798,1.0295 +0x24b95,CUS_0x7720,August,20,175-17-7561,Scientist,33426.96,2533.58,10,6,34,7,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Not Specified, Not Specified, Credit-Builder Loan, and Debt Consolidation Loan",47.2964422,27,1.79,8,Bad,1432.3,30.7053943,18 Years and 3 Months,Yes,187.191253,97.44942773,High_spent_Small_value_payments,228.7173193,0,1.495,-0.4892,0.0287,-0.4387,-0.0868 +0x24ba1,CUS_0x899,August,22,797-96-0406,Journalist,73057.16,,4,6,32,2,"Auto Loan, and Not Specified",24.58353852,16.42112813,10,14,Standard,2924.033633,31.46398258,,Yes,91.35418752,391.3986767,High_spent_Small_value_payments,377.0568025,0,1.0538,0.7301,-0.7764,0.4669,1.3164 +0x24bad,CUS_0x106f,August,55,517-96-1022,Developer,134035.08,,0,5,9.288361749,2,"Home Equity Loan, and Mortgage Loan",4.541209681,7,5.32,8,Good,687.5346082,30.20796447,24 Years and 11 Months,No,143.483732,,Low_spent_Medium_value_payments,171.4367576,0,-2.3758,-0.7713,-1.5244,0.021,0.5999 +0x24bb9,CUS_0xbf6b,August,33,948-73-3405,Lawyer,38011.72,3127.643333,7,6,8,4,"Payday Loan, Student Loan, Personal Loan, and Debt Consolidation Loan",,14,19.04,10,Standard,1477.54,24.10687956,,Yes,95.23128454,76.5070181,High_spent_Medium_value_payments,391.0260307,0,-0.7755,2.1044,-0.0423,-0.2978,0.1651 +0x24bc5,CUS_0x648c,August,18,677-13-6237,Doctor,75305.44,6427.453333,9,7,34,7,"Not Specified, Mortgage Loan, Auto Loan, Not Specified, Personal Loan, Student Loan, and Mortgage Loan",47.68630577,27,19.8,13,Bad,3517.23,22.63292196,12 Years and 11 Months,Yes,434.1300726,508.415784,Low_spent_Medium_value_payments,,0,0.3542,0.8238,0.8784,-0.3337,0.0257 +0x24bd1,CUS_0x437a,August,46,599-93-4850,Entrepreneur,80966.82,6680.235,8,4,2654,4,"Mortgage Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",12.61201169,10,2.02,6,Standard,306.3158446,23.92691595,17 Years and 0 Months,No,207.0684258,730.3421294,Low_spent_Medium_value_payments,89.06337717,0,-0.008,-0.2848,-0.6871,1.1849,1.3735 +0x24bdd,CUS_0x83eb,August,49,920-78-1436,_______,129417.27,10857.7725,0,7,9.288361749,2,"Student Loan, and Payday Loan",0,0,0.89,1377,Good,701.4931684,33.30032631,24 Years and 3 Months,No,60997,1128.692077,Low_spent_Large_value_payments,598.5156232,0,-0.7055,0.2752,-1.186,-2.4972,1.522 +0x24be9,CUS_0x5964,August,26,649-82-4625,Scientist,32810.76,,6,10,19.06745738,9,"Personal Loan, Personal Loan, Mortgage Loan, Home Equity Loan, Payday Loan, Personal Loan, Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,16,19.08,,Bad,4452.540954,38.80634163,4 Years and 3 Months,Yes,196.7778976,171.3282095,Low_spent_Medium_value_payments,183.5966049,0,-1.2625,-0.2849,0.8387,-1.4374,1.115 +0x24bf5,CUS_0xbe4d,August,27,676-67-1298,Entrepreneur,71738.16,5820.18,7,5,16,8,"Not Specified, Credit-Builder Loan, Home Equity Loan, Debt Consolidation Loan, Home Equity Loan, Personal Loan, Debt Consolidation Loan, and Not Specified",,22,29.51,10,_,4320.49,35.3544887,5 Years and 10 Months,Yes,446.3667146,,Low_spent_Large_value_payments,120.1037494,0,2.6811,0.1294,-0.5001,-0.3589,1.3855 +0x24c01,CUS_0x30dd,August,48,759-26-2501,Accountant,42940.26,3828.355,3,7,2,1,Not Specified,17.12429087,,6.84,3,Good,81.52066676,38.19779287,18 Years and 5 Months,No,34.67926703,331.1128624,Low_spent_Small_value_payments,345.862693,0,0.5261,-0.101,-0.2558,-1.3746,1.4362 +0x24c0d,CUS_0x9394,August,35,253-99-1738,Manager,31503.24,2911.27,0,5,6,0,,11.50697797,9,7.47,5,Good,628.79,27.46427303,32 Years and 5 Months,No,0,218.4309136,Low_spent_Small_value_payments,362.6960864,0,-0.4089,-0.8496,-0.0919,-0.5156,-0.3258 +0x24c19,CUS_0xa2f9,August,20,549-28-7620,_______,101771.67,8245.9725,5,6,12,7,"Payday Loan, Credit-Builder Loan, Payday Loan, Student Loan, Debt Consolidation Loan, Not Specified, and Payday Loan",,7,16.25,11,Standard,1059.76,37.17493092,7 Years and 9 Months,Yes,378.5462036,,High_spent_Medium_value_payments,563.3790975,0,-0.7748,2.3843,-0.9694,1.005,-1.4096 +0x24c25,CUS_0x9a3b,August,28,363-28-8264,Entrepreneur,95031.84,,3,7,16.28836175,4,"Credit-Builder Loan, Payday Loan, Personal Loan, and Auto Loan",13.92357434,13,7,3,Standard,573.91,31.635198,21 Years and 2 Months,NM,167.4599885,,!@9#%8,153.5440613,0,1.1766,-0.9944,-1.1928,0.1126,1.522 +0x24c31,CUS_0xb019,August,48,328-52-8554,Entrepreneur,28161.85,2422.820833,8,5,6,4,"Not Specified, Home Equity Loan, Student Loan, and Auto Loan",19.18130946,13,7.72,5,Standard,699.69,26.4845604,,Yes,93.50672065,10000,Low_spent_Small_value_payments,146.6457426,0,2.6408,-0.0166,-0.1294,1.0824,-0.5506 +0x24c3d,CUS_0xb5da,August,28,290-48-5830,Scientist,57697.74,4683.145,7,6,6,1,Credit-Builder Loan,,17,19.14,3,_,550.27,37.61682211,27 Years and 6 Months,Yes,40.93886145,160.4440117,High_spent_Medium_value_payments,516.9316268,0,0.6479,-0.2463,-0.9535,0.1834,-1.0328 +0x24c49,CUS_0x8bf2,August,41,910-16-0107,Media_Manager,46360.11,3901.3425,3,3,27,2,"Student Loan, and Mortgage Loan",,20.38654812,17.2,8,Standard,1884.676977,34.00952319,9 Years and 8 Months,Yes,48.5018998,155.0796516,High_spent_Medium_value_payments,436.5526986,0,1.727,0.7592,0.3102,1.9422,0.1402 +0x24c55,CUS_0x4c5,August,38,557-60-6458,Mechanic,86142.96,,0,1,6.288361749,2,"Mortgage Loan, Mortgage Loan, and Not Specified",4.462346276,8,1.68,1,_,0.209452333,27.96975466,21 Years and 6 Months,No,115.8920371,587.0897207,High_spent_Large_value_payments,701.253349,0,-0.7224,0.5744,1.192,-0.2094,-0.6479 +0x24c61,CUS_0xa4e0,August,31,567-89-8331,Teacher,14899.97,1414.664167,4,3,15.06745738,7,"Mortgage Loan, Payday Loan, Student Loan, Home Equity Loan, Debt Consolidation Loan, Mortgage Loan, and Mortgage Loan",27.01330472,17,8.99,9,Standard,2684.770954,28.30860411,16 Years and 9 Months,Yes,51.51809829,,Low_spent_Small_value_payments,248.4635445,0,0.0602,-0.2834,-3.0224,1.3761,1.0746 +0x24c6d,CUS_0x6ff5,August,80,699-57-0597,Entrepreneur,43856.38,3870.698333,2,5,6,0,,8.522889894,10,6.69,1,Good,855.8819076,29.25938932,16 Years and 0 Months,No,42213,90.17093449,High_spent_Small_value_payments,565.8323465,0,-1.0651,-0.4843,-0.1217,0.9426,1.4967 +0x24c79,CUS_0x6f7b,August,18,930-47-0460,Doctor,77456.76,6649.73,6,5,16,100,"Home Equity Loan, Auto Loan, Auto Loan, Auto Loan, Mortgage Loan, Not Specified, Not Specified, Auto Loan, and Student Loan",19.44855906,,22.92,15,Bad,3928.73,26.13947699,1 Years and 10 Months,Yes,425.748138,,High_spent_Large_value_payments,351.9534519,0,0.1331,1.3057,-0.9687,0.8015,-0.845 +0x24c85,CUS_0x2cad,August,45,304-15-3108,Entrepreneur,36592.92,2904.41,8,7,9,2,"Not Specified, and Debt Consolidation Loan",22.54783729,13,4.98,4,Standard,1301.92,25.00414042,23 Years and 3 Months,Yes,43.28294047,54.95079476,High_spent_Medium_value_payments,442.2072648,0,2.1906,1.773,-0.5598,-0.0072,-0.9454 +0x24c91,CUS_0x43be,August,42,976-14-9766,Accountant,16511.62,1362.968333,8,9,33.95700519,8,"Payday Loan, Debt Consolidation Loan, Debt Consolidation Loan, Personal Loan, Payday Loan, Student Loan, Debt Consolidation Loan, and Payday Loan",40.46108829,25,23.88,15,Bad,5044.690954,37.3487417,4 Years and 10 Months,Yes,1428.929606,124.5708647,!@9#%8,151.7459938,0,0.1154,-1.4255,-0.7567,-1.3041,-0.6185 +0x24c9d,CUS_0x51b2,August,21,403-71-9451,Journalist,39685.92,,10,6,19.06745738,8,"Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, Payday Loan, Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",,19.48631178,1.64,10,Bad,4343.954959,38.11798058,11 Years and 8 Months,Yes,210.9578749,,Low_spent_Large_value_payments,111.0430414,0,-0.3043,-0.0121,-1.3145,0.7918,-0.6671 +0x24ca9,CUS_0x812d,August,44,607-70-4191,Mechanic,20940.42,1812.035,7,6,18,6,"Personal Loan, Home Equity Loan, Home Equity Loan, Mortgage Loan, Not Specified, and Payday Loan",90,3051.529843,18.03,9,Standard,2532.409286,25.4348884,6 Years and 2 Months,Yes,69.26845468,205.0557402,Low_spent_Small_value_payments,196.8793051,0,0.2527,-1.2577,-0.5984,-1.9513,1.0191 +0x24cb5,CUS_0xb637,August,32,131-37-9493,Engineer,101896.71,8359.3925,3,5,8.288361749,2,"Debt Consolidation Loan, and Debt Consolidation Loan",19.85498539,17,19.49,4,_,1037.16,25.07223061,26 Years and 6 Months,NM,152.965851,887.020353,Low_spent_Medium_value_payments,495.890507,0,-0.7398,0.389,-1.739,0.8027,-0.507 +0x24cc1,CUS_0x77bf,August,46,454-70-8973,Entrepreneur,83158.26,,1,2,9.288361749,4,"Home Equity Loan, Personal Loan, Not Specified, and Personal Loan",5.98904056,9,,4,Good,212.9250906,33.51845402,22 Years and 9 Months,No,186.8775667,1068.873199,Low_spent_Small_value_payments,231.0895873,0,-1.1456,-0.7366,-0.0184,1.0164,-0.2853 +0x24ccd,CUS_0x289e,August,36,064-61-5717,Writer,27635.39,,5,3,12,2,"Mortgage Loan, and Not Specified",26.48992391,18,18.95,,Standard,1022.51,25.57182931,28 Years and 8 Months,Yes,25.50513852,,Low_spent_Small_value_payments,184.263239,0,-1.4653,-1.5203,-0.0581,1.1561,-0.2678 +0x24cd9,CUS_0x43bf,August,44,233-99-4568,Lawyer,42671.51,3731.959167,1,1,9.288361749,4,"Personal Loan, Debt Consolidation Loan, Not Specified, and Student Loan",11.20421077,11,7.28,5,Good,115.7240083,34.94227325,19 Years and 2 Months,No,87.77740256,483.3158027,High_spent_Large_value_payments,469.3155983,0,1.2289,-0.5766,0.989,0.2301,1.1162 +0x24ce5,CUS_0x80ed,August,25,#F%$D@*&8,Teacher,86262.2,7188.516667,0,7,5,2,"Debt Consolidation Loan, and Payday Loan",,,10.84,2,Good,738.7104894,40.88476934,21 Years and 9 Months,No,127.025986,330.7684078,Low_spent_Medium_value_payments,541.0572729,0,1.1365,-1.311,-1.7912,-0.5853,0.4823 +0x24cf1,CUS_0x49d9,August,32,558-06-8197,Developer,19170.73,,3,5,8,4,"Auto Loan, Debt Consolidation Loan, Personal Loan, and Credit-Builder Loan",,,11.35,4,Good,285.8163838,37.20983799,20 Years and 4 Months,No,58.04807245,,Low_spent_Small_value_payments,199.1545657,0,1.3786,-1.4595,0.7404,0.127,-0.3035 +0x24cfd,CUS_0x206b,August,24,600-69-4533,Entrepreneur,47641.53,,7,7,28,7,"Home Equity Loan, Home Equity Loan, Payday Loan, Personal Loan, Student Loan, Mortgage Loan, and Payday Loan",50.57054218,27.9620436,4.94,9,Bad,2377.546192,26.09342917,15 Years and 6 Months,Yes,161.7476854,67.0137237,High_spent_Large_value_payments,430.6513409,0,0.7433,0.3926,-0.0287,0.0724,1.986 +0x24d09,CUS_0xb19f,August,18,479-83-5546,Developer,8884.825,,3,5,9,3,"Debt Consolidation Loan, Personal Loan, and Not Specified",10.61016215,10,8.71,11,Standard,446.31,36.4415055,15 Years and 10 Months,Yes,20.7603624,,Low_spent_Medium_value_payments,286.5216872,0,1.2031,0.5072,-0.6648,0.8177,-1.4396 +0x24d15,CUS_0x2b3b,August,29,#F%$D@*&8,_______,58731.76,4599.313333,5,3,14,100,"Not Specified, and Auto Loan",15.28834245,,12.92,4,_,1229.65,25.36889181,24 Years and 8 Months,Yes,79.22122976,154.8942963,Low_spent_Medium_value_payments,505.8158073,0,-0.5388,0.7041,0.5852,-1.1588,-0.5947 +0x24d21,CUS_0xb369,August,29,293-45-5704,Media_Manager,85677.3,,1,5,7.288361749,0,Debt Consolidation Loan,0,2,8.66,2,Good,415.77,23.84258469,29 Years and 9 Months,No,49.67208144,10419.93746,High_spent_Medium_value_payments,701.9886821,0,-0.8725,-0.0836,-0.2487,0.4129,0.5247 +0x24d2d,CUS_0xb005,August,42,211-68-7344,_______,40332.61,3174.797532,1,4,1,3,"Auto Loan, Debt Consolidation Loan, and Mortgage Loan",0.683525271,3,8.32,4,_,412.7731818,33.78888058,27 Years and 2 Months,No,19319,,High_spent_Medium_value_payments,389.7220923,0,-0.523,0.5924,-1.8906,-0.9388,1.875 +0x24d39,CUS_0x884,August,30,885-08-1367,Entrepreneur,10360.915,962.4095833,6,5,29,3,"Not Specified, Home Equity Loan, and Personal Loan",28.71452936,21,9.3,9,Bad,1781.61,38.55248218,13 Years and 3 Months,Yes,53113,45.62947235,High_spent_Small_value_payments,293.0632589,0,-0.0818,-0.704,0.6247,0.3036,-0.8004 +0x24d45,CUS_0x1a5c,August,40,691-48-1115,_______,10585.1,590.0916667,8,4,6,4,"Auto Loan, Payday Loan, Personal Loan, and Auto Loan",12.06076289,8,8.85,5,Standard,0.56,31.22515097,13 Years and 0 Months,Yes,29.54163737,,Low_spent_Small_value_payments,288.0561259,0,1.0216,-0.9913,0.6327,0.2247,1.1043 +0x24d51,CUS_0xa59,August,37,566-36-5614,Journalist,20961.27,,11,11,17.06745738,3,"Home Equity Loan, Not Specified, and Payday Loan",37.16821393,20.21858981,7.12,13,Standard,2352.946335,31.26137038,16 Years and 6 Months,Yes,43.21503067,69.85557032,!@9#%8,293.5863611,0,-1.3402,-1.2195,0.6071,-1.0131,-0.8415 +0x24d5d,CUS_0x269c,August,27,100-45-1929,Teacher,77874.09,,8,3,16,2,"Auto Loan, and Debt Consolidation Loan",27.59042294,20,11.77,12,Standard,127.88,35.39562062,30 Years and 4 Months,Yes,99.6677271,434.5551006,Low_spent_Small_value_payments,406.0279223,0,0.0309,-0.2631,-0.5658,0.0523,-0.2128 +0x24d69,CUS_0x38b6,August,28,698-45-9293,Musician,39447.48,3393.29,5,7,32.06745738,100,"Credit-Builder Loan, Personal Loan, Home Equity Loan, Home Equity Loan, Not Specified, and Auto Loan",27.44405073,18.19576992,9.41,8,Standard,2361.925296,26.92979922,14 Years and 11 Months,Yes,194.4222374,121.2531463,High_spent_Medium_value_payments,246.9333283,0,-0.1302,0.0232,1.3506,0.5813,0.1119 +0x24d75,CUS_0xbeb8,August,35,403-31-1021,Entrepreneur,44378.19,3986.1825,8,7,23.06745738,7,"Personal Loan, Personal Loan, Auto Loan, Not Specified, Home Equity Loan, Not Specified, and Home Equity Loan",39.54135159,19.17903201,27.16,12,_,4734.20413,40.67156611,13 Years and 10 Months,Yes,185.4945101,,Low_spent_Small_value_payments,149.2898549,0,-0.3724,-0.1167,0.1441,-0.9571,0.7914 +0x24d81,CUS_0x917d,August,38,149-85-6915,Accountant,14871.095,,3,1299,7,2,"Home Equity Loan, and Mortgage Loan",0,0,8.62,5,Good,658.6772588,29.78795084,17 Years and 2 Months,No,23.61909191,,Low_spent_Medium_value_payments,294.4725463,0,-1.7486,0.6955,0.0892,0.2111,-0.5237 +0x24d8d,CUS_0x67e7,August,41,201-32-8180,Scientist,36454.03,,4,5,9,2,"Credit-Builder Loan, and Personal Loan",11.54762846,11.36329607,1.63,2,Standard,782.5821134,28.5911245,27 Years and 3 Months,No,42.51703118,232.2789791,Low_spent_Small_value_payments,309.187573,0,0.4407,-0.938,0.0763,1.1117,1.347 +0x24d99,CUS_0x37a1,August,24,653-47-3837,Entrepreneur,63439.24,5285.603333,5,5,7,3,"Home Equity Loan, Auto Loan, and Home Equity Loan",,16,16.21,5,Standard,1264.268464,40.25421576,21 Years and 3 Months,Yes,84.59565932,11418.10758,Low_spent_Medium_value_payments,324.9596553,0,1.3572,0.3482,0.0692,-1.1774,-1.3546 +0x24da5,CUS_0x1837,August,36,600-87-2067,Musician,34180.94,2685.411667,6,5,20.06745738,7,"Home Equity Loan, Credit-Builder Loan, Not Specified, Debt Consolidation Loan, Credit-Builder Loan, Student Loan, and Payday Loan",33.81425815,,-3.37,10,Bad,3884.132665,26.17872976,,Yes,135.8522951,265.8154695,Low_spent_Small_value_payments,130.1531141,0,0.3084,0.4519,-0.158,-1.1053,-0.3698 +0x24db1,CUS_0x88fd,August,52,#F%$D@*&8,Writer,105842.96,9094.246667,7,7,14.28836175,2,"Home Equity Loan, and Mortgage Loan",6.957932665,8,1.2,5,_,281.1020575,27.1767332,18 Years and 11 Months,No,122.9301817,,!@9#%8,815.7561926,0,-0.0349,0.6791,-1.6707,0.447,1.1412 +0x24dbd,CUS_0x93ad,August,30,146-84-6522,Architect,129605.52,10834.46,3,4,11,1,Auto Loan,5.040578652,4.8446076,1.78,2,Good,1188.966536,33.87233657,21 Years and 3 Months,NM,82.44079386,,High_spent_Medium_value_payments,1058.988544,0,1.0625,-0.4021,1.2823,0.8431,-0.9178 +0x24dc9,CUS_0x9288,August,20,850-92-6811,Scientist,20800.88,,10,10,34.88954781,7,"Payday Loan, Personal Loan, Credit-Builder Loan, Payday Loan, Home Equity Loan, Payday Loan, and Auto Loan",32.61638567,24,15.45,14,Bad,2850.2,34.12268992,3 Years and 2 Months,Yes,1384.362566,70.34646456,!@9#%8,292.5015548,0,0.8087,-0.4874,1.9622,1.96,0.2935 +0x24dd5,CUS_0x386c,August,23,810-66-9223,Media_Manager,88827.66,7456.305,3,1,3.288361749,0,,,8,11.16,0,Good,933.8385659,40.43204723,15 Years and 11 Months,No,0,11426.99659,High_spent_Large_value_payments,902.2742292,0,0.5179,-0.6438,0.0581,0.0909,-0.8308 +0x24de1,CUS_0x9fd8,August,20,162-97-2441,Architect,93089.52,,3,4,17,4,"Debt Consolidation Loan, Student Loan, Not Specified, and Student Loan",,18,13.01,8,Standard,1351.26,29.4008803,12 Years and 5 Months,Yes,295.0837388,212.5967561,High_spent_Medium_value_payments,543.0655051,0,0.8499,0.7471,-0.9868,0.5414,-0.4486 +0x24ded,CUS_0x5260,August,18,853-52-7531,Doctor,77375.4,6648.95,3,7,14,6,"Student Loan, Payday Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",13.31346342,9,11.07,7,Standard,1846.37,30.96095866,16 Years and 5 Months,NM,226.6693302,439.4980562,Low_spent_Large_value_payments,268.7276136,0,0.3017,0.664,-0.2367,-0.6994,1.362 +0x24df9,CUS_0x2e2e,August,46,527-69-0845,Engineer,22387.75,,7,7,15,1,Payday Loan,,11,9.4,4,Standard,133.02,33.85865704,28 Years and 3 Months,No,14.44214871,171.4010292,Low_spent_Large_value_payments,278.0214055,0,0.5927,-0.5745,0.0424,1.2307,0.0794 +0x24e05,CUS_0x8b8e,August,43,112-74-4889,Journalist,43531.82,3844.651667,4,4,6,4,"Auto Loan, Credit-Builder Loan, Home Equity Loan, and Student Loan",24.22832231,19,11.38,9,Standard,1010.08,25.95264512,7 Years and 2 Months,Yes,88.12588071,121.2837978,!@9#%8,425.0554882,0,0.7662,0.9014,1.4386,-0.5206,0.4501 +0x24e11,CUS_0x8d5d,August,38,#F%$D@*&8,Journalist,49965.21,4423.7675,7,6,18.06745738,9,"Personal Loan, Payday Loan, Auto Loan, Personal Loan, Credit-Builder Loan, Student Loan, Auto Loan, Personal Loan, and Not Specified",29.3508402,15,22.75,9,Bad,4072.850954,30.77070631,4 Years and 5 Months,Yes,319.0418663,214.142872,Low_spent_Medium_value_payments,162.4717238,0,-0.6218,-0.8887,1.2831,-1.9628,-0.5719 +0x24e1d,CUS_0x8135,August,32,939-55-7203,Scientist,344983,3451.874167,3,4,0.288361749,2,"Mortgage Loan, Student Loan, and Mortgage Loan",0.024611987,4,1.71,3,Good,234.48,27.38114993,25 Years and 9 Months,No,70.31304039,536.8986165,High_spent_Small_value_payments,417.9132208,0,-1.6808,-1.2896,0.8603,-1.1287,-2.8148 +0x24e29,CUS_0x467e,August,23,142-99-7800,Developer,68289.32,5411.776667,1,7,1,3,"Debt Consolidation Loan, Not Specified, and Not Specified",0,2,5.57,8,Good,889.4029987,34.59648191,26 Years and 6 Months,No,129.8379096,392.6184314,Low_spent_Medium_value_payments,350.9699609,0,-0.862,1.4054,-0.3961,-1.2393,-0.4053 +0x24e35,CUS_0x9117,August,21,120-51-4662,Media_Manager,34493.58,,1,5,6,0,,,12,4.92,0,Good,953.17,39.03369563,32 Years and 8 Months,No,0,118.1696303,High_spent_Small_value_payments,441.5768697,0,-0.1962,-1.8756,0.4496,-0.7845,-0.3879 +0x24e41,CUS_0x5b8,August,44,353-63-3716,Architect,70342.3,,7,6,16,100,"Debt Consolidation Loan, and Payday Loan",14.09326475,10,8.5,5,Standard,180.38,26.85651323,23 Years and 11 Months,Yes,96.62912346,221.6754844,High_spent_Medium_value_payments,515.5812254,0,1.6704,1.7098,0.803,-1.6937,0.7508 +0x24e4d,CUS_0x599e,August,18,370-99-4111,Musician,117785.2,9973.433333,0,1,3,2,"Personal Loan, and Not Specified",0,2,1.75,3,Good,575.0950858,33.20648614,19 Years and 3 Months,No,166.3621587,122.4791664,High_spent_Large_value_payments,964.7327985,0,-0.4197,-2.1751,-2.1367,0.4104,0.3487 +0x24e59,CUS_0x8d01,August,21,859-15-2247,Journalist,34769.69,,2,3,5.288361749,4,"Payday Loan, Credit-Builder Loan, Student Loan, and Home Equity Loan",14.54281445,15,5.88,3,Good,219.87,26.06372092,16 Years and 10 Months,No,109.9993957,,Low_spent_Small_value_payments,170.0557627,0,-0.1631,0.0594,-0.423,0.0315,-0.4864 +0x24e65,CUS_0x6a81,August,31,097-10-6675,Journalist,5505619,,5,3,6,0,,,0,6.79,6,Good,1348.1,30.63826834,31 Years and 2 Months,No,0,186.3344176,Low_spent_Small_value_payments,266.225374,0,-0.7944,1.2059,0.4835,0.1552,-0.6139 +0x24e71,CUS_0x5257,August,26,271-70-0665,Scientist,16934.76,1181.23,4,3,7,5,"Not Specified, Payday Loan, Home Equity Loan, Debt Consolidation Loan, and Payday Loan",20.69699621,13,11.32,7,_,304.61,26.83901113,7 Years and 4 Months,Yes,52.81353784,72.78343927,Low_spent_Small_value_payments,282.5260229,0,-0.7359,1.6509,0.3135,-0.6011,-0.1945 +0x24e7d,CUS_0x45e2,August,25,264-39-4694,Teacher,59683.1,5198.591667,4,3,5,2,"Auto Loan, and Student Loan",29.47075059,22,1.04,3,Standard,121.26,39.08908273,26 Years and 11 Months,No,93.66487502,202.9137483,High_spent_Small_value_payments,483.2805434,0,-0.418,0.5282,1.275,0.1286,-1.6748 +0x24e89,CUS_0x744b,August,18,605-03-2867,Musician,28417.58,,6,8,28.06745738,8,"Payday Loan, Student Loan, Not Specified, Home Equity Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Credit-Builder Loan",,21.15001154,25.6,8,Bad,3773.26331,33.57724563,4 Years and 5 Months,Yes,125.3571225,50.61094542,High_spent_Medium_value_payments,283.8248108,0,1.6027,-0.6336,-1.7764,-0.6889,0.5314 +0x24e95,CUS_0x1521,August,54,#F%$D@*&8,Accountant,16252.91,,1,5,4,2,"Not Specified, and Home Equity Loan",13.07455983,11,3.29,5,Good,1484.51,31.42670532,33 Years and 3 Months,No,19.65352707,,Low_spent_Small_value_payments,258.4171907,0,-1.1935,0.2012,0.7737,0.4273,-0.728 +0x24ea1,CUS_0x613c,August,44,227-22-1686,Entrepreneur,17693.34,1442.445,3,7,15,2,"Debt Consolidation Loan, and Credit-Builder Loan",10.77552344,9,12.08,9,_,1405.95,36.94020676,,Yes,25.28897055,57.29190894,Low_spent_Medium_value_payments,341.6636205,0,-0.3185,1.1134,1.3711,1.5265,0.8337 +0x24ead,CUS_0x9584,August,43,567-56-5957,Journalist,44705.1,3856.425,7,10,19,2,"Not Specified, and Student Loan",21.13218996,14.43535499,11.65,16,Standard,2259.635508,25.55048045,7 Years and 11 Months,Yes,53.02425174,333.6258327,Low_spent_Medium_value_payments,278.9924156,0,-0.8975,1.2437,-0.8507,2.107,0.9571 +0x24eb9,CUS_0xaa9d,August,37,535-11-7065,Manager,32631.54,2765.295,0,1,7,0,,0,2,7.63,3,Good,1013.79,28.0745438,25 Years and 4 Months,NM,66444,149.1049634,Low_spent_Medium_value_payments,407.4245366,0,0.9992,-1.3452,0.0498,-0.9608,1.0606 +0x24ec5,CUS_0x5494,August,52,238-73-8927,Accountant,22332.37,,8,4,13.06745738,1,Credit-Builder Loan,23.26247801,,4.59,2,_,1519.190245,26.29973607,24 Years and 3 Months,No,14.23196248,138.5449319,Low_spent_Small_value_payments,301.205901,0,-0.2614,-1.3452,-0.0364,0.9761,0.3456 +0x24ed1,CUS_0x93a0,August,44,128-55-3371,Entrepreneur,20227.38,1516.615,8,8,29.95700519,6,"Not Specified, Not Specified, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Credit-Builder Loan",41.82335798,21.97158191,2.79,8,Bad,1615.389232,30.4677879,14 Years and 6 Months,Yes,1396.347657,183.8598802,Low_spent_Small_value_payments,140.4035939,0,-0.3638,2.2815,0.9086,-1.0063,-1.4211 +0x24edd,CUS_0x8f34,August,33,390-76-6133,Teacher,32430.34,2917.528333,3,4,14,3,"Credit-Builder Loan, Not Specified, and Credit-Builder Loan",,12,19.42,5,Standard,589.18,38.36959581,18 Years and 6 Months,Yes,65.20849709,100.7087172,High_spent_Medium_value_payments,375.835619,0,-1.7066,0.2285,-2.2335,-0.0287,0.3886 +0x24ee9,CUS_0x3b2b,August,33,300-29-2872,Mechanic,22219.57,,7,5,8,3,"Not Specified, Student Loan, and Credit-Builder Loan",19.20104569,18,13.23,13,_,502.78,27.97275701,5 Years and 10 Months,NM,35.33648089,37.55275796,High_spent_Large_value_payments,335.8738445,0,0.6609,0.1714,1.8027,0.2379,0.6509 +0x24ef5,CUS_0x5b87,August,31,871-60-8862,Scientist,18572.01,1397.6675,5,7,15.06745738,6,"Payday Loan, Not Specified, Student Loan, Payday Loan, Student Loan, and Auto Loan",,17,23.91,10,_,1928.650954,24.01042883,18 Years and 0 Months,NM,73.57903944,,Low_spent_Small_value_payments,181.5543938,0,-1.3872,-0.5702,0.3674,0.5216,-0.7903 +0x24f01,CUS_0x86ea,August,51,026-34-4688,Accountant,59673.22,5200.768333,3,4,11.28836175,2,"Credit-Builder Loan, and Debt Consolidation Loan",4.186234039,7,6,3,Good,5.094863325,35.19882399,,NM,90.7254778,533.3949196,High_spent_Medium_value_payments,577.9288269,0,0.379,0.3199,0.3278,1.2928,-0.7332 +0x24f0d,CUS_0x1ab7,August,34,528-43-8765,Lawyer,58424.97,4893.7475,6,3,17,3,"Credit-Builder Loan, Debt Consolidation Loan, and Home Equity Loan",,24.34187652,10.52,1,_,58.76192626,27.60336287,15 Years and 9 Months,Yes,121.7528953,62.65467129,High_spent_Medium_value_payments,554.9671834,0,0.1678,0.4193,1.2522,-0.6887,1.3207 +0x24f19,CUS_0x7bf9,August,39,225-41-8046,Journalist,18309.76,,8,5,11,6,"Personal Loan, Not Specified, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, and Payday Loan",,16,14.26,,Standard,1911.71084,31.96717262,14 Years and 9 Months,Yes,48.3398179,,High_spent_Large_value_payments,299.5988542,0,-0.0112,-0.121,1.4092,-1.1306,0.5398 +0x24f25,CUS_0x76d1,August,37,802-61-1294,Manager,37578.61,,0,5,5,4,"Home Equity Loan, Payday Loan, Mortgage Loan, and Payday Loan",14.51199358,,6.72,0,Good,855.61,32.15940934,31 Years and 6 Months,No,83.27366398,104.9216168,High_spent_Medium_value_payments,379.7598026,0,0.5792,1.1593,1.0447,1.6483,0.7286 +0x24f31,CUS_0x659f,August,43,632-73-9889,Architect,71980.26,5715.355,4,3,13,4,"Student Loan, Mortgage Loan, Home Equity Loan, and Personal Loan",,22.70651797,1.6,4,Standard,993.0079823,27.18958013,17 Years and 5 Months,No,198.4913809,87.96181988,High_spent_Medium_value_payments,535.0822992,0,-0.0859,-0.464,0.5599,0.0831,-1.8163 +0x24f3d,CUS_0x1a06,August,34,#F%$D@*&8,Manager,24873.1,1848.758333,3,6,8,3,"Auto Loan, Mortgage Loan, and Not Specified",,17,6.65,6,Standard,30.31,32.41380939,5 Years and 9 Months,Yes,39.84069977,206.0474362,Low_spent_Small_value_payments,228.9876974,0,-0.5554,-0.3239,-0.3473,-0.5957,0.3683 +0x24f49,CUS_0x16ee,August,48,538-37-5854,_______,115476.12,9851.01,1,7,5,0,,6.725630852,9.221822405,9.58,0,_,186.3741715,36.59139936,31 Years and 8 Months,No,0,10000,!@9#%8,715.9654889,0,1.9212,0.9898,0.6747,-0.0405,1.627 +0x24f55,CUS_0x79d1,August,23,328-38-2329,_______,16668.96,,6,3,6,0,,19.30347142,12,10.36,193,Standard,1426.06,29.68183534,19 Years and 0 Months,Yes,0,46.8277996,High_spent_Medium_value_payments,326.5802004,0,3.3759,-0.1129,0.8598,0.0681,-0.1382 +0x24f61,CUS_0x271a,August,49,464-54-3890,Musician,21167.555,,2,7,9,3,"Personal Loan, Not Specified, and Credit-Builder Loan",0,1.168408007,5.38,2,Good,1423.126873,31.62559276,30 Years and 4 Months,No,40.33528201,22.81949057,High_spent_Large_value_payments,359.8415191,0,-0.0919,-0.4734,-1.601,-0.5675,0.7138 +0x24f6d,CUS_0x5055,August,53,741-23-2460,Writer,15767.215,1408.934583,5,3,20,0,,23.69902491,19,7.28,5,Standard,1012.39,33.62406335,26 Years and 3 Months,Yes,0,119.2710201,Low_spent_Small_value_payments,311.6224382,0,-1.7184,-0.3733,0.8337,0.0062,-0.6571 +0x24f79,CUS_0xb451,August,31,528-55-1074,Manager,63675.84,5296.32,10,9,24.88954781,8,"Payday Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, Debt Consolidation Loan, Payday Loan, Home Equity Loan, and Credit-Builder Loan",39.72645486,27.77972581,16.09,2001,Bad,4345.935707,33.10531479,7 Years and 6 Months,Yes,1565.678747,240.9608721,Low_spent_Small_value_payments,318.6622995,0,1.2653,1.7716,0.1722,0.1199,0.2365 +0x24f85,CUS_0x4563,August,52,#F%$D@*&8,Media_Manager,52799.82,4183.90801,5,4,1.288361749,0,,,,3.71,4,_,600.5498096,36.80122851,26 Years and 8 Months,No,469.0769901,610.4968961,Low_spent_Small_value_payments,585.6449293,0,0.3332,0.5676,0.2651,0.2535,-1.7184 +0x24f91,CUS_0x6acb,August,45,823-08-6138,Engineer,50733.18,4402.765,9,8,34,3,"Mortgage Loan, Personal Loan, and Not Specified",24.93162783,14.37345375,12.74,14,Standard,2391.736821,33.41604232,12 Years and 4 Months,Yes,74.86666604,135.0711886,Low_spent_Large_value_payments,500.3386454,0,-0.4743,-0.2897,0.0575,-0.6176,0.4934 +0x24f9d,CUS_0xb407,August,50,602-64-4725,Manager,59412.78,5073.065,4,7,14,1,Not Specified,,12.05007667,12.73,3,Standard,1044.021186,37.42035274,27 Years and 5 Months,Yes,37.55694289,373.285466,Low_spent_Small_value_payments,386.4640911,0,0.0939,0.1093,1.3266,-1.1294,0.4751 +0x24fa9,CUS_0xb1bf,August,37,607-43-5085,Musician,65347.32,5244.61,8,7,16,0,,27.64821697,19,17.8,4,Standard,930.85,31.96384514,17 Years and 8 Months,Yes,0,10000,High_spent_Medium_value_payments,716.3768002,0,-0.7829,-0.9887,0.7253,-0.1097,-0.764 +0x24fb5,CUS_0x554,August,43,320-64-2724,Engineer,72196.8,,7,5,18,6,"Mortgage Loan, Auto Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Home Equity Loan",7.498715468,7,11.83,9,Standard,797.53,30.63151535,16 Years and 9 Months,Yes,189.3677919,,High_spent_Medium_value_payments,452.4329689,0,1.442,0.5906,-1.5961,-0.3603,0.1464 +0x24fc1,CUS_0x78f,August,43,351-75-3508,Entrepreneur,12804.965,,3,3,16,2,"Payday Loan, and Personal Loan",10.5837857,11,7.24,7,_,400.6713285,34.22281562,13 Years and 4 Months,NM,11.20303526,45.78346939,!@9#%8,295.8305303,0,-2.8446,0.9505,0.8847,1.7621,-1.2156 +0x24fcd,CUS_0x87cb,August,34,#F%$D@*&8,_______,30620.69,,3,7,10,3,"Credit-Builder Loan, Personal Loan, and Mortgage Loan",16.40142037,,10.46,3,Good,1587.097477,38.94374919,18 Years and 3 Months,No,67.05381892,,High_spent_Small_value_payments,370.0236658,0,-0.4036,-2.3335,-2.17,-0.3504,-0.8176 +0x24fd9,CUS_0x1ec2,August,21,258-93-2064,Scientist,34458.06,3142.505,9,10,30.06745738,5,"Auto Loan, Home Equity Loan, Home Equity Loan, Student Loan, and Payday Loan",,16,25.59,15,Bad,4628.200954,41.44177664,14 Years and 0 Months,Yes,119.6224578,,High_spent_Large_value_payments,359.1141294,0,-0.0529,-1.8728,-0.609,0.2705,0.0754 +0x24fe5,CUS_0x4271,August,26,751-20-4149,Scientist,10498.77,,9,6,29,6,"Debt Consolidation Loan, Mortgage Loan, Auto Loan, Credit-Builder Loan, Home Equity Loan, and Auto Loan",34.20364659,25,27.56,10,Bad,3703.075318,29.3108009,2 Years and 5 Months,Yes,41.07837552,40.02498711,Low_spent_Small_value_payments,282.4442913,0,-1.1718,1.3327,-1.676,0.0443,0.574 +0x24ff1,CUS_0x7438,August,37,485-95-7675,Scientist,119094.64,9803.553333,3,6,15,3,"Not Specified, Personal Loan, and Not Specified",20.31717466,15,,8,_,1082.401846,35.48837077,24 Years and 8 Months,NM,259.6498568,115.3672422,High_spent_Large_value_payments,862.5899497,0,-0.5832,-0.4684,-1.6287,-0.9859,-0.3607 +0x24ffd,CUS_0x351f,August,41,497-63-7268,Musician,19700.29,,8,4,15,4,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, and Mortgage Loan",11.75633016,8,17.75,2,_,15.18,22.34676394,20 Years and 4 Months,Yes,59.95781113,10000,Low_spent_Medium_value_payments,254.6467084,0,0.2432,0.5951,-1.4108,0.8353,1.1427 +0x25009,CUS_0x75a4,August,22,653-40-4847,Musician,87520.66,7142.388333,0,5,0.288361749,4,"Not Specified, Personal Loan, Credit-Builder Loan, and Payday Loan",1.188326902,5,6.37,3,Good,1023.292418,38.06357059,24 Years and 6 Months,NM,149.5993433,600.3320635,High_spent_Large_value_payments,640.7392668,0,-1.4253,-0.0275,-0.0596,0.3335,-1.5166 +0x25015,CUS_0x957e,August,26,808-40-1110,Teacher,20620.64,,10,9,33.95700519,9,"Credit-Builder Loan, Credit-Builder Loan, Payday Loan, Personal Loan, Not Specified, Auto Loan, Payday Loan, Personal Loan, and Debt Consolidation Loan",38.87634923,23.02017497,24.16,10,Bad,5621.106361,28.64730001,6 Years and 10 Months,Yes,1450.267,146.2339022,Low_spent_Small_value_payments,148.7873956,0,0.4787,0.7186,0.8538,0.1497,-0.5975 +0x25021,CUS_0x556,August,25,095-52-8820,Doctor,19765.86,1613.155,10,9,34.88954781,7,"Credit-Builder Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Personal Loan, Not Specified, and Home Equity Loan",,28.46858111,23.47,11,_,5025.271127,22.68377441,3 Years and 0 Months,NM,1382.740909,106.4568497,Low_spent_Small_value_payments,267.7876597,0,1.5314,-0.4765,1.7334,1.0688,-1.6005 +0x2502d,CUS_0x42d2,August,18,115-72-5613,Lawyer,39011.12,3014.926667,8,7,28,6,"Home Equity Loan, Not Specified, Mortgage Loan, Mortgage Loan, Not Specified, and Mortgage Loan",22.60852353,,6.93,6,_,1941.555785,37.36493922,19 Years and 9 Months,Yes,135.1081858,44.60710969,High_spent_Large_value_payments,361.7773711,0,-0.4196,0.5716,-0.1254,1.0503,0.5176 +0x25039,CUS_0xa447,August,41,372-94-7422,Accountant,14471.61,1021.9675,8,6,25,7,"Auto Loan, Not Specified, Student Loan, Home Equity Loan, Payday Loan, Payday Loan, and Credit-Builder Loan",,27,28.64,7,Bad,3332.8,33.42227985,9 Years and 11 Months,Yes,54.02876927,19.75403793,High_spent_Large_value_payments,268.4139428,0,0.5193,-0.251,0.2848,1.037,-0.606 +0x25045,CUS_0x5371,August,25,126-15-9021,Entrepreneur,33741.62,2923.801667,6,6,12,5,"Personal Loan, Credit-Builder Loan, Not Specified, Student Loan, and Credit-Builder Loan",,19,17.09,5,Standard,1428.31,30.36033357,14 Years and 0 Months,NM,80.26934571,20.16604537,!@9#%8,431.9447756,0,0.5151,-1.1823,-1.3774,-0.9189,-2.5857 +0x25051,CUS_0x5522,August,45,635-99-7406,Scientist,9058.045,643.8370833,6,9,25.06745738,5,"Payday Loan, Mortgage Loan, Mortgage Loan, Not Specified, and Not Specified",25.73137117,16,4.03,469,Bad,1562.150954,26.1560285,20 Years and 0 Months,Yes,28.62952819,,Low_spent_Small_value_payments,225.2064726,0,-2.2115,-0.778,-0.1827,-0.5988,-0.513 +0x2505d,CUS_0xa015,August,18,132-61-3959,Architect,9122.945,,7,5,30.06745738,8,"Payday Loan, Credit-Builder Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, Payday Loan, Payday Loan, and Auto Loan",32.69032217,20,28.55,16,Bad,4390.870954,29.74529784,1 Years and 9 Months,NM,58.77986614,33.93222257,!@9#%8,256.3074216,0,0.711,-0.348,-0.1252,-0.1949,0.1334 +0x25069,CUS_0xac41,August,29,172-99-6722,Lawyer,62351.4,5454.95,9,6,29,3,"Mortgage Loan, Debt Consolidation Loan, and Payday Loan",,15.56460343,7.83,13,Standard,1460.294506,31.64138578,7 Years and 9 Months,NM,147.3925727,487.9770482,Low_spent_Small_value_payments,200.125379,0,1.1406,-0.6336,1.1508,0.932,-0.3728 +0x25075,CUS_0x9154,August,35,324-22-6070,Scientist,67342.76,5327.896667,6,10,23,5,"Payday Loan, Payday Loan, Debt Consolidation Loan, Student Loan, and Not Specified",,22.43192691,9.24,14,Bad,4625.544761,36.68675917,2 Years and 8 Months,Yes,236.6128909,164.5230542,High_spent_Medium_value_payments,381.6537215,0,0.3788,-0.8282,0.0036,-0.0457,-1.4471 +0x25081,CUS_0x6c23,August,28,684-18-9943,Engineer,51324.82,4350.068333,7,3,11,1,Student Loan,17.83598516,12,7.49,12,_,138.16,29.00009382,18 Years and 2 Months,Yes,28.73566177,94.9119241,High_spent_Large_value_payments,551.3592475,0,-2.1722,-0.3038,0.6127,0.2752,1.4018 +0x2508d,CUS_0x9f9,August,21,105-99-5206,Media_Manager,74913.76,,2,4,5,3,"Student Loan, Student Loan, and Not Specified",2.68436166,4,3.57,4,_,480.2462338,38.36955703,17 Years and 2 Months,NM,170.9343973,63.18174916,High_spent_Large_value_payments,656.0852686,0,-1.1007,0.3226,-0.2917,-2.3803,-0.521 +0x25099,CUS_0x89e,August,31,#F%$D@*&8,Architect,36698.53,,5,1055,8,0,,3.667682275,6,10.45,2,Good,1121.74,35.48163679,21 Years and 6 Months,No,0,297.1148092,Low_spent_Small_value_payments,295.7062741,0,-1.2699,0.3348,-0.0826,1.2808,1.9687 +0x250a5,CUS_0x5911,August,40,529-55-1041,_______,7641.71,546.8091667,10,6,4446,5,"Payday Loan, Home Equity Loan, Mortgage Loan, Student Loan, and Personal Loan",,18.55075022,19.73,12,Bad,4865.875441,39.02867501,10 Years and 3 Months,Yes,29.29401703,35.24161239,Low_spent_Small_value_payments,280.1452872,0,-1.1911,-1.535,-0.5077,0.3133,-1.107 +0x250b1,CUS_0x5e00,August,47,799-20-2552,Entrepreneur,61369.36,,0,6,11,4,"Auto Loan, Payday Loan, Auto Loan, and Not Specified",,6.764854272,2.68,1,Good,1214.519604,29.64186283,23 Years and 3 Months,NM,158.6183574,238.7680127,Low_spent_Small_value_payments,412.4249633,0,-0.703,0.0613,0.4218,-0.0357,-0.3875 +0x250bd,CUS_0xebc,August,33,022-23-5391,Media_Manager,14310.25,,10,11,34.88954781,9,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Auto Loan, Debt Consolidation Loan, Personal Loan, and Student Loan",42.20152906,31.30003709,1.54,6,Bad,2430.819921,27.29121996,12 Years and 6 Months,NM,1415.897525,140.9019398,Low_spent_Small_value_payments,145.3225377,0,-0.3312,0.2079,0.2406,-0.0021,-1.3246 +0x250c9,CUS_0x303d,August,44,592-26-4117,_______,17624.38,1483.698333,8,9,27.95700519,7,"Credit-Builder Loan, Not Specified, Not Specified, Auto Loan, Student Loan, Home Equity Loan, and Credit-Builder Loan",39.77779628,24.03186852,6.92,10,Bad,1897.603186,38.46471898,10 Years and 8 Months,Yes,1378.974482,,High_spent_Medium_value_payments,252.1136884,0,-0.7512,-0.5195,-1.2223,0.373,1.0423 +0x250d5,CUS_0x25ea,August,29,730-19-4290,Manager,20933.46,,7,5,28.06745738,3,"Auto Loan, Personal Loan, and Home Equity Loan",,23.37304428,14.05,9,Standard,2132.762639,28.07153126,8 Years and 11 Months,Yes,52.2718447,46.20044126,High_spent_Large_value_payments,300.5529261,0,-0.1174,0.2315,-0.3668,-0.0413,0.7437 +0x250e1,CUS_0xa36d,August,38,397-71-3346,Scientist,10127.625,872.96875,10,8,32.88954781,8,"Credit-Builder Loan, Student Loan, Auto Loan, Auto Loan, Mortgage Loan, Home Equity Loan, Payday Loan, and Personal Loan",27.76087147,18.8972894,10.25,,Bad,5058.920501,21.99083573,9 Years and 3 Months,Yes,1362.587149,,Low_spent_Small_value_payments,234.3307297,0,0.2309,0.0617,-0.6893,-0.1823,0.9932 +0x250ed,CUS_0x3cb1,August,19,639-62-8323,Teacher,14134.26,,6,7,31.06745738,2,"Student Loan, and Payday Loan",31.38387656,,18.52,16,_,1512.530954,28.40451528,8 Years and 9 Months,Yes,17.60140043,93.27439751,Low_spent_Small_value_payments,266.6894141,0,0.7621,0.6462,1.6377,-0.6525,-0.8394 +0x250f9,CUS_0x15cc,August,25,009-20-6501,Manager,9669.05,925.7541667,8,6,31,6,"Credit-Builder Loan, Debt Consolidation Loan, Personal Loan, Auto Loan, Auto Loan, and Not Specified",,26.94733593,-4.75,15,Bad,1763.660081,32.38111701,9 Years and 10 Months,Yes,44.19159101,,Low_spent_Small_value_payments,289.1451007,0,0.6846,0.7975,-0.3175,0.3404,0.3031 +0x25105,CUS_0xa0f3,August,39,002-84-8699,Teacher,25573.07,1948.089167,8,6,11,4,"Auto Loan, Home Equity Loan, Auto Loan, and Payday Loan",15.05746573,14,6.87,7,Good,437.1597844,22.93721866,17 Years and 11 Months,No,52.24177408,11230.83473,Low_spent_Small_value_payments,296.6981089,0,0.629,-0.6037,-0.1808,-1.3469,1.3779 +0x25111,CUS_0x560e,August,46,876-19-4611,Scientist,121881.24,,0,3,2,4,"Personal Loan, Home Equity Loan, Auto Loan, and Home Equity Loan",1.079747493,5,1.51,3,Good,771.77,39.19485694,16 Years and 10 Months,No,388.600435,251.2195446,High_spent_Large_value_payments,612.8570204,0,1.1975,0.8227,-0.2626,1.9192,1.1923 +0x2511d,CUS_0xa2de,August,36,720-53-1819,Engineer,137672.12,,6,7,6.288361749,2,"Student Loan, and Student Loan",7.040176334,8,18.2,8,_,38.58274223,29.1304756,31 Years and 3 Months,Yes,169.5553145,,Low_spent_Medium_value_payments,147.4870916,0,0.3221,0.6047,-0.2886,1.4106,-1.3395 +0x25129,CUS_0xbf53,August,39,905-14-5932,Teacher,42474.2,,2,3,8,4,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Credit-Builder Loan",18.77631186,10.3104319,10.57,5,Good,643.6640764,25.76893486,17 Years and 8 Months,NM,82.06622873,93.17283661,High_spent_Medium_value_payments,440.6126013,0,1.0721,-0.5432,-0.9941,0.7022,0.8108 +0x25135,CUS_0x6671,August,21,097-58-4488,Manager,9898.815,,8,6,17.06745738,3,"Mortgage Loan, Debt Consolidation Loan, and Debt Consolidation Loan",38.84286576,18.62134199,13.1,7,Standard,2839.323761,30.77132764,,Yes,21.36256913,56.41176735,Low_spent_Small_value_payments,263.6955006,0,1.3342,1.2299,-1.4434,0.5057,0.0671 +0x25141,CUS_0xb44c,August,31,682-85-9184,Media_Manager,16241.52,,10,9,23.88954781,6,"Personal Loan, Debt Consolidation Loan, Personal Loan, Debt Consolidation Loan, Not Specified, and Home Equity Loan",29.0117132,22,15.17,8,Bad,2410.41,36.27199227,6 Years and 8 Months,NM,1395.374365,92.6864606,Low_spent_Small_value_payments,262.4550934,0,-1.1686,-2.605,-1.116,-0.3801,0.1819 +0x2514d,CUS_0x9f63,August,51,350-61-4067,Lawyer,21009.425,,0,4,8,4,"Auto Loan, Not Specified, Payday Loan, and Not Specified",0,2.32199853,,2,Good,919.8891456,28.18548233,26 Years and 2 Months,No,35.3103465,28.83703546,High_spent_Large_value_payments,329.0311597,0,-0.6634,0.0143,-0.1994,1.9342,2.905 +0x25159,CUS_0x40c8,August,80,264-82-1553,Media_Manager,91702.14,7455.845,5,7,10,3,"Student Loan, Not Specified, and Payday Loan",16.74255755,,3.87,2,Good,233.12,36.61260516,20 Years and 9 Months,No,64978,193.0794725,High_spent_Large_value_payments,651.777903,0,-1.4927,0.7678,-0.019,-0.8964,-1.5613 +0x25165,CUS_0x49c1,August,26,943-32-4567,_______,39890.28,3561.19,3,5,15,6,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, and Mortgage Loan",,10,10.34,10,Standard,264.32,22.21170133,5 Years and 9 Months,Yes,149.1643843,,Low_spent_Small_value_payments,208.5482147,0,-0.0872,-2.811,0.3741,-1.8531,0.0907 +0x25171,CUS_0x387c,August,48,567-83-0551,Accountant,121187.49,10010.9575,1,4,0.288361749,2,"Not Specified, Credit-Builder Loan, and Student Loan",,3.59991266,5.5,7,Good,1175.801147,28.63362681,32 Years and 11 Months,No,165.6242021,580.2978642,High_spent_Medium_value_payments,925.1111448,0,0.5126,-0.0314,-0.4444,0.5513,0.2379 +0x2517d,CUS_0x56ce,August,49,337-32-2714,Writer,110711.22,,4,5,11,0,,0.238686132,2,11.09,4,Good,251.06,40.99077502,17 Years and 2 Months,No,0,61.17373915,High_spent_Large_value_payments,1118.619761,0,-2.5187,-0.3318,0.7085,0.9523,-1.4206 +0x25189,CUS_0x3f99,August,28,155-22-9607,Media_Manager,44423.16,,5,4,20,3,"Auto Loan, Debt Consolidation Loan, and Payday Loan",8.913633029,8,10.06,4,_,1149.63,33.77355811,27 Years and 9 Months,No,57.48554837,164.6282781,Low_spent_Large_value_payments,430.4791736,0,-1.7055,-1.4715,1.1999,1.6213,-0.449 +0x25195,CUS_0xa3df,August,47,208-84-0945,Scientist,33669.54,,5,6,3,2,"Personal Loan, and Auto Loan",2.053138284,4,8.14,8,Good,741.68,37.30766698,27 Years and 8 Months,No,284.7177242,344.3825705,Low_spent_Small_value_payments,148.7599525,0,-0.9458,-0.644,-0.4925,-0.897,-0.1038 +0x251a1,CUS_0x7e3f,August,49,615-29-8753,Engineer,80676.84,6929.07,4,619,12,0,,3.352757941,4,1.2,4,Good,1035.77,27.68314603,18 Years and 3 Months,No,0,113.1515582,High_spent_Large_value_payments,819.7554418,0,-0.334,0.0686,-0.2768,-1.4482,0.0263 +0x251ad,CUS_0x4021,August,35,194-65-3904,Architect,16587.02,,4,6,7,1,Payday Loan,1.84286919,4,6.21,2,Good,581.12,29.01876577,20 Years and 3 Months,No,107.1195481,39.46553267,High_spent_Large_value_payments,354.5637895,0,-1.3652,1.2535,1.2305,1.0915,1.627 +0x251b9,CUS_0xbb37,August,33,094-94-5212,Developer,74557.58,,2,5,0.288361749,0,,13.36113817,13,4.32,2,Good,183.5669397,25.41848586,30 Years and 10 Months,No,0,,High_spent_Large_value_payments,784.3631704,0,0.8838,1.2264,0.6358,0.655,0.4556 +0x251c5,CUS_0x43a4,August,32,601-08-1884,Doctor,14530.755,,8,7,7,4,"Auto Loan, Personal Loan, Auto Loan, and Mortgage Loan",,8,12.69,6,Standard,1279.24,35.73809647,29 Years and 4 Months,Yes,28.4109398,11.5030009,!@9#%8,318.5756843,0,-0.8984,-0.0398,0.118,0.4141,-0.5554 +0x251d1,CUS_0xb2c8,August,37,359-61-8309,Accountant,28393.64,2076.136667,6,6,31,7,"Debt Consolidation Loan, Mortgage Loan, Debt Consolidation Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, and Personal Loan",45.18789187,26.34117492,8.48,10,Bad,2256.556093,28.82290246,11 Years and 9 Months,NM,145.4754926,28.75332616,High_spent_Large_value_payments,273.3848479,0,-0.1816,-0.5231,0.7217,-0.5901,1.6266 +0x251dd,CUS_0x332b,August,18,221-79-4519,Manager,35849.98,2823.498333,7,6,5,2,"Student Loan, and Student Loan",9.678897313,10,14.49,4,Standard,1264.32,32.83537514,8 Years and 10 Months,Yes,32.64007442,204.4544722,!@9#%8,315.2552868,0,-0.2829,0.0251,-2.019,-0.4784,-0.6191 +0x251e9,CUS_0x8718,August,39,426-07-3179,Journalist,34631.43,,8,7,15,5,"Mortgage Loan, Auto Loan, Mortgage Loan, Student Loan, and Mortgage Loan",18.47144428,14,6.16,4,Standard,568.94,33.06594233,13 Years and 3 Months,Yes,139.8973239,46.14159856,High_spent_Medium_value_payments,348.5563276,0,-0.7804,-0.1402,-0.9209,0.763,0.2641 +0x251f5,CUS_0x5587,August,36,467-31-3749,Lawyer,38681.04,,7,7,16.06745738,7,"Personal Loan, Home Equity Loan, Not Specified, Student Loan, Home Equity Loan, Debt Consolidation Loan, and Debt Consolidation Loan",,21.28544321,7.06,7,Bad,3950.154705,31.25480241,,Yes,188.3201709,388.9048429,Low_spent_Small_value_payments,16.9966982,0,1.9514,0.4052,1.018,-0.8731,-0.4412 +0x25201,CUS_0x1807,August,55,967-06-5986,Manager,26515.99,2083.665833,4,6,13,1,Mortgage Loan,25.56294904,20,1.11,6,Standard,1150.9,28.2443075,18 Years and 9 Months,No,11.4838244,33.8190327,!@9#%8,403.0637262,0,-0.1775,0.3809,-0.6787,0.668,0.6823 +0x2520d,CUS_0x5cf2,August,33,949-81-4492,Architect,60446.62,5065.218333,6,3,20,3,"Payday Loan, Student Loan, and Home Equity Loan",23.15039894,15,8.65,6,Standard,136.13,36.49598707,13 Years and 10 Months,Yes,78.57117361,68.73204501,High_spent_Large_value_payments,599.2186147,0,-0.2507,-0.4186,0.5356,-0.9366,0.9483 +0x25219,CUS_0x3ed3,August,35,291-67-0222,Mechanic,7749555,5774.633333,5,7,9,1,Personal Loan,26.54797881,20,7.28,0,Standard,1004.53,26.99032513,22 Years and 5 Months,Yes,51.878854,81.26785505,!@9#%8,684.3166243,0,1.2612,-0.4321,-2.5954,1.0235,0.9816 +0x25225,CUS_0x2f69,August,42,299-25-6374,Media_Manager,16675.28,,6,5,16,3,"Home Equity Loan, Personal Loan, and Personal Loan",,9,12.71,13,Standard,1127.98,31.51764423,26 Years and 4 Months,Yes,6105,,Low_spent_Medium_value_payments,349.594098,0,1.1033,-1.5241,-0.1314,0.3156,-3.0146 +0x25231,CUS_0x95d0,August,29,412-45-1812,Manager,105449.34,8574.450323,2,4,2.288361749,2,"Payday Loan, Not Specified, and Mortgage Loan",0,3,9.04,8,Good,392.5500969,28.17132567,27 Years and 4 Months,No,595.3609383,684.4064052,High_spent_Large_value_payments,751.8219835,0,-0.061,-0.4144,-0.4377,0.4121,-0.1956 +0x2523d,CUS_0x215d,August,43,907-61-7425,Journalist,14244.33,1099.0275,6,7,29,6,"Student Loan, Mortgage Loan, Student Loan, Personal Loan, Not Specified, and Mortgage Loan",,18,0.91,7,Bad,2216.82,23.87402587,17 Years and 9 Months,Yes,65.01423257,,Low_spent_Small_value_payments,201.1703364,0,-1.3968,-0.5861,-1.8237,-0.1527,-0.7873 +0x25249,CUS_0x52f1,August,34,090-45-4457,Entrepreneur,14925.81,1101.8175,8,6,5,5,"Debt Consolidation Loan, Student Loan, Auto Loan, Credit-Builder Loan, and Credit-Builder Loan",,11,7.23,8,Standard,781.33,27.71019546,10 Years and 6 Months,Yes,61.78428162,,Low_spent_Small_value_payments,204.1652176,0,-1.34,0.3534,-0.0798,0.5148,-0.9119 +0x25255,CUS_0x2fda,August,22,336-19-9190,Developer,10281.435,,6,8,20.88954781,6,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",10.52084417,6.877775889,21.64,12,_,1559.053653,35.06976381,10 Years and 11 Months,Yes,1354.375235,28.55836456,High_spent_Small_value_payments,296.6149445,0,-0.0762,0.5827,0.5123,-1.0167,1.035 +0x25261,CUS_0xa125,August,18,506-45-5493,Entrepreneur,10179.645,,8,7,21,2,"Credit-Builder Loan, and Mortgage Loan",,22.39518676,13.47,9,Standard,1959.169029,31.53920421,7 Years and 9 Months,Yes,11.06016285,45.77188452,Low_spent_Small_value_payments,288.7983276,0,0.6091,-0.7951,-0.0694,-0.0624,-0.2755 +0x2526d,CUS_0x9708,August,49,915-51-0524,Doctor,69445.68,5937.14,7,7,1,0,,,20,1.47,4,Good,774.0456237,37.88123553,,No,0,,Low_spent_Small_value_payments,93.83177331,0,0.22,-1.6515,-0.8947,1.4635,-1.607 +0x25279,CUS_0xac0d,August,46,535-45-2296,Scientist,15873.84,1114.82,7,6,34,6,"Payday Loan, Not Specified, Debt Consolidation Loan, Not Specified, Student Loan, and Auto Loan",34.63703887,24.16891648,18.38,9,_,5125.960925,26.17988257,11 Years and 0 Months,Yes,65.71693368,54.54983211,Low_spent_Medium_value_payments,271.2152342,0,-0.4361,-1.0251,0.5687,1.1643,-0.2394 +0x25285,CUS_0x82be,August,31,590-92-4796,Manager,41871.89,3764.324167,2,4,4,4,"Auto Loan, Home Equity Loan, Mortgage Loan, and Payday Loan",10.3964843,12.07360077,14.51,5,Good,1400.99053,29.68344023,29 Years and 2 Months,No,73.09779735,132.7355172,Low_spent_Small_value_payments,460.5991021,0,0.5468,0.1134,0.2722,-1.0137,-0.1634 +0x25291,CUS_0x6a91,August,39,978-63-5965,Doctor,38964.65,3250.054167,1,6,11,0,,5.178197267,6,3.02,1,Good,860.91,27.13100607,18 Years and 6 Months,No,0,51.02782277,High_spent_Large_value_payments,513.9775939,0,0.8382,0.9213,-0.5809,0.2037,-0.0762 +0x2529d,CUS_0xac7c,August,30,878-64-2983,Accountant,117588.2,9691.016667,8,5,15,4,"Payday Loan, Personal Loan, Not Specified, and Debt Consolidation Loan",20.43927204,16.01092557,3.2,4,Standard,355.8394893,33.64604345,28 Years and 8 Months,No,216.4682856,145.7602763,High_spent_Large_value_payments,846.8731048,0,-2.2835,-1.5076,0.4571,-0.4565,1.5097 +0x252a9,CUS_0xc39e,August,18,650-57-1884,Doctor,103351.98,,5,3,10,4,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",,20,19.82,5,Standard,1442.03,37.10432299,10 Years and 8 Months,Yes,293.7265334,409.8252439,Low_spent_Small_value_payments,427.9147227,0,-0.0499,-0.6527,-1.4346,-0.3403,-0.0248 +0x252b5,CUS_0x5488,August,18,762-79-7112,Scientist,43419.77,3321.314167,4,6,5.288361749,2,"Student Loan, and Personal Loan",14.64305879,,3.3,3,Good,158.54,38.76197019,31 Years and 9 Months,No,53.41563972,687.6492567,!@9#%8,291.0039813,0,-0.741,0.1406,-1.7965,-0.6822,-1.1054 +0x252c1,CUS_0x2653,August,35,508-35-4856,_______,19517.56,,8,10,23.88954781,6,"Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Student Loan, and Payday Loan",27.69566529,18.13429823,14.19,6,_,3057.741527,25.35544865,15 Years and 11 Months,Yes,1394.388428,41.44913435,High_spent_Small_value_payments,283.3786898,0,-1.1595,-0.8001,-0.081,-0.3497,0.4516 +0x252cd,CUS_0x12fb,August,35,006-29-8039,Doctor,26342.91,1949.2425,6,7,7,1,Credit-Builder Loan,18.37524348,14,17.6,3,Standard,397.9,33.21173803,22 Years and 0 Months,Yes,57567,48.05730642,High_spent_Large_value_payments,365.283733,0,0.4569,-0.6075,1.2577,0.9278,-1.332 +0x252d9,CUS_0xaf39,August,41,450-82-3979,Accountant,19879.05,,4,4,12,0,,14.98163556,12,11.03,7,Standard,876.7395211,38.0036509,19 Years and 2 Months,No,0,,Low_spent_Small_value_payments,249.6810177,0,0.0213,-0.7638,0.175,0.7444,-2.0628 +0x252e5,CUS_0x9e05,August,28,#F%$D@*&8,Writer,18869.76,1697.48,10,7,16,9,"Mortgage Loan, Credit-Builder Loan, Debt Consolidation Loan, Student Loan, Personal Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, and Mortgage Loan",90,2705,24.11,9,Bad,4391.48,33.92387279,,Yes,127.6904925,20.0605068,High_spent_Medium_value_payments,271.9970007,0,1.5586,0.3547,-0.4845,-0.3448,1.0177 +0x252f1,CUS_0xa7e9,August,51,200-96-3819,_______,19081.51,,8,7,9,1478,,19.38194583,17,2.67,0,Standard,1041.07,34.08530784,31 Years and 10 Months,Yes,0,,Low_spent_Large_value_payments,327.7302723,0,-1.9362,0.2152,-1.2043,-1.1205,1.3565 +0x252fd,CUS_0x3325,August,22,272-06-8424,Accountant,173303.68,14681.97333,1,2,12,3,"Student Loan, Not Specified, and Debt Consolidation Loan",15.81622434,13,9.8,9,Good,1051.822612,41.61500749,20 Years and 2 Months,No,288.8732905,820.7422126,Low_spent_Large_value_payments,713.3122607,0,-1.2933,0.6027,-1.9719,-0.4187,1.5193 +0x25309,CUS_0x1f39,August,21,668-38-2560,Teacher,18399.84,,6,9,17.95700519,6,"Payday Loan, Not Specified, Not Specified, Student Loan, Mortgage Loan, and Student Loan",40.38859084,19.96705608,24.23,11,Bad,5556.51258,25.15360238,9 Years and 2 Months,NM,1394.448517,,Low_spent_Small_value_payments,148.6563215,0,0.0293,0.1992,-0.9938,1.238,1.388 +0x25315,CUS_0x61d3,August,26,#F%$D@*&8,Engineer,26178.22,2211.518333,5,5,7,7,"Auto Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Mortgage Loan",22.71986181,15.55546457,8.36,4,Standard,922.8180451,40.62714255,18 Years and 9 Months,Yes,95.03722925,197.9825411,Low_spent_Small_value_payments,218.132063,0,0.7538,0.3443,2.6106,-0.5182,-0.667 +0x25321,CUS_0x73bb,August,21,594-65-2540,Accountant,70074,,3,3,19,6,"Personal Loan, Not Specified, Payday Loan, Payday Loan, Student Loan, and Student Loan",16.73128239,,8.9,7,Standard,494.25,34.48533218,6 Years and 8 Months,NM,258.6855772,353.8417193,High_spent_Small_value_payments,258.0227035,0,-1.9374,0.672,1.6488,0.9542,-0.8577 +0x2532d,CUS_0x9759,August,23,123-18-3750,Scientist,20389.3,1876.108333,7,4,11,4,"Mortgage Loan, Credit-Builder Loan, Not Specified, and Not Specified",9.98317545,9,10.45,0,Good,1040.341544,40.39339019,26 Years and 9 Months,No,48.44363927,37.91386133,High_spent_Large_value_payments,345.0664518,0,0.2693,-0.1806,0.6826,-1.2252,-0.2183 +0x25339,CUS_0xab4a,August,22,808-32-5129,Engineer,78570.28,6326.523333,8,9,16,9,"Mortgage Loan, Auto Loan, Personal Loan, Student Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",48.19194854,26.41895673,7.69,8,Bad,2949.99516,24.31785047,17 Years and 2 Months,Yes,378.2126617,280.9057343,High_spent_Small_value_payments,233.5339373,0,0.8426,1.119,0.2851,-0.1714,-0.8842 +0x25345,CUS_0x1fbd,August,41,905-87-8021,Writer,76881.84,6529.82,3,7,6,1,Not Specified,3.06968878,7,11.03,9,Good,257.87,41.7128074,27 Years and 10 Months,No,61.44003646,73.75544697,High_spent_Large_value_payments,757.7865166,0,-1.5074,-0.2412,0.6321,0.8904,-0.93 +0x25351,CUS_0xc436,August,18,512-83-3982,Accountant,31767.33,,5,3,19,0,,26.16087493,21,13.84,10,Standard,969.19,29.02474967,33 Years and 0 Months,Yes,0,202.1967081,Low_spent_Large_value_payments,338.7310419,0,-0.3096,1.4556,1.4589,0.1564,0.071 +0x2535d,CUS_0xc04,August,36,707-19-6850,Writer,17222.53,1697.210833,8,4,18,83,,22.38167843,19,12.38,5,Standard,1163.47,26.90294834,28 Years and 11 Months,Yes,24276,65.70673256,High_spent_Small_value_payments,364.0143508,0,0.3061,-1.0928,0.2576,0.2465,1.3432 +0x25369,CUS_0x5898,August,27,172-32-7436,Engineer,99469.74,,7,5,13,1,Mortgage Loan,,11,12.67,4,_,30.1,41.53766182,26 Years and 4 Months,Yes,60.01434232,119.7303215,High_spent_Large_value_payments,867.5698361,0,-0.4816,-1.0464,-2.4257,0.434,0.8444 +0x25375,CUS_0x379f,August,52,#F%$D@*&8,Accountant,39161.2,,2,4,5,2,"Home Equity Loan, and Payday Loan",,4.563527668,1.56,5,Good,1529.547283,28.85280378,21 Years and 4 Months,No,42.11282356,186.1587428,Low_spent_Large_value_payments,350.571767,0,1.2104,-1.2059,-0.3035,0.5079,-0.2343 +0x25381,CUS_0x4a6a,August,46,582-70-5609,Media_Manager,25462.29,,8,6,17,7,"Not Specified, Not Specified, Student Loan, Personal Loan, Debt Consolidation Loan, Not Specified, and Student Loan",21.04991575,,8.78,7,Standard,1189.3,30.54950557,6 Years and 5 Months,Yes,95.32880068,233.5730841,Low_spent_Small_value_payments,190.6838652,0,1.771,1.4955,1.3338,-0.5252,0.5238 +0x2538d,CUS_0xa1fc,August,28,547-99-9537,Entrepreneur,37225.38,,9,6,29.06745738,3,"Mortgage Loan, Personal Loan, and Debt Consolidation Loan",,,12.46,16,Bad,2593.525839,41.4511009,16 Years and 8 Months,Yes,74.99321279,82.22667355,High_spent_Medium_value_payments,351.0713257,0,0.3339,0.2711,0.0178,1.1966,-0.6111 +0x25399,CUS_0x6daf,August,35,603-43-0891,Journalist,130076.8,10613.73333,4,3,10,3,"Auto Loan, Auto Loan, and Auto Loan",20.99932246,15,10.43,0,Standard,6.49,37.05243548,29 Years and 2 Months,No,302.0151709,,Low_spent_Medium_value_payments,100.6421617,0,-0.4272,0.5331,0.8784,0.3967,1.1847 +0x253a5,CUS_0x8d69,August,39,727-11-2348,Manager,43494.82,,6,7,8,1,Auto Loan,,11,14.26,8,Standard,383.25,40.52849945,26 Years and 2 Months,NM,22.19044367,69.01931862,High_spent_Large_value_payments,520.647071,0,-0.2377,2.3127,0.0048,-1.6439,-0.3055 +0x253b1,CUS_0x745b,August,45,516-38-0624,Writer,43534.9,3758.908333,3,6,14.28836175,4,"Payday Loan, Payday Loan, Not Specified, and Debt Consolidation Loan",21.06280498,18,16.51,7,Standard,314.58,34.28843785,18 Years and 11 Months,Yes,100.4080447,483.8220435,High_spent_Large_value_payments,451.5982061,0,0.7501,-0.6881,-1.8744,0.6988,-0.3342 +0x253bd,CUS_0x46d7,August,25,451-66-4095,Developer,12500.36,,6,4,18,1,Not Specified,21.07055651,16,12.34,4,Standard,1406.78,29.67620462,29 Years and 2 Months,Yes,8.521817034,13.32630741,!@9#%8,297.0215422,0,0.8265,1.0886,-0.4813,1.4096,0.5852 +0x253c9,CUS_0x3aab,August,44,347-65-8366,Accountant,7755.295,,6,5,24,4,"Credit-Builder Loan, Personal Loan, Credit-Builder Loan, and Student Loan",25.7003246,11,16.35,15,Standard,2165.25,27.43377657,6 Years and 5 Months,Yes,21.77827754,37.2695899,Low_spent_Small_value_payments,289.9795909,0,0.867,0.8808,0.7581,1.511,0.1041 +0x253d5,CUS_0x482d,August,24,160-77-5290,Architect,21488.17,1681.680833,4,4,7,3,"Home Equity Loan, Credit-Builder Loan, and Student Loan",6.943922652,9,2.86,1,_,553.06,23.41997736,18 Years and 3 Months,No,42.4315122,29.3882304,High_spent_Medium_value_payments,346.3483407,0,-0.2306,-0.634,-1.9997,1.7234,0.4904 +0x253e1,CUS_0x8a0d,August,33,076-41-9633,Architect,44058.44,,1,4,12,3,"Home Equity Loan, Home Equity Loan, and Payday Loan",0,1,7.16,4,Good,837.88,38.52848279,33 Years and 5 Months,No,84.46982019,148.2348262,Low_spent_Small_value_payments,411.4490203,0,1.0402,-1.0478,-0.9451,-1.5043,-0.9523 +0x253ed,CUS_0xa1c5,August,21,117-69-4832,Media_Manager,22049.235,1764.43625,4,3,12,2,"Credit-Builder Loan, and Student Loan",0,1,4.75,5,Good,354.9586289,34.24423978,30 Years and 0 Months,No,27.50533677,160.3586258,Low_spent_Medium_value_payments,291.65882,0,0.0134,1.8275,0.3228,-0.8585,0.6378 +0x253f9,CUS_0x4ff8,August,19,#F%$D@*&8,Lawyer,15745.02,,5,6,17,100,"Credit-Builder Loan, Credit-Builder Loan, Not Specified, Credit-Builder Loan, and Auto Loan",16.1853937,12.05381162,19.33,8,_,899.2908269,36.8265054,19 Years and 4 Months,Yes,34.16648522,28.10831878,Low_spent_Large_value_payments,312.533696,0,1.715,-0.7218,0.5013,0.6782,1.6976 +0x25405,CUS_0x5bd8,August,25,517-12-3385,_______,24436.53,1881.3775,8,6,1,1,Mortgage Loan,23.04138491,17,4.77,1,Standard,495.7952701,24.71860381,31 Years and 8 Months,No,10.98401702,11413.9722,High_spent_Large_value_payments,385.4730697,0,0.9431,0.1771,1.2553,-0.3491,-0.0437 +0x25411,CUS_0x50f7,August,80,931-83-3982,Developer,74008.84,6229.403333,9,837,32,5,"Credit-Builder Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, and Mortgage Loan",,30.29231902,1.62,7,Bad,1696.927617,35.57862299,15 Years and 5 Months,Yes,170.4932849,489.5073247,Low_spent_Medium_value_payments,242.9397237,0,-1.3803,-1.1843,0.9589,1.332,0.6393 +0x2541d,CUS_0x3e34,August,20,221-59-5804,Engineer,139658.08,,5,3,18,4,"Payday Loan, Personal Loan, Auto Loan, and Debt Consolidation Loan",23.89195731,15.78771581,19.24,13,Standard,650.520957,30.76872157,5 Years and 8 Months,Yes,233.4347254,113.9964485,High_spent_Large_value_payments,1084.08616,0,0.4185,-2.0345,-1.1198,0.3183,-1.0273 +0x25429,CUS_0xa3f4,August,22,418-41-4964,Engineer,32776.72,,10,9,33.95700519,9,"Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, Not Specified, Not Specified, Personal Loan, Not Specified, Student Loan, and Home Equity Loan",37.9162478,21,15.91,7,Bad,3493.930954,33.44136552,1 Years and 3 Months,Yes,1501.010059,41.74014833,High_spent_Medium_value_payments,236.2387571,0,1.7527,-1.8296,0.4163,-0.6674,1.7555 +0x25435,CUS_0x1c26,August,25,955-54-1229,Entrepreneur,60668.72,,3,7,2,1,Student Loan,5.626033702,5.760828663,0.6,6,Good,1055.532097,30.22386744,29 Years and 8 Months,No,47.49675641,168.6960198,Low_spent_Medium_value_payments,594.8798904,0,-1.366,-0.1499,-0.4417,-1.3892,-1.31 +0x25441,CUS_0x215f,August,56,#F%$D@*&8,Architect,29764.37,,7,7,12,2,"Mortgage Loan, and Payday Loan",90,1820,11.35,0,Standard,1154.86,31.88659632,28 Years and 5 Months,Yes,33.14699559,247.8975826,Low_spent_Small_value_payments,258.9918385,0,-0.4965,-0.5053,1.9692,0.6827,1.7616 +0x2544d,CUS_0x2e5e,August,30,267-96-8241,Doctor,16045.125,1361.09375,1,6,10,4,"Debt Consolidation Loan, Auto Loan, Home Equity Loan, and Payday Loan",,2,5.79,1,Good,1013.24,35.25699472,21 Years and 0 Months,No,30.29332251,,Low_spent_Small_value_payments,220.9128172,0,1.277,-1.6162,-0.0549,0.9963,0.1447 +0x25459,CUS_0x4159,August,42,143-85-9083,Manager,16540.38,1577.365,10,5,29.06745738,7,"Mortgage Loan, Credit-Builder Loan, Student Loan, Home Equity Loan, Not Specified, Debt Consolidation Loan, and Auto Loan",,,6.28,9,Bad,2880.53169,28.3545227,10 Years and 10 Months,NM,94.46358891,10000,Low_spent_Small_value_payments,154.7155975,0,-0.1785,0.6525,0.8746,-1.8337,0.7685 +0x25465,CUS_0x69be,August,44,490-71-8764,Lawyer,80807.37,6796.9475,3,4,6,3,"Personal Loan, Personal Loan, and Personal Loan",17.93431636,13,3.83,6,_,877.9768898,27.92751996,32 Years and 9 Months,No,161.0343885,368.0459329,Low_spent_Medium_value_payments,469.4164204,0,-0.4541,-0.5427,-2.1901,-1.8848,0.5254 +0x25471,CUS_0x20db,August,43,997-54-5719,Accountant,17137.71,,8,7,10,2,"Credit-Builder Loan, and Mortgage Loan",14.99118296,13,12.91,6,_,1486.83,27.96750288,19 Years and 10 Months,No,18.57410734,98.62079076,Low_spent_Medium_value_payments,317.2193519,0,-0.4046,1.4313,-1.9148,0.9238,0.9313 +0x2547d,CUS_0x636b,August,24,353-92-8877,Architect,24723.63,,5,5,18,1,Auto Loan,25.52236191,19,11.35,7,Standard,327.48,38.51780199,17 Years and 4 Months,No,11.48105456,89.05409892,High_spent_Medium_value_payments,372.8950965,0,-0.6913,0.7013,0.3001,-0.6662,0.9207 +0x25489,CUS_0x5602,August,18,878-33-5924,Writer,15360.58,,6,9,25,3,"Personal Loan, Auto Loan, and Personal Loan",24.36553565,11.44931201,12.92,11,Standard,1679.033067,25.38382768,12 Years and 3 Months,Yes,20.75379571,68.48304192,Low_spent_Small_value_payments,298.8679957,0,0.4336,0.3485,0.4119,1.3979,-2.0741 +0x25495,CUS_0x90d2,August,27,046-57-0897,Musician,29095.94,,5,3,2337,4,"Home Equity Loan, Home Equity Loan, Debt Consolidation Loan, and Personal Loan",22.01809963,20,8.01,9,_,2510.12,35.14679937,6 Years and 11 Months,Yes,185.6458724,54.83891898,High_spent_Medium_value_payments,399.8616202,0,-1.3469,1.4875,0.7488,1.3661,-0.0714 +0x254a1,CUS_0x7813,August,26,095-39-4425,Lawyer,80094.96,5874.664947,7,5,34,7,"Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Not Specified, and Mortgage Loan",19.26098095,16,5.12,6,Bad,2286.06,24.72190476,8 Years and 5 Months,Yes,923.60953,47.63910191,High_spent_Large_value_payments,410.5244207,0,-0.8862,-1.7803,-0.191,-0.1883,0.3507 +0x254ad,CUS_0x335e,August,35,971-85-6951,Engineer,93345.76,7751.813333,5,7,16,4,"Not Specified, Credit-Builder Loan, Student Loan, and Auto Loan",15.5799971,14.14121919,8.17,6,_,1374.831369,30.51269057,16 Years and 3 Months,No,220.0988705,232.6542284,High_spent_Medium_value_payments,572.4282344,0,0.3683,-1.436,0.6848,-3.1758,-0.9716 +0x254b9,CUS_0x4fb1,August,24,157-31-1348,Developer,18289.68,,6,9,27.95700519,8,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Auto Loan, Mortgage Loan, Not Specified, Credit-Builder Loan, and Not Specified",,19.32614001,26.39,10,_,5052.999434,23.93168189,,NM,1422.586368,,Low_spent_Large_value_payments,194.2987234,0,-0.975,0.8597,-0.566,-1.1984,1.9004 +0x254c5,CUS_0x4a02,August,32,426-22-0154,Scientist,160728.04,,2,5,10.28836175,2,"Student Loan, and Student Loan",6.347394145,7,0.87,1,Good,1242.39,36.83054172,18 Years and 3 Months,No,205.0866989,1605.582725,Low_spent_Large_value_payments,226.1683707,0,2.025,0.3674,-0.914,-0.2858,-1.6423 +0x254d1,CUS_0x4b6b,August,20,231-66-9150,Developer,66484.36,5595.363333,3,3,26,3,"Mortgage Loan, Payday Loan, and Mortgage Loan",24.90963975,18,18.77,8,Standard,1688,27.75487433,9 Years and 8 Months,Yes,86.77099226,,Low_spent_Large_value_payments,419.7036431,0,1.4401,0.378,0.5863,-0.3263,0.3432 +0x254dd,CUS_0x3fbc,August,26,572-35-7205,Media_Manager,75612.08,6401.006667,8,7,17,100,"Student Loan, Student Loan, Home Equity Loan, Student Loan, and Auto Loan",,20.74454719,8.5,10,Bad,2551.354015,30.00896964,17 Years and 10 Months,Yes,226.1019944,,High_spent_Large_value_payments,580.5176628,0,0.2253,-0.755,-0.3185,0.3649,-0.6449 +0x254e9,CUS_0x59cd,August,32,741-73-1869,Musician,10009.905,,8,5,20,3,"Not Specified, Not Specified, and Auto Loan",,19,11.23,12,Standard,2616.31,40.66869724,14 Years and 4 Months,Yes,23.94543338,30.25821206,Low_spent_Large_value_payments,280.4122296,0,1.3916,0.1445,1.1708,1.4816,0.706 +0x254f5,CUS_0x5e30,August,20,403-57-6898,Scientist,25122.47,1860.539167,4,4,16,4,"Auto Loan, Payday Loan, Payday Loan, and Home Equity Loan",27.79241591,20.09413931,19.68,9,Standard,1406.264138,36.30545358,,Yes,62.48455602,159.6270436,Low_spent_Small_value_payments,253.942317,0,-0.791,-0.0721,0.6965,-1.006,0.6333 +0x25501,CUS_0x89ff,August,35,#F%$D@*&8,Musician,30619.56,2704.63,5,7,16,6,"Credit-Builder Loan, Mortgage Loan, Credit-Builder Loan, Student Loan, Personal Loan, and Credit-Builder Loan",31.0317956,24.33116676,17.12,6,Standard,795.6444381,25.61140573,12 Years and 11 Months,Yes,137.7931666,97.21899689,Low_spent_Small_value_payments,325.4508365,0,-1.4307,-0.7061,0.4929,0.5589,0.8033 +0x2550d,CUS_0x6c24,August,21,302-41-4735,Teacher,80906.36,6990.196667,7,7,23,1480,"Mortgage Loan, Home Equity Loan, Auto Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",32.78972773,18.0583432,5.43,9,Bad,5483.943968,32.54496197,9 Years and 3 Months,Yes,403.4848775,118.2724659,High_spent_Large_value_payments,417.2623233,0,-0.1786,0.2269,-1.8583,1.4225,-0.6554 +0x25519,CUS_0x85cb,August,22,291-85-1125,Writer,68475.24,5488.27,7,8,33.06745738,5,"Not Specified, Home Equity Loan, Mortgage Loan, Debt Consolidation Loan, and Student Loan",,24,3.2,10,_,4340.050954,28.9260497,14 Years and 4 Months,Yes,236.0084194,378.1049477,Low_spent_Small_value_payments,197.993345,0,-0.2829,-1.3027,-0.9551,1.5438,1.2007 +0x25525,CUS_0xc686,August,27,448-29-3180,Engineer,70483.74,,8,6,20,0,,24.4275692,18,7.68,8,Standard,718.8547754,25.94863678,14 Years and 4 Months,Yes,0,418.7157608,High_spent_Small_value_payments,462.1740781,0,0.7297,-1.6759,0.3713,-0.7523,-0.7583 +0x25531,CUS_0xaacd,August,44,731-22-8027,Media_Manager,37516.41,,0,3,3,1,Auto Loan,17.57782417,,6.88,3,_,730.1509771,24.90170096,32 Years and 4 Months,NM,18.97557469,170.9983378,High_spent_Small_value_payments,395.2628375,0,-1.4863,1.1302,-2.051,0.4029,0.4649 +0x2553d,CUS_0x1abb,August,41,014-18-6605,Lawyer,70217.08,,9,7,28,5,"Debt Consolidation Loan, Auto Loan, Credit-Builder Loan, Not Specified, and Mortgage Loan",25.28354878,15,20.82,11,Bad,3100,27.24523739,9 Years and 10 Months,Yes,168.9555519,138.9320547,High_spent_Medium_value_payments,529.5547267,0,-2.6833,-0.2443,0.5804,1.0883,0.0666 +0x25549,CUS_0x810d,August,34,344-20-2467,Engineer,69932.08,5546.673333,5,1,7,0,,3.936362896,5,9.25,2,Good,100.5384393,34.55312915,,No,0,197.8555898,Low_spent_Medium_value_payments,666.3310358,0,1.3693,0.2352,0.4262,1.2377,1.5691 +0x25555,CUS_0x98ba,August,35,750-09-5349,Entrepreneur,27171.26,,3,5,4,0,,12.23571407,13,3.18,5,Standard,896.47,23.45793503,16 Years and 6 Months,NM,0,10000,Low_spent_Small_value_payments,207.30214,0,0.736,2.0226,-0.738,0.7568,2.0569 +0x25561,CUS_0x5ff6,August,31,969-04-8576,Scientist,15450.44,1115.536667,10,1357,16.06745738,9,"Student Loan, Mortgage Loan, Mortgage Loan, Personal Loan, Credit-Builder Loan, Credit-Builder Loan, Not Specified, Payday Loan, and Personal Loan",40.41208837,22.22358193,2.27,13,Bad,3062.411728,39.14780124,11 Years and 0 Months,Yes,109.0162308,56.27300186,Low_spent_Medium_value_payments,199.544146,0,0.2112,-0.9918,0.2193,0.6499,0.1869 +0x2556d,CUS_0xa455,August,35,458-30-8277,Doctor,112745.76,,3,7,2,3,"Debt Consolidation Loan, Mortgage Loan, and Auto Loan",,6,4.27,7,Good,335.69,27.18296378,,No,188.1854369,521.9714212,Low_spent_Medium_value_payments,489.1911419,0,0.8491,0.2935,0.8472,-0.2131,0.9388 +0x25579,CUS_0x22a1,August,29,181-78-0271,Lawyer,17024.05,1454.082708,3,4,12,6,"Payday Loan, Student Loan, Auto Loan, Not Specified, Debt Consolidation Loan, and Auto Loan",,17,15.42,12,Standard,1473.4,34.25282058,8 Years and 2 Months,Yes,74.01477912,,Low_spent_Medium_value_payments,250.2650181,0,0.5948,0.3182,2.551,-1.5758,-0.564 +0x25585,CUS_0x42c3,August,80,668-97-7763,Entrepreneur,40056.1,,6,4,13,3,"Auto Loan, Debt Consolidation Loan, and Debt Consolidation Loan",22.62948523,15,5.02,2,Standard,182.58,29.84968645,,No,76.83324885,82.69350604,High_spent_Medium_value_payments,429.5740784,0,0.9048,-0.4831,0.0883,1.0963,0.94 +0x25591,CUS_0x4c9,August,24,516-33-7752,Musician,72629.94,5948.454596,5,5,3,1,Not Specified,21.39877841,16,11.83,3,_,1305.574416,24.86401042,26 Years and 5 Months,No,408.7495313,129.3614765,High_spent_Medium_value_payments,731.8725663,0,-0.3867,-0.5839,-1.5736,-0.2717,-1.0865 +0x2559d,CUS_0x731c,August,43,831-78-4559,Journalist,19852.09,1654.340833,10,8,34.88954781,7,"Auto Loan, Student Loan, Home Equity Loan, Mortgage Loan, Student Loan, Auto Loan, and Student Loan",23.06272819,17,17.6,12,_,3176.77,35.34439659,9 Years and 0 Months,Yes,1417.174562,23.98309578,High_spent_Large_value_payments,269.9463438,0,1.6928,-0.2039,-1.0108,0.3751,-1.0864 +0x255a9,CUS_0xa066,August,29,619-80-2517,Entrepreneur,72279.4,6295.283333,7,6,23,7,"Not Specified, Personal Loan, Payday Loan, Not Specified, Auto Loan, Not Specified, and Payday Loan",,12.90411192,7.22,,Standard,1429.687249,30.5118725,14 Years and 5 Months,Yes,282.5445507,462.292502,Low_spent_Medium_value_payments,164.6912807,0,-1.2257,-1.0315,0.8787,0.8495,0.0098 +0x255b5,CUS_0x867e,August,40,500-65-8725,Teacher,32471.74,,8,10,20.95700519,9,"Not Specified, Debt Consolidation Loan, Debt Consolidation Loan, Home Equity Loan, Mortgage Loan, Credit-Builder Loan, Payday Loan, Debt Consolidation Loan, and Student Loan",,26.81126053,2.77,11,Bad,1909.915096,31.45866942,17 Years and 0 Months,Yes,1465.406167,,High_spent_Small_value_payments,164.9474054,0,0.8425,0.387,-1.7833,-0.3996,-0.1106 +0x255c1,CUS_0x7dc5,August,32,994-58-4239,Architect,175572.44,14422.03667,5,4,1,3,"Personal Loan, Auto Loan, and Student Loan",,2,6.09,1,Good,388.99,43.3061559,32 Years and 10 Months,No,290.1069733,97.86036194,High_spent_Large_value_payments,1294.236331,0,0.016,0.8376,-1.8288,-0.0135,0.1577 +0x255cd,CUS_0xa568,August,40,#F%$D@*&8,Scientist,120009.32,10242.77667,5,1,7,4,"Student Loan, Not Specified, Personal Loan, and Debt Consolidation Loan",,1,6.75,0,Good,446.51,36.83960772,29 Years and 3 Months,No,230.5283521,197.6267707,High_spent_Large_value_payments,836.1225439,0,0.5833,-0.1214,-0.9965,0.7394,-0.2118 +0x255d9,CUS_0x701f,August,24,549-24-1350,Lawyer,59868.93,,4,7,8.288361749,4,"Not Specified, Mortgage Loan, Home Equity Loan, and Credit-Builder Loan",12.1062867,11,6.09,4,Good,417.72,23.88291356,29 Years and 0 Months,No,104.6220378,10419.93746,Low_spent_Small_value_payments,80.19025598,0,-0.4194,-0.3366,-1.7906,0.1633,0.2959 +0x255e5,CUS_0xb80d,August,32,713-24-3856,Developer,28796.82,,6,6,21,5,"Student Loan, Payday Loan, Payday Loan, Personal Loan, and Student Loan",36.07978636,22.88174639,1.78,8,Bad,2695.24147,28.74631248,6 Years and 6 Months,Yes,82.23521975,30.43015294,High_spent_Medium_value_payments,375.2081273,0,-0.1062,-0.0475,-0.6455,-0.1714,0.7609 +0x255f1,CUS_0xa407,August,29,354-91-6159,Entrepreneur,34599.94,2942.328333,7,6,3,0,,10.39480275,8,3.45,1,Standard,942.59,33.12860879,27 Years and 2 Months,No,0,165.3975517,High_spent_Small_value_payments,388.8352816,0,1.0882,0.6876,-0.8954,1.2061,-0.8535 +0x255fd,CUS_0x9d41,August,38,979-38-2855,Lawyer,41015.55,3152.9625,0,4,4,1,Payday Loan,0,2,1.58,2,Good,599.4,31.35626656,25 Years and 6 Months,No,25.67125702,,Low_spent_Small_value_payments,214.6149336,0,0.3605,-0.728,1.2867,-0.1115,-0.1748 +0x25609,CUS_0xb3d7,August,19,#F%$D@*&8,Teacher,16809.56,1686.796667,7,10,22.06745738,5,"Debt Consolidation Loan, Personal Loan, Home Equity Loan, Debt Consolidation Loan, and Auto Loan",37.67888906,19,1.87,8,_,2014.340954,32.68276325,6 Years and 4 Months,Yes,38.6507601,211.3130896,Low_spent_Small_value_payments,181.995529,0,0.7423,-0.469,0.7287,0.5673,0.4212 +0x25615,CUS_0xb333,August,44,927-28-8653,Musician,61699.1,5010.591667,4,4,12,0,,15.86348013,,8.51,5,Good,1495.244299,35.96724108,29 Years and 4 Months,No,0,46.70620939,High_spent_Large_value_payments,694.3529573,0,-0.9168,1.0472,0.1287,0.1445,0.4247 +0x25621,CUS_0x6f5d,August,32,047-76-1717,Engineer,18577.62,1290.909036,6,8,26,2,"Auto Loan, and Debt Consolidation Loan",24.11755503,16.73913679,14.53,12,Bad,2476.237924,30.78465393,18 Years and 10 Months,Yes,197.3190753,,Low_spent_Small_value_payments,222.516169,0,-2.4249,-1.0005,-0.7571,1.628,0.2106 +0x2562d,CUS_0x27df,August,41,140-14-6234,Doctor,78722.56,,7,7,9,3,"Payday Loan, Home Equity Loan, and Payday Loan",,8,4.77,4,_,569.38,24.93931778,17 Years and 6 Months,No,137.1752874,157.4397945,High_spent_Large_value_payments,622.7062515,0,-0.339,-1.4321,2.1082,-0.3692,-1.1805 +0x25639,CUS_0x16a5,August,42,309-46-9938,_______,10027.07,,8,5,9,3,"Auto Loan, Mortgage Loan, and Home Equity Loan",19.62188308,17,1.77,5,Standard,168.72,23.31224233,21 Years and 2 Months,No,73384,32.74322333,Low_spent_Medium_value_payments,323.5543352,0,-0.7181,0.2277,-1.0071,1.5127,-1.2021 +0x25645,CUS_0x5b2a,August,37,#F%$D@*&8,Mechanic,142974.96,11698.58,2,4,5,3,"Debt Consolidation Loan, Personal Loan, and Home Equity Loan",90,1850,0.27,1,Good,408.2185943,22.27005033,24 Years and 5 Months,No,228.1625797,1762.426558,!@9#%8,,0,0.4309,-0.0054,0.4467,-2.2658,-0.4813 +0x25651,CUS_0x8fe0,August,18,990-03-5675,Architect,25352,2077.666667,5,6,8,2,"Student Loan, and Payday Loan",21.65442311,15,15.19,8,_,1320.31,34.04490221,19 Years and 0 Months,Yes,26.5035985,105.129386,Low_spent_Large_value_payments,346.1336822,0,1.1513,1.7592,0.7203,-0.531,-1.6744 +0x2565d,CUS_0x2bc8,August,27,851-73-1122,Architect,7981.735,,10,7,25.06745738,6,"Payday Loan, Personal Loan, Personal Loan, Auto Loan, Auto Loan, and Auto Loan",24.28477739,16,15.3,12,Bad,5053.210954,41.78905556,4 Years and 2 Months,Yes,20.32517643,70.46453443,Low_spent_Medium_value_payments,251.8044595,0,0.7519,1.1375,2.3512,0.3802,-0.3111 +0x25669,CUS_0x2bc4,August,32,807-49-7186,Musician,26094.08,2120.506667,7,5,11,3,"Mortgage Loan, Debt Consolidation Loan, and Payday Loan",,9,1.65,2,Standard,945.7,30.89700949,18 Years and 8 Months,NM,51.27956061,239.4653337,Low_spent_Small_value_payments,211.3057724,0,0.0499,-0.417,-0.3268,-0.0043,0.4362 +0x25675,CUS_0x4e80,August,34,940-30-7729,Accountant,82647.69,6967.3075,3,4,9,3,"Home Equity Loan, Mortgage Loan, and Home Equity Loan",16.50580297,11,12.57,7,Standard,1485.52,38.64955588,,Yes,186.2553918,82.72140992,High_spent_Large_value_payments,667.7539483,0,0.8521,0.1108,0.2253,-0.2756,0.7627 +0x25681,CUS_0xa762,August,33,152-83-6320,Media_Manager,43820.67,3658.7225,1,2,11,0,,17.47890489,,2.37,4,Good,1131.896138,34.15069036,26 Years and 8 Months,No,0,85.72080122,High_spent_Medium_value_payments,538.0740152,0,1.0129,-1.1382,0.1256,0.2264,-0.6241 +0x2568d,CUS_0x63db,August,39,925-34-6619,Accountant,5556554,,0,5,8.288361749,4,"Mortgage Loan, Auto Loan, Debt Consolidation Loan, and Mortgage Loan",,12,5.74,6,Good,683.67,27.97019865,29 Years and 5 Months,No,42.84660884,540.8887047,Low_spent_Small_value_payments,260.4656058,0,-0.4822,2.1892,-0.7993,0.9581,0.5757 +0x25699,CUS_0xac4a,August,29,514-32-8216,Mechanic,25883.65,,4,6,6,100,"Personal Loan, Credit-Builder Loan, Student Loan, Student Loan, and Debt Consolidation Loan",,11,12.33,11,_,47.03,40.83036426,11 Years and 8 Months,NM,82.1887875,110.8844421,High_spent_Small_value_payments,299.4238538,0,0.6211,-1.078,-0.3187,0.5597,0.6089 +0x256a5,CUS_0x5665,August,35,868-53-7311,Journalist,14906.67,1117.627975,6,6,10,2,"Personal Loan, and Home Equity Loan",,20,,3,Standard,100.3,40.08089781,30 Years and 3 Months,Yes,104.1770466,93.36503903,Low_spent_Medium_value_payments,285.0746892,0,-0.3515,-0.025,-0.6401,1.3261,-1.7504 +0x256b1,CUS_0x6427,August,21,154-28-7228,Engineer,8630.4,,8,10,31.95700519,6,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, Auto Loan, Payday Loan, and Payday Loan",30.67222844,17,27.34,6,Bad,2753.760954,27.83680651,8 Years and 8 Months,Yes,1350.559618,,Low_spent_Small_value_payments,227.3412252,0,-0.6055,-1.0352,1.4016,0.0395,0.7341 +0x256bd,CUS_0x48ca,August,40,362-11-2987,Accountant,40878.85,3440.570833,0,5,11,4,"Student Loan, Student Loan, Mortgage Loan, and Credit-Builder Loan",,7,9.86,8,_,1197.375513,27.78527408,24 Years and 6 Months,No,105.0170913,135.260149,High_spent_Medium_value_payments,367.6832272,0,-2.4332,-0.023,-1.2343,0.0824,-1.0137 +0x256c9,CUS_0xb807,August,38,766-13-4262,Writer,10265.86,,6,8,21,2,"Not Specified, and Debt Consolidation Loan",,20.24092955,7.22,8,Bad,2514.857896,24.00021435,7 Years and 3 Months,Yes,11.95577064,26.60571359,Low_spent_Small_value_payments,327.5873491,0,-1.4109,0.594,-1.5952,0.4826,-0.7326 +0x256d5,CUS_0x3d9c,August,50,#F%$D@*&8,Musician,19809.27,,5,5,8,1,Credit-Builder Loan,,0,7.23,2,Good,562.34,34.67397846,30 Years and 4 Months,No,14.05862727,22.95431198,High_spent_Large_value_payments,374.1643108,0,-0.9204,-0.8911,0.1123,-0.2209,-1.468 +0x256e1,CUS_0x113e,August,45,542-14-0249,Manager,34476.68,,6,7,25.06745738,8,"Personal Loan, Student Loan, Personal Loan, Mortgage Loan, Student Loan, Not Specified, Auto Loan, and Debt Consolidation Loan",,20.51682529,4.48,11,Bad,2430.719607,24.57681296,11 Years and 6 Months,Yes,171.1757589,10000,Low_spent_Medium_value_payments,120.8370933,0,-0.2698,1.2198,0.2274,-0.8091,-1.1897 +0x256ed,CUS_0xa776,August,28,872-41-5317,Writer,38856.53,3337.044167,3,4,1,3,"Payday Loan, Debt Consolidation Loan, and Payday Loan",0,3.57759042,9.43,1,_,1499.006314,30.08896505,,No,51.75738955,211.0810074,Low_spent_Large_value_payments,340.8660198,0,1.152,0.6727,-0.3206,-0.4805,0.3858 +0x256f9,CUS_0xac85,August,38,512-49-9006,Scientist,43135.98,3375.665,8,4,18,2,"Mortgage Loan, and Personal Loan",18.43460923,10.54369883,13.2,5,Standard,1978.125418,31.26523678,10 Years and 10 Months,Yes,1283,10000,Low_spent_Small_value_payments,238.1190189,0,-0.3759,0.0786,1.3348,-2.3968,-0.8271 +0x25705,CUS_0x42ca,August,45,956-92-4573,Teacher,28702.52,2420.876667,5,6,9,3,"Credit-Builder Loan, Debt Consolidation Loan, and Payday Loan",90,430,10.16,2,Standard,1005.41,37.2655154,19 Years and 3 Months,Yes,36.65081376,83.79442759,High_spent_Medium_value_payments,371.6424253,0,-0.7875,0.126,1.7793,-0.2204,0.119 +0x25711,CUS_0x3124,August,53,921-27-0890,Journalist,43502.68,,0,7,6,1,Home Equity Loan,,5,4.93,3,Good,795.6109571,23.58433366,26 Years and 2 Months,No,32.03232756,517.6891424,Low_spent_Small_value_payments,191.8898711,0,-0.0585,0.3289,0.0758,1.1442,1.7279 +0x2571d,CUS_0x6e9,August,43,750-50-1814,_______,174552.84,14581.07,4,6,4.288361749,2,"Personal Loan, and Credit-Builder Loan",1.190629014,4,6.7,3,_,308.8,41.13096835,16 Years and 6 Months,No,256.0135952,1484.204587,Low_spent_Medium_value_payments,417.8262789,0,-1.8763,0.5778,-0.6091,1.4231,-0.2609 +0x25729,CUS_0x8d43,August,26,376-50-7527,_______,16266.91,,9,9,29.06745738,2,"Personal Loan, and Debt Consolidation Loan",22.78968582,,2.7,9,Bad,2626.389551,32.56607038,16 Years and 11 Months,Yes,23.05467358,114.6499794,Low_spent_Small_value_payments,247.6326424,0,-2.3386,-1.1596,0.1765,0.3,-0.2823 +0x25735,CUS_0x6701,August,45,065-97-1478,Journalist,79510.95,6805.9125,6,3,5,6,"Home Equity Loan, Credit-Builder Loan, Personal Loan, Auto Loan, Personal Loan, and Not Specified",18.71409625,10.36917239,12.24,8,Standard,734.212025,37.20985321,6 Years and 0 Months,Yes,315.6639373,181.6626493,High_spent_Medium_value_payments,433.2646633,0,1.3537,-1.0215,0.2665,-0.2217,0.5016 +0x25741,CUS_0x9d04,August,48,069-49-1031,Developer,93841.65,8115.1375,0,3,6,1,Not Specified,,10.15857496,1.08,2,_,1185.176397,38.46127497,15 Years and 8 Months,No,52.68657186,483.0322695,!@9#%8,555.7949087,0,0.0239,-0.2495,2.0252,0.9698,-0.7766 +0x2574d,CUS_0xbb21,August,36,963-73-5879,Doctor,14329.24,,9,5,22.06745738,9,"Personal Loan, Personal Loan, Debt Consolidation Loan, Debt Consolidation Loan, Auto Loan, Payday Loan, Not Specified, Home Equity Loan, and Personal Loan",37.48809776,21,5.85,7,Bad,2406.010954,35.76287106,9 Years and 5 Months,Yes,100.6761941,77.30989198,Low_spent_Medium_value_payments,192.6039593,0,0.7746,-1.4069,-1.2344,-0.9309,-0.2046 +0x25759,CUS_0x1ab8,August,23,777-84-6423,Doctor,5539643,7181.34,6,4,10,1,Student Loan,,20,11.34,4,Standard,729.69,30.83967369,29 Years and 11 Months,Yes,49.31112738,,Low_spent_Medium_value_payments,204.4737702,0,-0.8083,1.2375,1.2303,-1.3195,-1.0504 +0x25765,CUS_0x9209,August,29,#F%$D@*&8,Architect,60529.08,5069.09,5,3,24,7,"Payday Loan, Auto Loan, Personal Loan, Payday Loan, Personal Loan, Student Loan, and Mortgage Loan",,22.55553564,15.84,10,_,2575.60827,29.76786539,16 Years and 5 Months,NM,317.5806679,93.93216271,High_spent_Large_value_payments,335.3961694,0,-0.0169,0.1531,-0.0614,0.2198,0.2776 +0x25771,CUS_0xac58,August,31,471-65-9055,Writer,37769.92,3175.493333,7,4,18,6,"Mortgage Loan, Credit-Builder Loan, Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, and Credit-Builder Loan",22.6503418,15,14.61,12,Standard,196.13,32.03638697,6 Years and 9 Months,Yes,164.4172394,185.0519549,Low_spent_Large_value_payments,238.080139,0,-0.1561,-0.6112,-0.2794,-0.5472,0.5125 +0x2577d,CUS_0x9330,August,35,924-37-4566,_______,35755.69,2775.640833,8,3,1,1,Personal Loan,28.51568448,20,-0.84,4,Good,198.29,37.03418856,22 Years and 5 Months,No,26.44687805,134.5986446,!@9#%8,406.5185607,0,0.4983,-0.142,-1.2626,-0.6928,0.355 +0x25789,CUS_0x5b6c,August,35,796-18-5446,Scientist,68183.84,5916.986667,8,4,27,7,"Auto Loan, Student Loan, Mortgage Loan, Auto Loan, Debt Consolidation Loan, Debt Consolidation Loan, and Personal Loan",,22.64631407,,10,_,3716.789691,37.13893471,11 Years and 9 Months,Yes,201.1615103,10000,!@9#%8,493.5249503,0,0.9504,-0.1825,-0.492,-0.3767,-0.3206 +0x25795,CUS_0x5af6,August,25,015-20-8263,Accountant,123915.99,,3,6,7.288361749,2,"Payday Loan, and Home Equity Loan",0,2,8.37,8,Good,1394.91,27.42449456,17 Years and 0 Months,No,156.9881473,640.6681747,High_spent_Large_value_payments,895.914389,0,1.2363,-2.2471,-1.9495,-1.707,-1.1548 +0x257a1,CUS_0x9cdc,August,24,187-13-2907,Scientist,16937.425,,4,5,4,1,Home Equity Loan,0,2,,1,Good,151.5798912,27.77495347,22 Years and 0 Months,No,7.247942506,,Low_spent_Small_value_payments,341.6580454,0,-1.4105,-0.9585,-0.481,-0.037,-0.2657 +0x257ad,CUS_0x9038,August,54,457-44-5854,Engineer,33132.94,2478.078333,6,6,8,3,"Credit-Builder Loan, Credit-Builder Loan, and Mortgage Loan",15.19804136,10,0.61,2,Standard,795.69,24.02483089,,No,81.7809356,,High_spent_Medium_value_payments,313.4773215,0,1.1,1.7642,1.2802,-0.5573,0.5161 +0x257b9,CUS_0x972a,August,33,297-34-8639,Entrepreneur,87605.68,,5,7,19,3,"Credit-Builder Loan, Personal Loan, and Personal Loan",,16,3.65,6,Standard,512.74,40.37466588,30 Years and 0 Months,Yes,112.1488009,131.1872664,High_spent_Small_value_payments,746.611266,0,-0.5293,0.3402,1.8095,-0.2151,0.1892 +0x257c5,CUS_0x21b7,August,21,802-21-9380,Musician,18157.95,,6,7,29.06745738,2,"Personal Loan, and Home Equity Loan",22.043789,14.03063335,9.03,15,Standard,2277.15072,35.29320108,8 Years and 6 Months,Yes,217.3128189,161.8238643,Low_spent_Small_value_payments,208.6097028,0,0.33,-1.5345,-0.6202,-0.8049,0.0432 +0x257d1,CUS_0xacda,August,46,252-25-5625,Developer,19012.18,1548.348333,4,6,20,3,"Home Equity Loan, Home Equity Loan, and Student Loan",34.41697598,20.83597211,19.07,9,Standard,94.2494093,33.64852915,21 Years and 11 Months,Yes,42.25817566,121.6225245,Low_spent_Medium_value_payments,270.9541332,0,-0.2357,-0.4864,1.8555,-1.9134,-1.2889 +0x257dd,CUS_0xc195,August,24,939-96-0773,Mechanic,81842.52,6733.21,6,6,18,7,"Home Equity Loan, Payday Loan, Payday Loan, Not Specified, Mortgage Loan, Student Loan, and Debt Consolidation Loan",34.67111278,19,30.98,12,Bad,3127.09,39.96563967,11 Years and 11 Months,NM,322.076599,122.3168761,High_spent_Medium_value_payments,478.9275249,0,0.5172,0.3234,0.0482,-0.3059,-1.6086 +0x257e9,CUS_0x95c9,August,39,326-89-0421,Mechanic,59612.64,5067.72,6,5,33.06745738,7,"Credit-Builder Loan, Auto Loan, Not Specified, Mortgage Loan, Credit-Builder Loan, Payday Loan, and Payday Loan",,,17.93,12,Bad,5690.700364,30.58774961,3 Years and 6 Months,Yes,283.733432,,High_spent_Small_value_payments,206.0313959,0,-1.4563,-0.3687,0.0456,-0.8666,0.2602 +0x257f5,CUS_0xa789,August,21,058-06-1493,Media_Manager,15339.75,987.1371372,6,4,18.06745738,8,"Debt Consolidation Loan, Student Loan, Mortgage Loan, Home Equity Loan, Student Loan, Personal Loan, Mortgage Loan, and Home Equity Loan",38.40494932,18.62058057,8.15,12,Bad,4538.925407,26.03025631,0 Years and 10 Months,Yes,172.7228453,93.78382417,Low_spent_Small_value_payments,175.9796553,0,-1.4141,0.9324,-0.6839,-0.5199,-1.3318 +0x25801,CUS_0x1044,August,44,#F%$D@*&8,_______,33441.59,,2,4,0.288361749,0,,0,4,9.58,5,_,154.96,35.06313519,31 Years and 11 Months,No,0,649.4697217,Low_spent_Small_value_payments,335.347656,0,0.5059,-0.6228,0.1967,1.3983,-0.8097 +0x2580d,CUS_0x70d6,August,43,845-19-4578,Journalist,49400.52,4055.71,9,7,32.06745738,6,"Student Loan, Credit-Builder Loan, Auto Loan, Credit-Builder Loan, Mortgage Loan, and Not Specified",36.91836991,24,18.24,10,Bad,2888.860954,30.93508433,7 Years and 4 Months,Yes,230.2878441,247.1876322,High_spent_Small_value_payments,161.3752358,0,-1.0902,0.6692,0.2898,0.9533,0.4111 +0x25819,CUS_0x6120,August,29,191-14-8400,Journalist,59207.56,5176.963333,6,10,29.88954781,7,"Payday Loan, Payday Loan, Mortgage Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Payday Loan",,25.38799985,22.61,7,Bad,5403.686232,37.02100325,5 Years and 6 Months,Yes,1510.647231,278.4961223,Low_spent_Medium_value_payments,314.2228987,0,-1.1907,0.7936,0.9049,0.4716,1.0011 +0x25825,CUS_0x797a,August,18,303-89-6328,Media_Manager,160016.44,13477.70333,2,5,2.288361749,0,Credit-Builder Loan,1.677031284,6,1.85,1,_,975.7831623,43.10273027,22 Years and 10 Months,No,86.88154044,592.7327212,High_spent_Large_value_payments,1348.87488,0,0.842,-0.6373,0.6605,0.0901,-0.4847 +0x25831,CUS_0x1130,August,41,846-60-3664,_______,137798.88,10609.79191,6,726,13,0,,16.0639909,12,9.25,2,Standard,948.0020059,30.05431056,,No,988.4480914,1298.58093,Low_spent_Medium_value_payments,282.8702173,0,-2.4863,0.7728,1.1483,-0.7378,-0.115 +0x2583d,CUS_0x76fb,August,40,823-20-1441,Lawyer,36825.36,,6,5,13,4,"Credit-Builder Loan, Auto Loan, Payday Loan, and Not Specified",11.76980375,11,9.45,8,Standard,1078.41,31.56503438,18 Years and 8 Months,Yes,61.69087228,33.29579511,High_spent_Medium_value_payments,460.9913326,0,-1.9556,-0.8182,-1.6262,0.7361,-2.2297 +0x25849,CUS_0x1c83,August,30,544-01-8080,Entrepreneur,76387.05,6104.5875,5,4,20,0,,15.20412105,12,7.65,2,Standard,1001.62,31.75091384,19 Years and 11 Months,No,0,416.7767727,Low_spent_Small_value_payments,483.6819773,0,0.8442,-0.6879,-1.1351,0.9635,-0.1499 +0x25855,CUS_0x720e,August,27,807-95-6893,Entrepreneur,14458,1251.833333,4,8,29.88954781,6,"Auto Loan, Mortgage Loan, Not Specified, Mortgage Loan, Student Loan, and Debt Consolidation Loan",8.730720726,5.953767203,10.73,13,Standard,1893.085834,36.74507459,8 Years and 0 Months,Yes,1371.359488,79.30452392,Low_spent_Large_value_payments,250.1892399,0,0.6551,-0.5381,1.1967,-0.2395,-2.3439 +0x25861,CUS_0x81e8,August,26,363-37-3843,Writer,121274.24,9887.186667,2,7,9.288361749,2,"Not Specified, and Auto Loan",10.24344986,10,8.22,6,_,844.6,35.88106685,27 Years and 8 Months,NM,167.4310717,593.773598,High_spent_Medium_value_payments,897.4514579,0,-0.3568,0.3759,-1.2546,0.0216,-0.5984 +0x2586d,CUS_0x4ad5,August,34,807-46-4675,Teacher,31592.03,,6,7,18,2,"Not Specified, and Debt Consolidation Loan",31.9039214,21,7.28,6,_,778.91,40.02900919,20 Years and 3 Months,Yes,41.84350383,61.39593387,High_spent_Large_value_payments,391.827479,0,-0.5876,0.6172,1.2412,-1.5023,-0.481 +0x25879,CUS_0x4c59,August,24,261-01-0693,Accountant,7021.91,507.1591667,3,9,20,7,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, Personal Loan, Payday Loan, Payday Loan, and Debt Consolidation Loan",,18,12.75,13,_,1919.27,36.6655083,11 Years and 8 Months,Yes,27.59062663,29.83058492,Low_spent_Medium_value_payments,273.2947051,0,-0.0717,0.3868,1.3658,-0.9847,-0.8982 +0x25885,CUS_0xdcc,August,39,317-53-8005,Accountant,23737.09,,1083,5,11,3,"Student Loan, Home Equity Loan, and Not Specified",15.38898278,11.3359485,8.21,6,Standard,104.9638235,24.6775547,24 Years and 5 Months,Yes,47.14182853,108.3944039,Low_spent_Large_value_payments,338.5728509,0,-0.3622,0.2331,0.4576,1.5722,0.1198 +0x25891,CUS_0x3278,August,38,816-95-6742,Teacher,20789.075,,5,4,1,3,"Student Loan, Not Specified, and Personal Loan",,2,11.23,3,_,504.9378127,36.70023928,33 Years and 0 Months,No,48.08955721,42.26101994,High_spent_Medium_value_payments,346.6945638,0,-0.7448,-0.3273,0.5634,-0.7349,1.1057 +0x2589d,CUS_0x50c4,August,27,043-82-6979,Mechanic,14566.27,,6,9,32.06745738,5,"Credit-Builder Loan, Home Equity Loan, Auto Loan, Auto Loan, and Payday Loan",22.14024551,14,15.26,11,Bad,3626.230954,26.28054258,2 Years and 8 Months,Yes,50.31132271,42.18268178,Low_spent_Small_value_payments,290.9712909,0,0.0122,1.8157,-1.1372,-0.8153,-1.1739 +0x258a9,CUS_0xbf23,August,18,669-46-5682,Accountant,8246.785,582.2320833,10,9,23.06745738,4,"Student Loan, Student Loan, Personal Loan, and Not Specified",25.1372645,,13.82,10,Standard,1751.420954,33.879341,9 Years and 5 Months,Yes,24.47511465,62.00197301,!@9#%8,235.0258327,0,0.9081,0.0475,0.7103,-0.258,-0.3057 +0x258b5,CUS_0x38c2,August,19,423-55-1106,Musician,34860.36,,8,3,14,2,"Mortgage Loan, and Personal Loan",14.94041592,,11.53,2,Standard,1301.87,32.40505084,,NM,34.6115848,10000,High_spent_Medium_value_payments,411.9492916,0,1.8798,-0.0767,-0.4884,0.03,-1.7167 +0x258c1,CUS_0x29f5,August,36,039-46-6036,Developer,101316.64,8526.053333,3,6,9,3,"Personal Loan, Credit-Builder Loan, and Payday Loan",22.61593917,18,11.92,7,Standard,559.18,34.66105939,,No,166.2728814,218.5740607,High_spent_Large_value_payments,707.7583912,0,-0.0034,-1.9292,-1.774,1.7334,-0.9787 +0x258cd,CUS_0xab5f,August,55,557-58-2693,Architect,54740.38,4395.698333,3,4,7,0,,17.7503739,16,9.09,2,Standard,1101.31,28.11511804,,No,0,104.249819,High_spent_Medium_value_payments,585.3200143,0,0.4984,1.7246,-0.4871,-0.7648,-0.6463 +0x258d9,CUS_0xa42f,August,32,823-43-1961,Accountant,17576.52,,4,7,2,3,"Auto Loan, Home Equity Loan, and Personal Loan",,12.84476927,-1.07,4,_,257.9845527,40.26372428,17 Years and 2 Months,No,29.73700692,83.1015621,Low_spent_Large_value_payments,280.632431,0,-0.6502,-1.0219,0.1006,-0.432,0.6929 +0x258e5,CUS_0xa756,August,40,360-64-9577,Musician,66193.98,,7,7,11,0,,17.6450042,,10.41,5,Standard,1166.37,28.37681237,20 Years and 11 Months,Yes,0,198.4065915,High_spent_Medium_value_payments,597.9099085,0,0.6047,-1.1702,-0.9898,-0.805,-0.5405 +0x258f1,CUS_0x7d4d,August,22,695-70-3700,Engineer,40511.74,3439.978333,3,6,17.06745738,3,"Mortgage Loan, Auto Loan, and Auto Loan",25.21784472,17,20.18,9,Standard,2495.990954,35.01869804,16 Years and 11 Months,Yes,69.28277943,,Low_spent_Medium_value_payments,175.601713,0,-0.348,-0.5548,0.2043,0.1069,0.9552 +0x258fd,CUS_0x828b,August,38,329-28-6277,Developer,73778.52,,4,5,14,4,"Home Equity Loan, Auto Loan, Credit-Builder Loan, and Not Specified",26.46520084,20,13.75,10,Standard,179.15,26.44920249,24 Years and 8 Months,Yes,233.2360964,,High_spent_Medium_value_payments,459.2208864,0,-1.0028,-0.1157,2.4185,-0.1022,0.0186 +0x25909,CUS_0x231f,August,20,335-74-0821,Architect,107288.16,,6,3,17.28836175,4,"Student Loan, Mortgage Loan, Not Specified, and Payday Loan",,14,6.92,2,Standard,1258.47,22.00281766,28 Years and 11 Months,No,346.0034022,1325.691987,Low_spent_Small_value_payments,,0,-0.2054,-0.2313,-0.9214,-0.1626,-1.015 +0x25915,CUS_0x5cc4,August,40,868-70-5450,Manager,18859.53,,10,6,21.06745738,2,"Mortgage Loan, and Auto Loan",,22,12.49,12,Standard,2319.740954,28.45421516,11 Years and 11 Months,Yes,23.88627298,91.8693568,Low_spent_Small_value_payments,306.9868323,0,-0.4484,1.7056,-0.1666,0.4748,1.1543 +0x25921,CUS_0x5fbb,August,39,564-43-1424,Lawyer,8272.2,,10,8,27.88954781,7,"Credit-Builder Loan, Auto Loan, Student Loan, Mortgage Loan, Credit-Builder Loan, Credit-Builder Loan, and Debt Consolidation Loan",,27.13535367,2.59,12,Bad,1916.897504,36.15695532,12 Years and 2 Months,Yes,1366.630901,,Low_spent_Small_value_payments,223.8544965,0,0.1019,1.4072,0.082,1.1403,1.3325 +0x2592d,CUS_0x7bec,August,25,695-07-0356,Journalist,57700.06,,5,6,13,0,,23.98246141,18,11.63,5,Standard,792.37,31.25730336,24 Years and 10 Months,NM,0,262.4516841,Low_spent_Small_value_payments,484.2821493,0,1.8329,-0.4528,0.3777,0.9987,-0.2201 +0x25939,CUS_0x1e84,August,55,000-08-1349,Media_Manager,65937.12,5465.76,5,5,12,2,"Payday Loan, and Auto Loan",,13,8.46,2,_,1081.01117,37.34355215,32 Years and 9 Months,No,87.37564919,124.8335984,High_spent_Medium_value_payments,603.2857094,0,0.4891,-1.9638,0.5757,-0.2948,-2.2803 +0x25945,CUS_0x5606,August,27,699-76-3461,Entrepreneur,93350.64,7573.22,4,6,20,0,,25.22313596,17,9.27,4,Standard,1139.1,32.78153884,26 Years and 5 Months,Yes,0,462.034837,Low_spent_Medium_value_payments,575.287163,0,1.1712,-1.5725,1.3309,1.1428,1.4185 +0x25951,CUS_0x5fcb,August,43,928-40-3948,Teacher,32690.86,,4,5,6,3,"Payday Loan, Home Equity Loan, and Debt Consolidation Loan",24.93219123,18,9.48,2,_,1380.29,32.78829021,,No,50.28184503,32.4778143,High_spent_Large_value_payments,448.264174,0,1.1789,-0.6354,0.9048,0.1289,0.2929 +0x2595d,CUS_0x3e03,August,24,504-67-6939,Developer,35971.49,,5,5,18,2,"Personal Loan, and Not Specified",,14,9.78,9,Standard,132.82,35.75119972,27 Years and 10 Months,Yes,54.48174018,66.96415967,High_spent_Medium_value_payments,438.3165168,0,0.4816,0.1776,-1.2837,-1.8376,1.2682 +0x25969,CUS_0xbd2e,August,44,274-13-0638,Teacher,7161.64,758.8033333,8,8,30.06745738,3,"Student Loan, Debt Consolidation Loan, and Credit-Builder Loan",32.80930382,22.66864127,8.61,6,_,3132.079319,33.57571535,11 Years and 8 Months,Yes,12.42722636,36.47560226,Low_spent_Small_value_payments,290.2572168,0,-0.0014,0.2401,0.5933,2.2403,-1.0716 +0x25975,CUS_0xc675,August,35,845-32-7827,Developer,73884.6,6255.05,6,870,30.88954781,7,"Auto Loan, Payday Loan, Payday Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Mortgage Loan",,17.60645712,5.71,12,Bad,2367.709416,40.90858924,9 Years and 9 Months,Yes,1672.582938,113.557511,High_spent_Large_value_payments,385.0344698,0,-0.3415,-1.4477,1.0211,0.8077,1.2034 +0x25981,CUS_0x5054,August,20,493-32-5111,Lawyer,43240.45,3608.448643,1,4,11,2,"Debt Consolidation Loan, and Payday Loan",0,0,8.07,3,Good,1157.367193,33.11673607,29 Years and 11 Months,No,209.8445636,303.2544617,Low_spent_Large_value_payments,331.5204637,0,-1.4157,-1.0297,1.4879,0.8083,-1.5732 +0x2598d,CUS_0x27e5,August,21,373-40-0600,Media_Manager,24415.29,2227.6075,7,6,8,3,"Not Specified, Not Specified, and Home Equity Loan",,9,13.35,8,_,898.7,37.19232441,,NM,40.22913294,71.38623825,High_spent_Medium_value_payments,361.1453788,0,0.9839,0.7754,0.6561,-0.8194,-0.8981 +0x25999,CUS_0x2002,August,39,823-93-4115,Entrepreneur,72305.9,5766.491667,5,7,15,100,"Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Not Specified",,19,1.49,6,_,1169.62,27.90566689,28 Years and 4 Months,NM,216.7762979,10000,Low_spent_Small_value_payments,181.3307088,0,0.6773,0.7631,-0.117,0.6287,1.1452 +0x259a5,CUS_0x6f95,August,29,582-29-6541,Musician,41792.4,3781.7,6,6,20,100,"Payday Loan, Debt Consolidation Loan, Not Specified, Student Loan, Mortgage Loan, Auto Loan, Student Loan, Auto Loan, and Not Specified",31.06462649,,27.15,12,Bad,4452.95,30.24790336,,NM,297.1318594,28.02137212,High_spent_Large_value_payments,293.0167685,0,-0.7377,-0.1121,-0.3741,0.2039,-1.8667 +0x259b1,CUS_0x1f97,August,50,346-14-6418,Journalist,175718.64,14707.22,3,5,11,0,,3.882809474,4,6.85,5,_,1336.86,41.37472712,23 Years and 5 Months,No,0,356.5503614,High_spent_Medium_value_payments,1364.171639,0,1.3484,1.2134,0.8679,0.2032,-0.5451 +0x259bd,CUS_0xbf18,August,34,481-81-6404,Developer,81100.8,6822.4,8,8,31.88954781,8,"Not Specified, Personal Loan, Student Loan, Home Equity Loan, Credit-Builder Loan, Mortgage Loan, Debt Consolidation Loan, and Personal Loan",30.41507475,21,19.6,10,Bad,3988.3,26.89277063,1 Years and 0 Months,Yes,1734.869721,,Low_spent_Medium_value_payments,157.6094927,0,-0.5198,1.1036,-0.311,-0.3134,2.3638 +0x259c9,CUS_0x9efc,August,28,168-85-8251,Accountant,33418.55,,6,3,5,2,"Student Loan, and Payday Loan",18.52367005,17,18.98,7,Standard,415.34,36.03107457,11 Years and 0 Months,Yes,37.6323299,126.4780681,Low_spent_Medium_value_payments,389.8775187,0,1.1356,1.5443,-0.5154,0.5118,1.4675 +0x259d5,CUS_0xb5b5,August,32,875-86-2440,Media_Manager,20466.63,1688.5525,10,9,21.06745738,5,"Mortgage Loan, Not Specified, Credit-Builder Loan, Mortgage Loan, and Payday Loan",39.82873283,20.43414501,2.73,11,Bad,3697.568706,27.53040837,0 Years and 9 Months,Yes,67.94692029,,Low_spent_Medium_value_payments,253.5238645,0,0.3582,-1.1779,-2.0837,-0.8424,1.8042 +0x259e1,CUS_0x85a2,August,34,130-19-9872,Writer,30053.32,2254.443333,8,8,29.88954781,917,"Personal Loan, Not Specified, Home Equity Loan, Credit-Builder Loan, Debt Consolidation Loan, Mortgage Loan, and Not Specified",,22.58275697,14.96,11,Bad,1426.594167,25.68007176,13 Years and 5 Months,Yes,1453.947726,,Low_spent_Large_value_payments,201.0354583,0,0.5034,0.4679,-0.0033,-0.5747,-0.0906 +0x259ed,CUS_0x8c51,August,39,755-61-1458,Architect,62661.54,5053.795,5,5,12,1,Personal Loan,,20,7.2,1,Good,466.2,26.07163365,27 Years and 8 Months,No,32.72113103,408.3776664,Low_spent_Medium_value_payments,344.2807026,0,0.626,2.5036,-1.5705,-0.3445,0.0044 +0x259f9,CUS_0x5f5a,August,34,862-68-6961,Lawyer,66691.23,,8,6,20,4,"Home Equity Loan, Not Specified, Student Loan, and Student Loan",,19,25.78,,Standard,760.71,21.97057253,17 Years and 6 Months,Yes,213.9379481,382.5386302,Low_spent_Medium_value_payments,238.8836718,0,-0.6988,-1.6515,0.9601,-0.8663,-0.1213 +0x25a05,CUS_0x16b6,August,46,687-03-0707,Accountant,72936.68,,0,2,11.28836175,0,Student Loan,3.675898446,7,11.47,0,_,717.6423063,36.54916059,31 Years and 11 Months,No,51.67217488,714.3034155,High_spent_Small_value_payments,521.3099435,0,0.2364,0.7226,0.6699,1.0438,1.6788 +0x25a11,CUS_0x531a,August,38,819-33-4443,Journalist,32812.59,,6,6,5,3,"Auto Loan, Debt Consolidation Loan, and Home Equity Loan",13.60667551,14,4.82,3,Standard,437.84,23.82233078,,No,54.63756584,257.3654376,Low_spent_Small_value_payments,256.2352466,0,-1.0944,-0.5942,0.8467,-0.3112,1.0482 +0x25a1d,CUS_0x50e9,August,34,190-22-7771,Writer,59650.23,,5,7,15,6,"Auto Loan, Personal Loan, Personal Loan, Not Specified, Debt Consolidation Loan, and Mortgage Loan",11.34299647,12,10.89,12,Standard,1294.13,28.81345205,7 Years and 0 Months,Yes,250.6079993,179.6184694,!@9#%8,287.5587812,0,1.6579,-0.9339,1.5731,-0.8663,-2.2028 +0x25a29,CUS_0xb57,August,21,390-37-7471,Architect,63248.52,5074.71,7,10,268,3,"Credit-Builder Loan, Auto Loan, and Not Specified",10.87621571,9.683270317,11.99,10,Standard,2365.834471,23.26031551,10 Years and 9 Months,Yes,134.6434839,270.8267355,Low_spent_Medium_value_payments,382.0007806,0,-2.1338,-2.0616,-2.3147,0.1021,-1.1407 +0x25a35,CUS_0x523e,August,44,329-75-7434,Manager,97431.9,7992.325,7,3,17,2,"Payday Loan, and Home Equity Loan",,10,12.37,0,_,1095.56,35.81708278,19 Years and 4 Months,Yes,151.2821462,201.5063727,Low_spent_Large_value_payments,716.4439811,0,-0.3014,0.2116,-1.2969,-0.78,0.3031 +0x25a41,CUS_0x9f04,August,36,237-55-4293,Accountant,63432.45,5188.0375,4,4,16,0,,14.98520256,13,17.87,5,Standard,839.6739138,38.95394509,21 Years and 5 Months,Yes,0,116.5769749,High_spent_Medium_value_payments,664.4417875,0,1.4805,-1.8923,0.3588,1.7531,1.2272 +0x25a4d,CUS_0x21d8,August,30,721-81-2253,Accountant,37471.52,,5,4,8,4,"Not Specified, Mortgage Loan, Home Equity Loan, and Home Equity Loan",2.971489492,4,3.4,7,Good,962.64,29.82292091,28 Years and 10 Months,No,107.1894367,43.14900853,!@9#%8,431.8242214,0,0.9633,0.7923,0.7549,-2.2454,-2.6414 +0x25a59,CUS_0x2274,August,41,373-63-8139,Entrepreneur,105931.17,8672.5975,8,7,11,5,"Mortgage Loan, Auto Loan, Mortgage Loan, Student Loan, and Mortgage Loan",18.19728267,12,23.1,8,Standard,223.0317398,29.10149915,5 Years and 8 Months,Yes,392.842437,507.9847331,High_spent_Small_value_payments,274.2674198,0,1.2821,0.9743,0.4463,-0.3366,-0.1965 +0x25a65,CUS_0xc633,August,23,872-64-6789,Lawyer,26686.14,,4,6,18.28836175,6,"Home Equity Loan, Not Specified, Home Equity Loan, Not Specified, Not Specified, and Home Equity Loan",10.53308438,11,13.81,8,_,220.17,24.99752031,8 Years and 10 Months,Yes,81.39258259,573.1335451,Low_spent_Large_value_payments,263.8958333,0,0.2578,0.7067,-0.9861,-1.0738,0.7547 +0x25a71,CUS_0xb5e4,August,28,576-97-6011,Mechanic,36772.66,,1,4,4,3,"Not Specified, Personal Loan, and Auto Loan",3.127865549,4.678905734,7.25,4,Good,465.3854776,24.26505216,16 Years and 0 Months,No,67.83515072,,Low_spent_Medium_value_payments,250.5636128,0,0.6399,-0.1004,0.6621,-0.4532,1.6416 +0x25a7d,CUS_0xc429,August,35,557-76-8375,Mechanic,20849.21,1503.434167,8,5,33,6,"Student Loan, Home Equity Loan, Not Specified, Personal Loan, Student Loan, and Home Equity Loan",,20,4.56,14,Bad,1694.32,38.29810617,11 Years and 10 Months,Yes,53.20901515,45.59113672,High_spent_Small_value_payments,311.5432648,0,0.0143,0.0713,-0.182,-2.1682,-0.2805 +0x25a89,CUS_0x4e14,August,56,812-46-5104,Accountant,81385.18,5712.091,1,7,4.288361749,0,Debt Consolidation Loan,13.11823516,,4.59,7,Good,356.3260369,26.42587866,29 Years and 11 Months,No,950.3123521,,Low_spent_Medium_value_payments,243.064407,0,0.3564,-0.1137,-1.112,-0.8752,-0.6724 +0x25a95,CUS_0x2d37,August,28,126-78-6406,Developer,60253.11,4817.0925,8,6,11,100,"Credit-Builder Loan, Personal Loan, Student Loan, Mortgage Loan, and Student Loan",20.73361654,,13.73,4,Standard,2071.047601,30.81733228,14 Years and 10 Months,Yes,195.7413392,133.3657282,High_spent_Small_value_payments,412.6021826,0,0.5878,-1.1248,0.7441,-0.6624,2.1408 +0x25aa1,CUS_0x46a2,August,45,118-01-4299,Manager,12821.845,,7,6,17,1,Credit-Builder Loan,24.54594089,19,5.76,3,_,1475.23,36.08970508,18 Years and 5 Months,No,10.21149374,56.73240084,Low_spent_Medium_value_payments,297.1048138,0,-1.1631,-0.7202,-1.1178,0.1472,0.6379 +0x25aad,CUS_0x55f0,August,45,564-67-2715,Lawyer,51682.08,,7,5,18,7,"Student Loan, Not Specified, Debt Consolidation Loan, Home Equity Loan, Payday Loan, Credit-Builder Loan, and Credit-Builder Loan",26.08940995,18,14.08,,_,382.05,35.26898855,18 Years and 2 Months,Yes,224.3355992,177.8154953,High_spent_Medium_value_payments,289.4329055,0,-0.7146,-2.2225,1.5541,-0.96,0.155 +0x25ab9,CUS_0x8eb8,August,50,530-13-2709,Mechanic,39309.84,3276.82,6,4,16,1,Not Specified,11.19602111,11,11.07,6,Standard,1429.96,24.95136973,,No,25.77870944,135.7989401,High_spent_Medium_value_payments,416.1043505,0,-1.0808,-0.7922,0.9734,-0.4144,-1.6733 +0x25ac5,CUS_0x22c4,August,27,153-92-8711,Media_Manager,80288.08,6961.673333,8,10,4962.889548,6,"Home Equity Loan, Payday Loan, Personal Loan, Student Loan, Mortgage Loan, and Home Equity Loan",,20,19.88,8,Bad,2848.95,37.56953126,13 Years and 6 Months,Yes,1724.076945,189.6866141,High_spent_Medium_value_payments,338.0736931,0,0.2704,-0.1666,0.0109,-0.9756,0.5685 +0x25ad1,CUS_0x4dc9,August,39,011-55-5907,Doctor,47689.47,,9,10,20,5,"Credit-Builder Loan, Mortgage Loan, Personal Loan, Home Equity Loan, and Student Loan",,18,22.06,8,Bad,4675.57,25.83389037,11 Years and 4 Months,Yes,194.6275196,56.64727682,High_spent_Large_value_payments,367.4374536,0,2.5274,-3.5687,-0.8121,-0.819,-2.5019 +0x25add,CUS_0xbb53,August,32,671-00-6399,Lawyer,77633.04,6635.42,7,5,34,5,"Payday Loan, Credit-Builder Loan, Student Loan, Payday Loan, and Payday Loan",,27.15693737,19.48,8,Bad,3691.708113,41.14351912,0 Years and 11 Months,Yes,227.7770647,476.3591133,Low_spent_Large_value_payments,229.405822,0,-0.2485,-1.3864,0.7406,1.6424,-0.8272 +0x25ae9,CUS_0x9ed9,August,46,867-19-4475,Entrepreneur,32348.4,2966.7,5,7,7,0,,,20,1.66,5,Good,1416.25,36.51201103,32 Years and 8 Months,No,0,49.04089226,High_spent_Medium_value_payments,497.6291077,0,0.0143,0.4137,-0.6316,0.1335,-0.1375 +0x25af5,CUS_0x50d4,August,20,788-66-6795,Engineer,41159.54,,9,6,16,7,"Credit-Builder Loan, Auto Loan, Student Loan, Auto Loan, Home Equity Loan, Personal Loan, and Not Specified",41.99806635,27.45003613,4.46,10,Bad,2701.893665,22.41569672,19 Years and 11 Months,Yes,157.1269389,,Low_spent_Small_value_payments,174.9163372,0,0.2895,0.9766,1.058,0.3222,0.9092 +0x25b01,CUS_0xffd,August,30,832-88-8320,Scientist,41398.44,3749.87,8,7,13,6,"Auto Loan, Payday Loan, Payday Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",16.21448962,11,12.07,7,Standard,1537.338271,39.91665517,18 Years and 9 Months,Yes,182.9766495,49.04826961,High_spent_Large_value_payments,389.4346308,0,-0.9115,-0.0538,1.4992,0.5736,-1.1839 +0x25b0d,CUS_0x4c9a,August,31,462-85-2090,Manager,20758.54,,3,9,20,2,"Auto Loan, and Debt Consolidation Loan",,14.14441145,2.63,11,Standard,2409.365219,40.77396504,,Yes,22.55721744,43.72556856,High_spent_Small_value_payments,396.5050473,0,0.1694,1.8654,0.0628,0.0157,0.3245 +0x25b19,CUS_0xa93b,August,42,831-44-6626,Media_Manager,59597.84,5173.486667,7,5,33.06745738,9,"Not Specified, Student Loan, Payday Loan, Debt Consolidation Loan, Credit-Builder Loan, Personal Loan, Student Loan, Credit-Builder Loan, and Student Loan",,15,29.53,11,_,3334.700954,32.99110107,1 Years and 6 Months,Yes,367.57928,120.7349357,High_spent_Large_value_payments,242.3141631,0,1.4109,2.6779,0.1644,1.3376,-0.8437 +0x25b25,CUS_0x8848,August,37,930-77-6871,Engineer,62756.2,,10,10,18.95700519,8,"Home Equity Loan, Auto Loan, Credit-Builder Loan, Student Loan, Auto Loan, Payday Loan, Home Equity Loan, and Personal Loan",34.20717623,18.8309602,16.38,12,_,4449.684417,30.50420177,4 Years and 4 Months,Yes,1647.10015,182.2446942,Low_spent_Medium_value_payments,249.0731196,0,0.3063,0.8882,-0.5835,-2.3387,-1.7109 +0x25b31,CUS_0x6334,August,80,756-38-8343,Mechanic,13944362,8216.153333,5,6,15,5,"Payday Loan, Auto Loan, Debt Consolidation Loan, Payday Loan, and Home Equity Loan",20.68448978,14,17.25,4,Standard,698.23,24.56758195,14 Years and 11 Months,Yes,302.9162402,,High_spent_Large_value_payments,590.387889,0,-0.2785,0.6833,0.4201,0.594,0.515 +0x25b3d,CUS_0xb59b,August,35,447-00-0042,Mechanic,96047.22,7775.935,3,3,1,1,Debt Consolidation Loan,12.81829125,,4.75,4,Good,1268.796969,41.17451121,17 Years and 11 Months,No,49.65672666,144.619031,!@9#%8,837.508835,0,0.1102,-0.4719,0.9743,0.0528,-0.0059 +0x25b49,CUS_0x5e3f,August,31,333-37-8000,Lawyer,33137.28,,8,10,26.88954781,9,"Debt Consolidation Loan, Not Specified, Mortgage Loan, Student Loan, Mortgage Loan, Auto Loan, Mortgage Loan, Credit-Builder Loan, and Auto Loan",38.38787444,21.75214424,23.71,10,Bad,3907.038906,28.65959836,8 Years and 3 Months,Yes,1500.890828,,Low_spent_Large_value_payments,155.7245926,0,0.0624,-1.4051,0.5084,0.4869,0.9283 +0x25b55,CUS_0x2954,August,45,988-44-7575,Musician,22443.96,,4,6,17,100,"Mortgage Loan, Payday Loan, Personal Loan, Home Equity Loan, and Home Equity Loan",19.86795106,19,,,Standard,429.65,31.42126641,7 Years and 4 Months,Yes,51.24705748,183.6222339,Low_spent_Small_value_payments,266.5637086,0,0.1237,-0.6664,0.9575,-0.8833,0.9131 +0x25b61,CUS_0x407e,August,36,303-58-1131,Lawyer,22276.68,2014.39,5,6,14,2,"Personal Loan, and Student Loan",12.32043951,10,2.93,5,Standard,124.57,37.70497909,21 Years and 4 Months,No,20.93431304,17.6334321,High_spent_Large_value_payments,402.8712549,0,0.5128,-0.464,-0.3897,-0.9102,1.747 +0x25b6d,CUS_0xbc38,August,19,#F%$D@*&8,Writer,90135.03,7298.2525,6,4,6,1,Personal Loan,13.01519145,8,11.82,6,Good,785.9,40.87004204,19 Years and 5 Months,No,43.77843641,,High_spent_Large_value_payments,810.9172047,0,0.9134,1.385,0.3843,0.0597,0.9244 +0x25b79,CUS_0x56e5,August,24,823-62-0090,Media_Manager,127313.4,9556.314852,5,5,5,1,Personal Loan,,10,3.86,2,_,1075.47,36.87244514,27 Years and 6 Months,No,1179.253921,10000,High_spent_Medium_value_payments,781.1940321,0,-0.7367,0.2485,-1.8478,-0.5178,0.7373 +0x25b85,CUS_0xb997,August,22,202-68-4543,Doctor,93955.16,8126.596667,5,5,5,2,"Home Equity Loan, and Mortgage Loan",12.19015198,10,1.73,4,Standard,425.43,37.49997506,28 Years and 4 Months,No,91.98741417,554.7992009,Low_spent_Medium_value_payments,445.8730516,0,1.4904,0.1987,-0.4676,-0.9166,2.0451 +0x25b91,CUS_0x7701,August,58,369-38-9871,Entrepreneur,48115.6,4287.633333,8,5,12,2,"Mortgage Loan, and Debt Consolidation Loan",26.24681929,18,-2.81,5,_,398.0896205,33.04846341,25 Years and 6 Months,No,45.39216349,145.4304621,High_spent_Medium_value_payments,509.1031436,0,-0.7044,0.066,0.4566,-0.5108,-1.224 +0x25b9d,CUS_0x509d,August,23,620-56-7834,Doctor,78668,6539.666667,8,4,17,4,"Debt Consolidation Loan, Credit-Builder Loan, Not Specified, and Auto Loan",27.15227082,19,16.66,6,Standard,1211.41,31.4452656,9 Years and 6 Months,Yes,210.5923623,92.42689708,High_spent_Large_value_payments,590.9474072,0,-0.0578,2.3437,1.7217,-1.7745,-0.7651 +0x25ba9,CUS_0xa66c,August,24,770-36-8261,Accountant,74349.18,6133.765,0,3,2,2,"Home Equity Loan, and Debt Consolidation Loan",0,0,4.64,5,_,850.4397332,26.65558976,28 Years and 10 Months,No,12736,415.7085721,Low_spent_Large_value_payments,441.7909193,0,1.1119,0.7145,-1.0921,2.7886,1.3373 +0x25bb5,CUS_0xbce0,August,21,559-50-3448,Journalist,98828.92,8505.743333,5,7,6.288361749,0,,3.154496134,7,12.2,5,Standard,744.4104065,31.70549992,31 Years and 9 Months,Yes,0,1388.088753,Low_spent_Small_value_payments,289.9671906,0,0.4828,0.6857,-0.2531,1.3484,1.3353 +0x25bc1,CUS_0x52ee,August,22,827-19-3784,Manager,87974.28,,5,8,9.288361749,2,"Home Equity Loan, and Auto Loan",7.020635251,9,6.75,8,Standard,60.08,28.07522838,19 Years and 5 Months,No,92.20829414,709.9452023,High_spent_Medium_value_payments,590.0029646,0,0.4874,-0.3765,0.973,-2.8889,-0.6087 +0x25bcd,CUS_0x48a,August,23,925-53-5258,Mechanic,32700,2802,2,4,5,18,,0,2,7.16,4,Good,1333.26714,25.16486964,17 Years and 0 Months,No,0,270.193801,!@9#%8,319.6917499,0,1.3161,-0.7298,0.4604,0.7191,0.6423 +0x25bd9,CUS_0x6c58,August,18,897-32-6460,Accountant,9409.45,,5,6,13,7,"Student Loan, Credit-Builder Loan, Credit-Builder Loan, Debt Consolidation Loan, Not Specified, Student Loan, and Personal Loan",8.990465978,10,10.11,7,Standard,209.02,40.70951467,8 Years and 3 Months,Yes,37.52407485,33.74433577,Low_spent_Large_value_payments,293.9436727,0,-2.1066,-0.401,-0.4713,0.4702,-0.4715 +0x25be5,CUS_0x41d3,August,48,170-57-5121,Engineer,62976.28,5321.023333,0,3,12,0,,,2,6.05,3,_,60.67123809,35.67882788,16 Years and 0 Months,No,0,615.8972622,Low_spent_Medium_value_payments,266.9360039,0,0.0554,-1.1848,1.741,1.0734,2.1366 +0x25bf1,CUS_0x5b77,August,22,659-51-2259,Manager,81431.96,6790.996667,4,7,5,2,"Credit-Builder Loan, and Auto Loan",25.63630414,19,16.16,7,Standard,2352.06,38.92519023,9 Years and 6 Months,Yes,104.2490389,244.5154966,Low_spent_Large_value_payments,600.3351312,0,0.3927,-1.7447,-0.2994,0.3976,-0.4671 +0x25bfd,CUS_0x4af4,August,28,860-10-5503,Entrepreneur,64363.92,5611.66,4,6,6,5,"Personal Loan, Credit-Builder Loan, Auto Loan, Auto Loan, and Not Specified",,10,16.91,5,_,978.79,26.93891655,,Yes,176.843978,68.09845394,High_spent_Large_value_payments,556.2235681,0,1.3624,-1.6005,-1.0446,-0.2821,-0.8739 +0x25c09,CUS_0x4bff,August,35,697-66-3067,Scientist,56341.2,4755.1,8,6,13,3,"Auto Loan, Not Specified, and Student Loan",,10,8.13,7,Standard,1674.42,36.78330541,,NM,72.01375338,153.9259227,High_spent_Medium_value_payments,499.570324,0,0.4507,0.3062,0.7614,1.128,0.0147 +0x25c15,CUS_0x2cb5,August,52,200-60-2130,Doctor,72817.02,5800.085,805,7,5,1,Home Equity Loan,,9,11.35,,_,992.2,40.68064793,22 Years and 4 Months,No,53.57619796,105.9539708,!@9#%8,660.4783312,0,-0.5123,-0.9593,1.279,0.6039,0.9486 +0x25c21,CUS_0x436f,August,24,841-17-1977,Accountant,106707.93,,3,4,6,1,Not Specified,15.66525734,15,12.34,6,Good,1368.65,37.50612773,29 Years and 8 Months,No,63.46067795,215.8759147,High_spent_Large_value_payments,828.9961574,0,-0.2095,-1.0368,0.9761,0.1213,-0.2715 +0x25c2d,CUS_0x870c,August,45,310-73-7596,Manager,19631.26,1724.938333,2,4,9,4,"Not Specified, Student Loan, Debt Consolidation Loan, and Student Loan",0.110377501,4,,9,Good,764.0210024,27.05057589,32 Years and 5 Months,No,65.05129928,114.8911954,Low_spent_Medium_value_payments,284.5410087,0,1.1246,-0.8101,0.9927,0.8527,-0.1513 +0x25c39,CUS_0x6044,August,36,334-17-4619,Journalist,19147.2,1692.6,3,5,5,0,,20.80646522,19,9,0,Standard,1347.02,30.2283197,27 Years and 5 Months,Yes,75639,119.8557434,Low_spent_Small_value_payments,339.4042566,0,-2.0451,0.1212,0.4534,-2.3468,-0.6966 +0x25c45,CUS_0x163c,August,32,534-12-7952,Media_Manager,61465.78,,2,3,10.28836175,0,Debt Consolidation Loan,7.247661267,10,3.17,2,Good,539.2322339,32.13133503,18 Years and 5 Months,No,31.65073721,590.3422741,Low_spent_Large_value_payments,591.9184791,0,-1.3291,0.3158,-1.2952,0.4419,0.4791 +0x25c51,CUS_0x7a7d,August,41,952-44-5306,Accountant,16297.34,,4,10,22,100,"Payday Loan, Credit-Builder Loan, Debt Consolidation Loan, and Debt Consolidation Loan",11.95614587,10.94044676,14.9,6,_,2752.408871,25.15837091,19 Years and 4 Months,Yes,27.84216232,33.73335887,High_spent_Medium_value_payments,329.8356455,0,-0.26,0.4039,-0.7099,-0.657,2.2755 +0x25c5d,CUS_0x965d,August,38,717-35-0735,Doctor,96048,8139,3,4,100.2883617,2,"Home Equity Loan, and Payday Loan",9.689310404,10,7.94,,Good,775.561969,25.88268132,16 Years and 9 Months,No,156.9264704,1359.981568,Low_spent_Medium_value_payments,119.1687691,0,0.4734,1.2538,0.397,-1.2048,-1.0964 +0x25c69,CUS_0x3f82,August,23,570-96-4897,Mechanic,8409.98,553.8316667,3,7,18,100,"Personal Loan, and Mortgage Loan",29.09457692,22.94085318,19.45,8,Standard,1034.768464,34.05410289,9 Years and 5 Months,Yes,13.64140178,,Low_spent_Small_value_payments,308.0958244,0,0.5403,-0.04,-1.227,2.0892,-0.5444 +0x25c75,CUS_0x7b65,August,28,751-96-2010,Mechanic,8968.555,,10,8,31.95700519,8,"Credit-Builder Loan, Auto Loan, Mortgage Loan, Not Specified, Mortgage Loan, Personal Loan, Debt Consolidation Loan, and Credit-Builder Loan",37.30450178,19,24.83,12,Bad,2726.270954,27.57577101,11 Years and 10 Months,Yes,1380.562277,61.63888984,Low_spent_Small_value_payments,214.7864222,0,-0.8048,-0.9176,0.3009,-1.5022,-0.2349 +0x25c81,CUS_0x90a1,August,36,920-95-9243,Doctor,32230.58,2770.881667,7,10,18,7,"Home Equity Loan, Home Equity Loan, Auto Loan, Payday Loan, Mortgage Loan, Mortgage Loan, and Credit-Builder Loan",27.2961416,19,6.31,16,_,1473.28,25.37674632,11 Years and 10 Months,NM,124.0748421,106.6828372,High_spent_Medium_value_payments,296.3304873,0,2.9502,1.1576,0.6059,-0.0977,0.4993 +0x25c8d,CUS_0xdfd,August,40,876-77-3604,Teacher,16321.82,1566.151667,8,10,23.88954781,7,"Personal Loan, Personal Loan, Home Equity Loan, Personal Loan, Credit-Builder Loan, Home Equity Loan, and Home Equity Loan",49.67959971,27.33199657,2.4,12,Bad,3057.668905,36.86954764,15 Years and 3 Months,Yes,1412.906609,115.7653335,!@9#%8,223.6131426,0,-0.8869,-1.1187,-0.6986,-1.2932,1.4802 +0x25c99,CUS_0x74e7,August,26,171-29-0843,Doctor,60576.72,4876.86069,8,5,20,9,"Auto Loan, Auto Loan, Auto Loan, Credit-Builder Loan, Payday Loan, Not Specified, Payday Loan, Student Loan, and Debt Consolidation Loan",39.57129697,21,1.68,7,_,2061.17,38.67149041,14 Years and 9 Months,Yes,565.2012173,34.90779661,High_spent_Large_value_payments,451.1962965,0,1.153,0.8519,0.7427,0.5872,-2.1814 +0x25ca5,CUS_0x62f4,August,27,841-09-1439,Writer,42900.18,3515.015,6,7,16,5,"Personal Loan, Debt Consolidation Loan, Credit-Builder Loan, Debt Consolidation Loan, and Auto Loan",,,8.91,10,Bad,1680.53,32.29270936,19 Years and 11 Months,Yes,93.5425359,117.9530939,Low_spent_Medium_value_payments,420.0058702,0,0.5432,-0.157,0.3774,-0.7882,0.3642 +0x25cb1,CUS_0xdca,August,49,274-16-1463,Manager,144066.24,11942.52,8,6,13,2,"Auto Loan, and Personal Loan",22.97313587,14.62475765,13.84,5,_,745.9251885,40.68496885,31 Years and 11 Months,No,225.7148085,570.9186201,Low_spent_Medium_value_payments,677.6185714,0,1.4016,-1.517,-0.4506,1.4911,0.5317 +0x25cbd,CUS_0x3397,August,45,097-59-6601,_______,39800.36,3097.696667,8,10,22.95700519,100,"Mortgage Loan, Payday Loan, Debt Consolidation Loan, Personal Loan, Personal Loan, Not Specified, Payday Loan, Home Equity Loan, and Personal Loan",,20,20,8,Bad,4464.930954,33.82084798,1 Years and 5 Months,Yes,1575.739045,226.0309132,Low_spent_Large_value_payments,56.94933943,0,0.6559,0.1692,-1.1283,-0.2474,-1.0048 +0x25cc9,CUS_0x3f2d,August,35,999-51-7557,Writer,126284.31,10718.6925,1,5,8,0,,0.45657385,4,,6,Good,865.0234662,35.00638124,16 Years and 3 Months,No,0,421.7194391,High_spent_Medium_value_payments,943.5994981,0,1.4764,0.3291,1.8323,-0.4495,-0.355 +0x25cd5,CUS_0x450,August,34,124-51-6203,_______,14971.72,,7,10,31,3,"Home Equity Loan, Home Equity Loan, and Debt Consolidation Loan",28.59344381,15,11.17,15,Standard,1618.3,37.50844446,15 Years and 5 Months,Yes,27.40635549,106.9545159,Low_spent_Small_value_payments,310.303462,0,-1.2322,0.68,-0.6956,-0.8664,-1.3247 +0x25ce1,CUS_0x1956,August,35,467-02-8044,Doctor,15666.495,1342.54125,4,7,8,7,"Home Equity Loan, Mortgage Loan, Personal Loan, Mortgage Loan, Mortgage Loan, Auto Loan, and Home Equity Loan",12.69736646,8,12.45,4,Standard,284.89,33.58162706,18 Years and 2 Months,Yes,75.52263887,,Low_spent_Large_value_payments,260.648133,0,-0.0206,-0.5764,-0.3809,1.7882,1.6273 +0x25ced,CUS_0x862b,August,45,710-51-5469,Manager,145282.24,12154.85333,5,7,10,1,Student Loan,17.82362221,12,1.55,762,Good,1417.24,26.79868463,23 Years and 9 Months,No,104.3514432,1203.775817,Low_spent_Medium_value_payments,187.3580735,0,-0.7056,-0.5387,-0.2704,-0.4323,-1.3894 +0x25cf9,CUS_0x290c,August,80,570-16-5655,Engineer,28954.04,,8,5,25,5,"Auto Loan, Home Equity Loan, Debt Consolidation Loan, Auto Loan, and Auto Loan",29.44516482,18.4052227,15.61,10,_,2357.420682,37.48399357,16 Years and 6 Months,Yes,96.25006738,,!@9#%8,305.9508418,0,-0.1235,-0.1071,-0.6822,-0.9778,-0.6379 +0x25d05,CUS_0xb5c3,August,29,197-53-4663,_______,16285.675,,4,3,6,5,"Auto Loan, Payday Loan, Personal Loan, Student Loan, and Debt Consolidation Loan",20.3785444,14,18.67,7,_,295.08,23.70667951,17 Years and 5 Months,Yes,48.84413209,102.9100479,Low_spent_Medium_value_payments,258.2597783,0,-0.3453,-0.1516,-1.7251,0.155,-1.4189 +0x25d11,CUS_0x504e,August,18,569-84-9250,_______,72572.46,6233.705,4,4,7,4,"Personal Loan, Student Loan, Student Loan, and Home Equity Loan",24.33572612,15,13.88,8,Standard,1321.46,24.55178874,20 Years and 5 Months,NM,176.3744316,,Low_spent_Large_value_payments,302.622788,0,-0.0178,0.0261,1.245,0.2559,-0.8085 +0x25d1d,CUS_0x10f9,August,54,746-79-6875,_______,150131.68,11102.13532,5,1,4,0,,0,0,7.49,0,Good,1138.36,45.2558067,31 Years and 11 Months,No,1494.838012,180.7591381,High_spent_Medium_value_payments,1328.938195,0,2.05,1.4644,-0.9821,-0.9048,0.2844 +0x25d29,CUS_0xbbdd,August,42,501-72-4982,_______,40146.78,,6,6,15,5,"Mortgage Loan, Home Equity Loan, Student Loan, Student Loan, and Home Equity Loan",,24,16.72,12,Bad,3539.88,31.5642993,7 Years and 4 Months,Yes,160.7881505,21.77318672,High_spent_Large_value_payments,376.8951628,0,0.8978,0.4137,1.2467,0.3522,0.4586 +0x25d35,CUS_0x85dd,August,45,767-36-7303,_______,8974.555,783.8795833,10,8,28.88954781,7,"Home Equity Loan, Debt Consolidation Loan, Not Specified, Personal Loan, Not Specified, Payday Loan, and Credit-Builder Loan",34.09995543,24,14.87,7,_,1660.14,33.88323959,16 Years and 10 Months,Yes,1353.926706,57.4413357,Low_spent_Small_value_payments,262.6898349,0,-1.7422,-2.0905,-0.5051,1.747,-0.2499 +0x25d41,CUS_0xc22f,August,34,795-34-9348,Scientist,34671.15,,160,3,16,2,"Auto Loan, and Home Equity Loan",28.5121391,19,11.27,4,Standard,1071.97,22.55820151,21 Years and 10 Months,NM,49430,121.648177,Low_spent_Large_value_payments,359.7404836,0,1.2046,-0.4221,-0.4104,-1.4902,1.04 +0x25d4d,CUS_0x2637,August,80,272-33-1370,Writer,29090.5,2472.208333,5,7,5616,4,"Not Specified, Mortgage Loan, Personal Loan, and Debt Consolidation Loan",,16,13.07,6,_,1612.7,39.66850827,16 Years and 5 Months,Yes,67.43973128,46.446501,High_spent_Large_value_payments,373.334601,0,-0.7298,1.3821,-0.0834,0.9032,1.0351 +0x25d59,CUS_0x4f88,August,26,527-49-4203,Lawyer,7195.3,,10,9,21.95700519,7,"Personal Loan, Credit-Builder Loan, Student Loan, Not Specified, Personal Loan, Student Loan, and Debt Consolidation Loan",33.70684502,21.83249261,11.99,13,_,2312.812085,39.14936372,20 Years and 6 Months,NM,1361.207529,23.02394455,Low_spent_Small_value_payments,228.1789901,0,1.4079,0.0735,0.2497,1.9509,1.4201 +0x25d65,CUS_0x650,August,28,487-65-9318,Lawyer,21471.58,1879.298333,7,3,16,2,"Credit-Builder Loan, and Student Loan",,8,5,4,Standard,68.06,36.03897976,24 Years and 2 Months,No,23.49831914,10000,High_spent_Small_value_payments,303.7758218,0,-0.6386,-0.6357,-0.9071,-2.283,1.4969 +0x25d71,CUS_0x1b3b,August,55,473-62-8692,Lawyer,76624.48,6123.373333,0,2,7.288361749,0,,13.03077881,12,2.82,8,Good,683.0413427,32.09173916,18 Years and 0 Months,No,0,,High_spent_Medium_value_payments,668.6404446,0,-0.0762,-0.5529,-0.5757,0.1317,0.7402 +0x25d7d,CUS_0x4c83,August,47,326-69-1811,Scientist,39362.03,3485.169167,0,3,10,4,"Payday Loan, Credit-Builder Loan, Not Specified, and Personal Loan",8.609016233,7,10.03,8,Good,1283.75,27.2608943,27 Years and 8 Months,NM,121.7737021,95.91413369,High_spent_Medium_value_payments,380.8290809,0,-0.3074,0.5168,0.6981,-0.8159,1.5588 +0x25d89,CUS_0x544,August,33,163-45-1172,Mechanic,17013.29,1326.774167,813,1,10,1,Debt Consolidation Loan,0,1,11.93,3,_,1261.664766,28.05168403,32 Years and 6 Months,NM,13.10966287,,Low_spent_Small_value_payments,353.8408005,0,-0.7473,-0.5948,-0.5267,-1.559,-0.5163 +0x25d95,CUS_0x94de,August,37,349-98-3586,Writer,61167.9,,3,2,1347,4,"Home Equity Loan, Mortgage Loan, Payday Loan, and Home Equity Loan",3.354784034,5,6.74,4,Good,1186.043812,32.60780356,15 Years and 11 Months,No,176.7424221,347.057228,Low_spent_Medium_value_payments,282.1085369,0,-0.2962,0.6165,-0.1002,2.159,-1.9705 +0x25da1,CUS_0x5d6d,August,39,957-01-2791,Writer,126514.72,10341.89333,8,7,5,3,"Credit-Builder Loan, Home Equity Loan, and Auto Loan",23.11899087,18,10.64,2,Standard,470.42,27.04856408,,No,312.0328532,416.2697107,Low_spent_Small_value_payments,595.8867695,0,2.0947,0.6451,1.1416,-1.8855,0.4814 +0x25dad,CUS_0x2829,August,32,172-85-1573,Journalist,64901.37,,3,232,20,0,,,18,2.94,3,Standard,442.06,29.14553364,31 Years and 5 Months,Yes,0,126.263036,High_spent_Large_value_payments,643.581714,0,1.0884,-2.5422,-0.0668,1.6552,0.5919 +0x25db9,CUS_0xae66,August,31,721-45-4479,Writer,142560.36,11773.03,6,3,13,1,Student Loan,28.4464269,20.54065434,11.22,2,_,244.4985723,34.6674925,17 Years and 10 Months,No,76.77209392,326.0870941,High_spent_Small_value_payments,1034.443812,0,0.4647,1.0221,0.2702,-0.0296,0.9085 +0x25dc5,CUS_0x738b,August,25,769-44-1950,Accountant,123828.52,9317.324054,4,6,17,0,,13.00063217,9,4.33,7,Standard,1121.116547,33.19552055,32 Years and 8 Months,Yes,999.7192789,175.9167476,High_spent_Large_value_payments,1121.26003,0,-1.9843,-0.4411,-0.3177,0.7558,0.7145 +0x25dd1,CUS_0x296f,August,25,972-13-0672,Developer,125271.96,10374.33,2,7,1,4,"Mortgage Loan, Debt Consolidation Loan, Mortgage Loan, and Auto Loan",12.68728771,11.85889482,12.44,7,Good,905.9154713,32.49706522,25 Years and 9 Months,No,241.0658852,99.10099316,High_spent_Large_value_payments,937.2661216,0,0.3975,-1.3883,0.0719,0.4312,-2.708 +0x25ddd,CUS_0x1d9e,August,42,861-85-5004,Lawyer,75994.22,6301.851667,1,4,6.288361749,0,Student Loan,16.27205965,,5.92,3,Good,101.0424814,25.10054955,27 Years and 9 Months,No,51.70282508,,High_spent_Large_value_payments,678.3593866,0,-0.9709,-0.406,0.1853,0.7582,-0.2159 +0x25de9,CUS_0x2e91,August,31,797-70-3063,_______,70926.06,5741.505,7,7,10,2,"Debt Consolidation Loan, and Credit-Builder Loan",23.88346143,19,9.79,6,Standard,332.75,32.45098261,29 Years and 10 Months,No,67.18577693,297.2373641,Low_spent_Large_value_payments,479.727359,0,-4.0979,0.7093,-0.1373,0.9362,-1.5337 +0x25df5,CUS_0x30fc,August,28,209-55-1275,Manager,90781.53,7505.1275,7,7,6,100,,,13,17.36,9,Standard,494.51,36.80995121,,Yes,0,688.2568751,Low_spent_Medium_value_payments,342.2558749,0,0.2023,-1.8145,-0.4162,0.2028,-0.5384 +0x25e01,CUS_0xb09,August,31,228-47-4867,Lawyer,146310.68,12124.55667,5,4,8.288361749,0,Debt Consolidation Loan,1.691311286,5,11.48,6,Good,928.28,30.77409115,22 Years and 8 Months,NM,72.25012458,703.2514565,High_spent_Large_value_payments,1096.891547,0,1.3641,-0.5137,-0.0255,0.3264,0.3452 +0x25e0d,CUS_0xbd8f,August,32,344-21-3701,Lawyer,107911.6,,3,3,17,2,"Home Equity Loan, and Home Equity Loan",,21.26328717,11.31,5,Standard,1214.644926,40.84395556,18 Years and 4 Months,No,110.6259887,285.0335702,Low_spent_Medium_value_payments,801.2037744,0,-0.1352,-0.4889,0.0508,-0.6034,1.3905 +0x25e19,CUS_0x68ea,August,47,#F%$D@*&8,Scientist,41646.88,3515.573333,4,4,3,4,"Personal Loan, Home Equity Loan, Student Loan, and Personal Loan",,8,9.62,5,Good,656.6183495,24.95943147,25 Years and 0 Months,No,80.7323498,73.36261781,High_spent_Medium_value_payments,457.210115,0,-1.31,0.4787,0.6184,0.7725,-0.7943 +0x25e25,CUS_0x1132,August,39,152-95-7926,Mechanic,46268.4,,5,4,20,4,"Student Loan, Debt Consolidation Loan, Student Loan, and Home Equity Loan",30.57659279,20.25953181,9.58,9,_,1621.078608,30.4572227,14 Years and 0 Months,Yes,103.7780501,230.9491538,High_spent_Small_value_payments,323.6427961,0,0.7974,0.3586,0.2464,-0.0378,-0.4497 +0x25e31,CUS_0x1ea8,August,30,686-34-7861,Teacher,33896.53,,7,3,18,2,"Debt Consolidation Loan, and Payday Loan",13.3171094,10,10.95,,_,807.65,26.80055022,27 Years and 4 Months,Yes,40.29352918,88.09824698,!@9#%8,388.3793072,0,2.1565,0.2371,-0.7608,0.3495,0.6336 +0x25e3d,CUS_0xc394,August,34,747-43-9082,Architect,108484.38,,4,7,6,1,Payday Loan,28.17833355,17.06697356,10.07,7,Standard,1608.720415,42.67566356,31 Years and 3 Months,Yes,71.53422051,154.3125333,High_spent_Large_value_payments,896.1897462,0,-0.4953,-2.3845,-0.3942,0.1391,1.0258 +0x25e49,CUS_0xadbd,August,27,864-24-3672,Doctor,35793.97,2799.830833,5,6,7.288361749,4,"Personal Loan, Payday Loan, Not Specified, and Personal Loan",,11,9.92,0,Good,82.15,29.78119715,23 Years and 6 Months,No,113.8333908,,High_spent_Medium_value_payments,374.7069426,0,0.4668,-0.3246,0.1572,-0.5078,0.6142 +0x25e55,CUS_0x11c7,August,57,646-19-1493,Architect,36817.94,,5,4,5,3,"Home Equity Loan, Auto Loan, and Mortgage Loan",,,3.98,5,Good,933.3577947,35.27066262,17 Years and 2 Months,No,86.80991789,242.3402145,Low_spent_Small_value_payments,316.4919175,0,-1.8309,-2.6603,0.2346,0.3937,0.7215 +0x25e61,CUS_0x6294,August,28,221-84-2475,Manager,32825.81,,2,7,3,4,"Debt Consolidation Loan, Credit-Builder Loan, Home Equity Loan, and Mortgage Loan",,5,1.94,6,Good,1035.24,38.80888794,27 Years and 9 Months,No,64.30557528,242.5268528,Low_spent_Small_value_payments,248.1159886,0,-1.8055,-0.9687,0.0558,-0.918,0.5625 +0x25e6d,CUS_0x9674,August,25,949-10-3104,Scientist,18940.82,1281.401667,9,5,33,192,"Debt Consolidation Loan, Payday Loan, Not Specified, Auto Loan, Debt Consolidation Loan, and Student Loan",31.4190427,14.97237198,9.11,17,Bad,1510.273351,36.03811366,15 Years and 11 Months,Yes,87.85744537,44.62667406,High_spent_Small_value_payments,255.6560472,0,1.0378,0.4493,0.5986,-0.6531,0.15 +0x25e79,CUS_0x9ce3,August,24,914-39-8208,Doctor,14734.29,1393.8575,7,6,22,6,"Debt Consolidation Loan, Home Equity Loan, Auto Loan, Payday Loan, Student Loan, and Personal Loan",30.70130615,21.44517488,21.76,12,Bad,4664.575914,28.50110227,,Yes,50.45999619,35.1310787,High_spent_Small_value_payments,313.7946751,0,1.0094,1.3217,0.5959,-0.8748,-1.1344 +0x25e85,CUS_0x4a8f,August,26,021-30-1201,_______,34493.92,3043.493333,10,10,24.88954781,7,"Payday Loan, Mortgage Loan, Home Equity Loan, Mortgage Loan, Mortgage Loan, Mortgage Loan, and Auto Loan",18.90590914,,25.16,13,Bad,4664.842269,30.80773394,5 Years and 10 Months,Yes,1433.866542,,Low_spent_Small_value_payments,117.8857235,0,0.8552,0.2146,-2.3969,0.0756,-1.2268 +0x25e91,CUS_0x1b07,August,35,739-15-8297,Accountant,17818.6,1659.883333,4,6,14,1,Not Specified,23.72086954,15,10.91,3,Standard,301.52,37.16260615,18 Years and 10 Months,No,11.58110167,60.46858959,High_spent_Small_value_payments,353.9386421,0,1.0149,2.0099,0.117,0.4163,-1.5188 +0x25e9d,CUS_0xc345,August,24,176-40-0757,Architect,60015.32,5121.276667,7,4,14,7,"Mortgage Loan, Mortgage Loan, Credit-Builder Loan, Not Specified, Mortgage Loan, Personal Loan, and Payday Loan",,8,10.47,6,Standard,1095.15,26.80334705,15 Years and 9 Months,Yes,187.008683,63.61684473,High_spent_Large_value_payments,501.502139,0,-1.6924,2.1218,1.2889,-0.1553,-1.376 +0x25ea9,CUS_0x90ac,August,40,890-96-8226,Writer,18512.97,1494.7475,7,5,18,3,"Student Loan, Student Loan, and Mortgage Loan",,9,16.95,9,_,1366.56,26.30060522,,Yes,24.62117266,46.58327735,Low_spent_Large_value_payments,348.2703,0,-0.4832,-0.7354,0.0354,0.4229,1.2636 +0x25eb5,CUS_0x62f5,August,54,272-40-2510,Musician,99520.5,8479.375,3,1,4396,3,"Home Equity Loan, Not Specified, and Debt Consolidation Loan",,5,4.08,5,Good,487.7692057,38.79811417,16 Years and 8 Months,NM,196.5285911,,!@9#%8,743.8453926,0,-0.5462,2.1429,-0.959,0.293,-0.0155 +0x25ec1,CUS_0x334b,August,34,118-34-1378,Teacher,31906.07,,5,4,13,1,Credit-Builder Loan,16.07617753,14,3.38,0,Standard,901.87,26.91854803,16 Years and 2 Months,Yes,16.18593991,64.45254843,High_spent_Large_value_payments,444.1454283,0,0.3568,1.5908,0.75,1.6858,-0.2497 +0x25ecd,CUS_0x1232,August,18,441-26-1297,Developer,14937.49,,8,8,22.88954781,7,"Student Loan, Mortgage Loan, Debt Consolidation Loan, Home Equity Loan, Student Loan, Home Equity Loan, and Student Loan",27.44489031,15,24.17,9,Bad,3699.44,23.12096333,13 Years and 9 Months,NM,1374.444322,,Low_spent_Medium_value_payments,221.359656,0,1.3811,0.7218,-2.2247,-0.0976,-0.8614 +0x25ed9,CUS_0x64f0,August,19,655-81-0974,Architect,39977.21,,4,7,11,0,,9.558981908,10,9.62,4,Good,832.09,35.32808114,30 Years and 8 Months,No,0,90.54907092,!@9#%8,537.7943457,0,0.8918,-0.8037,0.0922,0.8979,-1.8044 +0x25ee5,CUS_0x40ad,August,23,715-14-3312,Scientist,65858.48,5421.206667,7,7,30,5,"Mortgage Loan, Auto Loan, Payday Loan, Not Specified, and Student Loan",24.64891256,,15.88,13,Standard,2584.590473,30.69812458,6 Years and 11 Months,Yes,261.2012178,198.5135219,High_spent_Medium_value_payments,332.405927,0,0.0157,0.3988,0.2303,0.8171,1.6152 +0x25ef1,CUS_0x2c0a,August,45,280-99-6832,Doctor,32625.59,,0,5,7.288361749,4,"Home Equity Loan, Not Specified, Student Loan, and Mortgage Loan",8.17277993,10,7.55,8,Good,177.9,35.62242881,29 Years and 3 Months,No,73.1250081,543.7039518,High_spent_Medium_value_payments,345.3884178,0,-0.0974,0.1659,0.1651,-0.5255,-0.423 +0x25efd,CUS_0x8788,August,25,138-38-7150,Musician,71025.4,,7,6,32,5,"Payday Loan, Credit-Builder Loan, Mortgage Loan, Home Equity Loan, and Payday Loan",25.61000333,16,17.12,10,Standard,2542.42,25.57191114,14 Years and 8 Months,Yes,195.207484,694.4404965,Low_spent_Small_value_payments,,0,-0.2957,0.6242,0.5008,0.4454,0.184 +0x25f09,CUS_0x944e,August,24,815-15-2261,Architect,11834.645,,5,7,10,2,"Credit-Builder Loan, and Payday Loan",18.33212615,13,15.62,10,Standard,948.0497722,37.72863755,13 Years and 10 Months,Yes,11.08957489,11544.22861,Low_spent_Medium_value_payments,299.2337451,0,2.3364,1.0973,0.5816,-0.1279,0.8141 +0x25f15,CUS_0x3048,August,40,375-64-6913,Scientist,81093.16,,10,7,18.06745738,7,"Auto Loan, Payday Loan, Auto Loan, Student Loan, Student Loan, Student Loan, and Home Equity Loan",34.82232816,21.8967997,15.72,12,Bad,5261.711052,33.11824166,10 Years and 0 Months,Yes,409.0394423,377.1218778,Low_spent_Medium_value_payments,168.8947253,0,-2.5098,0.7396,-0.9125,0.1959,-0.7653 +0x25f21,CUS_0x1285,August,43,540-18-1115,Architect,10692.16,,8,4,16,0,,17.86881731,,10.29,4,Standard,1350.85,34.60893055,32 Years and 0 Months,Yes,0,71.94175177,Low_spent_Large_value_payments,279.7595816,0,0.5825,-0.8642,-0.1416,-0.5484,0.5391 +0x25f2d,CUS_0x1d18,August,44,061-64-3430,Musician,33702.74,,7,3,19,2,"Mortgage Loan, and Not Specified",5.403571764,7,10.7,5,Standard,636.96,23.75205309,24 Years and 6 Months,Yes,37.99322924,246.3342421,Low_spent_Small_value_payments,305.5286953,0,-0.4563,1.1297,-2.7726,0.8779,-0.3519 +0x25f39,CUS_0x3855,August,32,#F%$D@*&8,Scientist,118677.54,9963.795,4,4,5.288361749,4,"Debt Consolidation Loan, Personal Loan, Credit-Builder Loan, and Payday Loan",8.640318763,11,9.59,5,Good,916.4598261,38.82625433,30 Years and 6 Months,No,237.1063659,11643.21353,High_spent_Medium_value_payments,801.7522965,0,0.7986,-1.7583,0.0046,1.7173,-0.0093 +0x25f45,CUS_0x47fa,August,31,291-51-7240,Mechanic,64511.34,5440.945,7,3,15,0,,6.575040954,8,18.57,2,_,330.6,35.25141589,23 Years and 5 Months,Yes,0,535.1932838,Low_spent_Small_value_payments,298.9012162,0,-1.7788,0.7103,-2.1725,-0.3975,-1.2877 +0x25f51,CUS_0x89aa,August,44,018-63-7005,Manager,85744.12,7125.343333,6,7,11,2,"Auto Loan, and Debt Consolidation Loan",25.06665674,18,18.08,5,Standard,620.889816,40.55497776,15 Years and 10 Months,Yes,72.09917649,627.1701684,Low_spent_Large_value_payments,373.3869413,0,1.3138,-1.7374,0.896,2.1342,0.1378 +0x25f5d,CUS_0x4986,August,37,971-61-8388,Entrepreneur,41329.56,3421.13,2,3,7,1,Not Specified,,10,6.66,2,Good,1129.360257,39.86603006,23 Years and 10 Months,No,81751,105.4646035,High_spent_Medium_value_payments,479.4321862,0,-1.5883,-2.1299,-0.287,-0.4601,1.7285 +0x25f69,CUS_0xa053,August,39,094-81-5856,Writer,87695.34,,2,7,6.288361749,0,,8.565665511,10,6.52,6,Good,361.68,39.10183313,19 Years and 8 Months,No,0,562.9392558,High_spent_Large_value_payments,830.7927052,0,-1.6979,-1.0189,-1.6452,-0.2814,0.4758 +0x25f75,CUS_0x1619,August,52,683-59-7399,Media_Manager,20059.98,1523.665,8,5,12,966,"Home Equity Loan, Payday Loan, Not Specified, and Personal Loan",18.09638668,12.69754605,2.97,8,Good,983.5843041,32.47377276,16 Years and 10 Months,No,45.07682694,10000,Low_spent_Small_value_payments,267.184985,0,-0.2963,0.616,0.2874,-0.6189,-0.5846 +0x25f81,CUS_0x2654,August,38,647-67-8889,Media_Manager,139664.96,11777.74667,3,6,11.28836175,4,"Credit-Builder Loan, Credit-Builder Loan, Student Loan, and Credit-Builder Loan",,12,12.39,9,Standard,331.8769214,28.81442726,30 Years and 2 Months,Yes,423.7310158,1652.736023,Low_spent_Large_value_payments,,0,-0.9205,-0.3998,-0.098,-1.1585,-0.4206 +0x25f8d,CUS_0xb11c,August,38,546-94-4789,_______,15319.65,,6,7,15,4,"Home Equity Loan, Auto Loan, Auto Loan, and Auto Loan",36.99147704,18.90491399,17.13,6,Bad,1668.557985,34.55750953,11 Years and 4 Months,Yes,28.18203339,191.8777785,Low_spent_Small_value_payments,216.0039381,0,-1.2513,-0.7915,3.1281,-0.2872,0.7117 +0x25f99,CUS_0xad4f,August,48,226-45-0652,_______,22620.79,,6,2,9,0,,,17.02005183,5.31,2,_,710.7550619,34.02642747,29 Years and 10 Months,No,0,205.2172804,Low_spent_Small_value_payments,256.9893029,0,-0.6711,0.5392,1.2934,-0.1185,-0.1056 +0x25fa5,CUS_0x51b3,August,33,837-85-9800,Media_Manager,59146.36,,3,6,6,1,Personal Loan,3.951835686,6,6.68,5,Good,418.03,27.6821857,20 Years and 8 Months,No,26.77841927,,Low_spent_Large_value_payments,389.4884832,0,1.1115,0.4881,-0.1167,0.3939,-0.2288 +0x25fb1,CUS_0x2084,August,21,253-72-7758,Architect,38321.39,,4,4,3,4,"Student Loan, Debt Consolidation Loan, Student Loan, and Mortgage Loan",4.86732652,7,1.59,6,_,678.57,28.95169053,17 Years and 6 Months,No,362.0724534,259.135635,Low_spent_Medium_value_payments,242.0381355,0,0.8132,1.7183,0.5561,1.267,-0.0623 +0x25fbd,CUS_0x372c,August,19,340-85-7301,Lawyer,42903.79,3468.315833,0,4,6,1,Not Specified,14.32897531,,5.1,1,Good,929.992256,35.7166183,28 Years and 8 Months,No,34.97545669,131.3974711,High_spent_Medium_value_payments,446.6711422,0,-0.0692,2.5991,0.6546,0.5023,-0.6265 +0x25fc9,CUS_0xf16,August,51,868-70-2218,Media_Manager,16680.35,,1,1,5,4,"Payday Loan, Student Loan, Mortgage Loan, and Not Specified",0,0,5.69,8,Good,773.1229335,41.21236676,,No,41.11356059,78.7908955,Low_spent_Large_value_payments,310.8838063,0,0.0448,-0.441,1.7224,0.0605,-0.3941 +0x25fd5,CUS_0xaf61,August,53,133-16-7738,Writer,37188.1,3097.008333,1,4,5,3,"Home Equity Loan, Mortgage Loan, and Student Loan",7.170655249,9,5.38,3,_,540.0705331,39.30098031,30 Years and 4 Months,No,84.20594942,49.14469036,High_spent_Medium_value_payments,432.5593181,0,-0.2739,1.024,0.8225,-1.1673,-0.6862 +0x25fe1,CUS_0x8600,August,29,031-35-0942,Architect,20002.88,,10,8,29,5,"Personal Loan, Auto Loan, Mortgage Loan, Student Loan, and Student Loan",39.56432086,25,18.31,9,Bad,3571.7,37.14078351,6 Years and 3 Months,Yes,60.96477237,34.66290609,High_spent_Large_value_payments,337.3629882,0,0.4349,0.3931,-0.2057,-1.1032,0.1915 +0x25fed,CUS_0x942c,August,25,078-73-5990,Mechanic,39628.99,3359.415833,4,6,7,2,"Auto Loan, and Student Loan",,6.987191968,11.5,3,Good,558.1407778,34.19246265,31 Years and 10 Months,No,35.10402261,167.1638652,!@9#%8,393.6736956,0,0.269,0.4548,1.8275,-0.6616,-0.3135 diff --git a/强化学习个人课程作业报告/outputs/predictions/test_result_1234560.csv b/强化学习个人课程作业报告/outputs/predictions/test_result_1234560.csv index bd888f4..c80577d 100644 --- a/强化学习个人课程作业报告/outputs/predictions/test_result_1234560.csv +++ b/强化学习个人课程作业报告/outputs/predictions/test_result_1234560.csv @@ -1,12501 +1,12501 @@ -applicant_id,customer_key,premium_risk -0x1609,CUS_0xd40,Low -0x1615,CUS_0x21b1,Low -0x1621,CUS_0x2dbc,Low -0x162d,CUS_0xb891,Low -0x1639,CUS_0x1cdb,Standard -0x1645,CUS_0x95ee,Low -0x1651,CUS_0x284a,Low -0x165d,CUS_0x5407,High -0x1669,CUS_0x4157,Standard -0x1675,CUS_0xba08,Low -0x1681,CUS_0xa66b,Standard -0x168d,CUS_0xc0ab,Low -0x1699,CUS_0x3e45,Standard -0x16a5,CUS_0x6c66,High -0x16b1,CUS_0xff4,Standard -0x16bd,CUS_0x33d2,Standard -0x16c9,CUS_0x6070,High -0x16d5,CUS_0xfdb,Standard -0x16e1,CUS_0x3553,Low -0x16ed,CUS_0x4100,Standard -0x16f9,CUS_0x132f,High -0x1705,CUS_0xa16e,High -0x1711,CUS_0xac86,Low -0x171d,CUS_0x5b48,High -0x1729,CUS_0xa5f9,High -0x1735,CUS_0x4d43,Standard -0x1741,CUS_0xb95f,High -0x174d,CUS_0x3edc,Standard -0x1759,CUS_0xbffe,Standard -0x1765,CUS_0xb681,High -0x1771,CUS_0x9a71,Low -0x177d,CUS_0x6048,High -0x1789,CUS_0x95b5,Standard -0x1795,CUS_0x4004,Standard -0x17a1,CUS_0xb101,Low -0x17ad,CUS_0x9b94,Standard -0x17b9,CUS_0x4080,High -0x17c5,CUS_0x706a,Standard -0x17d1,CUS_0x42ac,High -0x17dd,CUS_0x571f,Standard -0x17e9,CUS_0xb5ff,Standard -0x17f5,CUS_0x6a1b,Standard -0x1801,CUS_0x9bc1,Standard -0x180d,CUS_0xc65,Low -0x1819,CUS_0xaedb,Low -0x1825,CUS_0x8e9b,Standard -0x1831,CUS_0x609d,High -0x183d,CUS_0x75c6,Low -0x1849,CUS_0x9b3c,Standard -0x1855,CUS_0x22a3,Standard -0x1861,CUS_0xb14,High -0x186d,CUS_0xb986,Standard -0x1879,CUS_0xbe1b,High -0x1885,CUS_0x9ce6,Standard -0x1891,CUS_0x6ffb,Standard -0x189d,CUS_0x4315,Standard -0x18a9,CUS_0x3f5b,Standard -0x18b5,CUS_0x9d78,Standard -0x18c1,CUS_0x47db,High -0x18cd,CUS_0x8f17,High -0x18d9,CUS_0x7d0b,High -0x18e5,CUS_0x7504,Standard -0x18f1,CUS_0x774,Low -0x18fd,CUS_0x9f70,Low -0x1909,CUS_0xab76,Standard -0x1915,CUS_0x5cdf,Standard -0x1921,CUS_0x2184,Standard -0x192d,CUS_0xa156,High -0x1939,CUS_0x74f2,Standard -0x1945,CUS_0x308b,High -0x1951,CUS_0x2827,Low -0x195d,CUS_0xa295,Standard -0x1969,CUS_0x6c2e,Low -0x1975,CUS_0x384c,Standard -0x1981,CUS_0x6cbb,Standard -0x198d,CUS_0x36ab,Standard -0x1999,CUS_0x6649,Standard -0x19a5,CUS_0x6856,Low -0x19b1,CUS_0xa27e,Standard -0x19bd,CUS_0x700d,High -0x19c9,CUS_0x78e0,Standard -0x19d5,CUS_0x6794,Low -0x19e1,CUS_0xe2c,Standard -0x19ed,CUS_0x36bb,Low -0x19f9,CUS_0xa77f,Standard -0x1a05,CUS_0x1e70,Standard -0x1a11,CUS_0xa335,High -0x1a1d,CUS_0x71e0,Standard -0x1a29,CUS_0x4af0,Standard -0x1a35,CUS_0x3861,Standard -0x1a41,CUS_0x240d,Low -0x1a4d,CUS_0x2652,Low -0x1a59,CUS_0x259a,High -0x1a65,CUS_0x28b5,Standard -0x1a71,CUS_0x8643,High -0x1a7d,CUS_0x12d5,Standard -0x1a89,CUS_0x3f04,Low -0x1a95,CUS_0x62c6,Standard -0x1aa1,CUS_0x398d,Standard -0x1aad,CUS_0x618b,High -0x1ab9,CUS_0x7250,Low -0x1ac5,CUS_0x6435,Standard -0x1ad1,CUS_0xb6ad,High -0x1add,CUS_0x7878,Standard -0x1ae9,CUS_0x35b5,High -0x1af5,CUS_0x7a0f,High -0x1b01,CUS_0x1c09,Standard -0x1b0d,CUS_0x2c0d,High -0x1b19,CUS_0x9073,Standard -0x1b25,CUS_0x2813,Standard -0x1b31,CUS_0xac93,High -0x1b3d,CUS_0x8c69,Low -0x1b49,CUS_0x365a,High -0x1b55,CUS_0x7586,Standard -0x1b61,CUS_0x9c67,Standard -0x1b6d,CUS_0x7caf,Low -0x1b79,CUS_0xa2f7,High -0x1b85,CUS_0x5e17,High -0x1b91,CUS_0x1288,High -0x1b9d,CUS_0x567b,Standard -0x1ba9,CUS_0x2365,High -0x1bb5,CUS_0x8a04,Standard -0x1bc1,CUS_0x6015,High -0x1bcd,CUS_0x21e6,Standard -0x1bd9,CUS_0xa9a6,Standard -0x1be5,CUS_0x3187,Standard -0x1bf1,CUS_0x3fbf,Standard -0x1bfd,CUS_0x953c,Low -0x1c09,CUS_0x4aaa,Standard -0x1c15,CUS_0x2947,Standard -0x1c21,CUS_0x30e0,Standard -0x1c2d,CUS_0xc3b7,High -0x1c39,CUS_0x1e9b,High -0x1c45,CUS_0x3b88,Standard -0x1c51,CUS_0xae51,Standard -0x1c5d,CUS_0xb7ef,Standard -0x1c69,CUS_0xb288,Standard -0x1c75,CUS_0x7a22,Standard -0x1c81,CUS_0x9495,High -0x1c8d,CUS_0x64f1,Standard -0x1c99,CUS_0x6749,High -0x1ca5,CUS_0xc1c9,Low -0x1cb1,CUS_0x230a,Low -0x1cbd,CUS_0x8928,Standard -0x1cc9,CUS_0x682f,Standard -0x1cd5,CUS_0x4831,Low -0x1ce1,CUS_0x32a5,Standard -0x1ced,CUS_0x710f,High -0x1cf9,CUS_0xa54b,Low -0x1d05,CUS_0x564a,High -0x1d11,CUS_0xb000,Standard -0x1d1d,CUS_0x2584,Standard -0x1d29,CUS_0x5a3f,Low -0x1d35,CUS_0xc341,Low -0x1d41,CUS_0x1a96,Low -0x1d4d,CUS_0xb7a1,Standard -0x1d59,CUS_0x31d5,Low -0x1d65,CUS_0x45f7,Standard -0x1d71,CUS_0x6617,Low -0x1d7d,CUS_0x5b80,Standard -0x1d89,CUS_0xa548,High -0x1d95,CUS_0xb9ea,Standard -0x1da1,CUS_0x54c0,Standard -0x1dad,CUS_0x258b,High -0x1db9,CUS_0x4bb4,High -0x1dc5,CUS_0x8e75,High -0x1dd1,CUS_0xf95,Standard -0x1ddd,CUS_0x4028,Standard -0x1de9,CUS_0x8db8,Standard -0x1df5,CUS_0x1e63,High -0x1e01,CUS_0x4948,Standard -0x1e0d,CUS_0xc37b,High -0x1e19,CUS_0xfcc,Standard -0x1e25,CUS_0x64ce,Standard -0x1e31,CUS_0x9574,High -0x1e3d,CUS_0xbc88,Standard -0x1e49,CUS_0x661b,Standard -0x1e55,CUS_0xc51,Standard -0x1e61,CUS_0x9536,Standard -0x1e6d,CUS_0xc5a0,Standard -0x1e79,CUS_0xb282,Low -0x1e85,CUS_0xb9b8,Low -0x1e91,CUS_0x3e81,Standard -0x1e9d,CUS_0x3702,Standard -0x1ea9,CUS_0x8a0f,High -0x1eb5,CUS_0x21be,Standard -0x1ec1,CUS_0x8c1f,Standard -0x1ecd,CUS_0x67e1,Low -0x1ed9,CUS_0x1c06,High -0x1ee5,CUS_0x5761,High -0x1ef1,CUS_0x9a4a,Standard -0x1efd,CUS_0x100b,Standard -0x1f09,CUS_0x6325,High -0x1f15,CUS_0x4e3c,Standard -0x1f21,CUS_0xb217,Standard -0x1f2d,CUS_0xb374,Standard -0x1f39,CUS_0x1d4e,Standard -0x1f45,CUS_0x8a4b,Standard -0x1f51,CUS_0x93ff,High -0x1f5d,CUS_0x3e2d,High -0x1f69,CUS_0x493c,Low -0x1f75,CUS_0x88a0,Standard -0x1f81,CUS_0x543f,High -0x1f8d,CUS_0x9f7e,Standard -0x1f99,CUS_0x23a6,Standard -0x1fa5,CUS_0xa874,Standard -0x1fb1,CUS_0x4ea5,Standard -0x1fbd,CUS_0x8208,Low -0x1fc9,CUS_0xb35f,Standard -0x1fd5,CUS_0x8696,Standard -0x1fe1,CUS_0x49da,Standard -0x1fed,CUS_0x5d94,Low -0x1ff9,CUS_0x3ef5,High -0x2005,CUS_0xbda3,High -0x2011,CUS_0x29fd,High -0x201d,CUS_0xbbf3,Low -0x2029,CUS_0x2c31,Low -0x2035,CUS_0xb4be,Standard -0x2041,CUS_0xa203,High -0x204d,CUS_0xa7c3,Standard -0x2059,CUS_0x76e7,High -0x2065,CUS_0x46d4,Standard -0x2071,CUS_0x396e,Standard -0x207d,CUS_0x74f5,Standard -0x2089,CUS_0xb9e5,Standard -0x2095,CUS_0xacbe,Standard -0x20a1,CUS_0x9951,Standard -0x20ad,CUS_0xbcb9,Low -0x20b9,CUS_0xae95,Standard -0x20c5,CUS_0x1f9e,Standard -0x20d1,CUS_0x2242,High -0x20dd,CUS_0x3e85,Standard -0x20e9,CUS_0xa47,High -0x20f5,CUS_0xaa40,Standard -0x2101,CUS_0x1452,High -0x210d,CUS_0x76cf,High -0x2119,CUS_0x703f,Standard -0x2125,CUS_0x572,Standard -0x2131,CUS_0x104e,Standard -0x213d,CUS_0x6f38,High -0x2149,CUS_0x7b3c,Standard -0x2155,CUS_0x709d,High -0x2161,CUS_0xc434,Standard -0x216d,CUS_0x8a12,Standard -0x2179,CUS_0x4eb4,Standard -0x2185,CUS_0xab00,Standard -0x2191,CUS_0x8c9a,Low -0x219d,CUS_0x2c5e,High -0x21a9,CUS_0x70d5,Standard -0x21b5,CUS_0xb052,Standard -0x21c1,CUS_0x7c34,Standard -0x21cd,CUS_0x4256,Low -0x21d9,CUS_0x4f04,Low -0x21e5,CUS_0x41b7,Standard -0x21f1,CUS_0x9095,High -0x21fd,CUS_0xa05f,High -0x2209,CUS_0x309d,High -0x2215,CUS_0xa522,Standard -0x2221,CUS_0x8a6e,Standard -0x222d,CUS_0x77d1,High -0x2239,CUS_0xde6,Low -0x2245,CUS_0xa672,Standard -0x2251,CUS_0x8caf,High -0x225d,CUS_0x4655,Low -0x2269,CUS_0x25aa,Standard -0x2275,CUS_0xbd08,High -0x2281,CUS_0x6b44,Standard -0x228d,CUS_0x7517,High -0x2299,CUS_0x5228,Standard -0x22a5,CUS_0x2e6e,High -0x22b1,CUS_0x280b,Standard -0x22bd,CUS_0x51b4,High -0x22c9,CUS_0xa1d6,High -0x22d5,CUS_0x8b12,Standard -0x22e1,CUS_0xa459,High -0x22ed,CUS_0xf23,Low -0x22f9,CUS_0x7cfc,Standard -0x2305,CUS_0x728f,Low -0x2311,CUS_0xd05,Low -0x231d,CUS_0x3cf7,High -0x2329,CUS_0xa71a,Standard -0x2335,CUS_0x32ce,High -0x2341,CUS_0x9b4c,Standard -0x234d,CUS_0x4330,Standard -0x2359,CUS_0xf59,Low -0x2365,CUS_0x9a58,Low -0x2371,CUS_0x409e,Low -0x237d,CUS_0x532d,Standard -0x2389,CUS_0xadb7,High -0x2395,CUS_0xa9ca,High -0x23a1,CUS_0x69a9,Standard -0x23ad,CUS_0x7dfb,High -0x23b9,CUS_0x479,Standard -0x23c5,CUS_0x3b5d,Standard -0x23d1,CUS_0x9167,Standard -0x23dd,CUS_0x4a5b,Standard -0x23e9,CUS_0xfdd,Standard -0x23f5,CUS_0x4883,Low -0x2401,CUS_0x6387,Standard -0x240d,CUS_0xd83,Standard -0x2419,CUS_0x3ce3,Low -0x2425,CUS_0xa706,Standard -0x2431,CUS_0x9983,Standard -0x243d,CUS_0x2877,High -0x2449,CUS_0x1df1,Standard -0x2455,CUS_0x4223,High -0x2461,CUS_0x3f47,High -0x246d,CUS_0x86b,High -0x2479,CUS_0x98f9,Standard -0x2485,CUS_0x46eb,Standard -0x2491,CUS_0x1863,Standard -0x249d,CUS_0x481f,High -0x24a9,CUS_0x79b,Standard -0x24b5,CUS_0xbf19,Standard -0x24c1,CUS_0xa501,Standard -0x24cd,CUS_0x2602,Standard -0x24d9,CUS_0x96e,Low -0x24e5,CUS_0x864a,Standard -0x24f1,CUS_0x56d1,Low -0x24fd,CUS_0xae0e,High -0x2509,CUS_0x3b3f,High -0x2515,CUS_0x9bc4,High -0x2521,CUS_0x62a4,Standard -0x252d,CUS_0x4c77,High -0x2539,CUS_0x62f0,Standard -0x2545,CUS_0x342a,Standard -0x2551,CUS_0x7597,High -0x255d,CUS_0xbb6e,Standard -0x2569,CUS_0x7c55,Standard -0x2575,CUS_0xa835,Low -0x2581,CUS_0x467f,High -0x258d,CUS_0x7590,Standard -0x2599,CUS_0x515a,Standard -0x25a5,CUS_0x114a,Standard -0x25b1,CUS_0x49dd,Standard -0x25bd,CUS_0x6346,Low -0x25c9,CUS_0x481c,Standard -0x25d5,CUS_0xa1ea,Standard -0x25e1,CUS_0x70b2,Low -0x25ed,CUS_0xc365,Standard -0x25f9,CUS_0x8efa,Standard -0x2605,CUS_0x9783,Standard -0x2611,CUS_0x6a17,High -0x261d,CUS_0x8c03,Standard -0x2629,CUS_0xadf6,Standard -0x2635,CUS_0xa166,Standard -0x2641,CUS_0x7d27,Low -0x264d,CUS_0x5698,High -0x2659,CUS_0x51e,Standard -0x2665,CUS_0xab3b,Standard -0x2671,CUS_0xf43,High -0x267d,CUS_0x345b,Standard -0x2689,CUS_0x4c34,Standard -0x2695,CUS_0x3d51,Low -0x26a1,CUS_0x9fff,Standard -0x26ad,CUS_0xa41e,High -0x26b9,CUS_0x797d,Standard -0x26c5,CUS_0x9c4,High -0x26d1,CUS_0x9d0d,Standard -0x26dd,CUS_0x602d,Standard -0x26e9,CUS_0x63dd,High -0x26f5,CUS_0x3f27,Standard -0x2701,CUS_0x67ff,High -0x270d,CUS_0xc247,Standard -0x2719,CUS_0xc723,Standard -0x2725,CUS_0xa213,High -0x2731,CUS_0x6065,Standard -0x273d,CUS_0x7f61,Standard -0x2749,CUS_0xb563,Standard -0x2755,CUS_0x47b2,Standard -0x2761,CUS_0x9338,Standard -0x276d,CUS_0x6102,Standard -0x2779,CUS_0x5794,Standard -0x2785,CUS_0xa560,Low -0x2791,CUS_0x7fe3,High -0x279d,CUS_0x4c3e,Low -0x27a9,CUS_0x41e4,High -0x27b5,CUS_0x2484,Standard -0x27c1,CUS_0xb560,Standard -0x27cd,CUS_0x4e8b,Standard -0x27d9,CUS_0x8b96,Standard -0x27e5,CUS_0x9b60,Standard -0x27f1,CUS_0xaf23,Standard -0x27fd,CUS_0xbda2,Low -0x2809,CUS_0x82cc,Standard -0x2815,CUS_0x7812,Low -0x2821,CUS_0xc23d,Standard -0x282d,CUS_0x93bb,High -0x2839,CUS_0x46e6,High -0x2845,CUS_0x5ccb,High -0x2851,CUS_0x3ca6,Standard -0x285d,CUS_0xc081,Standard -0x2869,CUS_0x6345,High -0x2875,CUS_0xc6bb,Standard -0x2881,CUS_0x683,Standard -0x288d,CUS_0x20e0,Standard -0x2899,CUS_0x3af5,Standard -0x28a5,CUS_0xa9e3,High -0x28b1,CUS_0x3fa8,Low -0x28bd,CUS_0x791e,Standard -0x28c9,CUS_0x9953,High -0x28d5,CUS_0xaf1b,High -0x28e1,CUS_0x8153,Low -0x28ed,CUS_0x51b,Low -0x28f9,CUS_0x2b8e,Low -0x2905,CUS_0x264c,Standard -0x2911,CUS_0x2e31,Standard -0x291d,CUS_0x4f13,Standard -0x2929,CUS_0x9eec,Low -0x2935,CUS_0x5fbf,High -0x2941,CUS_0x4c1e,Standard -0x294d,CUS_0xaac3,Low -0x2959,CUS_0x2041,Standard -0x2965,CUS_0xc5d6,High -0x2971,CUS_0x7b15,Standard -0x297d,CUS_0x80b1,Standard -0x2989,CUS_0xa6e4,High -0x2995,CUS_0x942a,Low -0x29a1,CUS_0xe94,Low -0x29ad,CUS_0x5d7e,High -0x29b9,CUS_0x3474,Standard -0x29c5,CUS_0xad9d,Standard -0x29d1,CUS_0x9776,High -0x29dd,CUS_0x6632,Low -0x29e9,CUS_0x6d4,Standard -0x29f5,CUS_0x2db7,Standard -0x2a01,CUS_0x4bdf,Standard -0x2a0d,CUS_0x3ba2,High -0x2a19,CUS_0x4d26,High -0x2a25,CUS_0x247e,Standard -0x2a31,CUS_0x3d41,Standard -0x2a3d,CUS_0x438b,Standard -0x2a49,CUS_0xa9a9,Standard -0x2a55,CUS_0x68c8,Standard -0x2a61,CUS_0x7799,Standard -0x2a6d,CUS_0x7888,Standard -0x2a79,CUS_0x1d3e,Standard -0x2a85,CUS_0xa83a,Standard -0x2a91,CUS_0x43c6,Standard -0x2a9d,CUS_0x534a,Low -0x2aa9,CUS_0x8d4f,High -0x2ab5,CUS_0xa45d,Standard -0x2ac1,CUS_0x7f32,Standard -0x2acd,CUS_0x303a,High -0x2ad9,CUS_0x8a5c,High -0x2ae5,CUS_0x36d5,Standard -0x2af1,CUS_0x5155,High -0x2afd,CUS_0x1e6b,High -0x2b09,CUS_0x6514,Standard -0x2b15,CUS_0x92ef,Standard -0x2b21,CUS_0xc3d6,High -0x2b2d,CUS_0x33f0,Standard -0x2b39,CUS_0x32e5,Standard -0x2b45,CUS_0xa8e7,Standard -0x2b51,CUS_0x90d6,Standard -0x2b5d,CUS_0x65f6,Standard -0x2b69,CUS_0xbbff,Standard -0x2b75,CUS_0x144d,Standard -0x2b81,CUS_0x4a74,Standard -0x2b8d,CUS_0xa6d9,Standard -0x2b99,CUS_0x3f5f,High -0x2ba5,CUS_0x29b2,Standard -0x2bb1,CUS_0x58d0,Standard -0x2bbd,CUS_0x768c,High -0x2bc9,CUS_0x32b1,Standard -0x2bd5,CUS_0x17f3,Standard -0x2be1,CUS_0x8831,Standard -0x2bed,CUS_0x83a4,High -0x2bf9,CUS_0x5db1,Standard -0x2c05,CUS_0x58f,Standard -0x2c11,CUS_0x437c,Standard -0x2c1d,CUS_0x28df,High -0x2c29,CUS_0x5e3b,High -0x2c35,CUS_0x2e15,High -0x2c41,CUS_0x52e7,Standard -0x2c4d,CUS_0xc4c9,Standard -0x2c59,CUS_0xac39,Standard -0x2c65,CUS_0x448c,High -0x2c71,CUS_0x2719,Standard -0x2c7d,CUS_0x76d4,Standard -0x2c89,CUS_0xae79,Standard -0x2c95,CUS_0x695e,Low -0x2ca1,CUS_0x1b41,Standard -0x2cad,CUS_0x75b1,Standard -0x2cb9,CUS_0x11d1,Standard -0x2cc5,CUS_0x278b,Standard -0x2cd1,CUS_0xed3,Standard -0x2cdd,CUS_0x1f96,Low -0x2ce9,CUS_0x3ea1,High -0x2cf5,CUS_0x5624,Standard -0x2d01,CUS_0x5719,Standard -0x2d0d,CUS_0x136b,Standard -0x2d19,CUS_0x122c,Low -0x2d25,CUS_0x41cc,Standard -0x2d31,CUS_0x36c7,Standard -0x2d3d,CUS_0x143c,Standard -0x2d49,CUS_0x4e5,Standard -0x2d55,CUS_0x68b5,Standard -0x2d61,CUS_0xc055,Standard -0x2d6d,CUS_0x3069,Low -0x2d79,CUS_0x8484,Low -0x2d85,CUS_0x4038,Low -0x2d91,CUS_0x9dc3,Standard -0x2d9d,CUS_0xc64e,High -0x2da9,CUS_0x2451,High -0x2db5,CUS_0x86be,High -0x2dc1,CUS_0x2db4,High -0x2dcd,CUS_0x6902,High -0x2dd9,CUS_0x69ff,High -0x2de5,CUS_0xaec2,High -0x2df1,CUS_0x963,Standard -0x2dfd,CUS_0x609f,Standard -0x2e09,CUS_0x4236,Low -0x2e15,CUS_0x1680,High -0x2e21,CUS_0x3231,Standard -0x2e2d,CUS_0xb87a,Low -0x2e39,CUS_0xb271,Standard -0x2e45,CUS_0x904,High -0x2e51,CUS_0x8974,Standard -0x2e5d,CUS_0x9e28,High -0x2e69,CUS_0x90cb,Standard -0x2e75,CUS_0x466e,Standard -0x2e81,CUS_0x666a,Low -0x2e8d,CUS_0x1a5a,Standard -0x2e99,CUS_0xa0b,High -0x2ea5,CUS_0x9784,Low -0x2eb1,CUS_0x627e,Standard -0x2ebd,CUS_0x1325,High -0x2ec9,CUS_0x6732,Low -0x2ed5,CUS_0x5ce6,High -0x2ee1,CUS_0x2fe4,Low -0x2eed,CUS_0x393f,High -0x2ef9,CUS_0x4354,Low -0x2f05,CUS_0xaf3b,Standard -0x2f11,CUS_0xaf75,High -0x2f1d,CUS_0x40e6,Standard -0x2f29,CUS_0x5c2,Standard -0x2f35,CUS_0x2f6c,Low -0x2f41,CUS_0x6b42,High -0x2f4d,CUS_0x55bd,High -0x2f59,CUS_0xb68f,High -0x2f65,CUS_0x27fb,Standard -0x2f71,CUS_0x7245,Low -0x2f7d,CUS_0x232d,Standard -0x2f89,CUS_0x53e2,Standard -0x2f95,CUS_0x93f5,Standard -0x2fa1,CUS_0x458f,Low -0x2fad,CUS_0xc41e,High -0x2fb9,CUS_0xa77e,Standard -0x2fc5,CUS_0xbf55,High -0x2fd1,CUS_0x6bb2,Low -0x2fdd,CUS_0x7f63,Standard -0x2fe9,CUS_0x3bb6,Standard -0x2ff5,CUS_0xbf7f,Low -0x3001,CUS_0xc5da,Standard -0x300d,CUS_0xc90,High -0x3019,CUS_0x719f,Low -0x3025,CUS_0x7738,Standard -0x3031,CUS_0x82fa,Standard -0x303d,CUS_0x4c90,Standard -0x3049,CUS_0x13db,Standard -0x3055,CUS_0x3019,Low -0x3061,CUS_0x425,Standard -0x306d,CUS_0x4a3f,Low -0x3079,CUS_0x9e76,Standard -0x3085,CUS_0x9714,High -0x3091,CUS_0x6a8b,Standard -0x309d,CUS_0x1739,High -0x30a9,CUS_0xb90d,Low -0x30b5,CUS_0x2bfa,Standard -0x30c1,CUS_0x6cc,Standard -0x30cd,CUS_0xac81,Standard -0x30d9,CUS_0x7a10,Low -0x30e5,CUS_0xc6d8,High -0x30f1,CUS_0x5e52,Standard -0x30fd,CUS_0x868f,Low -0x3109,CUS_0x23b2,Standard -0x3115,CUS_0xbd98,Standard -0x3121,CUS_0xd39,Standard -0x312d,CUS_0x687c,Low -0x3139,CUS_0xaf5f,Low -0x3145,CUS_0x17a9,Standard -0x3151,CUS_0xb3c4,Standard -0x315d,CUS_0x9b7d,Standard -0x3169,CUS_0xac51,High -0x3175,CUS_0x40de,Low -0x3181,CUS_0x951b,Standard -0x318d,CUS_0xacb0,Standard -0x3199,CUS_0x472b,Standard -0x31a5,CUS_0x7ce5,Low -0x31b1,CUS_0xa56d,High -0x31bd,CUS_0xb486,Standard -0x31c9,CUS_0x2a23,Low -0x31d5,CUS_0xdc0,Low -0x31e1,CUS_0x956d,Low -0x31ed,CUS_0x33b4,High -0x31f9,CUS_0x48ed,Standard -0x3205,CUS_0x8e53,High -0x3211,CUS_0xad44,Low -0x321d,CUS_0xa9b4,High -0x3229,CUS_0x271e,Standard -0x3235,CUS_0x80f4,High -0x3241,CUS_0x53e9,High -0x324d,CUS_0x406,Low -0x3259,CUS_0x2cb1,Standard -0x3265,CUS_0x5f36,Standard -0x3271,CUS_0x9493,Low -0x327d,CUS_0xba20,High -0x3289,CUS_0xc5d5,High -0x3295,CUS_0x864,Standard -0x32a1,CUS_0x84da,Low -0x32ad,CUS_0x84a2,High -0x32b9,CUS_0x7e8b,High -0x32c5,CUS_0x1145,High -0x32d1,CUS_0x70ee,Standard -0x32dd,CUS_0x756a,High -0x32e9,CUS_0x7cd3,High -0x32f5,CUS_0x6926,Standard -0x3301,CUS_0x57e8,High -0x330d,CUS_0x3161,Standard -0x3319,CUS_0x6b88,Standard -0x3325,CUS_0x9641,Standard -0x3331,CUS_0x48aa,High -0x333d,CUS_0x8bdd,Standard -0x3349,CUS_0x69ea,Standard -0x3355,CUS_0x658a,Standard -0x3361,CUS_0xb786,Low -0x336d,CUS_0x7110,Low -0x3379,CUS_0xb057,High -0x3385,CUS_0x7e09,Standard -0x3391,CUS_0x9e3b,Standard -0x339d,CUS_0xc3c1,Standard -0x33a9,CUS_0xc629,Low -0x33b5,CUS_0x2e96,Standard -0x33c1,CUS_0x660d,High -0x33cd,CUS_0xaa87,Standard -0x33d9,CUS_0x8d2b,High -0x33e5,CUS_0xedf,High -0x33f1,CUS_0x1baf,Standard -0x33fd,CUS_0x1a33,High -0x3409,CUS_0x40f,Standard -0x3415,CUS_0x628b,High -0x3421,CUS_0x974a,Standard -0x342d,CUS_0xa0ee,High -0x3439,CUS_0x5b02,Low -0x3445,CUS_0x7047,Standard -0x3451,CUS_0xff3,Standard -0x345d,CUS_0x96c3,Low -0x3469,CUS_0x2aac,High -0x3475,CUS_0x73a6,High -0x3481,CUS_0x1069,Standard -0x348d,CUS_0x783f,High -0x3499,CUS_0x61b7,High -0x34a5,CUS_0x65c0,Low -0x34b1,CUS_0x3d0e,Standard -0x34bd,CUS_0x3e37,Standard -0x34c9,CUS_0x8e90,Low -0x34d5,CUS_0x4293,High -0x34e1,CUS_0xc30b,Low -0x34ed,CUS_0x979c,Standard -0x34f9,CUS_0x9e50,Standard -0x3505,CUS_0x5840,Standard -0x3511,CUS_0x9e9e,High -0x351d,CUS_0x47c0,Low -0x3529,CUS_0x2b17,Low -0x3535,CUS_0x9c95,Standard -0x3541,CUS_0x7b72,Standard -0x354d,CUS_0x2593,High -0x3559,CUS_0xb660,Standard -0x3565,CUS_0xa3a9,Standard -0x3571,CUS_0xacc6,Standard -0x357d,CUS_0x9027,Standard -0x3589,CUS_0x5c28,Standard -0x3595,CUS_0x2a03,Standard -0x35a1,CUS_0xbaa9,Standard -0x35ad,CUS_0x7c21,High -0x35b9,CUS_0x78bf,High -0x35c5,CUS_0x804,Standard -0x35d1,CUS_0xa445,Standard -0x35dd,CUS_0xd51,Standard -0x35e9,CUS_0x133f,Standard -0x35f5,CUS_0x672e,Low -0x3601,CUS_0x549d,Standard -0x360d,CUS_0x77ac,High -0x3619,CUS_0x92d5,Standard -0x3625,CUS_0x95ca,Low -0x3631,CUS_0x800,Low -0x363d,CUS_0x8a0e,High -0x3649,CUS_0xa1f4,Standard -0x3655,CUS_0xbaf4,Standard -0x3661,CUS_0x5d82,Standard -0x366d,CUS_0x34ed,Low -0x3679,CUS_0x867d,Low -0x3685,CUS_0x9885,Standard -0x3691,CUS_0x8eb0,Standard -0x369d,CUS_0x97a4,High -0x36a9,CUS_0xb78e,High -0x36b5,CUS_0x2dfd,Low -0x36c1,CUS_0xc620,Standard -0x36cd,CUS_0x735c,High -0x36d9,CUS_0x5c2c,Standard -0x36e5,CUS_0x1fa0,Standard -0x36f1,CUS_0x7546,Standard -0x36fd,CUS_0x38c4,Low -0x3709,CUS_0xb67c,Low -0x3715,CUS_0x6de6,Low -0x3721,CUS_0xa6c6,High -0x372d,CUS_0xba1d,High -0x3739,CUS_0x7b7a,Standard -0x3745,CUS_0x5718,Standard -0x3751,CUS_0x9251,High -0x375d,CUS_0x6a55,Low -0x3769,CUS_0x541,Low -0x3775,CUS_0x97ef,Standard -0x3781,CUS_0x5bb7,Low -0x378d,CUS_0x9bf5,Standard -0x3799,CUS_0xddf,Low -0x37a5,CUS_0xb102,Standard -0x37b1,CUS_0xc442,Low -0x37bd,CUS_0x9ff4,High -0x37c9,CUS_0x307b,Standard -0x37d5,CUS_0x64a1,Low -0x37e1,CUS_0x1e17,Standard -0x37ed,CUS_0x22b3,High -0x37f9,CUS_0x5ee,High -0x3805,CUS_0x105b,Low -0x3811,CUS_0x3401,High -0x381d,CUS_0xb9c8,High -0x3829,CUS_0x9d7,High -0x3835,CUS_0x4b2c,Standard -0x3841,CUS_0x4cfd,Standard -0x384d,CUS_0xbd85,Standard -0x3859,CUS_0x1899,High -0x3865,CUS_0x5413,High -0x3871,CUS_0xe21,High -0x387d,CUS_0xaf4a,Low -0x3889,CUS_0xba8a,Low -0x3895,CUS_0x511c,High -0x38a1,CUS_0xa0a2,Low -0x38ad,CUS_0xadbe,Standard -0x38b9,CUS_0x5793,High -0x38c5,CUS_0x44f0,High -0x38d1,CUS_0x3188,Standard -0x38dd,CUS_0x2a36,Standard -0x38e9,CUS_0x9f69,Low -0x38f5,CUS_0x6aed,Standard -0x3901,CUS_0x79bd,Standard -0x390d,CUS_0x697,Standard -0x3919,CUS_0xa54e,Standard -0x3925,CUS_0xb53e,Standard -0x3931,CUS_0x2811,Low -0x393d,CUS_0x9e02,Standard -0x3949,CUS_0xafb,Standard -0x3955,CUS_0x5300,Standard -0x3961,CUS_0x8ab5,High -0x396d,CUS_0xb05a,Standard -0x3979,CUS_0x79b7,Low -0x3985,CUS_0xc594,Low -0x3991,CUS_0x10ee,High -0x399d,CUS_0x2798,Standard -0x39a9,CUS_0x2847,Standard -0x39b5,CUS_0xb9ca,High -0x39c1,CUS_0xc02f,Low -0x39cd,CUS_0x2b52,Standard -0x39d9,CUS_0xc683,Standard -0x39e5,CUS_0x45f8,Standard -0x39f1,CUS_0xa872,High -0x39fd,CUS_0xa81d,Standard -0x3a09,CUS_0x89be,High -0x3a15,CUS_0x382f,High -0x3a21,CUS_0x3435,Standard -0x3a2d,CUS_0x3c47,Low -0x3a39,CUS_0xfe4,Standard -0x3a45,CUS_0x3ee8,Standard -0x3a51,CUS_0x6563,High -0x3a5d,CUS_0x9619,Standard -0x3a69,CUS_0x37d2,Standard -0x3a75,CUS_0x67e,Standard -0x3a81,CUS_0xa79d,High -0x3a8d,CUS_0xacd4,High -0x3a99,CUS_0xaea1,High -0x3aa5,CUS_0x4eea,Standard -0x3ab1,CUS_0x8c1d,High -0x3abd,CUS_0x36f9,Low -0x3ac9,CUS_0xbfa0,Low -0x3ad5,CUS_0x4de7,Low -0x3ae1,CUS_0x4f4d,Standard -0x3aed,CUS_0xc090,High -0x3af9,CUS_0x74d5,High -0x3b05,CUS_0x59cf,Standard -0x3b11,CUS_0x8ee3,Low -0x3b1d,CUS_0x3708,High -0x3b29,CUS_0xafda,Standard -0x3b35,CUS_0xc600,High -0x3b41,CUS_0x9c30,Low -0x3b4d,CUS_0xb904,High -0x3b59,CUS_0x6a68,Standard -0x3b65,CUS_0x45f4,Low -0x3b71,CUS_0x4b9,High -0x3b7d,CUS_0x2657,Standard -0x3b89,CUS_0xc650,Standard -0x3b95,CUS_0xb843,Standard -0x3ba1,CUS_0x46d,Standard -0x3bad,CUS_0x8e3,Standard -0x3bb9,CUS_0x1037,Low -0x3bc5,CUS_0xad38,High -0x3bd1,CUS_0xc490,Standard -0x3bdd,CUS_0x4ea9,High -0x3be9,CUS_0x3644,Standard -0x3bf5,CUS_0x9ae6,High -0x3c01,CUS_0x2728,Standard -0x3c0d,CUS_0xb513,Standard -0x3c19,CUS_0x1f60,Standard -0x3c25,CUS_0x6edb,Standard -0x3c31,CUS_0x5ff8,Standard -0x3c3d,CUS_0x19cc,Low -0x3c49,CUS_0x68a8,High -0x3c55,CUS_0xe36,Standard -0x3c61,CUS_0x3f16,Standard -0x3c6d,CUS_0x2692,High -0x3c79,CUS_0x4edb,Standard -0x3c85,CUS_0xb0e4,Low -0x3c91,CUS_0x89ca,Standard -0x3c9d,CUS_0xa090,High -0x3ca9,CUS_0x37f4,High -0x3cb5,CUS_0x9ec9,Standard -0x3cc1,CUS_0xea6,Low -0x3ccd,CUS_0xae8,High -0x3cd9,CUS_0x82fd,Standard -0x3ce5,CUS_0xb761,Standard -0x3cf1,CUS_0x6ec9,High -0x3cfd,CUS_0x3486,Low -0x3d09,CUS_0x507d,Standard -0x3d15,CUS_0x3c96,High -0x3d21,CUS_0x9021,Standard -0x3d2d,CUS_0x6ab3,Low -0x3d39,CUS_0x6938,High -0x3d45,CUS_0x7f3d,Standard -0x3d51,CUS_0x72a0,Standard -0x3d5d,CUS_0x12f2,High -0x3d69,CUS_0x598d,Standard -0x3d75,CUS_0x5480,Standard -0x3d81,CUS_0xaf2a,High -0x3d8d,CUS_0x1437,Low -0x3d99,CUS_0x9894,Standard -0x3da5,CUS_0x907c,Low -0x3db1,CUS_0x329f,Standard -0x3dbd,CUS_0x82f8,Standard -0x3dc9,CUS_0xa2c0,Standard -0x3dd5,CUS_0x64c0,High -0x3de1,CUS_0x43c2,High -0x3ded,CUS_0x8a90,Standard -0x3df9,CUS_0x7943,Standard -0x3e05,CUS_0x71a,High -0x3e11,CUS_0x6b15,Low -0x3e1d,CUS_0x1d15,Standard -0x3e29,CUS_0x6f31,Low -0x3e35,CUS_0x11eb,Standard -0x3e41,CUS_0xbac7,Standard -0x3e4d,CUS_0x89ec,High -0x3e59,CUS_0x29d2,Low -0x3e65,CUS_0x8a56,High -0x3e71,CUS_0xaa39,Standard -0x3e7d,CUS_0x50af,Standard -0x3e89,CUS_0x9cea,High -0x3e95,CUS_0x88a,Standard -0x3ea1,CUS_0x3d7e,Standard -0x3ead,CUS_0x565d,Standard -0x3eb9,CUS_0x17e3,High -0x3ec5,CUS_0x38bb,Standard -0x3ed1,CUS_0x3c6a,Standard -0x3edd,CUS_0xb54e,Standard -0x3ee9,CUS_0x7620,High -0x3ef5,CUS_0x9e13,Standard -0x3f01,CUS_0x8962,Standard -0x3f0d,CUS_0x44f,Standard -0x3f19,CUS_0x6171,Low -0x3f25,CUS_0x72e9,Standard -0x3f31,CUS_0x3ae9,Low -0x3f3d,CUS_0x3949,Standard -0x3f49,CUS_0x3ec0,Standard -0x3f55,CUS_0x1be1,Standard -0x3f61,CUS_0x90b2,Standard -0x3f6d,CUS_0x85d3,Standard -0x3f79,CUS_0xa5e6,Standard -0x3f85,CUS_0xb0b7,Standard -0x3f91,CUS_0x39d3,Standard -0x3f9d,CUS_0x5eee,High -0x3fa9,CUS_0x8628,Low -0x3fb5,CUS_0x908,High -0x3fc1,CUS_0x4523,High -0x3fcd,CUS_0x87ba,High -0x3fd9,CUS_0xb8b6,Standard -0x3fe5,CUS_0xb956,Standard -0x3ff1,CUS_0x7a11,Standard -0x3ffd,CUS_0x4017,Low -0x4009,CUS_0xa778,High -0x4015,CUS_0x576c,High -0x4021,CUS_0x4e30,Low -0x402d,CUS_0x46de,High -0x4039,CUS_0x5756,Low -0x4045,CUS_0x47bc,Low -0x4051,CUS_0x25fd,Low -0x405d,CUS_0xb2e,High -0x4069,CUS_0x68ad,Standard -0x4075,CUS_0xce6,Standard -0x4081,CUS_0xc142,High -0x408d,CUS_0x9412,High -0x4099,CUS_0x62d2,Standard -0x40a5,CUS_0xa130,High -0x40b1,CUS_0x5bb9,High -0x40bd,CUS_0xac20,Standard -0x40c9,CUS_0x7204,High -0x40d5,CUS_0xaca6,Low -0x40e1,CUS_0x4b23,High -0x40ed,CUS_0x9a1,Standard -0x40f9,CUS_0x4480,Standard -0x4105,CUS_0x4200,Standard -0x4111,CUS_0x1d2b,Standard -0x411d,CUS_0x18b5,High -0x4129,CUS_0x6d22,Standard -0x4135,CUS_0x2c8d,Standard -0x4141,CUS_0x111c,High -0x414d,CUS_0x1fef,Standard -0x4159,CUS_0xbc1e,High -0x4165,CUS_0xbbf5,Standard -0x4171,CUS_0x3383,Low -0x417d,CUS_0x51e7,Standard -0x4189,CUS_0x8991,Low -0x4195,CUS_0x59dc,Standard -0x41a1,CUS_0x28b3,High -0x41ad,CUS_0x2cdf,High -0x41b9,CUS_0x4b44,Standard -0x41c5,CUS_0xa329,Standard -0x41d1,CUS_0x6479,Low -0x41dd,CUS_0x3866,High -0x41e9,CUS_0x1631,Standard -0x41f5,CUS_0x67dc,Low -0x4201,CUS_0x4a83,Standard -0x420d,CUS_0xc163,Standard -0x4219,CUS_0xc48a,Standard -0x4225,CUS_0x3313,Low -0x4231,CUS_0x9931,Standard -0x423d,CUS_0xb5bd,High -0x4249,CUS_0x5336,Standard -0x4255,CUS_0x9d32,High -0x4261,CUS_0x530e,Standard -0x426d,CUS_0xd3d,Standard -0x4279,CUS_0x7304,Standard -0x4285,CUS_0x401c,Standard -0x4291,CUS_0x646,High -0x429d,CUS_0x24bb,Standard -0x42a9,CUS_0xbc14,Standard -0x42b5,CUS_0x6f5f,Standard -0x42c1,CUS_0x960f,High -0x42cd,CUS_0x9d9a,Low -0x42d9,CUS_0x5684,Standard -0x42e5,CUS_0x943c,Standard -0x42f1,CUS_0x2d83,Standard -0x42fd,CUS_0x8316,Standard -0x4309,CUS_0x1056,High -0x4315,CUS_0x9ecd,Low -0x4321,CUS_0xb24d,Standard -0x432d,CUS_0xb018,Low -0x4339,CUS_0x5999,Standard -0x4345,CUS_0x7e86,High -0x4351,CUS_0x81f1,Standard -0x435d,CUS_0x738f,Low -0x4369,CUS_0xa2a8,High -0x4375,CUS_0xb521,High -0x4381,CUS_0xb3cd,High -0x438d,CUS_0x3224,Standard -0x4399,CUS_0x3cd2,Standard -0x43a5,CUS_0x6f00,Low -0x43b1,CUS_0x1a3b,Standard -0x43bd,CUS_0x56bd,High -0x43c9,CUS_0xb1a0,Standard -0x43d5,CUS_0x43c5,Standard -0x43e1,CUS_0xa374,Low -0x43ed,CUS_0xa83c,Standard -0x43f9,CUS_0x5088,Standard -0x4405,CUS_0x468a,Standard -0x4411,CUS_0x70f1,Standard -0x441d,CUS_0xc3ee,Low -0x4429,CUS_0x9da6,Standard -0x4435,CUS_0x4f7d,Standard -0x4441,CUS_0xbe9d,Standard -0x444d,CUS_0xa301,Standard -0x4459,CUS_0xf6c,Standard -0x4465,CUS_0x6df5,High -0x4471,CUS_0x117d,Low -0x447d,CUS_0x59a1,High -0x4489,CUS_0x39d7,High -0x4495,CUS_0x6895,High -0x44a1,CUS_0x39a6,Standard -0x44ad,CUS_0x2095,Standard -0x44b9,CUS_0x36da,Standard -0x44c5,CUS_0x5cb5,Standard -0x44d1,CUS_0xb1da,Standard -0x44dd,CUS_0xb591,Standard -0x44e9,CUS_0x55b5,Standard -0x44f5,CUS_0x5d05,Standard -0x4501,CUS_0x3868,High -0x450d,CUS_0x7b3a,High -0x4519,CUS_0x532a,Standard -0x4525,CUS_0x7b5,High -0x4531,CUS_0x5937,Standard -0x453d,CUS_0x8ba7,Standard -0x4549,CUS_0xc3d5,High -0x4555,CUS_0x4d09,High -0x4561,CUS_0x92fc,Standard -0x456d,CUS_0x3de8,Standard -0x4579,CUS_0x2a61,High -0x4585,CUS_0x88f2,Standard -0x4591,CUS_0xb503,Standard -0x459d,CUS_0x10d7,High -0x45a9,CUS_0x8e38,Standard -0x45b5,CUS_0x60d8,Standard -0x45c1,CUS_0x1546,Standard -0x45cd,CUS_0x3969,High -0x45d9,CUS_0x318d,Standard -0x45e5,CUS_0x4d2e,High -0x45f1,CUS_0x8d84,High -0x45fd,CUS_0x1cd1,High -0x4609,CUS_0x9a43,High -0x4615,CUS_0x4ab4,Standard -0x4621,CUS_0x37c9,Standard -0x462d,CUS_0x80b3,Standard -0x4639,CUS_0x55de,High -0x4645,CUS_0x7ab3,Standard -0x4651,CUS_0x137d,Low -0x465d,CUS_0x8804,High -0x4669,CUS_0x5af2,Standard -0x4675,CUS_0x1298,Standard -0x4681,CUS_0x2e55,Standard -0x468d,CUS_0x3cb6,Low -0x4699,CUS_0x258c,Low -0x46a5,CUS_0x1947,Low -0x46b1,CUS_0x17d3,High -0x46bd,CUS_0xacf1,Standard -0x46c9,CUS_0x6962,Standard -0x46d5,CUS_0xb1e1,High -0x46e1,CUS_0x6865,Low -0x46ed,CUS_0xacc7,Standard -0x46f9,CUS_0xadd2,High -0x4705,CUS_0x5ae6,Standard -0x4711,CUS_0x830e,Low -0x471d,CUS_0x414d,Low -0x4729,CUS_0x1ebb,Standard -0x4735,CUS_0x6142,Standard -0x4741,CUS_0x5647,Standard -0x474d,CUS_0xadc8,Standard -0x4759,CUS_0x6b50,Standard -0x4765,CUS_0x6472,Low -0x4771,CUS_0x4229,Standard -0x477d,CUS_0x751b,Standard -0x4789,CUS_0x70e8,Standard -0x4795,CUS_0xb80c,Standard -0x47a1,CUS_0x988d,High -0x47ad,CUS_0xc24b,Standard -0x47b9,CUS_0x2a27,High -0x47c5,CUS_0x7042,Standard -0x47d1,CUS_0x2e22,Standard -0x47dd,CUS_0x4450,Low -0x47e9,CUS_0x5fd2,Standard -0x47f5,CUS_0x82bf,High -0x4801,CUS_0x7f27,Standard -0x480d,CUS_0x8bae,Standard -0x4819,CUS_0x2076,Standard -0x4825,CUS_0x34a3,Standard -0x4831,CUS_0x641b,Standard -0x483d,CUS_0x6ca6,Standard -0x4849,CUS_0x81d,Standard -0x4855,CUS_0xa6a3,Low -0x4861,CUS_0x4349,Standard -0x486d,CUS_0x5046,Standard -0x4879,CUS_0x66a7,High -0x4885,CUS_0x7ae7,Standard -0x4891,CUS_0x64a3,Standard -0x489d,CUS_0x49e3,Standard -0x48a9,CUS_0x42fb,Standard -0x48b5,CUS_0xa5e9,High -0x48c1,CUS_0xbba8,Low -0x48cd,CUS_0x5479,Low -0x48d9,CUS_0x3bc7,Standard -0x48e5,CUS_0x2b8c,High -0x48f1,CUS_0x62e9,Standard -0x48fd,CUS_0x5f64,High -0x4909,CUS_0xb498,High -0x4915,CUS_0xb378,Low -0x4921,CUS_0x432b,High -0x492d,CUS_0x3356,Low -0x4939,CUS_0xc5ee,Standard -0x4945,CUS_0x3556,Standard -0x4951,CUS_0x8b09,Standard -0x495d,CUS_0x3183,Low -0x4969,CUS_0x2b83,Low -0x4975,CUS_0xc728,High -0x4981,CUS_0xa232,Standard -0x498d,CUS_0x14e5,High -0x4999,CUS_0x2ced,Low -0x49a5,CUS_0x25ac,Standard -0x49b1,CUS_0x29a2,Standard -0x49bd,CUS_0xae0,Low -0x49c9,CUS_0x5ecf,Standard -0x49d5,CUS_0x2cbc,Low -0x49e1,CUS_0x7fa,Standard -0x49ed,CUS_0x5a67,Standard -0x49f9,CUS_0x88ca,Standard -0x4a05,CUS_0xb678,Standard -0x4a11,CUS_0x2a75,Standard -0x4a1d,CUS_0x89cb,Low -0x4a29,CUS_0xeda,High -0x4a35,CUS_0x640e,Standard -0x4a41,CUS_0x9e6c,Standard -0x4a4d,CUS_0x4dbd,Standard -0x4a59,CUS_0x53f9,Low -0x4a65,CUS_0x40fe,Standard -0x4a71,CUS_0xa11d,Standard -0x4a7d,CUS_0x8c1,Low -0x4a89,CUS_0x3ba0,Standard -0x4a95,CUS_0x7fb2,Standard -0x4aa1,CUS_0xaad7,Standard -0x4aad,CUS_0xb85a,High -0x4ab9,CUS_0x6e47,Standard -0x4ac5,CUS_0x8cd2,Low -0x4ad1,CUS_0x931c,Standard -0x4add,CUS_0xac0c,High -0x4ae9,CUS_0x4b8,High -0x4af5,CUS_0x8cd4,Standard -0x4b01,CUS_0x11b7,Low -0x4b0d,CUS_0x78db,High -0x4b19,CUS_0x4a9b,Standard -0x4b25,CUS_0x834f,High -0x4b31,CUS_0x9510,Standard -0x4b3d,CUS_0x8d38,Low -0x4b49,CUS_0xe34,Standard -0x4b55,CUS_0xab8,High -0x4b61,CUS_0xb3cb,Standard -0x4b6d,CUS_0x5607,High -0x4b79,CUS_0x41dc,High -0x4b85,CUS_0x6a95,High -0x4b91,CUS_0xb350,High -0x4b9d,CUS_0x3798,Standard -0x4ba9,CUS_0x2c8f,High -0x4bb5,CUS_0x83cc,Standard -0x4bc1,CUS_0xa972,Standard -0x4bcd,CUS_0x38a2,Standard -0x4bd9,CUS_0xa8c1,Standard -0x4be5,CUS_0x8d7,Standard -0x4bf1,CUS_0x39ff,Standard -0x4bfd,CUS_0x8694,Standard -0x4c09,CUS_0x9df6,Standard -0x4c15,CUS_0x7cd8,Low -0x4c21,CUS_0x19b5,High -0x4c2d,CUS_0x4af2,Standard -0x4c39,CUS_0x9ddd,Standard -0x4c45,CUS_0xa340,Standard -0x4c51,CUS_0xbbfc,Standard -0x4c5d,CUS_0x73c2,Low -0x4c69,CUS_0x870d,High -0x4c75,CUS_0x76d0,Standard -0x4c81,CUS_0x73ec,Standard -0x4c8d,CUS_0x5a04,Standard -0x4c99,CUS_0x881c,High -0x4ca5,CUS_0xa303,High -0x4cb1,CUS_0x78e8,Standard -0x4cbd,CUS_0xac60,Low -0x4cc9,CUS_0xc3cf,Standard -0x4cd5,CUS_0xb747,Standard -0x4ce1,CUS_0x18af,High -0x4ced,CUS_0x5f28,High -0x4cf9,CUS_0x3655,Standard -0x4d05,CUS_0x4b19,Standard -0x4d11,CUS_0xf0c,Low -0x4d1d,CUS_0x26be,Low -0x4d29,CUS_0x333c,Standard -0x4d35,CUS_0xd19,Standard -0x4d41,CUS_0x982a,Standard -0x4d4d,CUS_0x5b0a,Standard -0x4d59,CUS_0x28a3,Standard -0x4d65,CUS_0xa094,High -0x4d71,CUS_0x7877,Standard -0x4d7d,CUS_0x832d,Standard -0x4d89,CUS_0x8715,Low -0x4d95,CUS_0x88c1,Standard -0x4da1,CUS_0x74f9,Standard -0x4dad,CUS_0x71d,High -0x4db9,CUS_0x8b8,Standard -0x4dc5,CUS_0x6e64,Standard -0x4dd1,CUS_0x4519,Standard -0x4ddd,CUS_0x160a,Standard -0x4de9,CUS_0x9434,Standard -0x4df5,CUS_0x8e2,Standard -0x4e01,CUS_0xabd6,Standard -0x4e0d,CUS_0xc3d8,Standard -0x4e19,CUS_0xb5aa,Standard -0x4e25,CUS_0x4b3c,Standard -0x4e31,CUS_0xa9c1,Standard -0x4e3d,CUS_0x2cfe,Low -0x4e49,CUS_0x59ba,Low -0x4e55,CUS_0x811f,Standard -0x4e61,CUS_0x6c49,Standard -0x4e6d,CUS_0x292b,Low -0x4e79,CUS_0x2ba8,Low -0x4e85,CUS_0xc27,Standard -0x4e91,CUS_0xa7aa,Standard -0x4e9d,CUS_0x6ed3,Low -0x4ea9,CUS_0x2b6e,Standard -0x4eb5,CUS_0x8ecf,High -0x4ec1,CUS_0x6672,Standard -0x4ecd,CUS_0xbe3b,High -0x4ed9,CUS_0xb4d3,Low -0x4ee5,CUS_0x15d5,High -0x4ef1,CUS_0x4c56,Standard -0x4efd,CUS_0x505f,Standard -0x4f09,CUS_0xc48c,Standard -0x4f15,CUS_0xb793,High -0x4f21,CUS_0x8f8c,Standard -0x4f2d,CUS_0x664c,Standard -0x4f39,CUS_0x12dd,Low -0x4f45,CUS_0x10ff,Standard -0x4f51,CUS_0xbc51,Standard -0x4f5d,CUS_0x9bd1,Standard -0x4f69,CUS_0x7da5,High -0x4f75,CUS_0xb7c,High -0x4f81,CUS_0x8688,Standard -0x4f8d,CUS_0x7292,Low -0x4f99,CUS_0xf5d,High -0x4fa5,CUS_0xa52,High -0x4fb1,CUS_0x138b,High -0x4fbd,CUS_0x8cff,Standard -0x4fc9,CUS_0x840a,Standard -0x4fd5,CUS_0x63ea,High -0x4fe1,CUS_0x2058,Standard -0x4fed,CUS_0x6f72,High -0x4ff9,CUS_0x3d5b,Standard -0x5005,CUS_0x63c2,Low -0x5011,CUS_0x13a8,Low -0x501d,CUS_0x327d,Standard -0x5029,CUS_0x4390,Standard -0x5035,CUS_0xc2ba,Standard -0x5041,CUS_0x29e9,Standard -0x504d,CUS_0xa2b2,Standard -0x5059,CUS_0x523b,Standard -0x5065,CUS_0xc42d,Low -0x5071,CUS_0x1b4d,Standard -0x507d,CUS_0x268f,High -0x5089,CUS_0x3ba7,High -0x5095,CUS_0x1b2a,High -0x50a1,CUS_0x229f,High -0x50ad,CUS_0xa961,Standard -0x50b9,CUS_0xb548,Standard -0x50c5,CUS_0x310f,Standard -0x50d1,CUS_0x3434,High -0x50dd,CUS_0x44ec,Standard -0x50e9,CUS_0x7072,Low -0x50f5,CUS_0x9ce0,Low -0x5101,CUS_0x6187,Low -0x510d,CUS_0x26a5,Standard -0x5119,CUS_0x1c40,Standard -0x5125,CUS_0x23a5,Low -0x5131,CUS_0x1dda,Standard -0x513d,CUS_0xb76d,Standard -0x5149,CUS_0x9abb,High -0x5155,CUS_0x5f7b,Standard -0x5161,CUS_0xb713,Standard -0x516d,CUS_0x97b,Standard -0x5179,CUS_0x765b,Low -0x5185,CUS_0x6f4d,Standard -0x5191,CUS_0x9b95,Low -0x519d,CUS_0xb462,Low -0x51a9,CUS_0xad74,Standard -0x51b5,CUS_0x4c84,Standard -0x51c1,CUS_0xbeb0,High -0x51cd,CUS_0xc075,High -0x51d9,CUS_0x8f25,High -0x51e5,CUS_0xc5d7,Low -0x51f1,CUS_0x69c8,Standard -0x51fd,CUS_0x6b57,Standard -0x5209,CUS_0xc610,High -0x5215,CUS_0x92f,Standard -0x5221,CUS_0x523c,Standard -0x522d,CUS_0x2dbf,Standard -0x5239,CUS_0x636d,High -0x5245,CUS_0x28ec,High -0x5251,CUS_0x4636,High -0x525d,CUS_0x1c82,Low -0x5269,CUS_0x8aee,Standard -0x5275,CUS_0x1540,Standard -0x5281,CUS_0x5bf5,High -0x528d,CUS_0x7e25,Standard -0x5299,CUS_0x232b,Standard -0x52a5,CUS_0xa862,High -0x52b1,CUS_0x6fef,Low -0x52bd,CUS_0x2b7a,Standard -0x52c9,CUS_0x4e66,Low -0x52d5,CUS_0x2742,High -0x52e1,CUS_0x2b98,High -0x52ed,CUS_0xc692,High -0x52f9,CUS_0x3389,Standard -0x5305,CUS_0x3ff7,High -0x5311,CUS_0x6339,Standard -0x531d,CUS_0xcad,Standard -0x5329,CUS_0x4981,Low -0x5335,CUS_0x57e5,Standard -0x5341,CUS_0xbb18,Standard -0x534d,CUS_0x6c71,High -0x5359,CUS_0xb529,High -0x5365,CUS_0x8fb7,High -0x5371,CUS_0x5c40,Standard -0x537d,CUS_0x9dec,Standard -0x5389,CUS_0x6087,High -0x5395,CUS_0x5d42,Standard -0x53a1,CUS_0x925,Low -0x53ad,CUS_0x5cc6,Standard -0x53b9,CUS_0x490e,High -0x53c5,CUS_0x17b0,Standard -0x53d1,CUS_0x3f51,Standard -0x53dd,CUS_0xa98a,Standard -0x53e9,CUS_0x7982,Standard -0x53f5,CUS_0x48e,Standard -0x5401,CUS_0xa7b2,Standard -0x540d,CUS_0xa078,Low -0x5419,CUS_0x5ec6,Standard -0x5425,CUS_0x46f7,High -0x5431,CUS_0x3ec7,High -0x543d,CUS_0x2c99,High -0x5449,CUS_0xc5f3,High -0x5455,CUS_0x99b4,Low -0x5461,CUS_0x5a9f,Standard -0x546d,CUS_0x6ead,Standard -0x5479,CUS_0xafd5,Standard -0x5485,CUS_0xa3bb,Low -0x5491,CUS_0x9a09,Standard -0x549d,CUS_0xabc6,Standard -0x54a9,CUS_0x7c8c,Low -0x54b5,CUS_0x8983,Low -0x54c1,CUS_0x55e4,High -0x54cd,CUS_0x1bc0,Standard -0x54d9,CUS_0xa822,Low -0x54e5,CUS_0x3b33,Standard -0x54f1,CUS_0xbf67,Standard -0x54fd,CUS_0x86f6,High -0x5509,CUS_0xb9bb,High -0x5515,CUS_0x91f,Standard -0x5521,CUS_0x74db,High -0x552d,CUS_0x39d8,Standard -0x5539,CUS_0x8158,Standard -0x5545,CUS_0x8812,Standard -0x5551,CUS_0x83dc,Standard -0x555d,CUS_0x3ec6,Standard -0x5569,CUS_0x950d,Standard -0x5575,CUS_0xc2a4,Low -0x5581,CUS_0x9761,Standard -0x558d,CUS_0xb825,Standard -0x5599,CUS_0x53d1,Standard -0x55a5,CUS_0x5f15,High -0x55b1,CUS_0xc3f1,Standard -0x55bd,CUS_0xb9f,Standard -0x55c9,CUS_0x3430,High -0x55d5,CUS_0xc04a,Standard -0x55e1,CUS_0x6997,High -0x55ed,CUS_0x437e,Standard -0x55f9,CUS_0x4963,High -0x5605,CUS_0x14ba,Standard -0x5611,CUS_0x2a52,Low -0x561d,CUS_0xaa3d,High -0x5629,CUS_0xb1a2,Low -0x5635,CUS_0x8df6,Standard -0x5641,CUS_0xba63,Standard -0x564d,CUS_0x4c8d,Standard -0x5659,CUS_0x281d,Standard -0x5665,CUS_0x8e5,High -0x5671,CUS_0x5239,High -0x567d,CUS_0xa5a1,High -0x5689,CUS_0x825e,High -0x5695,CUS_0x5a7b,High -0x56a1,CUS_0x9a8d,Standard -0x56ad,CUS_0x710b,Low -0x56b9,CUS_0xb7a5,Standard -0x56c5,CUS_0x19b0,Low -0x56d1,CUS_0x7f53,High -0x56dd,CUS_0x6e58,Standard -0x56e9,CUS_0x6ef2,Standard -0x56f5,CUS_0x1c39,Low -0x5701,CUS_0xbe64,Standard -0x570d,CUS_0x78a6,High -0x5719,CUS_0x8337,Standard -0x5725,CUS_0x2205,High -0x5731,CUS_0x86b5,High -0x573d,CUS_0x193c,High -0x5749,CUS_0x9be5,Standard -0x5755,CUS_0x3513,High -0x5761,CUS_0x83f5,High -0x576d,CUS_0x99dc,High -0x5779,CUS_0x709,Standard -0x5785,CUS_0x576d,Standard -0x5791,CUS_0x87a2,Standard -0x579d,CUS_0x24e3,Standard -0x57a9,CUS_0x275e,Standard -0x57b5,CUS_0xb144,Low -0x57c1,CUS_0xb0e,High -0x57cd,CUS_0x99a9,Standard -0x57d9,CUS_0x6b94,Standard -0x57e5,CUS_0x360e,High -0x57f1,CUS_0x13f8,Standard -0x57fd,CUS_0x7afc,Low -0x5809,CUS_0x485f,Standard -0x5815,CUS_0x5d8b,Low -0x5821,CUS_0xa503,Low -0x582d,CUS_0x8c9c,Standard -0x5839,CUS_0x15a4,Low -0x5845,CUS_0x4e8c,Standard -0x5851,CUS_0x4333,Low -0x585d,CUS_0x88f6,Standard -0x5869,CUS_0x21af,High -0x5875,CUS_0x2a57,Low -0x5881,CUS_0x298e,Standard -0x588d,CUS_0x1324,High -0x5899,CUS_0x5923,Standard -0x58a5,CUS_0x6f9d,Standard -0x58b1,CUS_0x382d,Standard -0x58bd,CUS_0xa7d7,Low -0x58c9,CUS_0x11c6,Low -0x58d5,CUS_0x7cea,Standard -0x58e1,CUS_0x8cd3,Standard -0x58ed,CUS_0x689e,Standard -0x58f9,CUS_0x4cd5,Low -0x5905,CUS_0x6807,Low -0x5911,CUS_0x79ce,Standard -0x591d,CUS_0xbba7,Standard -0x5929,CUS_0x3f41,Standard -0x5935,CUS_0x2c90,High -0x5941,CUS_0x8ae0,High -0x594d,CUS_0x6079,High -0x5959,CUS_0xab60,Standard -0x5965,CUS_0x26c6,High -0x5971,CUS_0x34b1,Standard -0x597d,CUS_0x3ffe,Standard -0x5989,CUS_0x21c3,High -0x5995,CUS_0xa995,Low -0x59a1,CUS_0xa230,Standard -0x59ad,CUS_0x41a8,Standard -0x59b9,CUS_0x2de1,Low -0x59c5,CUS_0x568f,Standard -0x59d1,CUS_0xc63a,High -0x59dd,CUS_0x16f8,Low -0x59e9,CUS_0x4f8f,Standard -0x59f5,CUS_0x56c3,High -0x5a01,CUS_0x3ff5,Low -0x5a0d,CUS_0x5360,Standard -0x5a19,CUS_0x30c5,High -0x5a25,CUS_0xbb95,Standard -0x5a31,CUS_0x4d6a,Standard -0x5a3d,CUS_0x6cb3,Standard -0x5a49,CUS_0x510c,Low -0x5a55,CUS_0x2174,Standard -0x5a61,CUS_0x4df2,Standard -0x5a6d,CUS_0xb508,High -0x5a79,CUS_0x96d9,Standard -0x5a85,CUS_0x7993,Standard -0x5a91,CUS_0x709a,Standard -0x5a9d,CUS_0x207a,Low -0x5aa9,CUS_0xac23,High -0x5ab5,CUS_0x8232,Standard -0x5ac1,CUS_0xa350,Low -0x5acd,CUS_0x7b66,Standard -0x5ad9,CUS_0x2c74,High -0x5ae5,CUS_0xbb94,High -0x5af1,CUS_0x5495,Standard -0x5afd,CUS_0x990e,Standard -0x5b09,CUS_0x91ac,High -0x5b15,CUS_0x9934,Standard -0x5b21,CUS_0x48ae,Standard -0x5b2d,CUS_0x3966,High -0x5b39,CUS_0x25a4,Standard -0x5b45,CUS_0xb40,Standard -0x5b51,CUS_0xbc79,High -0x5b5d,CUS_0x9534,Standard -0x5b69,CUS_0x4fe9,High -0x5b75,CUS_0x7d1e,High -0x5b81,CUS_0xb2f7,Standard -0x5b8d,CUS_0x360c,Standard -0x5b99,CUS_0xaf95,Standard -0x5ba5,CUS_0x8c6d,Standard -0x5bb1,CUS_0x512d,Standard -0x5bbd,CUS_0x7ea5,High -0x5bc9,CUS_0x7b2b,High -0x5bd5,CUS_0x8c8d,High -0x5be1,CUS_0x8266,Low -0x5bed,CUS_0x5f3b,Standard -0x5bf9,CUS_0x991f,Low -0x5c05,CUS_0x47a6,Standard -0x5c11,CUS_0x5454,High -0x5c1d,CUS_0xa421,Standard -0x5c29,CUS_0x753c,Standard -0x5c35,CUS_0x4ec9,Standard -0x5c41,CUS_0x8a8c,Standard -0x5c4d,CUS_0x122f,High -0x5c59,CUS_0xbab0,Low -0x5c65,CUS_0xe0f,High -0x5c71,CUS_0x1cc3,High -0x5c7d,CUS_0xb014,Standard -0x5c89,CUS_0x6cc6,Standard -0x5c95,CUS_0xa17a,Standard -0x5ca1,CUS_0x4d1b,Standard -0x5cad,CUS_0x231b,High -0x5cb9,CUS_0xbede,Standard -0x5cc5,CUS_0x6440,High -0x5cd1,CUS_0x38bc,Standard -0x5cdd,CUS_0x3562,Low -0x5ce9,CUS_0x1510,High -0x5cf5,CUS_0x1604,Standard -0x5d01,CUS_0x7d6f,Standard -0x5d0d,CUS_0xa2f5,Standard -0x5d19,CUS_0x2598,Low -0x5d25,CUS_0x93d0,Standard -0x5d31,CUS_0x785f,Low -0x5d3d,CUS_0xb4bc,Standard -0x5d49,CUS_0x75fb,Standard -0x5d55,CUS_0x606d,High -0x5d61,CUS_0x8f74,Standard -0x5d6d,CUS_0xa8df,Standard -0x5d79,CUS_0x9a95,High -0x5d85,CUS_0xad87,High -0x5d91,CUS_0x4dd5,High -0x5d9d,CUS_0x187e,High -0x5da9,CUS_0x3394,Standard -0x5db5,CUS_0x4993,Low -0x5dc1,CUS_0x4c7e,Standard -0x5dcd,CUS_0xbf4c,Low -0x5dd9,CUS_0xb22,Standard -0x5de5,CUS_0x56b4,Standard -0x5df1,CUS_0xc704,Standard -0x5dfd,CUS_0x6244,Standard -0x5e09,CUS_0xa04f,Standard -0x5e15,CUS_0x97a,Low -0x5e21,CUS_0x2590,Standard -0x5e2d,CUS_0x7394,Standard -0x5e39,CUS_0x6c4c,Standard -0x5e45,CUS_0x3eeb,Standard -0x5e51,CUS_0x68dc,High -0x5e5d,CUS_0x2ee6,Standard -0x5e69,CUS_0x44fc,High -0x5e75,CUS_0xde7,Low -0x5e81,CUS_0x117f,Standard -0x5e8d,CUS_0x1c61,Low -0x5e99,CUS_0x9135,High -0x5ea5,CUS_0x1309,Standard -0x5eb1,CUS_0x670c,Standard -0x5ebd,CUS_0x93af,High -0x5ec9,CUS_0x3f65,Standard -0x5ed5,CUS_0x5d44,Standard -0x5ee1,CUS_0x5213,Standard -0x5eed,CUS_0x18bc,Standard -0x5ef9,CUS_0x37be,Standard -0x5f05,CUS_0x7c0f,Standard -0x5f11,CUS_0xc242,Standard -0x5f1d,CUS_0xc4c3,High -0x5f29,CUS_0x3ade,Standard -0x5f35,CUS_0x5640,Standard -0x5f41,CUS_0x30d0,High -0x5f4d,CUS_0xac14,Standard -0x5f59,CUS_0x2d78,High -0x5f65,CUS_0x9cc2,Standard -0x5f71,CUS_0xa300,Standard -0x5f7d,CUS_0x5857,Standard -0x5f89,CUS_0xb4c1,Low -0x5f95,CUS_0x1b88,High -0x5fa1,CUS_0x8f45,Standard -0x5fad,CUS_0x1960,Standard -0x5fb9,CUS_0x2deb,Standard -0x5fc5,CUS_0x8ec,Low -0x5fd1,CUS_0x5379,Standard -0x5fdd,CUS_0xa1aa,High -0x5fe9,CUS_0x93cd,Low -0x5ff5,CUS_0xa5b6,Standard -0x6001,CUS_0xc81,Standard -0x600d,CUS_0x71e8,High -0x6019,CUS_0x24cf,Standard -0x6025,CUS_0x2984,Standard -0x6031,CUS_0x878d,Low -0x603d,CUS_0xdc2,Standard -0x6049,CUS_0x3cfe,Low -0x6055,CUS_0x449b,Standard -0x6061,CUS_0x8dc0,High -0x606d,CUS_0x2625,High -0x6079,CUS_0x73ee,High -0x6085,CUS_0xa90,Low -0x6091,CUS_0x8167,Low -0x609d,CUS_0x6ce,Low -0x60a9,CUS_0x530a,Standard -0x60b5,CUS_0xb92b,Standard -0x60c1,CUS_0x4b6a,Standard -0x60cd,CUS_0x6877,Standard -0x60d9,CUS_0x2ebb,Low -0x60e5,CUS_0xaa27,Standard -0x60f1,CUS_0x7ca7,Low -0x60fd,CUS_0x4716,Standard -0x6109,CUS_0x3e5a,High -0x6115,CUS_0x925f,High -0x6121,CUS_0x9dfc,Standard -0x612d,CUS_0x1e8c,High -0x6139,CUS_0x4d4d,Standard -0x6145,CUS_0x71dd,Standard -0x6151,CUS_0x7c68,Standard -0x615d,CUS_0x925e,Low -0x6169,CUS_0x3ebe,Low -0x6175,CUS_0xb958,Standard -0x6181,CUS_0x1a77,Standard -0x618d,CUS_0x8c8a,Standard -0x6199,CUS_0x992b,High -0x61a5,CUS_0xb8be,Standard -0x61b1,CUS_0x5c7a,High -0x61bd,CUS_0x48d,Standard -0x61c9,CUS_0x5e19,Standard -0x61d5,CUS_0x594e,High -0x61e1,CUS_0x9e9a,High -0x61ed,CUS_0xffc,High -0x61f9,CUS_0x62ec,High -0x6205,CUS_0x3592,Standard -0x6211,CUS_0x2a83,Standard -0x621d,CUS_0x67a4,High -0x6229,CUS_0x2189,Standard -0x6235,CUS_0x4640,High -0x6241,CUS_0x57a2,Standard -0x624d,CUS_0x4c9f,Standard -0x6259,CUS_0xe8d,High -0x6265,CUS_0x4ac9,Low -0x6271,CUS_0x707a,Standard -0x627d,CUS_0x6343,Standard -0x6289,CUS_0x59e6,Standard -0x6295,CUS_0x286c,Low -0x62a1,CUS_0x677a,Standard -0x62ad,CUS_0x938f,Low -0x62b9,CUS_0xb004,Standard -0x62c5,CUS_0x4518,Standard -0x62d1,CUS_0x2b2c,Low -0x62dd,CUS_0x915,Standard -0x62e9,CUS_0x134d,Standard -0x62f5,CUS_0x4e7a,Low -0x6301,CUS_0xa31,Standard -0x630d,CUS_0x8c7b,High -0x6319,CUS_0x255d,Standard -0x6325,CUS_0x58b0,Standard -0x6331,CUS_0x98fc,Standard -0x633d,CUS_0x621,Standard -0x6349,CUS_0x9fcc,Standard -0x6355,CUS_0x7526,Standard -0x6361,CUS_0x4768,Standard -0x636d,CUS_0xd73,Standard -0x6379,CUS_0x635a,Low -0x6385,CUS_0xa65f,Standard -0x6391,CUS_0x7dd5,Low -0x639d,CUS_0xb6eb,High -0x63a9,CUS_0x480c,Standard -0x63b5,CUS_0xad0b,Standard -0x63c1,CUS_0x2faa,High -0x63cd,CUS_0xf79,Standard -0x63d9,CUS_0x5189,Standard -0x63e5,CUS_0x429a,High -0x63f1,CUS_0xbda9,Standard -0x63fd,CUS_0x8112,Low -0x6409,CUS_0x31e0,Low -0x6415,CUS_0x8f23,Standard -0x6421,CUS_0x6442,Standard -0x642d,CUS_0x96de,Standard -0x6439,CUS_0x9970,Standard -0x6445,CUS_0xbb0b,Standard -0x6451,CUS_0x16cf,Standard -0x645d,CUS_0x5deb,Standard -0x6469,CUS_0x8a2b,Standard -0x6475,CUS_0xb0c1,Standard -0x6481,CUS_0xbc9e,High -0x648d,CUS_0x473a,High -0x6499,CUS_0x644,Low -0x64a5,CUS_0x2ad8,Standard -0x64b1,CUS_0x5848,Low -0x64bd,CUS_0x1962,Low -0x64c9,CUS_0xd33,High -0x64d5,CUS_0x7a53,High -0x64e1,CUS_0x6734,Standard -0x64ed,CUS_0x3678,High -0x64f9,CUS_0x4ff7,High -0x6505,CUS_0xa90a,Standard -0x6511,CUS_0x12ea,Standard -0x651d,CUS_0xac6f,Low -0x6529,CUS_0x68a7,High -0x6535,CUS_0x8562,High -0x6541,CUS_0x5435,Standard -0x654d,CUS_0xc649,Low -0x6559,CUS_0xa446,Standard -0x6565,CUS_0x6449,Low -0x6571,CUS_0x4d2,Standard -0x657d,CUS_0xc3d0,Standard -0x6589,CUS_0x2543,High -0x6595,CUS_0x60ad,Standard -0x65a1,CUS_0x82a1,High -0x65ad,CUS_0x2ce1,High -0x65b9,CUS_0x38a0,Standard -0x65c5,CUS_0x906e,High -0x65d1,CUS_0x399d,High -0x65dd,CUS_0xbccb,High -0x65e9,CUS_0x684a,Standard -0x65f5,CUS_0x4bdd,Standard -0x6601,CUS_0x24e9,Low -0x660d,CUS_0x51db,Standard -0x6619,CUS_0x9ae3,Standard -0x6625,CUS_0x176b,Standard -0x6631,CUS_0x907d,Standard -0x663d,CUS_0xc21f,Standard -0x6649,CUS_0x8e82,Standard -0x6655,CUS_0x8271,Standard -0x6661,CUS_0x45f1,Standard -0x666d,CUS_0xba93,Low -0x6679,CUS_0x9ca4,Standard -0x6685,CUS_0xb433,High -0x6691,CUS_0x2ca2,Standard -0x669d,CUS_0x8837,Low -0x66a9,CUS_0x1009,Standard -0x66b5,CUS_0x15a3,Standard -0x66c1,CUS_0xbc0b,High -0x66cd,CUS_0x2ac3,Low -0x66d9,CUS_0x3793,Standard -0x66e5,CUS_0x4b40,Standard -0x66f1,CUS_0x3640,Standard -0x66fd,CUS_0x8e4e,Standard -0x6709,CUS_0x919,Standard -0x6715,CUS_0x9ad1,Low -0x6721,CUS_0x9ab6,High -0x672d,CUS_0x2b5d,High -0x6739,CUS_0x9a29,High -0x6745,CUS_0x7403,High -0x6751,CUS_0x85b,High -0x675d,CUS_0xebb,Standard -0x6769,CUS_0x6fe2,High -0x6775,CUS_0x16b1,Standard -0x6781,CUS_0xa53,Standard -0x678d,CUS_0x7df,High -0x6799,CUS_0x120d,Low -0x67a5,CUS_0x4bb,Standard -0x67b1,CUS_0x225a,Standard -0x67bd,CUS_0xb88a,Low -0x67c9,CUS_0xc5fe,Standard -0x67d5,CUS_0x6c45,High -0x67e1,CUS_0x82f2,Standard -0x67ed,CUS_0xb56b,Standard -0x67f9,CUS_0x6133,Standard -0x6805,CUS_0x4791,High -0x6811,CUS_0x221f,Standard -0x681d,CUS_0x8559,High -0x6829,CUS_0xaefb,Standard -0x6835,CUS_0x9b12,High -0x6841,CUS_0x7563,Standard -0x684d,CUS_0x588e,Standard -0x6859,CUS_0xc507,Standard -0x6865,CUS_0x93a5,Standard -0x6871,CUS_0x1f8c,Standard -0x687d,CUS_0x41de,High -0x6889,CUS_0x5c1f,Low -0x6895,CUS_0xa1a0,Low -0x68a1,CUS_0x8304,Standard -0x68ad,CUS_0x13b5,Standard -0x68b9,CUS_0x848e,Standard -0x68c5,CUS_0x6423,Low -0x68d1,CUS_0xc70d,High -0x68dd,CUS_0x24a8,Low -0x68e9,CUS_0xc5e2,Standard -0x68f5,CUS_0x19ad,Standard -0x6901,CUS_0x59e9,High -0x690d,CUS_0x21e9,High -0x6919,CUS_0x392a,High -0x6925,CUS_0x2fb8,Standard -0x6931,CUS_0x6958,Standard -0x693d,CUS_0x4bf7,Standard -0x6949,CUS_0x7174,Standard -0x6955,CUS_0x47ef,High -0x6961,CUS_0x4d05,Low -0x696d,CUS_0xb189,High -0x6979,CUS_0x5ff4,Low -0x6985,CUS_0xa547,Standard -0x6991,CUS_0x8e5f,Standard -0x699d,CUS_0xbded,Low -0x69a9,CUS_0x47c3,Low -0x69b5,CUS_0x5fca,Low -0x69c1,CUS_0xb047,Standard -0x69cd,CUS_0x6e13,High -0x69d9,CUS_0xa1bd,High -0x69e5,CUS_0x856c,High -0x69f1,CUS_0x8e29,Standard -0x69fd,CUS_0x4339,High -0x6a09,CUS_0xbdc2,Low -0x6a15,CUS_0x1192,Standard -0x6a21,CUS_0x6da3,Standard -0x6a2d,CUS_0x12d1,Standard -0x6a39,CUS_0x8b62,High -0x6a45,CUS_0xc1cc,Low -0x6a51,CUS_0x6e6c,Standard -0x6a5d,CUS_0x22d6,Standard -0x6a69,CUS_0x7edd,High -0x6a75,CUS_0x71ca,Standard -0x6a81,CUS_0x7dcd,Standard -0x6a8d,CUS_0x3cc8,Standard -0x6a99,CUS_0xafb5,High -0x6aa5,CUS_0x45da,Standard -0x6ab1,CUS_0x7a9f,High -0x6abd,CUS_0x5998,Low -0x6ac9,CUS_0x610d,Standard -0x6ad5,CUS_0xa2ee,Standard -0x6ae1,CUS_0xbc06,High -0x6aed,CUS_0x8666,High -0x6af9,CUS_0x5f66,High -0x6b05,CUS_0xa95,Standard -0x6b11,CUS_0x543d,High -0x6b1d,CUS_0x22e0,High -0x6b29,CUS_0x9813,Low -0x6b35,CUS_0x4e4a,Standard -0x6b41,CUS_0x6e19,High -0x6b4d,CUS_0x1439,Standard -0x6b59,CUS_0x42f,Standard -0x6b65,CUS_0x36ed,Standard -0x6b71,CUS_0x3f43,Standard -0x6b7d,CUS_0x6cad,Standard -0x6b89,CUS_0xb19c,Low -0x6b95,CUS_0x4304,Standard -0x6ba1,CUS_0x80d0,Standard -0x6bad,CUS_0xa731,Low -0x6bb9,CUS_0x40fa,Standard -0x6bc5,CUS_0x7f43,Standard -0x6bd1,CUS_0x4bc1,High -0x6bdd,CUS_0x7faa,Standard -0x6be9,CUS_0x2b54,High -0x6bf5,CUS_0xb5d7,Standard -0x6c01,CUS_0x4728,Standard -0x6c0d,CUS_0x704,Standard -0x6c19,CUS_0x8b9a,Low -0x6c25,CUS_0xaaaf,Standard -0x6c31,CUS_0xa133,Low -0x6c3d,CUS_0x638,Standard -0x6c49,CUS_0x83e8,Standard -0x6c55,CUS_0x913c,Standard -0x6c61,CUS_0x2f0a,High -0x6c6d,CUS_0x3ee,High -0x6c79,CUS_0xc29a,High -0x6c85,CUS_0x4d33,Standard -0x6c91,CUS_0xb99c,Standard -0x6c9d,CUS_0x615a,Standard -0x6ca9,CUS_0x4b61,Standard -0x6cb5,CUS_0x5825,High -0x6cc1,CUS_0xac0b,Low -0x6ccd,CUS_0xba03,Standard -0x6cd9,CUS_0xbbcf,Standard -0x6ce5,CUS_0x7be5,Standard -0x6cf1,CUS_0x7fd1,Standard -0x6cfd,CUS_0x1410,Standard -0x6d09,CUS_0xc042,Low -0x6d15,CUS_0x5f34,Standard -0x6d21,CUS_0x6bd8,Low -0x6d2d,CUS_0x43e9,High -0x6d39,CUS_0x32be,Standard -0x6d45,CUS_0x3844,Low -0x6d51,CUS_0x882f,Standard -0x6d5d,CUS_0x81f5,Standard -0x6d69,CUS_0xcd5,High -0x6d75,CUS_0x3537,Standard -0x6d81,CUS_0x418,Standard -0x6d8d,CUS_0xa06,Standard -0x6d99,CUS_0x60da,Standard -0x6da5,CUS_0x5ae,Standard -0x6db1,CUS_0x8e96,Standard -0x6dbd,CUS_0x5e7f,High -0x6dc9,CUS_0x640f,Standard -0x6dd5,CUS_0x8ad,Standard -0x6de1,CUS_0x716d,Standard -0x6ded,CUS_0x6b9f,High -0x6df9,CUS_0xb0fd,High -0x6e05,CUS_0x4628,Low -0x6e11,CUS_0x7ccf,Standard -0x6e1d,CUS_0x5d5,Standard -0x6e29,CUS_0x58ec,Standard -0x6e35,CUS_0x4a0a,Standard -0x6e41,CUS_0x2708,Standard -0x6e4d,CUS_0x37de,High -0x6e59,CUS_0x75d3,Standard -0x6e65,CUS_0x52fb,Standard -0x6e71,CUS_0x761b,Standard -0x6e7d,CUS_0x31eb,Low -0x6e89,CUS_0x4096,High -0x6e95,CUS_0x7ad9,Standard -0x6ea1,CUS_0xb2bd,Standard -0x6ead,CUS_0x8c13,Low -0x6eb9,CUS_0x1ef7,High -0x6ec5,CUS_0x9c34,High -0x6ed1,CUS_0x5be7,Standard -0x6edd,CUS_0x961b,Low -0x6ee9,CUS_0x2112,Standard -0x6ef5,CUS_0x6673,Standard -0x6f01,CUS_0x1f46,Low -0x6f0d,CUS_0x4657,Low -0x6f19,CUS_0x4947,High -0x6f25,CUS_0x1488,Standard -0x6f31,CUS_0x9388,Standard -0x6f3d,CUS_0x85a7,Standard -0x6f49,CUS_0x7de0,Low -0x6f55,CUS_0xafc4,Standard -0x6f61,CUS_0x2b4c,Low -0x6f6d,CUS_0x60c9,Standard -0x6f79,CUS_0x9c09,Standard -0x6f85,CUS_0x7daf,Standard -0x6f91,CUS_0x5c67,High -0x6f9d,CUS_0xaeb8,Standard -0x6fa9,CUS_0x36fb,High -0x6fb5,CUS_0x10bb,Low -0x6fc1,CUS_0x4206,High -0x6fcd,CUS_0x455e,High -0x6fd9,CUS_0x4ba1,Standard -0x6fe5,CUS_0x645f,High -0x6ff1,CUS_0x387a,High -0x6ffd,CUS_0x8370,High -0x7009,CUS_0x82dd,Low -0x7015,CUS_0x2e8b,Standard -0x7021,CUS_0x3fb3,Low -0x702d,CUS_0x590,High -0x7039,CUS_0x1d85,Standard -0x7045,CUS_0x39c0,High -0x7051,CUS_0x4a11,Standard -0x705d,CUS_0xa3ba,High -0x7069,CUS_0x31bd,Standard -0x7075,CUS_0x514e,Standard -0x7081,CUS_0x4d61,Low -0x708d,CUS_0x78a2,High -0x7099,CUS_0x8927,Standard -0x70a5,CUS_0xf3c,Standard -0x70b1,CUS_0x85ba,Low -0x70bd,CUS_0x1e96,High -0x70c9,CUS_0x5f67,Standard -0x70d5,CUS_0x28f3,Low -0x70e1,CUS_0x124a,Low -0x70ed,CUS_0x2123,Standard -0x70f9,CUS_0x37fb,Low -0x7105,CUS_0x45db,Standard -0x7111,CUS_0x8ac0,Low -0x711d,CUS_0x6fb1,Standard -0x7129,CUS_0xc492,Standard -0x7135,CUS_0x7dac,Standard -0x7141,CUS_0x3a1b,Standard -0x714d,CUS_0x6596,Low -0x7159,CUS_0x121b,High -0x7165,CUS_0xb46,Standard -0x7171,CUS_0x34aa,High -0x717d,CUS_0x689c,Standard -0x7189,CUS_0x553,Standard -0x7195,CUS_0x5050,Standard -0x71a1,CUS_0x95cf,Standard -0x71ad,CUS_0x3f18,Standard -0x71b9,CUS_0xb74c,High -0x71c5,CUS_0x7a0a,Standard -0x71d1,CUS_0x8f4,Standard -0x71dd,CUS_0xb6b9,Low -0x71e9,CUS_0xb5e3,Standard -0x71f5,CUS_0x1748,High -0x7201,CUS_0xb223,Standard -0x720d,CUS_0xf58,Standard -0x7219,CUS_0x801f,Standard -0x7225,CUS_0xb93e,Standard -0x7231,CUS_0x102d,Low -0x723d,CUS_0xb51a,Standard -0x7249,CUS_0x4843,High -0x7255,CUS_0x5c81,High -0x7261,CUS_0x4be5,Standard -0x726d,CUS_0x3e57,Standard -0x7279,CUS_0x83f,Standard -0x7285,CUS_0xb182,Standard -0x7291,CUS_0x79d5,High -0x729d,CUS_0x3bc5,High -0x72a9,CUS_0x3ded,Standard -0x72b5,CUS_0x7808,High -0x72c1,CUS_0x966e,High -0x72cd,CUS_0x29ff,High -0x72d9,CUS_0xbca8,Standard -0x72e5,CUS_0x20de,High -0x72f1,CUS_0x752f,High -0x72fd,CUS_0x1ffd,Low -0x7309,CUS_0xa05d,Standard -0x7315,CUS_0x62a6,Standard -0x7321,CUS_0x859d,Standard -0x732d,CUS_0xc516,Low -0x7339,CUS_0x9c80,Standard -0x7345,CUS_0xa0f4,Standard -0x7351,CUS_0x330c,Standard -0x735d,CUS_0x210d,High -0x7369,CUS_0x7278,High -0x7375,CUS_0x4898,Standard -0x7381,CUS_0x7a6f,High -0x738d,CUS_0x66bb,Standard -0x7399,CUS_0x5465,Standard -0x73a5,CUS_0xbfe4,Standard -0x73b1,CUS_0x6945,Standard -0x73bd,CUS_0x7c64,Standard -0x73c9,CUS_0x53c0,Low -0x73d5,CUS_0x10dd,Standard -0x73e1,CUS_0x6d25,Standard -0x73ed,CUS_0x724a,Standard -0x73f9,CUS_0xafed,Low -0x7405,CUS_0x397b,Standard -0x7411,CUS_0x7efe,Low -0x741d,CUS_0xb0ce,Standard -0x7429,CUS_0x8cf3,Standard -0x7435,CUS_0x1197,Standard -0x7441,CUS_0x1e62,Standard -0x744d,CUS_0x6184,Low -0x7459,CUS_0x369d,High -0x7465,CUS_0x4285,Standard -0x7471,CUS_0xaf09,Standard -0x747d,CUS_0x3159,Standard -0x7489,CUS_0x587,High -0x7495,CUS_0x91ee,Low -0x74a1,CUS_0x7b90,Low -0x74ad,CUS_0xb1e8,Standard -0x74b9,CUS_0x3d79,Standard -0x74c5,CUS_0x45b4,High -0x74d1,CUS_0x624e,Low -0x74dd,CUS_0x752e,Low -0x74e9,CUS_0x5b88,Standard -0x74f5,CUS_0x41cd,Standard -0x7501,CUS_0xa955,Standard -0x750d,CUS_0x34c8,Standard -0x7519,CUS_0x5df5,Standard -0x7525,CUS_0x75e,Standard -0x7531,CUS_0xc505,Standard -0x753d,CUS_0xb74d,High -0x7549,CUS_0xd60,High -0x7555,CUS_0x99c,High -0x7561,CUS_0x3f31,Standard -0x756d,CUS_0x3ee7,Standard -0x7579,CUS_0x1ef1,Low -0x7585,CUS_0x8925,Standard -0x7591,CUS_0x4a77,Low -0x759d,CUS_0x321f,Standard -0x75a9,CUS_0x5c53,High -0x75b5,CUS_0x7721,High -0x75c1,CUS_0x1d46,Low -0x75cd,CUS_0x533e,High -0x75d9,CUS_0x67e3,Standard -0x75e5,CUS_0x6c99,Low -0x75f1,CUS_0x9c59,High -0x75fd,CUS_0xb298,Standard -0x7609,CUS_0xc3c3,High -0x7615,CUS_0x38b8,Standard -0x7621,CUS_0x3b40,High -0x762d,CUS_0x1d8f,High -0x7639,CUS_0xa574,High -0x7645,CUS_0xbdf9,Standard -0x7651,CUS_0x210f,Standard -0x765d,CUS_0x753,High -0x7669,CUS_0xa040,Standard -0x7675,CUS_0x78d,Low -0x7681,CUS_0x4380,Standard -0x768d,CUS_0x6ebe,Low -0x7699,CUS_0x41fa,Low -0x76a5,CUS_0x63f7,Standard -0x76b1,CUS_0x2963,Low -0x76bd,CUS_0x6deb,Low -0x76c9,CUS_0x7357,Standard -0x76d5,CUS_0x9f03,Standard -0x76e1,CUS_0x8162,Low -0x76ed,CUS_0xb67f,Standard -0x76f9,CUS_0xc18f,Standard -0x7705,CUS_0xa204,High -0x7711,CUS_0x6678,Low -0x771d,CUS_0x3ee5,High -0x7729,CUS_0xbab2,Standard -0x7735,CUS_0xb92e,Standard -0x7741,CUS_0xb512,Standard -0x774d,CUS_0xb29a,High -0x7759,CUS_0x6072,Standard -0x7765,CUS_0xbafb,High -0x7771,CUS_0x82cb,Standard -0x777d,CUS_0x7523,Standard -0x7789,CUS_0x5324,Standard -0x7795,CUS_0xc2dc,Standard -0x77a1,CUS_0x901,Standard -0x77ad,CUS_0xbafd,Standard -0x77b9,CUS_0x2009,Low -0x77c5,CUS_0xc497,High -0x77d1,CUS_0x44b4,Low -0x77dd,CUS_0xbbd3,High -0x77e9,CUS_0x4437,High -0x77f5,CUS_0x5e6b,Standard -0x7801,CUS_0x9bb7,Standard -0x780d,CUS_0x80a0,Low -0x7819,CUS_0xa12c,Standard -0x7825,CUS_0x71da,Standard -0x7831,CUS_0x492e,Standard -0x783d,CUS_0x818c,High -0x7849,CUS_0xba60,High -0x7855,CUS_0x8ae5,High -0x7861,CUS_0x44e8,Standard -0x786d,CUS_0xdbf,Standard -0x7879,CUS_0x44b0,Standard -0x7885,CUS_0x5a26,Standard -0x7891,CUS_0x1c1c,Standard -0x789d,CUS_0xbcda,Standard -0x78a9,CUS_0xe84,Standard -0x78b5,CUS_0x6a66,Standard -0x78c1,CUS_0x53bc,Standard -0x78cd,CUS_0xac7b,Standard -0x78d9,CUS_0x3e8c,Low -0x78e5,CUS_0x75ca,Standard -0x78f1,CUS_0xb4ab,Low -0x78fd,CUS_0x4d50,Standard -0x7909,CUS_0x7dd7,High -0x7915,CUS_0x99c6,Standard -0x7921,CUS_0x57f5,Standard -0x792d,CUS_0xa6f9,Standard -0x7939,CUS_0x7871,Standard -0x7945,CUS_0x7f0a,Standard -0x7951,CUS_0x4734,Standard -0x795d,CUS_0x37e1,Low -0x7969,CUS_0xb586,Standard -0x7975,CUS_0x8a74,Low -0x7981,CUS_0x8e28,Standard -0x798d,CUS_0x913a,Low -0x7999,CUS_0x44f4,Low -0x79a5,CUS_0x531b,Low -0x79b1,CUS_0x6dd7,High -0x79bd,CUS_0x145a,Low -0x79c9,CUS_0x9f7a,Low -0x79d5,CUS_0x3c69,Standard -0x79e1,CUS_0x3663,Low -0x79ed,CUS_0xa21c,High -0x79f9,CUS_0xac3b,Standard -0x7a05,CUS_0x34d2,Standard -0x7a11,CUS_0xbb55,High -0x7a1d,CUS_0x53f4,Standard -0x7a29,CUS_0x9b03,High -0x7a35,CUS_0xabed,Standard -0x7a41,CUS_0x6a86,Low -0x7a4d,CUS_0xa6df,Standard -0x7a59,CUS_0xa97a,High -0x7a65,CUS_0xb1c2,Low -0x7a71,CUS_0x9bb1,Low -0x7a7d,CUS_0xd6a,Standard -0x7a89,CUS_0x563d,Standard -0x7a95,CUS_0x4d68,Standard -0x7aa1,CUS_0xbc29,High -0x7aad,CUS_0x7db5,Standard -0x7ab9,CUS_0xc59f,Standard -0x7ac5,CUS_0x4375,Low -0x7ad1,CUS_0x73f1,Low -0x7add,CUS_0x97d5,Low -0x7ae9,CUS_0x38e3,Standard -0x7af5,CUS_0x8046,Standard -0x7b01,CUS_0x5b7c,Standard -0x7b0d,CUS_0x2d82,Low -0x7b19,CUS_0x403a,Standard -0x7b25,CUS_0xc15d,High -0x7b31,CUS_0x2d62,High -0x7b3d,CUS_0x6c89,Standard -0x7b49,CUS_0x8399,Standard -0x7b55,CUS_0x812c,Standard -0x7b61,CUS_0x5f4f,Standard -0x7b6d,CUS_0x1233,Standard -0x7b79,CUS_0x6ee,High -0x7b85,CUS_0x5905,Standard -0x7b91,CUS_0x9c2,High -0x7b9d,CUS_0x7aec,Standard -0x7ba9,CUS_0x2477,High -0x7bb5,CUS_0x8ad9,High -0x7bc1,CUS_0x6fd5,High -0x7bcd,CUS_0x1577,Standard -0x7bd9,CUS_0x7dd1,Low -0x7be5,CUS_0xa3b5,Standard -0x7bf1,CUS_0xa1be,High -0x7bfd,CUS_0x696,Standard -0x7c09,CUS_0x8973,High -0x7c15,CUS_0xa3ec,Standard -0x7c21,CUS_0xabc9,Low -0x7c2d,CUS_0xc501,Standard -0x7c39,CUS_0x626a,Standard -0x7c45,CUS_0x9eba,Standard -0x7c51,CUS_0x7e2a,High -0x7c5d,CUS_0x4d75,Standard -0x7c69,CUS_0xbde6,Standard -0x7c75,CUS_0x144f,High -0x7c81,CUS_0x7e12,Low -0x7c8d,CUS_0x49fa,Standard -0x7c99,CUS_0x6e36,Standard -0x7ca5,CUS_0x3915,High -0x7cb1,CUS_0x5ade,Standard -0x7cbd,CUS_0x3bf3,Low -0x7cc9,CUS_0x2eac,Standard -0x7cd5,CUS_0x9857,High -0x7ce1,CUS_0x868a,Standard -0x7ced,CUS_0x1c99,High -0x7cf9,CUS_0x91fe,Standard -0x7d05,CUS_0x7833,Low -0x7d11,CUS_0x17c7,Standard -0x7d1d,CUS_0x4434,Standard -0x7d29,CUS_0x4a3b,High -0x7d35,CUS_0x9214,High -0x7d41,CUS_0x4127,High -0x7d4d,CUS_0x7ff3,Standard -0x7d59,CUS_0x1207,High -0x7d65,CUS_0xba18,Standard -0x7d71,CUS_0x976,Standard -0x7d7d,CUS_0xb46f,Low -0x7d89,CUS_0x9c7f,Standard -0x7d95,CUS_0x1ec4,Standard -0x7da1,CUS_0x5715,Standard -0x7dad,CUS_0x1472,Standard -0x7db9,CUS_0x906b,High -0x7dc5,CUS_0x1f2c,Low -0x7dd1,CUS_0x63e0,High -0x7ddd,CUS_0x76c4,Standard -0x7de9,CUS_0x39c6,Standard -0x7df5,CUS_0x6086,Standard -0x7e01,CUS_0xc622,Standard -0x7e0d,CUS_0xeb6,High -0x7e19,CUS_0x4e0d,High -0x7e25,CUS_0x16c4,Standard -0x7e31,CUS_0x50ef,Standard -0x7e3d,CUS_0xa366,High -0x7e49,CUS_0x2e5f,High -0x7e55,CUS_0xae02,Standard -0x7e61,CUS_0xa99c,High -0x7e6d,CUS_0x9177,Low -0x7e79,CUS_0x7eda,Standard -0x7e85,CUS_0x665a,High -0x7e91,CUS_0x8766,Standard -0x7e9d,CUS_0xba13,Standard -0x7ea9,CUS_0x356c,High -0x7eb5,CUS_0x54b2,Standard -0x7ec1,CUS_0x4534,Standard -0x7ecd,CUS_0xac67,High -0x7ed9,CUS_0x7ab1,Standard -0x7ee5,CUS_0x52c8,High -0x7ef1,CUS_0x7373,High -0x7efd,CUS_0xa12e,Standard -0x7f09,CUS_0x10aa,Standard -0x7f15,CUS_0x6109,Standard -0x7f21,CUS_0xbb25,Standard -0x7f2d,CUS_0x8c7c,Standard -0x7f39,CUS_0x3475,High -0x7f45,CUS_0x67de,High -0x7f51,CUS_0x9647,Standard -0x7f5d,CUS_0x8142,Standard -0x7f69,CUS_0x1184,Low -0x7f75,CUS_0x6437,Low -0x7f81,CUS_0x9a92,Standard -0x7f8d,CUS_0x955b,Standard -0x7f99,CUS_0x4fc9,High -0x7fa5,CUS_0x1436,Low -0x7fb1,CUS_0x13de,Standard -0x7fbd,CUS_0x617c,High -0x7fc9,CUS_0x2d48,Standard -0x7fd5,CUS_0x65cf,Standard -0x7fe1,CUS_0x1ef5,Standard -0x7fed,CUS_0x87a,Standard -0x7ff9,CUS_0x5bcb,Standard -0x8005,CUS_0x489,High -0x8011,CUS_0x4c5a,High -0x801d,CUS_0x9c5b,High -0x8029,CUS_0x3ddc,Standard -0x8035,CUS_0x4b09,Standard -0x8041,CUS_0x9f1a,Standard -0x804d,CUS_0x1183,Low -0x8059,CUS_0x61de,Standard -0x8065,CUS_0x167a,Low -0x8071,CUS_0xb499,Standard -0x807d,CUS_0xc53f,High -0x8089,CUS_0x9b33,High -0x8095,CUS_0x8d45,High -0x80a1,CUS_0x6d28,Standard -0x80ad,CUS_0xa69e,Standard -0x80b9,CUS_0x89b2,Standard -0x80c5,CUS_0x383e,Low -0x80d1,CUS_0x242a,Low -0x80dd,CUS_0xc36d,Low -0x80e9,CUS_0x92e8,Standard -0x80f5,CUS_0xb69a,High -0x8101,CUS_0x8443,Standard -0x810d,CUS_0x6a74,Standard -0x8119,CUS_0x5558,Standard -0x8125,CUS_0x650f,Standard -0x8131,CUS_0xa7c5,Low -0x813d,CUS_0x8727,Standard -0x8149,CUS_0x6640,High -0x8155,CUS_0x87fe,Standard -0x8161,CUS_0xc1f7,Standard -0x816d,CUS_0x7b97,High -0x8179,CUS_0x5bdb,Standard -0x8185,CUS_0x7716,High -0x8191,CUS_0x5e61,Standard -0x819d,CUS_0x691f,Standard -0x81a9,CUS_0xb867,Low -0x81b5,CUS_0x8004,Low -0x81c1,CUS_0xa6f4,Low -0x81cd,CUS_0x8da2,Low -0x81d9,CUS_0x99c9,Standard -0x81e5,CUS_0x7347,High -0x81f1,CUS_0x5ebd,High -0x81fd,CUS_0x8e72,Standard -0x8209,CUS_0x3aa1,High -0x8215,CUS_0x9d51,Standard -0x8221,CUS_0x5048,Standard -0x822d,CUS_0x6c6d,Standard -0x8239,CUS_0x224a,Standard -0x8245,CUS_0x1e5e,Low -0x8251,CUS_0xa877,Standard -0x825d,CUS_0x26ac,Standard -0x8269,CUS_0xb5be,Low -0x8275,CUS_0xa9c2,Standard -0x8281,CUS_0x299d,Standard -0x828d,CUS_0xe2a,Low -0x8299,CUS_0xc01a,Low -0x82a5,CUS_0x5f86,Standard -0x82b1,CUS_0x4487,Standard -0x82bd,CUS_0x631f,High -0x82c9,CUS_0x4db9,Standard -0x82d5,CUS_0x9497,High -0x82e1,CUS_0x1281,High -0x82ed,CUS_0x352b,High -0x82f9,CUS_0x2af3,Standard -0x8305,CUS_0xc3a1,High -0x8311,CUS_0x3a3d,Standard -0x831d,CUS_0x60e8,Standard -0x8329,CUS_0x9e7a,Standard -0x8335,CUS_0x5775,Low -0x8341,CUS_0x7084,Low -0x834d,CUS_0x46db,Standard -0x8359,CUS_0x4a51,High -0x8365,CUS_0xa682,Standard -0x8371,CUS_0x1e16,Standard -0x837d,CUS_0x30ed,High -0x8389,CUS_0x58ba,Standard -0x8395,CUS_0x684c,High -0x83a1,CUS_0x1431,High -0x83ad,CUS_0x46ff,Standard -0x83b9,CUS_0x84a0,Standard -0x83c5,CUS_0xaa84,Standard -0x83d1,CUS_0xb9d2,Low -0x83dd,CUS_0x9f4c,Standard -0x83e9,CUS_0x28a7,Standard -0x83f5,CUS_0x97dc,High -0x8401,CUS_0x1152,Low -0x840d,CUS_0x7942,High -0x8419,CUS_0x644f,Standard -0x8425,CUS_0x5ee5,Standard -0x8431,CUS_0x2555,Standard -0x843d,CUS_0x4044,Standard -0x8449,CUS_0x8cc9,Standard -0x8455,CUS_0x9d87,High -0x8461,CUS_0x85e8,Standard -0x846d,CUS_0x6197,High -0x8479,CUS_0x385d,Standard -0x8485,CUS_0x9bb0,Standard -0x8491,CUS_0xeea,Standard -0x849d,CUS_0x7e18,High -0x84a9,CUS_0xa666,Standard -0x84b5,CUS_0x6c85,Low -0x84c1,CUS_0x240e,Standard -0x84cd,CUS_0x5c87,Standard -0x84d9,CUS_0x5313,Standard -0x84e5,CUS_0x2e1d,Standard -0x84f1,CUS_0x8b99,Low -0x84fd,CUS_0xad55,High -0x8509,CUS_0x7e3e,High -0x8515,CUS_0x7b1c,Standard -0x8521,CUS_0xa4b3,High -0x852d,CUS_0xb013,Standard -0x8539,CUS_0xa201,Standard -0x8545,CUS_0x29ab,High -0x8551,CUS_0x9347,High -0x855d,CUS_0x2ffe,Standard -0x8569,CUS_0x85fd,Low -0x8575,CUS_0x2473,Standard -0x8581,CUS_0x37cd,High -0x858d,CUS_0x651d,Standard -0x8599,CUS_0x584e,Standard -0x85a5,CUS_0x4daf,Low -0x85b1,CUS_0x8785,Standard -0x85bd,CUS_0x2c18,Standard -0x85c9,CUS_0x8425,Low -0x85d5,CUS_0x9c22,Standard -0x85e1,CUS_0x977a,High -0x85ed,CUS_0x185e,High -0x85f9,CUS_0x4f51,High -0x8605,CUS_0x652f,Standard -0x8611,CUS_0x9d29,Standard -0x861d,CUS_0xb98,Standard -0x8629,CUS_0x5f10,Standard -0x8635,CUS_0x2e0f,Standard -0x8641,CUS_0x15f8,Standard -0x864d,CUS_0xa088,Standard -0x8659,CUS_0xb276,Low -0x8665,CUS_0x4cf1,High -0x8671,CUS_0x7bb2,High -0x867d,CUS_0xc125,Standard -0x8689,CUS_0x2ddd,High -0x8695,CUS_0x51e0,Low -0x86a1,CUS_0x4503,Standard -0x86ad,CUS_0xa153,Standard -0x86b9,CUS_0x408c,High -0x86c5,CUS_0xa9ad,Standard -0x86d1,CUS_0xbeaf,High -0x86dd,CUS_0xbf43,Standard -0x86e9,CUS_0x734d,Standard -0x86f5,CUS_0x2c55,Standard -0x8701,CUS_0xf19,Standard -0x870d,CUS_0x7853,High -0x8719,CUS_0x5aa2,Standard -0x8725,CUS_0x133d,Low -0x8731,CUS_0x349b,High -0x873d,CUS_0x7d70,High -0x8749,CUS_0xcb9,Standard -0x8755,CUS_0xc00a,Standard -0x8761,CUS_0x5fd3,Standard -0x876d,CUS_0x506c,Standard -0x8779,CUS_0x65e1,Standard -0x8785,CUS_0x9ed4,Low -0x8791,CUS_0x376e,Standard -0x879d,CUS_0x4e03,Standard -0x87a9,CUS_0x6c0f,Standard -0x87b5,CUS_0xb46e,High -0x87c1,CUS_0xc0f8,Low -0x87cd,CUS_0xbf82,Standard -0x87d9,CUS_0x3c21,Standard -0x87e5,CUS_0x5a6d,High -0x87f1,CUS_0xa299,Standard -0x87fd,CUS_0x8bd4,Low -0x8809,CUS_0xa0b6,Standard -0x8815,CUS_0x545e,Standard -0x8821,CUS_0xa2c5,Standard -0x882d,CUS_0x983a,Low -0x8839,CUS_0x3a94,Standard -0x8845,CUS_0x5bd3,Standard -0x8851,CUS_0xbfa8,Standard -0x885d,CUS_0xaa3b,Standard -0x8869,CUS_0x41f0,Standard -0x8875,CUS_0x5e3e,High -0x8881,CUS_0x87d4,Standard -0x888d,CUS_0x24e4,Low -0x8899,CUS_0xbc1c,Standard -0x88a5,CUS_0x8bb9,Standard -0x88b1,CUS_0x4c7d,Standard -0x88bd,CUS_0x1eff,Standard -0x88c9,CUS_0x8669,Low -0x88d5,CUS_0x61d4,Standard -0x88e1,CUS_0x66df,Standard -0x88ed,CUS_0xbabe,High -0x88f9,CUS_0x6b2,Low -0x8905,CUS_0x930d,Standard -0x8911,CUS_0xb87,Standard -0x891d,CUS_0x857e,Standard -0x8929,CUS_0xacb7,High -0x8935,CUS_0x97ca,High -0x8941,CUS_0x3adb,High -0x894d,CUS_0x2ae9,Standard -0x8959,CUS_0x19d4,Standard -0x8965,CUS_0xbe03,Low -0x8971,CUS_0x3214,Low -0x897d,CUS_0xab0f,High -0x8989,CUS_0x5734,Standard -0x8995,CUS_0x695c,Low -0x89a1,CUS_0xbaf8,Standard -0x89ad,CUS_0x84f5,Standard -0x89b9,CUS_0xa0dc,Low -0x89c5,CUS_0x27a3,Low -0x89d1,CUS_0x1139,Standard -0x89dd,CUS_0x2c9f,Standard -0x89e9,CUS_0x4423,Standard -0x89f5,CUS_0x4849,Standard -0x8a01,CUS_0x69c7,High -0x8a0d,CUS_0x60d5,Standard -0x8a19,CUS_0xa9f5,High -0x8a25,CUS_0x68d8,Standard -0x8a31,CUS_0x46d5,Standard -0x8a3d,CUS_0x18f7,Standard -0x8a49,CUS_0x9a70,Standard -0x8a55,CUS_0xb0f7,Standard -0x8a61,CUS_0xab2,Low -0x8a6d,CUS_0x21dc,Low -0x8a79,CUS_0x69f0,Low -0x8a85,CUS_0x3b2e,Standard -0x8a91,CUS_0x2595,Standard -0x8a9d,CUS_0x70b,Standard -0x8aa9,CUS_0xc6be,Low -0x8ab5,CUS_0x96a6,Low -0x8ac1,CUS_0x8b7a,High -0x8acd,CUS_0x5534,Standard -0x8ad9,CUS_0xa6f1,Standard -0x8ae5,CUS_0xad75,Standard -0x8af1,CUS_0x8966,Low -0x8afd,CUS_0x286a,Standard -0x8b09,CUS_0x1b62,Low -0x8b15,CUS_0x3a26,Standard -0x8b21,CUS_0x3d71,High -0x8b2d,CUS_0xf3e,High -0x8b39,CUS_0x10c0,High -0x8b45,CUS_0x3846,Standard -0x8b51,CUS_0x79dd,Standard -0x8b5d,CUS_0xc113,Standard -0x8b69,CUS_0x47e8,Standard -0x8b75,CUS_0x1afd,Standard -0x8b81,CUS_0xacaf,Standard -0x8b8d,CUS_0x5a72,High -0x8b99,CUS_0x56b2,Standard -0x8ba5,CUS_0xaa3a,Standard -0x8bb1,CUS_0xb00,Standard -0x8bbd,CUS_0x7d83,High -0x8bc9,CUS_0x58f4,High -0x8bd5,CUS_0x8ed,Standard -0x8be1,CUS_0xae7c,High -0x8bed,CUS_0x9562,Standard -0x8bf9,CUS_0x6b49,Low -0x8c05,CUS_0xb82d,High -0x8c11,CUS_0x6fea,Standard -0x8c1d,CUS_0x30cf,Standard -0x8c29,CUS_0x8bd3,High -0x8c35,CUS_0x2634,Standard -0x8c41,CUS_0x9146,Low -0x8c4d,CUS_0xb7b1,Standard -0x8c59,CUS_0xb0bd,Low -0x8c65,CUS_0x6e65,High -0x8c71,CUS_0x2517,High -0x8c7d,CUS_0x9079,Standard -0x8c89,CUS_0x9a84,Standard -0x8c95,CUS_0x5b57,Standard -0x8ca1,CUS_0x339e,High -0x8cad,CUS_0x5f89,Standard -0x8cb9,CUS_0x96ca,Standard -0x8cc5,CUS_0x839b,Low -0x8cd1,CUS_0x7fd9,Standard -0x8cdd,CUS_0x869b,Standard -0x8ce9,CUS_0x8f86,Standard -0x8cf5,CUS_0x1ad9,Standard -0x8d01,CUS_0x4131,Standard -0x8d0d,CUS_0x2df8,High -0x8d19,CUS_0x2b62,High -0x8d25,CUS_0x9e5,Standard -0x8d31,CUS_0x24ef,High -0x8d3d,CUS_0x661f,Standard -0x8d49,CUS_0x6c90,High -0x8d55,CUS_0xaa5,Standard -0x8d61,CUS_0x1f2e,Standard -0x8d6d,CUS_0x5f81,Low -0x8d79,CUS_0x6c52,High -0x8d85,CUS_0x42b1,Standard -0x8d91,CUS_0xbb79,Standard -0x8d9d,CUS_0x769a,Low -0x8da9,CUS_0x5a03,Standard -0x8db5,CUS_0x3a28,High -0x8dc1,CUS_0xa6d4,Low -0x8dcd,CUS_0xb06e,High -0x8dd9,CUS_0x720a,High -0x8de5,CUS_0x3925,Standard -0x8df1,CUS_0x635d,Standard -0x8dfd,CUS_0x3032,Low -0x8e09,CUS_0xb0a5,Standard -0x8e15,CUS_0x9ce4,High -0x8e21,CUS_0x37ea,Standard -0x8e2d,CUS_0x3e92,Low -0x8e39,CUS_0x3a69,High -0x8e45,CUS_0xda6,Standard -0x8e51,CUS_0x6347,Standard -0x8e5d,CUS_0xa83,Standard -0x8e69,CUS_0x787b,High -0x8e75,CUS_0x73c1,High -0x8e81,CUS_0x286f,Low -0x8e8d,CUS_0x5ab7,Standard -0x8e99,CUS_0x5cff,Standard -0x8ea5,CUS_0x2d5a,High -0x8eb1,CUS_0x123d,High -0x8ebd,CUS_0x45b6,Low -0x8ec9,CUS_0x5634,Standard -0x8ed5,CUS_0xc211,Standard -0x8ee1,CUS_0x41ce,Standard -0x8eed,CUS_0x211f,Standard -0x8ef9,CUS_0x9b1f,Standard -0x8f05,CUS_0xaac6,Standard -0x8f11,CUS_0x8c44,Standard -0x8f1d,CUS_0x2fa2,Standard -0x8f29,CUS_0x7d64,Standard -0x8f35,CUS_0xb191,High -0x8f41,CUS_0xb160,Low -0x8f4d,CUS_0x3ca4,Standard -0x8f59,CUS_0x9cab,Standard -0x8f65,CUS_0xa276,Standard -0x8f71,CUS_0x5d14,Standard -0x8f7d,CUS_0x8ca3,Standard -0x8f89,CUS_0x3e91,Standard -0x8f95,CUS_0xa0eb,High -0x8fa1,CUS_0x2ff3,Standard -0x8fad,CUS_0xa52e,Standard -0x8fb9,CUS_0xa86b,Low -0x8fc5,CUS_0x18ac,High -0x8fd1,CUS_0x6d70,High -0x8fdd,CUS_0x9595,Standard -0x8fe9,CUS_0xbe4b,Standard -0x8ff5,CUS_0x76c1,Standard -0x9001,CUS_0x7997,Standard -0x900d,CUS_0x1eea,High -0x9019,CUS_0x7f3c,High -0x9025,CUS_0x840b,High -0x9031,CUS_0x1e87,Low -0x903d,CUS_0x8d7e,Standard -0x9049,CUS_0x79b8,High -0x9055,CUS_0xab2b,High -0x9061,CUS_0xa73b,High -0x906d,CUS_0xa980,Standard -0x9079,CUS_0x734a,High -0x9085,CUS_0x56c5,Standard -0x9091,CUS_0x8924,Standard -0x909d,CUS_0x9296,Standard -0x90a9,CUS_0x2d17,Standard -0x90b5,CUS_0x10c5,Standard -0x90c1,CUS_0x3a9d,Low -0x90cd,CUS_0x938,Standard -0x90d9,CUS_0x5184,Low -0x90e5,CUS_0x45ab,Standard -0x90f1,CUS_0x7e7f,Standard -0x90fd,CUS_0x16be,Standard -0x9109,CUS_0x325f,Standard -0x9115,CUS_0x332c,High -0x9121,CUS_0xb163,Standard -0x912d,CUS_0x2467,Standard -0x9139,CUS_0x4484,Low -0x9145,CUS_0x703c,Low -0x9151,CUS_0xadf2,Low -0x915d,CUS_0x5321,Standard -0x9169,CUS_0x5f43,Low -0x9175,CUS_0xae47,High -0x9181,CUS_0x6117,Standard -0x918d,CUS_0x1f4a,Low -0x9199,CUS_0x52d3,Standard -0x91a5,CUS_0x29ae,Low -0x91b1,CUS_0xa514,High -0x91bd,CUS_0x6aec,High -0x91c9,CUS_0x39d6,Standard -0x91d5,CUS_0x5e02,Standard -0x91e1,CUS_0x842e,High -0x91ed,CUS_0x3c9b,High -0x91f9,CUS_0xb38b,Standard -0x9205,CUS_0xa3fa,Standard -0x9211,CUS_0x9281,High -0x921d,CUS_0x3a82,Standard -0x9229,CUS_0x8d90,High -0x9235,CUS_0xaed9,Low -0x9241,CUS_0x6e1e,High -0x924d,CUS_0x659b,Standard -0x9259,CUS_0xa54d,Low -0x9265,CUS_0x9e3,Standard -0x9271,CUS_0x2730,Standard -0x927d,CUS_0xafbb,Standard -0x9289,CUS_0xae92,Standard -0x9295,CUS_0x5e33,High -0x92a1,CUS_0x5974,High -0x92ad,CUS_0xb7ca,High -0x92b9,CUS_0xd88,High -0x92c5,CUS_0x25b0,High -0x92d1,CUS_0x7623,Standard -0x92dd,CUS_0xa72c,Standard -0x92e9,CUS_0x3870,High -0x92f5,CUS_0xc9f,Standard -0x9301,CUS_0x76ca,High -0x930d,CUS_0x672c,Standard -0x9319,CUS_0x909d,High -0x9325,CUS_0x4ef0,High -0x9331,CUS_0xacd6,Low -0x933d,CUS_0x49bf,Standard -0x9349,CUS_0x31ac,Standard -0x9355,CUS_0xaa62,Standard -0x9361,CUS_0x1929,Low -0x936d,CUS_0x7703,Low -0x9379,CUS_0xa387,Standard -0x9385,CUS_0x51de,Standard -0x9391,CUS_0x7a76,Low -0x939d,CUS_0x8ce7,High -0x93a9,CUS_0x97e3,Standard -0x93b5,CUS_0xa4a5,Standard -0x93c1,CUS_0xb1c4,Standard -0x93cd,CUS_0xc181,Standard -0x93d9,CUS_0x15df,Standard -0x93e5,CUS_0xbd64,Standard -0x93f1,CUS_0x181a,Low -0x93fd,CUS_0x922f,High -0x9409,CUS_0x65ae,High -0x9415,CUS_0x8b06,Standard -0x9421,CUS_0x6371,Standard -0x942d,CUS_0xbfd,High -0x9439,CUS_0x965e,Low -0x9445,CUS_0x415f,Standard -0x9451,CUS_0x641a,Standard -0x945d,CUS_0xc29b,High -0x9469,CUS_0xb9d,Standard -0x9475,CUS_0x6d9f,High -0x9481,CUS_0xb04b,Standard -0x948d,CUS_0x5a95,Standard -0x9499,CUS_0x1fd1,Standard -0x94a5,CUS_0x7398,Standard -0x94b1,CUS_0x96ad,Standard -0x94bd,CUS_0x1e72,Standard -0x94c9,CUS_0x8e35,Standard -0x94d5,CUS_0xbfe8,High -0x94e1,CUS_0xc727,High -0x94ed,CUS_0xc38d,Standard -0x94f9,CUS_0x46bf,Standard -0x9505,CUS_0x766b,Low -0x9511,CUS_0x52bf,Standard -0x951d,CUS_0xc24c,Standard -0x9529,CUS_0x9a7,Standard -0x9535,CUS_0x67c7,High -0x9541,CUS_0xb56c,Low -0x954d,CUS_0x424,Standard -0x9559,CUS_0x5d77,High -0x9565,CUS_0xc6fa,Low -0x9571,CUS_0x1feb,Low -0x957d,CUS_0x9e41,Standard -0x9589,CUS_0xc52a,High -0x9595,CUS_0x8b3e,Standard -0x95a1,CUS_0x4409,Standard -0x95ad,CUS_0x6ee1,High -0x95b9,CUS_0x2ce8,Low -0x95c5,CUS_0x64a4,Standard -0x95d1,CUS_0x4881,Standard -0x95dd,CUS_0x4527,Low -0x95e9,CUS_0x6240,Standard -0x95f5,CUS_0xb9f9,Standard -0x9601,CUS_0xbd09,Standard -0x960d,CUS_0x2f11,High -0x9619,CUS_0x9bc8,Low -0x9625,CUS_0x1621,Standard -0x9631,CUS_0x33e0,High -0x963d,CUS_0x376f,Standard -0x9649,CUS_0x87e2,Standard -0x9655,CUS_0x2e50,High -0x9661,CUS_0xb9cd,Standard -0x966d,CUS_0x51e3,High -0x9679,CUS_0x2e79,Standard -0x9685,CUS_0xc2ea,High -0x9691,CUS_0x763c,Standard -0x969d,CUS_0x59c7,Standard -0x96a9,CUS_0x387d,Standard -0x96b5,CUS_0xd35,Standard -0x96c1,CUS_0x7c66,Standard -0x96cd,CUS_0x878c,High -0x96d9,CUS_0x8261,Low -0x96e5,CUS_0x4eb6,Standard -0x96f1,CUS_0x9c05,Standard -0x96fd,CUS_0x7ffd,High -0x9709,CUS_0xc6f2,Low -0x9715,CUS_0xb153,High -0x9721,CUS_0x1986,Standard -0x972d,CUS_0x6d41,High -0x9739,CUS_0xb82b,Standard -0x9745,CUS_0x5bf,High -0x9751,CUS_0xae82,Standard -0x975d,CUS_0xa530,High -0x9769,CUS_0xa7b7,Low -0x9775,CUS_0x9673,Low -0x9781,CUS_0x4be2,High -0x978d,CUS_0x85b9,High -0x9799,CUS_0x7c6d,High -0x97a5,CUS_0xbda6,Standard -0x97b1,CUS_0x1768,Standard -0x97bd,CUS_0x5198,High -0x97c9,CUS_0x9357,Standard -0x97d5,CUS_0x580e,Standard -0x97e1,CUS_0x7a15,Standard -0x97ed,CUS_0x54a3,Standard -0x97f9,CUS_0xc390,Standard -0x9805,CUS_0x2e98,Low -0x9811,CUS_0xc050,Standard -0x981d,CUS_0x1705,Low -0x9829,CUS_0x7283,Standard -0x9835,CUS_0x63de,Standard -0x9841,CUS_0xb6e6,Standard -0x984d,CUS_0x87b4,Low -0x9859,CUS_0xac2b,Standard -0x9865,CUS_0x2d88,Standard -0x9871,CUS_0x903f,Standard -0x987d,CUS_0xa692,High -0x9889,CUS_0xa60a,Standard -0x9895,CUS_0x4cae,Low -0x98a1,CUS_0x1258,Standard -0x98ad,CUS_0x237d,Low -0x98b9,CUS_0x6ea9,Standard -0x98c5,CUS_0x775d,Standard -0x98d1,CUS_0x660b,Low -0x98dd,CUS_0x88c,Standard -0x98e9,CUS_0x2662,Standard -0x98f5,CUS_0x3733,Standard -0x9901,CUS_0x974f,High -0x990d,CUS_0xbed8,Standard -0x9919,CUS_0xb362,Standard -0x9925,CUS_0xc6e4,High -0x9931,CUS_0xb8da,Low -0x993d,CUS_0x710e,Low -0x9949,CUS_0x6e2a,Low -0x9955,CUS_0x8029,Low -0x9961,CUS_0xab44,Standard -0x996d,CUS_0x440a,Low -0x9979,CUS_0x55f1,High -0x9985,CUS_0xc218,High -0x9991,CUS_0xc0f6,Standard -0x999d,CUS_0xf4b,Standard -0x99a9,CUS_0xa42a,High -0x99b5,CUS_0x9263,Standard -0x99c1,CUS_0x3f3,Standard -0x99cd,CUS_0x1c58,Standard -0x99d9,CUS_0x5a4d,Standard -0x99e5,CUS_0x2796,High -0x99f1,CUS_0xc2e2,Standard -0x99fd,CUS_0x1f34,Low -0x9a09,CUS_0x8fdf,Low -0x9a15,CUS_0xba67,Standard -0x9a21,CUS_0xb828,High -0x9a2d,CUS_0xb15d,Standard -0x9a39,CUS_0x488b,High -0x9a45,CUS_0x4454,Standard -0x9a51,CUS_0x2976,Standard -0x9a5d,CUS_0xa5be,Standard -0x9a69,CUS_0x7e5d,High -0x9a75,CUS_0x6276,Standard -0x9a81,CUS_0x1b3a,Standard -0x9a8d,CUS_0xc0d9,Low -0x9a99,CUS_0x5352,Standard -0x9aa5,CUS_0x9a88,High -0x9ab1,CUS_0xa2d5,Standard -0x9abd,CUS_0x910a,Standard -0x9ac9,CUS_0x97b0,Standard -0x9ad5,CUS_0xc4bd,Standard -0x9ae1,CUS_0x5ca1,Low -0x9aed,CUS_0x469a,Standard -0x9af9,CUS_0x7f72,Low -0x9b05,CUS_0x1f1a,Standard -0x9b11,CUS_0x755b,Standard -0x9b1d,CUS_0xc4de,High -0x9b29,CUS_0x4379,Standard -0x9b35,CUS_0xb903,Standard -0x9b41,CUS_0x4f44,Standard -0x9b4d,CUS_0x674e,High -0x9b59,CUS_0x612f,High -0x9b65,CUS_0x35b4,High -0x9b71,CUS_0x2d27,Standard -0x9b7d,CUS_0x29ef,Standard -0x9b89,CUS_0x6ca8,Standard -0x9b95,CUS_0x1e0f,Low -0x9ba1,CUS_0x541a,Standard -0x9bad,CUS_0x95d,Standard -0x9bb9,CUS_0xa08b,Standard -0x9bc5,CUS_0x5436,Standard -0x9bd1,CUS_0x49ff,High -0x9bdd,CUS_0x974,Low -0x9be9,CUS_0x4549,High -0x9bf5,CUS_0xc2da,Low -0x9c01,CUS_0x1db5,Standard -0x9c0d,CUS_0x8e8b,Standard -0x9c19,CUS_0x361b,Standard -0x9c25,CUS_0xd0c,High -0x9c31,CUS_0xb98d,Standard -0x9c3d,CUS_0x5a58,High -0x9c49,CUS_0x6c00,High -0x9c55,CUS_0xc064,Low -0x9c61,CUS_0x73c0,High -0x9c6d,CUS_0xace3,Standard -0x9c79,CUS_0xbf0b,Standard -0x9c85,CUS_0x43f1,Standard -0x9c91,CUS_0x321c,Low -0x9c9d,CUS_0x2d16,Low -0x9ca9,CUS_0xa01,Low -0x9cb5,CUS_0x7e70,Standard -0x9cc1,CUS_0x1cb0,Low -0x9ccd,CUS_0x4196,Standard -0x9cd9,CUS_0x4864,Standard -0x9ce5,CUS_0x6809,High -0x9cf1,CUS_0x157a,Standard -0x9cfd,CUS_0xcda,Low -0x9d09,CUS_0x6f69,High -0x9d15,CUS_0xbcbc,Standard -0x9d21,CUS_0x9046,Standard -0x9d2d,CUS_0x9f51,High -0x9d39,CUS_0x9d72,Standard -0x9d45,CUS_0x1871,Standard -0x9d51,CUS_0x7da4,High -0x9d5d,CUS_0x9506,Standard -0x9d69,CUS_0x416d,Low -0x9d75,CUS_0x33b5,Standard -0x9d81,CUS_0x461f,Standard -0x9d8d,CUS_0x43a3,High -0x9d99,CUS_0x9ae1,High -0x9da5,CUS_0x46dd,Low -0x9db1,CUS_0x38b2,High -0x9dbd,CUS_0x637b,High -0x9dc9,CUS_0x746e,Standard -0x9dd5,CUS_0xaff8,Low -0x9de1,CUS_0x5fd6,Standard -0x9ded,CUS_0x7a0b,Standard -0x9df9,CUS_0x55e3,High -0x9e05,CUS_0x30b7,Standard -0x9e11,CUS_0x1a2f,Low -0x9e1d,CUS_0x1647,Low -0x9e29,CUS_0x1733,High -0x9e35,CUS_0x7307,Standard -0x9e41,CUS_0xab5e,Standard -0x9e4d,CUS_0x8658,Standard -0x9e59,CUS_0x3a40,Standard -0x9e65,CUS_0x376a,Standard -0x9e71,CUS_0xb17a,Low -0x9e7d,CUS_0xb882,Standard -0x9e89,CUS_0xaf2e,Standard -0x9e95,CUS_0x4398,Standard -0x9ea1,CUS_0x18c6,Standard -0x9ead,CUS_0x2b2d,High -0x9eb9,CUS_0x49ae,Low -0x9ec5,CUS_0x540e,Low -0x9ed1,CUS_0x94ac,Standard -0x9edd,CUS_0xc156,Standard -0x9ee9,CUS_0x53ad,Standard -0x9ef5,CUS_0x2cd1,High -0x9f01,CUS_0x4dde,Standard -0x9f0d,CUS_0x841e,Standard -0x9f19,CUS_0x8391,Standard -0x9f25,CUS_0x9557,High -0x9f31,CUS_0x5fd8,Standard -0x9f3d,CUS_0x8934,Low -0x9f49,CUS_0x37c4,Low -0x9f55,CUS_0x789f,High -0x9f61,CUS_0x2f39,High -0x9f6d,CUS_0x28b4,Standard -0x9f79,CUS_0x1ee3,High -0x9f85,CUS_0x39ce,Low -0x9f91,CUS_0x77ec,High -0x9f9d,CUS_0x290d,Standard -0x9fa9,CUS_0x5a88,High -0x9fb5,CUS_0x229d,Standard -0x9fc1,CUS_0x9919,High -0x9fcd,CUS_0x2fab,Low -0x9fd9,CUS_0x8d7c,Standard -0x9fe5,CUS_0xa788,High -0x9ff1,CUS_0x42c6,High -0x9ffd,CUS_0x7967,Low -0xa009,CUS_0x68d1,High -0xa015,CUS_0x5c9f,High -0xa021,CUS_0x2869,Low -0xa02d,CUS_0xa226,Low -0xa039,CUS_0x3117,High -0xa045,CUS_0x1329,Low -0xa051,CUS_0x5225,High -0xa05d,CUS_0x575c,Low -0xa069,CUS_0x708e,High -0xa075,CUS_0x598f,Standard -0xa081,CUS_0x3be2,Standard -0xa08d,CUS_0x17fe,Standard -0xa099,CUS_0x7b2c,High -0xa0a5,CUS_0x81cd,Standard -0xa0b1,CUS_0x9d2c,Standard -0xa0bd,CUS_0x635e,High -0xa0c9,CUS_0xa49c,Standard -0xa0d5,CUS_0x2bdd,Standard -0xa0e1,CUS_0x5de6,Low -0xa0ed,CUS_0x663b,Low -0xa0f9,CUS_0x38ce,High -0xa105,CUS_0x6901,Low -0xa111,CUS_0x3f97,Standard -0xa11d,CUS_0x62c7,Standard -0xa129,CUS_0x8432,High -0xa135,CUS_0x71a0,Standard -0xa141,CUS_0x79ef,High -0xa14d,CUS_0x9f91,Standard -0xa159,CUS_0x486d,Low -0xa165,CUS_0x9ead,Standard -0xa171,CUS_0x7023,Low -0xa17d,CUS_0x560d,Low -0xa189,CUS_0x86b2,High -0xa195,CUS_0x2e73,High -0xa1a1,CUS_0xb52d,High -0xa1ad,CUS_0x81e2,Standard -0xa1b9,CUS_0x6d6e,Low -0xa1c5,CUS_0x20c4,High -0xa1d1,CUS_0x440,Standard -0xa1dd,CUS_0xaffc,Standard -0xa1e9,CUS_0x8d74,Standard -0xa1f5,CUS_0x1107,High -0xa201,CUS_0x182d,Standard -0xa20d,CUS_0x5e89,Standard -0xa219,CUS_0x735,High -0xa225,CUS_0x453a,Standard -0xa231,CUS_0x5e46,Low -0xa23d,CUS_0xbb23,Standard -0xa249,CUS_0x1938,Low -0xa255,CUS_0x4a5,Low -0xa261,CUS_0xb583,Low -0xa26d,CUS_0xc173,Standard -0xa279,CUS_0x4db7,High -0xa285,CUS_0x9b35,Low -0xa291,CUS_0x54d7,Low -0xa29d,CUS_0x591b,Standard -0xa2a9,CUS_0x59dd,Standard -0xa2b5,CUS_0x31ef,High -0xa2c1,CUS_0x1cfd,Standard -0xa2cd,CUS_0xb3f4,Standard -0xa2d9,CUS_0x839e,Standard -0xa2e5,CUS_0x3615,Standard -0xa2f1,CUS_0xa495,Low -0xa2fd,CUS_0x18be,High -0xa309,CUS_0x6e6f,Standard -0xa315,CUS_0x41ac,Low -0xa321,CUS_0xb863,Standard -0xa32d,CUS_0x4ef1,Standard -0xa339,CUS_0x1a9f,High -0xa345,CUS_0x9322,Low -0xa351,CUS_0x6c3b,Standard -0xa35d,CUS_0x757d,High -0xa369,CUS_0x165b,High -0xa375,CUS_0x8d12,Standard -0xa381,CUS_0xb8b3,Standard -0xa38d,CUS_0x8757,Standard -0xa399,CUS_0x68cc,Standard -0xa3a5,CUS_0x21a3,Standard -0xa3b1,CUS_0x65e9,Standard -0xa3bd,CUS_0xa66,Standard -0xa3c9,CUS_0x2ed4,Low -0xa3d5,CUS_0xbfa1,Low -0xa3e1,CUS_0x1bdf,Standard -0xa3ed,CUS_0x5604,Standard -0xa3f9,CUS_0x3cc6,Standard -0xa405,CUS_0xbd37,Standard -0xa411,CUS_0x5f37,Standard -0xa41d,CUS_0x57a1,Standard -0xa429,CUS_0x7223,Standard -0xa435,CUS_0x20f8,Standard -0xa441,CUS_0x7b14,Standard -0xa44d,CUS_0x57c6,Standard -0xa459,CUS_0x1fbb,Standard -0xa465,CUS_0x622c,Standard -0xa471,CUS_0x3f74,Standard -0xa47d,CUS_0xafc0,Standard -0xa489,CUS_0x7906,Low -0xa495,CUS_0x8149,High -0xa4a1,CUS_0x26d4,High -0xa4ad,CUS_0x38a4,Standard -0xa4b9,CUS_0xbdf7,High -0xa4c5,CUS_0x4c8c,High -0xa4d1,CUS_0x8b2d,Standard -0xa4dd,CUS_0x2f4b,Low -0xa4e9,CUS_0x427b,Standard -0xa4f5,CUS_0x5e44,Low -0xa501,CUS_0x2883,High -0xa50d,CUS_0xae9b,Standard -0xa519,CUS_0x2daf,Standard -0xa525,CUS_0x8ed4,Standard -0xa531,CUS_0x49d5,High -0xa53d,CUS_0x1182,Low -0xa549,CUS_0x1b97,Standard -0xa555,CUS_0x9228,Standard -0xa561,CUS_0x7f08,Standard -0xa56d,CUS_0x23ff,Low -0xa579,CUS_0xaa6e,High -0xa585,CUS_0x1367,High -0xa591,CUS_0x1c12,Standard -0xa59d,CUS_0xa6bd,Standard -0xa5a9,CUS_0x68bb,Low -0xa5b5,CUS_0x4367,Standard -0xa5c1,CUS_0x8b3,Low -0xa5cd,CUS_0xa7d4,High -0xa5d9,CUS_0x5255,High -0xa5e5,CUS_0x96f7,Standard -0xa5f1,CUS_0x5369,Standard -0xa5fd,CUS_0x62e4,Low -0xa609,CUS_0xbcfa,High -0xa615,CUS_0x4e53,Standard -0xa621,CUS_0x9ed5,High -0xa62d,CUS_0x22d0,Standard -0xa639,CUS_0x442e,Standard -0xa645,CUS_0x12a8,Standard -0xa651,CUS_0x4c2,Standard -0xa65d,CUS_0x936d,Standard -0xa669,CUS_0x7712,High -0xa675,CUS_0xa6e,Standard -0xa681,CUS_0xa72,High -0xa68d,CUS_0x9bbd,Standard -0xa699,CUS_0x1252,Low -0xa6a5,CUS_0xbaa6,Standard -0xa6b1,CUS_0x3c61,Standard -0xa6bd,CUS_0xb340,Standard -0xa6c9,CUS_0xa1f1,High -0xa6d5,CUS_0xbe49,High -0xa6e1,CUS_0x2a8c,Standard -0xa6ed,CUS_0xacd7,High -0xa6f9,CUS_0x6e6b,Low -0xa705,CUS_0x7be,Low -0xa711,CUS_0x4cb5,Standard -0xa71d,CUS_0x499d,Standard -0xa729,CUS_0xa4f6,Standard -0xa735,CUS_0x657e,Standard -0xa741,CUS_0x158e,Standard -0xa74d,CUS_0x18c9,High -0xa759,CUS_0x8ce,Standard -0xa765,CUS_0x74c9,Standard -0xa771,CUS_0x32d1,High -0xa77d,CUS_0x81d3,Standard -0xa789,CUS_0x9c68,Standard -0xa795,CUS_0x7ae,Standard -0xa7a1,CUS_0x1676,Standard -0xa7ad,CUS_0x7251,Standard -0xa7b9,CUS_0x558e,Low -0xa7c5,CUS_0x435a,Low -0xa7d1,CUS_0x1c47,Low -0xa7dd,CUS_0x6908,Standard -0xa7e9,CUS_0x9853,Standard -0xa7f5,CUS_0x16a4,High -0xa801,CUS_0x2363,High -0xa80d,CUS_0x47e,Standard -0xa819,CUS_0x3e7e,Standard -0xa825,CUS_0xa7a4,Standard -0xa831,CUS_0xbe14,Low -0xa83d,CUS_0xd46,Standard -0xa849,CUS_0xb01f,Standard -0xa855,CUS_0x9c1f,Standard -0xa861,CUS_0x22be,Low -0xa86d,CUS_0x6080,Standard -0xa879,CUS_0xa20f,Low -0xa885,CUS_0x9aa1,Standard -0xa891,CUS_0x1fdc,High -0xa89d,CUS_0xf91,High -0xa8a9,CUS_0xd7c,High -0xa8b5,CUS_0x5f97,Low -0xa8c1,CUS_0x2d94,Standard -0xa8cd,CUS_0x317a,Standard -0xa8d9,CUS_0x603b,High -0xa8e5,CUS_0x7963,Low -0xa8f1,CUS_0x5876,Standard -0xa8fd,CUS_0x56f,Low -0xa909,CUS_0x1b1a,Standard -0xa915,CUS_0x79e4,Standard -0xa921,CUS_0x5e0d,Low -0xa92d,CUS_0x55c6,Standard -0xa939,CUS_0x1119,High -0xa945,CUS_0x5eae,Low -0xa951,CUS_0x6cd2,Standard -0xa95d,CUS_0xa26,Standard -0xa969,CUS_0x17e0,Standard -0xa975,CUS_0x36a1,Low -0xa981,CUS_0x47bb,Standard -0xa98d,CUS_0x1d08,Standard -0xa999,CUS_0xa260,Low -0xa9a5,CUS_0x59c1,High -0xa9b1,CUS_0x700f,Low -0xa9bd,CUS_0x66d,Standard -0xa9c9,CUS_0x52f3,Standard -0xa9d5,CUS_0x20b8,Standard -0xa9e1,CUS_0x2513,Standard -0xa9ed,CUS_0x3e75,Standard -0xa9f9,CUS_0x2950,Low -0xaa05,CUS_0xc187,High -0xaa11,CUS_0x8ba4,High -0xaa1d,CUS_0xbd9b,High -0xaa29,CUS_0x7dab,Standard -0xaa35,CUS_0x13c7,Standard -0xaa41,CUS_0x42db,Standard -0xaa4d,CUS_0xa4b6,High -0xaa59,CUS_0x8cc5,Low -0xaa65,CUS_0x2005,Standard -0xaa71,CUS_0x80d7,Standard -0xaa7d,CUS_0x8fd8,High -0xaa89,CUS_0x8f9e,Standard -0xaa95,CUS_0x56a9,Standard -0xaaa1,CUS_0x8f69,High -0xaaad,CUS_0x77ad,Standard -0xaab9,CUS_0x350e,Low -0xaac5,CUS_0x9ae8,Standard -0xaad1,CUS_0x981a,Low -0xaadd,CUS_0xa60e,Low -0xaae9,CUS_0x3998,Standard -0xaaf5,CUS_0x9403,Standard -0xab01,CUS_0xaaf8,Standard -0xab0d,CUS_0x94e8,Standard -0xab19,CUS_0x8f8f,Standard -0xab25,CUS_0x4b5a,Low -0xab31,CUS_0x10fd,High -0xab3d,CUS_0x8291,High -0xab49,CUS_0x4c89,High -0xab55,CUS_0x1934,High -0xab61,CUS_0x1cc0,Low -0xab6d,CUS_0x2ed7,Standard -0xab79,CUS_0x3731,High -0xab85,CUS_0x8c47,High -0xab91,CUS_0x33da,Standard -0xab9d,CUS_0x3ae3,Standard -0xaba9,CUS_0x5d24,Low -0xabb5,CUS_0x3768,Low -0xabc1,CUS_0x4e6e,Low -0xabcd,CUS_0xa0ea,Standard -0xabd9,CUS_0x6c2a,Standard -0xabe5,CUS_0x2a7d,Low -0xabf1,CUS_0xb97b,High -0xabfd,CUS_0xc0a4,Low -0xac09,CUS_0x33ef,Standard -0xac15,CUS_0x8eb2,Standard -0xac21,CUS_0xd3e,Standard -0xac2d,CUS_0x896f,High -0xac39,CUS_0x965a,Standard -0xac45,CUS_0xb79c,Standard -0xac51,CUS_0x9379,High -0xac5d,CUS_0xb042,High -0xac69,CUS_0x72ce,Standard -0xac75,CUS_0xb52b,Standard -0xac81,CUS_0x641f,High -0xac8d,CUS_0x198e,High -0xac99,CUS_0x6c91,Standard -0xaca5,CUS_0x69aa,Standard -0xacb1,CUS_0xc375,Low -0xacbd,CUS_0x7c7a,Low -0xacc9,CUS_0x69cd,High -0xacd5,CUS_0xbb73,Standard -0xace1,CUS_0x7d65,Standard -0xaced,CUS_0x5dfa,Standard -0xacf9,CUS_0x860,Standard -0xad05,CUS_0xa19,Standard -0xad11,CUS_0xbcca,Standard -0xad1d,CUS_0x67aa,Standard -0xad29,CUS_0x5d01,Low -0xad35,CUS_0x3a02,Low -0xad41,CUS_0xae52,High -0xad4d,CUS_0x3172,Standard -0xad59,CUS_0xc5d3,Standard -0xad65,CUS_0x4721,Standard -0xad71,CUS_0x5e3c,High -0xad7d,CUS_0x352f,Standard -0xad89,CUS_0x318e,Standard -0xad95,CUS_0xb676,Standard -0xada1,CUS_0x8b6f,Low -0xadad,CUS_0xb64a,Standard -0xadb9,CUS_0x8204,Standard -0xadc5,CUS_0xc1fe,High -0xadd1,CUS_0xb48f,Standard -0xaddd,CUS_0xb8e5,Standard -0xade9,CUS_0x4c5c,Standard -0xadf5,CUS_0xfa4,High -0xae01,CUS_0x8ede,High -0xae0d,CUS_0xadeb,Standard -0xae19,CUS_0x41b2,Low -0xae25,CUS_0xb33a,Standard -0xae31,CUS_0xad0e,High -0xae3d,CUS_0x2c42,Standard -0xae49,CUS_0x1591,Low -0xae55,CUS_0x4797,Standard -0xae61,CUS_0x5bf2,Standard -0xae6d,CUS_0x5ebe,Standard -0xae79,CUS_0x4b30,Standard -0xae85,CUS_0x1f87,Standard -0xae91,CUS_0x3ea3,Standard -0xae9d,CUS_0xdd9,Low -0xaea9,CUS_0x6069,Standard -0xaeb5,CUS_0x57a,Low -0xaec1,CUS_0x23c1,Low -0xaecd,CUS_0x4842,Low -0xaed9,CUS_0xc4a7,Standard -0xaee5,CUS_0x59f1,Standard -0xaef1,CUS_0x7820,Standard -0xaefd,CUS_0x159f,Standard -0xaf09,CUS_0x5268,Low -0xaf15,CUS_0x4d92,Standard -0xaf21,CUS_0x20f1,High -0xaf2d,CUS_0x3336,Low -0xaf39,CUS_0x20da,Standard -0xaf45,CUS_0x133e,Low -0xaf51,CUS_0xabb5,Standard -0xaf5d,CUS_0x9404,Standard -0xaf69,CUS_0x5a90,Low -0xaf75,CUS_0x3929,Standard -0xaf81,CUS_0x8062,Standard -0xaf8d,CUS_0x23ad,Standard -0xaf99,CUS_0x4d25,Low -0xafa5,CUS_0xf8f,High -0xafb1,CUS_0x4498,Standard -0xafbd,CUS_0x24d9,Standard -0xafc9,CUS_0x1109,High -0xafd5,CUS_0x3974,Standard -0xafe1,CUS_0x5c89,Standard -0xafed,CUS_0x8a62,Low -0xaff9,CUS_0x42bc,Standard -0xb005,CUS_0x7025,High -0xb011,CUS_0xa7e1,Low -0xb01d,CUS_0x3763,Standard -0xb029,CUS_0x568,High -0xb035,CUS_0x6968,Standard -0xb041,CUS_0x6698,Standard -0xb04d,CUS_0xc0f3,Standard -0xb059,CUS_0x6b0b,High -0xb065,CUS_0x6a7,Standard -0xb071,CUS_0x1ac0,High -0xb07d,CUS_0x7869,Standard -0xb089,CUS_0x544d,High -0xb095,CUS_0x705e,Standard -0xb0a1,CUS_0xbbb5,High -0xb0ad,CUS_0x8225,Low -0xb0b9,CUS_0x9553,Standard -0xb0c5,CUS_0xc4ee,Standard -0xb0d1,CUS_0x7258,High -0xb0dd,CUS_0x64c6,Low -0xb0e9,CUS_0x4d41,High -0xb0f5,CUS_0xb2cc,High -0xb101,CUS_0x8acf,Low -0xb10d,CUS_0x6c17,Standard -0xb119,CUS_0x9c3c,High -0xb125,CUS_0xb936,High -0xb131,CUS_0x4ce8,High -0xb13d,CUS_0x3d37,Low -0xb149,CUS_0x7df6,Standard -0xb155,CUS_0x4ea4,Low -0xb161,CUS_0xb9d8,Standard -0xb16d,CUS_0x4357,Standard -0xb179,CUS_0x6969,Low -0xb185,CUS_0x3d44,Standard -0xb191,CUS_0x2493,High -0xb19d,CUS_0x74fc,Standard -0xb1a9,CUS_0x66c7,High -0xb1b5,CUS_0xb14f,Standard -0xb1c1,CUS_0xad3c,Standard -0xb1cd,CUS_0x84e7,Standard -0xb1d9,CUS_0x7656,Standard -0xb1e5,CUS_0xb8d4,Low -0xb1f1,CUS_0x90e0,Low -0xb1fd,CUS_0x59a9,Low -0xb209,CUS_0x5c44,Standard -0xb215,CUS_0x16d3,High -0xb221,CUS_0xb5ae,Standard -0xb22d,CUS_0xe32,Standard -0xb239,CUS_0x926b,Standard -0xb245,CUS_0x6f02,High -0xb251,CUS_0x4669,Standard -0xb25d,CUS_0x6e7,Standard -0xb269,CUS_0x1b85,Low -0xb275,CUS_0x5d65,Standard -0xb281,CUS_0x8eaa,Standard -0xb28d,CUS_0x987a,Standard -0xb299,CUS_0x7972,High -0xb2a5,CUS_0x5975,Standard -0xb2b1,CUS_0x197f,Standard -0xb2bd,CUS_0xa478,Low -0xb2c9,CUS_0x22f8,Standard -0xb2d5,CUS_0x25f2,Standard -0xb2e1,CUS_0x6f7d,Standard -0xb2ed,CUS_0x35ba,Standard -0xb2f9,CUS_0x6448,Low -0xb305,CUS_0xc524,Standard -0xb311,CUS_0x9438,High -0xb31d,CUS_0xa055,Standard -0xb329,CUS_0xa5a4,Standard -0xb335,CUS_0xc6d6,Standard -0xb341,CUS_0x43c0,High -0xb34d,CUS_0x9dff,High -0xb359,CUS_0x9d86,Standard -0xb365,CUS_0xc118,High -0xb371,CUS_0x5049,Standard -0xb37d,CUS_0x548b,Standard -0xb389,CUS_0x1a18,Standard -0xb395,CUS_0x600e,Standard -0xb3a1,CUS_0xbba9,High -0xb3ad,CUS_0xc45d,Standard -0xb3b9,CUS_0x5b37,High -0xb3c5,CUS_0x2b9f,High -0xb3d1,CUS_0xb8c,High -0xb3dd,CUS_0x20e5,Low -0xb3e9,CUS_0x4c61,Low -0xb3f5,CUS_0x94a6,High -0xb401,CUS_0x2f7b,Standard -0xb40d,CUS_0xc1b9,Standard -0xb419,CUS_0x4846,High -0xb425,CUS_0x51f,Low -0xb431,CUS_0x5933,Low -0xb43d,CUS_0x2694,High -0xb449,CUS_0x3d77,Standard -0xb455,CUS_0xf9e,Standard -0xb461,CUS_0x2f53,Low -0xb46d,CUS_0x58d8,Standard -0xb479,CUS_0xa138,High -0xb485,CUS_0xc28c,High -0xb491,CUS_0x2794,Standard -0xb49d,CUS_0xbe32,Standard -0xb4a9,CUS_0x1195,Standard -0xb4b5,CUS_0x9ec7,Low -0xb4c1,CUS_0xdea,Standard -0xb4cd,CUS_0x7fb0,Standard -0xb4d9,CUS_0x3809,Low -0xb4e5,CUS_0xadd7,Standard -0xb4f1,CUS_0xa24a,Standard -0xb4fd,CUS_0x5528,Standard -0xb509,CUS_0x22bc,Standard -0xb515,CUS_0xc1dc,Standard -0xb521,CUS_0xbe29,Standard -0xb52d,CUS_0xbbec,Standard -0xb539,CUS_0x1f57,Low -0xb545,CUS_0x1e95,Standard -0xb551,CUS_0xb060,Low -0xb55d,CUS_0x37e6,Standard -0xb569,CUS_0x3374,Standard -0xb575,CUS_0x48b7,High -0xb581,CUS_0x4abb,Standard -0xb58d,CUS_0x42dc,Standard -0xb599,CUS_0x953d,Standard -0xb5a5,CUS_0x902d,Standard -0xb5b1,CUS_0x3eed,Standard -0xb5bd,CUS_0x1a23,Standard -0xb5c9,CUS_0x96da,Standard -0xb5d5,CUS_0x88fb,Standard -0xb5e1,CUS_0x3f42,Low -0xb5ed,CUS_0x46e8,Standard -0xb5f9,CUS_0xa041,Low -0xb605,CUS_0x8822,Standard -0xb611,CUS_0xb6a5,Standard -0xb61d,CUS_0x8d56,Standard -0xb629,CUS_0x6e43,Standard -0xb635,CUS_0xa23e,Low -0xb641,CUS_0x880b,High -0xb64d,CUS_0x3911,Low -0xb659,CUS_0x2e7f,Standard -0xb665,CUS_0x1b02,Standard -0xb671,CUS_0x718a,High -0xb67d,CUS_0x1b9a,Standard -0xb689,CUS_0xbd59,Low -0xb695,CUS_0x1b0a,Standard -0xb6a1,CUS_0xab3a,Low -0xb6ad,CUS_0x6f74,High -0xb6b9,CUS_0x2468,High -0xb6c5,CUS_0x5edf,Standard -0xb6d1,CUS_0x6225,Low -0xb6dd,CUS_0x12fc,Standard -0xb6e9,CUS_0x53aa,Standard -0xb6f5,CUS_0x5d1c,Standard -0xb701,CUS_0x5a89,Standard -0xb70d,CUS_0x6f2a,Low -0xb719,CUS_0xa062,Low -0xb725,CUS_0xb14a,High -0xb731,CUS_0xad5e,High -0xb73d,CUS_0x6b79,Standard -0xb749,CUS_0x9e21,Standard -0xb755,CUS_0x6256,Standard -0xb761,CUS_0x2ec3,Standard -0xb76d,CUS_0x269f,High -0xb779,CUS_0x4ebb,High -0xb785,CUS_0xec3,High -0xb791,CUS_0x35fe,Standard -0xb79d,CUS_0xc38e,High -0xb7a9,CUS_0x67bb,Low -0xb7b5,CUS_0x8a70,Low -0xb7c1,CUS_0x6fb9,High -0xb7cd,CUS_0x9de2,Low -0xb7d9,CUS_0x2541,Standard -0xb7e5,CUS_0x57c,Standard -0xb7f1,CUS_0x1414,Standard -0xb7fd,CUS_0x646d,High -0xb809,CUS_0xac56,Standard -0xb815,CUS_0x67c6,Standard -0xb821,CUS_0x599f,Standard -0xb82d,CUS_0x29fa,Standard -0xb839,CUS_0x7b3,High -0xb845,CUS_0x73e8,Low -0xb851,CUS_0xaed6,Standard -0xb85d,CUS_0x7570,Standard -0xb869,CUS_0x19a5,Standard -0xb875,CUS_0xbe46,Standard -0xb881,CUS_0x6075,Standard -0xb88d,CUS_0xa9bb,High -0xb899,CUS_0x2176,Standard -0xb8a5,CUS_0x4b7f,High -0xb8b1,CUS_0x3c82,Standard -0xb8bd,CUS_0x699d,Standard -0xb8c9,CUS_0x1b21,Standard -0xb8d5,CUS_0xa0c3,Low -0xb8e1,CUS_0x26b0,Standard -0xb8ed,CUS_0x34ad,Standard -0xb8f9,CUS_0xc305,High -0xb905,CUS_0x8f7b,Low -0xb911,CUS_0xc2b5,Standard -0xb91d,CUS_0xc3f2,Standard -0xb929,CUS_0x62b7,Standard -0xb935,CUS_0x56d7,Standard -0xb941,CUS_0x5537,Standard -0xb94d,CUS_0x7c06,Low -0xb959,CUS_0x83fe,High -0xb965,CUS_0x4cad,High -0xb971,CUS_0x5540,High -0xb97d,CUS_0x79d7,High -0xb989,CUS_0x78f8,Standard -0xb995,CUS_0x9f08,Standard -0xb9a1,CUS_0x522d,Low -0xb9ad,CUS_0x16fd,High -0xb9b9,CUS_0x34fa,High -0xb9c5,CUS_0xb69d,Standard -0xb9d1,CUS_0x6fa4,High -0xb9dd,CUS_0x1032,Standard -0xb9e9,CUS_0x643b,Standard -0xb9f5,CUS_0x3756,Standard -0xba01,CUS_0xb744,Standard -0xba0d,CUS_0x7e0e,Low -0xba19,CUS_0x7b94,Standard -0xba25,CUS_0xa905,High -0xba31,CUS_0x4fb5,High -0xba3d,CUS_0x2ad2,Standard -0xba49,CUS_0xbee4,High -0xba55,CUS_0xa977,Standard -0xba61,CUS_0x660c,Standard -0xba6d,CUS_0xc617,Standard -0xba79,CUS_0x5c94,High -0xba85,CUS_0xbb7e,Standard -0xba91,CUS_0x7ae9,Standard -0xba9d,CUS_0x3d8e,Standard -0xbaa9,CUS_0x6b6a,Standard -0xbab5,CUS_0x7910,Standard -0xbac1,CUS_0x43c3,High -0xbacd,CUS_0x5d7c,Standard -0xbad9,CUS_0x4905,Standard -0xbae5,CUS_0xa8ab,High -0xbaf1,CUS_0x5b0f,Low -0xbafd,CUS_0x7bf,Standard -0xbb09,CUS_0x9e3c,Standard -0xbb15,CUS_0x4e38,Low -0xbb21,CUS_0xbcdf,Low -0xbb2d,CUS_0x71d2,Standard -0xbb39,CUS_0x53cb,High -0xbb45,CUS_0x4a7,High -0xbb51,CUS_0xc1b8,High -0xbb5d,CUS_0xb339,High -0xbb69,CUS_0x7542,Standard -0xbb75,CUS_0x3f7d,Standard -0xbb81,CUS_0x35e4,High -0xbb8d,CUS_0x6397,High -0xbb99,CUS_0xaad,High -0xbba5,CUS_0x2358,Standard -0xbbb1,CUS_0xa833,Standard -0xbbbd,CUS_0x873b,Standard -0xbbc9,CUS_0xaa56,Standard -0xbbd5,CUS_0x5e3d,Standard -0xbbe1,CUS_0xa193,Standard -0xbbed,CUS_0x5f6e,High -0xbbf9,CUS_0xa664,Low -0xbc05,CUS_0x7473,Low -0xbc11,CUS_0x97da,High -0xbc1d,CUS_0x31e3,Standard -0xbc29,CUS_0x4904,High -0xbc35,CUS_0xb1dd,Standard -0xbc41,CUS_0x9466,High -0xbc4d,CUS_0xa7b6,Standard -0xbc59,CUS_0x8ba3,Standard -0xbc65,CUS_0x3e6d,Low -0xbc71,CUS_0x6f84,Standard -0xbc7d,CUS_0x5632,Standard -0xbc89,CUS_0xc530,Standard -0xbc95,CUS_0x272a,Standard -0xbca1,CUS_0x8d9a,Standard -0xbcad,CUS_0x481d,Low -0xbcb9,CUS_0xbf8,Standard -0xbcc5,CUS_0x2d93,High -0xbcd1,CUS_0x3b9e,Standard -0xbcdd,CUS_0x64c8,Standard -0xbce9,CUS_0xc2fd,Standard -0xbcf5,CUS_0xaef8,Standard -0xbd01,CUS_0x367d,High -0xbd0d,CUS_0x316a,Standard -0xbd19,CUS_0x3bac,Low -0xbd25,CUS_0x4602,High -0xbd31,CUS_0x17ec,Low -0xbd3d,CUS_0xa10f,High -0xbd49,CUS_0x7bee,Standard -0xbd55,CUS_0x301b,Standard -0xbd61,CUS_0xb3f2,Standard -0xbd6d,CUS_0xbe62,High -0xbd79,CUS_0x83e,Standard -0xbd85,CUS_0x5bd2,Standard -0xbd91,CUS_0x644e,Standard -0xbd9d,CUS_0x918d,Standard -0xbda9,CUS_0x28a4,Standard -0xbdb5,CUS_0x40a3,Standard -0xbdc1,CUS_0x3e54,Low -0xbdcd,CUS_0x8245,Low -0xbdd9,CUS_0x939a,High -0xbde5,CUS_0x1699,High -0xbdf1,CUS_0x843d,Standard -0xbdfd,CUS_0x7d48,Standard -0xbe09,CUS_0xa96d,High -0xbe15,CUS_0xaef3,Low -0xbe21,CUS_0x98c3,High -0xbe2d,CUS_0x7fa8,High -0xbe39,CUS_0x43f8,Standard -0xbe45,CUS_0xc24a,Low -0xbe51,CUS_0x6359,Standard -0xbe5d,CUS_0xad69,Standard -0xbe69,CUS_0xa8ec,Low -0xbe75,CUS_0xa2a7,High -0xbe81,CUS_0x1f43,Standard -0xbe8d,CUS_0x617b,Standard -0xbe99,CUS_0x6d37,Standard -0xbea5,CUS_0x1ab3,Standard -0xbeb1,CUS_0x2924,Standard -0xbebd,CUS_0xbc50,Standard -0xbec9,CUS_0x38c6,Standard -0xbed5,CUS_0x6799,High -0xbee1,CUS_0x2be1,Standard -0xbeed,CUS_0x34b6,High -0xbef9,CUS_0x4795,Standard -0xbf05,CUS_0x3c24,Standard -0xbf11,CUS_0x319c,Standard -0xbf1d,CUS_0x7b38,High -0xbf29,CUS_0x4329,Standard -0xbf35,CUS_0x1595,Standard -0xbf41,CUS_0x7bf8,Standard -0xbf4d,CUS_0x4967,High -0xbf59,CUS_0x4ceb,Standard -0xbf65,CUS_0x13e4,Standard -0xbf71,CUS_0xaf8d,Standard -0xbf7d,CUS_0x1b29,Standard -0xbf89,CUS_0x5c0f,Standard -0xbf95,CUS_0xae0a,Low -0xbfa1,CUS_0x697a,Standard -0xbfad,CUS_0x6000,Standard -0xbfb9,CUS_0x54a7,Standard -0xbfc5,CUS_0xa69,High -0xbfd1,CUS_0x512e,High -0xbfdd,CUS_0xaeec,High -0xbfe9,CUS_0x128e,Standard -0xbff5,CUS_0x7d18,Standard -0xc001,CUS_0x59b6,Low -0xc00d,CUS_0x773,Standard -0xc019,CUS_0x42ab,High -0xc025,CUS_0x4bfb,Standard -0xc031,CUS_0x57ca,Standard -0xc03d,CUS_0x76ed,Low -0xc049,CUS_0x6e23,High -0xc055,CUS_0x460a,High -0xc061,CUS_0xba8,High -0xc06d,CUS_0xa95d,Standard -0xc079,CUS_0x7091,High -0xc085,CUS_0x589c,Standard -0xc091,CUS_0x8907,Low -0xc09d,CUS_0x41c1,Standard -0xc0a9,CUS_0xb971,Standard -0xc0b5,CUS_0x6ea0,Standard -0xc0c1,CUS_0x4237,Standard -0xc0cd,CUS_0x2aff,Standard -0xc0d9,CUS_0x288d,Standard -0xc0e5,CUS_0x4565,Standard -0xc0f1,CUS_0x5764,High -0xc0fd,CUS_0x65d7,High -0xc109,CUS_0x837f,Standard -0xc115,CUS_0x9748,High -0xc121,CUS_0xb131,High -0xc12d,CUS_0xab77,Low -0xc139,CUS_0x4ddb,High -0xc145,CUS_0x4517,Low -0xc151,CUS_0xb9fd,Low -0xc15d,CUS_0x36a0,Low -0xc169,CUS_0x6883,Low -0xc175,CUS_0xb222,High -0xc181,CUS_0xa922,Standard -0xc18d,CUS_0x50a2,Standard -0xc199,CUS_0xa9d2,Standard -0xc1a5,CUS_0xabd,Standard -0xc1b1,CUS_0x7f10,High -0xc1bd,CUS_0xaa80,Standard -0xc1c9,CUS_0x3b9a,Standard -0xc1d5,CUS_0x9cec,High -0xc1e1,CUS_0xa8d7,High -0xc1ed,CUS_0xa587,High -0xc1f9,CUS_0x868,High -0xc205,CUS_0x7633,High -0xc211,CUS_0x46d1,Standard -0xc21d,CUS_0x1354,High -0xc229,CUS_0x7380,Standard -0xc235,CUS_0xb2bf,Standard -0xc241,CUS_0x1fb5,Standard -0xc24d,CUS_0x9a06,Standard -0xc259,CUS_0x98a8,Standard -0xc265,CUS_0xbbc6,Standard -0xc271,CUS_0x250b,High -0xc27d,CUS_0xafe1,Low -0xc289,CUS_0x526a,Standard -0xc295,CUS_0x89d0,High -0xc2a1,CUS_0x5fc2,Standard -0xc2ad,CUS_0x8e9c,Low -0xc2b9,CUS_0x7611,Low -0xc2c5,CUS_0x6237,High -0xc2d1,CUS_0x7b75,High -0xc2dd,CUS_0xed8,Standard -0xc2e9,CUS_0x1416,Standard -0xc2f5,CUS_0x1b8a,Low -0xc301,CUS_0x1a2a,Standard -0xc30d,CUS_0x413,Standard -0xc319,CUS_0x403d,Standard -0xc325,CUS_0x2997,Standard -0xc331,CUS_0x23eb,Standard -0xc33d,CUS_0x46bd,High -0xc349,CUS_0x7be2,Standard -0xc355,CUS_0xa3b4,Standard -0xc361,CUS_0x7f3f,Standard -0xc36d,CUS_0x6947,Standard -0xc379,CUS_0x4da0,Standard -0xc385,CUS_0x3def,Low -0xc391,CUS_0x972d,Standard -0xc39d,CUS_0x3815,Low -0xc3a9,CUS_0x2f08,Standard -0xc3b5,CUS_0x9ffa,Low -0xc3c1,CUS_0x3e35,Low -0xc3cd,CUS_0x6034,Low -0xc3d9,CUS_0x935b,Standard -0xc3e5,CUS_0x6473,Standard -0xc3f1,CUS_0xc2d8,Low -0xc3fd,CUS_0x452f,High -0xc409,CUS_0x7b2d,Low -0xc415,CUS_0x5e34,Standard -0xc421,CUS_0x17ff,Standard -0xc42d,CUS_0x3e9c,Standard -0xc439,CUS_0x8783,Standard -0xc445,CUS_0x2934,Low -0xc451,CUS_0x71bc,High -0xc45d,CUS_0x1968,High -0xc469,CUS_0x7238,Standard -0xc475,CUS_0xc09f,Standard -0xc481,CUS_0x94ea,Standard -0xc48d,CUS_0xbd32,High -0xc499,CUS_0x48a4,Low -0xc4a5,CUS_0x4a6,High -0xc4b1,CUS_0x4a43,High -0xc4bd,CUS_0xad1b,Low -0xc4c9,CUS_0x4de6,Low -0xc4d5,CUS_0x4a3d,Standard -0xc4e1,CUS_0x3e47,Standard -0xc4ed,CUS_0x2064,Standard -0xc4f9,CUS_0x26d2,Low -0xc505,CUS_0x9ee5,Standard -0xc511,CUS_0x4395,Standard -0xc51d,CUS_0x697f,High -0xc529,CUS_0xc730,Standard -0xc535,CUS_0xc39d,Standard -0xc541,CUS_0x214c,Standard -0xc54d,CUS_0x8b1f,Standard -0xc559,CUS_0x1d3d,High -0xc565,CUS_0xe98,Low -0xc571,CUS_0x6e3e,High -0xc57d,CUS_0x5117,High -0xc589,CUS_0x1087,Standard -0xc595,CUS_0xa7be,Low -0xc5a1,CUS_0x10a9,Standard -0xc5ad,CUS_0x2aa8,Low -0xc5b9,CUS_0x6f88,High -0xc5c5,CUS_0x5ee7,High -0xc5d1,CUS_0x236b,Standard -0xc5dd,CUS_0x75ff,High -0xc5e9,CUS_0xbf99,Low -0xc5f5,CUS_0x273e,High -0xc601,CUS_0x1769,Low -0xc60d,CUS_0x41f4,High -0xc619,CUS_0x894e,Standard -0xc625,CUS_0x42eb,High -0xc631,CUS_0x1e52,Standard -0xc63d,CUS_0x72b7,Standard -0xc649,CUS_0xf7d,High -0xc655,CUS_0x6579,High -0xc661,CUS_0x6d1a,High -0xc66d,CUS_0x24f6,Standard -0xc679,CUS_0x90be,Standard -0xc685,CUS_0x6ab5,Standard -0xc691,CUS_0x63b1,Standard -0xc69d,CUS_0x804e,Standard -0xc6a9,CUS_0xae42,Low -0xc6b5,CUS_0x4e0e,Low -0xc6c1,CUS_0x73cf,High -0xc6cd,CUS_0xc2e8,High -0xc6d9,CUS_0x83c3,High -0xc6e5,CUS_0x2312,Low -0xc6f1,CUS_0x73d5,Low -0xc6fd,CUS_0xaf81,High -0xc709,CUS_0x9cd7,High -0xc715,CUS_0x48d4,Standard -0xc721,CUS_0x2c15,Standard -0xc72d,CUS_0x2ee0,Standard -0xc739,CUS_0xc106,Standard -0xc745,CUS_0x8894,Standard -0xc751,CUS_0x9019,High -0xc75d,CUS_0x937d,Standard -0xc769,CUS_0xade3,Standard -0xc775,CUS_0x4d9c,High -0xc781,CUS_0x98a,High -0xc78d,CUS_0x2c2d,Standard -0xc799,CUS_0xb471,High -0xc7a5,CUS_0xb4c5,Standard -0xc7b1,CUS_0x510d,Standard -0xc7bd,CUS_0x4f2a,Low -0xc7c9,CUS_0xb7d4,Low -0xc7d5,CUS_0x3121,Low -0xc7e1,CUS_0xc3cd,Standard -0xc7ed,CUS_0x6191,High -0xc7f9,CUS_0xa65,High -0xc805,CUS_0xaf4c,Standard -0xc811,CUS_0x90cf,Standard -0xc81d,CUS_0x686c,Standard -0xc829,CUS_0xad30,High -0xc835,CUS_0x58c5,Standard -0xc841,CUS_0x60c8,Standard -0xc84d,CUS_0x3aa8,High -0xc859,CUS_0x8a89,Low -0xc865,CUS_0xc190,High -0xc871,CUS_0x9eb6,Standard -0xc87d,CUS_0x56d3,High -0xc889,CUS_0x5105,Low -0xc895,CUS_0xabf0,High -0xc8a1,CUS_0x2c34,Standard -0xc8ad,CUS_0x8593,Low -0xc8b9,CUS_0x30ae,High -0xc8c5,CUS_0x533b,Standard -0xc8d1,CUS_0x3b22,Standard -0xc8dd,CUS_0x46c3,Standard -0xc8e9,CUS_0xa2c1,Standard -0xc8f5,CUS_0xa294,Standard -0xc901,CUS_0x8a63,Low -0xc90d,CUS_0x8d5e,High -0xc919,CUS_0x80bb,High -0xc925,CUS_0x3e73,Standard -0xc931,CUS_0x3fe8,High -0xc93d,CUS_0x8998,Low -0xc949,CUS_0x82e5,Standard -0xc955,CUS_0x23f3,High -0xc961,CUS_0x8d3,Standard -0xc96d,CUS_0x994c,Standard -0xc979,CUS_0xc566,Standard -0xc985,CUS_0x8109,High -0xc991,CUS_0xaf3a,High -0xc99d,CUS_0x10b3,Low -0xc9a9,CUS_0x86a,High -0xc9b5,CUS_0x423c,Standard -0xc9c1,CUS_0x5b28,High -0xc9cd,CUS_0xae4b,Standard -0xc9d9,CUS_0x7977,High -0xc9e5,CUS_0xc7c,Standard -0xc9f1,CUS_0x4a94,High -0xc9fd,CUS_0x1134,Low -0xca09,CUS_0xbfb4,Low -0xca15,CUS_0x7884,High -0xca21,CUS_0x9b30,High -0xca2d,CUS_0x302f,Low -0xca39,CUS_0xaa8c,Standard -0xca45,CUS_0x93c8,High -0xca51,CUS_0xacca,Standard -0xca5d,CUS_0x3364,High -0xca69,CUS_0x90f0,High -0xca75,CUS_0xabf2,Standard -0xca81,CUS_0xb413,Standard -0xca8d,CUS_0x7b27,Standard -0xca99,CUS_0xb138,Standard -0xcaa5,CUS_0x1220,Low -0xcab1,CUS_0xabff,Low -0xcabd,CUS_0xb3ab,Low -0xcac9,CUS_0x8b4,Low -0xcad5,CUS_0x6939,Standard -0xcae1,CUS_0x89d3,Standard -0xcaed,CUS_0x976a,Standard -0xcaf9,CUS_0x76dc,Low -0xcb05,CUS_0x13eb,High -0xcb11,CUS_0x8447,Standard -0xcb1d,CUS_0xa46c,Standard -0xcb29,CUS_0x6c27,High -0xcb35,CUS_0x2767,Low -0xcb41,CUS_0x487b,High -0xcb4d,CUS_0x667a,High -0xcb59,CUS_0x13ec,Standard -0xcb65,CUS_0x3a0b,Standard -0xcb71,CUS_0x219b,High -0xcb7d,CUS_0xbf60,High -0xcb89,CUS_0x17fc,Low -0xcb95,CUS_0x69d9,Standard -0xcba1,CUS_0xc52c,Low -0xcbad,CUS_0x7d82,High -0xcbb9,CUS_0xedd,Standard -0xcbc5,CUS_0xa5e0,Standard -0xcbd1,CUS_0x5ede,Standard -0xcbdd,CUS_0x60c3,Low -0xcbe9,CUS_0x2344,High -0xcbf5,CUS_0x2803,Standard -0xcc01,CUS_0xaa35,Standard -0xcc0d,CUS_0x50df,Standard -0xcc19,CUS_0x2c32,High -0xcc25,CUS_0x34b5,Standard -0xcc31,CUS_0xbdc7,Standard -0xcc3d,CUS_0x2032,High -0xcc49,CUS_0xa34d,Standard -0xcc55,CUS_0xb5e2,High -0xcc61,CUS_0x9c19,High -0xcc6d,CUS_0x7e39,High -0xcc79,CUS_0x9bae,High -0xcc85,CUS_0xbcd8,Standard -0xcc91,CUS_0x6250,Standard -0xcc9d,CUS_0x4075,Standard -0xcca9,CUS_0x6d8,High -0xccb5,CUS_0xa27a,Standard -0xccc1,CUS_0x21f7,Low -0xcccd,CUS_0x3e2e,High -0xccd9,CUS_0x1535,Standard -0xcce5,CUS_0x6afc,Low -0xccf1,CUS_0xbc4b,Low -0xccfd,CUS_0x1de6,High -0xcd09,CUS_0x826e,High -0xcd15,CUS_0x4590,Standard -0xcd21,CUS_0xa437,Standard -0xcd2d,CUS_0xbdd9,Standard -0xcd39,CUS_0x5f3d,High -0xcd45,CUS_0x67bc,Standard -0xcd51,CUS_0x628d,High -0xcd5d,CUS_0x4b64,Standard -0xcd69,CUS_0xa7ea,Standard -0xcd75,CUS_0xa87f,Low -0xcd81,CUS_0x699f,Standard -0xcd8d,CUS_0x4982,Standard -0xcd99,CUS_0x9916,Low -0xcda5,CUS_0x2b06,Standard -0xcdb1,CUS_0x9344,High -0xcdbd,CUS_0xbfb6,Standard -0xcdc9,CUS_0x63d8,Standard -0xcdd5,CUS_0x8cd9,Standard -0xcde1,CUS_0x23e2,Standard -0xcded,CUS_0xb4a,Standard -0xcdf9,CUS_0x5417,Standard -0xce05,CUS_0x9375,High -0xce11,CUS_0x79ad,Standard -0xce1d,CUS_0x952a,Standard -0xce29,CUS_0xfaf,Low -0xce35,CUS_0x80c0,High -0xce41,CUS_0x2731,Low -0xce4d,CUS_0xb52f,Standard -0xce59,CUS_0x969b,Standard -0xce65,CUS_0x6f55,Low -0xce71,CUS_0x2855,High -0xce7d,CUS_0x9e8d,Standard -0xce89,CUS_0x48a3,Low -0xce95,CUS_0x5ef3,Low -0xcea1,CUS_0x6709,High -0xcead,CUS_0xb312,High -0xceb9,CUS_0x5629,High -0xcec5,CUS_0x6891,Standard -0xced1,CUS_0xc555,Standard -0xcedd,CUS_0x1e2d,Standard -0xcee9,CUS_0xb108,High -0xcef5,CUS_0x8d0,High -0xcf01,CUS_0x34d7,Standard -0xcf0d,CUS_0x8da1,Standard -0xcf19,CUS_0x3105,Standard -0xcf25,CUS_0x4e11,Standard -0xcf31,CUS_0x8ec5,High -0xcf3d,CUS_0xa13f,High -0xcf49,CUS_0x4143,High -0xcf55,CUS_0x564e,High -0xcf61,CUS_0x6c5c,Low -0xcf6d,CUS_0x2c81,Standard -0xcf79,CUS_0xa23d,Standard -0xcf85,CUS_0x2293,Standard -0xcf91,CUS_0x13a9,Low -0xcf9d,CUS_0x1c2a,Standard -0xcfa9,CUS_0x333e,Standard -0xcfb5,CUS_0x3ed1,Low -0xcfc1,CUS_0x6b82,High -0xcfcd,CUS_0x48e4,Low -0xcfd9,CUS_0x439a,Low -0xcfe5,CUS_0x759c,Low -0xcff1,CUS_0xbb69,Standard -0xcffd,CUS_0x592a,High -0xd009,CUS_0x3ef,High -0xd015,CUS_0x6b45,High -0xd021,CUS_0x9f52,High -0xd02d,CUS_0x50b5,High -0xd039,CUS_0x4a65,Standard -0xd045,CUS_0x1fe3,High -0xd051,CUS_0x8636,Standard -0xd05d,CUS_0x8090,Standard -0xd069,CUS_0x2617,Low -0xd075,CUS_0x6fb2,High -0xd081,CUS_0x39e0,Standard -0xd08d,CUS_0x4328,Standard -0xd099,CUS_0x8ff8,Standard -0xd0a5,CUS_0x2372,Standard -0xd0b1,CUS_0x6572,Standard -0xd0bd,CUS_0x9f43,Standard -0xd0c9,CUS_0x3518,Standard -0xd0d5,CUS_0xba90,Standard -0xd0e1,CUS_0xd4d,Standard -0xd0ed,CUS_0x72fe,High -0xd0f9,CUS_0x23a8,High -0xd105,CUS_0x420f,Standard -0xd111,CUS_0x3420,Low -0xd11d,CUS_0x2d1e,Low -0xd129,CUS_0x1f15,High -0xd135,CUS_0xb689,Standard -0xd141,CUS_0x7551,Standard -0xd14d,CUS_0x8858,High -0xd159,CUS_0x1a57,Standard -0xd165,CUS_0xb16,Standard -0xd171,CUS_0x94c5,Standard -0xd17d,CUS_0xae62,Standard -0xd189,CUS_0x5e1b,Standard -0xd195,CUS_0x8ac8,Standard -0xd1a1,CUS_0x7b2f,Standard -0xd1ad,CUS_0x6349,High -0xd1b9,CUS_0x1b09,Standard -0xd1c5,CUS_0x7976,Standard -0xd1d1,CUS_0x5b5,High -0xd1dd,CUS_0xb63e,Standard -0xd1e9,CUS_0x1c5d,Standard -0xd1f5,CUS_0x2de3,Standard -0xd201,CUS_0x2b7d,High -0xd20d,CUS_0x2c08,High -0xd219,CUS_0x97f7,Standard -0xd225,CUS_0x8f05,Low -0xd231,CUS_0x910e,High -0xd23d,CUS_0xc000,Low -0xd249,CUS_0x2a09,Standard -0xd255,CUS_0x62ad,High -0xd261,CUS_0x2217,Standard -0xd26d,CUS_0xb736,Standard -0xd279,CUS_0x9e51,Standard -0xd285,CUS_0x2fca,Low -0xd291,CUS_0x2483,Standard -0xd29d,CUS_0xc517,Standard -0xd2a9,CUS_0x8f6f,Low -0xd2b5,CUS_0xa86a,Standard -0xd2c1,CUS_0xafdf,Standard -0xd2cd,CUS_0x7067,Low -0xd2d9,CUS_0x6b9d,High -0xd2e5,CUS_0x6a33,High -0xd2f1,CUS_0x7a24,Standard -0xd2fd,CUS_0x4e52,Standard -0xd309,CUS_0x4425,High -0xd315,CUS_0x9e4d,Standard -0xd321,CUS_0xad7d,Standard -0xd32d,CUS_0x70b3,Standard -0xd339,CUS_0x4fc2,High -0xd345,CUS_0x53d6,Standard -0xd351,CUS_0x96e8,High -0xd35d,CUS_0x8680,Standard -0xd369,CUS_0x37db,Standard -0xd375,CUS_0x4f31,Low -0xd381,CUS_0x16d4,Low -0xd38d,CUS_0xb363,High -0xd399,CUS_0x6cd9,Low -0xd3a5,CUS_0x3e65,Standard -0xd3b1,CUS_0x69e0,High -0xd3bd,CUS_0x1589,Standard -0xd3c9,CUS_0x9c24,Standard -0xd3d5,CUS_0x4df9,High -0xd3e1,CUS_0x91c4,Standard -0xd3ed,CUS_0xc4f4,High -0xd3f9,CUS_0x54bc,Standard -0xd405,CUS_0x25f8,Standard -0xd411,CUS_0x4aa6,Standard -0xd41d,CUS_0x5e8f,Standard -0xd429,CUS_0x66e3,Standard -0xd435,CUS_0x6ae7,High -0xd441,CUS_0x69eb,High -0xd44d,CUS_0x1d33,High -0xd459,CUS_0x6503,Standard -0xd465,CUS_0x4488,Standard -0xd471,CUS_0x15dd,Standard -0xd47d,CUS_0x8af8,Low -0xd489,CUS_0x7b61,Standard -0xd495,CUS_0x90e7,Standard -0xd4a1,CUS_0x6054,Low -0xd4ad,CUS_0x4779,High -0xd4b9,CUS_0x4cdd,Low -0xd4c5,CUS_0x5000,Standard -0xd4d1,CUS_0x9ab4,Standard -0xd4dd,CUS_0x5387,Standard -0xd4e9,CUS_0x6b6,Low -0xd4f5,CUS_0x5d4c,Standard -0xd501,CUS_0x765,Standard -0xd50d,CUS_0x70bc,Standard -0xd519,CUS_0x2951,High -0xd525,CUS_0x2bfe,Standard -0xd531,CUS_0x9c82,Standard -0xd53d,CUS_0x2a8f,Standard -0xd549,CUS_0x8466,Standard -0xd555,CUS_0x451e,High -0xd561,CUS_0xae07,Low -0xd56d,CUS_0x169d,Standard -0xd579,CUS_0x7453,High -0xd585,CUS_0x6963,Standard -0xd591,CUS_0x46ea,Standard -0xd59d,CUS_0xb2ba,Standard -0xd5a9,CUS_0x6c92,High -0xd5b5,CUS_0x4a7a,Standard -0xd5c1,CUS_0x90fa,Standard -0xd5cd,CUS_0xbb02,High -0xd5d9,CUS_0x94b,High -0xd5e5,CUS_0x6669,High -0xd5f1,CUS_0x9087,Standard -0xd5fd,CUS_0x628,Low -0xd609,CUS_0x98e2,Standard -0xd615,CUS_0x9dc5,Low -0xd621,CUS_0x485e,Low -0xd62d,CUS_0x43cf,Standard -0xd639,CUS_0x55d3,High -0xd645,CUS_0x4588,Standard -0xd651,CUS_0xac16,Standard -0xd65d,CUS_0x6236,Standard -0xd669,CUS_0x5036,Standard -0xd675,CUS_0x8fac,Standard -0xd681,CUS_0x6ebb,Low -0xd68d,CUS_0x8880,Standard -0xd699,CUS_0x6d0e,Low -0xd6a5,CUS_0xb7c7,High -0xd6b1,CUS_0x5e29,Low -0xd6bd,CUS_0x2efd,Standard -0xd6c9,CUS_0x9987,High -0xd6d5,CUS_0x99ab,Standard -0xd6e1,CUS_0x35a2,Standard -0xd6ed,CUS_0x12ce,High -0xd6f9,CUS_0xbfd5,Standard -0xd705,CUS_0xbf2e,Standard -0xd711,CUS_0x5ab,Low -0xd71d,CUS_0xc74,Low -0xd729,CUS_0x2777,Standard -0xd735,CUS_0x81f2,Standard -0xd741,CUS_0xc204,High -0xd74d,CUS_0xa2d2,Standard -0xd759,CUS_0x2bc0,Standard -0xd765,CUS_0x23bf,Standard -0xd771,CUS_0x31e9,High -0xd77d,CUS_0x6203,Standard -0xd789,CUS_0x6a5f,Standard -0xd795,CUS_0xbfdb,Standard -0xd7a1,CUS_0x4ce7,Standard -0xd7ad,CUS_0x7de1,High -0xd7b9,CUS_0x31b8,Standard -0xd7c5,CUS_0x8388,Standard -0xd7d1,CUS_0x26fd,Low -0xd7dd,CUS_0x8d46,High -0xd7e9,CUS_0xcf5,Standard -0xd7f5,CUS_0xb3e3,Low -0xd801,CUS_0x3215,High -0xd80d,CUS_0x44e,Standard -0xd819,CUS_0xb14d,Standard -0xd825,CUS_0x2be8,Standard -0xd831,CUS_0xc206,High -0xd83d,CUS_0x589f,Standard -0xd849,CUS_0x3d10,High -0xd855,CUS_0x8353,Low -0xd861,CUS_0x1e41,Low -0xd86d,CUS_0x7bff,High -0xd879,CUS_0x5d34,Standard -0xd885,CUS_0x1bef,Low -0xd891,CUS_0x7d45,Standard -0xd89d,CUS_0xac7e,Low -0xd8a9,CUS_0x7279,Low -0xd8b5,CUS_0x2d3a,Standard -0xd8c1,CUS_0x871,Low -0xd8cd,CUS_0x8750,Standard -0xd8d9,CUS_0x85e7,Low -0xd8e5,CUS_0x3acd,High -0xd8f1,CUS_0xc461,Standard -0xd8fd,CUS_0x890,High -0xd909,CUS_0x58f7,Standard -0xd915,CUS_0x25f5,Standard -0xd921,CUS_0x2594,Low -0xd92d,CUS_0x4674,High -0xd939,CUS_0x5a2,High -0xd945,CUS_0x35c8,High -0xd951,CUS_0x87d0,High -0xd95d,CUS_0x48f2,Standard -0xd969,CUS_0x2eb4,High -0xd975,CUS_0x7863,High -0xd981,CUS_0x9d89,Standard -0xd98d,CUS_0xc045,Low -0xd999,CUS_0x932c,High -0xd9a5,CUS_0x1f33,Standard -0xd9b1,CUS_0xc70,Standard -0xd9bd,CUS_0xb0c9,High -0xd9c9,CUS_0x3bb8,High -0xd9d5,CUS_0x11c0,Low -0xd9e1,CUS_0x92ec,Standard -0xd9ed,CUS_0x7edb,Standard -0xd9f9,CUS_0x7c79,Low -0xda05,CUS_0x9485,High -0xda11,CUS_0x50ee,High -0xda1d,CUS_0xbfed,High -0xda29,CUS_0x2507,Low -0xda35,CUS_0x3e36,High -0xda41,CUS_0x7872,High -0xda4d,CUS_0x8417,Standard -0xda59,CUS_0x26f5,Standard -0xda65,CUS_0x5c6d,Low -0xda71,CUS_0x99f7,Low -0xda7d,CUS_0x14f5,High -0xda89,CUS_0xb351,Low -0xda95,CUS_0x4f10,High -0xdaa1,CUS_0xa463,Standard -0xdaad,CUS_0x2fbe,Standard -0xdab9,CUS_0x7ad8,High -0xdac5,CUS_0xc1a1,High -0xdad1,CUS_0x69d5,High -0xdadd,CUS_0x38c0,High -0xdae9,CUS_0x447b,High -0xdaf5,CUS_0x2cd4,High -0xdb01,CUS_0xa396,Standard -0xdb0d,CUS_0x17d7,Standard -0xdb19,CUS_0xc13,Standard -0xdb25,CUS_0xc1b4,Low -0xdb31,CUS_0xb61d,Standard -0xdb3d,CUS_0xbd46,Standard -0xdb49,CUS_0x2a91,Standard -0xdb55,CUS_0x4036,Standard -0xdb61,CUS_0x7447,Standard -0xdb6d,CUS_0x468b,Standard -0xdb79,CUS_0x7bc3,Standard -0xdb85,CUS_0x8f3a,High -0xdb91,CUS_0x2d1a,Standard -0xdb9d,CUS_0xa962,Standard -0xdba9,CUS_0x78ab,Standard -0xdbb5,CUS_0x27e8,Standard -0xdbc1,CUS_0x17b5,Low -0xdbcd,CUS_0x614e,Standard -0xdbd9,CUS_0x1234,Standard -0xdbe5,CUS_0x19a3,Standard -0xdbf1,CUS_0x9886,Low -0xdbfd,CUS_0xb32c,Standard -0xdc09,CUS_0xb734,Standard -0xdc15,CUS_0x6f9b,Standard -0xdc21,CUS_0x64b,Standard -0xdc2d,CUS_0x5aa1,Standard -0xdc39,CUS_0x982e,Standard -0xdc45,CUS_0x16f5,Low -0xdc51,CUS_0x19c1,Standard -0xdc5d,CUS_0xbfc1,Standard -0xdc69,CUS_0xc63b,Standard -0xdc75,CUS_0x84d1,Standard -0xdc81,CUS_0xb910,Standard -0xdc8d,CUS_0x9215,Standard -0xdc99,CUS_0x7f67,Low -0xdca5,CUS_0x744c,Standard -0xdcb1,CUS_0x2ccb,Standard -0xdcbd,CUS_0xae0b,High -0xdcc9,CUS_0x93c9,Standard -0xdcd5,CUS_0x1470,Low -0xdce1,CUS_0x44e0,Standard -0xdced,CUS_0x5451,Standard -0xdcf9,CUS_0x12a9,Standard -0xdd05,CUS_0x1cb8,Standard -0xdd11,CUS_0x3221,Standard -0xdd1d,CUS_0x289d,Standard -0xdd29,CUS_0x7640,Standard -0xdd35,CUS_0x8763,High -0xdd41,CUS_0x4dd1,Low -0xdd4d,CUS_0xb5c6,Standard -0xdd59,CUS_0x58d4,Low -0xdd65,CUS_0x4c80,Low -0xdd71,CUS_0xb7a7,Standard -0xdd7d,CUS_0xa0cd,Standard -0xdd89,CUS_0xc23c,High -0xdd95,CUS_0x1f74,Low -0xdda1,CUS_0x72a8,Standard -0xddad,CUS_0x4491,Standard -0xddb9,CUS_0x6cf3,Standard -0xddc5,CUS_0xb127,Low -0xddd1,CUS_0x49b8,Standard -0xdddd,CUS_0x627f,High -0xdde9,CUS_0x48c5,High -0xddf5,CUS_0x38e6,High -0xde01,CUS_0x387e,Standard -0xde0d,CUS_0x2d84,High -0xde19,CUS_0x3f0,Standard -0xde25,CUS_0x3597,Standard -0xde31,CUS_0x4845,Low -0xde3d,CUS_0x5ae1,High -0xde49,CUS_0x7a50,Low -0xde55,CUS_0x4ad9,High -0xde61,CUS_0xc65a,Low -0xde6d,CUS_0xbef7,High -0xde79,CUS_0xb50f,Standard -0xde85,CUS_0x2808,Low -0xde91,CUS_0x2a60,Standard -0xde9d,CUS_0xa2b8,Standard -0xdea9,CUS_0x3c5f,Standard -0xdeb5,CUS_0x25c0,Standard -0xdec1,CUS_0x5548,Low -0xdecd,CUS_0x3650,Standard -0xded9,CUS_0x2e1a,Standard -0xdee5,CUS_0xaadb,Standard -0xdef1,CUS_0x3331,High -0xdefd,CUS_0x2c5b,Standard -0xdf09,CUS_0xab0e,Standard -0xdf15,CUS_0x5382,Standard -0xdf21,CUS_0x2996,Low -0xdf2d,CUS_0x544f,High -0xdf39,CUS_0x4068,Standard -0xdf45,CUS_0xb970,Standard -0xdf51,CUS_0x1b42,Low -0xdf5d,CUS_0xa3b8,Standard -0xdf69,CUS_0x3f7,Standard -0xdf75,CUS_0x9ac5,High -0xdf81,CUS_0x69bb,High -0xdf8d,CUS_0x2000,Standard -0xdf99,CUS_0x58ed,Standard -0xdfa5,CUS_0x92f0,High -0xdfb1,CUS_0xa8c9,Low -0xdfbd,CUS_0x7cc7,Standard -0xdfc9,CUS_0x58e3,Standard -0xdfd5,CUS_0xc57,Standard -0xdfe1,CUS_0x57a7,Standard -0xdfed,CUS_0x6d55,Standard -0xdff9,CUS_0x4798,Standard -0xe005,CUS_0x3c46,Standard -0xe011,CUS_0x103e,Low -0xe01d,CUS_0x71aa,High -0xe029,CUS_0x8e1a,Standard -0xe035,CUS_0x825b,Standard -0xe041,CUS_0x8e88,Standard -0xe04d,CUS_0x987c,High -0xe059,CUS_0x2255,High -0xe065,CUS_0x846a,Standard -0xe071,CUS_0xc127,Standard -0xe07d,CUS_0x9b85,Standard -0xe089,CUS_0x6808,High -0xe095,CUS_0x906a,Standard -0xe0a1,CUS_0xb1bc,High -0xe0ad,CUS_0x4b42,Standard -0xe0b9,CUS_0x847b,High -0xe0c5,CUS_0x66a1,Standard -0xe0d1,CUS_0x61a6,Standard -0xe0dd,CUS_0x1a56,Standard -0xe0e9,CUS_0x1d9a,Standard -0xe0f5,CUS_0x424c,Standard -0xe101,CUS_0x5a5a,Standard -0xe10d,CUS_0x3c09,Low -0xe119,CUS_0x75c4,High -0xe125,CUS_0x70d0,Standard -0xe131,CUS_0x362a,Low -0xe13d,CUS_0x53e0,Low -0xe149,CUS_0xac31,Low -0xe155,CUS_0x6928,High -0xe161,CUS_0xe18,High -0xe16d,CUS_0xaed2,High -0xe179,CUS_0x88a6,High -0xe185,CUS_0x798f,Low -0xe191,CUS_0x64ae,Standard -0xe19d,CUS_0x1ed5,High -0xe1a9,CUS_0x853f,Low -0xe1b5,CUS_0xa319,Standard -0xe1c1,CUS_0x6d40,Standard -0xe1cd,CUS_0x3b4c,Standard -0xe1d9,CUS_0x1b6d,High -0xe1e5,CUS_0x7736,Standard -0xe1f1,CUS_0xb928,Standard -0xe1fd,CUS_0xb805,Standard -0xe209,CUS_0x3b52,Low -0xe215,CUS_0x6112,Low -0xe221,CUS_0xa011,High -0xe22d,CUS_0x4c44,High -0xe239,CUS_0x925d,High -0xe245,CUS_0xc283,High -0xe251,CUS_0x5447,Standard -0xe25d,CUS_0xccf,Standard -0xe269,CUS_0x3586,Standard -0xe275,CUS_0x83fb,Standard -0xe281,CUS_0x6754,High -0xe28d,CUS_0x2fb0,Standard -0xe299,CUS_0xb60f,Low -0xe2a5,CUS_0x6d15,Standard -0xe2b1,CUS_0x4037,Standard -0xe2bd,CUS_0x7c59,Low -0xe2c9,CUS_0x464f,Standard -0xe2d5,CUS_0x38cd,Standard -0xe2e1,CUS_0xc165,Low -0xe2ed,CUS_0x7231,High -0xe2f9,CUS_0xc70e,Low -0xe305,CUS_0x6e98,Standard -0xe311,CUS_0x6aea,High -0xe31d,CUS_0x5ea7,High -0xe329,CUS_0xa660,Standard -0xe335,CUS_0x9e48,Standard -0xe341,CUS_0x7a8d,Standard -0xe34d,CUS_0x180f,Standard -0xe359,CUS_0x52b7,High -0xe365,CUS_0x6635,Standard -0xe371,CUS_0x5162,Standard -0xe37d,CUS_0xbd5b,Standard -0xe389,CUS_0x66f5,High -0xe395,CUS_0x24e0,Standard -0xe3a1,CUS_0x35c6,Standard -0xe3ad,CUS_0x9014,Low -0xe3b9,CUS_0x3e4d,High -0xe3c5,CUS_0x78c2,Standard -0xe3d1,CUS_0x30ee,Standard -0xe3dd,CUS_0x6b1d,Standard -0xe3e9,CUS_0xb5b9,Standard -0xe3f5,CUS_0x2d22,High -0xe401,CUS_0x25cd,High -0xe40d,CUS_0x38f3,Standard -0xe419,CUS_0x5e53,Standard -0xe425,CUS_0x54fd,Standard -0xe431,CUS_0x7f47,Low -0xe43d,CUS_0x3c3a,Standard -0xe449,CUS_0x8511,Low -0xe455,CUS_0x6cce,High -0xe461,CUS_0x7d6,Standard -0xe46d,CUS_0x390d,Standard -0xe479,CUS_0x903b,Standard -0xe485,CUS_0x17d1,Standard -0xe491,CUS_0x9185,Standard -0xe49d,CUS_0x7181,Standard -0xe4a9,CUS_0x9570,Standard -0xe4b5,CUS_0x5df7,Standard -0xe4c1,CUS_0x6f62,High -0xe4cd,CUS_0xa8b1,Standard -0xe4d9,CUS_0x262e,Standard -0xe4e5,CUS_0xb2c,High -0xe4f1,CUS_0x328b,Standard -0xe4fd,CUS_0x6831,High -0xe509,CUS_0x22cf,High -0xe515,CUS_0xd07,Standard -0xe521,CUS_0xb01a,High -0xe52d,CUS_0xabd8,High -0xe539,CUS_0x6ced,High -0xe545,CUS_0x1ae8,Low -0xe551,CUS_0x8d6b,Standard -0xe55d,CUS_0x24f8,High -0xe569,CUS_0x8b98,Standard -0xe575,CUS_0x5786,Standard -0xe581,CUS_0x2a11,Standard -0xe58d,CUS_0xa04b,Standard -0xe599,CUS_0xc38f,High -0xe5a5,CUS_0x9ede,Standard -0xe5b1,CUS_0x5f90,High -0xe5bd,CUS_0x8bde,Low -0xe5c9,CUS_0x1d2c,Standard -0xe5d5,CUS_0x9db8,Standard -0xe5e1,CUS_0xa1ec,Low -0xe5ed,CUS_0x337d,High -0xe5f9,CUS_0xada1,Low -0xe605,CUS_0xa90d,Standard -0xe611,CUS_0x6ec7,Low -0xe61d,CUS_0xb448,High -0xe629,CUS_0x846e,Standard -0xe635,CUS_0xbad6,Low -0xe641,CUS_0x1efc,Standard -0xe64d,CUS_0x8a68,High -0xe659,CUS_0x4f3e,Standard -0xe665,CUS_0x2697,Standard -0xe671,CUS_0x85e9,Standard -0xe67d,CUS_0x379e,Standard -0xe689,CUS_0x4b82,Standard -0xe695,CUS_0x3c8b,Standard -0xe6a1,CUS_0xe5b,Standard -0xe6ad,CUS_0xac28,Standard -0xe6b9,CUS_0x745a,Standard -0xe6c5,CUS_0x21e4,Standard -0xe6d1,CUS_0x7527,High -0xe6dd,CUS_0x18e2,Standard -0xe6e9,CUS_0x74c7,Low -0xe6f5,CUS_0x34ce,Standard -0xe701,CUS_0x3fc5,High -0xe70d,CUS_0x9c99,High -0xe719,CUS_0x8a20,Low -0xe725,CUS_0x55cd,Standard -0xe731,CUS_0x47b,Standard -0xe73d,CUS_0x5b84,High -0xe749,CUS_0xb196,Standard -0xe755,CUS_0x6e5d,High -0xe761,CUS_0x4314,Low -0xe76d,CUS_0x754c,Standard -0xe779,CUS_0xab1f,High -0xe785,CUS_0x2816,Standard -0xe791,CUS_0xbca4,Low -0xe79d,CUS_0x6983,High -0xe7a9,CUS_0x7c2f,High -0xe7b5,CUS_0x1a03,Standard -0xe7c1,CUS_0x6ada,Low -0xe7cd,CUS_0xab61,Standard -0xe7d9,CUS_0x11e2,Low -0xe7e5,CUS_0x14ea,Low -0xe7f1,CUS_0xa127,Standard -0xe7fd,CUS_0xabc0,Standard -0xe809,CUS_0x3e51,High -0xe815,CUS_0x2a45,Standard -0xe821,CUS_0x5fab,Standard -0xe82d,CUS_0x211c,Standard -0xe839,CUS_0x30db,Standard -0xe845,CUS_0x1833,Standard -0xe851,CUS_0x15e7,Standard -0xe85d,CUS_0x32e4,High -0xe869,CUS_0xa182,Standard -0xe875,CUS_0x2fa7,High -0xe881,CUS_0x5e59,Standard -0xe88d,CUS_0xb7e,Standard -0xe899,CUS_0x9bef,Low -0xe8a5,CUS_0xc47,Standard -0xe8b1,CUS_0x8af0,High -0xe8bd,CUS_0x7429,Low -0xe8c9,CUS_0xa899,High -0xe8d5,CUS_0x23cc,High -0xe8e1,CUS_0x40c5,Low -0xe8ed,CUS_0x2df7,Standard -0xe8f9,CUS_0x781a,Standard -0xe905,CUS_0x54bd,Low -0xe911,CUS_0x8f0c,Standard -0xe91d,CUS_0xa1a2,High -0xe929,CUS_0x97e1,High -0xe935,CUS_0x6b8,Standard -0xe941,CUS_0x3149,High -0xe94d,CUS_0x44aa,Low -0xe959,CUS_0x3ae7,High -0xe965,CUS_0x66bc,High -0xe971,CUS_0x2907,Standard -0xe97d,CUS_0x8207,High -0xe989,CUS_0xb725,High -0xe995,CUS_0xb446,High -0xe9a1,CUS_0xba51,Standard -0xe9ad,CUS_0x2e4c,Standard -0xe9b9,CUS_0x3a03,Standard -0xe9c5,CUS_0xdd3,Low -0xe9d1,CUS_0x77da,High -0xe9dd,CUS_0x4154,High -0xe9e9,CUS_0x9449,High -0xe9f5,CUS_0x5067,Low -0xea01,CUS_0x3c55,Standard -0xea0d,CUS_0x61d1,High -0xea19,CUS_0xc4f9,Standard -0xea25,CUS_0x4af1,Standard -0xea31,CUS_0x627a,Low -0xea3d,CUS_0x33b8,High -0xea49,CUS_0x89a6,Low -0xea55,CUS_0x3201,Standard -0xea61,CUS_0x4717,Standard -0xea6d,CUS_0x70f7,Standard -0xea79,CUS_0x8009,Standard -0xea85,CUS_0x355f,Standard -0xea91,CUS_0xb875,Low -0xea9d,CUS_0xcb3,Standard -0xeaa9,CUS_0x96a2,Standard -0xeab5,CUS_0x97fc,Standard -0xeac1,CUS_0x9395,Standard -0xeacd,CUS_0xa8ed,High -0xead9,CUS_0x8a31,High -0xeae5,CUS_0xb6aa,Standard -0xeaf1,CUS_0x6160,Standard -0xeafd,CUS_0x529c,Low -0xeb09,CUS_0x7486,High -0xeb15,CUS_0x320e,Standard -0xeb21,CUS_0x98e6,Standard -0xeb2d,CUS_0x3003,High -0xeb39,CUS_0x39ad,Standard -0xeb45,CUS_0x6ef,Standard -0xeb51,CUS_0x64d6,High -0xeb5d,CUS_0x4574,Standard -0xeb69,CUS_0x7348,Low -0xeb75,CUS_0x81f4,High -0xeb81,CUS_0xc702,Standard -0xeb8d,CUS_0x51bf,Standard -0xeb99,CUS_0x290b,High -0xeba5,CUS_0x4b89,Standard -0xebb1,CUS_0xb7c4,High -0xebbd,CUS_0xaa5b,High -0xebc9,CUS_0x569b,Standard -0xebd5,CUS_0x1d6f,Standard -0xebe1,CUS_0x792b,Standard -0xebed,CUS_0x6689,Standard -0xebf9,CUS_0x6ba3,Low -0xec05,CUS_0xbce2,Standard -0xec11,CUS_0xbc05,High -0xec1d,CUS_0x5b22,Standard -0xec29,CUS_0x995d,High -0xec35,CUS_0x82bd,Low -0xec41,CUS_0x56c,Standard -0xec4d,CUS_0xb743,Standard -0xec59,CUS_0x53f7,Standard -0xec65,CUS_0x1d72,Standard -0xec71,CUS_0xa0c8,Standard -0xec7d,CUS_0x9297,Low -0xec89,CUS_0x848d,Standard -0xec95,CUS_0x8159,Low -0xeca1,CUS_0x30c6,Standard -0xecad,CUS_0x6fbe,Standard -0xecb9,CUS_0x6dfc,Standard -0xecc5,CUS_0x498a,Standard -0xecd1,CUS_0xa2b0,Low -0xecdd,CUS_0x4269,Standard -0xece9,CUS_0xc6f9,High -0xecf5,CUS_0x9648,Standard -0xed01,CUS_0x57f7,High -0xed0d,CUS_0xbc23,Standard -0xed19,CUS_0x7b62,High -0xed25,CUS_0x71ab,High -0xed31,CUS_0x4a97,Standard -0xed3d,CUS_0x253c,High -0xed49,CUS_0x2527,Standard -0xed55,CUS_0x989e,Standard -0xed61,CUS_0x33ba,Low -0xed6d,CUS_0x7f73,Low -0xed79,CUS_0x8049,Standard -0xed85,CUS_0x76af,Standard -0xed91,CUS_0xaf47,Standard -0xed9d,CUS_0x5cd2,High -0xeda9,CUS_0x9f8a,High -0xedb5,CUS_0x1249,Standard -0xedc1,CUS_0x5c92,High -0xedcd,CUS_0x35b9,Standard -0xedd9,CUS_0x2219,Low -0xede5,CUS_0xa1c1,High -0xedf1,CUS_0xa843,Standard -0xedfd,CUS_0x228d,Standard -0xee09,CUS_0x3d57,High -0xee15,CUS_0x810,Standard -0xee21,CUS_0x60e3,Standard -0xee2d,CUS_0xc216,Standard -0xee39,CUS_0x6df9,Standard -0xee45,CUS_0x6ad2,Standard -0xee51,CUS_0x48f7,Standard -0xee5d,CUS_0x4caa,Standard -0xee69,CUS_0x7d6e,Standard -0xee75,CUS_0xb545,Standard -0xee81,CUS_0x5e05,High -0xee8d,CUS_0x48fe,Standard -0xee99,CUS_0x54bf,High -0xeea5,CUS_0x3dd5,Standard -0xeeb1,CUS_0x8627,Standard -0xeebd,CUS_0xacb2,High -0xeec9,CUS_0x9244,High -0xeed5,CUS_0x3881,Low -0xeee1,CUS_0x40d0,High -0xeeed,CUS_0x4ace,High -0xeef9,CUS_0x4900,High -0xef05,CUS_0xa3a1,Standard -0xef11,CUS_0x1820,High -0xef1d,CUS_0xa4de,Standard -0xef29,CUS_0x48dc,Standard -0xef35,CUS_0xc4c7,High -0xef41,CUS_0x1286,Standard -0xef4d,CUS_0x1a71,Standard -0xef59,CUS_0x48e5,Standard -0xef65,CUS_0xa651,High -0xef71,CUS_0xa4d9,Low -0xef7d,CUS_0x38b0,Low -0xef89,CUS_0x2b1c,Standard -0xef95,CUS_0x4db5,High -0xefa1,CUS_0x5849,High -0xefad,CUS_0x478,Low -0xefb9,CUS_0x446a,Low -0xefc5,CUS_0x80e5,High -0xefd1,CUS_0x5b5a,Low -0xefdd,CUS_0x7f5d,High -0xefe9,CUS_0xbbe4,Low -0xeff5,CUS_0x347c,High -0xf001,CUS_0x53eb,Standard -0xf00d,CUS_0x48a8,High -0xf019,CUS_0x17e9,Standard -0xf025,CUS_0x5781,Standard -0xf031,CUS_0x9867,Low -0xf03d,CUS_0x8506,Standard -0xf049,CUS_0x8958,High -0xf055,CUS_0x4ddf,High -0xf061,CUS_0xc56a,Standard -0xf06d,CUS_0x3ff8,Standard -0xf079,CUS_0xbd23,Standard -0xf085,CUS_0xc122,High -0xf091,CUS_0xab13,Standard -0xf09d,CUS_0x871c,Standard -0xf0a9,CUS_0x2d52,Standard -0xf0b5,CUS_0x87f,Standard -0xf0c1,CUS_0x4b11,High -0xf0cd,CUS_0x4fd2,Standard -0xf0d9,CUS_0xab1c,Standard -0xf0e5,CUS_0xb213,High -0xf0f1,CUS_0x4067,High -0xf0fd,CUS_0x670d,High -0xf109,CUS_0x4e26,Standard -0xf115,CUS_0x8d17,Standard -0xf121,CUS_0x6c5f,High -0xf12d,CUS_0x562f,Standard -0xf139,CUS_0x8dbe,Standard -0xf145,CUS_0x36f3,Standard -0xf151,CUS_0x6b9,Standard -0xf15d,CUS_0x4334,High -0xf169,CUS_0x5f7a,Low -0xf175,CUS_0x6d2c,High -0xf181,CUS_0xd91,Standard -0xf18d,CUS_0x815c,Standard -0xf199,CUS_0x65c6,Standard -0xf1a5,CUS_0x986c,Standard -0xf1b1,CUS_0x3709,Standard -0xf1bd,CUS_0x44fa,Standard -0xf1c9,CUS_0xadcf,High -0xf1d5,CUS_0x4f26,Standard -0xf1e1,CUS_0x61fd,Standard -0xf1ed,CUS_0x7b32,Standard -0xf1f9,CUS_0xc18e,Low -0xf205,CUS_0x922e,Low -0xf211,CUS_0x2bed,High -0xf21d,CUS_0x9b5a,Standard -0xf229,CUS_0xf74,Standard -0xf235,CUS_0x5859,Standard -0xf241,CUS_0x6399,Standard -0xf24d,CUS_0x8959,Standard -0xf259,CUS_0x2618,Standard -0xf265,CUS_0x73a5,High -0xf271,CUS_0x64e7,Standard -0xf27d,CUS_0x6556,Low -0xf289,CUS_0xace0,Standard -0xf295,CUS_0x5197,Standard -0xf2a1,CUS_0x4eef,High -0xf2ad,CUS_0xb995,High -0xf2b9,CUS_0xa4ba,Standard -0xf2c5,CUS_0x9a6b,Standard -0xf2d1,CUS_0x78d3,Low -0xf2dd,CUS_0xba11,Standard -0xf2e9,CUS_0x81b9,Standard -0xf2f5,CUS_0x17ef,Standard -0xf301,CUS_0x9b8b,Standard -0xf30d,CUS_0x9f5,Standard -0xf319,CUS_0x6664,Low -0xf325,CUS_0x9e81,Standard -0xf331,CUS_0x9a1d,Standard -0xf33d,CUS_0x5146,Low -0xf349,CUS_0x9a86,Standard -0xf355,CUS_0x41b8,Standard -0xf361,CUS_0x54d0,Standard -0xf36d,CUS_0x1b66,Standard -0xf379,CUS_0x1bfd,High -0xf385,CUS_0xbfbc,Standard -0xf391,CUS_0x835,Standard -0xf39d,CUS_0x8771,Low -0xf3a9,CUS_0x2a4e,Low -0xf3b5,CUS_0x7711,Low -0xf3c1,CUS_0x9636,Low -0xf3cd,CUS_0x7ef5,Standard -0xf3d9,CUS_0x5a6b,High -0xf3e5,CUS_0x4b18,Standard -0xf3f1,CUS_0xa37,High -0xf3fd,CUS_0x8006,Standard -0xf409,CUS_0x5845,High -0xf415,CUS_0x5b62,Standard -0xf421,CUS_0xc3a6,Standard -0xf42d,CUS_0x73ef,Standard -0xf439,CUS_0xc1c,High -0xf445,CUS_0x44c8,Standard -0xf451,CUS_0x7b58,Low -0xf45d,CUS_0x15b9,Standard -0xf469,CUS_0x7c01,Standard -0xf475,CUS_0xb8eb,High -0xf481,CUS_0x2e19,Standard -0xf48d,CUS_0x43a2,High -0xf499,CUS_0xc393,High -0xf4a5,CUS_0x9178,Standard -0xf4b1,CUS_0x7aae,High -0xf4bd,CUS_0x3f4a,Low -0xf4c9,CUS_0x1fbe,Standard -0xf4d5,CUS_0x8afa,Standard -0xf4e1,CUS_0x1b00,Standard -0xf4ed,CUS_0x2c6a,Low -0xf4f9,CUS_0x38f1,High -0xf505,CUS_0x7670,Standard -0xf511,CUS_0x6575,Low -0xf51d,CUS_0x68f6,High -0xf529,CUS_0xbe26,High -0xf535,CUS_0xc2ff,Standard -0xf541,CUS_0xbae3,Standard -0xf54d,CUS_0x2879,High -0xf559,CUS_0xbe9,Standard -0xf565,CUS_0x2258,Standard -0xf571,CUS_0x795,High -0xf57d,CUS_0xa27d,High -0xf589,CUS_0xbb7,Standard -0xf595,CUS_0x32f5,Standard -0xf5a1,CUS_0xae93,High -0xf5ad,CUS_0x6a82,High -0xf5b9,CUS_0x18f5,Standard -0xf5c5,CUS_0xc134,Standard -0xf5d1,CUS_0x3feb,High -0xf5dd,CUS_0x864e,Standard -0xf5e9,CUS_0xa2ce,Standard -0xf5f5,CUS_0xb9e6,Standard -0xf601,CUS_0x7b5a,Standard -0xf60d,CUS_0x643c,Standard -0xf619,CUS_0x697d,Standard -0xf625,CUS_0x7e94,Standard -0xf631,CUS_0x9525,High -0xf63d,CUS_0x893e,Low -0xf649,CUS_0xa766,Standard -0xf655,CUS_0x64aa,Low -0xf661,CUS_0xb4b7,Standard -0xf66d,CUS_0xad02,Low -0xf679,CUS_0x3710,Standard -0xf685,CUS_0x6fca,Standard -0xf691,CUS_0x2f91,High -0xf69d,CUS_0x9e8f,Low -0xf6a9,CUS_0x2abb,Standard -0xf6b5,CUS_0xde1,Standard -0xf6c1,CUS_0x94e1,Low -0xf6cd,CUS_0xbf07,Standard -0xf6d9,CUS_0x5b7,High -0xf6e5,CUS_0x4d0f,Standard -0xf6f1,CUS_0x5c75,Standard -0xf6fd,CUS_0x7a7f,Low -0xf709,CUS_0x1881,High -0xf715,CUS_0x92c6,Standard -0xf721,CUS_0xba06,Standard -0xf72d,CUS_0x9491,High -0xf739,CUS_0x13d6,High -0xf745,CUS_0x5c07,Standard -0xf751,CUS_0xa384,Low -0xf75d,CUS_0x65b9,Low -0xf769,CUS_0xa8c,Low -0xf775,CUS_0xaf6,High -0xf781,CUS_0x52ad,High -0xf78d,CUS_0x130c,High -0xf799,CUS_0x9520,Standard -0xf7a5,CUS_0x45df,Low -0xf7b1,CUS_0x8fa9,High -0xf7bd,CUS_0xbd0f,Standard -0xf7c9,CUS_0x1ad6,Standard -0xf7d5,CUS_0x4d2a,Standard -0xf7e1,CUS_0xa0b8,High -0xf7ed,CUS_0x3208,Low -0xf7f9,CUS_0xba21,Low -0xf805,CUS_0x5e96,High -0xf811,CUS_0x909a,Standard -0xf81d,CUS_0x3ae5,Low -0xf829,CUS_0x7167,Standard -0xf835,CUS_0x784,Standard -0xf841,CUS_0x84c,Low -0xf84d,CUS_0x2b77,Low -0xf859,CUS_0x8459,Low -0xf865,CUS_0x1e06,Standard -0xf871,CUS_0x4dff,Standard -0xf87d,CUS_0x20a6,Standard -0xf889,CUS_0x8ddd,Standard -0xf895,CUS_0x87c9,High -0xf8a1,CUS_0x148e,Standard -0xf8ad,CUS_0x604a,Standard -0xf8b9,CUS_0x7129,High -0xf8c5,CUS_0x2959,High -0xf8d1,CUS_0x1441,Low -0xf8dd,CUS_0xbae6,Standard -0xf8e9,CUS_0x9199,High -0xf8f5,CUS_0x1269,Low -0xf901,CUS_0xbed9,Low -0xf90d,CUS_0x2ca8,Standard -0xf919,CUS_0x2283,Standard -0xf925,CUS_0xf42,High -0xf931,CUS_0x247c,Standard -0xf93d,CUS_0x10eb,Low -0xf949,CUS_0x355c,Standard -0xf955,CUS_0x802f,High -0xf961,CUS_0x634d,Low -0xf96d,CUS_0x7d3b,Standard -0xf979,CUS_0x2a8b,Standard -0xf985,CUS_0x1e8e,Standard -0xf991,CUS_0x64a5,Standard -0xf99d,CUS_0x2a6b,Low -0xf9a9,CUS_0xa618,Low -0xf9b5,CUS_0x7d0a,Standard -0xf9c1,CUS_0x460c,Standard -0xf9cd,CUS_0x4dba,Standard -0xf9d9,CUS_0x69a6,Low -0xf9e5,CUS_0x4e3,High -0xf9f1,CUS_0xa2a3,Standard -0xf9fd,CUS_0x6a8a,Standard -0xfa09,CUS_0x6a7e,Standard -0xfa15,CUS_0x6853,High -0xfa21,CUS_0x41c,Standard -0xfa2d,CUS_0x4efc,High -0xfa39,CUS_0xc22c,High -0xfa45,CUS_0xb264,Standard -0xfa51,CUS_0x1ff5,Standard -0xfa5d,CUS_0x9828,High -0xfa69,CUS_0x23f8,Standard -0xfa75,CUS_0x9d7e,Standard -0xfa81,CUS_0x4d1c,Standard -0xfa8d,CUS_0x1ebe,Standard -0xfa99,CUS_0x31b7,Low -0xfaa5,CUS_0x72b2,Standard -0xfab1,CUS_0xa453,Low -0xfabd,CUS_0xff6,Standard -0xfac9,CUS_0x8684,Standard -0xfad5,CUS_0x24d7,Standard -0xfae1,CUS_0xbec0,Standard -0xfaed,CUS_0x99cf,Standard -0xfaf9,CUS_0x524f,Standard -0xfb05,CUS_0x5b04,Standard -0xfb11,CUS_0x4313,High -0xfb1d,CUS_0xa7b8,Standard -0xfb29,CUS_0x593c,Standard -0xfb35,CUS_0x28e7,Standard -0xfb41,CUS_0x301f,Standard -0xfb4d,CUS_0x8de0,High -0xfb59,CUS_0xaab7,Standard -0xfb65,CUS_0x6275,Low -0xfb71,CUS_0xace2,Standard -0xfb7d,CUS_0x85bd,High -0xfb89,CUS_0x4862,Standard -0xfb95,CUS_0xaf93,High -0xfba1,CUS_0xbc74,Standard -0xfbad,CUS_0x8563,Standard -0xfbb9,CUS_0x82ff,Standard -0xfbc5,CUS_0x47e5,Standard -0xfbd1,CUS_0x5ba1,High -0xfbdd,CUS_0x312c,High -0xfbe9,CUS_0xb51d,Low -0xfbf5,CUS_0x8919,Standard -0xfc01,CUS_0x52cf,Standard -0xfc0d,CUS_0xc526,Standard -0xfc19,CUS_0xa8d,Standard -0xfc25,CUS_0x6073,Standard -0xfc31,CUS_0x53fc,High -0xfc3d,CUS_0x74bd,Standard -0xfc49,CUS_0xbea3,Standard -0xfc55,CUS_0x4db6,Low -0xfc61,CUS_0xa00f,Standard -0xfc6d,CUS_0x109f,High -0xfc79,CUS_0x32e2,Standard -0xfc85,CUS_0x3175,Standard -0xfc91,CUS_0x38aa,Standard -0xfc9d,CUS_0xc016,Low -0xfca9,CUS_0xc5fd,Standard -0xfcb5,CUS_0x424f,Low -0xfcc1,CUS_0x233a,Standard -0xfccd,CUS_0x732b,Standard -0xfcd9,CUS_0x1d00,High -0xfce5,CUS_0x346e,Standard -0xfcf1,CUS_0xae09,High -0xfcfd,CUS_0x516c,Standard -0xfd09,CUS_0x9573,Low -0xfd15,CUS_0x9daa,Low -0xfd21,CUS_0x70e,Standard -0xfd2d,CUS_0xc282,High -0xfd39,CUS_0x1d7b,Low -0xfd45,CUS_0x669f,High -0xfd51,CUS_0x6020,Standard -0xfd5d,CUS_0xa773,High -0xfd69,CUS_0xb453,Low -0xfd75,CUS_0x3dd8,Low -0xfd81,CUS_0x30e3,Standard -0xfd8d,CUS_0x133b,Low -0xfd99,CUS_0x681c,High -0xfda5,CUS_0x48ee,Standard -0xfdb1,CUS_0x14d9,Standard -0xfdbd,CUS_0x4aee,Low -0xfdc9,CUS_0x291b,Low -0xfdd5,CUS_0xb801,Low -0xfde1,CUS_0xa88c,Standard -0xfded,CUS_0x63d,Standard -0xfdf9,CUS_0x54a8,Standard -0xfe05,CUS_0x2a68,Low -0xfe11,CUS_0x1718,High -0xfe1d,CUS_0xa6e8,Low -0xfe29,CUS_0x8395,Low -0xfe35,CUS_0xa66d,Standard -0xfe41,CUS_0x5bac,Low -0xfe4d,CUS_0x7baf,Standard -0xfe59,CUS_0x79ac,Standard -0xfe65,CUS_0x3c2c,Standard -0xfe71,CUS_0x5d67,Low -0xfe7d,CUS_0x183d,High -0xfe89,CUS_0x85c0,Standard -0xfe95,CUS_0xfb4,Standard -0xfea1,CUS_0x9278,Standard -0xfead,CUS_0x7423,Low -0xfeb9,CUS_0x6287,Standard -0xfec5,CUS_0x5711,Standard -0xfed1,CUS_0xb66c,Standard -0xfedd,CUS_0x4824,High -0xfee9,CUS_0x4ab7,Standard -0xfef5,CUS_0x9e1e,High -0xff01,CUS_0x34f2,High -0xff0d,CUS_0x16d5,Standard -0xff19,CUS_0x3e79,High -0xff25,CUS_0x9f1c,High -0xff31,CUS_0x7db4,Low -0xff3d,CUS_0x7db2,Standard -0xff49,CUS_0x12a6,High -0xff55,CUS_0x7e3a,Low -0xff61,CUS_0x8197,Standard -0xff6d,CUS_0xbf64,Low -0xff79,CUS_0x71e2,Low -0xff85,CUS_0x8247,Standard -0xff91,CUS_0x46b1,Standard -0xff9d,CUS_0x1894,High -0xffa9,CUS_0x1340,Standard -0xffb5,CUS_0x4939,High -0xffc1,CUS_0x94e2,Standard -0xffcd,CUS_0x89c2,Standard -0xffd9,CUS_0x3b36,Standard -0xffe5,CUS_0xc062,Low -0xfff1,CUS_0xabcf,High -0xfffd,CUS_0x1a4b,High -0x10009,CUS_0x54c3,High -0x10015,CUS_0xab6e,High -0x10021,CUS_0xa7cc,Standard -0x1002d,CUS_0x3f12,Standard -0x10039,CUS_0x8ea,Standard -0x10045,CUS_0xbe4c,Standard -0x10051,CUS_0x72c0,Standard -0x1005d,CUS_0x3d6c,Standard -0x10069,CUS_0x41be,Standard -0x10075,CUS_0xaea6,High -0x10081,CUS_0x3059,High -0x1008d,CUS_0xb804,Standard -0x10099,CUS_0x48e6,Standard -0x100a5,CUS_0x4c43,Standard -0x100b1,CUS_0x7197,Standard -0x100bd,CUS_0x34e9,High -0x100c9,CUS_0x3afc,Low -0x100d5,CUS_0x1911,Low -0x100e1,CUS_0x5cdb,Standard -0x100ed,CUS_0x1e76,Standard -0x100f9,CUS_0x41d5,Standard -0x10105,CUS_0x6f2d,High -0x10111,CUS_0x7953,High -0x1011d,CUS_0xb966,High -0x10129,CUS_0x375e,High -0x10135,CUS_0x1096,High -0x10141,CUS_0x8dc4,High -0x1014d,CUS_0xbc5f,High -0x10159,CUS_0x9878,Standard -0x10165,CUS_0x3e7b,High -0x10171,CUS_0x485d,Standard -0x1017d,CUS_0xabf6,Low -0x10189,CUS_0x23b4,High -0x10195,CUS_0x9974,Standard -0x101a1,CUS_0x53bf,High -0x101ad,CUS_0xa806,Standard -0x101b9,CUS_0x7af7,Low -0x101c5,CUS_0xb767,Low -0x101d1,CUS_0x3752,Low -0x101dd,CUS_0x1358,High -0x101e9,CUS_0x9d64,Standard -0x101f5,CUS_0x3382,Low -0x10201,CUS_0xc6d1,Standard -0x1020d,CUS_0x503f,High -0x10219,CUS_0x2dd5,Low -0x10225,CUS_0xb3b,High -0x10231,CUS_0x9173,Standard -0x1023d,CUS_0x4da1,Low -0x10249,CUS_0x62cd,Standard -0x10255,CUS_0x98b5,Standard -0x10261,CUS_0x7df0,Low -0x1026d,CUS_0x3e83,Standard -0x10279,CUS_0x5fe6,Standard -0x10285,CUS_0xb66f,High -0x10291,CUS_0x9b4f,Standard -0x1029d,CUS_0x9620,High -0x102a9,CUS_0x1ffc,Standard -0x102b5,CUS_0xa3bf,High -0x102c1,CUS_0x797,Standard -0x102cd,CUS_0x501d,Standard -0x102d9,CUS_0xb795,Standard -0x102e5,CUS_0xb1aa,Standard -0x102f1,CUS_0x8aff,Standard -0x102fd,CUS_0x9ed1,Low -0x10309,CUS_0xc2b7,Standard -0x10315,CUS_0x1cc4,Low -0x10321,CUS_0x944c,High -0x1032d,CUS_0x897f,Standard -0x10339,CUS_0xa80,Standard -0x10345,CUS_0x68d5,Low -0x10351,CUS_0x4b41,High -0x1035d,CUS_0x3d82,Standard -0x10369,CUS_0x4c62,Standard -0x10375,CUS_0x4a2b,High -0x10381,CUS_0x9586,Standard -0x1038d,CUS_0x9556,Standard -0x10399,CUS_0x55c7,Standard -0x103a5,CUS_0x725f,High -0x103b1,CUS_0x7040,Standard -0x103bd,CUS_0x2c1a,Standard -0x103c9,CUS_0x63f3,High -0x103d5,CUS_0x9b37,Standard -0x103e1,CUS_0x4fcc,Standard -0x103ed,CUS_0x509,Low -0x103f9,CUS_0x3f49,Low -0x10405,CUS_0x5a59,High -0x10411,CUS_0x8b90,Standard -0x1041d,CUS_0x24f9,Standard -0x10429,CUS_0x7745,High -0x10435,CUS_0xa6a7,High -0x10441,CUS_0xbf03,Low -0x1044d,CUS_0x806f,Standard -0x10459,CUS_0x9c08,Low -0x10465,CUS_0x4d7e,Standard -0x10471,CUS_0x80b4,High -0x1047d,CUS_0x243e,Standard -0x10489,CUS_0x7071,Standard -0x10495,CUS_0xa106,Low -0x104a1,CUS_0xae70,High -0x104ad,CUS_0xac04,Standard -0x104b9,CUS_0x240c,High -0x104c5,CUS_0x3672,Standard -0x104d1,CUS_0x9afb,High -0x104dd,CUS_0x1155,Low -0x104e9,CUS_0xb1f8,Standard -0x104f5,CUS_0x145c,Standard -0x10501,CUS_0x6582,High -0x1050d,CUS_0x8b02,High -0x10519,CUS_0x472e,High -0x10525,CUS_0x3fee,Low -0x10531,CUS_0xac54,Standard -0x1053d,CUS_0x2200,High -0x10549,CUS_0xba5,Standard -0x10555,CUS_0x99b,Standard -0x10561,CUS_0x9ae,High -0x1056d,CUS_0x849d,High -0x10579,CUS_0x7e10,High -0x10585,CUS_0x9d83,Standard -0x10591,CUS_0x1108,High -0x1059d,CUS_0x4ee4,High -0x105a9,CUS_0x8cdf,Low -0x105b5,CUS_0xb5fd,Standard -0x105c1,CUS_0x3934,Standard -0x105cd,CUS_0x5012,High -0x105d9,CUS_0x4213,Standard -0x105e5,CUS_0x9796,Standard -0x105f1,CUS_0x6aeb,Standard -0x105fd,CUS_0x5bff,Low -0x10609,CUS_0x4899,High -0x10615,CUS_0x20a1,Standard -0x10621,CUS_0x2f56,Standard -0x1062d,CUS_0x9ec8,Low -0x10639,CUS_0xbfe0,High -0x10645,CUS_0x4f1a,High -0x10651,CUS_0x5815,High -0x1065d,CUS_0xb2b8,Standard -0x10669,CUS_0xbe1,Standard -0x10675,CUS_0xc506,Standard -0x10681,CUS_0x6612,Low -0x1068d,CUS_0x51ff,Standard -0x10699,CUS_0xacd9,High -0x106a5,CUS_0xf4d,Standard -0x106b1,CUS_0x194f,Standard -0x106bd,CUS_0x3854,Standard -0x106c9,CUS_0x74fa,Standard -0x106d5,CUS_0x2f78,High -0x106e1,CUS_0x5543,Standard -0x106ed,CUS_0x146a,Standard -0x106f9,CUS_0x4f41,High -0x10705,CUS_0xa267,Standard -0x10711,CUS_0xbe63,Standard -0x1071d,CUS_0x4197,Standard -0x10729,CUS_0x5591,High -0x10735,CUS_0xbfea,Low -0x10741,CUS_0x7266,Standard -0x1074d,CUS_0xafce,Low -0x10759,CUS_0xb756,High -0x10765,CUS_0x89a9,Standard -0x10771,CUS_0x7ac7,High -0x1077d,CUS_0x4198,Standard -0x10789,CUS_0xb728,High -0x10795,CUS_0x10df,High -0x107a1,CUS_0x7b09,Standard -0x107ad,CUS_0x3279,High -0x107b9,CUS_0x5209,Standard -0x107c5,CUS_0xabbd,High -0x107d1,CUS_0x585c,Standard -0x107dd,CUS_0xbd89,Standard -0x107e9,CUS_0x81b8,Standard -0x107f5,CUS_0x1cee,Low -0x10801,CUS_0xa8d1,Low -0x1080d,CUS_0xa1cb,Low -0x10819,CUS_0x53e8,High -0x10825,CUS_0x27a6,Standard -0x10831,CUS_0xa990,High -0x1083d,CUS_0x2d38,Standard -0x10849,CUS_0x66e0,Standard -0x10855,CUS_0xa1bb,Standard -0x10861,CUS_0x3ff4,Standard -0x1086d,CUS_0x2bb0,Standard -0x10879,CUS_0xb873,High -0x10885,CUS_0x182b,Standard -0x10891,CUS_0x536b,Standard -0x1089d,CUS_0x1a44,Standard -0x108a9,CUS_0x62c3,Low -0x108b5,CUS_0x9944,High -0x108c1,CUS_0x5052,Standard -0x108cd,CUS_0x66d9,High -0x108d9,CUS_0x8814,High -0x108e5,CUS_0x9633,High -0x108f1,CUS_0x6077,High -0x108fd,CUS_0xbb70,Low -0x10909,CUS_0x8a3,Standard -0x10915,CUS_0x753d,High -0x10921,CUS_0x76f6,Low -0x1092d,CUS_0xbdf,Standard -0x10939,CUS_0xb303,High -0x10945,CUS_0x7b6,Standard -0x10951,CUS_0x2ba4,Standard -0x1095d,CUS_0x1deb,Standard -0x10969,CUS_0x4079,High -0x10975,CUS_0x68ce,Low -0x10981,CUS_0x9093,Standard -0x1098d,CUS_0x3adc,High -0x10999,CUS_0x136c,High -0x109a5,CUS_0x3bdb,Low -0x109b1,CUS_0x25be,Standard -0x109bd,CUS_0x8121,Standard -0x109c9,CUS_0x14d5,Standard -0x109d5,CUS_0x2441,High -0x109e1,CUS_0xc3d,Standard -0x109ed,CUS_0x3913,Standard -0x109f9,CUS_0x944f,Standard -0x10a05,CUS_0xb300,Standard -0x10a11,CUS_0xa26b,High -0x10a1d,CUS_0xc1c6,Low -0x10a29,CUS_0xb96b,High -0x10a35,CUS_0x5215,Low -0x10a41,CUS_0x87e4,Standard -0x10a4d,CUS_0x4ef2,Low -0x10a59,CUS_0xbac4,High -0x10a65,CUS_0xb6b1,Low -0x10a71,CUS_0xc0e7,Low -0x10a7d,CUS_0x72b6,Standard -0x10a89,CUS_0x36b6,Standard -0x10a95,CUS_0x5501,High -0x10aa1,CUS_0x27e0,Standard -0x10aad,CUS_0xaaea,Low -0x10ab9,CUS_0xaafc,Low -0x10ac5,CUS_0x575e,Standard -0x10ad1,CUS_0x1383,Standard -0x10add,CUS_0xa70c,Low -0x10ae9,CUS_0xa022,Standard -0x10af5,CUS_0x5172,High -0x10b01,CUS_0x6b24,High -0x10b0d,CUS_0x7e51,Standard -0x10b19,CUS_0x26b1,Low -0x10b25,CUS_0x39bd,Standard -0x10b31,CUS_0x28cb,Standard -0x10b3d,CUS_0x6c9d,Standard -0x10b49,CUS_0xa408,High -0x10b55,CUS_0x190e,Standard -0x10b61,CUS_0x37bf,Low -0x10b6d,CUS_0xc271,Low -0x10b79,CUS_0x8d9d,Low -0x10b85,CUS_0x40e8,High -0x10b91,CUS_0x18f3,Low -0x10b9d,CUS_0x7ad7,Standard -0x10ba9,CUS_0x5b05,High -0x10bb5,CUS_0x78f3,Standard -0x10bc1,CUS_0x3e89,Standard -0x10bcd,CUS_0x8c77,High -0x10bd9,CUS_0x73f9,Standard -0x10be5,CUS_0x9c03,High -0x10bf1,CUS_0xbd11,High -0x10bfd,CUS_0x4e35,Low -0x10c09,CUS_0x9535,High -0x10c15,CUS_0xc254,Low -0x10c21,CUS_0x11ae,Standard -0x10c2d,CUS_0x87c2,Standard -0x10c39,CUS_0xab1e,Low -0x10c45,CUS_0x4711,Standard -0x10c51,CUS_0x45bd,Standard -0x10c5d,CUS_0xc08,High -0x10c69,CUS_0xa3e4,Low -0x10c75,CUS_0xa9b1,High -0x10c81,CUS_0x9e82,Standard -0x10c8d,CUS_0x6fc4,Low -0x10c99,CUS_0x61c2,Standard -0x10ca5,CUS_0xb794,Standard -0x10cb1,CUS_0xab18,Standard -0x10cbd,CUS_0x2108,High -0x10cc9,CUS_0xaa52,Standard -0x10cd5,CUS_0xa401,Standard -0x10ce1,CUS_0x8706,Low -0x10ced,CUS_0x958b,High -0x10cf9,CUS_0x1355,High -0x10d05,CUS_0xb18d,Standard -0x10d11,CUS_0x9eb2,Standard -0x10d1d,CUS_0x48e1,Standard -0x10d29,CUS_0xc664,High -0x10d35,CUS_0xc4f5,High -0x10d41,CUS_0x27ab,Standard -0x10d4d,CUS_0x13ee,Standard -0x10d59,CUS_0x2037,Low -0x10d65,CUS_0xa39c,High -0x10d71,CUS_0x86bc,Standard -0x10d7d,CUS_0xc56b,High -0x10d89,CUS_0xb209,Standard -0x10d95,CUS_0x5073,Standard -0x10da1,CUS_0x24df,Low -0x10dad,CUS_0x3a55,Standard -0x10db9,CUS_0x8a5,High -0x10dc5,CUS_0xdac,Low -0x10dd1,CUS_0x2194,Standard -0x10ddd,CUS_0x6972,Low -0x10de9,CUS_0x90e6,Standard -0x10df5,CUS_0x87f0,Standard -0x10e01,CUS_0x583b,Low -0x10e0d,CUS_0x135c,Standard -0x10e19,CUS_0x8c2d,Standard -0x10e25,CUS_0x911e,Low -0x10e31,CUS_0x4098,Standard -0x10e3d,CUS_0x8449,Standard -0x10e49,CUS_0x7051,Low -0x10e55,CUS_0x3d53,Standard -0x10e61,CUS_0x1979,Low -0x10e6d,CUS_0xa262,Standard -0x10e79,CUS_0xb17b,Low -0x10e85,CUS_0xbaee,High -0x10e91,CUS_0x8bf5,Standard -0x10e9d,CUS_0x97d7,Standard -0x10ea9,CUS_0x2f1d,High -0x10eb5,CUS_0x86da,High -0x10ec1,CUS_0xc04f,Standard -0x10ecd,CUS_0x5157,Standard -0x10ed9,CUS_0x6743,High -0x10ee5,CUS_0xaf67,Low -0x10ef1,CUS_0x8fec,Standard -0x10efd,CUS_0xa4ab,Low -0x10f09,CUS_0x3a71,High -0x10f15,CUS_0xb8d5,High -0x10f21,CUS_0x7334,Standard -0x10f2d,CUS_0x406c,High -0x10f39,CUS_0x7ea8,High -0x10f45,CUS_0x1190,Low -0x10f51,CUS_0xb16c,Standard -0x10f5d,CUS_0x41b3,Standard -0x10f69,CUS_0xb949,Standard -0x10f75,CUS_0xe6c,Low -0x10f81,CUS_0x9f06,Low -0x10f8d,CUS_0x3d68,High -0x10f99,CUS_0x8398,Standard -0x10fa5,CUS_0xc131,High -0x10fb1,CUS_0x5b4e,Low -0x10fbd,CUS_0x443a,Standard -0x10fc9,CUS_0x13b0,Standard -0x10fd5,CUS_0x3097,Standard -0x10fe1,CUS_0x861c,Standard -0x10fed,CUS_0x5a48,High -0x10ff9,CUS_0x6eec,Standard -0x11005,CUS_0x24f1,High -0x11011,CUS_0x2647,High -0x1101d,CUS_0x9614,High -0x11029,CUS_0xde4,Low -0x11035,CUS_0x1663,Standard -0x11041,CUS_0x2d6f,Standard -0x1104d,CUS_0xb250,High -0x11059,CUS_0xafa3,Low -0x11065,CUS_0x63ac,Standard -0x11071,CUS_0x405,Standard -0x1107d,CUS_0x87fa,High -0x11089,CUS_0xaa5a,Standard -0x11095,CUS_0xaba4,Low -0x110a1,CUS_0x4750,High -0x110ad,CUS_0x7801,Standard -0x110b9,CUS_0xb565,Standard -0x110c5,CUS_0x5afd,Standard -0x110d1,CUS_0xa28,High -0x110dd,CUS_0xb461,High -0x110e9,CUS_0x5afa,High -0x110f5,CUS_0xae36,Standard -0x11101,CUS_0x3385,Standard -0x1110d,CUS_0x140e,Standard -0x11119,CUS_0x2acc,High -0x11125,CUS_0x4f7c,Standard -0x11131,CUS_0x3943,Standard -0x1113d,CUS_0x4f62,Low -0x11149,CUS_0x8a78,Standard -0x11155,CUS_0x6a4b,Standard -0x11161,CUS_0x1799,Standard -0x1116d,CUS_0x8f3,Standard -0x11179,CUS_0x2ca3,High -0x11185,CUS_0x8d96,Low -0x11191,CUS_0xbd5,Standard -0x1119d,CUS_0x23b0,Standard -0x111a9,CUS_0x435f,High -0x111b5,CUS_0xb88c,Low -0x111c1,CUS_0xa082,Standard -0x111cd,CUS_0x5b42,Standard -0x111d9,CUS_0x90d7,Standard -0x111e5,CUS_0x3f3e,High -0x111f1,CUS_0x8f7f,Standard -0x111fd,CUS_0x7e0b,High -0x11209,CUS_0x204b,High -0x11215,CUS_0xaf18,High -0x11221,CUS_0xb021,High -0x1122d,CUS_0x9840,High -0x11239,CUS_0x181e,Standard -0x11245,CUS_0x1fcc,Standard -0x11251,CUS_0x1440,Standard -0x1125d,CUS_0xdfb,Standard -0x11269,CUS_0x63f1,High -0x11275,CUS_0x2b99,High -0x11281,CUS_0x270c,High -0x1128d,CUS_0x1eb6,Standard -0x11299,CUS_0x1b59,Standard -0x112a5,CUS_0xbe83,High -0x112b1,CUS_0x1cbd,Standard -0x112bd,CUS_0xa903,Low -0x112c9,CUS_0xa714,Standard -0x112d5,CUS_0x4cb3,Standard -0x112e1,CUS_0x3c87,Standard -0x112ed,CUS_0xbf9c,Standard -0x112f9,CUS_0xb7fb,High -0x11305,CUS_0x3cfb,Standard -0x11311,CUS_0x42c0,Standard -0x1131d,CUS_0x6213,Standard -0x11329,CUS_0x1972,High -0x11335,CUS_0x543,Standard -0x11341,CUS_0x2ed5,High -0x1134d,CUS_0x4d48,Standard -0x11359,CUS_0x3777,Standard -0x11365,CUS_0x625d,Standard -0x11371,CUS_0x380d,Standard -0x1137d,CUS_0x56ab,Standard -0x11389,CUS_0x4cab,Standard -0x11395,CUS_0x8359,High -0x113a1,CUS_0x7974,Standard -0x113ad,CUS_0x3c72,Low -0x113b9,CUS_0x710a,High -0x113c5,CUS_0x1e48,Standard -0x113d1,CUS_0xa2eb,Standard -0x113dd,CUS_0x8a48,Standard -0x113e9,CUS_0x8bcf,Standard -0x113f5,CUS_0xa29a,Low -0x11401,CUS_0x78af,Standard -0x1140d,CUS_0x2bb5,High -0x11419,CUS_0x7d93,Standard -0x11425,CUS_0x6b52,Standard -0x11431,CUS_0x892d,Standard -0x1143d,CUS_0x5641,Standard -0x11449,CUS_0x4f05,High -0x11455,CUS_0x8bcd,Standard -0x11461,CUS_0x3b90,Standard -0x1146d,CUS_0x3257,Standard -0x11479,CUS_0x25ed,Low -0x11485,CUS_0x6dec,Low -0x11491,CUS_0x3d60,Standard -0x1149d,CUS_0x269b,High -0x114a9,CUS_0x91dd,Standard -0x114b5,CUS_0x7036,High -0x114c1,CUS_0x2ca6,Standard -0x114cd,CUS_0x8852,Low -0x114d9,CUS_0xc0c8,High -0x114e5,CUS_0x340e,Standard -0x114f1,CUS_0x4c9c,High -0x114fd,CUS_0x2040,High -0x11509,CUS_0x7755,High -0x11515,CUS_0x411d,High -0x11521,CUS_0x28ee,High -0x1152d,CUS_0x9be7,Low -0x11539,CUS_0xb4b4,High -0x11545,CUS_0x6a52,Low -0x11551,CUS_0xe91,Standard -0x1155d,CUS_0x57e7,High -0x11569,CUS_0x9acf,Standard -0x11575,CUS_0x153d,Standard -0x11581,CUS_0x1a87,Standard -0x1158d,CUS_0x3169,Standard -0x11599,CUS_0x1640,Standard -0x115a5,CUS_0xbab,Low -0x115b1,CUS_0x9fea,High -0x115bd,CUS_0x29f9,Standard -0x115c9,CUS_0x5c2d,Standard -0x115d5,CUS_0x5af1,Standard -0x115e1,CUS_0x6c8e,Standard -0x115ed,CUS_0xc010,Low -0x115f9,CUS_0x60c5,Standard -0x11605,CUS_0xa878,High -0x11611,CUS_0x997e,Standard -0x1161d,CUS_0x6320,Low -0x11629,CUS_0x23d6,Standard -0x11635,CUS_0x6fa1,Standard -0x11641,CUS_0x50ab,High -0x1164d,CUS_0xbb2,High -0x11659,CUS_0x38a1,Standard -0x11665,CUS_0xa224,High -0x11671,CUS_0x7f31,Low -0x1167d,CUS_0x9ed7,Standard -0x11689,CUS_0x52cb,Low -0x11695,CUS_0xaeb1,Standard -0x116a1,CUS_0x5cfd,Standard -0x116ad,CUS_0x7aa8,High -0x116b9,CUS_0xa160,High -0x116c5,CUS_0xa4ae,Standard -0x116d1,CUS_0x2ef3,Standard -0x116dd,CUS_0x95eb,Standard -0x116e9,CUS_0x5337,Standard -0x116f5,CUS_0x6da8,High -0x11701,CUS_0x7330,Standard -0x1170d,CUS_0x35e6,Standard -0x11719,CUS_0xac08,High -0x11725,CUS_0x8ea8,Low -0x11731,CUS_0x244e,Standard -0x1173d,CUS_0x8fea,Standard -0x11749,CUS_0x155b,High -0x11755,CUS_0x628e,High -0x11761,CUS_0x6d85,Standard -0x1176d,CUS_0x470e,Standard -0x11779,CUS_0x7740,Standard -0x11785,CUS_0xb107,Low -0x11791,CUS_0xb585,High -0x1179d,CUS_0x4661,Standard -0x117a9,CUS_0x77e2,Standard -0x117b5,CUS_0x4d16,High -0x117c1,CUS_0xbacd,Standard -0x117cd,CUS_0x4f57,Standard -0x117d9,CUS_0x1185,High -0x117e5,CUS_0x755e,Standard -0x117f1,CUS_0x9538,Low -0x117fd,CUS_0xb239,Low -0x11809,CUS_0x25ad,High -0x11815,CUS_0x130b,Standard -0x11821,CUS_0x5ed7,High -0x1182d,CUS_0x147a,Standard -0x11839,CUS_0x5a5e,High -0x11845,CUS_0x2b09,High -0x11851,CUS_0x6b61,Standard -0x1185d,CUS_0xc49c,Low -0x11869,CUS_0x5952,Standard -0x11875,CUS_0x957c,Standard -0x11881,CUS_0x311a,Standard -0x1188d,CUS_0x35a4,Standard -0x11899,CUS_0xc4b0,Standard -0x118a5,CUS_0xb70f,Low -0x118b1,CUS_0xecb,Low -0x118bd,CUS_0x9e9d,High -0x118c9,CUS_0x54e8,Standard -0x118d5,CUS_0x6ed7,High -0x118e1,CUS_0x5a1a,Low -0x118ed,CUS_0x56e7,Standard -0x118f9,CUS_0xebd,High -0x11905,CUS_0x875,Standard -0x11911,CUS_0x1864,Standard -0x1191d,CUS_0xa7d5,High -0x11929,CUS_0x5a3d,High -0x11935,CUS_0xf15,Standard -0x11941,CUS_0x2297,Standard -0x1194d,CUS_0x6587,Low -0x11959,CUS_0x1fec,Low -0x11965,CUS_0x15a9,Standard -0x11971,CUS_0x1612,Standard -0x1197d,CUS_0xb096,Standard -0x11989,CUS_0xab32,Standard -0x11995,CUS_0xa3e1,High -0x119a1,CUS_0xbbd5,High -0x119ad,CUS_0x67b5,Standard -0x119b9,CUS_0x4250,Standard -0x119c5,CUS_0xa222,Standard -0x119d1,CUS_0x536e,High -0x119dd,CUS_0x57dc,Standard -0x119e9,CUS_0x863b,High -0x119f5,CUS_0x4274,Standard -0x11a01,CUS_0x104a,Standard -0x11a0d,CUS_0x7e62,High -0x11a19,CUS_0x7dec,High -0x11a25,CUS_0xc4bc,Standard -0x11a31,CUS_0xbf94,Standard -0x11a3d,CUS_0x770a,High -0x11a49,CUS_0xc323,High -0x11a55,CUS_0xa00a,Low -0x11a61,CUS_0x3a39,Low -0x11a6d,CUS_0x6119,Standard -0x11a79,CUS_0x2b61,Standard -0x11a85,CUS_0x675c,High -0x11a91,CUS_0x5f06,High -0x11a9d,CUS_0x563c,Standard -0x11aa9,CUS_0x7f4b,Standard -0x11ab5,CUS_0x5471,Standard -0x11ac1,CUS_0x99b3,Standard -0x11acd,CUS_0x2c87,Standard -0x11ad9,CUS_0x7058,High -0x11ae5,CUS_0xa9e,Standard -0x11af1,CUS_0xc5cb,Standard -0x11afd,CUS_0x629c,Standard -0x11b09,CUS_0x854f,High -0x11b15,CUS_0x3bde,Low -0x11b21,CUS_0x954e,Standard -0x11b2d,CUS_0x34be,Standard -0x11b39,CUS_0xad97,High -0x11b45,CUS_0x6e61,High -0x11b51,CUS_0xb63c,Standard -0x11b5d,CUS_0x9378,High -0x11b69,CUS_0x7e63,Low -0x11b75,CUS_0x7e06,Low -0x11b81,CUS_0x5cb6,Standard -0x11b8d,CUS_0xa67d,Standard -0x11b99,CUS_0x17c3,High -0x11ba5,CUS_0xec4,Standard -0x11bb1,CUS_0xbdac,High -0x11bbd,CUS_0x8eb6,Standard -0x11bc9,CUS_0x4f4f,Standard -0x11bd5,CUS_0x5262,Standard -0x11be1,CUS_0x40f9,Standard -0x11bed,CUS_0x6331,Low -0x11bf9,CUS_0x3da0,Standard -0x11c05,CUS_0x6cd4,Standard -0x11c11,CUS_0x26d0,Standard -0x11c1d,CUS_0xc1e9,Standard -0x11c29,CUS_0xe2b,Standard -0x11c35,CUS_0x2479,High -0x11c41,CUS_0x3b89,Standard -0x11c4d,CUS_0xbcfc,High -0x11c59,CUS_0x437,Standard -0x11c65,CUS_0xb4c4,Standard -0x11c71,CUS_0x376b,High -0x11c7d,CUS_0x251a,Standard -0x11c89,CUS_0x2226,Standard -0x11c95,CUS_0xb98f,Standard -0x11ca1,CUS_0x9fa9,Standard -0x11cad,CUS_0x26aa,Standard -0x11cb9,CUS_0x4771,High -0x11cc5,CUS_0x1869,Standard -0x11cd1,CUS_0x218e,High -0x11cdd,CUS_0x109d,Standard -0x11ce9,CUS_0x92c8,Low -0x11cf5,CUS_0x1dc1,Low -0x11d01,CUS_0xbdcf,Standard -0x11d0d,CUS_0x4034,Standard -0x11d19,CUS_0x77ca,Standard -0x11d25,CUS_0x5569,Standard -0x11d31,CUS_0x5bbc,Standard -0x11d3d,CUS_0x619d,High -0x11d49,CUS_0x6d35,Low -0x11d55,CUS_0x43af,Standard -0x11d61,CUS_0xdda,High -0x11d6d,CUS_0x59bd,High -0x11d79,CUS_0xb59c,Low -0x11d85,CUS_0xc4f2,Standard -0x11d91,CUS_0x820c,Standard -0x11d9d,CUS_0x8c36,High -0x11da9,CUS_0x43b8,Standard -0x11db5,CUS_0xc2bf,Standard -0x11dc1,CUS_0x51e5,High -0x11dcd,CUS_0xb9da,High -0x11dd9,CUS_0x2452,Standard -0x11de5,CUS_0x879a,Standard -0x11df1,CUS_0x8892,Standard -0x11dfd,CUS_0x2e97,Standard -0x11e09,CUS_0xb017,Standard -0x11e15,CUS_0x48a0,High -0x11e21,CUS_0x756e,Standard -0x11e2d,CUS_0x65ab,High -0x11e39,CUS_0x7793,Standard -0x11e45,CUS_0x90f,Standard -0x11e51,CUS_0x66e5,Standard -0x11e5d,CUS_0x6088,High -0x11e69,CUS_0x98f5,High -0x11e75,CUS_0x9533,Low -0x11e81,CUS_0xc10,High -0x11e8d,CUS_0x9081,Standard -0x11e99,CUS_0x1db4,Standard -0x11ea5,CUS_0x3fcf,Low -0x11eb1,CUS_0x7837,High -0x11ebd,CUS_0x3102,Low -0x11ec9,CUS_0x2cab,High -0x11ed5,CUS_0xa347,High -0x11ee1,CUS_0x42a5,Standard -0x11eed,CUS_0x604,High -0x11ef9,CUS_0x3a57,Standard -0x11f05,CUS_0x5128,Standard -0x11f11,CUS_0x68df,Standard -0x11f1d,CUS_0x7341,Low -0x11f29,CUS_0x88b6,Standard -0x11f35,CUS_0x7e02,Standard -0x11f41,CUS_0x7aba,Standard -0x11f4d,CUS_0xa520,Low -0x11f59,CUS_0x3bbe,Low -0x11f65,CUS_0xc6c7,Standard -0x11f71,CUS_0x8d60,High -0x11f7d,CUS_0x3c95,Standard -0x11f89,CUS_0x806c,High -0x11f95,CUS_0x47fe,Standard -0x11fa1,CUS_0xa973,Standard -0x11fad,CUS_0x689b,High -0x11fb9,CUS_0x4973,Standard -0x11fc5,CUS_0xadb2,Low -0x11fd1,CUS_0x3a41,Standard -0x11fdd,CUS_0x2c10,Standard -0x11fe9,CUS_0x805b,Standard -0x11ff5,CUS_0x86f4,High -0x12001,CUS_0x82d,Standard -0x1200d,CUS_0x5129,High -0x12019,CUS_0x61ec,Standard -0x12025,CUS_0x15da,Standard -0x12031,CUS_0x7955,Low -0x1203d,CUS_0x6d04,Low -0x12049,CUS_0x105c,Standard -0x12055,CUS_0x6083,Standard -0x12061,CUS_0xa7ab,Standard -0x1206d,CUS_0x1370,High -0x12079,CUS_0x8cbe,Low -0x12085,CUS_0x5180,Standard -0x12091,CUS_0xfb6,Standard -0x1209d,CUS_0x5525,Standard -0x120a9,CUS_0x59d0,Standard -0x120b5,CUS_0xc76,High -0x120c1,CUS_0x39b2,High -0x120cd,CUS_0x346d,Standard -0x120d9,CUS_0x9aef,Low -0x120e5,CUS_0xb2b5,Standard -0x120f1,CUS_0x1d8d,High -0x120fd,CUS_0xc5aa,Standard -0x12109,CUS_0x3948,Standard -0x12115,CUS_0x6dc9,Standard -0x12121,CUS_0x5cc8,Standard -0x1212d,CUS_0x3b72,Standard -0x12139,CUS_0x3f1d,Standard -0x12145,CUS_0x1ebc,Low -0x12151,CUS_0x504f,High -0x1215d,CUS_0x9f95,Standard -0x12169,CUS_0x2d7e,Low -0x12175,CUS_0xa36e,Standard -0x12181,CUS_0x94cf,Standard -0x1218d,CUS_0x879d,High -0x12199,CUS_0x6fa7,Standard -0x121a5,CUS_0x6cda,High -0x121b1,CUS_0x799b,Standard -0x121bd,CUS_0xab9d,High -0x121c9,CUS_0x2822,Low -0x121d5,CUS_0x67b1,Low -0x121e1,CUS_0xed4,Standard -0x121ed,CUS_0xc3c7,Low -0x121f9,CUS_0x8293,Standard -0x12205,CUS_0xb975,Standard -0x12211,CUS_0x4c96,Low -0x1221d,CUS_0x4ef6,High -0x12229,CUS_0x8fa7,Standard -0x12235,CUS_0x46b5,High -0x12241,CUS_0x211a,Standard -0x1224d,CUS_0x27c2,Standard -0x12259,CUS_0x6c65,High -0x12265,CUS_0x1f66,Standard -0x12271,CUS_0x552f,Low -0x1227d,CUS_0x6d54,Standard -0x12289,CUS_0x930a,Low -0x12295,CUS_0x5e28,Standard -0x122a1,CUS_0xab7d,Low -0x122ad,CUS_0x5e9d,High -0x122b9,CUS_0x3d58,Standard -0x122c5,CUS_0xad6d,Standard -0x122d1,CUS_0xb39f,High -0x122dd,CUS_0x962b,Standard -0x122e9,CUS_0x57da,Standard -0x122f5,CUS_0x99e5,High -0x12301,CUS_0x9b80,Standard -0x1230d,CUS_0x7ac9,Standard -0x12319,CUS_0x1c3b,Low -0x12325,CUS_0x9b22,Standard -0x12331,CUS_0x584a,High -0x1233d,CUS_0x79d9,High -0x12349,CUS_0xaa14,Standard -0x12355,CUS_0x9d23,Standard -0x12361,CUS_0x6032,High -0x1236d,CUS_0x4424,Standard -0x12379,CUS_0x65d0,Standard -0x12385,CUS_0x841f,Standard -0x12391,CUS_0x8018,Standard -0x1239d,CUS_0x3e32,Standard -0x123a9,CUS_0xab43,High -0x123b5,CUS_0x3713,Low -0x123c1,CUS_0x821a,Standard -0x123cd,CUS_0x9398,Standard -0x123d9,CUS_0x64d4,Low -0x123e5,CUS_0x6cb4,High -0x123f1,CUS_0x8d48,Standard -0x123fd,CUS_0x537,Standard -0x12409,CUS_0x3f69,High -0x12415,CUS_0x81ac,Standard -0x12421,CUS_0x2a15,High -0x1242d,CUS_0x9dc2,Standard -0x12439,CUS_0x4a82,Standard -0x12445,CUS_0x8c68,Standard -0x12451,CUS_0xa814,Standard -0x1245d,CUS_0x4596,Standard -0x12469,CUS_0x968a,Standard -0x12475,CUS_0x2f7a,Low -0x12481,CUS_0x6f91,Standard -0x1248d,CUS_0x510f,Standard -0x12499,CUS_0xbbda,Low -0x124a5,CUS_0x86c0,High -0x124b1,CUS_0x92e5,Standard -0x124bd,CUS_0x33bf,High -0x124c9,CUS_0x9000,Standard -0x124d5,CUS_0x92ff,Standard -0x124e1,CUS_0xa614,Standard -0x124ed,CUS_0x780c,Standard -0x124f9,CUS_0x1f8d,Standard -0x12505,CUS_0xc249,Standard -0x12511,CUS_0x8d22,High -0x1251d,CUS_0xb03b,High -0x12529,CUS_0x6b7,Standard -0x12535,CUS_0x2b73,Standard -0x12541,CUS_0xb38d,High -0x1254d,CUS_0x2709,Standard -0x12559,CUS_0xa075,High -0x12565,CUS_0x872f,Low -0x12571,CUS_0x6a79,Standard -0x1257d,CUS_0xac5d,Standard -0x12589,CUS_0xad53,Standard -0x12595,CUS_0x11b1,Standard -0x125a1,CUS_0x3260,Standard -0x125ad,CUS_0x26bf,Low -0x125b9,CUS_0x10b6,Standard -0x125c5,CUS_0x56f1,High -0x125d1,CUS_0x6a9e,High -0x125dd,CUS_0x3525,Standard -0x125e9,CUS_0x7f9c,Standard -0x125f5,CUS_0x4999,Standard -0x12601,CUS_0x2353,High -0x1260d,CUS_0x584b,Standard -0x12619,CUS_0x2788,High -0x12625,CUS_0x631e,High -0x12631,CUS_0x463,Standard -0x1263d,CUS_0x9650,Standard -0x12649,CUS_0xf30,Standard -0x12655,CUS_0x7ed8,Standard -0x12661,CUS_0x727e,Low -0x1266d,CUS_0x51a4,High -0x12679,CUS_0xb168,Low -0x12685,CUS_0x1542,Low -0x12691,CUS_0x434c,Standard -0x1269d,CUS_0x901c,High -0x126a9,CUS_0x315f,Low -0x126b5,CUS_0x3d42,High -0x126c1,CUS_0xab56,Low -0x126cd,CUS_0x40bd,Standard -0x126d9,CUS_0x5ef2,Standard -0x126e5,CUS_0xc2a7,High -0x126f1,CUS_0x1c3a,Low -0x126fd,CUS_0x78e9,Standard -0x12709,CUS_0x5749,Standard -0x12715,CUS_0x752c,Standard -0x12721,CUS_0x90e2,Standard -0x1272d,CUS_0x8800,High -0x12739,CUS_0xbc0e,Standard -0x12745,CUS_0x30bd,Standard -0x12751,CUS_0x43fd,Standard -0x1275d,CUS_0x6779,Standard -0x12769,CUS_0x2958,Low -0x12775,CUS_0x72f9,Low -0x12781,CUS_0x1c57,Standard -0x1278d,CUS_0x3b20,Standard -0x12799,CUS_0x50d5,Standard -0x127a5,CUS_0x883b,Standard -0x127b1,CUS_0x6ba2,Standard -0x127bd,CUS_0x5b41,Standard -0x127c9,CUS_0x2fb7,Standard -0x127d5,CUS_0x44b9,Standard -0x127e1,CUS_0x460f,High -0x127ed,CUS_0x165a,Standard -0x127f9,CUS_0x7032,Standard -0x12805,CUS_0xa79,High -0x12811,CUS_0x416,Standard -0x1281d,CUS_0x8a1,High -0x12829,CUS_0x5f1b,Standard -0x12835,CUS_0x3767,Standard -0x12841,CUS_0xbc56,Low -0x1284d,CUS_0x1821,High -0x12859,CUS_0x838a,Standard -0x12865,CUS_0x21c0,High -0x12871,CUS_0xa9a2,High -0x1287d,CUS_0xa84b,High -0x12889,CUS_0x4d03,Standard -0x12895,CUS_0x1e8d,Low -0x128a1,CUS_0x7eb2,High -0x128ad,CUS_0x69e5,Standard -0x128b9,CUS_0x6f3e,High -0x128c5,CUS_0x5478,High -0x128d1,CUS_0x4a18,Standard -0x128dd,CUS_0x2876,High -0x128e9,CUS_0x3872,Standard -0x128f5,CUS_0x7a34,Standard -0x12901,CUS_0x7928,Standard -0x1290d,CUS_0x9fc5,Standard -0x12919,CUS_0x75aa,High -0x12925,CUS_0x6a9,Standard -0x12931,CUS_0xbe68,Standard -0x1293d,CUS_0x4bbb,Standard -0x12949,CUS_0x25ae,Standard -0x12955,CUS_0x8f35,Low -0x12961,CUS_0xa934,Standard -0x1296d,CUS_0x2f77,Standard -0x12979,CUS_0x3119,Low -0x12985,CUS_0x1a00,Low -0x12991,CUS_0x51a1,Standard -0x1299d,CUS_0x45de,Low -0x129a9,CUS_0x961f,Standard -0x129b5,CUS_0xbd0b,Standard -0x129c1,CUS_0x42ec,Low -0x129cd,CUS_0x269a,High -0x129d9,CUS_0x48ac,High -0x129e5,CUS_0x5a54,High -0x129f1,CUS_0x1cbe,Standard -0x129fd,CUS_0x9fce,High -0x12a09,CUS_0x49d3,Standard -0x12a15,CUS_0x4533,Standard -0x12a21,CUS_0x7468,High -0x12a2d,CUS_0xbc67,Low -0x12a39,CUS_0x8a39,Standard -0x12a45,CUS_0x84af,Standard -0x12a51,CUS_0x7210,Standard -0x12a5d,CUS_0x92e3,Standard -0x12a69,CUS_0x7315,Standard -0x12a75,CUS_0xc0cd,High -0x12a81,CUS_0x5aeb,High -0x12a8d,CUS_0x1e91,Standard -0x12a99,CUS_0xc5d1,High -0x12aa5,CUS_0x43bc,Low -0x12ab1,CUS_0x2999,Standard -0x12abd,CUS_0x65ca,Low -0x12ac9,CUS_0x70c5,Standard -0x12ad5,CUS_0x446,High -0x12ae1,CUS_0x7528,Standard -0x12aed,CUS_0x13bc,Standard -0x12af9,CUS_0x4b9c,Standard -0x12b05,CUS_0x6d71,High -0x12b11,CUS_0xdc1,Low -0x12b1d,CUS_0x1a4a,Low -0x12b29,CUS_0xb443,Standard -0x12b35,CUS_0xa9a,Standard -0x12b41,CUS_0xd50,Low -0x12b4d,CUS_0x5883,High -0x12b59,CUS_0xa40d,Standard -0x12b65,CUS_0x330a,High -0x12b71,CUS_0xb4c3,High -0x12b7d,CUS_0x56d6,Standard -0x12b89,CUS_0x174b,Standard -0x12b95,CUS_0x2703,High -0x12ba1,CUS_0x837e,Standard -0x12bad,CUS_0x993a,Low -0x12bb9,CUS_0x46ef,Standard -0x12bc5,CUS_0x4abd,Standard -0x12bd1,CUS_0x432e,Low -0x12bdd,CUS_0x7281,High -0x12be9,CUS_0x2491,High -0x12bf5,CUS_0xa780,Low -0x12c01,CUS_0x729,High -0x12c0d,CUS_0x1458,Standard -0x12c19,CUS_0x2eb3,Standard -0x12c25,CUS_0x92d6,High -0x12c31,CUS_0x2a12,Standard -0x12c3d,CUS_0x4695,Standard -0x12c49,CUS_0xae34,Standard -0x12c55,CUS_0x5d4f,Low -0x12c61,CUS_0x245e,Standard -0x12c6d,CUS_0x4fb8,High -0x12c79,CUS_0x932a,High -0x12c85,CUS_0x9978,High -0x12c91,CUS_0xea5,Low -0x12c9d,CUS_0x3610,Standard -0x12ca9,CUS_0x38b4,Standard -0x12cb5,CUS_0x8cb5,High -0x12cc1,CUS_0x6ecf,Standard -0x12ccd,CUS_0x8854,High -0x12cd9,CUS_0x4e01,High -0x12ce5,CUS_0x14b4,Low -0x12cf1,CUS_0x8d77,Standard -0x12cfd,CUS_0x4da9,High -0x12d09,CUS_0x8f7e,Standard -0x12d15,CUS_0xb7a4,Standard -0x12d21,CUS_0xb15e,Standard -0x12d2d,CUS_0x12be,Standard -0x12d39,CUS_0x81e6,High -0x12d45,CUS_0x98cd,Low -0x12d51,CUS_0x4470,Standard -0x12d5d,CUS_0x20ba,Standard -0x12d69,CUS_0x7354,Standard -0x12d75,CUS_0x8d02,High -0x12d81,CUS_0x55d9,High -0x12d8d,CUS_0x3bd0,High -0x12d99,CUS_0x19fc,Standard -0x12da5,CUS_0xbe20,Standard -0x12db1,CUS_0x9319,Standard -0x12dbd,CUS_0x4adc,High -0x12dc9,CUS_0x456f,Standard -0x12dd5,CUS_0x150d,High -0x12de1,CUS_0xb337,Standard -0x12ded,CUS_0x334d,Standard -0x12df9,CUS_0x90d8,Standard -0x12e05,CUS_0x884a,Standard -0x12e11,CUS_0x4c87,High -0x12e1d,CUS_0xc066,Standard -0x12e29,CUS_0x5ecb,High -0x12e35,CUS_0x51c9,Standard -0x12e41,CUS_0x42a,Standard -0x12e4d,CUS_0xbc04,Standard -0x12e59,CUS_0x509e,High -0x12e65,CUS_0xbd90,Standard -0x12e71,CUS_0x8841,Low -0x12e7d,CUS_0xc40f,High -0x12e89,CUS_0x6172,High -0x12e95,CUS_0x56cf,Standard -0x12ea1,CUS_0x5915,High -0x12ead,CUS_0x3023,High -0x12eb9,CUS_0xa493,Low -0x12ec5,CUS_0x169c,Low -0x12ed1,CUS_0x406e,Standard -0x12edd,CUS_0x3a93,High -0x12ee9,CUS_0x2a5d,Standard -0x12ef5,CUS_0x2cc2,High -0x12f01,CUS_0x673c,Standard -0x12f0d,CUS_0x5a77,High -0x12f19,CUS_0x3c90,Low -0x12f25,CUS_0x80d8,Standard -0x12f31,CUS_0x92df,High -0x12f3d,CUS_0xb0e5,Low -0x12f49,CUS_0xa08e,Low -0x12f55,CUS_0x4a0d,Standard -0x12f61,CUS_0xbec6,Standard -0x12f6d,CUS_0x5a2f,Standard -0x12f79,CUS_0x4838,Standard -0x12f85,CUS_0x96fa,Low -0x12f91,CUS_0x1290,Low -0x12f9d,CUS_0x5ffa,Standard -0x12fa9,CUS_0x8dfe,Standard -0x12fb5,CUS_0x67e4,Standard -0x12fc1,CUS_0x7044,Standard -0x12fcd,CUS_0x872e,Standard -0x12fd9,CUS_0x60aa,High -0x12fe5,CUS_0x9233,Standard -0x12ff1,CUS_0x3fdf,Standard -0x12ffd,CUS_0x9a4f,Low -0x13009,CUS_0x9836,Standard -0x13015,CUS_0x5eec,Low -0x13021,CUS_0xc258,Standard -0x1302d,CUS_0x9976,High -0x13039,CUS_0xb645,Standard -0x13045,CUS_0xa3db,Standard -0x13051,CUS_0x8e50,Standard -0x1305d,CUS_0x5bad,Standard -0x13069,CUS_0x5b2f,Standard -0x13075,CUS_0x8bdf,Standard -0x13081,CUS_0xbd4a,Standard -0x1308d,CUS_0x2c3e,Standard -0x13099,CUS_0x9f55,Standard -0x130a5,CUS_0x785,Standard -0x130b1,CUS_0x6fff,Low -0x130bd,CUS_0xbb9a,Low -0x130c9,CUS_0x5978,High -0x130d5,CUS_0x8b38,Standard -0x130e1,CUS_0x4bcf,Low -0x130ed,CUS_0x3b46,Standard -0x130f9,CUS_0x6bda,Low -0x13105,CUS_0xcfc,Low -0x13111,CUS_0xc0af,High -0x1311d,CUS_0xb6e7,High -0x13129,CUS_0x51fe,Standard -0x13135,CUS_0x54b3,High -0x13141,CUS_0x48a6,Standard -0x1314d,CUS_0x5dd3,Low -0x13159,CUS_0x1f36,Standard -0x13165,CUS_0xb9c9,High -0x13171,CUS_0x867a,High -0x1317d,CUS_0x666b,Standard -0x13189,CUS_0x3a86,Standard -0x13195,CUS_0x8a9c,Standard -0x131a1,CUS_0x81ee,Standard -0x131ad,CUS_0x7ea0,Standard -0x131b9,CUS_0x8990,Low -0x131c5,CUS_0x7f70,Standard -0x131d1,CUS_0x9122,Standard -0x131dd,CUS_0x9762,High -0x131e9,CUS_0x344a,Standard -0x131f5,CUS_0x3554,Standard -0x13201,CUS_0x4c71,Standard -0x1320d,CUS_0x4fee,Standard -0x13219,CUS_0x5087,High -0x13225,CUS_0x36d3,Standard -0x13231,CUS_0x81d6,High -0x1323d,CUS_0x6ae2,Standard -0x13249,CUS_0x2342,Standard -0x13255,CUS_0x6b35,High -0x13261,CUS_0x235a,Standard -0x1326d,CUS_0xb0e8,Standard -0x13279,CUS_0x41ee,High -0x13285,CUS_0x85f1,Standard -0x13291,CUS_0x9340,Standard -0x1329d,CUS_0x94ef,High -0x132a9,CUS_0x15b4,Low -0x132b5,CUS_0xc26a,Standard -0x132c1,CUS_0x80ce,Standard -0x132cd,CUS_0x41eb,Standard -0x132d9,CUS_0x84cc,High -0x132e5,CUS_0x2bf6,Standard -0x132f1,CUS_0x5fc6,Standard -0x132fd,CUS_0x8d04,Standard -0x13309,CUS_0x7011,High -0x13315,CUS_0x2f86,High -0x13321,CUS_0x75f2,Low -0x1332d,CUS_0x7a8e,Standard -0x13339,CUS_0x4394,High -0x13345,CUS_0x2f7d,Standard -0x13351,CUS_0x1920,Standard -0x1335d,CUS_0x3faa,High -0x13369,CUS_0x4ebf,High -0x13375,CUS_0x438d,Low -0x13381,CUS_0xc265,Low -0x1338d,CUS_0x4ee9,Low -0x13399,CUS_0x55eb,Standard -0x133a5,CUS_0x98ed,Standard -0x133b1,CUS_0x4f3b,Low -0x133bd,CUS_0x966b,Standard -0x133c9,CUS_0xb83e,Low -0x133d5,CUS_0x5cac,High -0x133e1,CUS_0xc29e,Standard -0x133ed,CUS_0x2dec,High -0x133f9,CUS_0x22b9,High -0x13405,CUS_0xc669,Standard -0x13411,CUS_0x525f,Standard -0x1341d,CUS_0x6ba,Low -0x13429,CUS_0x895d,Standard -0x13435,CUS_0x6ee0,High -0x13441,CUS_0xa55e,Low -0x1344d,CUS_0xbb85,Standard -0x13459,CUS_0x821,Standard -0x13465,CUS_0x6603,Standard -0x13471,CUS_0x80b7,High -0x1347d,CUS_0x6b0c,Low -0x13489,CUS_0xa290,Standard -0x13495,CUS_0x737a,Low -0x134a1,CUS_0x77b6,Standard -0x134ad,CUS_0x93f4,High -0x134b9,CUS_0x9275,Standard -0x134c5,CUS_0x7a51,Standard -0x134d1,CUS_0xc12f,Standard -0x134dd,CUS_0x88e5,Low -0x134e9,CUS_0x5121,Low -0x134f5,CUS_0x87d5,Standard -0x13501,CUS_0xa394,Standard -0x1350d,CUS_0xa279,Standard -0x13519,CUS_0x1638,High -0x13525,CUS_0x1bc4,Standard -0x13531,CUS_0x603a,High -0x1353d,CUS_0xa84d,High -0x13549,CUS_0x6b6e,Standard -0x13555,CUS_0x8870,Low -0x13561,CUS_0x501c,High -0x1356d,CUS_0x69df,Standard -0x13579,CUS_0xb22f,High -0x13585,CUS_0x98c2,Standard -0x13591,CUS_0x17c5,High -0x1359d,CUS_0x9416,High -0x135a9,CUS_0x845d,High -0x135b5,CUS_0x3806,Standard -0x135c1,CUS_0x7033,Low -0x135cd,CUS_0x581b,Low -0x135d9,CUS_0x5234,Low -0x135e5,CUS_0x919a,High -0x135f1,CUS_0x61c6,Standard -0x135fd,CUS_0x9694,Standard -0x13609,CUS_0x14b9,Standard -0x13615,CUS_0x6915,High -0x13621,CUS_0x9bb4,Standard -0x1362d,CUS_0x6cec,Standard -0x13639,CUS_0x3551,Standard -0x13645,CUS_0xc48d,Standard -0x13651,CUS_0x932,Standard -0x1365d,CUS_0x63af,Standard -0x13669,CUS_0xc2dd,Standard -0x13675,CUS_0x4972,Standard -0x13681,CUS_0x2d76,Standard -0x1368d,CUS_0x347b,High -0x13699,CUS_0x55b3,High -0x136a5,CUS_0xb59e,Low -0x136b1,CUS_0xbcdd,Standard -0x136bd,CUS_0xf84,Standard -0x136c9,CUS_0x67ec,Standard -0x136d5,CUS_0x51b9,High -0x136e1,CUS_0x8b78,Low -0x136ed,CUS_0x8823,Standard -0x136f9,CUS_0x5aa7,Low -0x13705,CUS_0x2778,Standard -0x13711,CUS_0x8786,High -0x1371d,CUS_0xc6c3,High -0x13729,CUS_0xba2a,Standard -0x13735,CUS_0xb61a,High -0x13741,CUS_0x7392,High -0x1374d,CUS_0x21c1,Standard -0x13759,CUS_0x7699,Standard -0x13765,CUS_0x508c,Low -0x13771,CUS_0xba01,Standard -0x1377d,CUS_0xc1d7,Standard -0x13789,CUS_0x6b4d,Standard -0x13795,CUS_0x679e,High -0x137a1,CUS_0x69a2,Standard -0x137ad,CUS_0xdf5,Standard -0x137b9,CUS_0x4056,Standard -0x137c5,CUS_0x6a27,Standard -0x137d1,CUS_0x4c64,Low -0x137dd,CUS_0xaabb,Standard -0x137e9,CUS_0x3b4f,High -0x137f5,CUS_0x421d,High -0x13801,CUS_0x2881,High -0x1380d,CUS_0x1aaf,Standard -0x13819,CUS_0x61ba,High -0x13825,CUS_0xbfb5,Standard -0x13831,CUS_0x6dd3,High -0x1383d,CUS_0x9e43,Standard -0x13849,CUS_0x6420,High -0x13855,CUS_0x3f75,Standard -0x13861,CUS_0xb001,Standard -0x1386d,CUS_0x82b6,High -0x13879,CUS_0x23b9,Standard -0x13885,CUS_0x25e3,High -0x13891,CUS_0x663d,High -0x1389d,CUS_0x6f11,Standard -0x138a9,CUS_0x30f8,Standard -0x138b5,CUS_0x79bc,High -0x138c1,CUS_0xfac,Standard -0x138cd,CUS_0x1c65,High -0x138d9,CUS_0x62d7,Standard -0x138e5,CUS_0xc4dd,Standard -0x138f1,CUS_0x5a8b,High -0x138fd,CUS_0x23a4,High -0x13909,CUS_0x7e76,Standard -0x13915,CUS_0xc48b,High -0x13921,CUS_0x265a,Standard -0x1392d,CUS_0x715e,High -0x13939,CUS_0x9a93,Standard -0x13945,CUS_0xa570,Standard -0x13951,CUS_0x4fc1,Low -0x1395d,CUS_0xb57b,Standard -0x13969,CUS_0x78a7,Standard -0x13975,CUS_0x4340,High -0x13981,CUS_0x6568,High -0x1398d,CUS_0x1c9c,High -0x13999,CUS_0x980b,Low -0x139a5,CUS_0x3c51,High -0x139b1,CUS_0x2f38,Standard -0x139bd,CUS_0x73ae,High -0x139c9,CUS_0x6793,Standard -0x139d5,CUS_0x1236,Standard -0x139e1,CUS_0x9382,High -0x139ed,CUS_0x6590,Standard -0x139f9,CUS_0x2301,High -0x13a05,CUS_0x2bfb,High -0x13a11,CUS_0x6db3,Standard -0x13a1d,CUS_0x9f6c,High -0x13a29,CUS_0x4b5e,High -0x13a35,CUS_0x987d,Standard -0x13a41,CUS_0x2bf3,Standard -0x13a4d,CUS_0xb7f7,Standard -0x13a59,CUS_0xaa29,Standard -0x13a65,CUS_0x45cc,Standard -0x13a71,CUS_0x50e1,Standard -0x13a7d,CUS_0x2059,High -0x13a89,CUS_0x4c09,Standard -0x13a95,CUS_0x3a50,High -0x13aa1,CUS_0xd20,Standard -0x13aad,CUS_0x6c8f,Low -0x13ab9,CUS_0x1fc1,Standard -0x13ac5,CUS_0xa936,Standard -0x13ad1,CUS_0xb888,High -0x13add,CUS_0x9684,Standard -0x13ae9,CUS_0x12ec,High -0x13af5,CUS_0x419d,High -0x13b01,CUS_0x2646,Standard -0x13b0d,CUS_0xa234,Standard -0x13b19,CUS_0xc734,Standard -0x13b25,CUS_0x6694,High -0x13b31,CUS_0x3d76,Standard -0x13b3d,CUS_0x7180,Standard -0x13b49,CUS_0xa465,Standard -0x13b55,CUS_0xa57b,Standard -0x13b61,CUS_0x268d,Standard -0x13b6d,CUS_0xbef3,Standard -0x13b79,CUS_0x5d1a,Standard -0x13b85,CUS_0x51c0,High -0x13b91,CUS_0x3db1,Standard -0x13b9d,CUS_0x8c39,High -0x13ba9,CUS_0x17c4,High -0x13bb5,CUS_0x9469,Low -0x13bc1,CUS_0x520a,High -0x13bcd,CUS_0x39e5,High -0x13bd9,CUS_0x9443,High -0x13be5,CUS_0xba97,High -0x13bf1,CUS_0x9051,Standard -0x13bfd,CUS_0x661d,High -0x13c09,CUS_0x1100,High -0x13c15,CUS_0xb07d,High -0x13c21,CUS_0xc5ea,Low -0x13c2d,CUS_0x239e,Standard -0x13c39,CUS_0xb436,High -0x13c45,CUS_0xb611,Standard -0x13c51,CUS_0x78ca,Standard -0x13c5d,CUS_0x557f,Standard -0x13c69,CUS_0x9692,Standard -0x13c75,CUS_0x8546,Standard -0x13c81,CUS_0x9942,Standard -0x13c8d,CUS_0x4544,Standard -0x13c99,CUS_0xb8a3,Standard -0x13ca5,CUS_0xa50e,High -0x13cb1,CUS_0x5b8c,Low -0x13cbd,CUS_0x3a70,Standard -0x13cc9,CUS_0x5293,Standard -0x13cd5,CUS_0x26d7,Low -0x13ce1,CUS_0x4c6c,Low -0x13ced,CUS_0x64b4,Low -0x13cf9,CUS_0x4228,Low -0x13d05,CUS_0x897e,Standard -0x13d11,CUS_0x84b,Standard -0x13d1d,CUS_0x92b9,High -0x13d29,CUS_0x96b1,Standard -0x13d35,CUS_0x7c13,High -0x13d41,CUS_0x90e,High -0x13d4d,CUS_0x844d,Standard -0x13d59,CUS_0x4c2c,Standard -0x13d65,CUS_0x8b0c,High -0x13d71,CUS_0x3873,Low -0x13d7d,CUS_0x2ff8,Standard -0x13d89,CUS_0x28d8,Low -0x13d95,CUS_0xa6e0,Low -0x13da1,CUS_0x792f,Low -0x13dad,CUS_0xb798,Standard -0x13db9,CUS_0xb450,Low -0x13dc5,CUS_0x4be1,Standard -0x13dd1,CUS_0xab26,Standard -0x13ddd,CUS_0x71de,Standard -0x13de9,CUS_0x440e,Standard -0x13df5,CUS_0x203c,High -0x13e01,CUS_0xaa8d,Low -0x13e0d,CUS_0xe23,Standard -0x13e19,CUS_0xa2e5,Standard -0x13e25,CUS_0x12b6,Standard -0x13e31,CUS_0xa163,Low -0x13e3d,CUS_0x8002,Low -0x13e49,CUS_0x245d,Standard -0x13e55,CUS_0xbbb0,High -0x13e61,CUS_0x1226,Standard -0x13e6d,CUS_0x6be5,Standard -0x13e79,CUS_0x9c0,Low -0x13e85,CUS_0x840f,Low -0x13e91,CUS_0x4555,High -0x13e9d,CUS_0x8e44,Low -0x13ea9,CUS_0x43d1,Low -0x13eb5,CUS_0x8125,Standard -0x13ec1,CUS_0xa7a3,High -0x13ecd,CUS_0xa6f6,Low -0x13ed9,CUS_0x9c9c,Standard -0x13ee5,CUS_0xbc7d,High -0x13ef1,CUS_0x95e7,High -0x13efd,CUS_0x82db,High -0x13f09,CUS_0x80bd,Standard -0x13f15,CUS_0x56c8,Low -0x13f21,CUS_0x3636,Standard -0x13f2d,CUS_0x32ad,High -0x13f39,CUS_0x12bf,Standard -0x13f45,CUS_0x7069,Low -0x13f51,CUS_0x632f,Low -0x13f5d,CUS_0x9ff7,Standard -0x13f69,CUS_0x8031,High -0x13f75,CUS_0x9774,Standard -0x13f81,CUS_0x46a,Low -0x13f8d,CUS_0x2ce9,Standard -0x13f99,CUS_0x24c3,Low -0x13fa5,CUS_0x19a9,Low -0x13fb1,CUS_0x6f0a,High -0x13fbd,CUS_0x3761,Standard -0x13fc9,CUS_0x68be,Standard -0x13fd5,CUS_0x9576,Standard -0x13fe1,CUS_0x6228,Standard -0x13fed,CUS_0xb9d5,Standard -0x13ff9,CUS_0x35ca,Standard -0x14005,CUS_0x5e78,Low -0x14011,CUS_0xbdbf,Low -0x1401d,CUS_0x36b3,Standard -0x14029,CUS_0xb473,Standard -0x14035,CUS_0x10e2,High -0x14041,CUS_0x948f,Standard -0x1404d,CUS_0x22fe,Standard -0x14059,CUS_0x7a8,Low -0x14065,CUS_0x1f42,Standard -0x14071,CUS_0xbd06,High -0x1407d,CUS_0x3274,Standard -0x14089,CUS_0x7a77,Standard -0x14095,CUS_0x27e2,High -0x140a1,CUS_0x5db9,Low -0x140ad,CUS_0x67d0,Standard -0x140b9,CUS_0x1c70,Low -0x140c5,CUS_0xa37f,Standard -0x140d1,CUS_0x3852,High -0x140dd,CUS_0xbb75,Low -0x140e9,CUS_0x979f,Standard -0x140f5,CUS_0x3928,Standard -0x14101,CUS_0x16f4,Standard -0x1410d,CUS_0xa2b9,Standard -0x14119,CUS_0x8140,High -0x14125,CUS_0xa8c6,Standard -0x14131,CUS_0xaa0a,Standard -0x1413d,CUS_0x2083,Standard -0x14149,CUS_0x4ec5,Low -0x14155,CUS_0x1319,Standard -0x14161,CUS_0x663e,Standard -0x1416d,CUS_0x94f6,Low -0x14179,CUS_0x7986,High -0x14185,CUS_0x2d6a,Low -0x14191,CUS_0x74b1,High -0x1419d,CUS_0xc0fd,Standard -0x141a9,CUS_0x7558,Standard -0x141b5,CUS_0x9175,Low -0x141c1,CUS_0xb732,Standard -0x141cd,CUS_0x1f24,High -0x141d9,CUS_0x63b7,Standard -0x141e5,CUS_0x426a,Low -0x141f1,CUS_0xbe6f,High -0x141fd,CUS_0x1ffb,High -0x14209,CUS_0xd7d,High -0x14215,CUS_0xc08b,Low -0x14221,CUS_0x36b0,Standard -0x1422d,CUS_0x7a36,Low -0x14239,CUS_0x8da8,Standard -0x14245,CUS_0x7577,Low -0x14251,CUS_0x7aaa,Standard -0x1425d,CUS_0x4d40,High -0x14269,CUS_0x1bac,Standard -0x14275,CUS_0x5354,Standard -0x14281,CUS_0x7de5,High -0x1428d,CUS_0x5fd1,Standard -0x14299,CUS_0x2a1b,Standard -0x142a5,CUS_0x914e,Low -0x142b1,CUS_0x8988,Low -0x142bd,CUS_0xbd9f,Low -0x142c9,CUS_0xb49f,High -0x142d5,CUS_0xd6f,Standard -0x142e1,CUS_0x3cfa,Standard -0x142ed,CUS_0x18a6,Low -0x142f9,CUS_0x8d16,Standard -0x14305,CUS_0x707c,Standard -0x14311,CUS_0x5b0d,Standard -0x1431d,CUS_0x66ef,Standard -0x14329,CUS_0x88fa,Standard -0x14335,CUS_0xc4b2,Standard -0x14341,CUS_0x826d,Standard -0x1434d,CUS_0x8ccd,Standard -0x14359,CUS_0x2dc9,Standard -0x14365,CUS_0x7101,Low -0x14371,CUS_0x9729,Standard -0x1437d,CUS_0x4c4b,Standard -0x14389,CUS_0x6468,Low -0x14395,CUS_0x8c5a,High -0x143a1,CUS_0x5bfe,Standard -0x143ad,CUS_0x8834,Standard -0x143b9,CUS_0x7d1f,Low -0x143c5,CUS_0xb7df,Standard -0x143d1,CUS_0x38e0,Low -0x143dd,CUS_0xbce,High -0x143e9,CUS_0x1231,Standard -0x143f5,CUS_0x507a,Standard -0x14401,CUS_0x5c1c,High -0x1440d,CUS_0x7ea4,Standard -0x14419,CUS_0x8d0d,Low -0x14425,CUS_0x8f59,High -0x14431,CUS_0x6a50,Low -0x1443d,CUS_0xb4c2,High -0x14449,CUS_0x112f,Low -0x14455,CUS_0x3bad,Standard -0x14461,CUS_0x1ccd,Standard -0x1446d,CUS_0x985e,Standard -0x14479,CUS_0x21b6,Standard -0x14485,CUS_0xac46,High -0x14491,CUS_0x7677,Standard -0x1449d,CUS_0xae26,Standard -0x144a9,CUS_0x3407,Standard -0x144b5,CUS_0x5ae2,Standard -0x144c1,CUS_0x6136,Standard -0x144cd,CUS_0x663,Standard -0x144d9,CUS_0xbe72,High -0x144e5,CUS_0x8513,Standard -0x144f1,CUS_0xa5c,High -0x144fd,CUS_0xc4d7,Standard -0x14509,CUS_0x47f1,Standard -0x14515,CUS_0x363a,High -0x14521,CUS_0x2561,Standard -0x1452d,CUS_0xb338,Low -0x14539,CUS_0x1d21,Standard -0x14545,CUS_0xc4a2,Standard -0x14551,CUS_0x2a46,Standard -0x1455d,CUS_0xab9,Standard -0x14569,CUS_0x3be5,Standard -0x14575,CUS_0xc680,Standard -0x14581,CUS_0x45e1,Standard -0x1458d,CUS_0xa2b6,Standard -0x14599,CUS_0x7478,Standard -0x145a5,CUS_0x92f9,Standard -0x145b1,CUS_0x5536,Standard -0x145bd,CUS_0x8d32,Standard -0x145c9,CUS_0x981c,Standard -0x145d5,CUS_0x7756,Low -0x145e1,CUS_0x6156,Standard -0x145ed,CUS_0xad7e,Low -0x145f9,CUS_0x918c,Standard -0x14605,CUS_0xba9f,Standard -0x14611,CUS_0x1d86,Standard -0x1461d,CUS_0xbf40,Standard -0x14629,CUS_0x1854,Low -0x14635,CUS_0x83c5,High -0x14641,CUS_0x997a,Standard -0x1464d,CUS_0x4a5d,Standard -0x14659,CUS_0x6fec,Standard -0x14665,CUS_0x4e2,Standard -0x14671,CUS_0x4d8b,Standard -0x1467d,CUS_0x626e,Standard -0x14689,CUS_0x5d3d,High -0x14695,CUS_0x9be9,High -0x146a1,CUS_0x86ce,Standard -0x146ad,CUS_0x9d62,Low -0x146b9,CUS_0x6fbf,High -0x146c5,CUS_0xe72,Standard -0x146d1,CUS_0xa4f3,High -0x146dd,CUS_0xb395,Low -0x146e9,CUS_0x3e62,High -0x146f5,CUS_0x81ae,Standard -0x14701,CUS_0x87c5,Standard -0x1470d,CUS_0x6826,Standard -0x14719,CUS_0xb130,Standard -0x14725,CUS_0x3c5e,High -0x14731,CUS_0x76a6,Standard -0x1473d,CUS_0x5b7d,High -0x14749,CUS_0x1c24,Standard -0x14755,CUS_0x8bb5,High -0x14761,CUS_0x99ba,Low -0x1476d,CUS_0x41ea,Low -0x14779,CUS_0x9cc4,Standard -0x14785,CUS_0xd66,Standard -0x14791,CUS_0x55f4,Standard -0x1479d,CUS_0x61a4,Standard -0x147a9,CUS_0x946e,High -0x147b5,CUS_0x8277,Low -0x147c1,CUS_0x1d28,High -0x147cd,CUS_0x275d,High -0x147d9,CUS_0x3243,High -0x147e5,CUS_0x1140,Standard -0x147f1,CUS_0x1dd9,Low -0x147fd,CUS_0x831,High -0x14809,CUS_0x2912,Standard -0x14815,CUS_0x6f0c,Standard -0x14821,CUS_0x8144,Low -0x1482d,CUS_0x23e9,Standard -0x14839,CUS_0x7edf,Low -0x14845,CUS_0x47ea,Standard -0x14851,CUS_0x53c,Standard -0x1485d,CUS_0x7c73,High -0x14869,CUS_0x4e22,Low -0x14875,CUS_0x9754,Low -0x14881,CUS_0x5d87,High -0x1488d,CUS_0x6a1d,High -0x14899,CUS_0x2181,Standard -0x148a5,CUS_0x843,Standard -0x148b1,CUS_0x3c39,Standard -0x148bd,CUS_0xbedd,Low -0x148c9,CUS_0x4bfc,Standard -0x148d5,CUS_0x6c12,Standard -0x148e1,CUS_0x570b,Standard -0x148ed,CUS_0x47c5,Standard -0x148f9,CUS_0xc700,High -0x14905,CUS_0xc513,Standard -0x14911,CUS_0xa5a0,Standard -0x1491d,CUS_0x4496,High -0x14929,CUS_0x3b1b,Standard -0x14935,CUS_0x8d0f,Standard -0x14941,CUS_0x29e0,Standard -0x1494d,CUS_0x898a,Standard -0x14959,CUS_0x4be,Standard -0x14965,CUS_0x2c4c,High -0x14971,CUS_0x3f1,Standard -0x1497d,CUS_0x4ab2,Standard -0x14989,CUS_0x7264,Standard -0x14995,CUS_0x7ef7,Standard -0x149a1,CUS_0x9997,High -0x149ad,CUS_0x3b85,Standard -0x149b9,CUS_0x7fc8,Standard -0x149c5,CUS_0x8343,Low -0x149d1,CUS_0x442b,Low -0x149dd,CUS_0x53f3,Low -0x149e9,CUS_0x68b4,Standard -0x149f5,CUS_0x7512,Standard -0x14a01,CUS_0x8747,Low -0x14a0d,CUS_0x502c,Standard -0x14a19,CUS_0xa3aa,Standard -0x14a25,CUS_0xb7cf,Low -0x14a31,CUS_0x5f55,Standard -0x14a3d,CUS_0x69c6,Standard -0x14a49,CUS_0x57f2,Standard -0x14a55,CUS_0x82e6,Standard -0x14a61,CUS_0x41a0,Standard -0x14a6d,CUS_0xb48d,Low -0x14a79,CUS_0x3061,Standard -0x14a85,CUS_0x70f2,Standard -0x14a91,CUS_0x45ea,Standard -0x14a9d,CUS_0x4ab,Low -0x14aa9,CUS_0x333f,Standard -0x14ab5,CUS_0x5c06,Standard -0x14ac1,CUS_0xbe55,Standard -0x14acd,CUS_0x3992,High -0x14ad9,CUS_0x7671,High -0x14ae5,CUS_0x8ad5,Low -0x14af1,CUS_0xc0d,High -0x14afd,CUS_0xadd5,Standard -0x14b09,CUS_0x24a1,Standard -0x14b15,CUS_0x1fae,Standard -0x14b21,CUS_0xadb5,Standard -0x14b2d,CUS_0x51e1,Low -0x14b39,CUS_0x5fde,Standard -0x14b45,CUS_0x73b3,High -0x14b51,CUS_0x24e1,Standard -0x14b5d,CUS_0x2391,Standard -0x14b69,CUS_0x32cb,High -0x14b75,CUS_0x7f3,High -0x14b81,CUS_0x247b,Low -0x14b8d,CUS_0xc1bb,Low -0x14b99,CUS_0x7462,High -0x14ba5,CUS_0x67cd,Standard -0x14bb1,CUS_0x7a59,Standard -0x14bbd,CUS_0x1e18,Low -0x14bc9,CUS_0xb699,Standard -0x14bd5,CUS_0xbcb2,High -0x14be1,CUS_0x63c3,Standard -0x14bed,CUS_0x1382,Standard -0x14bf9,CUS_0x7e1a,Low -0x14c05,CUS_0x760c,Low -0x14c11,CUS_0x38d8,Standard -0x14c1d,CUS_0xc47b,High -0x14c29,CUS_0x4f52,Low -0x14c35,CUS_0xa540,High -0x14c41,CUS_0xb28a,Standard -0x14c4d,CUS_0x6ef6,Low -0x14c59,CUS_0x29b5,Low -0x14c65,CUS_0x14a3,Standard -0x14c71,CUS_0x454c,Low -0x14c7d,CUS_0x5735,Standard -0x14c89,CUS_0x82fc,Standard -0x14c95,CUS_0xc6cb,Low -0x14ca1,CUS_0x20a3,Standard -0x14cad,CUS_0x574a,Standard -0x14cb9,CUS_0x6aa4,High -0x14cc5,CUS_0xc570,Standard -0x14cd1,CUS_0x62da,Standard -0x14cdd,CUS_0xc01e,High -0x14ce9,CUS_0xb1dc,Standard -0x14cf5,CUS_0xb3ac,High -0x14d01,CUS_0x8067,High -0x14d0d,CUS_0xa11c,High -0x14d19,CUS_0x2890,High -0x14d25,CUS_0x4f92,Standard -0x14d31,CUS_0xd96,Standard -0x14d3d,CUS_0x40cf,Standard -0x14d49,CUS_0x9bd9,Low -0x14d55,CUS_0x8842,Standard -0x14d61,CUS_0x9ba4,Standard -0x14d6d,CUS_0xc2c7,Standard -0x14d79,CUS_0x11a4,High -0x14d85,CUS_0x79aa,Standard -0x14d91,CUS_0x5b20,Standard -0x14d9d,CUS_0x9f5d,Standard -0x14da9,CUS_0x727a,High -0x14db5,CUS_0x5eef,Standard -0x14dc1,CUS_0x9339,Standard -0x14dcd,CUS_0x7c8d,High -0x14dd9,CUS_0xa20b,Low -0x14de5,CUS_0xb37a,High -0x14df1,CUS_0xbfd2,Standard -0x14dfd,CUS_0xbd2d,Standard -0x14e09,CUS_0x8d95,Standard -0x14e15,CUS_0xb6b,Low -0x14e21,CUS_0x6f40,Low -0x14e2d,CUS_0x4854,Standard -0x14e39,CUS_0x741b,Standard -0x14e45,CUS_0x35ac,Standard -0x14e51,CUS_0xbcc9,Standard -0x14e5d,CUS_0xb808,Standard -0x14e69,CUS_0x4468,Standard -0x14e75,CUS_0x86a8,Standard -0x14e81,CUS_0x12cb,High -0x14e8d,CUS_0x7532,Standard -0x14e99,CUS_0x7ba9,Standard -0x14ea5,CUS_0xb00a,Low -0x14eb1,CUS_0x345e,High -0x14ebd,CUS_0x42ef,Standard -0x14ec9,CUS_0x769d,High -0x14ed5,CUS_0x3643,Standard -0x14ee1,CUS_0x3a3b,Low -0x14eed,CUS_0xaad9,Standard -0x14ef9,CUS_0x9b81,Standard -0x14f05,CUS_0xc6ac,Standard -0x14f11,CUS_0x3849,Low -0x14f1d,CUS_0x46c4,Standard -0x14f29,CUS_0xa323,Standard -0x14f35,CUS_0x9cc,High -0x14f41,CUS_0x63df,Standard -0x14f4d,CUS_0xb03f,Standard -0x14f59,CUS_0x7b0,Low -0x14f65,CUS_0x407a,Low -0x14f71,CUS_0xc146,Standard -0x14f7d,CUS_0x3fb4,Standard -0x14f89,CUS_0xbecb,High -0x14f95,CUS_0xb3b3,Low -0x14fa1,CUS_0x2bc9,High -0x14fad,CUS_0x4feb,Low -0x14fb9,CUS_0x8036,Low -0x14fc5,CUS_0xc05d,High -0x14fd1,CUS_0xbe3,Standard -0x14fdd,CUS_0x383c,Low -0x14fe9,CUS_0x26f8,High -0x14ff5,CUS_0x1eee,Standard -0x15001,CUS_0xa8d6,Standard -0x1500d,CUS_0x74a3,High -0x15019,CUS_0x494b,Standard -0x15025,CUS_0x9247,Standard -0x15031,CUS_0x3264,Standard -0x1503d,CUS_0x7fc3,Low -0x15049,CUS_0x139b,Low -0x15055,CUS_0x7af8,Standard -0x15061,CUS_0x94f4,Low -0x1506d,CUS_0x2da2,Standard -0x15079,CUS_0x82b,Standard -0x15085,CUS_0xa69f,High -0x15091,CUS_0x1572,Standard -0x1509d,CUS_0x12c1,High -0x150a9,CUS_0x8a8e,High -0x150b5,CUS_0xa01f,Standard -0x150c1,CUS_0x2246,Standard -0x150cd,CUS_0xb457,Standard -0x150d9,CUS_0x60f1,High -0x150e5,CUS_0x42e6,Standard -0x150f1,CUS_0x7cb9,High -0x150fd,CUS_0x69f3,Standard -0x15109,CUS_0x84bf,Standard -0x15115,CUS_0x2b51,Standard -0x15121,CUS_0xa2a1,Standard -0x1512d,CUS_0x99f1,Standard -0x15139,CUS_0x8b18,High -0x15145,CUS_0xbfeb,High -0x15151,CUS_0xa7f8,Standard -0x1515d,CUS_0x529b,High -0x15169,CUS_0x386e,High -0x15175,CUS_0x1dac,Standard -0x15181,CUS_0xa742,High -0x1518d,CUS_0xa82c,Standard -0x15199,CUS_0xa1de,Standard -0x151a5,CUS_0x79ff,High -0x151b1,CUS_0x3f5,High -0x151bd,CUS_0xc2c5,Standard -0x151c9,CUS_0x9acb,Standard -0x151d5,CUS_0x80e2,Standard -0x151e1,CUS_0x5625,High -0x151ed,CUS_0xba94,Standard -0x151f9,CUS_0x4460,Low -0x15205,CUS_0xc0b3,High -0x15211,CUS_0xc42f,High -0x1521d,CUS_0x1343,Low -0x15229,CUS_0x6058,Low -0x15235,CUS_0x268b,High -0x15241,CUS_0x59f5,Low -0x1524d,CUS_0x1ec5,Low -0x15259,CUS_0x4ae9,Standard -0x15265,CUS_0xae2e,Standard -0x15271,CUS_0x1a53,Standard -0x1527d,CUS_0x33bc,High -0x15289,CUS_0xbfef,Low -0x15295,CUS_0x8f68,High -0x152a1,CUS_0x4dfb,Low -0x152ad,CUS_0x8e40,Standard -0x152b9,CUS_0xa3c,Standard -0x152c5,CUS_0x4605,Low -0x152d1,CUS_0x789,Standard -0x152dd,CUS_0x94d2,Low -0x152e9,CUS_0x95d4,Standard -0x152f5,CUS_0xb7d0,Standard -0x15301,CUS_0xaa93,High -0x1530d,CUS_0xaa66,Standard -0x15319,CUS_0x1567,Standard -0x15325,CUS_0x9c17,High -0x15331,CUS_0x70d8,Low -0x1533d,CUS_0x8980,High -0x15349,CUS_0x3e7f,High -0x15355,CUS_0x9da0,High -0x15361,CUS_0x32ba,Low -0x1536d,CUS_0x6733,Standard -0x15379,CUS_0x47c8,High -0x15385,CUS_0xba16,High -0x15391,CUS_0x3c41,Standard -0x1539d,CUS_0x9d1a,Standard -0x153a9,CUS_0x12a4,Standard -0x153b5,CUS_0xc737,Low -0x153c1,CUS_0xadab,Low -0x153cd,CUS_0x9bb9,Low -0x153d9,CUS_0x8b11,Standard -0x153e5,CUS_0x5eaf,Low -0x153f1,CUS_0x6f5c,Low -0x153fd,CUS_0xa04d,Standard -0x15409,CUS_0xe99,Standard -0x15415,CUS_0x733c,High -0x15421,CUS_0xc548,High -0x1542d,CUS_0xbf9a,High -0x15439,CUS_0x2b1a,Low -0x15445,CUS_0x7d43,Standard -0x15451,CUS_0x473f,Low -0x1545d,CUS_0x9aeb,Standard -0x15469,CUS_0x8f84,Low -0x15475,CUS_0x64c,Standard -0x15481,CUS_0x70ac,Standard -0x1548d,CUS_0x2993,Standard -0x15499,CUS_0x9305,Low -0x154a5,CUS_0xa2b,Standard -0x154b1,CUS_0xa89b,Standard -0x154bd,CUS_0x5bec,High -0x154c9,CUS_0x2f22,Standard -0x154d5,CUS_0x3f6,Low -0x154e1,CUS_0x87a4,Standard -0x154ed,CUS_0x6fa,Low -0x154f9,CUS_0x535d,Standard -0x15505,CUS_0x9ff5,Standard -0x15511,CUS_0xf2e,Standard -0x1551d,CUS_0x5b30,Standard -0x15529,CUS_0xa0c,Standard -0x15535,CUS_0x51d8,Standard -0x15541,CUS_0x7f46,Low -0x1554d,CUS_0x3134,Standard -0x15559,CUS_0xa123,Standard -0x15565,CUS_0xb66d,Standard -0x15571,CUS_0x2547,Standard -0x1557d,CUS_0x3f9,High -0x15589,CUS_0x4802,Standard -0x15595,CUS_0x6817,Standard -0x155a1,CUS_0x29d8,High -0x155ad,CUS_0x5877,Standard -0x155b9,CUS_0x1ce6,High -0x155c5,CUS_0x8945,High -0x155d1,CUS_0x4c1c,Standard -0x155dd,CUS_0x8171,Standard -0x155e9,CUS_0xa336,Standard -0x155f5,CUS_0x3906,Standard -0x15601,CUS_0x6894,Standard -0x1560d,CUS_0x8fa8,Low -0x15619,CUS_0x21f4,High -0x15625,CUS_0x2c13,High -0x15631,CUS_0xbb6a,High -0x1563d,CUS_0x97d,High -0x15649,CUS_0x68ef,Standard -0x15655,CUS_0x5737,Standard -0x15661,CUS_0x6bc0,Standard -0x1566d,CUS_0x6b3a,Standard -0x15679,CUS_0x68cf,High -0x15685,CUS_0xb7f1,High -0x15691,CUS_0xab01,Standard -0x1569d,CUS_0x13b2,Standard -0x156a9,CUS_0x93f,Standard -0x156b5,CUS_0x36f2,Standard -0x156c1,CUS_0x301d,Standard -0x156cd,CUS_0x861a,Standard -0x156d9,CUS_0x1de5,High -0x156e5,CUS_0x7641,Standard -0x156f1,CUS_0x3d78,High -0x156fd,CUS_0x7765,Low -0x15709,CUS_0x47d5,High -0x15715,CUS_0x1fcd,Standard -0x15721,CUS_0x466a,Standard -0x1572d,CUS_0x8853,Standard -0x15739,CUS_0x9c79,Low -0x15745,CUS_0x21a7,Standard -0x15751,CUS_0x7768,Low -0x1575d,CUS_0x4ee7,Low -0x15769,CUS_0x872b,High -0x15775,CUS_0xbb2a,Standard -0x15781,CUS_0x8a30,Standard -0x1578d,CUS_0x15f1,High -0x15799,CUS_0x70a3,High -0x157a5,CUS_0x4287,High -0x157b1,CUS_0xb887,Low -0x157bd,CUS_0x888e,Standard -0x157c9,CUS_0x81de,Low -0x157d5,CUS_0xa7cd,Standard -0x157e1,CUS_0x5db2,Standard -0x157ed,CUS_0xb99e,High -0x157f9,CUS_0x8697,Standard -0x15805,CUS_0x2ab3,Standard -0x15811,CUS_0x5247,Standard -0x1581d,CUS_0x5da3,Low -0x15829,CUS_0x323f,High -0x15835,CUS_0x65fc,Standard -0x15841,CUS_0x3139,Standard -0x1584d,CUS_0x5ed2,High -0x15859,CUS_0x7a4d,Standard -0x15865,CUS_0xbf66,High -0x15871,CUS_0x5f5d,Standard -0x1587d,CUS_0x1dbb,High -0x15889,CUS_0x83ef,Low -0x15895,CUS_0x84fe,High -0x158a1,CUS_0xc00f,Standard -0x158ad,CUS_0x4946,High -0x158b9,CUS_0xc88,Standard -0x158c5,CUS_0x9486,High -0x158d1,CUS_0x4c9b,Standard -0x158dd,CUS_0x9b27,Standard -0x158e9,CUS_0x7b47,Standard -0x158f5,CUS_0x1bb0,Standard -0x15901,CUS_0xbd5e,Low -0x1590d,CUS_0x5d6a,High -0x15919,CUS_0x3fde,Standard -0x15925,CUS_0x26a7,Standard -0x15931,CUS_0x3acc,Standard -0x1593d,CUS_0x7e0f,Low -0x15949,CUS_0x3baf,Standard -0x15955,CUS_0x33d6,Low -0x15961,CUS_0x56b9,Standard -0x1596d,CUS_0x5f45,Low -0x15979,CUS_0x24ee,High -0x15985,CUS_0x3e17,High -0x15991,CUS_0x4d6d,Standard -0x1599d,CUS_0x40be,Standard -0x159a9,CUS_0x3b9d,High -0x159b5,CUS_0xaa4,High -0x159c1,CUS_0xada3,Low -0x159cd,CUS_0xb97,Standard -0x159d9,CUS_0xac5a,Standard -0x159e5,CUS_0xb749,High -0x159f1,CUS_0x8a27,Standard -0x159fd,CUS_0x1b9c,Low -0x15a09,CUS_0x18ab,Standard -0x15a15,CUS_0x8a47,Standard -0x15a21,CUS_0xa737,Standard -0x15a2d,CUS_0x470c,Standard -0x15a39,CUS_0xc58,Standard -0x15a45,CUS_0x73e6,Standard -0x15a51,CUS_0x950a,High -0x15a5d,CUS_0x9c9f,Low -0x15a69,CUS_0xc71a,Standard -0x15a75,CUS_0x3542,High -0x15a81,CUS_0x7d96,High -0x15a8d,CUS_0x3f1a,High -0x15a99,CUS_0xbfa7,Standard -0x15aa5,CUS_0x715f,Standard -0x15ab1,CUS_0x689,Standard -0x15abd,CUS_0x36ec,Standard -0x15ac9,CUS_0x7226,Low -0x15ad5,CUS_0xa0be,Standard -0x15ae1,CUS_0x35f4,Standard -0x15aed,CUS_0x7ee,Standard -0x15af9,CUS_0xb1f6,Standard -0x15b05,CUS_0x7843,Standard -0x15b11,CUS_0x7088,Low -0x15b1d,CUS_0x30ca,Standard -0x15b29,CUS_0x4dc5,Standard -0x15b35,CUS_0x78eb,Low -0x15b41,CUS_0x97a2,High -0x15b4d,CUS_0x70ea,Standard -0x15b59,CUS_0xb46a,High -0x15b65,CUS_0x328e,Standard -0x15b71,CUS_0x4daa,Standard -0x15b7d,CUS_0x8179,Standard -0x15b89,CUS_0xa25a,High -0x15b95,CUS_0x1931,High -0x15ba1,CUS_0x7766,Low -0x15bad,CUS_0x93a7,Standard -0x15bb9,CUS_0xa47e,High -0x15bc5,CUS_0x8cdb,Low -0x15bd1,CUS_0xb68,Standard -0x15bdd,CUS_0x126d,Standard -0x15be9,CUS_0xa2fd,Standard -0x15bf5,CUS_0xb76f,Low -0x15c01,CUS_0x5993,Standard -0x15c0d,CUS_0x9235,Standard -0x15c19,CUS_0x8564,Standard -0x15c25,CUS_0x477d,Standard -0x15c31,CUS_0x9d7d,High -0x15c3d,CUS_0xad3f,Low -0x15c49,CUS_0x7aa9,High -0x15c55,CUS_0x1138,Standard -0x15c61,CUS_0x97bd,High -0x15c6d,CUS_0x1277,Standard -0x15c79,CUS_0x9550,Standard -0x15c85,CUS_0xb83d,Standard -0x15c91,CUS_0xa1c3,Low -0x15c9d,CUS_0x47d3,Low -0x15ca9,CUS_0x5585,Low -0x15cb5,CUS_0x5e1f,Standard -0x15cc1,CUS_0x6dbb,Standard -0x15ccd,CUS_0x3530,Standard -0x15cd9,CUS_0x2f9b,High -0x15ce5,CUS_0x8fb4,Standard -0x15cf1,CUS_0x8d6e,Standard -0x15cfd,CUS_0x6d05,Low -0x15d09,CUS_0x69b4,Standard -0x15d15,CUS_0x7154,Standard -0x15d21,CUS_0x3821,High -0x15d2d,CUS_0x2c3c,High -0x15d39,CUS_0x84ae,Standard -0x15d45,CUS_0xc68,High -0x15d51,CUS_0x11ac,Standard -0x15d5d,CUS_0x4ade,Standard -0x15d69,CUS_0x4d98,Standard -0x15d75,CUS_0x33de,Standard -0x15d81,CUS_0xae61,Standard -0x15d8d,CUS_0x579e,High -0x15d99,CUS_0x9ae4,Standard -0x15da5,CUS_0x79d3,Standard -0x15db1,CUS_0x659,High -0x15dbd,CUS_0xb1d2,Standard -0x15dc9,CUS_0x650b,Low -0x15dd5,CUS_0xa4ee,High -0x15de1,CUS_0xa8d8,High -0x15ded,CUS_0x8535,Standard -0x15df9,CUS_0xab0d,Low -0x15e05,CUS_0xc719,Standard -0x15e11,CUS_0xa08c,Standard -0x15e1d,CUS_0x6f64,Standard -0x15e29,CUS_0x7bbb,Standard -0x15e35,CUS_0x75a0,Standard -0x15e41,CUS_0xa6d5,High -0x15e4d,CUS_0x5f92,High -0x15e59,CUS_0x8617,Standard -0x15e65,CUS_0x4781,Standard -0x15e71,CUS_0x4567,Standard -0x15e7d,CUS_0x5789,Standard -0x15e89,CUS_0xae57,High -0x15e95,CUS_0x3090,Standard -0x15ea1,CUS_0x7303,Standard -0x15ead,CUS_0x947a,Standard -0x15eb9,CUS_0x27b9,Standard -0x15ec5,CUS_0x2b94,Standard -0x15ed1,CUS_0x8d9,Standard -0x15edd,CUS_0xb293,High -0x15ee9,CUS_0x558f,Standard -0x15ef5,CUS_0x6574,High -0x15f01,CUS_0xa677,Standard -0x15f0d,CUS_0x4f72,Standard -0x15f19,CUS_0x51cb,Standard -0x15f25,CUS_0x458d,Standard -0x15f31,CUS_0xa964,Low -0x15f3d,CUS_0x27fa,Standard -0x15f49,CUS_0xa2af,High -0x15f55,CUS_0x2a77,Standard -0x15f61,CUS_0x1d1c,Standard -0x15f6d,CUS_0x6b10,Standard -0x15f79,CUS_0x456d,Standard -0x15f85,CUS_0x4ba7,Standard -0x15f91,CUS_0xb7ea,Standard -0x15f9d,CUS_0x36ff,Standard -0x15fa9,CUS_0xdef,Standard -0x15fb5,CUS_0xbaab,Standard -0x15fc1,CUS_0xc3aa,Standard -0x15fcd,CUS_0x7a46,Standard -0x15fd9,CUS_0xa0d,Low -0x15fe5,CUS_0x754d,Standard -0x15ff1,CUS_0x1e98,Standard -0x15ffd,CUS_0x58ea,Standard -0x16009,CUS_0x440f,Standard -0x16015,CUS_0xa94f,Low -0x16021,CUS_0xabd9,Low -0x1602d,CUS_0x6b7c,High -0x16039,CUS_0x4bd,Standard -0x16045,CUS_0x6956,High -0x16051,CUS_0x652c,Low -0x1605d,CUS_0x944,Standard -0x16069,CUS_0x8d39,High -0x16075,CUS_0x47e3,High -0x16081,CUS_0xbfe7,Standard -0x1608d,CUS_0x6e8,Standard -0x16099,CUS_0x6573,Low -0x160a5,CUS_0x40d7,Standard -0x160b1,CUS_0x3dfe,Standard -0x160bd,CUS_0xbff8,Standard -0x160c9,CUS_0x5182,High -0x160d5,CUS_0x880e,Standard -0x160e1,CUS_0x45af,Standard -0x160ed,CUS_0x2d05,Low -0x160f9,CUS_0x7ea2,Low -0x16105,CUS_0x9ad,Standard -0x16111,CUS_0xc03f,Standard -0x1611d,CUS_0x29dd,Standard -0x16129,CUS_0x2bf1,Standard -0x16135,CUS_0x85be,Standard -0x16141,CUS_0x5953,Low -0x1614d,CUS_0x855f,High -0x16159,CUS_0xb3aa,Standard -0x16165,CUS_0x2508,High -0x16171,CUS_0x65e4,Standard -0x1617d,CUS_0x4aef,High -0x16189,CUS_0x3d99,Low -0x16195,CUS_0xc3df,High -0x161a1,CUS_0x87e7,Standard -0x161ad,CUS_0x1dcf,High -0x161b9,CUS_0x2bf4,Standard -0x161c5,CUS_0x79bf,Standard -0x161d1,CUS_0x47c1,High -0x161dd,CUS_0x37a4,High -0x161e9,CUS_0x47ec,High -0x161f5,CUS_0x2d3e,Standard -0x16201,CUS_0x8f6a,Standard -0x1620d,CUS_0x649d,Standard -0x16219,CUS_0xc6dd,Standard -0x16225,CUS_0x2dc6,Standard -0x16231,CUS_0x38df,Low -0x1623d,CUS_0x6dc5,Standard -0x16249,CUS_0xb556,Low -0x16255,CUS_0x264a,Standard -0x16261,CUS_0x5d5f,Standard -0x1626d,CUS_0x8e73,Standard -0x16279,CUS_0x476c,Low -0x16285,CUS_0x67a9,Standard -0x16291,CUS_0x1000,High -0x1629d,CUS_0x8124,Low -0x162a9,CUS_0xa751,Standard -0x162b5,CUS_0x446f,Standard -0x162c1,CUS_0x3040,High -0x162cd,CUS_0xb8f6,Standard -0x162d9,CUS_0x7a05,Standard -0x162e5,CUS_0x721,High -0x162f1,CUS_0x9ee4,Low -0x162fd,CUS_0x552,Low -0x16309,CUS_0x38c1,Standard -0x16315,CUS_0x6700,Low -0x16321,CUS_0xb71e,Standard -0x1632d,CUS_0xac5f,Low -0x16339,CUS_0xa8b9,High -0x16345,CUS_0x5523,Standard -0x16351,CUS_0x7467,Low -0x1635d,CUS_0x1348,Standard -0x16369,CUS_0x2171,Standard -0x16375,CUS_0x18f4,Standard -0x16381,CUS_0x8e71,Standard -0x1638d,CUS_0x22ea,Low -0x16399,CUS_0x8aa2,Low -0x163a5,CUS_0x2bdc,High -0x163b1,CUS_0x85c6,Standard -0x163bd,CUS_0xadef,Standard -0x163c9,CUS_0x9a02,Standard -0x163d5,CUS_0xa001,High -0x163e1,CUS_0x6f2,Standard -0x163ed,CUS_0x1dbd,High -0x163f9,CUS_0x22ba,Low -0x16405,CUS_0x3026,High -0x16411,CUS_0x6b59,High -0x1641d,CUS_0x84b4,Standard -0x16429,CUS_0x853d,Standard -0x16435,CUS_0xc716,High -0x16441,CUS_0x682c,Standard -0x1644d,CUS_0x19de,Standard -0x16459,CUS_0x2308,Standard -0x16465,CUS_0xac8e,High -0x16471,CUS_0x6eb3,Standard -0x1647d,CUS_0xa667,Low -0x16489,CUS_0x4f0a,High -0x16495,CUS_0x1844,Standard -0x164a1,CUS_0x5813,Standard -0x164ad,CUS_0x9f25,Standard -0x164b9,CUS_0x159b,Standard -0x164c5,CUS_0x87df,Standard -0x164d1,CUS_0xb644,Low -0x164dd,CUS_0x7848,Low -0x164e9,CUS_0xb437,Low -0x164f5,CUS_0x5ece,Low -0x16501,CUS_0xb9ae,Low -0x1650d,CUS_0x5810,Standard -0x16519,CUS_0x8702,Standard -0x16525,CUS_0x970f,Standard -0x16531,CUS_0x75ee,Low -0x1653d,CUS_0x86c1,Standard -0x16549,CUS_0xa556,Low -0x16555,CUS_0xbd29,Standard -0x16561,CUS_0x5fd4,Standard -0x1656d,CUS_0x181c,Standard -0x16579,CUS_0xe7a,High -0x16585,CUS_0x1713,High -0x16591,CUS_0x844b,Low -0x1659d,CUS_0x53f6,Standard -0x165a9,CUS_0x3ccf,Low -0x165b5,CUS_0x6801,Standard -0x165c1,CUS_0x3528,Standard -0x165cd,CUS_0x8b31,Standard -0x165d9,CUS_0x95ef,High -0x165e5,CUS_0x36c5,High -0x165f1,CUS_0x7dff,Standard -0x165fd,CUS_0x62be,Standard -0x16609,CUS_0x23ae,High -0x16615,CUS_0x2c40,Standard -0x16621,CUS_0x741d,Standard -0x1662d,CUS_0x1a86,High -0x16639,CUS_0x6d17,Standard -0x16645,CUS_0xa969,Standard -0x16651,CUS_0x8917,Standard -0x1665d,CUS_0x7a32,Standard -0x16669,CUS_0x2004,Low -0x16675,CUS_0x5e84,High -0x16681,CUS_0x5f0e,High -0x1668d,CUS_0x9348,Standard -0x16699,CUS_0x7165,High -0x166a5,CUS_0x9124,High -0x166b1,CUS_0xce2,Standard -0x166bd,CUS_0x68ee,Low -0x166c9,CUS_0x494c,High -0x166d5,CUS_0xb5d4,Standard -0x166e1,CUS_0x8db6,High -0x166ed,CUS_0xc80,Standard -0x166f9,CUS_0xc4e7,Standard -0x16705,CUS_0x48ef,Standard -0x16711,CUS_0x6e8b,Low -0x1671d,CUS_0x2e76,Standard -0x16729,CUS_0xb1d8,Standard -0x16735,CUS_0x7a35,High -0x16741,CUS_0x2e28,Standard -0x1674d,CUS_0xbbf6,High -0x16759,CUS_0x111b,Low -0x16765,CUS_0x9c4f,Standard -0x16771,CUS_0xc41f,Standard -0x1677d,CUS_0x193b,Standard -0x16789,CUS_0x857a,Low -0x16795,CUS_0x80dc,High -0x167a1,CUS_0x191b,High -0x167ad,CUS_0x5c8d,Standard -0x167b9,CUS_0xa03e,High -0x167c5,CUS_0x37ec,High -0x167d1,CUS_0x1766,High -0x167dd,CUS_0x8100,High -0x167e9,CUS_0x9015,Standard -0x167f5,CUS_0xb167,Low -0x16801,CUS_0xbfa9,High -0x1680d,CUS_0xa1f6,Standard -0x16819,CUS_0x9e95,High -0x16825,CUS_0x3d26,Standard -0x16831,CUS_0xc1fa,High -0x1683d,CUS_0x443e,Standard -0x16849,CUS_0x2cd9,High -0x16855,CUS_0x7bc9,Standard -0x16861,CUS_0x1246,High -0x1686d,CUS_0xb814,Standard -0x16879,CUS_0x22e3,High -0x16885,CUS_0xb8d3,Standard -0x16891,CUS_0x5375,Low -0x1689d,CUS_0x2043,Standard -0x168a9,CUS_0x2696,High -0x168b5,CUS_0x3b6e,High -0x168c1,CUS_0x373e,High -0x168cd,CUS_0xaac2,Standard -0x168d9,CUS_0x9337,Low -0x168e5,CUS_0xc1b6,Standard -0x168f1,CUS_0x5222,Standard -0x168fd,CUS_0x553e,Standard -0x16909,CUS_0xb770,Standard -0x16915,CUS_0x14f4,Standard -0x16921,CUS_0x6f0b,Standard -0x1692d,CUS_0xc346,High -0x16939,CUS_0x58d6,High -0x16945,CUS_0xb1a3,High -0x16951,CUS_0x5ea2,Standard -0x1695d,CUS_0x6ee8,Standard -0x16969,CUS_0x65bf,Low -0x16975,CUS_0x1b56,High -0x16981,CUS_0x9103,Standard -0x1698d,CUS_0x7c6,Standard -0x16999,CUS_0x3065,High -0x169a5,CUS_0xa095,High -0x169b1,CUS_0x9bbe,Standard -0x169bd,CUS_0x438a,High -0x169c9,CUS_0x554b,Standard -0x169d5,CUS_0x9bf3,Low -0x169e1,CUS_0x1d56,High -0x169ed,CUS_0x1b99,Standard -0x169f9,CUS_0xc1bf,Standard -0x16a05,CUS_0x4cb8,Low -0x16a11,CUS_0x8ce4,Standard -0x16a1d,CUS_0x52c3,Standard -0x16a29,CUS_0xc653,Low -0x16a35,CUS_0x981,Standard -0x16a41,CUS_0x541c,Standard -0x16a4d,CUS_0x297f,High -0x16a59,CUS_0x6f65,Low -0x16a65,CUS_0xc072,High -0x16a71,CUS_0xbbaa,Standard -0x16a7d,CUS_0xa4dc,High -0x16a89,CUS_0x5b65,Standard -0x16a95,CUS_0x62a1,Standard -0x16aa1,CUS_0xa91e,Standard -0x16aad,CUS_0x4d0,Standard -0x16ab9,CUS_0x8f4e,High -0x16ac5,CUS_0x706e,Low -0x16ad1,CUS_0x43a7,High -0x16add,CUS_0x21f9,Standard -0x16ae9,CUS_0xad18,Standard -0x16af5,CUS_0x2c14,High -0x16b01,CUS_0xbafa,High -0x16b0d,CUS_0xbd76,Standard -0x16b19,CUS_0x574,Standard -0x16b25,CUS_0xa4f2,Standard -0x16b31,CUS_0x449,Standard -0x16b3d,CUS_0x2fec,High -0x16b49,CUS_0xb662,Standard -0x16b55,CUS_0x278f,Standard -0x16b61,CUS_0x235c,Standard -0x16b6d,CUS_0x1890,Standard -0x16b79,CUS_0xa18d,High -0x16b85,CUS_0x2ef1,Standard -0x16b91,CUS_0x4389,Standard -0x16b9d,CUS_0x4dcd,Standard -0x16ba9,CUS_0x92f8,Standard -0x16bb5,CUS_0x3f94,Low -0x16bc1,CUS_0xc203,Standard -0x16bcd,CUS_0x40dc,Low -0x16bd9,CUS_0x8318,Standard -0x16be5,CUS_0x45d2,Low -0x16bf1,CUS_0xa1ce,Standard -0x16bfd,CUS_0x72fb,Standard -0x16c09,CUS_0x55e0,High -0x16c15,CUS_0x368d,Standard -0x16c21,CUS_0x622e,Standard -0x16c2d,CUS_0x7c12,Standard -0x16c39,CUS_0x6493,Standard -0x16c45,CUS_0x4020,Standard -0x16c51,CUS_0x8059,High -0x16c5d,CUS_0x9a55,High -0x16c69,CUS_0x6e1c,Standard -0x16c75,CUS_0x3e6b,Standard -0x16c81,CUS_0x2cf4,Low -0x16c8d,CUS_0x57e,Standard -0x16c99,CUS_0xc420,Standard -0x16ca5,CUS_0xa4f5,High -0x16cb1,CUS_0x6200,High -0x16cbd,CUS_0x25f7,High -0x16cc9,CUS_0xa8d4,High -0x16cd5,CUS_0x6a84,High -0x16ce1,CUS_0x9476,High -0x16ced,CUS_0x457b,High -0x16cf9,CUS_0x8026,High -0x16d05,CUS_0xab92,Standard -0x16d11,CUS_0x7c4a,High -0x16d1d,CUS_0x94bc,Standard -0x16d29,CUS_0x168d,Standard -0x16d35,CUS_0x2240,Standard -0x16d41,CUS_0x8091,High -0x16d4d,CUS_0x9fb1,Low -0x16d59,CUS_0x3941,Standard -0x16d65,CUS_0x7a26,Low -0x16d71,CUS_0x624b,High -0x16d7d,CUS_0x1d1f,Standard -0x16d89,CUS_0x3155,High -0x16d95,CUS_0x19b2,Standard -0x16da1,CUS_0x5817,High -0x16dad,CUS_0x292d,Low -0x16db9,CUS_0xb602,Standard -0x16dc5,CUS_0x1ab9,Standard -0x16dd1,CUS_0x97a0,Standard -0x16ddd,CUS_0x2f68,Standard -0x16de9,CUS_0x6b5f,High -0x16df5,CUS_0x7d05,High -0x16e01,CUS_0x713d,High -0x16e0d,CUS_0xaf63,Standard -0x16e19,CUS_0x825d,Standard -0x16e25,CUS_0x79a8,High -0x16e31,CUS_0x41ae,Low -0x16e3d,CUS_0xad1e,Standard -0x16e49,CUS_0xb2a3,High -0x16e55,CUS_0xa9d6,High -0x16e61,CUS_0x6abf,Standard -0x16e6d,CUS_0x511d,Standard -0x16e79,CUS_0x22c5,Low -0x16e85,CUS_0x3442,Standard -0x16e91,CUS_0x14de,Standard -0x16e9d,CUS_0x1a61,Standard -0x16ea9,CUS_0x699,Low -0x16eb5,CUS_0x8ac6,Low -0x16ec1,CUS_0x1c89,Standard -0x16ecd,CUS_0x939b,Standard -0x16ed9,CUS_0x9529,Standard -0x16ee5,CUS_0xb15c,High -0x16ef1,CUS_0x1697,High -0x16efd,CUS_0xa70f,High -0x16f09,CUS_0x2d9a,High -0x16f15,CUS_0xb9c5,Standard -0x16f21,CUS_0x646e,Standard -0x16f2d,CUS_0x3937,High -0x16f39,CUS_0x219c,High -0x16f45,CUS_0xc1e7,Standard -0x16f51,CUS_0x742c,Standard -0x16f5d,CUS_0x67b0,Standard -0x16f69,CUS_0x2f21,Standard -0x16f75,CUS_0x8e5a,High -0x16f81,CUS_0x129b,Standard -0x16f8d,CUS_0x9587,Low -0x16f99,CUS_0x28ba,Standard -0x16fa5,CUS_0x3720,High -0x16fb1,CUS_0xcf0,Standard -0x16fbd,CUS_0xaea3,Standard -0x16fc9,CUS_0x2db3,Standard -0x16fd5,CUS_0x3507,Standard -0x16fe1,CUS_0x4603,Low -0x16fed,CUS_0xbf5c,Standard -0x16ff9,CUS_0x28f1,Standard -0x17005,CUS_0x8971,Standard -0x17011,CUS_0x5b6f,Standard -0x1701d,CUS_0x67a3,High -0x17029,CUS_0x14ca,High -0x17035,CUS_0x9a3c,Standard -0x17041,CUS_0xa5b4,Low -0x1704d,CUS_0x44e9,High -0x17059,CUS_0x66dd,High -0x17065,CUS_0x993d,Standard -0x17071,CUS_0xc351,Standard -0x1707d,CUS_0x8033,Standard -0x17089,CUS_0x434d,Standard -0x17095,CUS_0x709b,Low -0x170a1,CUS_0x48fd,High -0x170ad,CUS_0xaf16,High -0x170b9,CUS_0x3490,Standard -0x170c5,CUS_0x676c,Standard -0x170d1,CUS_0xb11e,Standard -0x170dd,CUS_0x8f9a,Standard -0x170e9,CUS_0x477c,High -0x170f5,CUS_0xa1df,Standard -0x17101,CUS_0x4d4,Low -0x1710d,CUS_0x7b40,High -0x17119,CUS_0x885f,Standard -0x17125,CUS_0x230c,High -0x17131,CUS_0x55b,Low -0x1713d,CUS_0x61a5,Standard -0x17149,CUS_0x55ed,High -0x17155,CUS_0x5fec,Standard -0x17161,CUS_0x242b,High -0x1716d,CUS_0x4086,Standard -0x17179,CUS_0x479c,Standard -0x17185,CUS_0x9bfa,Standard -0x17191,CUS_0x903e,Standard -0x1719d,CUS_0x3009,High -0x171a9,CUS_0x562b,Standard -0x171b5,CUS_0xb4cb,Low -0x171c1,CUS_0x880d,Low -0x171cd,CUS_0xbb48,Standard -0x171d9,CUS_0x691c,Standard -0x171e5,CUS_0x917b,High -0x171f1,CUS_0x2e16,Standard -0x171fd,CUS_0x569a,Standard -0x17209,CUS_0xa8e6,Standard -0x17215,CUS_0x7b23,Standard -0x17221,CUS_0xb551,Standard -0x1722d,CUS_0xab35,Standard -0x17239,CUS_0x3ec1,Standard -0x17245,CUS_0x4a24,Low -0x17251,CUS_0x73aa,Standard -0x1725d,CUS_0x2127,Low -0x17269,CUS_0x3e76,Standard -0x17275,CUS_0x9c14,Standard -0x17281,CUS_0x5292,Standard -0x1728d,CUS_0x9884,Standard -0x17299,CUS_0x9e09,Standard -0x172a5,CUS_0x35cb,Low -0x172b1,CUS_0x3ad2,Low -0x172bd,CUS_0xb13d,Standard -0x172c9,CUS_0x88e2,High -0x172d5,CUS_0x8521,Standard -0x172e1,CUS_0x7cb5,High -0x172ed,CUS_0x88c3,Standard -0x172f9,CUS_0x8081,Standard -0x17305,CUS_0x9501,Low -0x17311,CUS_0x8e70,High -0x1731d,CUS_0x37cc,Low -0x17329,CUS_0x40f2,High -0x17335,CUS_0x506d,Low -0x17341,CUS_0x8034,Low -0x1734d,CUS_0x6cf5,Standard -0x17359,CUS_0x9ed8,Standard -0x17365,CUS_0x609c,Standard -0x17371,CUS_0x8725,Low -0x1737d,CUS_0x202e,High -0x17389,CUS_0xc007,Standard -0x17395,CUS_0x946d,High -0x173a1,CUS_0x6ea4,Standard -0x173ad,CUS_0x6d94,Standard -0x173b9,CUS_0xb884,High -0x173c5,CUS_0x22f7,Standard -0x173d1,CUS_0x277a,High -0x173dd,CUS_0x9c98,Standard -0x173e9,CUS_0x8cf6,Standard -0x173f5,CUS_0x13ef,Standard -0x17401,CUS_0xc726,Low -0x1740d,CUS_0xa4bd,Standard -0x17419,CUS_0xc71f,Standard -0x17425,CUS_0x7189,Standard -0x17431,CUS_0x4811,Standard -0x1743d,CUS_0xb912,Standard -0x17449,CUS_0x2825,Standard -0x17455,CUS_0xb44d,High -0x17461,CUS_0x9e1a,Low -0x1746d,CUS_0xe3f,Standard -0x17479,CUS_0x7a39,Standard -0x17485,CUS_0x20b5,Low -0x17491,CUS_0xe10,Low -0x1749d,CUS_0x1f49,Standard -0x174a9,CUS_0x5c90,Standard -0x174b5,CUS_0x3182,Low -0x174c1,CUS_0xa2dd,High -0x174cd,CUS_0x9e11,High -0x174d9,CUS_0x4691,High -0x174e5,CUS_0xc5f4,Standard -0x174f1,CUS_0xb403,Low -0x174fd,CUS_0x873f,Standard -0x17509,CUS_0x854c,Standard -0x17515,CUS_0x47a,Low -0x17521,CUS_0xbf11,High -0x1752d,CUS_0x9a9,Standard -0x17539,CUS_0x6e0e,Low -0x17545,CUS_0xaeb5,Standard -0x17551,CUS_0x37e5,Standard -0x1755d,CUS_0x5c60,Standard -0x17569,CUS_0x8095,Standard -0x17575,CUS_0x66c4,Standard -0x17581,CUS_0x9760,Standard -0x1758d,CUS_0xb43,High -0x17599,CUS_0xa505,Standard -0x175a5,CUS_0xc06e,Standard -0x175b1,CUS_0x57c2,Low -0x175bd,CUS_0x8c88,High -0x175c9,CUS_0x74e9,Standard -0x175d5,CUS_0x6f4c,High -0x175e1,CUS_0x14d1,High -0x175ed,CUS_0x76b8,Standard -0x175f9,CUS_0x63a6,Low -0x17605,CUS_0x9eb9,High -0x17611,CUS_0x5ee0,Standard -0x1761d,CUS_0xc59e,Standard -0x17629,CUS_0x5c68,Low -0x17635,CUS_0xa974,Standard -0x17641,CUS_0x9c85,Standard -0x1764d,CUS_0x1011,Standard -0x17659,CUS_0xb381,Standard -0x17665,CUS_0x148b,Standard -0x17671,CUS_0xc067,High -0x1767d,CUS_0x991d,Standard -0x17689,CUS_0xbb43,High -0x17695,CUS_0xbccf,Standard -0x176a1,CUS_0x40d,Standard -0x176ad,CUS_0x3bd2,Standard -0x176b9,CUS_0x3a6c,Low -0x176c5,CUS_0x3053,Standard -0x176d1,CUS_0x39cf,Standard -0x176dd,CUS_0x5c59,Standard -0x176e9,CUS_0x4f65,Standard -0x176f5,CUS_0x9017,Standard -0x17701,CUS_0x5f49,Standard -0x1770d,CUS_0x5235,High -0x17719,CUS_0x84a9,Low -0x17725,CUS_0x9b9e,Low -0x17731,CUS_0x4148,High -0x1773d,CUS_0x348a,Low -0x17749,CUS_0x6f22,Low -0x17755,CUS_0x5bc7,Standard -0x17761,CUS_0x16d0,Standard -0x1776d,CUS_0x8bce,Standard -0x17779,CUS_0x8201,Low -0x17785,CUS_0x5f0f,Standard -0x17791,CUS_0x102e,High -0x1779d,CUS_0x52d5,Standard -0x177a9,CUS_0x829a,Low -0x177b5,CUS_0x9ece,Standard -0x177c1,CUS_0x6148,High -0x177cd,CUS_0x40d1,Low -0x177d9,CUS_0x6b1c,High -0x177e5,CUS_0x885d,High -0x177f1,CUS_0x1aee,Standard -0x177fd,CUS_0x4192,Standard -0x17809,CUS_0x40f8,High -0x17815,CUS_0xa7db,Standard -0x17821,CUS_0x6f86,Standard -0x1782d,CUS_0xbbbb,Low -0x17839,CUS_0x51e6,Standard -0x17845,CUS_0x5f25,Low -0x17851,CUS_0x74bf,Standard -0x1785d,CUS_0x9cc3,High -0x17869,CUS_0xab37,High -0x17875,CUS_0x4778,High -0x17881,CUS_0x53f0,Standard -0x1788d,CUS_0x5f83,Standard -0x17899,CUS_0x836e,Standard -0x178a5,CUS_0x2abc,Standard -0x178b1,CUS_0xc180,Standard -0x178bd,CUS_0x9513,Low -0x178c9,CUS_0x44c3,Standard -0x178d5,CUS_0x3fce,Standard -0x178e1,CUS_0x8d33,Low -0x178ed,CUS_0x2adf,Standard -0x178f9,CUS_0x1abc,Standard -0x17905,CUS_0x61ff,High -0x17911,CUS_0x4327,Standard -0x1791d,CUS_0x5cdc,Standard -0x17929,CUS_0xa0ba,Standard -0x17935,CUS_0x2c06,High -0x17941,CUS_0x5ec2,Standard -0x1794d,CUS_0x1d7a,High -0x17959,CUS_0x22f4,Standard -0x17965,CUS_0xbb88,Low -0x17971,CUS_0x3e4a,High -0x1797d,CUS_0x47f9,Standard -0x17989,CUS_0x3d3d,Standard -0x17995,CUS_0x8773,Standard -0x179a1,CUS_0x3e40,Standard -0x179ad,CUS_0xafd1,High -0x179b9,CUS_0x675f,Standard -0x179c5,CUS_0x3a96,Standard -0x179d1,CUS_0x66c3,High -0x179dd,CUS_0x7a84,Standard -0x179e9,CUS_0xc571,High -0x179f5,CUS_0x61a1,Standard -0x17a01,CUS_0x3319,Low -0x17a0d,CUS_0x8132,Standard -0x17a19,CUS_0x4fed,High -0x17a25,CUS_0x4453,Standard -0x17a31,CUS_0xa61a,Standard -0x17a3d,CUS_0xa62f,Standard -0x17a49,CUS_0xafb6,Standard -0x17a55,CUS_0x8072,Low -0x17a61,CUS_0xbccc,High -0x17a6d,CUS_0x60c2,Standard -0x17a79,CUS_0x5c3f,Standard -0x17a85,CUS_0x7fd3,Standard -0x17a91,CUS_0x8d91,High -0x17a9d,CUS_0x55a1,Low -0x17aa9,CUS_0x48d2,High -0x17ab5,CUS_0x778b,Standard -0x17ac1,CUS_0x4c33,Standard -0x17acd,CUS_0x991b,Low -0x17ad9,CUS_0xc5cc,Standard -0x17ae5,CUS_0x8c90,Standard -0x17af1,CUS_0xc4ac,Standard -0x17afd,CUS_0x2b76,Standard -0x17b09,CUS_0x2f3d,Low -0x17b15,CUS_0x8a3c,Standard -0x17b21,CUS_0x1537,High -0x17b2d,CUS_0x857b,Standard -0x17b39,CUS_0x6819,Standard -0x17b45,CUS_0x7d42,Low -0x17b51,CUS_0x1dfd,Standard -0x17b5d,CUS_0x60d,Standard -0x17b69,CUS_0xa0a5,Standard -0x17b75,CUS_0x27a4,Standard -0x17b81,CUS_0x388a,High -0x17b8d,CUS_0xad15,High -0x17b99,CUS_0x9fe6,Standard -0x17ba5,CUS_0x8f58,Standard -0x17bb1,CUS_0xf60,Standard -0x17bbd,CUS_0xa22a,Standard -0x17bc9,CUS_0x94e9,High -0x17bd5,CUS_0x2800,Standard -0x17be1,CUS_0x61b0,High -0x17bed,CUS_0x7c47,High -0x17bf9,CUS_0x1c7e,Standard -0x17c05,CUS_0x36c2,Standard -0x17c11,CUS_0x6f8b,Standard -0x17c1d,CUS_0x575d,Standard -0x17c29,CUS_0x60ec,Low -0x17c35,CUS_0x67fd,Standard -0x17c41,CUS_0x65d9,Standard -0x17c4d,CUS_0x9a0f,High -0x17c59,CUS_0x65a9,Standard -0x17c65,CUS_0x61e1,High -0x17c71,CUS_0x49e4,Low -0x17c7d,CUS_0x5899,High -0x17c89,CUS_0x91f6,Standard -0x17c95,CUS_0x8b5b,Standard -0x17ca1,CUS_0xa293,Low -0x17cad,CUS_0x287f,Standard -0x17cb9,CUS_0x4c4a,Standard -0x17cc5,CUS_0x5392,Standard -0x17cd1,CUS_0x5a61,Standard -0x17cdd,CUS_0x138d,Low -0x17ce9,CUS_0x4562,Standard -0x17cf5,CUS_0xb65f,Standard -0x17d01,CUS_0x2d25,Standard -0x17d0d,CUS_0xbec2,Standard -0x17d19,CUS_0xbd8c,Low -0x17d25,CUS_0x248f,Standard -0x17d31,CUS_0x5dc2,Standard -0x17d3d,CUS_0x22bf,High -0x17d49,CUS_0x3efb,Standard -0x17d55,CUS_0xacbf,Low -0x17d61,CUS_0x8363,Standard -0x17d6d,CUS_0xb5e9,Standard -0x17d79,CUS_0x2216,Standard -0x17d85,CUS_0x58fb,Standard -0x17d91,CUS_0x5a9e,Standard -0x17d9d,CUS_0xa2cb,High -0x17da9,CUS_0xba1c,High -0x17db5,CUS_0x86c5,Standard -0x17dc1,CUS_0x9a4b,Low -0x17dcd,CUS_0x2e9b,High -0x17dd9,CUS_0x4718,Standard -0x17de5,CUS_0x70f6,High -0x17df1,CUS_0x4d77,Low -0x17dfd,CUS_0x17bb,High -0x17e09,CUS_0x8a44,Low -0x17e15,CUS_0x1b0f,High -0x17e21,CUS_0x5fc,Standard -0x17e2d,CUS_0x7405,Standard -0x17e39,CUS_0x996f,High -0x17e45,CUS_0x6fd9,Low -0x17e51,CUS_0xc3ce,Low -0x17e5d,CUS_0xb121,Standard -0x17e69,CUS_0x7414,Standard -0x17e75,CUS_0x80f8,Standard -0x17e81,CUS_0x36ac,Standard -0x17e8d,CUS_0xa008,Low -0x17e99,CUS_0x65d3,Standard -0x17ea5,CUS_0x5446,High -0x17eb1,CUS_0xf8b,Low -0x17ebd,CUS_0x3f83,High -0x17ec9,CUS_0x487a,High -0x17ed5,CUS_0x3f9c,Standard -0x17ee1,CUS_0x61e4,Standard -0x17eed,CUS_0x32b8,Low -0x17ef9,CUS_0xaf56,High -0x17f05,CUS_0x4c76,Low -0x17f11,CUS_0x3fb,Low -0x17f1d,CUS_0x180a,Standard -0x17f29,CUS_0x3769,Low -0x17f35,CUS_0x9efd,Standard -0x17f41,CUS_0x93d2,High -0x17f4d,CUS_0x66ce,Standard -0x17f59,CUS_0x15c5,Standard -0x17f65,CUS_0xa03c,Low -0x17f71,CUS_0x8cc8,Standard -0x17f7d,CUS_0x8526,Standard -0x17f89,CUS_0x3dfa,Low -0x17f95,CUS_0x1600,High -0x17fa1,CUS_0xb17e,High -0x17fad,CUS_0x9318,High -0x17fb9,CUS_0x52aa,High -0x17fc5,CUS_0x7cfb,Standard -0x17fd1,CUS_0x40e1,High -0x17fdd,CUS_0x2e43,Standard -0x17fe9,CUS_0x7bc5,High -0x17ff5,CUS_0x2438,Standard -0x18001,CUS_0x98ec,High -0x1800d,CUS_0x6b56,Low -0x18019,CUS_0x377b,Low -0x18025,CUS_0xa7d0,Low -0x18031,CUS_0xc144,Standard -0x1803d,CUS_0x35bd,Standard -0x18049,CUS_0x1ef9,Low -0x18055,CUS_0x289b,High -0x18061,CUS_0xbb7c,Standard -0x1806d,CUS_0xb45a,Standard -0x18079,CUS_0x5cbb,Standard -0x18085,CUS_0x3393,Standard -0x18091,CUS_0x6fbb,Standard -0x1809d,CUS_0x1698,Standard -0x180a9,CUS_0x66d7,Low -0x180b5,CUS_0x96b3,High -0x180c1,CUS_0x5357,Standard -0x180cd,CUS_0xa2f8,Standard -0x180d9,CUS_0x40c,Standard -0x180e5,CUS_0x407c,Standard -0x180f1,CUS_0xbe89,Standard -0x180fd,CUS_0xac59,Standard -0x18109,CUS_0x647e,Standard -0x18115,CUS_0xb36c,High -0x18121,CUS_0x3b59,Standard -0x1812d,CUS_0x8274,Standard -0x18139,CUS_0x4052,Standard -0x18145,CUS_0x7d6c,Standard -0x18151,CUS_0x4de0,Standard -0x1815d,CUS_0xad46,Standard -0x18169,CUS_0x50c6,Low -0x18175,CUS_0x6569,Standard -0x18181,CUS_0x76fc,Standard -0x1818d,CUS_0x692a,High -0x18199,CUS_0x2270,High -0x181a5,CUS_0x7ee3,Standard -0x181b1,CUS_0x2fe7,High -0x181bd,CUS_0x9448,Standard -0x181c9,CUS_0xa7b5,High -0x181d5,CUS_0xa79e,Standard -0x181e1,CUS_0xa774,Standard -0x181ed,CUS_0x6277,Standard -0x181f9,CUS_0x3b01,High -0x18205,CUS_0x3d6d,Low -0x18211,CUS_0x891b,Low -0x1821d,CUS_0x99ae,High -0x18229,CUS_0x7cfa,High -0x18235,CUS_0xaf5c,Standard -0x18241,CUS_0xc02d,Low -0x1824d,CUS_0x68cb,Standard -0x18259,CUS_0x559e,High -0x18265,CUS_0x3aa7,High -0x18271,CUS_0xb9ec,Standard -0x1827d,CUS_0xa22b,Standard -0x18289,CUS_0x2314,Standard -0x18295,CUS_0x47d0,Standard -0x182a1,CUS_0xb932,Standard -0x182ad,CUS_0x7148,Standard -0x182b9,CUS_0x7bf2,Standard -0x182c5,CUS_0xa134,Standard -0x182d1,CUS_0x6273,Standard -0x182dd,CUS_0x9dbe,Standard -0x182e9,CUS_0x5707,Standard -0x182f5,CUS_0x2bec,Low -0x18301,CUS_0x5474,Low -0x1830d,CUS_0x98f6,High -0x18319,CUS_0x3195,Standard -0x18325,CUS_0x385a,Standard -0x18331,CUS_0xaf3,Low -0x1833d,CUS_0x3a9e,Standard -0x18349,CUS_0x7d57,Low -0x18355,CUS_0xaf99,Standard -0x18361,CUS_0x4767,Standard -0x1836d,CUS_0x3415,Standard -0x18379,CUS_0x9352,Standard -0x18385,CUS_0x60ca,Low -0x18391,CUS_0xee6,Standard -0x1839d,CUS_0x6d43,High -0x183a9,CUS_0x32a9,Low -0x183b5,CUS_0x1297,High -0x183c1,CUS_0x53fa,Standard -0x183cd,CUS_0x6f0,Standard -0x183d9,CUS_0x945f,Standard -0x183e5,CUS_0x16a6,Standard -0x183f1,CUS_0x317e,High -0x183fd,CUS_0xb46b,High -0x18409,CUS_0xc30f,Low -0x18415,CUS_0x24e7,High -0x18421,CUS_0x2ad5,Standard -0x1842d,CUS_0x5fc3,Standard -0x18439,CUS_0x204a,Standard -0x18445,CUS_0xabe7,Standard -0x18451,CUS_0x35c3,High -0x1845d,CUS_0xbcbe,Standard -0x18469,CUS_0x3033,Low -0x18475,CUS_0x7cec,Standard -0x18481,CUS_0x727f,Standard -0x1848d,CUS_0xa06b,Standard -0x18499,CUS_0x5111,High -0x184a5,CUS_0x18e8,Standard -0x184b1,CUS_0x48c6,Low -0x184bd,CUS_0xc2a1,High -0x184c9,CUS_0x624c,High -0x184d5,CUS_0x4b93,Standard -0x184e1,CUS_0x7a73,High -0x184ed,CUS_0x633b,Low -0x184f9,CUS_0x5c2f,High -0x18505,CUS_0x5f21,Low -0x18511,CUS_0x7127,Low -0x1851d,CUS_0x8525,High -0x18529,CUS_0x33ea,Standard -0x18535,CUS_0x1b71,Standard -0x18541,CUS_0xa610,Standard -0x1854d,CUS_0x69f6,High -0x18559,CUS_0x648b,High -0x18565,CUS_0x43de,Low -0x18571,CUS_0x786d,Standard -0x1857d,CUS_0x9126,Standard -0x18589,CUS_0x9c55,Standard -0x18595,CUS_0xbcf,Standard -0x185a1,CUS_0x610a,Standard -0x185ad,CUS_0xbd2c,Standard -0x185b9,CUS_0x831c,High -0x185c5,CUS_0xb3a,High -0x185d1,CUS_0xa68e,Standard -0x185dd,CUS_0x55fd,Standard -0x185e9,CUS_0x1271,Standard -0x185f5,CUS_0x5981,High -0x18601,CUS_0x913e,Standard -0x1860d,CUS_0x2a08,High -0x18619,CUS_0x112d,High -0x18625,CUS_0x6bbd,Low -0x18631,CUS_0xc72e,High -0x1863d,CUS_0x9860,High -0x18649,CUS_0x2ecc,High -0x18655,CUS_0x62c8,High -0x18661,CUS_0xc4a1,High -0x1866d,CUS_0x4b86,High -0x18679,CUS_0x7494,Low -0x18685,CUS_0x87b8,Standard -0x18691,CUS_0x5002,High -0x1869d,CUS_0x343d,Standard -0x186a9,CUS_0x76ad,Standard -0x186b5,CUS_0x9fab,Standard -0x186c1,CUS_0x79c5,Standard -0x186cd,CUS_0x2c94,Standard -0x186d9,CUS_0xb8af,Low -0x186e5,CUS_0xa99a,Standard -0x186f1,CUS_0xae08,Standard -0x186fd,CUS_0x4587,High -0x18709,CUS_0x320f,Low -0x18715,CUS_0x5bf8,Standard -0x18721,CUS_0x5a92,Low -0x1872d,CUS_0x19c9,Standard -0x18739,CUS_0x22b7,Low -0x18745,CUS_0x1e4d,Low -0x18751,CUS_0xb7fa,Standard -0x1875d,CUS_0xa64d,High -0x18769,CUS_0x3a06,Low -0x18775,CUS_0x353a,High -0x18781,CUS_0xab9c,Low -0x1878d,CUS_0x8d72,Standard -0x18799,CUS_0x9bbc,Standard -0x187a5,CUS_0xa56a,Standard -0x187b1,CUS_0x3191,Low -0x187bd,CUS_0x99ca,Low -0x187c9,CUS_0xc1a2,Standard -0x187d5,CUS_0x66c8,High -0x187e1,CUS_0x46ce,Standard -0x187ed,CUS_0x444b,High -0x187f9,CUS_0x40bc,High -0x18805,CUS_0x6f04,High -0x18811,CUS_0x65c5,Standard -0x1881d,CUS_0xc1e8,Low -0x18829,CUS_0xb7bb,Standard -0x18835,CUS_0xfea,Low -0x18841,CUS_0x3f89,High -0x1884d,CUS_0x9346,Standard -0x18859,CUS_0x8704,Standard -0x18865,CUS_0xbe1d,Standard -0x18871,CUS_0x513a,High -0x1887d,CUS_0xa235,High -0x18889,CUS_0x362c,High -0x18895,CUS_0x74ef,Standard -0x188a1,CUS_0x4241,Standard -0x188ad,CUS_0xb81c,High -0x188b9,CUS_0x2ff6,Standard -0x188c5,CUS_0x1048,High -0x188d1,CUS_0x6bbe,Low -0x188dd,CUS_0x1664,Standard -0x188e9,CUS_0x4e8f,High -0x188f5,CUS_0xe4f,Standard -0x18901,CUS_0xc515,High -0x1890d,CUS_0xae7d,Standard -0x18919,CUS_0x18d4,Standard -0x18925,CUS_0x96b5,Standard -0x18931,CUS_0xc37,Standard -0x1893d,CUS_0xac3f,Standard -0x18949,CUS_0x60f,Standard -0x18955,CUS_0x1661,High -0x18961,CUS_0x9c4b,High -0x1896d,CUS_0x9e5e,High -0x18979,CUS_0x7cf1,Standard -0x18985,CUS_0x37f8,High -0x18991,CUS_0x3d09,High -0x1899d,CUS_0x21f2,Low -0x189a9,CUS_0x872d,High -0x189b5,CUS_0x960b,Standard -0x189c1,CUS_0x14d3,Standard -0x189cd,CUS_0xc651,Standard -0x189d9,CUS_0xb538,Standard -0x189e5,CUS_0x1fcb,Low -0x189f1,CUS_0xb967,Low -0x189fd,CUS_0x8731,Standard -0x18a09,CUS_0x4569,Standard -0x18a15,CUS_0x14c2,Standard -0x18a21,CUS_0x71b8,Standard -0x18a2d,CUS_0x5280,Standard -0x18a39,CUS_0x770,High -0x18a45,CUS_0x181f,High -0x18a51,CUS_0x94d5,Low -0x18a5d,CUS_0x2659,High -0x18a69,CUS_0x6e8d,Low -0x18a75,CUS_0xb47f,Low -0x18a81,CUS_0xc55a,Standard -0x18a8d,CUS_0x4eab,Low -0x18a99,CUS_0xaa53,Standard -0x18aa5,CUS_0x7749,Standard -0x18ab1,CUS_0x5de2,Standard -0x18abd,CUS_0x8517,High -0x18ac9,CUS_0xb6be,High -0x18ad5,CUS_0x8000,Standard -0x18ae1,CUS_0x66d6,Low -0x18aed,CUS_0x6bff,High -0x18af9,CUS_0x5195,Standard -0x18b05,CUS_0xe3b,High -0x18b11,CUS_0x6496,Standard -0x18b1d,CUS_0xc712,Standard -0x18b29,CUS_0x2f02,Low -0x18b35,CUS_0x7a1f,High -0x18b41,CUS_0x8202,Standard -0x18b4d,CUS_0x12fa,Standard -0x18b59,CUS_0x9af6,Standard -0x18b65,CUS_0xb13c,Standard -0x18b71,CUS_0x45cb,High -0x18b7d,CUS_0xa3f5,Standard -0x18b89,CUS_0x9778,Standard -0x18b95,CUS_0x2b2a,Low -0x18ba1,CUS_0x4775,Low -0x18bad,CUS_0x3e5e,Standard -0x18bb9,CUS_0xb201,Standard -0x18bc5,CUS_0x9815,High -0x18bd1,CUS_0x632,High -0x18bdd,CUS_0xf01,High -0x18be9,CUS_0x8b17,Standard -0x18bf5,CUS_0x15f2,High -0x18c01,CUS_0x75ef,Standard -0x18c0d,CUS_0x67eb,High -0x18c19,CUS_0x629,Standard -0x18c25,CUS_0x9dc1,High -0x18c31,CUS_0x4472,Standard -0x18c3d,CUS_0x3cea,Standard -0x18c49,CUS_0x49fe,High -0x18c55,CUS_0x60a2,Standard -0x18c61,CUS_0x8c3,High -0x18c6d,CUS_0x1330,High -0x18c79,CUS_0xbaf2,High -0x18c85,CUS_0x2abd,Low -0x18c91,CUS_0x1e51,Standard -0x18c9d,CUS_0x5135,High -0x18ca9,CUS_0x1935,Standard -0x18cb5,CUS_0x7d40,Standard -0x18cc1,CUS_0x1a9c,Standard -0x18ccd,CUS_0x7007,Standard -0x18cd9,CUS_0xb7eb,Standard -0x18ce5,CUS_0xbeca,Low -0x18cf1,CUS_0xb458,Standard -0x18cfd,CUS_0x87e6,High -0x18d09,CUS_0x9ca,Standard -0x18d15,CUS_0x9661,Standard -0x18d21,CUS_0x4892,Standard -0x18d2d,CUS_0x71eb,High -0x18d39,CUS_0xabf9,Standard -0x18d45,CUS_0x961d,High -0x18d51,CUS_0x7960,High -0x18d5d,CUS_0x75ba,Standard -0x18d69,CUS_0x80ae,Standard -0x18d75,CUS_0x3b11,Standard -0x18d81,CUS_0xb023,Standard -0x18d8d,CUS_0xc4ea,Standard -0x18d99,CUS_0x4eb3,Standard -0x18da5,CUS_0x95c2,High -0x18db1,CUS_0x7269,Standard -0x18dbd,CUS_0x269d,Standard -0x18dc9,CUS_0x903a,Standard -0x18dd5,CUS_0xb20f,Low -0x18de1,CUS_0x73db,Standard -0x18ded,CUS_0xb3b0,Low -0x18df9,CUS_0x476d,Standard -0x18e05,CUS_0x41f3,Standard -0x18e11,CUS_0xa058,Standard -0x18e1d,CUS_0x9074,Low -0x18e29,CUS_0x30eb,Standard -0x18e35,CUS_0x9f27,Standard -0x18e41,CUS_0x7cb3,Standard -0x18e4d,CUS_0x8f1b,Standard -0x18e59,CUS_0x8be2,Standard -0x18e65,CUS_0xa6c1,High -0x18e71,CUS_0xc1db,Standard -0x18e7d,CUS_0x3e74,High -0x18e89,CUS_0xc60a,Standard -0x18e95,CUS_0x1d51,Standard -0x18ea1,CUS_0x4df6,Standard -0x18ead,CUS_0x7edc,Standard -0x18eb9,CUS_0x9d6b,High -0x18ec5,CUS_0xa7f3,Standard -0x18ed1,CUS_0x8588,Standard -0x18edd,CUS_0x191f,Standard -0x18ee9,CUS_0x4fd4,High -0x18ef5,CUS_0x6529,Standard -0x18f01,CUS_0x6a39,High -0x18f0d,CUS_0x3c0b,Low -0x18f19,CUS_0x32fb,Standard -0x18f25,CUS_0xb692,Standard -0x18f31,CUS_0x9fe8,Standard -0x18f3d,CUS_0x6084,High -0x18f49,CUS_0x7a12,Standard -0x18f55,CUS_0x7270,Standard -0x18f61,CUS_0x3606,Standard -0x18f6d,CUS_0xbf8f,Standard -0x18f79,CUS_0x961e,Standard -0x18f85,CUS_0x24cc,Low -0x18f91,CUS_0x1de9,Standard -0x18f9d,CUS_0xa5c2,Low -0x18fa9,CUS_0x5353,High -0x18fb5,CUS_0x3bc3,Standard -0x18fc1,CUS_0x5cd7,Low -0x18fcd,CUS_0xc272,High -0x18fd9,CUS_0x33b6,Standard -0x18fe5,CUS_0x2d8c,Standard -0x18ff1,CUS_0x6863,Standard -0x18ffd,CUS_0x2747,High -0x19009,CUS_0x95a3,High -0x19015,CUS_0x6b13,Standard -0x19021,CUS_0xabc1,Standard -0x1902d,CUS_0x11c1,Standard -0x19039,CUS_0x6138,Standard -0x19045,CUS_0xb9e0,High -0x19051,CUS_0x91b2,Low -0x1905d,CUS_0x3896,Standard -0x19069,CUS_0x66fc,Standard -0x19075,CUS_0x8967,Standard -0x19081,CUS_0xb0ca,High -0x1908d,CUS_0xa940,Low -0x19099,CUS_0x51c,Standard -0x190a5,CUS_0x8b91,Standard -0x190b1,CUS_0x65aa,Standard -0x190bd,CUS_0x5107,High -0x190c9,CUS_0x22d4,Standard -0x190d5,CUS_0x7e8d,Standard -0x190e1,CUS_0xbed7,Standard -0x190ed,CUS_0x9444,Standard -0x190f9,CUS_0x8fe6,Standard -0x19105,CUS_0x25f6,High -0x19111,CUS_0x7d2c,High -0x1911d,CUS_0xaab3,High -0x19129,CUS_0x28d0,Low -0x19135,CUS_0x3e2c,Standard -0x19141,CUS_0x2bb2,Standard -0x1914d,CUS_0xbae9,Standard -0x19159,CUS_0xa2db,Standard -0x19165,CUS_0x6cc4,High -0x19171,CUS_0x4601,High -0x1917d,CUS_0x3a7e,Low -0x19189,CUS_0xfcb,Standard -0x19195,CUS_0x9d0b,Standard -0x191a1,CUS_0x7a2d,Standard -0x191ad,CUS_0x7bad,Low -0x191b9,CUS_0x3101,Standard -0x191c5,CUS_0x5d0c,High -0x191d1,CUS_0x5391,Standard -0x191dd,CUS_0xb8e9,Low -0x191e9,CUS_0xb132,High -0x191f5,CUS_0x8d19,Standard -0x19201,CUS_0x5334,High -0x1920d,CUS_0x3213,Standard -0x19219,CUS_0xb05b,Standard -0x19225,CUS_0x3ea4,Standard -0x19231,CUS_0x417b,High -0x1923d,CUS_0x57c7,Standard -0x19249,CUS_0x6b8d,Standard -0x19255,CUS_0x8fa0,Standard -0x19261,CUS_0x5d50,Standard -0x1926d,CUS_0xc459,Standard -0x19279,CUS_0x8698,Standard -0x19285,CUS_0x1ac9,Standard -0x19291,CUS_0x6950,Standard -0x1929d,CUS_0x5d43,Low -0x192a9,CUS_0xc475,Standard -0x192b5,CUS_0xb4ca,High -0x192c1,CUS_0x1924,Standard -0x192cd,CUS_0xb9bd,Standard -0x192d9,CUS_0x4d35,Low -0x192e5,CUS_0x2d50,Standard -0x192f1,CUS_0x18b9,High -0x192fd,CUS_0x1585,Standard -0x19309,CUS_0xa59d,High -0x19315,CUS_0x7d44,Standard -0x19321,CUS_0xaaae,High -0x1932d,CUS_0x419a,Standard -0x19339,CUS_0xbc33,Standard -0x19345,CUS_0x261d,Standard -0x19351,CUS_0x912e,Standard -0x1935d,CUS_0xa05,Standard -0x19369,CUS_0x9336,High -0x19375,CUS_0x6e35,High -0x19381,CUS_0x18a2,High -0x1938d,CUS_0xccc,Low -0x19399,CUS_0x3fe1,High -0x193a5,CUS_0x8ac5,Standard -0x193b1,CUS_0x77ff,High -0x193bd,CUS_0x41a,Standard -0x193c9,CUS_0xc60e,Low -0x193d5,CUS_0x2444,High -0x193e1,CUS_0x5395,Standard -0x193ed,CUS_0x432,High -0x193f9,CUS_0x23dd,Standard -0x19405,CUS_0xae60,High -0x19411,CUS_0x7ed7,Low -0x1941d,CUS_0x1015,Standard -0x19429,CUS_0x682e,Standard -0x19435,CUS_0x49b9,Standard -0x19441,CUS_0x6478,Standard -0x1944d,CUS_0x5816,Standard -0x19459,CUS_0xc096,Low -0x19465,CUS_0xfa7,Low -0x19471,CUS_0x9138,Standard -0x1947d,CUS_0xba9d,High -0x19489,CUS_0x1607,Standard -0x19495,CUS_0x5e73,Standard -0x194a1,CUS_0xc50f,Standard -0x194ad,CUS_0xa1cc,High -0x194b9,CUS_0xa585,High -0x194c5,CUS_0x8590,Standard -0x194d1,CUS_0x65fa,Standard -0x194dd,CUS_0x5c5,Standard -0x194e9,CUS_0x4c95,Standard -0x194f5,CUS_0xbb1f,High -0x19501,CUS_0xc299,High -0x1950d,CUS_0x411e,Low -0x19519,CUS_0x38ca,Standard -0x19525,CUS_0x19a7,High -0x19531,CUS_0xaf9c,Standard -0x1953d,CUS_0x1758,Low -0x19549,CUS_0x43d0,High -0x19555,CUS_0xdc8,Standard -0x19561,CUS_0xbc03,High -0x1956d,CUS_0x7c25,Standard -0x19579,CUS_0x7227,Standard -0x19585,CUS_0x7a29,High -0x19591,CUS_0x39ae,Low -0x1959d,CUS_0xb41b,Standard -0x195a9,CUS_0x691,High -0x195b5,CUS_0x8ca7,Standard -0x195c1,CUS_0x7d80,Standard -0x195cd,CUS_0xa690,High -0x195d9,CUS_0x69b1,Low -0x195e5,CUS_0x3639,Standard -0x195f1,CUS_0x8be0,High -0x195fd,CUS_0x7bda,Low -0x19609,CUS_0x2d09,Standard -0x19615,CUS_0x6ab0,Standard -0x19621,CUS_0xb064,Low -0x1962d,CUS_0xb06d,High -0x19639,CUS_0xc4b3,Standard -0x19645,CUS_0x444c,Standard -0x19651,CUS_0x6e81,High -0x1965d,CUS_0xa6a,Standard -0x19669,CUS_0x55fb,Standard -0x19675,CUS_0x254e,Standard -0x19681,CUS_0x6324,Standard -0x1968d,CUS_0x78cd,High -0x19699,CUS_0x98e3,Standard -0x196a5,CUS_0x5fe0,Standard -0x196b1,CUS_0x7cc1,Standard -0x196bd,CUS_0xb482,Standard -0x196c9,CUS_0x8433,Low -0x196d5,CUS_0x760a,Standard -0x196e1,CUS_0xbb77,Standard -0x196ed,CUS_0x14ff,High -0x196f9,CUS_0xafcd,Standard -0x19705,CUS_0xbb4a,Standard -0x19711,CUS_0x9ab9,High -0x1971d,CUS_0x2366,Standard -0x19729,CUS_0x28d2,Standard -0x19735,CUS_0x9de1,Standard -0x19741,CUS_0x4156,Standard -0x1974d,CUS_0x89e3,Standard -0x19759,CUS_0x831d,Standard -0x19765,CUS_0x9567,Low -0x19771,CUS_0x5f05,High -0x1977d,CUS_0x387b,Standard -0x19789,CUS_0x627b,High -0x19795,CUS_0x307e,High -0x197a1,CUS_0x5db0,High -0x197ad,CUS_0x32fa,Standard -0x197b9,CUS_0x4083,Standard -0x197c5,CUS_0xc4e2,High -0x197d1,CUS_0x2878,Standard -0x197dd,CUS_0xa049,Low -0x197e9,CUS_0x4edc,Low -0x197f5,CUS_0xc143,Standard -0x19801,CUS_0x294d,High -0x1980d,CUS_0xb2c0,Standard -0x19819,CUS_0x6ccd,Standard -0x19825,CUS_0x9f1f,Standard -0x19831,CUS_0x7136,Low -0x1983d,CUS_0x2c4f,Standard -0x19849,CUS_0xac29,High -0x19855,CUS_0x585b,Standard -0x19861,CUS_0x5b9b,Standard -0x1986d,CUS_0xb7c3,Low -0x19879,CUS_0xa326,Standard -0x19885,CUS_0xa918,High -0x19891,CUS_0x1765,Standard -0x1989d,CUS_0xa8b7,Standard -0x198a9,CUS_0x4a0b,Standard -0x198b5,CUS_0xbb3c,Low -0x198c1,CUS_0x924a,Standard -0x198cd,CUS_0x44ff,Standard -0x198d9,CUS_0xa5ac,Standard -0x198e5,CUS_0x19f3,Standard -0x198f1,CUS_0x899d,Standard -0x198fd,CUS_0xad1f,High -0x19909,CUS_0x4427,Standard -0x19915,CUS_0x4688,Standard -0x19921,CUS_0xb2d2,High -0x1992d,CUS_0x87ec,Standard -0x19939,CUS_0x885,Low -0x19945,CUS_0xaa68,Low -0x19951,CUS_0x89c7,Standard -0x1995d,CUS_0x4afe,Standard -0x19969,CUS_0x2923,High -0x19975,CUS_0x2910,Standard -0x19981,CUS_0x4190,High -0x1998d,CUS_0xb4cc,Standard -0x19999,CUS_0x511e,High -0x199a5,CUS_0x450b,High -0x199b1,CUS_0xb80e,High -0x199bd,CUS_0x959b,Standard -0x199c9,CUS_0x415b,Standard -0x199d5,CUS_0x9a8b,Standard -0x199e1,CUS_0x92d2,Standard -0x199ed,CUS_0xe28,Standard -0x199f9,CUS_0x6bcf,Low -0x19a05,CUS_0x8a50,Low -0x19a11,CUS_0xc2aa,Standard -0x19a1d,CUS_0x5a53,Standard -0x19a29,CUS_0x6df1,Standard -0x19a35,CUS_0x166c,High -0x19a41,CUS_0x43dd,High -0x19a4d,CUS_0xa567,Standard -0x19a59,CUS_0x1bff,Standard -0x19a65,CUS_0x6116,Low -0x19a71,CUS_0x5309,Standard -0x19a7d,CUS_0x2425,Standard -0x19a89,CUS_0x4d3,High -0x19a95,CUS_0x7dc4,Low -0x19aa1,CUS_0x8a5f,Low -0x19aad,CUS_0x7e6d,Standard -0x19ab9,CUS_0xb86b,Standard -0x19ac5,CUS_0x8dfa,High -0x19ad1,CUS_0x2599,Low -0x19add,CUS_0x1a4d,Standard -0x19ae9,CUS_0x6e95,Standard -0x19af5,CUS_0x55c5,High -0x19b01,CUS_0xb650,Standard -0x19b0d,CUS_0x9127,Standard -0x19b19,CUS_0x54c7,Standard -0x19b25,CUS_0xb3bd,Standard -0x19b31,CUS_0x6a6f,Standard -0x19b3d,CUS_0x76b,Standard -0x19b49,CUS_0xb122,Low -0x19b55,CUS_0x26e0,Standard -0x19b61,CUS_0x3499,Standard -0x19b6d,CUS_0x45b,High -0x19b79,CUS_0x7666,High -0x19b85,CUS_0x696c,Standard -0x19b91,CUS_0x5499,Standard -0x19b9d,CUS_0x6781,Standard -0x19ba9,CUS_0xb171,Standard -0x19bb5,CUS_0x8e81,High -0x19bc1,CUS_0x5097,Standard -0x19bcd,CUS_0x57b1,High -0x19bd9,CUS_0x435d,Standard -0x19be5,CUS_0x2b39,Standard -0x19bf1,CUS_0x2142,Low -0x19bfd,CUS_0xba6,Standard -0x19c09,CUS_0x5a4f,High -0x19c15,CUS_0xc60d,High -0x19c21,CUS_0x8a3f,Low -0x19c2d,CUS_0x5e22,Standard -0x19c39,CUS_0xaa15,Low -0x19c45,CUS_0x1f64,Standard -0x19c51,CUS_0x48f,High -0x19c5d,CUS_0x29b4,Standard -0x19c69,CUS_0x5ae3,Low -0x19c75,CUS_0xbe9a,Low -0x19c81,CUS_0x4874,Standard -0x19c8d,CUS_0xc67b,Standard -0x19c99,CUS_0x8a64,Low -0x19ca5,CUS_0x35ea,Standard -0x19cb1,CUS_0x5044,Standard -0x19cbd,CUS_0x9dfd,Low -0x19cc9,CUS_0x513,Standard -0x19cd5,CUS_0xba0b,Standard -0x19ce1,CUS_0x9e7e,Standard -0x19ced,CUS_0x37dd,Low -0x19cf9,CUS_0x8873,Standard -0x19d05,CUS_0x61e0,Standard -0x19d11,CUS_0x7eb0,Standard -0x19d1d,CUS_0x5fdb,Standard -0x19d29,CUS_0x8f16,Standard -0x19d35,CUS_0x3ff9,Standard -0x19d41,CUS_0x5e43,Standard -0x19d4d,CUS_0x26e3,Standard -0x19d59,CUS_0x8d2,Low -0x19d65,CUS_0xb9a2,Low -0x19d71,CUS_0x9bf4,Standard -0x19d7d,CUS_0x12af,Standard -0x19d89,CUS_0x9d3,Low -0x19d95,CUS_0x6987,High -0x19da1,CUS_0x99d9,High -0x19dad,CUS_0xb4f,Low -0x19db9,CUS_0x8bd2,Standard -0x19dc5,CUS_0x5648,Low -0x19dd1,CUS_0xc0c6,Standard -0x19ddd,CUS_0xc4bb,Low -0x19de9,CUS_0x5c72,Low -0x19df5,CUS_0x19d1,High -0x19e01,CUS_0xa5f4,Low -0x19e0d,CUS_0xa499,Standard -0x19e19,CUS_0x9c28,High -0x19e25,CUS_0xc3b8,High -0x19e31,CUS_0xbabc,Standard -0x19e3d,CUS_0xc648,Standard -0x19e49,CUS_0x93bc,Standard -0x19e55,CUS_0x764f,Low -0x19e61,CUS_0xbebf,Standard -0x19e6d,CUS_0x216a,High -0x19e79,CUS_0x20ac,Standard -0x19e85,CUS_0x3cc2,Standard -0x19e91,CUS_0x5c4f,Standard -0x19e9d,CUS_0x924,Standard -0x19ea9,CUS_0x3a3a,Standard -0x19eb5,CUS_0x5d91,Standard -0x19ec1,CUS_0x6ba7,Low -0x19ecd,CUS_0x1764,Standard -0x19ed9,CUS_0x1971,Standard -0x19ee5,CUS_0x4f07,Standard -0x19ef1,CUS_0x6acc,Standard -0x19efd,CUS_0x5f02,Standard -0x19f09,CUS_0xbab8,Standard -0x19f15,CUS_0x2fb1,Standard -0x19f21,CUS_0x9d09,Standard -0x19f2d,CUS_0x905,Standard -0x19f39,CUS_0x716c,Standard -0x19f45,CUS_0x4ee5,Low -0x19f51,CUS_0x3797,High -0x19f5d,CUS_0x7015,High -0x19f69,CUS_0x7443,Standard -0x19f75,CUS_0x76a9,Standard -0x19f81,CUS_0x2218,Standard -0x19f8d,CUS_0xa405,Standard -0x19f99,CUS_0x9ba5,Low -0x19fa5,CUS_0x54d6,Low -0x19fb1,CUS_0x13fa,High -0x19fbd,CUS_0xb2f6,High -0x19fc9,CUS_0x6998,Low -0x19fd5,CUS_0x2e72,High -0x19fe1,CUS_0x61c8,Low -0x19fed,CUS_0x9e0,Standard -0x19ff9,CUS_0x238c,Low -0x1a005,CUS_0x3c63,Standard -0x1a011,CUS_0x77b7,High -0x1a01d,CUS_0x9ce7,Standard -0x1a029,CUS_0x79f7,Standard -0x1a035,CUS_0x2eb7,High -0x1a041,CUS_0x6d63,High -0x1a04d,CUS_0x4812,Standard -0x1a059,CUS_0x981d,High -0x1a065,CUS_0x5d36,Standard -0x1a071,CUS_0x3e1a,Standard -0x1a07d,CUS_0x67e2,Standard -0x1a089,CUS_0xa6dc,High -0x1a095,CUS_0x91d4,Standard -0x1a0a1,CUS_0x2b05,Standard -0x1a0ad,CUS_0x44dc,High -0x1a0b9,CUS_0xb115,Standard -0x1a0c5,CUS_0x9a30,High -0x1a0d1,CUS_0x435c,High -0x1a0dd,CUS_0x61fb,Standard -0x1a0e9,CUS_0xbc2b,Low -0x1a0f5,CUS_0xbaa0,High -0x1a101,CUS_0x4863,Low -0x1a10d,CUS_0xba6c,High -0x1a119,CUS_0xb658,Low -0x1a125,CUS_0xe03,Standard -0x1a131,CUS_0xbba,Standard -0x1a13d,CUS_0x995,Standard -0x1a149,CUS_0x98e4,High -0x1a155,CUS_0x10ac,Standard -0x1a161,CUS_0x1690,High -0x1a16d,CUS_0x5df9,Low -0x1a179,CUS_0x1f3d,Standard -0x1a185,CUS_0x4e24,Standard -0x1a191,CUS_0x3a15,Low -0x1a19d,CUS_0x1be8,High -0x1a1a9,CUS_0xa328,High -0x1a1b5,CUS_0xc574,Standard -0x1a1c1,CUS_0x56f9,Standard -0x1a1cd,CUS_0x364f,High -0x1a1d9,CUS_0xb0f5,High -0x1a1e5,CUS_0x32dc,Standard -0x1a1f1,CUS_0x370c,Standard -0x1a1fd,CUS_0x683d,Standard -0x1a209,CUS_0xaadf,Standard -0x1a215,CUS_0x7a91,Standard -0x1a221,CUS_0x4122,High -0x1a22d,CUS_0x717e,Standard -0x1a239,CUS_0xba27,High -0x1a245,CUS_0x8cd0,High -0x1a251,CUS_0x2fe0,Standard -0x1a25d,CUS_0x98cc,Standard -0x1a269,CUS_0xb6cd,Low -0x1a275,CUS_0xc54a,Standard -0x1a281,CUS_0x2ea8,Standard -0x1a28d,CUS_0x9e6a,Low -0x1a299,CUS_0xd25,Standard -0x1a2a5,CUS_0x20fa,High -0x1a2b1,CUS_0x46c,Low -0x1a2bd,CUS_0x66d1,Standard -0x1a2c9,CUS_0x4372,Standard -0x1a2d5,CUS_0xa696,Standard -0x1a2e1,CUS_0x1c31,High -0x1a2ed,CUS_0x15f7,High -0x1a2f9,CUS_0x44bb,Standard -0x1a305,CUS_0xc2a6,Standard -0x1a311,CUS_0x2ccc,Standard -0x1a31d,CUS_0x2dd8,High -0x1a329,CUS_0x4fc4,Low -0x1a335,CUS_0x5875,Standard -0x1a341,CUS_0x7ae1,Standard -0x1a34d,CUS_0x6bb5,Low -0x1a359,CUS_0x5fd5,Standard -0x1a365,CUS_0xcc2,High -0x1a371,CUS_0x4953,High -0x1a37d,CUS_0x645e,High -0x1a389,CUS_0x8ac7,Standard -0x1a395,CUS_0x7324,Low -0x1a3a1,CUS_0x6c2d,High -0x1a3ad,CUS_0x4ef9,Standard -0x1a3b9,CUS_0x2168,Standard -0x1a3c5,CUS_0x33ce,Standard -0x1a3d1,CUS_0x9e24,Standard -0x1a3dd,CUS_0xc150,Standard -0x1a3e9,CUS_0x1f7d,High -0x1a3f5,CUS_0x32a7,Standard -0x1a401,CUS_0x8e45,Low -0x1a40d,CUS_0x11fc,Low -0x1a419,CUS_0x32b7,Low -0x1a425,CUS_0x9b38,Standard -0x1a431,CUS_0x17fb,Low -0x1a43d,CUS_0x1e9e,Standard -0x1a449,CUS_0x84dd,Standard -0x1a455,CUS_0x70af,High -0x1a461,CUS_0x73e4,Low -0x1a46d,CUS_0xae25,Standard -0x1a479,CUS_0x751c,Standard -0x1a485,CUS_0x6ae5,High -0x1a491,CUS_0x89a,Standard -0x1a49d,CUS_0x669c,Low -0x1a4a9,CUS_0x779,Standard -0x1a4b5,CUS_0x8647,Low -0x1a4c1,CUS_0x8e5b,High -0x1a4cd,CUS_0x5cf1,Standard -0x1a4d9,CUS_0x9268,Standard -0x1a4e5,CUS_0x6540,Low -0x1a4f1,CUS_0x188f,Standard -0x1a4fd,CUS_0x7eed,Standard -0x1a509,CUS_0x6407,Standard -0x1a515,CUS_0x9190,Standard -0x1a521,CUS_0x28e1,Standard -0x1a52d,CUS_0x5bfc,Standard -0x1a539,CUS_0x9764,High -0x1a545,CUS_0xaccf,Standard -0x1a551,CUS_0x757,Standard -0x1a55d,CUS_0x7c2a,High -0x1a569,CUS_0x2170,Standard -0x1a575,CUS_0x1563,Standard -0x1a581,CUS_0x125c,High -0x1a58d,CUS_0x9ea6,High -0x1a599,CUS_0xc31c,Low -0x1a5a5,CUS_0x9dbc,Standard -0x1a5b1,CUS_0x82b3,Standard -0x1a5bd,CUS_0x86b0,Standard -0x1a5c9,CUS_0xaa9e,Low -0x1a5d5,CUS_0xc11e,Standard -0x1a5e1,CUS_0x300b,High -0x1a5ed,CUS_0x4e89,Standard -0x1a5f9,CUS_0x3ae1,High -0x1a605,CUS_0x2a70,High -0x1a611,CUS_0x9041,Low -0x1a61d,CUS_0x8340,High -0x1a629,CUS_0xb858,Standard -0x1a635,CUS_0xa93f,Standard -0x1a641,CUS_0xa420,Standard -0x1a64d,CUS_0x9b8c,Standard -0x1a659,CUS_0x1e3e,Standard -0x1a665,CUS_0x398f,Standard -0x1a671,CUS_0xab7b,Standard -0x1a67d,CUS_0x698,Standard -0x1a689,CUS_0x8b1,Low -0x1a695,CUS_0x946f,Low -0x1a6a1,CUS_0x930c,Standard -0x1a6ad,CUS_0x9425,Standard -0x1a6b9,CUS_0x977,Standard -0x1a6c5,CUS_0x7387,High -0x1a6d1,CUS_0x9226,High -0x1a6dd,CUS_0xa849,Standard -0x1a6e9,CUS_0x7c58,Standard -0x1a6f5,CUS_0x1135,Low -0x1a701,CUS_0x91e5,Standard -0x1a70d,CUS_0x67f0,High -0x1a719,CUS_0x8d42,High -0x1a725,CUS_0x8b29,Standard -0x1a731,CUS_0xa20d,Low -0x1a73d,CUS_0xb13e,Standard -0x1a749,CUS_0x2bf7,Standard -0x1a755,CUS_0x5e40,High -0x1a761,CUS_0x495e,Standard -0x1a76d,CUS_0x2e8a,Standard -0x1a779,CUS_0x7e67,Standard -0x1a785,CUS_0x2beb,High -0x1a791,CUS_0x162f,Low -0x1a79d,CUS_0x578b,High -0x1a7a9,CUS_0xc57e,Low -0x1a7b5,CUS_0x5131,Low -0x1a7c1,CUS_0x575b,Low -0x1a7cd,CUS_0x6dde,Standard -0x1a7d9,CUS_0xb647,Standard -0x1a7e5,CUS_0xb6f8,Standard -0x1a7f1,CUS_0x404c,Standard -0x1a7fd,CUS_0x6d5c,Low -0x1a809,CUS_0xc632,Standard -0x1a815,CUS_0x21cd,Standard -0x1a821,CUS_0x3757,High -0x1a82d,CUS_0x2b11,Standard -0x1a839,CUS_0x2858,Low -0x1a845,CUS_0x63ec,Low -0x1a851,CUS_0x8e65,Standard -0x1a85d,CUS_0x8ed5,Standard -0x1a869,CUS_0x99c2,High -0x1a875,CUS_0x3fef,Standard -0x1a881,CUS_0xa1a8,Standard -0x1a88d,CUS_0x8bba,High -0x1a899,CUS_0xae9e,High -0x1a8a5,CUS_0x1fa5,High -0x1a8b1,CUS_0x90ca,Standard -0x1a8bd,CUS_0x24ae,Standard -0x1a8c9,CUS_0x5205,Low -0x1a8d5,CUS_0xae4,High -0x1a8e1,CUS_0x26eb,Standard -0x1a8ed,CUS_0x2e53,Standard -0x1a8f9,CUS_0x817d,High -0x1a905,CUS_0x2c7d,Low -0x1a911,CUS_0x5053,Standard -0x1a91d,CUS_0xa122,Standard -0x1a929,CUS_0x804d,Low -0x1a935,CUS_0x98d4,Standard -0x1a941,CUS_0x4aeb,High -0x1a94d,CUS_0x2f0b,High -0x1a959,CUS_0xb030,Standard -0x1a965,CUS_0x5fe3,Standard -0x1a971,CUS_0x3b37,Standard -0x1a97d,CUS_0x8aea,Standard -0x1a989,CUS_0xb4a1,Standard -0x1a995,CUS_0x8d21,High -0x1a9a1,CUS_0x75d8,Low -0x1a9ad,CUS_0x32df,Standard -0x1a9b9,CUS_0x87d8,Low -0x1a9c5,CUS_0x282a,High -0x1a9d1,CUS_0x8a84,Low -0x1a9dd,CUS_0x43fc,Low -0x1a9e9,CUS_0x6870,High -0x1a9f5,CUS_0x2e65,Standard -0x1aa01,CUS_0x95f4,Standard -0x1aa0d,CUS_0x6176,High -0x1aa19,CUS_0x9d2f,Low -0x1aa25,CUS_0x5338,Low -0x1aa31,CUS_0x2ddc,Low -0x1aa3d,CUS_0x3e14,Low -0x1aa49,CUS_0x62b5,Standard -0x1aa55,CUS_0xbca1,Standard -0x1aa61,CUS_0x6c88,Standard -0x1aa6d,CUS_0x199b,High -0x1aa79,CUS_0x4eae,Low -0x1aa85,CUS_0x56ad,Standard -0x1aa91,CUS_0x4298,High -0x1aa9d,CUS_0x9741,High -0x1aaa9,CUS_0x9a7a,Low -0x1aab5,CUS_0x8d0b,High -0x1aac1,CUS_0x72b0,Low -0x1aacd,CUS_0x883e,Standard -0x1aad9,CUS_0xb820,Standard -0x1aae5,CUS_0x98f1,High -0x1aaf1,CUS_0xa798,High -0x1aafd,CUS_0x33e1,Standard -0x1ab09,CUS_0xa024,Standard -0x1ab15,CUS_0xaecd,Low -0x1ab21,CUS_0xb01b,Standard -0x1ab2d,CUS_0x189e,Low -0x1ab39,CUS_0xb89,High -0x1ab45,CUS_0x115c,Standard -0x1ab51,CUS_0x4a91,High -0x1ab5d,CUS_0x6eb2,Standard -0x1ab69,CUS_0x495f,High -0x1ab75,CUS_0x7430,Standard -0x1ab81,CUS_0xb066,Standard -0x1ab8d,CUS_0x758f,Standard -0x1ab99,CUS_0x243a,Low -0x1aba5,CUS_0x13e3,Standard -0x1abb1,CUS_0x81ff,Standard -0x1abbd,CUS_0x2c75,Low -0x1abc9,CUS_0x8237,Low -0x1abd5,CUS_0xc44a,Standard -0x1abe1,CUS_0x36f7,High -0x1abed,CUS_0x6a6c,Standard -0x1abf9,CUS_0x2ae8,Standard -0x1ac05,CUS_0xa91f,High -0x1ac11,CUS_0x9273,Low -0x1ac1d,CUS_0x25ca,High -0x1ac29,CUS_0x7ff5,Standard -0x1ac35,CUS_0xa03a,Standard -0x1ac41,CUS_0x83a0,Standard -0x1ac4d,CUS_0x3e9a,Standard -0x1ac59,CUS_0x6235,High -0x1ac65,CUS_0xa2ac,High -0x1ac71,CUS_0x431,Standard -0x1ac7d,CUS_0xae58,High -0x1ac89,CUS_0x6719,High -0x1ac95,CUS_0x65dc,High -0x1aca1,CUS_0x1916,Low -0x1acad,CUS_0x275c,High -0x1acb9,CUS_0x1c76,Standard -0x1acc5,CUS_0x6aca,Standard -0x1acd1,CUS_0x2cae,Low -0x1acdd,CUS_0x9e5b,Standard -0x1ace9,CUS_0x6c9b,Standard -0x1acf5,CUS_0x8fbb,Standard -0x1ad01,CUS_0x743f,Low -0x1ad0d,CUS_0x4279,Standard -0x1ad19,CUS_0x4712,High -0x1ad25,CUS_0x26f2,High -0x1ad31,CUS_0xbd4b,Standard -0x1ad3d,CUS_0x38cf,Standard -0x1ad49,CUS_0xc39,Standard -0x1ad55,CUS_0xbdfe,Standard -0x1ad61,CUS_0x9972,Standard -0x1ad6d,CUS_0x6f93,Low -0x1ad79,CUS_0xe2f,Standard -0x1ad85,CUS_0x1be2,Standard -0x1ad91,CUS_0x6030,High -0x1ad9d,CUS_0x6f78,Low -0x1ada9,CUS_0xa987,Standard -0x1adb5,CUS_0x7ff9,Standard -0x1adc1,CUS_0xb085,High -0x1adcd,CUS_0x4b17,High -0x1add9,CUS_0x4188,Standard -0x1ade5,CUS_0x8464,Standard -0x1adf1,CUS_0x96c8,High -0x1adfd,CUS_0xbf01,Standard -0x1ae09,CUS_0x49a4,High -0x1ae15,CUS_0x17e5,High -0x1ae21,CUS_0x3422,Standard -0x1ae2d,CUS_0x1f9b,Standard -0x1ae39,CUS_0x5aa9,Standard -0x1ae45,CUS_0x3c23,Standard -0x1ae51,CUS_0x366b,Standard -0x1ae5d,CUS_0xb0a3,Standard -0x1ae69,CUS_0x3dc3,Standard -0x1ae75,CUS_0x3df0,Low -0x1ae81,CUS_0xa4ad,High -0x1ae8d,CUS_0x7350,Standard -0x1ae99,CUS_0x41a1,Standard -0x1aea5,CUS_0x858b,Standard -0x1aeb1,CUS_0x2a9a,Standard -0x1aebd,CUS_0x4e47,High -0x1aec9,CUS_0x47ed,Standard -0x1aed5,CUS_0x8cd,Standard -0x1aee1,CUS_0x77fa,High -0x1aeed,CUS_0x1534,High -0x1aef9,CUS_0x3f6a,High -0x1af05,CUS_0x5284,Low -0x1af11,CUS_0x59b5,High -0x1af1d,CUS_0xb6bb,High -0x1af29,CUS_0xe57,High -0x1af35,CUS_0x96c7,High -0x1af41,CUS_0x58cd,Standard -0x1af4d,CUS_0x496e,Standard -0x1af59,CUS_0x4e97,High -0x1af65,CUS_0x4638,High -0x1af71,CUS_0x3d3f,Low -0x1af7d,CUS_0x1fb0,Standard -0x1af89,CUS_0x1425,Low -0x1af95,CUS_0x1ce1,High -0x1afa1,CUS_0x2ff7,Standard -0x1afad,CUS_0x2b29,High -0x1afb9,CUS_0x8964,High -0x1afc5,CUS_0x5be5,Low -0x1afd1,CUS_0x76bc,Standard -0x1afdd,CUS_0x8908,Standard -0x1afe9,CUS_0x2b59,High -0x1aff5,CUS_0xc07c,Standard -0x1b001,CUS_0x8fd9,High -0x1b00d,CUS_0x767f,Standard -0x1b019,CUS_0x796a,Standard -0x1b025,CUS_0x2b7e,Standard -0x1b031,CUS_0x1d1b,High -0x1b03d,CUS_0x7198,Low -0x1b049,CUS_0x404d,Standard -0x1b055,CUS_0xab78,Standard -0x1b061,CUS_0x372e,Standard -0x1b06d,CUS_0xaa83,Low -0x1b079,CUS_0x4318,Standard -0x1b085,CUS_0x29ac,Standard -0x1b091,CUS_0x1169,Low -0x1b09d,CUS_0x9b63,High -0x1b0a9,CUS_0x2748,Standard -0x1b0b5,CUS_0x612b,Low -0x1b0c1,CUS_0x7df9,Standard -0x1b0cd,CUS_0x21fa,Standard -0x1b0d9,CUS_0x7f50,Standard -0x1b0e5,CUS_0x850b,Standard -0x1b0f1,CUS_0x795c,Standard -0x1b0fd,CUS_0xb86e,High -0x1b109,CUS_0x99be,Standard -0x1b115,CUS_0x1915,Standard -0x1b121,CUS_0x183e,Standard -0x1b12d,CUS_0x275a,High -0x1b139,CUS_0x9772,High -0x1b145,CUS_0x461,Standard -0x1b151,CUS_0xbaa1,Standard -0x1b15d,CUS_0x55f6,Standard -0x1b169,CUS_0x81d7,Standard -0x1b175,CUS_0x7200,High -0x1b181,CUS_0x2ed0,Standard -0x1b18d,CUS_0xa306,Standard -0x1b199,CUS_0xe64,Standard -0x1b1a5,CUS_0x9423,Standard -0x1b1b1,CUS_0xb385,High -0x1b1bd,CUS_0x763a,Standard -0x1b1c9,CUS_0x6d3c,Standard -0x1b1d5,CUS_0xb6d,Standard -0x1b1e1,CUS_0x7545,Low -0x1b1ed,CUS_0x48e9,Low -0x1b1f9,CUS_0x90a2,High -0x1b205,CUS_0x832f,Standard -0x1b211,CUS_0x3f85,Standard -0x1b21d,CUS_0x480f,Low -0x1b229,CUS_0x8711,Standard -0x1b235,CUS_0x34c9,High -0x1b241,CUS_0x1e3f,Standard -0x1b24d,CUS_0xaa85,Low -0x1b259,CUS_0x63c1,Standard -0x1b265,CUS_0x4185,Standard -0x1b271,CUS_0x3fcb,Standard -0x1b27d,CUS_0x271b,Low -0x1b289,CUS_0x3379,High -0x1b295,CUS_0x15d9,High -0x1b2a1,CUS_0x89ba,Low -0x1b2ad,CUS_0x8bfe,High -0x1b2b9,CUS_0xae30,Standard -0x1b2c5,CUS_0xad2c,Standard -0x1b2d1,CUS_0xa9fc,Standard -0x1b2dd,CUS_0xedb,High -0x1b2e9,CUS_0x6d7e,Standard -0x1b2f5,CUS_0x8f20,Standard -0x1b301,CUS_0xa6db,Low -0x1b30d,CUS_0x2159,Standard -0x1b319,CUS_0x1375,High -0x1b325,CUS_0x9ebf,High -0x1b331,CUS_0x4fd8,High -0x1b33d,CUS_0x2b8a,High -0x1b349,CUS_0x294b,Standard -0x1b355,CUS_0x3813,Standard -0x1b361,CUS_0x8440,Standard -0x1b36d,CUS_0x2a67,Standard -0x1b379,CUS_0x4387,High -0x1b385,CUS_0xb824,High -0x1b391,CUS_0x79c8,Standard -0x1b39d,CUS_0x138f,High -0x1b3a9,CUS_0x8f63,Standard -0x1b3b5,CUS_0x8ff5,Standard -0x1b3c1,CUS_0x6282,Standard -0x1b3cd,CUS_0x61f8,Standard -0x1b3d9,CUS_0x7d17,Standard -0x1b3e5,CUS_0xa9b,Standard -0x1b3f1,CUS_0x3b7d,Standard -0x1b3fd,CUS_0x21ce,Standard -0x1b409,CUS_0x17f0,Standard -0x1b415,CUS_0x335a,High -0x1b421,CUS_0x95b6,Standard -0x1b42d,CUS_0x22e5,Standard -0x1b439,CUS_0x7ec9,Low -0x1b445,CUS_0x234a,Standard -0x1b451,CUS_0xb2c4,High -0x1b45d,CUS_0x41e5,Standard -0x1b469,CUS_0x4401,Standard -0x1b475,CUS_0x28e2,Standard -0x1b481,CUS_0x2a64,Standard -0x1b48d,CUS_0x39f8,Low -0x1b499,CUS_0x9dd,Standard -0x1b4a5,CUS_0x2c22,Standard -0x1b4b1,CUS_0x18cb,Standard -0x1b4bd,CUS_0xd9a,Low -0x1b4c9,CUS_0x7e90,High -0x1b4d5,CUS_0x2416,Standard -0x1b4e1,CUS_0x885c,Low -0x1b4ed,CUS_0x7b8a,High -0x1b4f9,CUS_0x1af1,High -0x1b505,CUS_0x3d64,High -0x1b511,CUS_0xc533,Standard -0x1b51d,CUS_0x65bd,Standard -0x1b529,CUS_0x1b0b,High -0x1b535,CUS_0x1b55,High -0x1b541,CUS_0x7d62,Standard -0x1b54d,CUS_0x975d,High -0x1b559,CUS_0x248e,Low -0x1b565,CUS_0x7eec,High -0x1b571,CUS_0x3e1f,Standard -0x1b57d,CUS_0x8430,Standard -0x1b589,CUS_0xbe12,High -0x1b595,CUS_0x6850,Low -0x1b5a1,CUS_0x9e04,High -0x1b5ad,CUS_0xacd,Low -0x1b5b9,CUS_0x7a4c,Standard -0x1b5c5,CUS_0x8898,Standard -0x1b5d1,CUS_0x4deb,High -0x1b5dd,CUS_0x4adb,Standard -0x1b5e9,CUS_0xb25e,Standard -0x1b5f5,CUS_0x1613,Low -0x1b601,CUS_0xbad2,Standard -0x1b60d,CUS_0x7f6b,Standard -0x1b619,CUS_0x5753,Standard -0x1b625,CUS_0xa2fe,High -0x1b631,CUS_0xc06a,Standard -0x1b63d,CUS_0x151b,Standard -0x1b649,CUS_0x8653,Standard -0x1b655,CUS_0x4b9f,Standard -0x1b661,CUS_0x72b4,High -0x1b66d,CUS_0x86ec,High -0x1b679,CUS_0x8bd6,High -0x1b685,CUS_0x2fd8,Low -0x1b691,CUS_0x4f83,Standard -0x1b69d,CUS_0xb8ea,Standard -0x1b6a9,CUS_0x7177,Standard -0x1b6b5,CUS_0x37e9,Standard -0x1b6c1,CUS_0x57c5,High -0x1b6cd,CUS_0x4d3d,High -0x1b6d9,CUS_0x446b,Standard -0x1b6e5,CUS_0xb25a,High -0x1b6f1,CUS_0x7b31,Standard -0x1b6fd,CUS_0xa411,Standard -0x1b709,CUS_0x748d,Low -0x1b715,CUS_0x87f6,Standard -0x1b721,CUS_0x2472,High -0x1b72d,CUS_0x2a9f,High -0x1b739,CUS_0x147c,High -0x1b745,CUS_0x5f30,Standard -0x1b751,CUS_0x1914,High -0x1b75d,CUS_0x5d0f,Standard -0x1b769,CUS_0x8888,Standard -0x1b775,CUS_0x36c4,Low -0x1b781,CUS_0xb039,Standard -0x1b78d,CUS_0x1616,Standard -0x1b799,CUS_0x6f3b,Standard -0x1b7a5,CUS_0x583c,Standard -0x1b7b1,CUS_0xb741,Standard -0x1b7bd,CUS_0x9e68,High -0x1b7c9,CUS_0x5430,Standard -0x1b7d5,CUS_0x3ad0,Standard -0x1b7e1,CUS_0x586c,Standard -0x1b7ed,CUS_0x8638,Low -0x1b7f9,CUS_0x65fe,High -0x1b805,CUS_0x31ce,Standard -0x1b811,CUS_0x8336,Standard -0x1b81d,CUS_0x4218,Standard -0x1b829,CUS_0x7dee,Standard -0x1b835,CUS_0xc62a,High -0x1b841,CUS_0x2e9e,Standard -0x1b84d,CUS_0x38ad,High -0x1b859,CUS_0xb6bc,High -0x1b865,CUS_0x7e9a,Standard -0x1b871,CUS_0xc6e,Standard -0x1b87d,CUS_0x887c,High -0x1b889,CUS_0x4f70,Standard -0x1b895,CUS_0x6410,High -0x1b8a1,CUS_0x544a,Standard -0x1b8ad,CUS_0x8a29,Low -0x1b8b9,CUS_0x24b2,Standard -0x1b8c5,CUS_0xa080,Standard -0x1b8d1,CUS_0xaf78,High -0x1b8dd,CUS_0xad2,Standard -0x1b8e9,CUS_0x6f0f,Standard -0x1b8f5,CUS_0xb948,Standard -0x1b901,CUS_0x3092,Low -0x1b90d,CUS_0x6829,Standard -0x1b919,CUS_0x6f71,Standard -0x1b925,CUS_0x788b,Standard -0x1b931,CUS_0xa071,Standard -0x1b93d,CUS_0x66eb,Low -0x1b949,CUS_0xbd57,Low -0x1b955,CUS_0x6e3b,Standard -0x1b961,CUS_0x9eef,Standard -0x1b96d,CUS_0x3f37,Low -0x1b979,CUS_0x337b,Standard -0x1b985,CUS_0x778a,Low -0x1b991,CUS_0xb861,High -0x1b99d,CUS_0x3df4,Standard -0x1b9a9,CUS_0x3a43,Standard -0x1b9b5,CUS_0xbef8,Standard -0x1b9c1,CUS_0x1ebf,Standard -0x1b9cd,CUS_0x3fd9,Standard -0x1b9d9,CUS_0x83b5,Low -0x1b9e5,CUS_0x83a1,Low -0x1b9f1,CUS_0x97aa,Standard -0x1b9fd,CUS_0x9c2e,Standard -0x1ba09,CUS_0x50b9,Standard -0x1ba15,CUS_0x5dd6,Standard -0x1ba21,CUS_0x1255,Low -0x1ba2d,CUS_0x9db5,High -0x1ba39,CUS_0x693a,High -0x1ba45,CUS_0xaf8f,Standard -0x1ba51,CUS_0x3909,Standard -0x1ba5d,CUS_0x4ed5,Low -0x1ba69,CUS_0xba5f,High -0x1ba75,CUS_0x3570,Standard -0x1ba81,CUS_0xa86,Low -0x1ba8d,CUS_0x5171,Standard -0x1ba99,CUS_0x947b,Standard -0x1baa5,CUS_0x58ad,Standard -0x1bab1,CUS_0x5470,Low -0x1babd,CUS_0x1746,High -0x1bac9,CUS_0x1278,Standard -0x1bad5,CUS_0xb27a,High -0x1bae1,CUS_0x84a8,Low -0x1baed,CUS_0x59a5,Standard -0x1baf9,CUS_0x6f9,High -0x1bb05,CUS_0x4884,Standard -0x1bb11,CUS_0x127d,High -0x1bb1d,CUS_0xe60,Standard -0x1bb29,CUS_0x37bd,Standard -0x1bb35,CUS_0x6a56,High -0x1bb41,CUS_0x8bbd,Standard -0x1bb4d,CUS_0x8977,High -0x1bb59,CUS_0x9148,Standard -0x1bb65,CUS_0xbf8b,High -0x1bb71,CUS_0x1efa,Standard -0x1bb7d,CUS_0x66b8,Low -0x1bb89,CUS_0x3afb,Standard -0x1bb95,CUS_0x5f3f,High -0x1bba1,CUS_0xa05a,High -0x1bbad,CUS_0xab07,Standard -0x1bbb9,CUS_0x5873,Standard -0x1bbc5,CUS_0x55f5,Standard -0x1bbd1,CUS_0x9b20,High -0x1bbdd,CUS_0x5344,Low -0x1bbe9,CUS_0x2863,Standard -0x1bbf5,CUS_0xc4b6,Low -0x1bc01,CUS_0x56a4,Standard -0x1bc0d,CUS_0x36ee,Standard -0x1bc19,CUS_0x4a78,High -0x1bc25,CUS_0xbd33,Standard -0x1bc31,CUS_0x6247,Standard -0x1bc3d,CUS_0x8ebd,Standard -0x1bc49,CUS_0xac05,Standard -0x1bc55,CUS_0x9192,Low -0x1bc61,CUS_0xae75,Standard -0x1bc6d,CUS_0x82c2,High -0x1bc79,CUS_0x7672,Low -0x1bc85,CUS_0x1499,Standard -0x1bc91,CUS_0x8239,Standard -0x1bc9d,CUS_0xb987,High -0x1bca9,CUS_0x927e,Standard -0x1bcb5,CUS_0x1c98,Standard -0x1bcc1,CUS_0xa9d3,High -0x1bccd,CUS_0x2317,Standard -0x1bcd9,CUS_0xb12,Standard -0x1bce5,CUS_0xbaa8,Low -0x1bcf1,CUS_0x3371,High -0x1bcfd,CUS_0x7ba5,High -0x1bd09,CUS_0x7ace,Low -0x1bd15,CUS_0xb3e,High -0x1bd21,CUS_0x5aac,Standard -0x1bd2d,CUS_0x7c97,High -0x1bd39,CUS_0xd8e,Low -0x1bd45,CUS_0x940d,Standard -0x1bd51,CUS_0x94aa,Standard -0x1bd5d,CUS_0x667d,Standard -0x1bd69,CUS_0x41f5,Standard -0x1bd75,CUS_0x95a1,Standard -0x1bd81,CUS_0x8aa3,Standard -0x1bd8d,CUS_0x2141,High -0x1bd99,CUS_0x2fb9,Standard -0x1bda5,CUS_0x5efc,High -0x1bdb1,CUS_0x4430,High -0x1bdbd,CUS_0x527f,Standard -0x1bdc9,CUS_0x530c,Standard -0x1bdd5,CUS_0x260b,High -0x1bde1,CUS_0xad31,High -0x1bded,CUS_0x8ee2,Low -0x1bdf9,CUS_0x5637,Standard -0x1be05,CUS_0xba4c,Low -0x1be11,CUS_0x2fd6,High -0x1be1d,CUS_0xa250,Standard -0x1be29,CUS_0x161b,Standard -0x1be35,CUS_0x80df,Standard -0x1be41,CUS_0x9e45,Standard -0x1be4d,CUS_0x730d,Standard -0x1be59,CUS_0x4322,Standard -0x1be65,CUS_0x3d56,Standard -0x1be71,CUS_0x6487,High -0x1be7d,CUS_0x5e2d,Standard -0x1be89,CUS_0xbcf0,High -0x1be95,CUS_0xa4c3,High -0x1bea1,CUS_0x956b,High -0x1bead,CUS_0x9e80,Low -0x1beb9,CUS_0xc356,High -0x1bec5,CUS_0x2e8d,Standard -0x1bed1,CUS_0x720f,Standard -0x1bedd,CUS_0x5a7d,Standard -0x1bee9,CUS_0x5190,Standard -0x1bef5,CUS_0x9bd6,Standard -0x1bf01,CUS_0x4384,Standard -0x1bf0d,CUS_0x962f,Standard -0x1bf19,CUS_0x6c9e,High -0x1bf25,CUS_0x86d9,Low -0x1bf31,CUS_0x5d3f,Standard -0x1bf3d,CUS_0x380f,High -0x1bf49,CUS_0xb428,High -0x1bf55,CUS_0x48c0,Low -0x1bf61,CUS_0x87b6,Standard -0x1bf6d,CUS_0x5505,Low -0x1bf79,CUS_0x272c,Standard -0x1bf85,CUS_0x227e,High -0x1bf91,CUS_0x3e5c,Low -0x1bf9d,CUS_0x33cd,Standard -0x1bfa9,CUS_0x96bc,Standard -0x1bfb5,CUS_0xa1bc,High -0x1bfc1,CUS_0xbc4,Standard -0x1bfcd,CUS_0x8138,Standard -0x1bfd9,CUS_0x70c9,Standard -0x1bfe5,CUS_0x5fcd,Standard -0x1bff1,CUS_0x8382,Standard -0x1bffd,CUS_0xc61e,Standard -0x1c009,CUS_0x6e0d,Standard -0x1c015,CUS_0x7541,Standard -0x1c021,CUS_0x3b3b,High -0x1c02d,CUS_0x7319,Standard -0x1c039,CUS_0x3533,Standard -0x1c045,CUS_0x7fc7,Low -0x1c051,CUS_0x4b67,High -0x1c05d,CUS_0x6312,Standard -0x1c069,CUS_0x95d2,Standard -0x1c075,CUS_0x4b1c,High -0x1c081,CUS_0x242d,Standard -0x1c08d,CUS_0x1930,Standard -0x1c099,CUS_0x5803,Standard -0x1c0a5,CUS_0x86c7,Low -0x1c0b1,CUS_0x3910,Standard -0x1c0bd,CUS_0xa630,Standard -0x1c0c9,CUS_0x91b,Standard -0x1c0d5,CUS_0x394a,Low -0x1c0e1,CUS_0x535a,Low -0x1c0ed,CUS_0x5959,High -0x1c0f9,CUS_0x184c,High -0x1c105,CUS_0xb143,High -0x1c111,CUS_0x9f80,High -0x1c11d,CUS_0x15b7,High -0x1c129,CUS_0x2b60,High -0x1c135,CUS_0xf55,High -0x1c141,CUS_0x24af,Standard -0x1c14d,CUS_0xba96,Standard -0x1c159,CUS_0x56f6,Standard -0x1c165,CUS_0xa403,Standard -0x1c171,CUS_0xaa0d,Standard -0x1c17d,CUS_0x8e7f,High -0x1c189,CUS_0x5c65,Standard -0x1c195,CUS_0x8e00,High -0x1c1a1,CUS_0x108a,Standard -0x1c1ad,CUS_0xb23c,Standard -0x1c1b9,CUS_0xb77f,High -0x1c1c5,CUS_0x40b1,Standard -0x1c1d1,CUS_0x7fe,Low -0x1c1dd,CUS_0x4fa6,High -0x1c1e9,CUS_0xb9c7,High -0x1c1f5,CUS_0x8b2c,High -0x1c201,CUS_0x8b74,Low -0x1c20d,CUS_0x434a,High -0x1c219,CUS_0x4c45,High -0x1c225,CUS_0x3433,Standard -0x1c231,CUS_0xa9e7,Standard -0x1c23d,CUS_0xbab1,Low -0x1c249,CUS_0x3722,Standard -0x1c255,CUS_0x71f1,Standard -0x1c261,CUS_0x2d98,Low -0x1c26d,CUS_0x2bce,High -0x1c279,CUS_0x711e,Standard -0x1c285,CUS_0xa2a2,Standard -0x1c291,CUS_0x9c96,High -0x1c29d,CUS_0x838c,High -0x1c2a9,CUS_0xa137,Standard -0x1c2b5,CUS_0xfe5,Standard -0x1c2c1,CUS_0x3bfb,High -0x1c2cd,CUS_0x6827,High -0x1c2d9,CUS_0x9283,High -0x1c2e5,CUS_0x65d2,Standard -0x1c2f1,CUS_0x5fc5,Standard -0x1c2fd,CUS_0xc6c2,Standard -0x1c309,CUS_0x39c5,High -0x1c315,CUS_0x95a9,Standard -0x1c321,CUS_0x632c,Low -0x1c32d,CUS_0xadee,Standard -0x1c339,CUS_0x3e5d,Standard -0x1c345,CUS_0xbc5b,Standard -0x1c351,CUS_0x9ef9,Standard -0x1c35d,CUS_0x6194,High -0x1c369,CUS_0x454f,Low -0x1c375,CUS_0x4b4,Standard -0x1c381,CUS_0x96e7,Standard -0x1c38d,CUS_0x7312,Standard -0x1c399,CUS_0x618c,Standard -0x1c3a5,CUS_0xb772,High -0x1c3b1,CUS_0x224f,Low -0x1c3bd,CUS_0x9fca,Standard -0x1c3c9,CUS_0x4fac,High -0x1c3d5,CUS_0x2346,Standard -0x1c3e1,CUS_0x9123,Standard -0x1c3ed,CUS_0x9e39,High -0x1c3f9,CUS_0x193e,High -0x1c405,CUS_0x9169,Standard -0x1c411,CUS_0x2683,High -0x1c41d,CUS_0x2568,High -0x1c429,CUS_0xa31b,Low -0x1c435,CUS_0x6a4d,Standard -0x1c441,CUS_0x32e6,Low -0x1c44d,CUS_0x99ec,Low -0x1c459,CUS_0x233d,High -0x1c465,CUS_0x67e5,High -0x1c471,CUS_0xbfd0,Low -0x1c47d,CUS_0x71ba,High -0x1c489,CUS_0x6a9d,High -0x1c495,CUS_0x492c,Standard -0x1c4a1,CUS_0x9cf7,Standard -0x1c4ad,CUS_0x75ce,High -0x1c4b9,CUS_0x5628,Standard -0x1c4c5,CUS_0x20e4,Low -0x1c4d1,CUS_0x44c5,High -0x1c4dd,CUS_0xb8c2,Low -0x1c4e9,CUS_0x2fc9,Standard -0x1c4f5,CUS_0xe42,High -0x1c501,CUS_0x4448,High -0x1c50d,CUS_0x8957,Standard -0x1c519,CUS_0x88e3,Low -0x1c525,CUS_0x8b85,Standard -0x1c531,CUS_0x6d82,Standard -0x1c53d,CUS_0x2db5,Standard -0x1c549,CUS_0xbefe,High -0x1c555,CUS_0x8275,High -0x1c561,CUS_0xaf14,Standard -0x1c56d,CUS_0xb53d,Low -0x1c579,CUS_0x58e5,Standard -0x1c585,CUS_0x3b1f,High -0x1c591,CUS_0xb742,Low -0x1c59d,CUS_0xdcd,Standard -0x1c5a9,CUS_0x793,Standard -0x1c5b5,CUS_0xa3bd,Low -0x1c5c1,CUS_0x44a4,Standard -0x1c5cd,CUS_0xc78,Low -0x1c5d9,CUS_0x1e50,Standard -0x1c5e5,CUS_0x206c,Standard -0x1c5f1,CUS_0x787f,Standard -0x1c5fd,CUS_0x4f3,Standard -0x1c609,CUS_0x3561,High -0x1c615,CUS_0xb6ae,Standard -0x1c621,CUS_0xb634,High -0x1c62d,CUS_0x5323,Standard -0x1c639,CUS_0x99cc,Low -0x1c645,CUS_0x6e05,Low -0x1c651,CUS_0xa9a8,High -0x1c65d,CUS_0x36eb,Standard -0x1c669,CUS_0x2f24,High -0x1c675,CUS_0x3240,Low -0x1c681,CUS_0x796e,Standard -0x1c68d,CUS_0x4aa5,High -0x1c699,CUS_0x4046,Standard -0x1c6a5,CUS_0x1be4,Standard -0x1c6b1,CUS_0xbe54,Low -0x1c6bd,CUS_0xb397,Low -0x1c6c9,CUS_0x3ee4,Low -0x1c6d5,CUS_0x82a7,High -0x1c6e1,CUS_0x1dc2,High -0x1c6ed,CUS_0x1630,High -0x1c6f9,CUS_0x9c65,Standard -0x1c705,CUS_0x706d,High -0x1c711,CUS_0x8c52,Standard -0x1c71d,CUS_0x1735,Standard -0x1c729,CUS_0xa255,Standard -0x1c735,CUS_0x2761,Standard -0x1c741,CUS_0xae54,Standard -0x1c74d,CUS_0x748,Standard -0x1c759,CUS_0xb7e2,Low -0x1c765,CUS_0x49fd,Low -0x1c771,CUS_0x5a82,Low -0x1c77d,CUS_0xa39e,High -0x1c789,CUS_0x75e3,High -0x1c795,CUS_0x1c1a,Standard -0x1c7a1,CUS_0x4f29,High -0x1c7ad,CUS_0x1c7a,High -0x1c7b9,CUS_0x1dab,High -0x1c7c5,CUS_0x9274,Low -0x1c7d1,CUS_0x7aad,Low -0x1c7dd,CUS_0xebe,Standard -0x1c7e9,CUS_0x4ac2,Standard -0x1c7f5,CUS_0x2031,Low -0x1c801,CUS_0x919b,High -0x1c80d,CUS_0x2d81,Standard -0x1c819,CUS_0x92ca,Standard -0x1c825,CUS_0xc5f8,Standard -0x1c831,CUS_0x2010,Low -0x1c83d,CUS_0x2982,Standard -0x1c849,CUS_0x8b7c,Standard -0x1c855,CUS_0x1bbb,Standard -0x1c861,CUS_0x9657,High -0x1c86d,CUS_0x73fb,Low -0x1c879,CUS_0xbe22,Standard -0x1c885,CUS_0x2c54,Standard -0x1c891,CUS_0x68e1,Standard -0x1c89d,CUS_0x2206,Standard -0x1c8a9,CUS_0x5856,Standard -0x1c8b5,CUS_0xb13b,Standard -0x1c8c1,CUS_0x6991,High -0x1c8cd,CUS_0x7450,High -0x1c8d9,CUS_0x8793,Standard -0x1c8e5,CUS_0xbc57,High -0x1c8f1,CUS_0x45aa,High -0x1c8fd,CUS_0xb229,Low -0x1c909,CUS_0x5af5,High -0x1c915,CUS_0x8749,Standard -0x1c921,CUS_0x8f6b,Standard -0x1c92d,CUS_0x88f9,High -0x1c939,CUS_0xc5c9,Standard -0x1c945,CUS_0x851c,Standard -0x1c951,CUS_0x1338,Standard -0x1c95d,CUS_0x1ed2,High -0x1c969,CUS_0xac1,Standard -0x1c975,CUS_0x5e7a,Standard -0x1c981,CUS_0xc715,Standard -0x1c98d,CUS_0x7327,Low -0x1c999,CUS_0xc2ee,Standard -0x1c9a5,CUS_0x7830,Standard -0x1c9b1,CUS_0xced,Standard -0x1c9bd,CUS_0x9e42,Low -0x1c9c9,CUS_0x7029,Standard -0x1c9d5,CUS_0x4f2f,High -0x1c9e1,CUS_0x32c7,High -0x1c9ed,CUS_0x6525,High -0x1c9f9,CUS_0x5418,Low -0x1ca05,CUS_0x6818,Standard -0x1ca11,CUS_0x5a1e,High -0x1ca1d,CUS_0x711b,Standard -0x1ca29,CUS_0x453d,Low -0x1ca35,CUS_0xa9cc,Standard -0x1ca41,CUS_0x6c4e,Standard -0x1ca4d,CUS_0xbeef,Standard -0x1ca59,CUS_0xbc40,High -0x1ca65,CUS_0x241d,High -0x1ca71,CUS_0x93b2,High -0x1ca7d,CUS_0xb14c,Standard -0x1ca89,CUS_0x8420,High -0x1ca95,CUS_0x1041,Standard -0x1caa1,CUS_0x1c2f,Low -0x1caad,CUS_0x8f70,Standard -0x1cab9,CUS_0x614f,Standard -0x1cac5,CUS_0x1e9c,Standard -0x1cad1,CUS_0xb012,Low -0x1cadd,CUS_0xc62c,Low -0x1cae9,CUS_0x8f65,Standard -0x1caf5,CUS_0x27ae,Low -0x1cb01,CUS_0x4e60,High -0x1cb0d,CUS_0x465c,High -0x1cb19,CUS_0x6ccb,Standard -0x1cb25,CUS_0x5da2,Standard -0x1cb31,CUS_0x638d,Standard -0x1cb3d,CUS_0x777b,Standard -0x1cb49,CUS_0x34fb,Standard -0x1cb55,CUS_0x7e2f,Standard -0x1cb61,CUS_0x3ce1,Standard -0x1cb6d,CUS_0x15f4,Standard -0x1cb79,CUS_0x8bda,Standard -0x1cb85,CUS_0x1cce,High -0x1cb91,CUS_0x6144,Standard -0x1cb9d,CUS_0x7f56,High -0x1cba9,CUS_0x746,Low -0x1cbb5,CUS_0x5a0c,High -0x1cbc1,CUS_0x95b1,Standard -0x1cbcd,CUS_0x3bc6,High -0x1cbd9,CUS_0x2b84,High -0x1cbe5,CUS_0x2b57,High -0x1cbf1,CUS_0x4f01,High -0x1cbfd,CUS_0x4f85,High -0x1cc09,CUS_0x7c84,Standard -0x1cc15,CUS_0xc8c,Standard -0x1cc21,CUS_0x8fc8,Standard -0x1cc2d,CUS_0x279f,High -0x1cc39,CUS_0x786e,Low -0x1cc45,CUS_0x18ea,Low -0x1cc51,CUS_0x365b,High -0x1cc5d,CUS_0x15a7,High -0x1cc69,CUS_0x1912,Standard -0x1cc75,CUS_0x44d2,Low -0x1cc81,CUS_0x7409,Standard -0x1cc8d,CUS_0x37d5,High -0x1cc99,CUS_0x1c34,Low -0x1cca5,CUS_0x8fcd,Standard -0x1ccb1,CUS_0x340b,High -0x1ccbd,CUS_0xa631,Standard -0x1ccc9,CUS_0x566f,Standard -0x1ccd5,CUS_0x51d4,Standard -0x1cce1,CUS_0x205c,Standard -0x1cced,CUS_0x9b0f,Standard -0x1ccf9,CUS_0x7562,High -0x1cd05,CUS_0x1c7d,Standard -0x1cd11,CUS_0xbc49,High -0x1cd1d,CUS_0x4da6,High -0x1cd29,CUS_0x1154,Standard -0x1cd35,CUS_0xbe82,Standard -0x1cd41,CUS_0x123a,Standard -0x1cd4d,CUS_0x738c,Standard -0x1cd59,CUS_0x6010,Standard -0x1cd65,CUS_0x7693,High -0x1cd71,CUS_0xbaeb,Low -0x1cd7d,CUS_0x3a85,Standard -0x1cd89,CUS_0x55da,Standard -0x1cd95,CUS_0x778e,Standard -0x1cda1,CUS_0xa8ce,Standard -0x1cdad,CUS_0x8bc6,High -0x1cdb9,CUS_0x6484,Standard -0x1cdc5,CUS_0x76e2,Standard -0x1cdd1,CUS_0xc3e4,Low -0x1cddd,CUS_0xa68a,High -0x1cde9,CUS_0xb2d3,High -0x1cdf5,CUS_0x9f2f,High -0x1ce01,CUS_0x6e49,High -0x1ce0d,CUS_0xb490,Standard -0x1ce19,CUS_0x5ffc,Standard -0x1ce25,CUS_0x85d5,Standard -0x1ce31,CUS_0x4d1,Standard -0x1ce3d,CUS_0xab9e,Low -0x1ce49,CUS_0x7e61,Standard -0x1ce55,CUS_0x6ddb,High -0x1ce61,CUS_0xa679,Standard -0x1ce6d,CUS_0x3463,Standard -0x1ce79,CUS_0x2296,Low -0x1ce85,CUS_0xc16d,Standard -0x1ce91,CUS_0x2080,Standard -0x1ce9d,CUS_0x5a81,High -0x1cea9,CUS_0x1bbf,Standard -0x1ceb5,CUS_0x9a1c,High -0x1cec1,CUS_0x475f,Standard -0x1cecd,CUS_0xc12b,High -0x1ced9,CUS_0x8a03,Standard -0x1cee5,CUS_0xbb26,Standard -0x1cef1,CUS_0x57f3,Standard -0x1cefd,CUS_0xbf1e,Low -0x1cf09,CUS_0x2824,High -0x1cf15,CUS_0x23b5,High -0x1cf21,CUS_0x8a45,High -0x1cf2d,CUS_0x7a79,Standard -0x1cf39,CUS_0x4eca,Standard -0x1cf45,CUS_0x902b,Low -0x1cf51,CUS_0x430b,Standard -0x1cf5d,CUS_0x1750,High -0x1cf69,CUS_0x76b0,High -0x1cf75,CUS_0x9caf,Low -0x1cf81,CUS_0x648a,High -0x1cf8d,CUS_0xad1d,Standard -0x1cf99,CUS_0xc35c,Standard -0x1cfa5,CUS_0x41fc,Standard -0x1cfb1,CUS_0x7dc6,High -0x1cfbd,CUS_0x753f,Standard -0x1cfc9,CUS_0x5578,Standard -0x1cfd5,CUS_0xa2f4,Standard -0x1cfe1,CUS_0x233e,Standard -0x1cfed,CUS_0x6492,Standard -0x1cff9,CUS_0x1a3a,Standard -0x1d005,CUS_0x9a26,High -0x1d011,CUS_0x18fd,High -0x1d01d,CUS_0x698b,Low -0x1d029,CUS_0xf21,Standard -0x1d035,CUS_0xb481,Standard -0x1d041,CUS_0xb37c,Standard -0x1d04d,CUS_0x61d5,High -0x1d059,CUS_0x3190,Standard -0x1d065,CUS_0x2f04,Low -0x1d071,CUS_0xfd1,Standard -0x1d07d,CUS_0x4fad,Standard -0x1d089,CUS_0x79cb,High -0x1d095,CUS_0x1835,Standard -0x1d0a1,CUS_0x9df7,Standard -0x1d0ad,CUS_0x4a79,Standard -0x1d0b9,CUS_0x16d9,Standard -0x1d0c5,CUS_0x522c,High -0x1d0d1,CUS_0xf50,Standard -0x1d0dd,CUS_0x6398,High -0x1d0e9,CUS_0x62f8,High -0x1d0f5,CUS_0xfae,High -0x1d101,CUS_0xa46,Standard -0x1d10d,CUS_0x82a5,Standard -0x1d119,CUS_0xbb07,Standard -0x1d125,CUS_0x71b6,Standard -0x1d131,CUS_0x411,Standard -0x1d13d,CUS_0x5c3c,Standard -0x1d149,CUS_0x9f23,Standard -0x1d155,CUS_0x178b,Low -0x1d161,CUS_0x6ed0,Low -0x1d16d,CUS_0x6c8b,Standard -0x1d179,CUS_0x691b,Low -0x1d185,CUS_0x3dfc,Standard -0x1d191,CUS_0x34a2,Standard -0x1d19d,CUS_0xaf49,Low -0x1d1a9,CUS_0x27d8,Standard -0x1d1b5,CUS_0x3539,Standard -0x1d1c1,CUS_0xbb04,Standard -0x1d1cd,CUS_0x1ea5,Standard -0x1d1d9,CUS_0xa424,Low -0x1d1e5,CUS_0x6ed8,Standard -0x1d1f1,CUS_0xb8a2,Standard -0x1d1fd,CUS_0x9153,Standard -0x1d209,CUS_0x597c,High -0x1d215,CUS_0xd22,Standard -0x1d221,CUS_0x5a42,High -0x1d22d,CUS_0x58aa,Standard -0x1d239,CUS_0x363d,Standard -0x1d245,CUS_0xf20,High -0x1d251,CUS_0x28de,High -0x1d25d,CUS_0xa607,Low -0x1d269,CUS_0x3482,Standard -0x1d275,CUS_0x8ff4,High -0x1d281,CUS_0x20f3,High -0x1d28d,CUS_0x7a14,Standard -0x1d299,CUS_0xb7d8,Low -0x1d2a5,CUS_0xb969,Standard -0x1d2b1,CUS_0xbace,Standard -0x1d2bd,CUS_0xb85c,High -0x1d2c9,CUS_0x47af,Standard -0x1d2d5,CUS_0xc416,Low -0x1d2e1,CUS_0xcc3,Low -0x1d2ed,CUS_0x3d50,Standard -0x1d2f9,CUS_0x43e7,Standard -0x1d305,CUS_0x761f,High -0x1d311,CUS_0x3468,Standard -0x1d31d,CUS_0x5d35,Standard -0x1d329,CUS_0x41d4,Low -0x1d335,CUS_0x9d73,Standard -0x1d341,CUS_0x6985,High -0x1d34d,CUS_0x63b0,Standard -0x1d359,CUS_0x35e9,Standard -0x1d365,CUS_0x7fa0,Standard -0x1d371,CUS_0x4c36,Standard -0x1d37d,CUS_0xb387,Standard -0x1d389,CUS_0x6619,Standard -0x1d395,CUS_0x958a,Standard -0x1d3a1,CUS_0x30a3,Low -0x1d3ad,CUS_0x7bf0,High -0x1d3b9,CUS_0x801,High -0x1d3c5,CUS_0x5513,Standard -0x1d3d1,CUS_0x60af,Low -0x1d3dd,CUS_0x1453,Standard -0x1d3e9,CUS_0xc428,Standard -0x1d3f5,CUS_0xb035,Low -0x1d401,CUS_0x880,Low -0x1d40d,CUS_0xc38a,Standard -0x1d419,CUS_0xb152,Standard -0x1d425,CUS_0x52e5,Standard -0x1d431,CUS_0xa287,Standard -0x1d43d,CUS_0x84d0,High -0x1d449,CUS_0x29b1,High -0x1d455,CUS_0xa80c,Low -0x1d461,CUS_0x4f28,High -0x1d46d,CUS_0x63b4,Standard -0x1d479,CUS_0x40e5,Low -0x1d485,CUS_0x68d9,Standard -0x1d491,CUS_0x2c1c,Standard -0x1d49d,CUS_0xb033,Standard -0x1d4a9,CUS_0x677f,High -0x1d4b5,CUS_0x7b39,Low -0x1d4c1,CUS_0xbe25,Standard -0x1d4cd,CUS_0x933f,Standard -0x1d4d9,CUS_0xc5f9,Standard -0x1d4e5,CUS_0xa865,Standard -0x1d4f1,CUS_0x3a5b,Standard -0x1d4fd,CUS_0xbe59,Standard -0x1d509,CUS_0x4cef,Standard -0x1d515,CUS_0x2dd6,Low -0x1d521,CUS_0x98b3,Standard -0x1d52d,CUS_0x9189,High -0x1d539,CUS_0xa2ca,Standard -0x1d545,CUS_0xb1f5,Standard -0x1d551,CUS_0x6ba9,Standard -0x1d55d,CUS_0x34e1,High -0x1d569,CUS_0x673b,Standard -0x1d575,CUS_0x6bc3,Standard -0x1d581,CUS_0x4410,High -0x1d58d,CUS_0x6c95,Standard -0x1d599,CUS_0x676b,High -0x1d5a5,CUS_0x927d,Low -0x1d5b1,CUS_0xc586,Standard -0x1d5bd,CUS_0x5d46,Standard -0x1d5c9,CUS_0x4459,Standard -0x1d5d5,CUS_0x5aaa,Standard -0x1d5e1,CUS_0x500d,High -0x1d5ed,CUS_0x6cd1,High -0x1d5f9,CUS_0x8543,Standard -0x1d605,CUS_0xb8b,Standard -0x1d611,CUS_0x3e52,Standard -0x1d61d,CUS_0xadb8,Standard -0x1d629,CUS_0x960e,Standard -0x1d635,CUS_0x3404,Standard -0x1d641,CUS_0x2b15,Standard -0x1d64d,CUS_0xc1f0,Standard -0x1d659,CUS_0xa037,Standard -0x1d665,CUS_0x9b6b,Low -0x1d671,CUS_0x5c31,Standard -0x1d67d,CUS_0x2784,Standard -0x1d689,CUS_0x9102,High -0x1d695,CUS_0xc0c7,Standard -0x1d6a1,CUS_0x2102,Standard -0x1d6ad,CUS_0x5ed4,Low -0x1d6b9,CUS_0x8da9,Standard -0x1d6c5,CUS_0x8d40,Standard -0x1d6d1,CUS_0x3a30,Low -0x1d6dd,CUS_0x4f73,Standard -0x1d6e9,CUS_0x7c76,High -0x1d6f5,CUS_0x4889,High -0x1d701,CUS_0x74c,Standard -0x1d70d,CUS_0x57b2,Standard -0x1d719,CUS_0x9a13,Standard -0x1d725,CUS_0xc3cc,Low -0x1d731,CUS_0xaa7c,High -0x1d73d,CUS_0x741,Standard -0x1d749,CUS_0xa146,Standard -0x1d755,CUS_0x6a14,Standard -0x1d761,CUS_0x1498,High -0x1d76d,CUS_0x32d3,Standard -0x1d779,CUS_0x569d,Standard -0x1d785,CUS_0x68cd,Standard -0x1d791,CUS_0x63fe,Standard -0x1d79d,CUS_0x7c60,Standard -0x1d7a9,CUS_0x3cf1,High -0x1d7b5,CUS_0x91df,Low -0x1d7c1,CUS_0x6ce0,High -0x1d7cd,CUS_0x7d41,Standard -0x1d7d9,CUS_0x58bf,Standard -0x1d7e5,CUS_0x157d,Standard -0x1d7f1,CUS_0xb218,High -0x1d7fd,CUS_0xadf7,Standard -0x1d809,CUS_0x62d,Standard -0x1d815,CUS_0x2dd2,Standard -0x1d821,CUS_0x1cf3,Standard -0x1d82d,CUS_0x2ee4,High -0x1d839,CUS_0xb183,Standard -0x1d845,CUS_0x9da2,High -0x1d851,CUS_0x2f59,Standard -0x1d85d,CUS_0x2f52,Standard -0x1d869,CUS_0x4211,Standard -0x1d875,CUS_0x7a96,Standard -0x1d881,CUS_0xa0a6,Standard -0x1d88d,CUS_0x7b79,Standard -0x1d899,CUS_0xa40b,Low -0x1d8a5,CUS_0xa4c6,Standard -0x1d8b1,CUS_0xaeda,Standard -0x1d8bd,CUS_0x5e06,Standard -0x1d8c9,CUS_0x5254,High -0x1d8d5,CUS_0x2418,Standard -0x1d8e1,CUS_0x24bf,Standard -0x1d8ed,CUS_0xb61c,Standard -0x1d8f9,CUS_0x74e8,Standard -0x1d905,CUS_0x2c60,Low -0x1d911,CUS_0x4ed2,Standard -0x1d91d,CUS_0xb04e,High -0x1d929,CUS_0x9cdb,Standard -0x1d935,CUS_0xa2df,High -0x1d941,CUS_0x2801,High -0x1d94d,CUS_0xbbf7,Standard -0x1d959,CUS_0x6504,High -0x1d965,CUS_0x9334,High -0x1d971,CUS_0x7f86,Standard -0x1d97d,CUS_0x337f,Low -0x1d989,CUS_0x81fe,Standard -0x1d995,CUS_0xad90,Standard -0x1d9a1,CUS_0x5f9a,Standard -0x1d9ad,CUS_0x4d90,Standard -0x1d9b9,CUS_0x99c5,Standard -0x1d9c5,CUS_0x3f63,Standard -0x1d9d1,CUS_0x81c3,Standard -0x1d9dd,CUS_0x2224,Standard -0x1d9e9,CUS_0x9b9,Standard -0x1d9f5,CUS_0xb82,Standard -0x1da01,CUS_0xb788,Standard -0x1da0d,CUS_0x72c1,Standard -0x1da19,CUS_0x27d5,Standard -0x1da25,CUS_0xc3ae,Low -0x1da31,CUS_0x416a,High -0x1da3d,CUS_0x8ddb,High -0x1da49,CUS_0x693b,Standard -0x1da55,CUS_0x9a51,Standard -0x1da61,CUS_0x2238,Low -0x1da6d,CUS_0xb006,Standard -0x1da79,CUS_0xc5a4,High -0x1da85,CUS_0x2714,High -0x1da91,CUS_0x84b8,High -0x1da9d,CUS_0x3ec8,Standard -0x1daa9,CUS_0xb091,High -0x1dab5,CUS_0x6428,Standard -0x1dac1,CUS_0x5ff9,Standard -0x1dacd,CUS_0x9216,Standard -0x1dad9,CUS_0xb00e,Standard -0x1dae5,CUS_0x788a,High -0x1daf1,CUS_0x1f88,Standard -0x1dafd,CUS_0x5386,Standard -0x1db09,CUS_0x1b7e,Standard -0x1db15,CUS_0x2771,High -0x1db21,CUS_0x6da9,Standard -0x1db2d,CUS_0x6d4e,Standard -0x1db39,CUS_0xa897,High -0x1db45,CUS_0x5e70,Standard -0x1db51,CUS_0x9fbc,High -0x1db5d,CUS_0xc049,Low -0x1db69,CUS_0x32ac,Standard -0x1db75,CUS_0x219a,High -0x1db81,CUS_0x87db,Standard -0x1db8d,CUS_0x971f,Standard -0x1db99,CUS_0x316e,High -0x1dba5,CUS_0x3263,Standard -0x1dbb1,CUS_0x511f,Standard -0x1dbbd,CUS_0x60c0,Standard -0x1dbc9,CUS_0x143a,Standard -0x1dbd5,CUS_0x6ec8,Standard -0x1dbe1,CUS_0x8e8a,Standard -0x1dbed,CUS_0x6980,High -0x1dbf9,CUS_0xac18,Standard -0x1dc05,CUS_0x30f0,Low -0x1dc11,CUS_0x27a9,Standard -0x1dc1d,CUS_0x3f6b,High -0x1dc29,CUS_0xb460,High -0x1dc35,CUS_0x8c9e,Standard -0x1dc41,CUS_0x2d1c,Standard -0x1dc4d,CUS_0x2823,Standard -0x1dc59,CUS_0x5ac4,High -0x1dc65,CUS_0x85d,Standard -0x1dc71,CUS_0x4505,Standard -0x1dc7d,CUS_0x9c3a,Standard -0x1dc89,CUS_0xb6d2,High -0x1dc95,CUS_0x6257,High -0x1dca1,CUS_0xb380,High -0x1dcad,CUS_0xb59a,Standard -0x1dcb9,CUS_0x12ef,Standard -0x1dcc5,CUS_0x4d64,Low -0x1dcd1,CUS_0x45ca,Standard -0x1dcdd,CUS_0x3947,Standard -0x1dce9,CUS_0x748e,High -0x1dcf5,CUS_0x9381,High -0x1dd01,CUS_0x7225,Standard -0x1dd0d,CUS_0x793f,High -0x1dd19,CUS_0xb638,Low -0x1dd25,CUS_0x7c6a,Standard -0x1dd31,CUS_0x9f40,Standard -0x1dd3d,CUS_0x8b6c,Standard -0x1dd49,CUS_0x5872,High -0x1dd55,CUS_0x25c4,Low -0x1dd61,CUS_0x3066,Standard -0x1dd6d,CUS_0xa12,High -0x1dd79,CUS_0x1a8d,Standard -0x1dd85,CUS_0x9f77,Standard -0x1dd91,CUS_0xadf1,High -0x1dd9d,CUS_0x4ffd,Standard -0x1dda9,CUS_0x7e50,Low -0x1ddb5,CUS_0x2ea1,Standard -0x1ddc1,CUS_0x925c,Standard -0x1ddcd,CUS_0x5ec,High -0x1ddd9,CUS_0x6b89,High -0x1dde5,CUS_0x817c,High -0x1ddf1,CUS_0x1cd5,Standard -0x1ddfd,CUS_0x5396,Standard -0x1de09,CUS_0x81e4,High -0x1de15,CUS_0x2f97,Standard -0x1de21,CUS_0x9df8,Standard -0x1de2d,CUS_0x1673,Standard -0x1de39,CUS_0x72f3,Low -0x1de45,CUS_0x3f8b,High -0x1de51,CUS_0xc2f5,Low -0x1de5d,CUS_0xae15,Standard -0x1de69,CUS_0x2eff,High -0x1de75,CUS_0x251e,Low -0x1de81,CUS_0xa3ff,Standard -0x1de8d,CUS_0xa95a,High -0x1de99,CUS_0x7cac,High -0x1dea5,CUS_0x77de,Standard -0x1deb1,CUS_0x6714,Low -0x1debd,CUS_0x4b78,Standard -0x1dec9,CUS_0x62cf,Standard -0x1ded5,CUS_0x7cc4,Standard -0x1dee1,CUS_0x1026,Standard -0x1deed,CUS_0x2408,High -0x1def9,CUS_0x8936,High -0x1df05,CUS_0x786,Standard -0x1df11,CUS_0x81c7,High -0x1df1d,CUS_0x58d7,Standard -0x1df29,CUS_0xaca7,High -0x1df35,CUS_0x6a73,Standard -0x1df41,CUS_0x3912,Standard -0x1df4d,CUS_0x9200,High -0x1df59,CUS_0x441e,Standard -0x1df65,CUS_0x6e6a,High -0x1df71,CUS_0x7968,Low -0x1df7d,CUS_0x3cc3,Low -0x1df89,CUS_0x4f6c,High -0x1df95,CUS_0xa110,Standard -0x1dfa1,CUS_0x517c,Low -0x1dfad,CUS_0x2991,High -0x1dfb9,CUS_0xb0f6,Standard -0x1dfc5,CUS_0x59a2,Standard -0x1dfd1,CUS_0x4577,High -0x1dfdd,CUS_0x2267,Standard -0x1dfe9,CUS_0x8acd,Standard -0x1dff5,CUS_0x5a2d,High -0x1e001,CUS_0x850f,Standard -0x1e00d,CUS_0x44b8,Standard -0x1e019,CUS_0x24fc,High -0x1e025,CUS_0x1ba2,Standard -0x1e031,CUS_0x303b,High -0x1e03d,CUS_0x9ccf,Standard -0x1e049,CUS_0x1ba9,High -0x1e055,CUS_0xc5a3,Standard -0x1e061,CUS_0x2fd7,Standard -0x1e06d,CUS_0x9cd3,Standard -0x1e079,CUS_0x5158,Standard -0x1e085,CUS_0x165f,Standard -0x1e091,CUS_0x9819,Standard -0x1e09d,CUS_0x9a42,High -0x1e0a9,CUS_0x1156,Standard -0x1e0b5,CUS_0x956f,Standard -0x1e0c1,CUS_0x52d2,Standard -0x1e0cd,CUS_0xc044,Standard -0x1e0d9,CUS_0x2087,Low -0x1e0e5,CUS_0xa75c,High -0x1e0f1,CUS_0x68af,Standard -0x1e0fd,CUS_0x1f19,Standard -0x1e109,CUS_0x4fa3,Low -0x1e115,CUS_0x58b5,Standard -0x1e121,CUS_0x7fb3,High -0x1e12d,CUS_0x6336,High -0x1e139,CUS_0x60f9,High -0x1e145,CUS_0x7698,High -0x1e151,CUS_0x9c3b,High -0x1e15d,CUS_0xa47c,High -0x1e169,CUS_0x2a69,Low -0x1e175,CUS_0x99e9,Low -0x1e181,CUS_0xbd75,Standard -0x1e18d,CUS_0x4ee1,Standard -0x1e199,CUS_0x30fd,High -0x1e1a5,CUS_0x3352,Low -0x1e1b1,CUS_0xa422,Standard -0x1e1bd,CUS_0x142f,High -0x1e1c9,CUS_0x7e7c,Standard -0x1e1d5,CUS_0x2562,High -0x1e1e1,CUS_0xc34a,Standard -0x1e1ed,CUS_0xbeec,Standard -0x1e1f9,CUS_0x2e82,Standard -0x1e205,CUS_0x4e73,High -0x1e211,CUS_0x1f00,Standard -0x1e21d,CUS_0x6534,Standard -0x1e229,CUS_0xc6ba,High -0x1e235,CUS_0xc2cc,High -0x1e241,CUS_0xbfcb,Standard -0x1e24d,CUS_0xb515,High -0x1e259,CUS_0x1dd3,Standard -0x1e265,CUS_0x92aa,High -0x1e271,CUS_0x7e8a,Standard -0x1e27d,CUS_0x14cf,Standard -0x1e289,CUS_0xaff6,Standard -0x1e295,CUS_0xc03a,Standard -0x1e2a1,CUS_0x6960,Standard -0x1e2ad,CUS_0x688e,Standard -0x1e2b9,CUS_0xa736,Standard -0x1e2c5,CUS_0x13ce,Standard -0x1e2d1,CUS_0x8b8b,High -0x1e2dd,CUS_0x4866,Standard -0x1e2e9,CUS_0xb319,Standard -0x1e2f5,CUS_0x7ae4,Standard -0x1e301,CUS_0x264b,Low -0x1e30d,CUS_0xe51,Standard -0x1e319,CUS_0xb8a8,Standard -0x1e325,CUS_0x6fb4,Standard -0x1e331,CUS_0x9793,High -0x1e33d,CUS_0x4807,High -0x1e349,CUS_0xcea,Standard -0x1e355,CUS_0xb8f7,Low -0x1e361,CUS_0x6821,High -0x1e36d,CUS_0x7ab6,Low -0x1e379,CUS_0x4464,Standard -0x1e385,CUS_0xc2cb,Low -0x1e391,CUS_0xa8e2,Standard -0x1e39d,CUS_0xc2eb,Standard -0x1e3a9,CUS_0x81ce,High -0x1e3b5,CUS_0xf45,High -0x1e3c1,CUS_0x9ea,Standard -0x1e3cd,CUS_0x5161,Standard -0x1e3d9,CUS_0x78f0,Standard -0x1e3e5,CUS_0x44c0,High -0x1e3f1,CUS_0x6057,Standard -0x1e3fd,CUS_0x1463,Standard -0x1e409,CUS_0x4cc2,Standard -0x1e415,CUS_0x9771,High -0x1e421,CUS_0x8568,Standard -0x1e42d,CUS_0x20ff,High -0x1e439,CUS_0x255b,High -0x1e445,CUS_0x2a06,High -0x1e451,CUS_0x8065,High -0x1e45d,CUS_0x8216,High -0x1e469,CUS_0x1250,Standard -0x1e475,CUS_0xbb4e,High -0x1e481,CUS_0xb329,Low -0x1e48d,CUS_0xb0f3,Standard -0x1e499,CUS_0xce1,High -0x1e4a5,CUS_0x992c,Standard -0x1e4b1,CUS_0x67f9,High -0x1e4bd,CUS_0x614d,High -0x1e4c9,CUS_0x5b9d,Standard -0x1e4d5,CUS_0x8b5f,Low -0x1e4e1,CUS_0xb4ee,High -0x1e4ed,CUS_0x8bcc,Low -0x1e4f9,CUS_0x7a68,Standard -0x1e505,CUS_0x9998,High -0x1e511,CUS_0x1204,High -0x1e51d,CUS_0xa823,Standard -0x1e529,CUS_0xb1cc,Standard -0x1e535,CUS_0xf9f,High -0x1e541,CUS_0x8f2d,Standard -0x1e54d,CUS_0x8b44,High -0x1e559,CUS_0x542f,Standard -0x1e565,CUS_0xbc17,High -0x1e571,CUS_0x9365,High -0x1e57d,CUS_0x7efc,Standard -0x1e589,CUS_0x26da,Low -0x1e595,CUS_0x3e38,Standard -0x1e5a1,CUS_0x987b,High -0x1e5ad,CUS_0x5572,Standard -0x1e5b9,CUS_0x4e6a,Standard -0x1e5c5,CUS_0x3f68,Low -0x1e5d1,CUS_0x82c1,Standard -0x1e5dd,CUS_0x94e3,Standard -0x1e5e9,CUS_0x73b1,High -0x1e5f5,CUS_0x9d3e,High -0x1e601,CUS_0x4bda,Low -0x1e60d,CUS_0x74b2,Standard -0x1e619,CUS_0xbac3,Low -0x1e625,CUS_0xa7ae,Low -0x1e631,CUS_0x5f61,Standard -0x1e63d,CUS_0x14ec,High -0x1e649,CUS_0xb648,Standard -0x1e655,CUS_0x717d,High -0x1e661,CUS_0x25e0,Standard -0x1e66d,CUS_0x3f87,High -0x1e679,CUS_0x79cf,Standard -0x1e685,CUS_0x6f09,High -0x1e691,CUS_0x36fd,High -0x1e69d,CUS_0xc12e,Standard -0x1e6a9,CUS_0x51e9,Standard -0x1e6b5,CUS_0x97f8,Low -0x1e6c1,CUS_0x99b8,Standard -0x1e6cd,CUS_0x9ec2,Low -0x1e6d9,CUS_0x7925,Standard -0x1e6e5,CUS_0xadf5,Standard -0x1e6f1,CUS_0xad13,Standard -0x1e6fd,CUS_0x566d,High -0x1e709,CUS_0x6e2b,Standard -0x1e715,CUS_0xa6cb,High -0x1e721,CUS_0x2b2b,Standard -0x1e72d,CUS_0x3bd6,Standard -0x1e739,CUS_0x1941,High -0x1e745,CUS_0x8cfe,Standard -0x1e751,CUS_0xe16,Standard -0x1e75d,CUS_0xa261,Standard -0x1e769,CUS_0x9dd5,Standard -0x1e775,CUS_0x3716,Standard -0x1e781,CUS_0x5f59,Low -0x1e78d,CUS_0x9803,High -0x1e799,CUS_0x5342,High -0x1e7a5,CUS_0xc70b,Standard -0x1e7b1,CUS_0x9d4c,Standard -0x1e7bd,CUS_0x6df7,Standard -0x1e7c9,CUS_0x35f3,Standard -0x1e7d5,CUS_0x5269,High -0x1e7e1,CUS_0xbff1,Low -0x1e7ed,CUS_0x5d5c,High -0x1e7f9,CUS_0xbb1b,Standard -0x1e805,CUS_0xb76e,Standard -0x1e811,CUS_0x1f91,Standard -0x1e81d,CUS_0x13d5,Low -0x1e829,CUS_0xa46f,Standard -0x1e835,CUS_0xad12,High -0x1e841,CUS_0x4f32,Low -0x1e84d,CUS_0x65eb,Standard -0x1e859,CUS_0x3377,Standard -0x1e865,CUS_0x7594,Standard -0x1e871,CUS_0x1075,High -0x1e87d,CUS_0x9686,Standard -0x1e889,CUS_0x9066,Low -0x1e895,CUS_0x5d29,High -0x1e8a1,CUS_0xaa0b,Standard -0x1e8ad,CUS_0x6b76,Standard -0x1e8b9,CUS_0x80d,Standard -0x1e8c5,CUS_0xb6b7,Standard -0x1e8d1,CUS_0x847e,High -0x1e8dd,CUS_0x2311,Standard -0x1e8e9,CUS_0x6eca,High -0x1e8f5,CUS_0x2c51,Standard -0x1e901,CUS_0x1f61,High -0x1e90d,CUS_0x4e71,Low -0x1e919,CUS_0x4c4f,Standard -0x1e925,CUS_0x620b,Standard -0x1e931,CUS_0xc1d9,Standard -0x1e93d,CUS_0xdd8,Low -0x1e949,CUS_0xba68,High -0x1e955,CUS_0xa9f,Standard -0x1e961,CUS_0x4815,Standard -0x1e96d,CUS_0xc301,Low -0x1e979,CUS_0x5e16,Low -0x1e985,CUS_0x54a4,Standard -0x1e991,CUS_0x87c1,Standard -0x1e99d,CUS_0x9891,Low -0x1e9a9,CUS_0x1f04,Standard -0x1e9b5,CUS_0x6207,Low -0x1e9c1,CUS_0x199a,Low -0x1e9cd,CUS_0x95aa,Standard -0x1e9d9,CUS_0x950,Standard -0x1e9e5,CUS_0x1948,High -0x1e9f1,CUS_0x25a5,Low -0x1e9fd,CUS_0x41e3,Standard -0x1ea09,CUS_0x8099,Standard -0x1ea15,CUS_0x7580,High -0x1ea21,CUS_0x5035,Low -0x1ea2d,CUS_0x999f,Low -0x1ea39,CUS_0x9bf9,Low -0x1ea45,CUS_0x4931,High -0x1ea51,CUS_0xc205,Standard -0x1ea5d,CUS_0x790d,Low -0x1ea69,CUS_0x71bf,Standard -0x1ea75,CUS_0x866d,Standard -0x1ea81,CUS_0xb6d0,Standard -0x1ea8d,CUS_0x27ad,Standard -0x1ea99,CUS_0x7168,Standard -0x1eaa5,CUS_0xae4f,High -0x1eab1,CUS_0x900,Standard -0x1eabd,CUS_0x7753,Standard -0x1eac9,CUS_0x9df0,Low -0x1ead5,CUS_0x7d5e,Standard -0x1eae1,CUS_0x1d58,Standard -0x1eaed,CUS_0x7d4b,Standard -0x1eaf9,CUS_0x4032,High -0x1eb05,CUS_0x131f,High -0x1eb11,CUS_0x2671,Standard -0x1eb1d,CUS_0x5d09,Standard -0x1eb29,CUS_0x4cd8,Standard -0x1eb35,CUS_0xbd72,Standard -0x1eb41,CUS_0x5d1,Standard -0x1eb4d,CUS_0xa801,Standard -0x1eb59,CUS_0x39bf,High -0x1eb65,CUS_0x25cc,Low -0x1eb71,CUS_0x1057,Standard -0x1eb7d,CUS_0xbe00,Low -0x1eb89,CUS_0x542c,Standard -0x1eb95,CUS_0xa0ff,High -0x1eba1,CUS_0x92a3,Low -0x1ebad,CUS_0x6578,High -0x1ebb9,CUS_0x2ba9,Standard -0x1ebc5,CUS_0x9adc,Standard -0x1ebd1,CUS_0xc331,High -0x1ebdd,CUS_0x8716,High -0x1ebe9,CUS_0x6be3,Low -0x1ebf5,CUS_0x8bf3,Standard -0x1ec01,CUS_0x9368,Standard -0x1ec0d,CUS_0x9737,Standard -0x1ec19,CUS_0x149e,Standard -0x1ec25,CUS_0x8a8b,Standard -0x1ec31,CUS_0x2a5c,Low -0x1ec3d,CUS_0x9ff3,High -0x1ec49,CUS_0x2bcb,Standard -0x1ec55,CUS_0x79ee,Low -0x1ec61,CUS_0xef7,Standard -0x1ec6d,CUS_0xc599,Standard -0x1ec79,CUS_0x40dd,High -0x1ec85,CUS_0xc21e,Low -0x1ec91,CUS_0xa1d9,High -0x1ec9d,CUS_0xac1a,Standard -0x1eca9,CUS_0x7baa,Standard -0x1ecb5,CUS_0x38e1,Standard -0x1ecc1,CUS_0x5217,Low -0x1eccd,CUS_0x447f,High -0x1ecd9,CUS_0x386b,Standard -0x1ece5,CUS_0x8c11,Standard -0x1ecf1,CUS_0xac4f,Standard -0x1ecfd,CUS_0x59eb,High -0x1ed09,CUS_0x61ab,Standard -0x1ed15,CUS_0x77a2,Standard -0x1ed21,CUS_0x88cb,High -0x1ed2d,CUS_0x9b58,High -0x1ed39,CUS_0xa479,Standard -0x1ed45,CUS_0x4c75,Standard -0x1ed51,CUS_0x7900,High -0x1ed5d,CUS_0x535b,Low -0x1ed69,CUS_0xaf88,Standard -0x1ed75,CUS_0x4a93,Standard -0x1ed81,CUS_0x79a9,High -0x1ed8d,CUS_0xb959,Low -0x1ed99,CUS_0x71fa,High -0x1eda5,CUS_0x9435,Standard -0x1edb1,CUS_0xc5f6,Standard -0x1edbd,CUS_0x5597,Standard -0x1edc9,CUS_0xa729,High -0x1edd5,CUS_0x8af4,High -0x1ede1,CUS_0x3a38,Standard -0x1eded,CUS_0x7cf,High -0x1edf9,CUS_0x298f,Low -0x1ee05,CUS_0x85a0,Low -0x1ee11,CUS_0x5554,High -0x1ee1d,CUS_0x3a99,Low -0x1ee29,CUS_0x8f02,Standard -0x1ee35,CUS_0x5cc0,High -0x1ee41,CUS_0x869,Low -0x1ee4d,CUS_0xbd54,Standard -0x1ee59,CUS_0x305e,Low -0x1ee65,CUS_0x6e06,Standard -0x1ee71,CUS_0xc718,Standard -0x1ee7d,CUS_0xa8e1,Standard -0x1ee89,CUS_0xecc,High -0x1ee95,CUS_0x57ef,Low -0x1eea1,CUS_0xc636,Low -0x1eead,CUS_0x9e26,High -0x1eeb9,CUS_0xc0d7,High -0x1eec5,CUS_0x8380,High -0x1eed1,CUS_0x6df3,Standard -0x1eedd,CUS_0x7694,High -0x1eee9,CUS_0x8b4f,Low -0x1eef5,CUS_0x64e5,Standard -0x1ef01,CUS_0xc319,High -0x1ef0d,CUS_0x7879,Low -0x1ef19,CUS_0x8bb3,Standard -0x1ef25,CUS_0x5a0f,Standard -0x1ef31,CUS_0x34d6,Low -0x1ef3d,CUS_0x41e7,Standard -0x1ef49,CUS_0xbb93,Low -0x1ef55,CUS_0x4a9c,Low -0x1ef61,CUS_0x81bb,Standard -0x1ef6d,CUS_0x396d,Standard -0x1ef79,CUS_0x8cc1,High -0x1ef85,CUS_0xb2a4,Low -0x1ef91,CUS_0x8442,Standard -0x1ef9d,CUS_0x7233,Standard -0x1efa9,CUS_0xc065,Low -0x1efb5,CUS_0x5909,Standard -0x1efc1,CUS_0x48ab,Low -0x1efcd,CUS_0x1dd4,Standard -0x1efd9,CUS_0x26ea,Standard -0x1efe5,CUS_0x612e,Standard -0x1eff1,CUS_0x4462,High -0x1effd,CUS_0x354b,Standard -0x1f009,CUS_0x527c,Low -0x1f015,CUS_0xab80,Low -0x1f021,CUS_0x1ed8,High -0x1f02d,CUS_0xaba3,Standard -0x1f039,CUS_0x7741,High -0x1f045,CUS_0x77b5,Standard -0x1f051,CUS_0xb031,Standard -0x1f05d,CUS_0xa04c,High -0x1f069,CUS_0x6a0b,High -0x1f075,CUS_0x7bb3,Standard -0x1f081,CUS_0x324b,High -0x1f08d,CUS_0x9237,Low -0x1f099,CUS_0x29e1,High -0x1f0a5,CUS_0x8fa,Standard -0x1f0b1,CUS_0xc6cc,High -0x1f0bd,CUS_0x9f8e,High -0x1f0c9,CUS_0xb5af,Low -0x1f0d5,CUS_0x302d,High -0x1f0e1,CUS_0x1d13,Standard -0x1f0ed,CUS_0x3b06,Low -0x1f0f9,CUS_0x9d38,Standard -0x1f105,CUS_0x63d4,Standard -0x1f111,CUS_0xa910,Standard -0x1f11d,CUS_0x7ba0,Low -0x1f129,CUS_0x8536,Low -0x1f135,CUS_0xfe3,Standard -0x1f141,CUS_0xb75b,High -0x1f14d,CUS_0xadcd,High -0x1f159,CUS_0x7767,High -0x1f165,CUS_0x990,High -0x1f171,CUS_0x5cc5,Standard -0x1f17d,CUS_0x9522,Standard -0x1f189,CUS_0xc18b,Standard -0x1f195,CUS_0x1f4b,Standard -0x1f1a1,CUS_0x72bc,Standard -0x1f1ad,CUS_0x4e5c,Low -0x1f1b9,CUS_0xb38a,Low -0x1f1c5,CUS_0xc662,Standard -0x1f1d1,CUS_0x915a,Standard -0x1f1dd,CUS_0x804b,Low -0x1f1e9,CUS_0x2bba,Standard -0x1f1f5,CUS_0x795b,Standard -0x1f201,CUS_0x790a,Standard -0x1f20d,CUS_0x2579,Standard -0x1f219,CUS_0x86fa,Standard -0x1f225,CUS_0x88f4,Standard -0x1f231,CUS_0xb685,High -0x1f23d,CUS_0xbca3,Standard -0x1f249,CUS_0x691a,Standard -0x1f255,CUS_0x87f9,High -0x1f261,CUS_0xbed,Low -0x1f26d,CUS_0x36ad,High -0x1f279,CUS_0xaf0a,Standard -0x1f285,CUS_0x83d7,Low -0x1f291,CUS_0x320d,Standard -0x1f29d,CUS_0x9e18,Standard -0x1f2a9,CUS_0x4029,High -0x1f2b5,CUS_0x99a,High -0x1f2c1,CUS_0x90f8,Low -0x1f2cd,CUS_0xa5d1,Standard -0x1f2d9,CUS_0x2390,Standard -0x1f2e5,CUS_0x4bc0,Standard -0x1f2f1,CUS_0x21ac,Standard -0x1f2fd,CUS_0x2d14,Standard -0x1f309,CUS_0x29bf,Standard -0x1f315,CUS_0xb0c4,High -0x1f321,CUS_0x7dd,Standard -0x1f32d,CUS_0x8752,Standard -0x1f339,CUS_0x5563,Standard -0x1f345,CUS_0x3340,High -0x1f351,CUS_0x6630,Standard -0x1f35d,CUS_0x172d,High -0x1f369,CUS_0x843e,Low -0x1f375,CUS_0x228c,Standard -0x1f381,CUS_0x6a9a,High -0x1f38d,CUS_0x415,Standard -0x1f399,CUS_0x6cfa,Standard -0x1f3a5,CUS_0xba92,Standard -0x1f3b1,CUS_0x90ef,Low -0x1f3bd,CUS_0x6736,Low -0x1f3c9,CUS_0x84c9,Standard -0x1f3d5,CUS_0x6a11,Standard -0x1f3e1,CUS_0xbcc8,Standard -0x1f3ed,CUS_0x17e8,Low -0x1f3f9,CUS_0x1ec9,High -0x1f405,CUS_0x5721,Standard -0x1f411,CUS_0xacf7,Low -0x1f41d,CUS_0xa5ee,Low -0x1f429,CUS_0x5a83,Low -0x1f435,CUS_0x2443,High -0x1f441,CUS_0xbb6c,High -0x1f44d,CUS_0x9a2c,High -0x1f459,CUS_0xab65,Standard -0x1f465,CUS_0x716,Standard -0x1f471,CUS_0x708f,High -0x1f47d,CUS_0x97d1,High -0x1f489,CUS_0x859a,Low -0x1f495,CUS_0x9a18,Low -0x1f4a1,CUS_0x9730,High -0x1f4ad,CUS_0x30df,Low -0x1f4b9,CUS_0xb024,Standard -0x1f4c5,CUS_0xbe5c,High -0x1f4d1,CUS_0x9c49,Standard -0x1f4dd,CUS_0xb675,Standard -0x1f4e9,CUS_0xb2a1,Standard -0x1f4f5,CUS_0x61a7,High -0x1f501,CUS_0xb745,Low -0x1f50d,CUS_0x1d64,Standard -0x1f519,CUS_0x803c,Standard -0x1f525,CUS_0x3ce7,High -0x1f531,CUS_0x6951,Standard -0x1f53d,CUS_0xc4f,Standard -0x1f549,CUS_0x8a36,High -0x1f555,CUS_0x54b,High -0x1f561,CUS_0x2038,Low -0x1f56d,CUS_0x58ef,Standard -0x1f579,CUS_0xbebc,Standard -0x1f585,CUS_0xaf6f,Standard -0x1f591,CUS_0x8916,Standard -0x1f59d,CUS_0x6159,Standard -0x1f5a9,CUS_0xbe0a,Low -0x1f5b5,CUS_0xafeb,Standard -0x1f5c1,CUS_0x958f,Standard -0x1f5cd,CUS_0x5dd0,Low -0x1f5d9,CUS_0x24e8,High -0x1f5e5,CUS_0x6081,Low -0x1f5f1,CUS_0x556e,Standard -0x1f5fd,CUS_0x6eee,Low -0x1f609,CUS_0xa791,Low -0x1f615,CUS_0xd78,Low -0x1f621,CUS_0x2b58,Standard -0x1f62d,CUS_0x4829,Low -0x1f639,CUS_0xbb82,Standard -0x1f645,CUS_0xb517,Low -0x1f651,CUS_0x929a,Low -0x1f65d,CUS_0x8e30,Standard -0x1f669,CUS_0x7cdc,Low -0x1f675,CUS_0xb982,Low -0x1f681,CUS_0x7080,Standard -0x1f68d,CUS_0x744f,Standard -0x1f699,CUS_0x7899,High -0x1f6a5,CUS_0x99d4,High -0x1f6b1,CUS_0xb1cd,Standard -0x1f6bd,CUS_0x4a05,Standard -0x1f6c9,CUS_0x893f,Standard -0x1f6d5,CUS_0x9428,High -0x1f6e1,CUS_0x1018,High -0x1f6ed,CUS_0x29d5,Low -0x1f6f9,CUS_0x2208,Standard -0x1f705,CUS_0x69a8,Standard -0x1f711,CUS_0x8e94,Low -0x1f71d,CUS_0x824c,Standard -0x1f729,CUS_0xadc4,Standard -0x1f735,CUS_0x3060,Standard -0x1f741,CUS_0xb915,High -0x1f74d,CUS_0x8d2e,Standard -0x1f759,CUS_0x22ac,Standard -0x1f765,CUS_0x39a0,High -0x1f771,CUS_0x5ebc,Standard -0x1f77d,CUS_0x2aed,Standard -0x1f789,CUS_0xc063,Standard -0x1f795,CUS_0x5e6a,Low -0x1f7a1,CUS_0x9f20,Low -0x1f7ad,CUS_0x922,Standard -0x1f7b9,CUS_0x9937,High -0x1f7c5,CUS_0x5929,Standard -0x1f7d1,CUS_0xb518,High -0x1f7dd,CUS_0xbc0c,Standard -0x1f7e9,CUS_0x446c,High -0x1f7f5,CUS_0xaa81,Low -0x1f801,CUS_0x7411,Standard -0x1f80d,CUS_0x7b9d,High -0x1f819,CUS_0x50fe,Standard -0x1f825,CUS_0xa009,Standard -0x1f831,CUS_0x9680,Standard -0x1f83d,CUS_0xc491,High -0x1f849,CUS_0xb646,High -0x1f855,CUS_0x4bf4,Low -0x1f861,CUS_0xa4fd,Standard -0x1f86d,CUS_0x997,Standard -0x1f879,CUS_0xbe70,High -0x1f885,CUS_0x91ca,Standard -0x1f891,CUS_0xb32a,High -0x1f89d,CUS_0x41c9,Low -0x1f8a9,CUS_0x6993,Standard -0x1f8b5,CUS_0x9230,Standard -0x1f8c1,CUS_0x93e,Low -0x1f8cd,CUS_0xc56c,Standard -0x1f8d9,CUS_0x70a0,High -0x1f8e5,CUS_0x119e,Standard -0x1f8f1,CUS_0x7b52,High -0x1f8fd,CUS_0x85bb,Standard -0x1f909,CUS_0x3091,Standard -0x1f915,CUS_0x5e99,Standard -0x1f921,CUS_0x74d2,High -0x1f92d,CUS_0x74a6,Standard -0x1f939,CUS_0x2a79,Standard -0x1f945,CUS_0xb6e3,Standard -0x1f951,CUS_0x4696,Standard -0x1f95d,CUS_0x6ad0,High -0x1f969,CUS_0x747a,Standard -0x1f975,CUS_0x5376,Standard -0x1f981,CUS_0x351d,High -0x1f98d,CUS_0x12cc,High -0x1f999,CUS_0x9664,High -0x1f9a5,CUS_0x8e89,Low -0x1f9b1,CUS_0xafa8,Standard -0x1f9bd,CUS_0x2665,Standard -0x1f9c9,CUS_0x84d,Standard -0x1f9d5,CUS_0x5f2f,Standard -0x1f9e1,CUS_0x64c9,Low -0x1f9ed,CUS_0x18ca,Standard -0x1f9f9,CUS_0x705d,Low -0x1fa05,CUS_0x80fd,High -0x1fa11,CUS_0x752b,Standard -0x1fa1d,CUS_0x8c2c,Low -0x1fa29,CUS_0x3439,Low -0x1fa35,CUS_0x8fb8,High -0x1fa41,CUS_0x9e56,Low -0x1fa4d,CUS_0x3595,Low -0x1fa59,CUS_0x4630,Standard -0x1fa65,CUS_0x1bf1,Standard -0x1fa71,CUS_0xacab,Standard -0x1fa7d,CUS_0x86ab,Standard -0x1fa89,CUS_0xa509,Standard -0x1fa95,CUS_0x6acd,High -0x1faa1,CUS_0x687f,High -0x1faad,CUS_0x640a,High -0x1fab9,CUS_0xc140,Standard -0x1fac5,CUS_0x2ce6,Standard -0x1fad1,CUS_0x5984,High -0x1fadd,CUS_0x3e09,High -0x1fae9,CUS_0x3f62,High -0x1faf5,CUS_0x7fe2,Standard -0x1fb01,CUS_0x7f2c,Standard -0x1fb0d,CUS_0x9cb8,Standard -0x1fb19,CUS_0x20bf,Low -0x1fb25,CUS_0x6bad,Standard -0x1fb31,CUS_0xa414,Low -0x1fb3d,CUS_0x4bdc,Low -0x1fb49,CUS_0x15c4,Low -0x1fb55,CUS_0x471f,High -0x1fb61,CUS_0xc288,Standard -0x1fb6d,CUS_0x4f34,High -0x1fb79,CUS_0x8327,Standard -0x1fb85,CUS_0x1c1f,High -0x1fb91,CUS_0x82a3,High -0x1fb9d,CUS_0x2ac8,Standard -0x1fba9,CUS_0xc07f,Standard -0x1fbb5,CUS_0x2e20,High -0x1fbc1,CUS_0xc51c,Standard -0x1fbcd,CUS_0x9fd0,Low -0x1fbd9,CUS_0x41bf,High -0x1fbe5,CUS_0x5bce,Low -0x1fbf1,CUS_0x3bbf,Standard -0x1fbfd,CUS_0x7651,High -0x1fc09,CUS_0x259d,Low -0x1fc15,CUS_0x3e10,High -0x1fc21,CUS_0x43a6,Low -0x1fc2d,CUS_0x112e,Standard -0x1fc39,CUS_0x867f,High -0x1fc45,CUS_0x91ed,Standard -0x1fc51,CUS_0x6a8f,Low -0x1fc5d,CUS_0x6735,Standard -0x1fc69,CUS_0x73d,Standard -0x1fc75,CUS_0x6cc3,High -0x1fc81,CUS_0x5cde,Standard -0x1fc8d,CUS_0xa30f,High -0x1fc99,CUS_0xaa0c,Low -0x1fca5,CUS_0xa3d5,High -0x1fcb1,CUS_0x6400,Standard -0x1fcbd,CUS_0x5abc,Standard -0x1fcc9,CUS_0x4132,High -0x1fcd5,CUS_0x5240,High -0x1fce1,CUS_0x658f,Standard -0x1fced,CUS_0x200a,Standard -0x1fcf9,CUS_0xd61,Standard -0x1fd05,CUS_0xaa8e,High -0x1fd11,CUS_0x2eb0,Standard -0x1fd1d,CUS_0xb8e,High -0x1fd29,CUS_0xb62c,Standard -0x1fd35,CUS_0x9dc6,Standard -0x1fd41,CUS_0x1d79,Low -0x1fd4d,CUS_0x8188,Standard -0x1fd59,CUS_0xfbd,High -0x1fd65,CUS_0xb73,High -0x1fd71,CUS_0x4916,Standard -0x1fd7d,CUS_0x1de3,High -0x1fd89,CUS_0x8d3f,Standard -0x1fd95,CUS_0x3811,Standard -0x1fda1,CUS_0x26a1,Standard -0x1fdad,CUS_0x15ec,Low -0x1fdb9,CUS_0x6322,Standard -0x1fdc5,CUS_0x14d0,Standard -0x1fdd1,CUS_0x2f7e,High -0x1fddd,CUS_0x13fb,Standard -0x1fde9,CUS_0x9e9b,Standard -0x1fdf5,CUS_0x374c,High -0x1fe01,CUS_0x7a4a,Standard -0x1fe0d,CUS_0x5b64,Standard -0x1fe19,CUS_0x2a47,Standard -0x1fe25,CUS_0xd97,Standard -0x1fe31,CUS_0x3cfc,High -0x1fe3d,CUS_0x56a5,Standard -0x1fe49,CUS_0xae89,Standard -0x1fe55,CUS_0x436d,Standard -0x1fe61,CUS_0xb5a,Standard -0x1fe6d,CUS_0x75f,Standard -0x1fe79,CUS_0xcf8,High -0x1fe85,CUS_0x4b5d,Low -0x1fe91,CUS_0x1a85,High -0x1fe9d,CUS_0x8533,Standard -0x1fea9,CUS_0x97ec,High -0x1feb5,CUS_0xaaff,Standard -0x1fec1,CUS_0xfdf,Standard -0x1fecd,CUS_0x2306,Standard -0x1fed9,CUS_0x4cf6,Low -0x1fee5,CUS_0x30de,Standard -0x1fef1,CUS_0x864c,Low -0x1fefd,CUS_0x2526,Standard -0x1ff09,CUS_0xaff2,Standard -0x1ff15,CUS_0x8f3f,High -0x1ff21,CUS_0xaef2,High -0x1ff2d,CUS_0x9515,High -0x1ff39,CUS_0x9d10,Low -0x1ff45,CUS_0xa439,Standard -0x1ff51,CUS_0x5edc,Standard -0x1ff5d,CUS_0x9b3f,High -0x1ff69,CUS_0x4e42,Low -0x1ff75,CUS_0xb426,High -0x1ff81,CUS_0x970b,Standard -0x1ff8d,CUS_0x2dc0,High -0x1ff99,CUS_0x3f35,Standard -0x1ffa5,CUS_0x86ed,Standard -0x1ffb1,CUS_0x4187,High -0x1ffbd,CUS_0xc1b3,Standard -0x1ffc9,CUS_0x8802,Standard -0x1ffd5,CUS_0xae6c,Standard -0x1ffe1,CUS_0x4b12,Standard -0x1ffed,CUS_0x36d4,Low -0x1fff9,CUS_0xc11f,Standard -0x20005,CUS_0x649e,Standard -0x20011,CUS_0x80dd,Standard -0x2001d,CUS_0x8c6f,Standard -0x20029,CUS_0xacfc,Standard -0x20035,CUS_0x20d0,High -0x20041,CUS_0x144c,Low -0x2004d,CUS_0x3fc2,Standard -0x20059,CUS_0xa39,Standard -0x20065,CUS_0x86e7,High -0x20071,CUS_0x5eda,Low -0x2007d,CUS_0xae96,Standard -0x20089,CUS_0x7dea,Standard -0x20095,CUS_0x9a3d,Low -0x200a1,CUS_0x1ccf,High -0x200ad,CUS_0x81e9,Standard -0x200b9,CUS_0x1a16,Standard -0x200c5,CUS_0x5c66,Low -0x200d1,CUS_0x7f40,Low -0x200dd,CUS_0x331a,High -0x200e9,CUS_0xb5c0,Standard -0x200f5,CUS_0xb4c9,Standard -0x20101,CUS_0x2a85,High -0x2010d,CUS_0x9070,Standard -0x20119,CUS_0x5b9c,Low -0x20125,CUS_0x6611,Standard -0x20131,CUS_0xb367,Standard -0x2013d,CUS_0x5c09,Standard -0x20149,CUS_0x39d4,High -0x20155,CUS_0x8141,High -0x20161,CUS_0xa4ac,Low -0x2016d,CUS_0x657f,Standard -0x20179,CUS_0x5d0b,High -0x20185,CUS_0x3489,Standard -0x20191,CUS_0x432a,Standard -0x2019d,CUS_0x4ad7,High -0x201a9,CUS_0x45c0,Low -0x201b5,CUS_0x4b91,High -0x201c1,CUS_0x460d,Low -0x201cd,CUS_0x86a7,Standard -0x201d9,CUS_0x4d12,Low -0x201e5,CUS_0x43d,Standard -0x201f1,CUS_0x6620,High -0x201fd,CUS_0x4d94,High -0x20209,CUS_0x6cdd,Low -0x20215,CUS_0xb5a8,High -0x20221,CUS_0xaea7,High -0x2022d,CUS_0xb8a7,Standard -0x20239,CUS_0xb38f,Low -0x20245,CUS_0xac7d,Standard -0x20251,CUS_0xbf38,Low -0x2025d,CUS_0x9d36,Standard -0x20269,CUS_0x344e,Standard -0x20275,CUS_0x70dc,High -0x20281,CUS_0x2a25,Standard -0x2028d,CUS_0x6f1b,Standard -0x20299,CUS_0x86dd,High -0x202a5,CUS_0x6975,High -0x202b1,CUS_0x828f,High -0x202bd,CUS_0x4d01,High -0x202c9,CUS_0x4d7a,High -0x202d5,CUS_0x3fcd,Standard -0x202e1,CUS_0x7b8c,Standard -0x202ed,CUS_0x3fc3,Standard -0x202f9,CUS_0xa78f,Standard -0x20305,CUS_0x305c,Standard -0x20311,CUS_0x21c8,Standard -0x2031d,CUS_0x7c71,Low -0x20329,CUS_0xa40e,Standard -0x20335,CUS_0x5654,High -0x20341,CUS_0x6f4a,Standard -0x2034d,CUS_0x58a3,Standard -0x20359,CUS_0x6728,Standard -0x20365,CUS_0x9d60,High -0x20371,CUS_0x2717,High -0x2037d,CUS_0xee1,High -0x20389,CUS_0x4e3b,High -0x20395,CUS_0x56bb,High -0x203a1,CUS_0x1def,Standard -0x203ad,CUS_0x29a3,Standard -0x203b9,CUS_0x7e5b,Standard -0x203c5,CUS_0x1edc,Standard -0x203d1,CUS_0x5082,Standard -0x203dd,CUS_0x2516,Low -0x203e9,CUS_0x46d2,High -0x203f5,CUS_0x2c48,Standard -0x20401,CUS_0xb2a9,High -0x2040d,CUS_0xa488,Standard -0x20419,CUS_0x36e1,Standard -0x20425,CUS_0x3d63,Standard -0x20431,CUS_0x91c8,Standard -0x2043d,CUS_0x7351,Standard -0x20449,CUS_0x7e6f,Standard -0x20455,CUS_0x3abe,Standard -0x20461,CUS_0x2da9,Standard -0x2046d,CUS_0x717a,Low -0x20479,CUS_0x9e31,Standard -0x20485,CUS_0x85f4,Standard -0x20491,CUS_0x1098,Standard -0x2049d,CUS_0x93ba,Standard -0x204a9,CUS_0x42e4,High -0x204b5,CUS_0xb4b3,Standard -0x204c1,CUS_0xac33,Standard -0x204cd,CUS_0xb96c,Standard -0x204d9,CUS_0x65a0,High -0x204e5,CUS_0x1c59,Low -0x204f1,CUS_0x80b8,High -0x204fd,CUS_0x7dd8,High -0x20509,CUS_0xbb0c,Standard -0x20515,CUS_0x9442,Standard -0x20521,CUS_0x7483,Low -0x2052d,CUS_0x9bb3,Standard -0x20539,CUS_0xaff7,Low -0x20545,CUS_0x9893,Standard -0x20551,CUS_0x4e95,Standard -0x2055d,CUS_0x3e67,Standard -0x20569,CUS_0x758e,Standard -0x20575,CUS_0x471c,Standard -0x20581,CUS_0x856b,Standard -0x2058d,CUS_0x2c04,Standard -0x20599,CUS_0x288b,Low -0x205a5,CUS_0x3ad4,Low -0x205b1,CUS_0x9fdc,Low -0x205bd,CUS_0x4182,Standard -0x205c9,CUS_0x83ea,Standard -0x205d5,CUS_0xb614,Standard -0x205e1,CUS_0x4ee6,High -0x205ed,CUS_0x9d0a,Standard -0x205f9,CUS_0x28ef,High -0x20605,CUS_0x5f7e,Standard -0x20611,CUS_0x89bd,High -0x2061d,CUS_0xa781,Standard -0x20629,CUS_0x2413,Standard -0x20635,CUS_0x4f15,Standard -0x20641,CUS_0x7cae,Standard -0x2064d,CUS_0x4c6b,Standard -0x20659,CUS_0xa014,Low -0x20665,CUS_0x12e7,High -0x20671,CUS_0x8a73,Low -0x2067d,CUS_0x4e5e,Standard -0x20689,CUS_0x1443,Standard -0x20695,CUS_0x658e,High -0x206a1,CUS_0xb627,Standard -0x206ad,CUS_0x5f9,High -0x206b9,CUS_0x6549,Low -0x206c5,CUS_0x7a21,High -0x206d1,CUS_0xb424,Standard -0x206dd,CUS_0x3bfd,Standard -0x206e9,CUS_0x1447,Standard -0x206f5,CUS_0xa579,Standard -0x20701,CUS_0x2d03,Low -0x2070d,CUS_0x5148,Standard -0x20719,CUS_0x83bd,High -0x20725,CUS_0x533c,Standard -0x20731,CUS_0xa5ba,High -0x2073d,CUS_0x18fa,Low -0x20749,CUS_0x9c71,Standard -0x20755,CUS_0x9f3,Low -0x20761,CUS_0xa4db,High -0x2076d,CUS_0x6bf5,Low -0x20779,CUS_0x7202,High -0x20785,CUS_0x1c71,High -0x20791,CUS_0xac83,High -0x2079d,CUS_0x9509,High -0x207a9,CUS_0x707d,Standard -0x207b5,CUS_0x1abe,High -0x207c1,CUS_0x21a1,High -0x207cd,CUS_0x1cd7,Standard -0x207d9,CUS_0x530b,Standard -0x207e5,CUS_0x282b,Standard -0x207f1,CUS_0x4f49,Standard -0x207fd,CUS_0xa4e9,Standard -0x20809,CUS_0x5287,Standard -0x20815,CUS_0x4969,Standard -0x20821,CUS_0xc33e,Standard -0x2082d,CUS_0x9d3d,High -0x20839,CUS_0x9b0e,Low -0x20845,CUS_0xc4e,Standard -0x20851,CUS_0x4280,Standard -0x2085d,CUS_0x3c97,Standard -0x20869,CUS_0xabd5,High -0x20875,CUS_0x9b46,Standard -0x20881,CUS_0x5bf0,Standard -0x2088d,CUS_0x6752,High -0x20899,CUS_0xa7c7,Standard -0x208a5,CUS_0x2eb1,Standard -0x208b1,CUS_0x46dc,Low -0x208bd,CUS_0x5b60,Standard -0x208c9,CUS_0xb079,High -0x208d5,CUS_0x4a3c,Standard -0x208e1,CUS_0x4dfe,Low -0x208ed,CUS_0x2a66,Standard -0x208f9,CUS_0x9150,Low -0x20905,CUS_0xa5e7,Standard -0x20911,CUS_0x86b8,Standard -0x2091d,CUS_0x2da4,Standard -0x20929,CUS_0x8ea5,Low -0x20935,CUS_0x4c2b,High -0x20941,CUS_0x79c0,High -0x2094d,CUS_0xbc4c,Low -0x20959,CUS_0xb575,High -0x20965,CUS_0x24b9,High -0x20971,CUS_0x7bb,Low -0x2097d,CUS_0x284f,Standard -0x20989,CUS_0x5bb8,Low -0x20995,CUS_0x6e38,High -0x209a1,CUS_0x7d25,High -0x209ad,CUS_0x1eae,Standard -0x209b9,CUS_0x7d87,Standard -0x209c5,CUS_0xc465,Standard -0x209d1,CUS_0x8807,High -0x209dd,CUS_0x2e0c,Standard -0x209e9,CUS_0x3aa9,High -0x209f5,CUS_0x2126,Standard -0x20a01,CUS_0xb607,Standard -0x20a0d,CUS_0x3aeb,Standard -0x20a19,CUS_0x692c,Low -0x20a25,CUS_0x65d6,Standard -0x20a31,CUS_0x7480,Standard -0x20a3d,CUS_0x978b,Standard -0x20a49,CUS_0x1f70,Low -0x20a55,CUS_0x141d,Standard -0x20a61,CUS_0xfc9,High -0x20a6d,CUS_0x5ee1,Standard -0x20a79,CUS_0x2f29,Standard -0x20a85,CUS_0x4cb4,Low -0x20a91,CUS_0xc1a6,Standard -0x20a9d,CUS_0xb66e,Standard -0x20aa9,CUS_0xae98,Standard -0x20ab5,CUS_0xb5bb,High -0x20ac1,CUS_0x77f8,Low -0x20acd,CUS_0x20fe,Standard -0x20ad9,CUS_0xbc7f,Low -0x20ae5,CUS_0x396c,Standard -0x20af1,CUS_0x9769,Standard -0x20afd,CUS_0x1628,High -0x20b09,CUS_0xab2f,Standard -0x20b15,CUS_0x5d95,High -0x20b21,CUS_0x4822,High -0x20b2d,CUS_0xbc3a,High -0x20b39,CUS_0xbdb4,High -0x20b45,CUS_0x1123,Standard -0x20b51,CUS_0x5bba,High -0x20b5d,CUS_0xa7ce,Standard -0x20b69,CUS_0x4f2e,Standard -0x20b75,CUS_0x365f,Standard -0x20b81,CUS_0x75e8,Low -0x20b8d,CUS_0xbf6e,Low -0x20b99,CUS_0x510b,Standard -0x20ba5,CUS_0x1848,Standard -0x20bb1,CUS_0x67c4,Standard -0x20bbd,CUS_0x8816,Standard -0x20bc9,CUS_0x4943,Standard -0x20bd5,CUS_0x542d,High -0x20be1,CUS_0x8d7b,Standard -0x20bed,CUS_0x4482,Standard -0x20bf9,CUS_0x5b61,Standard -0x20c05,CUS_0xb037,Standard -0x20c11,CUS_0x3b2a,Standard -0x20c1d,CUS_0xbcf7,High -0x20c29,CUS_0xf64,Standard -0x20c35,CUS_0x7459,Low -0x20c41,CUS_0x7e84,Standard -0x20c4d,CUS_0x7d04,Standard -0x20c59,CUS_0x77fc,Standard -0x20c65,CUS_0x2c7f,Standard -0x20c71,CUS_0x4a8a,Low -0x20c7d,CUS_0x719,Low -0x20c89,CUS_0x1dc4,High -0x20c95,CUS_0x1326,High -0x20ca1,CUS_0x1773,Low -0x20cad,CUS_0xb40d,Standard -0x20cb9,CUS_0x1add,Standard -0x20cc5,CUS_0x8985,High -0x20cd1,CUS_0xa6d1,Standard -0x20cdd,CUS_0xeb9,High -0x20ce9,CUS_0x3b81,Low -0x20cf5,CUS_0x1d70,High -0x20d01,CUS_0xb24c,High -0x20d0d,CUS_0x57ea,Low -0x20d19,CUS_0x6a61,Low -0x20d25,CUS_0x881e,High -0x20d31,CUS_0xc362,High -0x20d3d,CUS_0x1e45,High -0x20d49,CUS_0x3e4b,Low -0x20d55,CUS_0x3582,Standard -0x20d61,CUS_0x2488,Standard -0x20d6d,CUS_0x972f,Standard -0x20d79,CUS_0x77c,Standard -0x20d85,CUS_0x9ce8,High -0x20d91,CUS_0x3ccd,Standard -0x20d9d,CUS_0x8df0,High -0x20da9,CUS_0x81c5,Standard -0x20db5,CUS_0x318c,Standard -0x20dc1,CUS_0xbd1e,Standard -0x20dcd,CUS_0x2913,Standard -0x20dd9,CUS_0xae01,Standard -0x20de5,CUS_0xb6ef,Standard -0x20df1,CUS_0xa4e2,Standard -0x20dfd,CUS_0xac19,Standard -0x20e09,CUS_0xbc71,High -0x20e15,CUS_0x4681,Low -0x20e21,CUS_0x5ba4,Standard -0x20e2d,CUS_0x7cce,Standard -0x20e39,CUS_0x33eb,Standard -0x20e45,CUS_0x783b,Standard -0x20e51,CUS_0x85da,High -0x20e5d,CUS_0x7a56,High -0x20e69,CUS_0xa772,Standard -0x20e75,CUS_0x2596,Standard -0x20e81,CUS_0x56f5,Standard -0x20e8d,CUS_0x61f7,Standard -0x20e99,CUS_0x3141,Standard -0x20ea5,CUS_0x1aa4,Standard -0x20eb1,CUS_0x3ce2,High -0x20ebd,CUS_0x1193,Standard -0x20ec9,CUS_0x3d7b,Low -0x20ed5,CUS_0x557,Standard -0x20ee1,CUS_0x319d,Standard -0x20eed,CUS_0x37b2,Low -0x20ef9,CUS_0x84c3,High -0x20f05,CUS_0x9c0d,Standard -0x20f11,CUS_0x4672,Standard -0x20f1d,CUS_0x3c7d,Low -0x20f29,CUS_0x3108,Low -0x20f35,CUS_0x34a8,Low -0x20f41,CUS_0xb4e2,High -0x20f4d,CUS_0x7081,Standard -0x20f59,CUS_0x8f37,Standard -0x20f65,CUS_0x5426,High -0x20f71,CUS_0x5b70,Low -0x20f7d,CUS_0xa848,Standard -0x20f89,CUS_0x28a6,High -0x20f95,CUS_0xfb8,Low -0x20fa1,CUS_0x85fa,High -0x20fad,CUS_0x2509,High -0x20fb9,CUS_0x4d66,Standard -0x20fc5,CUS_0xa1b1,Standard -0x20fd1,CUS_0x8ee1,Low -0x20fdd,CUS_0x2ad6,Standard -0x20fe9,CUS_0xa223,Standard -0x20ff5,CUS_0xaee8,High -0x21001,CUS_0x53cc,Standard -0x2100d,CUS_0x8c79,High -0x21019,CUS_0x75fd,Low -0x21025,CUS_0x8f19,High -0x21031,CUS_0x25ce,Low -0x2103d,CUS_0xb6a6,Standard -0x21049,CUS_0x3b21,Standard -0x21055,CUS_0x4242,Standard -0x21061,CUS_0x799e,Standard -0x2106d,CUS_0x1810,Low -0x21079,CUS_0x3bf5,Standard -0x21085,CUS_0x89b9,Standard -0x21091,CUS_0x526d,Standard -0x2109d,CUS_0x2ec6,Standard -0x210a9,CUS_0xa525,Low -0x210b5,CUS_0x2611,Standard -0x210c1,CUS_0xa352,High -0x210cd,CUS_0x1aeb,Low -0x210d9,CUS_0x8681,Standard -0x210e5,CUS_0x4f16,Standard -0x210f1,CUS_0x87b5,Standard -0x210fd,CUS_0x1999,Standard -0x21109,CUS_0x65b1,High -0x21115,CUS_0x878,Low -0x21121,CUS_0x107c,Standard -0x2112d,CUS_0x442f,High -0x21139,CUS_0x589a,Standard -0x21145,CUS_0xaf0d,Standard -0x21151,CUS_0x24d4,Low -0x2115d,CUS_0x4937,Standard -0x21169,CUS_0xe75,Low -0x21175,CUS_0x1852,High -0x21181,CUS_0x6bd,Standard -0x2118d,CUS_0xb2b6,High -0x21199,CUS_0x988c,Standard -0x211a5,CUS_0x9f8d,Standard -0x211b1,CUS_0x1136,High -0x211bd,CUS_0x5b25,Standard -0x211c9,CUS_0x2c98,Standard -0x211d5,CUS_0x1ed6,Low -0x211e1,CUS_0x9fd7,Standard -0x211ed,CUS_0xa85d,High -0x211f9,CUS_0x7547,High -0x21205,CUS_0x50dd,Standard -0x21211,CUS_0x771d,Standard -0x2121d,CUS_0x44cb,Standard -0x21229,CUS_0x8c27,High -0x21235,CUS_0x4057,Low -0x21241,CUS_0x7c2,Standard -0x2124d,CUS_0x45ef,Low -0x21259,CUS_0xad3d,Standard -0x21265,CUS_0xc1f,High -0x21271,CUS_0x8ca,Standard -0x2127d,CUS_0x2998,Standard -0x21289,CUS_0xb8b9,High -0x21295,CUS_0xa6b,Standard -0x212a1,CUS_0x8376,Standard -0x212ad,CUS_0x2a86,High -0x212b9,CUS_0x2bd2,High -0x212c5,CUS_0x3a4d,Standard -0x212d1,CUS_0x3276,Standard -0x212dd,CUS_0x88b8,Standard -0x212e9,CUS_0x1a59,Standard -0x212f5,CUS_0x4922,Low -0x21301,CUS_0x7eb6,High -0x2130d,CUS_0x3eab,Standard -0x21319,CUS_0x9ce2,Standard -0x21325,CUS_0x7cf0,High -0x21331,CUS_0x3660,Low -0x2133d,CUS_0x6a29,Standard -0x21349,CUS_0x13d1,High -0x21355,CUS_0x3ace,High -0x21361,CUS_0xa861,Standard -0x2136d,CUS_0x95f0,Standard -0x21379,CUS_0xa3f,High -0x21385,CUS_0x6692,Low -0x21391,CUS_0xa4d0,Low -0x2139d,CUS_0x3d6e,High -0x213a9,CUS_0x33f9,Standard -0x213b5,CUS_0x8a38,Standard -0x213c1,CUS_0xb49d,Standard -0x213cd,CUS_0x1993,Standard -0x213d9,CUS_0x2a3a,High -0x213e5,CUS_0x6cb9,Standard -0x213f1,CUS_0xc41,Standard -0x213fd,CUS_0x808,Standard -0x21409,CUS_0x9967,Low -0x21415,CUS_0xa212,Standard -0x21421,CUS_0x411a,Standard -0x2142d,CUS_0xc222,Standard -0x21439,CUS_0x995b,Standard -0x21445,CUS_0x6b7f,Low -0x21451,CUS_0x2c6f,Standard -0x2145d,CUS_0x4e05,Standard -0x21469,CUS_0x7faf,Standard -0x21475,CUS_0xabb4,Low -0x21481,CUS_0xba52,High -0x2148d,CUS_0x76c2,Standard -0x21499,CUS_0x400a,Low -0x214a5,CUS_0x2916,Standard -0x214b1,CUS_0xa219,Standard -0x214bd,CUS_0x929d,Standard -0x214c9,CUS_0x792d,Standard -0x214d5,CUS_0x9906,Standard -0x214e1,CUS_0x2e0e,Low -0x214ed,CUS_0xa1ab,Standard -0x214f9,CUS_0x448a,Standard -0x21505,CUS_0x3b66,Low -0x21511,CUS_0x9979,Standard -0x2151d,CUS_0x924e,Low -0x21529,CUS_0x9903,Standard -0x21535,CUS_0x9e8c,High -0x21541,CUS_0x537e,Standard -0x2154d,CUS_0x5e0e,Low -0x21559,CUS_0xbcfe,Standard -0x21565,CUS_0x87be,High -0x21571,CUS_0x4e94,Standard -0x2157d,CUS_0xbaea,Low -0x21589,CUS_0x3d22,High -0x21595,CUS_0x65df,Low -0x215a1,CUS_0x857f,Standard -0x215ad,CUS_0x412a,Standard -0x215b9,CUS_0x562a,High -0x215c5,CUS_0x14ce,Standard -0x215d1,CUS_0x7dfc,Low -0x215dd,CUS_0x406d,High -0x215e9,CUS_0x4f43,High -0x215f5,CUS_0x7874,High -0x21601,CUS_0x1063,Standard -0x2160d,CUS_0x632e,Low -0x21619,CUS_0x308d,Low -0x21625,CUS_0x2eed,High -0x21631,CUS_0x270e,High -0x2163d,CUS_0x6f81,Standard -0x21649,CUS_0x1efd,Standard -0x21655,CUS_0x3bba,High -0x21661,CUS_0xbc1f,Low -0x2166d,CUS_0xc5ae,Standard -0x21679,CUS_0x30ab,Standard -0x21685,CUS_0x3608,Standard -0x21691,CUS_0x3eb6,Standard -0x2169d,CUS_0xae17,Standard -0x216a9,CUS_0x2ded,Low -0x216b5,CUS_0x28c4,Standard -0x216c1,CUS_0xafc3,Standard -0x216cd,CUS_0x5510,Standard -0x216d9,CUS_0xc31a,Standard -0x216e5,CUS_0xacf,Low -0x216f1,CUS_0xa8c0,Standard -0x216fd,CUS_0x4c29,Standard -0x21709,CUS_0xa4a9,High -0x21715,CUS_0x6c83,Standard -0x21721,CUS_0x5704,Standard -0x2172d,CUS_0x6aa1,High -0x21739,CUS_0x50c9,Low -0x21745,CUS_0x1bde,Standard -0x21751,CUS_0x4662,Standard -0x2175d,CUS_0x20b2,Standard -0x21769,CUS_0xa9d9,High -0x21775,CUS_0x5da7,Standard -0x21781,CUS_0xa648,Standard -0x2178d,CUS_0x9bda,Low -0x21799,CUS_0x1dad,Standard -0x217a5,CUS_0x489d,Low -0x217b1,CUS_0x23d8,Low -0x217bd,CUS_0x9a14,High -0x217c9,CUS_0xb7be,Standard -0x217d5,CUS_0x1666,Standard -0x217e1,CUS_0x368f,Standard -0x217ed,CUS_0x9593,Standard -0x217f9,CUS_0xb322,Low -0x21805,CUS_0x4bef,High -0x21811,CUS_0xa120,Standard -0x2181d,CUS_0x52dd,Standard -0x21829,CUS_0x1ecf,Standard -0x21835,CUS_0x1aa0,Standard -0x21841,CUS_0x1f2f,Standard -0x2184d,CUS_0x7c51,Low -0x21859,CUS_0x4a23,Standard -0x21865,CUS_0x4f0d,Low -0x21871,CUS_0x32d2,Standard -0x2187d,CUS_0x575a,Standard -0x21889,CUS_0x4aa7,Low -0x21895,CUS_0x3af9,Low -0x218a1,CUS_0x7284,High -0x218ad,CUS_0x691e,Low -0x218b9,CUS_0x14f1,High -0x218c5,CUS_0xab83,Standard -0x218d1,CUS_0x5b90,Standard -0x218dd,CUS_0xa66a,Low -0x218e9,CUS_0xb89f,Standard -0x218f5,CUS_0xbb30,Standard -0x21901,CUS_0xacec,Standard -0x2190d,CUS_0x2fd5,Low -0x21919,CUS_0x9a6,Low -0x21925,CUS_0xbcde,Low -0x21931,CUS_0xa09c,Low -0x2193d,CUS_0xc192,Low -0x21949,CUS_0x25f1,Low -0x21955,CUS_0x61e3,Standard -0x21961,CUS_0x7145,Standard -0x2196d,CUS_0x225e,Standard -0x21979,CUS_0xa187,Low -0x21985,CUS_0x2499,Standard -0x21991,CUS_0x21bb,Standard -0x2199d,CUS_0x6211,High -0x219a9,CUS_0x89b4,High -0x219b5,CUS_0xb04,High -0x219c1,CUS_0x77b3,Standard -0x219cd,CUS_0xbe71,Low -0x219d9,CUS_0x6d1e,High -0x219e5,CUS_0x9c66,Standard -0x219f1,CUS_0x6068,Standard -0x219fd,CUS_0x3b7e,Standard -0x21a09,CUS_0xec8,Standard -0x21a15,CUS_0xbc5e,Standard -0x21a21,CUS_0x489b,High -0x21a2d,CUS_0xb907,Standard -0x21a39,CUS_0x612d,Standard -0x21a45,CUS_0xaebc,Standard -0x21a51,CUS_0x6683,Standard -0x21a5d,CUS_0x2a8e,Standard -0x21a69,CUS_0x7ed9,Standard -0x21a75,CUS_0xb173,High -0x21a81,CUS_0x6e91,High -0x21a8d,CUS_0x2ba1,Low -0x21a99,CUS_0x4a70,High -0x21aa5,CUS_0x66f2,Standard -0x21ab1,CUS_0x4cce,High -0x21abd,CUS_0xa18f,High -0x21ac9,CUS_0xa442,Standard -0x21ad5,CUS_0xdb9,High -0x21ae1,CUS_0x55f,Standard -0x21aed,CUS_0x383a,Standard -0x21af9,CUS_0x8b25,Standard -0x21b05,CUS_0x1274,High -0x21b11,CUS_0x43ee,Standard -0x21b1d,CUS_0x6443,Low -0x21b29,CUS_0x553d,Standard -0x21b35,CUS_0x15ad,High -0x21b41,CUS_0xa57,Standard -0x21b4d,CUS_0x9902,Standard -0x21b59,CUS_0x7c33,Low -0x21b65,CUS_0xe05,High -0x21b71,CUS_0x7595,Low -0x21b7d,CUS_0x445,High -0x21b89,CUS_0x72e3,Standard -0x21b95,CUS_0x8e48,Low -0x21ba1,CUS_0xc4ad,High -0x21bad,CUS_0x6318,High -0x21bb9,CUS_0x9dd7,Standard -0x21bc5,CUS_0x49c4,Low -0x21bd1,CUS_0x9962,Low -0x21bdd,CUS_0x795e,Standard -0x21be9,CUS_0x30b9,Standard -0x21bf5,CUS_0x3fa7,High -0x21c01,CUS_0x983b,Standard -0x21c0d,CUS_0x5c45,Standard -0x21c19,CUS_0xa8cb,Standard -0x21c25,CUS_0x6543,Low -0x21c31,CUS_0xa6e7,Low -0x21c3d,CUS_0x391a,Low -0x21c49,CUS_0x9616,Standard -0x21c55,CUS_0x8ac4,High -0x21c61,CUS_0x6341,Standard -0x21c6d,CUS_0x3f71,Low -0x21c79,CUS_0x97b5,Standard -0x21c85,CUS_0x9f5e,High -0x21c91,CUS_0x638b,Standard -0x21c9d,CUS_0x19a8,Standard -0x21ca9,CUS_0x77f6,Standard -0x21cb5,CUS_0x246d,Standard -0x21cc1,CUS_0x4aba,Standard -0x21ccd,CUS_0x246a,High -0x21cd9,CUS_0x4722,Standard -0x21ce5,CUS_0x8aa6,Standard -0x21cf1,CUS_0xa8a,High -0x21cfd,CUS_0x2e10,High -0x21d09,CUS_0x5672,Standard -0x21d15,CUS_0x7c88,Standard -0x21d21,CUS_0x4b8b,Low -0x21d2d,CUS_0x3b10,Low -0x21d39,CUS_0x48cb,Standard -0x21d45,CUS_0xb5f6,Standard -0x21d51,CUS_0x8af1,Low -0x21d5d,CUS_0x7659,Low -0x21d69,CUS_0xb4d8,Standard -0x21d75,CUS_0x138e,Low -0x21d81,CUS_0x4976,Standard -0x21d8d,CUS_0x1038,Standard -0x21d99,CUS_0xa685,Standard -0x21da5,CUS_0xa663,Low -0x21db1,CUS_0x8cf9,High -0x21dbd,CUS_0x563b,Standard -0x21dc9,CUS_0x81ca,Low -0x21dd5,CUS_0xb26,Standard -0x21de1,CUS_0x84f3,Low -0x21ded,CUS_0x209a,Standard -0x21df9,CUS_0x4dac,High -0x21e05,CUS_0x9c63,Standard -0x21e11,CUS_0x64ed,Standard -0x21e1d,CUS_0x88c7,Low -0x21e29,CUS_0xb1ca,High -0x21e35,CUS_0x18e5,High -0x21e41,CUS_0x550b,High -0x21e4d,CUS_0x5afe,Standard -0x21e59,CUS_0x26a9,Standard -0x21e65,CUS_0x6eb9,High -0x21e71,CUS_0x68da,Low -0x21e7d,CUS_0x5ac7,Standard -0x21e89,CUS_0xcfd,High -0x21e95,CUS_0x2834,Low -0x21ea1,CUS_0x141c,Standard -0x21ead,CUS_0xb8de,Standard -0x21eb9,CUS_0x8743,Standard -0x21ec5,CUS_0x1755,Standard -0x21ed1,CUS_0xbe97,Standard -0x21edd,CUS_0x335f,Standard -0x21ee9,CUS_0x7e30,Standard -0x21ef5,CUS_0x40df,Standard -0x21f01,CUS_0x1430,Standard -0x21f0d,CUS_0x3d16,High -0x21f19,CUS_0x14b3,Standard -0x21f25,CUS_0x8fd5,Standard -0x21f31,CUS_0x1a7b,Standard -0x21f3d,CUS_0xb787,High -0x21f49,CUS_0x78ce,Standard -0x21f55,CUS_0x6263,High -0x21f61,CUS_0xbd45,Standard -0x21f6d,CUS_0x1528,Standard -0x21f79,CUS_0xaf1e,Standard -0x21f85,CUS_0xb39,Standard -0x21f91,CUS_0x3127,Standard -0x21f9d,CUS_0x33b7,Standard -0x21fa9,CUS_0x6919,Low -0x21fb5,CUS_0x815,High -0x21fc1,CUS_0x81d4,Standard -0x21fcd,CUS_0x7ea1,High -0x21fd9,CUS_0x54b7,Standard -0x21fe5,CUS_0xb87d,Low -0x21ff1,CUS_0x70d4,High -0x21ffd,CUS_0x9176,Standard -0x22009,CUS_0x8cf2,Standard -0x22015,CUS_0x9207,Standard -0x22021,CUS_0x8e93,High -0x2202d,CUS_0x72a7,Standard -0x22039,CUS_0x668f,Standard -0x22045,CUS_0x9ab3,High -0x22051,CUS_0x2b6a,Standard -0x2205d,CUS_0x1471,Standard -0x22069,CUS_0x853c,Standard -0x22075,CUS_0x18c5,Standard -0x22081,CUS_0x2e06,Low -0x2208d,CUS_0xc0a3,High -0x22099,CUS_0xa5dd,Low -0x220a5,CUS_0x2288,Low -0x220b1,CUS_0xb304,Standard -0x220bd,CUS_0x9da4,Low -0x220c9,CUS_0x5983,Standard -0x220d5,CUS_0x775a,Low -0x220e1,CUS_0xc317,Standard -0x220ed,CUS_0x7255,Standard -0x220f9,CUS_0x8348,High -0x22105,CUS_0x6dd6,Standard -0x22111,CUS_0x23e5,Standard -0x2211d,CUS_0x50e6,Low -0x22129,CUS_0x973e,High -0x22135,CUS_0x652e,Standard -0x22141,CUS_0xb5c9,High -0x2214d,CUS_0xbf4d,Standard -0x22159,CUS_0x63c,High -0x22165,CUS_0x45e5,Standard -0x22171,CUS_0x13b8,Standard -0x2217d,CUS_0x665c,High -0x22189,CUS_0x52a5,Standard -0x22195,CUS_0x8661,Standard -0x221a1,CUS_0xa857,High -0x221ad,CUS_0x7b30,Standard -0x221b9,CUS_0x6854,Low -0x221c5,CUS_0xc1ec,Standard -0x221d1,CUS_0x2551,Standard -0x221dd,CUS_0x8603,Low -0x221e9,CUS_0x1be0,High -0x221f5,CUS_0x2f49,Standard -0x22201,CUS_0x3d40,Low -0x2220d,CUS_0x58b2,Low -0x22219,CUS_0x8984,Standard -0x22225,CUS_0x8b66,Standard -0x22231,CUS_0x1691,Standard -0x2223d,CUS_0xc68d,Standard -0x22249,CUS_0x5b2,Standard -0x22255,CUS_0xa624,Standard -0x22261,CUS_0xc3b9,Standard -0x2226d,CUS_0x8672,High -0x22279,CUS_0x96e5,Standard -0x22285,CUS_0x928f,High -0x22291,CUS_0x771e,Standard -0x2229d,CUS_0x5220,Standard -0x222a9,CUS_0x833d,High -0x222b5,CUS_0xbe56,Standard -0x222c1,CUS_0xbfbf,Standard -0x222cd,CUS_0x894f,High -0x222d9,CUS_0x67c8,Standard -0x222e5,CUS_0x69bf,Standard -0x222f1,CUS_0xbd7c,Standard -0x222fd,CUS_0x6974,Low -0x22309,CUS_0x4c0,High -0x22315,CUS_0x7500,Low -0x22321,CUS_0x6cf6,Standard -0x2232d,CUS_0x143d,Standard -0x22339,CUS_0x6406,Low -0x22345,CUS_0x2b3c,Low -0x22351,CUS_0x4d19,Standard -0x2235d,CUS_0x5204,High -0x22369,CUS_0x217f,Low -0x22375,CUS_0x5c7d,Standard -0x22381,CUS_0x36a2,Standard -0x2238d,CUS_0x9985,Standard -0x22399,CUS_0x9bc7,Standard -0x223a5,CUS_0x6d02,Standard -0x223b1,CUS_0x4faf,Low -0x223bd,CUS_0xbd07,Low -0x223c9,CUS_0x14d8,Standard -0x223d5,CUS_0x107e,Standard -0x223e1,CUS_0x3799,Standard -0x223ed,CUS_0x6623,High -0x223f9,CUS_0x4e43,High -0x22405,CUS_0x9cdf,Standard -0x22411,CUS_0x3229,High -0x2241d,CUS_0x51eb,Standard -0x22429,CUS_0xa4e7,Low -0x22435,CUS_0x30f7,Standard -0x22441,CUS_0x2b9e,High -0x2244d,CUS_0xabea,Standard -0x22459,CUS_0xc592,Standard -0x22465,CUS_0x896e,Low -0x22471,CUS_0x7a6c,High -0x2247d,CUS_0xa41f,Standard -0x22489,CUS_0x41e8,High -0x22495,CUS_0x33dc,High -0x224a1,CUS_0x4732,Standard -0x224ad,CUS_0x79ca,Low -0x224b9,CUS_0x9f67,Standard -0x224c5,CUS_0xc2ae,Standard -0x224d1,CUS_0x48cc,Standard -0x224dd,CUS_0x79a,Standard -0x224e9,CUS_0x226a,Standard -0x224f5,CUS_0x808d,Standard -0x22501,CUS_0x38a7,Low -0x2250d,CUS_0x6f92,High -0x22519,CUS_0xbc99,Standard -0x22525,CUS_0x9415,High -0x22531,CUS_0x25d8,High -0x2253d,CUS_0x3903,Standard -0x22549,CUS_0x46b6,Low -0x22555,CUS_0x16ae,Standard -0x22561,CUS_0x3787,Standard -0x2256d,CUS_0x3077,Standard -0x22579,CUS_0xc015,Standard -0x22585,CUS_0x5e56,Standard -0x22591,CUS_0x3631,High -0x2259d,CUS_0x67cb,Standard -0x225a9,CUS_0xaea,Standard -0x225b5,CUS_0x253a,High -0x225c1,CUS_0x5cb8,Standard -0x225cd,CUS_0xb626,High -0x225d9,CUS_0xac2d,Standard -0x225e5,CUS_0x8264,Standard -0x225f1,CUS_0x1884,Standard -0x225fd,CUS_0x96d3,Standard -0x22609,CUS_0x3082,High -0x22615,CUS_0x60b6,Low -0x22621,CUS_0x276a,High -0x2262d,CUS_0xbd3d,Standard -0x22639,CUS_0xb913,High -0x22645,CUS_0x2ca9,Standard -0x22651,CUS_0xa6c7,High -0x2265d,CUS_0x2350,Standard -0x22669,CUS_0x7846,Standard -0x22675,CUS_0x34a9,High -0x22681,CUS_0x66d4,Standard -0x2268d,CUS_0x732d,Standard -0x22699,CUS_0x6510,Standard -0x226a5,CUS_0xb05d,Low -0x226b1,CUS_0x854e,Standard -0x226bd,CUS_0x6b04,High -0x226c9,CUS_0x4e1f,Low -0x226d5,CUS_0x31b2,Standard -0x226e1,CUS_0x9b4b,Standard -0x226ed,CUS_0xd71,Standard -0x226f9,CUS_0x5862,High -0x22705,CUS_0xc17f,Standard -0x22711,CUS_0x31f8,Low -0x2271d,CUS_0x1f4f,Standard -0x22729,CUS_0x35dd,High -0x22735,CUS_0x23c8,Standard -0x22741,CUS_0xbbaf,High -0x2274d,CUS_0x9e3f,Standard -0x22759,CUS_0x38b3,High -0x22765,CUS_0xa116,Standard -0x22771,CUS_0x7ad4,Low -0x2277d,CUS_0xde2,Standard -0x22789,CUS_0x70bd,Standard -0x22795,CUS_0x9d91,Standard -0x227a1,CUS_0xa4b7,Standard -0x227ad,CUS_0x50e2,High -0x227b9,CUS_0x49b5,Standard -0x227c5,CUS_0x31c0,High -0x227d1,CUS_0x164a,Standard -0x227dd,CUS_0x3176,Standard -0x227e9,CUS_0x6cae,High -0x227f5,CUS_0x8558,Standard -0x22801,CUS_0xb7d9,Standard -0x2280d,CUS_0x963e,Low -0x22819,CUS_0xc0b7,Standard -0x22825,CUS_0xb328,Standard -0x22831,CUS_0x77fe,Low -0x2283d,CUS_0x2c2b,Standard -0x22849,CUS_0x2d02,High -0x22855,CUS_0xb6dd,High -0x22861,CUS_0xae14,High -0x2286d,CUS_0x682b,High -0x22879,CUS_0x1786,Standard -0x22885,CUS_0x2de0,High -0x22891,CUS_0x47a5,High -0x2289d,CUS_0x3b32,Standard -0x228a9,CUS_0x8abb,Standard -0x228b5,CUS_0x470d,Standard -0x228c1,CUS_0xc5a5,Standard -0x228cd,CUS_0x3410,High -0x228d9,CUS_0x5275,High -0x228e5,CUS_0xc1a7,Standard -0x228f1,CUS_0x9386,Standard -0x228fd,CUS_0x7c0d,High -0x22909,CUS_0x4715,Standard -0x22915,CUS_0x4475,High -0x22921,CUS_0xe7e,High -0x2292d,CUS_0x72d2,High -0x22939,CUS_0x89ab,Standard -0x22945,CUS_0x6dcf,Standard -0x22951,CUS_0x7369,Standard -0x2295d,CUS_0x5d9e,Standard -0x22969,CUS_0x41f2,Standard -0x22975,CUS_0x205f,High -0x22981,CUS_0x8234,High -0x2298d,CUS_0x242e,Standard -0x22999,CUS_0x865c,Standard -0x229a5,CUS_0x2887,Standard -0x229b1,CUS_0x540f,Low -0x229bd,CUS_0xb2fc,Low -0x229c9,CUS_0x1ca5,High -0x229d5,CUS_0x4282,Standard -0x229e1,CUS_0x13c2,Standard -0x229ed,CUS_0xa78b,Standard -0x229f9,CUS_0x4469,Standard -0x22a05,CUS_0x5be9,Low -0x22a11,CUS_0xc26e,Standard -0x22a1d,CUS_0x4671,High -0x22a29,CUS_0x5d75,Low -0x22a35,CUS_0x4ff5,Standard -0x22a41,CUS_0x4170,Standard -0x22a4d,CUS_0x96c,Standard -0x22a59,CUS_0xb464,Standard -0x22a65,CUS_0xb8f4,Standard -0x22a71,CUS_0x52c2,Low -0x22a7d,CUS_0x4403,Low -0x22a89,CUS_0xb593,High -0x22a95,CUS_0xb594,Standard -0x22aa1,CUS_0x3b83,High -0x22aad,CUS_0x33aa,High -0x22ab9,CUS_0x3a3f,Standard -0x22ac5,CUS_0x2048,Standard -0x22ad1,CUS_0x52f7,Standard -0x22add,CUS_0xa9f6,Standard -0x22ae9,CUS_0x60f5,Standard -0x22af5,CUS_0x2a55,High -0x22b01,CUS_0x8843,Standard -0x22b0d,CUS_0x59d8,High -0x22b19,CUS_0x27f4,Standard -0x22b25,CUS_0x29cd,Standard -0x22b31,CUS_0x4813,Low -0x22b3d,CUS_0x312b,High -0x22b49,CUS_0x74e5,Standard -0x22b55,CUS_0x5dca,Standard -0x22b61,CUS_0x28e3,Standard -0x22b6d,CUS_0x23a1,Standard -0x22b79,CUS_0xbbd8,High -0x22b85,CUS_0x6e0,Standard -0x22b91,CUS_0xb5dd,Standard -0x22b9d,CUS_0x5029,Low -0x22ba9,CUS_0x6c67,Standard -0x22bb5,CUS_0x38cc,Standard -0x22bc1,CUS_0x23c5,Standard -0x22bcd,CUS_0x128f,Standard -0x22bd9,CUS_0x582f,Low -0x22be5,CUS_0x14c1,Standard -0x22bf1,CUS_0x8608,High -0x22bfd,CUS_0x1551,Standard -0x22c09,CUS_0x3aaa,Standard -0x22c15,CUS_0x70d,Standard -0x22c21,CUS_0x22b1,Low -0x22c2d,CUS_0x92e9,High -0x22c39,CUS_0x5826,Standard -0x22c45,CUS_0xfaa,Standard -0x22c51,CUS_0xaee3,Standard -0x22c5d,CUS_0xb172,Standard -0x22c69,CUS_0xb818,Standard -0x22c75,CUS_0x36b4,Standard -0x22c81,CUS_0x7d66,Low -0x22c8d,CUS_0x416f,Standard -0x22c99,CUS_0x922d,Standard -0x22ca5,CUS_0xaea9,Standard -0x22cb1,CUS_0x8ae9,Standard -0x22cbd,CUS_0x3ee9,Standard -0x22cc9,CUS_0xc2c0,Standard -0x22cd5,CUS_0x373b,Standard -0x22ce1,CUS_0xabef,Low -0x22ced,CUS_0x2f9d,High -0x22cf9,CUS_0x6a6,Standard -0x22d05,CUS_0x76df,Standard -0x22d11,CUS_0x477b,Standard -0x22d1d,CUS_0x8ec8,High -0x22d29,CUS_0x4238,Standard -0x22d35,CUS_0x5627,Standard -0x22d41,CUS_0x9002,Standard -0x22d4d,CUS_0x9871,Low -0x22d59,CUS_0x1bb6,Standard -0x22d65,CUS_0x725e,Standard -0x22d71,CUS_0xb837,High -0x22d7d,CUS_0xabaf,Standard -0x22d89,CUS_0xc55b,High -0x22d95,CUS_0xc3ad,High -0x22da1,CUS_0x1695,Standard -0x22dad,CUS_0xdb0,Low -0x22db9,CUS_0x457e,Standard -0x22dc5,CUS_0xb4d6,Low -0x22dd1,CUS_0x90d0,High -0x22ddd,CUS_0x13df,High -0x22de9,CUS_0x52b1,Low -0x22df5,CUS_0x277e,Low -0x22e01,CUS_0x7045,Standard -0x22e0d,CUS_0x641e,Standard -0x22e19,CUS_0x82c4,High -0x22e25,CUS_0xbe7,High -0x22e31,CUS_0x6896,High -0x22e3d,CUS_0x5f22,Standard -0x22e49,CUS_0x9a0c,Low -0x22e55,CUS_0xab16,Low -0x22e61,CUS_0x8369,Standard -0x22e6d,CUS_0xe4e,Standard -0x22e79,CUS_0x8e6e,Standard -0x22e85,CUS_0x92b6,High -0x22e91,CUS_0x6013,Standard -0x22e9d,CUS_0x3359,Standard -0x22ea9,CUS_0x8dc6,Standard -0x22eb5,CUS_0x9fcf,High -0x22ec1,CUS_0x5f8b,High -0x22ecd,CUS_0x809c,Standard -0x22ed9,CUS_0xa2d7,Standard -0x22ee5,CUS_0xbdca,Standard -0x22ef1,CUS_0x6570,Standard -0x22efd,CUS_0x86e,High -0x22f09,CUS_0x1f9c,Low -0x22f15,CUS_0x44d5,Standard -0x22f21,CUS_0xb615,Low -0x22f2d,CUS_0x6092,High -0x22f39,CUS_0xbd1f,Standard -0x22f45,CUS_0x1341,Standard -0x22f51,CUS_0x7e6c,Low -0x22f5d,CUS_0x6c5d,Low -0x22f69,CUS_0x114b,Standard -0x22f75,CUS_0x20c8,Low -0x22f81,CUS_0x4ddc,Standard -0x22f8d,CUS_0x94dd,Standard -0x22f99,CUS_0xb631,Standard -0x22fa5,CUS_0x7418,Standard -0x22fb1,CUS_0x82a6,High -0x22fbd,CUS_0x80c7,Standard -0x22fc9,CUS_0x3b15,Standard -0x22fd5,CUS_0x714a,Standard -0x22fe1,CUS_0xad94,Standard -0x22fed,CUS_0x949,Standard -0x22ff9,CUS_0x8126,Standard -0x23005,CUS_0x7087,Standard -0x23011,CUS_0x9d9,High -0x2301d,CUS_0x4a88,Standard -0x23029,CUS_0x49f5,High -0x23035,CUS_0xbfba,High -0x23041,CUS_0x9d77,Standard -0x2304d,CUS_0x2854,Low -0x23059,CUS_0x38dc,Standard -0x23065,CUS_0xf8d,Low -0x23071,CUS_0x3365,Standard -0x2307d,CUS_0xac5c,High -0x23089,CUS_0xb32e,High -0x23095,CUS_0xa90c,Standard -0x230a1,CUS_0x1cab,High -0x230ad,CUS_0xbf1d,Standard -0x230b9,CUS_0x1688,Standard -0x230c5,CUS_0x7d8e,High -0x230d1,CUS_0x1897,High -0x230dd,CUS_0x2985,Low -0x230e9,CUS_0xc349,High -0x230f5,CUS_0x5c7f,Standard -0x23101,CUS_0x5dfe,Standard -0x2310d,CUS_0xbdee,Standard -0x23119,CUS_0x5adc,Standard -0x23125,CUS_0x3621,Standard -0x23131,CUS_0x7d8a,High -0x2313d,CUS_0x192d,High -0x23149,CUS_0xe47,Standard -0x23155,CUS_0xa423,Low -0x23161,CUS_0x9c38,High -0x2316d,CUS_0x89d2,Low -0x23179,CUS_0x8e8,Standard -0x23185,CUS_0xade0,Low -0x23191,CUS_0xac95,Low -0x2319d,CUS_0xb0d3,Low -0x231a9,CUS_0x474,Low -0x231b5,CUS_0x37bc,Low -0x231c1,CUS_0x1d63,High -0x231cd,CUS_0x8956,Standard -0x231d9,CUS_0x731,Standard -0x231e5,CUS_0x5507,High -0x231f1,CUS_0x65f0,High -0x231fd,CUS_0x150c,Standard -0x23209,CUS_0x94ee,Standard -0x23215,CUS_0x4aad,High -0x23221,CUS_0x84a6,Standard -0x2322d,CUS_0x49a9,High -0x23239,CUS_0x419f,Standard -0x23245,CUS_0xad19,Standard -0x23251,CUS_0x30c1,Low -0x2325d,CUS_0x4479,Standard -0x23269,CUS_0x1144,Standard -0x23275,CUS_0x3b60,High -0x23281,CUS_0x5385,Low -0x2328d,CUS_0x165e,Standard -0x23299,CUS_0x6a1a,Standard -0x232a5,CUS_0x9d2e,High -0x232b1,CUS_0x1942,Standard -0x232bd,CUS_0x3cb7,High -0x232c9,CUS_0xa64c,Low -0x232d5,CUS_0x18e1,Standard -0x232e1,CUS_0x2a30,Standard -0x232ed,CUS_0x6c53,Standard -0x232f9,CUS_0x31e8,High -0x23305,CUS_0xa38e,High -0x23311,CUS_0x9053,Standard -0x2331d,CUS_0x29e7,High -0x23329,CUS_0x45fc,High -0x23335,CUS_0x5833,Low -0x23341,CUS_0x8c76,Standard -0x2334d,CUS_0x109b,High -0x23359,CUS_0xb7b3,High -0x23365,CUS_0x739,Low -0x23371,CUS_0x3634,Standard -0x2337d,CUS_0x7789,Low -0x23389,CUS_0x69c3,Standard -0x23395,CUS_0x68f8,Low -0x233a1,CUS_0xa83e,Standard -0x233ad,CUS_0x7f0b,High -0x233b9,CUS_0x374a,Standard -0x233c5,CUS_0xb68e,Standard -0x233d1,CUS_0xa15a,Standard -0x233dd,CUS_0x63c0,High -0x233e9,CUS_0xb1f1,Standard -0x233f5,CUS_0x1ed3,Standard -0x23401,CUS_0x6333,High -0x2340d,CUS_0x86aa,Standard -0x23419,CUS_0x5b92,Low -0x23425,CUS_0x2552,Standard -0x23431,CUS_0x32a1,Low -0x2343d,CUS_0x48dd,Standard -0x23449,CUS_0x1422,High -0x23455,CUS_0x4d71,High -0x23461,CUS_0x558d,High -0x2346d,CUS_0x64b8,High -0x23479,CUS_0x2ad1,Standard -0x23485,CUS_0x86fe,Standard -0x23491,CUS_0xa8ba,High -0x2349d,CUS_0x195b,Standard -0x234a9,CUS_0x5dec,High -0x234b5,CUS_0x4bde,High -0x234c1,CUS_0x7ec0,High -0x234cd,CUS_0x5946,Standard -0x234d9,CUS_0xb5c5,Low -0x234e5,CUS_0xb7de,Standard -0x234f1,CUS_0xe09,High -0x234fd,CUS_0x4203,Standard -0x23509,CUS_0xa342,Standard -0x23515,CUS_0x8e7d,Standard -0x23521,CUS_0xa913,Low -0x2352d,CUS_0x237b,High -0x23539,CUS_0x5fe9,High -0x23545,CUS_0x8176,Standard -0x23551,CUS_0x20dc,Low -0x2355d,CUS_0x10e7,Standard -0x23569,CUS_0x6fbc,High -0x23575,CUS_0x87a3,High -0x23581,CUS_0x57f0,Low -0x2358d,CUS_0x402d,Standard -0x23599,CUS_0x5421,Low -0x235a5,CUS_0x7f2a,Low -0x235b1,CUS_0x3de6,Standard -0x235bd,CUS_0xb187,Low -0x235c9,CUS_0x5502,Low -0x235d5,CUS_0xa650,High -0x235e1,CUS_0x4ead,High -0x235ed,CUS_0x1492,Standard -0x235f9,CUS_0x30c8,Standard -0x23605,CUS_0xa3f3,Standard -0x23611,CUS_0x9ae0,Standard -0x2361d,CUS_0x5fc9,Standard -0x23629,CUS_0xc0e2,Standard -0x23635,CUS_0xa283,Standard -0x23641,CUS_0x7fd8,Standard -0x2364d,CUS_0x7622,Standard -0x23659,CUS_0x5ac6,High -0x23665,CUS_0x7f6c,Standard -0x23671,CUS_0x2f31,Standard -0x2367d,CUS_0x6c2c,High -0x23689,CUS_0xb3b4,Standard -0x23695,CUS_0xb82a,Standard -0x236a1,CUS_0x1b0c,High -0x236ad,CUS_0x9a9a,Standard -0x236b9,CUS_0x6f59,Standard -0x236c5,CUS_0xaf7d,Standard -0x236d1,CUS_0xbb5a,High -0x236dd,CUS_0xadad,Low -0x236e9,CUS_0x19a0,High -0x236f5,CUS_0x6610,Low -0x23701,CUS_0xba7e,High -0x2370d,CUS_0x8670,Standard -0x23719,CUS_0x3de4,Standard -0x23725,CUS_0x7fe9,High -0x23731,CUS_0x8489,Standard -0x2373d,CUS_0x675,Standard -0x23749,CUS_0xc641,High -0x23755,CUS_0x436c,High -0x23761,CUS_0xb226,Standard -0x2376d,CUS_0x6b0,Standard -0x23779,CUS_0x29c0,High -0x23785,CUS_0xbd95,Standard -0x23791,CUS_0x887f,Low -0x2379d,CUS_0xd29,Standard -0x237a9,CUS_0x37af,Low -0x237b5,CUS_0x25a7,Standard -0x237c1,CUS_0x6d30,Standard -0x237cd,CUS_0xad11,Low -0x237d9,CUS_0x929c,Standard -0x237e5,CUS_0x54c6,Standard -0x237f1,CUS_0x84be,Standard -0x237fd,CUS_0x7cbf,Standard -0x23809,CUS_0xc5b2,High -0x23815,CUS_0x9414,High -0x23821,CUS_0x837,High -0x2382d,CUS_0x9b24,Standard -0x23839,CUS_0x97ab,High -0x23845,CUS_0x295f,Low -0x23851,CUS_0x8519,Standard -0x2385d,CUS_0x9939,Standard -0x23869,CUS_0x9dee,High -0x23875,CUS_0xa4f9,Standard -0x23881,CUS_0x758c,High -0x2388d,CUS_0x2378,High -0x23899,CUS_0x9e67,Standard -0x238a5,CUS_0x9e5f,High -0x238b1,CUS_0x6786,High -0x238bd,CUS_0x47da,High -0x238c9,CUS_0x1151,Standard -0x238d5,CUS_0x581e,Standard -0x238e1,CUS_0x756d,Standard -0x238ed,CUS_0x2b00,Standard -0x238f9,CUS_0xb704,Standard -0x23905,CUS_0x7feb,Standard -0x23911,CUS_0x5208,High -0x2391d,CUS_0xb811,Low -0x23929,CUS_0x24bc,Standard -0x23935,CUS_0xb080,High -0x23941,CUS_0x3a44,High -0x2394d,CUS_0x1e46,Standard -0x23959,CUS_0x56ef,High -0x23965,CUS_0x91da,Standard -0x23971,CUS_0x81b,High -0x2397d,CUS_0x870e,High -0x23989,CUS_0x9fd2,Low -0x23995,CUS_0xa9d1,Standard -0x239a1,CUS_0xc7b,Standard -0x239ad,CUS_0x7840,Low -0x239b9,CUS_0xc5e,High -0x239c5,CUS_0x505c,High -0x239d1,CUS_0x8da5,Standard -0x239dd,CUS_0x8a14,Standard -0x239e9,CUS_0xa584,High -0x239f5,CUS_0x1709,Low -0x23a01,CUS_0xacfa,High -0x23a0d,CUS_0x955d,High -0x23a19,CUS_0xbc6a,Standard -0x23a25,CUS_0x2212,High -0x23a31,CUS_0x3e68,High -0x23a3d,CUS_0x2dca,High -0x23a49,CUS_0x5487,Standard -0x23a55,CUS_0xb240,Low -0x23a61,CUS_0x5e4e,Standard -0x23a6d,CUS_0xb4fd,Low -0x23a79,CUS_0x8083,Standard -0x23a85,CUS_0x8175,Low -0x23a91,CUS_0x3f38,High -0x23a9d,CUS_0x332e,Standard -0x23aa9,CUS_0x643a,High -0x23ab5,CUS_0xaa74,High -0x23ac1,CUS_0x79c1,High -0x23acd,CUS_0x602a,Standard -0x23ad9,CUS_0x2e01,High -0x23ae5,CUS_0xb89c,Low -0x23af1,CUS_0x3afa,High -0x23afd,CUS_0x4683,Low -0x23b09,CUS_0x2375,Standard -0x23b15,CUS_0x19e1,Low -0x23b21,CUS_0x902e,Standard -0x23b2d,CUS_0x5ddd,Standard -0x23b39,CUS_0x463e,Standard -0x23b45,CUS_0x1900,Standard -0x23b51,CUS_0x2449,Standard -0x23b5d,CUS_0x9b5c,Low -0x23b69,CUS_0xd70,Low -0x23b75,CUS_0x6dc3,Standard -0x23b81,CUS_0x9151,Standard -0x23b8d,CUS_0x1550,Standard -0x23b99,CUS_0x4697,Standard -0x23ba5,CUS_0x4e5f,Low -0x23bb1,CUS_0xb123,Standard -0x23bbd,CUS_0x13e7,High -0x23bc9,CUS_0x89c8,Low -0x23bd5,CUS_0x13f6,Low -0x23be1,CUS_0xaec,Standard -0x23bed,CUS_0x6846,High -0x23bf9,CUS_0x2ef8,Standard -0x23c05,CUS_0x2bfc,Standard -0x23c11,CUS_0x776d,Standard -0x23c1d,CUS_0x858a,High -0x23c29,CUS_0x905e,Standard -0x23c35,CUS_0x3baa,Low -0x23c41,CUS_0x4e07,High -0x23c4d,CUS_0x99bc,High -0x23c59,CUS_0x2d9f,Standard -0x23c65,CUS_0xa88,Standard -0x23c71,CUS_0xb2d5,Standard -0x23c7d,CUS_0xc47c,Low -0x23c89,CUS_0xdba,High -0x23c95,CUS_0x8e80,Standard -0x23ca1,CUS_0x412f,Standard -0x23cad,CUS_0x6dc6,Standard -0x23cb9,CUS_0x7992,Standard -0x23cc5,CUS_0xc166,Standard -0x23cd1,CUS_0x8b6d,Standard -0x23cdd,CUS_0xa46e,High -0x23ce9,CUS_0xb80a,Standard -0x23cf5,CUS_0x7806,Standard -0x23d01,CUS_0xeb0,Standard -0x23d0d,CUS_0x4649,Standard -0x23d19,CUS_0x9ce9,Standard -0x23d25,CUS_0xbf09,High -0x23d31,CUS_0x1ca9,Low -0x23d3d,CUS_0x2d07,High -0x23d49,CUS_0xbb33,Standard -0x23d55,CUS_0x8eac,High -0x23d61,CUS_0xb5f3,High -0x23d6d,CUS_0x16b4,Standard -0x23d79,CUS_0x631d,High -0x23d85,CUS_0x73de,Low -0x23d91,CUS_0x48be,High -0x23d9d,CUS_0x95ec,Standard -0x23da9,CUS_0xc668,Standard -0x23db5,CUS_0x30ec,Standard -0x23dc1,CUS_0x1c96,Standard -0x23dcd,CUS_0xb53,Standard -0x23dd9,CUS_0x54be,Standard -0x23de5,CUS_0x559c,Standard -0x23df1,CUS_0x18d7,Standard -0x23dfd,CUS_0x1168,Low -0x23e09,CUS_0x7152,Standard -0x23e15,CUS_0xb029,Standard -0x23e21,CUS_0xaf96,Standard -0x23e2d,CUS_0x5709,Standard -0x23e39,CUS_0xb3c2,Standard -0x23e45,CUS_0x7d8,Standard -0x23e51,CUS_0x257e,Standard -0x23e5d,CUS_0x78fe,Low -0x23e69,CUS_0xcc4,Low -0x23e75,CUS_0xb41f,Low -0x23e81,CUS_0xb8a1,High -0x23e8d,CUS_0x920e,Standard -0x23e99,CUS_0x8281,High -0x23ea5,CUS_0x6abc,Standard -0x23eb1,CUS_0x61a3,Standard -0x23ebd,CUS_0x9389,Standard -0x23ec9,CUS_0x64d9,Low -0x23ed5,CUS_0x5d51,Low -0x23ee1,CUS_0x1bb7,High -0x23eed,CUS_0xdf6,Low -0x23ef9,CUS_0x949b,Standard -0x23f05,CUS_0x2f03,Standard -0x23f11,CUS_0x4de9,Standard -0x23f1d,CUS_0xb832,High -0x23f29,CUS_0x7751,Low -0x23f35,CUS_0x3e0b,High -0x23f41,CUS_0x16a2,Standard -0x23f4d,CUS_0x67af,Standard -0x23f59,CUS_0x8448,Standard -0x23f65,CUS_0x496a,High -0x23f71,CUS_0x40d4,Standard -0x23f7d,CUS_0x8fdd,Standard -0x23f89,CUS_0xa092,Standard -0x23f95,CUS_0xb55e,Standard -0x23fa1,CUS_0x958e,Standard -0x23fad,CUS_0xbda,High -0x23fb9,CUS_0x8844,Low -0x23fc5,CUS_0x1378,Standard -0x23fd1,CUS_0x21df,Standard -0x23fdd,CUS_0x4de8,Standard -0x23fe9,CUS_0x54b1,Standard -0x23ff5,CUS_0x4acc,Low -0x24001,CUS_0x3295,Standard -0x2400d,CUS_0x7561,Standard -0x24019,CUS_0x84df,Standard -0x24025,CUS_0x279c,Standard -0x24031,CUS_0xb125,Low -0x2403d,CUS_0x1ff7,Low -0x24049,CUS_0x9bea,Standard -0x24055,CUS_0x949f,High -0x24061,CUS_0x192f,High -0x2406d,CUS_0x18d8,High -0x24079,CUS_0xa362,Standard -0x24085,CUS_0x120c,High -0x24091,CUS_0xb220,High -0x2409d,CUS_0x5df,Low -0x240a9,CUS_0x87a8,Standard -0x240b5,CUS_0x22ee,High -0x240c1,CUS_0xa693,Standard -0x240cd,CUS_0x5fa9,Low -0x240d9,CUS_0x5682,Standard -0x240e5,CUS_0x4f00,High -0x240f1,CUS_0x6ae6,High -0x240fd,CUS_0x164f,High -0x24109,CUS_0x2d64,Low -0x24115,CUS_0x7893,Standard -0x24121,CUS_0x4e55,Standard -0x2412d,CUS_0x1806,Standard -0x24139,CUS_0xbaf6,Standard -0x24145,CUS_0x978,Low -0x24151,CUS_0x3801,Standard -0x2415d,CUS_0x49b0,High -0x24169,CUS_0x6e26,Standard -0x24175,CUS_0x4312,Standard -0x24181,CUS_0x2243,Standard -0x2418d,CUS_0x8110,Standard -0x24199,CUS_0x14f6,Standard -0x241a5,CUS_0xa1b,Standard -0x241b1,CUS_0x383d,Low -0x241bd,CUS_0x7a01,Standard -0x241c9,CUS_0x347d,Standard -0x241d5,CUS_0x5e18,Low -0x241e1,CUS_0x3b04,Standard -0x241ed,CUS_0x2a2e,High -0x241f9,CUS_0x7916,Standard -0x24205,CUS_0xb918,High -0x24211,CUS_0x6308,Low -0x2421d,CUS_0xad50,High -0x24229,CUS_0x6fd3,High -0x24235,CUS_0x1051,Low -0x24241,CUS_0x756f,Standard -0x2424d,CUS_0x49a1,Low -0x24259,CUS_0xa2f0,Standard -0x24265,CUS_0xb1d5,Standard -0x24271,CUS_0x18ef,Standard -0x2427d,CUS_0xa005,Standard -0x24289,CUS_0x60ae,Low -0x24295,CUS_0xbd4,Standard -0x242a1,CUS_0x7e28,Standard -0x242ad,CUS_0x721f,Standard -0x242b9,CUS_0x62d1,Low -0x242c5,CUS_0xbe65,Low -0x242d1,CUS_0x574d,Standard -0x242dd,CUS_0xb6e0,Low -0x242e9,CUS_0x22c1,Standard -0x242f5,CUS_0xc5e8,High -0x24301,CUS_0x7c00,Standard -0x2430d,CUS_0x746c,High -0x24319,CUS_0x4e7d,Standard -0x24325,CUS_0xa6b8,Standard -0x24331,CUS_0xb639,Standard -0x2433d,CUS_0x205a,Standard -0x24349,CUS_0xa282,Standard -0x24355,CUS_0xae03,Standard -0x24361,CUS_0x4b2e,Standard -0x2436d,CUS_0x12a7,Standard -0x24379,CUS_0x9805,High -0x24385,CUS_0xa5f,Standard -0x24391,CUS_0x1c0c,Standard -0x2439d,CUS_0x98e7,High -0x243a9,CUS_0x7d06,High -0x243b5,CUS_0x150b,High -0x243c1,CUS_0x3361,Standard -0x243cd,CUS_0xb3fe,High -0x243d9,CUS_0xbc9c,Standard -0x243e5,CUS_0x40d9,Standard -0x243f1,CUS_0x1013,Standard -0x243fd,CUS_0x96cd,High -0x24409,CUS_0x86fb,High -0x24415,CUS_0x81f0,High -0x24421,CUS_0x4c49,Standard -0x2442d,CUS_0x223c,High -0x24439,CUS_0x30e8,Standard -0x24445,CUS_0x178d,Standard -0x24451,CUS_0x92cf,Standard -0x2445d,CUS_0xc19f,Standard -0x24469,CUS_0x32ed,Low -0x24475,CUS_0x4103,Standard -0x24481,CUS_0x7e24,Standard -0x2448d,CUS_0x639,Low -0x24499,CUS_0xb49,Low -0x244a5,CUS_0x8cce,Standard -0x244b1,CUS_0x4e9c,Standard -0x244bd,CUS_0x1ad3,Standard -0x244c9,CUS_0x3d73,Standard -0x244d5,CUS_0x55e6,Standard -0x244e1,CUS_0x8e01,Standard -0x244ed,CUS_0x2746,Standard -0x244f9,CUS_0xaeb2,High -0x24505,CUS_0x3de0,Low -0x24511,CUS_0x827f,Standard -0x2451d,CUS_0xb432,Low -0x24529,CUS_0x7b64,High -0x24535,CUS_0x1902,Standard -0x24541,CUS_0x5e1a,High -0x2454d,CUS_0xb483,Standard -0x24559,CUS_0x8798,Low -0x24565,CUS_0x85b2,Low -0x24571,CUS_0x9076,Low -0x2457d,CUS_0x591,Standard -0x24589,CUS_0x926f,Standard -0x24595,CUS_0x2bc7,Standard -0x245a1,CUS_0x7f07,Low -0x245ad,CUS_0x1edd,Standard -0x245b9,CUS_0xbc58,Low -0x245c5,CUS_0x9f59,Low -0x245d1,CUS_0x12b8,High -0x245dd,CUS_0x906c,Standard -0x245e9,CUS_0x1db0,Standard -0x245f5,CUS_0x59d,Low -0x24601,CUS_0x2fc5,High -0x2460d,CUS_0x7be4,High -0x24619,CUS_0x2734,Standard -0x24625,CUS_0x9941,Low -0x24631,CUS_0x73d9,High -0x2463d,CUS_0x61f5,Standard -0x24649,CUS_0x11ec,High -0x24655,CUS_0xbdcd,Standard -0x24661,CUS_0x7803,Standard -0x2466d,CUS_0x2c21,High -0x24679,CUS_0x94ae,Standard -0x24685,CUS_0x3007,Standard -0x24691,CUS_0x1668,Standard -0x2469d,CUS_0xc405,Standard -0x246a9,CUS_0xc0ff,Standard -0x246b5,CUS_0x1c79,High -0x246c1,CUS_0xc029,High -0x246cd,CUS_0xb51c,High -0x246d9,CUS_0x596a,Standard -0x246e5,CUS_0x2567,Low -0x246f1,CUS_0xbf3a,Low -0x246fd,CUS_0xb9ef,Low -0x24709,CUS_0xa061,Low -0x24715,CUS_0xc1ce,High -0x24721,CUS_0xb653,High -0x2472d,CUS_0xa741,Standard -0x24739,CUS_0x1743,High -0x24745,CUS_0xbfa6,High -0x24751,CUS_0xb203,High -0x2475d,CUS_0xc14e,Standard -0x24769,CUS_0xc5b0,Standard -0x24775,CUS_0x8d3d,Standard -0x24781,CUS_0x9011,Low -0x2478d,CUS_0x7b4b,High -0x24799,CUS_0x6ae4,Standard -0x247a5,CUS_0xb1e7,High -0x247b1,CUS_0x28f5,Standard -0x247bd,CUS_0x4c13,Low -0x247c9,CUS_0x749e,Standard -0x247d5,CUS_0x70bf,Standard -0x247e1,CUS_0x971a,High -0x247ed,CUS_0x8122,High -0x247f9,CUS_0x1c78,High -0x24805,CUS_0xc208,Standard -0x24811,CUS_0x4b76,Low -0x2481d,CUS_0x5cb9,Low -0x24829,CUS_0x80ec,Standard -0x24835,CUS_0x4a45,High -0x24841,CUS_0x37e3,Low -0x2484d,CUS_0xac15,Standard -0x24859,CUS_0xab17,Standard -0x24865,CUS_0x2e90,Low -0x24871,CUS_0x194b,High -0x2487d,CUS_0xadf0,Low -0x24889,CUS_0x6ffa,Standard -0x24895,CUS_0x80ca,Standard -0x248a1,CUS_0x1a22,Standard -0x248ad,CUS_0x52b6,High -0x248b9,CUS_0x6566,Standard -0x248c5,CUS_0x998f,Low -0x248d1,CUS_0x96b4,High -0x248dd,CUS_0x7016,High -0x248e9,CUS_0x2f1c,Standard -0x248f5,CUS_0x519e,Standard -0x24901,CUS_0x802,High -0x2490d,CUS_0x2a05,High -0x24919,CUS_0x703d,Standard -0x24925,CUS_0x3237,High -0x24931,CUS_0x68a5,Standard -0x2493d,CUS_0xa74e,Low -0x24949,CUS_0x5db7,Standard -0x24955,CUS_0xa2cd,Low -0x24961,CUS_0x1216,High -0x2496d,CUS_0x71c1,Low -0x24979,CUS_0x33b0,Low -0x24985,CUS_0x83a7,Low -0x24991,CUS_0x87ee,Standard -0x2499d,CUS_0xdcb,Standard -0x249a9,CUS_0xc59d,Standard -0x249b5,CUS_0x4844,High -0x249c1,CUS_0xb5ea,Standard -0x249cd,CUS_0x82d5,High -0x249d9,CUS_0xae6a,Low -0x249e5,CUS_0x5746,Low -0x249f1,CUS_0x8b26,Standard -0x249fd,CUS_0x8a40,High -0x24a09,CUS_0x26ff,Standard -0x24a15,CUS_0x4a96,Standard -0x24a21,CUS_0x11d9,Low -0x24a2d,CUS_0x754e,High -0x24a39,CUS_0xf70,Standard -0x24a45,CUS_0x104f,Standard -0x24a51,CUS_0x32cc,Low -0x24a5d,CUS_0x674a,Low -0x24a69,CUS_0x939,Standard -0x24a75,CUS_0x5a1b,Standard -0x24a81,CUS_0x8f4f,High -0x24a8d,CUS_0x54d4,High -0x24a99,CUS_0x2baf,High -0x24aa5,CUS_0x57c9,Standard -0x24ab1,CUS_0xb91a,High -0x24abd,CUS_0xbca6,High -0x24ac9,CUS_0xb227,Standard -0x24ad5,CUS_0x74f7,Standard -0x24ae1,CUS_0x9f5c,High -0x24aed,CUS_0x56a,Standard -0x24af9,CUS_0xd3a,High -0x24b05,CUS_0x2da6,Standard -0x24b11,CUS_0xbe2,Standard -0x24b1d,CUS_0x75f0,Standard -0x24b29,CUS_0x2ad4,Standard -0x24b35,CUS_0x2f8c,High -0x24b41,CUS_0x8fee,Standard -0x24b4d,CUS_0x99b9,Low -0x24b59,CUS_0x5ee8,High -0x24b65,CUS_0x9165,Low -0x24b71,CUS_0x6992,Standard -0x24b7d,CUS_0x1883,High -0x24b89,CUS_0x8e4d,Standard -0x24b95,CUS_0x7720,High -0x24ba1,CUS_0x899,High -0x24bad,CUS_0x106f,Low -0x24bb9,CUS_0xbf6b,Standard -0x24bc5,CUS_0x648c,Standard -0x24bd1,CUS_0x437a,Standard -0x24bdd,CUS_0x83eb,Low -0x24be9,CUS_0x5964,Standard -0x24bf5,CUS_0xbe4d,Standard -0x24c01,CUS_0x30dd,High -0x24c0d,CUS_0x9394,Standard -0x24c19,CUS_0xa2f9,Standard -0x24c25,CUS_0x9a3b,Standard -0x24c31,CUS_0xb019,Standard -0x24c3d,CUS_0xb5da,Standard -0x24c49,CUS_0x8bf2,High -0x24c55,CUS_0x4c5,Low -0x24c61,CUS_0xa4e0,Standard -0x24c6d,CUS_0x6ff5,Low -0x24c79,CUS_0x6f7b,Standard -0x24c85,CUS_0x2cad,Standard -0x24c91,CUS_0x43be,Standard -0x24c9d,CUS_0x51b2,High -0x24ca9,CUS_0x812d,High -0x24cb5,CUS_0xb637,Standard -0x24cc1,CUS_0x77bf,Low -0x24ccd,CUS_0x289e,Standard -0x24cd9,CUS_0x43bf,Low -0x24ce5,CUS_0x80ed,High -0x24cf1,CUS_0x49d9,Low -0x24cfd,CUS_0x206b,High -0x24d09,CUS_0xb19f,Low -0x24d15,CUS_0x2b3b,Standard -0x24d21,CUS_0xb369,Standard -0x24d2d,CUS_0xb005,Low -0x24d39,CUS_0x884,Standard -0x24d45,CUS_0x1a5c,Standard -0x24d51,CUS_0xa59,High -0x24d5d,CUS_0x269c,Standard -0x24d69,CUS_0x38b6,High -0x24d75,CUS_0xbeb8,High -0x24d81,CUS_0x917d,Low -0x24d8d,CUS_0x67e7,High -0x24d99,CUS_0x37a1,Standard -0x24da5,CUS_0x1837,High -0x24db1,CUS_0x88fd,Standard -0x24dbd,CUS_0x93ad,High -0x24dc9,CUS_0x9288,Standard -0x24dd5,CUS_0x386c,Low -0x24de1,CUS_0x9fd8,Standard -0x24ded,CUS_0x5260,Standard -0x24df9,CUS_0x2e2e,Standard -0x24e05,CUS_0x8b8e,Standard -0x24e11,CUS_0x8d5d,Standard -0x24e1d,CUS_0x8135,Low -0x24e29,CUS_0x467e,Low -0x24e35,CUS_0x9117,Standard -0x24e41,CUS_0x5b8,Standard -0x24e4d,CUS_0x599e,Low -0x24e59,CUS_0x8d01,Low -0x24e65,CUS_0x6a81,High -0x24e71,CUS_0x5257,Standard -0x24e7d,CUS_0x45e2,Standard -0x24e89,CUS_0x744b,High -0x24e95,CUS_0x1521,Standard -0x24ea1,CUS_0x613c,Standard -0x24ead,CUS_0x9584,High -0x24eb9,CUS_0xaa9d,Low -0x24ec5,CUS_0x5494,High -0x24ed1,CUS_0x93a0,High -0x24edd,CUS_0x8f34,Standard -0x24ee9,CUS_0x3b2b,Standard -0x24ef5,CUS_0x5b87,Standard -0x24f01,CUS_0x86ea,Low -0x24f0d,CUS_0x1ab7,High -0x24f19,CUS_0x7bf9,Standard -0x24f25,CUS_0x76d1,Low -0x24f31,CUS_0x659f,High -0x24f3d,CUS_0x1a06,Standard -0x24f49,CUS_0x16ee,High -0x24f55,CUS_0x79d1,Standard -0x24f61,CUS_0x271a,High -0x24f6d,CUS_0x5055,Standard -0x24f79,CUS_0xb451,High -0x24f85,CUS_0x4563,Low -0x24f91,CUS_0x6acb,High -0x24f9d,CUS_0xb407,Standard -0x24fa9,CUS_0xb1bf,Standard -0x24fb5,CUS_0x554,Standard -0x24fc1,CUS_0x78f,Standard -0x24fcd,CUS_0x87cb,High -0x24fd9,CUS_0x1ec2,Standard -0x24fe5,CUS_0x4271,Standard -0x24ff1,CUS_0x7438,Standard -0x24ffd,CUS_0x351f,Standard -0x25009,CUS_0x75a4,Low -0x25015,CUS_0x957e,High -0x25021,CUS_0x556,High -0x2502d,CUS_0x42d2,Standard -0x25039,CUS_0xa447,High -0x25045,CUS_0x5371,Standard -0x25051,CUS_0x5522,Standard -0x2505d,CUS_0xa015,Standard -0x25069,CUS_0xac41,High -0x25075,CUS_0x9154,High -0x25081,CUS_0x6c23,Standard -0x2508d,CUS_0x9f9,Standard -0x25099,CUS_0x89e,Standard -0x250a5,CUS_0x5911,High -0x250b1,CUS_0x5e00,High -0x250bd,CUS_0xebc,High -0x250c9,CUS_0x303d,Standard -0x250d5,CUS_0x25ea,High -0x250e1,CUS_0xa36d,High -0x250ed,CUS_0x3cb1,Standard -0x250f9,CUS_0x15cc,High -0x25105,CUS_0xa0f3,Low -0x25111,CUS_0x560e,Low -0x2511d,CUS_0xa2de,Standard -0x25129,CUS_0xbf53,High -0x25135,CUS_0x6671,High -0x25141,CUS_0xb44c,Standard -0x2514d,CUS_0x9f63,Standard -0x25159,CUS_0x40c8,High -0x25165,CUS_0x49c1,Standard -0x25171,CUS_0x387c,High -0x2517d,CUS_0x56ce,Standard -0x25189,CUS_0x3f99,Standard -0x25195,CUS_0xa3df,Low -0x251a1,CUS_0x7e3f,Standard -0x251ad,CUS_0x4021,Low -0x251b9,CUS_0xbb37,Low -0x251c5,CUS_0x43a4,Standard -0x251d1,CUS_0xb2c8,High -0x251dd,CUS_0x332b,Standard -0x251e9,CUS_0x8718,Standard -0x251f5,CUS_0x5587,High -0x25201,CUS_0x1807,Standard -0x2520d,CUS_0x5cf2,Standard -0x25219,CUS_0x3ed3,Standard -0x25225,CUS_0x2f69,Standard -0x25231,CUS_0x95d0,Low -0x2523d,CUS_0x215d,High -0x25249,CUS_0x52f1,Standard -0x25255,CUS_0x2fda,High -0x25261,CUS_0xa125,High -0x2526d,CUS_0x9708,Low -0x25279,CUS_0xac0d,Standard -0x25285,CUS_0x82be,Standard -0x25291,CUS_0x6a91,Standard -0x2529d,CUS_0xac7c,Standard -0x252a9,CUS_0xc39e,Standard -0x252b5,CUS_0x5488,Standard -0x252c1,CUS_0x2653,Standard -0x252cd,CUS_0x12fb,Standard -0x252d9,CUS_0xaf39,Standard -0x252e5,CUS_0x9e05,Standard -0x252f1,CUS_0xa7e9,Standard -0x252fd,CUS_0x3325,Low -0x25309,CUS_0x1f39,High -0x25315,CUS_0x61d3,High -0x25321,CUS_0x73bb,Standard -0x2532d,CUS_0x9759,Low -0x25339,CUS_0xab4a,High -0x25345,CUS_0x1fbd,Standard -0x25351,CUS_0xc436,Standard -0x2535d,CUS_0xc04,Standard -0x25369,CUS_0x5898,Standard -0x25375,CUS_0x379f,High -0x25381,CUS_0x4a6a,Standard -0x2538d,CUS_0xa1fc,High -0x25399,CUS_0x6daf,Standard -0x253a5,CUS_0x8d69,Standard -0x253b1,CUS_0x745b,Standard -0x253bd,CUS_0x46d7,Standard -0x253c9,CUS_0x3aab,Standard -0x253d5,CUS_0x482d,Standard -0x253e1,CUS_0x8a0d,Low -0x253ed,CUS_0xa1c5,Low -0x253f9,CUS_0x4ff8,Standard -0x25405,CUS_0x5bd8,Low -0x25411,CUS_0x50f7,High -0x2541d,CUS_0x3e34,High -0x25429,CUS_0xa3f4,Standard -0x25435,CUS_0x1c26,High -0x25441,CUS_0x215f,Standard -0x2544d,CUS_0x2e5e,Standard -0x25459,CUS_0x4159,High -0x25465,CUS_0x69be,Low -0x25471,CUS_0x20db,Standard -0x2547d,CUS_0x636b,Standard -0x25489,CUS_0x5602,High -0x25495,CUS_0x90d2,Standard -0x254a1,CUS_0x7813,Standard -0x254ad,CUS_0x335e,High -0x254b9,CUS_0x4fb1,High -0x254c5,CUS_0x4a02,Low -0x254d1,CUS_0x4b6b,Standard -0x254dd,CUS_0x3fbc,High -0x254e9,CUS_0x59cd,Standard -0x254f5,CUS_0x5e30,Standard -0x25501,CUS_0x89ff,High -0x2550d,CUS_0x6c24,High -0x25519,CUS_0x85cb,Standard -0x25525,CUS_0xc686,Standard -0x25531,CUS_0xaacd,Low -0x2553d,CUS_0x1abb,Standard -0x25549,CUS_0x810d,Low -0x25555,CUS_0x98ba,Standard -0x25561,CUS_0x5ff6,High -0x2556d,CUS_0xa455,Standard -0x25579,CUS_0x22a1,Standard -0x25585,CUS_0x42c3,Standard -0x25591,CUS_0x4c9,Standard -0x2559d,CUS_0x731c,Standard -0x255a9,CUS_0xa066,High -0x255b5,CUS_0x867e,High -0x255c1,CUS_0x7dc5,High -0x255cd,CUS_0xa568,Low -0x255d9,CUS_0x701f,Standard -0x255e5,CUS_0xb80d,High -0x255f1,CUS_0xa407,Standard -0x255fd,CUS_0x9d41,Standard -0x25609,CUS_0xb3d7,Standard -0x25615,CUS_0xb333,Standard -0x25621,CUS_0x6f5d,High -0x2562d,CUS_0x27df,Standard -0x25639,CUS_0x16a5,Standard -0x25645,CUS_0x5b2a,Low -0x25651,CUS_0x8fe0,Standard -0x2565d,CUS_0x2bc8,Standard -0x25669,CUS_0x2bc4,Standard -0x25675,CUS_0x4e80,Standard -0x25681,CUS_0xa762,Low -0x2568d,CUS_0x63db,Standard -0x25699,CUS_0xac4a,Standard -0x256a5,CUS_0x5665,Standard -0x256b1,CUS_0x6427,Standard -0x256bd,CUS_0x48ca,Low -0x256c9,CUS_0xb807,High -0x256d5,CUS_0x3d9c,Low -0x256e1,CUS_0x113e,High -0x256ed,CUS_0xa776,High -0x256f9,CUS_0xac85,High -0x25705,CUS_0x42ca,Standard -0x25711,CUS_0x3124,Low -0x2571d,CUS_0x6e9,Low -0x25729,CUS_0x8d43,High -0x25735,CUS_0x6701,Standard -0x25741,CUS_0x9d04,Standard -0x2574d,CUS_0xbb21,Standard -0x25759,CUS_0x1ab8,Standard -0x25765,CUS_0x9209,High -0x25771,CUS_0xac58,Standard -0x2577d,CUS_0x9330,Low -0x25789,CUS_0x5b6c,High -0x25795,CUS_0x5af6,Standard -0x257a1,CUS_0x9cdc,Low -0x257ad,CUS_0x9038,Standard -0x257b9,CUS_0x972a,Standard -0x257c5,CUS_0x21b7,Standard -0x257d1,CUS_0xacda,High -0x257dd,CUS_0xc195,Standard -0x257e9,CUS_0x95c9,High -0x257f5,CUS_0xa789,High -0x25801,CUS_0x1044,Standard -0x2580d,CUS_0x70d6,Standard -0x25819,CUS_0x6120,High -0x25825,CUS_0x797a,Low -0x25831,CUS_0x1130,Low -0x2583d,CUS_0x76fb,Standard -0x25849,CUS_0x1c83,Standard -0x25855,CUS_0x720e,High -0x25861,CUS_0x81e8,Standard -0x2586d,CUS_0x4ad5,Standard -0x25879,CUS_0x4c59,Standard -0x25885,CUS_0xdcc,High -0x25891,CUS_0x3278,Low -0x2589d,CUS_0x50c4,High -0x258a9,CUS_0xbf23,Standard -0x258b5,CUS_0x38c2,Standard -0x258c1,CUS_0x29f5,Standard -0x258cd,CUS_0xab5f,Standard -0x258d9,CUS_0xa42f,High -0x258e5,CUS_0xa756,Standard -0x258f1,CUS_0x7d4d,Standard -0x258fd,CUS_0x828b,Standard -0x25909,CUS_0x231f,Standard -0x25915,CUS_0x5cc4,High -0x25921,CUS_0x5fbb,High -0x2592d,CUS_0x7bec,Standard -0x25939,CUS_0x1e84,Low -0x25945,CUS_0x5606,Standard -0x25951,CUS_0x5fcb,Standard -0x2595d,CUS_0x3e03,Standard -0x25969,CUS_0xbd2e,High -0x25975,CUS_0xc675,High -0x25981,CUS_0x5054,Low -0x2598d,CUS_0x27e5,Standard -0x25999,CUS_0x2002,Standard -0x259a5,CUS_0x6f95,Standard -0x259b1,CUS_0x1f97,Standard -0x259bd,CUS_0xbf18,Standard -0x259c9,CUS_0x9efc,Standard -0x259d5,CUS_0xb5b5,High -0x259e1,CUS_0x85a2,High -0x259ed,CUS_0x8c51,Low -0x259f9,CUS_0x5f5a,Standard -0x25a05,CUS_0x16b6,Low -0x25a11,CUS_0x531a,Standard -0x25a1d,CUS_0x50e9,Standard -0x25a29,CUS_0xb57,High -0x25a35,CUS_0x523e,Standard -0x25a41,CUS_0x9f04,Standard -0x25a4d,CUS_0x21d8,Standard -0x25a59,CUS_0x2274,Standard -0x25a65,CUS_0xc633,Standard -0x25a71,CUS_0xb5e4,High -0x25a7d,CUS_0xc429,Standard -0x25a89,CUS_0x4e14,Low -0x25a95,CUS_0x2d37,Standard -0x25aa1,CUS_0x46a2,Standard -0x25aad,CUS_0x55f0,Standard -0x25ab9,CUS_0x8eb8,Standard -0x25ac5,CUS_0x22c4,Standard -0x25ad1,CUS_0x4dc9,Standard -0x25add,CUS_0xbb53,High -0x25ae9,CUS_0x9ed9,Standard -0x25af5,CUS_0x50d4,High -0x25b01,CUS_0xffd,Standard -0x25b0d,CUS_0x4c9a,High -0x25b19,CUS_0xa93b,Standard -0x25b25,CUS_0x8848,High -0x25b31,CUS_0x6334,Standard -0x25b3d,CUS_0xb59b,Low -0x25b49,CUS_0x5e3f,High -0x25b55,CUS_0x2954,Standard -0x25b61,CUS_0x407e,Standard -0x25b6d,CUS_0xbc38,Standard -0x25b79,CUS_0x56e5,Standard -0x25b85,CUS_0xb997,Standard -0x25b91,CUS_0x7701,Low -0x25b9d,CUS_0x509d,Standard -0x25ba9,CUS_0xa66c,Low -0x25bb5,CUS_0xbce0,Standard -0x25bc1,CUS_0x52ee,Standard -0x25bcd,CUS_0x48a,Low -0x25bd9,CUS_0x6c58,Standard -0x25be5,CUS_0x41d3,Low -0x25bf1,CUS_0x5b77,Standard -0x25bfd,CUS_0x4af4,Standard -0x25c09,CUS_0x4bff,Standard -0x25c15,CUS_0x2cb5,Standard -0x25c21,CUS_0x436f,Standard -0x25c2d,CUS_0x870c,Low -0x25c39,CUS_0x6044,Standard -0x25c45,CUS_0x163c,Low -0x25c51,CUS_0x7a7d,High -0x25c5d,CUS_0x965d,Low -0x25c69,CUS_0x3f82,High -0x25c75,CUS_0x7b65,Standard -0x25c81,CUS_0x90a1,Standard -0x25c8d,CUS_0xdfd,High -0x25c99,CUS_0x74e7,Standard -0x25ca5,CUS_0x62f4,High -0x25cb1,CUS_0xdca,High -0x25cbd,CUS_0x3397,Standard -0x25cc9,CUS_0x3f2d,Low -0x25cd5,CUS_0x450,Standard -0x25ce1,CUS_0x1956,Standard -0x25ced,CUS_0x862b,Standard -0x25cf9,CUS_0x290c,High -0x25d05,CUS_0xb5c3,Standard -0x25d11,CUS_0x504e,Standard -0x25d1d,CUS_0x10f9,Standard -0x25d29,CUS_0xbbdd,Standard -0x25d35,CUS_0x85dd,Standard -0x25d41,CUS_0xc22f,Standard -0x25d4d,CUS_0x2637,Standard -0x25d59,CUS_0x4f88,High -0x25d65,CUS_0x650,Standard -0x25d71,CUS_0x1b3b,Low -0x25d7d,CUS_0x4c83,Standard -0x25d89,CUS_0x544,Low -0x25d95,CUS_0x94de,Low -0x25da1,CUS_0x5d6d,Standard -0x25dad,CUS_0x2829,Standard -0x25db9,CUS_0xae66,High -0x25dc5,CUS_0x738b,Low -0x25dd1,CUS_0x296f,High -0x25ddd,CUS_0x1d9e,Low -0x25de9,CUS_0x2e91,Standard -0x25df5,CUS_0x30fc,Standard -0x25e01,CUS_0xb09,Standard -0x25e0d,CUS_0xbd8f,High -0x25e19,CUS_0x68ea,Low -0x25e25,CUS_0x1132,High -0x25e31,CUS_0x1ea8,Standard -0x25e3d,CUS_0xc394,Standard -0x25e49,CUS_0xadbd,Standard -0x25e55,CUS_0x11c7,Low -0x25e61,CUS_0x6294,Standard -0x25e6d,CUS_0x9674,High -0x25e79,CUS_0x9ce3,High -0x25e85,CUS_0x4a8f,High -0x25e91,CUS_0x1b07,Standard -0x25e9d,CUS_0xc345,Standard -0x25ea9,CUS_0x90ac,Standard -0x25eb5,CUS_0x62f5,Low -0x25ec1,CUS_0x334b,Standard -0x25ecd,CUS_0x1232,Standard -0x25ed9,CUS_0x64f0,Standard -0x25ee5,CUS_0x40ad,High -0x25ef1,CUS_0x2c0a,Standard -0x25efd,CUS_0x8788,Standard -0x25f09,CUS_0x944e,Low -0x25f15,CUS_0x3048,High -0x25f21,CUS_0x1285,Standard -0x25f2d,CUS_0x1d18,Standard -0x25f39,CUS_0x3855,Low -0x25f45,CUS_0x47fa,Standard -0x25f51,CUS_0x89aa,Standard -0x25f5d,CUS_0x4986,Low -0x25f69,CUS_0xa053,Standard -0x25f75,CUS_0x1619,High -0x25f81,CUS_0x2654,Low -0x25f8d,CUS_0xb11c,High -0x25f99,CUS_0xad4f,Low -0x25fa5,CUS_0x51b3,Standard -0x25fb1,CUS_0x2084,Standard -0x25fbd,CUS_0x372c,Low -0x25fc9,CUS_0xf16,Low -0x25fd5,CUS_0xaf61,Standard -0x25fe1,CUS_0x8600,Standard -0x25fed,CUS_0x942c,High +applicant_id,customer_key,premium_risk +0x1609,CUS_0xd40,Low +0x1615,CUS_0x21b1,Low +0x1621,CUS_0x2dbc,Low +0x162d,CUS_0xb891,Low +0x1639,CUS_0x1cdb,Standard +0x1645,CUS_0x95ee,Low +0x1651,CUS_0x284a,Low +0x165d,CUS_0x5407,High +0x1669,CUS_0x4157,Standard +0x1675,CUS_0xba08,Low +0x1681,CUS_0xa66b,Standard +0x168d,CUS_0xc0ab,Low +0x1699,CUS_0x3e45,Standard +0x16a5,CUS_0x6c66,High +0x16b1,CUS_0xff4,Standard +0x16bd,CUS_0x33d2,Standard +0x16c9,CUS_0x6070,High +0x16d5,CUS_0xfdb,Standard +0x16e1,CUS_0x3553,Low +0x16ed,CUS_0x4100,Standard +0x16f9,CUS_0x132f,High +0x1705,CUS_0xa16e,High +0x1711,CUS_0xac86,Low +0x171d,CUS_0x5b48,High +0x1729,CUS_0xa5f9,High +0x1735,CUS_0x4d43,Standard +0x1741,CUS_0xb95f,High +0x174d,CUS_0x3edc,Standard +0x1759,CUS_0xbffe,Standard +0x1765,CUS_0xb681,High +0x1771,CUS_0x9a71,Low +0x177d,CUS_0x6048,High +0x1789,CUS_0x95b5,Standard +0x1795,CUS_0x4004,Standard +0x17a1,CUS_0xb101,Low +0x17ad,CUS_0x9b94,Standard +0x17b9,CUS_0x4080,High +0x17c5,CUS_0x706a,Standard +0x17d1,CUS_0x42ac,High +0x17dd,CUS_0x571f,Standard +0x17e9,CUS_0xb5ff,Standard +0x17f5,CUS_0x6a1b,Standard +0x1801,CUS_0x9bc1,Standard +0x180d,CUS_0xc65,Low +0x1819,CUS_0xaedb,Low +0x1825,CUS_0x8e9b,Standard +0x1831,CUS_0x609d,High +0x183d,CUS_0x75c6,Low +0x1849,CUS_0x9b3c,Standard +0x1855,CUS_0x22a3,Standard +0x1861,CUS_0xb14,High +0x186d,CUS_0xb986,Standard +0x1879,CUS_0xbe1b,High +0x1885,CUS_0x9ce6,Standard +0x1891,CUS_0x6ffb,Standard +0x189d,CUS_0x4315,Standard +0x18a9,CUS_0x3f5b,Standard +0x18b5,CUS_0x9d78,Standard +0x18c1,CUS_0x47db,High +0x18cd,CUS_0x8f17,High +0x18d9,CUS_0x7d0b,High +0x18e5,CUS_0x7504,Standard +0x18f1,CUS_0x774,Low +0x18fd,CUS_0x9f70,Low +0x1909,CUS_0xab76,Standard +0x1915,CUS_0x5cdf,Standard +0x1921,CUS_0x2184,Standard +0x192d,CUS_0xa156,High +0x1939,CUS_0x74f2,Standard +0x1945,CUS_0x308b,High +0x1951,CUS_0x2827,Low +0x195d,CUS_0xa295,Standard +0x1969,CUS_0x6c2e,Low +0x1975,CUS_0x384c,Standard +0x1981,CUS_0x6cbb,Standard +0x198d,CUS_0x36ab,Standard +0x1999,CUS_0x6649,Standard +0x19a5,CUS_0x6856,Low +0x19b1,CUS_0xa27e,Standard +0x19bd,CUS_0x700d,High +0x19c9,CUS_0x78e0,Standard +0x19d5,CUS_0x6794,Low +0x19e1,CUS_0xe2c,Standard +0x19ed,CUS_0x36bb,Low +0x19f9,CUS_0xa77f,Standard +0x1a05,CUS_0x1e70,Standard +0x1a11,CUS_0xa335,High +0x1a1d,CUS_0x71e0,Standard +0x1a29,CUS_0x4af0,Standard +0x1a35,CUS_0x3861,Standard +0x1a41,CUS_0x240d,Low +0x1a4d,CUS_0x2652,Low +0x1a59,CUS_0x259a,High +0x1a65,CUS_0x28b5,Standard +0x1a71,CUS_0x8643,High +0x1a7d,CUS_0x12d5,Standard +0x1a89,CUS_0x3f04,Low +0x1a95,CUS_0x62c6,Standard +0x1aa1,CUS_0x398d,Standard +0x1aad,CUS_0x618b,High +0x1ab9,CUS_0x7250,Low +0x1ac5,CUS_0x6435,Standard +0x1ad1,CUS_0xb6ad,High +0x1add,CUS_0x7878,Standard +0x1ae9,CUS_0x35b5,High +0x1af5,CUS_0x7a0f,High +0x1b01,CUS_0x1c09,Standard +0x1b0d,CUS_0x2c0d,High +0x1b19,CUS_0x9073,Standard +0x1b25,CUS_0x2813,Standard +0x1b31,CUS_0xac93,High +0x1b3d,CUS_0x8c69,Low +0x1b49,CUS_0x365a,High +0x1b55,CUS_0x7586,Standard +0x1b61,CUS_0x9c67,Standard +0x1b6d,CUS_0x7caf,Low +0x1b79,CUS_0xa2f7,High +0x1b85,CUS_0x5e17,High +0x1b91,CUS_0x1288,High +0x1b9d,CUS_0x567b,Standard +0x1ba9,CUS_0x2365,High +0x1bb5,CUS_0x8a04,Standard +0x1bc1,CUS_0x6015,High +0x1bcd,CUS_0x21e6,Standard +0x1bd9,CUS_0xa9a6,Standard +0x1be5,CUS_0x3187,Standard +0x1bf1,CUS_0x3fbf,Standard +0x1bfd,CUS_0x953c,Low +0x1c09,CUS_0x4aaa,Standard +0x1c15,CUS_0x2947,Standard +0x1c21,CUS_0x30e0,Standard +0x1c2d,CUS_0xc3b7,High +0x1c39,CUS_0x1e9b,High +0x1c45,CUS_0x3b88,Standard +0x1c51,CUS_0xae51,Standard +0x1c5d,CUS_0xb7ef,Standard +0x1c69,CUS_0xb288,Standard +0x1c75,CUS_0x7a22,Standard +0x1c81,CUS_0x9495,High +0x1c8d,CUS_0x64f1,Standard +0x1c99,CUS_0x6749,High +0x1ca5,CUS_0xc1c9,Low +0x1cb1,CUS_0x230a,Low +0x1cbd,CUS_0x8928,Standard +0x1cc9,CUS_0x682f,Standard +0x1cd5,CUS_0x4831,Low +0x1ce1,CUS_0x32a5,Standard +0x1ced,CUS_0x710f,High +0x1cf9,CUS_0xa54b,Low +0x1d05,CUS_0x564a,High +0x1d11,CUS_0xb000,Standard +0x1d1d,CUS_0x2584,Standard +0x1d29,CUS_0x5a3f,Low +0x1d35,CUS_0xc341,Low +0x1d41,CUS_0x1a96,Low +0x1d4d,CUS_0xb7a1,Standard +0x1d59,CUS_0x31d5,Low +0x1d65,CUS_0x45f7,Standard +0x1d71,CUS_0x6617,Low +0x1d7d,CUS_0x5b80,Standard +0x1d89,CUS_0xa548,High +0x1d95,CUS_0xb9ea,Standard +0x1da1,CUS_0x54c0,Standard +0x1dad,CUS_0x258b,High +0x1db9,CUS_0x4bb4,High +0x1dc5,CUS_0x8e75,High +0x1dd1,CUS_0xf95,Standard +0x1ddd,CUS_0x4028,Standard +0x1de9,CUS_0x8db8,Standard +0x1df5,CUS_0x1e63,High +0x1e01,CUS_0x4948,Standard +0x1e0d,CUS_0xc37b,High +0x1e19,CUS_0xfcc,Standard +0x1e25,CUS_0x64ce,Standard +0x1e31,CUS_0x9574,High +0x1e3d,CUS_0xbc88,Standard +0x1e49,CUS_0x661b,Standard +0x1e55,CUS_0xc51,Standard +0x1e61,CUS_0x9536,Standard +0x1e6d,CUS_0xc5a0,Standard +0x1e79,CUS_0xb282,Low +0x1e85,CUS_0xb9b8,Low +0x1e91,CUS_0x3e81,Standard +0x1e9d,CUS_0x3702,Standard +0x1ea9,CUS_0x8a0f,High +0x1eb5,CUS_0x21be,Standard +0x1ec1,CUS_0x8c1f,Standard +0x1ecd,CUS_0x67e1,Low +0x1ed9,CUS_0x1c06,High +0x1ee5,CUS_0x5761,High +0x1ef1,CUS_0x9a4a,Standard +0x1efd,CUS_0x100b,Standard +0x1f09,CUS_0x6325,High +0x1f15,CUS_0x4e3c,Standard +0x1f21,CUS_0xb217,Standard +0x1f2d,CUS_0xb374,Standard +0x1f39,CUS_0x1d4e,Standard +0x1f45,CUS_0x8a4b,Standard +0x1f51,CUS_0x93ff,High +0x1f5d,CUS_0x3e2d,High +0x1f69,CUS_0x493c,Low +0x1f75,CUS_0x88a0,Standard +0x1f81,CUS_0x543f,High +0x1f8d,CUS_0x9f7e,Standard +0x1f99,CUS_0x23a6,Standard +0x1fa5,CUS_0xa874,Standard +0x1fb1,CUS_0x4ea5,Standard +0x1fbd,CUS_0x8208,Low +0x1fc9,CUS_0xb35f,Standard +0x1fd5,CUS_0x8696,Standard +0x1fe1,CUS_0x49da,Standard +0x1fed,CUS_0x5d94,Low +0x1ff9,CUS_0x3ef5,High +0x2005,CUS_0xbda3,High +0x2011,CUS_0x29fd,High +0x201d,CUS_0xbbf3,Low +0x2029,CUS_0x2c31,Low +0x2035,CUS_0xb4be,Standard +0x2041,CUS_0xa203,High +0x204d,CUS_0xa7c3,Standard +0x2059,CUS_0x76e7,High +0x2065,CUS_0x46d4,Standard +0x2071,CUS_0x396e,Standard +0x207d,CUS_0x74f5,Standard +0x2089,CUS_0xb9e5,Standard +0x2095,CUS_0xacbe,Standard +0x20a1,CUS_0x9951,Standard +0x20ad,CUS_0xbcb9,Low +0x20b9,CUS_0xae95,Standard +0x20c5,CUS_0x1f9e,Standard +0x20d1,CUS_0x2242,High +0x20dd,CUS_0x3e85,Standard +0x20e9,CUS_0xa47,High +0x20f5,CUS_0xaa40,Standard +0x2101,CUS_0x1452,High +0x210d,CUS_0x76cf,High +0x2119,CUS_0x703f,Standard +0x2125,CUS_0x572,Standard +0x2131,CUS_0x104e,Standard +0x213d,CUS_0x6f38,High +0x2149,CUS_0x7b3c,Standard +0x2155,CUS_0x709d,High +0x2161,CUS_0xc434,Standard +0x216d,CUS_0x8a12,Standard +0x2179,CUS_0x4eb4,Standard +0x2185,CUS_0xab00,Standard +0x2191,CUS_0x8c9a,Low +0x219d,CUS_0x2c5e,High +0x21a9,CUS_0x70d5,Standard +0x21b5,CUS_0xb052,Standard +0x21c1,CUS_0x7c34,Standard +0x21cd,CUS_0x4256,Low +0x21d9,CUS_0x4f04,Low +0x21e5,CUS_0x41b7,Standard +0x21f1,CUS_0x9095,High +0x21fd,CUS_0xa05f,High +0x2209,CUS_0x309d,High +0x2215,CUS_0xa522,Standard +0x2221,CUS_0x8a6e,Standard +0x222d,CUS_0x77d1,High +0x2239,CUS_0xde6,Low +0x2245,CUS_0xa672,Standard +0x2251,CUS_0x8caf,High +0x225d,CUS_0x4655,Low +0x2269,CUS_0x25aa,Standard +0x2275,CUS_0xbd08,High +0x2281,CUS_0x6b44,Standard +0x228d,CUS_0x7517,High +0x2299,CUS_0x5228,Standard +0x22a5,CUS_0x2e6e,High +0x22b1,CUS_0x280b,Standard +0x22bd,CUS_0x51b4,High +0x22c9,CUS_0xa1d6,High +0x22d5,CUS_0x8b12,Standard +0x22e1,CUS_0xa459,High +0x22ed,CUS_0xf23,Low +0x22f9,CUS_0x7cfc,Standard +0x2305,CUS_0x728f,Low +0x2311,CUS_0xd05,Low +0x231d,CUS_0x3cf7,High +0x2329,CUS_0xa71a,Standard +0x2335,CUS_0x32ce,High +0x2341,CUS_0x9b4c,Standard +0x234d,CUS_0x4330,Standard +0x2359,CUS_0xf59,Low +0x2365,CUS_0x9a58,Low +0x2371,CUS_0x409e,Low +0x237d,CUS_0x532d,Standard +0x2389,CUS_0xadb7,High +0x2395,CUS_0xa9ca,High +0x23a1,CUS_0x69a9,Standard +0x23ad,CUS_0x7dfb,High +0x23b9,CUS_0x479,Standard +0x23c5,CUS_0x3b5d,Standard +0x23d1,CUS_0x9167,Standard +0x23dd,CUS_0x4a5b,Standard +0x23e9,CUS_0xfdd,Standard +0x23f5,CUS_0x4883,Low +0x2401,CUS_0x6387,Standard +0x240d,CUS_0xd83,Standard +0x2419,CUS_0x3ce3,Low +0x2425,CUS_0xa706,Standard +0x2431,CUS_0x9983,Standard +0x243d,CUS_0x2877,High +0x2449,CUS_0x1df1,Standard +0x2455,CUS_0x4223,High +0x2461,CUS_0x3f47,High +0x246d,CUS_0x86b,High +0x2479,CUS_0x98f9,Standard +0x2485,CUS_0x46eb,Standard +0x2491,CUS_0x1863,Standard +0x249d,CUS_0x481f,High +0x24a9,CUS_0x79b,Standard +0x24b5,CUS_0xbf19,Standard +0x24c1,CUS_0xa501,Standard +0x24cd,CUS_0x2602,Standard +0x24d9,CUS_0x96e,Low +0x24e5,CUS_0x864a,Standard +0x24f1,CUS_0x56d1,Low +0x24fd,CUS_0xae0e,High +0x2509,CUS_0x3b3f,High +0x2515,CUS_0x9bc4,High +0x2521,CUS_0x62a4,Standard +0x252d,CUS_0x4c77,High +0x2539,CUS_0x62f0,Standard +0x2545,CUS_0x342a,Standard +0x2551,CUS_0x7597,High +0x255d,CUS_0xbb6e,Standard +0x2569,CUS_0x7c55,Standard +0x2575,CUS_0xa835,Low +0x2581,CUS_0x467f,High +0x258d,CUS_0x7590,Standard +0x2599,CUS_0x515a,Standard +0x25a5,CUS_0x114a,Standard +0x25b1,CUS_0x49dd,Standard +0x25bd,CUS_0x6346,Low +0x25c9,CUS_0x481c,Standard +0x25d5,CUS_0xa1ea,Standard +0x25e1,CUS_0x70b2,Low +0x25ed,CUS_0xc365,Standard +0x25f9,CUS_0x8efa,Standard +0x2605,CUS_0x9783,Standard +0x2611,CUS_0x6a17,High +0x261d,CUS_0x8c03,Standard +0x2629,CUS_0xadf6,Standard +0x2635,CUS_0xa166,Standard +0x2641,CUS_0x7d27,Low +0x264d,CUS_0x5698,High +0x2659,CUS_0x51e,Standard +0x2665,CUS_0xab3b,Standard +0x2671,CUS_0xf43,High +0x267d,CUS_0x345b,Standard +0x2689,CUS_0x4c34,Standard +0x2695,CUS_0x3d51,Low +0x26a1,CUS_0x9fff,Standard +0x26ad,CUS_0xa41e,High +0x26b9,CUS_0x797d,Standard +0x26c5,CUS_0x9c4,High +0x26d1,CUS_0x9d0d,Standard +0x26dd,CUS_0x602d,Standard +0x26e9,CUS_0x63dd,High +0x26f5,CUS_0x3f27,Standard +0x2701,CUS_0x67ff,High +0x270d,CUS_0xc247,Standard +0x2719,CUS_0xc723,Standard +0x2725,CUS_0xa213,High +0x2731,CUS_0x6065,Standard +0x273d,CUS_0x7f61,Standard +0x2749,CUS_0xb563,Standard +0x2755,CUS_0x47b2,Standard +0x2761,CUS_0x9338,Standard +0x276d,CUS_0x6102,Standard +0x2779,CUS_0x5794,Standard +0x2785,CUS_0xa560,Low +0x2791,CUS_0x7fe3,High +0x279d,CUS_0x4c3e,Low +0x27a9,CUS_0x41e4,High +0x27b5,CUS_0x2484,Standard +0x27c1,CUS_0xb560,Standard +0x27cd,CUS_0x4e8b,Standard +0x27d9,CUS_0x8b96,Standard +0x27e5,CUS_0x9b60,Standard +0x27f1,CUS_0xaf23,Standard +0x27fd,CUS_0xbda2,Low +0x2809,CUS_0x82cc,Standard +0x2815,CUS_0x7812,Low +0x2821,CUS_0xc23d,Standard +0x282d,CUS_0x93bb,High +0x2839,CUS_0x46e6,High +0x2845,CUS_0x5ccb,High +0x2851,CUS_0x3ca6,Standard +0x285d,CUS_0xc081,Standard +0x2869,CUS_0x6345,High +0x2875,CUS_0xc6bb,Standard +0x2881,CUS_0x683,Standard +0x288d,CUS_0x20e0,Standard +0x2899,CUS_0x3af5,Standard +0x28a5,CUS_0xa9e3,High +0x28b1,CUS_0x3fa8,Low +0x28bd,CUS_0x791e,Standard +0x28c9,CUS_0x9953,High +0x28d5,CUS_0xaf1b,High +0x28e1,CUS_0x8153,Low +0x28ed,CUS_0x51b,Low +0x28f9,CUS_0x2b8e,Low +0x2905,CUS_0x264c,Standard +0x2911,CUS_0x2e31,Standard +0x291d,CUS_0x4f13,Standard +0x2929,CUS_0x9eec,Low +0x2935,CUS_0x5fbf,High +0x2941,CUS_0x4c1e,Standard +0x294d,CUS_0xaac3,Low +0x2959,CUS_0x2041,Standard +0x2965,CUS_0xc5d6,High +0x2971,CUS_0x7b15,Standard +0x297d,CUS_0x80b1,Standard +0x2989,CUS_0xa6e4,High +0x2995,CUS_0x942a,Low +0x29a1,CUS_0xe94,Low +0x29ad,CUS_0x5d7e,High +0x29b9,CUS_0x3474,Standard +0x29c5,CUS_0xad9d,Standard +0x29d1,CUS_0x9776,High +0x29dd,CUS_0x6632,Low +0x29e9,CUS_0x6d4,Standard +0x29f5,CUS_0x2db7,Standard +0x2a01,CUS_0x4bdf,Standard +0x2a0d,CUS_0x3ba2,High +0x2a19,CUS_0x4d26,High +0x2a25,CUS_0x247e,Standard +0x2a31,CUS_0x3d41,Standard +0x2a3d,CUS_0x438b,Standard +0x2a49,CUS_0xa9a9,Standard +0x2a55,CUS_0x68c8,Standard +0x2a61,CUS_0x7799,Standard +0x2a6d,CUS_0x7888,Standard +0x2a79,CUS_0x1d3e,Standard +0x2a85,CUS_0xa83a,Standard +0x2a91,CUS_0x43c6,Standard +0x2a9d,CUS_0x534a,Low +0x2aa9,CUS_0x8d4f,High +0x2ab5,CUS_0xa45d,Standard +0x2ac1,CUS_0x7f32,Standard +0x2acd,CUS_0x303a,High +0x2ad9,CUS_0x8a5c,High +0x2ae5,CUS_0x36d5,Standard +0x2af1,CUS_0x5155,High +0x2afd,CUS_0x1e6b,High +0x2b09,CUS_0x6514,Standard +0x2b15,CUS_0x92ef,Standard +0x2b21,CUS_0xc3d6,High +0x2b2d,CUS_0x33f0,Standard +0x2b39,CUS_0x32e5,Standard +0x2b45,CUS_0xa8e7,Standard +0x2b51,CUS_0x90d6,Standard +0x2b5d,CUS_0x65f6,Standard +0x2b69,CUS_0xbbff,Standard +0x2b75,CUS_0x144d,Standard +0x2b81,CUS_0x4a74,Standard +0x2b8d,CUS_0xa6d9,Standard +0x2b99,CUS_0x3f5f,High +0x2ba5,CUS_0x29b2,Standard +0x2bb1,CUS_0x58d0,Standard +0x2bbd,CUS_0x768c,High +0x2bc9,CUS_0x32b1,Standard +0x2bd5,CUS_0x17f3,Standard +0x2be1,CUS_0x8831,Standard +0x2bed,CUS_0x83a4,High +0x2bf9,CUS_0x5db1,Standard +0x2c05,CUS_0x58f,Standard +0x2c11,CUS_0x437c,Standard +0x2c1d,CUS_0x28df,High +0x2c29,CUS_0x5e3b,High +0x2c35,CUS_0x2e15,High +0x2c41,CUS_0x52e7,Standard +0x2c4d,CUS_0xc4c9,Standard +0x2c59,CUS_0xac39,Standard +0x2c65,CUS_0x448c,High +0x2c71,CUS_0x2719,Standard +0x2c7d,CUS_0x76d4,Standard +0x2c89,CUS_0xae79,Standard +0x2c95,CUS_0x695e,Low +0x2ca1,CUS_0x1b41,Standard +0x2cad,CUS_0x75b1,Standard +0x2cb9,CUS_0x11d1,Standard +0x2cc5,CUS_0x278b,Standard +0x2cd1,CUS_0xed3,Standard +0x2cdd,CUS_0x1f96,Low +0x2ce9,CUS_0x3ea1,High +0x2cf5,CUS_0x5624,Standard +0x2d01,CUS_0x5719,Standard +0x2d0d,CUS_0x136b,Standard +0x2d19,CUS_0x122c,Low +0x2d25,CUS_0x41cc,Standard +0x2d31,CUS_0x36c7,Standard +0x2d3d,CUS_0x143c,Standard +0x2d49,CUS_0x4e5,Standard +0x2d55,CUS_0x68b5,Standard +0x2d61,CUS_0xc055,Standard +0x2d6d,CUS_0x3069,Low +0x2d79,CUS_0x8484,Low +0x2d85,CUS_0x4038,Low +0x2d91,CUS_0x9dc3,Standard +0x2d9d,CUS_0xc64e,High +0x2da9,CUS_0x2451,High +0x2db5,CUS_0x86be,High +0x2dc1,CUS_0x2db4,High +0x2dcd,CUS_0x6902,High +0x2dd9,CUS_0x69ff,High +0x2de5,CUS_0xaec2,High +0x2df1,CUS_0x963,Standard +0x2dfd,CUS_0x609f,Standard +0x2e09,CUS_0x4236,Low +0x2e15,CUS_0x1680,High +0x2e21,CUS_0x3231,Standard +0x2e2d,CUS_0xb87a,Low +0x2e39,CUS_0xb271,Standard +0x2e45,CUS_0x904,High +0x2e51,CUS_0x8974,Standard +0x2e5d,CUS_0x9e28,High +0x2e69,CUS_0x90cb,Standard +0x2e75,CUS_0x466e,Standard +0x2e81,CUS_0x666a,Low +0x2e8d,CUS_0x1a5a,Standard +0x2e99,CUS_0xa0b,High +0x2ea5,CUS_0x9784,Low +0x2eb1,CUS_0x627e,Standard +0x2ebd,CUS_0x1325,High +0x2ec9,CUS_0x6732,Low +0x2ed5,CUS_0x5ce6,High +0x2ee1,CUS_0x2fe4,Low +0x2eed,CUS_0x393f,High +0x2ef9,CUS_0x4354,Low +0x2f05,CUS_0xaf3b,Standard +0x2f11,CUS_0xaf75,High +0x2f1d,CUS_0x40e6,Standard +0x2f29,CUS_0x5c2,Standard +0x2f35,CUS_0x2f6c,Low +0x2f41,CUS_0x6b42,High +0x2f4d,CUS_0x55bd,High +0x2f59,CUS_0xb68f,High +0x2f65,CUS_0x27fb,Standard +0x2f71,CUS_0x7245,Low +0x2f7d,CUS_0x232d,Standard +0x2f89,CUS_0x53e2,Standard +0x2f95,CUS_0x93f5,Standard +0x2fa1,CUS_0x458f,Low +0x2fad,CUS_0xc41e,High +0x2fb9,CUS_0xa77e,Standard +0x2fc5,CUS_0xbf55,High +0x2fd1,CUS_0x6bb2,Low +0x2fdd,CUS_0x7f63,Standard +0x2fe9,CUS_0x3bb6,Standard +0x2ff5,CUS_0xbf7f,Low +0x3001,CUS_0xc5da,Standard +0x300d,CUS_0xc90,High +0x3019,CUS_0x719f,Low +0x3025,CUS_0x7738,Standard +0x3031,CUS_0x82fa,Standard +0x303d,CUS_0x4c90,Standard +0x3049,CUS_0x13db,Standard +0x3055,CUS_0x3019,Low +0x3061,CUS_0x425,Standard +0x306d,CUS_0x4a3f,Low +0x3079,CUS_0x9e76,Standard +0x3085,CUS_0x9714,High +0x3091,CUS_0x6a8b,Standard +0x309d,CUS_0x1739,High +0x30a9,CUS_0xb90d,Low +0x30b5,CUS_0x2bfa,Standard +0x30c1,CUS_0x6cc,Standard +0x30cd,CUS_0xac81,Standard +0x30d9,CUS_0x7a10,Low +0x30e5,CUS_0xc6d8,High +0x30f1,CUS_0x5e52,Standard +0x30fd,CUS_0x868f,Low +0x3109,CUS_0x23b2,Standard +0x3115,CUS_0xbd98,Standard +0x3121,CUS_0xd39,Standard +0x312d,CUS_0x687c,Low +0x3139,CUS_0xaf5f,Low +0x3145,CUS_0x17a9,Standard +0x3151,CUS_0xb3c4,Standard +0x315d,CUS_0x9b7d,Standard +0x3169,CUS_0xac51,High +0x3175,CUS_0x40de,Low +0x3181,CUS_0x951b,Standard +0x318d,CUS_0xacb0,Standard +0x3199,CUS_0x472b,Standard +0x31a5,CUS_0x7ce5,Low +0x31b1,CUS_0xa56d,High +0x31bd,CUS_0xb486,Standard +0x31c9,CUS_0x2a23,Low +0x31d5,CUS_0xdc0,Low +0x31e1,CUS_0x956d,Low +0x31ed,CUS_0x33b4,High +0x31f9,CUS_0x48ed,Standard +0x3205,CUS_0x8e53,High +0x3211,CUS_0xad44,Low +0x321d,CUS_0xa9b4,High +0x3229,CUS_0x271e,Standard +0x3235,CUS_0x80f4,High +0x3241,CUS_0x53e9,High +0x324d,CUS_0x406,Low +0x3259,CUS_0x2cb1,Standard +0x3265,CUS_0x5f36,Standard +0x3271,CUS_0x9493,Low +0x327d,CUS_0xba20,High +0x3289,CUS_0xc5d5,High +0x3295,CUS_0x864,Standard +0x32a1,CUS_0x84da,Low +0x32ad,CUS_0x84a2,High +0x32b9,CUS_0x7e8b,High +0x32c5,CUS_0x1145,High +0x32d1,CUS_0x70ee,Standard +0x32dd,CUS_0x756a,High +0x32e9,CUS_0x7cd3,High +0x32f5,CUS_0x6926,Standard +0x3301,CUS_0x57e8,High +0x330d,CUS_0x3161,Standard +0x3319,CUS_0x6b88,Standard +0x3325,CUS_0x9641,Standard +0x3331,CUS_0x48aa,High +0x333d,CUS_0x8bdd,Standard +0x3349,CUS_0x69ea,Standard +0x3355,CUS_0x658a,Standard +0x3361,CUS_0xb786,Low +0x336d,CUS_0x7110,Low +0x3379,CUS_0xb057,High +0x3385,CUS_0x7e09,Standard +0x3391,CUS_0x9e3b,Standard +0x339d,CUS_0xc3c1,Standard +0x33a9,CUS_0xc629,Low +0x33b5,CUS_0x2e96,Standard +0x33c1,CUS_0x660d,High +0x33cd,CUS_0xaa87,Standard +0x33d9,CUS_0x8d2b,High +0x33e5,CUS_0xedf,High +0x33f1,CUS_0x1baf,Standard +0x33fd,CUS_0x1a33,High +0x3409,CUS_0x40f,Standard +0x3415,CUS_0x628b,High +0x3421,CUS_0x974a,Standard +0x342d,CUS_0xa0ee,High +0x3439,CUS_0x5b02,Low +0x3445,CUS_0x7047,Standard +0x3451,CUS_0xff3,Standard +0x345d,CUS_0x96c3,Low +0x3469,CUS_0x2aac,High +0x3475,CUS_0x73a6,High +0x3481,CUS_0x1069,Standard +0x348d,CUS_0x783f,High +0x3499,CUS_0x61b7,High +0x34a5,CUS_0x65c0,Low +0x34b1,CUS_0x3d0e,Standard +0x34bd,CUS_0x3e37,Standard +0x34c9,CUS_0x8e90,Low +0x34d5,CUS_0x4293,High +0x34e1,CUS_0xc30b,Low +0x34ed,CUS_0x979c,Standard +0x34f9,CUS_0x9e50,Standard +0x3505,CUS_0x5840,Standard +0x3511,CUS_0x9e9e,High +0x351d,CUS_0x47c0,Low +0x3529,CUS_0x2b17,Low +0x3535,CUS_0x9c95,Standard +0x3541,CUS_0x7b72,Standard +0x354d,CUS_0x2593,High +0x3559,CUS_0xb660,Standard +0x3565,CUS_0xa3a9,Standard +0x3571,CUS_0xacc6,Standard +0x357d,CUS_0x9027,Standard +0x3589,CUS_0x5c28,Standard +0x3595,CUS_0x2a03,Standard +0x35a1,CUS_0xbaa9,Standard +0x35ad,CUS_0x7c21,High +0x35b9,CUS_0x78bf,High +0x35c5,CUS_0x804,Standard +0x35d1,CUS_0xa445,Standard +0x35dd,CUS_0xd51,Standard +0x35e9,CUS_0x133f,Standard +0x35f5,CUS_0x672e,Low +0x3601,CUS_0x549d,Standard +0x360d,CUS_0x77ac,High +0x3619,CUS_0x92d5,Standard +0x3625,CUS_0x95ca,Low +0x3631,CUS_0x800,Low +0x363d,CUS_0x8a0e,High +0x3649,CUS_0xa1f4,Standard +0x3655,CUS_0xbaf4,Standard +0x3661,CUS_0x5d82,Standard +0x366d,CUS_0x34ed,Low +0x3679,CUS_0x867d,Low +0x3685,CUS_0x9885,Standard +0x3691,CUS_0x8eb0,Standard +0x369d,CUS_0x97a4,High +0x36a9,CUS_0xb78e,High +0x36b5,CUS_0x2dfd,Low +0x36c1,CUS_0xc620,Standard +0x36cd,CUS_0x735c,High +0x36d9,CUS_0x5c2c,Standard +0x36e5,CUS_0x1fa0,Standard +0x36f1,CUS_0x7546,Standard +0x36fd,CUS_0x38c4,Low +0x3709,CUS_0xb67c,Low +0x3715,CUS_0x6de6,Low +0x3721,CUS_0xa6c6,High +0x372d,CUS_0xba1d,High +0x3739,CUS_0x7b7a,Standard +0x3745,CUS_0x5718,Standard +0x3751,CUS_0x9251,High +0x375d,CUS_0x6a55,Low +0x3769,CUS_0x541,Low +0x3775,CUS_0x97ef,Standard +0x3781,CUS_0x5bb7,Low +0x378d,CUS_0x9bf5,Standard +0x3799,CUS_0xddf,Low +0x37a5,CUS_0xb102,Standard +0x37b1,CUS_0xc442,Low +0x37bd,CUS_0x9ff4,High +0x37c9,CUS_0x307b,Standard +0x37d5,CUS_0x64a1,Low +0x37e1,CUS_0x1e17,Standard +0x37ed,CUS_0x22b3,High +0x37f9,CUS_0x5ee,High +0x3805,CUS_0x105b,Low +0x3811,CUS_0x3401,High +0x381d,CUS_0xb9c8,High +0x3829,CUS_0x9d7,High +0x3835,CUS_0x4b2c,Standard +0x3841,CUS_0x4cfd,Standard +0x384d,CUS_0xbd85,Standard +0x3859,CUS_0x1899,High +0x3865,CUS_0x5413,High +0x3871,CUS_0xe21,High +0x387d,CUS_0xaf4a,Low +0x3889,CUS_0xba8a,Low +0x3895,CUS_0x511c,High +0x38a1,CUS_0xa0a2,Low +0x38ad,CUS_0xadbe,Standard +0x38b9,CUS_0x5793,High +0x38c5,CUS_0x44f0,High +0x38d1,CUS_0x3188,Standard +0x38dd,CUS_0x2a36,Standard +0x38e9,CUS_0x9f69,Low +0x38f5,CUS_0x6aed,Standard +0x3901,CUS_0x79bd,Standard +0x390d,CUS_0x697,Standard +0x3919,CUS_0xa54e,Standard +0x3925,CUS_0xb53e,Standard +0x3931,CUS_0x2811,Low +0x393d,CUS_0x9e02,Standard +0x3949,CUS_0xafb,Standard +0x3955,CUS_0x5300,Standard +0x3961,CUS_0x8ab5,High +0x396d,CUS_0xb05a,Standard +0x3979,CUS_0x79b7,Low +0x3985,CUS_0xc594,Low +0x3991,CUS_0x10ee,High +0x399d,CUS_0x2798,Standard +0x39a9,CUS_0x2847,Standard +0x39b5,CUS_0xb9ca,High +0x39c1,CUS_0xc02f,Low +0x39cd,CUS_0x2b52,Standard +0x39d9,CUS_0xc683,Standard +0x39e5,CUS_0x45f8,Standard +0x39f1,CUS_0xa872,High +0x39fd,CUS_0xa81d,Standard +0x3a09,CUS_0x89be,High +0x3a15,CUS_0x382f,High +0x3a21,CUS_0x3435,Standard +0x3a2d,CUS_0x3c47,Low +0x3a39,CUS_0xfe4,Standard +0x3a45,CUS_0x3ee8,Standard +0x3a51,CUS_0x6563,High +0x3a5d,CUS_0x9619,Standard +0x3a69,CUS_0x37d2,Standard +0x3a75,CUS_0x67e,Standard +0x3a81,CUS_0xa79d,High +0x3a8d,CUS_0xacd4,High +0x3a99,CUS_0xaea1,High +0x3aa5,CUS_0x4eea,Standard +0x3ab1,CUS_0x8c1d,High +0x3abd,CUS_0x36f9,Low +0x3ac9,CUS_0xbfa0,Low +0x3ad5,CUS_0x4de7,Low +0x3ae1,CUS_0x4f4d,Standard +0x3aed,CUS_0xc090,High +0x3af9,CUS_0x74d5,High +0x3b05,CUS_0x59cf,Standard +0x3b11,CUS_0x8ee3,Low +0x3b1d,CUS_0x3708,High +0x3b29,CUS_0xafda,Standard +0x3b35,CUS_0xc600,High +0x3b41,CUS_0x9c30,Low +0x3b4d,CUS_0xb904,High +0x3b59,CUS_0x6a68,Standard +0x3b65,CUS_0x45f4,Low +0x3b71,CUS_0x4b9,High +0x3b7d,CUS_0x2657,Standard +0x3b89,CUS_0xc650,Standard +0x3b95,CUS_0xb843,Standard +0x3ba1,CUS_0x46d,Standard +0x3bad,CUS_0x8e3,Standard +0x3bb9,CUS_0x1037,Low +0x3bc5,CUS_0xad38,High +0x3bd1,CUS_0xc490,Standard +0x3bdd,CUS_0x4ea9,High +0x3be9,CUS_0x3644,Standard +0x3bf5,CUS_0x9ae6,High +0x3c01,CUS_0x2728,Standard +0x3c0d,CUS_0xb513,Standard +0x3c19,CUS_0x1f60,Standard +0x3c25,CUS_0x6edb,Standard +0x3c31,CUS_0x5ff8,Standard +0x3c3d,CUS_0x19cc,Low +0x3c49,CUS_0x68a8,High +0x3c55,CUS_0xe36,Standard +0x3c61,CUS_0x3f16,Standard +0x3c6d,CUS_0x2692,High +0x3c79,CUS_0x4edb,Standard +0x3c85,CUS_0xb0e4,Low +0x3c91,CUS_0x89ca,Standard +0x3c9d,CUS_0xa090,High +0x3ca9,CUS_0x37f4,High +0x3cb5,CUS_0x9ec9,Standard +0x3cc1,CUS_0xea6,Low +0x3ccd,CUS_0xae8,High +0x3cd9,CUS_0x82fd,Standard +0x3ce5,CUS_0xb761,Standard +0x3cf1,CUS_0x6ec9,High +0x3cfd,CUS_0x3486,Low +0x3d09,CUS_0x507d,Standard +0x3d15,CUS_0x3c96,High +0x3d21,CUS_0x9021,Standard +0x3d2d,CUS_0x6ab3,Low +0x3d39,CUS_0x6938,High +0x3d45,CUS_0x7f3d,Standard +0x3d51,CUS_0x72a0,Standard +0x3d5d,CUS_0x12f2,High +0x3d69,CUS_0x598d,Standard +0x3d75,CUS_0x5480,Standard +0x3d81,CUS_0xaf2a,High +0x3d8d,CUS_0x1437,Low +0x3d99,CUS_0x9894,Standard +0x3da5,CUS_0x907c,Low +0x3db1,CUS_0x329f,Standard +0x3dbd,CUS_0x82f8,Standard +0x3dc9,CUS_0xa2c0,Standard +0x3dd5,CUS_0x64c0,High +0x3de1,CUS_0x43c2,High +0x3ded,CUS_0x8a90,Standard +0x3df9,CUS_0x7943,Standard +0x3e05,CUS_0x71a,High +0x3e11,CUS_0x6b15,Low +0x3e1d,CUS_0x1d15,Standard +0x3e29,CUS_0x6f31,Low +0x3e35,CUS_0x11eb,Standard +0x3e41,CUS_0xbac7,Standard +0x3e4d,CUS_0x89ec,High +0x3e59,CUS_0x29d2,Low +0x3e65,CUS_0x8a56,High +0x3e71,CUS_0xaa39,Standard +0x3e7d,CUS_0x50af,Standard +0x3e89,CUS_0x9cea,High +0x3e95,CUS_0x88a,Standard +0x3ea1,CUS_0x3d7e,Standard +0x3ead,CUS_0x565d,Standard +0x3eb9,CUS_0x17e3,High +0x3ec5,CUS_0x38bb,Standard +0x3ed1,CUS_0x3c6a,Standard +0x3edd,CUS_0xb54e,Standard +0x3ee9,CUS_0x7620,High +0x3ef5,CUS_0x9e13,Standard +0x3f01,CUS_0x8962,Standard +0x3f0d,CUS_0x44f,Standard +0x3f19,CUS_0x6171,Low +0x3f25,CUS_0x72e9,Standard +0x3f31,CUS_0x3ae9,Low +0x3f3d,CUS_0x3949,Standard +0x3f49,CUS_0x3ec0,Standard +0x3f55,CUS_0x1be1,Standard +0x3f61,CUS_0x90b2,Standard +0x3f6d,CUS_0x85d3,Standard +0x3f79,CUS_0xa5e6,Standard +0x3f85,CUS_0xb0b7,Standard +0x3f91,CUS_0x39d3,Standard +0x3f9d,CUS_0x5eee,High +0x3fa9,CUS_0x8628,Low +0x3fb5,CUS_0x908,High +0x3fc1,CUS_0x4523,High +0x3fcd,CUS_0x87ba,High +0x3fd9,CUS_0xb8b6,Standard +0x3fe5,CUS_0xb956,Standard +0x3ff1,CUS_0x7a11,Standard +0x3ffd,CUS_0x4017,Low +0x4009,CUS_0xa778,High +0x4015,CUS_0x576c,High +0x4021,CUS_0x4e30,Low +0x402d,CUS_0x46de,High +0x4039,CUS_0x5756,Low +0x4045,CUS_0x47bc,Low +0x4051,CUS_0x25fd,Low +0x405d,CUS_0xb2e,High +0x4069,CUS_0x68ad,Standard +0x4075,CUS_0xce6,Standard +0x4081,CUS_0xc142,High +0x408d,CUS_0x9412,High +0x4099,CUS_0x62d2,Standard +0x40a5,CUS_0xa130,High +0x40b1,CUS_0x5bb9,High +0x40bd,CUS_0xac20,Standard +0x40c9,CUS_0x7204,High +0x40d5,CUS_0xaca6,Low +0x40e1,CUS_0x4b23,High +0x40ed,CUS_0x9a1,Standard +0x40f9,CUS_0x4480,Standard +0x4105,CUS_0x4200,Standard +0x4111,CUS_0x1d2b,Standard +0x411d,CUS_0x18b5,High +0x4129,CUS_0x6d22,Standard +0x4135,CUS_0x2c8d,Standard +0x4141,CUS_0x111c,High +0x414d,CUS_0x1fef,Standard +0x4159,CUS_0xbc1e,High +0x4165,CUS_0xbbf5,Standard +0x4171,CUS_0x3383,Low +0x417d,CUS_0x51e7,Standard +0x4189,CUS_0x8991,Low +0x4195,CUS_0x59dc,Standard +0x41a1,CUS_0x28b3,High +0x41ad,CUS_0x2cdf,High +0x41b9,CUS_0x4b44,Standard +0x41c5,CUS_0xa329,Standard +0x41d1,CUS_0x6479,Low +0x41dd,CUS_0x3866,High +0x41e9,CUS_0x1631,Standard +0x41f5,CUS_0x67dc,Low +0x4201,CUS_0x4a83,Standard +0x420d,CUS_0xc163,Standard +0x4219,CUS_0xc48a,Standard +0x4225,CUS_0x3313,Low +0x4231,CUS_0x9931,Standard +0x423d,CUS_0xb5bd,High +0x4249,CUS_0x5336,Standard +0x4255,CUS_0x9d32,High +0x4261,CUS_0x530e,Standard +0x426d,CUS_0xd3d,Standard +0x4279,CUS_0x7304,Standard +0x4285,CUS_0x401c,Standard +0x4291,CUS_0x646,High +0x429d,CUS_0x24bb,Standard +0x42a9,CUS_0xbc14,Standard +0x42b5,CUS_0x6f5f,Standard +0x42c1,CUS_0x960f,High +0x42cd,CUS_0x9d9a,Low +0x42d9,CUS_0x5684,Standard +0x42e5,CUS_0x943c,Standard +0x42f1,CUS_0x2d83,Standard +0x42fd,CUS_0x8316,Standard +0x4309,CUS_0x1056,High +0x4315,CUS_0x9ecd,Low +0x4321,CUS_0xb24d,Standard +0x432d,CUS_0xb018,Low +0x4339,CUS_0x5999,Standard +0x4345,CUS_0x7e86,High +0x4351,CUS_0x81f1,Standard +0x435d,CUS_0x738f,Low +0x4369,CUS_0xa2a8,High +0x4375,CUS_0xb521,High +0x4381,CUS_0xb3cd,High +0x438d,CUS_0x3224,Standard +0x4399,CUS_0x3cd2,Standard +0x43a5,CUS_0x6f00,Low +0x43b1,CUS_0x1a3b,Standard +0x43bd,CUS_0x56bd,High +0x43c9,CUS_0xb1a0,Standard +0x43d5,CUS_0x43c5,Standard +0x43e1,CUS_0xa374,Low +0x43ed,CUS_0xa83c,Standard +0x43f9,CUS_0x5088,Standard +0x4405,CUS_0x468a,Standard +0x4411,CUS_0x70f1,Standard +0x441d,CUS_0xc3ee,Low +0x4429,CUS_0x9da6,Standard +0x4435,CUS_0x4f7d,Standard +0x4441,CUS_0xbe9d,Standard +0x444d,CUS_0xa301,Standard +0x4459,CUS_0xf6c,Standard +0x4465,CUS_0x6df5,High +0x4471,CUS_0x117d,Low +0x447d,CUS_0x59a1,High +0x4489,CUS_0x39d7,High +0x4495,CUS_0x6895,High +0x44a1,CUS_0x39a6,Standard +0x44ad,CUS_0x2095,Standard +0x44b9,CUS_0x36da,Standard +0x44c5,CUS_0x5cb5,Standard +0x44d1,CUS_0xb1da,Standard +0x44dd,CUS_0xb591,Standard +0x44e9,CUS_0x55b5,Standard +0x44f5,CUS_0x5d05,Standard +0x4501,CUS_0x3868,High +0x450d,CUS_0x7b3a,High +0x4519,CUS_0x532a,Standard +0x4525,CUS_0x7b5,High +0x4531,CUS_0x5937,Standard +0x453d,CUS_0x8ba7,Standard +0x4549,CUS_0xc3d5,High +0x4555,CUS_0x4d09,High +0x4561,CUS_0x92fc,Standard +0x456d,CUS_0x3de8,Standard +0x4579,CUS_0x2a61,High +0x4585,CUS_0x88f2,Standard +0x4591,CUS_0xb503,Standard +0x459d,CUS_0x10d7,High +0x45a9,CUS_0x8e38,Standard +0x45b5,CUS_0x60d8,Standard +0x45c1,CUS_0x1546,Standard +0x45cd,CUS_0x3969,High +0x45d9,CUS_0x318d,Standard +0x45e5,CUS_0x4d2e,High +0x45f1,CUS_0x8d84,High +0x45fd,CUS_0x1cd1,High +0x4609,CUS_0x9a43,High +0x4615,CUS_0x4ab4,Standard +0x4621,CUS_0x37c9,Standard +0x462d,CUS_0x80b3,Standard +0x4639,CUS_0x55de,High +0x4645,CUS_0x7ab3,Standard +0x4651,CUS_0x137d,Low +0x465d,CUS_0x8804,High +0x4669,CUS_0x5af2,Standard +0x4675,CUS_0x1298,Standard +0x4681,CUS_0x2e55,Standard +0x468d,CUS_0x3cb6,Low +0x4699,CUS_0x258c,Low +0x46a5,CUS_0x1947,Low +0x46b1,CUS_0x17d3,High +0x46bd,CUS_0xacf1,Standard +0x46c9,CUS_0x6962,Standard +0x46d5,CUS_0xb1e1,High +0x46e1,CUS_0x6865,Low +0x46ed,CUS_0xacc7,Standard +0x46f9,CUS_0xadd2,High +0x4705,CUS_0x5ae6,Standard +0x4711,CUS_0x830e,Low +0x471d,CUS_0x414d,Low +0x4729,CUS_0x1ebb,Standard +0x4735,CUS_0x6142,Standard +0x4741,CUS_0x5647,Standard +0x474d,CUS_0xadc8,Standard +0x4759,CUS_0x6b50,Standard +0x4765,CUS_0x6472,Low +0x4771,CUS_0x4229,Standard +0x477d,CUS_0x751b,Standard +0x4789,CUS_0x70e8,Standard +0x4795,CUS_0xb80c,Standard +0x47a1,CUS_0x988d,High +0x47ad,CUS_0xc24b,Standard +0x47b9,CUS_0x2a27,High +0x47c5,CUS_0x7042,Standard +0x47d1,CUS_0x2e22,Standard +0x47dd,CUS_0x4450,Low +0x47e9,CUS_0x5fd2,Standard +0x47f5,CUS_0x82bf,High +0x4801,CUS_0x7f27,Standard +0x480d,CUS_0x8bae,Standard +0x4819,CUS_0x2076,Standard +0x4825,CUS_0x34a3,Standard +0x4831,CUS_0x641b,Standard +0x483d,CUS_0x6ca6,Standard +0x4849,CUS_0x81d,Standard +0x4855,CUS_0xa6a3,Low +0x4861,CUS_0x4349,Standard +0x486d,CUS_0x5046,Standard +0x4879,CUS_0x66a7,High +0x4885,CUS_0x7ae7,Standard +0x4891,CUS_0x64a3,Standard +0x489d,CUS_0x49e3,Standard +0x48a9,CUS_0x42fb,Standard +0x48b5,CUS_0xa5e9,High +0x48c1,CUS_0xbba8,Low +0x48cd,CUS_0x5479,Low +0x48d9,CUS_0x3bc7,Standard +0x48e5,CUS_0x2b8c,High +0x48f1,CUS_0x62e9,Standard +0x48fd,CUS_0x5f64,High +0x4909,CUS_0xb498,High +0x4915,CUS_0xb378,Low +0x4921,CUS_0x432b,High +0x492d,CUS_0x3356,Low +0x4939,CUS_0xc5ee,Standard +0x4945,CUS_0x3556,Standard +0x4951,CUS_0x8b09,Standard +0x495d,CUS_0x3183,Low +0x4969,CUS_0x2b83,Low +0x4975,CUS_0xc728,High +0x4981,CUS_0xa232,Standard +0x498d,CUS_0x14e5,High +0x4999,CUS_0x2ced,Low +0x49a5,CUS_0x25ac,Standard +0x49b1,CUS_0x29a2,Standard +0x49bd,CUS_0xae0,Low +0x49c9,CUS_0x5ecf,Standard +0x49d5,CUS_0x2cbc,Low +0x49e1,CUS_0x7fa,Standard +0x49ed,CUS_0x5a67,Standard +0x49f9,CUS_0x88ca,Standard +0x4a05,CUS_0xb678,Standard +0x4a11,CUS_0x2a75,Standard +0x4a1d,CUS_0x89cb,Low +0x4a29,CUS_0xeda,High +0x4a35,CUS_0x640e,Standard +0x4a41,CUS_0x9e6c,Standard +0x4a4d,CUS_0x4dbd,Standard +0x4a59,CUS_0x53f9,Low +0x4a65,CUS_0x40fe,Standard +0x4a71,CUS_0xa11d,Standard +0x4a7d,CUS_0x8c1,Low +0x4a89,CUS_0x3ba0,Standard +0x4a95,CUS_0x7fb2,Standard +0x4aa1,CUS_0xaad7,Standard +0x4aad,CUS_0xb85a,High +0x4ab9,CUS_0x6e47,Standard +0x4ac5,CUS_0x8cd2,Low +0x4ad1,CUS_0x931c,Standard +0x4add,CUS_0xac0c,High +0x4ae9,CUS_0x4b8,High +0x4af5,CUS_0x8cd4,Standard +0x4b01,CUS_0x11b7,Low +0x4b0d,CUS_0x78db,High +0x4b19,CUS_0x4a9b,Standard +0x4b25,CUS_0x834f,High +0x4b31,CUS_0x9510,Standard +0x4b3d,CUS_0x8d38,Low +0x4b49,CUS_0xe34,Standard +0x4b55,CUS_0xab8,High +0x4b61,CUS_0xb3cb,Standard +0x4b6d,CUS_0x5607,High +0x4b79,CUS_0x41dc,High +0x4b85,CUS_0x6a95,High +0x4b91,CUS_0xb350,High +0x4b9d,CUS_0x3798,Standard +0x4ba9,CUS_0x2c8f,High +0x4bb5,CUS_0x83cc,Standard +0x4bc1,CUS_0xa972,Standard +0x4bcd,CUS_0x38a2,Standard +0x4bd9,CUS_0xa8c1,Standard +0x4be5,CUS_0x8d7,Standard +0x4bf1,CUS_0x39ff,Standard +0x4bfd,CUS_0x8694,Standard +0x4c09,CUS_0x9df6,Standard +0x4c15,CUS_0x7cd8,Low +0x4c21,CUS_0x19b5,High +0x4c2d,CUS_0x4af2,Standard +0x4c39,CUS_0x9ddd,Standard +0x4c45,CUS_0xa340,Standard +0x4c51,CUS_0xbbfc,Standard +0x4c5d,CUS_0x73c2,Low +0x4c69,CUS_0x870d,High +0x4c75,CUS_0x76d0,Standard +0x4c81,CUS_0x73ec,Standard +0x4c8d,CUS_0x5a04,Standard +0x4c99,CUS_0x881c,High +0x4ca5,CUS_0xa303,High +0x4cb1,CUS_0x78e8,Standard +0x4cbd,CUS_0xac60,Low +0x4cc9,CUS_0xc3cf,Standard +0x4cd5,CUS_0xb747,Standard +0x4ce1,CUS_0x18af,High +0x4ced,CUS_0x5f28,High +0x4cf9,CUS_0x3655,Standard +0x4d05,CUS_0x4b19,Standard +0x4d11,CUS_0xf0c,Low +0x4d1d,CUS_0x26be,Low +0x4d29,CUS_0x333c,Standard +0x4d35,CUS_0xd19,Standard +0x4d41,CUS_0x982a,Standard +0x4d4d,CUS_0x5b0a,Standard +0x4d59,CUS_0x28a3,Standard +0x4d65,CUS_0xa094,High +0x4d71,CUS_0x7877,Standard +0x4d7d,CUS_0x832d,Standard +0x4d89,CUS_0x8715,Low +0x4d95,CUS_0x88c1,Standard +0x4da1,CUS_0x74f9,Standard +0x4dad,CUS_0x71d,High +0x4db9,CUS_0x8b8,Standard +0x4dc5,CUS_0x6e64,Standard +0x4dd1,CUS_0x4519,Standard +0x4ddd,CUS_0x160a,Standard +0x4de9,CUS_0x9434,Standard +0x4df5,CUS_0x8e2,Standard +0x4e01,CUS_0xabd6,Standard +0x4e0d,CUS_0xc3d8,Standard +0x4e19,CUS_0xb5aa,Standard +0x4e25,CUS_0x4b3c,Standard +0x4e31,CUS_0xa9c1,Standard +0x4e3d,CUS_0x2cfe,Low +0x4e49,CUS_0x59ba,Low +0x4e55,CUS_0x811f,Standard +0x4e61,CUS_0x6c49,Standard +0x4e6d,CUS_0x292b,Low +0x4e79,CUS_0x2ba8,Low +0x4e85,CUS_0xc27,Standard +0x4e91,CUS_0xa7aa,Standard +0x4e9d,CUS_0x6ed3,Low +0x4ea9,CUS_0x2b6e,Standard +0x4eb5,CUS_0x8ecf,High +0x4ec1,CUS_0x6672,Standard +0x4ecd,CUS_0xbe3b,High +0x4ed9,CUS_0xb4d3,Low +0x4ee5,CUS_0x15d5,High +0x4ef1,CUS_0x4c56,Standard +0x4efd,CUS_0x505f,Standard +0x4f09,CUS_0xc48c,Standard +0x4f15,CUS_0xb793,High +0x4f21,CUS_0x8f8c,Standard +0x4f2d,CUS_0x664c,Standard +0x4f39,CUS_0x12dd,Low +0x4f45,CUS_0x10ff,Standard +0x4f51,CUS_0xbc51,Standard +0x4f5d,CUS_0x9bd1,Standard +0x4f69,CUS_0x7da5,High +0x4f75,CUS_0xb7c,High +0x4f81,CUS_0x8688,Standard +0x4f8d,CUS_0x7292,Low +0x4f99,CUS_0xf5d,High +0x4fa5,CUS_0xa52,High +0x4fb1,CUS_0x138b,High +0x4fbd,CUS_0x8cff,Standard +0x4fc9,CUS_0x840a,Standard +0x4fd5,CUS_0x63ea,High +0x4fe1,CUS_0x2058,Standard +0x4fed,CUS_0x6f72,High +0x4ff9,CUS_0x3d5b,Standard +0x5005,CUS_0x63c2,Low +0x5011,CUS_0x13a8,Low +0x501d,CUS_0x327d,Standard +0x5029,CUS_0x4390,Standard +0x5035,CUS_0xc2ba,Standard +0x5041,CUS_0x29e9,Standard +0x504d,CUS_0xa2b2,Standard +0x5059,CUS_0x523b,Standard +0x5065,CUS_0xc42d,Low +0x5071,CUS_0x1b4d,Standard +0x507d,CUS_0x268f,High +0x5089,CUS_0x3ba7,High +0x5095,CUS_0x1b2a,High +0x50a1,CUS_0x229f,High +0x50ad,CUS_0xa961,Standard +0x50b9,CUS_0xb548,Standard +0x50c5,CUS_0x310f,Standard +0x50d1,CUS_0x3434,High +0x50dd,CUS_0x44ec,Standard +0x50e9,CUS_0x7072,Low +0x50f5,CUS_0x9ce0,Low +0x5101,CUS_0x6187,Low +0x510d,CUS_0x26a5,Standard +0x5119,CUS_0x1c40,Standard +0x5125,CUS_0x23a5,Low +0x5131,CUS_0x1dda,Standard +0x513d,CUS_0xb76d,Standard +0x5149,CUS_0x9abb,High +0x5155,CUS_0x5f7b,Standard +0x5161,CUS_0xb713,Standard +0x516d,CUS_0x97b,Standard +0x5179,CUS_0x765b,Low +0x5185,CUS_0x6f4d,Standard +0x5191,CUS_0x9b95,Low +0x519d,CUS_0xb462,Low +0x51a9,CUS_0xad74,Standard +0x51b5,CUS_0x4c84,Standard +0x51c1,CUS_0xbeb0,High +0x51cd,CUS_0xc075,High +0x51d9,CUS_0x8f25,High +0x51e5,CUS_0xc5d7,Low +0x51f1,CUS_0x69c8,Standard +0x51fd,CUS_0x6b57,Standard +0x5209,CUS_0xc610,High +0x5215,CUS_0x92f,Standard +0x5221,CUS_0x523c,Standard +0x522d,CUS_0x2dbf,Standard +0x5239,CUS_0x636d,High +0x5245,CUS_0x28ec,High +0x5251,CUS_0x4636,High +0x525d,CUS_0x1c82,Low +0x5269,CUS_0x8aee,Standard +0x5275,CUS_0x1540,Standard +0x5281,CUS_0x5bf5,High +0x528d,CUS_0x7e25,Standard +0x5299,CUS_0x232b,Standard +0x52a5,CUS_0xa862,High +0x52b1,CUS_0x6fef,Low +0x52bd,CUS_0x2b7a,Standard +0x52c9,CUS_0x4e66,Low +0x52d5,CUS_0x2742,High +0x52e1,CUS_0x2b98,High +0x52ed,CUS_0xc692,High +0x52f9,CUS_0x3389,Standard +0x5305,CUS_0x3ff7,High +0x5311,CUS_0x6339,Standard +0x531d,CUS_0xcad,Standard +0x5329,CUS_0x4981,Low +0x5335,CUS_0x57e5,Standard +0x5341,CUS_0xbb18,Standard +0x534d,CUS_0x6c71,High +0x5359,CUS_0xb529,High +0x5365,CUS_0x8fb7,High +0x5371,CUS_0x5c40,Standard +0x537d,CUS_0x9dec,Standard +0x5389,CUS_0x6087,High +0x5395,CUS_0x5d42,Standard +0x53a1,CUS_0x925,Low +0x53ad,CUS_0x5cc6,Standard +0x53b9,CUS_0x490e,High +0x53c5,CUS_0x17b0,Standard +0x53d1,CUS_0x3f51,Standard +0x53dd,CUS_0xa98a,Standard +0x53e9,CUS_0x7982,Standard +0x53f5,CUS_0x48e,Standard +0x5401,CUS_0xa7b2,Standard +0x540d,CUS_0xa078,Low +0x5419,CUS_0x5ec6,Standard +0x5425,CUS_0x46f7,High +0x5431,CUS_0x3ec7,High +0x543d,CUS_0x2c99,High +0x5449,CUS_0xc5f3,High +0x5455,CUS_0x99b4,Low +0x5461,CUS_0x5a9f,Standard +0x546d,CUS_0x6ead,Standard +0x5479,CUS_0xafd5,Standard +0x5485,CUS_0xa3bb,Low +0x5491,CUS_0x9a09,Standard +0x549d,CUS_0xabc6,Standard +0x54a9,CUS_0x7c8c,Low +0x54b5,CUS_0x8983,Low +0x54c1,CUS_0x55e4,High +0x54cd,CUS_0x1bc0,Standard +0x54d9,CUS_0xa822,Low +0x54e5,CUS_0x3b33,Standard +0x54f1,CUS_0xbf67,Standard +0x54fd,CUS_0x86f6,High +0x5509,CUS_0xb9bb,High +0x5515,CUS_0x91f,Standard +0x5521,CUS_0x74db,High +0x552d,CUS_0x39d8,Standard +0x5539,CUS_0x8158,Standard +0x5545,CUS_0x8812,Standard +0x5551,CUS_0x83dc,Standard +0x555d,CUS_0x3ec6,Standard +0x5569,CUS_0x950d,Standard +0x5575,CUS_0xc2a4,Low +0x5581,CUS_0x9761,Standard +0x558d,CUS_0xb825,Standard +0x5599,CUS_0x53d1,Standard +0x55a5,CUS_0x5f15,High +0x55b1,CUS_0xc3f1,Standard +0x55bd,CUS_0xb9f,Standard +0x55c9,CUS_0x3430,High +0x55d5,CUS_0xc04a,Standard +0x55e1,CUS_0x6997,High +0x55ed,CUS_0x437e,Standard +0x55f9,CUS_0x4963,High +0x5605,CUS_0x14ba,Standard +0x5611,CUS_0x2a52,Low +0x561d,CUS_0xaa3d,High +0x5629,CUS_0xb1a2,Low +0x5635,CUS_0x8df6,Standard +0x5641,CUS_0xba63,Standard +0x564d,CUS_0x4c8d,Standard +0x5659,CUS_0x281d,Standard +0x5665,CUS_0x8e5,High +0x5671,CUS_0x5239,High +0x567d,CUS_0xa5a1,High +0x5689,CUS_0x825e,High +0x5695,CUS_0x5a7b,High +0x56a1,CUS_0x9a8d,Standard +0x56ad,CUS_0x710b,Low +0x56b9,CUS_0xb7a5,Standard +0x56c5,CUS_0x19b0,Low +0x56d1,CUS_0x7f53,High +0x56dd,CUS_0x6e58,Standard +0x56e9,CUS_0x6ef2,Standard +0x56f5,CUS_0x1c39,Low +0x5701,CUS_0xbe64,Standard +0x570d,CUS_0x78a6,High +0x5719,CUS_0x8337,Standard +0x5725,CUS_0x2205,High +0x5731,CUS_0x86b5,High +0x573d,CUS_0x193c,High +0x5749,CUS_0x9be5,Standard +0x5755,CUS_0x3513,High +0x5761,CUS_0x83f5,High +0x576d,CUS_0x99dc,High +0x5779,CUS_0x709,Standard +0x5785,CUS_0x576d,Standard +0x5791,CUS_0x87a2,Standard +0x579d,CUS_0x24e3,Standard +0x57a9,CUS_0x275e,Standard +0x57b5,CUS_0xb144,Low +0x57c1,CUS_0xb0e,High +0x57cd,CUS_0x99a9,Standard +0x57d9,CUS_0x6b94,Standard +0x57e5,CUS_0x360e,High +0x57f1,CUS_0x13f8,Standard +0x57fd,CUS_0x7afc,Low +0x5809,CUS_0x485f,Standard +0x5815,CUS_0x5d8b,Low +0x5821,CUS_0xa503,Low +0x582d,CUS_0x8c9c,Standard +0x5839,CUS_0x15a4,Low +0x5845,CUS_0x4e8c,Standard +0x5851,CUS_0x4333,Low +0x585d,CUS_0x88f6,Standard +0x5869,CUS_0x21af,High +0x5875,CUS_0x2a57,Low +0x5881,CUS_0x298e,Standard +0x588d,CUS_0x1324,High +0x5899,CUS_0x5923,Standard +0x58a5,CUS_0x6f9d,Standard +0x58b1,CUS_0x382d,Standard +0x58bd,CUS_0xa7d7,Low +0x58c9,CUS_0x11c6,Low +0x58d5,CUS_0x7cea,Standard +0x58e1,CUS_0x8cd3,Standard +0x58ed,CUS_0x689e,Standard +0x58f9,CUS_0x4cd5,Low +0x5905,CUS_0x6807,Low +0x5911,CUS_0x79ce,Standard +0x591d,CUS_0xbba7,Standard +0x5929,CUS_0x3f41,Standard +0x5935,CUS_0x2c90,High +0x5941,CUS_0x8ae0,High +0x594d,CUS_0x6079,High +0x5959,CUS_0xab60,Standard +0x5965,CUS_0x26c6,High +0x5971,CUS_0x34b1,Standard +0x597d,CUS_0x3ffe,Standard +0x5989,CUS_0x21c3,High +0x5995,CUS_0xa995,Low +0x59a1,CUS_0xa230,Standard +0x59ad,CUS_0x41a8,Standard +0x59b9,CUS_0x2de1,Low +0x59c5,CUS_0x568f,Standard +0x59d1,CUS_0xc63a,High +0x59dd,CUS_0x16f8,Low +0x59e9,CUS_0x4f8f,Standard +0x59f5,CUS_0x56c3,High +0x5a01,CUS_0x3ff5,Low +0x5a0d,CUS_0x5360,Standard +0x5a19,CUS_0x30c5,High +0x5a25,CUS_0xbb95,Standard +0x5a31,CUS_0x4d6a,Standard +0x5a3d,CUS_0x6cb3,Standard +0x5a49,CUS_0x510c,Low +0x5a55,CUS_0x2174,Standard +0x5a61,CUS_0x4df2,Standard +0x5a6d,CUS_0xb508,High +0x5a79,CUS_0x96d9,Standard +0x5a85,CUS_0x7993,Standard +0x5a91,CUS_0x709a,Standard +0x5a9d,CUS_0x207a,Low +0x5aa9,CUS_0xac23,High +0x5ab5,CUS_0x8232,Standard +0x5ac1,CUS_0xa350,Low +0x5acd,CUS_0x7b66,Standard +0x5ad9,CUS_0x2c74,High +0x5ae5,CUS_0xbb94,High +0x5af1,CUS_0x5495,Standard +0x5afd,CUS_0x990e,Standard +0x5b09,CUS_0x91ac,High +0x5b15,CUS_0x9934,Standard +0x5b21,CUS_0x48ae,Standard +0x5b2d,CUS_0x3966,High +0x5b39,CUS_0x25a4,Standard +0x5b45,CUS_0xb40,Standard +0x5b51,CUS_0xbc79,High +0x5b5d,CUS_0x9534,Standard +0x5b69,CUS_0x4fe9,High +0x5b75,CUS_0x7d1e,High +0x5b81,CUS_0xb2f7,Standard +0x5b8d,CUS_0x360c,Standard +0x5b99,CUS_0xaf95,Standard +0x5ba5,CUS_0x8c6d,Standard +0x5bb1,CUS_0x512d,Standard +0x5bbd,CUS_0x7ea5,High +0x5bc9,CUS_0x7b2b,High +0x5bd5,CUS_0x8c8d,High +0x5be1,CUS_0x8266,Low +0x5bed,CUS_0x5f3b,Standard +0x5bf9,CUS_0x991f,Low +0x5c05,CUS_0x47a6,Standard +0x5c11,CUS_0x5454,High +0x5c1d,CUS_0xa421,Standard +0x5c29,CUS_0x753c,Standard +0x5c35,CUS_0x4ec9,Standard +0x5c41,CUS_0x8a8c,Standard +0x5c4d,CUS_0x122f,High +0x5c59,CUS_0xbab0,Low +0x5c65,CUS_0xe0f,High +0x5c71,CUS_0x1cc3,High +0x5c7d,CUS_0xb014,Standard +0x5c89,CUS_0x6cc6,Standard +0x5c95,CUS_0xa17a,Standard +0x5ca1,CUS_0x4d1b,Standard +0x5cad,CUS_0x231b,High +0x5cb9,CUS_0xbede,Standard +0x5cc5,CUS_0x6440,High +0x5cd1,CUS_0x38bc,Standard +0x5cdd,CUS_0x3562,Low +0x5ce9,CUS_0x1510,High +0x5cf5,CUS_0x1604,Standard +0x5d01,CUS_0x7d6f,Standard +0x5d0d,CUS_0xa2f5,Standard +0x5d19,CUS_0x2598,Low +0x5d25,CUS_0x93d0,Standard +0x5d31,CUS_0x785f,Low +0x5d3d,CUS_0xb4bc,Standard +0x5d49,CUS_0x75fb,Standard +0x5d55,CUS_0x606d,High +0x5d61,CUS_0x8f74,Standard +0x5d6d,CUS_0xa8df,Standard +0x5d79,CUS_0x9a95,High +0x5d85,CUS_0xad87,High +0x5d91,CUS_0x4dd5,High +0x5d9d,CUS_0x187e,High +0x5da9,CUS_0x3394,Standard +0x5db5,CUS_0x4993,Low +0x5dc1,CUS_0x4c7e,Standard +0x5dcd,CUS_0xbf4c,Low +0x5dd9,CUS_0xb22,Standard +0x5de5,CUS_0x56b4,Standard +0x5df1,CUS_0xc704,Standard +0x5dfd,CUS_0x6244,Standard +0x5e09,CUS_0xa04f,Standard +0x5e15,CUS_0x97a,Low +0x5e21,CUS_0x2590,Standard +0x5e2d,CUS_0x7394,Standard +0x5e39,CUS_0x6c4c,Standard +0x5e45,CUS_0x3eeb,Standard +0x5e51,CUS_0x68dc,High +0x5e5d,CUS_0x2ee6,Standard +0x5e69,CUS_0x44fc,High +0x5e75,CUS_0xde7,Low +0x5e81,CUS_0x117f,Standard +0x5e8d,CUS_0x1c61,Low +0x5e99,CUS_0x9135,High +0x5ea5,CUS_0x1309,Standard +0x5eb1,CUS_0x670c,Standard +0x5ebd,CUS_0x93af,High +0x5ec9,CUS_0x3f65,Standard +0x5ed5,CUS_0x5d44,Standard +0x5ee1,CUS_0x5213,Standard +0x5eed,CUS_0x18bc,Standard +0x5ef9,CUS_0x37be,Standard +0x5f05,CUS_0x7c0f,Standard +0x5f11,CUS_0xc242,Standard +0x5f1d,CUS_0xc4c3,High +0x5f29,CUS_0x3ade,Standard +0x5f35,CUS_0x5640,Standard +0x5f41,CUS_0x30d0,High +0x5f4d,CUS_0xac14,Standard +0x5f59,CUS_0x2d78,High +0x5f65,CUS_0x9cc2,Standard +0x5f71,CUS_0xa300,Standard +0x5f7d,CUS_0x5857,Standard +0x5f89,CUS_0xb4c1,Low +0x5f95,CUS_0x1b88,High +0x5fa1,CUS_0x8f45,Standard +0x5fad,CUS_0x1960,Standard +0x5fb9,CUS_0x2deb,Standard +0x5fc5,CUS_0x8ec,Low +0x5fd1,CUS_0x5379,Standard +0x5fdd,CUS_0xa1aa,High +0x5fe9,CUS_0x93cd,Low +0x5ff5,CUS_0xa5b6,Standard +0x6001,CUS_0xc81,Standard +0x600d,CUS_0x71e8,High +0x6019,CUS_0x24cf,Standard +0x6025,CUS_0x2984,Standard +0x6031,CUS_0x878d,Low +0x603d,CUS_0xdc2,Standard +0x6049,CUS_0x3cfe,Low +0x6055,CUS_0x449b,Standard +0x6061,CUS_0x8dc0,High +0x606d,CUS_0x2625,High +0x6079,CUS_0x73ee,High +0x6085,CUS_0xa90,Low +0x6091,CUS_0x8167,Low +0x609d,CUS_0x6ce,Low +0x60a9,CUS_0x530a,Standard +0x60b5,CUS_0xb92b,Standard +0x60c1,CUS_0x4b6a,Standard +0x60cd,CUS_0x6877,Standard +0x60d9,CUS_0x2ebb,Low +0x60e5,CUS_0xaa27,Standard +0x60f1,CUS_0x7ca7,Low +0x60fd,CUS_0x4716,Standard +0x6109,CUS_0x3e5a,High +0x6115,CUS_0x925f,High +0x6121,CUS_0x9dfc,Standard +0x612d,CUS_0x1e8c,High +0x6139,CUS_0x4d4d,Standard +0x6145,CUS_0x71dd,Standard +0x6151,CUS_0x7c68,Standard +0x615d,CUS_0x925e,Low +0x6169,CUS_0x3ebe,Low +0x6175,CUS_0xb958,Standard +0x6181,CUS_0x1a77,Standard +0x618d,CUS_0x8c8a,Standard +0x6199,CUS_0x992b,High +0x61a5,CUS_0xb8be,Standard +0x61b1,CUS_0x5c7a,High +0x61bd,CUS_0x48d,Standard +0x61c9,CUS_0x5e19,Standard +0x61d5,CUS_0x594e,High +0x61e1,CUS_0x9e9a,High +0x61ed,CUS_0xffc,High +0x61f9,CUS_0x62ec,High +0x6205,CUS_0x3592,Standard +0x6211,CUS_0x2a83,Standard +0x621d,CUS_0x67a4,High +0x6229,CUS_0x2189,Standard +0x6235,CUS_0x4640,High +0x6241,CUS_0x57a2,Standard +0x624d,CUS_0x4c9f,Standard +0x6259,CUS_0xe8d,High +0x6265,CUS_0x4ac9,Low +0x6271,CUS_0x707a,Standard +0x627d,CUS_0x6343,Standard +0x6289,CUS_0x59e6,Standard +0x6295,CUS_0x286c,Low +0x62a1,CUS_0x677a,Standard +0x62ad,CUS_0x938f,Low +0x62b9,CUS_0xb004,Standard +0x62c5,CUS_0x4518,Standard +0x62d1,CUS_0x2b2c,Low +0x62dd,CUS_0x915,Standard +0x62e9,CUS_0x134d,Standard +0x62f5,CUS_0x4e7a,Low +0x6301,CUS_0xa31,Standard +0x630d,CUS_0x8c7b,High +0x6319,CUS_0x255d,Standard +0x6325,CUS_0x58b0,Standard +0x6331,CUS_0x98fc,Standard +0x633d,CUS_0x621,Standard +0x6349,CUS_0x9fcc,Standard +0x6355,CUS_0x7526,Standard +0x6361,CUS_0x4768,Standard +0x636d,CUS_0xd73,Standard +0x6379,CUS_0x635a,Low +0x6385,CUS_0xa65f,Standard +0x6391,CUS_0x7dd5,Low +0x639d,CUS_0xb6eb,High +0x63a9,CUS_0x480c,Standard +0x63b5,CUS_0xad0b,Standard +0x63c1,CUS_0x2faa,High +0x63cd,CUS_0xf79,Standard +0x63d9,CUS_0x5189,Standard +0x63e5,CUS_0x429a,High +0x63f1,CUS_0xbda9,Standard +0x63fd,CUS_0x8112,Low +0x6409,CUS_0x31e0,Low +0x6415,CUS_0x8f23,Standard +0x6421,CUS_0x6442,Standard +0x642d,CUS_0x96de,Standard +0x6439,CUS_0x9970,Standard +0x6445,CUS_0xbb0b,Standard +0x6451,CUS_0x16cf,Standard +0x645d,CUS_0x5deb,Standard +0x6469,CUS_0x8a2b,Standard +0x6475,CUS_0xb0c1,Standard +0x6481,CUS_0xbc9e,High +0x648d,CUS_0x473a,High +0x6499,CUS_0x644,Low +0x64a5,CUS_0x2ad8,Standard +0x64b1,CUS_0x5848,Low +0x64bd,CUS_0x1962,Low +0x64c9,CUS_0xd33,High +0x64d5,CUS_0x7a53,High +0x64e1,CUS_0x6734,Standard +0x64ed,CUS_0x3678,High +0x64f9,CUS_0x4ff7,High +0x6505,CUS_0xa90a,Standard +0x6511,CUS_0x12ea,Standard +0x651d,CUS_0xac6f,Low +0x6529,CUS_0x68a7,High +0x6535,CUS_0x8562,High +0x6541,CUS_0x5435,Standard +0x654d,CUS_0xc649,Low +0x6559,CUS_0xa446,Standard +0x6565,CUS_0x6449,Low +0x6571,CUS_0x4d2,Standard +0x657d,CUS_0xc3d0,Standard +0x6589,CUS_0x2543,High +0x6595,CUS_0x60ad,Standard +0x65a1,CUS_0x82a1,High +0x65ad,CUS_0x2ce1,High +0x65b9,CUS_0x38a0,Standard +0x65c5,CUS_0x906e,High +0x65d1,CUS_0x399d,High +0x65dd,CUS_0xbccb,High +0x65e9,CUS_0x684a,Standard +0x65f5,CUS_0x4bdd,Standard +0x6601,CUS_0x24e9,Low +0x660d,CUS_0x51db,Standard +0x6619,CUS_0x9ae3,Standard +0x6625,CUS_0x176b,Standard +0x6631,CUS_0x907d,Standard +0x663d,CUS_0xc21f,Standard +0x6649,CUS_0x8e82,Standard +0x6655,CUS_0x8271,Standard +0x6661,CUS_0x45f1,Standard +0x666d,CUS_0xba93,Low +0x6679,CUS_0x9ca4,Standard +0x6685,CUS_0xb433,High +0x6691,CUS_0x2ca2,Standard +0x669d,CUS_0x8837,Low +0x66a9,CUS_0x1009,Standard +0x66b5,CUS_0x15a3,Standard +0x66c1,CUS_0xbc0b,High +0x66cd,CUS_0x2ac3,Low +0x66d9,CUS_0x3793,Standard +0x66e5,CUS_0x4b40,Standard +0x66f1,CUS_0x3640,Standard +0x66fd,CUS_0x8e4e,Standard +0x6709,CUS_0x919,Standard +0x6715,CUS_0x9ad1,Low +0x6721,CUS_0x9ab6,High +0x672d,CUS_0x2b5d,High +0x6739,CUS_0x9a29,High +0x6745,CUS_0x7403,High +0x6751,CUS_0x85b,High +0x675d,CUS_0xebb,Standard +0x6769,CUS_0x6fe2,High +0x6775,CUS_0x16b1,Standard +0x6781,CUS_0xa53,Standard +0x678d,CUS_0x7df,High +0x6799,CUS_0x120d,Low +0x67a5,CUS_0x4bb,Standard +0x67b1,CUS_0x225a,Standard +0x67bd,CUS_0xb88a,Low +0x67c9,CUS_0xc5fe,Standard +0x67d5,CUS_0x6c45,High +0x67e1,CUS_0x82f2,Standard +0x67ed,CUS_0xb56b,Standard +0x67f9,CUS_0x6133,Standard +0x6805,CUS_0x4791,High +0x6811,CUS_0x221f,Standard +0x681d,CUS_0x8559,High +0x6829,CUS_0xaefb,Standard +0x6835,CUS_0x9b12,High +0x6841,CUS_0x7563,Standard +0x684d,CUS_0x588e,Standard +0x6859,CUS_0xc507,Standard +0x6865,CUS_0x93a5,Standard +0x6871,CUS_0x1f8c,Standard +0x687d,CUS_0x41de,High +0x6889,CUS_0x5c1f,Low +0x6895,CUS_0xa1a0,Low +0x68a1,CUS_0x8304,Standard +0x68ad,CUS_0x13b5,Standard +0x68b9,CUS_0x848e,Standard +0x68c5,CUS_0x6423,Low +0x68d1,CUS_0xc70d,High +0x68dd,CUS_0x24a8,Low +0x68e9,CUS_0xc5e2,Standard +0x68f5,CUS_0x19ad,Standard +0x6901,CUS_0x59e9,High +0x690d,CUS_0x21e9,High +0x6919,CUS_0x392a,High +0x6925,CUS_0x2fb8,Standard +0x6931,CUS_0x6958,Standard +0x693d,CUS_0x4bf7,Standard +0x6949,CUS_0x7174,Standard +0x6955,CUS_0x47ef,High +0x6961,CUS_0x4d05,Low +0x696d,CUS_0xb189,High +0x6979,CUS_0x5ff4,Low +0x6985,CUS_0xa547,Standard +0x6991,CUS_0x8e5f,Standard +0x699d,CUS_0xbded,Low +0x69a9,CUS_0x47c3,Low +0x69b5,CUS_0x5fca,Low +0x69c1,CUS_0xb047,Standard +0x69cd,CUS_0x6e13,High +0x69d9,CUS_0xa1bd,High +0x69e5,CUS_0x856c,High +0x69f1,CUS_0x8e29,Standard +0x69fd,CUS_0x4339,High +0x6a09,CUS_0xbdc2,Low +0x6a15,CUS_0x1192,Standard +0x6a21,CUS_0x6da3,Standard +0x6a2d,CUS_0x12d1,Standard +0x6a39,CUS_0x8b62,High +0x6a45,CUS_0xc1cc,Low +0x6a51,CUS_0x6e6c,Standard +0x6a5d,CUS_0x22d6,Standard +0x6a69,CUS_0x7edd,High +0x6a75,CUS_0x71ca,Standard +0x6a81,CUS_0x7dcd,Standard +0x6a8d,CUS_0x3cc8,Standard +0x6a99,CUS_0xafb5,High +0x6aa5,CUS_0x45da,Standard +0x6ab1,CUS_0x7a9f,High +0x6abd,CUS_0x5998,Low +0x6ac9,CUS_0x610d,Standard +0x6ad5,CUS_0xa2ee,Standard +0x6ae1,CUS_0xbc06,High +0x6aed,CUS_0x8666,High +0x6af9,CUS_0x5f66,High +0x6b05,CUS_0xa95,Standard +0x6b11,CUS_0x543d,High +0x6b1d,CUS_0x22e0,High +0x6b29,CUS_0x9813,Low +0x6b35,CUS_0x4e4a,Standard +0x6b41,CUS_0x6e19,High +0x6b4d,CUS_0x1439,Standard +0x6b59,CUS_0x42f,Standard +0x6b65,CUS_0x36ed,Standard +0x6b71,CUS_0x3f43,Standard +0x6b7d,CUS_0x6cad,Standard +0x6b89,CUS_0xb19c,Low +0x6b95,CUS_0x4304,Standard +0x6ba1,CUS_0x80d0,Standard +0x6bad,CUS_0xa731,Low +0x6bb9,CUS_0x40fa,Standard +0x6bc5,CUS_0x7f43,Standard +0x6bd1,CUS_0x4bc1,High +0x6bdd,CUS_0x7faa,Standard +0x6be9,CUS_0x2b54,High +0x6bf5,CUS_0xb5d7,Standard +0x6c01,CUS_0x4728,Standard +0x6c0d,CUS_0x704,Standard +0x6c19,CUS_0x8b9a,Low +0x6c25,CUS_0xaaaf,Standard +0x6c31,CUS_0xa133,Low +0x6c3d,CUS_0x638,Standard +0x6c49,CUS_0x83e8,Standard +0x6c55,CUS_0x913c,Standard +0x6c61,CUS_0x2f0a,High +0x6c6d,CUS_0x3ee,High +0x6c79,CUS_0xc29a,High +0x6c85,CUS_0x4d33,Standard +0x6c91,CUS_0xb99c,Standard +0x6c9d,CUS_0x615a,Standard +0x6ca9,CUS_0x4b61,Standard +0x6cb5,CUS_0x5825,High +0x6cc1,CUS_0xac0b,Low +0x6ccd,CUS_0xba03,Standard +0x6cd9,CUS_0xbbcf,Standard +0x6ce5,CUS_0x7be5,Standard +0x6cf1,CUS_0x7fd1,Standard +0x6cfd,CUS_0x1410,Standard +0x6d09,CUS_0xc042,Low +0x6d15,CUS_0x5f34,Standard +0x6d21,CUS_0x6bd8,Low +0x6d2d,CUS_0x43e9,High +0x6d39,CUS_0x32be,Standard +0x6d45,CUS_0x3844,Low +0x6d51,CUS_0x882f,Standard +0x6d5d,CUS_0x81f5,Standard +0x6d69,CUS_0xcd5,High +0x6d75,CUS_0x3537,Standard +0x6d81,CUS_0x418,Standard +0x6d8d,CUS_0xa06,Standard +0x6d99,CUS_0x60da,Standard +0x6da5,CUS_0x5ae,Standard +0x6db1,CUS_0x8e96,Standard +0x6dbd,CUS_0x5e7f,High +0x6dc9,CUS_0x640f,Standard +0x6dd5,CUS_0x8ad,Standard +0x6de1,CUS_0x716d,Standard +0x6ded,CUS_0x6b9f,High +0x6df9,CUS_0xb0fd,High +0x6e05,CUS_0x4628,Low +0x6e11,CUS_0x7ccf,Standard +0x6e1d,CUS_0x5d5,Standard +0x6e29,CUS_0x58ec,Standard +0x6e35,CUS_0x4a0a,Standard +0x6e41,CUS_0x2708,Standard +0x6e4d,CUS_0x37de,High +0x6e59,CUS_0x75d3,Standard +0x6e65,CUS_0x52fb,Standard +0x6e71,CUS_0x761b,Standard +0x6e7d,CUS_0x31eb,Low +0x6e89,CUS_0x4096,High +0x6e95,CUS_0x7ad9,Standard +0x6ea1,CUS_0xb2bd,Standard +0x6ead,CUS_0x8c13,Low +0x6eb9,CUS_0x1ef7,High +0x6ec5,CUS_0x9c34,High +0x6ed1,CUS_0x5be7,Standard +0x6edd,CUS_0x961b,Low +0x6ee9,CUS_0x2112,Standard +0x6ef5,CUS_0x6673,Standard +0x6f01,CUS_0x1f46,Low +0x6f0d,CUS_0x4657,Low +0x6f19,CUS_0x4947,High +0x6f25,CUS_0x1488,Standard +0x6f31,CUS_0x9388,Standard +0x6f3d,CUS_0x85a7,Standard +0x6f49,CUS_0x7de0,Low +0x6f55,CUS_0xafc4,Standard +0x6f61,CUS_0x2b4c,Low +0x6f6d,CUS_0x60c9,Standard +0x6f79,CUS_0x9c09,Standard +0x6f85,CUS_0x7daf,Standard +0x6f91,CUS_0x5c67,High +0x6f9d,CUS_0xaeb8,Standard +0x6fa9,CUS_0x36fb,High +0x6fb5,CUS_0x10bb,Low +0x6fc1,CUS_0x4206,High +0x6fcd,CUS_0x455e,High +0x6fd9,CUS_0x4ba1,Standard +0x6fe5,CUS_0x645f,High +0x6ff1,CUS_0x387a,High +0x6ffd,CUS_0x8370,High +0x7009,CUS_0x82dd,Low +0x7015,CUS_0x2e8b,Standard +0x7021,CUS_0x3fb3,Low +0x702d,CUS_0x590,High +0x7039,CUS_0x1d85,Standard +0x7045,CUS_0x39c0,High +0x7051,CUS_0x4a11,Standard +0x705d,CUS_0xa3ba,High +0x7069,CUS_0x31bd,Standard +0x7075,CUS_0x514e,Standard +0x7081,CUS_0x4d61,Low +0x708d,CUS_0x78a2,High +0x7099,CUS_0x8927,Standard +0x70a5,CUS_0xf3c,Standard +0x70b1,CUS_0x85ba,Low +0x70bd,CUS_0x1e96,High +0x70c9,CUS_0x5f67,Standard +0x70d5,CUS_0x28f3,Low +0x70e1,CUS_0x124a,Low +0x70ed,CUS_0x2123,Standard +0x70f9,CUS_0x37fb,Low +0x7105,CUS_0x45db,Standard +0x7111,CUS_0x8ac0,Low +0x711d,CUS_0x6fb1,Standard +0x7129,CUS_0xc492,Standard +0x7135,CUS_0x7dac,Standard +0x7141,CUS_0x3a1b,Standard +0x714d,CUS_0x6596,Low +0x7159,CUS_0x121b,High +0x7165,CUS_0xb46,Standard +0x7171,CUS_0x34aa,High +0x717d,CUS_0x689c,Standard +0x7189,CUS_0x553,Standard +0x7195,CUS_0x5050,Standard +0x71a1,CUS_0x95cf,Standard +0x71ad,CUS_0x3f18,Standard +0x71b9,CUS_0xb74c,High +0x71c5,CUS_0x7a0a,Standard +0x71d1,CUS_0x8f4,Standard +0x71dd,CUS_0xb6b9,Low +0x71e9,CUS_0xb5e3,Standard +0x71f5,CUS_0x1748,High +0x7201,CUS_0xb223,Standard +0x720d,CUS_0xf58,Standard +0x7219,CUS_0x801f,Standard +0x7225,CUS_0xb93e,Standard +0x7231,CUS_0x102d,Low +0x723d,CUS_0xb51a,Standard +0x7249,CUS_0x4843,High +0x7255,CUS_0x5c81,High +0x7261,CUS_0x4be5,Standard +0x726d,CUS_0x3e57,Standard +0x7279,CUS_0x83f,Standard +0x7285,CUS_0xb182,Standard +0x7291,CUS_0x79d5,High +0x729d,CUS_0x3bc5,High +0x72a9,CUS_0x3ded,Standard +0x72b5,CUS_0x7808,High +0x72c1,CUS_0x966e,High +0x72cd,CUS_0x29ff,High +0x72d9,CUS_0xbca8,Standard +0x72e5,CUS_0x20de,High +0x72f1,CUS_0x752f,High +0x72fd,CUS_0x1ffd,Low +0x7309,CUS_0xa05d,Standard +0x7315,CUS_0x62a6,Standard +0x7321,CUS_0x859d,Standard +0x732d,CUS_0xc516,Low +0x7339,CUS_0x9c80,Standard +0x7345,CUS_0xa0f4,Standard +0x7351,CUS_0x330c,Standard +0x735d,CUS_0x210d,High +0x7369,CUS_0x7278,High +0x7375,CUS_0x4898,Standard +0x7381,CUS_0x7a6f,High +0x738d,CUS_0x66bb,Standard +0x7399,CUS_0x5465,Standard +0x73a5,CUS_0xbfe4,Standard +0x73b1,CUS_0x6945,Standard +0x73bd,CUS_0x7c64,Standard +0x73c9,CUS_0x53c0,Low +0x73d5,CUS_0x10dd,Standard +0x73e1,CUS_0x6d25,Standard +0x73ed,CUS_0x724a,Standard +0x73f9,CUS_0xafed,Low +0x7405,CUS_0x397b,Standard +0x7411,CUS_0x7efe,Low +0x741d,CUS_0xb0ce,Standard +0x7429,CUS_0x8cf3,Standard +0x7435,CUS_0x1197,Standard +0x7441,CUS_0x1e62,Standard +0x744d,CUS_0x6184,Low +0x7459,CUS_0x369d,High +0x7465,CUS_0x4285,Standard +0x7471,CUS_0xaf09,Standard +0x747d,CUS_0x3159,Standard +0x7489,CUS_0x587,High +0x7495,CUS_0x91ee,Low +0x74a1,CUS_0x7b90,Low +0x74ad,CUS_0xb1e8,Standard +0x74b9,CUS_0x3d79,Standard +0x74c5,CUS_0x45b4,High +0x74d1,CUS_0x624e,Low +0x74dd,CUS_0x752e,Low +0x74e9,CUS_0x5b88,Standard +0x74f5,CUS_0x41cd,Standard +0x7501,CUS_0xa955,Standard +0x750d,CUS_0x34c8,Standard +0x7519,CUS_0x5df5,Standard +0x7525,CUS_0x75e,Standard +0x7531,CUS_0xc505,Standard +0x753d,CUS_0xb74d,High +0x7549,CUS_0xd60,High +0x7555,CUS_0x99c,High +0x7561,CUS_0x3f31,Standard +0x756d,CUS_0x3ee7,Standard +0x7579,CUS_0x1ef1,Low +0x7585,CUS_0x8925,Standard +0x7591,CUS_0x4a77,Low +0x759d,CUS_0x321f,Standard +0x75a9,CUS_0x5c53,High +0x75b5,CUS_0x7721,High +0x75c1,CUS_0x1d46,Low +0x75cd,CUS_0x533e,High +0x75d9,CUS_0x67e3,Standard +0x75e5,CUS_0x6c99,Low +0x75f1,CUS_0x9c59,High +0x75fd,CUS_0xb298,Standard +0x7609,CUS_0xc3c3,High +0x7615,CUS_0x38b8,Standard +0x7621,CUS_0x3b40,High +0x762d,CUS_0x1d8f,High +0x7639,CUS_0xa574,High +0x7645,CUS_0xbdf9,Standard +0x7651,CUS_0x210f,Standard +0x765d,CUS_0x753,High +0x7669,CUS_0xa040,Standard +0x7675,CUS_0x78d,Low +0x7681,CUS_0x4380,Standard +0x768d,CUS_0x6ebe,Low +0x7699,CUS_0x41fa,Low +0x76a5,CUS_0x63f7,Standard +0x76b1,CUS_0x2963,Low +0x76bd,CUS_0x6deb,Low +0x76c9,CUS_0x7357,Standard +0x76d5,CUS_0x9f03,Standard +0x76e1,CUS_0x8162,Low +0x76ed,CUS_0xb67f,Standard +0x76f9,CUS_0xc18f,Standard +0x7705,CUS_0xa204,High +0x7711,CUS_0x6678,Low +0x771d,CUS_0x3ee5,High +0x7729,CUS_0xbab2,Standard +0x7735,CUS_0xb92e,Standard +0x7741,CUS_0xb512,Standard +0x774d,CUS_0xb29a,High +0x7759,CUS_0x6072,Standard +0x7765,CUS_0xbafb,High +0x7771,CUS_0x82cb,Standard +0x777d,CUS_0x7523,Standard +0x7789,CUS_0x5324,Standard +0x7795,CUS_0xc2dc,Standard +0x77a1,CUS_0x901,Standard +0x77ad,CUS_0xbafd,Standard +0x77b9,CUS_0x2009,Low +0x77c5,CUS_0xc497,High +0x77d1,CUS_0x44b4,Low +0x77dd,CUS_0xbbd3,High +0x77e9,CUS_0x4437,High +0x77f5,CUS_0x5e6b,Standard +0x7801,CUS_0x9bb7,Standard +0x780d,CUS_0x80a0,Low +0x7819,CUS_0xa12c,Standard +0x7825,CUS_0x71da,Standard +0x7831,CUS_0x492e,Standard +0x783d,CUS_0x818c,High +0x7849,CUS_0xba60,High +0x7855,CUS_0x8ae5,High +0x7861,CUS_0x44e8,Standard +0x786d,CUS_0xdbf,Standard +0x7879,CUS_0x44b0,Standard +0x7885,CUS_0x5a26,Standard +0x7891,CUS_0x1c1c,Standard +0x789d,CUS_0xbcda,Standard +0x78a9,CUS_0xe84,Standard +0x78b5,CUS_0x6a66,Standard +0x78c1,CUS_0x53bc,Standard +0x78cd,CUS_0xac7b,Standard +0x78d9,CUS_0x3e8c,Low +0x78e5,CUS_0x75ca,Standard +0x78f1,CUS_0xb4ab,Low +0x78fd,CUS_0x4d50,Standard +0x7909,CUS_0x7dd7,High +0x7915,CUS_0x99c6,Standard +0x7921,CUS_0x57f5,Standard +0x792d,CUS_0xa6f9,Standard +0x7939,CUS_0x7871,Standard +0x7945,CUS_0x7f0a,Standard +0x7951,CUS_0x4734,Standard +0x795d,CUS_0x37e1,Low +0x7969,CUS_0xb586,Standard +0x7975,CUS_0x8a74,Low +0x7981,CUS_0x8e28,Standard +0x798d,CUS_0x913a,Low +0x7999,CUS_0x44f4,Low +0x79a5,CUS_0x531b,Low +0x79b1,CUS_0x6dd7,High +0x79bd,CUS_0x145a,Low +0x79c9,CUS_0x9f7a,Low +0x79d5,CUS_0x3c69,Standard +0x79e1,CUS_0x3663,Low +0x79ed,CUS_0xa21c,High +0x79f9,CUS_0xac3b,Standard +0x7a05,CUS_0x34d2,Standard +0x7a11,CUS_0xbb55,High +0x7a1d,CUS_0x53f4,Standard +0x7a29,CUS_0x9b03,High +0x7a35,CUS_0xabed,Standard +0x7a41,CUS_0x6a86,Low +0x7a4d,CUS_0xa6df,Standard +0x7a59,CUS_0xa97a,High +0x7a65,CUS_0xb1c2,Low +0x7a71,CUS_0x9bb1,Low +0x7a7d,CUS_0xd6a,Standard +0x7a89,CUS_0x563d,Standard +0x7a95,CUS_0x4d68,Standard +0x7aa1,CUS_0xbc29,High +0x7aad,CUS_0x7db5,Standard +0x7ab9,CUS_0xc59f,Standard +0x7ac5,CUS_0x4375,Low +0x7ad1,CUS_0x73f1,Low +0x7add,CUS_0x97d5,Low +0x7ae9,CUS_0x38e3,Standard +0x7af5,CUS_0x8046,Standard +0x7b01,CUS_0x5b7c,Standard +0x7b0d,CUS_0x2d82,Low +0x7b19,CUS_0x403a,Standard +0x7b25,CUS_0xc15d,High +0x7b31,CUS_0x2d62,High +0x7b3d,CUS_0x6c89,Standard +0x7b49,CUS_0x8399,Standard +0x7b55,CUS_0x812c,Standard +0x7b61,CUS_0x5f4f,Standard +0x7b6d,CUS_0x1233,Standard +0x7b79,CUS_0x6ee,High +0x7b85,CUS_0x5905,Standard +0x7b91,CUS_0x9c2,High +0x7b9d,CUS_0x7aec,Standard +0x7ba9,CUS_0x2477,High +0x7bb5,CUS_0x8ad9,High +0x7bc1,CUS_0x6fd5,High +0x7bcd,CUS_0x1577,Standard +0x7bd9,CUS_0x7dd1,Low +0x7be5,CUS_0xa3b5,Standard +0x7bf1,CUS_0xa1be,High +0x7bfd,CUS_0x696,Standard +0x7c09,CUS_0x8973,High +0x7c15,CUS_0xa3ec,Standard +0x7c21,CUS_0xabc9,Low +0x7c2d,CUS_0xc501,Standard +0x7c39,CUS_0x626a,Standard +0x7c45,CUS_0x9eba,Standard +0x7c51,CUS_0x7e2a,High +0x7c5d,CUS_0x4d75,Standard +0x7c69,CUS_0xbde6,Standard +0x7c75,CUS_0x144f,High +0x7c81,CUS_0x7e12,Low +0x7c8d,CUS_0x49fa,Standard +0x7c99,CUS_0x6e36,Standard +0x7ca5,CUS_0x3915,High +0x7cb1,CUS_0x5ade,Standard +0x7cbd,CUS_0x3bf3,Low +0x7cc9,CUS_0x2eac,Standard +0x7cd5,CUS_0x9857,High +0x7ce1,CUS_0x868a,Standard +0x7ced,CUS_0x1c99,High +0x7cf9,CUS_0x91fe,Standard +0x7d05,CUS_0x7833,Low +0x7d11,CUS_0x17c7,Standard +0x7d1d,CUS_0x4434,Standard +0x7d29,CUS_0x4a3b,High +0x7d35,CUS_0x9214,High +0x7d41,CUS_0x4127,High +0x7d4d,CUS_0x7ff3,Standard +0x7d59,CUS_0x1207,High +0x7d65,CUS_0xba18,Standard +0x7d71,CUS_0x976,Standard +0x7d7d,CUS_0xb46f,Low +0x7d89,CUS_0x9c7f,Standard +0x7d95,CUS_0x1ec4,Standard +0x7da1,CUS_0x5715,Standard +0x7dad,CUS_0x1472,Standard +0x7db9,CUS_0x906b,High +0x7dc5,CUS_0x1f2c,Low +0x7dd1,CUS_0x63e0,High +0x7ddd,CUS_0x76c4,Standard +0x7de9,CUS_0x39c6,Standard +0x7df5,CUS_0x6086,Standard +0x7e01,CUS_0xc622,Standard +0x7e0d,CUS_0xeb6,High +0x7e19,CUS_0x4e0d,High +0x7e25,CUS_0x16c4,Standard +0x7e31,CUS_0x50ef,Standard +0x7e3d,CUS_0xa366,High +0x7e49,CUS_0x2e5f,High +0x7e55,CUS_0xae02,Standard +0x7e61,CUS_0xa99c,High +0x7e6d,CUS_0x9177,Low +0x7e79,CUS_0x7eda,Standard +0x7e85,CUS_0x665a,High +0x7e91,CUS_0x8766,Standard +0x7e9d,CUS_0xba13,Standard +0x7ea9,CUS_0x356c,High +0x7eb5,CUS_0x54b2,Standard +0x7ec1,CUS_0x4534,Standard +0x7ecd,CUS_0xac67,High +0x7ed9,CUS_0x7ab1,Standard +0x7ee5,CUS_0x52c8,High +0x7ef1,CUS_0x7373,High +0x7efd,CUS_0xa12e,Standard +0x7f09,CUS_0x10aa,Standard +0x7f15,CUS_0x6109,Standard +0x7f21,CUS_0xbb25,Standard +0x7f2d,CUS_0x8c7c,Standard +0x7f39,CUS_0x3475,High +0x7f45,CUS_0x67de,High +0x7f51,CUS_0x9647,Standard +0x7f5d,CUS_0x8142,Standard +0x7f69,CUS_0x1184,Low +0x7f75,CUS_0x6437,Low +0x7f81,CUS_0x9a92,Standard +0x7f8d,CUS_0x955b,Standard +0x7f99,CUS_0x4fc9,High +0x7fa5,CUS_0x1436,Low +0x7fb1,CUS_0x13de,Standard +0x7fbd,CUS_0x617c,High +0x7fc9,CUS_0x2d48,Standard +0x7fd5,CUS_0x65cf,Standard +0x7fe1,CUS_0x1ef5,Standard +0x7fed,CUS_0x87a,Standard +0x7ff9,CUS_0x5bcb,Standard +0x8005,CUS_0x489,High +0x8011,CUS_0x4c5a,High +0x801d,CUS_0x9c5b,High +0x8029,CUS_0x3ddc,Standard +0x8035,CUS_0x4b09,Standard +0x8041,CUS_0x9f1a,Standard +0x804d,CUS_0x1183,Low +0x8059,CUS_0x61de,Standard +0x8065,CUS_0x167a,Low +0x8071,CUS_0xb499,Standard +0x807d,CUS_0xc53f,High +0x8089,CUS_0x9b33,High +0x8095,CUS_0x8d45,High +0x80a1,CUS_0x6d28,Standard +0x80ad,CUS_0xa69e,Standard +0x80b9,CUS_0x89b2,Standard +0x80c5,CUS_0x383e,Low +0x80d1,CUS_0x242a,Low +0x80dd,CUS_0xc36d,Low +0x80e9,CUS_0x92e8,Standard +0x80f5,CUS_0xb69a,High +0x8101,CUS_0x8443,Standard +0x810d,CUS_0x6a74,Standard +0x8119,CUS_0x5558,Standard +0x8125,CUS_0x650f,Standard +0x8131,CUS_0xa7c5,Low +0x813d,CUS_0x8727,Standard +0x8149,CUS_0x6640,High +0x8155,CUS_0x87fe,Standard +0x8161,CUS_0xc1f7,Standard +0x816d,CUS_0x7b97,High +0x8179,CUS_0x5bdb,Standard +0x8185,CUS_0x7716,High +0x8191,CUS_0x5e61,Standard +0x819d,CUS_0x691f,Standard +0x81a9,CUS_0xb867,Low +0x81b5,CUS_0x8004,Low +0x81c1,CUS_0xa6f4,Low +0x81cd,CUS_0x8da2,Low +0x81d9,CUS_0x99c9,Standard +0x81e5,CUS_0x7347,High +0x81f1,CUS_0x5ebd,High +0x81fd,CUS_0x8e72,Standard +0x8209,CUS_0x3aa1,High +0x8215,CUS_0x9d51,Standard +0x8221,CUS_0x5048,Standard +0x822d,CUS_0x6c6d,Standard +0x8239,CUS_0x224a,Standard +0x8245,CUS_0x1e5e,Low +0x8251,CUS_0xa877,Standard +0x825d,CUS_0x26ac,Standard +0x8269,CUS_0xb5be,Low +0x8275,CUS_0xa9c2,Standard +0x8281,CUS_0x299d,Standard +0x828d,CUS_0xe2a,Low +0x8299,CUS_0xc01a,Low +0x82a5,CUS_0x5f86,Standard +0x82b1,CUS_0x4487,Standard +0x82bd,CUS_0x631f,High +0x82c9,CUS_0x4db9,Standard +0x82d5,CUS_0x9497,High +0x82e1,CUS_0x1281,High +0x82ed,CUS_0x352b,High +0x82f9,CUS_0x2af3,Standard +0x8305,CUS_0xc3a1,High +0x8311,CUS_0x3a3d,Standard +0x831d,CUS_0x60e8,Standard +0x8329,CUS_0x9e7a,Standard +0x8335,CUS_0x5775,Low +0x8341,CUS_0x7084,Low +0x834d,CUS_0x46db,Standard +0x8359,CUS_0x4a51,High +0x8365,CUS_0xa682,Standard +0x8371,CUS_0x1e16,Standard +0x837d,CUS_0x30ed,High +0x8389,CUS_0x58ba,Standard +0x8395,CUS_0x684c,High +0x83a1,CUS_0x1431,High +0x83ad,CUS_0x46ff,Standard +0x83b9,CUS_0x84a0,Standard +0x83c5,CUS_0xaa84,Standard +0x83d1,CUS_0xb9d2,Low +0x83dd,CUS_0x9f4c,Standard +0x83e9,CUS_0x28a7,Standard +0x83f5,CUS_0x97dc,High +0x8401,CUS_0x1152,Low +0x840d,CUS_0x7942,High +0x8419,CUS_0x644f,Standard +0x8425,CUS_0x5ee5,Standard +0x8431,CUS_0x2555,Standard +0x843d,CUS_0x4044,Standard +0x8449,CUS_0x8cc9,Standard +0x8455,CUS_0x9d87,High +0x8461,CUS_0x85e8,Standard +0x846d,CUS_0x6197,High +0x8479,CUS_0x385d,Standard +0x8485,CUS_0x9bb0,Standard +0x8491,CUS_0xeea,Standard +0x849d,CUS_0x7e18,High +0x84a9,CUS_0xa666,Standard +0x84b5,CUS_0x6c85,Low +0x84c1,CUS_0x240e,Standard +0x84cd,CUS_0x5c87,Standard +0x84d9,CUS_0x5313,Standard +0x84e5,CUS_0x2e1d,Standard +0x84f1,CUS_0x8b99,Low +0x84fd,CUS_0xad55,High +0x8509,CUS_0x7e3e,High +0x8515,CUS_0x7b1c,Standard +0x8521,CUS_0xa4b3,High +0x852d,CUS_0xb013,Standard +0x8539,CUS_0xa201,Standard +0x8545,CUS_0x29ab,High +0x8551,CUS_0x9347,High +0x855d,CUS_0x2ffe,Standard +0x8569,CUS_0x85fd,Low +0x8575,CUS_0x2473,Standard +0x8581,CUS_0x37cd,High +0x858d,CUS_0x651d,Standard +0x8599,CUS_0x584e,Standard +0x85a5,CUS_0x4daf,Low +0x85b1,CUS_0x8785,Standard +0x85bd,CUS_0x2c18,Standard +0x85c9,CUS_0x8425,Low +0x85d5,CUS_0x9c22,Standard +0x85e1,CUS_0x977a,High +0x85ed,CUS_0x185e,High +0x85f9,CUS_0x4f51,High +0x8605,CUS_0x652f,Standard +0x8611,CUS_0x9d29,Standard +0x861d,CUS_0xb98,Standard +0x8629,CUS_0x5f10,Standard +0x8635,CUS_0x2e0f,Standard +0x8641,CUS_0x15f8,Standard +0x864d,CUS_0xa088,Standard +0x8659,CUS_0xb276,Low +0x8665,CUS_0x4cf1,High +0x8671,CUS_0x7bb2,High +0x867d,CUS_0xc125,Standard +0x8689,CUS_0x2ddd,High +0x8695,CUS_0x51e0,Low +0x86a1,CUS_0x4503,Standard +0x86ad,CUS_0xa153,Standard +0x86b9,CUS_0x408c,High +0x86c5,CUS_0xa9ad,Standard +0x86d1,CUS_0xbeaf,High +0x86dd,CUS_0xbf43,Standard +0x86e9,CUS_0x734d,Standard +0x86f5,CUS_0x2c55,Standard +0x8701,CUS_0xf19,Standard +0x870d,CUS_0x7853,High +0x8719,CUS_0x5aa2,Standard +0x8725,CUS_0x133d,Low +0x8731,CUS_0x349b,High +0x873d,CUS_0x7d70,High +0x8749,CUS_0xcb9,Standard +0x8755,CUS_0xc00a,Standard +0x8761,CUS_0x5fd3,Standard +0x876d,CUS_0x506c,Standard +0x8779,CUS_0x65e1,Standard +0x8785,CUS_0x9ed4,Low +0x8791,CUS_0x376e,Standard +0x879d,CUS_0x4e03,Standard +0x87a9,CUS_0x6c0f,Standard +0x87b5,CUS_0xb46e,High +0x87c1,CUS_0xc0f8,Low +0x87cd,CUS_0xbf82,Standard +0x87d9,CUS_0x3c21,Standard +0x87e5,CUS_0x5a6d,High +0x87f1,CUS_0xa299,Standard +0x87fd,CUS_0x8bd4,Low +0x8809,CUS_0xa0b6,Standard +0x8815,CUS_0x545e,Standard +0x8821,CUS_0xa2c5,Standard +0x882d,CUS_0x983a,Low +0x8839,CUS_0x3a94,Standard +0x8845,CUS_0x5bd3,Standard +0x8851,CUS_0xbfa8,Standard +0x885d,CUS_0xaa3b,Standard +0x8869,CUS_0x41f0,Standard +0x8875,CUS_0x5e3e,High +0x8881,CUS_0x87d4,Standard +0x888d,CUS_0x24e4,Low +0x8899,CUS_0xbc1c,Standard +0x88a5,CUS_0x8bb9,Standard +0x88b1,CUS_0x4c7d,Standard +0x88bd,CUS_0x1eff,Standard +0x88c9,CUS_0x8669,Low +0x88d5,CUS_0x61d4,Standard +0x88e1,CUS_0x66df,Standard +0x88ed,CUS_0xbabe,High +0x88f9,CUS_0x6b2,Low +0x8905,CUS_0x930d,Standard +0x8911,CUS_0xb87,Standard +0x891d,CUS_0x857e,Standard +0x8929,CUS_0xacb7,High +0x8935,CUS_0x97ca,High +0x8941,CUS_0x3adb,High +0x894d,CUS_0x2ae9,Standard +0x8959,CUS_0x19d4,Standard +0x8965,CUS_0xbe03,Low +0x8971,CUS_0x3214,Low +0x897d,CUS_0xab0f,High +0x8989,CUS_0x5734,Standard +0x8995,CUS_0x695c,Low +0x89a1,CUS_0xbaf8,Standard +0x89ad,CUS_0x84f5,Standard +0x89b9,CUS_0xa0dc,Low +0x89c5,CUS_0x27a3,Low +0x89d1,CUS_0x1139,Standard +0x89dd,CUS_0x2c9f,Standard +0x89e9,CUS_0x4423,Standard +0x89f5,CUS_0x4849,Standard +0x8a01,CUS_0x69c7,High +0x8a0d,CUS_0x60d5,Standard +0x8a19,CUS_0xa9f5,High +0x8a25,CUS_0x68d8,Standard +0x8a31,CUS_0x46d5,Standard +0x8a3d,CUS_0x18f7,Standard +0x8a49,CUS_0x9a70,Standard +0x8a55,CUS_0xb0f7,Standard +0x8a61,CUS_0xab2,Low +0x8a6d,CUS_0x21dc,Low +0x8a79,CUS_0x69f0,Low +0x8a85,CUS_0x3b2e,Standard +0x8a91,CUS_0x2595,Standard +0x8a9d,CUS_0x70b,Standard +0x8aa9,CUS_0xc6be,Low +0x8ab5,CUS_0x96a6,Low +0x8ac1,CUS_0x8b7a,High +0x8acd,CUS_0x5534,Standard +0x8ad9,CUS_0xa6f1,Standard +0x8ae5,CUS_0xad75,Standard +0x8af1,CUS_0x8966,Low +0x8afd,CUS_0x286a,Standard +0x8b09,CUS_0x1b62,Low +0x8b15,CUS_0x3a26,Standard +0x8b21,CUS_0x3d71,High +0x8b2d,CUS_0xf3e,High +0x8b39,CUS_0x10c0,High +0x8b45,CUS_0x3846,Standard +0x8b51,CUS_0x79dd,Standard +0x8b5d,CUS_0xc113,Standard +0x8b69,CUS_0x47e8,Standard +0x8b75,CUS_0x1afd,Standard +0x8b81,CUS_0xacaf,Standard +0x8b8d,CUS_0x5a72,High +0x8b99,CUS_0x56b2,Standard +0x8ba5,CUS_0xaa3a,Standard +0x8bb1,CUS_0xb00,Standard +0x8bbd,CUS_0x7d83,High +0x8bc9,CUS_0x58f4,High +0x8bd5,CUS_0x8ed,Standard +0x8be1,CUS_0xae7c,High +0x8bed,CUS_0x9562,Standard +0x8bf9,CUS_0x6b49,Low +0x8c05,CUS_0xb82d,High +0x8c11,CUS_0x6fea,Standard +0x8c1d,CUS_0x30cf,Standard +0x8c29,CUS_0x8bd3,High +0x8c35,CUS_0x2634,Standard +0x8c41,CUS_0x9146,Low +0x8c4d,CUS_0xb7b1,Standard +0x8c59,CUS_0xb0bd,Low +0x8c65,CUS_0x6e65,High +0x8c71,CUS_0x2517,High +0x8c7d,CUS_0x9079,Standard +0x8c89,CUS_0x9a84,Standard +0x8c95,CUS_0x5b57,Standard +0x8ca1,CUS_0x339e,High +0x8cad,CUS_0x5f89,Standard +0x8cb9,CUS_0x96ca,Standard +0x8cc5,CUS_0x839b,Low +0x8cd1,CUS_0x7fd9,Standard +0x8cdd,CUS_0x869b,Standard +0x8ce9,CUS_0x8f86,Standard +0x8cf5,CUS_0x1ad9,Standard +0x8d01,CUS_0x4131,Standard +0x8d0d,CUS_0x2df8,High +0x8d19,CUS_0x2b62,High +0x8d25,CUS_0x9e5,Standard +0x8d31,CUS_0x24ef,High +0x8d3d,CUS_0x661f,Standard +0x8d49,CUS_0x6c90,High +0x8d55,CUS_0xaa5,Standard +0x8d61,CUS_0x1f2e,Standard +0x8d6d,CUS_0x5f81,Low +0x8d79,CUS_0x6c52,High +0x8d85,CUS_0x42b1,Standard +0x8d91,CUS_0xbb79,Standard +0x8d9d,CUS_0x769a,Low +0x8da9,CUS_0x5a03,Standard +0x8db5,CUS_0x3a28,High +0x8dc1,CUS_0xa6d4,Low +0x8dcd,CUS_0xb06e,High +0x8dd9,CUS_0x720a,High +0x8de5,CUS_0x3925,Standard +0x8df1,CUS_0x635d,Standard +0x8dfd,CUS_0x3032,Low +0x8e09,CUS_0xb0a5,Standard +0x8e15,CUS_0x9ce4,High +0x8e21,CUS_0x37ea,Standard +0x8e2d,CUS_0x3e92,Low +0x8e39,CUS_0x3a69,High +0x8e45,CUS_0xda6,Standard +0x8e51,CUS_0x6347,Standard +0x8e5d,CUS_0xa83,Standard +0x8e69,CUS_0x787b,High +0x8e75,CUS_0x73c1,High +0x8e81,CUS_0x286f,Low +0x8e8d,CUS_0x5ab7,Standard +0x8e99,CUS_0x5cff,Standard +0x8ea5,CUS_0x2d5a,High +0x8eb1,CUS_0x123d,High +0x8ebd,CUS_0x45b6,Low +0x8ec9,CUS_0x5634,Standard +0x8ed5,CUS_0xc211,Standard +0x8ee1,CUS_0x41ce,Standard +0x8eed,CUS_0x211f,Standard +0x8ef9,CUS_0x9b1f,Standard +0x8f05,CUS_0xaac6,Standard +0x8f11,CUS_0x8c44,Standard +0x8f1d,CUS_0x2fa2,Standard +0x8f29,CUS_0x7d64,Standard +0x8f35,CUS_0xb191,High +0x8f41,CUS_0xb160,Low +0x8f4d,CUS_0x3ca4,Standard +0x8f59,CUS_0x9cab,Standard +0x8f65,CUS_0xa276,Standard +0x8f71,CUS_0x5d14,Standard +0x8f7d,CUS_0x8ca3,Standard +0x8f89,CUS_0x3e91,Standard +0x8f95,CUS_0xa0eb,High +0x8fa1,CUS_0x2ff3,Standard +0x8fad,CUS_0xa52e,Standard +0x8fb9,CUS_0xa86b,Low +0x8fc5,CUS_0x18ac,High +0x8fd1,CUS_0x6d70,High +0x8fdd,CUS_0x9595,Standard +0x8fe9,CUS_0xbe4b,Standard +0x8ff5,CUS_0x76c1,Standard +0x9001,CUS_0x7997,Standard +0x900d,CUS_0x1eea,High +0x9019,CUS_0x7f3c,High +0x9025,CUS_0x840b,High +0x9031,CUS_0x1e87,Low +0x903d,CUS_0x8d7e,Standard +0x9049,CUS_0x79b8,High +0x9055,CUS_0xab2b,High +0x9061,CUS_0xa73b,High +0x906d,CUS_0xa980,Standard +0x9079,CUS_0x734a,High +0x9085,CUS_0x56c5,Standard +0x9091,CUS_0x8924,Standard +0x909d,CUS_0x9296,Standard +0x90a9,CUS_0x2d17,Standard +0x90b5,CUS_0x10c5,Standard +0x90c1,CUS_0x3a9d,Low +0x90cd,CUS_0x938,Standard +0x90d9,CUS_0x5184,Low +0x90e5,CUS_0x45ab,Standard +0x90f1,CUS_0x7e7f,Standard +0x90fd,CUS_0x16be,Standard +0x9109,CUS_0x325f,Standard +0x9115,CUS_0x332c,High +0x9121,CUS_0xb163,Standard +0x912d,CUS_0x2467,Standard +0x9139,CUS_0x4484,Low +0x9145,CUS_0x703c,Low +0x9151,CUS_0xadf2,Low +0x915d,CUS_0x5321,Standard +0x9169,CUS_0x5f43,Low +0x9175,CUS_0xae47,High +0x9181,CUS_0x6117,Standard +0x918d,CUS_0x1f4a,Low +0x9199,CUS_0x52d3,Standard +0x91a5,CUS_0x29ae,Low +0x91b1,CUS_0xa514,High +0x91bd,CUS_0x6aec,High +0x91c9,CUS_0x39d6,Standard +0x91d5,CUS_0x5e02,Standard +0x91e1,CUS_0x842e,High +0x91ed,CUS_0x3c9b,High +0x91f9,CUS_0xb38b,Standard +0x9205,CUS_0xa3fa,Standard +0x9211,CUS_0x9281,High +0x921d,CUS_0x3a82,Standard +0x9229,CUS_0x8d90,High +0x9235,CUS_0xaed9,Low +0x9241,CUS_0x6e1e,High +0x924d,CUS_0x659b,Standard +0x9259,CUS_0xa54d,Low +0x9265,CUS_0x9e3,Standard +0x9271,CUS_0x2730,Standard +0x927d,CUS_0xafbb,Standard +0x9289,CUS_0xae92,Standard +0x9295,CUS_0x5e33,High +0x92a1,CUS_0x5974,High +0x92ad,CUS_0xb7ca,High +0x92b9,CUS_0xd88,High +0x92c5,CUS_0x25b0,High +0x92d1,CUS_0x7623,Standard +0x92dd,CUS_0xa72c,Standard +0x92e9,CUS_0x3870,High +0x92f5,CUS_0xc9f,Standard +0x9301,CUS_0x76ca,High +0x930d,CUS_0x672c,Standard +0x9319,CUS_0x909d,High +0x9325,CUS_0x4ef0,High +0x9331,CUS_0xacd6,Low +0x933d,CUS_0x49bf,Standard +0x9349,CUS_0x31ac,Standard +0x9355,CUS_0xaa62,Standard +0x9361,CUS_0x1929,Low +0x936d,CUS_0x7703,Low +0x9379,CUS_0xa387,Standard +0x9385,CUS_0x51de,Standard +0x9391,CUS_0x7a76,Low +0x939d,CUS_0x8ce7,High +0x93a9,CUS_0x97e3,Standard +0x93b5,CUS_0xa4a5,Standard +0x93c1,CUS_0xb1c4,Standard +0x93cd,CUS_0xc181,Standard +0x93d9,CUS_0x15df,Standard +0x93e5,CUS_0xbd64,Standard +0x93f1,CUS_0x181a,Low +0x93fd,CUS_0x922f,High +0x9409,CUS_0x65ae,High +0x9415,CUS_0x8b06,Standard +0x9421,CUS_0x6371,Standard +0x942d,CUS_0xbfd,High +0x9439,CUS_0x965e,Low +0x9445,CUS_0x415f,Standard +0x9451,CUS_0x641a,Standard +0x945d,CUS_0xc29b,High +0x9469,CUS_0xb9d,Standard +0x9475,CUS_0x6d9f,High +0x9481,CUS_0xb04b,Standard +0x948d,CUS_0x5a95,Standard +0x9499,CUS_0x1fd1,Standard +0x94a5,CUS_0x7398,Standard +0x94b1,CUS_0x96ad,Standard +0x94bd,CUS_0x1e72,Standard +0x94c9,CUS_0x8e35,Standard +0x94d5,CUS_0xbfe8,High +0x94e1,CUS_0xc727,High +0x94ed,CUS_0xc38d,Standard +0x94f9,CUS_0x46bf,Standard +0x9505,CUS_0x766b,Low +0x9511,CUS_0x52bf,Standard +0x951d,CUS_0xc24c,Standard +0x9529,CUS_0x9a7,Standard +0x9535,CUS_0x67c7,High +0x9541,CUS_0xb56c,Low +0x954d,CUS_0x424,Standard +0x9559,CUS_0x5d77,High +0x9565,CUS_0xc6fa,Low +0x9571,CUS_0x1feb,Low +0x957d,CUS_0x9e41,Standard +0x9589,CUS_0xc52a,High +0x9595,CUS_0x8b3e,Standard +0x95a1,CUS_0x4409,Standard +0x95ad,CUS_0x6ee1,High +0x95b9,CUS_0x2ce8,Low +0x95c5,CUS_0x64a4,Standard +0x95d1,CUS_0x4881,Standard +0x95dd,CUS_0x4527,Low +0x95e9,CUS_0x6240,Standard +0x95f5,CUS_0xb9f9,Standard +0x9601,CUS_0xbd09,Standard +0x960d,CUS_0x2f11,High +0x9619,CUS_0x9bc8,Low +0x9625,CUS_0x1621,Standard +0x9631,CUS_0x33e0,High +0x963d,CUS_0x376f,Standard +0x9649,CUS_0x87e2,Standard +0x9655,CUS_0x2e50,High +0x9661,CUS_0xb9cd,Standard +0x966d,CUS_0x51e3,High +0x9679,CUS_0x2e79,Standard +0x9685,CUS_0xc2ea,High +0x9691,CUS_0x763c,Standard +0x969d,CUS_0x59c7,Standard +0x96a9,CUS_0x387d,Standard +0x96b5,CUS_0xd35,Standard +0x96c1,CUS_0x7c66,Standard +0x96cd,CUS_0x878c,High +0x96d9,CUS_0x8261,Low +0x96e5,CUS_0x4eb6,Standard +0x96f1,CUS_0x9c05,Standard +0x96fd,CUS_0x7ffd,High +0x9709,CUS_0xc6f2,Low +0x9715,CUS_0xb153,High +0x9721,CUS_0x1986,Standard +0x972d,CUS_0x6d41,High +0x9739,CUS_0xb82b,Standard +0x9745,CUS_0x5bf,High +0x9751,CUS_0xae82,Standard +0x975d,CUS_0xa530,High +0x9769,CUS_0xa7b7,Low +0x9775,CUS_0x9673,Low +0x9781,CUS_0x4be2,High +0x978d,CUS_0x85b9,High +0x9799,CUS_0x7c6d,High +0x97a5,CUS_0xbda6,Standard +0x97b1,CUS_0x1768,Standard +0x97bd,CUS_0x5198,High +0x97c9,CUS_0x9357,Standard +0x97d5,CUS_0x580e,Standard +0x97e1,CUS_0x7a15,Standard +0x97ed,CUS_0x54a3,Standard +0x97f9,CUS_0xc390,Standard +0x9805,CUS_0x2e98,Low +0x9811,CUS_0xc050,Standard +0x981d,CUS_0x1705,Low +0x9829,CUS_0x7283,Standard +0x9835,CUS_0x63de,Standard +0x9841,CUS_0xb6e6,Standard +0x984d,CUS_0x87b4,Low +0x9859,CUS_0xac2b,Standard +0x9865,CUS_0x2d88,Standard +0x9871,CUS_0x903f,Standard +0x987d,CUS_0xa692,High +0x9889,CUS_0xa60a,Standard +0x9895,CUS_0x4cae,Low +0x98a1,CUS_0x1258,Standard +0x98ad,CUS_0x237d,Low +0x98b9,CUS_0x6ea9,Standard +0x98c5,CUS_0x775d,Standard +0x98d1,CUS_0x660b,Low +0x98dd,CUS_0x88c,Standard +0x98e9,CUS_0x2662,Standard +0x98f5,CUS_0x3733,Standard +0x9901,CUS_0x974f,High +0x990d,CUS_0xbed8,Standard +0x9919,CUS_0xb362,Standard +0x9925,CUS_0xc6e4,High +0x9931,CUS_0xb8da,Low +0x993d,CUS_0x710e,Low +0x9949,CUS_0x6e2a,Low +0x9955,CUS_0x8029,Low +0x9961,CUS_0xab44,Standard +0x996d,CUS_0x440a,Low +0x9979,CUS_0x55f1,High +0x9985,CUS_0xc218,High +0x9991,CUS_0xc0f6,Standard +0x999d,CUS_0xf4b,Standard +0x99a9,CUS_0xa42a,High +0x99b5,CUS_0x9263,Standard +0x99c1,CUS_0x3f3,Standard +0x99cd,CUS_0x1c58,Standard +0x99d9,CUS_0x5a4d,Standard +0x99e5,CUS_0x2796,High +0x99f1,CUS_0xc2e2,Standard +0x99fd,CUS_0x1f34,Low +0x9a09,CUS_0x8fdf,Low +0x9a15,CUS_0xba67,Standard +0x9a21,CUS_0xb828,High +0x9a2d,CUS_0xb15d,Standard +0x9a39,CUS_0x488b,High +0x9a45,CUS_0x4454,Standard +0x9a51,CUS_0x2976,Standard +0x9a5d,CUS_0xa5be,Standard +0x9a69,CUS_0x7e5d,High +0x9a75,CUS_0x6276,Standard +0x9a81,CUS_0x1b3a,Standard +0x9a8d,CUS_0xc0d9,Low +0x9a99,CUS_0x5352,Standard +0x9aa5,CUS_0x9a88,High +0x9ab1,CUS_0xa2d5,Standard +0x9abd,CUS_0x910a,Standard +0x9ac9,CUS_0x97b0,Standard +0x9ad5,CUS_0xc4bd,Standard +0x9ae1,CUS_0x5ca1,Low +0x9aed,CUS_0x469a,Standard +0x9af9,CUS_0x7f72,Low +0x9b05,CUS_0x1f1a,Standard +0x9b11,CUS_0x755b,Standard +0x9b1d,CUS_0xc4de,High +0x9b29,CUS_0x4379,Standard +0x9b35,CUS_0xb903,Standard +0x9b41,CUS_0x4f44,Standard +0x9b4d,CUS_0x674e,High +0x9b59,CUS_0x612f,High +0x9b65,CUS_0x35b4,High +0x9b71,CUS_0x2d27,Standard +0x9b7d,CUS_0x29ef,Standard +0x9b89,CUS_0x6ca8,Standard +0x9b95,CUS_0x1e0f,Low +0x9ba1,CUS_0x541a,Standard +0x9bad,CUS_0x95d,Standard +0x9bb9,CUS_0xa08b,Standard +0x9bc5,CUS_0x5436,Standard +0x9bd1,CUS_0x49ff,High +0x9bdd,CUS_0x974,Low +0x9be9,CUS_0x4549,High +0x9bf5,CUS_0xc2da,Low +0x9c01,CUS_0x1db5,Standard +0x9c0d,CUS_0x8e8b,Standard +0x9c19,CUS_0x361b,Standard +0x9c25,CUS_0xd0c,High +0x9c31,CUS_0xb98d,Standard +0x9c3d,CUS_0x5a58,High +0x9c49,CUS_0x6c00,High +0x9c55,CUS_0xc064,Low +0x9c61,CUS_0x73c0,High +0x9c6d,CUS_0xace3,Standard +0x9c79,CUS_0xbf0b,Standard +0x9c85,CUS_0x43f1,Standard +0x9c91,CUS_0x321c,Low +0x9c9d,CUS_0x2d16,Low +0x9ca9,CUS_0xa01,Low +0x9cb5,CUS_0x7e70,Standard +0x9cc1,CUS_0x1cb0,Low +0x9ccd,CUS_0x4196,Standard +0x9cd9,CUS_0x4864,Standard +0x9ce5,CUS_0x6809,High +0x9cf1,CUS_0x157a,Standard +0x9cfd,CUS_0xcda,Low +0x9d09,CUS_0x6f69,High +0x9d15,CUS_0xbcbc,Standard +0x9d21,CUS_0x9046,Standard +0x9d2d,CUS_0x9f51,High +0x9d39,CUS_0x9d72,Standard +0x9d45,CUS_0x1871,Standard +0x9d51,CUS_0x7da4,High +0x9d5d,CUS_0x9506,Standard +0x9d69,CUS_0x416d,Low +0x9d75,CUS_0x33b5,Standard +0x9d81,CUS_0x461f,Standard +0x9d8d,CUS_0x43a3,High +0x9d99,CUS_0x9ae1,High +0x9da5,CUS_0x46dd,Low +0x9db1,CUS_0x38b2,High +0x9dbd,CUS_0x637b,High +0x9dc9,CUS_0x746e,Standard +0x9dd5,CUS_0xaff8,Low +0x9de1,CUS_0x5fd6,Standard +0x9ded,CUS_0x7a0b,Standard +0x9df9,CUS_0x55e3,High +0x9e05,CUS_0x30b7,Standard +0x9e11,CUS_0x1a2f,Low +0x9e1d,CUS_0x1647,Low +0x9e29,CUS_0x1733,High +0x9e35,CUS_0x7307,Standard +0x9e41,CUS_0xab5e,Standard +0x9e4d,CUS_0x8658,Standard +0x9e59,CUS_0x3a40,Standard +0x9e65,CUS_0x376a,Standard +0x9e71,CUS_0xb17a,Low +0x9e7d,CUS_0xb882,Standard +0x9e89,CUS_0xaf2e,Standard +0x9e95,CUS_0x4398,Standard +0x9ea1,CUS_0x18c6,Standard +0x9ead,CUS_0x2b2d,High +0x9eb9,CUS_0x49ae,Low +0x9ec5,CUS_0x540e,Low +0x9ed1,CUS_0x94ac,Standard +0x9edd,CUS_0xc156,Standard +0x9ee9,CUS_0x53ad,Standard +0x9ef5,CUS_0x2cd1,High +0x9f01,CUS_0x4dde,Standard +0x9f0d,CUS_0x841e,Standard +0x9f19,CUS_0x8391,Standard +0x9f25,CUS_0x9557,High +0x9f31,CUS_0x5fd8,Standard +0x9f3d,CUS_0x8934,Low +0x9f49,CUS_0x37c4,Low +0x9f55,CUS_0x789f,High +0x9f61,CUS_0x2f39,High +0x9f6d,CUS_0x28b4,Standard +0x9f79,CUS_0x1ee3,High +0x9f85,CUS_0x39ce,Low +0x9f91,CUS_0x77ec,High +0x9f9d,CUS_0x290d,Standard +0x9fa9,CUS_0x5a88,High +0x9fb5,CUS_0x229d,Standard +0x9fc1,CUS_0x9919,High +0x9fcd,CUS_0x2fab,Low +0x9fd9,CUS_0x8d7c,Standard +0x9fe5,CUS_0xa788,High +0x9ff1,CUS_0x42c6,High +0x9ffd,CUS_0x7967,Low +0xa009,CUS_0x68d1,High +0xa015,CUS_0x5c9f,High +0xa021,CUS_0x2869,Low +0xa02d,CUS_0xa226,Low +0xa039,CUS_0x3117,High +0xa045,CUS_0x1329,Low +0xa051,CUS_0x5225,High +0xa05d,CUS_0x575c,Low +0xa069,CUS_0x708e,High +0xa075,CUS_0x598f,Standard +0xa081,CUS_0x3be2,Standard +0xa08d,CUS_0x17fe,Standard +0xa099,CUS_0x7b2c,High +0xa0a5,CUS_0x81cd,Standard +0xa0b1,CUS_0x9d2c,Standard +0xa0bd,CUS_0x635e,High +0xa0c9,CUS_0xa49c,Standard +0xa0d5,CUS_0x2bdd,Standard +0xa0e1,CUS_0x5de6,Low +0xa0ed,CUS_0x663b,Low +0xa0f9,CUS_0x38ce,High +0xa105,CUS_0x6901,Low +0xa111,CUS_0x3f97,Standard +0xa11d,CUS_0x62c7,Standard +0xa129,CUS_0x8432,High +0xa135,CUS_0x71a0,Standard +0xa141,CUS_0x79ef,High +0xa14d,CUS_0x9f91,Standard +0xa159,CUS_0x486d,Low +0xa165,CUS_0x9ead,Standard +0xa171,CUS_0x7023,Low +0xa17d,CUS_0x560d,Low +0xa189,CUS_0x86b2,High +0xa195,CUS_0x2e73,High +0xa1a1,CUS_0xb52d,High +0xa1ad,CUS_0x81e2,Standard +0xa1b9,CUS_0x6d6e,Low +0xa1c5,CUS_0x20c4,High +0xa1d1,CUS_0x440,Standard +0xa1dd,CUS_0xaffc,Standard +0xa1e9,CUS_0x8d74,Standard +0xa1f5,CUS_0x1107,High +0xa201,CUS_0x182d,Standard +0xa20d,CUS_0x5e89,Standard +0xa219,CUS_0x735,High +0xa225,CUS_0x453a,Standard +0xa231,CUS_0x5e46,Low +0xa23d,CUS_0xbb23,Standard +0xa249,CUS_0x1938,Low +0xa255,CUS_0x4a5,Low +0xa261,CUS_0xb583,Low +0xa26d,CUS_0xc173,Standard +0xa279,CUS_0x4db7,High +0xa285,CUS_0x9b35,Low +0xa291,CUS_0x54d7,Low +0xa29d,CUS_0x591b,Standard +0xa2a9,CUS_0x59dd,Standard +0xa2b5,CUS_0x31ef,High +0xa2c1,CUS_0x1cfd,Standard +0xa2cd,CUS_0xb3f4,Standard +0xa2d9,CUS_0x839e,Standard +0xa2e5,CUS_0x3615,Standard +0xa2f1,CUS_0xa495,Low +0xa2fd,CUS_0x18be,High +0xa309,CUS_0x6e6f,Standard +0xa315,CUS_0x41ac,Low +0xa321,CUS_0xb863,Standard +0xa32d,CUS_0x4ef1,Standard +0xa339,CUS_0x1a9f,High +0xa345,CUS_0x9322,Low +0xa351,CUS_0x6c3b,Standard +0xa35d,CUS_0x757d,High +0xa369,CUS_0x165b,High +0xa375,CUS_0x8d12,Standard +0xa381,CUS_0xb8b3,Standard +0xa38d,CUS_0x8757,Standard +0xa399,CUS_0x68cc,Standard +0xa3a5,CUS_0x21a3,Standard +0xa3b1,CUS_0x65e9,Standard +0xa3bd,CUS_0xa66,Standard +0xa3c9,CUS_0x2ed4,Low +0xa3d5,CUS_0xbfa1,Low +0xa3e1,CUS_0x1bdf,Standard +0xa3ed,CUS_0x5604,Standard +0xa3f9,CUS_0x3cc6,Standard +0xa405,CUS_0xbd37,Standard +0xa411,CUS_0x5f37,Standard +0xa41d,CUS_0x57a1,Standard +0xa429,CUS_0x7223,Standard +0xa435,CUS_0x20f8,Standard +0xa441,CUS_0x7b14,Standard +0xa44d,CUS_0x57c6,Standard +0xa459,CUS_0x1fbb,Standard +0xa465,CUS_0x622c,Standard +0xa471,CUS_0x3f74,Standard +0xa47d,CUS_0xafc0,Standard +0xa489,CUS_0x7906,Low +0xa495,CUS_0x8149,High +0xa4a1,CUS_0x26d4,High +0xa4ad,CUS_0x38a4,Standard +0xa4b9,CUS_0xbdf7,High +0xa4c5,CUS_0x4c8c,High +0xa4d1,CUS_0x8b2d,Standard +0xa4dd,CUS_0x2f4b,Low +0xa4e9,CUS_0x427b,Standard +0xa4f5,CUS_0x5e44,Low +0xa501,CUS_0x2883,High +0xa50d,CUS_0xae9b,Standard +0xa519,CUS_0x2daf,Standard +0xa525,CUS_0x8ed4,Standard +0xa531,CUS_0x49d5,High +0xa53d,CUS_0x1182,Low +0xa549,CUS_0x1b97,Standard +0xa555,CUS_0x9228,Standard +0xa561,CUS_0x7f08,Standard +0xa56d,CUS_0x23ff,Low +0xa579,CUS_0xaa6e,High +0xa585,CUS_0x1367,High +0xa591,CUS_0x1c12,Standard +0xa59d,CUS_0xa6bd,Standard +0xa5a9,CUS_0x68bb,Low +0xa5b5,CUS_0x4367,Standard +0xa5c1,CUS_0x8b3,Low +0xa5cd,CUS_0xa7d4,High +0xa5d9,CUS_0x5255,High +0xa5e5,CUS_0x96f7,Standard +0xa5f1,CUS_0x5369,Standard +0xa5fd,CUS_0x62e4,Low +0xa609,CUS_0xbcfa,High +0xa615,CUS_0x4e53,Standard +0xa621,CUS_0x9ed5,High +0xa62d,CUS_0x22d0,Standard +0xa639,CUS_0x442e,Standard +0xa645,CUS_0x12a8,Standard +0xa651,CUS_0x4c2,Standard +0xa65d,CUS_0x936d,Standard +0xa669,CUS_0x7712,High +0xa675,CUS_0xa6e,Standard +0xa681,CUS_0xa72,High +0xa68d,CUS_0x9bbd,Standard +0xa699,CUS_0x1252,Low +0xa6a5,CUS_0xbaa6,Standard +0xa6b1,CUS_0x3c61,Standard +0xa6bd,CUS_0xb340,Standard +0xa6c9,CUS_0xa1f1,High +0xa6d5,CUS_0xbe49,High +0xa6e1,CUS_0x2a8c,Standard +0xa6ed,CUS_0xacd7,High +0xa6f9,CUS_0x6e6b,Low +0xa705,CUS_0x7be,Low +0xa711,CUS_0x4cb5,Standard +0xa71d,CUS_0x499d,Standard +0xa729,CUS_0xa4f6,Standard +0xa735,CUS_0x657e,Standard +0xa741,CUS_0x158e,Standard +0xa74d,CUS_0x18c9,High +0xa759,CUS_0x8ce,Standard +0xa765,CUS_0x74c9,Standard +0xa771,CUS_0x32d1,High +0xa77d,CUS_0x81d3,Standard +0xa789,CUS_0x9c68,Standard +0xa795,CUS_0x7ae,Standard +0xa7a1,CUS_0x1676,Standard +0xa7ad,CUS_0x7251,Standard +0xa7b9,CUS_0x558e,Low +0xa7c5,CUS_0x435a,Low +0xa7d1,CUS_0x1c47,Low +0xa7dd,CUS_0x6908,Standard +0xa7e9,CUS_0x9853,Standard +0xa7f5,CUS_0x16a4,High +0xa801,CUS_0x2363,High +0xa80d,CUS_0x47e,Standard +0xa819,CUS_0x3e7e,Standard +0xa825,CUS_0xa7a4,Standard +0xa831,CUS_0xbe14,Low +0xa83d,CUS_0xd46,Standard +0xa849,CUS_0xb01f,Standard +0xa855,CUS_0x9c1f,Standard +0xa861,CUS_0x22be,Low +0xa86d,CUS_0x6080,Standard +0xa879,CUS_0xa20f,Low +0xa885,CUS_0x9aa1,Standard +0xa891,CUS_0x1fdc,High +0xa89d,CUS_0xf91,High +0xa8a9,CUS_0xd7c,High +0xa8b5,CUS_0x5f97,Low +0xa8c1,CUS_0x2d94,Standard +0xa8cd,CUS_0x317a,Standard +0xa8d9,CUS_0x603b,High +0xa8e5,CUS_0x7963,Low +0xa8f1,CUS_0x5876,Standard +0xa8fd,CUS_0x56f,Low +0xa909,CUS_0x1b1a,Standard +0xa915,CUS_0x79e4,Standard +0xa921,CUS_0x5e0d,Low +0xa92d,CUS_0x55c6,Standard +0xa939,CUS_0x1119,High +0xa945,CUS_0x5eae,Low +0xa951,CUS_0x6cd2,Standard +0xa95d,CUS_0xa26,Standard +0xa969,CUS_0x17e0,Standard +0xa975,CUS_0x36a1,Low +0xa981,CUS_0x47bb,Standard +0xa98d,CUS_0x1d08,Standard +0xa999,CUS_0xa260,Low +0xa9a5,CUS_0x59c1,High +0xa9b1,CUS_0x700f,Low +0xa9bd,CUS_0x66d,Standard +0xa9c9,CUS_0x52f3,Standard +0xa9d5,CUS_0x20b8,Standard +0xa9e1,CUS_0x2513,Standard +0xa9ed,CUS_0x3e75,Standard +0xa9f9,CUS_0x2950,Low +0xaa05,CUS_0xc187,High +0xaa11,CUS_0x8ba4,High +0xaa1d,CUS_0xbd9b,High +0xaa29,CUS_0x7dab,Standard +0xaa35,CUS_0x13c7,Standard +0xaa41,CUS_0x42db,Standard +0xaa4d,CUS_0xa4b6,High +0xaa59,CUS_0x8cc5,Low +0xaa65,CUS_0x2005,Standard +0xaa71,CUS_0x80d7,Standard +0xaa7d,CUS_0x8fd8,High +0xaa89,CUS_0x8f9e,Standard +0xaa95,CUS_0x56a9,Standard +0xaaa1,CUS_0x8f69,High +0xaaad,CUS_0x77ad,Standard +0xaab9,CUS_0x350e,Low +0xaac5,CUS_0x9ae8,Standard +0xaad1,CUS_0x981a,Low +0xaadd,CUS_0xa60e,Low +0xaae9,CUS_0x3998,Standard +0xaaf5,CUS_0x9403,Standard +0xab01,CUS_0xaaf8,Standard +0xab0d,CUS_0x94e8,Standard +0xab19,CUS_0x8f8f,Standard +0xab25,CUS_0x4b5a,Low +0xab31,CUS_0x10fd,High +0xab3d,CUS_0x8291,High +0xab49,CUS_0x4c89,High +0xab55,CUS_0x1934,High +0xab61,CUS_0x1cc0,Low +0xab6d,CUS_0x2ed7,Standard +0xab79,CUS_0x3731,High +0xab85,CUS_0x8c47,High +0xab91,CUS_0x33da,Standard +0xab9d,CUS_0x3ae3,Standard +0xaba9,CUS_0x5d24,Low +0xabb5,CUS_0x3768,Low +0xabc1,CUS_0x4e6e,Low +0xabcd,CUS_0xa0ea,Standard +0xabd9,CUS_0x6c2a,Standard +0xabe5,CUS_0x2a7d,Low +0xabf1,CUS_0xb97b,High +0xabfd,CUS_0xc0a4,Low +0xac09,CUS_0x33ef,Standard +0xac15,CUS_0x8eb2,Standard +0xac21,CUS_0xd3e,Standard +0xac2d,CUS_0x896f,High +0xac39,CUS_0x965a,Standard +0xac45,CUS_0xb79c,Standard +0xac51,CUS_0x9379,High +0xac5d,CUS_0xb042,High +0xac69,CUS_0x72ce,Standard +0xac75,CUS_0xb52b,Standard +0xac81,CUS_0x641f,High +0xac8d,CUS_0x198e,High +0xac99,CUS_0x6c91,Standard +0xaca5,CUS_0x69aa,Standard +0xacb1,CUS_0xc375,Low +0xacbd,CUS_0x7c7a,Low +0xacc9,CUS_0x69cd,High +0xacd5,CUS_0xbb73,Standard +0xace1,CUS_0x7d65,Standard +0xaced,CUS_0x5dfa,Standard +0xacf9,CUS_0x860,Standard +0xad05,CUS_0xa19,Standard +0xad11,CUS_0xbcca,Standard +0xad1d,CUS_0x67aa,Standard +0xad29,CUS_0x5d01,Low +0xad35,CUS_0x3a02,Low +0xad41,CUS_0xae52,High +0xad4d,CUS_0x3172,Standard +0xad59,CUS_0xc5d3,Standard +0xad65,CUS_0x4721,Standard +0xad71,CUS_0x5e3c,High +0xad7d,CUS_0x352f,Standard +0xad89,CUS_0x318e,Standard +0xad95,CUS_0xb676,Standard +0xada1,CUS_0x8b6f,Low +0xadad,CUS_0xb64a,Standard +0xadb9,CUS_0x8204,Standard +0xadc5,CUS_0xc1fe,High +0xadd1,CUS_0xb48f,Standard +0xaddd,CUS_0xb8e5,Standard +0xade9,CUS_0x4c5c,Standard +0xadf5,CUS_0xfa4,High +0xae01,CUS_0x8ede,High +0xae0d,CUS_0xadeb,Standard +0xae19,CUS_0x41b2,Low +0xae25,CUS_0xb33a,Standard +0xae31,CUS_0xad0e,High +0xae3d,CUS_0x2c42,Standard +0xae49,CUS_0x1591,Low +0xae55,CUS_0x4797,Standard +0xae61,CUS_0x5bf2,Standard +0xae6d,CUS_0x5ebe,Standard +0xae79,CUS_0x4b30,Standard +0xae85,CUS_0x1f87,Standard +0xae91,CUS_0x3ea3,Standard +0xae9d,CUS_0xdd9,Low +0xaea9,CUS_0x6069,Standard +0xaeb5,CUS_0x57a,Low +0xaec1,CUS_0x23c1,Low +0xaecd,CUS_0x4842,Low +0xaed9,CUS_0xc4a7,Standard +0xaee5,CUS_0x59f1,Standard +0xaef1,CUS_0x7820,Standard +0xaefd,CUS_0x159f,Standard +0xaf09,CUS_0x5268,Low +0xaf15,CUS_0x4d92,Standard +0xaf21,CUS_0x20f1,High +0xaf2d,CUS_0x3336,Low +0xaf39,CUS_0x20da,Standard +0xaf45,CUS_0x133e,Low +0xaf51,CUS_0xabb5,Standard +0xaf5d,CUS_0x9404,Standard +0xaf69,CUS_0x5a90,Low +0xaf75,CUS_0x3929,Standard +0xaf81,CUS_0x8062,Standard +0xaf8d,CUS_0x23ad,Standard +0xaf99,CUS_0x4d25,Low +0xafa5,CUS_0xf8f,High +0xafb1,CUS_0x4498,Standard +0xafbd,CUS_0x24d9,Standard +0xafc9,CUS_0x1109,High +0xafd5,CUS_0x3974,Standard +0xafe1,CUS_0x5c89,Standard +0xafed,CUS_0x8a62,Low +0xaff9,CUS_0x42bc,Standard +0xb005,CUS_0x7025,High +0xb011,CUS_0xa7e1,Low +0xb01d,CUS_0x3763,Standard +0xb029,CUS_0x568,High +0xb035,CUS_0x6968,Standard +0xb041,CUS_0x6698,Standard +0xb04d,CUS_0xc0f3,Standard +0xb059,CUS_0x6b0b,High +0xb065,CUS_0x6a7,Standard +0xb071,CUS_0x1ac0,High +0xb07d,CUS_0x7869,Standard +0xb089,CUS_0x544d,High +0xb095,CUS_0x705e,Standard +0xb0a1,CUS_0xbbb5,High +0xb0ad,CUS_0x8225,Low +0xb0b9,CUS_0x9553,Standard +0xb0c5,CUS_0xc4ee,Standard +0xb0d1,CUS_0x7258,High +0xb0dd,CUS_0x64c6,Low +0xb0e9,CUS_0x4d41,High +0xb0f5,CUS_0xb2cc,High +0xb101,CUS_0x8acf,Low +0xb10d,CUS_0x6c17,Standard +0xb119,CUS_0x9c3c,High +0xb125,CUS_0xb936,High +0xb131,CUS_0x4ce8,High +0xb13d,CUS_0x3d37,Low +0xb149,CUS_0x7df6,Standard +0xb155,CUS_0x4ea4,Low +0xb161,CUS_0xb9d8,Standard +0xb16d,CUS_0x4357,Standard +0xb179,CUS_0x6969,Low +0xb185,CUS_0x3d44,Standard +0xb191,CUS_0x2493,High +0xb19d,CUS_0x74fc,Standard +0xb1a9,CUS_0x66c7,High +0xb1b5,CUS_0xb14f,Standard +0xb1c1,CUS_0xad3c,Standard +0xb1cd,CUS_0x84e7,Standard +0xb1d9,CUS_0x7656,Standard +0xb1e5,CUS_0xb8d4,Low +0xb1f1,CUS_0x90e0,Low +0xb1fd,CUS_0x59a9,Low +0xb209,CUS_0x5c44,Standard +0xb215,CUS_0x16d3,High +0xb221,CUS_0xb5ae,Standard +0xb22d,CUS_0xe32,Standard +0xb239,CUS_0x926b,Standard +0xb245,CUS_0x6f02,High +0xb251,CUS_0x4669,Standard +0xb25d,CUS_0x6e7,Standard +0xb269,CUS_0x1b85,Low +0xb275,CUS_0x5d65,Standard +0xb281,CUS_0x8eaa,Standard +0xb28d,CUS_0x987a,Standard +0xb299,CUS_0x7972,High +0xb2a5,CUS_0x5975,Standard +0xb2b1,CUS_0x197f,Standard +0xb2bd,CUS_0xa478,Low +0xb2c9,CUS_0x22f8,Standard +0xb2d5,CUS_0x25f2,Standard +0xb2e1,CUS_0x6f7d,Standard +0xb2ed,CUS_0x35ba,Standard +0xb2f9,CUS_0x6448,Low +0xb305,CUS_0xc524,Standard +0xb311,CUS_0x9438,High +0xb31d,CUS_0xa055,Standard +0xb329,CUS_0xa5a4,Standard +0xb335,CUS_0xc6d6,Standard +0xb341,CUS_0x43c0,High +0xb34d,CUS_0x9dff,High +0xb359,CUS_0x9d86,Standard +0xb365,CUS_0xc118,High +0xb371,CUS_0x5049,Standard +0xb37d,CUS_0x548b,Standard +0xb389,CUS_0x1a18,Standard +0xb395,CUS_0x600e,Standard +0xb3a1,CUS_0xbba9,High +0xb3ad,CUS_0xc45d,Standard +0xb3b9,CUS_0x5b37,High +0xb3c5,CUS_0x2b9f,High +0xb3d1,CUS_0xb8c,High +0xb3dd,CUS_0x20e5,Low +0xb3e9,CUS_0x4c61,Low +0xb3f5,CUS_0x94a6,High +0xb401,CUS_0x2f7b,Standard +0xb40d,CUS_0xc1b9,Standard +0xb419,CUS_0x4846,High +0xb425,CUS_0x51f,Low +0xb431,CUS_0x5933,Low +0xb43d,CUS_0x2694,High +0xb449,CUS_0x3d77,Standard +0xb455,CUS_0xf9e,Standard +0xb461,CUS_0x2f53,Low +0xb46d,CUS_0x58d8,Standard +0xb479,CUS_0xa138,High +0xb485,CUS_0xc28c,High +0xb491,CUS_0x2794,Standard +0xb49d,CUS_0xbe32,Standard +0xb4a9,CUS_0x1195,Standard +0xb4b5,CUS_0x9ec7,Low +0xb4c1,CUS_0xdea,Standard +0xb4cd,CUS_0x7fb0,Standard +0xb4d9,CUS_0x3809,Low +0xb4e5,CUS_0xadd7,Standard +0xb4f1,CUS_0xa24a,Standard +0xb4fd,CUS_0x5528,Standard +0xb509,CUS_0x22bc,Standard +0xb515,CUS_0xc1dc,Standard +0xb521,CUS_0xbe29,Standard +0xb52d,CUS_0xbbec,Standard +0xb539,CUS_0x1f57,Low +0xb545,CUS_0x1e95,Standard +0xb551,CUS_0xb060,Low +0xb55d,CUS_0x37e6,Standard +0xb569,CUS_0x3374,Standard +0xb575,CUS_0x48b7,High +0xb581,CUS_0x4abb,Standard +0xb58d,CUS_0x42dc,Standard +0xb599,CUS_0x953d,Standard +0xb5a5,CUS_0x902d,Standard +0xb5b1,CUS_0x3eed,Standard +0xb5bd,CUS_0x1a23,Standard +0xb5c9,CUS_0x96da,Standard +0xb5d5,CUS_0x88fb,Standard +0xb5e1,CUS_0x3f42,Low +0xb5ed,CUS_0x46e8,Standard +0xb5f9,CUS_0xa041,Low +0xb605,CUS_0x8822,Standard +0xb611,CUS_0xb6a5,Standard +0xb61d,CUS_0x8d56,Standard +0xb629,CUS_0x6e43,Standard +0xb635,CUS_0xa23e,Low +0xb641,CUS_0x880b,High +0xb64d,CUS_0x3911,Low +0xb659,CUS_0x2e7f,Standard +0xb665,CUS_0x1b02,Standard +0xb671,CUS_0x718a,High +0xb67d,CUS_0x1b9a,Standard +0xb689,CUS_0xbd59,Low +0xb695,CUS_0x1b0a,Standard +0xb6a1,CUS_0xab3a,Low +0xb6ad,CUS_0x6f74,High +0xb6b9,CUS_0x2468,High +0xb6c5,CUS_0x5edf,Standard +0xb6d1,CUS_0x6225,Low +0xb6dd,CUS_0x12fc,Standard +0xb6e9,CUS_0x53aa,Standard +0xb6f5,CUS_0x5d1c,Standard +0xb701,CUS_0x5a89,Standard +0xb70d,CUS_0x6f2a,Low +0xb719,CUS_0xa062,Low +0xb725,CUS_0xb14a,High +0xb731,CUS_0xad5e,High +0xb73d,CUS_0x6b79,Standard +0xb749,CUS_0x9e21,Standard +0xb755,CUS_0x6256,Standard +0xb761,CUS_0x2ec3,Standard +0xb76d,CUS_0x269f,High +0xb779,CUS_0x4ebb,High +0xb785,CUS_0xec3,High +0xb791,CUS_0x35fe,Standard +0xb79d,CUS_0xc38e,High +0xb7a9,CUS_0x67bb,Low +0xb7b5,CUS_0x8a70,Low +0xb7c1,CUS_0x6fb9,High +0xb7cd,CUS_0x9de2,Low +0xb7d9,CUS_0x2541,Standard +0xb7e5,CUS_0x57c,Standard +0xb7f1,CUS_0x1414,Standard +0xb7fd,CUS_0x646d,High +0xb809,CUS_0xac56,Standard +0xb815,CUS_0x67c6,Standard +0xb821,CUS_0x599f,Standard +0xb82d,CUS_0x29fa,Standard +0xb839,CUS_0x7b3,High +0xb845,CUS_0x73e8,Low +0xb851,CUS_0xaed6,Standard +0xb85d,CUS_0x7570,Standard +0xb869,CUS_0x19a5,Standard +0xb875,CUS_0xbe46,Standard +0xb881,CUS_0x6075,Standard +0xb88d,CUS_0xa9bb,High +0xb899,CUS_0x2176,Standard +0xb8a5,CUS_0x4b7f,High +0xb8b1,CUS_0x3c82,Standard +0xb8bd,CUS_0x699d,Standard +0xb8c9,CUS_0x1b21,Standard +0xb8d5,CUS_0xa0c3,Low +0xb8e1,CUS_0x26b0,Standard +0xb8ed,CUS_0x34ad,Standard +0xb8f9,CUS_0xc305,High +0xb905,CUS_0x8f7b,Low +0xb911,CUS_0xc2b5,Standard +0xb91d,CUS_0xc3f2,Standard +0xb929,CUS_0x62b7,Standard +0xb935,CUS_0x56d7,Standard +0xb941,CUS_0x5537,Standard +0xb94d,CUS_0x7c06,Low +0xb959,CUS_0x83fe,High +0xb965,CUS_0x4cad,High +0xb971,CUS_0x5540,High +0xb97d,CUS_0x79d7,High +0xb989,CUS_0x78f8,Standard +0xb995,CUS_0x9f08,Standard +0xb9a1,CUS_0x522d,Low +0xb9ad,CUS_0x16fd,High +0xb9b9,CUS_0x34fa,High +0xb9c5,CUS_0xb69d,Standard +0xb9d1,CUS_0x6fa4,High +0xb9dd,CUS_0x1032,Standard +0xb9e9,CUS_0x643b,Standard +0xb9f5,CUS_0x3756,Standard +0xba01,CUS_0xb744,Standard +0xba0d,CUS_0x7e0e,Low +0xba19,CUS_0x7b94,Standard +0xba25,CUS_0xa905,High +0xba31,CUS_0x4fb5,High +0xba3d,CUS_0x2ad2,Standard +0xba49,CUS_0xbee4,High +0xba55,CUS_0xa977,Standard +0xba61,CUS_0x660c,Standard +0xba6d,CUS_0xc617,Standard +0xba79,CUS_0x5c94,High +0xba85,CUS_0xbb7e,Standard +0xba91,CUS_0x7ae9,Standard +0xba9d,CUS_0x3d8e,Standard +0xbaa9,CUS_0x6b6a,Standard +0xbab5,CUS_0x7910,Standard +0xbac1,CUS_0x43c3,High +0xbacd,CUS_0x5d7c,Standard +0xbad9,CUS_0x4905,Standard +0xbae5,CUS_0xa8ab,High +0xbaf1,CUS_0x5b0f,Low +0xbafd,CUS_0x7bf,Standard +0xbb09,CUS_0x9e3c,Standard +0xbb15,CUS_0x4e38,Low +0xbb21,CUS_0xbcdf,Low +0xbb2d,CUS_0x71d2,Standard +0xbb39,CUS_0x53cb,High +0xbb45,CUS_0x4a7,High +0xbb51,CUS_0xc1b8,High +0xbb5d,CUS_0xb339,High +0xbb69,CUS_0x7542,Standard +0xbb75,CUS_0x3f7d,Standard +0xbb81,CUS_0x35e4,High +0xbb8d,CUS_0x6397,High +0xbb99,CUS_0xaad,High +0xbba5,CUS_0x2358,Standard +0xbbb1,CUS_0xa833,Standard +0xbbbd,CUS_0x873b,Standard +0xbbc9,CUS_0xaa56,Standard +0xbbd5,CUS_0x5e3d,Standard +0xbbe1,CUS_0xa193,Standard +0xbbed,CUS_0x5f6e,High +0xbbf9,CUS_0xa664,Low +0xbc05,CUS_0x7473,Low +0xbc11,CUS_0x97da,High +0xbc1d,CUS_0x31e3,Standard +0xbc29,CUS_0x4904,High +0xbc35,CUS_0xb1dd,Standard +0xbc41,CUS_0x9466,High +0xbc4d,CUS_0xa7b6,Standard +0xbc59,CUS_0x8ba3,Standard +0xbc65,CUS_0x3e6d,Low +0xbc71,CUS_0x6f84,Standard +0xbc7d,CUS_0x5632,Standard +0xbc89,CUS_0xc530,Standard +0xbc95,CUS_0x272a,Standard +0xbca1,CUS_0x8d9a,Standard +0xbcad,CUS_0x481d,Low +0xbcb9,CUS_0xbf8,Standard +0xbcc5,CUS_0x2d93,High +0xbcd1,CUS_0x3b9e,Standard +0xbcdd,CUS_0x64c8,Standard +0xbce9,CUS_0xc2fd,Standard +0xbcf5,CUS_0xaef8,Standard +0xbd01,CUS_0x367d,High +0xbd0d,CUS_0x316a,Standard +0xbd19,CUS_0x3bac,Low +0xbd25,CUS_0x4602,High +0xbd31,CUS_0x17ec,Low +0xbd3d,CUS_0xa10f,High +0xbd49,CUS_0x7bee,Standard +0xbd55,CUS_0x301b,Standard +0xbd61,CUS_0xb3f2,Standard +0xbd6d,CUS_0xbe62,High +0xbd79,CUS_0x83e,Standard +0xbd85,CUS_0x5bd2,Standard +0xbd91,CUS_0x644e,Standard +0xbd9d,CUS_0x918d,Standard +0xbda9,CUS_0x28a4,Standard +0xbdb5,CUS_0x40a3,Standard +0xbdc1,CUS_0x3e54,Low +0xbdcd,CUS_0x8245,Low +0xbdd9,CUS_0x939a,High +0xbde5,CUS_0x1699,High +0xbdf1,CUS_0x843d,Standard +0xbdfd,CUS_0x7d48,Standard +0xbe09,CUS_0xa96d,High +0xbe15,CUS_0xaef3,Low +0xbe21,CUS_0x98c3,High +0xbe2d,CUS_0x7fa8,High +0xbe39,CUS_0x43f8,Standard +0xbe45,CUS_0xc24a,Low +0xbe51,CUS_0x6359,Standard +0xbe5d,CUS_0xad69,Standard +0xbe69,CUS_0xa8ec,Low +0xbe75,CUS_0xa2a7,High +0xbe81,CUS_0x1f43,Standard +0xbe8d,CUS_0x617b,Standard +0xbe99,CUS_0x6d37,Standard +0xbea5,CUS_0x1ab3,Standard +0xbeb1,CUS_0x2924,Standard +0xbebd,CUS_0xbc50,Standard +0xbec9,CUS_0x38c6,Standard +0xbed5,CUS_0x6799,High +0xbee1,CUS_0x2be1,Standard +0xbeed,CUS_0x34b6,High +0xbef9,CUS_0x4795,Standard +0xbf05,CUS_0x3c24,Standard +0xbf11,CUS_0x319c,Standard +0xbf1d,CUS_0x7b38,High +0xbf29,CUS_0x4329,Standard +0xbf35,CUS_0x1595,Standard +0xbf41,CUS_0x7bf8,Standard +0xbf4d,CUS_0x4967,High +0xbf59,CUS_0x4ceb,Standard +0xbf65,CUS_0x13e4,Standard +0xbf71,CUS_0xaf8d,Standard +0xbf7d,CUS_0x1b29,Standard +0xbf89,CUS_0x5c0f,Standard +0xbf95,CUS_0xae0a,Low +0xbfa1,CUS_0x697a,Standard +0xbfad,CUS_0x6000,Standard +0xbfb9,CUS_0x54a7,Standard +0xbfc5,CUS_0xa69,High +0xbfd1,CUS_0x512e,High +0xbfdd,CUS_0xaeec,High +0xbfe9,CUS_0x128e,Standard +0xbff5,CUS_0x7d18,Standard +0xc001,CUS_0x59b6,Low +0xc00d,CUS_0x773,Standard +0xc019,CUS_0x42ab,High +0xc025,CUS_0x4bfb,Standard +0xc031,CUS_0x57ca,Standard +0xc03d,CUS_0x76ed,Low +0xc049,CUS_0x6e23,High +0xc055,CUS_0x460a,High +0xc061,CUS_0xba8,High +0xc06d,CUS_0xa95d,Standard +0xc079,CUS_0x7091,High +0xc085,CUS_0x589c,Standard +0xc091,CUS_0x8907,Low +0xc09d,CUS_0x41c1,Standard +0xc0a9,CUS_0xb971,Standard +0xc0b5,CUS_0x6ea0,Standard +0xc0c1,CUS_0x4237,Standard +0xc0cd,CUS_0x2aff,Standard +0xc0d9,CUS_0x288d,Standard +0xc0e5,CUS_0x4565,Standard +0xc0f1,CUS_0x5764,High +0xc0fd,CUS_0x65d7,High +0xc109,CUS_0x837f,Standard +0xc115,CUS_0x9748,High +0xc121,CUS_0xb131,High +0xc12d,CUS_0xab77,Low +0xc139,CUS_0x4ddb,High +0xc145,CUS_0x4517,Low +0xc151,CUS_0xb9fd,Low +0xc15d,CUS_0x36a0,Low +0xc169,CUS_0x6883,Low +0xc175,CUS_0xb222,High +0xc181,CUS_0xa922,Standard +0xc18d,CUS_0x50a2,Standard +0xc199,CUS_0xa9d2,Standard +0xc1a5,CUS_0xabd,Standard +0xc1b1,CUS_0x7f10,High +0xc1bd,CUS_0xaa80,Standard +0xc1c9,CUS_0x3b9a,Standard +0xc1d5,CUS_0x9cec,High +0xc1e1,CUS_0xa8d7,High +0xc1ed,CUS_0xa587,High +0xc1f9,CUS_0x868,High +0xc205,CUS_0x7633,High +0xc211,CUS_0x46d1,Standard +0xc21d,CUS_0x1354,High +0xc229,CUS_0x7380,Standard +0xc235,CUS_0xb2bf,Standard +0xc241,CUS_0x1fb5,Standard +0xc24d,CUS_0x9a06,Standard +0xc259,CUS_0x98a8,Standard +0xc265,CUS_0xbbc6,Standard +0xc271,CUS_0x250b,High +0xc27d,CUS_0xafe1,Low +0xc289,CUS_0x526a,Standard +0xc295,CUS_0x89d0,High +0xc2a1,CUS_0x5fc2,Standard +0xc2ad,CUS_0x8e9c,Low +0xc2b9,CUS_0x7611,Low +0xc2c5,CUS_0x6237,High +0xc2d1,CUS_0x7b75,High +0xc2dd,CUS_0xed8,Standard +0xc2e9,CUS_0x1416,Standard +0xc2f5,CUS_0x1b8a,Low +0xc301,CUS_0x1a2a,Standard +0xc30d,CUS_0x413,Standard +0xc319,CUS_0x403d,Standard +0xc325,CUS_0x2997,Standard +0xc331,CUS_0x23eb,Standard +0xc33d,CUS_0x46bd,High +0xc349,CUS_0x7be2,Standard +0xc355,CUS_0xa3b4,Standard +0xc361,CUS_0x7f3f,Standard +0xc36d,CUS_0x6947,Standard +0xc379,CUS_0x4da0,Standard +0xc385,CUS_0x3def,Low +0xc391,CUS_0x972d,Standard +0xc39d,CUS_0x3815,Low +0xc3a9,CUS_0x2f08,Standard +0xc3b5,CUS_0x9ffa,Low +0xc3c1,CUS_0x3e35,Low +0xc3cd,CUS_0x6034,Low +0xc3d9,CUS_0x935b,Standard +0xc3e5,CUS_0x6473,Standard +0xc3f1,CUS_0xc2d8,Low +0xc3fd,CUS_0x452f,High +0xc409,CUS_0x7b2d,Low +0xc415,CUS_0x5e34,Standard +0xc421,CUS_0x17ff,Standard +0xc42d,CUS_0x3e9c,Standard +0xc439,CUS_0x8783,Standard +0xc445,CUS_0x2934,Low +0xc451,CUS_0x71bc,High +0xc45d,CUS_0x1968,High +0xc469,CUS_0x7238,Standard +0xc475,CUS_0xc09f,Standard +0xc481,CUS_0x94ea,Standard +0xc48d,CUS_0xbd32,High +0xc499,CUS_0x48a4,Low +0xc4a5,CUS_0x4a6,High +0xc4b1,CUS_0x4a43,High +0xc4bd,CUS_0xad1b,Low +0xc4c9,CUS_0x4de6,Low +0xc4d5,CUS_0x4a3d,Standard +0xc4e1,CUS_0x3e47,Standard +0xc4ed,CUS_0x2064,Standard +0xc4f9,CUS_0x26d2,Low +0xc505,CUS_0x9ee5,Standard +0xc511,CUS_0x4395,Standard +0xc51d,CUS_0x697f,High +0xc529,CUS_0xc730,Standard +0xc535,CUS_0xc39d,Standard +0xc541,CUS_0x214c,Standard +0xc54d,CUS_0x8b1f,Standard +0xc559,CUS_0x1d3d,High +0xc565,CUS_0xe98,Low +0xc571,CUS_0x6e3e,High +0xc57d,CUS_0x5117,High +0xc589,CUS_0x1087,Standard +0xc595,CUS_0xa7be,Low +0xc5a1,CUS_0x10a9,Standard +0xc5ad,CUS_0x2aa8,Low +0xc5b9,CUS_0x6f88,High +0xc5c5,CUS_0x5ee7,High +0xc5d1,CUS_0x236b,Standard +0xc5dd,CUS_0x75ff,High +0xc5e9,CUS_0xbf99,Low +0xc5f5,CUS_0x273e,High +0xc601,CUS_0x1769,Low +0xc60d,CUS_0x41f4,High +0xc619,CUS_0x894e,Standard +0xc625,CUS_0x42eb,High +0xc631,CUS_0x1e52,Standard +0xc63d,CUS_0x72b7,Standard +0xc649,CUS_0xf7d,High +0xc655,CUS_0x6579,High +0xc661,CUS_0x6d1a,High +0xc66d,CUS_0x24f6,Standard +0xc679,CUS_0x90be,Standard +0xc685,CUS_0x6ab5,Standard +0xc691,CUS_0x63b1,Standard +0xc69d,CUS_0x804e,Standard +0xc6a9,CUS_0xae42,Low +0xc6b5,CUS_0x4e0e,Low +0xc6c1,CUS_0x73cf,High +0xc6cd,CUS_0xc2e8,High +0xc6d9,CUS_0x83c3,High +0xc6e5,CUS_0x2312,Low +0xc6f1,CUS_0x73d5,Low +0xc6fd,CUS_0xaf81,High +0xc709,CUS_0x9cd7,High +0xc715,CUS_0x48d4,Standard +0xc721,CUS_0x2c15,Standard +0xc72d,CUS_0x2ee0,Standard +0xc739,CUS_0xc106,Standard +0xc745,CUS_0x8894,Standard +0xc751,CUS_0x9019,High +0xc75d,CUS_0x937d,Standard +0xc769,CUS_0xade3,Standard +0xc775,CUS_0x4d9c,High +0xc781,CUS_0x98a,High +0xc78d,CUS_0x2c2d,Standard +0xc799,CUS_0xb471,High +0xc7a5,CUS_0xb4c5,Standard +0xc7b1,CUS_0x510d,Standard +0xc7bd,CUS_0x4f2a,Low +0xc7c9,CUS_0xb7d4,Low +0xc7d5,CUS_0x3121,Low +0xc7e1,CUS_0xc3cd,Standard +0xc7ed,CUS_0x6191,High +0xc7f9,CUS_0xa65,High +0xc805,CUS_0xaf4c,Standard +0xc811,CUS_0x90cf,Standard +0xc81d,CUS_0x686c,Standard +0xc829,CUS_0xad30,High +0xc835,CUS_0x58c5,Standard +0xc841,CUS_0x60c8,Standard +0xc84d,CUS_0x3aa8,High +0xc859,CUS_0x8a89,Low +0xc865,CUS_0xc190,High +0xc871,CUS_0x9eb6,Standard +0xc87d,CUS_0x56d3,High +0xc889,CUS_0x5105,Low +0xc895,CUS_0xabf0,High +0xc8a1,CUS_0x2c34,Standard +0xc8ad,CUS_0x8593,Low +0xc8b9,CUS_0x30ae,High +0xc8c5,CUS_0x533b,Standard +0xc8d1,CUS_0x3b22,Standard +0xc8dd,CUS_0x46c3,Standard +0xc8e9,CUS_0xa2c1,Standard +0xc8f5,CUS_0xa294,Standard +0xc901,CUS_0x8a63,Low +0xc90d,CUS_0x8d5e,High +0xc919,CUS_0x80bb,High +0xc925,CUS_0x3e73,Standard +0xc931,CUS_0x3fe8,High +0xc93d,CUS_0x8998,Low +0xc949,CUS_0x82e5,Standard +0xc955,CUS_0x23f3,High +0xc961,CUS_0x8d3,Standard +0xc96d,CUS_0x994c,Standard +0xc979,CUS_0xc566,Standard +0xc985,CUS_0x8109,High +0xc991,CUS_0xaf3a,High +0xc99d,CUS_0x10b3,Low +0xc9a9,CUS_0x86a,High +0xc9b5,CUS_0x423c,Standard +0xc9c1,CUS_0x5b28,High +0xc9cd,CUS_0xae4b,Standard +0xc9d9,CUS_0x7977,High +0xc9e5,CUS_0xc7c,Standard +0xc9f1,CUS_0x4a94,High +0xc9fd,CUS_0x1134,Low +0xca09,CUS_0xbfb4,Low +0xca15,CUS_0x7884,High +0xca21,CUS_0x9b30,High +0xca2d,CUS_0x302f,Low +0xca39,CUS_0xaa8c,Standard +0xca45,CUS_0x93c8,High +0xca51,CUS_0xacca,Standard +0xca5d,CUS_0x3364,High +0xca69,CUS_0x90f0,High +0xca75,CUS_0xabf2,Standard +0xca81,CUS_0xb413,Standard +0xca8d,CUS_0x7b27,Standard +0xca99,CUS_0xb138,Standard +0xcaa5,CUS_0x1220,Low +0xcab1,CUS_0xabff,Low +0xcabd,CUS_0xb3ab,Low +0xcac9,CUS_0x8b4,Low +0xcad5,CUS_0x6939,Standard +0xcae1,CUS_0x89d3,Standard +0xcaed,CUS_0x976a,Standard +0xcaf9,CUS_0x76dc,Low +0xcb05,CUS_0x13eb,High +0xcb11,CUS_0x8447,Standard +0xcb1d,CUS_0xa46c,Standard +0xcb29,CUS_0x6c27,High +0xcb35,CUS_0x2767,Low +0xcb41,CUS_0x487b,High +0xcb4d,CUS_0x667a,High +0xcb59,CUS_0x13ec,Standard +0xcb65,CUS_0x3a0b,Standard +0xcb71,CUS_0x219b,High +0xcb7d,CUS_0xbf60,High +0xcb89,CUS_0x17fc,Low +0xcb95,CUS_0x69d9,Standard +0xcba1,CUS_0xc52c,Low +0xcbad,CUS_0x7d82,High +0xcbb9,CUS_0xedd,Standard +0xcbc5,CUS_0xa5e0,Standard +0xcbd1,CUS_0x5ede,Standard +0xcbdd,CUS_0x60c3,Low +0xcbe9,CUS_0x2344,High +0xcbf5,CUS_0x2803,Standard +0xcc01,CUS_0xaa35,Standard +0xcc0d,CUS_0x50df,Standard +0xcc19,CUS_0x2c32,High +0xcc25,CUS_0x34b5,Standard +0xcc31,CUS_0xbdc7,Standard +0xcc3d,CUS_0x2032,High +0xcc49,CUS_0xa34d,Standard +0xcc55,CUS_0xb5e2,High +0xcc61,CUS_0x9c19,High +0xcc6d,CUS_0x7e39,High +0xcc79,CUS_0x9bae,High +0xcc85,CUS_0xbcd8,Standard +0xcc91,CUS_0x6250,Standard +0xcc9d,CUS_0x4075,Standard +0xcca9,CUS_0x6d8,High +0xccb5,CUS_0xa27a,Standard +0xccc1,CUS_0x21f7,Low +0xcccd,CUS_0x3e2e,High +0xccd9,CUS_0x1535,Standard +0xcce5,CUS_0x6afc,Low +0xccf1,CUS_0xbc4b,Low +0xccfd,CUS_0x1de6,High +0xcd09,CUS_0x826e,High +0xcd15,CUS_0x4590,Standard +0xcd21,CUS_0xa437,Standard +0xcd2d,CUS_0xbdd9,Standard +0xcd39,CUS_0x5f3d,High +0xcd45,CUS_0x67bc,Standard +0xcd51,CUS_0x628d,High +0xcd5d,CUS_0x4b64,Standard +0xcd69,CUS_0xa7ea,Standard +0xcd75,CUS_0xa87f,Low +0xcd81,CUS_0x699f,Standard +0xcd8d,CUS_0x4982,Standard +0xcd99,CUS_0x9916,Low +0xcda5,CUS_0x2b06,Standard +0xcdb1,CUS_0x9344,High +0xcdbd,CUS_0xbfb6,Standard +0xcdc9,CUS_0x63d8,Standard +0xcdd5,CUS_0x8cd9,Standard +0xcde1,CUS_0x23e2,Standard +0xcded,CUS_0xb4a,Standard +0xcdf9,CUS_0x5417,Standard +0xce05,CUS_0x9375,High +0xce11,CUS_0x79ad,Standard +0xce1d,CUS_0x952a,Standard +0xce29,CUS_0xfaf,Low +0xce35,CUS_0x80c0,High +0xce41,CUS_0x2731,Low +0xce4d,CUS_0xb52f,Standard +0xce59,CUS_0x969b,Standard +0xce65,CUS_0x6f55,Low +0xce71,CUS_0x2855,High +0xce7d,CUS_0x9e8d,Standard +0xce89,CUS_0x48a3,Low +0xce95,CUS_0x5ef3,Low +0xcea1,CUS_0x6709,High +0xcead,CUS_0xb312,High +0xceb9,CUS_0x5629,High +0xcec5,CUS_0x6891,Standard +0xced1,CUS_0xc555,Standard +0xcedd,CUS_0x1e2d,Standard +0xcee9,CUS_0xb108,High +0xcef5,CUS_0x8d0,High +0xcf01,CUS_0x34d7,Standard +0xcf0d,CUS_0x8da1,Standard +0xcf19,CUS_0x3105,Standard +0xcf25,CUS_0x4e11,Standard +0xcf31,CUS_0x8ec5,High +0xcf3d,CUS_0xa13f,High +0xcf49,CUS_0x4143,High +0xcf55,CUS_0x564e,High +0xcf61,CUS_0x6c5c,Low +0xcf6d,CUS_0x2c81,Standard +0xcf79,CUS_0xa23d,Standard +0xcf85,CUS_0x2293,Standard +0xcf91,CUS_0x13a9,Low +0xcf9d,CUS_0x1c2a,Standard +0xcfa9,CUS_0x333e,Standard +0xcfb5,CUS_0x3ed1,Low +0xcfc1,CUS_0x6b82,High +0xcfcd,CUS_0x48e4,Low +0xcfd9,CUS_0x439a,Low +0xcfe5,CUS_0x759c,Low +0xcff1,CUS_0xbb69,Standard +0xcffd,CUS_0x592a,High +0xd009,CUS_0x3ef,High +0xd015,CUS_0x6b45,High +0xd021,CUS_0x9f52,High +0xd02d,CUS_0x50b5,High +0xd039,CUS_0x4a65,Standard +0xd045,CUS_0x1fe3,High +0xd051,CUS_0x8636,Standard +0xd05d,CUS_0x8090,Standard +0xd069,CUS_0x2617,Low +0xd075,CUS_0x6fb2,High +0xd081,CUS_0x39e0,Standard +0xd08d,CUS_0x4328,Standard +0xd099,CUS_0x8ff8,Standard +0xd0a5,CUS_0x2372,Standard +0xd0b1,CUS_0x6572,Standard +0xd0bd,CUS_0x9f43,Standard +0xd0c9,CUS_0x3518,Standard +0xd0d5,CUS_0xba90,Standard +0xd0e1,CUS_0xd4d,Standard +0xd0ed,CUS_0x72fe,High +0xd0f9,CUS_0x23a8,High +0xd105,CUS_0x420f,Standard +0xd111,CUS_0x3420,Low +0xd11d,CUS_0x2d1e,Low +0xd129,CUS_0x1f15,High +0xd135,CUS_0xb689,Standard +0xd141,CUS_0x7551,Standard +0xd14d,CUS_0x8858,High +0xd159,CUS_0x1a57,Standard +0xd165,CUS_0xb16,Standard +0xd171,CUS_0x94c5,Standard +0xd17d,CUS_0xae62,Standard +0xd189,CUS_0x5e1b,Standard +0xd195,CUS_0x8ac8,Standard +0xd1a1,CUS_0x7b2f,Standard +0xd1ad,CUS_0x6349,High +0xd1b9,CUS_0x1b09,Standard +0xd1c5,CUS_0x7976,Standard +0xd1d1,CUS_0x5b5,High +0xd1dd,CUS_0xb63e,Standard +0xd1e9,CUS_0x1c5d,Standard +0xd1f5,CUS_0x2de3,Standard +0xd201,CUS_0x2b7d,High +0xd20d,CUS_0x2c08,High +0xd219,CUS_0x97f7,Standard +0xd225,CUS_0x8f05,Low +0xd231,CUS_0x910e,High +0xd23d,CUS_0xc000,Low +0xd249,CUS_0x2a09,Standard +0xd255,CUS_0x62ad,High +0xd261,CUS_0x2217,Standard +0xd26d,CUS_0xb736,Standard +0xd279,CUS_0x9e51,Standard +0xd285,CUS_0x2fca,Low +0xd291,CUS_0x2483,Standard +0xd29d,CUS_0xc517,Standard +0xd2a9,CUS_0x8f6f,Low +0xd2b5,CUS_0xa86a,Standard +0xd2c1,CUS_0xafdf,Standard +0xd2cd,CUS_0x7067,Low +0xd2d9,CUS_0x6b9d,High +0xd2e5,CUS_0x6a33,High +0xd2f1,CUS_0x7a24,Standard +0xd2fd,CUS_0x4e52,Standard +0xd309,CUS_0x4425,High +0xd315,CUS_0x9e4d,Standard +0xd321,CUS_0xad7d,Standard +0xd32d,CUS_0x70b3,Standard +0xd339,CUS_0x4fc2,High +0xd345,CUS_0x53d6,Standard +0xd351,CUS_0x96e8,High +0xd35d,CUS_0x8680,Standard +0xd369,CUS_0x37db,Standard +0xd375,CUS_0x4f31,Low +0xd381,CUS_0x16d4,Low +0xd38d,CUS_0xb363,High +0xd399,CUS_0x6cd9,Low +0xd3a5,CUS_0x3e65,Standard +0xd3b1,CUS_0x69e0,High +0xd3bd,CUS_0x1589,Standard +0xd3c9,CUS_0x9c24,Standard +0xd3d5,CUS_0x4df9,High +0xd3e1,CUS_0x91c4,Standard +0xd3ed,CUS_0xc4f4,High +0xd3f9,CUS_0x54bc,Standard +0xd405,CUS_0x25f8,Standard +0xd411,CUS_0x4aa6,Standard +0xd41d,CUS_0x5e8f,Standard +0xd429,CUS_0x66e3,Standard +0xd435,CUS_0x6ae7,High +0xd441,CUS_0x69eb,High +0xd44d,CUS_0x1d33,High +0xd459,CUS_0x6503,Standard +0xd465,CUS_0x4488,Standard +0xd471,CUS_0x15dd,Standard +0xd47d,CUS_0x8af8,Low +0xd489,CUS_0x7b61,Standard +0xd495,CUS_0x90e7,Standard +0xd4a1,CUS_0x6054,Low +0xd4ad,CUS_0x4779,High +0xd4b9,CUS_0x4cdd,Low +0xd4c5,CUS_0x5000,Standard +0xd4d1,CUS_0x9ab4,Standard +0xd4dd,CUS_0x5387,Standard +0xd4e9,CUS_0x6b6,Low +0xd4f5,CUS_0x5d4c,Standard +0xd501,CUS_0x765,Standard +0xd50d,CUS_0x70bc,Standard +0xd519,CUS_0x2951,High +0xd525,CUS_0x2bfe,Standard +0xd531,CUS_0x9c82,Standard +0xd53d,CUS_0x2a8f,Standard +0xd549,CUS_0x8466,Standard +0xd555,CUS_0x451e,High +0xd561,CUS_0xae07,Low +0xd56d,CUS_0x169d,Standard +0xd579,CUS_0x7453,High +0xd585,CUS_0x6963,Standard +0xd591,CUS_0x46ea,Standard +0xd59d,CUS_0xb2ba,Standard +0xd5a9,CUS_0x6c92,High +0xd5b5,CUS_0x4a7a,Standard +0xd5c1,CUS_0x90fa,Standard +0xd5cd,CUS_0xbb02,High +0xd5d9,CUS_0x94b,High +0xd5e5,CUS_0x6669,High +0xd5f1,CUS_0x9087,Standard +0xd5fd,CUS_0x628,Low +0xd609,CUS_0x98e2,Standard +0xd615,CUS_0x9dc5,Low +0xd621,CUS_0x485e,Low +0xd62d,CUS_0x43cf,Standard +0xd639,CUS_0x55d3,High +0xd645,CUS_0x4588,Standard +0xd651,CUS_0xac16,Standard +0xd65d,CUS_0x6236,Standard +0xd669,CUS_0x5036,Standard +0xd675,CUS_0x8fac,Standard +0xd681,CUS_0x6ebb,Low +0xd68d,CUS_0x8880,Standard +0xd699,CUS_0x6d0e,Low +0xd6a5,CUS_0xb7c7,High +0xd6b1,CUS_0x5e29,Low +0xd6bd,CUS_0x2efd,Standard +0xd6c9,CUS_0x9987,High +0xd6d5,CUS_0x99ab,Standard +0xd6e1,CUS_0x35a2,Standard +0xd6ed,CUS_0x12ce,High +0xd6f9,CUS_0xbfd5,Standard +0xd705,CUS_0xbf2e,Standard +0xd711,CUS_0x5ab,Low +0xd71d,CUS_0xc74,Low +0xd729,CUS_0x2777,Standard +0xd735,CUS_0x81f2,Standard +0xd741,CUS_0xc204,High +0xd74d,CUS_0xa2d2,Standard +0xd759,CUS_0x2bc0,Standard +0xd765,CUS_0x23bf,Standard +0xd771,CUS_0x31e9,High +0xd77d,CUS_0x6203,Standard +0xd789,CUS_0x6a5f,Standard +0xd795,CUS_0xbfdb,Standard +0xd7a1,CUS_0x4ce7,Standard +0xd7ad,CUS_0x7de1,High +0xd7b9,CUS_0x31b8,Standard +0xd7c5,CUS_0x8388,Standard +0xd7d1,CUS_0x26fd,Low +0xd7dd,CUS_0x8d46,High +0xd7e9,CUS_0xcf5,Standard +0xd7f5,CUS_0xb3e3,Low +0xd801,CUS_0x3215,High +0xd80d,CUS_0x44e,Standard +0xd819,CUS_0xb14d,Standard +0xd825,CUS_0x2be8,Standard +0xd831,CUS_0xc206,High +0xd83d,CUS_0x589f,Standard +0xd849,CUS_0x3d10,High +0xd855,CUS_0x8353,Low +0xd861,CUS_0x1e41,Low +0xd86d,CUS_0x7bff,High +0xd879,CUS_0x5d34,Standard +0xd885,CUS_0x1bef,Low +0xd891,CUS_0x7d45,Standard +0xd89d,CUS_0xac7e,Low +0xd8a9,CUS_0x7279,Low +0xd8b5,CUS_0x2d3a,Standard +0xd8c1,CUS_0x871,Low +0xd8cd,CUS_0x8750,Standard +0xd8d9,CUS_0x85e7,Low +0xd8e5,CUS_0x3acd,High +0xd8f1,CUS_0xc461,Standard +0xd8fd,CUS_0x890,High +0xd909,CUS_0x58f7,Standard +0xd915,CUS_0x25f5,Standard +0xd921,CUS_0x2594,Low +0xd92d,CUS_0x4674,High +0xd939,CUS_0x5a2,High +0xd945,CUS_0x35c8,High +0xd951,CUS_0x87d0,High +0xd95d,CUS_0x48f2,Standard +0xd969,CUS_0x2eb4,High +0xd975,CUS_0x7863,High +0xd981,CUS_0x9d89,Standard +0xd98d,CUS_0xc045,Low +0xd999,CUS_0x932c,High +0xd9a5,CUS_0x1f33,Standard +0xd9b1,CUS_0xc70,Standard +0xd9bd,CUS_0xb0c9,High +0xd9c9,CUS_0x3bb8,High +0xd9d5,CUS_0x11c0,Low +0xd9e1,CUS_0x92ec,Standard +0xd9ed,CUS_0x7edb,Standard +0xd9f9,CUS_0x7c79,Low +0xda05,CUS_0x9485,High +0xda11,CUS_0x50ee,High +0xda1d,CUS_0xbfed,High +0xda29,CUS_0x2507,Low +0xda35,CUS_0x3e36,High +0xda41,CUS_0x7872,High +0xda4d,CUS_0x8417,Standard +0xda59,CUS_0x26f5,Standard +0xda65,CUS_0x5c6d,Low +0xda71,CUS_0x99f7,Low +0xda7d,CUS_0x14f5,High +0xda89,CUS_0xb351,Low +0xda95,CUS_0x4f10,High +0xdaa1,CUS_0xa463,Standard +0xdaad,CUS_0x2fbe,Standard +0xdab9,CUS_0x7ad8,High +0xdac5,CUS_0xc1a1,High +0xdad1,CUS_0x69d5,High +0xdadd,CUS_0x38c0,High +0xdae9,CUS_0x447b,High +0xdaf5,CUS_0x2cd4,High +0xdb01,CUS_0xa396,Standard +0xdb0d,CUS_0x17d7,Standard +0xdb19,CUS_0xc13,Standard +0xdb25,CUS_0xc1b4,Low +0xdb31,CUS_0xb61d,Standard +0xdb3d,CUS_0xbd46,Standard +0xdb49,CUS_0x2a91,Standard +0xdb55,CUS_0x4036,Standard +0xdb61,CUS_0x7447,Standard +0xdb6d,CUS_0x468b,Standard +0xdb79,CUS_0x7bc3,Standard +0xdb85,CUS_0x8f3a,High +0xdb91,CUS_0x2d1a,Standard +0xdb9d,CUS_0xa962,Standard +0xdba9,CUS_0x78ab,Standard +0xdbb5,CUS_0x27e8,Standard +0xdbc1,CUS_0x17b5,Low +0xdbcd,CUS_0x614e,Standard +0xdbd9,CUS_0x1234,Standard +0xdbe5,CUS_0x19a3,Standard +0xdbf1,CUS_0x9886,Low +0xdbfd,CUS_0xb32c,Standard +0xdc09,CUS_0xb734,Standard +0xdc15,CUS_0x6f9b,Standard +0xdc21,CUS_0x64b,Standard +0xdc2d,CUS_0x5aa1,Standard +0xdc39,CUS_0x982e,Standard +0xdc45,CUS_0x16f5,Low +0xdc51,CUS_0x19c1,Standard +0xdc5d,CUS_0xbfc1,Standard +0xdc69,CUS_0xc63b,Standard +0xdc75,CUS_0x84d1,Standard +0xdc81,CUS_0xb910,Standard +0xdc8d,CUS_0x9215,Standard +0xdc99,CUS_0x7f67,Low +0xdca5,CUS_0x744c,Standard +0xdcb1,CUS_0x2ccb,Standard +0xdcbd,CUS_0xae0b,High +0xdcc9,CUS_0x93c9,Standard +0xdcd5,CUS_0x1470,Low +0xdce1,CUS_0x44e0,Standard +0xdced,CUS_0x5451,Standard +0xdcf9,CUS_0x12a9,Standard +0xdd05,CUS_0x1cb8,Standard +0xdd11,CUS_0x3221,Standard +0xdd1d,CUS_0x289d,Standard +0xdd29,CUS_0x7640,Standard +0xdd35,CUS_0x8763,High +0xdd41,CUS_0x4dd1,Low +0xdd4d,CUS_0xb5c6,Standard +0xdd59,CUS_0x58d4,Low +0xdd65,CUS_0x4c80,Low +0xdd71,CUS_0xb7a7,Standard +0xdd7d,CUS_0xa0cd,Standard +0xdd89,CUS_0xc23c,High +0xdd95,CUS_0x1f74,Low +0xdda1,CUS_0x72a8,Standard +0xddad,CUS_0x4491,Standard +0xddb9,CUS_0x6cf3,Standard +0xddc5,CUS_0xb127,Low +0xddd1,CUS_0x49b8,Standard +0xdddd,CUS_0x627f,High +0xdde9,CUS_0x48c5,High +0xddf5,CUS_0x38e6,High +0xde01,CUS_0x387e,Standard +0xde0d,CUS_0x2d84,High +0xde19,CUS_0x3f0,Standard +0xde25,CUS_0x3597,Standard +0xde31,CUS_0x4845,Low +0xde3d,CUS_0x5ae1,High +0xde49,CUS_0x7a50,Low +0xde55,CUS_0x4ad9,High +0xde61,CUS_0xc65a,Low +0xde6d,CUS_0xbef7,High +0xde79,CUS_0xb50f,Standard +0xde85,CUS_0x2808,Low +0xde91,CUS_0x2a60,Standard +0xde9d,CUS_0xa2b8,Standard +0xdea9,CUS_0x3c5f,Standard +0xdeb5,CUS_0x25c0,Standard +0xdec1,CUS_0x5548,Low +0xdecd,CUS_0x3650,Standard +0xded9,CUS_0x2e1a,Standard +0xdee5,CUS_0xaadb,Standard +0xdef1,CUS_0x3331,High +0xdefd,CUS_0x2c5b,Standard +0xdf09,CUS_0xab0e,Standard +0xdf15,CUS_0x5382,Standard +0xdf21,CUS_0x2996,Low +0xdf2d,CUS_0x544f,High +0xdf39,CUS_0x4068,Standard +0xdf45,CUS_0xb970,Standard +0xdf51,CUS_0x1b42,Low +0xdf5d,CUS_0xa3b8,Standard +0xdf69,CUS_0x3f7,Standard +0xdf75,CUS_0x9ac5,High +0xdf81,CUS_0x69bb,High +0xdf8d,CUS_0x2000,Standard +0xdf99,CUS_0x58ed,Standard +0xdfa5,CUS_0x92f0,High +0xdfb1,CUS_0xa8c9,Low +0xdfbd,CUS_0x7cc7,Standard +0xdfc9,CUS_0x58e3,Standard +0xdfd5,CUS_0xc57,Standard +0xdfe1,CUS_0x57a7,Standard +0xdfed,CUS_0x6d55,Standard +0xdff9,CUS_0x4798,Standard +0xe005,CUS_0x3c46,Standard +0xe011,CUS_0x103e,Low +0xe01d,CUS_0x71aa,High +0xe029,CUS_0x8e1a,Standard +0xe035,CUS_0x825b,Standard +0xe041,CUS_0x8e88,Standard +0xe04d,CUS_0x987c,High +0xe059,CUS_0x2255,High +0xe065,CUS_0x846a,Standard +0xe071,CUS_0xc127,Standard +0xe07d,CUS_0x9b85,Standard +0xe089,CUS_0x6808,High +0xe095,CUS_0x906a,Standard +0xe0a1,CUS_0xb1bc,High +0xe0ad,CUS_0x4b42,Standard +0xe0b9,CUS_0x847b,High +0xe0c5,CUS_0x66a1,Standard +0xe0d1,CUS_0x61a6,Standard +0xe0dd,CUS_0x1a56,Standard +0xe0e9,CUS_0x1d9a,Standard +0xe0f5,CUS_0x424c,Standard +0xe101,CUS_0x5a5a,Standard +0xe10d,CUS_0x3c09,Low +0xe119,CUS_0x75c4,High +0xe125,CUS_0x70d0,Standard +0xe131,CUS_0x362a,Low +0xe13d,CUS_0x53e0,Low +0xe149,CUS_0xac31,Low +0xe155,CUS_0x6928,High +0xe161,CUS_0xe18,High +0xe16d,CUS_0xaed2,High +0xe179,CUS_0x88a6,High +0xe185,CUS_0x798f,Low +0xe191,CUS_0x64ae,Standard +0xe19d,CUS_0x1ed5,High +0xe1a9,CUS_0x853f,Low +0xe1b5,CUS_0xa319,Standard +0xe1c1,CUS_0x6d40,Standard +0xe1cd,CUS_0x3b4c,Standard +0xe1d9,CUS_0x1b6d,High +0xe1e5,CUS_0x7736,Standard +0xe1f1,CUS_0xb928,Standard +0xe1fd,CUS_0xb805,Standard +0xe209,CUS_0x3b52,Low +0xe215,CUS_0x6112,Low +0xe221,CUS_0xa011,High +0xe22d,CUS_0x4c44,High +0xe239,CUS_0x925d,High +0xe245,CUS_0xc283,High +0xe251,CUS_0x5447,Standard +0xe25d,CUS_0xccf,Standard +0xe269,CUS_0x3586,Standard +0xe275,CUS_0x83fb,Standard +0xe281,CUS_0x6754,High +0xe28d,CUS_0x2fb0,Standard +0xe299,CUS_0xb60f,Low +0xe2a5,CUS_0x6d15,Standard +0xe2b1,CUS_0x4037,Standard +0xe2bd,CUS_0x7c59,Low +0xe2c9,CUS_0x464f,Standard +0xe2d5,CUS_0x38cd,Standard +0xe2e1,CUS_0xc165,Low +0xe2ed,CUS_0x7231,High +0xe2f9,CUS_0xc70e,Low +0xe305,CUS_0x6e98,Standard +0xe311,CUS_0x6aea,High +0xe31d,CUS_0x5ea7,High +0xe329,CUS_0xa660,Standard +0xe335,CUS_0x9e48,Standard +0xe341,CUS_0x7a8d,Standard +0xe34d,CUS_0x180f,Standard +0xe359,CUS_0x52b7,High +0xe365,CUS_0x6635,Standard +0xe371,CUS_0x5162,Standard +0xe37d,CUS_0xbd5b,Standard +0xe389,CUS_0x66f5,High +0xe395,CUS_0x24e0,Standard +0xe3a1,CUS_0x35c6,Standard +0xe3ad,CUS_0x9014,Low +0xe3b9,CUS_0x3e4d,High +0xe3c5,CUS_0x78c2,Standard +0xe3d1,CUS_0x30ee,Standard +0xe3dd,CUS_0x6b1d,Standard +0xe3e9,CUS_0xb5b9,Standard +0xe3f5,CUS_0x2d22,High +0xe401,CUS_0x25cd,High +0xe40d,CUS_0x38f3,Standard +0xe419,CUS_0x5e53,Standard +0xe425,CUS_0x54fd,Standard +0xe431,CUS_0x7f47,Low +0xe43d,CUS_0x3c3a,Standard +0xe449,CUS_0x8511,Low +0xe455,CUS_0x6cce,High +0xe461,CUS_0x7d6,Standard +0xe46d,CUS_0x390d,Standard +0xe479,CUS_0x903b,Standard +0xe485,CUS_0x17d1,Standard +0xe491,CUS_0x9185,Standard +0xe49d,CUS_0x7181,Standard +0xe4a9,CUS_0x9570,Standard +0xe4b5,CUS_0x5df7,Standard +0xe4c1,CUS_0x6f62,High +0xe4cd,CUS_0xa8b1,Standard +0xe4d9,CUS_0x262e,Standard +0xe4e5,CUS_0xb2c,High +0xe4f1,CUS_0x328b,Standard +0xe4fd,CUS_0x6831,High +0xe509,CUS_0x22cf,High +0xe515,CUS_0xd07,Standard +0xe521,CUS_0xb01a,High +0xe52d,CUS_0xabd8,High +0xe539,CUS_0x6ced,High +0xe545,CUS_0x1ae8,Low +0xe551,CUS_0x8d6b,Standard +0xe55d,CUS_0x24f8,High +0xe569,CUS_0x8b98,Standard +0xe575,CUS_0x5786,Standard +0xe581,CUS_0x2a11,Standard +0xe58d,CUS_0xa04b,Standard +0xe599,CUS_0xc38f,High +0xe5a5,CUS_0x9ede,Standard +0xe5b1,CUS_0x5f90,High +0xe5bd,CUS_0x8bde,Low +0xe5c9,CUS_0x1d2c,Standard +0xe5d5,CUS_0x9db8,Standard +0xe5e1,CUS_0xa1ec,Low +0xe5ed,CUS_0x337d,High +0xe5f9,CUS_0xada1,Low +0xe605,CUS_0xa90d,Standard +0xe611,CUS_0x6ec7,Low +0xe61d,CUS_0xb448,High +0xe629,CUS_0x846e,Standard +0xe635,CUS_0xbad6,Low +0xe641,CUS_0x1efc,Standard +0xe64d,CUS_0x8a68,High +0xe659,CUS_0x4f3e,Standard +0xe665,CUS_0x2697,Standard +0xe671,CUS_0x85e9,Standard +0xe67d,CUS_0x379e,Standard +0xe689,CUS_0x4b82,Standard +0xe695,CUS_0x3c8b,Standard +0xe6a1,CUS_0xe5b,Standard +0xe6ad,CUS_0xac28,Standard +0xe6b9,CUS_0x745a,Standard +0xe6c5,CUS_0x21e4,Standard +0xe6d1,CUS_0x7527,High +0xe6dd,CUS_0x18e2,Standard +0xe6e9,CUS_0x74c7,Low +0xe6f5,CUS_0x34ce,Standard +0xe701,CUS_0x3fc5,High +0xe70d,CUS_0x9c99,High +0xe719,CUS_0x8a20,Low +0xe725,CUS_0x55cd,Standard +0xe731,CUS_0x47b,Standard +0xe73d,CUS_0x5b84,High +0xe749,CUS_0xb196,Standard +0xe755,CUS_0x6e5d,High +0xe761,CUS_0x4314,Low +0xe76d,CUS_0x754c,Standard +0xe779,CUS_0xab1f,High +0xe785,CUS_0x2816,Standard +0xe791,CUS_0xbca4,Low +0xe79d,CUS_0x6983,High +0xe7a9,CUS_0x7c2f,High +0xe7b5,CUS_0x1a03,Standard +0xe7c1,CUS_0x6ada,Low +0xe7cd,CUS_0xab61,Standard +0xe7d9,CUS_0x11e2,Low +0xe7e5,CUS_0x14ea,Low +0xe7f1,CUS_0xa127,Standard +0xe7fd,CUS_0xabc0,Standard +0xe809,CUS_0x3e51,High +0xe815,CUS_0x2a45,Standard +0xe821,CUS_0x5fab,Standard +0xe82d,CUS_0x211c,Standard +0xe839,CUS_0x30db,Standard +0xe845,CUS_0x1833,Standard +0xe851,CUS_0x15e7,Standard +0xe85d,CUS_0x32e4,High +0xe869,CUS_0xa182,Standard +0xe875,CUS_0x2fa7,High +0xe881,CUS_0x5e59,Standard +0xe88d,CUS_0xb7e,Standard +0xe899,CUS_0x9bef,Low +0xe8a5,CUS_0xc47,Standard +0xe8b1,CUS_0x8af0,High +0xe8bd,CUS_0x7429,Low +0xe8c9,CUS_0xa899,High +0xe8d5,CUS_0x23cc,High +0xe8e1,CUS_0x40c5,Low +0xe8ed,CUS_0x2df7,Standard +0xe8f9,CUS_0x781a,Standard +0xe905,CUS_0x54bd,Low +0xe911,CUS_0x8f0c,Standard +0xe91d,CUS_0xa1a2,High +0xe929,CUS_0x97e1,High +0xe935,CUS_0x6b8,Standard +0xe941,CUS_0x3149,High +0xe94d,CUS_0x44aa,Low +0xe959,CUS_0x3ae7,High +0xe965,CUS_0x66bc,High +0xe971,CUS_0x2907,Standard +0xe97d,CUS_0x8207,High +0xe989,CUS_0xb725,High +0xe995,CUS_0xb446,High +0xe9a1,CUS_0xba51,Standard +0xe9ad,CUS_0x2e4c,Standard +0xe9b9,CUS_0x3a03,Standard +0xe9c5,CUS_0xdd3,Low +0xe9d1,CUS_0x77da,High +0xe9dd,CUS_0x4154,High +0xe9e9,CUS_0x9449,High +0xe9f5,CUS_0x5067,Low +0xea01,CUS_0x3c55,Standard +0xea0d,CUS_0x61d1,High +0xea19,CUS_0xc4f9,Standard +0xea25,CUS_0x4af1,Standard +0xea31,CUS_0x627a,Low +0xea3d,CUS_0x33b8,High +0xea49,CUS_0x89a6,Low +0xea55,CUS_0x3201,Standard +0xea61,CUS_0x4717,Standard +0xea6d,CUS_0x70f7,Standard +0xea79,CUS_0x8009,Standard +0xea85,CUS_0x355f,Standard +0xea91,CUS_0xb875,Low +0xea9d,CUS_0xcb3,Standard +0xeaa9,CUS_0x96a2,Standard +0xeab5,CUS_0x97fc,Standard +0xeac1,CUS_0x9395,Standard +0xeacd,CUS_0xa8ed,High +0xead9,CUS_0x8a31,High +0xeae5,CUS_0xb6aa,Standard +0xeaf1,CUS_0x6160,Standard +0xeafd,CUS_0x529c,Low +0xeb09,CUS_0x7486,High +0xeb15,CUS_0x320e,Standard +0xeb21,CUS_0x98e6,Standard +0xeb2d,CUS_0x3003,High +0xeb39,CUS_0x39ad,Standard +0xeb45,CUS_0x6ef,Standard +0xeb51,CUS_0x64d6,High +0xeb5d,CUS_0x4574,Standard +0xeb69,CUS_0x7348,Low +0xeb75,CUS_0x81f4,High +0xeb81,CUS_0xc702,Standard +0xeb8d,CUS_0x51bf,Standard +0xeb99,CUS_0x290b,High +0xeba5,CUS_0x4b89,Standard +0xebb1,CUS_0xb7c4,High +0xebbd,CUS_0xaa5b,High +0xebc9,CUS_0x569b,Standard +0xebd5,CUS_0x1d6f,Standard +0xebe1,CUS_0x792b,Standard +0xebed,CUS_0x6689,Standard +0xebf9,CUS_0x6ba3,Low +0xec05,CUS_0xbce2,Standard +0xec11,CUS_0xbc05,High +0xec1d,CUS_0x5b22,Standard +0xec29,CUS_0x995d,High +0xec35,CUS_0x82bd,Low +0xec41,CUS_0x56c,Standard +0xec4d,CUS_0xb743,Standard +0xec59,CUS_0x53f7,Standard +0xec65,CUS_0x1d72,Standard +0xec71,CUS_0xa0c8,Standard +0xec7d,CUS_0x9297,Low +0xec89,CUS_0x848d,Standard +0xec95,CUS_0x8159,Low +0xeca1,CUS_0x30c6,Standard +0xecad,CUS_0x6fbe,Standard +0xecb9,CUS_0x6dfc,Standard +0xecc5,CUS_0x498a,Standard +0xecd1,CUS_0xa2b0,Low +0xecdd,CUS_0x4269,Standard +0xece9,CUS_0xc6f9,High +0xecf5,CUS_0x9648,Standard +0xed01,CUS_0x57f7,High +0xed0d,CUS_0xbc23,Standard +0xed19,CUS_0x7b62,High +0xed25,CUS_0x71ab,High +0xed31,CUS_0x4a97,Standard +0xed3d,CUS_0x253c,High +0xed49,CUS_0x2527,Standard +0xed55,CUS_0x989e,Standard +0xed61,CUS_0x33ba,Low +0xed6d,CUS_0x7f73,Low +0xed79,CUS_0x8049,Standard +0xed85,CUS_0x76af,Standard +0xed91,CUS_0xaf47,Standard +0xed9d,CUS_0x5cd2,High +0xeda9,CUS_0x9f8a,High +0xedb5,CUS_0x1249,Standard +0xedc1,CUS_0x5c92,High +0xedcd,CUS_0x35b9,Standard +0xedd9,CUS_0x2219,Low +0xede5,CUS_0xa1c1,High +0xedf1,CUS_0xa843,Standard +0xedfd,CUS_0x228d,Standard +0xee09,CUS_0x3d57,High +0xee15,CUS_0x810,Standard +0xee21,CUS_0x60e3,Standard +0xee2d,CUS_0xc216,Standard +0xee39,CUS_0x6df9,Standard +0xee45,CUS_0x6ad2,Standard +0xee51,CUS_0x48f7,Standard +0xee5d,CUS_0x4caa,Standard +0xee69,CUS_0x7d6e,Standard +0xee75,CUS_0xb545,Standard +0xee81,CUS_0x5e05,High +0xee8d,CUS_0x48fe,Standard +0xee99,CUS_0x54bf,High +0xeea5,CUS_0x3dd5,Standard +0xeeb1,CUS_0x8627,Standard +0xeebd,CUS_0xacb2,High +0xeec9,CUS_0x9244,High +0xeed5,CUS_0x3881,Low +0xeee1,CUS_0x40d0,High +0xeeed,CUS_0x4ace,High +0xeef9,CUS_0x4900,High +0xef05,CUS_0xa3a1,Standard +0xef11,CUS_0x1820,High +0xef1d,CUS_0xa4de,Standard +0xef29,CUS_0x48dc,Standard +0xef35,CUS_0xc4c7,High +0xef41,CUS_0x1286,Standard +0xef4d,CUS_0x1a71,Standard +0xef59,CUS_0x48e5,Standard +0xef65,CUS_0xa651,High +0xef71,CUS_0xa4d9,Low +0xef7d,CUS_0x38b0,Low +0xef89,CUS_0x2b1c,Standard +0xef95,CUS_0x4db5,High +0xefa1,CUS_0x5849,High +0xefad,CUS_0x478,Low +0xefb9,CUS_0x446a,Low +0xefc5,CUS_0x80e5,High +0xefd1,CUS_0x5b5a,Low +0xefdd,CUS_0x7f5d,High +0xefe9,CUS_0xbbe4,Low +0xeff5,CUS_0x347c,High +0xf001,CUS_0x53eb,Standard +0xf00d,CUS_0x48a8,High +0xf019,CUS_0x17e9,Standard +0xf025,CUS_0x5781,Standard +0xf031,CUS_0x9867,Low +0xf03d,CUS_0x8506,Standard +0xf049,CUS_0x8958,High +0xf055,CUS_0x4ddf,High +0xf061,CUS_0xc56a,Standard +0xf06d,CUS_0x3ff8,Standard +0xf079,CUS_0xbd23,Standard +0xf085,CUS_0xc122,High +0xf091,CUS_0xab13,Standard +0xf09d,CUS_0x871c,Standard +0xf0a9,CUS_0x2d52,Standard +0xf0b5,CUS_0x87f,Standard +0xf0c1,CUS_0x4b11,High +0xf0cd,CUS_0x4fd2,Standard +0xf0d9,CUS_0xab1c,Standard +0xf0e5,CUS_0xb213,High +0xf0f1,CUS_0x4067,High +0xf0fd,CUS_0x670d,High +0xf109,CUS_0x4e26,Standard +0xf115,CUS_0x8d17,Standard +0xf121,CUS_0x6c5f,High +0xf12d,CUS_0x562f,Standard +0xf139,CUS_0x8dbe,Standard +0xf145,CUS_0x36f3,Standard +0xf151,CUS_0x6b9,Standard +0xf15d,CUS_0x4334,High +0xf169,CUS_0x5f7a,Low +0xf175,CUS_0x6d2c,High +0xf181,CUS_0xd91,Standard +0xf18d,CUS_0x815c,Standard +0xf199,CUS_0x65c6,Standard +0xf1a5,CUS_0x986c,Standard +0xf1b1,CUS_0x3709,Standard +0xf1bd,CUS_0x44fa,Standard +0xf1c9,CUS_0xadcf,High +0xf1d5,CUS_0x4f26,Standard +0xf1e1,CUS_0x61fd,Standard +0xf1ed,CUS_0x7b32,Standard +0xf1f9,CUS_0xc18e,Low +0xf205,CUS_0x922e,Low +0xf211,CUS_0x2bed,High +0xf21d,CUS_0x9b5a,Standard +0xf229,CUS_0xf74,Standard +0xf235,CUS_0x5859,Standard +0xf241,CUS_0x6399,Standard +0xf24d,CUS_0x8959,Standard +0xf259,CUS_0x2618,Standard +0xf265,CUS_0x73a5,High +0xf271,CUS_0x64e7,Standard +0xf27d,CUS_0x6556,Low +0xf289,CUS_0xace0,Standard +0xf295,CUS_0x5197,Standard +0xf2a1,CUS_0x4eef,High +0xf2ad,CUS_0xb995,High +0xf2b9,CUS_0xa4ba,Standard +0xf2c5,CUS_0x9a6b,Standard +0xf2d1,CUS_0x78d3,Low +0xf2dd,CUS_0xba11,Standard +0xf2e9,CUS_0x81b9,Standard +0xf2f5,CUS_0x17ef,Standard +0xf301,CUS_0x9b8b,Standard +0xf30d,CUS_0x9f5,Standard +0xf319,CUS_0x6664,Low +0xf325,CUS_0x9e81,Standard +0xf331,CUS_0x9a1d,Standard +0xf33d,CUS_0x5146,Low +0xf349,CUS_0x9a86,Standard +0xf355,CUS_0x41b8,Standard +0xf361,CUS_0x54d0,Standard +0xf36d,CUS_0x1b66,Standard +0xf379,CUS_0x1bfd,High +0xf385,CUS_0xbfbc,Standard +0xf391,CUS_0x835,Standard +0xf39d,CUS_0x8771,Low +0xf3a9,CUS_0x2a4e,Low +0xf3b5,CUS_0x7711,Low +0xf3c1,CUS_0x9636,Low +0xf3cd,CUS_0x7ef5,Standard +0xf3d9,CUS_0x5a6b,High +0xf3e5,CUS_0x4b18,Standard +0xf3f1,CUS_0xa37,High +0xf3fd,CUS_0x8006,Standard +0xf409,CUS_0x5845,High +0xf415,CUS_0x5b62,Standard +0xf421,CUS_0xc3a6,Standard +0xf42d,CUS_0x73ef,Standard +0xf439,CUS_0xc1c,High +0xf445,CUS_0x44c8,Standard +0xf451,CUS_0x7b58,Low +0xf45d,CUS_0x15b9,Standard +0xf469,CUS_0x7c01,Standard +0xf475,CUS_0xb8eb,High +0xf481,CUS_0x2e19,Standard +0xf48d,CUS_0x43a2,High +0xf499,CUS_0xc393,High +0xf4a5,CUS_0x9178,Standard +0xf4b1,CUS_0x7aae,High +0xf4bd,CUS_0x3f4a,Low +0xf4c9,CUS_0x1fbe,Standard +0xf4d5,CUS_0x8afa,Standard +0xf4e1,CUS_0x1b00,Standard +0xf4ed,CUS_0x2c6a,Low +0xf4f9,CUS_0x38f1,High +0xf505,CUS_0x7670,Standard +0xf511,CUS_0x6575,Low +0xf51d,CUS_0x68f6,High +0xf529,CUS_0xbe26,High +0xf535,CUS_0xc2ff,Standard +0xf541,CUS_0xbae3,Standard +0xf54d,CUS_0x2879,High +0xf559,CUS_0xbe9,Standard +0xf565,CUS_0x2258,Standard +0xf571,CUS_0x795,High +0xf57d,CUS_0xa27d,High +0xf589,CUS_0xbb7,Standard +0xf595,CUS_0x32f5,Standard +0xf5a1,CUS_0xae93,High +0xf5ad,CUS_0x6a82,High +0xf5b9,CUS_0x18f5,Standard +0xf5c5,CUS_0xc134,Standard +0xf5d1,CUS_0x3feb,High +0xf5dd,CUS_0x864e,Standard +0xf5e9,CUS_0xa2ce,Standard +0xf5f5,CUS_0xb9e6,Standard +0xf601,CUS_0x7b5a,Standard +0xf60d,CUS_0x643c,Standard +0xf619,CUS_0x697d,Standard +0xf625,CUS_0x7e94,Standard +0xf631,CUS_0x9525,High +0xf63d,CUS_0x893e,Low +0xf649,CUS_0xa766,Standard +0xf655,CUS_0x64aa,Low +0xf661,CUS_0xb4b7,Standard +0xf66d,CUS_0xad02,Low +0xf679,CUS_0x3710,Standard +0xf685,CUS_0x6fca,Standard +0xf691,CUS_0x2f91,High +0xf69d,CUS_0x9e8f,Low +0xf6a9,CUS_0x2abb,Standard +0xf6b5,CUS_0xde1,Standard +0xf6c1,CUS_0x94e1,Low +0xf6cd,CUS_0xbf07,Standard +0xf6d9,CUS_0x5b7,High +0xf6e5,CUS_0x4d0f,Standard +0xf6f1,CUS_0x5c75,Standard +0xf6fd,CUS_0x7a7f,Low +0xf709,CUS_0x1881,High +0xf715,CUS_0x92c6,Standard +0xf721,CUS_0xba06,Standard +0xf72d,CUS_0x9491,High +0xf739,CUS_0x13d6,High +0xf745,CUS_0x5c07,Standard +0xf751,CUS_0xa384,Low +0xf75d,CUS_0x65b9,Low +0xf769,CUS_0xa8c,Low +0xf775,CUS_0xaf6,High +0xf781,CUS_0x52ad,High +0xf78d,CUS_0x130c,High +0xf799,CUS_0x9520,Standard +0xf7a5,CUS_0x45df,Low +0xf7b1,CUS_0x8fa9,High +0xf7bd,CUS_0xbd0f,Standard +0xf7c9,CUS_0x1ad6,Standard +0xf7d5,CUS_0x4d2a,Standard +0xf7e1,CUS_0xa0b8,High +0xf7ed,CUS_0x3208,Low +0xf7f9,CUS_0xba21,Low +0xf805,CUS_0x5e96,High +0xf811,CUS_0x909a,Standard +0xf81d,CUS_0x3ae5,Low +0xf829,CUS_0x7167,Standard +0xf835,CUS_0x784,Standard +0xf841,CUS_0x84c,Low +0xf84d,CUS_0x2b77,Low +0xf859,CUS_0x8459,Low +0xf865,CUS_0x1e06,Standard +0xf871,CUS_0x4dff,Standard +0xf87d,CUS_0x20a6,Standard +0xf889,CUS_0x8ddd,Standard +0xf895,CUS_0x87c9,High +0xf8a1,CUS_0x148e,Standard +0xf8ad,CUS_0x604a,Standard +0xf8b9,CUS_0x7129,High +0xf8c5,CUS_0x2959,High +0xf8d1,CUS_0x1441,Low +0xf8dd,CUS_0xbae6,Standard +0xf8e9,CUS_0x9199,High +0xf8f5,CUS_0x1269,Low +0xf901,CUS_0xbed9,Low +0xf90d,CUS_0x2ca8,Standard +0xf919,CUS_0x2283,Standard +0xf925,CUS_0xf42,High +0xf931,CUS_0x247c,Standard +0xf93d,CUS_0x10eb,Low +0xf949,CUS_0x355c,Standard +0xf955,CUS_0x802f,High +0xf961,CUS_0x634d,Low +0xf96d,CUS_0x7d3b,Standard +0xf979,CUS_0x2a8b,Standard +0xf985,CUS_0x1e8e,Standard +0xf991,CUS_0x64a5,Standard +0xf99d,CUS_0x2a6b,Low +0xf9a9,CUS_0xa618,Low +0xf9b5,CUS_0x7d0a,Standard +0xf9c1,CUS_0x460c,Standard +0xf9cd,CUS_0x4dba,Standard +0xf9d9,CUS_0x69a6,Low +0xf9e5,CUS_0x4e3,High +0xf9f1,CUS_0xa2a3,Standard +0xf9fd,CUS_0x6a8a,Standard +0xfa09,CUS_0x6a7e,Standard +0xfa15,CUS_0x6853,High +0xfa21,CUS_0x41c,Standard +0xfa2d,CUS_0x4efc,High +0xfa39,CUS_0xc22c,High +0xfa45,CUS_0xb264,Standard +0xfa51,CUS_0x1ff5,Standard +0xfa5d,CUS_0x9828,High +0xfa69,CUS_0x23f8,Standard +0xfa75,CUS_0x9d7e,Standard +0xfa81,CUS_0x4d1c,Standard +0xfa8d,CUS_0x1ebe,Standard +0xfa99,CUS_0x31b7,Low +0xfaa5,CUS_0x72b2,Standard +0xfab1,CUS_0xa453,Low +0xfabd,CUS_0xff6,Standard +0xfac9,CUS_0x8684,Standard +0xfad5,CUS_0x24d7,Standard +0xfae1,CUS_0xbec0,Standard +0xfaed,CUS_0x99cf,Standard +0xfaf9,CUS_0x524f,Standard +0xfb05,CUS_0x5b04,Standard +0xfb11,CUS_0x4313,High +0xfb1d,CUS_0xa7b8,Standard +0xfb29,CUS_0x593c,Standard +0xfb35,CUS_0x28e7,Standard +0xfb41,CUS_0x301f,Standard +0xfb4d,CUS_0x8de0,High +0xfb59,CUS_0xaab7,Standard +0xfb65,CUS_0x6275,Low +0xfb71,CUS_0xace2,Standard +0xfb7d,CUS_0x85bd,High +0xfb89,CUS_0x4862,Standard +0xfb95,CUS_0xaf93,High +0xfba1,CUS_0xbc74,Standard +0xfbad,CUS_0x8563,Standard +0xfbb9,CUS_0x82ff,Standard +0xfbc5,CUS_0x47e5,Standard +0xfbd1,CUS_0x5ba1,High +0xfbdd,CUS_0x312c,High +0xfbe9,CUS_0xb51d,Low +0xfbf5,CUS_0x8919,Standard +0xfc01,CUS_0x52cf,Standard +0xfc0d,CUS_0xc526,Standard +0xfc19,CUS_0xa8d,Standard +0xfc25,CUS_0x6073,Standard +0xfc31,CUS_0x53fc,High +0xfc3d,CUS_0x74bd,Standard +0xfc49,CUS_0xbea3,Standard +0xfc55,CUS_0x4db6,Low +0xfc61,CUS_0xa00f,Standard +0xfc6d,CUS_0x109f,High +0xfc79,CUS_0x32e2,Standard +0xfc85,CUS_0x3175,Standard +0xfc91,CUS_0x38aa,Standard +0xfc9d,CUS_0xc016,Low +0xfca9,CUS_0xc5fd,Standard +0xfcb5,CUS_0x424f,Low +0xfcc1,CUS_0x233a,Standard +0xfccd,CUS_0x732b,Standard +0xfcd9,CUS_0x1d00,High +0xfce5,CUS_0x346e,Standard +0xfcf1,CUS_0xae09,High +0xfcfd,CUS_0x516c,Standard +0xfd09,CUS_0x9573,Low +0xfd15,CUS_0x9daa,Low +0xfd21,CUS_0x70e,Standard +0xfd2d,CUS_0xc282,High +0xfd39,CUS_0x1d7b,Low +0xfd45,CUS_0x669f,High +0xfd51,CUS_0x6020,Standard +0xfd5d,CUS_0xa773,High +0xfd69,CUS_0xb453,Low +0xfd75,CUS_0x3dd8,Low +0xfd81,CUS_0x30e3,Standard +0xfd8d,CUS_0x133b,Low +0xfd99,CUS_0x681c,High +0xfda5,CUS_0x48ee,Standard +0xfdb1,CUS_0x14d9,Standard +0xfdbd,CUS_0x4aee,Low +0xfdc9,CUS_0x291b,Low +0xfdd5,CUS_0xb801,Low +0xfde1,CUS_0xa88c,Standard +0xfded,CUS_0x63d,Standard +0xfdf9,CUS_0x54a8,Standard +0xfe05,CUS_0x2a68,Low +0xfe11,CUS_0x1718,High +0xfe1d,CUS_0xa6e8,Low +0xfe29,CUS_0x8395,Low +0xfe35,CUS_0xa66d,Standard +0xfe41,CUS_0x5bac,Low +0xfe4d,CUS_0x7baf,Standard +0xfe59,CUS_0x79ac,Standard +0xfe65,CUS_0x3c2c,Standard +0xfe71,CUS_0x5d67,Low +0xfe7d,CUS_0x183d,High +0xfe89,CUS_0x85c0,Standard +0xfe95,CUS_0xfb4,Standard +0xfea1,CUS_0x9278,Standard +0xfead,CUS_0x7423,Low +0xfeb9,CUS_0x6287,Standard +0xfec5,CUS_0x5711,Standard +0xfed1,CUS_0xb66c,Standard +0xfedd,CUS_0x4824,High +0xfee9,CUS_0x4ab7,Standard +0xfef5,CUS_0x9e1e,High +0xff01,CUS_0x34f2,High +0xff0d,CUS_0x16d5,Standard +0xff19,CUS_0x3e79,High +0xff25,CUS_0x9f1c,High +0xff31,CUS_0x7db4,Low +0xff3d,CUS_0x7db2,Standard +0xff49,CUS_0x12a6,High +0xff55,CUS_0x7e3a,Low +0xff61,CUS_0x8197,Standard +0xff6d,CUS_0xbf64,Low +0xff79,CUS_0x71e2,Low +0xff85,CUS_0x8247,Standard +0xff91,CUS_0x46b1,Standard +0xff9d,CUS_0x1894,High +0xffa9,CUS_0x1340,Standard +0xffb5,CUS_0x4939,High +0xffc1,CUS_0x94e2,Standard +0xffcd,CUS_0x89c2,Standard +0xffd9,CUS_0x3b36,Standard +0xffe5,CUS_0xc062,Low +0xfff1,CUS_0xabcf,High +0xfffd,CUS_0x1a4b,High +0x10009,CUS_0x54c3,High +0x10015,CUS_0xab6e,High +0x10021,CUS_0xa7cc,Standard +0x1002d,CUS_0x3f12,Standard +0x10039,CUS_0x8ea,Standard +0x10045,CUS_0xbe4c,Standard +0x10051,CUS_0x72c0,Standard +0x1005d,CUS_0x3d6c,Standard +0x10069,CUS_0x41be,Standard +0x10075,CUS_0xaea6,High +0x10081,CUS_0x3059,High +0x1008d,CUS_0xb804,Standard +0x10099,CUS_0x48e6,Standard +0x100a5,CUS_0x4c43,Standard +0x100b1,CUS_0x7197,Standard +0x100bd,CUS_0x34e9,High +0x100c9,CUS_0x3afc,Low +0x100d5,CUS_0x1911,Low +0x100e1,CUS_0x5cdb,Standard +0x100ed,CUS_0x1e76,Standard +0x100f9,CUS_0x41d5,Standard +0x10105,CUS_0x6f2d,High +0x10111,CUS_0x7953,High +0x1011d,CUS_0xb966,High +0x10129,CUS_0x375e,High +0x10135,CUS_0x1096,High +0x10141,CUS_0x8dc4,High +0x1014d,CUS_0xbc5f,High +0x10159,CUS_0x9878,Standard +0x10165,CUS_0x3e7b,High +0x10171,CUS_0x485d,Standard +0x1017d,CUS_0xabf6,Low +0x10189,CUS_0x23b4,High +0x10195,CUS_0x9974,Standard +0x101a1,CUS_0x53bf,High +0x101ad,CUS_0xa806,Standard +0x101b9,CUS_0x7af7,Low +0x101c5,CUS_0xb767,Low +0x101d1,CUS_0x3752,Low +0x101dd,CUS_0x1358,High +0x101e9,CUS_0x9d64,Standard +0x101f5,CUS_0x3382,Low +0x10201,CUS_0xc6d1,Standard +0x1020d,CUS_0x503f,High +0x10219,CUS_0x2dd5,Low +0x10225,CUS_0xb3b,High +0x10231,CUS_0x9173,Standard +0x1023d,CUS_0x4da1,Low +0x10249,CUS_0x62cd,Standard +0x10255,CUS_0x98b5,Standard +0x10261,CUS_0x7df0,Low +0x1026d,CUS_0x3e83,Standard +0x10279,CUS_0x5fe6,Standard +0x10285,CUS_0xb66f,High +0x10291,CUS_0x9b4f,Standard +0x1029d,CUS_0x9620,High +0x102a9,CUS_0x1ffc,Standard +0x102b5,CUS_0xa3bf,High +0x102c1,CUS_0x797,Standard +0x102cd,CUS_0x501d,Standard +0x102d9,CUS_0xb795,Standard +0x102e5,CUS_0xb1aa,Standard +0x102f1,CUS_0x8aff,Standard +0x102fd,CUS_0x9ed1,Low +0x10309,CUS_0xc2b7,Standard +0x10315,CUS_0x1cc4,Low +0x10321,CUS_0x944c,High +0x1032d,CUS_0x897f,Standard +0x10339,CUS_0xa80,Standard +0x10345,CUS_0x68d5,Low +0x10351,CUS_0x4b41,High +0x1035d,CUS_0x3d82,Standard +0x10369,CUS_0x4c62,Standard +0x10375,CUS_0x4a2b,High +0x10381,CUS_0x9586,Standard +0x1038d,CUS_0x9556,Standard +0x10399,CUS_0x55c7,Standard +0x103a5,CUS_0x725f,High +0x103b1,CUS_0x7040,Standard +0x103bd,CUS_0x2c1a,Standard +0x103c9,CUS_0x63f3,High +0x103d5,CUS_0x9b37,Standard +0x103e1,CUS_0x4fcc,Standard +0x103ed,CUS_0x509,Low +0x103f9,CUS_0x3f49,Low +0x10405,CUS_0x5a59,High +0x10411,CUS_0x8b90,Standard +0x1041d,CUS_0x24f9,Standard +0x10429,CUS_0x7745,High +0x10435,CUS_0xa6a7,High +0x10441,CUS_0xbf03,Low +0x1044d,CUS_0x806f,Standard +0x10459,CUS_0x9c08,Low +0x10465,CUS_0x4d7e,Standard +0x10471,CUS_0x80b4,High +0x1047d,CUS_0x243e,Standard +0x10489,CUS_0x7071,Standard +0x10495,CUS_0xa106,Low +0x104a1,CUS_0xae70,High +0x104ad,CUS_0xac04,Standard +0x104b9,CUS_0x240c,High +0x104c5,CUS_0x3672,Standard +0x104d1,CUS_0x9afb,High +0x104dd,CUS_0x1155,Low +0x104e9,CUS_0xb1f8,Standard +0x104f5,CUS_0x145c,Standard +0x10501,CUS_0x6582,High +0x1050d,CUS_0x8b02,High +0x10519,CUS_0x472e,High +0x10525,CUS_0x3fee,Low +0x10531,CUS_0xac54,Standard +0x1053d,CUS_0x2200,High +0x10549,CUS_0xba5,Standard +0x10555,CUS_0x99b,Standard +0x10561,CUS_0x9ae,High +0x1056d,CUS_0x849d,High +0x10579,CUS_0x7e10,High +0x10585,CUS_0x9d83,Standard +0x10591,CUS_0x1108,High +0x1059d,CUS_0x4ee4,High +0x105a9,CUS_0x8cdf,Low +0x105b5,CUS_0xb5fd,Standard +0x105c1,CUS_0x3934,Standard +0x105cd,CUS_0x5012,High +0x105d9,CUS_0x4213,Standard +0x105e5,CUS_0x9796,Standard +0x105f1,CUS_0x6aeb,Standard +0x105fd,CUS_0x5bff,Low +0x10609,CUS_0x4899,High +0x10615,CUS_0x20a1,Standard +0x10621,CUS_0x2f56,Standard +0x1062d,CUS_0x9ec8,Low +0x10639,CUS_0xbfe0,High +0x10645,CUS_0x4f1a,High +0x10651,CUS_0x5815,High +0x1065d,CUS_0xb2b8,Standard +0x10669,CUS_0xbe1,Standard +0x10675,CUS_0xc506,Standard +0x10681,CUS_0x6612,Low +0x1068d,CUS_0x51ff,Standard +0x10699,CUS_0xacd9,High +0x106a5,CUS_0xf4d,Standard +0x106b1,CUS_0x194f,Standard +0x106bd,CUS_0x3854,Standard +0x106c9,CUS_0x74fa,Standard +0x106d5,CUS_0x2f78,High +0x106e1,CUS_0x5543,Standard +0x106ed,CUS_0x146a,Standard +0x106f9,CUS_0x4f41,High +0x10705,CUS_0xa267,Standard +0x10711,CUS_0xbe63,Standard +0x1071d,CUS_0x4197,Standard +0x10729,CUS_0x5591,High +0x10735,CUS_0xbfea,Low +0x10741,CUS_0x7266,Standard +0x1074d,CUS_0xafce,Low +0x10759,CUS_0xb756,High +0x10765,CUS_0x89a9,Standard +0x10771,CUS_0x7ac7,High +0x1077d,CUS_0x4198,Standard +0x10789,CUS_0xb728,High +0x10795,CUS_0x10df,High +0x107a1,CUS_0x7b09,Standard +0x107ad,CUS_0x3279,High +0x107b9,CUS_0x5209,Standard +0x107c5,CUS_0xabbd,High +0x107d1,CUS_0x585c,Standard +0x107dd,CUS_0xbd89,Standard +0x107e9,CUS_0x81b8,Standard +0x107f5,CUS_0x1cee,Low +0x10801,CUS_0xa8d1,Low +0x1080d,CUS_0xa1cb,Low +0x10819,CUS_0x53e8,High +0x10825,CUS_0x27a6,Standard +0x10831,CUS_0xa990,High +0x1083d,CUS_0x2d38,Standard +0x10849,CUS_0x66e0,Standard +0x10855,CUS_0xa1bb,Standard +0x10861,CUS_0x3ff4,Standard +0x1086d,CUS_0x2bb0,Standard +0x10879,CUS_0xb873,High +0x10885,CUS_0x182b,Standard +0x10891,CUS_0x536b,Standard +0x1089d,CUS_0x1a44,Standard +0x108a9,CUS_0x62c3,Low +0x108b5,CUS_0x9944,High +0x108c1,CUS_0x5052,Standard +0x108cd,CUS_0x66d9,High +0x108d9,CUS_0x8814,High +0x108e5,CUS_0x9633,High +0x108f1,CUS_0x6077,High +0x108fd,CUS_0xbb70,Low +0x10909,CUS_0x8a3,Standard +0x10915,CUS_0x753d,High +0x10921,CUS_0x76f6,Low +0x1092d,CUS_0xbdf,Standard +0x10939,CUS_0xb303,High +0x10945,CUS_0x7b6,Standard +0x10951,CUS_0x2ba4,Standard +0x1095d,CUS_0x1deb,Standard +0x10969,CUS_0x4079,High +0x10975,CUS_0x68ce,Low +0x10981,CUS_0x9093,Standard +0x1098d,CUS_0x3adc,High +0x10999,CUS_0x136c,High +0x109a5,CUS_0x3bdb,Low +0x109b1,CUS_0x25be,Standard +0x109bd,CUS_0x8121,Standard +0x109c9,CUS_0x14d5,Standard +0x109d5,CUS_0x2441,High +0x109e1,CUS_0xc3d,Standard +0x109ed,CUS_0x3913,Standard +0x109f9,CUS_0x944f,Standard +0x10a05,CUS_0xb300,Standard +0x10a11,CUS_0xa26b,High +0x10a1d,CUS_0xc1c6,Low +0x10a29,CUS_0xb96b,High +0x10a35,CUS_0x5215,Low +0x10a41,CUS_0x87e4,Standard +0x10a4d,CUS_0x4ef2,Low +0x10a59,CUS_0xbac4,High +0x10a65,CUS_0xb6b1,Low +0x10a71,CUS_0xc0e7,Low +0x10a7d,CUS_0x72b6,Standard +0x10a89,CUS_0x36b6,Standard +0x10a95,CUS_0x5501,High +0x10aa1,CUS_0x27e0,Standard +0x10aad,CUS_0xaaea,Low +0x10ab9,CUS_0xaafc,Low +0x10ac5,CUS_0x575e,Standard +0x10ad1,CUS_0x1383,Standard +0x10add,CUS_0xa70c,Low +0x10ae9,CUS_0xa022,Standard +0x10af5,CUS_0x5172,High +0x10b01,CUS_0x6b24,High +0x10b0d,CUS_0x7e51,Standard +0x10b19,CUS_0x26b1,Low +0x10b25,CUS_0x39bd,Standard +0x10b31,CUS_0x28cb,Standard +0x10b3d,CUS_0x6c9d,Standard +0x10b49,CUS_0xa408,High +0x10b55,CUS_0x190e,Standard +0x10b61,CUS_0x37bf,Low +0x10b6d,CUS_0xc271,Low +0x10b79,CUS_0x8d9d,Low +0x10b85,CUS_0x40e8,High +0x10b91,CUS_0x18f3,Low +0x10b9d,CUS_0x7ad7,Standard +0x10ba9,CUS_0x5b05,High +0x10bb5,CUS_0x78f3,Standard +0x10bc1,CUS_0x3e89,Standard +0x10bcd,CUS_0x8c77,High +0x10bd9,CUS_0x73f9,Standard +0x10be5,CUS_0x9c03,High +0x10bf1,CUS_0xbd11,High +0x10bfd,CUS_0x4e35,Low +0x10c09,CUS_0x9535,High +0x10c15,CUS_0xc254,Low +0x10c21,CUS_0x11ae,Standard +0x10c2d,CUS_0x87c2,Standard +0x10c39,CUS_0xab1e,Low +0x10c45,CUS_0x4711,Standard +0x10c51,CUS_0x45bd,Standard +0x10c5d,CUS_0xc08,High +0x10c69,CUS_0xa3e4,Low +0x10c75,CUS_0xa9b1,High +0x10c81,CUS_0x9e82,Standard +0x10c8d,CUS_0x6fc4,Low +0x10c99,CUS_0x61c2,Standard +0x10ca5,CUS_0xb794,Standard +0x10cb1,CUS_0xab18,Standard +0x10cbd,CUS_0x2108,High +0x10cc9,CUS_0xaa52,Standard +0x10cd5,CUS_0xa401,Standard +0x10ce1,CUS_0x8706,Low +0x10ced,CUS_0x958b,High +0x10cf9,CUS_0x1355,High +0x10d05,CUS_0xb18d,Standard +0x10d11,CUS_0x9eb2,Standard +0x10d1d,CUS_0x48e1,Standard +0x10d29,CUS_0xc664,High +0x10d35,CUS_0xc4f5,High +0x10d41,CUS_0x27ab,Standard +0x10d4d,CUS_0x13ee,Standard +0x10d59,CUS_0x2037,Low +0x10d65,CUS_0xa39c,High +0x10d71,CUS_0x86bc,Standard +0x10d7d,CUS_0xc56b,High +0x10d89,CUS_0xb209,Standard +0x10d95,CUS_0x5073,Standard +0x10da1,CUS_0x24df,Low +0x10dad,CUS_0x3a55,Standard +0x10db9,CUS_0x8a5,High +0x10dc5,CUS_0xdac,Low +0x10dd1,CUS_0x2194,Standard +0x10ddd,CUS_0x6972,Low +0x10de9,CUS_0x90e6,Standard +0x10df5,CUS_0x87f0,Standard +0x10e01,CUS_0x583b,Low +0x10e0d,CUS_0x135c,Standard +0x10e19,CUS_0x8c2d,Standard +0x10e25,CUS_0x911e,Low +0x10e31,CUS_0x4098,Standard +0x10e3d,CUS_0x8449,Standard +0x10e49,CUS_0x7051,Low +0x10e55,CUS_0x3d53,Standard +0x10e61,CUS_0x1979,Low +0x10e6d,CUS_0xa262,Standard +0x10e79,CUS_0xb17b,Low +0x10e85,CUS_0xbaee,High +0x10e91,CUS_0x8bf5,Standard +0x10e9d,CUS_0x97d7,Standard +0x10ea9,CUS_0x2f1d,High +0x10eb5,CUS_0x86da,High +0x10ec1,CUS_0xc04f,Standard +0x10ecd,CUS_0x5157,Standard +0x10ed9,CUS_0x6743,High +0x10ee5,CUS_0xaf67,Low +0x10ef1,CUS_0x8fec,Standard +0x10efd,CUS_0xa4ab,Low +0x10f09,CUS_0x3a71,High +0x10f15,CUS_0xb8d5,High +0x10f21,CUS_0x7334,Standard +0x10f2d,CUS_0x406c,High +0x10f39,CUS_0x7ea8,High +0x10f45,CUS_0x1190,Low +0x10f51,CUS_0xb16c,Standard +0x10f5d,CUS_0x41b3,Standard +0x10f69,CUS_0xb949,Standard +0x10f75,CUS_0xe6c,Low +0x10f81,CUS_0x9f06,Low +0x10f8d,CUS_0x3d68,High +0x10f99,CUS_0x8398,Standard +0x10fa5,CUS_0xc131,High +0x10fb1,CUS_0x5b4e,Low +0x10fbd,CUS_0x443a,Standard +0x10fc9,CUS_0x13b0,Standard +0x10fd5,CUS_0x3097,Standard +0x10fe1,CUS_0x861c,Standard +0x10fed,CUS_0x5a48,High +0x10ff9,CUS_0x6eec,Standard +0x11005,CUS_0x24f1,High +0x11011,CUS_0x2647,High +0x1101d,CUS_0x9614,High +0x11029,CUS_0xde4,Low +0x11035,CUS_0x1663,Standard +0x11041,CUS_0x2d6f,Standard +0x1104d,CUS_0xb250,High +0x11059,CUS_0xafa3,Low +0x11065,CUS_0x63ac,Standard +0x11071,CUS_0x405,Standard +0x1107d,CUS_0x87fa,High +0x11089,CUS_0xaa5a,Standard +0x11095,CUS_0xaba4,Low +0x110a1,CUS_0x4750,High +0x110ad,CUS_0x7801,Standard +0x110b9,CUS_0xb565,Standard +0x110c5,CUS_0x5afd,Standard +0x110d1,CUS_0xa28,High +0x110dd,CUS_0xb461,High +0x110e9,CUS_0x5afa,High +0x110f5,CUS_0xae36,Standard +0x11101,CUS_0x3385,Standard +0x1110d,CUS_0x140e,Standard +0x11119,CUS_0x2acc,High +0x11125,CUS_0x4f7c,Standard +0x11131,CUS_0x3943,Standard +0x1113d,CUS_0x4f62,Low +0x11149,CUS_0x8a78,Standard +0x11155,CUS_0x6a4b,Standard +0x11161,CUS_0x1799,Standard +0x1116d,CUS_0x8f3,Standard +0x11179,CUS_0x2ca3,High +0x11185,CUS_0x8d96,Low +0x11191,CUS_0xbd5,Standard +0x1119d,CUS_0x23b0,Standard +0x111a9,CUS_0x435f,High +0x111b5,CUS_0xb88c,Low +0x111c1,CUS_0xa082,Standard +0x111cd,CUS_0x5b42,Standard +0x111d9,CUS_0x90d7,Standard +0x111e5,CUS_0x3f3e,High +0x111f1,CUS_0x8f7f,Standard +0x111fd,CUS_0x7e0b,High +0x11209,CUS_0x204b,High +0x11215,CUS_0xaf18,High +0x11221,CUS_0xb021,High +0x1122d,CUS_0x9840,High +0x11239,CUS_0x181e,Standard +0x11245,CUS_0x1fcc,Standard +0x11251,CUS_0x1440,Standard +0x1125d,CUS_0xdfb,Standard +0x11269,CUS_0x63f1,High +0x11275,CUS_0x2b99,High +0x11281,CUS_0x270c,High +0x1128d,CUS_0x1eb6,Standard +0x11299,CUS_0x1b59,Standard +0x112a5,CUS_0xbe83,High +0x112b1,CUS_0x1cbd,Standard +0x112bd,CUS_0xa903,Low +0x112c9,CUS_0xa714,Standard +0x112d5,CUS_0x4cb3,Standard +0x112e1,CUS_0x3c87,Standard +0x112ed,CUS_0xbf9c,Standard +0x112f9,CUS_0xb7fb,High +0x11305,CUS_0x3cfb,Standard +0x11311,CUS_0x42c0,Standard +0x1131d,CUS_0x6213,Standard +0x11329,CUS_0x1972,High +0x11335,CUS_0x543,Standard +0x11341,CUS_0x2ed5,High +0x1134d,CUS_0x4d48,Standard +0x11359,CUS_0x3777,Standard +0x11365,CUS_0x625d,Standard +0x11371,CUS_0x380d,Standard +0x1137d,CUS_0x56ab,Standard +0x11389,CUS_0x4cab,Standard +0x11395,CUS_0x8359,High +0x113a1,CUS_0x7974,Standard +0x113ad,CUS_0x3c72,Low +0x113b9,CUS_0x710a,High +0x113c5,CUS_0x1e48,Standard +0x113d1,CUS_0xa2eb,Standard +0x113dd,CUS_0x8a48,Standard +0x113e9,CUS_0x8bcf,Standard +0x113f5,CUS_0xa29a,Low +0x11401,CUS_0x78af,Standard +0x1140d,CUS_0x2bb5,High +0x11419,CUS_0x7d93,Standard +0x11425,CUS_0x6b52,Standard +0x11431,CUS_0x892d,Standard +0x1143d,CUS_0x5641,Standard +0x11449,CUS_0x4f05,High +0x11455,CUS_0x8bcd,Standard +0x11461,CUS_0x3b90,Standard +0x1146d,CUS_0x3257,Standard +0x11479,CUS_0x25ed,Low +0x11485,CUS_0x6dec,Low +0x11491,CUS_0x3d60,Standard +0x1149d,CUS_0x269b,High +0x114a9,CUS_0x91dd,Standard +0x114b5,CUS_0x7036,High +0x114c1,CUS_0x2ca6,Standard +0x114cd,CUS_0x8852,Low +0x114d9,CUS_0xc0c8,High +0x114e5,CUS_0x340e,Standard +0x114f1,CUS_0x4c9c,High +0x114fd,CUS_0x2040,High +0x11509,CUS_0x7755,High +0x11515,CUS_0x411d,High +0x11521,CUS_0x28ee,High +0x1152d,CUS_0x9be7,Low +0x11539,CUS_0xb4b4,High +0x11545,CUS_0x6a52,Low +0x11551,CUS_0xe91,Standard +0x1155d,CUS_0x57e7,High +0x11569,CUS_0x9acf,Standard +0x11575,CUS_0x153d,Standard +0x11581,CUS_0x1a87,Standard +0x1158d,CUS_0x3169,Standard +0x11599,CUS_0x1640,Standard +0x115a5,CUS_0xbab,Low +0x115b1,CUS_0x9fea,High +0x115bd,CUS_0x29f9,Standard +0x115c9,CUS_0x5c2d,Standard +0x115d5,CUS_0x5af1,Standard +0x115e1,CUS_0x6c8e,Standard +0x115ed,CUS_0xc010,Low +0x115f9,CUS_0x60c5,Standard +0x11605,CUS_0xa878,High +0x11611,CUS_0x997e,Standard +0x1161d,CUS_0x6320,Low +0x11629,CUS_0x23d6,Standard +0x11635,CUS_0x6fa1,Standard +0x11641,CUS_0x50ab,High +0x1164d,CUS_0xbb2,High +0x11659,CUS_0x38a1,Standard +0x11665,CUS_0xa224,High +0x11671,CUS_0x7f31,Low +0x1167d,CUS_0x9ed7,Standard +0x11689,CUS_0x52cb,Low +0x11695,CUS_0xaeb1,Standard +0x116a1,CUS_0x5cfd,Standard +0x116ad,CUS_0x7aa8,High +0x116b9,CUS_0xa160,High +0x116c5,CUS_0xa4ae,Standard +0x116d1,CUS_0x2ef3,Standard +0x116dd,CUS_0x95eb,Standard +0x116e9,CUS_0x5337,Standard +0x116f5,CUS_0x6da8,High +0x11701,CUS_0x7330,Standard +0x1170d,CUS_0x35e6,Standard +0x11719,CUS_0xac08,High +0x11725,CUS_0x8ea8,Low +0x11731,CUS_0x244e,Standard +0x1173d,CUS_0x8fea,Standard +0x11749,CUS_0x155b,High +0x11755,CUS_0x628e,High +0x11761,CUS_0x6d85,Standard +0x1176d,CUS_0x470e,Standard +0x11779,CUS_0x7740,Standard +0x11785,CUS_0xb107,Low +0x11791,CUS_0xb585,High +0x1179d,CUS_0x4661,Standard +0x117a9,CUS_0x77e2,Standard +0x117b5,CUS_0x4d16,High +0x117c1,CUS_0xbacd,Standard +0x117cd,CUS_0x4f57,Standard +0x117d9,CUS_0x1185,High +0x117e5,CUS_0x755e,Standard +0x117f1,CUS_0x9538,Low +0x117fd,CUS_0xb239,Low +0x11809,CUS_0x25ad,High +0x11815,CUS_0x130b,Standard +0x11821,CUS_0x5ed7,High +0x1182d,CUS_0x147a,Standard +0x11839,CUS_0x5a5e,High +0x11845,CUS_0x2b09,High +0x11851,CUS_0x6b61,Standard +0x1185d,CUS_0xc49c,Low +0x11869,CUS_0x5952,Standard +0x11875,CUS_0x957c,Standard +0x11881,CUS_0x311a,Standard +0x1188d,CUS_0x35a4,Standard +0x11899,CUS_0xc4b0,Standard +0x118a5,CUS_0xb70f,Low +0x118b1,CUS_0xecb,Low +0x118bd,CUS_0x9e9d,High +0x118c9,CUS_0x54e8,Standard +0x118d5,CUS_0x6ed7,High +0x118e1,CUS_0x5a1a,Low +0x118ed,CUS_0x56e7,Standard +0x118f9,CUS_0xebd,High +0x11905,CUS_0x875,Standard +0x11911,CUS_0x1864,Standard +0x1191d,CUS_0xa7d5,High +0x11929,CUS_0x5a3d,High +0x11935,CUS_0xf15,Standard +0x11941,CUS_0x2297,Standard +0x1194d,CUS_0x6587,Low +0x11959,CUS_0x1fec,Low +0x11965,CUS_0x15a9,Standard +0x11971,CUS_0x1612,Standard +0x1197d,CUS_0xb096,Standard +0x11989,CUS_0xab32,Standard +0x11995,CUS_0xa3e1,High +0x119a1,CUS_0xbbd5,High +0x119ad,CUS_0x67b5,Standard +0x119b9,CUS_0x4250,Standard +0x119c5,CUS_0xa222,Standard +0x119d1,CUS_0x536e,High +0x119dd,CUS_0x57dc,Standard +0x119e9,CUS_0x863b,High +0x119f5,CUS_0x4274,Standard +0x11a01,CUS_0x104a,Standard +0x11a0d,CUS_0x7e62,High +0x11a19,CUS_0x7dec,High +0x11a25,CUS_0xc4bc,Standard +0x11a31,CUS_0xbf94,Standard +0x11a3d,CUS_0x770a,High +0x11a49,CUS_0xc323,High +0x11a55,CUS_0xa00a,Low +0x11a61,CUS_0x3a39,Low +0x11a6d,CUS_0x6119,Standard +0x11a79,CUS_0x2b61,Standard +0x11a85,CUS_0x675c,High +0x11a91,CUS_0x5f06,High +0x11a9d,CUS_0x563c,Standard +0x11aa9,CUS_0x7f4b,Standard +0x11ab5,CUS_0x5471,Standard +0x11ac1,CUS_0x99b3,Standard +0x11acd,CUS_0x2c87,Standard +0x11ad9,CUS_0x7058,High +0x11ae5,CUS_0xa9e,Standard +0x11af1,CUS_0xc5cb,Standard +0x11afd,CUS_0x629c,Standard +0x11b09,CUS_0x854f,High +0x11b15,CUS_0x3bde,Low +0x11b21,CUS_0x954e,Standard +0x11b2d,CUS_0x34be,Standard +0x11b39,CUS_0xad97,High +0x11b45,CUS_0x6e61,High +0x11b51,CUS_0xb63c,Standard +0x11b5d,CUS_0x9378,High +0x11b69,CUS_0x7e63,Low +0x11b75,CUS_0x7e06,Low +0x11b81,CUS_0x5cb6,Standard +0x11b8d,CUS_0xa67d,Standard +0x11b99,CUS_0x17c3,High +0x11ba5,CUS_0xec4,Standard +0x11bb1,CUS_0xbdac,High +0x11bbd,CUS_0x8eb6,Standard +0x11bc9,CUS_0x4f4f,Standard +0x11bd5,CUS_0x5262,Standard +0x11be1,CUS_0x40f9,Standard +0x11bed,CUS_0x6331,Low +0x11bf9,CUS_0x3da0,Standard +0x11c05,CUS_0x6cd4,Standard +0x11c11,CUS_0x26d0,Standard +0x11c1d,CUS_0xc1e9,Standard +0x11c29,CUS_0xe2b,Standard +0x11c35,CUS_0x2479,High +0x11c41,CUS_0x3b89,Standard +0x11c4d,CUS_0xbcfc,High +0x11c59,CUS_0x437,Standard +0x11c65,CUS_0xb4c4,Standard +0x11c71,CUS_0x376b,High +0x11c7d,CUS_0x251a,Standard +0x11c89,CUS_0x2226,Standard +0x11c95,CUS_0xb98f,Standard +0x11ca1,CUS_0x9fa9,Standard +0x11cad,CUS_0x26aa,Standard +0x11cb9,CUS_0x4771,High +0x11cc5,CUS_0x1869,Standard +0x11cd1,CUS_0x218e,High +0x11cdd,CUS_0x109d,Standard +0x11ce9,CUS_0x92c8,Low +0x11cf5,CUS_0x1dc1,Low +0x11d01,CUS_0xbdcf,Standard +0x11d0d,CUS_0x4034,Standard +0x11d19,CUS_0x77ca,Standard +0x11d25,CUS_0x5569,Standard +0x11d31,CUS_0x5bbc,Standard +0x11d3d,CUS_0x619d,High +0x11d49,CUS_0x6d35,Low +0x11d55,CUS_0x43af,Standard +0x11d61,CUS_0xdda,High +0x11d6d,CUS_0x59bd,High +0x11d79,CUS_0xb59c,Low +0x11d85,CUS_0xc4f2,Standard +0x11d91,CUS_0x820c,Standard +0x11d9d,CUS_0x8c36,High +0x11da9,CUS_0x43b8,Standard +0x11db5,CUS_0xc2bf,Standard +0x11dc1,CUS_0x51e5,High +0x11dcd,CUS_0xb9da,High +0x11dd9,CUS_0x2452,Standard +0x11de5,CUS_0x879a,Standard +0x11df1,CUS_0x8892,Standard +0x11dfd,CUS_0x2e97,Standard +0x11e09,CUS_0xb017,Standard +0x11e15,CUS_0x48a0,High +0x11e21,CUS_0x756e,Standard +0x11e2d,CUS_0x65ab,High +0x11e39,CUS_0x7793,Standard +0x11e45,CUS_0x90f,Standard +0x11e51,CUS_0x66e5,Standard +0x11e5d,CUS_0x6088,High +0x11e69,CUS_0x98f5,High +0x11e75,CUS_0x9533,Low +0x11e81,CUS_0xc10,High +0x11e8d,CUS_0x9081,Standard +0x11e99,CUS_0x1db4,Standard +0x11ea5,CUS_0x3fcf,Low +0x11eb1,CUS_0x7837,High +0x11ebd,CUS_0x3102,Low +0x11ec9,CUS_0x2cab,High +0x11ed5,CUS_0xa347,High +0x11ee1,CUS_0x42a5,Standard +0x11eed,CUS_0x604,High +0x11ef9,CUS_0x3a57,Standard +0x11f05,CUS_0x5128,Standard +0x11f11,CUS_0x68df,Standard +0x11f1d,CUS_0x7341,Low +0x11f29,CUS_0x88b6,Standard +0x11f35,CUS_0x7e02,Standard +0x11f41,CUS_0x7aba,Standard +0x11f4d,CUS_0xa520,Low +0x11f59,CUS_0x3bbe,Low +0x11f65,CUS_0xc6c7,Standard +0x11f71,CUS_0x8d60,High +0x11f7d,CUS_0x3c95,Standard +0x11f89,CUS_0x806c,High +0x11f95,CUS_0x47fe,Standard +0x11fa1,CUS_0xa973,Standard +0x11fad,CUS_0x689b,High +0x11fb9,CUS_0x4973,Standard +0x11fc5,CUS_0xadb2,Low +0x11fd1,CUS_0x3a41,Standard +0x11fdd,CUS_0x2c10,Standard +0x11fe9,CUS_0x805b,Standard +0x11ff5,CUS_0x86f4,High +0x12001,CUS_0x82d,Standard +0x1200d,CUS_0x5129,High +0x12019,CUS_0x61ec,Standard +0x12025,CUS_0x15da,Standard +0x12031,CUS_0x7955,Low +0x1203d,CUS_0x6d04,Low +0x12049,CUS_0x105c,Standard +0x12055,CUS_0x6083,Standard +0x12061,CUS_0xa7ab,Standard +0x1206d,CUS_0x1370,High +0x12079,CUS_0x8cbe,Low +0x12085,CUS_0x5180,Standard +0x12091,CUS_0xfb6,Standard +0x1209d,CUS_0x5525,Standard +0x120a9,CUS_0x59d0,Standard +0x120b5,CUS_0xc76,High +0x120c1,CUS_0x39b2,High +0x120cd,CUS_0x346d,Standard +0x120d9,CUS_0x9aef,Low +0x120e5,CUS_0xb2b5,Standard +0x120f1,CUS_0x1d8d,High +0x120fd,CUS_0xc5aa,Standard +0x12109,CUS_0x3948,Standard +0x12115,CUS_0x6dc9,Standard +0x12121,CUS_0x5cc8,Standard +0x1212d,CUS_0x3b72,Standard +0x12139,CUS_0x3f1d,Standard +0x12145,CUS_0x1ebc,Low +0x12151,CUS_0x504f,High +0x1215d,CUS_0x9f95,Standard +0x12169,CUS_0x2d7e,Low +0x12175,CUS_0xa36e,Standard +0x12181,CUS_0x94cf,Standard +0x1218d,CUS_0x879d,High +0x12199,CUS_0x6fa7,Standard +0x121a5,CUS_0x6cda,High +0x121b1,CUS_0x799b,Standard +0x121bd,CUS_0xab9d,High +0x121c9,CUS_0x2822,Low +0x121d5,CUS_0x67b1,Low +0x121e1,CUS_0xed4,Standard +0x121ed,CUS_0xc3c7,Low +0x121f9,CUS_0x8293,Standard +0x12205,CUS_0xb975,Standard +0x12211,CUS_0x4c96,Low +0x1221d,CUS_0x4ef6,High +0x12229,CUS_0x8fa7,Standard +0x12235,CUS_0x46b5,High +0x12241,CUS_0x211a,Standard +0x1224d,CUS_0x27c2,Standard +0x12259,CUS_0x6c65,High +0x12265,CUS_0x1f66,Standard +0x12271,CUS_0x552f,Low +0x1227d,CUS_0x6d54,Standard +0x12289,CUS_0x930a,Low +0x12295,CUS_0x5e28,Standard +0x122a1,CUS_0xab7d,Low +0x122ad,CUS_0x5e9d,High +0x122b9,CUS_0x3d58,Standard +0x122c5,CUS_0xad6d,Standard +0x122d1,CUS_0xb39f,High +0x122dd,CUS_0x962b,Standard +0x122e9,CUS_0x57da,Standard +0x122f5,CUS_0x99e5,High +0x12301,CUS_0x9b80,Standard +0x1230d,CUS_0x7ac9,Standard +0x12319,CUS_0x1c3b,Low +0x12325,CUS_0x9b22,Standard +0x12331,CUS_0x584a,High +0x1233d,CUS_0x79d9,High +0x12349,CUS_0xaa14,Standard +0x12355,CUS_0x9d23,Standard +0x12361,CUS_0x6032,High +0x1236d,CUS_0x4424,Standard +0x12379,CUS_0x65d0,Standard +0x12385,CUS_0x841f,Standard +0x12391,CUS_0x8018,Standard +0x1239d,CUS_0x3e32,Standard +0x123a9,CUS_0xab43,High +0x123b5,CUS_0x3713,Low +0x123c1,CUS_0x821a,Standard +0x123cd,CUS_0x9398,Standard +0x123d9,CUS_0x64d4,Low +0x123e5,CUS_0x6cb4,High +0x123f1,CUS_0x8d48,Standard +0x123fd,CUS_0x537,Standard +0x12409,CUS_0x3f69,High +0x12415,CUS_0x81ac,Standard +0x12421,CUS_0x2a15,High +0x1242d,CUS_0x9dc2,Standard +0x12439,CUS_0x4a82,Standard +0x12445,CUS_0x8c68,Standard +0x12451,CUS_0xa814,Standard +0x1245d,CUS_0x4596,Standard +0x12469,CUS_0x968a,Standard +0x12475,CUS_0x2f7a,Low +0x12481,CUS_0x6f91,Standard +0x1248d,CUS_0x510f,Standard +0x12499,CUS_0xbbda,Low +0x124a5,CUS_0x86c0,High +0x124b1,CUS_0x92e5,Standard +0x124bd,CUS_0x33bf,High +0x124c9,CUS_0x9000,Standard +0x124d5,CUS_0x92ff,Standard +0x124e1,CUS_0xa614,Standard +0x124ed,CUS_0x780c,Standard +0x124f9,CUS_0x1f8d,Standard +0x12505,CUS_0xc249,Standard +0x12511,CUS_0x8d22,High +0x1251d,CUS_0xb03b,High +0x12529,CUS_0x6b7,Standard +0x12535,CUS_0x2b73,Standard +0x12541,CUS_0xb38d,High +0x1254d,CUS_0x2709,Standard +0x12559,CUS_0xa075,High +0x12565,CUS_0x872f,Low +0x12571,CUS_0x6a79,Standard +0x1257d,CUS_0xac5d,Standard +0x12589,CUS_0xad53,Standard +0x12595,CUS_0x11b1,Standard +0x125a1,CUS_0x3260,Standard +0x125ad,CUS_0x26bf,Low +0x125b9,CUS_0x10b6,Standard +0x125c5,CUS_0x56f1,High +0x125d1,CUS_0x6a9e,High +0x125dd,CUS_0x3525,Standard +0x125e9,CUS_0x7f9c,Standard +0x125f5,CUS_0x4999,Standard +0x12601,CUS_0x2353,High +0x1260d,CUS_0x584b,Standard +0x12619,CUS_0x2788,High +0x12625,CUS_0x631e,High +0x12631,CUS_0x463,Standard +0x1263d,CUS_0x9650,Standard +0x12649,CUS_0xf30,Standard +0x12655,CUS_0x7ed8,Standard +0x12661,CUS_0x727e,Low +0x1266d,CUS_0x51a4,High +0x12679,CUS_0xb168,Low +0x12685,CUS_0x1542,Low +0x12691,CUS_0x434c,Standard +0x1269d,CUS_0x901c,High +0x126a9,CUS_0x315f,Low +0x126b5,CUS_0x3d42,High +0x126c1,CUS_0xab56,Low +0x126cd,CUS_0x40bd,Standard +0x126d9,CUS_0x5ef2,Standard +0x126e5,CUS_0xc2a7,High +0x126f1,CUS_0x1c3a,Low +0x126fd,CUS_0x78e9,Standard +0x12709,CUS_0x5749,Standard +0x12715,CUS_0x752c,Standard +0x12721,CUS_0x90e2,Standard +0x1272d,CUS_0x8800,High +0x12739,CUS_0xbc0e,Standard +0x12745,CUS_0x30bd,Standard +0x12751,CUS_0x43fd,Standard +0x1275d,CUS_0x6779,Standard +0x12769,CUS_0x2958,Low +0x12775,CUS_0x72f9,Low +0x12781,CUS_0x1c57,Standard +0x1278d,CUS_0x3b20,Standard +0x12799,CUS_0x50d5,Standard +0x127a5,CUS_0x883b,Standard +0x127b1,CUS_0x6ba2,Standard +0x127bd,CUS_0x5b41,Standard +0x127c9,CUS_0x2fb7,Standard +0x127d5,CUS_0x44b9,Standard +0x127e1,CUS_0x460f,High +0x127ed,CUS_0x165a,Standard +0x127f9,CUS_0x7032,Standard +0x12805,CUS_0xa79,High +0x12811,CUS_0x416,Standard +0x1281d,CUS_0x8a1,High +0x12829,CUS_0x5f1b,Standard +0x12835,CUS_0x3767,Standard +0x12841,CUS_0xbc56,Low +0x1284d,CUS_0x1821,High +0x12859,CUS_0x838a,Standard +0x12865,CUS_0x21c0,High +0x12871,CUS_0xa9a2,High +0x1287d,CUS_0xa84b,High +0x12889,CUS_0x4d03,Standard +0x12895,CUS_0x1e8d,Low +0x128a1,CUS_0x7eb2,High +0x128ad,CUS_0x69e5,Standard +0x128b9,CUS_0x6f3e,High +0x128c5,CUS_0x5478,High +0x128d1,CUS_0x4a18,Standard +0x128dd,CUS_0x2876,High +0x128e9,CUS_0x3872,Standard +0x128f5,CUS_0x7a34,Standard +0x12901,CUS_0x7928,Standard +0x1290d,CUS_0x9fc5,Standard +0x12919,CUS_0x75aa,High +0x12925,CUS_0x6a9,Standard +0x12931,CUS_0xbe68,Standard +0x1293d,CUS_0x4bbb,Standard +0x12949,CUS_0x25ae,Standard +0x12955,CUS_0x8f35,Low +0x12961,CUS_0xa934,Standard +0x1296d,CUS_0x2f77,Standard +0x12979,CUS_0x3119,Low +0x12985,CUS_0x1a00,Low +0x12991,CUS_0x51a1,Standard +0x1299d,CUS_0x45de,Low +0x129a9,CUS_0x961f,Standard +0x129b5,CUS_0xbd0b,Standard +0x129c1,CUS_0x42ec,Low +0x129cd,CUS_0x269a,High +0x129d9,CUS_0x48ac,High +0x129e5,CUS_0x5a54,High +0x129f1,CUS_0x1cbe,Standard +0x129fd,CUS_0x9fce,High +0x12a09,CUS_0x49d3,Standard +0x12a15,CUS_0x4533,Standard +0x12a21,CUS_0x7468,High +0x12a2d,CUS_0xbc67,Low +0x12a39,CUS_0x8a39,Standard +0x12a45,CUS_0x84af,Standard +0x12a51,CUS_0x7210,Standard +0x12a5d,CUS_0x92e3,Standard +0x12a69,CUS_0x7315,Standard +0x12a75,CUS_0xc0cd,High +0x12a81,CUS_0x5aeb,High +0x12a8d,CUS_0x1e91,Standard +0x12a99,CUS_0xc5d1,High +0x12aa5,CUS_0x43bc,Low +0x12ab1,CUS_0x2999,Standard +0x12abd,CUS_0x65ca,Low +0x12ac9,CUS_0x70c5,Standard +0x12ad5,CUS_0x446,High +0x12ae1,CUS_0x7528,Standard +0x12aed,CUS_0x13bc,Standard +0x12af9,CUS_0x4b9c,Standard +0x12b05,CUS_0x6d71,High +0x12b11,CUS_0xdc1,Low +0x12b1d,CUS_0x1a4a,Low +0x12b29,CUS_0xb443,Standard +0x12b35,CUS_0xa9a,Standard +0x12b41,CUS_0xd50,Low +0x12b4d,CUS_0x5883,High +0x12b59,CUS_0xa40d,Standard +0x12b65,CUS_0x330a,High +0x12b71,CUS_0xb4c3,High +0x12b7d,CUS_0x56d6,Standard +0x12b89,CUS_0x174b,Standard +0x12b95,CUS_0x2703,High +0x12ba1,CUS_0x837e,Standard +0x12bad,CUS_0x993a,Low +0x12bb9,CUS_0x46ef,Standard +0x12bc5,CUS_0x4abd,Standard +0x12bd1,CUS_0x432e,Low +0x12bdd,CUS_0x7281,High +0x12be9,CUS_0x2491,High +0x12bf5,CUS_0xa780,Low +0x12c01,CUS_0x729,High +0x12c0d,CUS_0x1458,Standard +0x12c19,CUS_0x2eb3,Standard +0x12c25,CUS_0x92d6,High +0x12c31,CUS_0x2a12,Standard +0x12c3d,CUS_0x4695,Standard +0x12c49,CUS_0xae34,Standard +0x12c55,CUS_0x5d4f,Low +0x12c61,CUS_0x245e,Standard +0x12c6d,CUS_0x4fb8,High +0x12c79,CUS_0x932a,High +0x12c85,CUS_0x9978,High +0x12c91,CUS_0xea5,Low +0x12c9d,CUS_0x3610,Standard +0x12ca9,CUS_0x38b4,Standard +0x12cb5,CUS_0x8cb5,High +0x12cc1,CUS_0x6ecf,Standard +0x12ccd,CUS_0x8854,High +0x12cd9,CUS_0x4e01,High +0x12ce5,CUS_0x14b4,Low +0x12cf1,CUS_0x8d77,Standard +0x12cfd,CUS_0x4da9,High +0x12d09,CUS_0x8f7e,Standard +0x12d15,CUS_0xb7a4,Standard +0x12d21,CUS_0xb15e,Standard +0x12d2d,CUS_0x12be,Standard +0x12d39,CUS_0x81e6,High +0x12d45,CUS_0x98cd,Low +0x12d51,CUS_0x4470,Standard +0x12d5d,CUS_0x20ba,Standard +0x12d69,CUS_0x7354,Standard +0x12d75,CUS_0x8d02,High +0x12d81,CUS_0x55d9,High +0x12d8d,CUS_0x3bd0,High +0x12d99,CUS_0x19fc,Standard +0x12da5,CUS_0xbe20,Standard +0x12db1,CUS_0x9319,Standard +0x12dbd,CUS_0x4adc,High +0x12dc9,CUS_0x456f,Standard +0x12dd5,CUS_0x150d,High +0x12de1,CUS_0xb337,Standard +0x12ded,CUS_0x334d,Standard +0x12df9,CUS_0x90d8,Standard +0x12e05,CUS_0x884a,Standard +0x12e11,CUS_0x4c87,High +0x12e1d,CUS_0xc066,Standard +0x12e29,CUS_0x5ecb,High +0x12e35,CUS_0x51c9,Standard +0x12e41,CUS_0x42a,Standard +0x12e4d,CUS_0xbc04,Standard +0x12e59,CUS_0x509e,High +0x12e65,CUS_0xbd90,Standard +0x12e71,CUS_0x8841,Low +0x12e7d,CUS_0xc40f,High +0x12e89,CUS_0x6172,High +0x12e95,CUS_0x56cf,Standard +0x12ea1,CUS_0x5915,High +0x12ead,CUS_0x3023,High +0x12eb9,CUS_0xa493,Low +0x12ec5,CUS_0x169c,Low +0x12ed1,CUS_0x406e,Standard +0x12edd,CUS_0x3a93,High +0x12ee9,CUS_0x2a5d,Standard +0x12ef5,CUS_0x2cc2,High +0x12f01,CUS_0x673c,Standard +0x12f0d,CUS_0x5a77,High +0x12f19,CUS_0x3c90,Low +0x12f25,CUS_0x80d8,Standard +0x12f31,CUS_0x92df,High +0x12f3d,CUS_0xb0e5,Low +0x12f49,CUS_0xa08e,Low +0x12f55,CUS_0x4a0d,Standard +0x12f61,CUS_0xbec6,Standard +0x12f6d,CUS_0x5a2f,Standard +0x12f79,CUS_0x4838,Standard +0x12f85,CUS_0x96fa,Low +0x12f91,CUS_0x1290,Low +0x12f9d,CUS_0x5ffa,Standard +0x12fa9,CUS_0x8dfe,Standard +0x12fb5,CUS_0x67e4,Standard +0x12fc1,CUS_0x7044,Standard +0x12fcd,CUS_0x872e,Standard +0x12fd9,CUS_0x60aa,High +0x12fe5,CUS_0x9233,Standard +0x12ff1,CUS_0x3fdf,Standard +0x12ffd,CUS_0x9a4f,Low +0x13009,CUS_0x9836,Standard +0x13015,CUS_0x5eec,Low +0x13021,CUS_0xc258,Standard +0x1302d,CUS_0x9976,High +0x13039,CUS_0xb645,Standard +0x13045,CUS_0xa3db,Standard +0x13051,CUS_0x8e50,Standard +0x1305d,CUS_0x5bad,Standard +0x13069,CUS_0x5b2f,Standard +0x13075,CUS_0x8bdf,Standard +0x13081,CUS_0xbd4a,Standard +0x1308d,CUS_0x2c3e,Standard +0x13099,CUS_0x9f55,Standard +0x130a5,CUS_0x785,Standard +0x130b1,CUS_0x6fff,Low +0x130bd,CUS_0xbb9a,Low +0x130c9,CUS_0x5978,High +0x130d5,CUS_0x8b38,Standard +0x130e1,CUS_0x4bcf,Low +0x130ed,CUS_0x3b46,Standard +0x130f9,CUS_0x6bda,Low +0x13105,CUS_0xcfc,Low +0x13111,CUS_0xc0af,High +0x1311d,CUS_0xb6e7,High +0x13129,CUS_0x51fe,Standard +0x13135,CUS_0x54b3,High +0x13141,CUS_0x48a6,Standard +0x1314d,CUS_0x5dd3,Low +0x13159,CUS_0x1f36,Standard +0x13165,CUS_0xb9c9,High +0x13171,CUS_0x867a,High +0x1317d,CUS_0x666b,Standard +0x13189,CUS_0x3a86,Standard +0x13195,CUS_0x8a9c,Standard +0x131a1,CUS_0x81ee,Standard +0x131ad,CUS_0x7ea0,Standard +0x131b9,CUS_0x8990,Low +0x131c5,CUS_0x7f70,Standard +0x131d1,CUS_0x9122,Standard +0x131dd,CUS_0x9762,High +0x131e9,CUS_0x344a,Standard +0x131f5,CUS_0x3554,Standard +0x13201,CUS_0x4c71,Standard +0x1320d,CUS_0x4fee,Standard +0x13219,CUS_0x5087,High +0x13225,CUS_0x36d3,Standard +0x13231,CUS_0x81d6,High +0x1323d,CUS_0x6ae2,Standard +0x13249,CUS_0x2342,Standard +0x13255,CUS_0x6b35,High +0x13261,CUS_0x235a,Standard +0x1326d,CUS_0xb0e8,Standard +0x13279,CUS_0x41ee,High +0x13285,CUS_0x85f1,Standard +0x13291,CUS_0x9340,Standard +0x1329d,CUS_0x94ef,High +0x132a9,CUS_0x15b4,Low +0x132b5,CUS_0xc26a,Standard +0x132c1,CUS_0x80ce,Standard +0x132cd,CUS_0x41eb,Standard +0x132d9,CUS_0x84cc,High +0x132e5,CUS_0x2bf6,Standard +0x132f1,CUS_0x5fc6,Standard +0x132fd,CUS_0x8d04,Standard +0x13309,CUS_0x7011,High +0x13315,CUS_0x2f86,High +0x13321,CUS_0x75f2,Low +0x1332d,CUS_0x7a8e,Standard +0x13339,CUS_0x4394,High +0x13345,CUS_0x2f7d,Standard +0x13351,CUS_0x1920,Standard +0x1335d,CUS_0x3faa,High +0x13369,CUS_0x4ebf,High +0x13375,CUS_0x438d,Low +0x13381,CUS_0xc265,Low +0x1338d,CUS_0x4ee9,Low +0x13399,CUS_0x55eb,Standard +0x133a5,CUS_0x98ed,Standard +0x133b1,CUS_0x4f3b,Low +0x133bd,CUS_0x966b,Standard +0x133c9,CUS_0xb83e,Low +0x133d5,CUS_0x5cac,High +0x133e1,CUS_0xc29e,Standard +0x133ed,CUS_0x2dec,High +0x133f9,CUS_0x22b9,High +0x13405,CUS_0xc669,Standard +0x13411,CUS_0x525f,Standard +0x1341d,CUS_0x6ba,Low +0x13429,CUS_0x895d,Standard +0x13435,CUS_0x6ee0,High +0x13441,CUS_0xa55e,Low +0x1344d,CUS_0xbb85,Standard +0x13459,CUS_0x821,Standard +0x13465,CUS_0x6603,Standard +0x13471,CUS_0x80b7,High +0x1347d,CUS_0x6b0c,Low +0x13489,CUS_0xa290,Standard +0x13495,CUS_0x737a,Low +0x134a1,CUS_0x77b6,Standard +0x134ad,CUS_0x93f4,High +0x134b9,CUS_0x9275,Standard +0x134c5,CUS_0x7a51,Standard +0x134d1,CUS_0xc12f,Standard +0x134dd,CUS_0x88e5,Low +0x134e9,CUS_0x5121,Low +0x134f5,CUS_0x87d5,Standard +0x13501,CUS_0xa394,Standard +0x1350d,CUS_0xa279,Standard +0x13519,CUS_0x1638,High +0x13525,CUS_0x1bc4,Standard +0x13531,CUS_0x603a,High +0x1353d,CUS_0xa84d,High +0x13549,CUS_0x6b6e,Standard +0x13555,CUS_0x8870,Low +0x13561,CUS_0x501c,High +0x1356d,CUS_0x69df,Standard +0x13579,CUS_0xb22f,High +0x13585,CUS_0x98c2,Standard +0x13591,CUS_0x17c5,High +0x1359d,CUS_0x9416,High +0x135a9,CUS_0x845d,High +0x135b5,CUS_0x3806,Standard +0x135c1,CUS_0x7033,Low +0x135cd,CUS_0x581b,Low +0x135d9,CUS_0x5234,Low +0x135e5,CUS_0x919a,High +0x135f1,CUS_0x61c6,Standard +0x135fd,CUS_0x9694,Standard +0x13609,CUS_0x14b9,Standard +0x13615,CUS_0x6915,High +0x13621,CUS_0x9bb4,Standard +0x1362d,CUS_0x6cec,Standard +0x13639,CUS_0x3551,Standard +0x13645,CUS_0xc48d,Standard +0x13651,CUS_0x932,Standard +0x1365d,CUS_0x63af,Standard +0x13669,CUS_0xc2dd,Standard +0x13675,CUS_0x4972,Standard +0x13681,CUS_0x2d76,Standard +0x1368d,CUS_0x347b,High +0x13699,CUS_0x55b3,High +0x136a5,CUS_0xb59e,Low +0x136b1,CUS_0xbcdd,Standard +0x136bd,CUS_0xf84,Standard +0x136c9,CUS_0x67ec,Standard +0x136d5,CUS_0x51b9,High +0x136e1,CUS_0x8b78,Low +0x136ed,CUS_0x8823,Standard +0x136f9,CUS_0x5aa7,Low +0x13705,CUS_0x2778,Standard +0x13711,CUS_0x8786,High +0x1371d,CUS_0xc6c3,High +0x13729,CUS_0xba2a,Standard +0x13735,CUS_0xb61a,High +0x13741,CUS_0x7392,High +0x1374d,CUS_0x21c1,Standard +0x13759,CUS_0x7699,Standard +0x13765,CUS_0x508c,Low +0x13771,CUS_0xba01,Standard +0x1377d,CUS_0xc1d7,Standard +0x13789,CUS_0x6b4d,Standard +0x13795,CUS_0x679e,High +0x137a1,CUS_0x69a2,Standard +0x137ad,CUS_0xdf5,Standard +0x137b9,CUS_0x4056,Standard +0x137c5,CUS_0x6a27,Standard +0x137d1,CUS_0x4c64,Low +0x137dd,CUS_0xaabb,Standard +0x137e9,CUS_0x3b4f,High +0x137f5,CUS_0x421d,High +0x13801,CUS_0x2881,High +0x1380d,CUS_0x1aaf,Standard +0x13819,CUS_0x61ba,High +0x13825,CUS_0xbfb5,Standard +0x13831,CUS_0x6dd3,High +0x1383d,CUS_0x9e43,Standard +0x13849,CUS_0x6420,High +0x13855,CUS_0x3f75,Standard +0x13861,CUS_0xb001,Standard +0x1386d,CUS_0x82b6,High +0x13879,CUS_0x23b9,Standard +0x13885,CUS_0x25e3,High +0x13891,CUS_0x663d,High +0x1389d,CUS_0x6f11,Standard +0x138a9,CUS_0x30f8,Standard +0x138b5,CUS_0x79bc,High +0x138c1,CUS_0xfac,Standard +0x138cd,CUS_0x1c65,High +0x138d9,CUS_0x62d7,Standard +0x138e5,CUS_0xc4dd,Standard +0x138f1,CUS_0x5a8b,High +0x138fd,CUS_0x23a4,High +0x13909,CUS_0x7e76,Standard +0x13915,CUS_0xc48b,High +0x13921,CUS_0x265a,Standard +0x1392d,CUS_0x715e,High +0x13939,CUS_0x9a93,Standard +0x13945,CUS_0xa570,Standard +0x13951,CUS_0x4fc1,Low +0x1395d,CUS_0xb57b,Standard +0x13969,CUS_0x78a7,Standard +0x13975,CUS_0x4340,High +0x13981,CUS_0x6568,High +0x1398d,CUS_0x1c9c,High +0x13999,CUS_0x980b,Low +0x139a5,CUS_0x3c51,High +0x139b1,CUS_0x2f38,Standard +0x139bd,CUS_0x73ae,High +0x139c9,CUS_0x6793,Standard +0x139d5,CUS_0x1236,Standard +0x139e1,CUS_0x9382,High +0x139ed,CUS_0x6590,Standard +0x139f9,CUS_0x2301,High +0x13a05,CUS_0x2bfb,High +0x13a11,CUS_0x6db3,Standard +0x13a1d,CUS_0x9f6c,High +0x13a29,CUS_0x4b5e,High +0x13a35,CUS_0x987d,Standard +0x13a41,CUS_0x2bf3,Standard +0x13a4d,CUS_0xb7f7,Standard +0x13a59,CUS_0xaa29,Standard +0x13a65,CUS_0x45cc,Standard +0x13a71,CUS_0x50e1,Standard +0x13a7d,CUS_0x2059,High +0x13a89,CUS_0x4c09,Standard +0x13a95,CUS_0x3a50,High +0x13aa1,CUS_0xd20,Standard +0x13aad,CUS_0x6c8f,Low +0x13ab9,CUS_0x1fc1,Standard +0x13ac5,CUS_0xa936,Standard +0x13ad1,CUS_0xb888,High +0x13add,CUS_0x9684,Standard +0x13ae9,CUS_0x12ec,High +0x13af5,CUS_0x419d,High +0x13b01,CUS_0x2646,Standard +0x13b0d,CUS_0xa234,Standard +0x13b19,CUS_0xc734,Standard +0x13b25,CUS_0x6694,High +0x13b31,CUS_0x3d76,Standard +0x13b3d,CUS_0x7180,Standard +0x13b49,CUS_0xa465,Standard +0x13b55,CUS_0xa57b,Standard +0x13b61,CUS_0x268d,Standard +0x13b6d,CUS_0xbef3,Standard +0x13b79,CUS_0x5d1a,Standard +0x13b85,CUS_0x51c0,High +0x13b91,CUS_0x3db1,Standard +0x13b9d,CUS_0x8c39,High +0x13ba9,CUS_0x17c4,High +0x13bb5,CUS_0x9469,Low +0x13bc1,CUS_0x520a,High +0x13bcd,CUS_0x39e5,High +0x13bd9,CUS_0x9443,High +0x13be5,CUS_0xba97,High +0x13bf1,CUS_0x9051,Standard +0x13bfd,CUS_0x661d,High +0x13c09,CUS_0x1100,High +0x13c15,CUS_0xb07d,High +0x13c21,CUS_0xc5ea,Low +0x13c2d,CUS_0x239e,Standard +0x13c39,CUS_0xb436,High +0x13c45,CUS_0xb611,Standard +0x13c51,CUS_0x78ca,Standard +0x13c5d,CUS_0x557f,Standard +0x13c69,CUS_0x9692,Standard +0x13c75,CUS_0x8546,Standard +0x13c81,CUS_0x9942,Standard +0x13c8d,CUS_0x4544,Standard +0x13c99,CUS_0xb8a3,Standard +0x13ca5,CUS_0xa50e,High +0x13cb1,CUS_0x5b8c,Low +0x13cbd,CUS_0x3a70,Standard +0x13cc9,CUS_0x5293,Standard +0x13cd5,CUS_0x26d7,Low +0x13ce1,CUS_0x4c6c,Low +0x13ced,CUS_0x64b4,Low +0x13cf9,CUS_0x4228,Low +0x13d05,CUS_0x897e,Standard +0x13d11,CUS_0x84b,Standard +0x13d1d,CUS_0x92b9,High +0x13d29,CUS_0x96b1,Standard +0x13d35,CUS_0x7c13,High +0x13d41,CUS_0x90e,High +0x13d4d,CUS_0x844d,Standard +0x13d59,CUS_0x4c2c,Standard +0x13d65,CUS_0x8b0c,High +0x13d71,CUS_0x3873,Low +0x13d7d,CUS_0x2ff8,Standard +0x13d89,CUS_0x28d8,Low +0x13d95,CUS_0xa6e0,Low +0x13da1,CUS_0x792f,Low +0x13dad,CUS_0xb798,Standard +0x13db9,CUS_0xb450,Low +0x13dc5,CUS_0x4be1,Standard +0x13dd1,CUS_0xab26,Standard +0x13ddd,CUS_0x71de,Standard +0x13de9,CUS_0x440e,Standard +0x13df5,CUS_0x203c,High +0x13e01,CUS_0xaa8d,Low +0x13e0d,CUS_0xe23,Standard +0x13e19,CUS_0xa2e5,Standard +0x13e25,CUS_0x12b6,Standard +0x13e31,CUS_0xa163,Low +0x13e3d,CUS_0x8002,Low +0x13e49,CUS_0x245d,Standard +0x13e55,CUS_0xbbb0,High +0x13e61,CUS_0x1226,Standard +0x13e6d,CUS_0x6be5,Standard +0x13e79,CUS_0x9c0,Low +0x13e85,CUS_0x840f,Low +0x13e91,CUS_0x4555,High +0x13e9d,CUS_0x8e44,Low +0x13ea9,CUS_0x43d1,Low +0x13eb5,CUS_0x8125,Standard +0x13ec1,CUS_0xa7a3,High +0x13ecd,CUS_0xa6f6,Low +0x13ed9,CUS_0x9c9c,Standard +0x13ee5,CUS_0xbc7d,High +0x13ef1,CUS_0x95e7,High +0x13efd,CUS_0x82db,High +0x13f09,CUS_0x80bd,Standard +0x13f15,CUS_0x56c8,Low +0x13f21,CUS_0x3636,Standard +0x13f2d,CUS_0x32ad,High +0x13f39,CUS_0x12bf,Standard +0x13f45,CUS_0x7069,Low +0x13f51,CUS_0x632f,Low +0x13f5d,CUS_0x9ff7,Standard +0x13f69,CUS_0x8031,High +0x13f75,CUS_0x9774,Standard +0x13f81,CUS_0x46a,Low +0x13f8d,CUS_0x2ce9,Standard +0x13f99,CUS_0x24c3,Low +0x13fa5,CUS_0x19a9,Low +0x13fb1,CUS_0x6f0a,High +0x13fbd,CUS_0x3761,Standard +0x13fc9,CUS_0x68be,Standard +0x13fd5,CUS_0x9576,Standard +0x13fe1,CUS_0x6228,Standard +0x13fed,CUS_0xb9d5,Standard +0x13ff9,CUS_0x35ca,Standard +0x14005,CUS_0x5e78,Low +0x14011,CUS_0xbdbf,Low +0x1401d,CUS_0x36b3,Standard +0x14029,CUS_0xb473,Standard +0x14035,CUS_0x10e2,High +0x14041,CUS_0x948f,Standard +0x1404d,CUS_0x22fe,Standard +0x14059,CUS_0x7a8,Low +0x14065,CUS_0x1f42,Standard +0x14071,CUS_0xbd06,High +0x1407d,CUS_0x3274,Standard +0x14089,CUS_0x7a77,Standard +0x14095,CUS_0x27e2,High +0x140a1,CUS_0x5db9,Low +0x140ad,CUS_0x67d0,Standard +0x140b9,CUS_0x1c70,Low +0x140c5,CUS_0xa37f,Standard +0x140d1,CUS_0x3852,High +0x140dd,CUS_0xbb75,Low +0x140e9,CUS_0x979f,Standard +0x140f5,CUS_0x3928,Standard +0x14101,CUS_0x16f4,Standard +0x1410d,CUS_0xa2b9,Standard +0x14119,CUS_0x8140,High +0x14125,CUS_0xa8c6,Standard +0x14131,CUS_0xaa0a,Standard +0x1413d,CUS_0x2083,Standard +0x14149,CUS_0x4ec5,Low +0x14155,CUS_0x1319,Standard +0x14161,CUS_0x663e,Standard +0x1416d,CUS_0x94f6,Low +0x14179,CUS_0x7986,High +0x14185,CUS_0x2d6a,Low +0x14191,CUS_0x74b1,High +0x1419d,CUS_0xc0fd,Standard +0x141a9,CUS_0x7558,Standard +0x141b5,CUS_0x9175,Low +0x141c1,CUS_0xb732,Standard +0x141cd,CUS_0x1f24,High +0x141d9,CUS_0x63b7,Standard +0x141e5,CUS_0x426a,Low +0x141f1,CUS_0xbe6f,High +0x141fd,CUS_0x1ffb,High +0x14209,CUS_0xd7d,High +0x14215,CUS_0xc08b,Low +0x14221,CUS_0x36b0,Standard +0x1422d,CUS_0x7a36,Low +0x14239,CUS_0x8da8,Standard +0x14245,CUS_0x7577,Low +0x14251,CUS_0x7aaa,Standard +0x1425d,CUS_0x4d40,High +0x14269,CUS_0x1bac,Standard +0x14275,CUS_0x5354,Standard +0x14281,CUS_0x7de5,High +0x1428d,CUS_0x5fd1,Standard +0x14299,CUS_0x2a1b,Standard +0x142a5,CUS_0x914e,Low +0x142b1,CUS_0x8988,Low +0x142bd,CUS_0xbd9f,Low +0x142c9,CUS_0xb49f,High +0x142d5,CUS_0xd6f,Standard +0x142e1,CUS_0x3cfa,Standard +0x142ed,CUS_0x18a6,Low +0x142f9,CUS_0x8d16,Standard +0x14305,CUS_0x707c,Standard +0x14311,CUS_0x5b0d,Standard +0x1431d,CUS_0x66ef,Standard +0x14329,CUS_0x88fa,Standard +0x14335,CUS_0xc4b2,Standard +0x14341,CUS_0x826d,Standard +0x1434d,CUS_0x8ccd,Standard +0x14359,CUS_0x2dc9,Standard +0x14365,CUS_0x7101,Low +0x14371,CUS_0x9729,Standard +0x1437d,CUS_0x4c4b,Standard +0x14389,CUS_0x6468,Low +0x14395,CUS_0x8c5a,High +0x143a1,CUS_0x5bfe,Standard +0x143ad,CUS_0x8834,Standard +0x143b9,CUS_0x7d1f,Low +0x143c5,CUS_0xb7df,Standard +0x143d1,CUS_0x38e0,Low +0x143dd,CUS_0xbce,High +0x143e9,CUS_0x1231,Standard +0x143f5,CUS_0x507a,Standard +0x14401,CUS_0x5c1c,High +0x1440d,CUS_0x7ea4,Standard +0x14419,CUS_0x8d0d,Low +0x14425,CUS_0x8f59,High +0x14431,CUS_0x6a50,Low +0x1443d,CUS_0xb4c2,High +0x14449,CUS_0x112f,Low +0x14455,CUS_0x3bad,Standard +0x14461,CUS_0x1ccd,Standard +0x1446d,CUS_0x985e,Standard +0x14479,CUS_0x21b6,Standard +0x14485,CUS_0xac46,High +0x14491,CUS_0x7677,Standard +0x1449d,CUS_0xae26,Standard +0x144a9,CUS_0x3407,Standard +0x144b5,CUS_0x5ae2,Standard +0x144c1,CUS_0x6136,Standard +0x144cd,CUS_0x663,Standard +0x144d9,CUS_0xbe72,High +0x144e5,CUS_0x8513,Standard +0x144f1,CUS_0xa5c,High +0x144fd,CUS_0xc4d7,Standard +0x14509,CUS_0x47f1,Standard +0x14515,CUS_0x363a,High +0x14521,CUS_0x2561,Standard +0x1452d,CUS_0xb338,Low +0x14539,CUS_0x1d21,Standard +0x14545,CUS_0xc4a2,Standard +0x14551,CUS_0x2a46,Standard +0x1455d,CUS_0xab9,Standard +0x14569,CUS_0x3be5,Standard +0x14575,CUS_0xc680,Standard +0x14581,CUS_0x45e1,Standard +0x1458d,CUS_0xa2b6,Standard +0x14599,CUS_0x7478,Standard +0x145a5,CUS_0x92f9,Standard +0x145b1,CUS_0x5536,Standard +0x145bd,CUS_0x8d32,Standard +0x145c9,CUS_0x981c,Standard +0x145d5,CUS_0x7756,Low +0x145e1,CUS_0x6156,Standard +0x145ed,CUS_0xad7e,Low +0x145f9,CUS_0x918c,Standard +0x14605,CUS_0xba9f,Standard +0x14611,CUS_0x1d86,Standard +0x1461d,CUS_0xbf40,Standard +0x14629,CUS_0x1854,Low +0x14635,CUS_0x83c5,High +0x14641,CUS_0x997a,Standard +0x1464d,CUS_0x4a5d,Standard +0x14659,CUS_0x6fec,Standard +0x14665,CUS_0x4e2,Standard +0x14671,CUS_0x4d8b,Standard +0x1467d,CUS_0x626e,Standard +0x14689,CUS_0x5d3d,High +0x14695,CUS_0x9be9,High +0x146a1,CUS_0x86ce,Standard +0x146ad,CUS_0x9d62,Low +0x146b9,CUS_0x6fbf,High +0x146c5,CUS_0xe72,Standard +0x146d1,CUS_0xa4f3,High +0x146dd,CUS_0xb395,Low +0x146e9,CUS_0x3e62,High +0x146f5,CUS_0x81ae,Standard +0x14701,CUS_0x87c5,Standard +0x1470d,CUS_0x6826,Standard +0x14719,CUS_0xb130,Standard +0x14725,CUS_0x3c5e,High +0x14731,CUS_0x76a6,Standard +0x1473d,CUS_0x5b7d,High +0x14749,CUS_0x1c24,Standard +0x14755,CUS_0x8bb5,High +0x14761,CUS_0x99ba,Low +0x1476d,CUS_0x41ea,Low +0x14779,CUS_0x9cc4,Standard +0x14785,CUS_0xd66,Standard +0x14791,CUS_0x55f4,Standard +0x1479d,CUS_0x61a4,Standard +0x147a9,CUS_0x946e,High +0x147b5,CUS_0x8277,Low +0x147c1,CUS_0x1d28,High +0x147cd,CUS_0x275d,High +0x147d9,CUS_0x3243,High +0x147e5,CUS_0x1140,Standard +0x147f1,CUS_0x1dd9,Low +0x147fd,CUS_0x831,High +0x14809,CUS_0x2912,Standard +0x14815,CUS_0x6f0c,Standard +0x14821,CUS_0x8144,Low +0x1482d,CUS_0x23e9,Standard +0x14839,CUS_0x7edf,Low +0x14845,CUS_0x47ea,Standard +0x14851,CUS_0x53c,Standard +0x1485d,CUS_0x7c73,High +0x14869,CUS_0x4e22,Low +0x14875,CUS_0x9754,Low +0x14881,CUS_0x5d87,High +0x1488d,CUS_0x6a1d,High +0x14899,CUS_0x2181,Standard +0x148a5,CUS_0x843,Standard +0x148b1,CUS_0x3c39,Standard +0x148bd,CUS_0xbedd,Low +0x148c9,CUS_0x4bfc,Standard +0x148d5,CUS_0x6c12,Standard +0x148e1,CUS_0x570b,Standard +0x148ed,CUS_0x47c5,Standard +0x148f9,CUS_0xc700,High +0x14905,CUS_0xc513,Standard +0x14911,CUS_0xa5a0,Standard +0x1491d,CUS_0x4496,High +0x14929,CUS_0x3b1b,Standard +0x14935,CUS_0x8d0f,Standard +0x14941,CUS_0x29e0,Standard +0x1494d,CUS_0x898a,Standard +0x14959,CUS_0x4be,Standard +0x14965,CUS_0x2c4c,High +0x14971,CUS_0x3f1,Standard +0x1497d,CUS_0x4ab2,Standard +0x14989,CUS_0x7264,Standard +0x14995,CUS_0x7ef7,Standard +0x149a1,CUS_0x9997,High +0x149ad,CUS_0x3b85,Standard +0x149b9,CUS_0x7fc8,Standard +0x149c5,CUS_0x8343,Low +0x149d1,CUS_0x442b,Low +0x149dd,CUS_0x53f3,Low +0x149e9,CUS_0x68b4,Standard +0x149f5,CUS_0x7512,Standard +0x14a01,CUS_0x8747,Low +0x14a0d,CUS_0x502c,Standard +0x14a19,CUS_0xa3aa,Standard +0x14a25,CUS_0xb7cf,Low +0x14a31,CUS_0x5f55,Standard +0x14a3d,CUS_0x69c6,Standard +0x14a49,CUS_0x57f2,Standard +0x14a55,CUS_0x82e6,Standard +0x14a61,CUS_0x41a0,Standard +0x14a6d,CUS_0xb48d,Low +0x14a79,CUS_0x3061,Standard +0x14a85,CUS_0x70f2,Standard +0x14a91,CUS_0x45ea,Standard +0x14a9d,CUS_0x4ab,Low +0x14aa9,CUS_0x333f,Standard +0x14ab5,CUS_0x5c06,Standard +0x14ac1,CUS_0xbe55,Standard +0x14acd,CUS_0x3992,High +0x14ad9,CUS_0x7671,High +0x14ae5,CUS_0x8ad5,Low +0x14af1,CUS_0xc0d,High +0x14afd,CUS_0xadd5,Standard +0x14b09,CUS_0x24a1,Standard +0x14b15,CUS_0x1fae,Standard +0x14b21,CUS_0xadb5,Standard +0x14b2d,CUS_0x51e1,Low +0x14b39,CUS_0x5fde,Standard +0x14b45,CUS_0x73b3,High +0x14b51,CUS_0x24e1,Standard +0x14b5d,CUS_0x2391,Standard +0x14b69,CUS_0x32cb,High +0x14b75,CUS_0x7f3,High +0x14b81,CUS_0x247b,Low +0x14b8d,CUS_0xc1bb,Low +0x14b99,CUS_0x7462,High +0x14ba5,CUS_0x67cd,Standard +0x14bb1,CUS_0x7a59,Standard +0x14bbd,CUS_0x1e18,Low +0x14bc9,CUS_0xb699,Standard +0x14bd5,CUS_0xbcb2,High +0x14be1,CUS_0x63c3,Standard +0x14bed,CUS_0x1382,Standard +0x14bf9,CUS_0x7e1a,Low +0x14c05,CUS_0x760c,Low +0x14c11,CUS_0x38d8,Standard +0x14c1d,CUS_0xc47b,High +0x14c29,CUS_0x4f52,Low +0x14c35,CUS_0xa540,High +0x14c41,CUS_0xb28a,Standard +0x14c4d,CUS_0x6ef6,Low +0x14c59,CUS_0x29b5,Low +0x14c65,CUS_0x14a3,Standard +0x14c71,CUS_0x454c,Low +0x14c7d,CUS_0x5735,Standard +0x14c89,CUS_0x82fc,Standard +0x14c95,CUS_0xc6cb,Low +0x14ca1,CUS_0x20a3,Standard +0x14cad,CUS_0x574a,Standard +0x14cb9,CUS_0x6aa4,High +0x14cc5,CUS_0xc570,Standard +0x14cd1,CUS_0x62da,Standard +0x14cdd,CUS_0xc01e,High +0x14ce9,CUS_0xb1dc,Standard +0x14cf5,CUS_0xb3ac,High +0x14d01,CUS_0x8067,High +0x14d0d,CUS_0xa11c,High +0x14d19,CUS_0x2890,High +0x14d25,CUS_0x4f92,Standard +0x14d31,CUS_0xd96,Standard +0x14d3d,CUS_0x40cf,Standard +0x14d49,CUS_0x9bd9,Low +0x14d55,CUS_0x8842,Standard +0x14d61,CUS_0x9ba4,Standard +0x14d6d,CUS_0xc2c7,Standard +0x14d79,CUS_0x11a4,High +0x14d85,CUS_0x79aa,Standard +0x14d91,CUS_0x5b20,Standard +0x14d9d,CUS_0x9f5d,Standard +0x14da9,CUS_0x727a,High +0x14db5,CUS_0x5eef,Standard +0x14dc1,CUS_0x9339,Standard +0x14dcd,CUS_0x7c8d,High +0x14dd9,CUS_0xa20b,Low +0x14de5,CUS_0xb37a,High +0x14df1,CUS_0xbfd2,Standard +0x14dfd,CUS_0xbd2d,Standard +0x14e09,CUS_0x8d95,Standard +0x14e15,CUS_0xb6b,Low +0x14e21,CUS_0x6f40,Low +0x14e2d,CUS_0x4854,Standard +0x14e39,CUS_0x741b,Standard +0x14e45,CUS_0x35ac,Standard +0x14e51,CUS_0xbcc9,Standard +0x14e5d,CUS_0xb808,Standard +0x14e69,CUS_0x4468,Standard +0x14e75,CUS_0x86a8,Standard +0x14e81,CUS_0x12cb,High +0x14e8d,CUS_0x7532,Standard +0x14e99,CUS_0x7ba9,Standard +0x14ea5,CUS_0xb00a,Low +0x14eb1,CUS_0x345e,High +0x14ebd,CUS_0x42ef,Standard +0x14ec9,CUS_0x769d,High +0x14ed5,CUS_0x3643,Standard +0x14ee1,CUS_0x3a3b,Low +0x14eed,CUS_0xaad9,Standard +0x14ef9,CUS_0x9b81,Standard +0x14f05,CUS_0xc6ac,Standard +0x14f11,CUS_0x3849,Low +0x14f1d,CUS_0x46c4,Standard +0x14f29,CUS_0xa323,Standard +0x14f35,CUS_0x9cc,High +0x14f41,CUS_0x63df,Standard +0x14f4d,CUS_0xb03f,Standard +0x14f59,CUS_0x7b0,Low +0x14f65,CUS_0x407a,Low +0x14f71,CUS_0xc146,Standard +0x14f7d,CUS_0x3fb4,Standard +0x14f89,CUS_0xbecb,High +0x14f95,CUS_0xb3b3,Low +0x14fa1,CUS_0x2bc9,High +0x14fad,CUS_0x4feb,Low +0x14fb9,CUS_0x8036,Low +0x14fc5,CUS_0xc05d,High +0x14fd1,CUS_0xbe3,Standard +0x14fdd,CUS_0x383c,Low +0x14fe9,CUS_0x26f8,High +0x14ff5,CUS_0x1eee,Standard +0x15001,CUS_0xa8d6,Standard +0x1500d,CUS_0x74a3,High +0x15019,CUS_0x494b,Standard +0x15025,CUS_0x9247,Standard +0x15031,CUS_0x3264,Standard +0x1503d,CUS_0x7fc3,Low +0x15049,CUS_0x139b,Low +0x15055,CUS_0x7af8,Standard +0x15061,CUS_0x94f4,Low +0x1506d,CUS_0x2da2,Standard +0x15079,CUS_0x82b,Standard +0x15085,CUS_0xa69f,High +0x15091,CUS_0x1572,Standard +0x1509d,CUS_0x12c1,High +0x150a9,CUS_0x8a8e,High +0x150b5,CUS_0xa01f,Standard +0x150c1,CUS_0x2246,Standard +0x150cd,CUS_0xb457,Standard +0x150d9,CUS_0x60f1,High +0x150e5,CUS_0x42e6,Standard +0x150f1,CUS_0x7cb9,High +0x150fd,CUS_0x69f3,Standard +0x15109,CUS_0x84bf,Standard +0x15115,CUS_0x2b51,Standard +0x15121,CUS_0xa2a1,Standard +0x1512d,CUS_0x99f1,Standard +0x15139,CUS_0x8b18,High +0x15145,CUS_0xbfeb,High +0x15151,CUS_0xa7f8,Standard +0x1515d,CUS_0x529b,High +0x15169,CUS_0x386e,High +0x15175,CUS_0x1dac,Standard +0x15181,CUS_0xa742,High +0x1518d,CUS_0xa82c,Standard +0x15199,CUS_0xa1de,Standard +0x151a5,CUS_0x79ff,High +0x151b1,CUS_0x3f5,High +0x151bd,CUS_0xc2c5,Standard +0x151c9,CUS_0x9acb,Standard +0x151d5,CUS_0x80e2,Standard +0x151e1,CUS_0x5625,High +0x151ed,CUS_0xba94,Standard +0x151f9,CUS_0x4460,Low +0x15205,CUS_0xc0b3,High +0x15211,CUS_0xc42f,High +0x1521d,CUS_0x1343,Low +0x15229,CUS_0x6058,Low +0x15235,CUS_0x268b,High +0x15241,CUS_0x59f5,Low +0x1524d,CUS_0x1ec5,Low +0x15259,CUS_0x4ae9,Standard +0x15265,CUS_0xae2e,Standard +0x15271,CUS_0x1a53,Standard +0x1527d,CUS_0x33bc,High +0x15289,CUS_0xbfef,Low +0x15295,CUS_0x8f68,High +0x152a1,CUS_0x4dfb,Low +0x152ad,CUS_0x8e40,Standard +0x152b9,CUS_0xa3c,Standard +0x152c5,CUS_0x4605,Low +0x152d1,CUS_0x789,Standard +0x152dd,CUS_0x94d2,Low +0x152e9,CUS_0x95d4,Standard +0x152f5,CUS_0xb7d0,Standard +0x15301,CUS_0xaa93,High +0x1530d,CUS_0xaa66,Standard +0x15319,CUS_0x1567,Standard +0x15325,CUS_0x9c17,High +0x15331,CUS_0x70d8,Low +0x1533d,CUS_0x8980,High +0x15349,CUS_0x3e7f,High +0x15355,CUS_0x9da0,High +0x15361,CUS_0x32ba,Low +0x1536d,CUS_0x6733,Standard +0x15379,CUS_0x47c8,High +0x15385,CUS_0xba16,High +0x15391,CUS_0x3c41,Standard +0x1539d,CUS_0x9d1a,Standard +0x153a9,CUS_0x12a4,Standard +0x153b5,CUS_0xc737,Low +0x153c1,CUS_0xadab,Low +0x153cd,CUS_0x9bb9,Low +0x153d9,CUS_0x8b11,Standard +0x153e5,CUS_0x5eaf,Low +0x153f1,CUS_0x6f5c,Low +0x153fd,CUS_0xa04d,Standard +0x15409,CUS_0xe99,Standard +0x15415,CUS_0x733c,High +0x15421,CUS_0xc548,High +0x1542d,CUS_0xbf9a,High +0x15439,CUS_0x2b1a,Low +0x15445,CUS_0x7d43,Standard +0x15451,CUS_0x473f,Low +0x1545d,CUS_0x9aeb,Standard +0x15469,CUS_0x8f84,Low +0x15475,CUS_0x64c,Standard +0x15481,CUS_0x70ac,Standard +0x1548d,CUS_0x2993,Standard +0x15499,CUS_0x9305,Low +0x154a5,CUS_0xa2b,Standard +0x154b1,CUS_0xa89b,Standard +0x154bd,CUS_0x5bec,High +0x154c9,CUS_0x2f22,Standard +0x154d5,CUS_0x3f6,Low +0x154e1,CUS_0x87a4,Standard +0x154ed,CUS_0x6fa,Low +0x154f9,CUS_0x535d,Standard +0x15505,CUS_0x9ff5,Standard +0x15511,CUS_0xf2e,Standard +0x1551d,CUS_0x5b30,Standard +0x15529,CUS_0xa0c,Standard +0x15535,CUS_0x51d8,Standard +0x15541,CUS_0x7f46,Low +0x1554d,CUS_0x3134,Standard +0x15559,CUS_0xa123,Standard +0x15565,CUS_0xb66d,Standard +0x15571,CUS_0x2547,Standard +0x1557d,CUS_0x3f9,High +0x15589,CUS_0x4802,Standard +0x15595,CUS_0x6817,Standard +0x155a1,CUS_0x29d8,High +0x155ad,CUS_0x5877,Standard +0x155b9,CUS_0x1ce6,High +0x155c5,CUS_0x8945,High +0x155d1,CUS_0x4c1c,Standard +0x155dd,CUS_0x8171,Standard +0x155e9,CUS_0xa336,Standard +0x155f5,CUS_0x3906,Standard +0x15601,CUS_0x6894,Standard +0x1560d,CUS_0x8fa8,Low +0x15619,CUS_0x21f4,High +0x15625,CUS_0x2c13,High +0x15631,CUS_0xbb6a,High +0x1563d,CUS_0x97d,High +0x15649,CUS_0x68ef,Standard +0x15655,CUS_0x5737,Standard +0x15661,CUS_0x6bc0,Standard +0x1566d,CUS_0x6b3a,Standard +0x15679,CUS_0x68cf,High +0x15685,CUS_0xb7f1,High +0x15691,CUS_0xab01,Standard +0x1569d,CUS_0x13b2,Standard +0x156a9,CUS_0x93f,Standard +0x156b5,CUS_0x36f2,Standard +0x156c1,CUS_0x301d,Standard +0x156cd,CUS_0x861a,Standard +0x156d9,CUS_0x1de5,High +0x156e5,CUS_0x7641,Standard +0x156f1,CUS_0x3d78,High +0x156fd,CUS_0x7765,Low +0x15709,CUS_0x47d5,High +0x15715,CUS_0x1fcd,Standard +0x15721,CUS_0x466a,Standard +0x1572d,CUS_0x8853,Standard +0x15739,CUS_0x9c79,Low +0x15745,CUS_0x21a7,Standard +0x15751,CUS_0x7768,Low +0x1575d,CUS_0x4ee7,Low +0x15769,CUS_0x872b,High +0x15775,CUS_0xbb2a,Standard +0x15781,CUS_0x8a30,Standard +0x1578d,CUS_0x15f1,High +0x15799,CUS_0x70a3,High +0x157a5,CUS_0x4287,High +0x157b1,CUS_0xb887,Low +0x157bd,CUS_0x888e,Standard +0x157c9,CUS_0x81de,Low +0x157d5,CUS_0xa7cd,Standard +0x157e1,CUS_0x5db2,Standard +0x157ed,CUS_0xb99e,High +0x157f9,CUS_0x8697,Standard +0x15805,CUS_0x2ab3,Standard +0x15811,CUS_0x5247,Standard +0x1581d,CUS_0x5da3,Low +0x15829,CUS_0x323f,High +0x15835,CUS_0x65fc,Standard +0x15841,CUS_0x3139,Standard +0x1584d,CUS_0x5ed2,High +0x15859,CUS_0x7a4d,Standard +0x15865,CUS_0xbf66,High +0x15871,CUS_0x5f5d,Standard +0x1587d,CUS_0x1dbb,High +0x15889,CUS_0x83ef,Low +0x15895,CUS_0x84fe,High +0x158a1,CUS_0xc00f,Standard +0x158ad,CUS_0x4946,High +0x158b9,CUS_0xc88,Standard +0x158c5,CUS_0x9486,High +0x158d1,CUS_0x4c9b,Standard +0x158dd,CUS_0x9b27,Standard +0x158e9,CUS_0x7b47,Standard +0x158f5,CUS_0x1bb0,Standard +0x15901,CUS_0xbd5e,Low +0x1590d,CUS_0x5d6a,High +0x15919,CUS_0x3fde,Standard +0x15925,CUS_0x26a7,Standard +0x15931,CUS_0x3acc,Standard +0x1593d,CUS_0x7e0f,Low +0x15949,CUS_0x3baf,Standard +0x15955,CUS_0x33d6,Low +0x15961,CUS_0x56b9,Standard +0x1596d,CUS_0x5f45,Low +0x15979,CUS_0x24ee,High +0x15985,CUS_0x3e17,High +0x15991,CUS_0x4d6d,Standard +0x1599d,CUS_0x40be,Standard +0x159a9,CUS_0x3b9d,High +0x159b5,CUS_0xaa4,High +0x159c1,CUS_0xada3,Low +0x159cd,CUS_0xb97,Standard +0x159d9,CUS_0xac5a,Standard +0x159e5,CUS_0xb749,High +0x159f1,CUS_0x8a27,Standard +0x159fd,CUS_0x1b9c,Low +0x15a09,CUS_0x18ab,Standard +0x15a15,CUS_0x8a47,Standard +0x15a21,CUS_0xa737,Standard +0x15a2d,CUS_0x470c,Standard +0x15a39,CUS_0xc58,Standard +0x15a45,CUS_0x73e6,Standard +0x15a51,CUS_0x950a,High +0x15a5d,CUS_0x9c9f,Low +0x15a69,CUS_0xc71a,Standard +0x15a75,CUS_0x3542,High +0x15a81,CUS_0x7d96,High +0x15a8d,CUS_0x3f1a,High +0x15a99,CUS_0xbfa7,Standard +0x15aa5,CUS_0x715f,Standard +0x15ab1,CUS_0x689,Standard +0x15abd,CUS_0x36ec,Standard +0x15ac9,CUS_0x7226,Low +0x15ad5,CUS_0xa0be,Standard +0x15ae1,CUS_0x35f4,Standard +0x15aed,CUS_0x7ee,Standard +0x15af9,CUS_0xb1f6,Standard +0x15b05,CUS_0x7843,Standard +0x15b11,CUS_0x7088,Low +0x15b1d,CUS_0x30ca,Standard +0x15b29,CUS_0x4dc5,Standard +0x15b35,CUS_0x78eb,Low +0x15b41,CUS_0x97a2,High +0x15b4d,CUS_0x70ea,Standard +0x15b59,CUS_0xb46a,High +0x15b65,CUS_0x328e,Standard +0x15b71,CUS_0x4daa,Standard +0x15b7d,CUS_0x8179,Standard +0x15b89,CUS_0xa25a,High +0x15b95,CUS_0x1931,High +0x15ba1,CUS_0x7766,Low +0x15bad,CUS_0x93a7,Standard +0x15bb9,CUS_0xa47e,High +0x15bc5,CUS_0x8cdb,Low +0x15bd1,CUS_0xb68,Standard +0x15bdd,CUS_0x126d,Standard +0x15be9,CUS_0xa2fd,Standard +0x15bf5,CUS_0xb76f,Low +0x15c01,CUS_0x5993,Standard +0x15c0d,CUS_0x9235,Standard +0x15c19,CUS_0x8564,Standard +0x15c25,CUS_0x477d,Standard +0x15c31,CUS_0x9d7d,High +0x15c3d,CUS_0xad3f,Low +0x15c49,CUS_0x7aa9,High +0x15c55,CUS_0x1138,Standard +0x15c61,CUS_0x97bd,High +0x15c6d,CUS_0x1277,Standard +0x15c79,CUS_0x9550,Standard +0x15c85,CUS_0xb83d,Standard +0x15c91,CUS_0xa1c3,Low +0x15c9d,CUS_0x47d3,Low +0x15ca9,CUS_0x5585,Low +0x15cb5,CUS_0x5e1f,Standard +0x15cc1,CUS_0x6dbb,Standard +0x15ccd,CUS_0x3530,Standard +0x15cd9,CUS_0x2f9b,High +0x15ce5,CUS_0x8fb4,Standard +0x15cf1,CUS_0x8d6e,Standard +0x15cfd,CUS_0x6d05,Low +0x15d09,CUS_0x69b4,Standard +0x15d15,CUS_0x7154,Standard +0x15d21,CUS_0x3821,High +0x15d2d,CUS_0x2c3c,High +0x15d39,CUS_0x84ae,Standard +0x15d45,CUS_0xc68,High +0x15d51,CUS_0x11ac,Standard +0x15d5d,CUS_0x4ade,Standard +0x15d69,CUS_0x4d98,Standard +0x15d75,CUS_0x33de,Standard +0x15d81,CUS_0xae61,Standard +0x15d8d,CUS_0x579e,High +0x15d99,CUS_0x9ae4,Standard +0x15da5,CUS_0x79d3,Standard +0x15db1,CUS_0x659,High +0x15dbd,CUS_0xb1d2,Standard +0x15dc9,CUS_0x650b,Low +0x15dd5,CUS_0xa4ee,High +0x15de1,CUS_0xa8d8,High +0x15ded,CUS_0x8535,Standard +0x15df9,CUS_0xab0d,Low +0x15e05,CUS_0xc719,Standard +0x15e11,CUS_0xa08c,Standard +0x15e1d,CUS_0x6f64,Standard +0x15e29,CUS_0x7bbb,Standard +0x15e35,CUS_0x75a0,Standard +0x15e41,CUS_0xa6d5,High +0x15e4d,CUS_0x5f92,High +0x15e59,CUS_0x8617,Standard +0x15e65,CUS_0x4781,Standard +0x15e71,CUS_0x4567,Standard +0x15e7d,CUS_0x5789,Standard +0x15e89,CUS_0xae57,High +0x15e95,CUS_0x3090,Standard +0x15ea1,CUS_0x7303,Standard +0x15ead,CUS_0x947a,Standard +0x15eb9,CUS_0x27b9,Standard +0x15ec5,CUS_0x2b94,Standard +0x15ed1,CUS_0x8d9,Standard +0x15edd,CUS_0xb293,High +0x15ee9,CUS_0x558f,Standard +0x15ef5,CUS_0x6574,High +0x15f01,CUS_0xa677,Standard +0x15f0d,CUS_0x4f72,Standard +0x15f19,CUS_0x51cb,Standard +0x15f25,CUS_0x458d,Standard +0x15f31,CUS_0xa964,Low +0x15f3d,CUS_0x27fa,Standard +0x15f49,CUS_0xa2af,High +0x15f55,CUS_0x2a77,Standard +0x15f61,CUS_0x1d1c,Standard +0x15f6d,CUS_0x6b10,Standard +0x15f79,CUS_0x456d,Standard +0x15f85,CUS_0x4ba7,Standard +0x15f91,CUS_0xb7ea,Standard +0x15f9d,CUS_0x36ff,Standard +0x15fa9,CUS_0xdef,Standard +0x15fb5,CUS_0xbaab,Standard +0x15fc1,CUS_0xc3aa,Standard +0x15fcd,CUS_0x7a46,Standard +0x15fd9,CUS_0xa0d,Low +0x15fe5,CUS_0x754d,Standard +0x15ff1,CUS_0x1e98,Standard +0x15ffd,CUS_0x58ea,Standard +0x16009,CUS_0x440f,Standard +0x16015,CUS_0xa94f,Low +0x16021,CUS_0xabd9,Low +0x1602d,CUS_0x6b7c,High +0x16039,CUS_0x4bd,Standard +0x16045,CUS_0x6956,High +0x16051,CUS_0x652c,Low +0x1605d,CUS_0x944,Standard +0x16069,CUS_0x8d39,High +0x16075,CUS_0x47e3,High +0x16081,CUS_0xbfe7,Standard +0x1608d,CUS_0x6e8,Standard +0x16099,CUS_0x6573,Low +0x160a5,CUS_0x40d7,Standard +0x160b1,CUS_0x3dfe,Standard +0x160bd,CUS_0xbff8,Standard +0x160c9,CUS_0x5182,High +0x160d5,CUS_0x880e,Standard +0x160e1,CUS_0x45af,Standard +0x160ed,CUS_0x2d05,Low +0x160f9,CUS_0x7ea2,Low +0x16105,CUS_0x9ad,Standard +0x16111,CUS_0xc03f,Standard +0x1611d,CUS_0x29dd,Standard +0x16129,CUS_0x2bf1,Standard +0x16135,CUS_0x85be,Standard +0x16141,CUS_0x5953,Low +0x1614d,CUS_0x855f,High +0x16159,CUS_0xb3aa,Standard +0x16165,CUS_0x2508,High +0x16171,CUS_0x65e4,Standard +0x1617d,CUS_0x4aef,High +0x16189,CUS_0x3d99,Low +0x16195,CUS_0xc3df,High +0x161a1,CUS_0x87e7,Standard +0x161ad,CUS_0x1dcf,High +0x161b9,CUS_0x2bf4,Standard +0x161c5,CUS_0x79bf,Standard +0x161d1,CUS_0x47c1,High +0x161dd,CUS_0x37a4,High +0x161e9,CUS_0x47ec,High +0x161f5,CUS_0x2d3e,Standard +0x16201,CUS_0x8f6a,Standard +0x1620d,CUS_0x649d,Standard +0x16219,CUS_0xc6dd,Standard +0x16225,CUS_0x2dc6,Standard +0x16231,CUS_0x38df,Low +0x1623d,CUS_0x6dc5,Standard +0x16249,CUS_0xb556,Low +0x16255,CUS_0x264a,Standard +0x16261,CUS_0x5d5f,Standard +0x1626d,CUS_0x8e73,Standard +0x16279,CUS_0x476c,Low +0x16285,CUS_0x67a9,Standard +0x16291,CUS_0x1000,High +0x1629d,CUS_0x8124,Low +0x162a9,CUS_0xa751,Standard +0x162b5,CUS_0x446f,Standard +0x162c1,CUS_0x3040,High +0x162cd,CUS_0xb8f6,Standard +0x162d9,CUS_0x7a05,Standard +0x162e5,CUS_0x721,High +0x162f1,CUS_0x9ee4,Low +0x162fd,CUS_0x552,Low +0x16309,CUS_0x38c1,Standard +0x16315,CUS_0x6700,Low +0x16321,CUS_0xb71e,Standard +0x1632d,CUS_0xac5f,Low +0x16339,CUS_0xa8b9,High +0x16345,CUS_0x5523,Standard +0x16351,CUS_0x7467,Low +0x1635d,CUS_0x1348,Standard +0x16369,CUS_0x2171,Standard +0x16375,CUS_0x18f4,Standard +0x16381,CUS_0x8e71,Standard +0x1638d,CUS_0x22ea,Low +0x16399,CUS_0x8aa2,Low +0x163a5,CUS_0x2bdc,High +0x163b1,CUS_0x85c6,Standard +0x163bd,CUS_0xadef,Standard +0x163c9,CUS_0x9a02,Standard +0x163d5,CUS_0xa001,High +0x163e1,CUS_0x6f2,Standard +0x163ed,CUS_0x1dbd,High +0x163f9,CUS_0x22ba,Low +0x16405,CUS_0x3026,High +0x16411,CUS_0x6b59,High +0x1641d,CUS_0x84b4,Standard +0x16429,CUS_0x853d,Standard +0x16435,CUS_0xc716,High +0x16441,CUS_0x682c,Standard +0x1644d,CUS_0x19de,Standard +0x16459,CUS_0x2308,Standard +0x16465,CUS_0xac8e,High +0x16471,CUS_0x6eb3,Standard +0x1647d,CUS_0xa667,Low +0x16489,CUS_0x4f0a,High +0x16495,CUS_0x1844,Standard +0x164a1,CUS_0x5813,Standard +0x164ad,CUS_0x9f25,Standard +0x164b9,CUS_0x159b,Standard +0x164c5,CUS_0x87df,Standard +0x164d1,CUS_0xb644,Low +0x164dd,CUS_0x7848,Low +0x164e9,CUS_0xb437,Low +0x164f5,CUS_0x5ece,Low +0x16501,CUS_0xb9ae,Low +0x1650d,CUS_0x5810,Standard +0x16519,CUS_0x8702,Standard +0x16525,CUS_0x970f,Standard +0x16531,CUS_0x75ee,Low +0x1653d,CUS_0x86c1,Standard +0x16549,CUS_0xa556,Low +0x16555,CUS_0xbd29,Standard +0x16561,CUS_0x5fd4,Standard +0x1656d,CUS_0x181c,Standard +0x16579,CUS_0xe7a,High +0x16585,CUS_0x1713,High +0x16591,CUS_0x844b,Low +0x1659d,CUS_0x53f6,Standard +0x165a9,CUS_0x3ccf,Low +0x165b5,CUS_0x6801,Standard +0x165c1,CUS_0x3528,Standard +0x165cd,CUS_0x8b31,Standard +0x165d9,CUS_0x95ef,High +0x165e5,CUS_0x36c5,High +0x165f1,CUS_0x7dff,Standard +0x165fd,CUS_0x62be,Standard +0x16609,CUS_0x23ae,High +0x16615,CUS_0x2c40,Standard +0x16621,CUS_0x741d,Standard +0x1662d,CUS_0x1a86,High +0x16639,CUS_0x6d17,Standard +0x16645,CUS_0xa969,Standard +0x16651,CUS_0x8917,Standard +0x1665d,CUS_0x7a32,Standard +0x16669,CUS_0x2004,Low +0x16675,CUS_0x5e84,High +0x16681,CUS_0x5f0e,High +0x1668d,CUS_0x9348,Standard +0x16699,CUS_0x7165,High +0x166a5,CUS_0x9124,High +0x166b1,CUS_0xce2,Standard +0x166bd,CUS_0x68ee,Low +0x166c9,CUS_0x494c,High +0x166d5,CUS_0xb5d4,Standard +0x166e1,CUS_0x8db6,High +0x166ed,CUS_0xc80,Standard +0x166f9,CUS_0xc4e7,Standard +0x16705,CUS_0x48ef,Standard +0x16711,CUS_0x6e8b,Low +0x1671d,CUS_0x2e76,Standard +0x16729,CUS_0xb1d8,Standard +0x16735,CUS_0x7a35,High +0x16741,CUS_0x2e28,Standard +0x1674d,CUS_0xbbf6,High +0x16759,CUS_0x111b,Low +0x16765,CUS_0x9c4f,Standard +0x16771,CUS_0xc41f,Standard +0x1677d,CUS_0x193b,Standard +0x16789,CUS_0x857a,Low +0x16795,CUS_0x80dc,High +0x167a1,CUS_0x191b,High +0x167ad,CUS_0x5c8d,Standard +0x167b9,CUS_0xa03e,High +0x167c5,CUS_0x37ec,High +0x167d1,CUS_0x1766,High +0x167dd,CUS_0x8100,High +0x167e9,CUS_0x9015,Standard +0x167f5,CUS_0xb167,Low +0x16801,CUS_0xbfa9,High +0x1680d,CUS_0xa1f6,Standard +0x16819,CUS_0x9e95,High +0x16825,CUS_0x3d26,Standard +0x16831,CUS_0xc1fa,High +0x1683d,CUS_0x443e,Standard +0x16849,CUS_0x2cd9,High +0x16855,CUS_0x7bc9,Standard +0x16861,CUS_0x1246,High +0x1686d,CUS_0xb814,Standard +0x16879,CUS_0x22e3,High +0x16885,CUS_0xb8d3,Standard +0x16891,CUS_0x5375,Low +0x1689d,CUS_0x2043,Standard +0x168a9,CUS_0x2696,High +0x168b5,CUS_0x3b6e,High +0x168c1,CUS_0x373e,High +0x168cd,CUS_0xaac2,Standard +0x168d9,CUS_0x9337,Low +0x168e5,CUS_0xc1b6,Standard +0x168f1,CUS_0x5222,Standard +0x168fd,CUS_0x553e,Standard +0x16909,CUS_0xb770,Standard +0x16915,CUS_0x14f4,Standard +0x16921,CUS_0x6f0b,Standard +0x1692d,CUS_0xc346,High +0x16939,CUS_0x58d6,High +0x16945,CUS_0xb1a3,High +0x16951,CUS_0x5ea2,Standard +0x1695d,CUS_0x6ee8,Standard +0x16969,CUS_0x65bf,Low +0x16975,CUS_0x1b56,High +0x16981,CUS_0x9103,Standard +0x1698d,CUS_0x7c6,Standard +0x16999,CUS_0x3065,High +0x169a5,CUS_0xa095,High +0x169b1,CUS_0x9bbe,Standard +0x169bd,CUS_0x438a,High +0x169c9,CUS_0x554b,Standard +0x169d5,CUS_0x9bf3,Low +0x169e1,CUS_0x1d56,High +0x169ed,CUS_0x1b99,Standard +0x169f9,CUS_0xc1bf,Standard +0x16a05,CUS_0x4cb8,Low +0x16a11,CUS_0x8ce4,Standard +0x16a1d,CUS_0x52c3,Standard +0x16a29,CUS_0xc653,Low +0x16a35,CUS_0x981,Standard +0x16a41,CUS_0x541c,Standard +0x16a4d,CUS_0x297f,High +0x16a59,CUS_0x6f65,Low +0x16a65,CUS_0xc072,High +0x16a71,CUS_0xbbaa,Standard +0x16a7d,CUS_0xa4dc,High +0x16a89,CUS_0x5b65,Standard +0x16a95,CUS_0x62a1,Standard +0x16aa1,CUS_0xa91e,Standard +0x16aad,CUS_0x4d0,Standard +0x16ab9,CUS_0x8f4e,High +0x16ac5,CUS_0x706e,Low +0x16ad1,CUS_0x43a7,High +0x16add,CUS_0x21f9,Standard +0x16ae9,CUS_0xad18,Standard +0x16af5,CUS_0x2c14,High +0x16b01,CUS_0xbafa,High +0x16b0d,CUS_0xbd76,Standard +0x16b19,CUS_0x574,Standard +0x16b25,CUS_0xa4f2,Standard +0x16b31,CUS_0x449,Standard +0x16b3d,CUS_0x2fec,High +0x16b49,CUS_0xb662,Standard +0x16b55,CUS_0x278f,Standard +0x16b61,CUS_0x235c,Standard +0x16b6d,CUS_0x1890,Standard +0x16b79,CUS_0xa18d,High +0x16b85,CUS_0x2ef1,Standard +0x16b91,CUS_0x4389,Standard +0x16b9d,CUS_0x4dcd,Standard +0x16ba9,CUS_0x92f8,Standard +0x16bb5,CUS_0x3f94,Low +0x16bc1,CUS_0xc203,Standard +0x16bcd,CUS_0x40dc,Low +0x16bd9,CUS_0x8318,Standard +0x16be5,CUS_0x45d2,Low +0x16bf1,CUS_0xa1ce,Standard +0x16bfd,CUS_0x72fb,Standard +0x16c09,CUS_0x55e0,High +0x16c15,CUS_0x368d,Standard +0x16c21,CUS_0x622e,Standard +0x16c2d,CUS_0x7c12,Standard +0x16c39,CUS_0x6493,Standard +0x16c45,CUS_0x4020,Standard +0x16c51,CUS_0x8059,High +0x16c5d,CUS_0x9a55,High +0x16c69,CUS_0x6e1c,Standard +0x16c75,CUS_0x3e6b,Standard +0x16c81,CUS_0x2cf4,Low +0x16c8d,CUS_0x57e,Standard +0x16c99,CUS_0xc420,Standard +0x16ca5,CUS_0xa4f5,High +0x16cb1,CUS_0x6200,High +0x16cbd,CUS_0x25f7,High +0x16cc9,CUS_0xa8d4,High +0x16cd5,CUS_0x6a84,High +0x16ce1,CUS_0x9476,High +0x16ced,CUS_0x457b,High +0x16cf9,CUS_0x8026,High +0x16d05,CUS_0xab92,Standard +0x16d11,CUS_0x7c4a,High +0x16d1d,CUS_0x94bc,Standard +0x16d29,CUS_0x168d,Standard +0x16d35,CUS_0x2240,Standard +0x16d41,CUS_0x8091,High +0x16d4d,CUS_0x9fb1,Low +0x16d59,CUS_0x3941,Standard +0x16d65,CUS_0x7a26,Low +0x16d71,CUS_0x624b,High +0x16d7d,CUS_0x1d1f,Standard +0x16d89,CUS_0x3155,High +0x16d95,CUS_0x19b2,Standard +0x16da1,CUS_0x5817,High +0x16dad,CUS_0x292d,Low +0x16db9,CUS_0xb602,Standard +0x16dc5,CUS_0x1ab9,Standard +0x16dd1,CUS_0x97a0,Standard +0x16ddd,CUS_0x2f68,Standard +0x16de9,CUS_0x6b5f,High +0x16df5,CUS_0x7d05,High +0x16e01,CUS_0x713d,High +0x16e0d,CUS_0xaf63,Standard +0x16e19,CUS_0x825d,Standard +0x16e25,CUS_0x79a8,High +0x16e31,CUS_0x41ae,Low +0x16e3d,CUS_0xad1e,Standard +0x16e49,CUS_0xb2a3,High +0x16e55,CUS_0xa9d6,High +0x16e61,CUS_0x6abf,Standard +0x16e6d,CUS_0x511d,Standard +0x16e79,CUS_0x22c5,Low +0x16e85,CUS_0x3442,Standard +0x16e91,CUS_0x14de,Standard +0x16e9d,CUS_0x1a61,Standard +0x16ea9,CUS_0x699,Low +0x16eb5,CUS_0x8ac6,Low +0x16ec1,CUS_0x1c89,Standard +0x16ecd,CUS_0x939b,Standard +0x16ed9,CUS_0x9529,Standard +0x16ee5,CUS_0xb15c,High +0x16ef1,CUS_0x1697,High +0x16efd,CUS_0xa70f,High +0x16f09,CUS_0x2d9a,High +0x16f15,CUS_0xb9c5,Standard +0x16f21,CUS_0x646e,Standard +0x16f2d,CUS_0x3937,High +0x16f39,CUS_0x219c,High +0x16f45,CUS_0xc1e7,Standard +0x16f51,CUS_0x742c,Standard +0x16f5d,CUS_0x67b0,Standard +0x16f69,CUS_0x2f21,Standard +0x16f75,CUS_0x8e5a,High +0x16f81,CUS_0x129b,Standard +0x16f8d,CUS_0x9587,Low +0x16f99,CUS_0x28ba,Standard +0x16fa5,CUS_0x3720,High +0x16fb1,CUS_0xcf0,Standard +0x16fbd,CUS_0xaea3,Standard +0x16fc9,CUS_0x2db3,Standard +0x16fd5,CUS_0x3507,Standard +0x16fe1,CUS_0x4603,Low +0x16fed,CUS_0xbf5c,Standard +0x16ff9,CUS_0x28f1,Standard +0x17005,CUS_0x8971,Standard +0x17011,CUS_0x5b6f,Standard +0x1701d,CUS_0x67a3,High +0x17029,CUS_0x14ca,High +0x17035,CUS_0x9a3c,Standard +0x17041,CUS_0xa5b4,Low +0x1704d,CUS_0x44e9,High +0x17059,CUS_0x66dd,High +0x17065,CUS_0x993d,Standard +0x17071,CUS_0xc351,Standard +0x1707d,CUS_0x8033,Standard +0x17089,CUS_0x434d,Standard +0x17095,CUS_0x709b,Low +0x170a1,CUS_0x48fd,High +0x170ad,CUS_0xaf16,High +0x170b9,CUS_0x3490,Standard +0x170c5,CUS_0x676c,Standard +0x170d1,CUS_0xb11e,Standard +0x170dd,CUS_0x8f9a,Standard +0x170e9,CUS_0x477c,High +0x170f5,CUS_0xa1df,Standard +0x17101,CUS_0x4d4,Low +0x1710d,CUS_0x7b40,High +0x17119,CUS_0x885f,Standard +0x17125,CUS_0x230c,High +0x17131,CUS_0x55b,Low +0x1713d,CUS_0x61a5,Standard +0x17149,CUS_0x55ed,High +0x17155,CUS_0x5fec,Standard +0x17161,CUS_0x242b,High +0x1716d,CUS_0x4086,Standard +0x17179,CUS_0x479c,Standard +0x17185,CUS_0x9bfa,Standard +0x17191,CUS_0x903e,Standard +0x1719d,CUS_0x3009,High +0x171a9,CUS_0x562b,Standard +0x171b5,CUS_0xb4cb,Low +0x171c1,CUS_0x880d,Low +0x171cd,CUS_0xbb48,Standard +0x171d9,CUS_0x691c,Standard +0x171e5,CUS_0x917b,High +0x171f1,CUS_0x2e16,Standard +0x171fd,CUS_0x569a,Standard +0x17209,CUS_0xa8e6,Standard +0x17215,CUS_0x7b23,Standard +0x17221,CUS_0xb551,Standard +0x1722d,CUS_0xab35,Standard +0x17239,CUS_0x3ec1,Standard +0x17245,CUS_0x4a24,Low +0x17251,CUS_0x73aa,Standard +0x1725d,CUS_0x2127,Low +0x17269,CUS_0x3e76,Standard +0x17275,CUS_0x9c14,Standard +0x17281,CUS_0x5292,Standard +0x1728d,CUS_0x9884,Standard +0x17299,CUS_0x9e09,Standard +0x172a5,CUS_0x35cb,Low +0x172b1,CUS_0x3ad2,Low +0x172bd,CUS_0xb13d,Standard +0x172c9,CUS_0x88e2,High +0x172d5,CUS_0x8521,Standard +0x172e1,CUS_0x7cb5,High +0x172ed,CUS_0x88c3,Standard +0x172f9,CUS_0x8081,Standard +0x17305,CUS_0x9501,Low +0x17311,CUS_0x8e70,High +0x1731d,CUS_0x37cc,Low +0x17329,CUS_0x40f2,High +0x17335,CUS_0x506d,Low +0x17341,CUS_0x8034,Low +0x1734d,CUS_0x6cf5,Standard +0x17359,CUS_0x9ed8,Standard +0x17365,CUS_0x609c,Standard +0x17371,CUS_0x8725,Low +0x1737d,CUS_0x202e,High +0x17389,CUS_0xc007,Standard +0x17395,CUS_0x946d,High +0x173a1,CUS_0x6ea4,Standard +0x173ad,CUS_0x6d94,Standard +0x173b9,CUS_0xb884,High +0x173c5,CUS_0x22f7,Standard +0x173d1,CUS_0x277a,High +0x173dd,CUS_0x9c98,Standard +0x173e9,CUS_0x8cf6,Standard +0x173f5,CUS_0x13ef,Standard +0x17401,CUS_0xc726,Low +0x1740d,CUS_0xa4bd,Standard +0x17419,CUS_0xc71f,Standard +0x17425,CUS_0x7189,Standard +0x17431,CUS_0x4811,Standard +0x1743d,CUS_0xb912,Standard +0x17449,CUS_0x2825,Standard +0x17455,CUS_0xb44d,High +0x17461,CUS_0x9e1a,Low +0x1746d,CUS_0xe3f,Standard +0x17479,CUS_0x7a39,Standard +0x17485,CUS_0x20b5,Low +0x17491,CUS_0xe10,Low +0x1749d,CUS_0x1f49,Standard +0x174a9,CUS_0x5c90,Standard +0x174b5,CUS_0x3182,Low +0x174c1,CUS_0xa2dd,High +0x174cd,CUS_0x9e11,High +0x174d9,CUS_0x4691,High +0x174e5,CUS_0xc5f4,Standard +0x174f1,CUS_0xb403,Low +0x174fd,CUS_0x873f,Standard +0x17509,CUS_0x854c,Standard +0x17515,CUS_0x47a,Low +0x17521,CUS_0xbf11,High +0x1752d,CUS_0x9a9,Standard +0x17539,CUS_0x6e0e,Low +0x17545,CUS_0xaeb5,Standard +0x17551,CUS_0x37e5,Standard +0x1755d,CUS_0x5c60,Standard +0x17569,CUS_0x8095,Standard +0x17575,CUS_0x66c4,Standard +0x17581,CUS_0x9760,Standard +0x1758d,CUS_0xb43,High +0x17599,CUS_0xa505,Standard +0x175a5,CUS_0xc06e,Standard +0x175b1,CUS_0x57c2,Low +0x175bd,CUS_0x8c88,High +0x175c9,CUS_0x74e9,Standard +0x175d5,CUS_0x6f4c,High +0x175e1,CUS_0x14d1,High +0x175ed,CUS_0x76b8,Standard +0x175f9,CUS_0x63a6,Low +0x17605,CUS_0x9eb9,High +0x17611,CUS_0x5ee0,Standard +0x1761d,CUS_0xc59e,Standard +0x17629,CUS_0x5c68,Low +0x17635,CUS_0xa974,Standard +0x17641,CUS_0x9c85,Standard +0x1764d,CUS_0x1011,Standard +0x17659,CUS_0xb381,Standard +0x17665,CUS_0x148b,Standard +0x17671,CUS_0xc067,High +0x1767d,CUS_0x991d,Standard +0x17689,CUS_0xbb43,High +0x17695,CUS_0xbccf,Standard +0x176a1,CUS_0x40d,Standard +0x176ad,CUS_0x3bd2,Standard +0x176b9,CUS_0x3a6c,Low +0x176c5,CUS_0x3053,Standard +0x176d1,CUS_0x39cf,Standard +0x176dd,CUS_0x5c59,Standard +0x176e9,CUS_0x4f65,Standard +0x176f5,CUS_0x9017,Standard +0x17701,CUS_0x5f49,Standard +0x1770d,CUS_0x5235,High +0x17719,CUS_0x84a9,Low +0x17725,CUS_0x9b9e,Low +0x17731,CUS_0x4148,High +0x1773d,CUS_0x348a,Low +0x17749,CUS_0x6f22,Low +0x17755,CUS_0x5bc7,Standard +0x17761,CUS_0x16d0,Standard +0x1776d,CUS_0x8bce,Standard +0x17779,CUS_0x8201,Low +0x17785,CUS_0x5f0f,Standard +0x17791,CUS_0x102e,High +0x1779d,CUS_0x52d5,Standard +0x177a9,CUS_0x829a,Low +0x177b5,CUS_0x9ece,Standard +0x177c1,CUS_0x6148,High +0x177cd,CUS_0x40d1,Low +0x177d9,CUS_0x6b1c,High +0x177e5,CUS_0x885d,High +0x177f1,CUS_0x1aee,Standard +0x177fd,CUS_0x4192,Standard +0x17809,CUS_0x40f8,High +0x17815,CUS_0xa7db,Standard +0x17821,CUS_0x6f86,Standard +0x1782d,CUS_0xbbbb,Low +0x17839,CUS_0x51e6,Standard +0x17845,CUS_0x5f25,Low +0x17851,CUS_0x74bf,Standard +0x1785d,CUS_0x9cc3,High +0x17869,CUS_0xab37,High +0x17875,CUS_0x4778,High +0x17881,CUS_0x53f0,Standard +0x1788d,CUS_0x5f83,Standard +0x17899,CUS_0x836e,Standard +0x178a5,CUS_0x2abc,Standard +0x178b1,CUS_0xc180,Standard +0x178bd,CUS_0x9513,Low +0x178c9,CUS_0x44c3,Standard +0x178d5,CUS_0x3fce,Standard +0x178e1,CUS_0x8d33,Low +0x178ed,CUS_0x2adf,Standard +0x178f9,CUS_0x1abc,Standard +0x17905,CUS_0x61ff,High +0x17911,CUS_0x4327,Standard +0x1791d,CUS_0x5cdc,Standard +0x17929,CUS_0xa0ba,Standard +0x17935,CUS_0x2c06,High +0x17941,CUS_0x5ec2,Standard +0x1794d,CUS_0x1d7a,High +0x17959,CUS_0x22f4,Standard +0x17965,CUS_0xbb88,Low +0x17971,CUS_0x3e4a,High +0x1797d,CUS_0x47f9,Standard +0x17989,CUS_0x3d3d,Standard +0x17995,CUS_0x8773,Standard +0x179a1,CUS_0x3e40,Standard +0x179ad,CUS_0xafd1,High +0x179b9,CUS_0x675f,Standard +0x179c5,CUS_0x3a96,Standard +0x179d1,CUS_0x66c3,High +0x179dd,CUS_0x7a84,Standard +0x179e9,CUS_0xc571,High +0x179f5,CUS_0x61a1,Standard +0x17a01,CUS_0x3319,Low +0x17a0d,CUS_0x8132,Standard +0x17a19,CUS_0x4fed,High +0x17a25,CUS_0x4453,Standard +0x17a31,CUS_0xa61a,Standard +0x17a3d,CUS_0xa62f,Standard +0x17a49,CUS_0xafb6,Standard +0x17a55,CUS_0x8072,Low +0x17a61,CUS_0xbccc,High +0x17a6d,CUS_0x60c2,Standard +0x17a79,CUS_0x5c3f,Standard +0x17a85,CUS_0x7fd3,Standard +0x17a91,CUS_0x8d91,High +0x17a9d,CUS_0x55a1,Low +0x17aa9,CUS_0x48d2,High +0x17ab5,CUS_0x778b,Standard +0x17ac1,CUS_0x4c33,Standard +0x17acd,CUS_0x991b,Low +0x17ad9,CUS_0xc5cc,Standard +0x17ae5,CUS_0x8c90,Standard +0x17af1,CUS_0xc4ac,Standard +0x17afd,CUS_0x2b76,Standard +0x17b09,CUS_0x2f3d,Low +0x17b15,CUS_0x8a3c,Standard +0x17b21,CUS_0x1537,High +0x17b2d,CUS_0x857b,Standard +0x17b39,CUS_0x6819,Standard +0x17b45,CUS_0x7d42,Low +0x17b51,CUS_0x1dfd,Standard +0x17b5d,CUS_0x60d,Standard +0x17b69,CUS_0xa0a5,Standard +0x17b75,CUS_0x27a4,Standard +0x17b81,CUS_0x388a,High +0x17b8d,CUS_0xad15,High +0x17b99,CUS_0x9fe6,Standard +0x17ba5,CUS_0x8f58,Standard +0x17bb1,CUS_0xf60,Standard +0x17bbd,CUS_0xa22a,Standard +0x17bc9,CUS_0x94e9,High +0x17bd5,CUS_0x2800,Standard +0x17be1,CUS_0x61b0,High +0x17bed,CUS_0x7c47,High +0x17bf9,CUS_0x1c7e,Standard +0x17c05,CUS_0x36c2,Standard +0x17c11,CUS_0x6f8b,Standard +0x17c1d,CUS_0x575d,Standard +0x17c29,CUS_0x60ec,Low +0x17c35,CUS_0x67fd,Standard +0x17c41,CUS_0x65d9,Standard +0x17c4d,CUS_0x9a0f,High +0x17c59,CUS_0x65a9,Standard +0x17c65,CUS_0x61e1,High +0x17c71,CUS_0x49e4,Low +0x17c7d,CUS_0x5899,High +0x17c89,CUS_0x91f6,Standard +0x17c95,CUS_0x8b5b,Standard +0x17ca1,CUS_0xa293,Low +0x17cad,CUS_0x287f,Standard +0x17cb9,CUS_0x4c4a,Standard +0x17cc5,CUS_0x5392,Standard +0x17cd1,CUS_0x5a61,Standard +0x17cdd,CUS_0x138d,Low +0x17ce9,CUS_0x4562,Standard +0x17cf5,CUS_0xb65f,Standard +0x17d01,CUS_0x2d25,Standard +0x17d0d,CUS_0xbec2,Standard +0x17d19,CUS_0xbd8c,Low +0x17d25,CUS_0x248f,Standard +0x17d31,CUS_0x5dc2,Standard +0x17d3d,CUS_0x22bf,High +0x17d49,CUS_0x3efb,Standard +0x17d55,CUS_0xacbf,Low +0x17d61,CUS_0x8363,Standard +0x17d6d,CUS_0xb5e9,Standard +0x17d79,CUS_0x2216,Standard +0x17d85,CUS_0x58fb,Standard +0x17d91,CUS_0x5a9e,Standard +0x17d9d,CUS_0xa2cb,High +0x17da9,CUS_0xba1c,High +0x17db5,CUS_0x86c5,Standard +0x17dc1,CUS_0x9a4b,Low +0x17dcd,CUS_0x2e9b,High +0x17dd9,CUS_0x4718,Standard +0x17de5,CUS_0x70f6,High +0x17df1,CUS_0x4d77,Low +0x17dfd,CUS_0x17bb,High +0x17e09,CUS_0x8a44,Low +0x17e15,CUS_0x1b0f,High +0x17e21,CUS_0x5fc,Standard +0x17e2d,CUS_0x7405,Standard +0x17e39,CUS_0x996f,High +0x17e45,CUS_0x6fd9,Low +0x17e51,CUS_0xc3ce,Low +0x17e5d,CUS_0xb121,Standard +0x17e69,CUS_0x7414,Standard +0x17e75,CUS_0x80f8,Standard +0x17e81,CUS_0x36ac,Standard +0x17e8d,CUS_0xa008,Low +0x17e99,CUS_0x65d3,Standard +0x17ea5,CUS_0x5446,High +0x17eb1,CUS_0xf8b,Low +0x17ebd,CUS_0x3f83,High +0x17ec9,CUS_0x487a,High +0x17ed5,CUS_0x3f9c,Standard +0x17ee1,CUS_0x61e4,Standard +0x17eed,CUS_0x32b8,Low +0x17ef9,CUS_0xaf56,High +0x17f05,CUS_0x4c76,Low +0x17f11,CUS_0x3fb,Low +0x17f1d,CUS_0x180a,Standard +0x17f29,CUS_0x3769,Low +0x17f35,CUS_0x9efd,Standard +0x17f41,CUS_0x93d2,High +0x17f4d,CUS_0x66ce,Standard +0x17f59,CUS_0x15c5,Standard +0x17f65,CUS_0xa03c,Low +0x17f71,CUS_0x8cc8,Standard +0x17f7d,CUS_0x8526,Standard +0x17f89,CUS_0x3dfa,Low +0x17f95,CUS_0x1600,High +0x17fa1,CUS_0xb17e,High +0x17fad,CUS_0x9318,High +0x17fb9,CUS_0x52aa,High +0x17fc5,CUS_0x7cfb,Standard +0x17fd1,CUS_0x40e1,High +0x17fdd,CUS_0x2e43,Standard +0x17fe9,CUS_0x7bc5,High +0x17ff5,CUS_0x2438,Standard +0x18001,CUS_0x98ec,High +0x1800d,CUS_0x6b56,Low +0x18019,CUS_0x377b,Low +0x18025,CUS_0xa7d0,Low +0x18031,CUS_0xc144,Standard +0x1803d,CUS_0x35bd,Standard +0x18049,CUS_0x1ef9,Low +0x18055,CUS_0x289b,High +0x18061,CUS_0xbb7c,Standard +0x1806d,CUS_0xb45a,Standard +0x18079,CUS_0x5cbb,Standard +0x18085,CUS_0x3393,Standard +0x18091,CUS_0x6fbb,Standard +0x1809d,CUS_0x1698,Standard +0x180a9,CUS_0x66d7,Low +0x180b5,CUS_0x96b3,High +0x180c1,CUS_0x5357,Standard +0x180cd,CUS_0xa2f8,Standard +0x180d9,CUS_0x40c,Standard +0x180e5,CUS_0x407c,Standard +0x180f1,CUS_0xbe89,Standard +0x180fd,CUS_0xac59,Standard +0x18109,CUS_0x647e,Standard +0x18115,CUS_0xb36c,High +0x18121,CUS_0x3b59,Standard +0x1812d,CUS_0x8274,Standard +0x18139,CUS_0x4052,Standard +0x18145,CUS_0x7d6c,Standard +0x18151,CUS_0x4de0,Standard +0x1815d,CUS_0xad46,Standard +0x18169,CUS_0x50c6,Low +0x18175,CUS_0x6569,Standard +0x18181,CUS_0x76fc,Standard +0x1818d,CUS_0x692a,High +0x18199,CUS_0x2270,High +0x181a5,CUS_0x7ee3,Standard +0x181b1,CUS_0x2fe7,High +0x181bd,CUS_0x9448,Standard +0x181c9,CUS_0xa7b5,High +0x181d5,CUS_0xa79e,Standard +0x181e1,CUS_0xa774,Standard +0x181ed,CUS_0x6277,Standard +0x181f9,CUS_0x3b01,High +0x18205,CUS_0x3d6d,Low +0x18211,CUS_0x891b,Low +0x1821d,CUS_0x99ae,High +0x18229,CUS_0x7cfa,High +0x18235,CUS_0xaf5c,Standard +0x18241,CUS_0xc02d,Low +0x1824d,CUS_0x68cb,Standard +0x18259,CUS_0x559e,High +0x18265,CUS_0x3aa7,High +0x18271,CUS_0xb9ec,Standard +0x1827d,CUS_0xa22b,Standard +0x18289,CUS_0x2314,Standard +0x18295,CUS_0x47d0,Standard +0x182a1,CUS_0xb932,Standard +0x182ad,CUS_0x7148,Standard +0x182b9,CUS_0x7bf2,Standard +0x182c5,CUS_0xa134,Standard +0x182d1,CUS_0x6273,Standard +0x182dd,CUS_0x9dbe,Standard +0x182e9,CUS_0x5707,Standard +0x182f5,CUS_0x2bec,Low +0x18301,CUS_0x5474,Low +0x1830d,CUS_0x98f6,High +0x18319,CUS_0x3195,Standard +0x18325,CUS_0x385a,Standard +0x18331,CUS_0xaf3,Low +0x1833d,CUS_0x3a9e,Standard +0x18349,CUS_0x7d57,Low +0x18355,CUS_0xaf99,Standard +0x18361,CUS_0x4767,Standard +0x1836d,CUS_0x3415,Standard +0x18379,CUS_0x9352,Standard +0x18385,CUS_0x60ca,Low +0x18391,CUS_0xee6,Standard +0x1839d,CUS_0x6d43,High +0x183a9,CUS_0x32a9,Low +0x183b5,CUS_0x1297,High +0x183c1,CUS_0x53fa,Standard +0x183cd,CUS_0x6f0,Standard +0x183d9,CUS_0x945f,Standard +0x183e5,CUS_0x16a6,Standard +0x183f1,CUS_0x317e,High +0x183fd,CUS_0xb46b,High +0x18409,CUS_0xc30f,Low +0x18415,CUS_0x24e7,High +0x18421,CUS_0x2ad5,Standard +0x1842d,CUS_0x5fc3,Standard +0x18439,CUS_0x204a,Standard +0x18445,CUS_0xabe7,Standard +0x18451,CUS_0x35c3,High +0x1845d,CUS_0xbcbe,Standard +0x18469,CUS_0x3033,Low +0x18475,CUS_0x7cec,Standard +0x18481,CUS_0x727f,Standard +0x1848d,CUS_0xa06b,Standard +0x18499,CUS_0x5111,High +0x184a5,CUS_0x18e8,Standard +0x184b1,CUS_0x48c6,Low +0x184bd,CUS_0xc2a1,High +0x184c9,CUS_0x624c,High +0x184d5,CUS_0x4b93,Standard +0x184e1,CUS_0x7a73,High +0x184ed,CUS_0x633b,Low +0x184f9,CUS_0x5c2f,High +0x18505,CUS_0x5f21,Low +0x18511,CUS_0x7127,Low +0x1851d,CUS_0x8525,High +0x18529,CUS_0x33ea,Standard +0x18535,CUS_0x1b71,Standard +0x18541,CUS_0xa610,Standard +0x1854d,CUS_0x69f6,High +0x18559,CUS_0x648b,High +0x18565,CUS_0x43de,Low +0x18571,CUS_0x786d,Standard +0x1857d,CUS_0x9126,Standard +0x18589,CUS_0x9c55,Standard +0x18595,CUS_0xbcf,Standard +0x185a1,CUS_0x610a,Standard +0x185ad,CUS_0xbd2c,Standard +0x185b9,CUS_0x831c,High +0x185c5,CUS_0xb3a,High +0x185d1,CUS_0xa68e,Standard +0x185dd,CUS_0x55fd,Standard +0x185e9,CUS_0x1271,Standard +0x185f5,CUS_0x5981,High +0x18601,CUS_0x913e,Standard +0x1860d,CUS_0x2a08,High +0x18619,CUS_0x112d,High +0x18625,CUS_0x6bbd,Low +0x18631,CUS_0xc72e,High +0x1863d,CUS_0x9860,High +0x18649,CUS_0x2ecc,High +0x18655,CUS_0x62c8,High +0x18661,CUS_0xc4a1,High +0x1866d,CUS_0x4b86,High +0x18679,CUS_0x7494,Low +0x18685,CUS_0x87b8,Standard +0x18691,CUS_0x5002,High +0x1869d,CUS_0x343d,Standard +0x186a9,CUS_0x76ad,Standard +0x186b5,CUS_0x9fab,Standard +0x186c1,CUS_0x79c5,Standard +0x186cd,CUS_0x2c94,Standard +0x186d9,CUS_0xb8af,Low +0x186e5,CUS_0xa99a,Standard +0x186f1,CUS_0xae08,Standard +0x186fd,CUS_0x4587,High +0x18709,CUS_0x320f,Low +0x18715,CUS_0x5bf8,Standard +0x18721,CUS_0x5a92,Low +0x1872d,CUS_0x19c9,Standard +0x18739,CUS_0x22b7,Low +0x18745,CUS_0x1e4d,Low +0x18751,CUS_0xb7fa,Standard +0x1875d,CUS_0xa64d,High +0x18769,CUS_0x3a06,Low +0x18775,CUS_0x353a,High +0x18781,CUS_0xab9c,Low +0x1878d,CUS_0x8d72,Standard +0x18799,CUS_0x9bbc,Standard +0x187a5,CUS_0xa56a,Standard +0x187b1,CUS_0x3191,Low +0x187bd,CUS_0x99ca,Low +0x187c9,CUS_0xc1a2,Standard +0x187d5,CUS_0x66c8,High +0x187e1,CUS_0x46ce,Standard +0x187ed,CUS_0x444b,High +0x187f9,CUS_0x40bc,High +0x18805,CUS_0x6f04,High +0x18811,CUS_0x65c5,Standard +0x1881d,CUS_0xc1e8,Low +0x18829,CUS_0xb7bb,Standard +0x18835,CUS_0xfea,Low +0x18841,CUS_0x3f89,High +0x1884d,CUS_0x9346,Standard +0x18859,CUS_0x8704,Standard +0x18865,CUS_0xbe1d,Standard +0x18871,CUS_0x513a,High +0x1887d,CUS_0xa235,High +0x18889,CUS_0x362c,High +0x18895,CUS_0x74ef,Standard +0x188a1,CUS_0x4241,Standard +0x188ad,CUS_0xb81c,High +0x188b9,CUS_0x2ff6,Standard +0x188c5,CUS_0x1048,High +0x188d1,CUS_0x6bbe,Low +0x188dd,CUS_0x1664,Standard +0x188e9,CUS_0x4e8f,High +0x188f5,CUS_0xe4f,Standard +0x18901,CUS_0xc515,High +0x1890d,CUS_0xae7d,Standard +0x18919,CUS_0x18d4,Standard +0x18925,CUS_0x96b5,Standard +0x18931,CUS_0xc37,Standard +0x1893d,CUS_0xac3f,Standard +0x18949,CUS_0x60f,Standard +0x18955,CUS_0x1661,High +0x18961,CUS_0x9c4b,High +0x1896d,CUS_0x9e5e,High +0x18979,CUS_0x7cf1,Standard +0x18985,CUS_0x37f8,High +0x18991,CUS_0x3d09,High +0x1899d,CUS_0x21f2,Low +0x189a9,CUS_0x872d,High +0x189b5,CUS_0x960b,Standard +0x189c1,CUS_0x14d3,Standard +0x189cd,CUS_0xc651,Standard +0x189d9,CUS_0xb538,Standard +0x189e5,CUS_0x1fcb,Low +0x189f1,CUS_0xb967,Low +0x189fd,CUS_0x8731,Standard +0x18a09,CUS_0x4569,Standard +0x18a15,CUS_0x14c2,Standard +0x18a21,CUS_0x71b8,Standard +0x18a2d,CUS_0x5280,Standard +0x18a39,CUS_0x770,High +0x18a45,CUS_0x181f,High +0x18a51,CUS_0x94d5,Low +0x18a5d,CUS_0x2659,High +0x18a69,CUS_0x6e8d,Low +0x18a75,CUS_0xb47f,Low +0x18a81,CUS_0xc55a,Standard +0x18a8d,CUS_0x4eab,Low +0x18a99,CUS_0xaa53,Standard +0x18aa5,CUS_0x7749,Standard +0x18ab1,CUS_0x5de2,Standard +0x18abd,CUS_0x8517,High +0x18ac9,CUS_0xb6be,High +0x18ad5,CUS_0x8000,Standard +0x18ae1,CUS_0x66d6,Low +0x18aed,CUS_0x6bff,High +0x18af9,CUS_0x5195,Standard +0x18b05,CUS_0xe3b,High +0x18b11,CUS_0x6496,Standard +0x18b1d,CUS_0xc712,Standard +0x18b29,CUS_0x2f02,Low +0x18b35,CUS_0x7a1f,High +0x18b41,CUS_0x8202,Standard +0x18b4d,CUS_0x12fa,Standard +0x18b59,CUS_0x9af6,Standard +0x18b65,CUS_0xb13c,Standard +0x18b71,CUS_0x45cb,High +0x18b7d,CUS_0xa3f5,Standard +0x18b89,CUS_0x9778,Standard +0x18b95,CUS_0x2b2a,Low +0x18ba1,CUS_0x4775,Low +0x18bad,CUS_0x3e5e,Standard +0x18bb9,CUS_0xb201,Standard +0x18bc5,CUS_0x9815,High +0x18bd1,CUS_0x632,High +0x18bdd,CUS_0xf01,High +0x18be9,CUS_0x8b17,Standard +0x18bf5,CUS_0x15f2,High +0x18c01,CUS_0x75ef,Standard +0x18c0d,CUS_0x67eb,High +0x18c19,CUS_0x629,Standard +0x18c25,CUS_0x9dc1,High +0x18c31,CUS_0x4472,Standard +0x18c3d,CUS_0x3cea,Standard +0x18c49,CUS_0x49fe,High +0x18c55,CUS_0x60a2,Standard +0x18c61,CUS_0x8c3,High +0x18c6d,CUS_0x1330,High +0x18c79,CUS_0xbaf2,High +0x18c85,CUS_0x2abd,Low +0x18c91,CUS_0x1e51,Standard +0x18c9d,CUS_0x5135,High +0x18ca9,CUS_0x1935,Standard +0x18cb5,CUS_0x7d40,Standard +0x18cc1,CUS_0x1a9c,Standard +0x18ccd,CUS_0x7007,Standard +0x18cd9,CUS_0xb7eb,Standard +0x18ce5,CUS_0xbeca,Low +0x18cf1,CUS_0xb458,Standard +0x18cfd,CUS_0x87e6,High +0x18d09,CUS_0x9ca,Standard +0x18d15,CUS_0x9661,Standard +0x18d21,CUS_0x4892,Standard +0x18d2d,CUS_0x71eb,High +0x18d39,CUS_0xabf9,Standard +0x18d45,CUS_0x961d,High +0x18d51,CUS_0x7960,High +0x18d5d,CUS_0x75ba,Standard +0x18d69,CUS_0x80ae,Standard +0x18d75,CUS_0x3b11,Standard +0x18d81,CUS_0xb023,Standard +0x18d8d,CUS_0xc4ea,Standard +0x18d99,CUS_0x4eb3,Standard +0x18da5,CUS_0x95c2,High +0x18db1,CUS_0x7269,Standard +0x18dbd,CUS_0x269d,Standard +0x18dc9,CUS_0x903a,Standard +0x18dd5,CUS_0xb20f,Low +0x18de1,CUS_0x73db,Standard +0x18ded,CUS_0xb3b0,Low +0x18df9,CUS_0x476d,Standard +0x18e05,CUS_0x41f3,Standard +0x18e11,CUS_0xa058,Standard +0x18e1d,CUS_0x9074,Low +0x18e29,CUS_0x30eb,Standard +0x18e35,CUS_0x9f27,Standard +0x18e41,CUS_0x7cb3,Standard +0x18e4d,CUS_0x8f1b,Standard +0x18e59,CUS_0x8be2,Standard +0x18e65,CUS_0xa6c1,High +0x18e71,CUS_0xc1db,Standard +0x18e7d,CUS_0x3e74,High +0x18e89,CUS_0xc60a,Standard +0x18e95,CUS_0x1d51,Standard +0x18ea1,CUS_0x4df6,Standard +0x18ead,CUS_0x7edc,Standard +0x18eb9,CUS_0x9d6b,High +0x18ec5,CUS_0xa7f3,Standard +0x18ed1,CUS_0x8588,Standard +0x18edd,CUS_0x191f,Standard +0x18ee9,CUS_0x4fd4,High +0x18ef5,CUS_0x6529,Standard +0x18f01,CUS_0x6a39,High +0x18f0d,CUS_0x3c0b,Low +0x18f19,CUS_0x32fb,Standard +0x18f25,CUS_0xb692,Standard +0x18f31,CUS_0x9fe8,Standard +0x18f3d,CUS_0x6084,High +0x18f49,CUS_0x7a12,Standard +0x18f55,CUS_0x7270,Standard +0x18f61,CUS_0x3606,Standard +0x18f6d,CUS_0xbf8f,Standard +0x18f79,CUS_0x961e,Standard +0x18f85,CUS_0x24cc,Low +0x18f91,CUS_0x1de9,Standard +0x18f9d,CUS_0xa5c2,Low +0x18fa9,CUS_0x5353,High +0x18fb5,CUS_0x3bc3,Standard +0x18fc1,CUS_0x5cd7,Low +0x18fcd,CUS_0xc272,High +0x18fd9,CUS_0x33b6,Standard +0x18fe5,CUS_0x2d8c,Standard +0x18ff1,CUS_0x6863,Standard +0x18ffd,CUS_0x2747,High +0x19009,CUS_0x95a3,High +0x19015,CUS_0x6b13,Standard +0x19021,CUS_0xabc1,Standard +0x1902d,CUS_0x11c1,Standard +0x19039,CUS_0x6138,Standard +0x19045,CUS_0xb9e0,High +0x19051,CUS_0x91b2,Low +0x1905d,CUS_0x3896,Standard +0x19069,CUS_0x66fc,Standard +0x19075,CUS_0x8967,Standard +0x19081,CUS_0xb0ca,High +0x1908d,CUS_0xa940,Low +0x19099,CUS_0x51c,Standard +0x190a5,CUS_0x8b91,Standard +0x190b1,CUS_0x65aa,Standard +0x190bd,CUS_0x5107,High +0x190c9,CUS_0x22d4,Standard +0x190d5,CUS_0x7e8d,Standard +0x190e1,CUS_0xbed7,Standard +0x190ed,CUS_0x9444,Standard +0x190f9,CUS_0x8fe6,Standard +0x19105,CUS_0x25f6,High +0x19111,CUS_0x7d2c,High +0x1911d,CUS_0xaab3,High +0x19129,CUS_0x28d0,Low +0x19135,CUS_0x3e2c,Standard +0x19141,CUS_0x2bb2,Standard +0x1914d,CUS_0xbae9,Standard +0x19159,CUS_0xa2db,Standard +0x19165,CUS_0x6cc4,High +0x19171,CUS_0x4601,High +0x1917d,CUS_0x3a7e,Low +0x19189,CUS_0xfcb,Standard +0x19195,CUS_0x9d0b,Standard +0x191a1,CUS_0x7a2d,Standard +0x191ad,CUS_0x7bad,Low +0x191b9,CUS_0x3101,Standard +0x191c5,CUS_0x5d0c,High +0x191d1,CUS_0x5391,Standard +0x191dd,CUS_0xb8e9,Low +0x191e9,CUS_0xb132,High +0x191f5,CUS_0x8d19,Standard +0x19201,CUS_0x5334,High +0x1920d,CUS_0x3213,Standard +0x19219,CUS_0xb05b,Standard +0x19225,CUS_0x3ea4,Standard +0x19231,CUS_0x417b,High +0x1923d,CUS_0x57c7,Standard +0x19249,CUS_0x6b8d,Standard +0x19255,CUS_0x8fa0,Standard +0x19261,CUS_0x5d50,Standard +0x1926d,CUS_0xc459,Standard +0x19279,CUS_0x8698,Standard +0x19285,CUS_0x1ac9,Standard +0x19291,CUS_0x6950,Standard +0x1929d,CUS_0x5d43,Low +0x192a9,CUS_0xc475,Standard +0x192b5,CUS_0xb4ca,High +0x192c1,CUS_0x1924,Standard +0x192cd,CUS_0xb9bd,Standard +0x192d9,CUS_0x4d35,Low +0x192e5,CUS_0x2d50,Standard +0x192f1,CUS_0x18b9,High +0x192fd,CUS_0x1585,Standard +0x19309,CUS_0xa59d,High +0x19315,CUS_0x7d44,Standard +0x19321,CUS_0xaaae,High +0x1932d,CUS_0x419a,Standard +0x19339,CUS_0xbc33,Standard +0x19345,CUS_0x261d,Standard +0x19351,CUS_0x912e,Standard +0x1935d,CUS_0xa05,Standard +0x19369,CUS_0x9336,High +0x19375,CUS_0x6e35,High +0x19381,CUS_0x18a2,High +0x1938d,CUS_0xccc,Low +0x19399,CUS_0x3fe1,High +0x193a5,CUS_0x8ac5,Standard +0x193b1,CUS_0x77ff,High +0x193bd,CUS_0x41a,Standard +0x193c9,CUS_0xc60e,Low +0x193d5,CUS_0x2444,High +0x193e1,CUS_0x5395,Standard +0x193ed,CUS_0x432,High +0x193f9,CUS_0x23dd,Standard +0x19405,CUS_0xae60,High +0x19411,CUS_0x7ed7,Low +0x1941d,CUS_0x1015,Standard +0x19429,CUS_0x682e,Standard +0x19435,CUS_0x49b9,Standard +0x19441,CUS_0x6478,Standard +0x1944d,CUS_0x5816,Standard +0x19459,CUS_0xc096,Low +0x19465,CUS_0xfa7,Low +0x19471,CUS_0x9138,Standard +0x1947d,CUS_0xba9d,High +0x19489,CUS_0x1607,Standard +0x19495,CUS_0x5e73,Standard +0x194a1,CUS_0xc50f,Standard +0x194ad,CUS_0xa1cc,High +0x194b9,CUS_0xa585,High +0x194c5,CUS_0x8590,Standard +0x194d1,CUS_0x65fa,Standard +0x194dd,CUS_0x5c5,Standard +0x194e9,CUS_0x4c95,Standard +0x194f5,CUS_0xbb1f,High +0x19501,CUS_0xc299,High +0x1950d,CUS_0x411e,Low +0x19519,CUS_0x38ca,Standard +0x19525,CUS_0x19a7,High +0x19531,CUS_0xaf9c,Standard +0x1953d,CUS_0x1758,Low +0x19549,CUS_0x43d0,High +0x19555,CUS_0xdc8,Standard +0x19561,CUS_0xbc03,High +0x1956d,CUS_0x7c25,Standard +0x19579,CUS_0x7227,Standard +0x19585,CUS_0x7a29,High +0x19591,CUS_0x39ae,Low +0x1959d,CUS_0xb41b,Standard +0x195a9,CUS_0x691,High +0x195b5,CUS_0x8ca7,Standard +0x195c1,CUS_0x7d80,Standard +0x195cd,CUS_0xa690,High +0x195d9,CUS_0x69b1,Low +0x195e5,CUS_0x3639,Standard +0x195f1,CUS_0x8be0,High +0x195fd,CUS_0x7bda,Low +0x19609,CUS_0x2d09,Standard +0x19615,CUS_0x6ab0,Standard +0x19621,CUS_0xb064,Low +0x1962d,CUS_0xb06d,High +0x19639,CUS_0xc4b3,Standard +0x19645,CUS_0x444c,Standard +0x19651,CUS_0x6e81,High +0x1965d,CUS_0xa6a,Standard +0x19669,CUS_0x55fb,Standard +0x19675,CUS_0x254e,Standard +0x19681,CUS_0x6324,Standard +0x1968d,CUS_0x78cd,High +0x19699,CUS_0x98e3,Standard +0x196a5,CUS_0x5fe0,Standard +0x196b1,CUS_0x7cc1,Standard +0x196bd,CUS_0xb482,Standard +0x196c9,CUS_0x8433,Low +0x196d5,CUS_0x760a,Standard +0x196e1,CUS_0xbb77,Standard +0x196ed,CUS_0x14ff,High +0x196f9,CUS_0xafcd,Standard +0x19705,CUS_0xbb4a,Standard +0x19711,CUS_0x9ab9,High +0x1971d,CUS_0x2366,Standard +0x19729,CUS_0x28d2,Standard +0x19735,CUS_0x9de1,Standard +0x19741,CUS_0x4156,Standard +0x1974d,CUS_0x89e3,Standard +0x19759,CUS_0x831d,Standard +0x19765,CUS_0x9567,Low +0x19771,CUS_0x5f05,High +0x1977d,CUS_0x387b,Standard +0x19789,CUS_0x627b,High +0x19795,CUS_0x307e,High +0x197a1,CUS_0x5db0,High +0x197ad,CUS_0x32fa,Standard +0x197b9,CUS_0x4083,Standard +0x197c5,CUS_0xc4e2,High +0x197d1,CUS_0x2878,Standard +0x197dd,CUS_0xa049,Low +0x197e9,CUS_0x4edc,Low +0x197f5,CUS_0xc143,Standard +0x19801,CUS_0x294d,High +0x1980d,CUS_0xb2c0,Standard +0x19819,CUS_0x6ccd,Standard +0x19825,CUS_0x9f1f,Standard +0x19831,CUS_0x7136,Low +0x1983d,CUS_0x2c4f,Standard +0x19849,CUS_0xac29,High +0x19855,CUS_0x585b,Standard +0x19861,CUS_0x5b9b,Standard +0x1986d,CUS_0xb7c3,Low +0x19879,CUS_0xa326,Standard +0x19885,CUS_0xa918,High +0x19891,CUS_0x1765,Standard +0x1989d,CUS_0xa8b7,Standard +0x198a9,CUS_0x4a0b,Standard +0x198b5,CUS_0xbb3c,Low +0x198c1,CUS_0x924a,Standard +0x198cd,CUS_0x44ff,Standard +0x198d9,CUS_0xa5ac,Standard +0x198e5,CUS_0x19f3,Standard +0x198f1,CUS_0x899d,Standard +0x198fd,CUS_0xad1f,High +0x19909,CUS_0x4427,Standard +0x19915,CUS_0x4688,Standard +0x19921,CUS_0xb2d2,High +0x1992d,CUS_0x87ec,Standard +0x19939,CUS_0x885,Low +0x19945,CUS_0xaa68,Low +0x19951,CUS_0x89c7,Standard +0x1995d,CUS_0x4afe,Standard +0x19969,CUS_0x2923,High +0x19975,CUS_0x2910,Standard +0x19981,CUS_0x4190,High +0x1998d,CUS_0xb4cc,Standard +0x19999,CUS_0x511e,High +0x199a5,CUS_0x450b,High +0x199b1,CUS_0xb80e,High +0x199bd,CUS_0x959b,Standard +0x199c9,CUS_0x415b,Standard +0x199d5,CUS_0x9a8b,Standard +0x199e1,CUS_0x92d2,Standard +0x199ed,CUS_0xe28,Standard +0x199f9,CUS_0x6bcf,Low +0x19a05,CUS_0x8a50,Low +0x19a11,CUS_0xc2aa,Standard +0x19a1d,CUS_0x5a53,Standard +0x19a29,CUS_0x6df1,Standard +0x19a35,CUS_0x166c,High +0x19a41,CUS_0x43dd,High +0x19a4d,CUS_0xa567,Standard +0x19a59,CUS_0x1bff,Standard +0x19a65,CUS_0x6116,Low +0x19a71,CUS_0x5309,Standard +0x19a7d,CUS_0x2425,Standard +0x19a89,CUS_0x4d3,High +0x19a95,CUS_0x7dc4,Low +0x19aa1,CUS_0x8a5f,Low +0x19aad,CUS_0x7e6d,Standard +0x19ab9,CUS_0xb86b,Standard +0x19ac5,CUS_0x8dfa,High +0x19ad1,CUS_0x2599,Low +0x19add,CUS_0x1a4d,Standard +0x19ae9,CUS_0x6e95,Standard +0x19af5,CUS_0x55c5,High +0x19b01,CUS_0xb650,Standard +0x19b0d,CUS_0x9127,Standard +0x19b19,CUS_0x54c7,Standard +0x19b25,CUS_0xb3bd,Standard +0x19b31,CUS_0x6a6f,Standard +0x19b3d,CUS_0x76b,Standard +0x19b49,CUS_0xb122,Low +0x19b55,CUS_0x26e0,Standard +0x19b61,CUS_0x3499,Standard +0x19b6d,CUS_0x45b,High +0x19b79,CUS_0x7666,High +0x19b85,CUS_0x696c,Standard +0x19b91,CUS_0x5499,Standard +0x19b9d,CUS_0x6781,Standard +0x19ba9,CUS_0xb171,Standard +0x19bb5,CUS_0x8e81,High +0x19bc1,CUS_0x5097,Standard +0x19bcd,CUS_0x57b1,High +0x19bd9,CUS_0x435d,Standard +0x19be5,CUS_0x2b39,Standard +0x19bf1,CUS_0x2142,Low +0x19bfd,CUS_0xba6,Standard +0x19c09,CUS_0x5a4f,High +0x19c15,CUS_0xc60d,High +0x19c21,CUS_0x8a3f,Low +0x19c2d,CUS_0x5e22,Standard +0x19c39,CUS_0xaa15,Low +0x19c45,CUS_0x1f64,Standard +0x19c51,CUS_0x48f,High +0x19c5d,CUS_0x29b4,Standard +0x19c69,CUS_0x5ae3,Low +0x19c75,CUS_0xbe9a,Low +0x19c81,CUS_0x4874,Standard +0x19c8d,CUS_0xc67b,Standard +0x19c99,CUS_0x8a64,Low +0x19ca5,CUS_0x35ea,Standard +0x19cb1,CUS_0x5044,Standard +0x19cbd,CUS_0x9dfd,Low +0x19cc9,CUS_0x513,Standard +0x19cd5,CUS_0xba0b,Standard +0x19ce1,CUS_0x9e7e,Standard +0x19ced,CUS_0x37dd,Low +0x19cf9,CUS_0x8873,Standard +0x19d05,CUS_0x61e0,Standard +0x19d11,CUS_0x7eb0,Standard +0x19d1d,CUS_0x5fdb,Standard +0x19d29,CUS_0x8f16,Standard +0x19d35,CUS_0x3ff9,Standard +0x19d41,CUS_0x5e43,Standard +0x19d4d,CUS_0x26e3,Standard +0x19d59,CUS_0x8d2,Low +0x19d65,CUS_0xb9a2,Low +0x19d71,CUS_0x9bf4,Standard +0x19d7d,CUS_0x12af,Standard +0x19d89,CUS_0x9d3,Low +0x19d95,CUS_0x6987,High +0x19da1,CUS_0x99d9,High +0x19dad,CUS_0xb4f,Low +0x19db9,CUS_0x8bd2,Standard +0x19dc5,CUS_0x5648,Low +0x19dd1,CUS_0xc0c6,Standard +0x19ddd,CUS_0xc4bb,Low +0x19de9,CUS_0x5c72,Low +0x19df5,CUS_0x19d1,High +0x19e01,CUS_0xa5f4,Low +0x19e0d,CUS_0xa499,Standard +0x19e19,CUS_0x9c28,High +0x19e25,CUS_0xc3b8,High +0x19e31,CUS_0xbabc,Standard +0x19e3d,CUS_0xc648,Standard +0x19e49,CUS_0x93bc,Standard +0x19e55,CUS_0x764f,Low +0x19e61,CUS_0xbebf,Standard +0x19e6d,CUS_0x216a,High +0x19e79,CUS_0x20ac,Standard +0x19e85,CUS_0x3cc2,Standard +0x19e91,CUS_0x5c4f,Standard +0x19e9d,CUS_0x924,Standard +0x19ea9,CUS_0x3a3a,Standard +0x19eb5,CUS_0x5d91,Standard +0x19ec1,CUS_0x6ba7,Low +0x19ecd,CUS_0x1764,Standard +0x19ed9,CUS_0x1971,Standard +0x19ee5,CUS_0x4f07,Standard +0x19ef1,CUS_0x6acc,Standard +0x19efd,CUS_0x5f02,Standard +0x19f09,CUS_0xbab8,Standard +0x19f15,CUS_0x2fb1,Standard +0x19f21,CUS_0x9d09,Standard +0x19f2d,CUS_0x905,Standard +0x19f39,CUS_0x716c,Standard +0x19f45,CUS_0x4ee5,Low +0x19f51,CUS_0x3797,High +0x19f5d,CUS_0x7015,High +0x19f69,CUS_0x7443,Standard +0x19f75,CUS_0x76a9,Standard +0x19f81,CUS_0x2218,Standard +0x19f8d,CUS_0xa405,Standard +0x19f99,CUS_0x9ba5,Low +0x19fa5,CUS_0x54d6,Low +0x19fb1,CUS_0x13fa,High +0x19fbd,CUS_0xb2f6,High +0x19fc9,CUS_0x6998,Low +0x19fd5,CUS_0x2e72,High +0x19fe1,CUS_0x61c8,Low +0x19fed,CUS_0x9e0,Standard +0x19ff9,CUS_0x238c,Low +0x1a005,CUS_0x3c63,Standard +0x1a011,CUS_0x77b7,High +0x1a01d,CUS_0x9ce7,Standard +0x1a029,CUS_0x79f7,Standard +0x1a035,CUS_0x2eb7,High +0x1a041,CUS_0x6d63,High +0x1a04d,CUS_0x4812,Standard +0x1a059,CUS_0x981d,High +0x1a065,CUS_0x5d36,Standard +0x1a071,CUS_0x3e1a,Standard +0x1a07d,CUS_0x67e2,Standard +0x1a089,CUS_0xa6dc,High +0x1a095,CUS_0x91d4,Standard +0x1a0a1,CUS_0x2b05,Standard +0x1a0ad,CUS_0x44dc,High +0x1a0b9,CUS_0xb115,Standard +0x1a0c5,CUS_0x9a30,High +0x1a0d1,CUS_0x435c,High +0x1a0dd,CUS_0x61fb,Standard +0x1a0e9,CUS_0xbc2b,Low +0x1a0f5,CUS_0xbaa0,High +0x1a101,CUS_0x4863,Low +0x1a10d,CUS_0xba6c,High +0x1a119,CUS_0xb658,Low +0x1a125,CUS_0xe03,Standard +0x1a131,CUS_0xbba,Standard +0x1a13d,CUS_0x995,Standard +0x1a149,CUS_0x98e4,High +0x1a155,CUS_0x10ac,Standard +0x1a161,CUS_0x1690,High +0x1a16d,CUS_0x5df9,Low +0x1a179,CUS_0x1f3d,Standard +0x1a185,CUS_0x4e24,Standard +0x1a191,CUS_0x3a15,Low +0x1a19d,CUS_0x1be8,High +0x1a1a9,CUS_0xa328,High +0x1a1b5,CUS_0xc574,Standard +0x1a1c1,CUS_0x56f9,Standard +0x1a1cd,CUS_0x364f,High +0x1a1d9,CUS_0xb0f5,High +0x1a1e5,CUS_0x32dc,Standard +0x1a1f1,CUS_0x370c,Standard +0x1a1fd,CUS_0x683d,Standard +0x1a209,CUS_0xaadf,Standard +0x1a215,CUS_0x7a91,Standard +0x1a221,CUS_0x4122,High +0x1a22d,CUS_0x717e,Standard +0x1a239,CUS_0xba27,High +0x1a245,CUS_0x8cd0,High +0x1a251,CUS_0x2fe0,Standard +0x1a25d,CUS_0x98cc,Standard +0x1a269,CUS_0xb6cd,Low +0x1a275,CUS_0xc54a,Standard +0x1a281,CUS_0x2ea8,Standard +0x1a28d,CUS_0x9e6a,Low +0x1a299,CUS_0xd25,Standard +0x1a2a5,CUS_0x20fa,High +0x1a2b1,CUS_0x46c,Low +0x1a2bd,CUS_0x66d1,Standard +0x1a2c9,CUS_0x4372,Standard +0x1a2d5,CUS_0xa696,Standard +0x1a2e1,CUS_0x1c31,High +0x1a2ed,CUS_0x15f7,High +0x1a2f9,CUS_0x44bb,Standard +0x1a305,CUS_0xc2a6,Standard +0x1a311,CUS_0x2ccc,Standard +0x1a31d,CUS_0x2dd8,High +0x1a329,CUS_0x4fc4,Low +0x1a335,CUS_0x5875,Standard +0x1a341,CUS_0x7ae1,Standard +0x1a34d,CUS_0x6bb5,Low +0x1a359,CUS_0x5fd5,Standard +0x1a365,CUS_0xcc2,High +0x1a371,CUS_0x4953,High +0x1a37d,CUS_0x645e,High +0x1a389,CUS_0x8ac7,Standard +0x1a395,CUS_0x7324,Low +0x1a3a1,CUS_0x6c2d,High +0x1a3ad,CUS_0x4ef9,Standard +0x1a3b9,CUS_0x2168,Standard +0x1a3c5,CUS_0x33ce,Standard +0x1a3d1,CUS_0x9e24,Standard +0x1a3dd,CUS_0xc150,Standard +0x1a3e9,CUS_0x1f7d,High +0x1a3f5,CUS_0x32a7,Standard +0x1a401,CUS_0x8e45,Low +0x1a40d,CUS_0x11fc,Low +0x1a419,CUS_0x32b7,Low +0x1a425,CUS_0x9b38,Standard +0x1a431,CUS_0x17fb,Low +0x1a43d,CUS_0x1e9e,Standard +0x1a449,CUS_0x84dd,Standard +0x1a455,CUS_0x70af,High +0x1a461,CUS_0x73e4,Low +0x1a46d,CUS_0xae25,Standard +0x1a479,CUS_0x751c,Standard +0x1a485,CUS_0x6ae5,High +0x1a491,CUS_0x89a,Standard +0x1a49d,CUS_0x669c,Low +0x1a4a9,CUS_0x779,Standard +0x1a4b5,CUS_0x8647,Low +0x1a4c1,CUS_0x8e5b,High +0x1a4cd,CUS_0x5cf1,Standard +0x1a4d9,CUS_0x9268,Standard +0x1a4e5,CUS_0x6540,Low +0x1a4f1,CUS_0x188f,Standard +0x1a4fd,CUS_0x7eed,Standard +0x1a509,CUS_0x6407,Standard +0x1a515,CUS_0x9190,Standard +0x1a521,CUS_0x28e1,Standard +0x1a52d,CUS_0x5bfc,Standard +0x1a539,CUS_0x9764,High +0x1a545,CUS_0xaccf,Standard +0x1a551,CUS_0x757,Standard +0x1a55d,CUS_0x7c2a,High +0x1a569,CUS_0x2170,Standard +0x1a575,CUS_0x1563,Standard +0x1a581,CUS_0x125c,High +0x1a58d,CUS_0x9ea6,High +0x1a599,CUS_0xc31c,Low +0x1a5a5,CUS_0x9dbc,Standard +0x1a5b1,CUS_0x82b3,Standard +0x1a5bd,CUS_0x86b0,Standard +0x1a5c9,CUS_0xaa9e,Low +0x1a5d5,CUS_0xc11e,Standard +0x1a5e1,CUS_0x300b,High +0x1a5ed,CUS_0x4e89,Standard +0x1a5f9,CUS_0x3ae1,High +0x1a605,CUS_0x2a70,High +0x1a611,CUS_0x9041,Low +0x1a61d,CUS_0x8340,High +0x1a629,CUS_0xb858,Standard +0x1a635,CUS_0xa93f,Standard +0x1a641,CUS_0xa420,Standard +0x1a64d,CUS_0x9b8c,Standard +0x1a659,CUS_0x1e3e,Standard +0x1a665,CUS_0x398f,Standard +0x1a671,CUS_0xab7b,Standard +0x1a67d,CUS_0x698,Standard +0x1a689,CUS_0x8b1,Low +0x1a695,CUS_0x946f,Low +0x1a6a1,CUS_0x930c,Standard +0x1a6ad,CUS_0x9425,Standard +0x1a6b9,CUS_0x977,Standard +0x1a6c5,CUS_0x7387,High +0x1a6d1,CUS_0x9226,High +0x1a6dd,CUS_0xa849,Standard +0x1a6e9,CUS_0x7c58,Standard +0x1a6f5,CUS_0x1135,Low +0x1a701,CUS_0x91e5,Standard +0x1a70d,CUS_0x67f0,High +0x1a719,CUS_0x8d42,High +0x1a725,CUS_0x8b29,Standard +0x1a731,CUS_0xa20d,Low +0x1a73d,CUS_0xb13e,Standard +0x1a749,CUS_0x2bf7,Standard +0x1a755,CUS_0x5e40,High +0x1a761,CUS_0x495e,Standard +0x1a76d,CUS_0x2e8a,Standard +0x1a779,CUS_0x7e67,Standard +0x1a785,CUS_0x2beb,High +0x1a791,CUS_0x162f,Low +0x1a79d,CUS_0x578b,High +0x1a7a9,CUS_0xc57e,Low +0x1a7b5,CUS_0x5131,Low +0x1a7c1,CUS_0x575b,Low +0x1a7cd,CUS_0x6dde,Standard +0x1a7d9,CUS_0xb647,Standard +0x1a7e5,CUS_0xb6f8,Standard +0x1a7f1,CUS_0x404c,Standard +0x1a7fd,CUS_0x6d5c,Low +0x1a809,CUS_0xc632,Standard +0x1a815,CUS_0x21cd,Standard +0x1a821,CUS_0x3757,High +0x1a82d,CUS_0x2b11,Standard +0x1a839,CUS_0x2858,Low +0x1a845,CUS_0x63ec,Low +0x1a851,CUS_0x8e65,Standard +0x1a85d,CUS_0x8ed5,Standard +0x1a869,CUS_0x99c2,High +0x1a875,CUS_0x3fef,Standard +0x1a881,CUS_0xa1a8,Standard +0x1a88d,CUS_0x8bba,High +0x1a899,CUS_0xae9e,High +0x1a8a5,CUS_0x1fa5,High +0x1a8b1,CUS_0x90ca,Standard +0x1a8bd,CUS_0x24ae,Standard +0x1a8c9,CUS_0x5205,Low +0x1a8d5,CUS_0xae4,High +0x1a8e1,CUS_0x26eb,Standard +0x1a8ed,CUS_0x2e53,Standard +0x1a8f9,CUS_0x817d,High +0x1a905,CUS_0x2c7d,Low +0x1a911,CUS_0x5053,Standard +0x1a91d,CUS_0xa122,Standard +0x1a929,CUS_0x804d,Low +0x1a935,CUS_0x98d4,Standard +0x1a941,CUS_0x4aeb,High +0x1a94d,CUS_0x2f0b,High +0x1a959,CUS_0xb030,Standard +0x1a965,CUS_0x5fe3,Standard +0x1a971,CUS_0x3b37,Standard +0x1a97d,CUS_0x8aea,Standard +0x1a989,CUS_0xb4a1,Standard +0x1a995,CUS_0x8d21,High +0x1a9a1,CUS_0x75d8,Low +0x1a9ad,CUS_0x32df,Standard +0x1a9b9,CUS_0x87d8,Low +0x1a9c5,CUS_0x282a,High +0x1a9d1,CUS_0x8a84,Low +0x1a9dd,CUS_0x43fc,Low +0x1a9e9,CUS_0x6870,High +0x1a9f5,CUS_0x2e65,Standard +0x1aa01,CUS_0x95f4,Standard +0x1aa0d,CUS_0x6176,High +0x1aa19,CUS_0x9d2f,Low +0x1aa25,CUS_0x5338,Low +0x1aa31,CUS_0x2ddc,Low +0x1aa3d,CUS_0x3e14,Low +0x1aa49,CUS_0x62b5,Standard +0x1aa55,CUS_0xbca1,Standard +0x1aa61,CUS_0x6c88,Standard +0x1aa6d,CUS_0x199b,High +0x1aa79,CUS_0x4eae,Low +0x1aa85,CUS_0x56ad,Standard +0x1aa91,CUS_0x4298,High +0x1aa9d,CUS_0x9741,High +0x1aaa9,CUS_0x9a7a,Low +0x1aab5,CUS_0x8d0b,High +0x1aac1,CUS_0x72b0,Low +0x1aacd,CUS_0x883e,Standard +0x1aad9,CUS_0xb820,Standard +0x1aae5,CUS_0x98f1,High +0x1aaf1,CUS_0xa798,High +0x1aafd,CUS_0x33e1,Standard +0x1ab09,CUS_0xa024,Standard +0x1ab15,CUS_0xaecd,Low +0x1ab21,CUS_0xb01b,Standard +0x1ab2d,CUS_0x189e,Low +0x1ab39,CUS_0xb89,High +0x1ab45,CUS_0x115c,Standard +0x1ab51,CUS_0x4a91,High +0x1ab5d,CUS_0x6eb2,Standard +0x1ab69,CUS_0x495f,High +0x1ab75,CUS_0x7430,Standard +0x1ab81,CUS_0xb066,Standard +0x1ab8d,CUS_0x758f,Standard +0x1ab99,CUS_0x243a,Low +0x1aba5,CUS_0x13e3,Standard +0x1abb1,CUS_0x81ff,Standard +0x1abbd,CUS_0x2c75,Low +0x1abc9,CUS_0x8237,Low +0x1abd5,CUS_0xc44a,Standard +0x1abe1,CUS_0x36f7,High +0x1abed,CUS_0x6a6c,Standard +0x1abf9,CUS_0x2ae8,Standard +0x1ac05,CUS_0xa91f,High +0x1ac11,CUS_0x9273,Low +0x1ac1d,CUS_0x25ca,High +0x1ac29,CUS_0x7ff5,Standard +0x1ac35,CUS_0xa03a,Standard +0x1ac41,CUS_0x83a0,Standard +0x1ac4d,CUS_0x3e9a,Standard +0x1ac59,CUS_0x6235,High +0x1ac65,CUS_0xa2ac,High +0x1ac71,CUS_0x431,Standard +0x1ac7d,CUS_0xae58,High +0x1ac89,CUS_0x6719,High +0x1ac95,CUS_0x65dc,High +0x1aca1,CUS_0x1916,Low +0x1acad,CUS_0x275c,High +0x1acb9,CUS_0x1c76,Standard +0x1acc5,CUS_0x6aca,Standard +0x1acd1,CUS_0x2cae,Low +0x1acdd,CUS_0x9e5b,Standard +0x1ace9,CUS_0x6c9b,Standard +0x1acf5,CUS_0x8fbb,Standard +0x1ad01,CUS_0x743f,Low +0x1ad0d,CUS_0x4279,Standard +0x1ad19,CUS_0x4712,High +0x1ad25,CUS_0x26f2,High +0x1ad31,CUS_0xbd4b,Standard +0x1ad3d,CUS_0x38cf,Standard +0x1ad49,CUS_0xc39,Standard +0x1ad55,CUS_0xbdfe,Standard +0x1ad61,CUS_0x9972,Standard +0x1ad6d,CUS_0x6f93,Low +0x1ad79,CUS_0xe2f,Standard +0x1ad85,CUS_0x1be2,Standard +0x1ad91,CUS_0x6030,High +0x1ad9d,CUS_0x6f78,Low +0x1ada9,CUS_0xa987,Standard +0x1adb5,CUS_0x7ff9,Standard +0x1adc1,CUS_0xb085,High +0x1adcd,CUS_0x4b17,High +0x1add9,CUS_0x4188,Standard +0x1ade5,CUS_0x8464,Standard +0x1adf1,CUS_0x96c8,High +0x1adfd,CUS_0xbf01,Standard +0x1ae09,CUS_0x49a4,High +0x1ae15,CUS_0x17e5,High +0x1ae21,CUS_0x3422,Standard +0x1ae2d,CUS_0x1f9b,Standard +0x1ae39,CUS_0x5aa9,Standard +0x1ae45,CUS_0x3c23,Standard +0x1ae51,CUS_0x366b,Standard +0x1ae5d,CUS_0xb0a3,Standard +0x1ae69,CUS_0x3dc3,Standard +0x1ae75,CUS_0x3df0,Low +0x1ae81,CUS_0xa4ad,High +0x1ae8d,CUS_0x7350,Standard +0x1ae99,CUS_0x41a1,Standard +0x1aea5,CUS_0x858b,Standard +0x1aeb1,CUS_0x2a9a,Standard +0x1aebd,CUS_0x4e47,High +0x1aec9,CUS_0x47ed,Standard +0x1aed5,CUS_0x8cd,Standard +0x1aee1,CUS_0x77fa,High +0x1aeed,CUS_0x1534,High +0x1aef9,CUS_0x3f6a,High +0x1af05,CUS_0x5284,Low +0x1af11,CUS_0x59b5,High +0x1af1d,CUS_0xb6bb,High +0x1af29,CUS_0xe57,High +0x1af35,CUS_0x96c7,High +0x1af41,CUS_0x58cd,Standard +0x1af4d,CUS_0x496e,Standard +0x1af59,CUS_0x4e97,High +0x1af65,CUS_0x4638,High +0x1af71,CUS_0x3d3f,Low +0x1af7d,CUS_0x1fb0,Standard +0x1af89,CUS_0x1425,Low +0x1af95,CUS_0x1ce1,High +0x1afa1,CUS_0x2ff7,Standard +0x1afad,CUS_0x2b29,High +0x1afb9,CUS_0x8964,High +0x1afc5,CUS_0x5be5,Low +0x1afd1,CUS_0x76bc,Standard +0x1afdd,CUS_0x8908,Standard +0x1afe9,CUS_0x2b59,High +0x1aff5,CUS_0xc07c,Standard +0x1b001,CUS_0x8fd9,High +0x1b00d,CUS_0x767f,Standard +0x1b019,CUS_0x796a,Standard +0x1b025,CUS_0x2b7e,Standard +0x1b031,CUS_0x1d1b,High +0x1b03d,CUS_0x7198,Low +0x1b049,CUS_0x404d,Standard +0x1b055,CUS_0xab78,Standard +0x1b061,CUS_0x372e,Standard +0x1b06d,CUS_0xaa83,Low +0x1b079,CUS_0x4318,Standard +0x1b085,CUS_0x29ac,Standard +0x1b091,CUS_0x1169,Low +0x1b09d,CUS_0x9b63,High +0x1b0a9,CUS_0x2748,Standard +0x1b0b5,CUS_0x612b,Low +0x1b0c1,CUS_0x7df9,Standard +0x1b0cd,CUS_0x21fa,Standard +0x1b0d9,CUS_0x7f50,Standard +0x1b0e5,CUS_0x850b,Standard +0x1b0f1,CUS_0x795c,Standard +0x1b0fd,CUS_0xb86e,High +0x1b109,CUS_0x99be,Standard +0x1b115,CUS_0x1915,Standard +0x1b121,CUS_0x183e,Standard +0x1b12d,CUS_0x275a,High +0x1b139,CUS_0x9772,High +0x1b145,CUS_0x461,Standard +0x1b151,CUS_0xbaa1,Standard +0x1b15d,CUS_0x55f6,Standard +0x1b169,CUS_0x81d7,Standard +0x1b175,CUS_0x7200,High +0x1b181,CUS_0x2ed0,Standard +0x1b18d,CUS_0xa306,Standard +0x1b199,CUS_0xe64,Standard +0x1b1a5,CUS_0x9423,Standard +0x1b1b1,CUS_0xb385,High +0x1b1bd,CUS_0x763a,Standard +0x1b1c9,CUS_0x6d3c,Standard +0x1b1d5,CUS_0xb6d,Standard +0x1b1e1,CUS_0x7545,Low +0x1b1ed,CUS_0x48e9,Low +0x1b1f9,CUS_0x90a2,High +0x1b205,CUS_0x832f,Standard +0x1b211,CUS_0x3f85,Standard +0x1b21d,CUS_0x480f,Low +0x1b229,CUS_0x8711,Standard +0x1b235,CUS_0x34c9,High +0x1b241,CUS_0x1e3f,Standard +0x1b24d,CUS_0xaa85,Low +0x1b259,CUS_0x63c1,Standard +0x1b265,CUS_0x4185,Standard +0x1b271,CUS_0x3fcb,Standard +0x1b27d,CUS_0x271b,Low +0x1b289,CUS_0x3379,High +0x1b295,CUS_0x15d9,High +0x1b2a1,CUS_0x89ba,Low +0x1b2ad,CUS_0x8bfe,High +0x1b2b9,CUS_0xae30,Standard +0x1b2c5,CUS_0xad2c,Standard +0x1b2d1,CUS_0xa9fc,Standard +0x1b2dd,CUS_0xedb,High +0x1b2e9,CUS_0x6d7e,Standard +0x1b2f5,CUS_0x8f20,Standard +0x1b301,CUS_0xa6db,Low +0x1b30d,CUS_0x2159,Standard +0x1b319,CUS_0x1375,High +0x1b325,CUS_0x9ebf,High +0x1b331,CUS_0x4fd8,High +0x1b33d,CUS_0x2b8a,High +0x1b349,CUS_0x294b,Standard +0x1b355,CUS_0x3813,Standard +0x1b361,CUS_0x8440,Standard +0x1b36d,CUS_0x2a67,Standard +0x1b379,CUS_0x4387,High +0x1b385,CUS_0xb824,High +0x1b391,CUS_0x79c8,Standard +0x1b39d,CUS_0x138f,High +0x1b3a9,CUS_0x8f63,Standard +0x1b3b5,CUS_0x8ff5,Standard +0x1b3c1,CUS_0x6282,Standard +0x1b3cd,CUS_0x61f8,Standard +0x1b3d9,CUS_0x7d17,Standard +0x1b3e5,CUS_0xa9b,Standard +0x1b3f1,CUS_0x3b7d,Standard +0x1b3fd,CUS_0x21ce,Standard +0x1b409,CUS_0x17f0,Standard +0x1b415,CUS_0x335a,High +0x1b421,CUS_0x95b6,Standard +0x1b42d,CUS_0x22e5,Standard +0x1b439,CUS_0x7ec9,Low +0x1b445,CUS_0x234a,Standard +0x1b451,CUS_0xb2c4,High +0x1b45d,CUS_0x41e5,Standard +0x1b469,CUS_0x4401,Standard +0x1b475,CUS_0x28e2,Standard +0x1b481,CUS_0x2a64,Standard +0x1b48d,CUS_0x39f8,Low +0x1b499,CUS_0x9dd,Standard +0x1b4a5,CUS_0x2c22,Standard +0x1b4b1,CUS_0x18cb,Standard +0x1b4bd,CUS_0xd9a,Low +0x1b4c9,CUS_0x7e90,High +0x1b4d5,CUS_0x2416,Standard +0x1b4e1,CUS_0x885c,Low +0x1b4ed,CUS_0x7b8a,High +0x1b4f9,CUS_0x1af1,High +0x1b505,CUS_0x3d64,High +0x1b511,CUS_0xc533,Standard +0x1b51d,CUS_0x65bd,Standard +0x1b529,CUS_0x1b0b,High +0x1b535,CUS_0x1b55,High +0x1b541,CUS_0x7d62,Standard +0x1b54d,CUS_0x975d,High +0x1b559,CUS_0x248e,Low +0x1b565,CUS_0x7eec,High +0x1b571,CUS_0x3e1f,Standard +0x1b57d,CUS_0x8430,Standard +0x1b589,CUS_0xbe12,High +0x1b595,CUS_0x6850,Low +0x1b5a1,CUS_0x9e04,High +0x1b5ad,CUS_0xacd,Low +0x1b5b9,CUS_0x7a4c,Standard +0x1b5c5,CUS_0x8898,Standard +0x1b5d1,CUS_0x4deb,High +0x1b5dd,CUS_0x4adb,Standard +0x1b5e9,CUS_0xb25e,Standard +0x1b5f5,CUS_0x1613,Low +0x1b601,CUS_0xbad2,Standard +0x1b60d,CUS_0x7f6b,Standard +0x1b619,CUS_0x5753,Standard +0x1b625,CUS_0xa2fe,High +0x1b631,CUS_0xc06a,Standard +0x1b63d,CUS_0x151b,Standard +0x1b649,CUS_0x8653,Standard +0x1b655,CUS_0x4b9f,Standard +0x1b661,CUS_0x72b4,High +0x1b66d,CUS_0x86ec,High +0x1b679,CUS_0x8bd6,High +0x1b685,CUS_0x2fd8,Low +0x1b691,CUS_0x4f83,Standard +0x1b69d,CUS_0xb8ea,Standard +0x1b6a9,CUS_0x7177,Standard +0x1b6b5,CUS_0x37e9,Standard +0x1b6c1,CUS_0x57c5,High +0x1b6cd,CUS_0x4d3d,High +0x1b6d9,CUS_0x446b,Standard +0x1b6e5,CUS_0xb25a,High +0x1b6f1,CUS_0x7b31,Standard +0x1b6fd,CUS_0xa411,Standard +0x1b709,CUS_0x748d,Low +0x1b715,CUS_0x87f6,Standard +0x1b721,CUS_0x2472,High +0x1b72d,CUS_0x2a9f,High +0x1b739,CUS_0x147c,High +0x1b745,CUS_0x5f30,Standard +0x1b751,CUS_0x1914,High +0x1b75d,CUS_0x5d0f,Standard +0x1b769,CUS_0x8888,Standard +0x1b775,CUS_0x36c4,Low +0x1b781,CUS_0xb039,Standard +0x1b78d,CUS_0x1616,Standard +0x1b799,CUS_0x6f3b,Standard +0x1b7a5,CUS_0x583c,Standard +0x1b7b1,CUS_0xb741,Standard +0x1b7bd,CUS_0x9e68,High +0x1b7c9,CUS_0x5430,Standard +0x1b7d5,CUS_0x3ad0,Standard +0x1b7e1,CUS_0x586c,Standard +0x1b7ed,CUS_0x8638,Low +0x1b7f9,CUS_0x65fe,High +0x1b805,CUS_0x31ce,Standard +0x1b811,CUS_0x8336,Standard +0x1b81d,CUS_0x4218,Standard +0x1b829,CUS_0x7dee,Standard +0x1b835,CUS_0xc62a,High +0x1b841,CUS_0x2e9e,Standard +0x1b84d,CUS_0x38ad,High +0x1b859,CUS_0xb6bc,High +0x1b865,CUS_0x7e9a,Standard +0x1b871,CUS_0xc6e,Standard +0x1b87d,CUS_0x887c,High +0x1b889,CUS_0x4f70,Standard +0x1b895,CUS_0x6410,High +0x1b8a1,CUS_0x544a,Standard +0x1b8ad,CUS_0x8a29,Low +0x1b8b9,CUS_0x24b2,Standard +0x1b8c5,CUS_0xa080,Standard +0x1b8d1,CUS_0xaf78,High +0x1b8dd,CUS_0xad2,Standard +0x1b8e9,CUS_0x6f0f,Standard +0x1b8f5,CUS_0xb948,Standard +0x1b901,CUS_0x3092,Low +0x1b90d,CUS_0x6829,Standard +0x1b919,CUS_0x6f71,Standard +0x1b925,CUS_0x788b,Standard +0x1b931,CUS_0xa071,Standard +0x1b93d,CUS_0x66eb,Low +0x1b949,CUS_0xbd57,Low +0x1b955,CUS_0x6e3b,Standard +0x1b961,CUS_0x9eef,Standard +0x1b96d,CUS_0x3f37,Low +0x1b979,CUS_0x337b,Standard +0x1b985,CUS_0x778a,Low +0x1b991,CUS_0xb861,High +0x1b99d,CUS_0x3df4,Standard +0x1b9a9,CUS_0x3a43,Standard +0x1b9b5,CUS_0xbef8,Standard +0x1b9c1,CUS_0x1ebf,Standard +0x1b9cd,CUS_0x3fd9,Standard +0x1b9d9,CUS_0x83b5,Low +0x1b9e5,CUS_0x83a1,Low +0x1b9f1,CUS_0x97aa,Standard +0x1b9fd,CUS_0x9c2e,Standard +0x1ba09,CUS_0x50b9,Standard +0x1ba15,CUS_0x5dd6,Standard +0x1ba21,CUS_0x1255,Low +0x1ba2d,CUS_0x9db5,High +0x1ba39,CUS_0x693a,High +0x1ba45,CUS_0xaf8f,Standard +0x1ba51,CUS_0x3909,Standard +0x1ba5d,CUS_0x4ed5,Low +0x1ba69,CUS_0xba5f,High +0x1ba75,CUS_0x3570,Standard +0x1ba81,CUS_0xa86,Low +0x1ba8d,CUS_0x5171,Standard +0x1ba99,CUS_0x947b,Standard +0x1baa5,CUS_0x58ad,Standard +0x1bab1,CUS_0x5470,Low +0x1babd,CUS_0x1746,High +0x1bac9,CUS_0x1278,Standard +0x1bad5,CUS_0xb27a,High +0x1bae1,CUS_0x84a8,Low +0x1baed,CUS_0x59a5,Standard +0x1baf9,CUS_0x6f9,High +0x1bb05,CUS_0x4884,Standard +0x1bb11,CUS_0x127d,High +0x1bb1d,CUS_0xe60,Standard +0x1bb29,CUS_0x37bd,Standard +0x1bb35,CUS_0x6a56,High +0x1bb41,CUS_0x8bbd,Standard +0x1bb4d,CUS_0x8977,High +0x1bb59,CUS_0x9148,Standard +0x1bb65,CUS_0xbf8b,High +0x1bb71,CUS_0x1efa,Standard +0x1bb7d,CUS_0x66b8,Low +0x1bb89,CUS_0x3afb,Standard +0x1bb95,CUS_0x5f3f,High +0x1bba1,CUS_0xa05a,High +0x1bbad,CUS_0xab07,Standard +0x1bbb9,CUS_0x5873,Standard +0x1bbc5,CUS_0x55f5,Standard +0x1bbd1,CUS_0x9b20,High +0x1bbdd,CUS_0x5344,Low +0x1bbe9,CUS_0x2863,Standard +0x1bbf5,CUS_0xc4b6,Low +0x1bc01,CUS_0x56a4,Standard +0x1bc0d,CUS_0x36ee,Standard +0x1bc19,CUS_0x4a78,High +0x1bc25,CUS_0xbd33,Standard +0x1bc31,CUS_0x6247,Standard +0x1bc3d,CUS_0x8ebd,Standard +0x1bc49,CUS_0xac05,Standard +0x1bc55,CUS_0x9192,Low +0x1bc61,CUS_0xae75,Standard +0x1bc6d,CUS_0x82c2,High +0x1bc79,CUS_0x7672,Low +0x1bc85,CUS_0x1499,Standard +0x1bc91,CUS_0x8239,Standard +0x1bc9d,CUS_0xb987,High +0x1bca9,CUS_0x927e,Standard +0x1bcb5,CUS_0x1c98,Standard +0x1bcc1,CUS_0xa9d3,High +0x1bccd,CUS_0x2317,Standard +0x1bcd9,CUS_0xb12,Standard +0x1bce5,CUS_0xbaa8,Low +0x1bcf1,CUS_0x3371,High +0x1bcfd,CUS_0x7ba5,High +0x1bd09,CUS_0x7ace,Low +0x1bd15,CUS_0xb3e,High +0x1bd21,CUS_0x5aac,Standard +0x1bd2d,CUS_0x7c97,High +0x1bd39,CUS_0xd8e,Low +0x1bd45,CUS_0x940d,Standard +0x1bd51,CUS_0x94aa,Standard +0x1bd5d,CUS_0x667d,Standard +0x1bd69,CUS_0x41f5,Standard +0x1bd75,CUS_0x95a1,Standard +0x1bd81,CUS_0x8aa3,Standard +0x1bd8d,CUS_0x2141,High +0x1bd99,CUS_0x2fb9,Standard +0x1bda5,CUS_0x5efc,High +0x1bdb1,CUS_0x4430,High +0x1bdbd,CUS_0x527f,Standard +0x1bdc9,CUS_0x530c,Standard +0x1bdd5,CUS_0x260b,High +0x1bde1,CUS_0xad31,High +0x1bded,CUS_0x8ee2,Low +0x1bdf9,CUS_0x5637,Standard +0x1be05,CUS_0xba4c,Low +0x1be11,CUS_0x2fd6,High +0x1be1d,CUS_0xa250,Standard +0x1be29,CUS_0x161b,Standard +0x1be35,CUS_0x80df,Standard +0x1be41,CUS_0x9e45,Standard +0x1be4d,CUS_0x730d,Standard +0x1be59,CUS_0x4322,Standard +0x1be65,CUS_0x3d56,Standard +0x1be71,CUS_0x6487,High +0x1be7d,CUS_0x5e2d,Standard +0x1be89,CUS_0xbcf0,High +0x1be95,CUS_0xa4c3,High +0x1bea1,CUS_0x956b,High +0x1bead,CUS_0x9e80,Low +0x1beb9,CUS_0xc356,High +0x1bec5,CUS_0x2e8d,Standard +0x1bed1,CUS_0x720f,Standard +0x1bedd,CUS_0x5a7d,Standard +0x1bee9,CUS_0x5190,Standard +0x1bef5,CUS_0x9bd6,Standard +0x1bf01,CUS_0x4384,Standard +0x1bf0d,CUS_0x962f,Standard +0x1bf19,CUS_0x6c9e,High +0x1bf25,CUS_0x86d9,Low +0x1bf31,CUS_0x5d3f,Standard +0x1bf3d,CUS_0x380f,High +0x1bf49,CUS_0xb428,High +0x1bf55,CUS_0x48c0,Low +0x1bf61,CUS_0x87b6,Standard +0x1bf6d,CUS_0x5505,Low +0x1bf79,CUS_0x272c,Standard +0x1bf85,CUS_0x227e,High +0x1bf91,CUS_0x3e5c,Low +0x1bf9d,CUS_0x33cd,Standard +0x1bfa9,CUS_0x96bc,Standard +0x1bfb5,CUS_0xa1bc,High +0x1bfc1,CUS_0xbc4,Standard +0x1bfcd,CUS_0x8138,Standard +0x1bfd9,CUS_0x70c9,Standard +0x1bfe5,CUS_0x5fcd,Standard +0x1bff1,CUS_0x8382,Standard +0x1bffd,CUS_0xc61e,Standard +0x1c009,CUS_0x6e0d,Standard +0x1c015,CUS_0x7541,Standard +0x1c021,CUS_0x3b3b,High +0x1c02d,CUS_0x7319,Standard +0x1c039,CUS_0x3533,Standard +0x1c045,CUS_0x7fc7,Low +0x1c051,CUS_0x4b67,High +0x1c05d,CUS_0x6312,Standard +0x1c069,CUS_0x95d2,Standard +0x1c075,CUS_0x4b1c,High +0x1c081,CUS_0x242d,Standard +0x1c08d,CUS_0x1930,Standard +0x1c099,CUS_0x5803,Standard +0x1c0a5,CUS_0x86c7,Low +0x1c0b1,CUS_0x3910,Standard +0x1c0bd,CUS_0xa630,Standard +0x1c0c9,CUS_0x91b,Standard +0x1c0d5,CUS_0x394a,Low +0x1c0e1,CUS_0x535a,Low +0x1c0ed,CUS_0x5959,High +0x1c0f9,CUS_0x184c,High +0x1c105,CUS_0xb143,High +0x1c111,CUS_0x9f80,High +0x1c11d,CUS_0x15b7,High +0x1c129,CUS_0x2b60,High +0x1c135,CUS_0xf55,High +0x1c141,CUS_0x24af,Standard +0x1c14d,CUS_0xba96,Standard +0x1c159,CUS_0x56f6,Standard +0x1c165,CUS_0xa403,Standard +0x1c171,CUS_0xaa0d,Standard +0x1c17d,CUS_0x8e7f,High +0x1c189,CUS_0x5c65,Standard +0x1c195,CUS_0x8e00,High +0x1c1a1,CUS_0x108a,Standard +0x1c1ad,CUS_0xb23c,Standard +0x1c1b9,CUS_0xb77f,High +0x1c1c5,CUS_0x40b1,Standard +0x1c1d1,CUS_0x7fe,Low +0x1c1dd,CUS_0x4fa6,High +0x1c1e9,CUS_0xb9c7,High +0x1c1f5,CUS_0x8b2c,High +0x1c201,CUS_0x8b74,Low +0x1c20d,CUS_0x434a,High +0x1c219,CUS_0x4c45,High +0x1c225,CUS_0x3433,Standard +0x1c231,CUS_0xa9e7,Standard +0x1c23d,CUS_0xbab1,Low +0x1c249,CUS_0x3722,Standard +0x1c255,CUS_0x71f1,Standard +0x1c261,CUS_0x2d98,Low +0x1c26d,CUS_0x2bce,High +0x1c279,CUS_0x711e,Standard +0x1c285,CUS_0xa2a2,Standard +0x1c291,CUS_0x9c96,High +0x1c29d,CUS_0x838c,High +0x1c2a9,CUS_0xa137,Standard +0x1c2b5,CUS_0xfe5,Standard +0x1c2c1,CUS_0x3bfb,High +0x1c2cd,CUS_0x6827,High +0x1c2d9,CUS_0x9283,High +0x1c2e5,CUS_0x65d2,Standard +0x1c2f1,CUS_0x5fc5,Standard +0x1c2fd,CUS_0xc6c2,Standard +0x1c309,CUS_0x39c5,High +0x1c315,CUS_0x95a9,Standard +0x1c321,CUS_0x632c,Low +0x1c32d,CUS_0xadee,Standard +0x1c339,CUS_0x3e5d,Standard +0x1c345,CUS_0xbc5b,Standard +0x1c351,CUS_0x9ef9,Standard +0x1c35d,CUS_0x6194,High +0x1c369,CUS_0x454f,Low +0x1c375,CUS_0x4b4,Standard +0x1c381,CUS_0x96e7,Standard +0x1c38d,CUS_0x7312,Standard +0x1c399,CUS_0x618c,Standard +0x1c3a5,CUS_0xb772,High +0x1c3b1,CUS_0x224f,Low +0x1c3bd,CUS_0x9fca,Standard +0x1c3c9,CUS_0x4fac,High +0x1c3d5,CUS_0x2346,Standard +0x1c3e1,CUS_0x9123,Standard +0x1c3ed,CUS_0x9e39,High +0x1c3f9,CUS_0x193e,High +0x1c405,CUS_0x9169,Standard +0x1c411,CUS_0x2683,High +0x1c41d,CUS_0x2568,High +0x1c429,CUS_0xa31b,Low +0x1c435,CUS_0x6a4d,Standard +0x1c441,CUS_0x32e6,Low +0x1c44d,CUS_0x99ec,Low +0x1c459,CUS_0x233d,High +0x1c465,CUS_0x67e5,High +0x1c471,CUS_0xbfd0,Low +0x1c47d,CUS_0x71ba,High +0x1c489,CUS_0x6a9d,High +0x1c495,CUS_0x492c,Standard +0x1c4a1,CUS_0x9cf7,Standard +0x1c4ad,CUS_0x75ce,High +0x1c4b9,CUS_0x5628,Standard +0x1c4c5,CUS_0x20e4,Low +0x1c4d1,CUS_0x44c5,High +0x1c4dd,CUS_0xb8c2,Low +0x1c4e9,CUS_0x2fc9,Standard +0x1c4f5,CUS_0xe42,High +0x1c501,CUS_0x4448,High +0x1c50d,CUS_0x8957,Standard +0x1c519,CUS_0x88e3,Low +0x1c525,CUS_0x8b85,Standard +0x1c531,CUS_0x6d82,Standard +0x1c53d,CUS_0x2db5,Standard +0x1c549,CUS_0xbefe,High +0x1c555,CUS_0x8275,High +0x1c561,CUS_0xaf14,Standard +0x1c56d,CUS_0xb53d,Low +0x1c579,CUS_0x58e5,Standard +0x1c585,CUS_0x3b1f,High +0x1c591,CUS_0xb742,Low +0x1c59d,CUS_0xdcd,Standard +0x1c5a9,CUS_0x793,Standard +0x1c5b5,CUS_0xa3bd,Low +0x1c5c1,CUS_0x44a4,Standard +0x1c5cd,CUS_0xc78,Low +0x1c5d9,CUS_0x1e50,Standard +0x1c5e5,CUS_0x206c,Standard +0x1c5f1,CUS_0x787f,Standard +0x1c5fd,CUS_0x4f3,Standard +0x1c609,CUS_0x3561,High +0x1c615,CUS_0xb6ae,Standard +0x1c621,CUS_0xb634,High +0x1c62d,CUS_0x5323,Standard +0x1c639,CUS_0x99cc,Low +0x1c645,CUS_0x6e05,Low +0x1c651,CUS_0xa9a8,High +0x1c65d,CUS_0x36eb,Standard +0x1c669,CUS_0x2f24,High +0x1c675,CUS_0x3240,Low +0x1c681,CUS_0x796e,Standard +0x1c68d,CUS_0x4aa5,High +0x1c699,CUS_0x4046,Standard +0x1c6a5,CUS_0x1be4,Standard +0x1c6b1,CUS_0xbe54,Low +0x1c6bd,CUS_0xb397,Low +0x1c6c9,CUS_0x3ee4,Low +0x1c6d5,CUS_0x82a7,High +0x1c6e1,CUS_0x1dc2,High +0x1c6ed,CUS_0x1630,High +0x1c6f9,CUS_0x9c65,Standard +0x1c705,CUS_0x706d,High +0x1c711,CUS_0x8c52,Standard +0x1c71d,CUS_0x1735,Standard +0x1c729,CUS_0xa255,Standard +0x1c735,CUS_0x2761,Standard +0x1c741,CUS_0xae54,Standard +0x1c74d,CUS_0x748,Standard +0x1c759,CUS_0xb7e2,Low +0x1c765,CUS_0x49fd,Low +0x1c771,CUS_0x5a82,Low +0x1c77d,CUS_0xa39e,High +0x1c789,CUS_0x75e3,High +0x1c795,CUS_0x1c1a,Standard +0x1c7a1,CUS_0x4f29,High +0x1c7ad,CUS_0x1c7a,High +0x1c7b9,CUS_0x1dab,High +0x1c7c5,CUS_0x9274,Low +0x1c7d1,CUS_0x7aad,Low +0x1c7dd,CUS_0xebe,Standard +0x1c7e9,CUS_0x4ac2,Standard +0x1c7f5,CUS_0x2031,Low +0x1c801,CUS_0x919b,High +0x1c80d,CUS_0x2d81,Standard +0x1c819,CUS_0x92ca,Standard +0x1c825,CUS_0xc5f8,Standard +0x1c831,CUS_0x2010,Low +0x1c83d,CUS_0x2982,Standard +0x1c849,CUS_0x8b7c,Standard +0x1c855,CUS_0x1bbb,Standard +0x1c861,CUS_0x9657,High +0x1c86d,CUS_0x73fb,Low +0x1c879,CUS_0xbe22,Standard +0x1c885,CUS_0x2c54,Standard +0x1c891,CUS_0x68e1,Standard +0x1c89d,CUS_0x2206,Standard +0x1c8a9,CUS_0x5856,Standard +0x1c8b5,CUS_0xb13b,Standard +0x1c8c1,CUS_0x6991,High +0x1c8cd,CUS_0x7450,High +0x1c8d9,CUS_0x8793,Standard +0x1c8e5,CUS_0xbc57,High +0x1c8f1,CUS_0x45aa,High +0x1c8fd,CUS_0xb229,Low +0x1c909,CUS_0x5af5,High +0x1c915,CUS_0x8749,Standard +0x1c921,CUS_0x8f6b,Standard +0x1c92d,CUS_0x88f9,High +0x1c939,CUS_0xc5c9,Standard +0x1c945,CUS_0x851c,Standard +0x1c951,CUS_0x1338,Standard +0x1c95d,CUS_0x1ed2,High +0x1c969,CUS_0xac1,Standard +0x1c975,CUS_0x5e7a,Standard +0x1c981,CUS_0xc715,Standard +0x1c98d,CUS_0x7327,Low +0x1c999,CUS_0xc2ee,Standard +0x1c9a5,CUS_0x7830,Standard +0x1c9b1,CUS_0xced,Standard +0x1c9bd,CUS_0x9e42,Low +0x1c9c9,CUS_0x7029,Standard +0x1c9d5,CUS_0x4f2f,High +0x1c9e1,CUS_0x32c7,High +0x1c9ed,CUS_0x6525,High +0x1c9f9,CUS_0x5418,Low +0x1ca05,CUS_0x6818,Standard +0x1ca11,CUS_0x5a1e,High +0x1ca1d,CUS_0x711b,Standard +0x1ca29,CUS_0x453d,Low +0x1ca35,CUS_0xa9cc,Standard +0x1ca41,CUS_0x6c4e,Standard +0x1ca4d,CUS_0xbeef,Standard +0x1ca59,CUS_0xbc40,High +0x1ca65,CUS_0x241d,High +0x1ca71,CUS_0x93b2,High +0x1ca7d,CUS_0xb14c,Standard +0x1ca89,CUS_0x8420,High +0x1ca95,CUS_0x1041,Standard +0x1caa1,CUS_0x1c2f,Low +0x1caad,CUS_0x8f70,Standard +0x1cab9,CUS_0x614f,Standard +0x1cac5,CUS_0x1e9c,Standard +0x1cad1,CUS_0xb012,Low +0x1cadd,CUS_0xc62c,Low +0x1cae9,CUS_0x8f65,Standard +0x1caf5,CUS_0x27ae,Low +0x1cb01,CUS_0x4e60,High +0x1cb0d,CUS_0x465c,High +0x1cb19,CUS_0x6ccb,Standard +0x1cb25,CUS_0x5da2,Standard +0x1cb31,CUS_0x638d,Standard +0x1cb3d,CUS_0x777b,Standard +0x1cb49,CUS_0x34fb,Standard +0x1cb55,CUS_0x7e2f,Standard +0x1cb61,CUS_0x3ce1,Standard +0x1cb6d,CUS_0x15f4,Standard +0x1cb79,CUS_0x8bda,Standard +0x1cb85,CUS_0x1cce,High +0x1cb91,CUS_0x6144,Standard +0x1cb9d,CUS_0x7f56,High +0x1cba9,CUS_0x746,Low +0x1cbb5,CUS_0x5a0c,High +0x1cbc1,CUS_0x95b1,Standard +0x1cbcd,CUS_0x3bc6,High +0x1cbd9,CUS_0x2b84,High +0x1cbe5,CUS_0x2b57,High +0x1cbf1,CUS_0x4f01,High +0x1cbfd,CUS_0x4f85,High +0x1cc09,CUS_0x7c84,Standard +0x1cc15,CUS_0xc8c,Standard +0x1cc21,CUS_0x8fc8,Standard +0x1cc2d,CUS_0x279f,High +0x1cc39,CUS_0x786e,Low +0x1cc45,CUS_0x18ea,Low +0x1cc51,CUS_0x365b,High +0x1cc5d,CUS_0x15a7,High +0x1cc69,CUS_0x1912,Standard +0x1cc75,CUS_0x44d2,Low +0x1cc81,CUS_0x7409,Standard +0x1cc8d,CUS_0x37d5,High +0x1cc99,CUS_0x1c34,Low +0x1cca5,CUS_0x8fcd,Standard +0x1ccb1,CUS_0x340b,High +0x1ccbd,CUS_0xa631,Standard +0x1ccc9,CUS_0x566f,Standard +0x1ccd5,CUS_0x51d4,Standard +0x1cce1,CUS_0x205c,Standard +0x1cced,CUS_0x9b0f,Standard +0x1ccf9,CUS_0x7562,High +0x1cd05,CUS_0x1c7d,Standard +0x1cd11,CUS_0xbc49,High +0x1cd1d,CUS_0x4da6,High +0x1cd29,CUS_0x1154,Standard +0x1cd35,CUS_0xbe82,Standard +0x1cd41,CUS_0x123a,Standard +0x1cd4d,CUS_0x738c,Standard +0x1cd59,CUS_0x6010,Standard +0x1cd65,CUS_0x7693,High +0x1cd71,CUS_0xbaeb,Low +0x1cd7d,CUS_0x3a85,Standard +0x1cd89,CUS_0x55da,Standard +0x1cd95,CUS_0x778e,Standard +0x1cda1,CUS_0xa8ce,Standard +0x1cdad,CUS_0x8bc6,High +0x1cdb9,CUS_0x6484,Standard +0x1cdc5,CUS_0x76e2,Standard +0x1cdd1,CUS_0xc3e4,Low +0x1cddd,CUS_0xa68a,High +0x1cde9,CUS_0xb2d3,High +0x1cdf5,CUS_0x9f2f,High +0x1ce01,CUS_0x6e49,High +0x1ce0d,CUS_0xb490,Standard +0x1ce19,CUS_0x5ffc,Standard +0x1ce25,CUS_0x85d5,Standard +0x1ce31,CUS_0x4d1,Standard +0x1ce3d,CUS_0xab9e,Low +0x1ce49,CUS_0x7e61,Standard +0x1ce55,CUS_0x6ddb,High +0x1ce61,CUS_0xa679,Standard +0x1ce6d,CUS_0x3463,Standard +0x1ce79,CUS_0x2296,Low +0x1ce85,CUS_0xc16d,Standard +0x1ce91,CUS_0x2080,Standard +0x1ce9d,CUS_0x5a81,High +0x1cea9,CUS_0x1bbf,Standard +0x1ceb5,CUS_0x9a1c,High +0x1cec1,CUS_0x475f,Standard +0x1cecd,CUS_0xc12b,High +0x1ced9,CUS_0x8a03,Standard +0x1cee5,CUS_0xbb26,Standard +0x1cef1,CUS_0x57f3,Standard +0x1cefd,CUS_0xbf1e,Low +0x1cf09,CUS_0x2824,High +0x1cf15,CUS_0x23b5,High +0x1cf21,CUS_0x8a45,High +0x1cf2d,CUS_0x7a79,Standard +0x1cf39,CUS_0x4eca,Standard +0x1cf45,CUS_0x902b,Low +0x1cf51,CUS_0x430b,Standard +0x1cf5d,CUS_0x1750,High +0x1cf69,CUS_0x76b0,High +0x1cf75,CUS_0x9caf,Low +0x1cf81,CUS_0x648a,High +0x1cf8d,CUS_0xad1d,Standard +0x1cf99,CUS_0xc35c,Standard +0x1cfa5,CUS_0x41fc,Standard +0x1cfb1,CUS_0x7dc6,High +0x1cfbd,CUS_0x753f,Standard +0x1cfc9,CUS_0x5578,Standard +0x1cfd5,CUS_0xa2f4,Standard +0x1cfe1,CUS_0x233e,Standard +0x1cfed,CUS_0x6492,Standard +0x1cff9,CUS_0x1a3a,Standard +0x1d005,CUS_0x9a26,High +0x1d011,CUS_0x18fd,High +0x1d01d,CUS_0x698b,Low +0x1d029,CUS_0xf21,Standard +0x1d035,CUS_0xb481,Standard +0x1d041,CUS_0xb37c,Standard +0x1d04d,CUS_0x61d5,High +0x1d059,CUS_0x3190,Standard +0x1d065,CUS_0x2f04,Low +0x1d071,CUS_0xfd1,Standard +0x1d07d,CUS_0x4fad,Standard +0x1d089,CUS_0x79cb,High +0x1d095,CUS_0x1835,Standard +0x1d0a1,CUS_0x9df7,Standard +0x1d0ad,CUS_0x4a79,Standard +0x1d0b9,CUS_0x16d9,Standard +0x1d0c5,CUS_0x522c,High +0x1d0d1,CUS_0xf50,Standard +0x1d0dd,CUS_0x6398,High +0x1d0e9,CUS_0x62f8,High +0x1d0f5,CUS_0xfae,High +0x1d101,CUS_0xa46,Standard +0x1d10d,CUS_0x82a5,Standard +0x1d119,CUS_0xbb07,Standard +0x1d125,CUS_0x71b6,Standard +0x1d131,CUS_0x411,Standard +0x1d13d,CUS_0x5c3c,Standard +0x1d149,CUS_0x9f23,Standard +0x1d155,CUS_0x178b,Low +0x1d161,CUS_0x6ed0,Low +0x1d16d,CUS_0x6c8b,Standard +0x1d179,CUS_0x691b,Low +0x1d185,CUS_0x3dfc,Standard +0x1d191,CUS_0x34a2,Standard +0x1d19d,CUS_0xaf49,Low +0x1d1a9,CUS_0x27d8,Standard +0x1d1b5,CUS_0x3539,Standard +0x1d1c1,CUS_0xbb04,Standard +0x1d1cd,CUS_0x1ea5,Standard +0x1d1d9,CUS_0xa424,Low +0x1d1e5,CUS_0x6ed8,Standard +0x1d1f1,CUS_0xb8a2,Standard +0x1d1fd,CUS_0x9153,Standard +0x1d209,CUS_0x597c,High +0x1d215,CUS_0xd22,Standard +0x1d221,CUS_0x5a42,High +0x1d22d,CUS_0x58aa,Standard +0x1d239,CUS_0x363d,Standard +0x1d245,CUS_0xf20,High +0x1d251,CUS_0x28de,High +0x1d25d,CUS_0xa607,Low +0x1d269,CUS_0x3482,Standard +0x1d275,CUS_0x8ff4,High +0x1d281,CUS_0x20f3,High +0x1d28d,CUS_0x7a14,Standard +0x1d299,CUS_0xb7d8,Low +0x1d2a5,CUS_0xb969,Standard +0x1d2b1,CUS_0xbace,Standard +0x1d2bd,CUS_0xb85c,High +0x1d2c9,CUS_0x47af,Standard +0x1d2d5,CUS_0xc416,Low +0x1d2e1,CUS_0xcc3,Low +0x1d2ed,CUS_0x3d50,Standard +0x1d2f9,CUS_0x43e7,Standard +0x1d305,CUS_0x761f,High +0x1d311,CUS_0x3468,Standard +0x1d31d,CUS_0x5d35,Standard +0x1d329,CUS_0x41d4,Low +0x1d335,CUS_0x9d73,Standard +0x1d341,CUS_0x6985,High +0x1d34d,CUS_0x63b0,Standard +0x1d359,CUS_0x35e9,Standard +0x1d365,CUS_0x7fa0,Standard +0x1d371,CUS_0x4c36,Standard +0x1d37d,CUS_0xb387,Standard +0x1d389,CUS_0x6619,Standard +0x1d395,CUS_0x958a,Standard +0x1d3a1,CUS_0x30a3,Low +0x1d3ad,CUS_0x7bf0,High +0x1d3b9,CUS_0x801,High +0x1d3c5,CUS_0x5513,Standard +0x1d3d1,CUS_0x60af,Low +0x1d3dd,CUS_0x1453,Standard +0x1d3e9,CUS_0xc428,Standard +0x1d3f5,CUS_0xb035,Low +0x1d401,CUS_0x880,Low +0x1d40d,CUS_0xc38a,Standard +0x1d419,CUS_0xb152,Standard +0x1d425,CUS_0x52e5,Standard +0x1d431,CUS_0xa287,Standard +0x1d43d,CUS_0x84d0,High +0x1d449,CUS_0x29b1,High +0x1d455,CUS_0xa80c,Low +0x1d461,CUS_0x4f28,High +0x1d46d,CUS_0x63b4,Standard +0x1d479,CUS_0x40e5,Low +0x1d485,CUS_0x68d9,Standard +0x1d491,CUS_0x2c1c,Standard +0x1d49d,CUS_0xb033,Standard +0x1d4a9,CUS_0x677f,High +0x1d4b5,CUS_0x7b39,Low +0x1d4c1,CUS_0xbe25,Standard +0x1d4cd,CUS_0x933f,Standard +0x1d4d9,CUS_0xc5f9,Standard +0x1d4e5,CUS_0xa865,Standard +0x1d4f1,CUS_0x3a5b,Standard +0x1d4fd,CUS_0xbe59,Standard +0x1d509,CUS_0x4cef,Standard +0x1d515,CUS_0x2dd6,Low +0x1d521,CUS_0x98b3,Standard +0x1d52d,CUS_0x9189,High +0x1d539,CUS_0xa2ca,Standard +0x1d545,CUS_0xb1f5,Standard +0x1d551,CUS_0x6ba9,Standard +0x1d55d,CUS_0x34e1,High +0x1d569,CUS_0x673b,Standard +0x1d575,CUS_0x6bc3,Standard +0x1d581,CUS_0x4410,High +0x1d58d,CUS_0x6c95,Standard +0x1d599,CUS_0x676b,High +0x1d5a5,CUS_0x927d,Low +0x1d5b1,CUS_0xc586,Standard +0x1d5bd,CUS_0x5d46,Standard +0x1d5c9,CUS_0x4459,Standard +0x1d5d5,CUS_0x5aaa,Standard +0x1d5e1,CUS_0x500d,High +0x1d5ed,CUS_0x6cd1,High +0x1d5f9,CUS_0x8543,Standard +0x1d605,CUS_0xb8b,Standard +0x1d611,CUS_0x3e52,Standard +0x1d61d,CUS_0xadb8,Standard +0x1d629,CUS_0x960e,Standard +0x1d635,CUS_0x3404,Standard +0x1d641,CUS_0x2b15,Standard +0x1d64d,CUS_0xc1f0,Standard +0x1d659,CUS_0xa037,Standard +0x1d665,CUS_0x9b6b,Low +0x1d671,CUS_0x5c31,Standard +0x1d67d,CUS_0x2784,Standard +0x1d689,CUS_0x9102,High +0x1d695,CUS_0xc0c7,Standard +0x1d6a1,CUS_0x2102,Standard +0x1d6ad,CUS_0x5ed4,Low +0x1d6b9,CUS_0x8da9,Standard +0x1d6c5,CUS_0x8d40,Standard +0x1d6d1,CUS_0x3a30,Low +0x1d6dd,CUS_0x4f73,Standard +0x1d6e9,CUS_0x7c76,High +0x1d6f5,CUS_0x4889,High +0x1d701,CUS_0x74c,Standard +0x1d70d,CUS_0x57b2,Standard +0x1d719,CUS_0x9a13,Standard +0x1d725,CUS_0xc3cc,Low +0x1d731,CUS_0xaa7c,High +0x1d73d,CUS_0x741,Standard +0x1d749,CUS_0xa146,Standard +0x1d755,CUS_0x6a14,Standard +0x1d761,CUS_0x1498,High +0x1d76d,CUS_0x32d3,Standard +0x1d779,CUS_0x569d,Standard +0x1d785,CUS_0x68cd,Standard +0x1d791,CUS_0x63fe,Standard +0x1d79d,CUS_0x7c60,Standard +0x1d7a9,CUS_0x3cf1,High +0x1d7b5,CUS_0x91df,Low +0x1d7c1,CUS_0x6ce0,High +0x1d7cd,CUS_0x7d41,Standard +0x1d7d9,CUS_0x58bf,Standard +0x1d7e5,CUS_0x157d,Standard +0x1d7f1,CUS_0xb218,High +0x1d7fd,CUS_0xadf7,Standard +0x1d809,CUS_0x62d,Standard +0x1d815,CUS_0x2dd2,Standard +0x1d821,CUS_0x1cf3,Standard +0x1d82d,CUS_0x2ee4,High +0x1d839,CUS_0xb183,Standard +0x1d845,CUS_0x9da2,High +0x1d851,CUS_0x2f59,Standard +0x1d85d,CUS_0x2f52,Standard +0x1d869,CUS_0x4211,Standard +0x1d875,CUS_0x7a96,Standard +0x1d881,CUS_0xa0a6,Standard +0x1d88d,CUS_0x7b79,Standard +0x1d899,CUS_0xa40b,Low +0x1d8a5,CUS_0xa4c6,Standard +0x1d8b1,CUS_0xaeda,Standard +0x1d8bd,CUS_0x5e06,Standard +0x1d8c9,CUS_0x5254,High +0x1d8d5,CUS_0x2418,Standard +0x1d8e1,CUS_0x24bf,Standard +0x1d8ed,CUS_0xb61c,Standard +0x1d8f9,CUS_0x74e8,Standard +0x1d905,CUS_0x2c60,Low +0x1d911,CUS_0x4ed2,Standard +0x1d91d,CUS_0xb04e,High +0x1d929,CUS_0x9cdb,Standard +0x1d935,CUS_0xa2df,High +0x1d941,CUS_0x2801,High +0x1d94d,CUS_0xbbf7,Standard +0x1d959,CUS_0x6504,High +0x1d965,CUS_0x9334,High +0x1d971,CUS_0x7f86,Standard +0x1d97d,CUS_0x337f,Low +0x1d989,CUS_0x81fe,Standard +0x1d995,CUS_0xad90,Standard +0x1d9a1,CUS_0x5f9a,Standard +0x1d9ad,CUS_0x4d90,Standard +0x1d9b9,CUS_0x99c5,Standard +0x1d9c5,CUS_0x3f63,Standard +0x1d9d1,CUS_0x81c3,Standard +0x1d9dd,CUS_0x2224,Standard +0x1d9e9,CUS_0x9b9,Standard +0x1d9f5,CUS_0xb82,Standard +0x1da01,CUS_0xb788,Standard +0x1da0d,CUS_0x72c1,Standard +0x1da19,CUS_0x27d5,Standard +0x1da25,CUS_0xc3ae,Low +0x1da31,CUS_0x416a,High +0x1da3d,CUS_0x8ddb,High +0x1da49,CUS_0x693b,Standard +0x1da55,CUS_0x9a51,Standard +0x1da61,CUS_0x2238,Low +0x1da6d,CUS_0xb006,Standard +0x1da79,CUS_0xc5a4,High +0x1da85,CUS_0x2714,High +0x1da91,CUS_0x84b8,High +0x1da9d,CUS_0x3ec8,Standard +0x1daa9,CUS_0xb091,High +0x1dab5,CUS_0x6428,Standard +0x1dac1,CUS_0x5ff9,Standard +0x1dacd,CUS_0x9216,Standard +0x1dad9,CUS_0xb00e,Standard +0x1dae5,CUS_0x788a,High +0x1daf1,CUS_0x1f88,Standard +0x1dafd,CUS_0x5386,Standard +0x1db09,CUS_0x1b7e,Standard +0x1db15,CUS_0x2771,High +0x1db21,CUS_0x6da9,Standard +0x1db2d,CUS_0x6d4e,Standard +0x1db39,CUS_0xa897,High +0x1db45,CUS_0x5e70,Standard +0x1db51,CUS_0x9fbc,High +0x1db5d,CUS_0xc049,Low +0x1db69,CUS_0x32ac,Standard +0x1db75,CUS_0x219a,High +0x1db81,CUS_0x87db,Standard +0x1db8d,CUS_0x971f,Standard +0x1db99,CUS_0x316e,High +0x1dba5,CUS_0x3263,Standard +0x1dbb1,CUS_0x511f,Standard +0x1dbbd,CUS_0x60c0,Standard +0x1dbc9,CUS_0x143a,Standard +0x1dbd5,CUS_0x6ec8,Standard +0x1dbe1,CUS_0x8e8a,Standard +0x1dbed,CUS_0x6980,High +0x1dbf9,CUS_0xac18,Standard +0x1dc05,CUS_0x30f0,Low +0x1dc11,CUS_0x27a9,Standard +0x1dc1d,CUS_0x3f6b,High +0x1dc29,CUS_0xb460,High +0x1dc35,CUS_0x8c9e,Standard +0x1dc41,CUS_0x2d1c,Standard +0x1dc4d,CUS_0x2823,Standard +0x1dc59,CUS_0x5ac4,High +0x1dc65,CUS_0x85d,Standard +0x1dc71,CUS_0x4505,Standard +0x1dc7d,CUS_0x9c3a,Standard +0x1dc89,CUS_0xb6d2,High +0x1dc95,CUS_0x6257,High +0x1dca1,CUS_0xb380,High +0x1dcad,CUS_0xb59a,Standard +0x1dcb9,CUS_0x12ef,Standard +0x1dcc5,CUS_0x4d64,Low +0x1dcd1,CUS_0x45ca,Standard +0x1dcdd,CUS_0x3947,Standard +0x1dce9,CUS_0x748e,High +0x1dcf5,CUS_0x9381,High +0x1dd01,CUS_0x7225,Standard +0x1dd0d,CUS_0x793f,High +0x1dd19,CUS_0xb638,Low +0x1dd25,CUS_0x7c6a,Standard +0x1dd31,CUS_0x9f40,Standard +0x1dd3d,CUS_0x8b6c,Standard +0x1dd49,CUS_0x5872,High +0x1dd55,CUS_0x25c4,Low +0x1dd61,CUS_0x3066,Standard +0x1dd6d,CUS_0xa12,High +0x1dd79,CUS_0x1a8d,Standard +0x1dd85,CUS_0x9f77,Standard +0x1dd91,CUS_0xadf1,High +0x1dd9d,CUS_0x4ffd,Standard +0x1dda9,CUS_0x7e50,Low +0x1ddb5,CUS_0x2ea1,Standard +0x1ddc1,CUS_0x925c,Standard +0x1ddcd,CUS_0x5ec,High +0x1ddd9,CUS_0x6b89,High +0x1dde5,CUS_0x817c,High +0x1ddf1,CUS_0x1cd5,Standard +0x1ddfd,CUS_0x5396,Standard +0x1de09,CUS_0x81e4,High +0x1de15,CUS_0x2f97,Standard +0x1de21,CUS_0x9df8,Standard +0x1de2d,CUS_0x1673,Standard +0x1de39,CUS_0x72f3,Low +0x1de45,CUS_0x3f8b,High +0x1de51,CUS_0xc2f5,Low +0x1de5d,CUS_0xae15,Standard +0x1de69,CUS_0x2eff,High +0x1de75,CUS_0x251e,Low +0x1de81,CUS_0xa3ff,Standard +0x1de8d,CUS_0xa95a,High +0x1de99,CUS_0x7cac,High +0x1dea5,CUS_0x77de,Standard +0x1deb1,CUS_0x6714,Low +0x1debd,CUS_0x4b78,Standard +0x1dec9,CUS_0x62cf,Standard +0x1ded5,CUS_0x7cc4,Standard +0x1dee1,CUS_0x1026,Standard +0x1deed,CUS_0x2408,High +0x1def9,CUS_0x8936,High +0x1df05,CUS_0x786,Standard +0x1df11,CUS_0x81c7,High +0x1df1d,CUS_0x58d7,Standard +0x1df29,CUS_0xaca7,High +0x1df35,CUS_0x6a73,Standard +0x1df41,CUS_0x3912,Standard +0x1df4d,CUS_0x9200,High +0x1df59,CUS_0x441e,Standard +0x1df65,CUS_0x6e6a,High +0x1df71,CUS_0x7968,Low +0x1df7d,CUS_0x3cc3,Low +0x1df89,CUS_0x4f6c,High +0x1df95,CUS_0xa110,Standard +0x1dfa1,CUS_0x517c,Low +0x1dfad,CUS_0x2991,High +0x1dfb9,CUS_0xb0f6,Standard +0x1dfc5,CUS_0x59a2,Standard +0x1dfd1,CUS_0x4577,High +0x1dfdd,CUS_0x2267,Standard +0x1dfe9,CUS_0x8acd,Standard +0x1dff5,CUS_0x5a2d,High +0x1e001,CUS_0x850f,Standard +0x1e00d,CUS_0x44b8,Standard +0x1e019,CUS_0x24fc,High +0x1e025,CUS_0x1ba2,Standard +0x1e031,CUS_0x303b,High +0x1e03d,CUS_0x9ccf,Standard +0x1e049,CUS_0x1ba9,High +0x1e055,CUS_0xc5a3,Standard +0x1e061,CUS_0x2fd7,Standard +0x1e06d,CUS_0x9cd3,Standard +0x1e079,CUS_0x5158,Standard +0x1e085,CUS_0x165f,Standard +0x1e091,CUS_0x9819,Standard +0x1e09d,CUS_0x9a42,High +0x1e0a9,CUS_0x1156,Standard +0x1e0b5,CUS_0x956f,Standard +0x1e0c1,CUS_0x52d2,Standard +0x1e0cd,CUS_0xc044,Standard +0x1e0d9,CUS_0x2087,Low +0x1e0e5,CUS_0xa75c,High +0x1e0f1,CUS_0x68af,Standard +0x1e0fd,CUS_0x1f19,Standard +0x1e109,CUS_0x4fa3,Low +0x1e115,CUS_0x58b5,Standard +0x1e121,CUS_0x7fb3,High +0x1e12d,CUS_0x6336,High +0x1e139,CUS_0x60f9,High +0x1e145,CUS_0x7698,High +0x1e151,CUS_0x9c3b,High +0x1e15d,CUS_0xa47c,High +0x1e169,CUS_0x2a69,Low +0x1e175,CUS_0x99e9,Low +0x1e181,CUS_0xbd75,Standard +0x1e18d,CUS_0x4ee1,Standard +0x1e199,CUS_0x30fd,High +0x1e1a5,CUS_0x3352,Low +0x1e1b1,CUS_0xa422,Standard +0x1e1bd,CUS_0x142f,High +0x1e1c9,CUS_0x7e7c,Standard +0x1e1d5,CUS_0x2562,High +0x1e1e1,CUS_0xc34a,Standard +0x1e1ed,CUS_0xbeec,Standard +0x1e1f9,CUS_0x2e82,Standard +0x1e205,CUS_0x4e73,High +0x1e211,CUS_0x1f00,Standard +0x1e21d,CUS_0x6534,Standard +0x1e229,CUS_0xc6ba,High +0x1e235,CUS_0xc2cc,High +0x1e241,CUS_0xbfcb,Standard +0x1e24d,CUS_0xb515,High +0x1e259,CUS_0x1dd3,Standard +0x1e265,CUS_0x92aa,High +0x1e271,CUS_0x7e8a,Standard +0x1e27d,CUS_0x14cf,Standard +0x1e289,CUS_0xaff6,Standard +0x1e295,CUS_0xc03a,Standard +0x1e2a1,CUS_0x6960,Standard +0x1e2ad,CUS_0x688e,Standard +0x1e2b9,CUS_0xa736,Standard +0x1e2c5,CUS_0x13ce,Standard +0x1e2d1,CUS_0x8b8b,High +0x1e2dd,CUS_0x4866,Standard +0x1e2e9,CUS_0xb319,Standard +0x1e2f5,CUS_0x7ae4,Standard +0x1e301,CUS_0x264b,Low +0x1e30d,CUS_0xe51,Standard +0x1e319,CUS_0xb8a8,Standard +0x1e325,CUS_0x6fb4,Standard +0x1e331,CUS_0x9793,High +0x1e33d,CUS_0x4807,High +0x1e349,CUS_0xcea,Standard +0x1e355,CUS_0xb8f7,Low +0x1e361,CUS_0x6821,High +0x1e36d,CUS_0x7ab6,Low +0x1e379,CUS_0x4464,Standard +0x1e385,CUS_0xc2cb,Low +0x1e391,CUS_0xa8e2,Standard +0x1e39d,CUS_0xc2eb,Standard +0x1e3a9,CUS_0x81ce,High +0x1e3b5,CUS_0xf45,High +0x1e3c1,CUS_0x9ea,Standard +0x1e3cd,CUS_0x5161,Standard +0x1e3d9,CUS_0x78f0,Standard +0x1e3e5,CUS_0x44c0,High +0x1e3f1,CUS_0x6057,Standard +0x1e3fd,CUS_0x1463,Standard +0x1e409,CUS_0x4cc2,Standard +0x1e415,CUS_0x9771,High +0x1e421,CUS_0x8568,Standard +0x1e42d,CUS_0x20ff,High +0x1e439,CUS_0x255b,High +0x1e445,CUS_0x2a06,High +0x1e451,CUS_0x8065,High +0x1e45d,CUS_0x8216,High +0x1e469,CUS_0x1250,Standard +0x1e475,CUS_0xbb4e,High +0x1e481,CUS_0xb329,Low +0x1e48d,CUS_0xb0f3,Standard +0x1e499,CUS_0xce1,High +0x1e4a5,CUS_0x992c,Standard +0x1e4b1,CUS_0x67f9,High +0x1e4bd,CUS_0x614d,High +0x1e4c9,CUS_0x5b9d,Standard +0x1e4d5,CUS_0x8b5f,Low +0x1e4e1,CUS_0xb4ee,High +0x1e4ed,CUS_0x8bcc,Low +0x1e4f9,CUS_0x7a68,Standard +0x1e505,CUS_0x9998,High +0x1e511,CUS_0x1204,High +0x1e51d,CUS_0xa823,Standard +0x1e529,CUS_0xb1cc,Standard +0x1e535,CUS_0xf9f,High +0x1e541,CUS_0x8f2d,Standard +0x1e54d,CUS_0x8b44,High +0x1e559,CUS_0x542f,Standard +0x1e565,CUS_0xbc17,High +0x1e571,CUS_0x9365,High +0x1e57d,CUS_0x7efc,Standard +0x1e589,CUS_0x26da,Low +0x1e595,CUS_0x3e38,Standard +0x1e5a1,CUS_0x987b,High +0x1e5ad,CUS_0x5572,Standard +0x1e5b9,CUS_0x4e6a,Standard +0x1e5c5,CUS_0x3f68,Low +0x1e5d1,CUS_0x82c1,Standard +0x1e5dd,CUS_0x94e3,Standard +0x1e5e9,CUS_0x73b1,High +0x1e5f5,CUS_0x9d3e,High +0x1e601,CUS_0x4bda,Low +0x1e60d,CUS_0x74b2,Standard +0x1e619,CUS_0xbac3,Low +0x1e625,CUS_0xa7ae,Low +0x1e631,CUS_0x5f61,Standard +0x1e63d,CUS_0x14ec,High +0x1e649,CUS_0xb648,Standard +0x1e655,CUS_0x717d,High +0x1e661,CUS_0x25e0,Standard +0x1e66d,CUS_0x3f87,High +0x1e679,CUS_0x79cf,Standard +0x1e685,CUS_0x6f09,High +0x1e691,CUS_0x36fd,High +0x1e69d,CUS_0xc12e,Standard +0x1e6a9,CUS_0x51e9,Standard +0x1e6b5,CUS_0x97f8,Low +0x1e6c1,CUS_0x99b8,Standard +0x1e6cd,CUS_0x9ec2,Low +0x1e6d9,CUS_0x7925,Standard +0x1e6e5,CUS_0xadf5,Standard +0x1e6f1,CUS_0xad13,Standard +0x1e6fd,CUS_0x566d,High +0x1e709,CUS_0x6e2b,Standard +0x1e715,CUS_0xa6cb,High +0x1e721,CUS_0x2b2b,Standard +0x1e72d,CUS_0x3bd6,Standard +0x1e739,CUS_0x1941,High +0x1e745,CUS_0x8cfe,Standard +0x1e751,CUS_0xe16,Standard +0x1e75d,CUS_0xa261,Standard +0x1e769,CUS_0x9dd5,Standard +0x1e775,CUS_0x3716,Standard +0x1e781,CUS_0x5f59,Low +0x1e78d,CUS_0x9803,High +0x1e799,CUS_0x5342,High +0x1e7a5,CUS_0xc70b,Standard +0x1e7b1,CUS_0x9d4c,Standard +0x1e7bd,CUS_0x6df7,Standard +0x1e7c9,CUS_0x35f3,Standard +0x1e7d5,CUS_0x5269,High +0x1e7e1,CUS_0xbff1,Low +0x1e7ed,CUS_0x5d5c,High +0x1e7f9,CUS_0xbb1b,Standard +0x1e805,CUS_0xb76e,Standard +0x1e811,CUS_0x1f91,Standard +0x1e81d,CUS_0x13d5,Low +0x1e829,CUS_0xa46f,Standard +0x1e835,CUS_0xad12,High +0x1e841,CUS_0x4f32,Low +0x1e84d,CUS_0x65eb,Standard +0x1e859,CUS_0x3377,Standard +0x1e865,CUS_0x7594,Standard +0x1e871,CUS_0x1075,High +0x1e87d,CUS_0x9686,Standard +0x1e889,CUS_0x9066,Low +0x1e895,CUS_0x5d29,High +0x1e8a1,CUS_0xaa0b,Standard +0x1e8ad,CUS_0x6b76,Standard +0x1e8b9,CUS_0x80d,Standard +0x1e8c5,CUS_0xb6b7,Standard +0x1e8d1,CUS_0x847e,High +0x1e8dd,CUS_0x2311,Standard +0x1e8e9,CUS_0x6eca,High +0x1e8f5,CUS_0x2c51,Standard +0x1e901,CUS_0x1f61,High +0x1e90d,CUS_0x4e71,Low +0x1e919,CUS_0x4c4f,Standard +0x1e925,CUS_0x620b,Standard +0x1e931,CUS_0xc1d9,Standard +0x1e93d,CUS_0xdd8,Low +0x1e949,CUS_0xba68,High +0x1e955,CUS_0xa9f,Standard +0x1e961,CUS_0x4815,Standard +0x1e96d,CUS_0xc301,Low +0x1e979,CUS_0x5e16,Low +0x1e985,CUS_0x54a4,Standard +0x1e991,CUS_0x87c1,Standard +0x1e99d,CUS_0x9891,Low +0x1e9a9,CUS_0x1f04,Standard +0x1e9b5,CUS_0x6207,Low +0x1e9c1,CUS_0x199a,Low +0x1e9cd,CUS_0x95aa,Standard +0x1e9d9,CUS_0x950,Standard +0x1e9e5,CUS_0x1948,High +0x1e9f1,CUS_0x25a5,Low +0x1e9fd,CUS_0x41e3,Standard +0x1ea09,CUS_0x8099,Standard +0x1ea15,CUS_0x7580,High +0x1ea21,CUS_0x5035,Low +0x1ea2d,CUS_0x999f,Low +0x1ea39,CUS_0x9bf9,Low +0x1ea45,CUS_0x4931,High +0x1ea51,CUS_0xc205,Standard +0x1ea5d,CUS_0x790d,Low +0x1ea69,CUS_0x71bf,Standard +0x1ea75,CUS_0x866d,Standard +0x1ea81,CUS_0xb6d0,Standard +0x1ea8d,CUS_0x27ad,Standard +0x1ea99,CUS_0x7168,Standard +0x1eaa5,CUS_0xae4f,High +0x1eab1,CUS_0x900,Standard +0x1eabd,CUS_0x7753,Standard +0x1eac9,CUS_0x9df0,Low +0x1ead5,CUS_0x7d5e,Standard +0x1eae1,CUS_0x1d58,Standard +0x1eaed,CUS_0x7d4b,Standard +0x1eaf9,CUS_0x4032,High +0x1eb05,CUS_0x131f,High +0x1eb11,CUS_0x2671,Standard +0x1eb1d,CUS_0x5d09,Standard +0x1eb29,CUS_0x4cd8,Standard +0x1eb35,CUS_0xbd72,Standard +0x1eb41,CUS_0x5d1,Standard +0x1eb4d,CUS_0xa801,Standard +0x1eb59,CUS_0x39bf,High +0x1eb65,CUS_0x25cc,Low +0x1eb71,CUS_0x1057,Standard +0x1eb7d,CUS_0xbe00,Low +0x1eb89,CUS_0x542c,Standard +0x1eb95,CUS_0xa0ff,High +0x1eba1,CUS_0x92a3,Low +0x1ebad,CUS_0x6578,High +0x1ebb9,CUS_0x2ba9,Standard +0x1ebc5,CUS_0x9adc,Standard +0x1ebd1,CUS_0xc331,High +0x1ebdd,CUS_0x8716,High +0x1ebe9,CUS_0x6be3,Low +0x1ebf5,CUS_0x8bf3,Standard +0x1ec01,CUS_0x9368,Standard +0x1ec0d,CUS_0x9737,Standard +0x1ec19,CUS_0x149e,Standard +0x1ec25,CUS_0x8a8b,Standard +0x1ec31,CUS_0x2a5c,Low +0x1ec3d,CUS_0x9ff3,High +0x1ec49,CUS_0x2bcb,Standard +0x1ec55,CUS_0x79ee,Low +0x1ec61,CUS_0xef7,Standard +0x1ec6d,CUS_0xc599,Standard +0x1ec79,CUS_0x40dd,High +0x1ec85,CUS_0xc21e,Low +0x1ec91,CUS_0xa1d9,High +0x1ec9d,CUS_0xac1a,Standard +0x1eca9,CUS_0x7baa,Standard +0x1ecb5,CUS_0x38e1,Standard +0x1ecc1,CUS_0x5217,Low +0x1eccd,CUS_0x447f,High +0x1ecd9,CUS_0x386b,Standard +0x1ece5,CUS_0x8c11,Standard +0x1ecf1,CUS_0xac4f,Standard +0x1ecfd,CUS_0x59eb,High +0x1ed09,CUS_0x61ab,Standard +0x1ed15,CUS_0x77a2,Standard +0x1ed21,CUS_0x88cb,High +0x1ed2d,CUS_0x9b58,High +0x1ed39,CUS_0xa479,Standard +0x1ed45,CUS_0x4c75,Standard +0x1ed51,CUS_0x7900,High +0x1ed5d,CUS_0x535b,Low +0x1ed69,CUS_0xaf88,Standard +0x1ed75,CUS_0x4a93,Standard +0x1ed81,CUS_0x79a9,High +0x1ed8d,CUS_0xb959,Low +0x1ed99,CUS_0x71fa,High +0x1eda5,CUS_0x9435,Standard +0x1edb1,CUS_0xc5f6,Standard +0x1edbd,CUS_0x5597,Standard +0x1edc9,CUS_0xa729,High +0x1edd5,CUS_0x8af4,High +0x1ede1,CUS_0x3a38,Standard +0x1eded,CUS_0x7cf,High +0x1edf9,CUS_0x298f,Low +0x1ee05,CUS_0x85a0,Low +0x1ee11,CUS_0x5554,High +0x1ee1d,CUS_0x3a99,Low +0x1ee29,CUS_0x8f02,Standard +0x1ee35,CUS_0x5cc0,High +0x1ee41,CUS_0x869,Low +0x1ee4d,CUS_0xbd54,Standard +0x1ee59,CUS_0x305e,Low +0x1ee65,CUS_0x6e06,Standard +0x1ee71,CUS_0xc718,Standard +0x1ee7d,CUS_0xa8e1,Standard +0x1ee89,CUS_0xecc,High +0x1ee95,CUS_0x57ef,Low +0x1eea1,CUS_0xc636,Low +0x1eead,CUS_0x9e26,High +0x1eeb9,CUS_0xc0d7,High +0x1eec5,CUS_0x8380,High +0x1eed1,CUS_0x6df3,Standard +0x1eedd,CUS_0x7694,High +0x1eee9,CUS_0x8b4f,Low +0x1eef5,CUS_0x64e5,Standard +0x1ef01,CUS_0xc319,High +0x1ef0d,CUS_0x7879,Low +0x1ef19,CUS_0x8bb3,Standard +0x1ef25,CUS_0x5a0f,Standard +0x1ef31,CUS_0x34d6,Low +0x1ef3d,CUS_0x41e7,Standard +0x1ef49,CUS_0xbb93,Low +0x1ef55,CUS_0x4a9c,Low +0x1ef61,CUS_0x81bb,Standard +0x1ef6d,CUS_0x396d,Standard +0x1ef79,CUS_0x8cc1,High +0x1ef85,CUS_0xb2a4,Low +0x1ef91,CUS_0x8442,Standard +0x1ef9d,CUS_0x7233,Standard +0x1efa9,CUS_0xc065,Low +0x1efb5,CUS_0x5909,Standard +0x1efc1,CUS_0x48ab,Low +0x1efcd,CUS_0x1dd4,Standard +0x1efd9,CUS_0x26ea,Standard +0x1efe5,CUS_0x612e,Standard +0x1eff1,CUS_0x4462,High +0x1effd,CUS_0x354b,Standard +0x1f009,CUS_0x527c,Low +0x1f015,CUS_0xab80,Low +0x1f021,CUS_0x1ed8,High +0x1f02d,CUS_0xaba3,Standard +0x1f039,CUS_0x7741,High +0x1f045,CUS_0x77b5,Standard +0x1f051,CUS_0xb031,Standard +0x1f05d,CUS_0xa04c,High +0x1f069,CUS_0x6a0b,High +0x1f075,CUS_0x7bb3,Standard +0x1f081,CUS_0x324b,High +0x1f08d,CUS_0x9237,Low +0x1f099,CUS_0x29e1,High +0x1f0a5,CUS_0x8fa,Standard +0x1f0b1,CUS_0xc6cc,High +0x1f0bd,CUS_0x9f8e,High +0x1f0c9,CUS_0xb5af,Low +0x1f0d5,CUS_0x302d,High +0x1f0e1,CUS_0x1d13,Standard +0x1f0ed,CUS_0x3b06,Low +0x1f0f9,CUS_0x9d38,Standard +0x1f105,CUS_0x63d4,Standard +0x1f111,CUS_0xa910,Standard +0x1f11d,CUS_0x7ba0,Low +0x1f129,CUS_0x8536,Low +0x1f135,CUS_0xfe3,Standard +0x1f141,CUS_0xb75b,High +0x1f14d,CUS_0xadcd,High +0x1f159,CUS_0x7767,High +0x1f165,CUS_0x990,High +0x1f171,CUS_0x5cc5,Standard +0x1f17d,CUS_0x9522,Standard +0x1f189,CUS_0xc18b,Standard +0x1f195,CUS_0x1f4b,Standard +0x1f1a1,CUS_0x72bc,Standard +0x1f1ad,CUS_0x4e5c,Low +0x1f1b9,CUS_0xb38a,Low +0x1f1c5,CUS_0xc662,Standard +0x1f1d1,CUS_0x915a,Standard +0x1f1dd,CUS_0x804b,Low +0x1f1e9,CUS_0x2bba,Standard +0x1f1f5,CUS_0x795b,Standard +0x1f201,CUS_0x790a,Standard +0x1f20d,CUS_0x2579,Standard +0x1f219,CUS_0x86fa,Standard +0x1f225,CUS_0x88f4,Standard +0x1f231,CUS_0xb685,High +0x1f23d,CUS_0xbca3,Standard +0x1f249,CUS_0x691a,Standard +0x1f255,CUS_0x87f9,High +0x1f261,CUS_0xbed,Low +0x1f26d,CUS_0x36ad,High +0x1f279,CUS_0xaf0a,Standard +0x1f285,CUS_0x83d7,Low +0x1f291,CUS_0x320d,Standard +0x1f29d,CUS_0x9e18,Standard +0x1f2a9,CUS_0x4029,High +0x1f2b5,CUS_0x99a,High +0x1f2c1,CUS_0x90f8,Low +0x1f2cd,CUS_0xa5d1,Standard +0x1f2d9,CUS_0x2390,Standard +0x1f2e5,CUS_0x4bc0,Standard +0x1f2f1,CUS_0x21ac,Standard +0x1f2fd,CUS_0x2d14,Standard +0x1f309,CUS_0x29bf,Standard +0x1f315,CUS_0xb0c4,High +0x1f321,CUS_0x7dd,Standard +0x1f32d,CUS_0x8752,Standard +0x1f339,CUS_0x5563,Standard +0x1f345,CUS_0x3340,High +0x1f351,CUS_0x6630,Standard +0x1f35d,CUS_0x172d,High +0x1f369,CUS_0x843e,Low +0x1f375,CUS_0x228c,Standard +0x1f381,CUS_0x6a9a,High +0x1f38d,CUS_0x415,Standard +0x1f399,CUS_0x6cfa,Standard +0x1f3a5,CUS_0xba92,Standard +0x1f3b1,CUS_0x90ef,Low +0x1f3bd,CUS_0x6736,Low +0x1f3c9,CUS_0x84c9,Standard +0x1f3d5,CUS_0x6a11,Standard +0x1f3e1,CUS_0xbcc8,Standard +0x1f3ed,CUS_0x17e8,Low +0x1f3f9,CUS_0x1ec9,High +0x1f405,CUS_0x5721,Standard +0x1f411,CUS_0xacf7,Low +0x1f41d,CUS_0xa5ee,Low +0x1f429,CUS_0x5a83,Low +0x1f435,CUS_0x2443,High +0x1f441,CUS_0xbb6c,High +0x1f44d,CUS_0x9a2c,High +0x1f459,CUS_0xab65,Standard +0x1f465,CUS_0x716,Standard +0x1f471,CUS_0x708f,High +0x1f47d,CUS_0x97d1,High +0x1f489,CUS_0x859a,Low +0x1f495,CUS_0x9a18,Low +0x1f4a1,CUS_0x9730,High +0x1f4ad,CUS_0x30df,Low +0x1f4b9,CUS_0xb024,Standard +0x1f4c5,CUS_0xbe5c,High +0x1f4d1,CUS_0x9c49,Standard +0x1f4dd,CUS_0xb675,Standard +0x1f4e9,CUS_0xb2a1,Standard +0x1f4f5,CUS_0x61a7,High +0x1f501,CUS_0xb745,Low +0x1f50d,CUS_0x1d64,Standard +0x1f519,CUS_0x803c,Standard +0x1f525,CUS_0x3ce7,High +0x1f531,CUS_0x6951,Standard +0x1f53d,CUS_0xc4f,Standard +0x1f549,CUS_0x8a36,High +0x1f555,CUS_0x54b,High +0x1f561,CUS_0x2038,Low +0x1f56d,CUS_0x58ef,Standard +0x1f579,CUS_0xbebc,Standard +0x1f585,CUS_0xaf6f,Standard +0x1f591,CUS_0x8916,Standard +0x1f59d,CUS_0x6159,Standard +0x1f5a9,CUS_0xbe0a,Low +0x1f5b5,CUS_0xafeb,Standard +0x1f5c1,CUS_0x958f,Standard +0x1f5cd,CUS_0x5dd0,Low +0x1f5d9,CUS_0x24e8,High +0x1f5e5,CUS_0x6081,Low +0x1f5f1,CUS_0x556e,Standard +0x1f5fd,CUS_0x6eee,Low +0x1f609,CUS_0xa791,Low +0x1f615,CUS_0xd78,Low +0x1f621,CUS_0x2b58,Standard +0x1f62d,CUS_0x4829,Low +0x1f639,CUS_0xbb82,Standard +0x1f645,CUS_0xb517,Low +0x1f651,CUS_0x929a,Low +0x1f65d,CUS_0x8e30,Standard +0x1f669,CUS_0x7cdc,Low +0x1f675,CUS_0xb982,Low +0x1f681,CUS_0x7080,Standard +0x1f68d,CUS_0x744f,Standard +0x1f699,CUS_0x7899,High +0x1f6a5,CUS_0x99d4,High +0x1f6b1,CUS_0xb1cd,Standard +0x1f6bd,CUS_0x4a05,Standard +0x1f6c9,CUS_0x893f,Standard +0x1f6d5,CUS_0x9428,High +0x1f6e1,CUS_0x1018,High +0x1f6ed,CUS_0x29d5,Low +0x1f6f9,CUS_0x2208,Standard +0x1f705,CUS_0x69a8,Standard +0x1f711,CUS_0x8e94,Low +0x1f71d,CUS_0x824c,Standard +0x1f729,CUS_0xadc4,Standard +0x1f735,CUS_0x3060,Standard +0x1f741,CUS_0xb915,High +0x1f74d,CUS_0x8d2e,Standard +0x1f759,CUS_0x22ac,Standard +0x1f765,CUS_0x39a0,High +0x1f771,CUS_0x5ebc,Standard +0x1f77d,CUS_0x2aed,Standard +0x1f789,CUS_0xc063,Standard +0x1f795,CUS_0x5e6a,Low +0x1f7a1,CUS_0x9f20,Low +0x1f7ad,CUS_0x922,Standard +0x1f7b9,CUS_0x9937,High +0x1f7c5,CUS_0x5929,Standard +0x1f7d1,CUS_0xb518,High +0x1f7dd,CUS_0xbc0c,Standard +0x1f7e9,CUS_0x446c,High +0x1f7f5,CUS_0xaa81,Low +0x1f801,CUS_0x7411,Standard +0x1f80d,CUS_0x7b9d,High +0x1f819,CUS_0x50fe,Standard +0x1f825,CUS_0xa009,Standard +0x1f831,CUS_0x9680,Standard +0x1f83d,CUS_0xc491,High +0x1f849,CUS_0xb646,High +0x1f855,CUS_0x4bf4,Low +0x1f861,CUS_0xa4fd,Standard +0x1f86d,CUS_0x997,Standard +0x1f879,CUS_0xbe70,High +0x1f885,CUS_0x91ca,Standard +0x1f891,CUS_0xb32a,High +0x1f89d,CUS_0x41c9,Low +0x1f8a9,CUS_0x6993,Standard +0x1f8b5,CUS_0x9230,Standard +0x1f8c1,CUS_0x93e,Low +0x1f8cd,CUS_0xc56c,Standard +0x1f8d9,CUS_0x70a0,High +0x1f8e5,CUS_0x119e,Standard +0x1f8f1,CUS_0x7b52,High +0x1f8fd,CUS_0x85bb,Standard +0x1f909,CUS_0x3091,Standard +0x1f915,CUS_0x5e99,Standard +0x1f921,CUS_0x74d2,High +0x1f92d,CUS_0x74a6,Standard +0x1f939,CUS_0x2a79,Standard +0x1f945,CUS_0xb6e3,Standard +0x1f951,CUS_0x4696,Standard +0x1f95d,CUS_0x6ad0,High +0x1f969,CUS_0x747a,Standard +0x1f975,CUS_0x5376,Standard +0x1f981,CUS_0x351d,High +0x1f98d,CUS_0x12cc,High +0x1f999,CUS_0x9664,High +0x1f9a5,CUS_0x8e89,Low +0x1f9b1,CUS_0xafa8,Standard +0x1f9bd,CUS_0x2665,Standard +0x1f9c9,CUS_0x84d,Standard +0x1f9d5,CUS_0x5f2f,Standard +0x1f9e1,CUS_0x64c9,Low +0x1f9ed,CUS_0x18ca,Standard +0x1f9f9,CUS_0x705d,Low +0x1fa05,CUS_0x80fd,High +0x1fa11,CUS_0x752b,Standard +0x1fa1d,CUS_0x8c2c,Low +0x1fa29,CUS_0x3439,Low +0x1fa35,CUS_0x8fb8,High +0x1fa41,CUS_0x9e56,Low +0x1fa4d,CUS_0x3595,Low +0x1fa59,CUS_0x4630,Standard +0x1fa65,CUS_0x1bf1,Standard +0x1fa71,CUS_0xacab,Standard +0x1fa7d,CUS_0x86ab,Standard +0x1fa89,CUS_0xa509,Standard +0x1fa95,CUS_0x6acd,High +0x1faa1,CUS_0x687f,High +0x1faad,CUS_0x640a,High +0x1fab9,CUS_0xc140,Standard +0x1fac5,CUS_0x2ce6,Standard +0x1fad1,CUS_0x5984,High +0x1fadd,CUS_0x3e09,High +0x1fae9,CUS_0x3f62,High +0x1faf5,CUS_0x7fe2,Standard +0x1fb01,CUS_0x7f2c,Standard +0x1fb0d,CUS_0x9cb8,Standard +0x1fb19,CUS_0x20bf,Low +0x1fb25,CUS_0x6bad,Standard +0x1fb31,CUS_0xa414,Low +0x1fb3d,CUS_0x4bdc,Low +0x1fb49,CUS_0x15c4,Low +0x1fb55,CUS_0x471f,High +0x1fb61,CUS_0xc288,Standard +0x1fb6d,CUS_0x4f34,High +0x1fb79,CUS_0x8327,Standard +0x1fb85,CUS_0x1c1f,High +0x1fb91,CUS_0x82a3,High +0x1fb9d,CUS_0x2ac8,Standard +0x1fba9,CUS_0xc07f,Standard +0x1fbb5,CUS_0x2e20,High +0x1fbc1,CUS_0xc51c,Standard +0x1fbcd,CUS_0x9fd0,Low +0x1fbd9,CUS_0x41bf,High +0x1fbe5,CUS_0x5bce,Low +0x1fbf1,CUS_0x3bbf,Standard +0x1fbfd,CUS_0x7651,High +0x1fc09,CUS_0x259d,Low +0x1fc15,CUS_0x3e10,High +0x1fc21,CUS_0x43a6,Low +0x1fc2d,CUS_0x112e,Standard +0x1fc39,CUS_0x867f,High +0x1fc45,CUS_0x91ed,Standard +0x1fc51,CUS_0x6a8f,Low +0x1fc5d,CUS_0x6735,Standard +0x1fc69,CUS_0x73d,Standard +0x1fc75,CUS_0x6cc3,High +0x1fc81,CUS_0x5cde,Standard +0x1fc8d,CUS_0xa30f,High +0x1fc99,CUS_0xaa0c,Low +0x1fca5,CUS_0xa3d5,High +0x1fcb1,CUS_0x6400,Standard +0x1fcbd,CUS_0x5abc,Standard +0x1fcc9,CUS_0x4132,High +0x1fcd5,CUS_0x5240,High +0x1fce1,CUS_0x658f,Standard +0x1fced,CUS_0x200a,Standard +0x1fcf9,CUS_0xd61,Standard +0x1fd05,CUS_0xaa8e,High +0x1fd11,CUS_0x2eb0,Standard +0x1fd1d,CUS_0xb8e,High +0x1fd29,CUS_0xb62c,Standard +0x1fd35,CUS_0x9dc6,Standard +0x1fd41,CUS_0x1d79,Low +0x1fd4d,CUS_0x8188,Standard +0x1fd59,CUS_0xfbd,High +0x1fd65,CUS_0xb73,High +0x1fd71,CUS_0x4916,Standard +0x1fd7d,CUS_0x1de3,High +0x1fd89,CUS_0x8d3f,Standard +0x1fd95,CUS_0x3811,Standard +0x1fda1,CUS_0x26a1,Standard +0x1fdad,CUS_0x15ec,Low +0x1fdb9,CUS_0x6322,Standard +0x1fdc5,CUS_0x14d0,Standard +0x1fdd1,CUS_0x2f7e,High +0x1fddd,CUS_0x13fb,Standard +0x1fde9,CUS_0x9e9b,Standard +0x1fdf5,CUS_0x374c,High +0x1fe01,CUS_0x7a4a,Standard +0x1fe0d,CUS_0x5b64,Standard +0x1fe19,CUS_0x2a47,Standard +0x1fe25,CUS_0xd97,Standard +0x1fe31,CUS_0x3cfc,High +0x1fe3d,CUS_0x56a5,Standard +0x1fe49,CUS_0xae89,Standard +0x1fe55,CUS_0x436d,Standard +0x1fe61,CUS_0xb5a,Standard +0x1fe6d,CUS_0x75f,Standard +0x1fe79,CUS_0xcf8,High +0x1fe85,CUS_0x4b5d,Low +0x1fe91,CUS_0x1a85,High +0x1fe9d,CUS_0x8533,Standard +0x1fea9,CUS_0x97ec,High +0x1feb5,CUS_0xaaff,Standard +0x1fec1,CUS_0xfdf,Standard +0x1fecd,CUS_0x2306,Standard +0x1fed9,CUS_0x4cf6,Low +0x1fee5,CUS_0x30de,Standard +0x1fef1,CUS_0x864c,Low +0x1fefd,CUS_0x2526,Standard +0x1ff09,CUS_0xaff2,Standard +0x1ff15,CUS_0x8f3f,High +0x1ff21,CUS_0xaef2,High +0x1ff2d,CUS_0x9515,High +0x1ff39,CUS_0x9d10,Low +0x1ff45,CUS_0xa439,Standard +0x1ff51,CUS_0x5edc,Standard +0x1ff5d,CUS_0x9b3f,High +0x1ff69,CUS_0x4e42,Low +0x1ff75,CUS_0xb426,High +0x1ff81,CUS_0x970b,Standard +0x1ff8d,CUS_0x2dc0,High +0x1ff99,CUS_0x3f35,Standard +0x1ffa5,CUS_0x86ed,Standard +0x1ffb1,CUS_0x4187,High +0x1ffbd,CUS_0xc1b3,Standard +0x1ffc9,CUS_0x8802,Standard +0x1ffd5,CUS_0xae6c,Standard +0x1ffe1,CUS_0x4b12,Standard +0x1ffed,CUS_0x36d4,Low +0x1fff9,CUS_0xc11f,Standard +0x20005,CUS_0x649e,Standard +0x20011,CUS_0x80dd,Standard +0x2001d,CUS_0x8c6f,Standard +0x20029,CUS_0xacfc,Standard +0x20035,CUS_0x20d0,High +0x20041,CUS_0x144c,Low +0x2004d,CUS_0x3fc2,Standard +0x20059,CUS_0xa39,Standard +0x20065,CUS_0x86e7,High +0x20071,CUS_0x5eda,Low +0x2007d,CUS_0xae96,Standard +0x20089,CUS_0x7dea,Standard +0x20095,CUS_0x9a3d,Low +0x200a1,CUS_0x1ccf,High +0x200ad,CUS_0x81e9,Standard +0x200b9,CUS_0x1a16,Standard +0x200c5,CUS_0x5c66,Low +0x200d1,CUS_0x7f40,Low +0x200dd,CUS_0x331a,High +0x200e9,CUS_0xb5c0,Standard +0x200f5,CUS_0xb4c9,Standard +0x20101,CUS_0x2a85,High +0x2010d,CUS_0x9070,Standard +0x20119,CUS_0x5b9c,Low +0x20125,CUS_0x6611,Standard +0x20131,CUS_0xb367,Standard +0x2013d,CUS_0x5c09,Standard +0x20149,CUS_0x39d4,High +0x20155,CUS_0x8141,High +0x20161,CUS_0xa4ac,Low +0x2016d,CUS_0x657f,Standard +0x20179,CUS_0x5d0b,High +0x20185,CUS_0x3489,Standard +0x20191,CUS_0x432a,Standard +0x2019d,CUS_0x4ad7,High +0x201a9,CUS_0x45c0,Low +0x201b5,CUS_0x4b91,High +0x201c1,CUS_0x460d,Low +0x201cd,CUS_0x86a7,Standard +0x201d9,CUS_0x4d12,Low +0x201e5,CUS_0x43d,Standard +0x201f1,CUS_0x6620,High +0x201fd,CUS_0x4d94,High +0x20209,CUS_0x6cdd,Low +0x20215,CUS_0xb5a8,High +0x20221,CUS_0xaea7,High +0x2022d,CUS_0xb8a7,Standard +0x20239,CUS_0xb38f,Low +0x20245,CUS_0xac7d,Standard +0x20251,CUS_0xbf38,Low +0x2025d,CUS_0x9d36,Standard +0x20269,CUS_0x344e,Standard +0x20275,CUS_0x70dc,High +0x20281,CUS_0x2a25,Standard +0x2028d,CUS_0x6f1b,Standard +0x20299,CUS_0x86dd,High +0x202a5,CUS_0x6975,High +0x202b1,CUS_0x828f,High +0x202bd,CUS_0x4d01,High +0x202c9,CUS_0x4d7a,High +0x202d5,CUS_0x3fcd,Standard +0x202e1,CUS_0x7b8c,Standard +0x202ed,CUS_0x3fc3,Standard +0x202f9,CUS_0xa78f,Standard +0x20305,CUS_0x305c,Standard +0x20311,CUS_0x21c8,Standard +0x2031d,CUS_0x7c71,Low +0x20329,CUS_0xa40e,Standard +0x20335,CUS_0x5654,High +0x20341,CUS_0x6f4a,Standard +0x2034d,CUS_0x58a3,Standard +0x20359,CUS_0x6728,Standard +0x20365,CUS_0x9d60,High +0x20371,CUS_0x2717,High +0x2037d,CUS_0xee1,High +0x20389,CUS_0x4e3b,High +0x20395,CUS_0x56bb,High +0x203a1,CUS_0x1def,Standard +0x203ad,CUS_0x29a3,Standard +0x203b9,CUS_0x7e5b,Standard +0x203c5,CUS_0x1edc,Standard +0x203d1,CUS_0x5082,Standard +0x203dd,CUS_0x2516,Low +0x203e9,CUS_0x46d2,High +0x203f5,CUS_0x2c48,Standard +0x20401,CUS_0xb2a9,High +0x2040d,CUS_0xa488,Standard +0x20419,CUS_0x36e1,Standard +0x20425,CUS_0x3d63,Standard +0x20431,CUS_0x91c8,Standard +0x2043d,CUS_0x7351,Standard +0x20449,CUS_0x7e6f,Standard +0x20455,CUS_0x3abe,Standard +0x20461,CUS_0x2da9,Standard +0x2046d,CUS_0x717a,Low +0x20479,CUS_0x9e31,Standard +0x20485,CUS_0x85f4,Standard +0x20491,CUS_0x1098,Standard +0x2049d,CUS_0x93ba,Standard +0x204a9,CUS_0x42e4,High +0x204b5,CUS_0xb4b3,Standard +0x204c1,CUS_0xac33,Standard +0x204cd,CUS_0xb96c,Standard +0x204d9,CUS_0x65a0,High +0x204e5,CUS_0x1c59,Low +0x204f1,CUS_0x80b8,High +0x204fd,CUS_0x7dd8,High +0x20509,CUS_0xbb0c,Standard +0x20515,CUS_0x9442,Standard +0x20521,CUS_0x7483,Low +0x2052d,CUS_0x9bb3,Standard +0x20539,CUS_0xaff7,Low +0x20545,CUS_0x9893,Standard +0x20551,CUS_0x4e95,Standard +0x2055d,CUS_0x3e67,Standard +0x20569,CUS_0x758e,Standard +0x20575,CUS_0x471c,Standard +0x20581,CUS_0x856b,Standard +0x2058d,CUS_0x2c04,Standard +0x20599,CUS_0x288b,Low +0x205a5,CUS_0x3ad4,Low +0x205b1,CUS_0x9fdc,Low +0x205bd,CUS_0x4182,Standard +0x205c9,CUS_0x83ea,Standard +0x205d5,CUS_0xb614,Standard +0x205e1,CUS_0x4ee6,High +0x205ed,CUS_0x9d0a,Standard +0x205f9,CUS_0x28ef,High +0x20605,CUS_0x5f7e,Standard +0x20611,CUS_0x89bd,High +0x2061d,CUS_0xa781,Standard +0x20629,CUS_0x2413,Standard +0x20635,CUS_0x4f15,Standard +0x20641,CUS_0x7cae,Standard +0x2064d,CUS_0x4c6b,Standard +0x20659,CUS_0xa014,Low +0x20665,CUS_0x12e7,High +0x20671,CUS_0x8a73,Low +0x2067d,CUS_0x4e5e,Standard +0x20689,CUS_0x1443,Standard +0x20695,CUS_0x658e,High +0x206a1,CUS_0xb627,Standard +0x206ad,CUS_0x5f9,High +0x206b9,CUS_0x6549,Low +0x206c5,CUS_0x7a21,High +0x206d1,CUS_0xb424,Standard +0x206dd,CUS_0x3bfd,Standard +0x206e9,CUS_0x1447,Standard +0x206f5,CUS_0xa579,Standard +0x20701,CUS_0x2d03,Low +0x2070d,CUS_0x5148,Standard +0x20719,CUS_0x83bd,High +0x20725,CUS_0x533c,Standard +0x20731,CUS_0xa5ba,High +0x2073d,CUS_0x18fa,Low +0x20749,CUS_0x9c71,Standard +0x20755,CUS_0x9f3,Low +0x20761,CUS_0xa4db,High +0x2076d,CUS_0x6bf5,Low +0x20779,CUS_0x7202,High +0x20785,CUS_0x1c71,High +0x20791,CUS_0xac83,High +0x2079d,CUS_0x9509,High +0x207a9,CUS_0x707d,Standard +0x207b5,CUS_0x1abe,High +0x207c1,CUS_0x21a1,High +0x207cd,CUS_0x1cd7,Standard +0x207d9,CUS_0x530b,Standard +0x207e5,CUS_0x282b,Standard +0x207f1,CUS_0x4f49,Standard +0x207fd,CUS_0xa4e9,Standard +0x20809,CUS_0x5287,Standard +0x20815,CUS_0x4969,Standard +0x20821,CUS_0xc33e,Standard +0x2082d,CUS_0x9d3d,High +0x20839,CUS_0x9b0e,Low +0x20845,CUS_0xc4e,Standard +0x20851,CUS_0x4280,Standard +0x2085d,CUS_0x3c97,Standard +0x20869,CUS_0xabd5,High +0x20875,CUS_0x9b46,Standard +0x20881,CUS_0x5bf0,Standard +0x2088d,CUS_0x6752,High +0x20899,CUS_0xa7c7,Standard +0x208a5,CUS_0x2eb1,Standard +0x208b1,CUS_0x46dc,Low +0x208bd,CUS_0x5b60,Standard +0x208c9,CUS_0xb079,High +0x208d5,CUS_0x4a3c,Standard +0x208e1,CUS_0x4dfe,Low +0x208ed,CUS_0x2a66,Standard +0x208f9,CUS_0x9150,Low +0x20905,CUS_0xa5e7,Standard +0x20911,CUS_0x86b8,Standard +0x2091d,CUS_0x2da4,Standard +0x20929,CUS_0x8ea5,Low +0x20935,CUS_0x4c2b,High +0x20941,CUS_0x79c0,High +0x2094d,CUS_0xbc4c,Low +0x20959,CUS_0xb575,High +0x20965,CUS_0x24b9,High +0x20971,CUS_0x7bb,Low +0x2097d,CUS_0x284f,Standard +0x20989,CUS_0x5bb8,Low +0x20995,CUS_0x6e38,High +0x209a1,CUS_0x7d25,High +0x209ad,CUS_0x1eae,Standard +0x209b9,CUS_0x7d87,Standard +0x209c5,CUS_0xc465,Standard +0x209d1,CUS_0x8807,High +0x209dd,CUS_0x2e0c,Standard +0x209e9,CUS_0x3aa9,High +0x209f5,CUS_0x2126,Standard +0x20a01,CUS_0xb607,Standard +0x20a0d,CUS_0x3aeb,Standard +0x20a19,CUS_0x692c,Low +0x20a25,CUS_0x65d6,Standard +0x20a31,CUS_0x7480,Standard +0x20a3d,CUS_0x978b,Standard +0x20a49,CUS_0x1f70,Low +0x20a55,CUS_0x141d,Standard +0x20a61,CUS_0xfc9,High +0x20a6d,CUS_0x5ee1,Standard +0x20a79,CUS_0x2f29,Standard +0x20a85,CUS_0x4cb4,Low +0x20a91,CUS_0xc1a6,Standard +0x20a9d,CUS_0xb66e,Standard +0x20aa9,CUS_0xae98,Standard +0x20ab5,CUS_0xb5bb,High +0x20ac1,CUS_0x77f8,Low +0x20acd,CUS_0x20fe,Standard +0x20ad9,CUS_0xbc7f,Low +0x20ae5,CUS_0x396c,Standard +0x20af1,CUS_0x9769,Standard +0x20afd,CUS_0x1628,High +0x20b09,CUS_0xab2f,Standard +0x20b15,CUS_0x5d95,High +0x20b21,CUS_0x4822,High +0x20b2d,CUS_0xbc3a,High +0x20b39,CUS_0xbdb4,High +0x20b45,CUS_0x1123,Standard +0x20b51,CUS_0x5bba,High +0x20b5d,CUS_0xa7ce,Standard +0x20b69,CUS_0x4f2e,Standard +0x20b75,CUS_0x365f,Standard +0x20b81,CUS_0x75e8,Low +0x20b8d,CUS_0xbf6e,Low +0x20b99,CUS_0x510b,Standard +0x20ba5,CUS_0x1848,Standard +0x20bb1,CUS_0x67c4,Standard +0x20bbd,CUS_0x8816,Standard +0x20bc9,CUS_0x4943,Standard +0x20bd5,CUS_0x542d,High +0x20be1,CUS_0x8d7b,Standard +0x20bed,CUS_0x4482,Standard +0x20bf9,CUS_0x5b61,Standard +0x20c05,CUS_0xb037,Standard +0x20c11,CUS_0x3b2a,Standard +0x20c1d,CUS_0xbcf7,High +0x20c29,CUS_0xf64,Standard +0x20c35,CUS_0x7459,Low +0x20c41,CUS_0x7e84,Standard +0x20c4d,CUS_0x7d04,Standard +0x20c59,CUS_0x77fc,Standard +0x20c65,CUS_0x2c7f,Standard +0x20c71,CUS_0x4a8a,Low +0x20c7d,CUS_0x719,Low +0x20c89,CUS_0x1dc4,High +0x20c95,CUS_0x1326,High +0x20ca1,CUS_0x1773,Low +0x20cad,CUS_0xb40d,Standard +0x20cb9,CUS_0x1add,Standard +0x20cc5,CUS_0x8985,High +0x20cd1,CUS_0xa6d1,Standard +0x20cdd,CUS_0xeb9,High +0x20ce9,CUS_0x3b81,Low +0x20cf5,CUS_0x1d70,High +0x20d01,CUS_0xb24c,High +0x20d0d,CUS_0x57ea,Low +0x20d19,CUS_0x6a61,Low +0x20d25,CUS_0x881e,High +0x20d31,CUS_0xc362,High +0x20d3d,CUS_0x1e45,High +0x20d49,CUS_0x3e4b,Low +0x20d55,CUS_0x3582,Standard +0x20d61,CUS_0x2488,Standard +0x20d6d,CUS_0x972f,Standard +0x20d79,CUS_0x77c,Standard +0x20d85,CUS_0x9ce8,High +0x20d91,CUS_0x3ccd,Standard +0x20d9d,CUS_0x8df0,High +0x20da9,CUS_0x81c5,Standard +0x20db5,CUS_0x318c,Standard +0x20dc1,CUS_0xbd1e,Standard +0x20dcd,CUS_0x2913,Standard +0x20dd9,CUS_0xae01,Standard +0x20de5,CUS_0xb6ef,Standard +0x20df1,CUS_0xa4e2,Standard +0x20dfd,CUS_0xac19,Standard +0x20e09,CUS_0xbc71,High +0x20e15,CUS_0x4681,Low +0x20e21,CUS_0x5ba4,Standard +0x20e2d,CUS_0x7cce,Standard +0x20e39,CUS_0x33eb,Standard +0x20e45,CUS_0x783b,Standard +0x20e51,CUS_0x85da,High +0x20e5d,CUS_0x7a56,High +0x20e69,CUS_0xa772,Standard +0x20e75,CUS_0x2596,Standard +0x20e81,CUS_0x56f5,Standard +0x20e8d,CUS_0x61f7,Standard +0x20e99,CUS_0x3141,Standard +0x20ea5,CUS_0x1aa4,Standard +0x20eb1,CUS_0x3ce2,High +0x20ebd,CUS_0x1193,Standard +0x20ec9,CUS_0x3d7b,Low +0x20ed5,CUS_0x557,Standard +0x20ee1,CUS_0x319d,Standard +0x20eed,CUS_0x37b2,Low +0x20ef9,CUS_0x84c3,High +0x20f05,CUS_0x9c0d,Standard +0x20f11,CUS_0x4672,Standard +0x20f1d,CUS_0x3c7d,Low +0x20f29,CUS_0x3108,Low +0x20f35,CUS_0x34a8,Low +0x20f41,CUS_0xb4e2,High +0x20f4d,CUS_0x7081,Standard +0x20f59,CUS_0x8f37,Standard +0x20f65,CUS_0x5426,High +0x20f71,CUS_0x5b70,Low +0x20f7d,CUS_0xa848,Standard +0x20f89,CUS_0x28a6,High +0x20f95,CUS_0xfb8,Low +0x20fa1,CUS_0x85fa,High +0x20fad,CUS_0x2509,High +0x20fb9,CUS_0x4d66,Standard +0x20fc5,CUS_0xa1b1,Standard +0x20fd1,CUS_0x8ee1,Low +0x20fdd,CUS_0x2ad6,Standard +0x20fe9,CUS_0xa223,Standard +0x20ff5,CUS_0xaee8,High +0x21001,CUS_0x53cc,Standard +0x2100d,CUS_0x8c79,High +0x21019,CUS_0x75fd,Low +0x21025,CUS_0x8f19,High +0x21031,CUS_0x25ce,Low +0x2103d,CUS_0xb6a6,Standard +0x21049,CUS_0x3b21,Standard +0x21055,CUS_0x4242,Standard +0x21061,CUS_0x799e,Standard +0x2106d,CUS_0x1810,Low +0x21079,CUS_0x3bf5,Standard +0x21085,CUS_0x89b9,Standard +0x21091,CUS_0x526d,Standard +0x2109d,CUS_0x2ec6,Standard +0x210a9,CUS_0xa525,Low +0x210b5,CUS_0x2611,Standard +0x210c1,CUS_0xa352,High +0x210cd,CUS_0x1aeb,Low +0x210d9,CUS_0x8681,Standard +0x210e5,CUS_0x4f16,Standard +0x210f1,CUS_0x87b5,Standard +0x210fd,CUS_0x1999,Standard +0x21109,CUS_0x65b1,High +0x21115,CUS_0x878,Low +0x21121,CUS_0x107c,Standard +0x2112d,CUS_0x442f,High +0x21139,CUS_0x589a,Standard +0x21145,CUS_0xaf0d,Standard +0x21151,CUS_0x24d4,Low +0x2115d,CUS_0x4937,Standard +0x21169,CUS_0xe75,Low +0x21175,CUS_0x1852,High +0x21181,CUS_0x6bd,Standard +0x2118d,CUS_0xb2b6,High +0x21199,CUS_0x988c,Standard +0x211a5,CUS_0x9f8d,Standard +0x211b1,CUS_0x1136,High +0x211bd,CUS_0x5b25,Standard +0x211c9,CUS_0x2c98,Standard +0x211d5,CUS_0x1ed6,Low +0x211e1,CUS_0x9fd7,Standard +0x211ed,CUS_0xa85d,High +0x211f9,CUS_0x7547,High +0x21205,CUS_0x50dd,Standard +0x21211,CUS_0x771d,Standard +0x2121d,CUS_0x44cb,Standard +0x21229,CUS_0x8c27,High +0x21235,CUS_0x4057,Low +0x21241,CUS_0x7c2,Standard +0x2124d,CUS_0x45ef,Low +0x21259,CUS_0xad3d,Standard +0x21265,CUS_0xc1f,High +0x21271,CUS_0x8ca,Standard +0x2127d,CUS_0x2998,Standard +0x21289,CUS_0xb8b9,High +0x21295,CUS_0xa6b,Standard +0x212a1,CUS_0x8376,Standard +0x212ad,CUS_0x2a86,High +0x212b9,CUS_0x2bd2,High +0x212c5,CUS_0x3a4d,Standard +0x212d1,CUS_0x3276,Standard +0x212dd,CUS_0x88b8,Standard +0x212e9,CUS_0x1a59,Standard +0x212f5,CUS_0x4922,Low +0x21301,CUS_0x7eb6,High +0x2130d,CUS_0x3eab,Standard +0x21319,CUS_0x9ce2,Standard +0x21325,CUS_0x7cf0,High +0x21331,CUS_0x3660,Low +0x2133d,CUS_0x6a29,Standard +0x21349,CUS_0x13d1,High +0x21355,CUS_0x3ace,High +0x21361,CUS_0xa861,Standard +0x2136d,CUS_0x95f0,Standard +0x21379,CUS_0xa3f,High +0x21385,CUS_0x6692,Low +0x21391,CUS_0xa4d0,Low +0x2139d,CUS_0x3d6e,High +0x213a9,CUS_0x33f9,Standard +0x213b5,CUS_0x8a38,Standard +0x213c1,CUS_0xb49d,Standard +0x213cd,CUS_0x1993,Standard +0x213d9,CUS_0x2a3a,High +0x213e5,CUS_0x6cb9,Standard +0x213f1,CUS_0xc41,Standard +0x213fd,CUS_0x808,Standard +0x21409,CUS_0x9967,Low +0x21415,CUS_0xa212,Standard +0x21421,CUS_0x411a,Standard +0x2142d,CUS_0xc222,Standard +0x21439,CUS_0x995b,Standard +0x21445,CUS_0x6b7f,Low +0x21451,CUS_0x2c6f,Standard +0x2145d,CUS_0x4e05,Standard +0x21469,CUS_0x7faf,Standard +0x21475,CUS_0xabb4,Low +0x21481,CUS_0xba52,High +0x2148d,CUS_0x76c2,Standard +0x21499,CUS_0x400a,Low +0x214a5,CUS_0x2916,Standard +0x214b1,CUS_0xa219,Standard +0x214bd,CUS_0x929d,Standard +0x214c9,CUS_0x792d,Standard +0x214d5,CUS_0x9906,Standard +0x214e1,CUS_0x2e0e,Low +0x214ed,CUS_0xa1ab,Standard +0x214f9,CUS_0x448a,Standard +0x21505,CUS_0x3b66,Low +0x21511,CUS_0x9979,Standard +0x2151d,CUS_0x924e,Low +0x21529,CUS_0x9903,Standard +0x21535,CUS_0x9e8c,High +0x21541,CUS_0x537e,Standard +0x2154d,CUS_0x5e0e,Low +0x21559,CUS_0xbcfe,Standard +0x21565,CUS_0x87be,High +0x21571,CUS_0x4e94,Standard +0x2157d,CUS_0xbaea,Low +0x21589,CUS_0x3d22,High +0x21595,CUS_0x65df,Low +0x215a1,CUS_0x857f,Standard +0x215ad,CUS_0x412a,Standard +0x215b9,CUS_0x562a,High +0x215c5,CUS_0x14ce,Standard +0x215d1,CUS_0x7dfc,Low +0x215dd,CUS_0x406d,High +0x215e9,CUS_0x4f43,High +0x215f5,CUS_0x7874,High +0x21601,CUS_0x1063,Standard +0x2160d,CUS_0x632e,Low +0x21619,CUS_0x308d,Low +0x21625,CUS_0x2eed,High +0x21631,CUS_0x270e,High +0x2163d,CUS_0x6f81,Standard +0x21649,CUS_0x1efd,Standard +0x21655,CUS_0x3bba,High +0x21661,CUS_0xbc1f,Low +0x2166d,CUS_0xc5ae,Standard +0x21679,CUS_0x30ab,Standard +0x21685,CUS_0x3608,Standard +0x21691,CUS_0x3eb6,Standard +0x2169d,CUS_0xae17,Standard +0x216a9,CUS_0x2ded,Low +0x216b5,CUS_0x28c4,Standard +0x216c1,CUS_0xafc3,Standard +0x216cd,CUS_0x5510,Standard +0x216d9,CUS_0xc31a,Standard +0x216e5,CUS_0xacf,Low +0x216f1,CUS_0xa8c0,Standard +0x216fd,CUS_0x4c29,Standard +0x21709,CUS_0xa4a9,High +0x21715,CUS_0x6c83,Standard +0x21721,CUS_0x5704,Standard +0x2172d,CUS_0x6aa1,High +0x21739,CUS_0x50c9,Low +0x21745,CUS_0x1bde,Standard +0x21751,CUS_0x4662,Standard +0x2175d,CUS_0x20b2,Standard +0x21769,CUS_0xa9d9,High +0x21775,CUS_0x5da7,Standard +0x21781,CUS_0xa648,Standard +0x2178d,CUS_0x9bda,Low +0x21799,CUS_0x1dad,Standard +0x217a5,CUS_0x489d,Low +0x217b1,CUS_0x23d8,Low +0x217bd,CUS_0x9a14,High +0x217c9,CUS_0xb7be,Standard +0x217d5,CUS_0x1666,Standard +0x217e1,CUS_0x368f,Standard +0x217ed,CUS_0x9593,Standard +0x217f9,CUS_0xb322,Low +0x21805,CUS_0x4bef,High +0x21811,CUS_0xa120,Standard +0x2181d,CUS_0x52dd,Standard +0x21829,CUS_0x1ecf,Standard +0x21835,CUS_0x1aa0,Standard +0x21841,CUS_0x1f2f,Standard +0x2184d,CUS_0x7c51,Low +0x21859,CUS_0x4a23,Standard +0x21865,CUS_0x4f0d,Low +0x21871,CUS_0x32d2,Standard +0x2187d,CUS_0x575a,Standard +0x21889,CUS_0x4aa7,Low +0x21895,CUS_0x3af9,Low +0x218a1,CUS_0x7284,High +0x218ad,CUS_0x691e,Low +0x218b9,CUS_0x14f1,High +0x218c5,CUS_0xab83,Standard +0x218d1,CUS_0x5b90,Standard +0x218dd,CUS_0xa66a,Low +0x218e9,CUS_0xb89f,Standard +0x218f5,CUS_0xbb30,Standard +0x21901,CUS_0xacec,Standard +0x2190d,CUS_0x2fd5,Low +0x21919,CUS_0x9a6,Low +0x21925,CUS_0xbcde,Low +0x21931,CUS_0xa09c,Low +0x2193d,CUS_0xc192,Low +0x21949,CUS_0x25f1,Low +0x21955,CUS_0x61e3,Standard +0x21961,CUS_0x7145,Standard +0x2196d,CUS_0x225e,Standard +0x21979,CUS_0xa187,Low +0x21985,CUS_0x2499,Standard +0x21991,CUS_0x21bb,Standard +0x2199d,CUS_0x6211,High +0x219a9,CUS_0x89b4,High +0x219b5,CUS_0xb04,High +0x219c1,CUS_0x77b3,Standard +0x219cd,CUS_0xbe71,Low +0x219d9,CUS_0x6d1e,High +0x219e5,CUS_0x9c66,Standard +0x219f1,CUS_0x6068,Standard +0x219fd,CUS_0x3b7e,Standard +0x21a09,CUS_0xec8,Standard +0x21a15,CUS_0xbc5e,Standard +0x21a21,CUS_0x489b,High +0x21a2d,CUS_0xb907,Standard +0x21a39,CUS_0x612d,Standard +0x21a45,CUS_0xaebc,Standard +0x21a51,CUS_0x6683,Standard +0x21a5d,CUS_0x2a8e,Standard +0x21a69,CUS_0x7ed9,Standard +0x21a75,CUS_0xb173,High +0x21a81,CUS_0x6e91,High +0x21a8d,CUS_0x2ba1,Low +0x21a99,CUS_0x4a70,High +0x21aa5,CUS_0x66f2,Standard +0x21ab1,CUS_0x4cce,High +0x21abd,CUS_0xa18f,High +0x21ac9,CUS_0xa442,Standard +0x21ad5,CUS_0xdb9,High +0x21ae1,CUS_0x55f,Standard +0x21aed,CUS_0x383a,Standard +0x21af9,CUS_0x8b25,Standard +0x21b05,CUS_0x1274,High +0x21b11,CUS_0x43ee,Standard +0x21b1d,CUS_0x6443,Low +0x21b29,CUS_0x553d,Standard +0x21b35,CUS_0x15ad,High +0x21b41,CUS_0xa57,Standard +0x21b4d,CUS_0x9902,Standard +0x21b59,CUS_0x7c33,Low +0x21b65,CUS_0xe05,High +0x21b71,CUS_0x7595,Low +0x21b7d,CUS_0x445,High +0x21b89,CUS_0x72e3,Standard +0x21b95,CUS_0x8e48,Low +0x21ba1,CUS_0xc4ad,High +0x21bad,CUS_0x6318,High +0x21bb9,CUS_0x9dd7,Standard +0x21bc5,CUS_0x49c4,Low +0x21bd1,CUS_0x9962,Low +0x21bdd,CUS_0x795e,Standard +0x21be9,CUS_0x30b9,Standard +0x21bf5,CUS_0x3fa7,High +0x21c01,CUS_0x983b,Standard +0x21c0d,CUS_0x5c45,Standard +0x21c19,CUS_0xa8cb,Standard +0x21c25,CUS_0x6543,Low +0x21c31,CUS_0xa6e7,Low +0x21c3d,CUS_0x391a,Low +0x21c49,CUS_0x9616,Standard +0x21c55,CUS_0x8ac4,High +0x21c61,CUS_0x6341,Standard +0x21c6d,CUS_0x3f71,Low +0x21c79,CUS_0x97b5,Standard +0x21c85,CUS_0x9f5e,High +0x21c91,CUS_0x638b,Standard +0x21c9d,CUS_0x19a8,Standard +0x21ca9,CUS_0x77f6,Standard +0x21cb5,CUS_0x246d,Standard +0x21cc1,CUS_0x4aba,Standard +0x21ccd,CUS_0x246a,High +0x21cd9,CUS_0x4722,Standard +0x21ce5,CUS_0x8aa6,Standard +0x21cf1,CUS_0xa8a,High +0x21cfd,CUS_0x2e10,High +0x21d09,CUS_0x5672,Standard +0x21d15,CUS_0x7c88,Standard +0x21d21,CUS_0x4b8b,Low +0x21d2d,CUS_0x3b10,Low +0x21d39,CUS_0x48cb,Standard +0x21d45,CUS_0xb5f6,Standard +0x21d51,CUS_0x8af1,Low +0x21d5d,CUS_0x7659,Low +0x21d69,CUS_0xb4d8,Standard +0x21d75,CUS_0x138e,Low +0x21d81,CUS_0x4976,Standard +0x21d8d,CUS_0x1038,Standard +0x21d99,CUS_0xa685,Standard +0x21da5,CUS_0xa663,Low +0x21db1,CUS_0x8cf9,High +0x21dbd,CUS_0x563b,Standard +0x21dc9,CUS_0x81ca,Low +0x21dd5,CUS_0xb26,Standard +0x21de1,CUS_0x84f3,Low +0x21ded,CUS_0x209a,Standard +0x21df9,CUS_0x4dac,High +0x21e05,CUS_0x9c63,Standard +0x21e11,CUS_0x64ed,Standard +0x21e1d,CUS_0x88c7,Low +0x21e29,CUS_0xb1ca,High +0x21e35,CUS_0x18e5,High +0x21e41,CUS_0x550b,High +0x21e4d,CUS_0x5afe,Standard +0x21e59,CUS_0x26a9,Standard +0x21e65,CUS_0x6eb9,High +0x21e71,CUS_0x68da,Low +0x21e7d,CUS_0x5ac7,Standard +0x21e89,CUS_0xcfd,High +0x21e95,CUS_0x2834,Low +0x21ea1,CUS_0x141c,Standard +0x21ead,CUS_0xb8de,Standard +0x21eb9,CUS_0x8743,Standard +0x21ec5,CUS_0x1755,Standard +0x21ed1,CUS_0xbe97,Standard +0x21edd,CUS_0x335f,Standard +0x21ee9,CUS_0x7e30,Standard +0x21ef5,CUS_0x40df,Standard +0x21f01,CUS_0x1430,Standard +0x21f0d,CUS_0x3d16,High +0x21f19,CUS_0x14b3,Standard +0x21f25,CUS_0x8fd5,Standard +0x21f31,CUS_0x1a7b,Standard +0x21f3d,CUS_0xb787,High +0x21f49,CUS_0x78ce,Standard +0x21f55,CUS_0x6263,High +0x21f61,CUS_0xbd45,Standard +0x21f6d,CUS_0x1528,Standard +0x21f79,CUS_0xaf1e,Standard +0x21f85,CUS_0xb39,Standard +0x21f91,CUS_0x3127,Standard +0x21f9d,CUS_0x33b7,Standard +0x21fa9,CUS_0x6919,Low +0x21fb5,CUS_0x815,High +0x21fc1,CUS_0x81d4,Standard +0x21fcd,CUS_0x7ea1,High +0x21fd9,CUS_0x54b7,Standard +0x21fe5,CUS_0xb87d,Low +0x21ff1,CUS_0x70d4,High +0x21ffd,CUS_0x9176,Standard +0x22009,CUS_0x8cf2,Standard +0x22015,CUS_0x9207,Standard +0x22021,CUS_0x8e93,High +0x2202d,CUS_0x72a7,Standard +0x22039,CUS_0x668f,Standard +0x22045,CUS_0x9ab3,High +0x22051,CUS_0x2b6a,Standard +0x2205d,CUS_0x1471,Standard +0x22069,CUS_0x853c,Standard +0x22075,CUS_0x18c5,Standard +0x22081,CUS_0x2e06,Low +0x2208d,CUS_0xc0a3,High +0x22099,CUS_0xa5dd,Low +0x220a5,CUS_0x2288,Low +0x220b1,CUS_0xb304,Standard +0x220bd,CUS_0x9da4,Low +0x220c9,CUS_0x5983,Standard +0x220d5,CUS_0x775a,Low +0x220e1,CUS_0xc317,Standard +0x220ed,CUS_0x7255,Standard +0x220f9,CUS_0x8348,High +0x22105,CUS_0x6dd6,Standard +0x22111,CUS_0x23e5,Standard +0x2211d,CUS_0x50e6,Low +0x22129,CUS_0x973e,High +0x22135,CUS_0x652e,Standard +0x22141,CUS_0xb5c9,High +0x2214d,CUS_0xbf4d,Standard +0x22159,CUS_0x63c,High +0x22165,CUS_0x45e5,Standard +0x22171,CUS_0x13b8,Standard +0x2217d,CUS_0x665c,High +0x22189,CUS_0x52a5,Standard +0x22195,CUS_0x8661,Standard +0x221a1,CUS_0xa857,High +0x221ad,CUS_0x7b30,Standard +0x221b9,CUS_0x6854,Low +0x221c5,CUS_0xc1ec,Standard +0x221d1,CUS_0x2551,Standard +0x221dd,CUS_0x8603,Low +0x221e9,CUS_0x1be0,High +0x221f5,CUS_0x2f49,Standard +0x22201,CUS_0x3d40,Low +0x2220d,CUS_0x58b2,Low +0x22219,CUS_0x8984,Standard +0x22225,CUS_0x8b66,Standard +0x22231,CUS_0x1691,Standard +0x2223d,CUS_0xc68d,Standard +0x22249,CUS_0x5b2,Standard +0x22255,CUS_0xa624,Standard +0x22261,CUS_0xc3b9,Standard +0x2226d,CUS_0x8672,High +0x22279,CUS_0x96e5,Standard +0x22285,CUS_0x928f,High +0x22291,CUS_0x771e,Standard +0x2229d,CUS_0x5220,Standard +0x222a9,CUS_0x833d,High +0x222b5,CUS_0xbe56,Standard +0x222c1,CUS_0xbfbf,Standard +0x222cd,CUS_0x894f,High +0x222d9,CUS_0x67c8,Standard +0x222e5,CUS_0x69bf,Standard +0x222f1,CUS_0xbd7c,Standard +0x222fd,CUS_0x6974,Low +0x22309,CUS_0x4c0,High +0x22315,CUS_0x7500,Low +0x22321,CUS_0x6cf6,Standard +0x2232d,CUS_0x143d,Standard +0x22339,CUS_0x6406,Low +0x22345,CUS_0x2b3c,Low +0x22351,CUS_0x4d19,Standard +0x2235d,CUS_0x5204,High +0x22369,CUS_0x217f,Low +0x22375,CUS_0x5c7d,Standard +0x22381,CUS_0x36a2,Standard +0x2238d,CUS_0x9985,Standard +0x22399,CUS_0x9bc7,Standard +0x223a5,CUS_0x6d02,Standard +0x223b1,CUS_0x4faf,Low +0x223bd,CUS_0xbd07,Low +0x223c9,CUS_0x14d8,Standard +0x223d5,CUS_0x107e,Standard +0x223e1,CUS_0x3799,Standard +0x223ed,CUS_0x6623,High +0x223f9,CUS_0x4e43,High +0x22405,CUS_0x9cdf,Standard +0x22411,CUS_0x3229,High +0x2241d,CUS_0x51eb,Standard +0x22429,CUS_0xa4e7,Low +0x22435,CUS_0x30f7,Standard +0x22441,CUS_0x2b9e,High +0x2244d,CUS_0xabea,Standard +0x22459,CUS_0xc592,Standard +0x22465,CUS_0x896e,Low +0x22471,CUS_0x7a6c,High +0x2247d,CUS_0xa41f,Standard +0x22489,CUS_0x41e8,High +0x22495,CUS_0x33dc,High +0x224a1,CUS_0x4732,Standard +0x224ad,CUS_0x79ca,Low +0x224b9,CUS_0x9f67,Standard +0x224c5,CUS_0xc2ae,Standard +0x224d1,CUS_0x48cc,Standard +0x224dd,CUS_0x79a,Standard +0x224e9,CUS_0x226a,Standard +0x224f5,CUS_0x808d,Standard +0x22501,CUS_0x38a7,Low +0x2250d,CUS_0x6f92,High +0x22519,CUS_0xbc99,Standard +0x22525,CUS_0x9415,High +0x22531,CUS_0x25d8,High +0x2253d,CUS_0x3903,Standard +0x22549,CUS_0x46b6,Low +0x22555,CUS_0x16ae,Standard +0x22561,CUS_0x3787,Standard +0x2256d,CUS_0x3077,Standard +0x22579,CUS_0xc015,Standard +0x22585,CUS_0x5e56,Standard +0x22591,CUS_0x3631,High +0x2259d,CUS_0x67cb,Standard +0x225a9,CUS_0xaea,Standard +0x225b5,CUS_0x253a,High +0x225c1,CUS_0x5cb8,Standard +0x225cd,CUS_0xb626,High +0x225d9,CUS_0xac2d,Standard +0x225e5,CUS_0x8264,Standard +0x225f1,CUS_0x1884,Standard +0x225fd,CUS_0x96d3,Standard +0x22609,CUS_0x3082,High +0x22615,CUS_0x60b6,Low +0x22621,CUS_0x276a,High +0x2262d,CUS_0xbd3d,Standard +0x22639,CUS_0xb913,High +0x22645,CUS_0x2ca9,Standard +0x22651,CUS_0xa6c7,High +0x2265d,CUS_0x2350,Standard +0x22669,CUS_0x7846,Standard +0x22675,CUS_0x34a9,High +0x22681,CUS_0x66d4,Standard +0x2268d,CUS_0x732d,Standard +0x22699,CUS_0x6510,Standard +0x226a5,CUS_0xb05d,Low +0x226b1,CUS_0x854e,Standard +0x226bd,CUS_0x6b04,High +0x226c9,CUS_0x4e1f,Low +0x226d5,CUS_0x31b2,Standard +0x226e1,CUS_0x9b4b,Standard +0x226ed,CUS_0xd71,Standard +0x226f9,CUS_0x5862,High +0x22705,CUS_0xc17f,Standard +0x22711,CUS_0x31f8,Low +0x2271d,CUS_0x1f4f,Standard +0x22729,CUS_0x35dd,High +0x22735,CUS_0x23c8,Standard +0x22741,CUS_0xbbaf,High +0x2274d,CUS_0x9e3f,Standard +0x22759,CUS_0x38b3,High +0x22765,CUS_0xa116,Standard +0x22771,CUS_0x7ad4,Low +0x2277d,CUS_0xde2,Standard +0x22789,CUS_0x70bd,Standard +0x22795,CUS_0x9d91,Standard +0x227a1,CUS_0xa4b7,Standard +0x227ad,CUS_0x50e2,High +0x227b9,CUS_0x49b5,Standard +0x227c5,CUS_0x31c0,High +0x227d1,CUS_0x164a,Standard +0x227dd,CUS_0x3176,Standard +0x227e9,CUS_0x6cae,High +0x227f5,CUS_0x8558,Standard +0x22801,CUS_0xb7d9,Standard +0x2280d,CUS_0x963e,Low +0x22819,CUS_0xc0b7,Standard +0x22825,CUS_0xb328,Standard +0x22831,CUS_0x77fe,Low +0x2283d,CUS_0x2c2b,Standard +0x22849,CUS_0x2d02,High +0x22855,CUS_0xb6dd,High +0x22861,CUS_0xae14,High +0x2286d,CUS_0x682b,High +0x22879,CUS_0x1786,Standard +0x22885,CUS_0x2de0,High +0x22891,CUS_0x47a5,High +0x2289d,CUS_0x3b32,Standard +0x228a9,CUS_0x8abb,Standard +0x228b5,CUS_0x470d,Standard +0x228c1,CUS_0xc5a5,Standard +0x228cd,CUS_0x3410,High +0x228d9,CUS_0x5275,High +0x228e5,CUS_0xc1a7,Standard +0x228f1,CUS_0x9386,Standard +0x228fd,CUS_0x7c0d,High +0x22909,CUS_0x4715,Standard +0x22915,CUS_0x4475,High +0x22921,CUS_0xe7e,High +0x2292d,CUS_0x72d2,High +0x22939,CUS_0x89ab,Standard +0x22945,CUS_0x6dcf,Standard +0x22951,CUS_0x7369,Standard +0x2295d,CUS_0x5d9e,Standard +0x22969,CUS_0x41f2,Standard +0x22975,CUS_0x205f,High +0x22981,CUS_0x8234,High +0x2298d,CUS_0x242e,Standard +0x22999,CUS_0x865c,Standard +0x229a5,CUS_0x2887,Standard +0x229b1,CUS_0x540f,Low +0x229bd,CUS_0xb2fc,Low +0x229c9,CUS_0x1ca5,High +0x229d5,CUS_0x4282,Standard +0x229e1,CUS_0x13c2,Standard +0x229ed,CUS_0xa78b,Standard +0x229f9,CUS_0x4469,Standard +0x22a05,CUS_0x5be9,Low +0x22a11,CUS_0xc26e,Standard +0x22a1d,CUS_0x4671,High +0x22a29,CUS_0x5d75,Low +0x22a35,CUS_0x4ff5,Standard +0x22a41,CUS_0x4170,Standard +0x22a4d,CUS_0x96c,Standard +0x22a59,CUS_0xb464,Standard +0x22a65,CUS_0xb8f4,Standard +0x22a71,CUS_0x52c2,Low +0x22a7d,CUS_0x4403,Low +0x22a89,CUS_0xb593,High +0x22a95,CUS_0xb594,Standard +0x22aa1,CUS_0x3b83,High +0x22aad,CUS_0x33aa,High +0x22ab9,CUS_0x3a3f,Standard +0x22ac5,CUS_0x2048,Standard +0x22ad1,CUS_0x52f7,Standard +0x22add,CUS_0xa9f6,Standard +0x22ae9,CUS_0x60f5,Standard +0x22af5,CUS_0x2a55,High +0x22b01,CUS_0x8843,Standard +0x22b0d,CUS_0x59d8,High +0x22b19,CUS_0x27f4,Standard +0x22b25,CUS_0x29cd,Standard +0x22b31,CUS_0x4813,Low +0x22b3d,CUS_0x312b,High +0x22b49,CUS_0x74e5,Standard +0x22b55,CUS_0x5dca,Standard +0x22b61,CUS_0x28e3,Standard +0x22b6d,CUS_0x23a1,Standard +0x22b79,CUS_0xbbd8,High +0x22b85,CUS_0x6e0,Standard +0x22b91,CUS_0xb5dd,Standard +0x22b9d,CUS_0x5029,Low +0x22ba9,CUS_0x6c67,Standard +0x22bb5,CUS_0x38cc,Standard +0x22bc1,CUS_0x23c5,Standard +0x22bcd,CUS_0x128f,Standard +0x22bd9,CUS_0x582f,Low +0x22be5,CUS_0x14c1,Standard +0x22bf1,CUS_0x8608,High +0x22bfd,CUS_0x1551,Standard +0x22c09,CUS_0x3aaa,Standard +0x22c15,CUS_0x70d,Standard +0x22c21,CUS_0x22b1,Low +0x22c2d,CUS_0x92e9,High +0x22c39,CUS_0x5826,Standard +0x22c45,CUS_0xfaa,Standard +0x22c51,CUS_0xaee3,Standard +0x22c5d,CUS_0xb172,Standard +0x22c69,CUS_0xb818,Standard +0x22c75,CUS_0x36b4,Standard +0x22c81,CUS_0x7d66,Low +0x22c8d,CUS_0x416f,Standard +0x22c99,CUS_0x922d,Standard +0x22ca5,CUS_0xaea9,Standard +0x22cb1,CUS_0x8ae9,Standard +0x22cbd,CUS_0x3ee9,Standard +0x22cc9,CUS_0xc2c0,Standard +0x22cd5,CUS_0x373b,Standard +0x22ce1,CUS_0xabef,Low +0x22ced,CUS_0x2f9d,High +0x22cf9,CUS_0x6a6,Standard +0x22d05,CUS_0x76df,Standard +0x22d11,CUS_0x477b,Standard +0x22d1d,CUS_0x8ec8,High +0x22d29,CUS_0x4238,Standard +0x22d35,CUS_0x5627,Standard +0x22d41,CUS_0x9002,Standard +0x22d4d,CUS_0x9871,Low +0x22d59,CUS_0x1bb6,Standard +0x22d65,CUS_0x725e,Standard +0x22d71,CUS_0xb837,High +0x22d7d,CUS_0xabaf,Standard +0x22d89,CUS_0xc55b,High +0x22d95,CUS_0xc3ad,High +0x22da1,CUS_0x1695,Standard +0x22dad,CUS_0xdb0,Low +0x22db9,CUS_0x457e,Standard +0x22dc5,CUS_0xb4d6,Low +0x22dd1,CUS_0x90d0,High +0x22ddd,CUS_0x13df,High +0x22de9,CUS_0x52b1,Low +0x22df5,CUS_0x277e,Low +0x22e01,CUS_0x7045,Standard +0x22e0d,CUS_0x641e,Standard +0x22e19,CUS_0x82c4,High +0x22e25,CUS_0xbe7,High +0x22e31,CUS_0x6896,High +0x22e3d,CUS_0x5f22,Standard +0x22e49,CUS_0x9a0c,Low +0x22e55,CUS_0xab16,Low +0x22e61,CUS_0x8369,Standard +0x22e6d,CUS_0xe4e,Standard +0x22e79,CUS_0x8e6e,Standard +0x22e85,CUS_0x92b6,High +0x22e91,CUS_0x6013,Standard +0x22e9d,CUS_0x3359,Standard +0x22ea9,CUS_0x8dc6,Standard +0x22eb5,CUS_0x9fcf,High +0x22ec1,CUS_0x5f8b,High +0x22ecd,CUS_0x809c,Standard +0x22ed9,CUS_0xa2d7,Standard +0x22ee5,CUS_0xbdca,Standard +0x22ef1,CUS_0x6570,Standard +0x22efd,CUS_0x86e,High +0x22f09,CUS_0x1f9c,Low +0x22f15,CUS_0x44d5,Standard +0x22f21,CUS_0xb615,Low +0x22f2d,CUS_0x6092,High +0x22f39,CUS_0xbd1f,Standard +0x22f45,CUS_0x1341,Standard +0x22f51,CUS_0x7e6c,Low +0x22f5d,CUS_0x6c5d,Low +0x22f69,CUS_0x114b,Standard +0x22f75,CUS_0x20c8,Low +0x22f81,CUS_0x4ddc,Standard +0x22f8d,CUS_0x94dd,Standard +0x22f99,CUS_0xb631,Standard +0x22fa5,CUS_0x7418,Standard +0x22fb1,CUS_0x82a6,High +0x22fbd,CUS_0x80c7,Standard +0x22fc9,CUS_0x3b15,Standard +0x22fd5,CUS_0x714a,Standard +0x22fe1,CUS_0xad94,Standard +0x22fed,CUS_0x949,Standard +0x22ff9,CUS_0x8126,Standard +0x23005,CUS_0x7087,Standard +0x23011,CUS_0x9d9,High +0x2301d,CUS_0x4a88,Standard +0x23029,CUS_0x49f5,High +0x23035,CUS_0xbfba,High +0x23041,CUS_0x9d77,Standard +0x2304d,CUS_0x2854,Low +0x23059,CUS_0x38dc,Standard +0x23065,CUS_0xf8d,Low +0x23071,CUS_0x3365,Standard +0x2307d,CUS_0xac5c,High +0x23089,CUS_0xb32e,High +0x23095,CUS_0xa90c,Standard +0x230a1,CUS_0x1cab,High +0x230ad,CUS_0xbf1d,Standard +0x230b9,CUS_0x1688,Standard +0x230c5,CUS_0x7d8e,High +0x230d1,CUS_0x1897,High +0x230dd,CUS_0x2985,Low +0x230e9,CUS_0xc349,High +0x230f5,CUS_0x5c7f,Standard +0x23101,CUS_0x5dfe,Standard +0x2310d,CUS_0xbdee,Standard +0x23119,CUS_0x5adc,Standard +0x23125,CUS_0x3621,Standard +0x23131,CUS_0x7d8a,High +0x2313d,CUS_0x192d,High +0x23149,CUS_0xe47,Standard +0x23155,CUS_0xa423,Low +0x23161,CUS_0x9c38,High +0x2316d,CUS_0x89d2,Low +0x23179,CUS_0x8e8,Standard +0x23185,CUS_0xade0,Low +0x23191,CUS_0xac95,Low +0x2319d,CUS_0xb0d3,Low +0x231a9,CUS_0x474,Low +0x231b5,CUS_0x37bc,Low +0x231c1,CUS_0x1d63,High +0x231cd,CUS_0x8956,Standard +0x231d9,CUS_0x731,Standard +0x231e5,CUS_0x5507,High +0x231f1,CUS_0x65f0,High +0x231fd,CUS_0x150c,Standard +0x23209,CUS_0x94ee,Standard +0x23215,CUS_0x4aad,High +0x23221,CUS_0x84a6,Standard +0x2322d,CUS_0x49a9,High +0x23239,CUS_0x419f,Standard +0x23245,CUS_0xad19,Standard +0x23251,CUS_0x30c1,Low +0x2325d,CUS_0x4479,Standard +0x23269,CUS_0x1144,Standard +0x23275,CUS_0x3b60,High +0x23281,CUS_0x5385,Low +0x2328d,CUS_0x165e,Standard +0x23299,CUS_0x6a1a,Standard +0x232a5,CUS_0x9d2e,High +0x232b1,CUS_0x1942,Standard +0x232bd,CUS_0x3cb7,High +0x232c9,CUS_0xa64c,Low +0x232d5,CUS_0x18e1,Standard +0x232e1,CUS_0x2a30,Standard +0x232ed,CUS_0x6c53,Standard +0x232f9,CUS_0x31e8,High +0x23305,CUS_0xa38e,High +0x23311,CUS_0x9053,Standard +0x2331d,CUS_0x29e7,High +0x23329,CUS_0x45fc,High +0x23335,CUS_0x5833,Low +0x23341,CUS_0x8c76,Standard +0x2334d,CUS_0x109b,High +0x23359,CUS_0xb7b3,High +0x23365,CUS_0x739,Low +0x23371,CUS_0x3634,Standard +0x2337d,CUS_0x7789,Low +0x23389,CUS_0x69c3,Standard +0x23395,CUS_0x68f8,Low +0x233a1,CUS_0xa83e,Standard +0x233ad,CUS_0x7f0b,High +0x233b9,CUS_0x374a,Standard +0x233c5,CUS_0xb68e,Standard +0x233d1,CUS_0xa15a,Standard +0x233dd,CUS_0x63c0,High +0x233e9,CUS_0xb1f1,Standard +0x233f5,CUS_0x1ed3,Standard +0x23401,CUS_0x6333,High +0x2340d,CUS_0x86aa,Standard +0x23419,CUS_0x5b92,Low +0x23425,CUS_0x2552,Standard +0x23431,CUS_0x32a1,Low +0x2343d,CUS_0x48dd,Standard +0x23449,CUS_0x1422,High +0x23455,CUS_0x4d71,High +0x23461,CUS_0x558d,High +0x2346d,CUS_0x64b8,High +0x23479,CUS_0x2ad1,Standard +0x23485,CUS_0x86fe,Standard +0x23491,CUS_0xa8ba,High +0x2349d,CUS_0x195b,Standard +0x234a9,CUS_0x5dec,High +0x234b5,CUS_0x4bde,High +0x234c1,CUS_0x7ec0,High +0x234cd,CUS_0x5946,Standard +0x234d9,CUS_0xb5c5,Low +0x234e5,CUS_0xb7de,Standard +0x234f1,CUS_0xe09,High +0x234fd,CUS_0x4203,Standard +0x23509,CUS_0xa342,Standard +0x23515,CUS_0x8e7d,Standard +0x23521,CUS_0xa913,Low +0x2352d,CUS_0x237b,High +0x23539,CUS_0x5fe9,High +0x23545,CUS_0x8176,Standard +0x23551,CUS_0x20dc,Low +0x2355d,CUS_0x10e7,Standard +0x23569,CUS_0x6fbc,High +0x23575,CUS_0x87a3,High +0x23581,CUS_0x57f0,Low +0x2358d,CUS_0x402d,Standard +0x23599,CUS_0x5421,Low +0x235a5,CUS_0x7f2a,Low +0x235b1,CUS_0x3de6,Standard +0x235bd,CUS_0xb187,Low +0x235c9,CUS_0x5502,Low +0x235d5,CUS_0xa650,High +0x235e1,CUS_0x4ead,High +0x235ed,CUS_0x1492,Standard +0x235f9,CUS_0x30c8,Standard +0x23605,CUS_0xa3f3,Standard +0x23611,CUS_0x9ae0,Standard +0x2361d,CUS_0x5fc9,Standard +0x23629,CUS_0xc0e2,Standard +0x23635,CUS_0xa283,Standard +0x23641,CUS_0x7fd8,Standard +0x2364d,CUS_0x7622,Standard +0x23659,CUS_0x5ac6,High +0x23665,CUS_0x7f6c,Standard +0x23671,CUS_0x2f31,Standard +0x2367d,CUS_0x6c2c,High +0x23689,CUS_0xb3b4,Standard +0x23695,CUS_0xb82a,Standard +0x236a1,CUS_0x1b0c,High +0x236ad,CUS_0x9a9a,Standard +0x236b9,CUS_0x6f59,Standard +0x236c5,CUS_0xaf7d,Standard +0x236d1,CUS_0xbb5a,High +0x236dd,CUS_0xadad,Low +0x236e9,CUS_0x19a0,High +0x236f5,CUS_0x6610,Low +0x23701,CUS_0xba7e,High +0x2370d,CUS_0x8670,Standard +0x23719,CUS_0x3de4,Standard +0x23725,CUS_0x7fe9,High +0x23731,CUS_0x8489,Standard +0x2373d,CUS_0x675,Standard +0x23749,CUS_0xc641,High +0x23755,CUS_0x436c,High +0x23761,CUS_0xb226,Standard +0x2376d,CUS_0x6b0,Standard +0x23779,CUS_0x29c0,High +0x23785,CUS_0xbd95,Standard +0x23791,CUS_0x887f,Low +0x2379d,CUS_0xd29,Standard +0x237a9,CUS_0x37af,Low +0x237b5,CUS_0x25a7,Standard +0x237c1,CUS_0x6d30,Standard +0x237cd,CUS_0xad11,Low +0x237d9,CUS_0x929c,Standard +0x237e5,CUS_0x54c6,Standard +0x237f1,CUS_0x84be,Standard +0x237fd,CUS_0x7cbf,Standard +0x23809,CUS_0xc5b2,High +0x23815,CUS_0x9414,High +0x23821,CUS_0x837,High +0x2382d,CUS_0x9b24,Standard +0x23839,CUS_0x97ab,High +0x23845,CUS_0x295f,Low +0x23851,CUS_0x8519,Standard +0x2385d,CUS_0x9939,Standard +0x23869,CUS_0x9dee,High +0x23875,CUS_0xa4f9,Standard +0x23881,CUS_0x758c,High +0x2388d,CUS_0x2378,High +0x23899,CUS_0x9e67,Standard +0x238a5,CUS_0x9e5f,High +0x238b1,CUS_0x6786,High +0x238bd,CUS_0x47da,High +0x238c9,CUS_0x1151,Standard +0x238d5,CUS_0x581e,Standard +0x238e1,CUS_0x756d,Standard +0x238ed,CUS_0x2b00,Standard +0x238f9,CUS_0xb704,Standard +0x23905,CUS_0x7feb,Standard +0x23911,CUS_0x5208,High +0x2391d,CUS_0xb811,Low +0x23929,CUS_0x24bc,Standard +0x23935,CUS_0xb080,High +0x23941,CUS_0x3a44,High +0x2394d,CUS_0x1e46,Standard +0x23959,CUS_0x56ef,High +0x23965,CUS_0x91da,Standard +0x23971,CUS_0x81b,High +0x2397d,CUS_0x870e,High +0x23989,CUS_0x9fd2,Low +0x23995,CUS_0xa9d1,Standard +0x239a1,CUS_0xc7b,Standard +0x239ad,CUS_0x7840,Low +0x239b9,CUS_0xc5e,High +0x239c5,CUS_0x505c,High +0x239d1,CUS_0x8da5,Standard +0x239dd,CUS_0x8a14,Standard +0x239e9,CUS_0xa584,High +0x239f5,CUS_0x1709,Low +0x23a01,CUS_0xacfa,High +0x23a0d,CUS_0x955d,High +0x23a19,CUS_0xbc6a,Standard +0x23a25,CUS_0x2212,High +0x23a31,CUS_0x3e68,High +0x23a3d,CUS_0x2dca,High +0x23a49,CUS_0x5487,Standard +0x23a55,CUS_0xb240,Low +0x23a61,CUS_0x5e4e,Standard +0x23a6d,CUS_0xb4fd,Low +0x23a79,CUS_0x8083,Standard +0x23a85,CUS_0x8175,Low +0x23a91,CUS_0x3f38,High +0x23a9d,CUS_0x332e,Standard +0x23aa9,CUS_0x643a,High +0x23ab5,CUS_0xaa74,High +0x23ac1,CUS_0x79c1,High +0x23acd,CUS_0x602a,Standard +0x23ad9,CUS_0x2e01,High +0x23ae5,CUS_0xb89c,Low +0x23af1,CUS_0x3afa,High +0x23afd,CUS_0x4683,Low +0x23b09,CUS_0x2375,Standard +0x23b15,CUS_0x19e1,Low +0x23b21,CUS_0x902e,Standard +0x23b2d,CUS_0x5ddd,Standard +0x23b39,CUS_0x463e,Standard +0x23b45,CUS_0x1900,Standard +0x23b51,CUS_0x2449,Standard +0x23b5d,CUS_0x9b5c,Low +0x23b69,CUS_0xd70,Low +0x23b75,CUS_0x6dc3,Standard +0x23b81,CUS_0x9151,Standard +0x23b8d,CUS_0x1550,Standard +0x23b99,CUS_0x4697,Standard +0x23ba5,CUS_0x4e5f,Low +0x23bb1,CUS_0xb123,Standard +0x23bbd,CUS_0x13e7,High +0x23bc9,CUS_0x89c8,Low +0x23bd5,CUS_0x13f6,Low +0x23be1,CUS_0xaec,Standard +0x23bed,CUS_0x6846,High +0x23bf9,CUS_0x2ef8,Standard +0x23c05,CUS_0x2bfc,Standard +0x23c11,CUS_0x776d,Standard +0x23c1d,CUS_0x858a,High +0x23c29,CUS_0x905e,Standard +0x23c35,CUS_0x3baa,Low +0x23c41,CUS_0x4e07,High +0x23c4d,CUS_0x99bc,High +0x23c59,CUS_0x2d9f,Standard +0x23c65,CUS_0xa88,Standard +0x23c71,CUS_0xb2d5,Standard +0x23c7d,CUS_0xc47c,Low +0x23c89,CUS_0xdba,High +0x23c95,CUS_0x8e80,Standard +0x23ca1,CUS_0x412f,Standard +0x23cad,CUS_0x6dc6,Standard +0x23cb9,CUS_0x7992,Standard +0x23cc5,CUS_0xc166,Standard +0x23cd1,CUS_0x8b6d,Standard +0x23cdd,CUS_0xa46e,High +0x23ce9,CUS_0xb80a,Standard +0x23cf5,CUS_0x7806,Standard +0x23d01,CUS_0xeb0,Standard +0x23d0d,CUS_0x4649,Standard +0x23d19,CUS_0x9ce9,Standard +0x23d25,CUS_0xbf09,High +0x23d31,CUS_0x1ca9,Low +0x23d3d,CUS_0x2d07,High +0x23d49,CUS_0xbb33,Standard +0x23d55,CUS_0x8eac,High +0x23d61,CUS_0xb5f3,High +0x23d6d,CUS_0x16b4,Standard +0x23d79,CUS_0x631d,High +0x23d85,CUS_0x73de,Low +0x23d91,CUS_0x48be,High +0x23d9d,CUS_0x95ec,Standard +0x23da9,CUS_0xc668,Standard +0x23db5,CUS_0x30ec,Standard +0x23dc1,CUS_0x1c96,Standard +0x23dcd,CUS_0xb53,Standard +0x23dd9,CUS_0x54be,Standard +0x23de5,CUS_0x559c,Standard +0x23df1,CUS_0x18d7,Standard +0x23dfd,CUS_0x1168,Low +0x23e09,CUS_0x7152,Standard +0x23e15,CUS_0xb029,Standard +0x23e21,CUS_0xaf96,Standard +0x23e2d,CUS_0x5709,Standard +0x23e39,CUS_0xb3c2,Standard +0x23e45,CUS_0x7d8,Standard +0x23e51,CUS_0x257e,Standard +0x23e5d,CUS_0x78fe,Low +0x23e69,CUS_0xcc4,Low +0x23e75,CUS_0xb41f,Low +0x23e81,CUS_0xb8a1,High +0x23e8d,CUS_0x920e,Standard +0x23e99,CUS_0x8281,High +0x23ea5,CUS_0x6abc,Standard +0x23eb1,CUS_0x61a3,Standard +0x23ebd,CUS_0x9389,Standard +0x23ec9,CUS_0x64d9,Low +0x23ed5,CUS_0x5d51,Low +0x23ee1,CUS_0x1bb7,High +0x23eed,CUS_0xdf6,Low +0x23ef9,CUS_0x949b,Standard +0x23f05,CUS_0x2f03,Standard +0x23f11,CUS_0x4de9,Standard +0x23f1d,CUS_0xb832,High +0x23f29,CUS_0x7751,Low +0x23f35,CUS_0x3e0b,High +0x23f41,CUS_0x16a2,Standard +0x23f4d,CUS_0x67af,Standard +0x23f59,CUS_0x8448,Standard +0x23f65,CUS_0x496a,High +0x23f71,CUS_0x40d4,Standard +0x23f7d,CUS_0x8fdd,Standard +0x23f89,CUS_0xa092,Standard +0x23f95,CUS_0xb55e,Standard +0x23fa1,CUS_0x958e,Standard +0x23fad,CUS_0xbda,High +0x23fb9,CUS_0x8844,Low +0x23fc5,CUS_0x1378,Standard +0x23fd1,CUS_0x21df,Standard +0x23fdd,CUS_0x4de8,Standard +0x23fe9,CUS_0x54b1,Standard +0x23ff5,CUS_0x4acc,Low +0x24001,CUS_0x3295,Standard +0x2400d,CUS_0x7561,Standard +0x24019,CUS_0x84df,Standard +0x24025,CUS_0x279c,Standard +0x24031,CUS_0xb125,Low +0x2403d,CUS_0x1ff7,Low +0x24049,CUS_0x9bea,Standard +0x24055,CUS_0x949f,High +0x24061,CUS_0x192f,High +0x2406d,CUS_0x18d8,High +0x24079,CUS_0xa362,Standard +0x24085,CUS_0x120c,High +0x24091,CUS_0xb220,High +0x2409d,CUS_0x5df,Low +0x240a9,CUS_0x87a8,Standard +0x240b5,CUS_0x22ee,High +0x240c1,CUS_0xa693,Standard +0x240cd,CUS_0x5fa9,Low +0x240d9,CUS_0x5682,Standard +0x240e5,CUS_0x4f00,High +0x240f1,CUS_0x6ae6,High +0x240fd,CUS_0x164f,High +0x24109,CUS_0x2d64,Low +0x24115,CUS_0x7893,Standard +0x24121,CUS_0x4e55,Standard +0x2412d,CUS_0x1806,Standard +0x24139,CUS_0xbaf6,Standard +0x24145,CUS_0x978,Low +0x24151,CUS_0x3801,Standard +0x2415d,CUS_0x49b0,High +0x24169,CUS_0x6e26,Standard +0x24175,CUS_0x4312,Standard +0x24181,CUS_0x2243,Standard +0x2418d,CUS_0x8110,Standard +0x24199,CUS_0x14f6,Standard +0x241a5,CUS_0xa1b,Standard +0x241b1,CUS_0x383d,Low +0x241bd,CUS_0x7a01,Standard +0x241c9,CUS_0x347d,Standard +0x241d5,CUS_0x5e18,Low +0x241e1,CUS_0x3b04,Standard +0x241ed,CUS_0x2a2e,High +0x241f9,CUS_0x7916,Standard +0x24205,CUS_0xb918,High +0x24211,CUS_0x6308,Low +0x2421d,CUS_0xad50,High +0x24229,CUS_0x6fd3,High +0x24235,CUS_0x1051,Low +0x24241,CUS_0x756f,Standard +0x2424d,CUS_0x49a1,Low +0x24259,CUS_0xa2f0,Standard +0x24265,CUS_0xb1d5,Standard +0x24271,CUS_0x18ef,Standard +0x2427d,CUS_0xa005,Standard +0x24289,CUS_0x60ae,Low +0x24295,CUS_0xbd4,Standard +0x242a1,CUS_0x7e28,Standard +0x242ad,CUS_0x721f,Standard +0x242b9,CUS_0x62d1,Low +0x242c5,CUS_0xbe65,Low +0x242d1,CUS_0x574d,Standard +0x242dd,CUS_0xb6e0,Low +0x242e9,CUS_0x22c1,Standard +0x242f5,CUS_0xc5e8,High +0x24301,CUS_0x7c00,Standard +0x2430d,CUS_0x746c,High +0x24319,CUS_0x4e7d,Standard +0x24325,CUS_0xa6b8,Standard +0x24331,CUS_0xb639,Standard +0x2433d,CUS_0x205a,Standard +0x24349,CUS_0xa282,Standard +0x24355,CUS_0xae03,Standard +0x24361,CUS_0x4b2e,Standard +0x2436d,CUS_0x12a7,Standard +0x24379,CUS_0x9805,High +0x24385,CUS_0xa5f,Standard +0x24391,CUS_0x1c0c,Standard +0x2439d,CUS_0x98e7,High +0x243a9,CUS_0x7d06,High +0x243b5,CUS_0x150b,High +0x243c1,CUS_0x3361,Standard +0x243cd,CUS_0xb3fe,High +0x243d9,CUS_0xbc9c,Standard +0x243e5,CUS_0x40d9,Standard +0x243f1,CUS_0x1013,Standard +0x243fd,CUS_0x96cd,High +0x24409,CUS_0x86fb,High +0x24415,CUS_0x81f0,High +0x24421,CUS_0x4c49,Standard +0x2442d,CUS_0x223c,High +0x24439,CUS_0x30e8,Standard +0x24445,CUS_0x178d,Standard +0x24451,CUS_0x92cf,Standard +0x2445d,CUS_0xc19f,Standard +0x24469,CUS_0x32ed,Low +0x24475,CUS_0x4103,Standard +0x24481,CUS_0x7e24,Standard +0x2448d,CUS_0x639,Low +0x24499,CUS_0xb49,Low +0x244a5,CUS_0x8cce,Standard +0x244b1,CUS_0x4e9c,Standard +0x244bd,CUS_0x1ad3,Standard +0x244c9,CUS_0x3d73,Standard +0x244d5,CUS_0x55e6,Standard +0x244e1,CUS_0x8e01,Standard +0x244ed,CUS_0x2746,Standard +0x244f9,CUS_0xaeb2,High +0x24505,CUS_0x3de0,Low +0x24511,CUS_0x827f,Standard +0x2451d,CUS_0xb432,Low +0x24529,CUS_0x7b64,High +0x24535,CUS_0x1902,Standard +0x24541,CUS_0x5e1a,High +0x2454d,CUS_0xb483,Standard +0x24559,CUS_0x8798,Low +0x24565,CUS_0x85b2,Low +0x24571,CUS_0x9076,Low +0x2457d,CUS_0x591,Standard +0x24589,CUS_0x926f,Standard +0x24595,CUS_0x2bc7,Standard +0x245a1,CUS_0x7f07,Low +0x245ad,CUS_0x1edd,Standard +0x245b9,CUS_0xbc58,Low +0x245c5,CUS_0x9f59,Low +0x245d1,CUS_0x12b8,High +0x245dd,CUS_0x906c,Standard +0x245e9,CUS_0x1db0,Standard +0x245f5,CUS_0x59d,Low +0x24601,CUS_0x2fc5,High +0x2460d,CUS_0x7be4,High +0x24619,CUS_0x2734,Standard +0x24625,CUS_0x9941,Low +0x24631,CUS_0x73d9,High +0x2463d,CUS_0x61f5,Standard +0x24649,CUS_0x11ec,High +0x24655,CUS_0xbdcd,Standard +0x24661,CUS_0x7803,Standard +0x2466d,CUS_0x2c21,High +0x24679,CUS_0x94ae,Standard +0x24685,CUS_0x3007,Standard +0x24691,CUS_0x1668,Standard +0x2469d,CUS_0xc405,Standard +0x246a9,CUS_0xc0ff,Standard +0x246b5,CUS_0x1c79,High +0x246c1,CUS_0xc029,High +0x246cd,CUS_0xb51c,High +0x246d9,CUS_0x596a,Standard +0x246e5,CUS_0x2567,Low +0x246f1,CUS_0xbf3a,Low +0x246fd,CUS_0xb9ef,Low +0x24709,CUS_0xa061,Low +0x24715,CUS_0xc1ce,High +0x24721,CUS_0xb653,High +0x2472d,CUS_0xa741,Standard +0x24739,CUS_0x1743,High +0x24745,CUS_0xbfa6,High +0x24751,CUS_0xb203,High +0x2475d,CUS_0xc14e,Standard +0x24769,CUS_0xc5b0,Standard +0x24775,CUS_0x8d3d,Standard +0x24781,CUS_0x9011,Low +0x2478d,CUS_0x7b4b,High +0x24799,CUS_0x6ae4,Standard +0x247a5,CUS_0xb1e7,High +0x247b1,CUS_0x28f5,Standard +0x247bd,CUS_0x4c13,Low +0x247c9,CUS_0x749e,Standard +0x247d5,CUS_0x70bf,Standard +0x247e1,CUS_0x971a,High +0x247ed,CUS_0x8122,High +0x247f9,CUS_0x1c78,High +0x24805,CUS_0xc208,Standard +0x24811,CUS_0x4b76,Low +0x2481d,CUS_0x5cb9,Low +0x24829,CUS_0x80ec,Standard +0x24835,CUS_0x4a45,High +0x24841,CUS_0x37e3,Low +0x2484d,CUS_0xac15,Standard +0x24859,CUS_0xab17,Standard +0x24865,CUS_0x2e90,Low +0x24871,CUS_0x194b,High +0x2487d,CUS_0xadf0,Low +0x24889,CUS_0x6ffa,Standard +0x24895,CUS_0x80ca,Standard +0x248a1,CUS_0x1a22,Standard +0x248ad,CUS_0x52b6,High +0x248b9,CUS_0x6566,Standard +0x248c5,CUS_0x998f,Low +0x248d1,CUS_0x96b4,High +0x248dd,CUS_0x7016,High +0x248e9,CUS_0x2f1c,Standard +0x248f5,CUS_0x519e,Standard +0x24901,CUS_0x802,High +0x2490d,CUS_0x2a05,High +0x24919,CUS_0x703d,Standard +0x24925,CUS_0x3237,High +0x24931,CUS_0x68a5,Standard +0x2493d,CUS_0xa74e,Low +0x24949,CUS_0x5db7,Standard +0x24955,CUS_0xa2cd,Low +0x24961,CUS_0x1216,High +0x2496d,CUS_0x71c1,Low +0x24979,CUS_0x33b0,Low +0x24985,CUS_0x83a7,Low +0x24991,CUS_0x87ee,Standard +0x2499d,CUS_0xdcb,Standard +0x249a9,CUS_0xc59d,Standard +0x249b5,CUS_0x4844,High +0x249c1,CUS_0xb5ea,Standard +0x249cd,CUS_0x82d5,High +0x249d9,CUS_0xae6a,Low +0x249e5,CUS_0x5746,Low +0x249f1,CUS_0x8b26,Standard +0x249fd,CUS_0x8a40,High +0x24a09,CUS_0x26ff,Standard +0x24a15,CUS_0x4a96,Standard +0x24a21,CUS_0x11d9,Low +0x24a2d,CUS_0x754e,High +0x24a39,CUS_0xf70,Standard +0x24a45,CUS_0x104f,Standard +0x24a51,CUS_0x32cc,Low +0x24a5d,CUS_0x674a,Low +0x24a69,CUS_0x939,Standard +0x24a75,CUS_0x5a1b,Standard +0x24a81,CUS_0x8f4f,High +0x24a8d,CUS_0x54d4,High +0x24a99,CUS_0x2baf,High +0x24aa5,CUS_0x57c9,Standard +0x24ab1,CUS_0xb91a,High +0x24abd,CUS_0xbca6,High +0x24ac9,CUS_0xb227,Standard +0x24ad5,CUS_0x74f7,Standard +0x24ae1,CUS_0x9f5c,High +0x24aed,CUS_0x56a,Standard +0x24af9,CUS_0xd3a,High +0x24b05,CUS_0x2da6,Standard +0x24b11,CUS_0xbe2,Standard +0x24b1d,CUS_0x75f0,Standard +0x24b29,CUS_0x2ad4,Standard +0x24b35,CUS_0x2f8c,High +0x24b41,CUS_0x8fee,Standard +0x24b4d,CUS_0x99b9,Low +0x24b59,CUS_0x5ee8,High +0x24b65,CUS_0x9165,Low +0x24b71,CUS_0x6992,Standard +0x24b7d,CUS_0x1883,High +0x24b89,CUS_0x8e4d,Standard +0x24b95,CUS_0x7720,High +0x24ba1,CUS_0x899,High +0x24bad,CUS_0x106f,Low +0x24bb9,CUS_0xbf6b,Standard +0x24bc5,CUS_0x648c,Standard +0x24bd1,CUS_0x437a,Standard +0x24bdd,CUS_0x83eb,Low +0x24be9,CUS_0x5964,Standard +0x24bf5,CUS_0xbe4d,Standard +0x24c01,CUS_0x30dd,High +0x24c0d,CUS_0x9394,Standard +0x24c19,CUS_0xa2f9,Standard +0x24c25,CUS_0x9a3b,Standard +0x24c31,CUS_0xb019,Standard +0x24c3d,CUS_0xb5da,Standard +0x24c49,CUS_0x8bf2,High +0x24c55,CUS_0x4c5,Low +0x24c61,CUS_0xa4e0,Standard +0x24c6d,CUS_0x6ff5,Low +0x24c79,CUS_0x6f7b,Standard +0x24c85,CUS_0x2cad,Standard +0x24c91,CUS_0x43be,Standard +0x24c9d,CUS_0x51b2,High +0x24ca9,CUS_0x812d,High +0x24cb5,CUS_0xb637,Standard +0x24cc1,CUS_0x77bf,Low +0x24ccd,CUS_0x289e,Standard +0x24cd9,CUS_0x43bf,Low +0x24ce5,CUS_0x80ed,High +0x24cf1,CUS_0x49d9,Low +0x24cfd,CUS_0x206b,High +0x24d09,CUS_0xb19f,Low +0x24d15,CUS_0x2b3b,Standard +0x24d21,CUS_0xb369,Standard +0x24d2d,CUS_0xb005,Low +0x24d39,CUS_0x884,Standard +0x24d45,CUS_0x1a5c,Standard +0x24d51,CUS_0xa59,High +0x24d5d,CUS_0x269c,Standard +0x24d69,CUS_0x38b6,High +0x24d75,CUS_0xbeb8,High +0x24d81,CUS_0x917d,Low +0x24d8d,CUS_0x67e7,High +0x24d99,CUS_0x37a1,Standard +0x24da5,CUS_0x1837,High +0x24db1,CUS_0x88fd,Standard +0x24dbd,CUS_0x93ad,High +0x24dc9,CUS_0x9288,Standard +0x24dd5,CUS_0x386c,Low +0x24de1,CUS_0x9fd8,Standard +0x24ded,CUS_0x5260,Standard +0x24df9,CUS_0x2e2e,Standard +0x24e05,CUS_0x8b8e,Standard +0x24e11,CUS_0x8d5d,Standard +0x24e1d,CUS_0x8135,Low +0x24e29,CUS_0x467e,Low +0x24e35,CUS_0x9117,Standard +0x24e41,CUS_0x5b8,Standard +0x24e4d,CUS_0x599e,Low +0x24e59,CUS_0x8d01,Low +0x24e65,CUS_0x6a81,High +0x24e71,CUS_0x5257,Standard +0x24e7d,CUS_0x45e2,Standard +0x24e89,CUS_0x744b,High +0x24e95,CUS_0x1521,Standard +0x24ea1,CUS_0x613c,Standard +0x24ead,CUS_0x9584,High +0x24eb9,CUS_0xaa9d,Low +0x24ec5,CUS_0x5494,High +0x24ed1,CUS_0x93a0,High +0x24edd,CUS_0x8f34,Standard +0x24ee9,CUS_0x3b2b,Standard +0x24ef5,CUS_0x5b87,Standard +0x24f01,CUS_0x86ea,Low +0x24f0d,CUS_0x1ab7,High +0x24f19,CUS_0x7bf9,Standard +0x24f25,CUS_0x76d1,Low +0x24f31,CUS_0x659f,High +0x24f3d,CUS_0x1a06,Standard +0x24f49,CUS_0x16ee,High +0x24f55,CUS_0x79d1,Standard +0x24f61,CUS_0x271a,High +0x24f6d,CUS_0x5055,Standard +0x24f79,CUS_0xb451,High +0x24f85,CUS_0x4563,Low +0x24f91,CUS_0x6acb,High +0x24f9d,CUS_0xb407,Standard +0x24fa9,CUS_0xb1bf,Standard +0x24fb5,CUS_0x554,Standard +0x24fc1,CUS_0x78f,Standard +0x24fcd,CUS_0x87cb,High +0x24fd9,CUS_0x1ec2,Standard +0x24fe5,CUS_0x4271,Standard +0x24ff1,CUS_0x7438,Standard +0x24ffd,CUS_0x351f,Standard +0x25009,CUS_0x75a4,Low +0x25015,CUS_0x957e,High +0x25021,CUS_0x556,High +0x2502d,CUS_0x42d2,Standard +0x25039,CUS_0xa447,High +0x25045,CUS_0x5371,Standard +0x25051,CUS_0x5522,Standard +0x2505d,CUS_0xa015,Standard +0x25069,CUS_0xac41,High +0x25075,CUS_0x9154,High +0x25081,CUS_0x6c23,Standard +0x2508d,CUS_0x9f9,Standard +0x25099,CUS_0x89e,Standard +0x250a5,CUS_0x5911,High +0x250b1,CUS_0x5e00,High +0x250bd,CUS_0xebc,High +0x250c9,CUS_0x303d,Standard +0x250d5,CUS_0x25ea,High +0x250e1,CUS_0xa36d,High +0x250ed,CUS_0x3cb1,Standard +0x250f9,CUS_0x15cc,High +0x25105,CUS_0xa0f3,Low +0x25111,CUS_0x560e,Low +0x2511d,CUS_0xa2de,Standard +0x25129,CUS_0xbf53,High +0x25135,CUS_0x6671,High +0x25141,CUS_0xb44c,Standard +0x2514d,CUS_0x9f63,Standard +0x25159,CUS_0x40c8,High +0x25165,CUS_0x49c1,Standard +0x25171,CUS_0x387c,High +0x2517d,CUS_0x56ce,Standard +0x25189,CUS_0x3f99,Standard +0x25195,CUS_0xa3df,Low +0x251a1,CUS_0x7e3f,Standard +0x251ad,CUS_0x4021,Low +0x251b9,CUS_0xbb37,Low +0x251c5,CUS_0x43a4,Standard +0x251d1,CUS_0xb2c8,High +0x251dd,CUS_0x332b,Standard +0x251e9,CUS_0x8718,Standard +0x251f5,CUS_0x5587,High +0x25201,CUS_0x1807,Standard +0x2520d,CUS_0x5cf2,Standard +0x25219,CUS_0x3ed3,Standard +0x25225,CUS_0x2f69,Standard +0x25231,CUS_0x95d0,Low +0x2523d,CUS_0x215d,High +0x25249,CUS_0x52f1,Standard +0x25255,CUS_0x2fda,High +0x25261,CUS_0xa125,High +0x2526d,CUS_0x9708,Low +0x25279,CUS_0xac0d,Standard +0x25285,CUS_0x82be,Standard +0x25291,CUS_0x6a91,Standard +0x2529d,CUS_0xac7c,Standard +0x252a9,CUS_0xc39e,Standard +0x252b5,CUS_0x5488,Standard +0x252c1,CUS_0x2653,Standard +0x252cd,CUS_0x12fb,Standard +0x252d9,CUS_0xaf39,Standard +0x252e5,CUS_0x9e05,Standard +0x252f1,CUS_0xa7e9,Standard +0x252fd,CUS_0x3325,Low +0x25309,CUS_0x1f39,High +0x25315,CUS_0x61d3,High +0x25321,CUS_0x73bb,Standard +0x2532d,CUS_0x9759,Low +0x25339,CUS_0xab4a,High +0x25345,CUS_0x1fbd,Standard +0x25351,CUS_0xc436,Standard +0x2535d,CUS_0xc04,Standard +0x25369,CUS_0x5898,Standard +0x25375,CUS_0x379f,High +0x25381,CUS_0x4a6a,Standard +0x2538d,CUS_0xa1fc,High +0x25399,CUS_0x6daf,Standard +0x253a5,CUS_0x8d69,Standard +0x253b1,CUS_0x745b,Standard +0x253bd,CUS_0x46d7,Standard +0x253c9,CUS_0x3aab,Standard +0x253d5,CUS_0x482d,Standard +0x253e1,CUS_0x8a0d,Low +0x253ed,CUS_0xa1c5,Low +0x253f9,CUS_0x4ff8,Standard +0x25405,CUS_0x5bd8,Low +0x25411,CUS_0x50f7,High +0x2541d,CUS_0x3e34,High +0x25429,CUS_0xa3f4,Standard +0x25435,CUS_0x1c26,High +0x25441,CUS_0x215f,Standard +0x2544d,CUS_0x2e5e,Standard +0x25459,CUS_0x4159,High +0x25465,CUS_0x69be,Low +0x25471,CUS_0x20db,Standard +0x2547d,CUS_0x636b,Standard +0x25489,CUS_0x5602,High +0x25495,CUS_0x90d2,Standard +0x254a1,CUS_0x7813,Standard +0x254ad,CUS_0x335e,High +0x254b9,CUS_0x4fb1,High +0x254c5,CUS_0x4a02,Low +0x254d1,CUS_0x4b6b,Standard +0x254dd,CUS_0x3fbc,High +0x254e9,CUS_0x59cd,Standard +0x254f5,CUS_0x5e30,Standard +0x25501,CUS_0x89ff,High +0x2550d,CUS_0x6c24,High +0x25519,CUS_0x85cb,Standard +0x25525,CUS_0xc686,Standard +0x25531,CUS_0xaacd,Low +0x2553d,CUS_0x1abb,Standard +0x25549,CUS_0x810d,Low +0x25555,CUS_0x98ba,Standard +0x25561,CUS_0x5ff6,High +0x2556d,CUS_0xa455,Standard +0x25579,CUS_0x22a1,Standard +0x25585,CUS_0x42c3,Standard +0x25591,CUS_0x4c9,Standard +0x2559d,CUS_0x731c,Standard +0x255a9,CUS_0xa066,High +0x255b5,CUS_0x867e,High +0x255c1,CUS_0x7dc5,High +0x255cd,CUS_0xa568,Low +0x255d9,CUS_0x701f,Standard +0x255e5,CUS_0xb80d,High +0x255f1,CUS_0xa407,Standard +0x255fd,CUS_0x9d41,Standard +0x25609,CUS_0xb3d7,Standard +0x25615,CUS_0xb333,Standard +0x25621,CUS_0x6f5d,High +0x2562d,CUS_0x27df,Standard +0x25639,CUS_0x16a5,Standard +0x25645,CUS_0x5b2a,Low +0x25651,CUS_0x8fe0,Standard +0x2565d,CUS_0x2bc8,Standard +0x25669,CUS_0x2bc4,Standard +0x25675,CUS_0x4e80,Standard +0x25681,CUS_0xa762,Low +0x2568d,CUS_0x63db,Standard +0x25699,CUS_0xac4a,Standard +0x256a5,CUS_0x5665,Standard +0x256b1,CUS_0x6427,Standard +0x256bd,CUS_0x48ca,Low +0x256c9,CUS_0xb807,High +0x256d5,CUS_0x3d9c,Low +0x256e1,CUS_0x113e,High +0x256ed,CUS_0xa776,High +0x256f9,CUS_0xac85,High +0x25705,CUS_0x42ca,Standard +0x25711,CUS_0x3124,Low +0x2571d,CUS_0x6e9,Low +0x25729,CUS_0x8d43,High +0x25735,CUS_0x6701,Standard +0x25741,CUS_0x9d04,Standard +0x2574d,CUS_0xbb21,Standard +0x25759,CUS_0x1ab8,Standard +0x25765,CUS_0x9209,High +0x25771,CUS_0xac58,Standard +0x2577d,CUS_0x9330,Low +0x25789,CUS_0x5b6c,High +0x25795,CUS_0x5af6,Standard +0x257a1,CUS_0x9cdc,Low +0x257ad,CUS_0x9038,Standard +0x257b9,CUS_0x972a,Standard +0x257c5,CUS_0x21b7,Standard +0x257d1,CUS_0xacda,High +0x257dd,CUS_0xc195,Standard +0x257e9,CUS_0x95c9,High +0x257f5,CUS_0xa789,High +0x25801,CUS_0x1044,Standard +0x2580d,CUS_0x70d6,Standard +0x25819,CUS_0x6120,High +0x25825,CUS_0x797a,Low +0x25831,CUS_0x1130,Low +0x2583d,CUS_0x76fb,Standard +0x25849,CUS_0x1c83,Standard +0x25855,CUS_0x720e,High +0x25861,CUS_0x81e8,Standard +0x2586d,CUS_0x4ad5,Standard +0x25879,CUS_0x4c59,Standard +0x25885,CUS_0xdcc,High +0x25891,CUS_0x3278,Low +0x2589d,CUS_0x50c4,High +0x258a9,CUS_0xbf23,Standard +0x258b5,CUS_0x38c2,Standard +0x258c1,CUS_0x29f5,Standard +0x258cd,CUS_0xab5f,Standard +0x258d9,CUS_0xa42f,High +0x258e5,CUS_0xa756,Standard +0x258f1,CUS_0x7d4d,Standard +0x258fd,CUS_0x828b,Standard +0x25909,CUS_0x231f,Standard +0x25915,CUS_0x5cc4,High +0x25921,CUS_0x5fbb,High +0x2592d,CUS_0x7bec,Standard +0x25939,CUS_0x1e84,Low +0x25945,CUS_0x5606,Standard +0x25951,CUS_0x5fcb,Standard +0x2595d,CUS_0x3e03,Standard +0x25969,CUS_0xbd2e,High +0x25975,CUS_0xc675,High +0x25981,CUS_0x5054,Low +0x2598d,CUS_0x27e5,Standard +0x25999,CUS_0x2002,Standard +0x259a5,CUS_0x6f95,Standard +0x259b1,CUS_0x1f97,Standard +0x259bd,CUS_0xbf18,Standard +0x259c9,CUS_0x9efc,Standard +0x259d5,CUS_0xb5b5,High +0x259e1,CUS_0x85a2,High +0x259ed,CUS_0x8c51,Low +0x259f9,CUS_0x5f5a,Standard +0x25a05,CUS_0x16b6,Low +0x25a11,CUS_0x531a,Standard +0x25a1d,CUS_0x50e9,Standard +0x25a29,CUS_0xb57,High +0x25a35,CUS_0x523e,Standard +0x25a41,CUS_0x9f04,Standard +0x25a4d,CUS_0x21d8,Standard +0x25a59,CUS_0x2274,Standard +0x25a65,CUS_0xc633,Standard +0x25a71,CUS_0xb5e4,High +0x25a7d,CUS_0xc429,Standard +0x25a89,CUS_0x4e14,Low +0x25a95,CUS_0x2d37,Standard +0x25aa1,CUS_0x46a2,Standard +0x25aad,CUS_0x55f0,Standard +0x25ab9,CUS_0x8eb8,Standard +0x25ac5,CUS_0x22c4,Standard +0x25ad1,CUS_0x4dc9,Standard +0x25add,CUS_0xbb53,High +0x25ae9,CUS_0x9ed9,Standard +0x25af5,CUS_0x50d4,High +0x25b01,CUS_0xffd,Standard +0x25b0d,CUS_0x4c9a,High +0x25b19,CUS_0xa93b,Standard +0x25b25,CUS_0x8848,High +0x25b31,CUS_0x6334,Standard +0x25b3d,CUS_0xb59b,Low +0x25b49,CUS_0x5e3f,High +0x25b55,CUS_0x2954,Standard +0x25b61,CUS_0x407e,Standard +0x25b6d,CUS_0xbc38,Standard +0x25b79,CUS_0x56e5,Standard +0x25b85,CUS_0xb997,Standard +0x25b91,CUS_0x7701,Low +0x25b9d,CUS_0x509d,Standard +0x25ba9,CUS_0xa66c,Low +0x25bb5,CUS_0xbce0,Standard +0x25bc1,CUS_0x52ee,Standard +0x25bcd,CUS_0x48a,Low +0x25bd9,CUS_0x6c58,Standard +0x25be5,CUS_0x41d3,Low +0x25bf1,CUS_0x5b77,Standard +0x25bfd,CUS_0x4af4,Standard +0x25c09,CUS_0x4bff,Standard +0x25c15,CUS_0x2cb5,Standard +0x25c21,CUS_0x436f,Standard +0x25c2d,CUS_0x870c,Low +0x25c39,CUS_0x6044,Standard +0x25c45,CUS_0x163c,Low +0x25c51,CUS_0x7a7d,High +0x25c5d,CUS_0x965d,Low +0x25c69,CUS_0x3f82,High +0x25c75,CUS_0x7b65,Standard +0x25c81,CUS_0x90a1,Standard +0x25c8d,CUS_0xdfd,High +0x25c99,CUS_0x74e7,Standard +0x25ca5,CUS_0x62f4,High +0x25cb1,CUS_0xdca,High +0x25cbd,CUS_0x3397,Standard +0x25cc9,CUS_0x3f2d,Low +0x25cd5,CUS_0x450,Standard +0x25ce1,CUS_0x1956,Standard +0x25ced,CUS_0x862b,Standard +0x25cf9,CUS_0x290c,High +0x25d05,CUS_0xb5c3,Standard +0x25d11,CUS_0x504e,Standard +0x25d1d,CUS_0x10f9,Standard +0x25d29,CUS_0xbbdd,Standard +0x25d35,CUS_0x85dd,Standard +0x25d41,CUS_0xc22f,Standard +0x25d4d,CUS_0x2637,Standard +0x25d59,CUS_0x4f88,High +0x25d65,CUS_0x650,Standard +0x25d71,CUS_0x1b3b,Low +0x25d7d,CUS_0x4c83,Standard +0x25d89,CUS_0x544,Low +0x25d95,CUS_0x94de,Low +0x25da1,CUS_0x5d6d,Standard +0x25dad,CUS_0x2829,Standard +0x25db9,CUS_0xae66,High +0x25dc5,CUS_0x738b,Low +0x25dd1,CUS_0x296f,High +0x25ddd,CUS_0x1d9e,Low +0x25de9,CUS_0x2e91,Standard +0x25df5,CUS_0x30fc,Standard +0x25e01,CUS_0xb09,Standard +0x25e0d,CUS_0xbd8f,High +0x25e19,CUS_0x68ea,Low +0x25e25,CUS_0x1132,High +0x25e31,CUS_0x1ea8,Standard +0x25e3d,CUS_0xc394,Standard +0x25e49,CUS_0xadbd,Standard +0x25e55,CUS_0x11c7,Low +0x25e61,CUS_0x6294,Standard +0x25e6d,CUS_0x9674,High +0x25e79,CUS_0x9ce3,High +0x25e85,CUS_0x4a8f,High +0x25e91,CUS_0x1b07,Standard +0x25e9d,CUS_0xc345,Standard +0x25ea9,CUS_0x90ac,Standard +0x25eb5,CUS_0x62f5,Low +0x25ec1,CUS_0x334b,Standard +0x25ecd,CUS_0x1232,Standard +0x25ed9,CUS_0x64f0,Standard +0x25ee5,CUS_0x40ad,High +0x25ef1,CUS_0x2c0a,Standard +0x25efd,CUS_0x8788,Standard +0x25f09,CUS_0x944e,Low +0x25f15,CUS_0x3048,High +0x25f21,CUS_0x1285,Standard +0x25f2d,CUS_0x1d18,Standard +0x25f39,CUS_0x3855,Low +0x25f45,CUS_0x47fa,Standard +0x25f51,CUS_0x89aa,Standard +0x25f5d,CUS_0x4986,Low +0x25f69,CUS_0xa053,Standard +0x25f75,CUS_0x1619,High +0x25f81,CUS_0x2654,Low +0x25f8d,CUS_0xb11c,High +0x25f99,CUS_0xad4f,Low +0x25fa5,CUS_0x51b3,Standard +0x25fb1,CUS_0x2084,Standard +0x25fbd,CUS_0x372c,Low +0x25fc9,CUS_0xf16,Low +0x25fd5,CUS_0xaf61,Standard +0x25fe1,CUS_0x8600,Standard +0x25fed,CUS_0x942c,High diff --git a/强化学习个人课程作业报告/outputs/tables/clustering_comparison.csv b/强化学习个人课程作业报告/outputs/tables/clustering_comparison.csv index 4a4e470..339a84f 100644 --- a/强化学习个人课程作业报告/outputs/tables/clustering_comparison.csv +++ b/强化学习个人课程作业报告/outputs/tables/clustering_comparison.csv @@ -1,8 +1,8 @@ -k,inertia,silhouette_x,log_likelihood,bic,aic,silhouette_y -2,1092962.434364126,0.174016661115075,181335.84491703784,-359250.54291550705,-362061.6898340757,0.41420390111182703 -3,1018586.5047121042,0.17317021187208304,554291.2303605897,-1103445.131905755,-1107666.4607211794,0.2977020104302583 -4,953249.4382030136,0.18080059886795355,972834.1094461675,-1938814.7081800548,-1944446.218892335,0.3964327255424141 -5,889284.892342685,0.1964251564081267,1002913.0930748597,-1997256.4935405836,-2004298.1861497194,0.40146893512413845 -6,818950.9117652641,0.17683056672008368,1180025.734163945,-2349765.5938218986,-2358217.46832789,0.24683353848428613 -7,777658.2185885893,0.197056012688701,1203191.531501821,-2394381.006600795,-2404243.063003642,0.3109553553475885 -8,691940.8330833976,0.20149802939267383,1261969.3739466753,-2510220.5095936474,-2521492.7478933507,0.17264064800570944 +k,inertia,silhouette_x,log_likelihood,bic,aic,silhouette_y +2,1092962.434364126,0.174016661115075,181335.84491703784,-359250.54291550705,-362061.6898340757,0.41420390111182703 +3,1018586.5047121042,0.17317021187208304,554291.2303605897,-1103445.131905755,-1107666.4607211794,0.2977020104302583 +4,953249.4382030136,0.18080059886795355,972834.1094461675,-1938814.7081800548,-1944446.218892335,0.3964327255424141 +5,889284.892342685,0.1964251564081267,1002913.0930748597,-1997256.4935405836,-2004298.1861497194,0.40146893512413845 +6,818950.9117652641,0.17683056672008368,1180025.734163945,-2349765.5938218986,-2358217.46832789,0.24683353848428613 +7,777658.2185885893,0.197056012688701,1203191.531501821,-2394381.006600795,-2404243.063003642,0.3109553553475885 +8,691940.8330833976,0.20149802939267383,1261969.3739466753,-2510220.5095936474,-2521492.7478933507,0.17264064800570944 diff --git a/强化学习个人课程作业报告/outputs/tables/model_comparison_summary.csv b/强化学习个人课程作业报告/outputs/tables/model_comparison_summary.csv index a1d7d6d..c6dbc08 100644 --- a/强化学习个人课程作业报告/outputs/tables/model_comparison_summary.csv +++ b/强化学习个人课程作业报告/outputs/tables/model_comparison_summary.csv @@ -1,2 +1,2 @@ -model,train_accuracy,val_accuracy,train_f1_macro,val_f1_macro,val_f1_High,val_f1_Low,val_f1_Standard -Baseline_LR,0.7595294117647059,0.7337904761904762,0.7493991157707756,0.7234383324236036,0.7663239074550129,0.6487372909150542,0.7552537989007436 +model,train_accuracy,val_accuracy,train_f1_macro,val_f1_macro,val_f1_High,val_f1_Low,val_f1_Standard +Baseline_LR,0.7595294117647059,0.7337904761904762,0.7493991157707756,0.7234383324236036,0.7663239074550129,0.6487372909150542,0.7552537989007436 diff --git a/强化学习个人课程作业报告/outputs/tables/personalised_improvement_summary.csv b/强化学习个人课程作业报告/outputs/tables/personalised_improvement_summary.csv index 0d12abd..e514fe8 100644 --- a/强化学习个人课程作业报告/outputs/tables/personalised_improvement_summary.csv +++ b/强化学习个人课程作业报告/outputs/tables/personalised_improvement_summary.csv @@ -1,7 +1,7 @@ -model,train_accuracy,val_accuracy,train_f1_macro,val_f1_macro,val_f1_High,val_f1_Low,val_f1_Standard,train_time -Baseline_LR,0.7593680672268908,0.7341714285714286,0.7492574544185482,0.7237629331592531,0.7665209565440987,0.6489501312335958,0.7558177117000646, -RandomForest,1.0,0.7877333333333333,1.0,0.770789728543472,0.7874554916461244,0.7095334685598377,0.8153802254244543,57.91048526763916 -XGBoost,0.8519529411764706,0.8371047619047619,0.8297116592669606,0.8143842728003406,0.8904623073719283,0.6944039941751612,0.8582865168539325,67.63970804214478 -XGBoost_Tuned,0.9767663865546219,0.8700190476190476,0.9739400525375727,0.8519502714571496,0.9084439578486383,0.7620280474649407,0.8853788090578697,142.65462470054626 -XGB_CatA_MissingHandling,0.9772638655462185,0.870552380952381,0.9745439553742655,0.8529411889528661,0.910207423580786,0.763542562338779,0.885073580939033, -Ensemble_SoftVoting,0.9972436974789916,0.8675047619047619,0.9969472283391928,0.851001101708816,0.9024125779343996,0.7684120902511707,0.8821786369408776, +model,train_accuracy,val_accuracy,train_f1_macro,val_f1_macro,val_f1_High,val_f1_Low,val_f1_Standard,train_time +Baseline_LR,0.7593680672268908,0.7341714285714286,0.7492574544185482,0.7237629331592531,0.7665209565440987,0.6489501312335958,0.7558177117000646, +RandomForest,1.0,0.7877333333333333,1.0,0.770789728543472,0.7874554916461244,0.7095334685598377,0.8153802254244543,57.91048526763916 +XGBoost,0.8519529411764706,0.8371047619047619,0.8297116592669606,0.8143842728003406,0.8904623073719283,0.6944039941751612,0.8582865168539325,67.63970804214478 +XGBoost_Tuned,0.9767663865546219,0.8700190476190476,0.9739400525375727,0.8519502714571496,0.9084439578486383,0.7620280474649407,0.8853788090578697,142.65462470054626 +XGB_CatA_MissingHandling,0.9772638655462185,0.870552380952381,0.9745439553742655,0.8529411889528661,0.910207423580786,0.763542562338779,0.885073580939033, +Ensemble_SoftVoting,0.9972436974789916,0.8675047619047619,0.9969472283391928,0.851001101708816,0.9024125779343996,0.7684120902511707,0.8821786369408776, diff --git a/强化学习个人项目报告/TASK_PROGRESS.md b/强化学习个人项目报告/TASK_PROGRESS.md index 160836a..e4d6988 100644 --- a/强化学习个人项目报告/TASK_PROGRESS.md +++ b/强化学习个人项目报告/TASK_PROGRESS.md @@ -26,6 +26,9 @@ | ✅ 环境预处理 | 灰度化 + Resize(84×84) + 帧堆叠(4帧) Wrapper | [src/utils.py](src/utils.py) | | ✅ 评估脚本 | 渲染测试 + 多回合平均分数评估 | [src/evaluate.py](src/evaluate.py) | | ✅ 训练入口 | 主训练循环、TensorBoard 记录、模型保存 | [train.py](train.py) | +| ✅ 并行训练 | 多环境并行采集 + WSL 支持 | [train_parallel.py](train_parallel.py) | +| ✅ WSL 脚本 | 环境配置 + 启动脚本 | [setup_wsl.sh](setup_wsl.sh)、[run_wsl.sh](run_wsl.sh)、[start_wsl_training.bat](start_wsl_training.bat) | +| ✅ 测试脚本 | 快速验证并行环境和网络 | [test_parallel.py](test_parallel.py) | **核心算法实现要点**: - 策略网络:3 层 CNN + FC(512) → μ, σ(高斯策略,tanh 激活) @@ -60,36 +63,54 @@ │ ├── trainer.py # PPO 更新逻辑 │ ├── utils.py # 环境预处理 wrappers │ └── evaluate.py # 评估脚本 -├── train.py # 主训练入口 +├── train.py # 单线程训练入口 +├── train_parallel.py # 多环境并行训练(推荐) +├── setup_wsl.sh # WSL 环境配置 +├── run_wsl.sh # WSL 训练启动脚本 +├── start_wsl_training.bat # Windows 一键启动 WSL 训练 +├── test_parallel.py # 并行训练测试 ├── requirements.txt ├── README.md -└── TASK_PROGRESS.md # 本文档 +├── WSL_README.md # WSL 训练指南 +└── TASK_PROGRESS.md # 本文档 ``` --- ## 四、超参数配置 -| 参数 | 值 | -|------|-----| -| Learning rate | 3e-4 | -| Gamma | 0.99 | -| GAE lambda | 0.95 | -| Clip epsilon | 0.2 | -| PPO epochs | 4 | -| Mini-batch size | 64 | -| Rollout steps | 2048 | -| Entropy coefficient | 0.01 | -| Value coefficient | 0.5 | -| Max gradient norm | 0.5 | -| State shape | (84, 84, 4) | -| Action dim | 3(连续:steer, gas, brake) | +| 参数 | train.py (单线程) | train_parallel.py (并行) | +|------|-------------------|--------------------------| +| Learning rate | 3e-4 | 3e-4 | +| Gamma | 0.99 | 0.99 | +| GAE lambda | 0.95 | 0.98 | +| Clip epsilon | 0.2 | 0.1 | +| PPO epochs | 4 | 10 | +| Mini-batch size | 64 | 128 | +| Rollout steps | 2048 | 2048 | +| Entropy coefficient | 0.01 | 0.005 | +| Value coefficient | 0.5 | 0.75 | +| Max gradient norm | 0.5 | 0.5 | +| 总步数 | 500,000 | 2,000,000 | +| 环境数 | 1 | 4 | +| 预计时长 | ~8h | ~5h (4x) | --- ## 五、下一步行动 -### 立即执行 +### 方案 A:WSL 并行训练(推荐) +```bash +# Windows 下双击 start_wsl_training.bat +# 或手动: +wsl +cd "/mnt/d/Code/doing_exercises/programs/外教作业外快/强化学习个人项目报告" +chmod +x setup_wsl.sh run_wsl.sh +./setup_wsl.sh # 首次运行 +./run_wsl.sh # 开始训练 +``` + +### 方案 B:Windows 单线程训练 ```bash # 1. 安装依赖 uv pip install --system -r requirements.txt diff --git a/强化学习个人项目报告/logs/tensorboard/run_improved_1777564565/events.out.tfevents.1777564565.LHY.35368.0 b/强化学习个人项目报告/logs/tensorboard/run_improved_1777564565/events.out.tfevents.1777564565.LHY.35368.0 new file mode 100644 index 0000000..7151853 Binary files /dev/null and b/强化学习个人项目报告/logs/tensorboard/run_improved_1777564565/events.out.tfevents.1777564565.LHY.35368.0 differ diff --git a/强化学习个人项目报告/logs/tensorboard/run_improved_1777564802/events.out.tfevents.1777564802.LHY.39456.0 b/强化学习个人项目报告/logs/tensorboard/run_improved_1777564802/events.out.tfevents.1777564802.LHY.39456.0 new file mode 100644 index 0000000..b7002a1 Binary files /dev/null and b/强化学习个人项目报告/logs/tensorboard/run_improved_1777564802/events.out.tfevents.1777564802.LHY.39456.0 differ diff --git a/强化学习个人项目报告/logs/tensorboard/run_parallel_1777561439/events.out.tfevents.1777561439.LHY.16748.0 b/强化学习个人项目报告/logs/tensorboard/run_parallel_1777561439/events.out.tfevents.1777561439.LHY.16748.0 new file mode 100644 index 0000000..d449f8f Binary files /dev/null and b/强化学习个人项目报告/logs/tensorboard/run_parallel_1777561439/events.out.tfevents.1777561439.LHY.16748.0 differ diff --git a/强化学习个人项目报告/logs/tensorboard/run_parallel_1777566661/events.out.tfevents.1777566661.LHY.3190.0 b/强化学习个人项目报告/logs/tensorboard/run_parallel_1777566661/events.out.tfevents.1777566661.LHY.3190.0 new file mode 100644 index 0000000..f7f00ac Binary files /dev/null and b/强化学习个人项目报告/logs/tensorboard/run_parallel_1777566661/events.out.tfevents.1777566661.LHY.3190.0 differ diff --git a/强化学习个人项目报告/models/ppo_improved_final.pt b/强化学习个人项目报告/models/ppo_improved_final.pt index f740dca..2bf914a 100644 Binary files a/强化学习个人项目报告/models/ppo_improved_final.pt and b/强化学习个人项目报告/models/ppo_improved_final.pt differ diff --git a/强化学习个人项目报告/requirements.txt b/强化学习个人项目报告/requirements.txt index 266af09..02e08ac 100644 --- a/强化学习个人项目报告/requirements.txt +++ b/强化学习个人项目报告/requirements.txt @@ -2,4 +2,9 @@ torch gymnasium[box2d] numpy matplotlib -tensorboard \ No newline at end of file +tensorboard +opencv-python-headless + +# uv 安装方式(可选): +# curl -LsSf https://astral.sh/uv/install.sh | sh +# uv pip install -r requirements.txt \ No newline at end of file diff --git a/强化学习个人项目报告/train_improved.py b/强化学习个人项目报告/train_improved.py index 3ab0401..dccd2ca 100644 --- a/强化学习个人项目报告/train_improved.py +++ b/强化学习个人项目报告/train_improved.py @@ -1,4 +1,5 @@ -"""Improved training script with reward shaping and better hyperparameters.""" +"""Improved training script for CarRacing-v3 PPO with reward shaping.""" + import os import time import argparse @@ -12,36 +13,34 @@ import cv2 class RewardShapingWrapper(gym.Wrapper): - """Add reward shaping for better learning.""" - def __init__(self, env): super().__init__(env) self.steps_on_track = 0 - + def reset(self, **kwargs): obs, info = self.env.reset(**kwargs) self.steps_on_track = 0 return obs, info - + def step(self, action): obs, reward, terminated, truncated, info = self.env.step(action) done = terminated or truncated - + shaped_reward = reward - - if info.get('speed', 0) > 0.1: - shaped_reward += info['speed'] * 0.1 - - if not info.get('offtrack', False): + + if info.get("speed", 0) > 0.1: + shaped_reward += info["speed"] * 0.1 + + if not info.get("offtrack", False): shaped_reward += 0.1 self.steps_on_track += 1 else: shaped_reward -= 0.5 self.steps_on_track = 0 - - if info.get('lap_complete', False): + + if info.get("lap_complete", False): shaped_reward += 100 - + return obs, shaped_reward, terminated, truncated, info @@ -70,9 +69,7 @@ class FrameStackWrapper(gym.ObservationWrapper): self.frames = deque(maxlen=num_stack) obs_shape = env.observation_space.shape self.observation_space = gym.spaces.Box( - low=0, high=255, - shape=(num_stack, *obs_shape[-2:]), - dtype=np.uint8 + low=0, high=255, shape=(num_stack, *obs_shape[-2:]), dtype=np.uint8 ) def reset(self, **kwargs): @@ -115,7 +112,7 @@ class Actor(nn.Module): def __init__(self, state_shape=(84, 84, 4), action_dim=3): super().__init__() c, h, w = state_shape[2], state_shape[0], state_shape[1] - + self.conv = nn.Sequential( nn.Conv2d(c, 32, kernel_size=8, stride=4), nn.LeakyReLU(0.2), @@ -126,28 +123,28 @@ class Actor(nn.Module): nn.Conv2d(64, 64, kernel_size=3, stride=1), nn.LeakyReLU(0.2), ) - + out_h = (h - 8) // 4 + 1 out_h = (out_h - 4) // 2 + 1 out_h = (out_h - 3) // 1 + 1 feat_size = 64 * out_h * out_h - + self.fc = nn.Sequential( nn.Linear(feat_size, 512), nn.LeakyReLU(0.2), ) self.mu_head = nn.Linear(512, action_dim) self.log_std_head = nn.Linear(512, action_dim) - + for m in self.modules(): if isinstance(m, (nn.Conv2d, nn.Linear)): nn.init.orthogonal_(m.weight, gain=np.sqrt(2)) if m.bias is not None: nn.init.constant_(m.bias, 0) - + nn.init.orthogonal_(self.mu_head.weight, gain=0.01) nn.init.orthogonal_(self.log_std_head.weight, gain=0.01) - + def forward(self, x): x = x / 255.0 x = self.conv(x) @@ -162,7 +159,7 @@ class Critic(nn.Module): def __init__(self, state_shape=(84, 84, 4)): super().__init__() c, h, w = state_shape[2], state_shape[0], state_shape[1] - + self.conv = nn.Sequential( nn.Conv2d(c, 32, kernel_size=8, stride=4), nn.LeakyReLU(0.2), @@ -173,24 +170,20 @@ class Critic(nn.Module): nn.Conv2d(64, 64, kernel_size=3, stride=1), nn.LeakyReLU(0.2), ) - + out_h = (h - 8) // 4 + 1 out_h = (out_h - 4) // 2 + 1 out_h = (out_h - 3) // 1 + 1 feat_size = 64 * out_h * out_h - - self.fc = nn.Sequential( - nn.Linear(feat_size, 512), - nn.LeakyReLU(0.2), - nn.Linear(512, 1) - ) - + + self.fc = nn.Sequential(nn.Linear(feat_size, 512), nn.LeakyReLU(0.2), nn.Linear(512, 1)) + for m in self.modules(): if isinstance(m, (nn.Conv2d, nn.Linear)): nn.init.orthogonal_(m.weight, gain=np.sqrt(2)) if m.bias is not None: nn.init.constant_(m.bias, 0) - + def forward(self, x): x = x / 255.0 x = self.conv(x) @@ -203,14 +196,14 @@ class RolloutBuffer: self.buffer_size = buffer_size self.ptr = 0 self.size = 0 - + self.states = np.zeros((buffer_size, *state_shape), dtype=np.uint8) self.actions = np.zeros((buffer_size, action_dim), dtype=np.float32) self.rewards = np.zeros(buffer_size, dtype=np.float32) self.dones = np.zeros(buffer_size, dtype=np.bool_) self.values = np.zeros(buffer_size, dtype=np.float32) self.log_probs = np.zeros(buffer_size, dtype=np.float32) - + def add(self, state, action, reward, done, value, log_prob): self.states[self.ptr] = state self.actions[self.ptr] = action @@ -220,34 +213,34 @@ class RolloutBuffer: self.log_probs[self.ptr] = log_prob self.ptr = (self.ptr + 1) % self.buffer_size self.size = min(self.size + 1, self.buffer_size) - + def compute_returns(self, last_value, gamma=0.99, gae_lambda=0.98): advantages = np.zeros(self.size, dtype=np.float32) last_gae = 0 - + for t in reversed(range(self.size)): if t == self.size - 1: next_value = last_value else: next_value = self.values[t + 1] - + delta = self.rewards[t] + gamma * next_value * (1 - self.dones[t]) - self.values[t] last_gae = delta + gamma * gae_lambda * (1 - self.dones[t]) * last_gae advantages[t] = last_gae - - returns = advantages + self.values[:self.size] + + returns = advantages + self.values[: self.size] return returns, advantages - + def get(self): return ( - self.states[:self.size], - self.actions[:self.size], - self.rewards[:self.size], - self.dones[:self.size], - self.values[:self.size], - self.log_probs[:self.size], + self.states[: self.size], + self.actions[: self.size], + self.rewards[: self.size], + self.dones[: self.size], + self.values[: self.size], + self.log_probs[: self.size], ) - + def reset(self): self.ptr = 0 self.size = 0 @@ -282,55 +275,53 @@ class PPOTrainer: self.max_grad_norm = max_grad_norm self.ppo_epochs = ppo_epochs self.mini_batch_size = mini_batch_size - + self.actor_optim = torch.optim.Adam(actor.parameters(), lr=lr, eps=1e-5) self.critic_optim = torch.optim.Adam(critic.parameters(), lr=lr, eps=1e-5) - - self.total_updates = 0 - + def update(self, last_value): states, actions, rewards, dones, values, log_probs_old = self.buffer.get() - + returns, advantages = self.buffer.compute_returns(last_value, self.gamma, self.gae_lambda) - + advantages = (advantages - advantages.mean()) / (advantages.std() + 1e-8) - + states_t = torch.from_numpy(states).float().permute(0, 3, 1, 2).to(self.device) actions_t = torch.from_numpy(actions).float().to(self.device) log_probs_old_t = torch.from_numpy(log_probs_old).float().to(self.device) returns_t = torch.from_numpy(returns).float().to(self.device) advantages_t = torch.from_numpy(advantages).float().to(self.device) - + dataset = torch.utils.data.TensorDataset( states_t, actions_t, log_probs_old_t, returns_t, advantages_t ) loader = torch.utils.data.DataLoader(dataset, batch_size=self.mini_batch_size, shuffle=True) - + total_actor_loss = 0 total_critic_loss = 0 total_entropy = 0 count = 0 - + for _ in range(self.ppo_epochs): for batch in loader: s, a, log_pi_old, ret, adv = batch - + mu, std = self.actor(s) dist = torch.distributions.Normal(mu, std) log_pi = dist.log_prob(a).sum(dim=-1) entropy = dist.entropy().sum(dim=-1) - + ratio = torch.exp(log_pi - log_pi_old) - + surr1 = ratio * adv surr2 = torch.clamp(ratio, 1 - self.clip_eps, 1 + self.clip_eps) * adv actor_loss = -torch.min(surr1, surr2).mean() - + value = self.critic(s) critic_loss = nn.MSELoss()(value.squeeze(), ret) - + loss = actor_loss + self.vf_coef * critic_loss - self.ent_coef * entropy.mean() - + self.actor_optim.zero_grad() self.critic_optim.zero_grad() loss.backward() @@ -338,18 +329,16 @@ class PPOTrainer: nn.utils.clip_grad_norm_(self.critic.parameters(), self.max_grad_norm) self.actor_optim.step() self.critic_optim.step() - + total_actor_loss += actor_loss.item() total_critic_loss += critic_loss.item() total_entropy += entropy.mean().item() count += 1 - - self.total_updates += 1 - + avg_actor = total_actor_loss / count avg_critic = total_critic_loss / count avg_entropy = total_entropy / count - + self.buffer.reset() return avg_actor, avg_critic, avg_entropy @@ -357,10 +346,10 @@ class PPOTrainer: def collect_rollout(actor, critic, env, buffer, device, rollout_steps): obs, _ = env.reset() obs = np.transpose(obs, (1, 2, 0)) - + for step in range(rollout_steps): obs_t = torch.from_numpy(obs).float().unsqueeze(0).permute(0, 3, 1, 2).to(device) - + with torch.no_grad(): mu, std = actor(obs_t) dist = torch.distributions.Normal(mu, std) @@ -368,27 +357,27 @@ def collect_rollout(actor, critic, env, buffer, device, rollout_steps): action = torch.clamp(action, -1, 1) log_prob = dist.log_prob(action).sum(dim=-1) value = critic(obs_t).squeeze(0).item() - + action_np = action.squeeze(0).cpu().numpy() log_prob_np = log_prob.squeeze(0).cpu().numpy() - + next_obs, reward, terminated, truncated, _ = env.step(action_np) done = terminated or truncated - + next_obs_stored = np.transpose(next_obs, (1, 2, 0)) - + buffer.add(obs.copy(), action_np, reward, done, value, log_prob_np) - + obs = next_obs_stored - + if done: obs, _ = env.reset() obs = np.transpose(obs, (1, 2, 0)) - + return obs -def train_improved( +def train( total_steps=2000000, rollout_steps=2048, eval_interval=10, @@ -397,22 +386,22 @@ def train_improved( ): if device is None: device = get_device() - + env = make_env() eval_env = make_env() - + state_shape = (84, 84, 4) action_dim = 3 - + actor = Actor(state_shape=state_shape, action_dim=action_dim).to(device) critic = Critic(state_shape=state_shape).to(device) - + buffer = RolloutBuffer( buffer_size=rollout_steps, state_shape=state_shape, action_dim=action_dim, ) - + trainer = PPOTrainer( actor=actor, critic=critic, @@ -428,46 +417,48 @@ def train_improved( ppo_epochs=10, mini_batch_size=128, ) - + log_dir = os.path.join("logs", "tensorboard", f"run_improved_{int(time.time())}") writer = SummaryWriter(log_dir) - + print(f"Training on {device}") print(f"Log directory: {log_dir}") - print("Improvements: LeakyReLU, BatchNorm, He init, Reward shaping, LR decay, More epochs") - + print("Improvements: LeakyReLU, BatchNorm, He init, Reward shaping, More epochs") + episode = 0 total_timesteps = 0 episode_rewards = [] - best_eval = -float('inf') - + best_eval = -float("inf") + while total_timesteps < total_steps: obs = collect_rollout(actor, critic, env, buffer, device, rollout_steps) - + with torch.no_grad(): obs_t = torch.from_numpy(obs).float().unsqueeze(0).permute(0, 3, 1, 2).to(device) last_value = critic(obs_t).squeeze(0).item() - + actor_loss, critic_loss, entropy = trainer.update(last_value) - + writer.add_scalar("Loss/Actor", actor_loss, total_timesteps) writer.add_scalar("Loss/Critic", critic_loss, total_timesteps) writer.add_scalar("Loss/Entropy", entropy, total_timesteps) - + total_timesteps += rollout_steps episode += 1 - - ep_reward = buffer.rewards[:buffer.size].sum() + + ep_reward = buffer.rewards[: buffer.size].sum() episode_rewards.append(ep_reward) - + recent_rewards = episode_rewards[-10:] if len(episode_rewards) >= 10 else episode_rewards avg_reward = np.mean(recent_rewards) - + writer.add_scalar("Reward/Episode", ep_reward, total_timesteps) writer.add_scalar("Reward/AvgLast10", avg_reward, total_timesteps) - - print(f"Episode {episode}, steps {total_timesteps}, ep_reward={ep_reward:.1f}, avg_10={avg_reward:.1f}") - + + print( + f"Episode {episode}, steps {total_timesteps}, ep_reward={ep_reward:.1f}, avg_10={avg_reward:.1f}" + ) + if episode % eval_interval == 0: eval_returns = [] for _ in range(5): @@ -475,54 +466,69 @@ def train_improved( eval_obs = np.transpose(eval_obs, (1, 2, 0)) eval_reward = 0 done = False - + while not done: with torch.no_grad(): - eval_obs_t = torch.from_numpy(eval_obs).float().unsqueeze(0).permute(0, 3, 1, 2).to(device) + eval_obs_t = ( + torch.from_numpy(eval_obs) + .float() + .unsqueeze(0) + .permute(0, 3, 1, 2) + .to(device) + ) mu, std = actor(eval_obs_t) action = torch.clamp(mu, -1, 1).squeeze(0).cpu().numpy() eval_obs, reward, terminated, truncated, _ = eval_env.step(action) eval_obs = np.transpose(eval_obs, (1, 2, 0)) eval_reward += reward done = terminated or truncated - + eval_returns.append(eval_reward) - + mean_eval = np.mean(eval_returns) writer.add_scalar("Eval/MeanReturn", mean_eval, episode) print(f" Eval: mean_return={mean_eval:.2f}") - + if mean_eval > best_eval: best_eval = mean_eval os.makedirs("models", exist_ok=True) - torch.save({ + torch.save( + { + "actor": actor.state_dict(), + "critic": critic.state_dict(), + "episode": episode, + "timesteps": total_timesteps, + "best_eval": best_eval, + }, + os.path.join("models", "ppo_improved_best.pt"), + ) + print(f" New best model saved! eval={best_eval:.2f}") + + if episode % save_interval == 0: + os.makedirs("models", exist_ok=True) + torch.save( + { "actor": actor.state_dict(), "critic": critic.state_dict(), "episode": episode, "timesteps": total_timesteps, - "best_eval": best_eval, - }, os.path.join("models", "ppo_improved_best.pt")) - print(f" New best model saved! eval={best_eval:.2f}") - - if episode % save_interval == 0: - os.makedirs("models", exist_ok=True) - torch.save({ - "actor": actor.state_dict(), - "critic": critic.state_dict(), - "episode": episode, - "timesteps": total_timesteps, - }, os.path.join("models", f"ppo_improved_ep{episode}.pt")) + }, + os.path.join("models", f"ppo_improved_ep{episode}.pt"), + ) print(f" Saved model at episode {episode}") - + os.makedirs("models", exist_ok=True) - torch.save({ - "actor": actor.state_dict(), - "critic": critic.state_dict(), - "episode": episode, - "timesteps": total_timesteps, - "best_eval": best_eval, - }, os.path.join("models", "ppo_improved_final.pt")) - + torch.save( + { + "actor": actor.state_dict(), + "critic": critic.state_dict(), + "episode": episode, + "timesteps": total_timesteps, + "best_eval": best_eval, + }, + os.path.join("models", "ppo_improved_final.pt"), + ) + writer.close() env.close() eval_env.close() @@ -534,6 +540,6 @@ if __name__ == "__main__": parser.add_argument("--steps", type=int, default=2000000, help="Total training steps") parser.add_argument("--rollout", type=int, default=2048, help="Rollout buffer size") args = parser.parse_args() - + device = get_device() - train_improved(total_steps=args.steps, rollout_steps=args.rollout, device=device) + train(total_steps=args.steps, rollout_steps=args.rollout, device=device) diff --git a/资料/coursework1_extracted.txt b/资料/coursework1_extracted.txt index ca4fa1c..5acb818 100644 --- a/资料/coursework1_extracted.txt +++ b/资料/coursework1_extracted.txt @@ -1,251 +1,251 @@ - XJTLU Entrepreneur College (Taicang) Cover Sheet - - Module code and Title DTS307TC Reinforcement Learning - School Title School of AI and Advanced Computing - Assignment Title Coursework 1 - Submission Deadline 04/May/2026 23:59 - Final Word Count - If you agree to let the university use your work anonymously for teaching - and learning purposes, please type “yes” here. - - -I certify that I have read and understood the University’s Policy for dealing with Plagiarism, -Collusion and the Fabrication of Data (available on Learning Mall Online). With reference to this -policy I certify that: - - • My work does not contain any instances of plagiarism and/or collusion. - My work does not contain any fabricated data. - - - -By uploading my assignment onto Learning Mall Online, I formally declare -that all of the above information is true to the best of my knowledge and -belief. - Scoring – For Tutor Use - Student ID - - Stage of Marker Learning Outcomes Achieved (F/P/M/D) Final - Marking Code (please modify as appropriate) Score - A B C - 1st Marker – red - pen - Moderation The original mark has been accepted by the moderator Y/N - IM (please circle as appropriate): - – green pen Initials - Data entry and score calculation have been checked by Y - another tutor (please circle): - 2nd Marker if - needed – green - pen - For Academic Office Use Possible Academic Infringement (please tick as appropriate) - Date Days Late ☐ Category A - Received late Penalty Total Academic Infringement Penalty - ☐ Category B (A,B, C, D, E, Please modify where - necessary) _____________________ - ☐ Category C - ☐ Category D - ☐ Category E - School of Artificial Intelligence and Advanced Computing -Xi’an Jiaotong-Liverpool University - - - - - DTS307TC Reinforcement Learning - - Coursework - Individual Report - -Due: 04/May/2026 23:59 -Weight: 40% -Maximum score: 40 marks - - - - -Overview - -The purpose of this assignment is to gain experience in Python programming and the design of -reinforcement leaning algorithms. You are expected to implement an RL algorithm that solves a -specific environment and provide an explanation of the algorithm’s methodology. You are expected -to analyse your results, including challenges and your solutions. - - -Learning Outcomes Assessed - -A: Systematically understand the fundamental concepts and principles of reinforcement learning -B: Critically analyse real-life problem situations and expertly map them as reinforcement learning -tasks. -C: Mastery of Monte Carlo Methods and Temporal Difference Learning -D: Proficiency in Deep Reinforcement Learning algorithms - - -Late policy - -5% of the total marks available for the assessment shall be deducted from the assessment mark for -each working day after the submission date, up to a maximum of five working days - - -Avoid Plagiarism - - • Do not submit work from other students. - - • Do not share code/work with other students - - • Do not use open-source code as it is or without proper reference. - - - - - 2 - Risks - - • Please read the coursework instructions and requirements carefully. Not following these instructions - and requirements may result in a loss of marks. - • The assignment must be submitted via Learning Mall. Only electronic submission is accepted - and no hard copy submission. - • All students must download their file and check that it is viewable after submission. Documents - may become corrupted during the uploading process (e.g. due to slow internet connections). - However, students are responsible for submitting a functional and correct file for assessments. - • Academic Integrity Policy is strictly followed. - - -Individual Report (40 marks) - -The primary objective of this coursework is to familiarize students with the PPO algorithm using -basic deep learning libraries, enabling them to improve their capability in transferring mathematical -and theoretical knowledge into Python implementation, and further their understanding of the actor- -critic algorithm. - - -Algorithm Overview - -Proximal Policy Optimization (PPO) is a state-of-the-art reinforcement learning algorithm that optimizes -a stochastic policy in an on-policy manner. To ensure stable training and avoid catastrophic performance -collapse, PPO utilizes a clipped surrogate objective to prevent the policy update from stepping too -far from the current behavior. - - -The Environment: CarRacing-v3 - -We will be using the Car Racing environment from the OpenAI Gymnasium. This environment -features a top-down racing track where the agent must learn to navigate through tiles based on -pixel inputs. You can find more details about this environment on their website.(https://gymnasium. -farama.org/environments/box2d/car_racing/) -Here’s a code snippet for you to get started: - -import gymnasium as gym -env = gym . make ( " CarRacing - v3 " , render_mode = " rgb_array " ) -env . reset () - -Since CarRacing-v3 is quite computationally expensive for a standard laptop (due to the pixel processing), -you might want to consider using a gray-scaling or frame-stacking wrapper to speed up training. -Alternatively, you can also use the lab computers, which have GPUs and have all the environment -already set up. - - -The PPO Agent - -You will implement an RL agent using PPO to play the CarRacing-v3 environment. The agent -will use the standard observation and actions provided by the environment. You may edit the - - 3 - environment to speed up your training, but your agent must still perform well in the standard -environment. (i.e, removing the camera zoom at the beginning is allowed during training, but -your agent should still be tested in the original environment.) You should record your training and -evaluation process using Tensorboard. You should also record important losses and other data for -your analysis later. - - -The Report - -Upon completion of your implementation, you are required to submit a comprehensive technical -report. The report should document your engineering decisions, the theoretical grounding of your -code, and a critical analysis of the agent’s performance. - - 1. Introduction - - • Provide a brief overview of Reinforcement Learning in the context of the CarRacing-v3 - environment. - • Define the state space (pixels), action space (discrete commands), and the reward structure - of the task. - - 2. Methodology - - • Mathematical Foundation: Formulate the PPO objective function. Explain the significance - of the clipping parameter and the probability ratio. - • Advantage Estimation: Describe your method for calculating advantages (e.g., standard - advantage vs. Generalized Advantage Estimation (GAE)). - - 3. Implementation Details - - • Describe your implementation, including any challenges faced and how you addressed - them. - • Explain the structure of your policy and value networks. - • Detail the training process and hyperparameters used. - - 4. Results and Analysis - - • Present your results (use graphs for better clarity). - • Discuss the performance of your agent and any trends observed. - • Briefly compare your custom implementation’s stability and sample efficiency against baseline - benchmarks (e.g., Stable-Baselines3). - - 5. Conclusion - - • Summarize your key findings regarding the sensitivity of PPO to hyperparameter tuning - and the effectiveness of the actor-critic framework in continuous-input environments. - - Note: All figures and plots must be clearly labeled with axes titles and legends. Raw code - snippets should be kept to a minimum in the report; focus on high-level logic and pseudo- - code where necessary. - - - - - 4 - Important Note - - • Do NOT use Stable-baselines libraries or any other reinforcement learning specific libraries in - your implementation (You may use tensorboard for recording your results). - - • Do NOT exceed the word count limit of 3000 words for each report, reference and appendix - excluded. - - • Although you are allowed to use any generative AI tools to assist your work, please keep in mind - that you should be using them responsibly. (Good use: Improve your report after writing it - and always review its output to ensure that it is correct. Bad use: Copy-pasting an entire report - from AI without any effort of your own. ) - - -Submission Requirements - -Please prepare and submit the following documents: - - • A cover page featuring your student ID. This page should be the first page of your report. - - • A zip file containing all the source codes and your trained agent model, which should be named - using your full name and student ID in the following format: CW1_ID_Name.zip - - • One PDF file for your report. The file should be separated from the zip file, which contains your - code. The files should be named in the following format: CW1_ID_Name.pdf - -Note that the quality of the code, the clarity of your writing, and the format/style of your report will -be taken into consideration during the evaluation. The detailed rubric is outlined below. - - -Rubric - - CW1 (40 makrs) Criteria Marks - Code Performance Code runs without errors and performs tasks as specified. 6 - Code Quality Code is well-organized, includes meaningful comments, and uses appropriate variable names. 6 - Methodology Comprehensive coverage of topics with detailed explanations of approaches and methodologies. 6 - Result analysis Insightful analysis of results. 6 - Report Quality Report is well-structured, formatted, and free of grammatical errors. 6 - Evidence of Work All required elements are included and correct. 6 - Submission Follows all requirements for submission 4 - - - - - 5 + XJTLU Entrepreneur College (Taicang) Cover Sheet + + Module code and Title DTS307TC Reinforcement Learning + School Title School of AI and Advanced Computing + Assignment Title Coursework 1 + Submission Deadline 04/May/2026 23:59 + Final Word Count + If you agree to let the university use your work anonymously for teaching + and learning purposes, please type “yes” here. + + +I certify that I have read and understood the University’s Policy for dealing with Plagiarism, +Collusion and the Fabrication of Data (available on Learning Mall Online). With reference to this +policy I certify that: + + • My work does not contain any instances of plagiarism and/or collusion. + My work does not contain any fabricated data. + + + +By uploading my assignment onto Learning Mall Online, I formally declare +that all of the above information is true to the best of my knowledge and +belief. + Scoring – For Tutor Use + Student ID + + Stage of Marker Learning Outcomes Achieved (F/P/M/D) Final + Marking Code (please modify as appropriate) Score + A B C + 1st Marker – red + pen + Moderation The original mark has been accepted by the moderator Y/N + IM (please circle as appropriate): + – green pen Initials + Data entry and score calculation have been checked by Y + another tutor (please circle): + 2nd Marker if + needed – green + pen + For Academic Office Use Possible Academic Infringement (please tick as appropriate) + Date Days Late ☐ Category A + Received late Penalty Total Academic Infringement Penalty + ☐ Category B (A,B, C, D, E, Please modify where + necessary) _____________________ + ☐ Category C + ☐ Category D + ☐ Category E + School of Artificial Intelligence and Advanced Computing +Xi’an Jiaotong-Liverpool University + + + + + DTS307TC Reinforcement Learning + + Coursework - Individual Report + +Due: 04/May/2026 23:59 +Weight: 40% +Maximum score: 40 marks + + + + +Overview + +The purpose of this assignment is to gain experience in Python programming and the design of +reinforcement leaning algorithms. You are expected to implement an RL algorithm that solves a +specific environment and provide an explanation of the algorithm’s methodology. You are expected +to analyse your results, including challenges and your solutions. + + +Learning Outcomes Assessed + +A: Systematically understand the fundamental concepts and principles of reinforcement learning +B: Critically analyse real-life problem situations and expertly map them as reinforcement learning +tasks. +C: Mastery of Monte Carlo Methods and Temporal Difference Learning +D: Proficiency in Deep Reinforcement Learning algorithms + + +Late policy + +5% of the total marks available for the assessment shall be deducted from the assessment mark for +each working day after the submission date, up to a maximum of five working days + + +Avoid Plagiarism + + • Do not submit work from other students. + + • Do not share code/work with other students + + • Do not use open-source code as it is or without proper reference. + + + + + 2 + Risks + + • Please read the coursework instructions and requirements carefully. Not following these instructions + and requirements may result in a loss of marks. + • The assignment must be submitted via Learning Mall. Only electronic submission is accepted + and no hard copy submission. + • All students must download their file and check that it is viewable after submission. Documents + may become corrupted during the uploading process (e.g. due to slow internet connections). + However, students are responsible for submitting a functional and correct file for assessments. + • Academic Integrity Policy is strictly followed. + + +Individual Report (40 marks) + +The primary objective of this coursework is to familiarize students with the PPO algorithm using +basic deep learning libraries, enabling them to improve their capability in transferring mathematical +and theoretical knowledge into Python implementation, and further their understanding of the actor- +critic algorithm. + + +Algorithm Overview + +Proximal Policy Optimization (PPO) is a state-of-the-art reinforcement learning algorithm that optimizes +a stochastic policy in an on-policy manner. To ensure stable training and avoid catastrophic performance +collapse, PPO utilizes a clipped surrogate objective to prevent the policy update from stepping too +far from the current behavior. + + +The Environment: CarRacing-v3 + +We will be using the Car Racing environment from the OpenAI Gymnasium. This environment +features a top-down racing track where the agent must learn to navigate through tiles based on +pixel inputs. You can find more details about this environment on their website.(https://gymnasium. +farama.org/environments/box2d/car_racing/) +Here’s a code snippet for you to get started: + +import gymnasium as gym +env = gym . make ( " CarRacing - v3 " , render_mode = " rgb_array " ) +env . reset () + +Since CarRacing-v3 is quite computationally expensive for a standard laptop (due to the pixel processing), +you might want to consider using a gray-scaling or frame-stacking wrapper to speed up training. +Alternatively, you can also use the lab computers, which have GPUs and have all the environment +already set up. + + +The PPO Agent + +You will implement an RL agent using PPO to play the CarRacing-v3 environment. The agent +will use the standard observation and actions provided by the environment. You may edit the + + 3 + environment to speed up your training, but your agent must still perform well in the standard +environment. (i.e, removing the camera zoom at the beginning is allowed during training, but +your agent should still be tested in the original environment.) You should record your training and +evaluation process using Tensorboard. You should also record important losses and other data for +your analysis later. + + +The Report + +Upon completion of your implementation, you are required to submit a comprehensive technical +report. The report should document your engineering decisions, the theoretical grounding of your +code, and a critical analysis of the agent’s performance. + + 1. Introduction + + • Provide a brief overview of Reinforcement Learning in the context of the CarRacing-v3 + environment. + • Define the state space (pixels), action space (discrete commands), and the reward structure + of the task. + + 2. Methodology + + • Mathematical Foundation: Formulate the PPO objective function. Explain the significance + of the clipping parameter and the probability ratio. + • Advantage Estimation: Describe your method for calculating advantages (e.g., standard + advantage vs. Generalized Advantage Estimation (GAE)). + + 3. Implementation Details + + • Describe your implementation, including any challenges faced and how you addressed + them. + • Explain the structure of your policy and value networks. + • Detail the training process and hyperparameters used. + + 4. Results and Analysis + + • Present your results (use graphs for better clarity). + • Discuss the performance of your agent and any trends observed. + • Briefly compare your custom implementation’s stability and sample efficiency against baseline + benchmarks (e.g., Stable-Baselines3). + + 5. Conclusion + + • Summarize your key findings regarding the sensitivity of PPO to hyperparameter tuning + and the effectiveness of the actor-critic framework in continuous-input environments. + + Note: All figures and plots must be clearly labeled with axes titles and legends. Raw code + snippets should be kept to a minimum in the report; focus on high-level logic and pseudo- + code where necessary. + + + + + 4 + Important Note + + • Do NOT use Stable-baselines libraries or any other reinforcement learning specific libraries in + your implementation (You may use tensorboard for recording your results). + + • Do NOT exceed the word count limit of 3000 words for each report, reference and appendix + excluded. + + • Although you are allowed to use any generative AI tools to assist your work, please keep in mind + that you should be using them responsibly. (Good use: Improve your report after writing it + and always review its output to ensure that it is correct. Bad use: Copy-pasting an entire report + from AI without any effort of your own. ) + + +Submission Requirements + +Please prepare and submit the following documents: + + • A cover page featuring your student ID. This page should be the first page of your report. + + • A zip file containing all the source codes and your trained agent model, which should be named + using your full name and student ID in the following format: CW1_ID_Name.zip + + • One PDF file for your report. The file should be separated from the zip file, which contains your + code. The files should be named in the following format: CW1_ID_Name.pdf + +Note that the quality of the code, the clarity of your writing, and the format/style of your report will +be taken into consideration during the evaluation. The detailed rubric is outlined below. + + +Rubric + + CW1 (40 makrs) Criteria Marks + Code Performance Code runs without errors and performs tasks as specified. 6 + Code Quality Code is well-organized, includes meaningful comments, and uses appropriate variable names. 6 + Methodology Comprehensive coverage of topics with detailed explanations of approaches and methodologies. 6 + Result analysis Insightful analysis of results. 6 + Report Quality Report is well-structured, formatted, and free of grammatical errors. 6 + Evidence of Work All required elements are included and correct. 6 + Submission Follows all requirements for submission 4 + + + + + 5 \ No newline at end of file diff --git a/资料/dts304_assessment1_extracted.txt b/资料/dts304_assessment1_extracted.txt index 0e4550c..800e9f3 100644 --- a/资料/dts304_assessment1_extracted.txt +++ b/资料/dts304_assessment1_extracted.txt @@ -1,260 +1,260 @@ - XJTLU Entrepreneur College (Taicang) Cover Sheet - - School of AI and Advanced - Module code DTS304TC: Machine Learning School title - Computing - - Assessment title Coursework Task 1 Assessment type Coursework - - Submission - 01/May/2026 23:59 - deadline - - -I certify that I have read and understood the University's Policy for dealing with Plagiarism, Collusion and the Fabrication of Data -(available on Learning Mall Online). -My work does not contain any instances of plagiarism and/or collusion. -My work does not contain any fabricated data. - - - By uploading my assignment onto Learning Mall Online, I formally declare that all of the - above information is true to the best of my knowledge and belief. - Scoring – For Tutor Use - Student ID - Theory and Reflection PDF Word Count (Filled by - Students) - - Stage of Marking Marker Learning Outcomes Achieved (F/P/M/D) Final - Code Score - (please modify as appropriate) - A B C - 1st Marker – red - pen - Moderation The original mark has been accepted by the moderator Y/N - IM (please circle as appropriate): - – green pen Initials - Data entry and score calculation have been checked by Y - another tutor (please circle): - 2nd Marker if - needed – green - pen - For Academic Office Use Possible Academic Infringement (please tick as appropriate) - Date Days Late ☐ Category A - Received late Penalty Total Academic Infringement Penalty - ☐ Category B (A,B, C, D, E, Please modify where - necessary) _____________________ - ☐ Category C - ☐ Category D - ☐ Category E - DTS304TC Machine Learning - Coursework - Assessment Task 1 -• Percentage in final mark: 50% -• Assessment type: individual coursework -• Submission files: one Jupyter notebook (.ipynb), one Coursework Answer Sheet / Theory and Reflection PDF, and one - hidden-test CSV - - Learning outcomes assessed -• A. Demonstrate a solid understanding of the theoretical issues related to problems that machine-learning methods try to - address. -• B. Demonstrate understanding of the properties of existing machine-learning algorithms and how they behave on practical data. - - - - Notes -• Please read the coursework instructions and requirements carefully. Not following these instructions and requirements may - result in a loss of marks. -• The formal procedure for submitting coursework at XJTLU is strictly followed. Submission link on Learning Mall will be provided - in due course. The submission timestamp on Learning Mall will be used to check late submission. -• 5% of the total marks available for the assessment shall be deducted from the assessment mark for each working day after the - submission date, up to a maximum of five working days. -• All modelling work must be completed individually. Discussion of general ideas is allowed, but code, experiments, and - notebooks must be independently developed. -• You may not use ChatGPT to directly generate answers for the coursework. High-scoring work must demonstrate your own - experimental design, controlled comparisons, failure analysis, and image-level interpretation. ChatGPT or similar tools may be - used only in a limited support role such as code understanding, debugging, or grammar support. They must not replace your - method design, ablation logic, qualitative analysis, or reflection. Generic AI-produced descriptions without matching evidence in - code, tables, figures, and discussion will not receive high marks. -• If you use AI tools or outside code in any meaningful way, you must fully understand, verify, and take ownership of every - method, number, figure, and written claim that appears in your submission. - - - - Question 1: Notebook-Based Coding Exercise - Insurance Premium-Risk Classification (60 - Marks) - In this coursework you will build and improve a multiclass classifier for a fictionalised health-insurance dataset. The task is - to predict whether each applicant belongs to a Low, Standard, or High premium-risk group before pricing a policy. The - dataset is intentionally realistic: it mixes numerical and categorical variables, contains missing values and dirty entries, and - includes some fields that require careful handling to avoid weak modelling practice or label leakage. - Your work should show a clear machine-learning workflow: build a sensible first pipeline, compare model families, apply - stronger hyperparameter optimisation, complete one compulsory improvement category plus at least one optional category, - carry out a compact K-Means/Gaussian Mixture Model (GMM) exploration, and then produce a hidden-test CSV using - validation evidence only. - The prediction target variable is ‘premium_risk’, and it has 3 imbalanced classes: Standard, High, Low. The dataset - contains 33 raw columns: admin/PII columns, synthetic noise features, 1 leakage feature, and genuine predictors. - Unless otherwise stated, macro-F1 is the primary validation metric because the dataset is imbalanced; accuracy is reported - as a secondary metric. - (A) Clean First Pipeline and Baseline Modelling (8 marks) -• Load the provided training and validation files and define a consistent target / feature setup. -• Handle leakage features, dirty values, missing values, and categorical variables sensibly. A compact sanity check is enough; a - long data-audit section is not required. - Important: The dataset contains a leakage feature. You must identify and remove it before proceeding to the next stage - of analysis; otherwise, the classification results will be severely biased by this leakage and will not be meaningful. If - this occurs, multiple parts of your Coursework 1 may be affected, which could significantly impact your marks. -• Build one baseline modelling pipeline. -• Report at least one validation result using accuracy and macro-F1 score and include a confusion matrix for the baseline model. -• Keep preprocessing consistent across train, validation, and hidden-test files. - - - (B) Controlled Comparison: Random Forest and One Boosting Model (8 marks) -• Using the same preprocessing pipeline, validation split, and evaluation metric (primary metric is macro-F1 also report accuracy), - carry out an initial controlled comparison between one Random Forest model and one boosting model. -• Default XGBoost is recommended because it provides a richer tuning space later, but others may also be used. Default settings - or only light sensible adjustments are acceptable in this section. -• In the notebook, report the validation result of each model and support the comparison with one or two additional analyses, such - as class-wise metrics, a confusion matrix, train-versus-validation behaviour, or stability / sensitivity after tuning. -• Your goal is not to prove that one model type always wins. Your goal is to compare the two models fairly, explain the high-level - learning difference between bagging and boosting, and use your own notebook evidence to give a careful, dataset-specific - interpretation. A generic textbook answer without reference to your own results will receive limited credit. - (C) Advanced Hyperparameter Optimisation (12 marks) -• At least one main model should be tuned with a genuinely advanced strategy such as Optuna/TPE, Bayesian optimisation, - Hyperopt, Ray Tune, or another comparably strong approach. -• Hyperparameter tuning should optimise macro-F1 score on the validation set, and the final tuned result should be reported - using both accuracy and macro-F1. -• RandomizedSearchCV alone is normally not enough for the top band. -• Explain briefly why your search space and optimiser are reasonable for the chosen model. - (D) Personalised Improvement Work (18 marks) - You must complete one compulsory category based on the last digit of your XJTLU student ID, plus at least one additional - optional category of your choice. A second optional category is recommended for stronger differentiation but is not compulsory. - You should report accuracy and macro-F1 for improved models and include class-wise metrics where helpful. A compact ablation - table should normally be included in the notebook for the personalized improvement work - - Last digit Compulsory category - 0-1 Category A - Data quality and missingness - 2-3 Category B - Feature representation and engineering - 4-5 Category C - Imbalance and objective design - 6-7 Category D - Model robustness, calibration, or ensembling - 8-9 Category E - Fairness, diagnostics, or interpretability - Category Examples of what may be done What good evidence looks like - better missing-value strategy; A concise before/after comparison with a short - A MissForest or iterative imputation; explanation of why the data handling changed the - sensible outlier handling; value cleaning result - feature crosses; grouped categories; - A compact ablation showing what representation - B alternative encodings; modest feature - changed and whether it helped - selection; transformations - class weighting; focal-style loss if - Clear evidence of how minority or harder classes - C relevant; sampling / resampling; - changed, even if overall score moved only slightly - thresholding logic - bagging/boosting variants; calibration - A meaningful diagnostic or comparison rather - D checks; soft voting; stacking; - than a large collection of loosely connected trials - robustness checks - SHAP / feature importance; subgroup- - Concrete insight into model behaviour, not only - E style fairness checks; error analysis; - screenshots - model interpretation - (E) K-Means and Gaussian Mixture Model (GMM) Exploration (6 marks) - This is a compact exploratory section. It is not the main performance section, and it does not require clusters to match the class - labels exactly. The aim is to show your understanding of unsupervised learning methods and your ability to interpret their results - carefully. -• Use a sensible processed numeric feature space and briefly explain what you clustered on. -• Explore a small range of cluster/component numbers, such as 2-8. -• For K-Means, provide sensible supporting evidence, such as inertia (SSE), cluster sizes, or another simple analysis.. -• For Gaussian Mixture Model (GMM), provide sensible supporting evidence, such as component sizes, posterior - confidence/responsibility, or overlap/uncertainty between components. -• Include at least one compact table or figure comparing K-Means and GMM. -• If class labels are used for reference, explain clearly that unsupervised structure does not need to align exactly with supervised - labels -• Stronger work may additionally use silhouette score, log-likelihood trends, or a simple visualization. - - - (F) Final Model Choice and Hidden-Test Export (8 marks) -• Choose the final model using validation evidence only. -• Retrain appropriately using both train and validation dataset and generate the hidden-test CSV in the required format. -• Submit the hidden-test results as test_result_[your_student_id].csv. The first column must contain applicant_id, the second - column must contain customer_key, and the third column must contain the predicted premium_risk labels (Standard, High, - Low). - Incorrect file naming or CSV formatting may prevent automated scoring and will result in an automatic deduction of 4 marks - from this section. -• Do not tune on the hidden test and do not claim hidden test performance. -• Note: Hidden test score contributes only a small portion of the final marks. High leaderboard rank alone cannot compensate for - weak experimental design or poor documentation. - - - Coursework Answer Sheet / Theory and Reflection (PDF) - all questions below are compulsory - (30 Marks) - The Coursework Answer Sheet / Theory and Reflection PDF should not repeat the notebook section by section. All prompt areas - below are compulsory. The PDF must be concise, directly linked to your own notebook evidence, and no longer than 4 pages / - 1,200 words in total. Exceeding either limit will incur a fixed deduction of 5 marks from the PDF section. You should aim to - demonstrate both your theoretical or algorithmic understanding and your experimental findings or practical observations and - clearly link your understanding of the algorithms to your experimental analysis. At least one table, figure, or metric from the - notebook must be referenced in each theory answer. - - Prompt area What you should do - (1) Briefly state the definitions and key theoretical properties of bagging - and boosting models; - (2) report the validation results of each model; - (3) support your comparison with one or two additional analyses, such as - class-wise metrics, a confusion matrix, train–validation behaviour, or - 1. Bagging versus boosting stability/sensitivity after tuning; and - (4) provide a careful interpretation of what this comparison suggests - about this dataset and how it relates to the theoretical properties of - bagging versus boosting methods. - You are not expected to prove that one model type always performs - better. - Explain why your optimiser and search space were reasonable for the - chosen model, which hyperparameters you expected to matter most, - 2. Hyperparameter optimisation - whether the tuned results matched that intuition, and what you learned - from the tuning process. - Explain hard versus soft assignment and the main assumption difference - between K-Means and GMM. Then use your own compact evidence to - 3. K-Means versus Gaussian Mixture Model (GMM) discuss whether the results matched your intuition and whether GMM - revealed anything extra, such as soft membership, uncertainty, or a - better fit to partial cluster structure. - Reflect on the compulsory category and on every optional category you - implemented. Highlight any unique or interesting algorithm or strategy - 4. Personalised reflection you tried, the personal challenges you faced, the effort you made to - address them, and the key lessons you learned. Honest reflection on a - neutral or negative result is acceptable if the reasoning is concrete. - State briefly what forms of AI assistance, if any, were used. Generic AI- - 5. AI-use declaration written theory that does not match your notebook evidence will receive - limited credit. - - - - Coding Quality, Coursework Answer Sheet Quality, and Submission Guidelines (10 marks) - -• Submit your Jupyter Notebook in .ipynb format. It must be well organised, include clear commentary and clean code practices, - and show visible outputs. Do not write a second mini-report repeating notebook content. - • The notebook should be reproducible from start to finish without errors. Results cited in the PDF should be visible in the - notebook and should match the reported values. - • If you used supplementary code outside the notebook, submit that code as well so the full workflow remains reproducible. -• Submit the hidden-test results as test_result_[your_student_id].csv. The first column must contain applicant_id, the second - column must contain customer_key, and the third column must contain the predicted premium_risk labels (Standard, High, - Low). Incorrect file naming or CSV formatting may prevent automated scoring and will result in an automatic deduction of 4 - marks from this section. -• Submit the Coursework Answer Sheet / Theory and Reflection in PDF format. All questions in that section are compulsory. The - Coursework Answer Sheet / Theory and Reflection PDF must answer every required prompt, refer to your own notebook - evidence, and remain within 4 pages and 1,200 words in total. Exceeding either limit will incur a fixed deduction of 5 marks from - the PDF section. -• Include all required components: Jupyter notebooks (code), any additional experimental scripts or custom code, the hidden - test-results CSV file, and the Coursework Answer Sheet PDF. Submit all files through the Learning Mall platform. After - submission, download your files to verify that they can be opened and viewed correctly to ensure the submission was - successful. - - Project Material Access Instructions - - To access the complete set of materials for this project, please use the links below: - - • OneDrive Link: - https://1drv.ms/f/c/18f09d1a39585f84/IgCXDMbXkFYSSZUZkkTyXyZzAQ1poX9mujUqF8N3JlL0GD0?e=uNhAHq - • The same coursework materials have also been uploaded to Learning Mall. - When extracting the materials, use the following password to unlock the zip file: DTS304TC (case-sensitive, enter in - uppercase). + XJTLU Entrepreneur College (Taicang) Cover Sheet + + School of AI and Advanced + Module code DTS304TC: Machine Learning School title + Computing + + Assessment title Coursework Task 1 Assessment type Coursework + + Submission + 01/May/2026 23:59 + deadline + + +I certify that I have read and understood the University's Policy for dealing with Plagiarism, Collusion and the Fabrication of Data +(available on Learning Mall Online). +My work does not contain any instances of plagiarism and/or collusion. +My work does not contain any fabricated data. + + + By uploading my assignment onto Learning Mall Online, I formally declare that all of the + above information is true to the best of my knowledge and belief. + Scoring – For Tutor Use + Student ID + Theory and Reflection PDF Word Count (Filled by + Students) + + Stage of Marking Marker Learning Outcomes Achieved (F/P/M/D) Final + Code Score + (please modify as appropriate) + A B C + 1st Marker – red + pen + Moderation The original mark has been accepted by the moderator Y/N + IM (please circle as appropriate): + – green pen Initials + Data entry and score calculation have been checked by Y + another tutor (please circle): + 2nd Marker if + needed – green + pen + For Academic Office Use Possible Academic Infringement (please tick as appropriate) + Date Days Late ☐ Category A + Received late Penalty Total Academic Infringement Penalty + ☐ Category B (A,B, C, D, E, Please modify where + necessary) _____________________ + ☐ Category C + ☐ Category D + ☐ Category E + DTS304TC Machine Learning + Coursework - Assessment Task 1 +• Percentage in final mark: 50% +• Assessment type: individual coursework +• Submission files: one Jupyter notebook (.ipynb), one Coursework Answer Sheet / Theory and Reflection PDF, and one + hidden-test CSV + + Learning outcomes assessed +• A. Demonstrate a solid understanding of the theoretical issues related to problems that machine-learning methods try to + address. +• B. Demonstrate understanding of the properties of existing machine-learning algorithms and how they behave on practical data. + + + + Notes +• Please read the coursework instructions and requirements carefully. Not following these instructions and requirements may + result in a loss of marks. +• The formal procedure for submitting coursework at XJTLU is strictly followed. Submission link on Learning Mall will be provided + in due course. The submission timestamp on Learning Mall will be used to check late submission. +• 5% of the total marks available for the assessment shall be deducted from the assessment mark for each working day after the + submission date, up to a maximum of five working days. +• All modelling work must be completed individually. Discussion of general ideas is allowed, but code, experiments, and + notebooks must be independently developed. +• You may not use ChatGPT to directly generate answers for the coursework. High-scoring work must demonstrate your own + experimental design, controlled comparisons, failure analysis, and image-level interpretation. ChatGPT or similar tools may be + used only in a limited support role such as code understanding, debugging, or grammar support. They must not replace your + method design, ablation logic, qualitative analysis, or reflection. Generic AI-produced descriptions without matching evidence in + code, tables, figures, and discussion will not receive high marks. +• If you use AI tools or outside code in any meaningful way, you must fully understand, verify, and take ownership of every + method, number, figure, and written claim that appears in your submission. + + + + Question 1: Notebook-Based Coding Exercise - Insurance Premium-Risk Classification (60 + Marks) + In this coursework you will build and improve a multiclass classifier for a fictionalised health-insurance dataset. The task is + to predict whether each applicant belongs to a Low, Standard, or High premium-risk group before pricing a policy. The + dataset is intentionally realistic: it mixes numerical and categorical variables, contains missing values and dirty entries, and + includes some fields that require careful handling to avoid weak modelling practice or label leakage. + Your work should show a clear machine-learning workflow: build a sensible first pipeline, compare model families, apply + stronger hyperparameter optimisation, complete one compulsory improvement category plus at least one optional category, + carry out a compact K-Means/Gaussian Mixture Model (GMM) exploration, and then produce a hidden-test CSV using + validation evidence only. + The prediction target variable is ‘premium_risk’, and it has 3 imbalanced classes: Standard, High, Low. The dataset + contains 33 raw columns: admin/PII columns, synthetic noise features, 1 leakage feature, and genuine predictors. + Unless otherwise stated, macro-F1 is the primary validation metric because the dataset is imbalanced; accuracy is reported + as a secondary metric. + (A) Clean First Pipeline and Baseline Modelling (8 marks) +• Load the provided training and validation files and define a consistent target / feature setup. +• Handle leakage features, dirty values, missing values, and categorical variables sensibly. A compact sanity check is enough; a + long data-audit section is not required. + Important: The dataset contains a leakage feature. You must identify and remove it before proceeding to the next stage + of analysis; otherwise, the classification results will be severely biased by this leakage and will not be meaningful. If + this occurs, multiple parts of your Coursework 1 may be affected, which could significantly impact your marks. +• Build one baseline modelling pipeline. +• Report at least one validation result using accuracy and macro-F1 score and include a confusion matrix for the baseline model. +• Keep preprocessing consistent across train, validation, and hidden-test files. + + + (B) Controlled Comparison: Random Forest and One Boosting Model (8 marks) +• Using the same preprocessing pipeline, validation split, and evaluation metric (primary metric is macro-F1 also report accuracy), + carry out an initial controlled comparison between one Random Forest model and one boosting model. +• Default XGBoost is recommended because it provides a richer tuning space later, but others may also be used. Default settings + or only light sensible adjustments are acceptable in this section. +• In the notebook, report the validation result of each model and support the comparison with one or two additional analyses, such + as class-wise metrics, a confusion matrix, train-versus-validation behaviour, or stability / sensitivity after tuning. +• Your goal is not to prove that one model type always wins. Your goal is to compare the two models fairly, explain the high-level + learning difference between bagging and boosting, and use your own notebook evidence to give a careful, dataset-specific + interpretation. A generic textbook answer without reference to your own results will receive limited credit. + (C) Advanced Hyperparameter Optimisation (12 marks) +• At least one main model should be tuned with a genuinely advanced strategy such as Optuna/TPE, Bayesian optimisation, + Hyperopt, Ray Tune, or another comparably strong approach. +• Hyperparameter tuning should optimise macro-F1 score on the validation set, and the final tuned result should be reported + using both accuracy and macro-F1. +• RandomizedSearchCV alone is normally not enough for the top band. +• Explain briefly why your search space and optimiser are reasonable for the chosen model. + (D) Personalised Improvement Work (18 marks) + You must complete one compulsory category based on the last digit of your XJTLU student ID, plus at least one additional + optional category of your choice. A second optional category is recommended for stronger differentiation but is not compulsory. + You should report accuracy and macro-F1 for improved models and include class-wise metrics where helpful. A compact ablation + table should normally be included in the notebook for the personalized improvement work + + Last digit Compulsory category + 0-1 Category A - Data quality and missingness + 2-3 Category B - Feature representation and engineering + 4-5 Category C - Imbalance and objective design + 6-7 Category D - Model robustness, calibration, or ensembling + 8-9 Category E - Fairness, diagnostics, or interpretability + Category Examples of what may be done What good evidence looks like + better missing-value strategy; A concise before/after comparison with a short + A MissForest or iterative imputation; explanation of why the data handling changed the + sensible outlier handling; value cleaning result + feature crosses; grouped categories; + A compact ablation showing what representation + B alternative encodings; modest feature + changed and whether it helped + selection; transformations + class weighting; focal-style loss if + Clear evidence of how minority or harder classes + C relevant; sampling / resampling; + changed, even if overall score moved only slightly + thresholding logic + bagging/boosting variants; calibration + A meaningful diagnostic or comparison rather + D checks; soft voting; stacking; + than a large collection of loosely connected trials + robustness checks + SHAP / feature importance; subgroup- + Concrete insight into model behaviour, not only + E style fairness checks; error analysis; + screenshots + model interpretation + (E) K-Means and Gaussian Mixture Model (GMM) Exploration (6 marks) + This is a compact exploratory section. It is not the main performance section, and it does not require clusters to match the class + labels exactly. The aim is to show your understanding of unsupervised learning methods and your ability to interpret their results + carefully. +• Use a sensible processed numeric feature space and briefly explain what you clustered on. +• Explore a small range of cluster/component numbers, such as 2-8. +• For K-Means, provide sensible supporting evidence, such as inertia (SSE), cluster sizes, or another simple analysis.. +• For Gaussian Mixture Model (GMM), provide sensible supporting evidence, such as component sizes, posterior + confidence/responsibility, or overlap/uncertainty between components. +• Include at least one compact table or figure comparing K-Means and GMM. +• If class labels are used for reference, explain clearly that unsupervised structure does not need to align exactly with supervised + labels +• Stronger work may additionally use silhouette score, log-likelihood trends, or a simple visualization. + + + (F) Final Model Choice and Hidden-Test Export (8 marks) +• Choose the final model using validation evidence only. +• Retrain appropriately using both train and validation dataset and generate the hidden-test CSV in the required format. +• Submit the hidden-test results as test_result_[your_student_id].csv. The first column must contain applicant_id, the second + column must contain customer_key, and the third column must contain the predicted premium_risk labels (Standard, High, + Low). + Incorrect file naming or CSV formatting may prevent automated scoring and will result in an automatic deduction of 4 marks + from this section. +• Do not tune on the hidden test and do not claim hidden test performance. +• Note: Hidden test score contributes only a small portion of the final marks. High leaderboard rank alone cannot compensate for + weak experimental design or poor documentation. + + + Coursework Answer Sheet / Theory and Reflection (PDF) - all questions below are compulsory + (30 Marks) + The Coursework Answer Sheet / Theory and Reflection PDF should not repeat the notebook section by section. All prompt areas + below are compulsory. The PDF must be concise, directly linked to your own notebook evidence, and no longer than 4 pages / + 1,200 words in total. Exceeding either limit will incur a fixed deduction of 5 marks from the PDF section. You should aim to + demonstrate both your theoretical or algorithmic understanding and your experimental findings or practical observations and + clearly link your understanding of the algorithms to your experimental analysis. At least one table, figure, or metric from the + notebook must be referenced in each theory answer. + + Prompt area What you should do + (1) Briefly state the definitions and key theoretical properties of bagging + and boosting models; + (2) report the validation results of each model; + (3) support your comparison with one or two additional analyses, such as + class-wise metrics, a confusion matrix, train–validation behaviour, or + 1. Bagging versus boosting stability/sensitivity after tuning; and + (4) provide a careful interpretation of what this comparison suggests + about this dataset and how it relates to the theoretical properties of + bagging versus boosting methods. + You are not expected to prove that one model type always performs + better. + Explain why your optimiser and search space were reasonable for the + chosen model, which hyperparameters you expected to matter most, + 2. Hyperparameter optimisation + whether the tuned results matched that intuition, and what you learned + from the tuning process. + Explain hard versus soft assignment and the main assumption difference + between K-Means and GMM. Then use your own compact evidence to + 3. K-Means versus Gaussian Mixture Model (GMM) discuss whether the results matched your intuition and whether GMM + revealed anything extra, such as soft membership, uncertainty, or a + better fit to partial cluster structure. + Reflect on the compulsory category and on every optional category you + implemented. Highlight any unique or interesting algorithm or strategy + 4. Personalised reflection you tried, the personal challenges you faced, the effort you made to + address them, and the key lessons you learned. Honest reflection on a + neutral or negative result is acceptable if the reasoning is concrete. + State briefly what forms of AI assistance, if any, were used. Generic AI- + 5. AI-use declaration written theory that does not match your notebook evidence will receive + limited credit. + + + + Coding Quality, Coursework Answer Sheet Quality, and Submission Guidelines (10 marks) + +• Submit your Jupyter Notebook in .ipynb format. It must be well organised, include clear commentary and clean code practices, + and show visible outputs. Do not write a second mini-report repeating notebook content. + • The notebook should be reproducible from start to finish without errors. Results cited in the PDF should be visible in the + notebook and should match the reported values. + • If you used supplementary code outside the notebook, submit that code as well so the full workflow remains reproducible. +• Submit the hidden-test results as test_result_[your_student_id].csv. The first column must contain applicant_id, the second + column must contain customer_key, and the third column must contain the predicted premium_risk labels (Standard, High, + Low). Incorrect file naming or CSV formatting may prevent automated scoring and will result in an automatic deduction of 4 + marks from this section. +• Submit the Coursework Answer Sheet / Theory and Reflection in PDF format. All questions in that section are compulsory. The + Coursework Answer Sheet / Theory and Reflection PDF must answer every required prompt, refer to your own notebook + evidence, and remain within 4 pages and 1,200 words in total. Exceeding either limit will incur a fixed deduction of 5 marks from + the PDF section. +• Include all required components: Jupyter notebooks (code), any additional experimental scripts or custom code, the hidden + test-results CSV file, and the Coursework Answer Sheet PDF. Submit all files through the Learning Mall platform. After + submission, download your files to verify that they can be opened and viewed correctly to ensure the submission was + successful. + + Project Material Access Instructions + + To access the complete set of materials for this project, please use the links below: + + • OneDrive Link: + https://1drv.ms/f/c/18f09d1a39585f84/IgCXDMbXkFYSSZUZkkTyXyZzAQ1poX9mujUqF8N3JlL0GD0?e=uNhAHq + • The same coursework materials have also been uploaded to Learning Mall. + When extracting the materials, use the following password to unlock the zip file: DTS304TC (case-sensitive, enter in + uppercase). \ No newline at end of file